Interface: VirtuosoProps<D, C>
Extends
Type Parameters
D
D
C
C
Properties
alignToBottom?
optionalalignToBottom: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.
atBottomStateChange()?
optionalatBottomStateChange: (atBottom) =>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.
Parameters
atBottom
boolean
Returns
void
atBottomThreshold?
optionalatBottomThreshold: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.
atTopStateChange()?
optionalatTopStateChange: (atTop) =>void
Called with true / false when the list has reached the top / gets scrolled down.
Parameters
atTop
boolean
Returns
void
atTopThreshold?
optionalatTopThreshold: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.
components?
optionalcomponents:Components<D,C>
Use the components property for advanced customization of the elements rendered by the list.
computeItemKey?
optionalcomputeItemKey:ComputeItemKey<D,C>
If specified, the component will use the function to generate the key property for each list item.
context?
optionalcontext:C
Additional context available in the custom components and content callbacks
customScrollParent?
optionalcustomScrollParent:HTMLElement
Pass a reference to a scrollable parent element, so that the list won't wrap in its own.
data?
optionaldata: readonlyD[]
The data items to be rendered. If data is set, the total count will be inferred from the length of the array.
defaultItemHeight?
optionaldefaultItemHeight: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.
endReached()?
optionalendReached: (index) =>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.
Parameters
index
number
Returns
void
firstItemIndex?
optionalfirstItemIndex: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.
fixedItemHeight?
optionalfixedItemHeight:number
Can be used to improve performance if the rendered items are of known size. Setting it causes the component to skip item measurements.
followOutput?
optionalfollowOutput: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
}
}} />
scrollIntoViewOnChange()?
optionalscrollIntoViewOnChange: (params) =>undefined|null|false|void|ScrollIntoViewLocation
Implement this callback if you want to adjust the list position when the list total count changes.
Return a ScrollIntoViewLocation object to scroll to a specific item, or falsey value to avoid scrolling.
Use the context contents if you need to implement custom logic based on the current state of the list.
Parameters
params
context
C
totalCount
number
scrollingInProgress
boolean
Returns
undefined | null | false | void | ScrollIntoViewLocation
headerFooterTag?
optionalheaderFooterTag:string
Set to customize the wrapper tag for the header and footer components (default is div).
horizontalDirection?
optionalhorizontalDirection:boolean
When set, turns the scroller into a horizontal list. The items are positioned with inline-block.
increaseViewportBy?
optionalincreaseViewportBy:number| {bottom:number;top: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.
initialItemCount?
optionalinitialItemCount:number
Use for server-side rendering - if set, the list will render the specified amount of items regardless of the container / item size.
initialScrollTop?
optionalinitialScrollTop: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.
initialTopMostItemIndex?
optionalinitialTopMostItemIndex: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.
isScrolling()?
optionalisScrolling: (isScrolling) =>void
Called when the list starts/stops scrolling.
Parameters
isScrolling
boolean
Returns
void
itemContent?
optionalitemContent:ItemContent<D,C>
Set the callback to specify the contents of the item.
itemSize?
optionalitemSize:SizeFunction
Allows customizing the height/width calculation of Item elements.
The default implementation reads el.getBoundingClientRect().height and el.getBoundingClientRect().width.
itemsRendered()?
optionalitemsRendered: (items) =>void
Called with the new set of items each time the list items are rendered due to scrolling.
Parameters
items
ListItem<D>[]
Returns
void
logLevel?
optionallogLevel: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.
overscan?
optionaloverscan: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).
rangeChanged()?
optionalrangeChanged: (range) =>void
Called with the new set of items each time the list items are rendered due to scrolling.
Parameters
range
Returns
void
restoreStateFrom?
optionalrestoreStateFrom: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.
scrollerRef()?
optionalscrollerRef: (ref) =>any
Provides access to the root DOM element
Parameters
ref
null | HTMLElement | Window
Returns
any
scrollSeekConfiguration?
optionalscrollSeekConfiguration:false|ScrollSeekConfiguration
Use to display placeholders if the user scrolls fast through the list.
Set components.ScrollSeekPlaceholder to change the placeholder content.
skipAnimationFrameInResizeObserver?
optionalskipAnimationFrameInResizeObserver:boolean
When set, the resize observer used to measure the items will not use requestAnimationFrame to report the size changes.
Setting this to true will improve performance and reduce flickering, but will cause benign errors to be reported in the console if the size of the items changes while they are being measured.
See https://github.com/petyosi/react-virtuoso/issues/1049 for more information.
startReached()?
optionalstartReached: (index) =>void
Called when the user scrolls to the start of the list.
Parameters
index
number
Returns
void
topItemCount?
optionaltopItemCount: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.
totalCount?
optionaltotalCount:number
The total amount of items to be rendered.
totalListHeightChanged()?
optionaltotalListHeightChanged: (height) =>void
Called when the total list height is changed due to new items or viewport resize.
Parameters
height
number
Returns
void
useWindowScroll?
optionaluseWindowScroll:boolean
Uses the document scroller rather than wrapping the list in its own.
start?
optionalstart:number
Inherited from
ListRootProps.start
cite?
optionalcite:string
Inherited from
ListRootProps.cite
form?
optionalform:string
Inherited from
ListRootProps.form
label?
optionallabel:string
Inherited from
ListRootProps.label
slot?
optionalslot:string
Inherited from
ListRootProps.slot
span?
optionalspan:number
Inherited from
ListRootProps.span
style?
optionalstyle:CSSProperties
Inherited from
ListRootProps.style
summary?
optionalsummary:string
Inherited from
ListRootProps.summary
title?
optionaltitle:string
Inherited from
ListRootProps.title
pattern?
optionalpattern:string
Inherited from
ListRootProps.pattern
children?
optionalchildren:ReactNode
Inherited from
ListRootProps.children
tabIndex?
optionaltabIndex:number
Inherited from
ListRootProps.tabIndex
className?
optionalclassName:string
Inherited from
ListRootProps.className
key?
optionalkey:null|Key
Inherited from
ListRootProps.key
defaultChecked?
optionaldefaultChecked:boolean
Inherited from
ListRootProps.defaultChecked
defaultValue?
optionaldefaultValue:string|number| readonlystring[]
Inherited from
ListRootProps.defaultValue
suppressContentEditableWarning?
optionalsuppressContentEditableWarning:boolean
Inherited from
ListRootProps.suppressContentEditableWarning
suppressHydrationWarning?
optionalsuppressHydrationWarning:boolean
Inherited from
ListRootProps.suppressHydrationWarning
accessKey?
optionalaccessKey:string
Inherited from
ListRootProps.accessKey
autoCapitalize?
optionalautoCapitalize:"none"|string&object|"off"|"on"|"sentences"|"words"|"characters"
Inherited from
ListRootProps.autoCapitalize
autoFocus?
optionalautoFocus:boolean
Inherited from
ListRootProps.autoFocus
contentEditable?
optionalcontentEditable:"inherit"|Booleanish|"plaintext-only"
Inherited from
ListRootProps.contentEditable
contextMenu?
optionalcontextMenu:string
Inherited from
ListRootProps.contextMenu
dir?
optionaldir:string
Inherited from
ListRootProps.dir
draggable?
optionaldraggable:Booleanish
Inherited from
ListRootProps.draggable
enterKeyHint?
optionalenterKeyHint:"search"|"next"|"done"|"enter"|"go"|"previous"|"send"
Inherited from
ListRootProps.enterKeyHint
hidden?
optionalhidden:boolean
Inherited from
ListRootProps.hidden
id?
optionalid:string
Inherited from
ListRootProps.id
lang?
optionallang:string
Inherited from
ListRootProps.lang
nonce?
optionalnonce:string
Inherited from
ListRootProps.nonce
spellCheck?
optionalspellCheck:Booleanish
Inherited from
ListRootProps.spellCheck
translate?
optionaltranslate:"yes"|"no"
Inherited from
ListRootProps.translate
radioGroup?
optionalradioGroup:string
Inherited from
ListRootProps.radioGroup
role?
optionalrole:AriaRole
Inherited from
ListRootProps.role
about?
optionalabout:string
Inherited from
ListRootProps.about
content?
optionalcontent:string
Inherited from
ListRootProps.content
datatype?
optionaldatatype:string
Inherited from
ListRootProps.datatype
inlist?
optionalinlist:any
Inherited from
ListRootProps.inlist
prefix?
optionalprefix:string
Inherited from
ListRootProps.prefix
property?
optionalproperty:string
Inherited from
ListRootProps.property
rel?
optionalrel:string
Inherited from
ListRootProps.rel
resource?
optionalresource:string
Inherited from
ListRootProps.resource
rev?
optionalrev:string
Inherited from
ListRootProps.rev
typeof?
optionaltypeof:string
Inherited from
ListRootProps.typeof
vocab?
optionalvocab:string
Inherited from
ListRootProps.vocab
autoCorrect?
optionalautoCorrect:string
Inherited from
ListRootProps.autoCorrect
autoSave?
optionalautoSave:string
Inherited from
ListRootProps.autoSave
color?
optionalcolor:string
Inherited from
ListRootProps.color
itemProp?
optionalitemProp:string
Inherited from
ListRootProps.itemProp
itemScope?
optionalitemScope:boolean
Inherited from
ListRootProps.itemScope
itemType?
optionalitemType:string
Inherited from
ListRootProps.itemType
itemID?
optionalitemID:string
Inherited from
ListRootProps.itemID
itemRef?
optionalitemRef:string
Inherited from
ListRootProps.itemRef
results?
optionalresults:number
Inherited from
ListRootProps.results
security?
optionalsecurity:string
Inherited from
ListRootProps.security
unselectable?
optionalunselectable:"off"|"on"
Inherited from
ListRootProps.unselectable
inputMode?
optionalinputMode:"search"|"text"|"none"|"tel"|"url"|"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?
optionalis: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
exportparts?
optionalexportparts:string
See
https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts
Inherited from
ListRootProps.exportparts
part?
optionalpart:string
See
https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part
Inherited from
ListRootProps.part
aria-activedescendant?
optionalaria-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?
optionalaria-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?
optionalaria-autocomplete:"list"|"none"|"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?
optionalaria-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?
optionalaria-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?
optionalaria-busy:Booleanish
Inherited from
ListRootProps.aria-busy
aria-checked?
optionalaria-checked:boolean|"mixed"|"false"|"true"
Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
See
- aria-pressed
- aria-selected.
Inherited from
ListRootProps.aria-checked
aria-colcount?
optionalaria-colcount:number
Defines the total number of columns in a table, grid, or treegrid.
See
aria-colindex.
Inherited from
ListRootProps.aria-colcount
aria-colindex?
optionalaria-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?
optionalaria-colindextext:string
Defines a human readable text alternative of aria-colindex.
See
aria-rowindextext.
Inherited from
ListRootProps.aria-colindextext
aria-colspan?
optionalaria-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?
optionalaria-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?
optionalaria-current:boolean|"time"|"step"|"location"|"page"|"false"|"true"|"date"
Indicates the element that represents the current item within a container or set of related elements.
Inherited from
ListRootProps.aria-current
aria-describedby?
optionalaria-describedby:string
Identifies the element (or elements) that describes the object.
See
aria-labelledby
Inherited from
ListRootProps.aria-describedby
aria-description?
optionalaria-description:string
Defines a string value that describes or annotates the current element.
See
related aria-describedby.
Inherited from
ListRootProps.aria-description
aria-details?
optionalaria-details:string
Identifies the element that provides a detailed, extended description for the object.
See
aria-describedby.
Inherited from
ListRootProps.aria-details
aria-disabled?
optionalaria-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?
optionalaria-dropeffect:"link"|"copy"|"none"|"move"|"execute"|"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?
optionalaria-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?
optionalaria-expanded:Booleanish
Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.
Inherited from
ListRootProps.aria-expanded
aria-flowto?
optionalaria-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?
optionalaria-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?
optionalaria-haspopup:boolean|"dialog"|"menu"|"grid"|"listbox"|"false"|"true"|"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?
optionalaria-hidden:Booleanish
Indicates whether the element is exposed to an accessibility API.
See
aria-disabled.
Inherited from
ListRootProps.aria-hidden
aria-invalid?
optionalaria-invalid:boolean|"false"|"true"|"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?
optionalaria-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?
optionalaria-label:string
Defines a string value that labels the current element.
See
aria-labelledby.
Inherited from
ListRootProps.aria-label
aria-labelledby?
optionalaria-labelledby:string
Identifies the element (or elements) that labels the current element.
See
aria-describedby.
Inherited from
ListRootProps.aria-labelledby
aria-level?
optionalaria-level:number
Defines the hierarchical level of an element within a structure.
Inherited from
ListRootProps.aria-level
aria-live?
optionalaria-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?
optionalaria-modal:Booleanish
Indicates whether an element is modal when displayed.
Inherited from
ListRootProps.aria-modal
aria-multiline?
optionalaria-multiline:Booleanish
Indicates whether a text box accepts multiple lines of input or only a single line.
Inherited from
ListRootProps.aria-multiline
aria-multiselectable?
optionalaria-multiselectable:Booleanish
Indicates that the user may select more than one item from the current selectable descendants.
Inherited from
ListRootProps.aria-multiselectable
aria-orientation?
optionalaria-orientation:"horizontal"|"vertical"
Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
Inherited from
ListRootProps.aria-orientation
aria-owns?
optionalaria-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?
optionalaria-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?
optionalaria-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?
optionalaria-pressed:boolean|"mixed"|"false"|"true"
Indicates the current "pressed" state of toggle buttons.
See
- aria-checked
- aria-selected.
Inherited from
ListRootProps.aria-pressed
aria-readonly?
optionalaria-readonly:Booleanish
Indicates that the element is not editable, but is otherwise operable.
See
aria-disabled.
Inherited from
ListRootProps.aria-readonly
aria-relevant?
optionalaria-relevant:"text"|"all"|"additions"|"additions removals"|"additions text"|"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?
optionalaria-required:Booleanish
Indicates that user input is required on the element before a form may be submitted.
Inherited from
ListRootProps.aria-required
aria-roledescription?
optionalaria-roledescription:string
Defines a human-readable, author-localized description for the role of an element.
Inherited from
ListRootProps.aria-roledescription
aria-rowcount?
optionalaria-rowcount:number
Defines the total number of rows in a table, grid, or treegrid.
See
aria-rowindex.
Inherited from
ListRootProps.aria-rowcount
aria-rowindex?
optionalaria-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?
optionalaria-rowindextext:string
Defines a human readable text alternative of aria-rowindex.
See
aria-colindextext.
Inherited from
ListRootProps.aria-rowindextext
aria-rowspan?
optionalaria-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?
optionalaria-selected:Booleanish
Indicates the current "selected" state of various widgets.
See
- aria-checked
- aria-pressed.
Inherited from
ListRootProps.aria-selected
aria-setsize?
optionalaria-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?
optionalaria-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?
optionalaria-valuemax:number
Defines the maximum allowed value for a range widget.
Inherited from
ListRootProps.aria-valuemax
aria-valuemin?
optionalaria-valuemin:number
Defines the minimum allowed value for a range widget.
Inherited from
ListRootProps.aria-valuemin
aria-valuenow?
optionalaria-valuenow:number
Defines the current value for a range widget.
See
aria-valuetext.
Inherited from
ListRootProps.aria-valuenow
aria-valuetext?
optionalaria-valuetext:string
Defines the human readable text alternative of aria-valuenow for a range widget.
Inherited from
ListRootProps.aria-valuetext
dangerouslySetInnerHTML?
optionaldangerouslySetInnerHTML:object
__html
__html:
string|TrustedHTML
Inherited from
ListRootProps.dangerouslySetInnerHTML
onCopy?
optionalonCopy:ClipboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCopy
onCopyCapture?
optionalonCopyCapture:ClipboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCopyCapture
onCut?
optionalonCut:ClipboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCut
onCutCapture?
optionalonCutCapture:ClipboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCutCapture
onPaste?
optionalonPaste:ClipboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPaste
onPasteCapture?
optionalonPasteCapture:ClipboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPasteCapture
onCompositionEnd?
optionalonCompositionEnd:CompositionEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCompositionEnd
onCompositionEndCapture?
optionalonCompositionEndCapture:CompositionEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCompositionEndCapture
onCompositionStart?
optionalonCompositionStart:CompositionEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCompositionStart
onCompositionStartCapture?
optionalonCompositionStartCapture:CompositionEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCompositionStartCapture
onCompositionUpdate?
optionalonCompositionUpdate:CompositionEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCompositionUpdate
onCompositionUpdateCapture?
optionalonCompositionUpdateCapture:CompositionEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCompositionUpdateCapture
onFocus?
optionalonFocus:FocusEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onFocus
onFocusCapture?
optionalonFocusCapture:FocusEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onFocusCapture
onBlur?
optionalonBlur:FocusEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onBlur
onBlurCapture?
optionalonBlurCapture:FocusEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onBlurCapture
onChange?
optionalonChange:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onChange
onChangeCapture?
optionalonChangeCapture:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onChangeCapture
onBeforeInput?
optionalonBeforeInput:InputEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onBeforeInput
onBeforeInputCapture?
optionalonBeforeInputCapture:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onBeforeInputCapture
onInput?
optionalonInput:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onInput
onInputCapture?
optionalonInputCapture:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onInputCapture
onReset?
optionalonReset:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onReset
onResetCapture?
optionalonResetCapture:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onResetCapture
onSubmit?
optionalonSubmit:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSubmit
onSubmitCapture?
optionalonSubmitCapture:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSubmitCapture
onInvalid?
optionalonInvalid:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onInvalid
onInvalidCapture?
optionalonInvalidCapture:FormEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onInvalidCapture
onLoad?
optionalonLoad:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLoad
onLoadCapture?
optionalonLoadCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLoadCapture
onError?
optionalonError:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onError
onErrorCapture?
optionalonErrorCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onErrorCapture
onKeyDown?
optionalonKeyDown:KeyboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onKeyDown
onKeyDownCapture?
optionalonKeyDownCapture:KeyboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onKeyDownCapture
onKeyPress?
optionalonKeyPress:KeyboardEventHandler<HTMLDivElement>
Deprecated
Use onKeyUp or onKeyDown instead
Inherited from
ListRootProps.onKeyPress
onKeyPressCapture?
optionalonKeyPressCapture:KeyboardEventHandler<HTMLDivElement>
Deprecated
Use onKeyUpCapture or onKeyDownCapture instead
Inherited from
ListRootProps.onKeyPressCapture
onKeyUp?
optionalonKeyUp:KeyboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onKeyUp
onKeyUpCapture?
optionalonKeyUpCapture:KeyboardEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onKeyUpCapture
onAbort?
optionalonAbort:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAbort
onAbortCapture?
optionalonAbortCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAbortCapture
onCanPlay?
optionalonCanPlay:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCanPlay
onCanPlayCapture?
optionalonCanPlayCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCanPlayCapture
onCanPlayThrough?
optionalonCanPlayThrough:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCanPlayThrough
onCanPlayThroughCapture?
optionalonCanPlayThroughCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onCanPlayThroughCapture
onDurationChange?
optionalonDurationChange:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDurationChange
onDurationChangeCapture?
optionalonDurationChangeCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDurationChangeCapture
onEmptied?
optionalonEmptied:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onEmptied
onEmptiedCapture?
optionalonEmptiedCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onEmptiedCapture
onEncrypted?
optionalonEncrypted:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onEncrypted
onEncryptedCapture?
optionalonEncryptedCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onEncryptedCapture
onEnded?
optionalonEnded:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onEnded
onEndedCapture?
optionalonEndedCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onEndedCapture
onLoadedData?
optionalonLoadedData:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLoadedData
onLoadedDataCapture?
optionalonLoadedDataCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLoadedDataCapture
onLoadedMetadata?
optionalonLoadedMetadata:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLoadedMetadata
onLoadedMetadataCapture?
optionalonLoadedMetadataCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLoadedMetadataCapture
onLoadStart?
optionalonLoadStart:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLoadStart
onLoadStartCapture?
optionalonLoadStartCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLoadStartCapture
onPause?
optionalonPause:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPause
onPauseCapture?
optionalonPauseCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPauseCapture
onPlay?
optionalonPlay:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPlay
onPlayCapture?
optionalonPlayCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPlayCapture
onPlaying?
optionalonPlaying:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPlaying
onPlayingCapture?
optionalonPlayingCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPlayingCapture
onProgress?
optionalonProgress:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onProgress
onProgressCapture?
optionalonProgressCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onProgressCapture
onRateChange?
optionalonRateChange:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onRateChange
onRateChangeCapture?
optionalonRateChangeCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onRateChangeCapture
onSeeked?
optionalonSeeked:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSeeked
onSeekedCapture?
optionalonSeekedCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSeekedCapture
onSeeking?
optionalonSeeking:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSeeking
onSeekingCapture?
optionalonSeekingCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSeekingCapture
onStalled?
optionalonStalled:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onStalled
onStalledCapture?
optionalonStalledCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onStalledCapture
onSuspend?
optionalonSuspend:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSuspend
onSuspendCapture?
optionalonSuspendCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSuspendCapture
onTimeUpdate?
optionalonTimeUpdate:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTimeUpdate
onTimeUpdateCapture?
optionalonTimeUpdateCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTimeUpdateCapture
onVolumeChange?
optionalonVolumeChange:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onVolumeChange
onVolumeChangeCapture?
optionalonVolumeChangeCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onVolumeChangeCapture
onWaiting?
optionalonWaiting:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onWaiting
onWaitingCapture?
optionalonWaitingCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onWaitingCapture
onAuxClick?
optionalonAuxClick:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAuxClick
onAuxClickCapture?
optionalonAuxClickCapture:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAuxClickCapture
onClick?
optionalonClick:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onClick
onClickCapture?
optionalonClickCapture:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onClickCapture
onContextMenu?
optionalonContextMenu:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onContextMenu
onContextMenuCapture?
optionalonContextMenuCapture:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onContextMenuCapture
onDoubleClick?
optionalonDoubleClick:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDoubleClick
onDoubleClickCapture?
optionalonDoubleClickCapture:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDoubleClickCapture
onDrag?
optionalonDrag:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDrag
onDragCapture?
optionalonDragCapture:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragCapture
onDragEnd?
optionalonDragEnd:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragEnd
onDragEndCapture?
optionalonDragEndCapture:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragEndCapture
onDragEnter?
optionalonDragEnter:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragEnter
onDragEnterCapture?
optionalonDragEnterCapture:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragEnterCapture
onDragExit?
optionalonDragExit:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragExit
onDragExitCapture?
optionalonDragExitCapture:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragExitCapture
onDragLeave?
optionalonDragLeave:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragLeave
onDragLeaveCapture?
optionalonDragLeaveCapture:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragLeaveCapture
onDragOver?
optionalonDragOver:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragOver
onDragOverCapture?
optionalonDragOverCapture:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragOverCapture
onDragStart?
optionalonDragStart:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragStart
onDragStartCapture?
optionalonDragStartCapture:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDragStartCapture
onDrop?
optionalonDrop:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDrop
onDropCapture?
optionalonDropCapture:DragEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onDropCapture
onMouseDown?
optionalonMouseDown:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseDown
onMouseDownCapture?
optionalonMouseDownCapture:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseDownCapture
onMouseEnter?
optionalonMouseEnter:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseEnter
onMouseLeave?
optionalonMouseLeave:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseLeave
onMouseMove?
optionalonMouseMove:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseMove
onMouseMoveCapture?
optionalonMouseMoveCapture:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseMoveCapture
onMouseOut?
optionalonMouseOut:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseOut
onMouseOutCapture?
optionalonMouseOutCapture:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseOutCapture
onMouseOver?
optionalonMouseOver:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseOver
onMouseOverCapture?
optionalonMouseOverCapture:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseOverCapture
onMouseUp?
optionalonMouseUp:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseUp
onMouseUpCapture?
optionalonMouseUpCapture:MouseEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onMouseUpCapture
onSelect?
optionalonSelect:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSelect
onSelectCapture?
optionalonSelectCapture:ReactEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onSelectCapture
onTouchCancel?
optionalonTouchCancel:TouchEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTouchCancel
onTouchCancelCapture?
optionalonTouchCancelCapture:TouchEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTouchCancelCapture
onTouchEnd?
optionalonTouchEnd:TouchEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTouchEnd
onTouchEndCapture?
optionalonTouchEndCapture:TouchEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTouchEndCapture
onTouchMove?
optionalonTouchMove:TouchEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTouchMove
onTouchMoveCapture?
optionalonTouchMoveCapture:TouchEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTouchMoveCapture
onTouchStart?
optionalonTouchStart:TouchEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTouchStart
onTouchStartCapture?
optionalonTouchStartCapture:TouchEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTouchStartCapture
onPointerDown?
optionalonPointerDown:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerDown
onPointerDownCapture?
optionalonPointerDownCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerDownCapture
onPointerMove?
optionalonPointerMove:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerMove
onPointerMoveCapture?
optionalonPointerMoveCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerMoveCapture
onPointerUp?
optionalonPointerUp:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerUp
onPointerUpCapture?
optionalonPointerUpCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerUpCapture
onPointerCancel?
optionalonPointerCancel:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerCancel
onPointerCancelCapture?
optionalonPointerCancelCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerCancelCapture
onPointerEnter?
optionalonPointerEnter:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerEnter
onPointerLeave?
optionalonPointerLeave:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerLeave
onPointerOver?
optionalonPointerOver:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerOver
onPointerOverCapture?
optionalonPointerOverCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerOverCapture
onPointerOut?
optionalonPointerOut:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerOut
onPointerOutCapture?
optionalonPointerOutCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onPointerOutCapture
onGotPointerCapture?
optionalonGotPointerCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onGotPointerCapture
onGotPointerCaptureCapture?
optionalonGotPointerCaptureCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onGotPointerCaptureCapture
onLostPointerCapture?
optionalonLostPointerCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLostPointerCapture
onLostPointerCaptureCapture?
optionalonLostPointerCaptureCapture:PointerEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onLostPointerCaptureCapture
onScroll?
optionalonScroll:UIEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onScroll
onScrollCapture?
optionalonScrollCapture:UIEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onScrollCapture
onWheel?
optionalonWheel:WheelEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onWheel
onWheelCapture?
optionalonWheelCapture:WheelEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onWheelCapture
onAnimationStart?
optionalonAnimationStart:AnimationEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAnimationStart
onAnimationStartCapture?
optionalonAnimationStartCapture:AnimationEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAnimationStartCapture
onAnimationEnd?
optionalonAnimationEnd:AnimationEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAnimationEnd
onAnimationEndCapture?
optionalonAnimationEndCapture:AnimationEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAnimationEndCapture
onAnimationIteration?
optionalonAnimationIteration:AnimationEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAnimationIteration
onAnimationIterationCapture?
optionalonAnimationIterationCapture:AnimationEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onAnimationIterationCapture
onTransitionEnd?
optionalonTransitionEnd:TransitionEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTransitionEnd
onTransitionEndCapture?
optionalonTransitionEndCapture:TransitionEventHandler<HTMLDivElement>
Inherited from
ListRootProps.onTransitionEndCapture
accept?
optionalaccept:string
Inherited from
ListRootProps.accept
acceptCharset?
optionalacceptCharset:string
Inherited from
ListRootProps.acceptCharset
action?
optionalaction:string
Inherited from
ListRootProps.action
allowFullScreen?
optionalallowFullScreen:boolean
Inherited from
ListRootProps.allowFullScreen
allowTransparency?
optionalallowTransparency:boolean
Inherited from
ListRootProps.allowTransparency
alt?
optionalalt:string
Inherited from
ListRootProps.alt
as?
optionalas:string
Inherited from
ListRootProps.as
async?
optionalasync:boolean
Inherited from
ListRootProps.async
autoComplete?
optionalautoComplete:string
Inherited from
ListRootProps.autoComplete
autoPlay?
optionalautoPlay:boolean
Inherited from
ListRootProps.autoPlay
capture?
optionalcapture:boolean|"user"|"environment"
Inherited from
ListRootProps.capture
cellPadding?
optionalcellPadding:string|number
Inherited from
ListRootProps.cellPadding
cellSpacing?
optionalcellSpacing:string|number
Inherited from
ListRootProps.cellSpacing
charSet?
optionalcharSet:string
Inherited from
ListRootProps.charSet
challenge?
optionalchallenge:string
Inherited from
ListRootProps.challenge
checked?
optionalchecked:boolean
Inherited from
ListRootProps.checked
classID?
optionalclassID:string
Inherited from
ListRootProps.classID
cols?
optionalcols:number
Inherited from
ListRootProps.cols
colSpan?
optionalcolSpan:number
Inherited from
ListRootProps.colSpan
controls?
optionalcontrols:boolean
Inherited from
ListRootProps.controls
coords?
optionalcoords:string
Inherited from
ListRootProps.coords
crossOrigin?
optionalcrossOrigin:CrossOrigin
Inherited from
ListRootProps.crossOrigin
dateTime?
optionaldateTime:string
Inherited from
ListRootProps.dateTime
default?
optionaldefault:boolean
Inherited from
ListRootProps.default
defer?
optionaldefer:boolean
Inherited from
ListRootProps.defer
disabled?
optionaldisabled:boolean
Inherited from
ListRootProps.disabled
download?
optionaldownload:any
Inherited from
ListRootProps.download
encType?
optionalencType:string
Inherited from
ListRootProps.encType
formAction?
optionalformAction:string
Inherited from
ListRootProps.formAction
formEncType?
optionalformEncType:string
Inherited from
ListRootProps.formEncType
formMethod?
optionalformMethod:string
Inherited from
ListRootProps.formMethod
formNoValidate?
optionalformNoValidate:boolean
Inherited from
ListRootProps.formNoValidate
formTarget?
optionalformTarget:string
Inherited from
ListRootProps.formTarget
frameBorder?
optionalframeBorder:string|number
Inherited from
ListRootProps.frameBorder
headers?
optionalheaders:string
Inherited from
ListRootProps.headers
height?
optionalheight:string|number
Inherited from
ListRootProps.height
high?
optionalhigh:number
Inherited from
ListRootProps.high
href?
optionalhref:string
Inherited from
ListRootProps.href
hrefLang?
optionalhrefLang:string
Inherited from
ListRootProps.hrefLang
htmlFor?
optionalhtmlFor:string
Inherited from
ListRootProps.htmlFor
httpEquiv?
optionalhttpEquiv:string
Inherited from
ListRootProps.httpEquiv
integrity?
optionalintegrity:string
Inherited from
ListRootProps.integrity
keyParams?
optionalkeyParams:string
Inherited from
ListRootProps.keyParams
keyType?
optionalkeyType:string
Inherited from
ListRootProps.keyType
kind?
optionalkind:string
Inherited from
ListRootProps.kind
list?
optionallist:string
Inherited from
ListRootProps.list
loop?
optionalloop:boolean
Inherited from
ListRootProps.loop
low?
optionallow:number
Inherited from
ListRootProps.low
manifest?
optionalmanifest:string
Inherited from
ListRootProps.manifest
marginHeight?
optionalmarginHeight:number
Inherited from
ListRootProps.marginHeight
marginWidth?
optionalmarginWidth:number
Inherited from
ListRootProps.marginWidth
max?
optionalmax:string|number
Inherited from
ListRootProps.max
maxLength?
optionalmaxLength:number
Inherited from
ListRootProps.maxLength
media?
optionalmedia:string
Inherited from
ListRootProps.media
mediaGroup?
optionalmediaGroup:string
Inherited from
ListRootProps.mediaGroup
method?
optionalmethod:string
Inherited from
ListRootProps.method
min?
optionalmin:string|number
Inherited from
ListRootProps.min
minLength?
optionalminLength:number
Inherited from
ListRootProps.minLength
multiple?
optionalmultiple:boolean
Inherited from
ListRootProps.multiple
muted?
optionalmuted:boolean
Inherited from
ListRootProps.muted
name?
optionalname:string
Inherited from
ListRootProps.name
noValidate?
optionalnoValidate:boolean
Inherited from
ListRootProps.noValidate
open?
optionalopen:boolean
Inherited from
ListRootProps.open
optimum?
optionaloptimum:number
Inherited from
ListRootProps.optimum
placeholder?
optionalplaceholder:string
Inherited from
ListRootProps.placeholder
playsInline?
optionalplaysInline:boolean
Inherited from
ListRootProps.playsInline
poster?
optionalposter:string
Inherited from
ListRootProps.poster
preload?
optionalpreload:string
Inherited from
ListRootProps.preload
readOnly?
optionalreadOnly:boolean
Inherited from
ListRootProps.readOnly
required?
optionalrequired:boolean
Inherited from
ListRootProps.required
reversed?
optionalreversed:boolean
Inherited from
ListRootProps.reversed
rows?
optionalrows:number
Inherited from
ListRootProps.rows
rowSpan?
optionalrowSpan:number
Inherited from
ListRootProps.rowSpan
sandbox?
optionalsandbox:string
Inherited from
ListRootProps.sandbox
scope?
optionalscope:string
Inherited from
ListRootProps.scope
scoped?
optionalscoped:boolean
Inherited from
ListRootProps.scoped
scrolling?
optionalscrolling:string
Inherited from
ListRootProps.scrolling
seamless?
optionalseamless:boolean
Inherited from
ListRootProps.seamless
selected?
optionalselected:boolean
Inherited from
ListRootProps.selected
shape?
optionalshape:string
Inherited from
ListRootProps.shape
size?
optionalsize:number
Inherited from
ListRootProps.size
sizes?
optionalsizes:string
Inherited from
ListRootProps.sizes
src?
optionalsrc:string
Inherited from
ListRootProps.src
srcDoc?
optionalsrcDoc:string
Inherited from
ListRootProps.srcDoc
srcLang?
optionalsrcLang:string
Inherited from
ListRootProps.srcLang
srcSet?
optionalsrcSet:string
Inherited from
ListRootProps.srcSet
step?
optionalstep:string|number
Inherited from
ListRootProps.step
target?
optionaltarget:string
Inherited from
ListRootProps.target
type?
optionaltype:string
Inherited from
ListRootProps.type
useMap?
optionaluseMap:string
Inherited from
ListRootProps.useMap
value?
optionalvalue:string|number| readonlystring[]
Inherited from
ListRootProps.value
width?
optionalwidth:string|number
Inherited from
ListRootProps.width
wmode?
optionalwmode:string
Inherited from
ListRootProps.wmode
wrap?
optionalwrap:string
Inherited from
ListRootProps.wrap