@rededor/site-front-end-lib 1.0.24 → 1.0.26

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.
@@ -5,7 +5,6 @@ export declare class ExpandableCardComponent implements OnChanges {
5
5
  private readonly curaService;
6
6
  opened: boolean;
7
7
  label: string;
8
- linkLabel: string;
9
8
  link: string;
10
9
  badgeLabel: string;
11
10
  openIcon: string;
@@ -18,6 +17,7 @@ export declare class ExpandableCardComponent implements OnChanges {
18
17
  '--neutral-purewhite': string | null;
19
18
  '--neutral-black': string | null;
20
19
  '--color-one-dark': string | null;
20
+ '--font-family': string | null;
21
21
  };
22
22
  classes: string[];
23
23
  constructor(curaService: CuraService);
@@ -25,5 +25,5 @@ export declare class ExpandableCardComponent implements OnChanges {
25
25
  toggleCard(): void;
26
26
  checkDisabledCard(): void;
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<ExpandableCardComponent, never>;
28
- static ɵcmp: i0.ɵɵComponentDeclaration<ExpandableCardComponent, "rdsite-expandable-card", never, { "opened": { "alias": "opened"; "required": false; }; "label": { "alias": "label"; "required": false; }; "linkLabel": { "alias": "linkLabel"; "required": false; }; "link": { "alias": "link"; "required": false; }; "badgeLabel": { "alias": "badgeLabel"; "required": false; }; "openIcon": { "alias": "openIcon"; "required": false; }; "closeIcon": { "alias": "closeIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "toggle": "toggle"; }, never, ["*"], true, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExpandableCardComponent, "rdsite-expandable-card", never, { "opened": { "alias": "opened"; "required": false; }; "label": { "alias": "label"; "required": false; }; "link": { "alias": "link"; "required": false; }; "badgeLabel": { "alias": "badgeLabel"; "required": false; }; "openIcon": { "alias": "openIcon"; "required": false; }; "closeIcon": { "alias": "closeIcon"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "toggle": "toggle"; }, never, ["*"], true, never>;
29
29
  }
@@ -19,6 +19,7 @@ export declare class CtaWrapperComponent implements OnInit {
19
19
  '--color-one-light': string | null;
20
20
  '--color-one-dark': string | null;
21
21
  '--color-one-darker': string | null;
22
+ '--font-family': string | null;
22
23
  };
23
24
  class: string[];
24
25
  constructor(curaService: CuraService, nguService: NguCarouselService, platformId: object);
@@ -38,3 +38,4 @@ export * from './image/image.component';
38
38
  export * from './cards/card-unidade-planos-convenios/card-unidade-planos-convenios.component';
39
39
  export * from './cards/expandable-card/expandable-card.component';
40
40
  export * from './banner/content-banner/content-banner.component';
41
+ export * from './pagination/pagination.component';
@@ -0,0 +1,29 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { CuraService } from '../../services';
3
+ import * as i0 from "@angular/core";
4
+ export declare class PaginationComponent {
5
+ private readonly curaService;
6
+ totalPages: number;
7
+ activePage: number;
8
+ perPage: number;
9
+ perPageOptions: number[];
10
+ customStyle: {
11
+ [key: string]: string;
12
+ };
13
+ containerClass: boolean;
14
+ pageChange: EventEmitter<number>;
15
+ perPageChange: EventEmitter<number>;
16
+ styleBinding: {
17
+ '--font-family': string | null;
18
+ '--primary-base': string | null;
19
+ '--neutral-purewhite': string | null;
20
+ '--neutral-light': string | null;
21
+ '--neutral-dark': string | null;
22
+ '--neutral-darker': string | null;
23
+ };
24
+ constructor(curaService: CuraService);
25
+ next(): void;
26
+ prev(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "rdsite-pagination", never, { "totalPages": { "alias": "totalPages"; "required": false; }; "activePage": { "alias": "activePage"; "required": false; }; "perPage": { "alias": "perPage"; "required": false; }; "perPageOptions": { "alias": "perPageOptions"; "required": false; }; "customStyle": { "alias": "customStyle"; "required": false; }; "containerClass": { "alias": "containerClass"; "required": false; }; }, { "pageChange": "pageChange"; "perPageChange": "perPageChange"; }, never, never, true, never>;
29
+ }
@@ -20,11 +20,12 @@ export declare class SectionNavigationComponent implements OnInit, OnDestroy {
20
20
  anchorAdjustment: number;
21
21
  sectionChange: EventEmitter<SectionNavigationData>;
22
22
  styleBinding: {
23
+ '--neutral-purewhite': string | null;
24
+ '--neutral-dark': string | null;
25
+ '--neutral-black': string | null;
23
26
  '--color-base': string | null;
24
- '--color-text': string | null;
25
- '--color-active-text': string | null;
26
27
  '--font-size': string;
27
- '--font-weight-active': string;
28
+ '--font-family': string | null;
28
29
  };
29
30
  navigationMenu: ElementRef<HTMLUListElement>;
30
31
  constructor();
@@ -7,5 +7,6 @@ export declare enum RdsiteModalComponentStyle {
7
7
  BASIC = "basic",
8
8
  SHARING = "sharing",
9
9
  FORMFALLBACK = "form-fallback",
10
- FILTER = "filter"
10
+ FILTER = "filter",
11
+ FILTERDOENCAS = "filter-doencas"
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rededor/site-front-end-lib",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",