cloud-ide-element 1.0.77 → 1.0.78

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
@@ -1052,6 +1052,18 @@ declare class CideEleFloatingFileUploaderComponent implements OnInit, OnDestroy
1052
1052
  * Remove drag and drop listeners
1053
1053
  */
1054
1054
  private removeDragAndDropListeners;
1055
+ /**
1056
+ * Set up file input change listeners
1057
+ */
1058
+ private setupFileInputListeners;
1059
+ /**
1060
+ * Remove file input listeners
1061
+ */
1062
+ private removeFileInputListeners;
1063
+ /**
1064
+ * Handle file input change events
1065
+ */
1066
+ private handleFileInputChange;
1055
1067
  /**
1056
1068
  * Handle drag over event
1057
1069
  */
@@ -1144,6 +1156,11 @@ declare class CideEleFloatingFileUploaderComponent implements OnInit, OnDestroy
1144
1156
  * Set current user ID
1145
1157
  */
1146
1158
  setCurrentUserId(userId: string): void;
1159
+ /**
1160
+ * Public method to handle files from external sources
1161
+ * This can be called by other components to trigger the floating uploader
1162
+ */
1163
+ handleExternalFiles(files: File[], userId?: string): void;
1147
1164
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CideEleFloatingFileUploaderComponent, never>;
1148
1165
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<CideEleFloatingFileUploaderComponent, "cide-ele-floating-file-uploader", never, {}, {}, never, never, true, never>;
1149
1166
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloud-ide-element",
3
- "version": "1.0.77",
3
+ "version": "1.0.78",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"