cloud-ide-element 1.1.95 → 1.1.96
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
|
@@ -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<"start" | "success" | "error" | "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[]>;
|
|
@@ -737,7 +737,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
737
737
|
multiple: boolean;
|
|
738
738
|
showPreview: boolean;
|
|
739
739
|
autoUpload: boolean;
|
|
740
|
-
uploadStatus: "
|
|
740
|
+
uploadStatus: "start" | "success" | "error" | "uploading" | "idle";
|
|
741
741
|
isUploading: boolean;
|
|
742
742
|
uploadProgress: number;
|
|
743
743
|
files: {
|