cloud-ide-element 1.0.87 → 1.0.88
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
|
@@ -600,7 +600,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
600
600
|
readonly id: _angular_core.WritableSignal<string>;
|
|
601
601
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
602
602
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
603
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
603
|
+
readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "success" | "uploading" | "idle">;
|
|
604
604
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
605
605
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
606
606
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -686,7 +686,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
686
686
|
multiple: boolean;
|
|
687
687
|
showPreview: boolean;
|
|
688
688
|
autoUpload: boolean;
|
|
689
|
-
uploadStatus: "
|
|
689
|
+
uploadStatus: "error" | "start" | "success" | "uploading" | "idle";
|
|
690
690
|
isUploading: boolean;
|
|
691
691
|
uploadProgress: number;
|
|
692
692
|
files: {
|