yarn add @twilio-paste/visual-picker - or - yarn add @twilio-paste/core
import {VisualPickerRadioGroup, VisualPickerRadio} from '@twilio-paste/core/visual-picker';
const VisualPickerExample = () => {
  const [value, setValue] = React.useState('1');
  return (
    <VisualPickerRadioGroup
      legend="Select an option"
      name="visual-picker"
      value={value}
      onChange={(newValue) => setValue(newValue)}
    >
      <VisualPickerRadio labelText="one" value="1">
        Option one
      </VisualPickerRadio>
      <VisualPickerRadio labelText="two" value="2">
        Option two
      </VisualPickerRadio>
      <VisualPickerRadio labelText="three" value="3">
        Option three
      </VisualPickerRadio>
    </VisualPickerRadioGroup>
  );
};
legend RequiredRequired
String to render as the label text.
- Type
- NonNullable<ReactNode>
name RequiredRequired
Provides name for the VisualPicker groups and items
- Type
- string
onChange RequiredRequired
- Type
- (value: string) => void
value RequiredRequired
Set value equal to the value of the currently selected VisualPickerRadio
- Type
- string
disabled
Make the Group disabled
- Type
- boolean
element
Overrides the default element name to apply unique styles with the Customization Provider.
- Type
- string
- Default
- VISUAL_PICKER_RADIO_GROUP
errorText
String to render as the error text.
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
helpText
String to render as the help text.
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
i18nRequiredLabel
Label text for the required dot in the legend
- Type
- string
- Default
- (required)
orientation
Sets the direction of the visual picker group
- Type
- "horizontal" | "vertical"
- Default
- vertical
required
Make the Group required
- Type
- boolean
Inherited props
Paste components will often extend native HTML elements and as a result will inherit or extend their available properties. Below is a list of the props this component has inherited and are also available to use.
about
- Type
- string
accessKey
- Type
- string
aria-activedescendant
Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.
- Type
- string
aria-atomic
Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.
- Type
- Booleanish
aria-autocomplete
Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be presented if they are made.
- Type
- "list" | "none" | "inline" | "both"
aria-busy
Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user.
- Type
- Booleanish
aria-checked
Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
- Type
- boolean | "true" | "false" | "mixed"
aria-colcount
Defines the total number of columns in a table, grid, or treegrid.
- Type
- number
aria-colindex
Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
- Type
- number
aria-colspan
Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
- Type
- number
aria-controls
Identifies the element (or elements) whose contents or presence are controlled by the current element.
- Type
- string
aria-current
Indicates the element that represents the current item within a container or set of related elements.
- Type
- | boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
aria-describedby
Identifies the element (or elements) that describes the object.
- Type
- string
aria-details
Identifies the element that provides a detailed, extended description for the object.
- Type
- string
aria-disabled
Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
- Type
- Booleanish
aria-dropeffect
Indicates what functions can be performed when a dragged object is released on the drop target.
- Type
- "link" | "none" | "copy" | "execute" | "move" | "popup"
aria-errormessage
Identifies the element that provides an error message for the object.
- Type
- string
aria-expanded
Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.
- Type
- Booleanish
aria-flowto
Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, allows assistive technology to override the general default of reading in document source order.
- Type
- string
aria-grabbed
Indicates an element's "grabbed" state in a drag-and-drop operation.
- Type
- Booleanish
aria-haspopup
Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.
- Type
- | boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
aria-hidden
Indicates whether the element is exposed to an accessibility API.
- Type
- Booleanish
aria-invalid
Indicates the entered value does not conform to the format expected by the application.
- Type
- boolean | "true" | "false" | "grammar" | "spelling"
aria-keyshortcuts
Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.
- Type
- string
aria-label
Defines a string value that labels the current element.
- Type
- string
aria-labelledby
Identifies the element (or elements) that labels the current element.
- Type
- string
aria-level
Defines the hierarchical level of an element within a structure.
- Type
- number
aria-live
Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.
- Type
- "off" | "assertive" | "polite"
aria-modal
Indicates whether an element is modal when displayed.
- Type
- Booleanish
aria-multiline
Indicates whether a text box accepts multiple lines of input or only a single line.
- Type
- Booleanish
aria-multiselectable
Indicates that the user may select more than one item from the current selectable descendants.
- Type
- Booleanish
aria-orientation
Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
- Type
- "horizontal" | "vertical"
aria-owns
Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
- Type
- string
aria-placeholder
Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value. A hint could be a sample value or a brief description of the expected format.
- Type
- string
aria-posinset
Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
- Type
- number
aria-pressed
Indicates the current "pressed" state of toggle buttons.
- Type
- boolean | "true" | "false" | "mixed"
aria-readonly
Indicates that the element is not editable, but is otherwise operable.
- Type
- Booleanish
aria-relevant
Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
- Type
- | "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
aria-required
Indicates that user input is required on the element before a form may be submitted.
- Type
- Booleanish
aria-roledescription
Defines a human-readable, author-localized description for the role of an element.
- Type
- string
aria-rowcount
Defines the total number of rows in a table, grid, or treegrid.
- Type
- number
aria-rowindex
Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
- Type
- number
aria-rowspan
Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
- Type
- number
aria-selected
Indicates the current "selected" state of various widgets.
- Type
- Booleanish
aria-setsize
Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
- Type
- number
aria-sort
Indicates if items in a table or grid are sorted in ascending or descending order.
- Type
- "none" | "ascending" | "descending" | "other"
aria-valuemax
Defines the maximum allowed value for a range widget.
- Type
- number
aria-valuemin
Defines the minimum allowed value for a range widget.
- Type
- number
aria-valuenow
Defines the current value for a range widget.
- Type
- number
aria-valuetext
Defines the human readable text alternative of aria-valuenow for a range widget.
- Type
- string
autoCapitalize
- Type
- string
autoCorrect
- Type
- string
autoSave
- Type
- string
contentEditable
- Type
- Booleanish | "inherit"
contextMenu
- Type
- string
dangerouslySetInnerHTML
- Type
- { __html: string }
datatype
- Type
- string
defaultChecked
- Type
- boolean
defaultValue
- Type
- string | number | readonly string[]
dir
- Type
- string
draggable
- Type
- Booleanish
form
- Type
- string
hidden
- Type
- boolean
id
- Type
- string
inlist
- Type
- any
inputMode
Hints at the type of data that might be entered by the user while editing the element or its contents
- Type
- | "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal"
is
Specify that a standard HTML element should behave like a defined custom built-in element
- Type
- string
itemID
- Type
- string
itemProp
- Type
- string
itemRef
- Type
- string
itemScope
- Type
- boolean
itemType
- Type
- string
key
- Type
- Key
lang
- Type
- string
nonce
- Type
- string
onAbort
- Type
- ReactEventHandler<HTMLFieldSetElement>
onAbortCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onAnimationEnd
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationEndCapture
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationIteration
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationIterationCapture
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationStart
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationStartCapture
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAuxClick
- Type
- MouseEventHandler<HTMLFieldSetElement>
onAuxClickCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onBeforeInput
- Type
- FormEventHandler<HTMLFieldSetElement>
onBeforeInputCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onBlur
- Type
- FocusEventHandler<HTMLFieldSetElement>
onBlurCapture
- Type
- FocusEventHandler<HTMLFieldSetElement>
onCanPlay
- Type
- ReactEventHandler<HTMLFieldSetElement>
onCanPlayCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onCanPlayThrough
- Type
- ReactEventHandler<HTMLFieldSetElement>
onCanPlayThroughCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onChangeCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onClick
- Type
- MouseEventHandler<HTMLFieldSetElement>
onClickCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onCompositionEnd
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionEndCapture
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionStart
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionStartCapture
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionUpdate
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionUpdateCapture
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onContextMenu
- Type
- MouseEventHandler<HTMLFieldSetElement>
onContextMenuCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onCopy
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onCopyCapture
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onCut
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onCutCapture
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onDoubleClick
- Type
- MouseEventHandler<HTMLFieldSetElement>
onDoubleClickCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onDrag
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragEnd
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragEndCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragEnter
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragEnterCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragExit
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragExitCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragLeave
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragLeaveCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragOver
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragOverCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragStart
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragStartCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDrop
- Type
- DragEventHandler<HTMLFieldSetElement>
onDropCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDurationChange
- Type
- ReactEventHandler<HTMLFieldSetElement>
onDurationChangeCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEmptied
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEmptiedCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEncrypted
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEncryptedCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEnded
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEndedCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onError
- Type
- ReactEventHandler<HTMLFieldSetElement>
onErrorCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onFocus
- Type
- FocusEventHandler<HTMLFieldSetElement>
onFocusCapture
- Type
- FocusEventHandler<HTMLFieldSetElement>
onGotPointerCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onGotPointerCaptureCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onInput
- Type
- FormEventHandler<HTMLFieldSetElement>
onInputCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onInvalid
- Type
- FormEventHandler<HTMLFieldSetElement>
onInvalidCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onKeyDown
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyDownCapture
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyPress
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyPressCapture
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyUp
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyUpCapture
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onLoad
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadedData
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadedDataCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadedMetadata
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadedMetadataCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadStart
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadStartCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLostPointerCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onLostPointerCaptureCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onMouseDown
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseDownCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseEnter
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseLeave
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseMove
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseMoveCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseOut
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseOutCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseOver
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseOverCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseUp
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseUpCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onPaste
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onPasteCapture
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onPause
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPauseCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPlay
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPlayCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPlaying
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPlayingCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPointerCancel
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerCancelCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerDown
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerDownCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerEnter
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerEnterCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerLeave
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerLeaveCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerMove
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerMoveCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerOut
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerOutCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerOver
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerOverCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerUp
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerUpCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onProgress
- Type
- ReactEventHandler<HTMLFieldSetElement>
onProgressCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onRateChange
- Type
- ReactEventHandler<HTMLFieldSetElement>
onRateChangeCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onReset
- Type
- FormEventHandler<HTMLFieldSetElement>
onResetCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onResize
- Type
- ReactEventHandler<HTMLFieldSetElement>
onResizeCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onScroll
- Type
- UIEventHandler<HTMLFieldSetElement>
onScrollCapture
- Type
- UIEventHandler<HTMLFieldSetElement>
onSeeked
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSeekedCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSeeking
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSeekingCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSelect
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSelectCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onStalled
- Type
- ReactEventHandler<HTMLFieldSetElement>
onStalledCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSubmit
- Type
- FormEventHandler<HTMLFieldSetElement>
onSubmitCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onSuspend
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSuspendCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onTimeUpdate
- Type
- ReactEventHandler<HTMLFieldSetElement>
onTimeUpdateCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onTouchCancel
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchCancelCapture
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchEnd
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchEndCapture
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchMove
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchMoveCapture
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchStart
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchStartCapture
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTransitionEnd
- Type
- TransitionEventHandler<HTMLFieldSetElement>
onTransitionEndCapture
- Type
- TransitionEventHandler<HTMLFieldSetElement>
onVolumeChange
- Type
- ReactEventHandler<HTMLFieldSetElement>
onVolumeChangeCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onWaiting
- Type
- ReactEventHandler<HTMLFieldSetElement>
onWaitingCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onWheel
- Type
- WheelEventHandler<HTMLFieldSetElement>
onWheelCapture
- Type
- WheelEventHandler<HTMLFieldSetElement>
placeholder
- Type
- string
prefix
- Type
- string
property
- Type
- string
radioGroup
- Type
- string
resource
- Type
- string
results
- Type
- number
role
- Type
- AriaRole
security
- Type
- string
slot
- Type
- string
spellCheck
- Type
- Booleanish
suppressContentEditableWarning
- Type
- boolean
suppressHydrationWarning
- Type
- boolean
tabIndex
- Type
- number
title
- Type
- string
translate
- Type
- "yes" | "no"
typeof
- Type
- string
unselectable
- Type
- "on" | "off"
vocab
- Type
- string
labelText RequiredRequired
Label text for the radio
- Type
- string
value RequiredRequired
Pass to VisualPickerRadioGroup value when checked
- Type
- string
disabled
Make the Radio Button disabled
- Type
- boolean
element
Overrides the default element name to apply unique styles with the Customization Provider.
- Type
- string
- Default
- VISUAL_PICKER_RADIO
hasError
Adds an error state to the Radio Button
- Type
- boolean
id
ID for the Radio Button
- Type
- string
name
Name for the Radio Button Group
- Type
- string
Inherited props
Paste components will often extend native HTML elements and as a result will inherit or extend their available properties. Below is a list of the props this component has inherited and are also available to use.
about
- Type
- string
accept
- Type
- string
accessKey
- Type
- string
alt
- Type
- string
aria-activedescendant
Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.
- Type
- string
aria-atomic
Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.
- Type
- Booleanish
aria-autocomplete
Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be presented if they are made.
- Type
- "list" | "none" | "inline" | "both"
aria-busy
Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user.
- Type
- Booleanish
aria-checked
Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
- Type
- boolean | "true" | "false" | "mixed"
aria-colcount
Defines the total number of columns in a table, grid, or treegrid.
- Type
- number
aria-colindex
Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
- Type
- number
aria-colspan
Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
- Type
- number
aria-controls
Identifies the element (or elements) whose contents or presence are controlled by the current element.
- Type
- string
aria-current
Indicates the element that represents the current item within a container or set of related elements.
- Type
- | boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
aria-describedby
Identifies the element (or elements) that describes the object.
- Type
- string
aria-details
Identifies the element that provides a detailed, extended description for the object.
- Type
- string
aria-disabled
Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
- Type
- Booleanish
aria-dropeffect
Indicates what functions can be performed when a dragged object is released on the drop target.
- Type
- "link" | "none" | "copy" | "execute" | "move" | "popup"
aria-errormessage
Identifies the element that provides an error message for the object.
- Type
- string
aria-expanded
Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.
- Type
- Booleanish
aria-flowto
Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, allows assistive technology to override the general default of reading in document source order.
- Type
- string
aria-grabbed
Indicates an element's "grabbed" state in a drag-and-drop operation.
- Type
- Booleanish
aria-haspopup
Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.
- Type
- | boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
aria-hidden
Indicates whether the element is exposed to an accessibility API.
- Type
- Booleanish
aria-invalid
Indicates the entered value does not conform to the format expected by the application.
- Type
- boolean | "true" | "false" | "grammar" | "spelling"
aria-keyshortcuts
Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.
- Type
- string
aria-label
Defines a string value that labels the current element.
- Type
- string
aria-labelledby
Identifies the element (or elements) that labels the current element.
- Type
- string
aria-level
Defines the hierarchical level of an element within a structure.
- Type
- number
aria-live
Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.
- Type
- "off" | "assertive" | "polite"
aria-modal
Indicates whether an element is modal when displayed.
- Type
- Booleanish
aria-multiline
Indicates whether a text box accepts multiple lines of input or only a single line.
- Type
- Booleanish
aria-multiselectable
Indicates that the user may select more than one item from the current selectable descendants.
- Type
- Booleanish
aria-orientation
Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
- Type
- "horizontal" | "vertical"
aria-owns
Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
- Type
- string
aria-placeholder
Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value. A hint could be a sample value or a brief description of the expected format.
- Type
- string
aria-posinset
Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
- Type
- number
aria-pressed
Indicates the current "pressed" state of toggle buttons.
- Type
- boolean | "true" | "false" | "mixed"
aria-readonly
Indicates that the element is not editable, but is otherwise operable.
- Type
- Booleanish
aria-relevant
Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
- Type
- | "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
aria-required
Indicates that user input is required on the element before a form may be submitted.
- Type
- Booleanish
aria-roledescription
Defines a human-readable, author-localized description for the role of an element.
- Type
- string
aria-rowcount
Defines the total number of rows in a table, grid, or treegrid.
- Type
- number
aria-rowindex
Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
- Type
- number
aria-rowspan
Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
- Type
- number
aria-selected
Indicates the current "selected" state of various widgets.
- Type
- Booleanish
aria-setsize
Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
- Type
- number
aria-sort
Indicates if items in a table or grid are sorted in ascending or descending order.
- Type
- "none" | "ascending" | "descending" | "other"
aria-valuemax
Defines the maximum allowed value for a range widget.
- Type
- number
aria-valuemin
Defines the minimum allowed value for a range widget.
- Type
- number
aria-valuenow
Defines the current value for a range widget.
- Type
- number
aria-valuetext
Defines the human readable text alternative of aria-valuenow for a range widget.
- Type
- string
autoCapitalize
- Type
- string
autoComplete
- Type
- string
autoCorrect
- Type
- string
autoFocus
- Type
- boolean
autoSave
- Type
- string
capture
- Type
- boolean | "user" | "environment"
contentEditable
- Type
- Booleanish | "inherit"
contextMenu
- Type
- string
crossOrigin
- Type
- "" | "anonymous" | "use-credentials"
dangerouslySetInnerHTML
- Type
- { __html: string }
datatype
- Type
- string
defaultValue
- Type
- string | number | readonly string[]
dir
- Type
- string
draggable
- Type
- Booleanish
enterKeyHint
- Type
- | "search" | "enter" | "done" | "go" | "next" | "previous" | "send"
form
- Type
- string
formAction
- Type
- string
formEncType
- Type
- string
formMethod
- Type
- string
formNoValidate
- Type
- boolean
formTarget
- Type
- string
height
- Type
- string | number
hidden
- Type
- boolean
inlist
- Type
- any
inputMode
Hints at the type of data that might be entered by the user while editing the element or its contents
- Type
- | "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal"
is
Specify that a standard HTML element should behave like a defined custom built-in element
- Type
- string
itemID
- Type
- string
itemProp
- Type
- string
itemRef
- Type
- string
itemScope
- Type
- boolean
itemType
- Type
- string
key
- Type
- Key
lang
- Type
- string
list
- Type
- string
max
- Type
- string | number
maxLength
- Type
- number
min
- Type
- string | number
minLength
- Type
- number
multiple
- Type
- boolean
nonce
- Type
- string
onAbort
- Type
- ReactEventHandler<HTMLInputElement>
onAbortCapture
- Type
- ReactEventHandler<HTMLInputElement>
onAnimationEnd
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationEndCapture
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationIteration
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationIterationCapture
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationStart
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationStartCapture
- Type
- AnimationEventHandler<HTMLInputElement>
onAuxClick
- Type
- MouseEventHandler<HTMLInputElement>
onAuxClickCapture
- Type
- MouseEventHandler<HTMLInputElement>
onBeforeInput
- Type
- FormEventHandler<HTMLInputElement>
onBeforeInputCapture
- Type
- FormEventHandler<HTMLInputElement>
onBlur
- Type
- FocusEventHandler<HTMLInputElement>
onBlurCapture
- Type
- FocusEventHandler<HTMLInputElement>
onCanPlay
- Type
- ReactEventHandler<HTMLInputElement>
onCanPlayCapture
- Type
- ReactEventHandler<HTMLInputElement>
onCanPlayThrough
- Type
- ReactEventHandler<HTMLInputElement>
onCanPlayThroughCapture
- Type
- ReactEventHandler<HTMLInputElement>
onChange
- Type
- ChangeEventHandler<HTMLInputElement>
onChangeCapture
- Type
- FormEventHandler<HTMLInputElement>
onClick
- Type
- MouseEventHandler<HTMLInputElement>
onClickCapture
- Type
- MouseEventHandler<HTMLInputElement>
onCompositionEnd
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionEndCapture
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionStart
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionStartCapture
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionUpdate
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionUpdateCapture
- Type
- CompositionEventHandler<HTMLInputElement>
onContextMenu
- Type
- MouseEventHandler<HTMLInputElement>
onContextMenuCapture
- Type
- MouseEventHandler<HTMLInputElement>
onCopy
- Type
- ClipboardEventHandler<HTMLInputElement>
onCopyCapture
- Type
- ClipboardEventHandler<HTMLInputElement>
onCut
- Type
- ClipboardEventHandler<HTMLInputElement>
onCutCapture
- Type
- ClipboardEventHandler<HTMLInputElement>
onDoubleClick
- Type
- MouseEventHandler<HTMLInputElement>
onDoubleClickCapture
- Type
- MouseEventHandler<HTMLInputElement>
onDrag
- Type
- DragEventHandler<HTMLInputElement>
onDragCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragEnd
- Type
- DragEventHandler<HTMLInputElement>
onDragEndCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragEnter
- Type
- DragEventHandler<HTMLInputElement>
onDragEnterCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragExit
- Type
- DragEventHandler<HTMLInputElement>
onDragExitCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragLeave
- Type
- DragEventHandler<HTMLInputElement>
onDragLeaveCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragOver
- Type
- DragEventHandler<HTMLInputElement>
onDragOverCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragStart
- Type
- DragEventHandler<HTMLInputElement>
onDragStartCapture
- Type
- DragEventHandler<HTMLInputElement>
onDrop
- Type
- DragEventHandler<HTMLInputElement>
onDropCapture
- Type
- DragEventHandler<HTMLInputElement>
onDurationChange
- Type
- ReactEventHandler<HTMLInputElement>
onDurationChangeCapture
- Type
- ReactEventHandler<HTMLInputElement>
onEmptied
- Type
- ReactEventHandler<HTMLInputElement>
onEmptiedCapture
- Type
- ReactEventHandler<HTMLInputElement>
onEncrypted
- Type
- ReactEventHandler<HTMLInputElement>
onEncryptedCapture
- Type
- ReactEventHandler<HTMLInputElement>
onEnded
- Type
- ReactEventHandler<HTMLInputElement>
onEndedCapture
- Type
- ReactEventHandler<HTMLInputElement>
onError
- Type
- ReactEventHandler<HTMLInputElement>
onErrorCapture
- Type
- ReactEventHandler<HTMLInputElement>
onFocus
- Type
- FocusEventHandler<HTMLInputElement>
onFocusCapture
- Type
- FocusEventHandler<HTMLInputElement>
onGotPointerCapture
- Type
- PointerEventHandler<HTMLInputElement>
onGotPointerCaptureCapture
- Type
- PointerEventHandler<HTMLInputElement>
onInput
- Type
- FormEventHandler<HTMLInputElement>
onInputCapture
- Type
- FormEventHandler<HTMLInputElement>
onInvalid
- Type
- FormEventHandler<HTMLInputElement>
onInvalidCapture
- Type
- FormEventHandler<HTMLInputElement>
onKeyDown
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyDownCapture
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyPress
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyPressCapture
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyUp
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyUpCapture
- Type
- KeyboardEventHandler<HTMLInputElement>
onLoad
- Type
- ReactEventHandler<HTMLInputElement>
onLoadCapture
- Type
- ReactEventHandler<HTMLInputElement>
onLoadedData
- Type
- ReactEventHandler<HTMLInputElement>
onLoadedDataCapture
- Type
- ReactEventHandler<HTMLInputElement>
onLoadedMetadata
- Type
- ReactEventHandler<HTMLInputElement>
onLoadedMetadataCapture
- Type
- ReactEventHandler<HTMLInputElement>
onLoadStart
- Type
- ReactEventHandler<HTMLInputElement>
onLoadStartCapture
- Type
- ReactEventHandler<HTMLInputElement>
onLostPointerCapture
- Type
- PointerEventHandler<HTMLInputElement>
onLostPointerCaptureCapture
- Type
- PointerEventHandler<HTMLInputElement>
onMouseDown
- Type
- MouseEventHandler<HTMLInputElement>
onMouseDownCapture
- Type
- MouseEventHandler<HTMLInputElement>
onMouseEnter
- Type
- MouseEventHandler<HTMLInputElement>
onMouseLeave
- Type
- MouseEventHandler<HTMLInputElement>
onMouseMove
- Type
- MouseEventHandler<HTMLInputElement>
onMouseMoveCapture
- Type
- MouseEventHandler<HTMLInputElement>
onMouseOut
- Type
- MouseEventHandler<HTMLInputElement>
onMouseOutCapture
- Type
- MouseEventHandler<HTMLInputElement>
onMouseOver
- Type
- MouseEventHandler<HTMLInputElement>
onMouseOverCapture
- Type
- MouseEventHandler<HTMLInputElement>
onMouseUp
- Type
- MouseEventHandler<HTMLInputElement>
onMouseUpCapture
- Type
- MouseEventHandler<HTMLInputElement>
onPaste
- Type
- ClipboardEventHandler<HTMLInputElement>
onPasteCapture
- Type
- ClipboardEventHandler<HTMLInputElement>
onPause
- Type
- ReactEventHandler<HTMLInputElement>
onPauseCapture
- Type
- ReactEventHandler<HTMLInputElement>
onPlay
- Type
- ReactEventHandler<HTMLInputElement>
onPlayCapture
- Type
- ReactEventHandler<HTMLInputElement>
onPlaying
- Type
- ReactEventHandler<HTMLInputElement>
onPlayingCapture
- Type
- ReactEventHandler<HTMLInputElement>
onPointerCancel
- Type
- PointerEventHandler<HTMLInputElement>
onPointerCancelCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerDown
- Type
- PointerEventHandler<HTMLInputElement>
onPointerDownCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerEnter
- Type
- PointerEventHandler<HTMLInputElement>
onPointerEnterCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerLeave
- Type
- PointerEventHandler<HTMLInputElement>
onPointerLeaveCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerMove
- Type
- PointerEventHandler<HTMLInputElement>
onPointerMoveCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerOut
- Type
- PointerEventHandler<HTMLInputElement>
onPointerOutCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerOver
- Type
- PointerEventHandler<HTMLInputElement>
onPointerOverCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerUp
- Type
- PointerEventHandler<HTMLInputElement>
onPointerUpCapture
- Type
- PointerEventHandler<HTMLInputElement>
onProgress
- Type
- ReactEventHandler<HTMLInputElement>
onProgressCapture
- Type
- ReactEventHandler<HTMLInputElement>
onRateChange
- Type
- ReactEventHandler<HTMLInputElement>
onRateChangeCapture
- Type
- ReactEventHandler<HTMLInputElement>
onReset
- Type
- FormEventHandler<HTMLInputElement>
onResetCapture
- Type
- FormEventHandler<HTMLInputElement>
onResize
- Type
- ReactEventHandler<HTMLInputElement>
onResizeCapture
- Type
- ReactEventHandler<HTMLInputElement>
onScroll
- Type
- UIEventHandler<HTMLInputElement>
onScrollCapture
- Type
- UIEventHandler<HTMLInputElement>
onSeeked
- Type
- ReactEventHandler<HTMLInputElement>
onSeekedCapture
- Type
- ReactEventHandler<HTMLInputElement>
onSeeking
- Type
- ReactEventHandler<HTMLInputElement>
onSeekingCapture
- Type
- ReactEventHandler<HTMLInputElement>
onSelect
- Type
- ReactEventHandler<HTMLInputElement>
onSelectCapture
- Type
- ReactEventHandler<HTMLInputElement>
onStalled
- Type
- ReactEventHandler<HTMLInputElement>
onStalledCapture
- Type
- ReactEventHandler<HTMLInputElement>
onSubmit
- Type
- FormEventHandler<HTMLInputElement>
onSubmitCapture
- Type
- FormEventHandler<HTMLInputElement>
onSuspend
- Type
- ReactEventHandler<HTMLInputElement>
onSuspendCapture
- Type
- ReactEventHandler<HTMLInputElement>
onTimeUpdate
- Type
- ReactEventHandler<HTMLInputElement>
onTimeUpdateCapture
- Type
- ReactEventHandler<HTMLInputElement>
onTouchCancel
- Type
- TouchEventHandler<HTMLInputElement>
onTouchCancelCapture
- Type
- TouchEventHandler<HTMLInputElement>
onTouchEnd
- Type
- TouchEventHandler<HTMLInputElement>
onTouchEndCapture
- Type
- TouchEventHandler<HTMLInputElement>
onTouchMove
- Type
- TouchEventHandler<HTMLInputElement>
onTouchMoveCapture
- Type
- TouchEventHandler<HTMLInputElement>
onTouchStart
- Type
- TouchEventHandler<HTMLInputElement>
onTouchStartCapture
- Type
- TouchEventHandler<HTMLInputElement>
onTransitionEnd
- Type
- TransitionEventHandler<HTMLInputElement>
onTransitionEndCapture
- Type
- TransitionEventHandler<HTMLInputElement>
onVolumeChange
- Type
- ReactEventHandler<HTMLInputElement>
onVolumeChangeCapture
- Type
- ReactEventHandler<HTMLInputElement>
onWaiting
- Type
- ReactEventHandler<HTMLInputElement>
onWaitingCapture
- Type
- ReactEventHandler<HTMLInputElement>
onWheel
- Type
- WheelEventHandler<HTMLInputElement>
onWheelCapture
- Type
- WheelEventHandler<HTMLInputElement>
pattern
- Type
- string
placeholder
- Type
- string
prefix
- Type
- string
property
- Type
- string
radioGroup
- Type
- string
readOnly
- Type
- boolean
required
- Type
- boolean
resource
- Type
- string
results
- Type
- number
role
- Type
- AriaRole
security
- Type
- string
size
- Type
- number
slot
- Type
- string
spellCheck
- Type
- Booleanish
src
- Type
- string
step
- Type
- string | number
suppressContentEditableWarning
- Type
- boolean
suppressHydrationWarning
- Type
- boolean
tabIndex
- Type
- number
title
- Type
- string
translate
- Type
- "yes" | "no"
type
- Type
- HTMLInputTypeAttribute
typeof
- Type
- string
unselectable
- Type
- "on" | "off"
vocab
- Type
- string
width
- Type
- string | number
legend RequiredRequired
String to render as the label text.
- Type
- NonNullable<ReactNode>
name RequiredRequired
Provides name for the VisualPicker groups and items
- Type
- string
disabled
Make the Group disabled
- Type
- boolean
element
Overrides the default element name to apply unique styles with the Customization Provider.
- Type
- string
- Default
- VISUAL_PICKER_CHECKBOX_GROUP
errorText
String to render as the error text.
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
helpText
String to render as the help text.
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
i18nRequiredLabel
Label text for the required dot in the legend
- Type
- string
- Default
- (required)
orientation
Sets the direction of the visual picker group
- Type
- "horizontal" | "vertical"
- Default
- vertical
required
Make the Group required
- Type
- boolean
Inherited props
Paste components will often extend native HTML elements and as a result will inherit or extend their available properties. Below is a list of the props this component has inherited and are also available to use.
about
- Type
- string
accessKey
- Type
- string
aria-activedescendant
Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.
- Type
- string
aria-atomic
Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.
- Type
- Booleanish
aria-autocomplete
Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be presented if they are made.
- Type
- "list" | "none" | "inline" | "both"
aria-busy
Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user.
- Type
- Booleanish
aria-checked
Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
- Type
- boolean | "true" | "false" | "mixed"
aria-colcount
Defines the total number of columns in a table, grid, or treegrid.
- Type
- number
aria-colindex
Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
- Type
- number
aria-colspan
Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
- Type
- number
aria-controls
Identifies the element (or elements) whose contents or presence are controlled by the current element.
- Type
- string
aria-current
Indicates the element that represents the current item within a container or set of related elements.
- Type
- | boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
aria-describedby
Identifies the element (or elements) that describes the object.
- Type
- string
aria-details
Identifies the element that provides a detailed, extended description for the object.
- Type
- string
aria-disabled
Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
- Type
- Booleanish
aria-dropeffect
Indicates what functions can be performed when a dragged object is released on the drop target.
- Type
- "link" | "none" | "copy" | "execute" | "move" | "popup"
aria-errormessage
Identifies the element that provides an error message for the object.
- Type
- string
aria-expanded
Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.
- Type
- Booleanish
aria-flowto
Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, allows assistive technology to override the general default of reading in document source order.
- Type
- string
aria-grabbed
Indicates an element's "grabbed" state in a drag-and-drop operation.
- Type
- Booleanish
aria-haspopup
Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.
- Type
- | boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
aria-hidden
Indicates whether the element is exposed to an accessibility API.
- Type
- Booleanish
aria-invalid
Indicates the entered value does not conform to the format expected by the application.
- Type
- boolean | "true" | "false" | "grammar" | "spelling"
aria-keyshortcuts
Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.
- Type
- string
aria-label
Defines a string value that labels the current element.
- Type
- string
aria-labelledby
Identifies the element (or elements) that labels the current element.
- Type
- string
aria-level
Defines the hierarchical level of an element within a structure.
- Type
- number
aria-live
Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.
- Type
- "off" | "assertive" | "polite"
aria-modal
Indicates whether an element is modal when displayed.
- Type
- Booleanish
aria-multiline
Indicates whether a text box accepts multiple lines of input or only a single line.
- Type
- Booleanish
aria-multiselectable
Indicates that the user may select more than one item from the current selectable descendants.
- Type
- Booleanish
aria-orientation
Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
- Type
- "horizontal" | "vertical"
aria-owns
Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
- Type
- string
aria-placeholder
Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value. A hint could be a sample value or a brief description of the expected format.
- Type
- string
aria-posinset
Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
- Type
- number
aria-pressed
Indicates the current "pressed" state of toggle buttons.
- Type
- boolean | "true" | "false" | "mixed"
aria-readonly
Indicates that the element is not editable, but is otherwise operable.
- Type
- Booleanish
aria-relevant
Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
- Type
- | "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
aria-required
Indicates that user input is required on the element before a form may be submitted.
- Type
- Booleanish
aria-roledescription
Defines a human-readable, author-localized description for the role of an element.
- Type
- string
aria-rowcount
Defines the total number of rows in a table, grid, or treegrid.
- Type
- number
aria-rowindex
Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
- Type
- number
aria-rowspan
Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
- Type
- number
aria-selected
Indicates the current "selected" state of various widgets.
- Type
- Booleanish
aria-setsize
Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
- Type
- number
aria-sort
Indicates if items in a table or grid are sorted in ascending or descending order.
- Type
- "none" | "ascending" | "descending" | "other"
aria-valuemax
Defines the maximum allowed value for a range widget.
- Type
- number
aria-valuemin
Defines the minimum allowed value for a range widget.
- Type
- number
aria-valuenow
Defines the current value for a range widget.
- Type
- number
aria-valuetext
Defines the human readable text alternative of aria-valuenow for a range widget.
- Type
- string
autoCapitalize
- Type
- string
autoCorrect
- Type
- string
autoSave
- Type
- string
contentEditable
- Type
- Booleanish | "inherit"
contextMenu
- Type
- string
dangerouslySetInnerHTML
- Type
- { __html: string }
datatype
- Type
- string
defaultChecked
- Type
- boolean
defaultValue
- Type
- string | number | readonly string[]
dir
- Type
- string
draggable
- Type
- Booleanish
form
- Type
- string
hidden
- Type
- boolean
id
- Type
- string
inlist
- Type
- any
inputMode
Hints at the type of data that might be entered by the user while editing the element or its contents
- Type
- | "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal"
is
Specify that a standard HTML element should behave like a defined custom built-in element
- Type
- string
itemID
- Type
- string
itemProp
- Type
- string
itemRef
- Type
- string
itemScope
- Type
- boolean
itemType
- Type
- string
key
- Type
- Key
lang
- Type
- string
nonce
- Type
- string
onAbort
- Type
- ReactEventHandler<HTMLFieldSetElement>
onAbortCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onAnimationEnd
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationEndCapture
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationIteration
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationIterationCapture
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationStart
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAnimationStartCapture
- Type
- AnimationEventHandler<HTMLFieldSetElement>
onAuxClick
- Type
- MouseEventHandler<HTMLFieldSetElement>
onAuxClickCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onBeforeInput
- Type
- FormEventHandler<HTMLFieldSetElement>
onBeforeInputCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onBlur
- Type
- FocusEventHandler<HTMLFieldSetElement>
onBlurCapture
- Type
- FocusEventHandler<HTMLFieldSetElement>
onCanPlay
- Type
- ReactEventHandler<HTMLFieldSetElement>
onCanPlayCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onCanPlayThrough
- Type
- ReactEventHandler<HTMLFieldSetElement>
onCanPlayThroughCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onChangeCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onClick
- Type
- MouseEventHandler<HTMLFieldSetElement>
onClickCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onCompositionEnd
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionEndCapture
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionStart
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionStartCapture
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionUpdate
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onCompositionUpdateCapture
- Type
- CompositionEventHandler<HTMLFieldSetElement>
onContextMenu
- Type
- MouseEventHandler<HTMLFieldSetElement>
onContextMenuCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onCopy
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onCopyCapture
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onCut
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onCutCapture
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onDoubleClick
- Type
- MouseEventHandler<HTMLFieldSetElement>
onDoubleClickCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onDrag
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragEnd
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragEndCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragEnter
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragEnterCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragExit
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragExitCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragLeave
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragLeaveCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragOver
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragOverCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragStart
- Type
- DragEventHandler<HTMLFieldSetElement>
onDragStartCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDrop
- Type
- DragEventHandler<HTMLFieldSetElement>
onDropCapture
- Type
- DragEventHandler<HTMLFieldSetElement>
onDurationChange
- Type
- ReactEventHandler<HTMLFieldSetElement>
onDurationChangeCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEmptied
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEmptiedCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEncrypted
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEncryptedCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEnded
- Type
- ReactEventHandler<HTMLFieldSetElement>
onEndedCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onError
- Type
- ReactEventHandler<HTMLFieldSetElement>
onErrorCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onFocus
- Type
- FocusEventHandler<HTMLFieldSetElement>
onFocusCapture
- Type
- FocusEventHandler<HTMLFieldSetElement>
onGotPointerCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onGotPointerCaptureCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onInput
- Type
- FormEventHandler<HTMLFieldSetElement>
onInputCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onInvalid
- Type
- FormEventHandler<HTMLFieldSetElement>
onInvalidCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onKeyDown
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyDownCapture
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyPress
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyPressCapture
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyUp
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onKeyUpCapture
- Type
- KeyboardEventHandler<HTMLFieldSetElement>
onLoad
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadedData
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadedDataCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadedMetadata
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadedMetadataCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadStart
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLoadStartCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onLostPointerCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onLostPointerCaptureCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onMouseDown
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseDownCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseEnter
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseLeave
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseMove
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseMoveCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseOut
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseOutCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseOver
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseOverCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseUp
- Type
- MouseEventHandler<HTMLFieldSetElement>
onMouseUpCapture
- Type
- MouseEventHandler<HTMLFieldSetElement>
onPaste
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onPasteCapture
- Type
- ClipboardEventHandler<HTMLFieldSetElement>
onPause
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPauseCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPlay
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPlayCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPlaying
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPlayingCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onPointerCancel
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerCancelCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerDown
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerDownCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerEnter
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerEnterCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerLeave
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerLeaveCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerMove
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerMoveCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerOut
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerOutCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerOver
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerOverCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerUp
- Type
- PointerEventHandler<HTMLFieldSetElement>
onPointerUpCapture
- Type
- PointerEventHandler<HTMLFieldSetElement>
onProgress
- Type
- ReactEventHandler<HTMLFieldSetElement>
onProgressCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onRateChange
- Type
- ReactEventHandler<HTMLFieldSetElement>
onRateChangeCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onReset
- Type
- FormEventHandler<HTMLFieldSetElement>
onResetCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onResize
- Type
- ReactEventHandler<HTMLFieldSetElement>
onResizeCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onScroll
- Type
- UIEventHandler<HTMLFieldSetElement>
onScrollCapture
- Type
- UIEventHandler<HTMLFieldSetElement>
onSeeked
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSeekedCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSeeking
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSeekingCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSelect
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSelectCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onStalled
- Type
- ReactEventHandler<HTMLFieldSetElement>
onStalledCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSubmit
- Type
- FormEventHandler<HTMLFieldSetElement>
onSubmitCapture
- Type
- FormEventHandler<HTMLFieldSetElement>
onSuspend
- Type
- ReactEventHandler<HTMLFieldSetElement>
onSuspendCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onTimeUpdate
- Type
- ReactEventHandler<HTMLFieldSetElement>
onTimeUpdateCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onTouchCancel
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchCancelCapture
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchEnd
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchEndCapture
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchMove
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchMoveCapture
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchStart
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTouchStartCapture
- Type
- TouchEventHandler<HTMLFieldSetElement>
onTransitionEnd
- Type
- TransitionEventHandler<HTMLFieldSetElement>
onTransitionEndCapture
- Type
- TransitionEventHandler<HTMLFieldSetElement>
onVolumeChange
- Type
- ReactEventHandler<HTMLFieldSetElement>
onVolumeChangeCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onWaiting
- Type
- ReactEventHandler<HTMLFieldSetElement>
onWaitingCapture
- Type
- ReactEventHandler<HTMLFieldSetElement>
onWheel
- Type
- WheelEventHandler<HTMLFieldSetElement>
onWheelCapture
- Type
- WheelEventHandler<HTMLFieldSetElement>
placeholder
- Type
- string
prefix
- Type
- string
property
- Type
- string
radioGroup
- Type
- string
resource
- Type
- string
results
- Type
- number
role
- Type
- AriaRole
security
- Type
- string
slot
- Type
- string
spellCheck
- Type
- Booleanish
suppressContentEditableWarning
- Type
- boolean
suppressHydrationWarning
- Type
- boolean
tabIndex
- Type
- number
title
- Type
- string
translate
- Type
- "yes" | "no"
typeof
- Type
- string
unselectable
- Type
- "on" | "off"
vocab
- Type
- string
checked RequiredRequired
Determines the checked state of the checkbox
- Type
- boolean
labelText RequiredRequired
Label text for the checkbox
- Type
- string
onChange RequiredRequired
Callback for when the checkbox changes
- Type
- (event: ChangeEvent<HTMLInputElement>) => void
element
Overrides the default element name to apply unique styles with the Customization Provider.
- Type
- string
- Default
- VISUAL_PICKER_CHECKBOX
hasError
- Type
- boolean
- Default
- null
id
- Type
- string
- Default
- unique id
indeterminate
- Type
- boolean
- Default
- null
isSelectAll
- Type
- boolean
- Default
- null
isSelectAllChild
- Type
- boolean
- Default
- null
Inherited props
Paste components will often extend native HTML elements and as a result will inherit or extend their available properties. Below is a list of the props this component has inherited and are also available to use.
about
- Type
- string
accept
- Type
- string
accessKey
- Type
- string
alt
- Type
- string
aria-activedescendant
Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.
- Type
- string
aria-atomic
Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.
- Type
- Booleanish
aria-autocomplete
Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be presented if they are made.
- Type
- "list" | "none" | "inline" | "both"
aria-busy
Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user.
- Type
- Booleanish
aria-checked
Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
- Type
- boolean | "true" | "false" | "mixed"
aria-colcount
Defines the total number of columns in a table, grid, or treegrid.
- Type
- number
aria-colindex
Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
- Type
- number
aria-colspan
Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
- Type
- number
aria-controls
Identifies the element (or elements) whose contents or presence are controlled by the current element.
- Type
- string
aria-current
Indicates the element that represents the current item within a container or set of related elements.
- Type
- | boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
aria-describedby
Identifies the element (or elements) that describes the object.
- Type
- string
aria-details
Identifies the element that provides a detailed, extended description for the object.
- Type
- string
aria-disabled
Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
- Type
- Booleanish
aria-dropeffect
Indicates what functions can be performed when a dragged object is released on the drop target.
- Type
- "link" | "none" | "copy" | "execute" | "move" | "popup"
aria-errormessage
Identifies the element that provides an error message for the object.
- Type
- string
aria-expanded
Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.
- Type
- Booleanish
aria-flowto
Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, allows assistive technology to override the general default of reading in document source order.
- Type
- string
aria-grabbed
Indicates an element's "grabbed" state in a drag-and-drop operation.
- Type
- Booleanish
aria-haspopup
Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.
- Type
- | boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
aria-hidden
Indicates whether the element is exposed to an accessibility API.
- Type
- Booleanish
aria-invalid
Indicates the entered value does not conform to the format expected by the application.
- Type
- boolean | "true" | "false" | "grammar" | "spelling"
aria-keyshortcuts
Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.
- Type
- string
aria-label
Defines a string value that labels the current element.
- Type
- string
aria-labelledby
Identifies the element (or elements) that labels the current element.
- Type
- string
aria-level
Defines the hierarchical level of an element within a structure.
- Type
- number
aria-live
Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.
- Type
- "off" | "assertive" | "polite"
aria-modal
Indicates whether an element is modal when displayed.
- Type
- Booleanish
aria-multiline
Indicates whether a text box accepts multiple lines of input or only a single line.
- Type
- Booleanish
aria-multiselectable
Indicates that the user may select more than one item from the current selectable descendants.
- Type
- Booleanish
aria-orientation
Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
- Type
- "horizontal" | "vertical"
aria-owns
Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
- Type
- string
aria-placeholder
Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value. A hint could be a sample value or a brief description of the expected format.
- Type
- string
aria-posinset
Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
- Type
- number
aria-pressed
Indicates the current "pressed" state of toggle buttons.
- Type
- boolean | "true" | "false" | "mixed"
aria-readonly
Indicates that the element is not editable, but is otherwise operable.
- Type
- Booleanish
aria-relevant
Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
- Type
- | "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
aria-required
Indicates that user input is required on the element before a form may be submitted.
- Type
- Booleanish
aria-roledescription
Defines a human-readable, author-localized description for the role of an element.
- Type
- string
aria-rowcount
Defines the total number of rows in a table, grid, or treegrid.
- Type
- number
aria-rowindex
Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
- Type
- number
aria-rowspan
Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
- Type
- number
aria-selected
Indicates the current "selected" state of various widgets.
- Type
- Booleanish
aria-setsize
Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
- Type
- number
aria-sort
Indicates if items in a table or grid are sorted in ascending or descending order.
- Type
- "none" | "ascending" | "descending" | "other"
aria-valuemax
Defines the maximum allowed value for a range widget.
- Type
- number
aria-valuemin
Defines the minimum allowed value for a range widget.
- Type
- number
aria-valuenow
Defines the current value for a range widget.
- Type
- number
aria-valuetext
Defines the human readable text alternative of aria-valuenow for a range widget.
- Type
- string
autoCapitalize
- Type
- string
autoComplete
- Type
- string
autoCorrect
- Type
- string
autoFocus
- Type
- boolean
autoSave
- Type
- string
capture
- Type
- boolean | "user" | "environment"
contentEditable
- Type
- Booleanish | "inherit"
contextMenu
- Type
- string
crossOrigin
- Type
- "" | "anonymous" | "use-credentials"
dangerouslySetInnerHTML
- Type
- { __html: string }
datatype
- Type
- string
defaultValue
- Type
- string | number | readonly string[]
dir
- Type
- string
disabled
- Type
- boolean
draggable
- Type
- Booleanish
enterKeyHint
- Type
- | "search" | "enter" | "done" | "go" | "next" | "previous" | "send"
form
- Type
- string
formAction
- Type
- string
formEncType
- Type
- string
formMethod
- Type
- string
formNoValidate
- Type
- boolean
formTarget
- Type
- string
height
- Type
- string | number
hidden
- Type
- boolean
inlist
- Type
- any
inputMode
Hints at the type of data that might be entered by the user while editing the element or its contents
- Type
- | "text" | "none" | "search" | "tel" | "url" | "email" | "numeric" | "decimal"
is
Specify that a standard HTML element should behave like a defined custom built-in element
- Type
- string
itemID
- Type
- string
itemProp
- Type
- string
itemRef
- Type
- string
itemScope
- Type
- boolean
itemType
- Type
- string
key
- Type
- Key
lang
- Type
- string
list
- Type
- string
max
- Type
- string | number
maxLength
- Type
- number
min
- Type
- string | number
minLength
- Type
- number
multiple
- Type
- boolean
name
- Type
- string
nonce
- Type
- string
onAbort
- Type
- ReactEventHandler<HTMLInputElement>
onAbortCapture
- Type
- ReactEventHandler<HTMLInputElement>
onAnimationEnd
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationEndCapture
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationIteration
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationIterationCapture
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationStart
- Type
- AnimationEventHandler<HTMLInputElement>
onAnimationStartCapture
- Type
- AnimationEventHandler<HTMLInputElement>
onAuxClick
- Type
- MouseEventHandler<HTMLInputElement>
onAuxClickCapture
- Type
- MouseEventHandler<HTMLInputElement>
onBeforeInput
- Type
- FormEventHandler<HTMLInputElement>
onBeforeInputCapture
- Type
- FormEventHandler<HTMLInputElement>
onBlur
- Type
- FocusEventHandler<HTMLInputElement>
onBlurCapture
- Type
- FocusEventHandler<HTMLInputElement>
onCanPlay
- Type
- ReactEventHandler<HTMLInputElement>
onCanPlayCapture
- Type
- ReactEventHandler<HTMLInputElement>
onCanPlayThrough
- Type
- ReactEventHandler<HTMLInputElement>
onCanPlayThroughCapture
- Type
- ReactEventHandler<HTMLInputElement>
onChangeCapture
- Type
- FormEventHandler<HTMLInputElement>
onClick
- Type
- MouseEventHandler<HTMLInputElement>
onClickCapture
- Type
- MouseEventHandler<HTMLInputElement>
onCompositionEnd
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionEndCapture
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionStart
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionStartCapture
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionUpdate
- Type
- CompositionEventHandler<HTMLInputElement>
onCompositionUpdateCapture
- Type
- CompositionEventHandler<HTMLInputElement>
onContextMenu
- Type
- MouseEventHandler<HTMLInputElement>
onContextMenuCapture
- Type
- MouseEventHandler<HTMLInputElement>
onCopy
- Type
- ClipboardEventHandler<HTMLInputElement>
onCopyCapture
- Type
- ClipboardEventHandler<HTMLInputElement>
onCut
- Type
- ClipboardEventHandler<HTMLInputElement>
onCutCapture
- Type
- ClipboardEventHandler<HTMLInputElement>
onDoubleClick
- Type
- MouseEventHandler<HTMLInputElement>
onDoubleClickCapture
- Type
- MouseEventHandler<HTMLInputElement>
onDrag
- Type
- DragEventHandler<HTMLInputElement>
onDragCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragEnd
- Type
- DragEventHandler<HTMLInputElement>
onDragEndCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragEnter
- Type
- DragEventHandler<HTMLInputElement>
onDragEnterCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragExit
- Type
- DragEventHandler<HTMLInputElement>
onDragExitCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragLeave
- Type
- DragEventHandler<HTMLInputElement>
onDragLeaveCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragOver
- Type
- DragEventHandler<HTMLInputElement>
onDragOverCapture
- Type
- DragEventHandler<HTMLInputElement>
onDragStart
- Type
- DragEventHandler<HTMLInputElement>
onDragStartCapture
- Type
- DragEventHandler<HTMLInputElement>
onDrop
- Type
- DragEventHandler<HTMLInputElement>
onDropCapture
- Type
- DragEventHandler<HTMLInputElement>
onDurationChange
- Type
- ReactEventHandler<HTMLInputElement>
onDurationChangeCapture
- Type
- ReactEventHandler<HTMLInputElement>
onEmptied
- Type
- ReactEventHandler<HTMLInputElement>
onEmptiedCapture
- Type
- ReactEventHandler<HTMLInputElement>
onEncrypted
- Type
- ReactEventHandler<HTMLInputElement>
onEncryptedCapture
- Type
- ReactEventHandler<HTMLInputElement>
onEnded
- Type
- ReactEventHandler<HTMLInputElement>
onEndedCapture
- Type
- ReactEventHandler<HTMLInputElement>
onError
- Type
- ReactEventHandler<HTMLInputElement>
onErrorCapture
- Type
- ReactEventHandler<HTMLInputElement>
onFocus
- Type
- FocusEventHandler<HTMLInputElement>
onFocusCapture
- Type
- FocusEventHandler<HTMLInputElement>
onGotPointerCapture
- Type
- PointerEventHandler<HTMLInputElement>
onGotPointerCaptureCapture
- Type
- PointerEventHandler<HTMLInputElement>
onInput
- Type
- FormEventHandler<HTMLInputElement>
onInputCapture
- Type
- FormEventHandler<HTMLInputElement>
onInvalid
- Type
- FormEventHandler<HTMLInputElement>
onInvalidCapture
- Type
- FormEventHandler<HTMLInputElement>
onKeyDown
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyDownCapture
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyPress
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyPressCapture
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyUp
- Type
- KeyboardEventHandler<HTMLInputElement>
onKeyUpCapture
- Type
- KeyboardEventHandler<HTMLInputElement>
onLoad
- Type
- ReactEventHandler<HTMLInputElement>
onLoadCapture
- Type
- ReactEventHandler<HTMLInputElement>
onLoadedData
- Type
- ReactEventHandler<HTMLInputElement>
onLoadedDataCapture
- Type
- ReactEventHandler<HTMLInputElement>
onLoadedMetadata
- Type
- ReactEventHandler<HTMLInputElement>
onLoadedMetadataCapture
- Type
- ReactEventHandler<HTMLInputElement>
onLoadStart
- Type
- ReactEventHandler<HTMLInputElement>
onLoadStartCapture
- Type
- ReactEventHandler<HTMLInputElement>
onLostPointerCapture
- Type
- PointerEventHandler<HTMLInputElement>
onLostPointerCaptureCapture
- Type
- PointerEventHandler<HTMLInputElement>
onMouseDown
- Type
- MouseEventHandler<HTMLInputElement>
onMouseDownCapture
- Type
- MouseEventHandler<HTMLInputElement>
onMouseEnter
- Type
- MouseEventHandler<HTMLInputElement>
onMouseLeave
- Type
- MouseEventHandler<HTMLInputElement>
onMouseMove
- Type
- MouseEventHandler<HTMLInputElement>
onMouseMoveCapture
- Type
- MouseEventHandler<HTMLInputElement>
onMouseOut
- Type
- MouseEventHandler<HTMLInputElement>
onMouseOutCapture
- Type
- MouseEventHandler<HTMLInputElement>
onMouseOver
- Type
- MouseEventHandler<HTMLInputElement>
onMouseOverCapture
- Type
- MouseEventHandler<HTMLInputElement>
onMouseUp
- Type
- MouseEventHandler<HTMLInputElement>
onMouseUpCapture
- Type
- MouseEventHandler<HTMLInputElement>
onPaste
- Type
- ClipboardEventHandler<HTMLInputElement>
onPasteCapture
- Type
- ClipboardEventHandler<HTMLInputElement>
onPause
- Type
- ReactEventHandler<HTMLInputElement>
onPauseCapture
- Type
- ReactEventHandler<HTMLInputElement>
onPlay
- Type
- ReactEventHandler<HTMLInputElement>
onPlayCapture
- Type
- ReactEventHandler<HTMLInputElement>
onPlaying
- Type
- ReactEventHandler<HTMLInputElement>
onPlayingCapture
- Type
- ReactEventHandler<HTMLInputElement>
onPointerCancel
- Type
- PointerEventHandler<HTMLInputElement>
onPointerCancelCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerDown
- Type
- PointerEventHandler<HTMLInputElement>
onPointerDownCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerEnter
- Type
- PointerEventHandler<HTMLInputElement>
onPointerEnterCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerLeave
- Type
- PointerEventHandler<HTMLInputElement>
onPointerLeaveCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerMove
- Type
- PointerEventHandler<HTMLInputElement>
onPointerMoveCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerOut
- Type
- PointerEventHandler<HTMLInputElement>
onPointerOutCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerOver
- Type
- PointerEventHandler<HTMLInputElement>
onPointerOverCapture
- Type
- PointerEventHandler<HTMLInputElement>
onPointerUp
- Type
- PointerEventHandler<HTMLInputElement>
onPointerUpCapture
- Type
- PointerEventHandler<HTMLInputElement>
onProgress
- Type
- ReactEventHandler<HTMLInputElement>
onProgressCapture
- Type
- ReactEventHandler<HTMLInputElement>
onRateChange
- Type
- ReactEventHandler<HTMLInputElement>
onRateChangeCapture
- Type
- ReactEventHandler<HTMLInputElement>
onReset
- Type
- FormEventHandler<HTMLInputElement>
onResetCapture
- Type
- FormEventHandler<HTMLInputElement>
onResize
- Type
- ReactEventHandler<HTMLInputElement>
onResizeCapture
- Type
- ReactEventHandler<HTMLInputElement>
onScroll
- Type
- UIEventHandler<HTMLInputElement>
onScrollCapture
- Type
- UIEventHandler<HTMLInputElement>
onSeeked
- Type
- ReactEventHandler<HTMLInputElement>
onSeekedCapture
- Type
- ReactEventHandler<HTMLInputElement>
onSeeking
- Type
- ReactEventHandler<HTMLInputElement>
onSeekingCapture
- Type
- ReactEventHandler<HTMLInputElement>
onSelect
- Type
- ReactEventHandler<HTMLInputElement>
onSelectCapture
- Type
- ReactEventHandler<HTMLInputElement>
onStalled
- Type
- ReactEventHandler<HTMLInputElement>
onStalledCapture
- Type
- ReactEventHandler<HTMLInputElement>
onSubmit
- Type
- FormEventHandler<HTMLInputElement>
onSubmitCapture
- Type
- FormEventHandler<HTMLInputElement>
onSuspend
- Type
- ReactEventHandler<HTMLInputElement>
onSuspendCapture
- Type
- ReactEventHandler<HTMLInputElement>
onTimeUpdate
- Type
- ReactEventHandler<HTMLInputElement>
onTimeUpdateCapture
- Type
- ReactEventHandler<HTMLInputElement>
onTouchCancel
- Type
- TouchEventHandler<HTMLInputElement>
onTouchCancelCapture
- Type
- TouchEventHandler<HTMLInputElement>
onTouchEnd
- Type
- TouchEventHandler<HTMLInputElement>
onTouchEndCapture
- Type
- TouchEventHandler<HTMLInputElement>
onTouchMove
- Type
- TouchEventHandler<HTMLInputElement>
onTouchMoveCapture
- Type
- TouchEventHandler<HTMLInputElement>
onTouchStart
- Type
- TouchEventHandler<HTMLInputElement>
onTouchStartCapture
- Type
- TouchEventHandler<HTMLInputElement>
onTransitionEnd
- Type
- TransitionEventHandler<HTMLInputElement>
onTransitionEndCapture
- Type
- TransitionEventHandler<HTMLInputElement>
onVolumeChange
- Type
- ReactEventHandler<HTMLInputElement>
onVolumeChangeCapture
- Type
- ReactEventHandler<HTMLInputElement>
onWaiting
- Type
- ReactEventHandler<HTMLInputElement>
onWaitingCapture
- Type
- ReactEventHandler<HTMLInputElement>
onWheel
- Type
- WheelEventHandler<HTMLInputElement>
onWheelCapture
- Type
- WheelEventHandler<HTMLInputElement>
pattern
- Type
- string
placeholder
- Type
- string
prefix
- Type
- string
property
- Type
- string
radioGroup
- Type
- string
readOnly
- Type
- boolean
resource
- Type
- string
results
- Type
- number
role
- Type
- AriaRole
security
- Type
- string
size
- Type
- number
slot
- Type
- string
spellCheck
- Type
- Booleanish
src
- Type
- string
step
- Type
- string | number
suppressContentEditableWarning
- Type
- boolean
suppressHydrationWarning
- Type
- boolean
tabIndex
- Type
- number
title
- Type
- string
translate
- Type
- "yes" | "no"
type
- Type
- HTMLInputTypeAttribute
typeof
- Type
- string
unselectable
- Type
- "on" | "off"
value
- Type
- string | number | readonly string[]
vocab
- Type
- string
width
- Type
- string | number