cloud-ide-element 1.1.80 → 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 +176 -47
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +13 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -604,7 +604,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
604
604
|
readonly id: _angular_core.WritableSignal<string>;
|
|
605
605
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
606
606
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
607
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
607
|
+
readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "uploading" | "success" | "idle">;
|
|
608
608
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
609
609
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
610
610
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -731,7 +731,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
731
731
|
multiple: boolean;
|
|
732
732
|
showPreview: boolean;
|
|
733
733
|
autoUpload: boolean;
|
|
734
|
-
uploadStatus: "
|
|
734
|
+
uploadStatus: "error" | "start" | "uploading" | "success" | "idle";
|
|
735
735
|
isUploading: boolean;
|
|
736
736
|
uploadProgress: number;
|
|
737
737
|
files: {
|
|
@@ -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;
|