ia-table 0.15.6 → 0.15.8

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/pivot.d.ts CHANGED
@@ -99,6 +99,8 @@ declare const ACTION_TYPES: {
99
99
  readonly SET_DATA_IS_TREE_DATA: "SET_DATA_IS_TREE_DATA";
100
100
  readonly SET_VIRTUALIZATION_CONFIG: "SET_VIRTUALIZATION_CONFIG";
101
101
  readonly SET_DISABLE_CURRENT_PAGE_RECORDS: "SET_DISABLE_CURRENT_PAGE_RECORDS";
102
+ readonly SET_FORCE_SHOW_LOADING: "SET_FORCE_SHOW_LOADING";
103
+ readonly UPDATE_ROW_DATA_WITH_REFRESH: "UPDATE_ROW_DATA_WITH_REFRESH";
102
104
  };
103
105
 
104
106
  declare class InfiniteBlock {
@@ -536,6 +538,8 @@ declare interface SmartGridAPI extends SmartGridPaginationAPI, SmartGridApiExtra
536
538
  updateSmartGridTableData: (wholeData: SmartGridRowData[]) => void;
537
539
  downloadSmartGridExcel: (fileName?: string, visibleOnly?: boolean) => void;
538
540
  downloadSmartGridCSV: (fileName?: string, visibleOnly?: boolean) => void;
541
+ showLoadingOverlay: () => void;
542
+ hideOverlay: () => void;
539
543
  }
540
544
 
541
545
  declare type SmartGridApiExtra = {
@@ -2275,6 +2279,7 @@ declare interface SmartGridStateContext {
2275
2279
  treeData: boolean;
2276
2280
  virtualizationConfig: SmartGridVirConfig;
2277
2281
  disableCurrentPageRecords: boolean;
2282
+ showForceLoading: boolean;
2278
2283
  [key: string]: unknown;
2279
2284
  }
2280
2285
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ia-table",
3
- "version": "0.15.6",
3
+ "version": "0.15.8",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "moment": "^2.0.0",