hightable
Version:
A dynamic windowed scrolling table component for react
12 lines (11 loc) • 609 B
TypeScript
import type { ReactNode } from 'react';
import type { HighTableProps } from '../types.js';
type CellNavigationProviderProps = Pick<HighTableProps, 'cellPosition' | 'focus' | 'numRowsPerPage' | 'onCellPositionChange'> & {
/** Children elements */
children: ReactNode;
};
/**
* Provide the cell navigation state and logic to the table, through the CellNavigationContext.
*/
export declare function CellNavigationProvider({ cellPosition: controlledCellPosition, focus, numRowsPerPage, onCellPositionChange, children, }: CellNavigationProviderProps): import("react/jsx-runtime").JSX.Element;
export {};