- CacheSnapshot
- VListProps
- VListHandle
- VGridProps
- VGridHandle
- CustomCellComponentProps
- WVListProps
- WVListHandle
- CustomViewportComponentProps
- CustomItemComponentProps
- ScrollToIndexAlign
- ScrollMode
- CustomCellComponent
- ViewportComponentAttributes
- CustomViewportComponent
- CustomItemComponent
▸ VList(props
): ReactNode
Virtualized list component. See VListProps and VListHandle.
Name | Type |
---|---|
props |
VListProps & RefAttributes <VListHandle > |
ReactNode
node_modules/@types/react/index.d.ts:392
▸ VGrid(props
): ReactNode
Virtualized grid component. See VGridProps and VGridHandle.
Name | Type |
---|---|
props |
VGridProps & RefAttributes <VGridHandle > |
ReactNode
node_modules/@types/react/index.d.ts:392
▸ WVList(props
): ReactNode
Virtualized list component controlled by the window scrolling. See WVListProps and WVListHandle.
Name | Type |
---|---|
props |
WVListProps & RefAttributes <WVListHandle > |
ReactNode
node_modules/@types/react/index.d.ts:392
Ƭ ScrollToIndexAlign: "start"
| "end"
Alignment of item when calling scrollToIndex method.
start
(default): Align the item to the start of the list.end
: Align the item to the end of the list.
Ƭ ScrollMode: "reverse"
| "rtl"
Ƭ CustomCellComponent: React.ForwardRefExoticComponent
<React.PropsWithoutRef
<CustomCellComponentProps
> & React.RefAttributes
<any
>>
Ƭ ViewportComponentAttributes: Pick
<React.HTMLAttributes
<HTMLElement
>, "className"
| "style"
| "id"
| "role"
| "tabIndex"
> & React.AriaAttributes
Ƭ CustomViewportComponent: typeof Viewport
Ƭ CustomItemComponent: React.ForwardRefExoticComponent
<React.PropsWithoutRef
<CustomItemComponentProps
> & React.RefAttributes
<any
>>