@oceanbase-odc/ob-react-data-grid
Version:
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
9 lines • 513 B
TypeScript
import type { RefAttributes } from 'react';
import type { RowRendererProps, getContextMenuConfig, ContextMenuRender } from './types';
export interface CellContextProps {
setShowMenuRowIdx: ((rowIdx: number, isShow: boolean) => void) | undefined;
getContextMenuConfig?: getContextMenuConfig<any>;
ContextMenuRender?: ContextMenuRender<any>;
}
export default function <R, SR>(props: RowRendererProps<R, SR> & RefAttributes<HTMLDivElement>): import("react").JSX.Element;
//# sourceMappingURL=Row.d.ts.map