cloud-ide-element 1.1.81 → 1.1.82
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/cloud-ide-element.mjs +132 -40
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +11 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3105,16 +3105,26 @@ 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;
|
|
3117
3126
|
getGroupValueDisplay(item: T): string;
|
|
3127
|
+
getGroupPath(item: T): unknown[];
|
|
3118
3128
|
get columns(): GridColumn[];
|
|
3119
3129
|
get paginationConfig(): cloud_ide_element.GridPaginationConfig;
|
|
3120
3130
|
get searchConfig(): cloud_ide_element.GridSearchConfig;
|