@rededor/site-front-end-lib 1.3.26 → 1.3.27

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.
@@ -38,3 +38,5 @@ export * from './banner/content-banner/content-banner.component';
38
38
  export * from './pagination/pagination.component';
39
39
  export * from './cards/testimonial-card/testimonial-card.component';
40
40
  export * from './carousels/testimonials-carousel/testimonials-carousel.component';
41
+ export * from './sidebar-navigation/sidebar-navigation.component';
42
+ export * from './sticky-navigation/sticky-navigation.component';
@@ -0,0 +1,19 @@
1
+ import { ElementRef, QueryList, EventEmitter } from '@angular/core';
2
+ import { SectionNavigationConfig, SectionNavigationData } from '../../models/section-navigation.model';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SidebarNavigationComponent {
5
+ readonly sections: import("@angular/core").WritableSignal<SectionNavigationData[]>;
6
+ readonly config: import("@angular/core").WritableSignal<SectionNavigationConfig | undefined>;
7
+ readonly activeSection: import("@angular/core").WritableSignal<string>;
8
+ anchorAdjustment: number;
9
+ title: string;
10
+ ariaLabel: string;
11
+ set navigationSections(value: SectionNavigationData[]);
12
+ set navigationConfig(value: SectionNavigationConfig);
13
+ anchorsEl: QueryList<ElementRef<HTMLAnchorElement>>;
14
+ sectionChange: EventEmitter<SectionNavigationData>;
15
+ onWindowScroll(): void;
16
+ private windowScroll;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarNavigationComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidebarNavigationComponent, "nav[rdsite-sidebar-navigation]", never, { "anchorAdjustment": { "alias": "anchorAdjustment"; "required": false; }; "title": { "alias": "title"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "navigationSections": { "alias": "navigationSections"; "required": true; }; "navigationConfig": { "alias": "navigationConfig"; "required": false; }; }, { "sectionChange": "sectionChange"; }, never, never, true, never>;
19
+ }
@@ -0,0 +1,27 @@
1
+ import { ElementRef, QueryList, EventEmitter } from '@angular/core';
2
+ import { SectionNavigationConfig, SectionNavigationData } from '../../models/section-navigation.model';
3
+ import { CuraService } from '../../services';
4
+ import * as i0 from "@angular/core";
5
+ export declare class StickyNavigationComponent {
6
+ private curaService;
7
+ readonly sections: import("@angular/core").WritableSignal<SectionNavigationData[]>;
8
+ readonly config: import("@angular/core").WritableSignal<SectionNavigationConfig | undefined>;
9
+ readonly activeSection: import("@angular/core").WritableSignal<string>;
10
+ isOpen: boolean;
11
+ selectedIndex: number;
12
+ anchorAdjustment: number;
13
+ title: string;
14
+ ariaLabel: string;
15
+ set navigationSections(value: SectionNavigationData[]);
16
+ set navigationConfig(value: SectionNavigationConfig);
17
+ anchorsEl: QueryList<ElementRef<HTMLAnchorElement>>;
18
+ sectionChange: EventEmitter<SectionNavigationData>;
19
+ onWindowScroll(): void;
20
+ styleBinding: {
21
+ '--neutral-purewhite': string | null;
22
+ };
23
+ constructor(curaService: CuraService);
24
+ private windowScroll;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<StickyNavigationComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<StickyNavigationComponent, "nav[rdsite-sticky-navigation]", never, { "anchorAdjustment": { "alias": "anchorAdjustment"; "required": false; }; "title": { "alias": "title"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "navigationSections": { "alias": "navigationSections"; "required": true; }; "navigationConfig": { "alias": "navigationConfig"; "required": false; }; }, { "sectionChange": "sectionChange"; }, never, never, true, never>;
27
+ }
@@ -8,5 +8,6 @@ export declare enum RdsiteModalComponentStyle {
8
8
  SHARING = "sharing",
9
9
  FORMFALLBACK = "form-fallback",
10
10
  FILTER = "filter",
11
- FILTERDOENCAS = "filter-doencas"
11
+ FILTERDOENCAS = "filter-doencas",
12
+ PHOTOGALLERY = "photo-gallery"
12
13
  }
@@ -2,5 +2,6 @@ export declare enum RdsiteModalDrawerComponentStyle {
2
2
  DEFAULT = "default",
3
3
  DRAWERDOCTOR = "doctor-card",
4
4
  FORMFALLBACK = "form-fallback",
5
- FILTERDOENCAS = "filter-doencas"
5
+ FILTERDOENCAS = "filter-doencas",
6
+ PHOTOGALLERY = "photo-gallery"
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rededor/site-front-end-lib",
3
- "version": "1.3.26",
3
+ "version": "1.3.27",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",