cloud-ide-element 1.0.92 → 1.0.95

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<"idle" | "start" | "uploading" | "success" | "error">;
603
+ readonly uploadStatus: _angular_core.WritableSignal<"uploading" | "error" | "idle" | "start" | "success">;
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[]>;
@@ -711,7 +711,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
711
711
  multiple: boolean;
712
712
  showPreview: boolean;
713
713
  autoUpload: boolean;
714
- uploadStatus: "idle" | "start" | "uploading" | "success" | "error";
714
+ uploadStatus: "uploading" | "error" | "idle" | "start" | "success";
715
715
  isUploading: boolean;
716
716
  uploadProgress: number;
717
717
  files: {
@@ -811,6 +811,7 @@ declare class ICoreCyfmSave implements ICoreCyfm {
811
811
  cyfm_file_status_sygmt?: string;
812
812
  cyfm_group_id?: string;
813
813
  cyfm_isactive?: boolean;
814
+ cyfm_ismultiple?: boolean;
814
815
  cyfm_file_base64: string;
815
816
  cyfm_temp_unique_id: string;
816
817
  constructor(init: ICoreCyfmSave);
@@ -2076,9 +2077,10 @@ interface FileUploadOptions {
2076
2077
  tags?: string[];
2077
2078
  fileStatus?: string;
2078
2079
  groupId?: string;
2080
+ isMultiple?: boolean;
2079
2081
  retryAttempts?: number;
2080
2082
  timeout?: number;
2081
- [key: string]: string | number | string[] | undefined;
2083
+ [key: string]: string | number | string[] | undefined | boolean;
2082
2084
  }
2083
2085
  interface UploadProgress {
2084
2086
  loaded: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-element",
3
- "version": "1.0.92",
3
+ "version": "1.0.95",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"