Interface: VirtuosoProps<D, C>
Type parameters
Name |
---|
D |
C |
Hierarchy
-
↳
VirtuosoProps
Properties
totalCount
• Optional
totalCount: number
The total amount of items to be rendered.
data
• Optional
data: readonly D
[]
The data items to be rendered. If data is set, the total count will be inferred from the length of the array.
context
• Optional
context: C
Additional context available in the custom components and content callbacks
overscan
• Optional
overscan: number
| { main
: number
; reverse
: number
}
The property accepts pixel values.
Set the overscan property to make the component "chunk" the rendering of new items on scroll.
The property causes the component to render more items than the necessary, but reduces the re-renders on scroll.
Setting { main: number, reverse: number }
lets you extend the list in both the main and the reverse scrollable directions.
See the increaseViewportBy
property for a similar behavior (equivalent to the overscan
in react-window).
increaseViewportBy
• Optional
increaseViewportBy: number
| { top
: number
; bottom
: number
}
The property accepts pixel values.
Set the increaseViewportBy property to artificially increase the viewport size, causing items to be rendered before outside of the viewport.
The property causes the component to render more items than the necessary, but can help with slow loading content.
Using { top?: number, bottom?: number }
lets you set the increase for each end separately.
topItemCount
• Optional
topItemCount: number
Set the amount of items to remain fixed at the top of the list.
For a header that scrolls away when scrolling, check the components.Header
property.
initialTopMostItemIndex
• Optional
initialTopMostItemIndex: number
| IndexLocationWithAlign
Set to a value between 0 and totalCount - 1 to make the list start scrolled to that item.
Pass in an object to achieve additional effects similar to scrollToIndex
.
initialScrollTop
• Optional
initialScrollTop: number
Set this value to offset the initial location of the list.
Warning: using this property will still run a render cycle at the scrollTop: 0 list window.
If possible, avoid using it and stick to initialTopMostItemIndex
instead.
initialItemCount
• Optional
initialItemCount: number
Use for server-side rendering - if set, the list will render the specified amount of items regardless of the container / item size.
components
• Optional
components: Components
<D
, C
>
Use the components
property for advanced customization of the elements rendered by the list.
itemContent
• Optional
itemContent: ItemContent
<D
, C
>
Set the callback to specify the contents of the item.
computeItemKey
• Optional
computeItemKey: ComputeItemKey
<D
, C
>
If specified, the component will use the function to generate the key
property for each list item.
defaultItemHeight
• Optional
defaultItemHeight: number
By default, the component assumes the default item height from the first rendered item (rendering it as a "probe").
If the first item turns out to be an outlier (very short or tall), the rest of the rendering will be slower, as multiple passes of rendering should happen for the list to fill the viewport.
Setting defaultItemHeight
causes the component to skip the "probe" rendering and use the property
value as default height instead.
itemSize
• Optional
itemSize: SizeFunction
Allows customizing the height/width calculation of Item
elements.
The default implementation reads el.getBoundingClientRect().height
and el.getBoundingClientRect().width
.
fixedItemHeight
• Optional
fixedItemHeight: number
Can be used to improve performance if the rendered items are of known size. Setting it causes the component to skip item measurements.
scrollSeekConfiguration
• Optional
scrollSeekConfiguration: false
| ScrollSeekConfiguration
Use to display placeholders if the user scrolls fast through the list.
Set components.ScrollSeekPlaceholder
to change the placeholder content.
followOutput
• Optional
followOutput: FollowOutput
If set to true
, the list automatically scrolls to bottom if the total count is changed.
Set to "smooth"
for an animated scrolling.
By default, followOutput
scrolls down only if the list is already at the bottom.
To implement an arbitrary logic behind that, pass a function:
<Virtuoso
followOutput={(isAtBottom: boolean) => {
if (expression) {
return 'smooth' // can be 'auto' or false to avoid scrolling
} else {
return false
}
}} />
headerFooterTag
• Optional
headerFooterTag: string
Set to customize the wrapper tag for the header and footer components (default is div
).
firstItemIndex
• Optional
firstItemIndex: number
Use when implementing inverse infinite scrolling - decrease the value this property
in combination with data
or totalCount
to prepend items to the top of the list.
Warning: the firstItemIndex should be a positive number, based on the total amount of items to be displayed.
isScrolling
• Optional
isScrolling: (isScrolling
: boolean
) => void
Called when the list starts/stops scrolling.
Type declaration
▸ (isScrolling
): void
Parameters
Name | Type |
---|---|
isScrolling | boolean |
Returns
void
endReached
• Optional
endReached: (index
: number
) => void
Gets called when the user scrolls to the end of the list. Receives the last item index as an argument. Can be used to implement endless scrolling.
Type declaration
▸ (index
): void
Parameters
Name | Type |
---|---|
index | number |
Returns
void
startReached
• Optional
startReached: (index
: number
) => void
Called when the user scrolls to the start of the list.
Type declaration
▸ (index
): void
Parameters
Name | Type |
---|---|
index | number |
Returns
void
rangeChanged
• Optional
rangeChanged: (range
: ListRange
) => void
Called with the new set of items each time the list items are rendered due to scrolling.
Type declaration
▸ (range
): void
Parameters
Name | Type |
---|---|
range | ListRange |
Returns
void
atBottomStateChange
• Optional
atBottomStateChange: (atBottom
: boolean
) => void
Called with true / false when the list has reached the bottom / gets scrolled up.
Can be used to load newer items, like tail -f
.
Type declaration
▸ (atBottom
): void
Parameters
Name | Type |
---|---|
atBottom | boolean |
Returns
void
atTopStateChange
• Optional
atTopStateChange: (atTop
: boolean
) => void
Called with true
/ false
when the list has reached the top / gets scrolled down.
Type declaration
▸ (atTop
): void
Parameters
Name | Type |
---|---|
atTop | boolean |
Returns
void
totalListHeightChanged
• Optional
totalListHeightChanged: (height
: number
) => void
Called when the total list height is changed due to new items or viewport resize.
Type declaration
▸ (height
): void
Parameters
Name | Type |
---|---|
height | number |
Returns
void
itemsRendered
• Optional
itemsRendered: (items
: ListItem
<D
>[]) => void
Called with the new set of items each time the list items are rendered due to scrolling.
Type declaration
▸ (items
): void
Parameters
Name | Type |
---|---|
items | ListItem <D >[] |
Returns
void
alignToBottom
• Optional
alignToBottom: boolean
Setting alignToBottom
to true
aligns the items to the bottom of the list if the list is shorter than the viewport.
Use followOutput
property to keep the list aligned when new items are appended.
useWindowScroll
• Optional
useWindowScroll: boolean
Uses the document scroller rather than wrapping the list in its own.
customScrollParent
• Optional
customScrollParent: HTMLElement
Pass a reference to a scrollable parent element, so that the list won't wrap in its own.
scrollerRef
• Optional
scrollerRef: (ref
: HTMLElement
| Window
) => any
Provides access to the root DOM element
Type declaration
▸ (ref
): any
Parameters
Name | Type |
---|---|
ref | HTMLElement | Window |
Returns
any
atTopThreshold
• Optional
atTopThreshold: number
The property accepts pixel values.
By default 0
. Redefine to change how much away from the top the scroller can be before the list is not considered not at top.
atBottomThreshold
• Optional
atBottomThreshold: number
The property accepts pixel values.
By default 4
. Redefine to change how much away from the bottom the scroller can be before the list is not considered not at bottom.
logLevel
• Optional
logLevel: LogLevel
set to LogLevel.DEBUG to enable various diagnostics in the console, the most useful being the item measurement reports.
Ensure that you have "all levels" enabled in the browser console too see the messages.
restoreStateFrom
• Optional
restoreStateFrom: StateSnapshot
pass a state obtained from the getState() method to restore the list state - this includes the previously measured item sizes and the scroll location. Notice that you should still pass the same data and totalCount properties as before, so that the list can match the data with the stored measurements. This is useful when you want to keep the list state when the component is unmounted and remounted, for example when navigating to a different page.
horizontalDirection
• Optional
horizontalDirection: boolean
When set, turns the scroller into a horizontal list. The items are positioned with inline-block
.
className
• Optional
className: string
Inherited from
ListRootProps.className
type
• Optional
type: string
Inherited from
ListRootProps.type
label
• Optional
label: string
Inherited from
ListRootProps.label
id
• Optional
id: string
Inherited from
ListRootProps.id
href
• Optional
href: string
Inherited from
ListRootProps.href
title
• Optional
title: string
Inherited from
ListRootProps.title
name
• Optional
name: string
Inherited from
ListRootProps.name
kind
• Optional
kind: string
Inherited from
ListRootProps.kind
style
• Optional
style: CSSProperties
Inherited from
ListRootProps.style
alt
• Optional
alt: string
Inherited from
ListRootProps.alt
src
• Optional
src: string
Inherited from
ListRootProps.src
width
• Optional
width: string
| number
Inherited from
ListRootProps.width
height
• Optional
height: string
| number
Inherited from
ListRootProps.height
target
• Optional
target: string
Inherited from
ListRootProps.target
color
• Optional
color: string
Inherited from
ListRootProps.color
value
• Optional
value: string
| number
| readonly string
[]
Inherited from
ListRootProps.value
children
• Optional
children: ReactNode
Inherited from
ListRootProps.children
cite
• Optional
cite: string
Inherited from
ListRootProps.cite
form
• Optional
form: string
Inherited from
ListRootProps.form
slot
• Optional
slot: string
Inherited from
ListRootProps.slot
span
• Optional
span: number
Inherited from
ListRootProps.span
summary
• Optional
summary: string
Inherited from
ListRootProps.summary
pattern
• Optional
pattern: string
Inherited from
ListRootProps.pattern
as
• Optional
as: string
Inherited from
ListRootProps.as
sandbox
• Optional
sandbox: string
Inherited from
ListRootProps.sandbox
key
• Optional
key: Key
Inherited from
ListRootProps.key
start
• Optional
start: number
Inherited from
ListRootProps.start
onClick
• Optional
onClick: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onClick
tabIndex
• Optional
tabIndex: number
Inherited from
ListRootProps.tabIndex
accept
• Optional
accept: string
Inherited from
ListRootProps.accept
acceptCharset
• Optional
acceptCharset: string
Inherited from
ListRootProps.acceptCharset
action
• Optional
action: string
Inherited from
ListRootProps.action
allowFullScreen
• Optional
allowFullScreen: boolean
Inherited from
ListRootProps.allowFullScreen
allowTransparency
• Optional
allowTransparency: boolean
Inherited from
ListRootProps.allowTransparency
async
• Optional
async: boolean
Inherited from
ListRootProps.async
autoComplete
• Optional
autoComplete: string
Inherited from
ListRootProps.autoComplete
autoPlay
• Optional
autoPlay: boolean
Inherited from
ListRootProps.autoPlay
capture
• Optional
capture: boolean
| "environment"
| "user"
Inherited from
ListRootProps.capture
cellPadding
• Optional
cellPadding: string
| number
Inherited from
ListRootProps.cellPadding
cellSpacing
• Optional
cellSpacing: string
| number
Inherited from
ListRootProps.cellSpacing
charSet
• Optional
charSet: string
Inherited from
ListRootProps.charSet
challenge
• Optional
challenge: string
Inherited from
ListRootProps.challenge
checked
• Optional
checked: boolean
Inherited from
ListRootProps.checked
classID
• Optional
classID: string
Inherited from
ListRootProps.classID
cols
• Optional
cols: number
Inherited from
ListRootProps.cols
colSpan
• Optional
colSpan: number
Inherited from
ListRootProps.colSpan
controls
• Optional
controls: boolean
Inherited from
ListRootProps.controls
coords
• Optional
coords: string
Inherited from
ListRootProps.coords
crossOrigin
• Optional
crossOrigin: CrossOrigin
Inherited from
ListRootProps.crossOrigin
dateTime
• Optional
dateTime: string
Inherited from
ListRootProps.dateTime
default
• Optional
default: boolean
Inherited from
ListRootProps.default
defer
• Optional
defer: boolean
Inherited from
ListRootProps.defer
disabled
• Optional
disabled: boolean
Inherited from
ListRootProps.disabled
download
• Optional
download: any
Inherited from
ListRootProps.download
encType
• Optional
encType: string
Inherited from
ListRootProps.encType
formAction
• Optional
formAction: string
Inherited from
ListRootProps.formAction
formEncType
• Optional
formEncType: string
Inherited from
ListRootProps.formEncType
formMethod
• Optional
formMethod: string
Inherited from
ListRootProps.formMethod
formNoValidate
• Optional
formNoValidate: boolean
Inherited from
ListRootProps.formNoValidate
formTarget
• Optional
formTarget: string
Inherited from
ListRootProps.formTarget
frameBorder
• Optional
frameBorder: string
| number
Inherited from
ListRootProps.frameBorder
headers
• Optional
headers: string
Inherited from
ListRootProps.headers
high
• Optional
high: number
Inherited from
ListRootProps.high
hrefLang
• Optional
hrefLang: string
Inherited from
ListRootProps.hrefLang
htmlFor
• Optional
htmlFor: string
Inherited from
ListRootProps.htmlFor
httpEquiv
• Optional
httpEquiv: string
Inherited from
ListRootProps.httpEquiv
integrity
• Optional
integrity: string
Inherited from
ListRootProps.integrity
keyParams
• Optional
keyParams: string
Inherited from
ListRootProps.keyParams
keyType
• Optional
keyType: string
Inherited from
ListRootProps.keyType
list
• Optional
list: string
Inherited from
ListRootProps.list
loop
• Optional
loop: boolean
Inherited from
ListRootProps.loop
low
• Optional
low: number
Inherited from
ListRootProps.low
manifest
• Optional
manifest: string
Inherited from
ListRootProps.manifest
marginHeight
• Optional
marginHeight: number
Inherited from
ListRootProps.marginHeight
marginWidth
• Optional
marginWidth: number
Inherited from
ListRootProps.marginWidth
max
• Optional
max: string
| number
Inherited from
ListRootProps.max
maxLength
• Optional
maxLength: number
Inherited from
ListRootProps.maxLength
media
• Optional
media: string
Inherited from
ListRootProps.media
mediaGroup
• Optional
mediaGroup: string
Inherited from
ListRootProps.mediaGroup
method
• Optional
method: string
Inherited from
ListRootProps.method
min
• Optional
min: string
| number
Inherited from
ListRootProps.min
minLength
• Optional
minLength: number
Inherited from
ListRootProps.minLength
multiple
• Optional
multiple: boolean
Inherited from
ListRootProps.multiple
muted
• Optional
muted: boolean
Inherited from
ListRootProps.muted
noValidate
• Optional
noValidate: boolean
Inherited from
ListRootProps.noValidate
open
• Optional
open: boolean
Inherited from
ListRootProps.open
optimum
• Optional
optimum: number
Inherited from
ListRootProps.optimum
placeholder
• Optional
placeholder: string
Inherited from
ListRootProps.placeholder
playsInline
• Optional
playsInline: boolean
Inherited from
ListRootProps.playsInline
poster
• Optional
poster: string
Inherited from
ListRootProps.poster
preload
• Optional
preload: string
Inherited from
ListRootProps.preload
readOnly
• Optional
readOnly: boolean
Inherited from
ListRootProps.readOnly
required
• Optional
required: boolean
Inherited from
ListRootProps.required
reversed
• Optional
reversed: boolean
Inherited from
ListRootProps.reversed
rows
• Optional
rows: number
Inherited from
ListRootProps.rows
rowSpan
• Optional
rowSpan: number
Inherited from
ListRootProps.rowSpan
scope
• Optional
scope: string
Inherited from
ListRootProps.scope
scoped
• Optional
scoped: boolean
Inherited from
ListRootProps.scoped
scrolling
• Optional
scrolling: string
Inherited from
ListRootProps.scrolling
seamless
• Optional
seamless: boolean
Inherited from
ListRootProps.seamless
selected
• Optional
selected: boolean
Inherited from
ListRootProps.selected
shape
• Optional
shape: string
Inherited from
ListRootProps.shape
size
• Optional
size: number
Inherited from
ListRootProps.size
sizes
• Optional
sizes: string
Inherited from
ListRootProps.sizes
srcDoc
• Optional
srcDoc: string
Inherited from
ListRootProps.srcDoc
srcLang
• Optional
srcLang: string
Inherited from
ListRootProps.srcLang
srcSet
• Optional
srcSet: string
Inherited from
ListRootProps.srcSet
step
• Optional
step: string
| number
Inherited from
ListRootProps.step
useMap
• Optional
useMap: string
Inherited from
ListRootProps.useMap
wmode
• Optional
wmode: string
Inherited from
ListRootProps.wmode
wrap
• Optional
wrap: string
Inherited from
ListRootProps.wrap
defaultChecked
• Optional
defaultChecked: boolean
Inherited from
ListRootProps.defaultChecked
defaultValue
• Optional
defaultValue: string
| number
| readonly string
[]
Inherited from
ListRootProps.defaultValue
suppressContentEditableWarning
• Optional
suppressContentEditableWarning: boolean
Inherited from
ListRootProps.suppressContentEditableWarning
suppressHydrationWarning
• Optional
suppressHydrationWarning: boolean
Inherited from
ListRootProps.suppressHydrationWarning
accessKey
• Optional
accessKey: string
Inherited from
ListRootProps.accessKey
autoFocus
• Optional
autoFocus: boolean
Inherited from
ListRootProps.autoFocus
contentEditable
• Optional
contentEditable: "inherit"
| Booleanish
| "plaintext-only"
Inherited from
ListRootProps.contentEditable
contextMenu
• Optional
contextMenu: string
Inherited from
ListRootProps.contextMenu
dir
• Optional
dir: string
Inherited from
ListRootProps.dir
draggable
• Optional
draggable: Booleanish
Inherited from
ListRootProps.draggable
hidden
• Optional
hidden: boolean
Inherited from
ListRootProps.hidden
lang
• Optional
lang: string
Inherited from
ListRootProps.lang
nonce
• Optional
nonce: string
Inherited from
ListRootProps.nonce
spellCheck
• Optional
spellCheck: Booleanish
Inherited from
ListRootProps.spellCheck
translate
• Optional
translate: "yes"
| "no"
Inherited from
ListRootProps.translate
radioGroup
• Optional
radioGroup: string
Inherited from
ListRootProps.radioGroup
role
• Optional
role: AriaRole
Inherited from
ListRootProps.role
about
• Optional
about: string
Inherited from
ListRootProps.about
content
• Optional
content: string
Inherited from
ListRootProps.content
datatype
• Optional
datatype: string
Inherited from
ListRootProps.datatype
inlist
• Optional
inlist: any
Inherited from
ListRootProps.inlist
prefix
• Optional
prefix: string
Inherited from
ListRootProps.prefix
property
• Optional
property: string
Inherited from
ListRootProps.property
rel
• Optional
rel: string
Inherited from
ListRootProps.rel
resource
• Optional
resource: string
Inherited from
ListRootProps.resource
rev
• Optional
rev: string
Inherited from
ListRootProps.rev
typeof
• Optional
typeof: string
Inherited from
ListRootProps.typeof
vocab
• Optional
vocab: string
Inherited from
ListRootProps.vocab
autoCapitalize
• Optional
autoCapitalize: string
Inherited from
ListRootProps.autoCapitalize
autoCorrect
• Optional
autoCorrect: string
Inherited from
ListRootProps.autoCorrect
autoSave
• Optional
autoSave: string
Inherited from
ListRootProps.autoSave
itemProp
• Optional
itemProp: string
Inherited from
ListRootProps.itemProp
itemScope
• Optional
itemScope: boolean
Inherited from
ListRootProps.itemScope
itemType
• Optional
itemType: string
Inherited from
ListRootProps.itemType
itemID
• Optional
itemID: string
Inherited from
ListRootProps.itemID
itemRef
• Optional
itemRef: string
Inherited from
ListRootProps.itemRef
results
• Optional
results: number
Inherited from
ListRootProps.results
security
• Optional
security: string
Inherited from
ListRootProps.security
unselectable
• Optional
unselectable: "on"
| "off"
Inherited from
ListRootProps.unselectable
inputMode
• Optional
inputMode: "url"
| "search"
| "none"
| "text"
| "tel"
| "email"
| "numeric"
| "decimal"
Hints at the type of data that might be entered by the user while editing the element or its contents
See
https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute
Inherited from
ListRootProps.inputMode
is
• Optional
is: string
Specify that a standard HTML element should behave like a defined custom built-in element
See
https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
Inherited from
ListRootProps.is
aria-activedescendant
• Optional
aria-activedescendant: string
Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.
Inherited from
ListRootProps.aria-activedescendant
aria-atomic
• Optional
aria-atomic: Booleanish
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.
Inherited from
ListRootProps.aria-atomic
aria-autocomplete
• Optional
aria-autocomplete: "none"
| "list"
| "inline"
| "both"
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.
Inherited from
ListRootProps.aria-autocomplete
aria-braillelabel
• Optional
aria-braillelabel: string
Defines a string value that labels the current element, which is intended to be converted into Braille.
See
aria-label.
Inherited from
ListRootProps.aria-braillelabel
aria-brailleroledescription
• Optional
aria-brailleroledescription: string
Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.
See
aria-roledescription.
Inherited from
ListRootProps.aria-brailleroledescription
aria-busy
• Optional
aria-busy: Booleanish
Inherited from
ListRootProps.aria-busy
aria-checked
• Optional
aria-checked: boolean
| "true"
| "false"
| "mixed"
Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
See
- aria-pressed
- aria-selected.
Inherited from
ListRootProps.aria-checked
aria-colcount
• Optional
aria-colcount: number
Defines the total number of columns in a table, grid, or treegrid.
See
aria-colindex.
Inherited from
ListRootProps.aria-colcount
aria-colindex
• Optional
aria-colindex: number
Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
See
- aria-colcount
- aria-colspan.
Inherited from
ListRootProps.aria-colindex
aria-colindextext
• Optional
aria-colindextext: string
Defines a human readable text alternative of aria-colindex.
See
aria-rowindextext.
Inherited from
ListRootProps.aria-colindextext
aria-colspan
• Optional
aria-colspan: number
Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
See
- aria-colindex
- aria-rowspan.
Inherited from
ListRootProps.aria-colspan
aria-controls
• Optional
aria-controls: string
Identifies the element (or elements) whose contents or presence are controlled by the current element.
See
aria-owns.
Inherited from
ListRootProps.aria-controls
aria-current
• Optional
aria-current: boolean
| "time"
| "step"
| "true"
| "false"
| "page"
| "location"
| "date"
Indicates the element that represents the current item within a container or set of related elements.
Inherited from
ListRootProps.aria-current
aria-describedby
• Optional
aria-describedby: string
Identifies the element (or elements) that describes the object.
See
aria-labelledby
Inherited from
ListRootProps.aria-describedby
aria-description
• Optional
aria-description: string
Defines a string value that describes or annotates the current element.
See
related aria-describedby.
Inherited from
ListRootProps.aria-description
aria-details
• Optional
aria-details: string
Identifies the element that provides a detailed, extended description for the object.
See
aria-describedby.
Inherited from
ListRootProps.aria-details
aria-disabled
• Optional
aria-disabled: Booleanish
Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
See
- aria-hidden
- aria-readonly.
Inherited from
ListRootProps.aria-disabled
aria-dropeffect
• Optional
aria-dropeffect: "link"
| "none"
| "copy"
| "execute"
| "move"
| "popup"
Indicates what functions can be performed when a dragged object is released on the drop target.
Deprecated
in ARIA 1.1
Inherited from
ListRootProps.aria-dropeffect
aria-errormessage
• Optional
aria-errormessage: string
Identifies the element that provides an error message for the object.
See
- aria-invalid
- aria-describedby.
Inherited from
ListRootProps.aria-errormessage
aria-expanded
• Optional
aria-expanded: Booleanish
Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.
Inherited from
ListRootProps.aria-expanded
aria-flowto
• Optional
aria-flowto: string
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.
Inherited from
ListRootProps.aria-flowto
aria-grabbed
• Optional
aria-grabbed: Booleanish
Indicates an element's "grabbed" state in a drag-and-drop operation.
Deprecated
in ARIA 1.1
Inherited from
ListRootProps.aria-grabbed
aria-haspopup
• Optional
aria-haspopup: boolean
| "dialog"
| "menu"
| "true"
| "false"
| "grid"
| "listbox"
| "tree"
Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.
Inherited from
ListRootProps.aria-haspopup
aria-hidden
• Optional
aria-hidden: Booleanish
Indicates whether the element is exposed to an accessibility API.
See
aria-disabled.
Inherited from
ListRootProps.aria-hidden
aria-invalid
• Optional
aria-invalid: boolean
| "true"
| "false"
| "grammar"
| "spelling"
Indicates the entered value does not conform to the format expected by the application.
See
aria-errormessage.
Inherited from
ListRootProps.aria-invalid
aria-keyshortcuts
• Optional
aria-keyshortcuts: string
Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.
Inherited from
ListRootProps.aria-keyshortcuts
aria-label
• Optional
aria-label: string
Defines a string value that labels the current element.
See
aria-labelledby.
Inherited from
ListRootProps.aria-label
aria-labelledby
• Optional
aria-labelledby: string
Identifies the element (or elements) that labels the current element.
See
aria-describedby.
Inherited from
ListRootProps.aria-labelledby
aria-level
• Optional
aria-level: number
Defines the hierarchical level of an element within a structure.
Inherited from
ListRootProps.aria-level
aria-live
• Optional
aria-live: "off"
| "assertive"
| "polite"
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.
Inherited from
ListRootProps.aria-live
aria-modal
• Optional
aria-modal: Booleanish
Indicates whether an element is modal when displayed.
Inherited from
ListRootProps.aria-modal
aria-multiline
• Optional
aria-multiline: Booleanish
Indicates whether a text box accepts multiple lines of input or only a single line.
Inherited from
ListRootProps.aria-multiline
aria-multiselectable
• Optional
aria-multiselectable: Booleanish
Indicates that the user may select more than one item from the current selectable descendants.
Inherited from
ListRootProps.aria-multiselectable
aria-orientation
• Optional
aria-orientation: "horizontal"
| "vertical"
Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
Inherited from
ListRootProps.aria-orientation
aria-owns
• Optional
aria-owns: string
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.
See
aria-controls.
Inherited from
ListRootProps.aria-owns
aria-placeholder
• Optional
aria-placeholder: string
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.
Inherited from
ListRootProps.aria-placeholder
aria-posinset
• Optional
aria-posinset: number
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.
See
aria-setsize.
Inherited from
ListRootProps.aria-posinset
aria-pressed
• Optional
aria-pressed: boolean
| "true"
| "false"
| "mixed"
Indicates the current "pressed" state of toggle buttons.
See
- aria-checked
- aria-selected.
Inherited from
ListRootProps.aria-pressed
aria-readonly
• Optional
aria-readonly: Booleanish
Indicates that the element is not editable, but is otherwise operable.
See
aria-disabled.
Inherited from
ListRootProps.aria-readonly
aria-relevant
• Optional
aria-relevant: "text"
| "additions"
| "additions removals"
| "additions text"
| "all"
| "removals"
| "removals additions"
| "removals text"
| "text additions"
| "text removals"
Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
See
aria-atomic.
Inherited from
ListRootProps.aria-relevant
aria-required
• Optional
aria-required: Booleanish
Indicates that user input is required on the element before a form may be submitted.
Inherited from
ListRootProps.aria-required
aria-roledescription
• Optional
aria-roledescription: string
Defines a human-readable, author-localized description for the role of an element.
Inherited from
ListRootProps.aria-roledescription
aria-rowcount
• Optional
aria-rowcount: number
Defines the total number of rows in a table, grid, or treegrid.
See
aria-rowindex.
Inherited from
ListRootProps.aria-rowcount
aria-rowindex
• Optional
aria-rowindex: number
Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
See
- aria-rowcount
- aria-rowspan.
Inherited from
ListRootProps.aria-rowindex
aria-rowindextext
• Optional
aria-rowindextext: string
Defines a human readable text alternative of aria-rowindex.
See
aria-colindextext.
Inherited from
ListRootProps.aria-rowindextext
aria-rowspan
• Optional
aria-rowspan: number
Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
See
- aria-rowindex
- aria-colspan.
Inherited from
ListRootProps.aria-rowspan
aria-selected
• Optional
aria-selected: Booleanish
Indicates the current "selected" state of various widgets.
See
- aria-checked
- aria-pressed.
Inherited from
ListRootProps.aria-selected
aria-setsize
• Optional
aria-setsize: number
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.
See
aria-posinset.
Inherited from
ListRootProps.aria-setsize
aria-sort
• Optional
aria-sort: "none"
| "ascending"
| "descending"
| "other"
Indicates if items in a table or grid are sorted in ascending or descending order.
Inherited from
ListRootProps.aria-sort
aria-valuemax
• Optional
aria-valuemax: number
Defines the maximum allowed value for a range widget.
Inherited from
ListRootProps.aria-valuemax
aria-valuemin
• Optional
aria-valuemin: number
Defines the minimum allowed value for a range widget.
Inherited from
ListRootProps.aria-valuemin
aria-valuenow
• Optional
aria-valuenow: number
Defines the current value for a range widget.
See
aria-valuetext.
Inherited from
ListRootProps.aria-valuenow
aria-valuetext
• Optional
aria-valuetext: string
Defines the human readable text alternative of aria-valuenow for a range widget.
Inherited from
ListRootProps.aria-valuetext
dangerouslySetInnerHTML
• Optional
dangerouslySetInnerHTML: Object
Type declaration
Name | Type |
---|---|
__html | string | TrustedHTML |
Inherited from
ListRootProps.dangerouslySetInnerHTML
onCopy
• Optional
onCopy: ClipboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCopy
onCopyCapture
• Optional
onCopyCapture: ClipboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCopyCapture
onCut
• Optional
onCut: ClipboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCut
onCutCapture
• Optional
onCutCapture: ClipboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCutCapture
onPaste
• Optional
onPaste: ClipboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPaste
onPasteCapture
• Optional
onPasteCapture: ClipboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPasteCapture
onCompositionEnd
• Optional
onCompositionEnd: CompositionEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCompositionEnd
onCompositionEndCapture
• Optional
onCompositionEndCapture: CompositionEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCompositionEndCapture
onCompositionStart
• Optional
onCompositionStart: CompositionEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCompositionStart
onCompositionStartCapture
• Optional
onCompositionStartCapture: CompositionEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCompositionStartCapture
onCompositionUpdate
• Optional
onCompositionUpdate: CompositionEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCompositionUpdate
onCompositionUpdateCapture
• Optional
onCompositionUpdateCapture: CompositionEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCompositionUpdateCapture
onFocus
• Optional
onFocus: FocusEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onFocus
onFocusCapture
• Optional
onFocusCapture: FocusEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onFocusCapture
onBlur
• Optional
onBlur: FocusEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onBlur
onBlurCapture
• Optional
onBlurCapture: FocusEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onBlurCapture
onChange
• Optional
onChange: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onChange
onChangeCapture
• Optional
onChangeCapture: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onChangeCapture
onBeforeInput
• Optional
onBeforeInput: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onBeforeInput
onBeforeInputCapture
• Optional
onBeforeInputCapture: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onBeforeInputCapture
onInput
• Optional
onInput: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onInput
onInputCapture
• Optional
onInputCapture: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onInputCapture
onReset
• Optional
onReset: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onReset
onResetCapture
• Optional
onResetCapture: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onResetCapture
onSubmit
• Optional
onSubmit: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSubmit
onSubmitCapture
• Optional
onSubmitCapture: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSubmitCapture
onInvalid
• Optional
onInvalid: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onInvalid
onInvalidCapture
• Optional
onInvalidCapture: FormEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onInvalidCapture
onLoad
• Optional
onLoad: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLoad
onLoadCapture
• Optional
onLoadCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLoadCapture
onError
• Optional
onError: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onError
onErrorCapture
• Optional
onErrorCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onErrorCapture
onKeyDown
• Optional
onKeyDown: KeyboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onKeyDown
onKeyDownCapture
• Optional
onKeyDownCapture: KeyboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onKeyDownCapture
onKeyPress
• Optional
onKeyPress: KeyboardEventHandler
<HTMLDivElement
>
Deprecated
Inherited from
ListRootProps.onKeyPress
onKeyPressCapture
• Optional
onKeyPressCapture: KeyboardEventHandler
<HTMLDivElement
>
Deprecated
Inherited from
ListRootProps.onKeyPressCapture
onKeyUp
• Optional
onKeyUp: KeyboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onKeyUp
onKeyUpCapture
• Optional
onKeyUpCapture: KeyboardEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onKeyUpCapture
onAbort
• Optional
onAbort: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAbort
onAbortCapture
• Optional
onAbortCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAbortCapture
onCanPlay
• Optional
onCanPlay: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCanPlay
onCanPlayCapture
• Optional
onCanPlayCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCanPlayCapture
onCanPlayThrough
• Optional
onCanPlayThrough: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCanPlayThrough
onCanPlayThroughCapture
• Optional
onCanPlayThroughCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onCanPlayThroughCapture
onDurationChange
• Optional
onDurationChange: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDurationChange
onDurationChangeCapture
• Optional
onDurationChangeCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDurationChangeCapture
onEmptied
• Optional
onEmptied: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onEmptied
onEmptiedCapture
• Optional
onEmptiedCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onEmptiedCapture
onEncrypted
• Optional
onEncrypted: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onEncrypted
onEncryptedCapture
• Optional
onEncryptedCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onEncryptedCapture
onEnded
• Optional
onEnded: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onEnded
onEndedCapture
• Optional
onEndedCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onEndedCapture
onLoadedData
• Optional
onLoadedData: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLoadedData
onLoadedDataCapture
• Optional
onLoadedDataCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLoadedDataCapture
onLoadedMetadata
• Optional
onLoadedMetadata: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLoadedMetadata
onLoadedMetadataCapture
• Optional
onLoadedMetadataCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLoadedMetadataCapture
onLoadStart
• Optional
onLoadStart: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLoadStart
onLoadStartCapture
• Optional
onLoadStartCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLoadStartCapture
onPause
• Optional
onPause: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPause
onPauseCapture
• Optional
onPauseCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPauseCapture
onPlay
• Optional
onPlay: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPlay
onPlayCapture
• Optional
onPlayCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPlayCapture
onPlaying
• Optional
onPlaying: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPlaying
onPlayingCapture
• Optional
onPlayingCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPlayingCapture
onProgress
• Optional
onProgress: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onProgress
onProgressCapture
• Optional
onProgressCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onProgressCapture
onRateChange
• Optional
onRateChange: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onRateChange
onRateChangeCapture
• Optional
onRateChangeCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onRateChangeCapture
onResize
• Optional
onResize: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onResize
onResizeCapture
• Optional
onResizeCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onResizeCapture
onSeeked
• Optional
onSeeked: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSeeked
onSeekedCapture
• Optional
onSeekedCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSeekedCapture
onSeeking
• Optional
onSeeking: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSeeking
onSeekingCapture
• Optional
onSeekingCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSeekingCapture
onStalled
• Optional
onStalled: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onStalled
onStalledCapture
• Optional
onStalledCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onStalledCapture
onSuspend
• Optional
onSuspend: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSuspend
onSuspendCapture
• Optional
onSuspendCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSuspendCapture
onTimeUpdate
• Optional
onTimeUpdate: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTimeUpdate
onTimeUpdateCapture
• Optional
onTimeUpdateCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTimeUpdateCapture
onVolumeChange
• Optional
onVolumeChange: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onVolumeChange
onVolumeChangeCapture
• Optional
onVolumeChangeCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onVolumeChangeCapture
onWaiting
• Optional
onWaiting: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onWaiting
onWaitingCapture
• Optional
onWaitingCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onWaitingCapture
onAuxClick
• Optional
onAuxClick: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAuxClick
onAuxClickCapture
• Optional
onAuxClickCapture: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAuxClickCapture
onClickCapture
• Optional
onClickCapture: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onClickCapture
onContextMenu
• Optional
onContextMenu: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onContextMenu
onContextMenuCapture
• Optional
onContextMenuCapture: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onContextMenuCapture
onDoubleClick
• Optional
onDoubleClick: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDoubleClick
onDoubleClickCapture
• Optional
onDoubleClickCapture: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDoubleClickCapture
onDrag
• Optional
onDrag: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDrag
onDragCapture
• Optional
onDragCapture: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragCapture
onDragEnd
• Optional
onDragEnd: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragEnd
onDragEndCapture
• Optional
onDragEndCapture: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragEndCapture
onDragEnter
• Optional
onDragEnter: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragEnter
onDragEnterCapture
• Optional
onDragEnterCapture: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragEnterCapture
onDragExit
• Optional
onDragExit: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragExit
onDragExitCapture
• Optional
onDragExitCapture: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragExitCapture
onDragLeave
• Optional
onDragLeave: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragLeave
onDragLeaveCapture
• Optional
onDragLeaveCapture: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragLeaveCapture
onDragOver
• Optional
onDragOver: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragOver
onDragOverCapture
• Optional
onDragOverCapture: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragOverCapture
onDragStart
• Optional
onDragStart: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragStart
onDragStartCapture
• Optional
onDragStartCapture: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDragStartCapture
onDrop
• Optional
onDrop: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDrop
onDropCapture
• Optional
onDropCapture: DragEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onDropCapture
onMouseDown
• Optional
onMouseDown: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseDown
onMouseDownCapture
• Optional
onMouseDownCapture: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseDownCapture
onMouseEnter
• Optional
onMouseEnter: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseEnter
onMouseLeave
• Optional
onMouseLeave: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseLeave
onMouseMove
• Optional
onMouseMove: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseMove
onMouseMoveCapture
• Optional
onMouseMoveCapture: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseMoveCapture
onMouseOut
• Optional
onMouseOut: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseOut
onMouseOutCapture
• Optional
onMouseOutCapture: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseOutCapture
onMouseOver
• Optional
onMouseOver: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseOver
onMouseOverCapture
• Optional
onMouseOverCapture: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseOverCapture
onMouseUp
• Optional
onMouseUp: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseUp
onMouseUpCapture
• Optional
onMouseUpCapture: MouseEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onMouseUpCapture
onSelect
• Optional
onSelect: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSelect
onSelectCapture
• Optional
onSelectCapture: ReactEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onSelectCapture
onTouchCancel
• Optional
onTouchCancel: TouchEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTouchCancel
onTouchCancelCapture
• Optional
onTouchCancelCapture: TouchEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTouchCancelCapture
onTouchEnd
• Optional
onTouchEnd: TouchEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTouchEnd
onTouchEndCapture
• Optional
onTouchEndCapture: TouchEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTouchEndCapture
onTouchMove
• Optional
onTouchMove: TouchEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTouchMove
onTouchMoveCapture
• Optional
onTouchMoveCapture: TouchEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTouchMoveCapture
onTouchStart
• Optional
onTouchStart: TouchEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTouchStart
onTouchStartCapture
• Optional
onTouchStartCapture: TouchEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTouchStartCapture
onPointerDown
• Optional
onPointerDown: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerDown
onPointerDownCapture
• Optional
onPointerDownCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerDownCapture
onPointerMove
• Optional
onPointerMove: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerMove
onPointerMoveCapture
• Optional
onPointerMoveCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerMoveCapture
onPointerUp
• Optional
onPointerUp: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerUp
onPointerUpCapture
• Optional
onPointerUpCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerUpCapture
onPointerCancel
• Optional
onPointerCancel: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerCancel
onPointerCancelCapture
• Optional
onPointerCancelCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerCancelCapture
onPointerEnter
• Optional
onPointerEnter: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerEnter
onPointerLeave
• Optional
onPointerLeave: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerLeave
onPointerOver
• Optional
onPointerOver: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerOver
onPointerOverCapture
• Optional
onPointerOverCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerOverCapture
onPointerOut
• Optional
onPointerOut: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerOut
onPointerOutCapture
• Optional
onPointerOutCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onPointerOutCapture
onGotPointerCapture
• Optional
onGotPointerCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onGotPointerCapture
onGotPointerCaptureCapture
• Optional
onGotPointerCaptureCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onGotPointerCaptureCapture
onLostPointerCapture
• Optional
onLostPointerCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLostPointerCapture
onLostPointerCaptureCapture
• Optional
onLostPointerCaptureCapture: PointerEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onLostPointerCaptureCapture
onScroll
• Optional
onScroll: UIEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onScroll
onScrollCapture
• Optional
onScrollCapture: UIEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onScrollCapture
onWheel
• Optional
onWheel: WheelEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onWheel
onWheelCapture
• Optional
onWheelCapture: WheelEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onWheelCapture
onAnimationStart
• Optional
onAnimationStart: AnimationEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAnimationStart
onAnimationStartCapture
• Optional
onAnimationStartCapture: AnimationEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAnimationStartCapture
onAnimationEnd
• Optional
onAnimationEnd: AnimationEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAnimationEnd
onAnimationEndCapture
• Optional
onAnimationEndCapture: AnimationEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAnimationEndCapture
onAnimationIteration
• Optional
onAnimationIteration: AnimationEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAnimationIteration
onAnimationIterationCapture
• Optional
onAnimationIterationCapture: AnimationEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onAnimationIterationCapture
onTransitionEnd
• Optional
onTransitionEnd: TransitionEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTransitionEnd
onTransitionEndCapture
• Optional
onTransitionEndCapture: TransitionEventHandler
<HTMLDivElement
>
Inherited from
ListRootProps.onTransitionEndCapture