@carefirst/library 3.2.7 → 3.2.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -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,14 +1,14 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "3.2.7",
3
+ "version": "3.2.9",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {
7
- "@angular/common": "^17.3.8",
8
- "@angular/core": "^17.3.8",
9
- "@ionic/angular": "^8.1.1",
10
- "dayjs": "^1.11.10",
11
- "password-validator": "^5.3.0"
7
+ "@angular/common": "~17.3.0 || ~18.0.0",
8
+ "@angular/core": "~17.3.0 || ~18.0.0",
9
+ "@ionic/angular": "~8.1.0 || ~8.2.0",
10
+ "dayjs": "~1.11.10",
11
+ "password-validator": "~5.3.0"
12
12
  },
13
13
  "dependencies": {
14
14
  "tslib": "^2.3.0"