cats-data-grid 2.0.83 → 2.0.85
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/fesm2022/cats-data-grid.mjs +25 -10
- package/fesm2022/cats-data-grid.mjs.map +1 -1
- package/index.d.ts +3 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -93,7 +93,7 @@ declare class CatsDataGridComponent implements OnChanges, OnInit {
|
|
|
93
93
|
columnDraggable: any[];
|
|
94
94
|
activeGroups: any[];
|
|
95
95
|
groupBy: string[];
|
|
96
|
-
groupByField: string;
|
|
96
|
+
groupByField: string[];
|
|
97
97
|
dragGroupIndex: number | null;
|
|
98
98
|
categorizedCols: any;
|
|
99
99
|
noCategoryCols: any[];
|
|
@@ -168,11 +168,12 @@ declare class CatsDataGridComponent implements OnChanges, OnInit {
|
|
|
168
168
|
* Autosize all columns
|
|
169
169
|
*/
|
|
170
170
|
protected autosizeAllColumns(): void;
|
|
171
|
+
applyGroupByField(groupByField: string[]): void;
|
|
171
172
|
getColConfigCategory(colDefs: any[]): {
|
|
172
173
|
categorized: Record<string, any[]>;
|
|
173
174
|
noCategory: any[];
|
|
174
175
|
};
|
|
175
|
-
getColumnDetail(colDefs: any, groupByField:
|
|
176
|
+
getColumnDetail(colDefs: any[], groupByField: string[]): any[];
|
|
176
177
|
activeAllSelection(event: Event): void;
|
|
177
178
|
showAllSelection(): void;
|
|
178
179
|
showAllDefaultSelection(): void;
|