ia-table 0.15.5 → 0.15.7
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/chat.d.ts +6 -0
- package/dist/chat.js +1 -1
- package/dist/{chat.type-Cwk7LBad.js → chat.type-BS4ghrYz.js} +981 -964
- package/dist/index.d.ts +7 -4
- package/dist/index.js +7088 -6911
- package/dist/pivot.d.ts +6 -0
- package/package.json +1 -1
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 {
|
|
@@ -465,6 +467,7 @@ declare interface SmartGridAPI extends SmartGridPaginationAPI, SmartGridApiExtra
|
|
|
465
467
|
logCacheSummary: () => void | null;
|
|
466
468
|
getCachedRowById: (id: string | number) => SmartGridRowData | null;
|
|
467
469
|
getRowNode: (key: string | number) => Partial<SmartGridRowNode> | null;
|
|
470
|
+
getRowNodeWithIndex: (rowIndex: number) => Partial<SmartGridRowNode> | null;
|
|
468
471
|
setVisibleRange: (startRow: number, endRow: number) => void;
|
|
469
472
|
refreshCache: (options?: SmartGridRefreshOptions) => boolean;
|
|
470
473
|
deselectAll: () => void;
|
|
@@ -535,6 +538,8 @@ declare interface SmartGridAPI extends SmartGridPaginationAPI, SmartGridApiExtra
|
|
|
535
538
|
updateSmartGridTableData: (wholeData: SmartGridRowData[]) => void;
|
|
536
539
|
downloadSmartGridExcel: (fileName?: string, visibleOnly?: boolean) => void;
|
|
537
540
|
downloadSmartGridCSV: (fileName?: string, visibleOnly?: boolean) => void;
|
|
541
|
+
showLoadingOverlay: () => void;
|
|
542
|
+
hideOverlay: () => void;
|
|
538
543
|
}
|
|
539
544
|
|
|
540
545
|
declare type SmartGridApiExtra = {
|
|
@@ -2274,6 +2279,7 @@ declare interface SmartGridStateContext {
|
|
|
2274
2279
|
treeData: boolean;
|
|
2275
2280
|
virtualizationConfig: SmartGridVirConfig;
|
|
2276
2281
|
disableCurrentPageRecords: boolean;
|
|
2282
|
+
showForceLoading: boolean;
|
|
2277
2283
|
[key: string]: unknown;
|
|
2278
2284
|
}
|
|
2279
2285
|
|