cloud-ide-element 1.1.81 → 1.1.83

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
@@ -3105,16 +3105,27 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
3105
3105
  getSkeletonArray(): number[];
3106
3106
  get displayedData(): T[];
3107
3107
  /**
3108
- * Group data by specified columns
3108
+ * Group data by specified columns (supports nested grouping)
3109
3109
  */
3110
3110
  private getGroupedData;
3111
+ /**
3112
+ * Recursively group data by columns (nested grouping support)
3113
+ */
3114
+ private groupDataRecursive;
3115
+ /**
3116
+ * Get the group path for nested grouping display (internal method)
3117
+ */
3118
+ private buildGroupPath;
3111
3119
  getGroupValue(columnKey: string): unknown;
3112
3120
  isGroupHeader(row: T): boolean;
3113
3121
  getGroupRowCount(row: T): number;
3114
3122
  getGroupColumnKey(row: T): string;
3123
+ getGroupLevel(row: T): number;
3115
3124
  getGroupKey(item: T): string;
3116
3125
  getGroupColumn(item: T): GridColumn | null;
3126
+ getGroupColumnHeader(item: T): string;
3117
3127
  getGroupValueDisplay(item: T): string;
3128
+ getGroupPath(item: T): unknown[];
3118
3129
  get columns(): GridColumn[];
3119
3130
  get paginationConfig(): cloud_ide_element.GridPaginationConfig;
3120
3131
  get searchConfig(): cloud_ide_element.GridSearchConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-element",
3
- "version": "1.1.81",
3
+ "version": "1.1.83",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"