@rededor/site-front-end-lib 1.3.57 → 1.3.59

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.
@@ -1,15 +1,19 @@
1
- import { ElementRef, QueryList, EventEmitter } from '@angular/core';
1
+ import { ElementRef, QueryList, EventEmitter, AfterViewInit } from '@angular/core';
2
2
  import { SectionNavigationConfig, SectionNavigationData } from '../../models/section-navigation.model';
3
3
  import { CuraService } from '../../services';
4
4
  import { Router } from '@angular/router';
5
5
  import * as i0 from "@angular/core";
6
- export declare class SidebarNavigationComponent {
6
+ export declare class SidebarNavigationComponent implements AfterViewInit {
7
7
  private curaService;
8
8
  private router;
9
+ private platformId;
10
+ private readonly document;
9
11
  readonly sections: import("@angular/core").WritableSignal<SectionNavigationData[]>;
10
12
  readonly config: import("@angular/core").WritableSignal<SectionNavigationConfig | undefined>;
11
13
  readonly activeSection: import("@angular/core").WritableSignal<string>;
12
14
  selectedIndex: number;
15
+ defaultAnchorAdjustment: number;
16
+ private menuHeaderHeight;
13
17
  anchorAdjustment: number;
14
18
  title: string;
15
19
  ariaLabel: string;
@@ -22,7 +26,8 @@ export declare class SidebarNavigationComponent {
22
26
  styleBinding: {
23
27
  '--font-family': string | null;
24
28
  };
25
- constructor(curaService: CuraService, router: Router);
29
+ constructor(curaService: CuraService, router: Router, platformId: object, document: Document);
30
+ ngAfterViewInit(): void;
26
31
  private windowScroll;
27
32
  getPath(sectionId: string): string;
28
33
  onSectionClick(event: SectionNavigationData): void;
@@ -1,9 +1,9 @@
1
- import { ElementRef, QueryList, EventEmitter } from '@angular/core';
1
+ import { ElementRef, QueryList, EventEmitter, AfterViewInit } from '@angular/core';
2
2
  import { SectionNavigationConfig, SectionNavigationData } from '../../models/section-navigation.model';
3
3
  import { CuraService } from '../../services';
4
4
  import { Router } from '@angular/router';
5
5
  import * as i0 from "@angular/core";
6
- export declare class StickyNavigationComponent {
6
+ export declare class StickyNavigationComponent implements AfterViewInit {
7
7
  private curaService;
8
8
  private router;
9
9
  private platformId;
@@ -14,6 +14,8 @@ export declare class StickyNavigationComponent {
14
14
  readonly isOpen: import("@angular/core").WritableSignal<boolean>;
15
15
  selectedIndex: number;
16
16
  defaultAnchorAdjustment: number;
17
+ private menuHeaderHeight;
18
+ private menuStickyClosedHeight;
17
19
  anchorAdjustment: number;
18
20
  title: string;
19
21
  ariaLabel: string;
@@ -28,6 +30,7 @@ export declare class StickyNavigationComponent {
28
30
  '--font-family': string | null;
29
31
  };
30
32
  constructor(curaService: CuraService, router: Router, platformId: object, document: Document);
33
+ ngAfterViewInit(): void;
31
34
  private windowScroll;
32
35
  getPath(sectionId: string): string;
33
36
  onSectionClick(event: SectionNavigationData): void;
@@ -72,6 +72,7 @@ export declare class SiteBackendService {
72
72
  getEspecialidadesByUnidade(idqdUnidade: string): Observable<string[]>;
73
73
  getRecaptchaResult(token: string): Observable<any>;
74
74
  getMedicoCv(medicoId: number): Observable<MedicoCv>;
75
+ getMedicoRqes(medicoId: string): Observable<any>;
75
76
  getCentrosMedicos(categoria?: string): Observable<CentroMedico[]>;
76
77
  checkMedico(conselhoCodigo: string): Observable<any>;
77
78
  saveMedico(novoMedico: CentroEstudosBackendMedico): Observable<CentroEstudosBackendMedico>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rededor/site-front-end-lib",
3
- "version": "1.3.57",
3
+ "version": "1.3.59",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",