@rededor/site-front-end-lib 0.0.59 → 0.0.60

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,5 +1,6 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { AfterViewInit, EventEmitter } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
+ import { Estados } from '../../../enums';
3
4
  import { FilterPlanosConvenios, FilterPlanosConveniosChange, FilterPlanosConveniosCobertura } from '../../../models/filters/filter-planos-convenios.model';
4
5
  import { CuraService } from '../../../services';
5
6
  import * as i0 from "@angular/core";
@@ -8,11 +9,13 @@ interface CuraCheckboxOption<T = any> {
8
9
  checked: boolean;
9
10
  indeterminate?: boolean;
10
11
  }
11
- export declare class FilterPlanosConveniosComponent {
12
+ export declare class FilterPlanosConveniosComponent implements AfterViewInit {
12
13
  private readonly curaService;
13
14
  filterChange: EventEmitter<FilterPlanosConveniosChange>;
15
+ withContainerStyle: boolean;
14
16
  isLoading: boolean;
15
17
  emitOnChange: boolean;
18
+ initialEstado: Estados | string | number | null;
16
19
  estados: FilterPlanosConvenios[];
17
20
  coberturas: FilterPlanosConveniosCobertura[];
18
21
  unidadeControl: FormControl<string | number | null>;
@@ -20,15 +23,17 @@ export declare class FilterPlanosConveniosComponent {
20
23
  coberturaControl: FormControl<FilterPlanosConveniosCobertura[] | null>;
21
24
  styleBinding: {
22
25
  '--neutral-darker': string | null;
23
- '--neutral-dark': string | null;
26
+ '--neutral-light': string | null;
27
+ '--neutral-lighter': string | null;
24
28
  };
25
29
  constructor(curaService: CuraService);
30
+ ngAfterViewInit(): void;
26
31
  inputTextChange({ detail }: CustomEvent<number | string>): void;
27
32
  selectChange({ detail }: CustomEvent<number | string>): void;
28
33
  checkboxChange({ detail }: CustomEvent<CuraCheckboxOption<string>>): void;
29
34
  filter(): void;
30
35
  reset(): void;
31
36
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterPlanosConveniosComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<FilterPlanosConveniosComponent, "rdsite-filter-planos-convenios", never, { "isLoading": { "alias": "isLoading"; "required": false; }; "emitOnChange": { "alias": "emitOnChange"; "required": false; }; "estados": { "alias": "estados"; "required": false; }; "coberturas": { "alias": "coberturas"; "required": false; }; }, { "filterChange": "filterChange"; }, never, never, true, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterPlanosConveniosComponent, "rdsite-filter-planos-convenios", never, { "withContainerStyle": { "alias": "withContainerStyle"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "emitOnChange": { "alias": "emitOnChange"; "required": false; }; "initialEstado": { "alias": "initialEstado"; "required": false; }; "estados": { "alias": "estados"; "required": false; }; "coberturas": { "alias": "coberturas"; "required": false; }; }, { "filterChange": "filterChange"; }, never, never, true, never>;
33
38
  }
34
39
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rededor/site-front-end-lib",
3
- "version": "0.0.59",
3
+ "version": "0.0.60",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.0",
6
6
  "@angular/core": "^17.3.0",