cloud-ide-element 1.0.13 → 1.0.14
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<"success" | "error" | "uploading" | "start" | "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[]>;
|
|
@@ -727,7 +727,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
727
727
|
multiple: boolean;
|
|
728
728
|
showPreview: boolean;
|
|
729
729
|
autoUpload: boolean;
|
|
730
|
-
uploadStatus: "
|
|
730
|
+
uploadStatus: "success" | "error" | "uploading" | "start" | "idle";
|
|
731
731
|
isUploading: boolean;
|
|
732
732
|
uploadProgress: number;
|
|
733
733
|
files: {
|
|
@@ -765,6 +765,7 @@ interface FloatingFileUploaderData {
|
|
|
765
765
|
declare class CideEleFloatingFileUploaderComponent implements OnInit, OnDestroy {
|
|
766
766
|
private destroyRef;
|
|
767
767
|
private fileManagerService;
|
|
768
|
+
fileInputRef: ElementRef<HTMLInputElement>;
|
|
768
769
|
data: FloatingFileUploaderData;
|
|
769
770
|
isVisible: _angular_core.WritableSignal<boolean>;
|
|
770
771
|
currentUserId: _angular_core.WritableSignal<string>;
|