cloud-ide-element 1.0.112 → 1.0.113
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
|
@@ -599,7 +599,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
599
599
|
readonly id: _angular_core.WritableSignal<string>;
|
|
600
600
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
601
601
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
602
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
602
|
+
readonly uploadStatus: _angular_core.WritableSignal<"uploading" | "error" | "start" | "success" | "idle">;
|
|
603
603
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
604
604
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
605
605
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -726,7 +726,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
726
726
|
multiple: boolean;
|
|
727
727
|
showPreview: boolean;
|
|
728
728
|
autoUpload: boolean;
|
|
729
|
-
uploadStatus: "
|
|
729
|
+
uploadStatus: "uploading" | "error" | "start" | "success" | "idle";
|
|
730
730
|
isUploading: boolean;
|
|
731
731
|
uploadProgress: number;
|
|
732
732
|
files: {
|
|
@@ -885,11 +885,6 @@ declare class CideEleFloatingFileUploaderComponent implements OnInit, OnDestroy
|
|
|
885
885
|
* Set current user ID
|
|
886
886
|
*/
|
|
887
887
|
setCurrentUserId(userId: string): void;
|
|
888
|
-
/**
|
|
889
|
-
* Public method to handle files from external sources
|
|
890
|
-
* This can be called by other components to trigger the floating uploader
|
|
891
|
-
*/
|
|
892
|
-
handleExternalFiles(files: File[], userId?: string, groupId?: string): void;
|
|
893
888
|
/**
|
|
894
889
|
* Check if there are any uploads for the current group
|
|
895
890
|
*/
|