cloud-ide-element 1.1.46 → 1.1.47
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
|
@@ -574,7 +574,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
574
574
|
readonly id: _angular_core.WritableSignal<string>;
|
|
575
575
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
576
576
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
577
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
577
|
+
readonly uploadStatus: _angular_core.WritableSignal<"success" | "error" | "start" | "uploading" | "idle">;
|
|
578
578
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
579
579
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
580
580
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -701,7 +701,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
701
701
|
multiple: boolean;
|
|
702
702
|
showPreview: boolean;
|
|
703
703
|
autoUpload: boolean;
|
|
704
|
-
uploadStatus: "
|
|
704
|
+
uploadStatus: "success" | "error" | "start" | "uploading" | "idle";
|
|
705
705
|
isUploading: boolean;
|
|
706
706
|
uploadProgress: number;
|
|
707
707
|
files: {
|