cloud-ide-element 1.0.91 → 1.0.93
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<"uploading" | "error" | "
|
|
603
|
+
readonly uploadStatus: _angular_core.WritableSignal<"uploading" | "error" | "start" | "success" | "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[]>;
|
|
@@ -651,6 +651,14 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
651
651
|
private clearPreviews;
|
|
652
652
|
private isImageFile;
|
|
653
653
|
private loadFileDetailsFromId;
|
|
654
|
+
/**
|
|
655
|
+
* Check if the component is in multiple file mode
|
|
656
|
+
*/
|
|
657
|
+
private isMultipleFileMode;
|
|
658
|
+
/**
|
|
659
|
+
* Load files from group ID using the group API
|
|
660
|
+
*/
|
|
661
|
+
private loadFilesFromGroupId;
|
|
654
662
|
private isImageFileFromName;
|
|
655
663
|
private isImageFileFromType;
|
|
656
664
|
removePreview(index: number): void;
|
|
@@ -703,7 +711,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
703
711
|
multiple: boolean;
|
|
704
712
|
showPreview: boolean;
|
|
705
713
|
autoUpload: boolean;
|
|
706
|
-
uploadStatus: "uploading" | "error" | "
|
|
714
|
+
uploadStatus: "uploading" | "error" | "start" | "success" | "idle";
|
|
707
715
|
isUploading: boolean;
|
|
708
716
|
uploadProgress: number;
|
|
709
717
|
files: {
|