cloud-ide-element 1.1.92 → 1.1.94
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 +147 -144
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +3 -2
- 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<"error" | "
|
|
607
|
+
readonly uploadStatus: _angular_core.WritableSignal<"error" | "success" | "start" | "uploading" | "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: "error" | "
|
|
734
|
+
uploadStatus: "error" | "success" | "start" | "uploading" | "idle";
|
|
735
735
|
isUploading: boolean;
|
|
736
736
|
uploadProgress: number;
|
|
737
737
|
files: {
|
|
@@ -2838,6 +2838,7 @@ declare class CideEleDataGridComponent<T = Record<string, unknown>> implements O
|
|
|
2838
2838
|
private initializeGrid;
|
|
2839
2839
|
/**
|
|
2840
2840
|
* Initialize default grouping for columns with groupable: true
|
|
2841
|
+
* Only groups visible columns (not hidden ones)
|
|
2841
2842
|
*/
|
|
2842
2843
|
private initializeDefaultGrouping;
|
|
2843
2844
|
/**
|