ia-table 0.14.5 → 0.14.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/index.d.ts +6 -0
- package/dist/index.js +9860 -9447
- package/dist/pivot.d.ts +4 -0
- package/dist/pivot.js +1 -1
- package/dist/{right-arrow-DVcW5eaL.js → right-arrow-u0DuaXma.js} +215 -206
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -98,6 +98,9 @@ declare const ACTION_TYPES: {
|
|
|
98
98
|
readonly SET_HAS_SPLIT_RENDERER_KEYS: "SET_HAS_SPLIT_RENDERER_KEYS";
|
|
99
99
|
readonly SET_REMOVE_SELECTION_ON_OPERATION: "SET_REMOVE_SELECTION_ON_OPERATION";
|
|
100
100
|
readonly SET_REMOVE_CHECK_CONFIGURATION_ON_OPERATION: "SET_REMOVE_CHECK_CONFIGURATION_ON_OPERATION";
|
|
101
|
+
readonly SET_TOTAL_COLUMNS_COUNT: "SET_TOTAL_COLUMNS_COUNT";
|
|
102
|
+
readonly SET_ALL_CHILD_ROWS_EXPANDED: "SET_ALL_CHILD_ROWS_EXPANDED";
|
|
103
|
+
readonly EXPAND_ROW_WITH_NESTED_CHILDREN: "EXPAND_ROW_WITH_NESTED_CHILDREN";
|
|
101
104
|
};
|
|
102
105
|
|
|
103
106
|
declare interface ChildHeightsResult {
|
|
@@ -850,6 +853,8 @@ export declare interface SmartGridBodyCellDetailProps {
|
|
|
850
853
|
hasChildren: boolean;
|
|
851
854
|
isAggregationParentRowWithAggregatedData: boolean;
|
|
852
855
|
lazyLoadCellRenderer?: boolean;
|
|
856
|
+
totalRows?: number;
|
|
857
|
+
totalColumns?: number;
|
|
853
858
|
childKeyField: string;
|
|
854
859
|
}
|
|
855
860
|
|
|
@@ -3279,6 +3284,7 @@ export declare interface SmartGridStateContext {
|
|
|
3279
3284
|
} & Record<string, unknown>;
|
|
3280
3285
|
pivotPanelColumnDef: null | SmartGridColumnDefinition[];
|
|
3281
3286
|
removeCheckConfigurationOnOperation: boolean;
|
|
3287
|
+
totalColumnsCount: number;
|
|
3282
3288
|
[key: string]: unknown;
|
|
3283
3289
|
}
|
|
3284
3290
|
|