cloud-ide-element 1.0.63 → 1.0.65
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
|
@@ -593,7 +593,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
593
593
|
readonly id: _angular_core.WritableSignal<string>;
|
|
594
594
|
readonly isUploading: _angular_core.WritableSignal<boolean>;
|
|
595
595
|
readonly uploadProgress: _angular_core.WritableSignal<number>;
|
|
596
|
-
readonly uploadStatus: _angular_core.WritableSignal<"
|
|
596
|
+
readonly uploadStatus: _angular_core.WritableSignal<"error" | "start" | "success" | "uploading" | "idle">;
|
|
597
597
|
readonly files: _angular_core.WritableSignal<FileList | null>;
|
|
598
598
|
readonly fileNames: _angular_core.WritableSignal<string[]>;
|
|
599
599
|
readonly previewUrls: _angular_core.WritableSignal<string[]>;
|
|
@@ -657,7 +657,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
|
|
|
657
657
|
multiple: boolean;
|
|
658
658
|
showPreview: boolean;
|
|
659
659
|
autoUpload: boolean;
|
|
660
|
-
uploadStatus: "
|
|
660
|
+
uploadStatus: "error" | "start" | "success" | "uploading" | "idle";
|
|
661
661
|
isUploading: boolean;
|
|
662
662
|
uploadProgress: number;
|
|
663
663
|
files: {
|
|
@@ -831,11 +831,11 @@ declare class CideEleFileImageDirective implements OnInit, OnDestroy {
|
|
|
831
831
|
altText: string;
|
|
832
832
|
private readonly fileManagerService;
|
|
833
833
|
private readonly elementRef;
|
|
834
|
+
private readonly destroyRef;
|
|
834
835
|
ngOnInit(): void;
|
|
835
836
|
ngOnDestroy(): void;
|
|
836
837
|
private loadImage;
|
|
837
838
|
private displayImage;
|
|
838
|
-
private isImageFile;
|
|
839
839
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CideEleFileImageDirective, never>;
|
|
840
840
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<CideEleFileImageDirective, "[cideEleFileImage]", never, { "fileId": { "alias": "fileId"; "required": false; }; "altText": { "alias": "altText"; "required": false; }; }, {}, never, never, true, never>;
|
|
841
841
|
}
|