UNPKG

@oceanbase-odc/ob-react-data-grid

Version:

Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like

10 lines 555 B
type SharedInputProps = Pick<React.InputHTMLAttributes<HTMLInputElement>, 'disabled' | 'tabIndex' | 'onClick'>; interface SelectCellFormatterProps extends SharedInputProps { isCellSelected?: boolean; value: boolean; onChange: (value: boolean, isShiftClick: boolean) => void; aria?: React.AriaAttributes; } export declare function SelectCellFormatter({ value, tabIndex, isCellSelected, disabled, onClick, onChange, aria, }: SelectCellFormatterProps): import("react").JSX.Element; export {}; //# sourceMappingURL=SelectCellFormatter.d.ts.map