cloud-ide-element 1.1.16 → 1.1.17
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 +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -573,7 +573,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
573
573
|
readonly id: _angular_core.WritableSignal<string>;
|
|
574
574
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
575
575
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
576
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
576
|
+
readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "uploading" | "success" | "idle">;
|
|
577
577
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
578
578
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
579
579
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -700,7 +700,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
700
700
|
multiple: boolean;
|
|
701
701
|
showPreview: boolean;
|
|
702
702
|
autoUpload: boolean;
|
|
703
|
-
uploadStatus: "
|
|
703
|
+
uploadStatus: "error" | "start" | "uploading" | "success" | "idle";
|
|
704
704
|
isUploading: boolean;
|
|
705
705
|
uploadProgress: number;
|
|
706
706
|
files: {
|