cloud-ide-element 1.1.82 → 1.1.84
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
|
@@ -2835,6 +2835,10 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
2835
2835
|
private updateDataOnly;
|
|
2836
2836
|
private mergeConfigWithDefaults;
|
|
2837
2837
|
private initializeGrid;
|
|
2838
|
+
/**
|
|
2839
|
+
* Initialize default grouping for columns with groupable: true
|
|
2840
|
+
*/
|
|
2841
|
+
private initializeDefaultGrouping;
|
|
2838
2842
|
/**
|
|
2839
2843
|
* Get the unique identifier for an item
|
|
2840
2844
|
*/
|
|
@@ -3123,6 +3127,7 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
3123
3127
|
getGroupLevel(row: T): number;
|
|
3124
3128
|
getGroupKey(item: T): string;
|
|
3125
3129
|
getGroupColumn(item: T): GridColumn | null;
|
|
3130
|
+
getGroupColumnHeader(item: T): string;
|
|
3126
3131
|
getGroupValueDisplay(item: T): string;
|
|
3127
3132
|
getGroupPath(item: T): unknown[];
|
|
3128
3133
|
get columns(): GridColumn[];
|