@hestia-earth/ui-components 0.42.25 → 0.42.28
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
|
@@ -216,6 +216,7 @@ declare enum Breakpoint {
|
|
|
216
216
|
type BreakpointType = `${Breakpoint}`;
|
|
217
217
|
declare class ResponsiveService {
|
|
218
218
|
private readonly breakPointObserver;
|
|
219
|
+
private readonly isBrowser;
|
|
219
220
|
private readonly windowWidth$;
|
|
220
221
|
readonly isMobile$: Observable<boolean>;
|
|
221
222
|
readonly isTablet$: Observable<boolean>;
|
|
@@ -1217,7 +1218,8 @@ declare class ResizedEvent {
|
|
|
1217
1218
|
}
|
|
1218
1219
|
declare class ResizedDirective implements OnInit, OnDestroy {
|
|
1219
1220
|
private readonly element;
|
|
1220
|
-
private
|
|
1221
|
+
private readonly isBrowser;
|
|
1222
|
+
private observer?;
|
|
1221
1223
|
private oldRect?;
|
|
1222
1224
|
protected readonly resized: _angular_core.OutputEmitterRef<ResizedEvent>;
|
|
1223
1225
|
constructor();
|
|
@@ -1231,8 +1233,8 @@ declare class ResizedDirective implements OnInit, OnDestroy {
|
|
|
1231
1233
|
declare const distinctUntilChangedDeep: <T>() => rxjs.MonoTypeOperatorFunction<T>;
|
|
1232
1234
|
declare const takeAfterViewInit: <T>(fn: () => T, settings?: {
|
|
1233
1235
|
take: number;
|
|
1234
|
-
}) =>
|
|
1235
|
-
declare const injectResizeEvent$: (elementRef: ElementRef) =>
|
|
1236
|
+
}) => Observable<T>;
|
|
1237
|
+
declare const injectResizeEvent$: (elementRef: ElementRef) => Observable<ResizedEvent>;
|
|
1236
1238
|
|
|
1237
1239
|
declare const toThousands: (input: number, digits?: number) => string;
|
|
1238
1240
|
|
|
@@ -1509,6 +1511,8 @@ type drawerPosition = 'left' | 'right';
|
|
|
1509
1511
|
declare class DrawerContainerComponent implements OnDestroy {
|
|
1510
1512
|
private readonly responsiveService;
|
|
1511
1513
|
private readonly localStorage;
|
|
1514
|
+
private readonly document;
|
|
1515
|
+
private readonly isBrowser;
|
|
1512
1516
|
private readonly contentContainer;
|
|
1513
1517
|
protected readonly menuState: _angular_core.WritableSignal<"close" | "open">;
|
|
1514
1518
|
/**
|
|
@@ -1980,6 +1984,7 @@ interface ISocialTagsConfig {
|
|
|
1980
1984
|
}
|
|
1981
1985
|
declare class SocialTagsComponent {
|
|
1982
1986
|
private readonly meta;
|
|
1987
|
+
private readonly document;
|
|
1983
1988
|
protected readonly config: _angular_core.InputSignal<ISocialTagsConfig>;
|
|
1984
1989
|
protected readonly classes = "is-hidden";
|
|
1985
1990
|
private readonly configs;
|
|
@@ -4840,7 +4845,7 @@ declare class HESvgIconComponent {
|
|
|
4840
4845
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HESvgIconComponent, "he-svg-icon", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
4841
4846
|
}
|
|
4842
4847
|
|
|
4843
|
-
declare const loadSvgSprite: () => Promise<string>;
|
|
4848
|
+
declare const loadSvgSprite: () => Promise<void> | Promise<string>;
|
|
4844
4849
|
|
|
4845
4850
|
declare class NodeAggregatedInfoComponent {
|
|
4846
4851
|
protected readonly icon: _angular_core.InputSignal<svgIconNames>;
|