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/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: any): any;
176
+ getColumnDetail(colDefs: any[], groupByField: string[]): any[];
176
177
  activeAllSelection(event: Event): void;
177
178
  showAllSelection(): void;
178
179
  showAllDefaultSelection(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cats-data-grid",
3
- "version": "2.0.83",
3
+ "version": "2.0.85",
4
4
  "peerDependencies": {
5
5
  "@angular/core": ">=18 <22",
6
6
  "@angular/common": ">=18 <22"