Skip to main content

Interface: VirtuosoProps<D, C>

Extends

Type Parameters

D

C

Properties

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.


atBottomStateChange()?

optional atBottomStateChange: (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?

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.


atTopStateChange()?

optional atTopStateChange: (atTop) => void

Called with true / false when the list has reached the top / gets scrolled down.

Parameters

atTop

boolean

Returns

void


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.


components?

optional components: Components<D, C>

Use the components property for advanced customization of the elements rendered by the list.


computeItemKey?

optional computeItemKey: ComputeItemKey<D, C>

If specified, the component will use the function to generate the key property for each list item.


context?

optional context: C

Additional context available in the custom components and content callbacks


customScrollParent?

optional customScrollParent: HTMLElement

Pass a reference to a scrollable parent element, so that the list won't wrap in its own.


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.


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.


endReached()?

optional endReached: (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?

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.


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.


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).


horizontalDirection?

optional horizontalDirection: boolean

When set, turns the scroller into a horizontal list. The items are positioned with inline-block.


increaseViewportBy?

optional increaseViewportBy: 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?

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.


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.


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.


isScrolling()?

optional isScrolling: (isScrolling) => void

Called when the list starts/stops scrolling.

Parameters

isScrolling

boolean

Returns

void


itemContent?

optional itemContent: ItemContent<D, C>

Set the callback to specify the contents of the item.


itemSize?

optional itemSize: SizeFunction

Allows customizing the height/width calculation of Item elements.

The default implementation reads el.getBoundingClientRect().height and el.getBoundingClientRect().width.


itemsRendered()?

optional itemsRendered: (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?

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.


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).


rangeChanged()?

optional rangeChanged: (range) => void

Called with the new set of items each time the list items are rendered due to scrolling.

Parameters

range

ListRange

Returns

void


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.


scrollerRef()?

optional scrollerRef: (ref) => any

Provides access to the root DOM element

Parameters

ref

null | HTMLElement | Window

Returns

any


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.


skipAnimationFrameInResizeObserver?

optional skipAnimationFrameInResizeObserver: 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()?

optional startReached: (index) => void

Called when the user scrolls to the start of the list.

Parameters

index

number

Returns

void


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.


totalCount?

optional totalCount: number

The total amount of items to be rendered.


totalListHeightChanged()?

optional totalListHeightChanged: (height) => void

Called when the total list height is changed due to new items or viewport resize.

Parameters

height

number

Returns

void


useWindowScroll?

optional useWindowScroll: boolean

Uses the document scroller rather than wrapping the list in its own.


start?

optional start: number

Inherited from

ListRootProps.start


cite?

optional cite: string

Inherited from

ListRootProps.cite


form?

optional form: string

Inherited from

ListRootProps.form


label?

optional label: string

Inherited from

ListRootProps.label


slot?

optional slot: string

Inherited from

ListRootProps.slot


span?

optional span: number

Inherited from

ListRootProps.span


style?

optional style: CSSProperties

Inherited from

ListRootProps.style


summary?

optional summary: string

Inherited from

ListRootProps.summary


title?

optional title: string

Inherited from

ListRootProps.title


pattern?

optional pattern: string

Inherited from

ListRootProps.pattern


children?

optional children: ReactNode

Inherited from

ListRootProps.children


tabIndex?

optional tabIndex: number

Inherited from

ListRootProps.tabIndex


className?

optional className: string

Inherited from

ListRootProps.className


key?

optional key: null | Key

Inherited from

ListRootProps.key


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


autoCapitalize?

optional autoCapitalize: "none" | string & object | "off" | "on" | "sentences" | "words" | "characters"

Inherited from

ListRootProps.autoCapitalize


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


enterKeyHint?

optional enterKeyHint: "search" | "next" | "done" | "enter" | "go" | "previous" | "send"

Inherited from

ListRootProps.enterKeyHint


hidden?

optional hidden: boolean

Inherited from

ListRootProps.hidden


id?

optional id: string

Inherited from

ListRootProps.id


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


autoCorrect?

optional autoCorrect: string

Inherited from

ListRootProps.autoCorrect


autoSave?

optional autoSave: string

Inherited from

ListRootProps.autoSave


color?

optional color: string

Inherited from

ListRootProps.color


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: "off" | "on"

Inherited from

ListRootProps.unselectable


inputMode?

optional inputMode: "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?

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: "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?

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 | "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?

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" | "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?

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" | "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?

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" | "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?

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 | "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?

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 | "mixed" | "false" | "true"

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" | "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?

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

__html

__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

Use onKeyUp or onKeyDown instead

Inherited from

ListRootProps.onKeyPress


onKeyPressCapture?

optional onKeyPressCapture: KeyboardEventHandler<HTMLDivElement>

Deprecated

Use onKeyUpCapture or onKeyDownCapture instead

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


onClick?

optional onClick: MouseEventHandler<HTMLDivElement>

Inherited from

ListRootProps.onClick


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


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


alt?

optional alt: string

Inherited from

ListRootProps.alt


as?

optional as: string

Inherited from

ListRootProps.as


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 | "user" | "environment"

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


height?

optional height: string | number

Inherited from

ListRootProps.height


high?

optional high: number

Inherited from

ListRootProps.high


href?

optional href: string

Inherited from

ListRootProps.href


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


kind?

optional kind: string

Inherited from

ListRootProps.kind


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


name?

optional name: string

Inherited from

ListRootProps.name


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


sandbox?

optional sandbox: string

Inherited from

ListRootProps.sandbox


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


src?

optional src: string

Inherited from

ListRootProps.src


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


target?

optional target: string

Inherited from

ListRootProps.target


type?

optional type: string

Inherited from

ListRootProps.type


useMap?

optional useMap: string

Inherited from

ListRootProps.useMap


value?

optional value: string | number | readonly string[]

Inherited from

ListRootProps.value


width?

optional width: string | number

Inherited from

ListRootProps.width


wmode?

optional wmode: string

Inherited from

ListRootProps.wmode


wrap?

optional wrap: string

Inherited from

ListRootProps.wrap