cloud-ide-element 1.0.105 → 1.0.106

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.
@@ -2972,6 +2972,9 @@ class CideEleFileManagerService {
2972
2972
  * @returns Array of files for the group
2973
2973
  */
2974
2974
  getFetchedFilesByGroupId(groupId) {
2975
+ console.log("getFetchedFilesByGroupId getFetchedFilesByGroupId", groupId);
2976
+ console.log("getFetchedFilesByGroupId this._fetchedFiles()", this._fetchedFiles());
2977
+ console.log("getFetchedFilesByGroupId this._fetchedFiles().get(groupId)", this._fetchedFiles().get(groupId));
2975
2978
  return this._fetchedFiles().get(groupId) || [];
2976
2979
  }
2977
2980
  /**
@@ -3347,6 +3350,7 @@ class CideEleFloatingFileUploaderComponent {
3347
3350
  console.log("groupId groupId", groupId);
3348
3351
  const files = this.fileManagerService.getAllFilesForGroup(groupId);
3349
3352
  const fetchedFiles = this.fileManagerService.getFetchedFilesByGroupId(groupId);
3353
+ console.log("fetchedFiles fetchedFiles", fetchedFiles);
3350
3354
  const activeUploads = Array.from(this.fileManagerService.activeUploads().entries()).filter(([_, upload]) => upload.groupId === groupId);
3351
3355
  console.log('🔍 [FloatingFileUploader] allFilesForGroup computed - DETAILED:', {
3352
3356
  groupId,