@hestia-earth/ui-components 0.43.6 → 0.43.8

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.8",
4
4
  "description": "HESTIA reusable components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1605,7 +1605,11 @@ declare class DrawerContainerComponent implements OnDestroy {
1605
1605
  /**
1606
1606
  * we use combineLatest instead of computed to avoid the animation flickering (wait for all sources to emit)
1607
1607
  */
1608
- protected readonly reduceAnimation: _angular_core.Signal<"reduced" | "full">;
1608
+ protected readonly isReduced: _angular_core.Signal<boolean>;
1609
+ /**
1610
+ * only transition the content once it has been rendered, so the initial layout snaps into place.
1611
+ */
1612
+ protected readonly animated: _angular_core.WritableSignal<boolean>;
1609
1613
  private readonly _contentContainerPadding$;
1610
1614
  private readonly storageKey;
1611
1615
  private readonly storedConfiguration;
@@ -3258,6 +3262,12 @@ declare class FilesDropZoneComponent {
3258
3262
  readonly filename: _angular_core.InputSignal<string>;
3259
3263
  readonly filesSelected: _angular_core.OutputEmitterRef<File[]>;
3260
3264
  private readonly fileInput;
3265
+ /**
3266
+ * Opens the file picker. Public because the zone is commonly hidden on mobile in favour of a
3267
+ * plain "Browse files" button placed *outside* it, which needs a way in — grab the component
3268
+ * with a template ref (`<he-files-drop-zone #zone />` … `(click)="zone.open()"`).
3269
+ */
3270
+ open(): void;
3261
3271
  protected onClick(): void;
3262
3272
  protected onDropped({ files }: IFilesDropped): void;
3263
3273
  protected onPicked(): void;