cloud-ide-element 1.0.70 → 1.0.72

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
@@ -602,6 +602,7 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
602
602
  readonly uploadNotificationId: _angular_core.WritableSignal<string | null>;
603
603
  readonly isDragOver: _angular_core.WritableSignal<boolean>;
604
604
  readonly groupId: _angular_core.WritableSignal<string | null>;
605
+ readonly isMultipleUploadMode: _angular_core.WritableSignal<boolean>;
605
606
  readonly hasFiles: _angular_core.Signal<boolean>;
606
607
  readonly canUpload: _angular_core.Signal<boolean>;
607
608
  readonly isInErrorState: _angular_core.Signal<boolean>;
@@ -628,11 +629,12 @@ declare class CideEleFileInputComponent implements ControlValueAccessor, OnDestr
628
629
  private uploadFile;
629
630
  /**
630
631
  * Upload multiple files with group ID support
631
- * Generates a group ID if not provided and uploads all files with the same group ID
632
+ * FLOW: 1) Generate group ID first, 2) Upload all files with same group ID, 3) Emit group ID on completion
632
633
  */
633
634
  private uploadMultipleFiles;
634
635
  /**
635
636
  * Start uploading multiple files with the provided group ID
637
+ * All files will be uploaded with the SAME group ID that was generated before this method
636
638
  */
637
639
  private startMulti;
638
640
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-element",
3
- "version": "1.0.70",
3
+ "version": "1.0.72",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"