ia-table 0.12.8 → 0.12.9
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/components/IATable/types/api.d.ts +10 -0
- package/dist/index.js +6978 -6892
- package/dist/locale-patch-applied.txt +1 -1
- package/package.json +1 -1
|
@@ -183,6 +183,13 @@ export interface SmartGridDisptach {
|
|
|
183
183
|
payload?: unknown;
|
|
184
184
|
}
|
|
185
185
|
|
|
186
|
+
export type SmartGridUpdateDataReturnType = {
|
|
187
|
+
success: boolean;
|
|
188
|
+
totalRows: number;
|
|
189
|
+
blocksUpdated: number;
|
|
190
|
+
errors: string[];
|
|
191
|
+
};
|
|
192
|
+
|
|
186
193
|
export interface SmartGridAPI {
|
|
187
194
|
getInfiniteRowModel: () => SmartGridInfiniteRowModel | null;
|
|
188
195
|
getInfiniteCache: () => SmartGridInfiniteCache | null;
|
|
@@ -272,4 +279,7 @@ export interface SmartGridAPI {
|
|
|
272
279
|
refreshClientSideRowModel: () => void;
|
|
273
280
|
resetRecentSearchChanges: () => void;
|
|
274
281
|
onFilterChanged: () => void;
|
|
282
|
+
updateSmartGridTableData: (
|
|
283
|
+
wholeData: SmartGridRowData[]
|
|
284
|
+
) => SmartGridUpdateDataReturnType;
|
|
275
285
|
}
|