Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.
Optionalaria-atomic
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.
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.
Optionalaria-busy
aria-busy?:Booleanish
Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user.
Indicates what functions can be performed when a dragged object is released on the drop target.
Deprecated
in ARIA 1.1
Optionalaria-errormessage
aria-errormessage?:string
Identifies the element that provides an error message for the object.
See
aria-invalid
aria-describedby.
Optionalaria-expanded
aria-expanded?:Booleanish
Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.
Optionalaria-flowto
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.
Optionalaria-grabbed
aria-grabbed?:Booleanish
Indicates an element's "grabbed" state in a drag-and-drop operation.
Indicates the entered value does not conform to the format expected by the application.
See
aria-errormessage.
Optionalaria-keyshortcuts
aria-keyshortcuts?:string
Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.
Optionalaria-label
aria-label?:string
Defines a string value that labels the current element.
See
aria-labelledby.
Optionalaria-labelledby
aria-labelledby?:string
Identifies the element (or elements) that labels the current element.
See
aria-describedby.
Optionalaria-level
aria-level?:number
Defines the hierarchical level of an element within a structure.
Optionalaria-live
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.
Optionalaria-modal
aria-modal?:Booleanish
Indicates whether an element is modal when displayed.
Optionalaria-multiline
aria-multiline?:Booleanish
Indicates whether a text box accepts multiple lines of input or only a single line.
Optionalaria-multiselectable
aria-multiselectable?:Booleanish
Indicates that the user may select more than one item from the current selectable descendants.
Optionalaria-orientation
aria-orientation?:"horizontal" | "vertical"
Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.
Optionalaria-owns
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.
Optionalaria-placeholder
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.
Optionalaria-posinset
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.
dangerouslySetInnerHTML?:{ Â Â Â Â __html: string; }
Type declaration
__html: string
dataTools
dataTools:{ Â Â Â Â currentFilterFns: ICurrentFnCollection; Â Â Â Â currentFilters: ICurrentFilterCollection; Â Â Â Â currentPagination: DataGridPaginationProps; Â Â Â Â currentSorting: undefined | ICurrentSorting; Â Â Â Â data: DataType[]; Â Â Â Â dataWithoutPagination: undefined | DataType[]; Â Â Â Â filterResetKey: number; Â Â Â Â getColumn: ((key: string) => undefined | ColumnDefinition<DataType>); Â Â Â Â getColumnFilterFn: ((key: string) => { Â Â Â Â Â Â Â Â current: CompleteFilterFnDefinition; Â Â Â Â Â Â Â Â default: undefined | CompleteFilterFnDefinition; Â Â Â Â }); Â Â Â Â getColumnFilterValue: ((key: string) => undefined | string | string[]); Â Â Â Â getColumnType: ((key: string) => "number" | "select" | "text" | "date"); Â Â Â Â isFilterFnActive: ((colKey: string, activeKey: undefined | string) => boolean); Â Â Â Â isRangeFilterFn: ((fnsKey: CompleteFilterFnDefinition) => boolean); Â Â Â Â pipeFetchedFilters: ((key: string, asyncFetchCallback?: ((key: string, inputSearchValues?: string) => Promise<string[]>)) => Promise<void>); Â Â Â Â prefetchedFilters: IPrefetchedFilter; Â Â Â Â progressReporters: Set<DataFetchingDefinition>; Â Â Â Â resetCurrentFilters: (() => Promise<ICurrentFilterCollection>); Â Â Â Â resetFetchedFilters: ((key?: string) => void); Â Â Â Â setCurrentPagination: Dispatch<SetStateAction<DataGridPaginationProps>>; Â Â Â Â setProgressReporters: Dispatch<SetStateAction<Set<DataFetchingDefinition>>>; Â Â Â Â updateCurrentFilterFn: ((key: string, type: CompleteFilterFnDefinition) => Promise<ICurrentFnCollection>); Â Â Â Â updateCurrentFilterValue: ((key: string, value: string | string[]) => Promise<ICurrentFilterCollection>); Â Â Â Â updateCurrentPagination: ((valuesToUpdate: DataGridPaginationProps) => Promise<DataGridPaginationProps>); Â Â Â Â updateCurrentSorting: ((key: string, alg?: SortDirectionDefinition) => Promise<ICurrentSorting>); Â Â Â Â updatePrefetchedFilters: ((key: KeyLiteralType<DataType>, value: string[]) => Promise<IPrefetchedFilter>); } | { Â Â Â Â currentFilterFns: ICurrentFnCollection; Â Â Â Â currentFilters: ICurrentFilterCollection; Â Â Â Â currentPagination: DataGridPaginationProps; Â Â Â Â currentSorting: undefined | ICurrentSorting; Â Â Â Â data: undefined | DataType[]; Â Â Â Â dataWithoutPagination: undefined | DataType[]; Â Â Â Â filterResetKey: number; Â Â Â Â getColumn: ((key: string) => undefined | ColumnDefinition<DataType>); Â Â Â Â getColumnFilterFn: ((key: string) => { Â Â Â Â Â Â Â Â current: CompleteFilterFnDefinition; Â Â Â Â Â Â Â Â default: undefined | CompleteFilterFnDefinition; Â Â Â Â }); Â Â Â Â getColumnFilterValue: ((key: string) => undefined | string | string[]); Â Â Â Â getColumnType: ((key: string) => "number" | "select" | "text" | "date"); Â Â Â Â isFetching: boolean; Â Â Â Â isFilterFnActive: ((colKey: string, activeKey: undefined | string) => boolean); Â Â Â Â isRangeFilterFn: ((fnsKey: CompleteFilterFnDefinition) => boolean); Â Â Â Â paginationProps: { Â Â Â Â Â Â Â Â currentPage?: number; Â Â Â Â Â Â Â Â dataCount: undefined | number; Â Â Â Â Â Â Â Â pageSize?: number; Â Â Â Â }; Â Â Â Â pipeFetchedFilters: ((key: string) => Promise<void>); Â Â Â Â prefetchedFilters: IPrefetchedFilter; Â Â Â Â progressReporters: Set<DataFetchingDefinition>; Â Â Â Â resetCurrentFilters: (() => void); Â Â Â Â resetFetchedFilters: ((key?: string) => void); Â Â Â Â setCurrentPagination: Dispatch<SetStateAction<DataGridPaginationProps>>; Â Â Â Â setProgressReporters: Dispatch<SetStateAction<Set<DataFetchingDefinition>>>; Â Â Â Â updateCurrentFilterFn: ((key: string, type: CompleteFilterFnDefinition) => void); Â Â Â Â updateCurrentFilterValue: ((key: string, value: string | string[]) => void); Â Â Â Â updateCurrentPagination: ((valuesToUpdate: DataGridPaginationProps) => void); Â Â Â Â updateCurrentSorting: ((key: string, alg?: SortDirectionDefinition) => void); Â Â Â Â updatePrefetchedFilters: ((key: KeyLiteralType<DataType>, value: string[]) => Promise<IPrefetchedFilter>); }
pinnedColumns:undefined | { Â Â Â Â leftColumns: ColumnDefinitionExtended<DataType>[]; Â Â Â Â leftWidth: number; Â Â Â Â rightColumns: ColumnDefinitionExtended<DataType>[]; Â Â Â Â rightWidth: number; Â Â Â Â totalWidth: number; }
Optionalplaceholder
placeholder?:string
Optionalprefix
prefix?:string
Optionalproperty
property?:string
OptionalradioGroup
radioGroup?:string
Optionalresource
resource?:string
Optionalresults
results?:number
Optionalrole
role?:AriaRole
Optionalsecurity
security?:string
Optionalslot
slot?:string
OptionalspellCheck
spellCheck?:Booleanish
Optionalstyle
style?:CSSProperties
OptionalsuppressContentEditableWarning
suppressContentEditableWarning?:boolean
OptionalsuppressHydrationWarning
suppressHydrationWarning?:boolean
OptionaltabIndex
tabIndex?:number
Optionaltitle
title?:string
topScrollPosition
topScrollPosition:number
totalColumnsWidth
totalColumnsWidth:number
Optionaltranslate
translate?:"yes" | "no"
Optionaltypeof
typeof?:string
Optionalunselectable
unselectable?:"on" | "off"
viewRef
viewRef:ForwardedRef<HTMLDivElement>
Optionalvocab
vocab?:string
Methods
getRowExpansionHeight
getRowExpansionHeight(index: number): undefined | number
Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.