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/chat.d.ts +5 -0
- package/dist/chat.js +1 -1
- package/dist/{chat.type-De8KF2r5.js → chat.type-CFfIJEWo.js} +1410 -1380
- package/dist/index.d.ts +5 -2
- package/dist/index.js +4468 -4380
- package/dist/pivot.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -111,6 +111,8 @@ declare const ACTION_TYPES: {
|
|
|
111
111
|
readonly SET_DATA_IS_TREE_DATA: "SET_DATA_IS_TREE_DATA";
|
|
112
112
|
readonly SET_VIRTUALIZATION_CONFIG: "SET_VIRTUALIZATION_CONFIG";
|
|
113
113
|
readonly SET_DISABLE_CURRENT_PAGE_RECORDS: "SET_DISABLE_CURRENT_PAGE_RECORDS";
|
|
114
|
+
readonly SET_FORCE_SHOW_LOADING: "SET_FORCE_SHOW_LOADING";
|
|
115
|
+
readonly UPDATE_ROW_DATA_WITH_REFRESH: "UPDATE_ROW_DATA_WITH_REFRESH";
|
|
114
116
|
};
|
|
115
117
|
|
|
116
118
|
declare interface ChildHeightsResult {
|
|
@@ -622,6 +624,8 @@ export declare interface SmartGridAPI extends SmartGridPaginationAPI, SmartGridA
|
|
|
622
624
|
updateSmartGridTableData: (wholeData: SmartGridRowData[]) => void;
|
|
623
625
|
downloadSmartGridExcel: (fileName?: string, visibleOnly?: boolean) => void;
|
|
624
626
|
downloadSmartGridCSV: (fileName?: string, visibleOnly?: boolean) => void;
|
|
627
|
+
showLoadingOverlay: () => void;
|
|
628
|
+
hideOverlay: () => void;
|
|
625
629
|
}
|
|
626
630
|
|
|
627
631
|
export declare type SmartGridApiExtra = {
|
|
@@ -4231,7 +4235,6 @@ export declare interface SmartGridRowRenderProps {
|
|
|
4231
4235
|
isLoading?: boolean;
|
|
4232
4236
|
shimmerRowCount?: number;
|
|
4233
4237
|
virtualizedStartCololumnIndex: MutableRefObject<number>;
|
|
4234
|
-
columnHorizontalScrollContainerRef: RefObject<HTMLDivElement>;
|
|
4235
4238
|
tableApi: SmartGridAPI | null;
|
|
4236
4239
|
scrollContainerRef: RefObject<HTMLDivElement>;
|
|
4237
4240
|
rowHeightCache: RowHeightCache | null;
|
|
@@ -4643,6 +4646,7 @@ export declare interface SmartGridStateContext {
|
|
|
4643
4646
|
treeData: boolean;
|
|
4644
4647
|
virtualizationConfig: SmartGridVirConfig;
|
|
4645
4648
|
disableCurrentPageRecords: boolean;
|
|
4649
|
+
showForceLoading: boolean;
|
|
4646
4650
|
[key: string]: unknown;
|
|
4647
4651
|
}
|
|
4648
4652
|
|
|
@@ -4729,7 +4733,6 @@ export declare interface SmartGridTableBodyProps {
|
|
|
4729
4733
|
isInfiniteLoadingMoreRef: MutableRefObject<boolean>;
|
|
4730
4734
|
shimmerRowCount?: number;
|
|
4731
4735
|
virtualizedStartCololumnIndex: MutableRefObject<number>;
|
|
4732
|
-
columnHorizontalScrollContainerRef: RefObject<HTMLDivElement>;
|
|
4733
4736
|
paginateOriginalRowsOnly?: boolean;
|
|
4734
4737
|
height: string | number;
|
|
4735
4738
|
}
|