@hestia-earth/ui-components 0.31.35 → 0.31.37
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/common/navigation-menu/navigation-menu.component.d.ts +4 -3
- package/fesm2022/hestia-earth-ui-components.mjs +24 -15
- package/fesm2022/hestia-earth-ui-components.mjs.map +1 -1
- package/node/node-logs-models/node-logs-models-logs-status/node-logs-models-logs-status.component.d.ts +2 -0
- package/package.json +1 -1
- package/schema/schema-info/schema-info.component.d.ts +11 -11
- package/svg-icons/dot-circle.svg +3 -0
- package/svg-icons/icons.json +4 -0
|
@@ -49,17 +49,18 @@ export declare class NavigationMenuComponent {
|
|
|
49
49
|
protected readonly links: import("@angular/core").InputSignal<INavigationMenuLink[]>;
|
|
50
50
|
protected readonly sticky: import("@angular/core").InputSignal<boolean>;
|
|
51
51
|
protected readonly collapsible: import("@angular/core").InputSignal<boolean>;
|
|
52
|
+
protected readonly singlePrimaryLinkActive: import("@angular/core").InputSignal<boolean>;
|
|
52
53
|
protected readonly routerLinkMatchOptions: import("@angular/core").InputSignal<IsActiveMatchOptions>;
|
|
53
54
|
protected readonly closed: import("@angular/core").OutputEmitterRef<void>;
|
|
54
55
|
protected trackByLink({ title, url, queryParams, fragment }: INavigationMenuLink): string;
|
|
55
56
|
protected readonly primaryLinkExpandable: (link: INavigationMenuLink) => boolean;
|
|
56
57
|
protected readonly withPrimaryIcons: import("@angular/core").Signal<boolean>;
|
|
57
|
-
protected toggleLink(link: INavigationMenuLink): boolean;
|
|
58
|
+
protected toggleLink($event: Event, link: INavigationMenuLink): boolean;
|
|
58
59
|
private collapseOtherLinks;
|
|
59
60
|
protected primaryLinkActiveChange(item: INavigationMenuLink): void;
|
|
60
61
|
protected toggleSecondaryLink(item: INavigationMenuLink, index: number): void;
|
|
61
62
|
protected toggleTertiaryLink(item: INavigationMenuLink, primaryIndex: number, secondaryIndex: number): void;
|
|
62
|
-
protected secondaryLinkActiveChange(item: INavigationMenuLink,
|
|
63
|
+
protected secondaryLinkActiveChange(item: INavigationMenuLink, primaryIndex: number): void;
|
|
63
64
|
protected tertiaryLinkActiveChange(item: INavigationMenuLink, primaryIndex: number, secondaryIndex: number): void;
|
|
64
65
|
protected primaryLinkActiveOptions(link: INavigationMenuLink): IsActiveMatchOptions | {
|
|
65
66
|
exact: boolean;
|
|
@@ -67,5 +68,5 @@ export declare class NavigationMenuComponent {
|
|
|
67
68
|
protected withSublinks(link: INavigationMenuLink): boolean;
|
|
68
69
|
protected close(): void;
|
|
69
70
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationMenuComponent, never>;
|
|
70
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationMenuComponent, "he-navigation-menu", never, { "links": { "alias": "links"; "required": false; "isSignal": true; }; "sticky": { "alias": "sticky"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "routerLinkMatchOptions": { "alias": "routerLinkMatchOptions"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, never, ["[outer-content]", "[inner-content]"], true, never>;
|
|
71
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationMenuComponent, "he-navigation-menu", never, { "links": { "alias": "links"; "required": false; "isSignal": true; }; "sticky": { "alias": "sticky"; "required": false; "isSignal": true; }; "collapsible": { "alias": "collapsible"; "required": false; "isSignal": true; }; "singlePrimaryLinkActive": { "alias": "singlePrimaryLinkActive"; "required": false; "isSignal": true; }; "routerLinkMatchOptions": { "alias": "routerLinkMatchOptions"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, never, ["[outer-content]", "[inner-content]"], true, never>;
|
|
71
72
|
}
|