cloud-ide-element 1.0.91 → 1.0.92

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" | "idle" | "start" | "success">;
603
+ readonly uploadStatus: _angular_core.WritableSignal<"idle" | "start" | "uploading" | "success" | "error">;
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" | "idle" | "start" | "success";
714
+ uploadStatus: "idle" | "start" | "uploading" | "success" | "error";
707
715
  isUploading: boolean;
708
716
  uploadProgress: number;
709
717
  files: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-element",
3
- "version": "1.0.91",
3
+ "version": "1.0.92",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"