cloud-ide-element 1.1.7 → 1.1.8
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
|
@@ -496,7 +496,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
496
496
|
readonly id: _angular_core.WritableSignal<string>;
|
|
497
497
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
498
498
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
499
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
499
|
+
readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "uploading" | "success" | "idle">;
|
|
500
500
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
501
501
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
502
502
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -623,7 +623,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
623
623
|
multiple: boolean;
|
|
624
624
|
showPreview: boolean;
|
|
625
625
|
autoUpload: boolean;
|
|
626
|
-
uploadStatus: "
|
|
626
|
+
uploadStatus: "error" | "start" | "uploading" | "success" | "idle";
|
|
627
627
|
isUploading: boolean;
|
|
628
628
|
uploadProgress: number;
|
|
629
629
|
files: {
|