@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/fesm2022/hestia-earth-ui-components-svg-icons.mjs +2 -2
- package/fesm2022/hestia-earth-ui-components-svg-icons.mjs.map +1 -1
- package/fesm2022/hestia-earth-ui-components.mjs +18 -19
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/package.json +1 -1
- package/types/hestia-earth-ui-components.d.ts +11 -1
package/package.json
CHANGED
|
@@ -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
|
|
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;
|