We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8582134 commit 31fb1ceCopy full SHA for 31fb1ce
packages/data-sheet/src/core.ts
@@ -27,7 +27,7 @@ import {
27
useStoreAPI,
28
VisibleCells,
29
} from "./provider";
30
-import { ColumnSpec } from "./utils";
+import type { ColumnSpec } from "./utils";
31
32
const h = hyper.styled(styles);
33
@@ -49,7 +49,7 @@ interface DataSheetInternalProps<T> {
49
onDeleteRows?: (selection: Region[]) => void;
50
verbose?: boolean;
51
enableColumnReordering?: boolean;
52
- enableFocusedCell?: boolean | null;
+ enableFocusedCell?: boolean;
53
dataSheetActions?: ReactNode | null;
54
editable?: boolean;
55
autoFocusEditor?: boolean;
0 commit comments