@rededor/site-front-end-lib 1.3.62 → 1.3.63
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/esm2022/lib/components/sidebar-navigation/sidebar-navigation.component.mjs +13 -6
- package/esm2022/lib/components/sticky-navigation/sticky-navigation.component.mjs +13 -6
- package/fesm2022/rededor-site-front-end-lib.mjs +52 -40
- package/fesm2022/rededor-site-front-end-lib.mjs.map +1 -1
- package/lib/components/sidebar-navigation/sidebar-navigation.component.d.ts +4 -1
- package/lib/components/sticky-navigation/sticky-navigation.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -2,9 +2,11 @@ import { ElementRef, QueryList, EventEmitter, AfterViewInit } from '@angular/cor
|
|
|
2
2
|
import { SectionNavigationConfig, SectionNavigationData } from '../../models/section-navigation.model';
|
|
3
3
|
import { CuraService } from '../../services';
|
|
4
4
|
import { Router } from '@angular/router';
|
|
5
|
+
import { Location } from '@angular/common';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class SidebarNavigationComponent implements AfterViewInit {
|
|
7
8
|
private curaService;
|
|
9
|
+
private location;
|
|
8
10
|
private router;
|
|
9
11
|
private platformId;
|
|
10
12
|
private readonly document;
|
|
@@ -26,9 +28,10 @@ export declare class SidebarNavigationComponent implements AfterViewInit {
|
|
|
26
28
|
styleBinding: {
|
|
27
29
|
'--font-family': string | null;
|
|
28
30
|
};
|
|
29
|
-
constructor(curaService: CuraService, router: Router, platformId: object, document: Document);
|
|
31
|
+
constructor(curaService: CuraService, location: Location, router: Router, platformId: object, document: Document);
|
|
30
32
|
ngAfterViewInit(): void;
|
|
31
33
|
private windowScroll;
|
|
34
|
+
getBasePath(): string;
|
|
32
35
|
getPath(sectionId: string): string;
|
|
33
36
|
onSectionClick(event: SectionNavigationData): void;
|
|
34
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavigationComponent, never>;
|
|
@@ -2,9 +2,11 @@ import { ElementRef, QueryList, EventEmitter, AfterViewInit } from '@angular/cor
|
|
|
2
2
|
import { SectionNavigationConfig, SectionNavigationData } from '../../models/section-navigation.model';
|
|
3
3
|
import { CuraService } from '../../services';
|
|
4
4
|
import { Router } from '@angular/router';
|
|
5
|
+
import { Location } from '@angular/common';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class StickyNavigationComponent implements AfterViewInit {
|
|
7
8
|
private curaService;
|
|
9
|
+
private location;
|
|
8
10
|
private router;
|
|
9
11
|
private platformId;
|
|
10
12
|
private readonly document;
|
|
@@ -29,9 +31,10 @@ export declare class StickyNavigationComponent implements AfterViewInit {
|
|
|
29
31
|
'--neutral-purewhite': string | null;
|
|
30
32
|
'--font-family': string | null;
|
|
31
33
|
};
|
|
32
|
-
constructor(curaService: CuraService, router: Router, platformId: object, document: Document);
|
|
34
|
+
constructor(curaService: CuraService, location: Location, router: Router, platformId: object, document: Document);
|
|
33
35
|
ngAfterViewInit(): void;
|
|
34
36
|
private windowScroll;
|
|
37
|
+
getBasePath(): string;
|
|
35
38
|
getPath(sectionId: string): string;
|
|
36
39
|
onSectionClick(event: SectionNavigationData): void;
|
|
37
40
|
toggleOpen(): void;
|