@hestia-earth/ui-components 0.43.6 → 0.43.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/ui-components",
3
- "version": "0.43.6",
3
+ "version": "0.43.7",
4
4
  "description": "HESTIA reusable components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -3258,6 +3258,12 @@ declare class FilesDropZoneComponent {
3258
3258
  readonly filename: _angular_core.InputSignal<string>;
3259
3259
  readonly filesSelected: _angular_core.OutputEmitterRef<File[]>;
3260
3260
  private readonly fileInput;
3261
+ /**
3262
+ * Opens the file picker. Public because the zone is commonly hidden on mobile in favour of a
3263
+ * plain "Browse files" button placed *outside* it, which needs a way in — grab the component
3264
+ * with a template ref (`<he-files-drop-zone #zone />` … `(click)="zone.open()"`).
3265
+ */
3266
+ open(): void;
3261
3267
  protected onClick(): void;
3262
3268
  protected onDropped({ files }: IFilesDropped): void;
3263
3269
  protected onPicked(): void;