cloud-ide-element 1.1.34 → 1.1.36
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
|
@@ -26,6 +26,7 @@ type ValidationStatus = {
|
|
|
26
26
|
declare class CideInputComponent implements ControlValueAccessor, Validator, OnChanges, OnInit, OnDestroy {
|
|
27
27
|
capitalizePipe: CapitalizePipe;
|
|
28
28
|
private elementService;
|
|
29
|
+
private cdr;
|
|
29
30
|
constructor();
|
|
30
31
|
/**
|
|
31
32
|
* @description to se the visual of control like solid control offerd by material design or outline with a border
|
|
@@ -573,7 +574,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
573
574
|
readonly id: _angular_core.WritableSignal<string>;
|
|
574
575
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
575
576
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
576
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
577
|
+
readonly uploadStatus: _angular_core.WritableSignal<"start" | "error" | "uploading" | "success" | "idle">;
|
|
577
578
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
578
579
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
579
580
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -700,7 +701,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
700
701
|
multiple: boolean;
|
|
701
702
|
showPreview: boolean;
|
|
702
703
|
autoUpload: boolean;
|
|
703
|
-
uploadStatus: "
|
|
704
|
+
uploadStatus: "start" | "error" | "uploading" | "success" | "idle";
|
|
704
705
|
isUploading: boolean;
|
|
705
706
|
uploadProgress: number;
|
|
706
707
|
files: {
|