@carefirst/library 3.2.61 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. package/esm2022/lib/components/alert/alert.component.mjs +3 -3
  2. package/esm2022/lib/components/badge/badge.component.mjs +3 -3
  3. package/esm2022/lib/components/button/button.component.mjs +5 -5
  4. package/esm2022/lib/components/calendar/calendar.component.mjs +3 -3
  5. package/esm2022/lib/components/chat-bubble/chat-bubble.component.mjs +3 -3
  6. package/esm2022/lib/components/form-input/form-input.component.mjs +3 -3
  7. package/esm2022/lib/components/form-input-select/form-input-select.component.mjs +4 -4
  8. package/esm2022/lib/components/form-input-text-area/form-input-text-area.component.mjs +3 -3
  9. package/esm2022/lib/components/form-validation/form-validation.component.mjs +3 -3
  10. package/esm2022/lib/components/icon/icon.component.mjs +3 -3
  11. package/esm2022/lib/components/logo/logo.component.mjs +3 -3
  12. package/esm2022/lib/components/mix-p/mix-p.component.mjs +3 -3
  13. package/esm2022/lib/components/notification/notification.component.mjs +8 -5
  14. package/esm2022/lib/components/page/page.component.mjs +3 -3
  15. package/esm2022/lib/components/spacer/spacer.component.mjs +3 -3
  16. package/esm2022/lib/components/spinner/spinner.component.mjs +3 -3
  17. package/esm2022/lib/components/verification-code/verification-code.component.mjs +3 -3
  18. package/esm2022/lib/directives/button-loader.directive.mjs +6 -6
  19. package/esm2022/lib/library.module.mjs +4 -4
  20. package/fesm2022/carefirst-library.mjs +66 -63
  21. package/fesm2022/carefirst-library.mjs.map +1 -1
  22. package/lib/components/form-input-select/form-input-select.component.d.ts +5 -5
  23. package/lib/components/notification/notification.component.d.ts +3 -2
  24. package/package.json +5 -5
@@ -5,18 +5,18 @@ import * as i0 from "@angular/core";
5
5
  declare const inputSelectC: {
6
6
  readonly labelPlacement: readonly ["fixed", "floating", "stacked", "start", "end"];
7
7
  };
8
- export declare class FormInputSelectComponent<T> implements OnChanges {
8
+ export declare class FormInputSelectComponent<T, Q extends T> implements OnChanges {
9
9
  label: string;
10
10
  options: FormInputSelectOptionsI<T>[];
11
11
  labelPlacement?: (typeof inputSelectC.labelPlacement)[number];
12
12
  placeholder?: string | undefined;
13
13
  control?: FormControl | null;
14
14
  customErrorMessage: string | null;
15
- value: FormInputSelectOptionsI<T>['value'] | undefined;
16
- valueChange: EventEmitter<T | undefined>;
15
+ value: Q | undefined;
16
+ valueChange: EventEmitter<Q | undefined>;
17
17
  inputLabelPlacement: typeof this.labelPlacement;
18
18
  ngOnChanges(changes: SimpleChanges): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any>, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<FormInputSelectComponent<any>, "cf-form-input-select", never, { "label": { "alias": "label"; "required": false; }; "options": { "alias": "options"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "control": { "alias": "control"; "required": false; }; "customErrorMessage": { "alias": "customErrorMessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any, any>, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormInputSelectComponent<any, any>, "cf-form-input-select", never, { "label": { "alias": "label"; "required": false; }; "options": { "alias": "options"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "control": { "alias": "control"; "required": false; }; "customErrorMessage": { "alias": "customErrorMessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
21
21
  }
22
22
  export {};
@@ -2,8 +2,9 @@ import { EventEmitter } from '@angular/core';
2
2
  import type { NotificationPayloadI } from '../../interfaces/notification.interface';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class NotificationComponent {
5
- data?: NotificationPayloadI | undefined;
5
+ data: NotificationPayloadI | undefined;
6
+ dataChange: EventEmitter<NotificationPayloadI | undefined>;
6
7
  buttonClick: EventEmitter<string | number>;
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "cf-notification", never, { "data": { "alias": "data"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, ["*"], false, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "cf-notification", never, { "data": { "alias": "data"; "required": false; }; }, { "dataChange": "dataChange"; "buttonClick": "buttonClick"; }, never, ["*"], false, never>;
9
10
  }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "3.2.61",
3
+ "version": "4.0.0",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {
7
- "@angular/common": "~17.3.0 || ~18.0.0",
8
- "@angular/core": "~17.3.0 || ~18.0.0",
9
- "@ionic/angular": "~8.1.0",
10
- "dayjs": "~1.11.10",
7
+ "@angular/common": "~18",
8
+ "@angular/core": "~18",
9
+ "@ionic/angular": "~8",
10
+ "dayjs": "~1.11.12",
11
11
  "password-validator": "~5.3.0"
12
12
  },
13
13
  "dependencies": {