cloud-ide-element 1.1.129 → 1.1.130
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
|
@@ -612,7 +612,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
612
612
|
readonly id: _angular_core.WritableSignal<string>;
|
|
613
613
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
614
614
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
615
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
615
|
+
readonly uploadStatus: _angular_core.WritableSignal<"start" | "error" | "uploading" | "success" | "idle">;
|
|
616
616
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
617
617
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
618
618
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -745,7 +745,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
745
745
|
multiple: boolean;
|
|
746
746
|
showPreview: boolean;
|
|
747
747
|
autoUpload: boolean;
|
|
748
|
-
uploadStatus: "
|
|
748
|
+
uploadStatus: "start" | "error" | "uploading" | "success" | "idle";
|
|
749
749
|
isUploading: boolean;
|
|
750
750
|
uploadProgress: number;
|
|
751
751
|
files: {
|