@noraent/nora-datagrid 0.0.246 → 0.0.248
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/buildPackage.json +1 -1
- package/dist/components/NoraDataGrid.d.ts +1 -0
- package/dist/components/TwoDimensionalVirtualizedList.d.ts +6 -2
- package/dist/nora_datagrid.cjs.js +2 -2
- package/dist/nora_datagrid.es.js +252 -208
- package/dist/types/dataGridProps.d.ts +5 -0
- package/package.json +1 -1
package/dist/buildPackage.json
CHANGED
|
@@ -8,5 +8,6 @@ declare function NoraDataGridTitle(props: NoraDataGridMainProps): import("react/
|
|
|
8
8
|
declare function NoraDataGridFooter(props: NoraDataGridMainProps): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
interface NoraDataGridMainProps {
|
|
10
10
|
children?: ReactNode;
|
|
11
|
+
imeRef?: React.RefObject<HTMLTextAreaElement | null>;
|
|
11
12
|
}
|
|
12
13
|
export {};
|
|
@@ -9,6 +9,10 @@ export declare const VirtualItem: React.MemoExoticComponent<({ column, row, isFo
|
|
|
9
9
|
editStatus: EditStatus | undefined;
|
|
10
10
|
rowIndex: number;
|
|
11
11
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
12
|
-
export declare const TwoDimensionalVirtualizedList: React.MemoExoticComponent<(
|
|
13
|
-
|
|
12
|
+
export declare const TwoDimensionalVirtualizedList: React.MemoExoticComponent<({ imeRef }: {
|
|
13
|
+
imeRef: React.RefObject<HTMLTextAreaElement | null>;
|
|
14
|
+
}) => import("react/jsx-runtime").JSX.Element>;
|
|
15
|
+
declare const _default: React.MemoExoticComponent<React.MemoExoticComponent<({ imeRef }: {
|
|
16
|
+
imeRef: React.RefObject<HTMLTextAreaElement | null>;
|
|
17
|
+
}) => import("react/jsx-runtime").JSX.Element>>;
|
|
14
18
|
export default _default;
|