@syook/react-tabulous 4.0.0-beta-0.3 → 4.0.0-beta-0.5
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/lib/index.esm.js +2 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/lib/types/reactTabulous/helpers/isEqual.d.ts +2 -0
- package/lib/types/reactTabulous/hooks/useGridRootProps.d.ts +1 -0
- package/lib/types/reactTabulous/models/props/dataGridProps.d.ts +5 -0
- package/package.json +1 -1
|
@@ -37,6 +37,7 @@ export declare const DATA_GRID_PROPS_DEFAULT_VALUES: {
|
|
|
37
37
|
bulkActions: string[];
|
|
38
38
|
noRowsOverlay: import("react/jsx-runtime").JSX.Element;
|
|
39
39
|
children: null;
|
|
40
|
+
isRealTimeDataUpdate: boolean;
|
|
40
41
|
onBulkActionClick: () => void;
|
|
41
42
|
fetchOnPageChange: null;
|
|
42
43
|
rowsCount: null;
|
|
@@ -109,6 +109,11 @@ export interface DataGridPropsWithDefaultValues {
|
|
|
109
109
|
checkboxSelection: boolean;
|
|
110
110
|
selectedRows: GridRowId[];
|
|
111
111
|
paginatedSelectedRows: GridRowId[];
|
|
112
|
+
/**
|
|
113
|
+
* If `true`, the columns will be updated with every props - Use it if the data update is real time.
|
|
114
|
+
* @default false
|
|
115
|
+
*/
|
|
116
|
+
isRealTimeDataUpdate: boolean;
|
|
112
117
|
/**
|
|
113
118
|
* Bulk actions to be displayed in the toolbar.
|
|
114
119
|
* @default []
|