yarn add @twilio-paste/combobox - or - yarn add @twilio-paste/core
import {MultiselectCombobox} from '@twilio-paste/core/combobox';
const items = [
  'Alert',
  'Anchor',
  'Button',
  'Card',
  'Heading',
  'List',
  'Modal',
  'Paragraph',
  'Popover',
  'Tooltip',
];
function getFilteredItems(inputValue) {
  const lowerCasedInputValue = inputValue.toLowerCase();
  return items.filter(function filterItems(item) {
    return item.toLowerCase().includes(lowerCasedInputValue);
  });
}
const MyComponent = () => (
  const [inputValue, setInputValue] = React.useState('');
  const filteredItems = React.useMemo(() => getFilteredItems(inputValue), [inputValue]);
  return (
    <MultiselectCombobox
      labelText="Choose a Paste Component"
      selectedItemsLabelText="Selected Paste components"
      items={filteredItems}
      onInputValueChange={({inputValue: newInputValue = ''}) => {
        setInputValue(newInputValue);
      }}
    />
  );
);
hidden RequiredRequired
- Type
- boolean
element
Overrides the default element name to apply unique styles with the Customization Provider
- Type
- string
- Default
- COMBOBOX_LISTBOX
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
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<HTMLUListElement>
onAbortCapture
- Type
- ReactEventHandler<HTMLUListElement>
onAnimationEnd
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationEndCapture
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationIteration
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationIterationCapture
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationStart
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationStartCapture
- Type
- AnimationEventHandler<HTMLUListElement>
onAuxClick
- Type
- MouseEventHandler<HTMLUListElement>
onAuxClickCapture
- Type
- MouseEventHandler<HTMLUListElement>
onBeforeInput
- Type
- FormEventHandler<HTMLUListElement>
onBeforeInputCapture
- Type
- FormEventHandler<HTMLUListElement>
onBlur
- Type
- FocusEventHandler<HTMLUListElement>
onBlurCapture
- Type
- FocusEventHandler<HTMLUListElement>
onCanPlay
- Type
- ReactEventHandler<HTMLUListElement>
onCanPlayCapture
- Type
- ReactEventHandler<HTMLUListElement>
onCanPlayThrough
- Type
- ReactEventHandler<HTMLUListElement>
onCanPlayThroughCapture
- Type
- ReactEventHandler<HTMLUListElement>
onChange
- Type
- FormEventHandler<HTMLUListElement>
onChangeCapture
- Type
- FormEventHandler<HTMLUListElement>
onClick
- Type
- MouseEventHandler<HTMLUListElement>
onClickCapture
- Type
- MouseEventHandler<HTMLUListElement>
onCompositionEnd
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionEndCapture
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionStart
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionStartCapture
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionUpdate
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionUpdateCapture
- Type
- CompositionEventHandler<HTMLUListElement>
onContextMenu
- Type
- MouseEventHandler<HTMLUListElement>
onContextMenuCapture
- Type
- MouseEventHandler<HTMLUListElement>
onCopy
- Type
- ClipboardEventHandler<HTMLUListElement>
onCopyCapture
- Type
- ClipboardEventHandler<HTMLUListElement>
onCut
- Type
- ClipboardEventHandler<HTMLUListElement>
onCutCapture
- Type
- ClipboardEventHandler<HTMLUListElement>
onDoubleClick
- Type
- MouseEventHandler<HTMLUListElement>
onDoubleClickCapture
- Type
- MouseEventHandler<HTMLUListElement>
onDrag
- Type
- DragEventHandler<HTMLUListElement>
onDragCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragEnd
- Type
- DragEventHandler<HTMLUListElement>
onDragEndCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragEnter
- Type
- DragEventHandler<HTMLUListElement>
onDragEnterCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragExit
- Type
- DragEventHandler<HTMLUListElement>
onDragExitCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragLeave
- Type
- DragEventHandler<HTMLUListElement>
onDragLeaveCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragOver
- Type
- DragEventHandler<HTMLUListElement>
onDragOverCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragStart
- Type
- DragEventHandler<HTMLUListElement>
onDragStartCapture
- Type
- DragEventHandler<HTMLUListElement>
onDrop
- Type
- DragEventHandler<HTMLUListElement>
onDropCapture
- Type
- DragEventHandler<HTMLUListElement>
onDurationChange
- Type
- ReactEventHandler<HTMLUListElement>
onDurationChangeCapture
- Type
- ReactEventHandler<HTMLUListElement>
onEmptied
- Type
- ReactEventHandler<HTMLUListElement>
onEmptiedCapture
- Type
- ReactEventHandler<HTMLUListElement>
onEncrypted
- Type
- ReactEventHandler<HTMLUListElement>
onEncryptedCapture
- Type
- ReactEventHandler<HTMLUListElement>
onEnded
- Type
- ReactEventHandler<HTMLUListElement>
onEndedCapture
- Type
- ReactEventHandler<HTMLUListElement>
onError
- Type
- ReactEventHandler<HTMLUListElement>
onErrorCapture
- Type
- ReactEventHandler<HTMLUListElement>
onFocus
- Type
- FocusEventHandler<HTMLUListElement>
onFocusCapture
- Type
- FocusEventHandler<HTMLUListElement>
onGotPointerCapture
- Type
- PointerEventHandler<HTMLUListElement>
onGotPointerCaptureCapture
- Type
- PointerEventHandler<HTMLUListElement>
onInput
- Type
- FormEventHandler<HTMLUListElement>
onInputCapture
- Type
- FormEventHandler<HTMLUListElement>
onInvalid
- Type
- FormEventHandler<HTMLUListElement>
onInvalidCapture
- Type
- FormEventHandler<HTMLUListElement>
onKeyDown
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyDownCapture
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyPress
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyPressCapture
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyUp
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyUpCapture
- Type
- KeyboardEventHandler<HTMLUListElement>
onLoad
- Type
- ReactEventHandler<HTMLUListElement>
onLoadCapture
- Type
- ReactEventHandler<HTMLUListElement>
onLoadedData
- Type
- ReactEventHandler<HTMLUListElement>
onLoadedDataCapture
- Type
- ReactEventHandler<HTMLUListElement>
onLoadedMetadata
- Type
- ReactEventHandler<HTMLUListElement>
onLoadedMetadataCapture
- Type
- ReactEventHandler<HTMLUListElement>
onLoadStart
- Type
- ReactEventHandler<HTMLUListElement>
onLoadStartCapture
- Type
- ReactEventHandler<HTMLUListElement>
onLostPointerCapture
- Type
- PointerEventHandler<HTMLUListElement>
onLostPointerCaptureCapture
- Type
- PointerEventHandler<HTMLUListElement>
onMouseDown
- Type
- MouseEventHandler<HTMLUListElement>
onMouseDownCapture
- Type
- MouseEventHandler<HTMLUListElement>
onMouseEnter
- Type
- MouseEventHandler<HTMLUListElement>
onMouseLeave
- Type
- MouseEventHandler<HTMLUListElement>
onMouseMove
- Type
- MouseEventHandler<HTMLUListElement>
onMouseMoveCapture
- Type
- MouseEventHandler<HTMLUListElement>
onMouseOut
- Type
- MouseEventHandler<HTMLUListElement>
onMouseOutCapture
- Type
- MouseEventHandler<HTMLUListElement>
onMouseOver
- Type
- MouseEventHandler<HTMLUListElement>
onMouseOverCapture
- Type
- MouseEventHandler<HTMLUListElement>
onMouseUp
- Type
- MouseEventHandler<HTMLUListElement>
onMouseUpCapture
- Type
- MouseEventHandler<HTMLUListElement>
onPaste
- Type
- ClipboardEventHandler<HTMLUListElement>
onPasteCapture
- Type
- ClipboardEventHandler<HTMLUListElement>
onPause
- Type
- ReactEventHandler<HTMLUListElement>
onPauseCapture
- Type
- ReactEventHandler<HTMLUListElement>
onPlay
- Type
- ReactEventHandler<HTMLUListElement>
onPlayCapture
- Type
- ReactEventHandler<HTMLUListElement>
onPlaying
- Type
- ReactEventHandler<HTMLUListElement>
onPlayingCapture
- Type
- ReactEventHandler<HTMLUListElement>
onPointerCancel
- Type
- PointerEventHandler<HTMLUListElement>
onPointerCancelCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerDown
- Type
- PointerEventHandler<HTMLUListElement>
onPointerDownCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerEnter
- Type
- PointerEventHandler<HTMLUListElement>
onPointerEnterCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerLeave
- Type
- PointerEventHandler<HTMLUListElement>
onPointerLeaveCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerMove
- Type
- PointerEventHandler<HTMLUListElement>
onPointerMoveCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerOut
- Type
- PointerEventHandler<HTMLUListElement>
onPointerOutCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerOver
- Type
- PointerEventHandler<HTMLUListElement>
onPointerOverCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerUp
- Type
- PointerEventHandler<HTMLUListElement>
onPointerUpCapture
- Type
- PointerEventHandler<HTMLUListElement>
onProgress
- Type
- ReactEventHandler<HTMLUListElement>
onProgressCapture
- Type
- ReactEventHandler<HTMLUListElement>
onRateChange
- Type
- ReactEventHandler<HTMLUListElement>
onRateChangeCapture
- Type
- ReactEventHandler<HTMLUListElement>
onReset
- Type
- FormEventHandler<HTMLUListElement>
onResetCapture
- Type
- FormEventHandler<HTMLUListElement>
onResize
- Type
- ReactEventHandler<HTMLUListElement>
onResizeCapture
- Type
- ReactEventHandler<HTMLUListElement>
onScroll
- Type
- UIEventHandler<HTMLUListElement>
onScrollCapture
- Type
- UIEventHandler<HTMLUListElement>
onSeeked
- Type
- ReactEventHandler<HTMLUListElement>
onSeekedCapture
- Type
- ReactEventHandler<HTMLUListElement>
onSeeking
- Type
- ReactEventHandler<HTMLUListElement>
onSeekingCapture
- Type
- ReactEventHandler<HTMLUListElement>
onSelect
- Type
- ReactEventHandler<HTMLUListElement>
onSelectCapture
- Type
- ReactEventHandler<HTMLUListElement>
onStalled
- Type
- ReactEventHandler<HTMLUListElement>
onStalledCapture
- Type
- ReactEventHandler<HTMLUListElement>
onSubmit
- Type
- FormEventHandler<HTMLUListElement>
onSubmitCapture
- Type
- FormEventHandler<HTMLUListElement>
onSuspend
- Type
- ReactEventHandler<HTMLUListElement>
onSuspendCapture
- Type
- ReactEventHandler<HTMLUListElement>
onTimeUpdate
- Type
- ReactEventHandler<HTMLUListElement>
onTimeUpdateCapture
- Type
- ReactEventHandler<HTMLUListElement>
onTouchCancel
- Type
- TouchEventHandler<HTMLUListElement>
onTouchCancelCapture
- Type
- TouchEventHandler<HTMLUListElement>
onTouchEnd
- Type
- TouchEventHandler<HTMLUListElement>
onTouchEndCapture
- Type
- TouchEventHandler<HTMLUListElement>
onTouchMove
- Type
- TouchEventHandler<HTMLUListElement>
onTouchMoveCapture
- Type
- TouchEventHandler<HTMLUListElement>
onTouchStart
- Type
- TouchEventHandler<HTMLUListElement>
onTouchStartCapture
- Type
- TouchEventHandler<HTMLUListElement>
onTransitionEnd
- Type
- TransitionEventHandler<HTMLUListElement>
onTransitionEndCapture
- Type
- TransitionEventHandler<HTMLUListElement>
onVolumeChange
- Type
- ReactEventHandler<HTMLUListElement>
onVolumeChangeCapture
- Type
- ReactEventHandler<HTMLUListElement>
onWaiting
- Type
- ReactEventHandler<HTMLUListElement>
onWaitingCapture
- Type
- ReactEventHandler<HTMLUListElement>
onWheel
- Type
- WheelEventHandler<HTMLUListElement>
onWheelCapture
- Type
- WheelEventHandler<HTMLUListElement>
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
variant RequiredRequired
- Type
- "default" | "groupOption"
- Default
- default
disabled
- Type
- boolean
element
Overrides the default element name to apply unique styles with the Customization Provider
- Type
- string
- Default
- COMBOBOX
highlighted
- Type
- boolean
selected
- Type
- boolean
startHeight
- Type
- number
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
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<HTMLLIElement>
onAbortCapture
- Type
- ReactEventHandler<HTMLLIElement>
onAnimationEnd
- Type
- AnimationEventHandler<HTMLLIElement>
onAnimationEndCapture
- Type
- AnimationEventHandler<HTMLLIElement>
onAnimationIteration
- Type
- AnimationEventHandler<HTMLLIElement>
onAnimationIterationCapture
- Type
- AnimationEventHandler<HTMLLIElement>
onAnimationStart
- Type
- AnimationEventHandler<HTMLLIElement>
onAnimationStartCapture
- Type
- AnimationEventHandler<HTMLLIElement>
onAuxClick
- Type
- MouseEventHandler<HTMLLIElement>
onAuxClickCapture
- Type
- MouseEventHandler<HTMLLIElement>
onBeforeInput
- Type
- FormEventHandler<HTMLLIElement>
onBeforeInputCapture
- Type
- FormEventHandler<HTMLLIElement>
onBlur
- Type
- FocusEventHandler<HTMLLIElement>
onBlurCapture
- Type
- FocusEventHandler<HTMLLIElement>
onCanPlay
- Type
- ReactEventHandler<HTMLLIElement>
onCanPlayCapture
- Type
- ReactEventHandler<HTMLLIElement>
onCanPlayThrough
- Type
- ReactEventHandler<HTMLLIElement>
onCanPlayThroughCapture
- Type
- ReactEventHandler<HTMLLIElement>
onChange
- Type
- FormEventHandler<HTMLLIElement>
onChangeCapture
- Type
- FormEventHandler<HTMLLIElement>
onClick
- Type
- MouseEventHandler<HTMLLIElement>
onClickCapture
- Type
- MouseEventHandler<HTMLLIElement>
onCompositionEnd
- Type
- CompositionEventHandler<HTMLLIElement>
onCompositionEndCapture
- Type
- CompositionEventHandler<HTMLLIElement>
onCompositionStart
- Type
- CompositionEventHandler<HTMLLIElement>
onCompositionStartCapture
- Type
- CompositionEventHandler<HTMLLIElement>
onCompositionUpdate
- Type
- CompositionEventHandler<HTMLLIElement>
onCompositionUpdateCapture
- Type
- CompositionEventHandler<HTMLLIElement>
onContextMenu
- Type
- MouseEventHandler<HTMLLIElement>
onContextMenuCapture
- Type
- MouseEventHandler<HTMLLIElement>
onCopy
- Type
- ClipboardEventHandler<HTMLLIElement>
onCopyCapture
- Type
- ClipboardEventHandler<HTMLLIElement>
onCut
- Type
- ClipboardEventHandler<HTMLLIElement>
onCutCapture
- Type
- ClipboardEventHandler<HTMLLIElement>
onDoubleClick
- Type
- MouseEventHandler<HTMLLIElement>
onDoubleClickCapture
- Type
- MouseEventHandler<HTMLLIElement>
onDrag
- Type
- DragEventHandler<HTMLLIElement>
onDragCapture
- Type
- DragEventHandler<HTMLLIElement>
onDragEnd
- Type
- DragEventHandler<HTMLLIElement>
onDragEndCapture
- Type
- DragEventHandler<HTMLLIElement>
onDragEnter
- Type
- DragEventHandler<HTMLLIElement>
onDragEnterCapture
- Type
- DragEventHandler<HTMLLIElement>
onDragExit
- Type
- DragEventHandler<HTMLLIElement>
onDragExitCapture
- Type
- DragEventHandler<HTMLLIElement>
onDragLeave
- Type
- DragEventHandler<HTMLLIElement>
onDragLeaveCapture
- Type
- DragEventHandler<HTMLLIElement>
onDragOver
- Type
- DragEventHandler<HTMLLIElement>
onDragOverCapture
- Type
- DragEventHandler<HTMLLIElement>
onDragStart
- Type
- DragEventHandler<HTMLLIElement>
onDragStartCapture
- Type
- DragEventHandler<HTMLLIElement>
onDrop
- Type
- DragEventHandler<HTMLLIElement>
onDropCapture
- Type
- DragEventHandler<HTMLLIElement>
onDurationChange
- Type
- ReactEventHandler<HTMLLIElement>
onDurationChangeCapture
- Type
- ReactEventHandler<HTMLLIElement>
onEmptied
- Type
- ReactEventHandler<HTMLLIElement>
onEmptiedCapture
- Type
- ReactEventHandler<HTMLLIElement>
onEncrypted
- Type
- ReactEventHandler<HTMLLIElement>
onEncryptedCapture
- Type
- ReactEventHandler<HTMLLIElement>
onEnded
- Type
- ReactEventHandler<HTMLLIElement>
onEndedCapture
- Type
- ReactEventHandler<HTMLLIElement>
onError
- Type
- ReactEventHandler<HTMLLIElement>
onErrorCapture
- Type
- ReactEventHandler<HTMLLIElement>
onFocus
- Type
- FocusEventHandler<HTMLLIElement>
onFocusCapture
- Type
- FocusEventHandler<HTMLLIElement>
onGotPointerCapture
- Type
- PointerEventHandler<HTMLLIElement>
onGotPointerCaptureCapture
- Type
- PointerEventHandler<HTMLLIElement>
onInput
- Type
- FormEventHandler<HTMLLIElement>
onInputCapture
- Type
- FormEventHandler<HTMLLIElement>
onInvalid
- Type
- FormEventHandler<HTMLLIElement>
onInvalidCapture
- Type
- FormEventHandler<HTMLLIElement>
onKeyDown
- Type
- KeyboardEventHandler<HTMLLIElement>
onKeyDownCapture
- Type
- KeyboardEventHandler<HTMLLIElement>
onKeyPress
- Type
- KeyboardEventHandler<HTMLLIElement>
onKeyPressCapture
- Type
- KeyboardEventHandler<HTMLLIElement>
onKeyUp
- Type
- KeyboardEventHandler<HTMLLIElement>
onKeyUpCapture
- Type
- KeyboardEventHandler<HTMLLIElement>
onLoad
- Type
- ReactEventHandler<HTMLLIElement>
onLoadCapture
- Type
- ReactEventHandler<HTMLLIElement>
onLoadedData
- Type
- ReactEventHandler<HTMLLIElement>
onLoadedDataCapture
- Type
- ReactEventHandler<HTMLLIElement>
onLoadedMetadata
- Type
- ReactEventHandler<HTMLLIElement>
onLoadedMetadataCapture
- Type
- ReactEventHandler<HTMLLIElement>
onLoadStart
- Type
- ReactEventHandler<HTMLLIElement>
onLoadStartCapture
- Type
- ReactEventHandler<HTMLLIElement>
onLostPointerCapture
- Type
- PointerEventHandler<HTMLLIElement>
onLostPointerCaptureCapture
- Type
- PointerEventHandler<HTMLLIElement>
onMouseDown
- Type
- MouseEventHandler<HTMLLIElement>
onMouseDownCapture
- Type
- MouseEventHandler<HTMLLIElement>
onMouseEnter
- Type
- MouseEventHandler<HTMLLIElement>
onMouseLeave
- Type
- MouseEventHandler<HTMLLIElement>
onMouseMove
- Type
- MouseEventHandler<HTMLLIElement>
onMouseMoveCapture
- Type
- MouseEventHandler<HTMLLIElement>
onMouseOut
- Type
- MouseEventHandler<HTMLLIElement>
onMouseOutCapture
- Type
- MouseEventHandler<HTMLLIElement>
onMouseOver
- Type
- MouseEventHandler<HTMLLIElement>
onMouseOverCapture
- Type
- MouseEventHandler<HTMLLIElement>
onMouseUp
- Type
- MouseEventHandler<HTMLLIElement>
onMouseUpCapture
- Type
- MouseEventHandler<HTMLLIElement>
onPaste
- Type
- ClipboardEventHandler<HTMLLIElement>
onPasteCapture
- Type
- ClipboardEventHandler<HTMLLIElement>
onPause
- Type
- ReactEventHandler<HTMLLIElement>
onPauseCapture
- Type
- ReactEventHandler<HTMLLIElement>
onPlay
- Type
- ReactEventHandler<HTMLLIElement>
onPlayCapture
- Type
- ReactEventHandler<HTMLLIElement>
onPlaying
- Type
- ReactEventHandler<HTMLLIElement>
onPlayingCapture
- Type
- ReactEventHandler<HTMLLIElement>
onPointerCancel
- Type
- PointerEventHandler<HTMLLIElement>
onPointerCancelCapture
- Type
- PointerEventHandler<HTMLLIElement>
onPointerDown
- Type
- PointerEventHandler<HTMLLIElement>
onPointerDownCapture
- Type
- PointerEventHandler<HTMLLIElement>
onPointerEnter
- Type
- PointerEventHandler<HTMLLIElement>
onPointerEnterCapture
- Type
- PointerEventHandler<HTMLLIElement>
onPointerLeave
- Type
- PointerEventHandler<HTMLLIElement>
onPointerLeaveCapture
- Type
- PointerEventHandler<HTMLLIElement>
onPointerMove
- Type
- PointerEventHandler<HTMLLIElement>
onPointerMoveCapture
- Type
- PointerEventHandler<HTMLLIElement>
onPointerOut
- Type
- PointerEventHandler<HTMLLIElement>
onPointerOutCapture
- Type
- PointerEventHandler<HTMLLIElement>
onPointerOver
- Type
- PointerEventHandler<HTMLLIElement>
onPointerOverCapture
- Type
- PointerEventHandler<HTMLLIElement>
onPointerUp
- Type
- PointerEventHandler<HTMLLIElement>
onPointerUpCapture
- Type
- PointerEventHandler<HTMLLIElement>
onProgress
- Type
- ReactEventHandler<HTMLLIElement>
onProgressCapture
- Type
- ReactEventHandler<HTMLLIElement>
onRateChange
- Type
- ReactEventHandler<HTMLLIElement>
onRateChangeCapture
- Type
- ReactEventHandler<HTMLLIElement>
onReset
- Type
- FormEventHandler<HTMLLIElement>
onResetCapture
- Type
- FormEventHandler<HTMLLIElement>
onResize
- Type
- ReactEventHandler<HTMLLIElement>
onResizeCapture
- Type
- ReactEventHandler<HTMLLIElement>
onScroll
- Type
- UIEventHandler<HTMLLIElement>
onScrollCapture
- Type
- UIEventHandler<HTMLLIElement>
onSeeked
- Type
- ReactEventHandler<HTMLLIElement>
onSeekedCapture
- Type
- ReactEventHandler<HTMLLIElement>
onSeeking
- Type
- ReactEventHandler<HTMLLIElement>
onSeekingCapture
- Type
- ReactEventHandler<HTMLLIElement>
onSelect
- Type
- ReactEventHandler<HTMLLIElement>
onSelectCapture
- Type
- ReactEventHandler<HTMLLIElement>
onStalled
- Type
- ReactEventHandler<HTMLLIElement>
onStalledCapture
- Type
- ReactEventHandler<HTMLLIElement>
onSubmit
- Type
- FormEventHandler<HTMLLIElement>
onSubmitCapture
- Type
- FormEventHandler<HTMLLIElement>
onSuspend
- Type
- ReactEventHandler<HTMLLIElement>
onSuspendCapture
- Type
- ReactEventHandler<HTMLLIElement>
onTimeUpdate
- Type
- ReactEventHandler<HTMLLIElement>
onTimeUpdateCapture
- Type
- ReactEventHandler<HTMLLIElement>
onTouchCancel
- Type
- TouchEventHandler<HTMLLIElement>
onTouchCancelCapture
- Type
- TouchEventHandler<HTMLLIElement>
onTouchEnd
- Type
- TouchEventHandler<HTMLLIElement>
onTouchEndCapture
- Type
- TouchEventHandler<HTMLLIElement>
onTouchMove
- Type
- TouchEventHandler<HTMLLIElement>
onTouchMoveCapture
- Type
- TouchEventHandler<HTMLLIElement>
onTouchStart
- Type
- TouchEventHandler<HTMLLIElement>
onTouchStartCapture
- Type
- TouchEventHandler<HTMLLIElement>
onTransitionEnd
- Type
- TransitionEventHandler<HTMLLIElement>
onTransitionEndCapture
- Type
- TransitionEventHandler<HTMLLIElement>
onVolumeChange
- Type
- ReactEventHandler<HTMLLIElement>
onVolumeChangeCapture
- Type
- ReactEventHandler<HTMLLIElement>
onWaiting
- Type
- ReactEventHandler<HTMLLIElement>
onWaitingCapture
- Type
- ReactEventHandler<HTMLLIElement>
onWheel
- Type
- WheelEventHandler<HTMLLIElement>
onWheelCapture
- Type
- WheelEventHandler<HTMLLIElement>
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"
value
- Type
- string | number | readonly string[]
vocab
- Type
- string
element
Overrides the default element name to apply unique styles with the Customization Provider
- Type
- string
- Default
- COMBOBOX
groupLabelTemplate
This function allows you to use your own jsx template for the group label in the drop-down list
- Type
- (groupName: string) => ReactNode
groupName
Overrides the default element name to apply unique styles with the Customization Provider
- 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
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
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<HTMLUListElement>
onAbortCapture
- Type
- ReactEventHandler<HTMLUListElement>
onAnimationEnd
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationEndCapture
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationIteration
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationIterationCapture
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationStart
- Type
- AnimationEventHandler<HTMLUListElement>
onAnimationStartCapture
- Type
- AnimationEventHandler<HTMLUListElement>
onAuxClick
- Type
- MouseEventHandler<HTMLUListElement>
onAuxClickCapture
- Type
- MouseEventHandler<HTMLUListElement>
onBeforeInput
- Type
- FormEventHandler<HTMLUListElement>
onBeforeInputCapture
- Type
- FormEventHandler<HTMLUListElement>
onBlur
- Type
- FocusEventHandler<HTMLUListElement>
onBlurCapture
- Type
- FocusEventHandler<HTMLUListElement>
onCanPlay
- Type
- ReactEventHandler<HTMLUListElement>
onCanPlayCapture
- Type
- ReactEventHandler<HTMLUListElement>
onCanPlayThrough
- Type
- ReactEventHandler<HTMLUListElement>
onCanPlayThroughCapture
- Type
- ReactEventHandler<HTMLUListElement>
onChange
- Type
- FormEventHandler<HTMLUListElement>
onChangeCapture
- Type
- FormEventHandler<HTMLUListElement>
onClick
- Type
- MouseEventHandler<HTMLUListElement>
onClickCapture
- Type
- MouseEventHandler<HTMLUListElement>
onCompositionEnd
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionEndCapture
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionStart
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionStartCapture
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionUpdate
- Type
- CompositionEventHandler<HTMLUListElement>
onCompositionUpdateCapture
- Type
- CompositionEventHandler<HTMLUListElement>
onContextMenu
- Type
- MouseEventHandler<HTMLUListElement>
onContextMenuCapture
- Type
- MouseEventHandler<HTMLUListElement>
onCopy
- Type
- ClipboardEventHandler<HTMLUListElement>
onCopyCapture
- Type
- ClipboardEventHandler<HTMLUListElement>
onCut
- Type
- ClipboardEventHandler<HTMLUListElement>
onCutCapture
- Type
- ClipboardEventHandler<HTMLUListElement>
onDoubleClick
- Type
- MouseEventHandler<HTMLUListElement>
onDoubleClickCapture
- Type
- MouseEventHandler<HTMLUListElement>
onDrag
- Type
- DragEventHandler<HTMLUListElement>
onDragCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragEnd
- Type
- DragEventHandler<HTMLUListElement>
onDragEndCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragEnter
- Type
- DragEventHandler<HTMLUListElement>
onDragEnterCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragExit
- Type
- DragEventHandler<HTMLUListElement>
onDragExitCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragLeave
- Type
- DragEventHandler<HTMLUListElement>
onDragLeaveCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragOver
- Type
- DragEventHandler<HTMLUListElement>
onDragOverCapture
- Type
- DragEventHandler<HTMLUListElement>
onDragStart
- Type
- DragEventHandler<HTMLUListElement>
onDragStartCapture
- Type
- DragEventHandler<HTMLUListElement>
onDrop
- Type
- DragEventHandler<HTMLUListElement>
onDropCapture
- Type
- DragEventHandler<HTMLUListElement>
onDurationChange
- Type
- ReactEventHandler<HTMLUListElement>
onDurationChangeCapture
- Type
- ReactEventHandler<HTMLUListElement>
onEmptied
- Type
- ReactEventHandler<HTMLUListElement>
onEmptiedCapture
- Type
- ReactEventHandler<HTMLUListElement>
onEncrypted
- Type
- ReactEventHandler<HTMLUListElement>
onEncryptedCapture
- Type
- ReactEventHandler<HTMLUListElement>
onEnded
- Type
- ReactEventHandler<HTMLUListElement>
onEndedCapture
- Type
- ReactEventHandler<HTMLUListElement>
onError
- Type
- ReactEventHandler<HTMLUListElement>
onErrorCapture
- Type
- ReactEventHandler<HTMLUListElement>
onFocus
- Type
- FocusEventHandler<HTMLUListElement>
onFocusCapture
- Type
- FocusEventHandler<HTMLUListElement>
onGotPointerCapture
- Type
- PointerEventHandler<HTMLUListElement>
onGotPointerCaptureCapture
- Type
- PointerEventHandler<HTMLUListElement>
onInput
- Type
- FormEventHandler<HTMLUListElement>
onInputCapture
- Type
- FormEventHandler<HTMLUListElement>
onInvalid
- Type
- FormEventHandler<HTMLUListElement>
onInvalidCapture
- Type
- FormEventHandler<HTMLUListElement>
onKeyDown
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyDownCapture
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyPress
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyPressCapture
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyUp
- Type
- KeyboardEventHandler<HTMLUListElement>
onKeyUpCapture
- Type
- KeyboardEventHandler<HTMLUListElement>
onLoad
- Type
- ReactEventHandler<HTMLUListElement>
onLoadCapture
- Type
- ReactEventHandler<HTMLUListElement>
onLoadedData
- Type
- ReactEventHandler<HTMLUListElement>
onLoadedDataCapture
- Type
- ReactEventHandler<HTMLUListElement>
onLoadedMetadata
- Type
- ReactEventHandler<HTMLUListElement>
onLoadedMetadataCapture
- Type
- ReactEventHandler<HTMLUListElement>
onLoadStart
- Type
- ReactEventHandler<HTMLUListElement>
onLoadStartCapture
- Type
- ReactEventHandler<HTMLUListElement>
onLostPointerCapture
- Type
- PointerEventHandler<HTMLUListElement>
onLostPointerCaptureCapture
- Type
- PointerEventHandler<HTMLUListElement>
onMouseDown
- Type
- MouseEventHandler<HTMLUListElement>
onMouseDownCapture
- Type
- MouseEventHandler<HTMLUListElement>
onMouseEnter
- Type
- MouseEventHandler<HTMLUListElement>
onMouseLeave
- Type
- MouseEventHandler<HTMLUListElement>
onMouseMove
- Type
- MouseEventHandler<HTMLUListElement>
onMouseMoveCapture
- Type
- MouseEventHandler<HTMLUListElement>
onMouseOut
- Type
- MouseEventHandler<HTMLUListElement>
onMouseOutCapture
- Type
- MouseEventHandler<HTMLUListElement>
onMouseOver
- Type
- MouseEventHandler<HTMLUListElement>
onMouseOverCapture
- Type
- MouseEventHandler<HTMLUListElement>
onMouseUp
- Type
- MouseEventHandler<HTMLUListElement>
onMouseUpCapture
- Type
- MouseEventHandler<HTMLUListElement>
onPaste
- Type
- ClipboardEventHandler<HTMLUListElement>
onPasteCapture
- Type
- ClipboardEventHandler<HTMLUListElement>
onPause
- Type
- ReactEventHandler<HTMLUListElement>
onPauseCapture
- Type
- ReactEventHandler<HTMLUListElement>
onPlay
- Type
- ReactEventHandler<HTMLUListElement>
onPlayCapture
- Type
- ReactEventHandler<HTMLUListElement>
onPlaying
- Type
- ReactEventHandler<HTMLUListElement>
onPlayingCapture
- Type
- ReactEventHandler<HTMLUListElement>
onPointerCancel
- Type
- PointerEventHandler<HTMLUListElement>
onPointerCancelCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerDown
- Type
- PointerEventHandler<HTMLUListElement>
onPointerDownCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerEnter
- Type
- PointerEventHandler<HTMLUListElement>
onPointerEnterCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerLeave
- Type
- PointerEventHandler<HTMLUListElement>
onPointerLeaveCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerMove
- Type
- PointerEventHandler<HTMLUListElement>
onPointerMoveCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerOut
- Type
- PointerEventHandler<HTMLUListElement>
onPointerOutCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerOver
- Type
- PointerEventHandler<HTMLUListElement>
onPointerOverCapture
- Type
- PointerEventHandler<HTMLUListElement>
onPointerUp
- Type
- PointerEventHandler<HTMLUListElement>
onPointerUpCapture
- Type
- PointerEventHandler<HTMLUListElement>
onProgress
- Type
- ReactEventHandler<HTMLUListElement>
onProgressCapture
- Type
- ReactEventHandler<HTMLUListElement>
onRateChange
- Type
- ReactEventHandler<HTMLUListElement>
onRateChangeCapture
- Type
- ReactEventHandler<HTMLUListElement>
onReset
- Type
- FormEventHandler<HTMLUListElement>
onResetCapture
- Type
- FormEventHandler<HTMLUListElement>
onResize
- Type
- ReactEventHandler<HTMLUListElement>
onResizeCapture
- Type
- ReactEventHandler<HTMLUListElement>
onScroll
- Type
- UIEventHandler<HTMLUListElement>
onScrollCapture
- Type
- UIEventHandler<HTMLUListElement>
onSeeked
- Type
- ReactEventHandler<HTMLUListElement>
onSeekedCapture
- Type
- ReactEventHandler<HTMLUListElement>
onSeeking
- Type
- ReactEventHandler<HTMLUListElement>
onSeekingCapture
- Type
- ReactEventHandler<HTMLUListElement>
onSelect
- Type
- ReactEventHandler<HTMLUListElement>
onSelectCapture
- Type
- ReactEventHandler<HTMLUListElement>
onStalled
- Type
- ReactEventHandler<HTMLUListElement>
onStalledCapture
- Type
- ReactEventHandler<HTMLUListElement>
onSubmit
- Type
- FormEventHandler<HTMLUListElement>
onSubmitCapture
- Type
- FormEventHandler<HTMLUListElement>
onSuspend
- Type
- ReactEventHandler<HTMLUListElement>
onSuspendCapture
- Type
- ReactEventHandler<HTMLUListElement>
onTimeUpdate
- Type
- ReactEventHandler<HTMLUListElement>
onTimeUpdateCapture
- Type
- ReactEventHandler<HTMLUListElement>
onTouchCancel
- Type
- TouchEventHandler<HTMLUListElement>
onTouchCancelCapture
- Type
- TouchEventHandler<HTMLUListElement>
onTouchEnd
- Type
- TouchEventHandler<HTMLUListElement>
onTouchEndCapture
- Type
- TouchEventHandler<HTMLUListElement>
onTouchMove
- Type
- TouchEventHandler<HTMLUListElement>
onTouchMoveCapture
- Type
- TouchEventHandler<HTMLUListElement>
onTouchStart
- Type
- TouchEventHandler<HTMLUListElement>
onTouchStartCapture
- Type
- TouchEventHandler<HTMLUListElement>
onTransitionEnd
- Type
- TransitionEventHandler<HTMLUListElement>
onTransitionEndCapture
- Type
- TransitionEventHandler<HTMLUListElement>
onVolumeChange
- Type
- ReactEventHandler<HTMLUListElement>
onVolumeChangeCapture
- Type
- ReactEventHandler<HTMLUListElement>
onWaiting
- Type
- ReactEventHandler<HTMLUListElement>
onWaitingCapture
- Type
- ReactEventHandler<HTMLUListElement>
onWheel
- Type
- WheelEventHandler<HTMLUListElement>
onWheelCapture
- Type
- WheelEventHandler<HTMLUListElement>
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
items RequiredRequired
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- any[]
labelText RequiredRequired
The contents of the label text
- Type
- NonNullable<ReactNode>
selectedItemsLabelText RequiredRequired
Hidden helper text for screen readers
- Type
- string
cursor
- Type
- | Cursor | (Cursor | null | undefined)[] | { [x: string]: Cursor | undefined; [x: number]: Cursor | undefined }
disabled
Disables the input.
- Type
- boolean
disabledItems
- Type
- any[]
element
Overrides the default element name to apply unique styles with the Customization Provider
- Type
- string
- Default
- MULTISELECT_COMBOBOX
emptyState
A custom empty state component to render when there are no items in the list
- Type
- FC<{}>
groupItemsBy
The name of the key in your item objects that you would like Combobox to group the items by
- Type
- string
groupLabelTemplate
This function allows you to use your own jsx template for the group label in the drop-down list
- Type
- (groupName: string) => ReactNode
hasError
Sets the input to an error state.
- Type
- boolean
height
- Type
- never
helpText
The contents of the help and error text
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
i18nKeyboardControls
Visually hidden string that has instructions for how to remove and select pills with a keyboard
- Type
- string
- Default
- Press Delete or Backspace to remove. Press Enter to toggle selection.
i18nStepDownLabel
Provides an accessible label for the decrement button on inputs of type "number" when using non-English languages.
- Type
- string
i18nStepUpLabel
Provides an accessible label for the increment button on inputs of type "number" when using non-English languages.
- Type
- string
initialIsOpen
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- boolean
initialSelectedItems
Sets the initial items selected when initialized
- Type
- any[]
inputValue
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- string
insertAfter
Used to add a suffix to an input. Often used with text or an icon.
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
insertBefore
Used to add a prefix to an input. Often used with text or an icon.
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
itemToString
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (item: any) => string
maxHeight
The maximum height of the Combobox listbox
- Type
- | string | number | (string & {}) | (MaxHeightOptions | null)[] | { [x: string]: MaxHeightOptions; [x: number]: MaxHeightOptions }
- Default
- 100%
name
Sets the name of the input.
- Type
- string
onChange
Use onInputValueChange instead.
- Type
- never
onHighlightedIndexChange
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (changes: UseComboboxStateChange<any>) => void
onInput
Use onInputValueChange instead.
- Type
- never
onInputValueChange
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (changes: UseComboboxStateChange<any>) => void
onIsOpenChange
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (changes: UseComboboxStateChange<any>) => void
onSelectedItemsChange
Callback function for after an item is selected or deselected
- Type
- ( newSelectedItems: UseMultipleSelectionStateChange<Item> ) => void
optionTemplate
This function allows you to use your own jsx template for the items in the drop-down list
- Type
- OptionTemplateFn<any>
padding
- Type
- "space0"
paddingRight
- Type
- "space0" | "space10" | "space20" | "space30" | "space40" | "space50" | "space60" | "space70" | "space80" | "space90" | "space100" | "space110" | "space120" | "space130" | "space140" | ... 38 more ... | { ...; }
placeholder
Sets the placeholder of the input.
- Type
- string
readOnly
Sets the input to readonly.
- Type
- boolean
required
Sets the input as required.
- Type
- boolean
size
- Type
- never
state
- Type
- UseMultipleSelectionReturnValue<Item>
style
- Type
- never
usePortal
Determines whether the Combobox Listbox (options list) is rendered inside a Portal. Defaults to true. Use false if you are using Combobox inside a Paste Popover to prevent interaction bugs.
- Type
- boolean
- Default
variant
- Type
- InputVariants
- Default
- default
width
- Type
- never
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
autoCorrect
- Type
- string
autoFocus
- Type
- boolean
autoSave
- Type
- string
capture
- Type
- boolean | "user" | "environment"
checked
- Type
- boolean
contentEditable
- Type
- Booleanish | "inherit"
contextMenu
- Type
- string
crossOrigin
- Type
- "" | "anonymous" | "use-credentials"
dangerouslySetInnerHTML
- Type
- { __html: string }
datatype
- Type
- string
defaultChecked
- Type
- boolean
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
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>
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>
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
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
src
- Type
- string
step
- Type
- string | number
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
items RequiredRequired
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- any[]
labelText RequiredRequired
The contents of the label text
- Type
- NonNullable<ReactNode>
autocomplete
Activates the autocomplete/typeahead feature
- Type
- boolean
cursor
- Type
- | Cursor | (Cursor | null | undefined)[] | { [x: string]: Cursor | undefined; [x: number]: Cursor | undefined }
disabled
Disables the input.
- Type
- boolean
disabledItems
- Type
- any[]
element
Overrides the default element name to apply unique styles with the Customization Provider
- Type
- string
- Default
- COMBOBOX
emptyState
A custom empty state component to render when there are no items in the list
- Type
- FC<{}>
getA11ySelectionMessage
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (options: A11yStatusMessageOptions<any>) => string
getA11yStatusMessage
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (options: A11yStatusMessageOptions<any>) => string
groupItemsBy
The name of the key in your item objects that you would like Combobox to group the items by
- Type
- string
groupLabelTemplate
This function allows you to use your own jsx template for the group label in the drop-down list
- Type
- (groupName: string) => ReactNode
hasError
Sets the input to an error state.
- Type
- boolean
height
- Type
- never
helpText
The contents of the help and error text
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
hideVisibleLabel
- Type
- boolean
i18nStepDownLabel
Provides an accessible label for the decrement button on inputs of type "number" when using non-English languages.
- Type
- string
i18nStepUpLabel
Provides an accessible label for the increment button on inputs of type "number" when using non-English languages.
- Type
- string
initialIsOpen
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- boolean
initialSelectedItem
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- any
inputValue
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- string
insertAfter
Used to add a suffix to an input. Often used with text or an icon.
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
insertBefore
Used to add a prefix to an input. Often used with text or an icon.
- Type
- | string | number | boolean | ReactElement<any, string | JSXElementConstructor<any>> | ReactFragment | ReactPortal
itemToString
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (item: any) => string
name
Sets the name of the input.
- Type
- string
onChange
Use onInputValueChange instead.
- Type
- never
onHighlightedIndexChange
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (changes: UseComboboxStateChange<any>) => void
onInput
Use onInputValueChange instead.
- Type
- never
onInputValueChange
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (changes: UseComboboxStateChange<any>) => void
onIsOpenChange
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (changes: UseComboboxStateChange<any>) => void
onSelectedItemChange
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- (changes: UseComboboxStateChange<any>) => void
optionTemplate
This function allows you to use your own jsx template for the items in the drop-down list
- Type
- OptionTemplateFn<any>
padding
- Type
- "space0"
paddingRight
- Type
- "space0" | "space10" | "space20" | "space30" | "space40" | "space50" | "space60" | "space70" | "space80" | "space90" | "space100" | "space110" | "space120" | "space130" | "space140" | ... 38 more ... | { ...; }
placeholder
Sets the placeholder of the input.
- Type
- string
readOnly
Sets the input to readonly.
- Type
- boolean
required
Sets the input as required.
- Type
- boolean
selectedItem
Downshift useCombobox Hook Prop (see https://github.com/downshift-js/downshift/blob/master/src/hooks/useCombobox/README.md#advanced-props docs)
- Type
- any
size
- Type
- never
state
Downshift useCombobox Hook return props for when you are using the hook outside of the component
- Type
- Partial<UseComboboxReturnValue<any>>
style
- Type
- never
usePortal
Determines whether the Combobox Listbox (options list) is rendered inside a Portal. Defaults to true. Use false if you are using Combobox inside a Paste Popover to prevent interaction bugs.
- Type
- boolean
- Default
variant
- Type
- InputVariants
- Default
- default
width
- Type
- never
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
autoCorrect
- Type
- string
autoFocus
- Type
- boolean
autoSave
- Type
- string
capture
- Type
- boolean | "user" | "environment"
checked
- Type
- boolean
contentEditable
- Type
- Booleanish | "inherit"
contextMenu
- Type
- string
crossOrigin
- Type
- "" | "anonymous" | "use-credentials"
dangerouslySetInnerHTML
- Type
- { __html: string }
datatype
- Type
- string
defaultChecked
- Type
- boolean
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
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>
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>
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
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
src
- Type
- string
step
- Type
- string | number
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