cloud-ide-element 1.1.83 → 1.1.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/cloud-ide-element.mjs +213 -10
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +18 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2812,6 +2812,7 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
2812
2812
|
showManageColumnsModal: _angular_core.WritableSignal<boolean>;
|
|
2813
2813
|
groupedColumns: _angular_core.WritableSignal<string[]>;
|
|
2814
2814
|
expandedGroups: _angular_core.WritableSignal<Set<string>>;
|
|
2815
|
+
private hasAutoExpandedGroups;
|
|
2815
2816
|
showExportMenu: _angular_core.WritableSignal<boolean>;
|
|
2816
2817
|
showFilterDropdown: _angular_core.WritableSignal<boolean>;
|
|
2817
2818
|
private exportService;
|
|
@@ -2835,6 +2836,14 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
2835
2836
|
private updateDataOnly;
|
|
2836
2837
|
private mergeConfigWithDefaults;
|
|
2837
2838
|
private initializeGrid;
|
|
2839
|
+
/**
|
|
2840
|
+
* Initialize default grouping for columns with groupable: true
|
|
2841
|
+
*/
|
|
2842
|
+
private initializeDefaultGrouping;
|
|
2843
|
+
/**
|
|
2844
|
+
* Check if groups should be auto-expanded (only on initial load)
|
|
2845
|
+
*/
|
|
2846
|
+
private shouldAutoExpandGroups;
|
|
2838
2847
|
/**
|
|
2839
2848
|
* Get the unique identifier for an item
|
|
2840
2849
|
*/
|
|
@@ -2876,6 +2885,15 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
2876
2885
|
* Flatten tree structure for display, respecting expansion state with unlimited nesting
|
|
2877
2886
|
*/
|
|
2878
2887
|
private flattenTreeForDisplay;
|
|
2888
|
+
/**
|
|
2889
|
+
* Flatten tree structure for grouping while preserving parent-child relationships
|
|
2890
|
+
*/
|
|
2891
|
+
private flattenTreeForGrouping;
|
|
2892
|
+
/**
|
|
2893
|
+
* Restore tree structure within grouped data
|
|
2894
|
+
* This method processes grouped data and restores parent-child relationships
|
|
2895
|
+
*/
|
|
2896
|
+
private restoreTreeStructureInGroups;
|
|
2879
2897
|
/**
|
|
2880
2898
|
* Toggle expand/collapse state of a tree item with unlimited nesting support
|
|
2881
2899
|
*/
|