Interface: VirtuosoGridProps<D, C>
Extends
Type Parameters
• D
• C = unknown
Properties
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
atTopStateChange()?
optional
atTopStateChange: (atTop
) =>void
Called with true
/ false
when the list has reached the top / gets scrolled down.
Parameters
atTop
boolean
Returns
void
components?
optional
components:GridComponents
<C
>
Use the components
property for advanced customization of the elements rendered by the list.
computeItemKey?
optional
computeItemKey:GridComputeItemKey
<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 grid won't wrap in its own.
data?
optional
data: readonlyD
[]
The data items to be rendered. If data is set, the total count will be inferred from the length of the array.
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
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.
initialTopMostItemIndex?
optional
initialTopMostItemIndex:GridIndexLocation
isScrolling()?
optional
isScrolling: (isScrolling
) =>void
Called when the list starts/stops scrolling.
Parameters
isScrolling
boolean
Returns
void
itemClassName?
optional
itemClassName:string
Sets the grid items' className
itemContent?
optional
itemContent:GridItemContent
<D
,C
>
Set the callback to specify the contents of the item.
listClassName?
optional
listClassName:string
Sets the className for the list DOM element
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
; }
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 grid 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
Returns
void
readyStateChanged()?
optional
readyStateChanged: (ready
) =>void
invoked with true after the grid has done the initial render and the items have been measured.
Parameters
ready
boolean
Returns
void
restoreStateFrom?
optional
restoreStateFrom:null
|GridStateSnapshot
scrollerRef()?
optional
scrollerRef: (ref
) =>any
Provides access to the root DOM element
Parameters
ref
null
| HTMLElement
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.
startReached()?
optional
startReached: (index
) =>void
Called when the user scrolls to the start of the list.
Parameters
index
number
Returns
void
stateChanged()?
optional
stateChanged: (state
) =>void
reports when the grid state changes. The reported value can be stored and passed back to restoreStateFrom
to restore the grid to the same state.
Parameters
state
Returns
void
totalCount?
optional
totalCount:number
The total amount of items to be rendered.
useWindowScroll?
optional
useWindowScroll:boolean
Uses the document scroller rather than wrapping the grid in its own.
start?
optional
start:number
Inherited from
GridRootProps.start
cite?
optional
cite:string
Inherited from
GridRootProps.cite
form?
optional
form:string
Inherited from
GridRootProps.form
label?
optional
label:string
Inherited from
GridRootProps.label
slot?
optional
slot:string
Inherited from
GridRootProps.slot
span?
optional
span:number
Inherited from
GridRootProps.span
style?
optional
style:CSSProperties
Inherited from
GridRootProps.style
summary?
optional
summary:string
Inherited from
GridRootProps.summary
title?
optional
title:string
Inherited from
GridRootProps.title
pattern?
optional
pattern:string
Inherited from
GridRootProps.pattern
children?
optional
children:ReactNode
Inherited from
GridRootProps.children
tabIndex?
optional
tabIndex:number
Inherited from
GridRootProps.tabIndex
className?
optional
className:string
Inherited from
GridRootProps.className
key?
optional
key:null
|Key
Inherited from
GridRootProps.key
defaultChecked?
optional
defaultChecked:boolean
Inherited from
GridRootProps.defaultChecked
defaultValue?
optional
defaultValue:string
|number
| readonlystring
[]
Inherited from
GridRootProps.defaultValue
suppressContentEditableWarning?
optional
suppressContentEditableWarning:boolean
Inherited from
GridRootProps.suppressContentEditableWarning
suppressHydrationWarning?
optional
suppressHydrationWarning:boolean
Inherited from
GridRootProps.suppressHydrationWarning
accessKey?
optional
accessKey:string
Inherited from
GridRootProps.accessKey
autoCapitalize?
optional
autoCapitalize:"none"
|string
&object
|"off"
|"on"
|"sentences"
|"words"
|"characters"
Inherited from
GridRootProps.autoCapitalize
autoFocus?
optional
autoFocus:boolean
Inherited from
GridRootProps.autoFocus
contentEditable?
optional
contentEditable:"inherit"
|Booleanish
|"plaintext-only"
Inherited from
GridRootProps.contentEditable
contextMenu?
optional
contextMenu:string
Inherited from
GridRootProps.contextMenu
dir?
optional
dir:string
Inherited from
GridRootProps.dir
draggable?
optional
draggable:Booleanish
Inherited from
GridRootProps.draggable
enterKeyHint?
optional
enterKeyHint:"search"
|"next"
|"done"
|"enter"
|"go"
|"previous"
|"send"
Inherited from
GridRootProps.enterKeyHint
hidden?
optional
hidden:boolean
Inherited from
GridRootProps.hidden
id?
optional
id:string
Inherited from
GridRootProps.id
lang?
optional
lang:string
Inherited from
GridRootProps.lang
nonce?
optional
nonce:string
Inherited from
GridRootProps.nonce
spellCheck?
optional
spellCheck:Booleanish
Inherited from
GridRootProps.spellCheck
translate?
optional
translate:"yes"
|"no"
Inherited from
GridRootProps.translate
radioGroup?
optional
radioGroup:string
Inherited from
GridRootProps.radioGroup
role?
optional
role:AriaRole
Inherited from
GridRootProps.role
about?
optional
about:string
Inherited from
GridRootProps.about
content?
optional
content:string
Inherited from
GridRootProps.content
datatype?
optional
datatype:string
Inherited from
GridRootProps.datatype
inlist?
optional
inlist:any
Inherited from
GridRootProps.inlist
prefix?
optional
prefix:string
Inherited from
GridRootProps.prefix
property?
optional
property:string
Inherited from
GridRootProps.property
rel?
optional
rel:string
Inherited from
GridRootProps.rel
resource?
optional
resource:string
Inherited from
GridRootProps.resource
rev?
optional
rev:string
Inherited from
GridRootProps.rev
typeof?
optional
typeof:string
Inherited from
GridRootProps.typeof
vocab?
optional
vocab:string
Inherited from
GridRootProps.vocab
autoCorrect?
optional
autoCorrect:string
Inherited from
GridRootProps.autoCorrect
autoSave?
optional
autoSave:string
Inherited from
GridRootProps.autoSave
color?
optional
color:string
Inherited from
GridRootProps.color
itemProp?
optional
itemProp:string
Inherited from
GridRootProps.itemProp
itemScope?
optional
itemScope:boolean
Inherited from
GridRootProps.itemScope
itemType?
optional
itemType:string
Inherited from
GridRootProps.itemType
itemID?
optional
itemID:string
Inherited from
GridRootProps.itemID
itemRef?
optional
itemRef:string
Inherited from
GridRootProps.itemRef
results?
optional
results:number
Inherited from
GridRootProps.results
security?
optional
security:string
Inherited from
GridRootProps.security
unselectable?
optional
unselectable:"off"
|"on"
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.aria-brailleroledescription
aria-busy?
optional
aria-busy:Booleanish
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.aria-colindex
aria-colindextext?
optional
aria-colindextext:string
Defines a human readable text alternative of aria-colindex.
See
aria-rowindextext.
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.aria-current
aria-describedby?
optional
aria-describedby:string
Identifies the element (or elements) that describes the object.
See
aria-labelledby
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.aria-haspopup
aria-hidden?
optional
aria-hidden:Booleanish
Indicates whether the element is exposed to an accessibility API.
See
aria-disabled.
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.aria-keyshortcuts
aria-label?
optional
aria-label:string
Defines a string value that labels the current element.
See
aria-labelledby.
Inherited from
GridRootProps.aria-label
aria-labelledby?
optional
aria-labelledby:string
Identifies the element (or elements) that labels the current element.
See
aria-describedby.
Inherited from
GridRootProps.aria-labelledby
aria-level?
optional
aria-level:number
Defines the hierarchical level of an element within a structure.
Inherited from
GridRootProps.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
GridRootProps.aria-live
aria-modal?
optional
aria-modal:Booleanish
Indicates whether an element is modal when displayed.
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.aria-multiselectable
aria-orientation?
optional
aria-orientation:"horizontal"
|"vertical"
Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.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
GridRootProps.aria-pressed
aria-readonly?
optional
aria-readonly:Booleanish
Indicates that the element is not editable, but is otherwise operable.
See
aria-disabled.
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.aria-required
aria-roledescription?
optional
aria-roledescription:string
Defines a human-readable, author-localized description for the role of an element.
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.aria-rowindex
aria-rowindextext?
optional
aria-rowindextext:string
Defines a human readable text alternative of aria-rowindex.
See
aria-colindextext.
Inherited from
GridRootProps.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
GridRootProps.aria-rowspan
aria-selected?
optional
aria-selected:Booleanish
Indicates the current "selected" state of various widgets.
See
- aria-checked
- aria-pressed.
Inherited from
GridRootProps.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
GridRootProps.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
GridRootProps.aria-sort
aria-valuemax?
optional
aria-valuemax:number
Defines the maximum allowed value for a range widget.
Inherited from
GridRootProps.aria-valuemax
aria-valuemin?
optional
aria-valuemin:number
Defines the minimum allowed value for a range widget.
Inherited from
GridRootProps.aria-valuemin
aria-valuenow?
optional
aria-valuenow:number
Defines the current value for a range widget.
See
aria-valuetext.
Inherited from
GridRootProps.aria-valuenow
aria-valuetext?
optional
aria-valuetext:string
Defines the human readable text alternative of aria-valuenow for a range widget.
Inherited from
GridRootProps.aria-valuetext
dangerouslySetInnerHTML?
optional
dangerouslySetInnerHTML:object
__html
__html:
string
|TrustedHTML
Inherited from
GridRootProps.dangerouslySetInnerHTML
onCopy?
optional
onCopy:ClipboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCopy
onCopyCapture?
optional
onCopyCapture:ClipboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCopyCapture
onCut?
optional
onCut:ClipboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCut
onCutCapture?
optional
onCutCapture:ClipboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCutCapture
onPaste?
optional
onPaste:ClipboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPaste
onPasteCapture?
optional
onPasteCapture:ClipboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPasteCapture
onCompositionEnd?
optional
onCompositionEnd:CompositionEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCompositionEnd
onCompositionEndCapture?
optional
onCompositionEndCapture:CompositionEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCompositionEndCapture
onCompositionStart?
optional
onCompositionStart:CompositionEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCompositionStart
onCompositionStartCapture?
optional
onCompositionStartCapture:CompositionEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCompositionStartCapture
onCompositionUpdate?
optional
onCompositionUpdate:CompositionEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCompositionUpdate
onCompositionUpdateCapture?
optional
onCompositionUpdateCapture:CompositionEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCompositionUpdateCapture
onFocus?
optional
onFocus:FocusEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onFocus
onFocusCapture?
optional
onFocusCapture:FocusEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onFocusCapture
onBlur?
optional
onBlur:FocusEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onBlur
onBlurCapture?
optional
onBlurCapture:FocusEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onBlurCapture
onChange?
optional
onChange:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onChange
onChangeCapture?
optional
onChangeCapture:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onChangeCapture
onBeforeInput?
optional
onBeforeInput:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onBeforeInput
onBeforeInputCapture?
optional
onBeforeInputCapture:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onBeforeInputCapture
onInput?
optional
onInput:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onInput
onInputCapture?
optional
onInputCapture:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onInputCapture
onReset?
optional
onReset:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onReset
onResetCapture?
optional
onResetCapture:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onResetCapture
onSubmit?
optional
onSubmit:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSubmit
onSubmitCapture?
optional
onSubmitCapture:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSubmitCapture
onInvalid?
optional
onInvalid:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onInvalid
onInvalidCapture?
optional
onInvalidCapture:FormEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onInvalidCapture
onLoad?
optional
onLoad:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLoad
onLoadCapture?
optional
onLoadCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLoadCapture
onError?
optional
onError:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onError
onErrorCapture?
optional
onErrorCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onErrorCapture
onKeyDown?
optional
onKeyDown:KeyboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onKeyDown
onKeyDownCapture?
optional
onKeyDownCapture:KeyboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onKeyDownCapture
onKeyPress?
optional
onKeyPress:KeyboardEventHandler
<HTMLDivElement
>
Deprecated
Use onKeyUp
or onKeyDown
instead
Inherited from
GridRootProps.onKeyPress
onKeyPressCapture?
optional
onKeyPressCapture:KeyboardEventHandler
<HTMLDivElement
>
Deprecated
Use onKeyUpCapture
or onKeyDownCapture
instead
Inherited from
GridRootProps.onKeyPressCapture
onKeyUp?
optional
onKeyUp:KeyboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onKeyUp
onKeyUpCapture?
optional
onKeyUpCapture:KeyboardEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onKeyUpCapture
onAbort?
optional
onAbort:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAbort
onAbortCapture?
optional
onAbortCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAbortCapture
onCanPlay?
optional
onCanPlay:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCanPlay
onCanPlayCapture?
optional
onCanPlayCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCanPlayCapture
onCanPlayThrough?
optional
onCanPlayThrough:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCanPlayThrough
onCanPlayThroughCapture?
optional
onCanPlayThroughCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onCanPlayThroughCapture
onDurationChange?
optional
onDurationChange:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDurationChange
onDurationChangeCapture?
optional
onDurationChangeCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDurationChangeCapture
onEmptied?
optional
onEmptied:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onEmptied
onEmptiedCapture?
optional
onEmptiedCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onEmptiedCapture
onEncrypted?
optional
onEncrypted:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onEncrypted
onEncryptedCapture?
optional
onEncryptedCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onEncryptedCapture
onEnded?
optional
onEnded:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onEnded
onEndedCapture?
optional
onEndedCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onEndedCapture
onLoadedData?
optional
onLoadedData:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLoadedData
onLoadedDataCapture?
optional
onLoadedDataCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLoadedDataCapture
onLoadedMetadata?
optional
onLoadedMetadata:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLoadedMetadata
onLoadedMetadataCapture?
optional
onLoadedMetadataCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLoadedMetadataCapture
onLoadStart?
optional
onLoadStart:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLoadStart
onLoadStartCapture?
optional
onLoadStartCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLoadStartCapture
onPause?
optional
onPause:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPause
onPauseCapture?
optional
onPauseCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPauseCapture
onPlay?
optional
onPlay:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPlay
onPlayCapture?
optional
onPlayCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPlayCapture
onPlaying?
optional
onPlaying:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPlaying
onPlayingCapture?
optional
onPlayingCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPlayingCapture
onProgress?
optional
onProgress:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onProgress
onProgressCapture?
optional
onProgressCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onProgressCapture
onRateChange?
optional
onRateChange:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onRateChange
onRateChangeCapture?
optional
onRateChangeCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onRateChangeCapture
onResize?
optional
onResize:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onResize
onResizeCapture?
optional
onResizeCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onResizeCapture
onSeeked?
optional
onSeeked:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSeeked
onSeekedCapture?
optional
onSeekedCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSeekedCapture
onSeeking?
optional
onSeeking:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSeeking
onSeekingCapture?
optional
onSeekingCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSeekingCapture
onStalled?
optional
onStalled:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onStalled
onStalledCapture?
optional
onStalledCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onStalledCapture
onSuspend?
optional
onSuspend:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSuspend
onSuspendCapture?
optional
onSuspendCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSuspendCapture
onTimeUpdate?
optional
onTimeUpdate:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTimeUpdate
onTimeUpdateCapture?
optional
onTimeUpdateCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTimeUpdateCapture
onVolumeChange?
optional
onVolumeChange:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onVolumeChange
onVolumeChangeCapture?
optional
onVolumeChangeCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onVolumeChangeCapture
onWaiting?
optional
onWaiting:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onWaiting
onWaitingCapture?
optional
onWaitingCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onWaitingCapture
onAuxClick?
optional
onAuxClick:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAuxClick
onAuxClickCapture?
optional
onAuxClickCapture:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAuxClickCapture
onClick?
optional
onClick:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onClick
onClickCapture?
optional
onClickCapture:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onClickCapture
onContextMenu?
optional
onContextMenu:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onContextMenu
onContextMenuCapture?
optional
onContextMenuCapture:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onContextMenuCapture
onDoubleClick?
optional
onDoubleClick:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDoubleClick
onDoubleClickCapture?
optional
onDoubleClickCapture:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDoubleClickCapture
onDrag?
optional
onDrag:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDrag
onDragCapture?
optional
onDragCapture:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragCapture
onDragEnd?
optional
onDragEnd:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragEnd
onDragEndCapture?
optional
onDragEndCapture:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragEndCapture
onDragEnter?
optional
onDragEnter:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragEnter
onDragEnterCapture?
optional
onDragEnterCapture:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragEnterCapture
onDragExit?
optional
onDragExit:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragExit
onDragExitCapture?
optional
onDragExitCapture:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragExitCapture
onDragLeave?
optional
onDragLeave:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragLeave
onDragLeaveCapture?
optional
onDragLeaveCapture:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragLeaveCapture
onDragOver?
optional
onDragOver:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragOver
onDragOverCapture?
optional
onDragOverCapture:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragOverCapture
onDragStart?
optional
onDragStart:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragStart
onDragStartCapture?
optional
onDragStartCapture:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDragStartCapture
onDrop?
optional
onDrop:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDrop
onDropCapture?
optional
onDropCapture:DragEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onDropCapture
onMouseDown?
optional
onMouseDown:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseDown
onMouseDownCapture?
optional
onMouseDownCapture:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseDownCapture
onMouseEnter?
optional
onMouseEnter:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseEnter
onMouseLeave?
optional
onMouseLeave:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseLeave
onMouseMove?
optional
onMouseMove:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseMove
onMouseMoveCapture?
optional
onMouseMoveCapture:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseMoveCapture
onMouseOut?
optional
onMouseOut:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseOut
onMouseOutCapture?
optional
onMouseOutCapture:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseOutCapture
onMouseOver?
optional
onMouseOver:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseOver
onMouseOverCapture?
optional
onMouseOverCapture:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseOverCapture
onMouseUp?
optional
onMouseUp:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseUp
onMouseUpCapture?
optional
onMouseUpCapture:MouseEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onMouseUpCapture
onSelect?
optional
onSelect:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSelect
onSelectCapture?
optional
onSelectCapture:ReactEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onSelectCapture
onTouchCancel?
optional
onTouchCancel:TouchEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTouchCancel
onTouchCancelCapture?
optional
onTouchCancelCapture:TouchEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTouchCancelCapture
onTouchEnd?
optional
onTouchEnd:TouchEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTouchEnd
onTouchEndCapture?
optional
onTouchEndCapture:TouchEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTouchEndCapture
onTouchMove?
optional
onTouchMove:TouchEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTouchMove
onTouchMoveCapture?
optional
onTouchMoveCapture:TouchEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTouchMoveCapture
onTouchStart?
optional
onTouchStart:TouchEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTouchStart
onTouchStartCapture?
optional
onTouchStartCapture:TouchEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTouchStartCapture
onPointerDown?
optional
onPointerDown:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerDown
onPointerDownCapture?
optional
onPointerDownCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerDownCapture
onPointerMove?
optional
onPointerMove:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerMove
onPointerMoveCapture?
optional
onPointerMoveCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerMoveCapture
onPointerUp?
optional
onPointerUp:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerUp
onPointerUpCapture?
optional
onPointerUpCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerUpCapture
onPointerCancel?
optional
onPointerCancel:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerCancel
onPointerCancelCapture?
optional
onPointerCancelCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerCancelCapture
onPointerEnter?
optional
onPointerEnter:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerEnter
onPointerLeave?
optional
onPointerLeave:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerLeave
onPointerOver?
optional
onPointerOver:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerOver
onPointerOverCapture?
optional
onPointerOverCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerOverCapture
onPointerOut?
optional
onPointerOut:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerOut
onPointerOutCapture?
optional
onPointerOutCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onPointerOutCapture
onGotPointerCapture?
optional
onGotPointerCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onGotPointerCapture
onGotPointerCaptureCapture?
optional
onGotPointerCaptureCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onGotPointerCaptureCapture
onLostPointerCapture?
optional
onLostPointerCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLostPointerCapture
onLostPointerCaptureCapture?
optional
onLostPointerCaptureCapture:PointerEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onLostPointerCaptureCapture
onScroll?
optional
onScroll:UIEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onScroll
onScrollCapture?
optional
onScrollCapture:UIEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onScrollCapture
onWheel?
optional
onWheel:WheelEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onWheel
onWheelCapture?
optional
onWheelCapture:WheelEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onWheelCapture
onAnimationStart?
optional
onAnimationStart:AnimationEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAnimationStart
onAnimationStartCapture?
optional
onAnimationStartCapture:AnimationEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAnimationStartCapture
onAnimationEnd?
optional
onAnimationEnd:AnimationEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAnimationEnd
onAnimationEndCapture?
optional
onAnimationEndCapture:AnimationEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAnimationEndCapture
onAnimationIteration?
optional
onAnimationIteration:AnimationEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAnimationIteration
onAnimationIterationCapture?
optional
onAnimationIterationCapture:AnimationEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onAnimationIterationCapture
onTransitionEnd?
optional
onTransitionEnd:TransitionEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTransitionEnd
onTransitionEndCapture?
optional
onTransitionEndCapture:TransitionEventHandler
<HTMLDivElement
>
Inherited from
GridRootProps.onTransitionEndCapture
accept?
optional
accept:string
Inherited from
GridRootProps.accept
acceptCharset?
optional
acceptCharset:string
Inherited from
GridRootProps.acceptCharset
action?
optional
action:string
Inherited from
GridRootProps.action
allowFullScreen?
optional
allowFullScreen:boolean
Inherited from
GridRootProps.allowFullScreen
allowTransparency?
optional
allowTransparency:boolean
Inherited from
GridRootProps.allowTransparency
alt?
optional
alt:string
Inherited from
GridRootProps.alt
as?
optional
as:string
Inherited from
GridRootProps.as
async?
optional
async:boolean
Inherited from
GridRootProps.async
autoComplete?
optional
autoComplete:string
Inherited from
GridRootProps.autoComplete
autoPlay?
optional
autoPlay:boolean
Inherited from
GridRootProps.autoPlay
capture?
optional
capture:boolean
|"user"
|"environment"
Inherited from
GridRootProps.capture
cellPadding?
optional
cellPadding:string
|number
Inherited from
GridRootProps.cellPadding
cellSpacing?
optional
cellSpacing:string
|number
Inherited from
GridRootProps.cellSpacing
charSet?
optional
charSet:string
Inherited from
GridRootProps.charSet
challenge?
optional
challenge:string
Inherited from
GridRootProps.challenge
checked?
optional
checked:boolean
Inherited from
GridRootProps.checked
classID?
optional
classID:string
Inherited from
GridRootProps.classID
cols?
optional
cols:number
Inherited from
GridRootProps.cols
colSpan?
optional
colSpan:number
Inherited from
GridRootProps.colSpan
controls?
optional
controls:boolean
Inherited from
GridRootProps.controls
coords?
optional
coords:string
Inherited from
GridRootProps.coords
crossOrigin?
optional
crossOrigin:CrossOrigin
Inherited from
GridRootProps.crossOrigin
dateTime?
optional
dateTime:string
Inherited from
GridRootProps.dateTime
default?
optional
default:boolean
Inherited from
GridRootProps.default
defer?
optional
defer:boolean
Inherited from
GridRootProps.defer
disabled?
optional
disabled:boolean
Inherited from
GridRootProps.disabled
download?
optional
download:any
Inherited from
GridRootProps.download
encType?
optional
encType:string
Inherited from
GridRootProps.encType
formAction?
optional
formAction:string
Inherited from
GridRootProps.formAction
formEncType?
optional
formEncType:string
Inherited from
GridRootProps.formEncType
formMethod?
optional
formMethod:string
Inherited from
GridRootProps.formMethod
formNoValidate?
optional
formNoValidate:boolean
Inherited from
GridRootProps.formNoValidate
formTarget?
optional
formTarget:string
Inherited from
GridRootProps.formTarget
frameBorder?
optional
frameBorder:string
|number
Inherited from
GridRootProps.frameBorder
headers?
optional
headers:string
Inherited from
GridRootProps.headers
height?
optional
height:string
|number
Inherited from
GridRootProps.height
high?
optional
high:number
Inherited from
GridRootProps.high
href?
optional
href:string
Inherited from
GridRootProps.href
hrefLang?
optional
hrefLang:string
Inherited from
GridRootProps.hrefLang
htmlFor?
optional
htmlFor:string
Inherited from
GridRootProps.htmlFor
httpEquiv?
optional
httpEquiv:string
Inherited from
GridRootProps.httpEquiv
integrity?
optional
integrity:string
Inherited from
GridRootProps.integrity
keyParams?
optional
keyParams:string
Inherited from
GridRootProps.keyParams
keyType?
optional
keyType:string
Inherited from
GridRootProps.keyType
kind?
optional
kind:string
Inherited from
GridRootProps.kind
list?
optional
list:string
Inherited from
GridRootProps.list
loop?
optional
loop:boolean
Inherited from
GridRootProps.loop
low?
optional
low:number
Inherited from
GridRootProps.low
manifest?
optional
manifest:string
Inherited from
GridRootProps.manifest
marginHeight?
optional
marginHeight:number
Inherited from
GridRootProps.marginHeight
marginWidth?
optional
marginWidth:number
Inherited from
GridRootProps.marginWidth
max?
optional
max:string
|number
Inherited from
GridRootProps.max
maxLength?
optional
maxLength:number
Inherited from
GridRootProps.maxLength
media?
optional
media:string
Inherited from
GridRootProps.media
mediaGroup?
optional
mediaGroup:string
Inherited from
GridRootProps.mediaGroup
method?
optional
method:string
Inherited from
GridRootProps.method
min?
optional
min:string
|number
Inherited from
GridRootProps.min
minLength?
optional
minLength:number
Inherited from
GridRootProps.minLength
multiple?
optional
multiple:boolean
Inherited from
GridRootProps.multiple
muted?
optional
muted:boolean
Inherited from
GridRootProps.muted
name?
optional
name:string
Inherited from
GridRootProps.name
noValidate?
optional
noValidate:boolean
Inherited from
GridRootProps.noValidate
open?
optional
open:boolean
Inherited from
GridRootProps.open
optimum?
optional
optimum:number
Inherited from
GridRootProps.optimum
placeholder?
optional
placeholder:string
Inherited from
GridRootProps.placeholder
playsInline?
optional
playsInline:boolean
Inherited from
GridRootProps.playsInline
poster?
optional
poster:string
Inherited from
GridRootProps.poster
preload?
optional
preload:string
Inherited from
GridRootProps.preload
readOnly?
optional
readOnly:boolean
Inherited from
GridRootProps.readOnly
required?
optional
required:boolean
Inherited from
GridRootProps.required
reversed?
optional
reversed:boolean
Inherited from
GridRootProps.reversed
rows?
optional
rows:number
Inherited from
GridRootProps.rows
rowSpan?
optional
rowSpan:number
Inherited from
GridRootProps.rowSpan
sandbox?
optional
sandbox:string
Inherited from
GridRootProps.sandbox
scope?
optional
scope:string
Inherited from
GridRootProps.scope
scoped?
optional
scoped:boolean
Inherited from
GridRootProps.scoped
scrolling?
optional
scrolling:string
Inherited from
GridRootProps.scrolling
seamless?
optional
seamless:boolean
Inherited from
GridRootProps.seamless
selected?
optional
selected:boolean
Inherited from
GridRootProps.selected
shape?
optional
shape:string
Inherited from
GridRootProps.shape
size?
optional
size:number
Inherited from
GridRootProps.size
sizes?
optional
sizes:string
Inherited from
GridRootProps.sizes
src?
optional
src:string
Inherited from
GridRootProps.src
srcDoc?
optional
srcDoc:string
Inherited from
GridRootProps.srcDoc
srcLang?
optional
srcLang:string
Inherited from
GridRootProps.srcLang
srcSet?
optional
srcSet:string
Inherited from
GridRootProps.srcSet
step?
optional
step:string
|number
Inherited from
GridRootProps.step
target?
optional
target:string
Inherited from
GridRootProps.target
type?
optional
type:string
Inherited from
GridRootProps.type
useMap?
optional
useMap:string
Inherited from
GridRootProps.useMap
value?
optional
value:string
|number
| readonlystring
[]
Inherited from
GridRootProps.value
width?
optional
width:string
|number
Inherited from
GridRootProps.width
wmode?
optional
wmode:string
Inherited from
GridRootProps.wmode
wrap?
optional
wrap:string
Inherited from
GridRootProps.wrap