cloud-ide-element 1.1.160 → 1.1.161
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
|
@@ -616,7 +616,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
616
616
|
readonly id: _angular_core.WritableSignal<string>;
|
|
617
617
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
618
618
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
619
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
619
|
+
readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "uploading" | "success" | "idle">;
|
|
620
620
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
621
621
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
622
622
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -749,7 +749,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
749
749
|
multiple: boolean;
|
|
750
750
|
showPreview: boolean;
|
|
751
751
|
autoUpload: boolean;
|
|
752
|
-
uploadStatus: "
|
|
752
|
+
uploadStatus: "error" | "start" | "uploading" | "success" | "idle";
|
|
753
753
|
isUploading: boolean;
|
|
754
754
|
uploadProgress: number;
|
|
755
755
|
files: {
|