Skip to content

Latest commit

 

History

History
147 lines (85 loc) · 3.81 KB

API.md

File metadata and controls

147 lines (85 loc) · 3.81 KB

API

Table of contents

Functions

Interfaces

Type Aliases

Functions

VList

VList(props): ReactNode

Virtualized list component. See VListProps and VListHandle.

Parameters

Name Type
props VListProps & RefAttributes<VListHandle>

Returns

ReactNode

Defined in

node_modules/@types/react/index.d.ts:395


WVList

WVList(props): ReactNode

Virtualized list component controlled by the window scrolling. See WVListProps and WVListHandle.

Parameters

Name Type
props WVListProps & RefAttributes<WVListHandle>

Returns

ReactNode

Defined in

node_modules/@types/react/index.d.ts:395


experimental_VGrid

experimental_VGrid(props): ReactNode

Virtualized grid component. See VGridProps and VGridHandle.

Parameters

Name Type
props VGridProps & RefAttributes<VGridHandle>

Returns

ReactNode

Defined in

node_modules/@types/react/index.d.ts:395

Type Aliases

ScrollToIndexAlign

Ƭ ScrollToIndexAlign: "start" | "center" | "end" | "nearest"

Defined in

src/core/types.ts:19


CustomCellComponent

Ƭ CustomCellComponent: React.ForwardRefExoticComponent<React.PropsWithoutRef<CustomCellComponentProps> & React.RefAttributes<any>>

Defined in

src/react/VGrid.tsx:49


ViewportComponentAttributes

Ƭ ViewportComponentAttributes: Pick<React.HTMLAttributes<HTMLElement>, "className" | "style" | "id" | "role" | "tabIndex" | "onKeyDown"> & React.AriaAttributes

Defined in

src/react/Viewport.tsx:9


CustomViewportComponent

Ƭ CustomViewportComponent: typeof Viewport

Defined in

src/react/Viewport.tsx:63


CustomItemComponent

Ƭ CustomItemComponent: React.ForwardRefExoticComponent<React.PropsWithoutRef<CustomItemComponentProps> & React.RefAttributes<any>>

Defined in

src/react/ListItem.tsx:22