cloud-ide-element 1.0.93 → 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.
@@ -2600,6 +2600,7 @@ class ICoreCyfmSave {
2600
2600
  cyfm_file_status_sygmt;
2601
2601
  cyfm_group_id; // Group ID for multiple file uploads
2602
2602
  cyfm_isactive;
2603
+ cyfm_ismultiple;
2603
2604
  cyfm_file_base64 = "";
2604
2605
  cyfm_temp_unique_id = "";
2605
2606
  constructor(init) {
@@ -2719,6 +2720,7 @@ class CideEleFileManagerService {
2719
2720
  cyfm_file_status_sygmt: uploadOptions?.fileStatus || 'file_manager_file_status_active',
2720
2721
  cyfm_group_id: uploadOptions?.groupId, // Group ID for multiple file uploads
2721
2722
  cyfm_isactive: true,
2723
+ cyfm_ismultiple: uploadOptions?.isMultiple || false,
2722
2724
  cyfm_file_base64: base64Data,
2723
2725
  cyfm_temp_unique_id: fileId
2724
2726
  };
@@ -4097,7 +4099,8 @@ class CideEleFileInputComponent {
4097
4099
  // IMPORTANT: All files use the SAME group ID that was generated before starting uploads
4098
4100
  const uploadDataWithGroupId = {
4099
4101
  ...this.uploadDataSignal(),
4100
- groupId: groupId
4102
+ groupId: groupId,
4103
+ isMultiple: true
4101
4104
  };
4102
4105
  files.forEach((file, index) => {
4103
4106
  console.log(`📤 [FileInput] Uploading file ${index + 1}/${totalFiles}: "${file.name}" with group ID: ${groupId}`);