@carefirst/library 1.2.17 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -20,9 +20,7 @@ export declare class FormInputComponent implements OnChanges {
20
20
  textCenter?: boolean | string | undefined;
21
21
  maxLength?: number | string;
22
22
  greyBackground?: boolean | string | undefined;
23
- ionInputEvent: EventEmitter<string | undefined>;
24
- ngModelValue: string | undefined;
25
- ngModelValueChange: EventEmitter<string | undefined>;
23
+ value: EventEmitter<any>;
26
24
  inputLabelPlacement: typeof this.labelPlacement;
27
25
  localInputMode: typeof this.inputmode;
28
26
  inputClear: boolean;
@@ -32,6 +30,6 @@ export declare class FormInputComponent implements OnChanges {
32
30
  inputGreyBackground: boolean;
33
31
  ngOnChanges(changes: SimpleChanges): void;
34
32
  static ɵfac: i0.ɵɵFactoryDeclaration<FormInputComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<FormInputComponent, "cf-form-input", never, { "label": { "alias": "label"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "type": { "alias": "type"; "required": false; }; "noClearButton": { "alias": "noClearButton"; "required": false; }; "control": { "alias": "control"; "required": false; }; "textCenter": { "alias": "textCenter"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "greyBackground": { "alias": "greyBackground"; "required": false; }; "ngModelValue": { "alias": "ngModelValue"; "required": false; }; }, { "ionInputEvent": "ionInputEvent"; "ngModelValueChange": "ngModelValueChange"; }, never, never, false, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormInputComponent, "cf-form-input", never, { "label": { "alias": "label"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "type": { "alias": "type"; "required": false; }; "noClearButton": { "alias": "noClearButton"; "required": false; }; "control": { "alias": "control"; "required": false; }; "textCenter": { "alias": "textCenter"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "greyBackground": { "alias": "greyBackground"; "required": false; }; }, { "value": "value"; }, never, never, false, never>;
36
34
  }
37
35
  export {};
@@ -7,11 +7,9 @@ export declare class FormInputSelectComponent implements OnChanges {
7
7
  options: FormInputSelectOptionsI[];
8
8
  labelPlacement?: 'fixed' | 'floating' | 'stacked';
9
9
  control?: FormControl | null;
10
- ionInputEvent: EventEmitter<string | number | boolean | object | null | undefined>;
11
- ngModelValue: FormInputSelectOptionsI['value'] | undefined;
12
- ngModelValueChange: EventEmitter<string | number | boolean | object | null | undefined>;
10
+ value: EventEmitter<any>;
13
11
  inputLabelPlacement: typeof this.labelPlacement;
14
12
  ngOnChanges(changes: SimpleChanges): void;
15
13
  static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<FormInputSelectComponent, "cf-form-input-select", never, { "label": { "alias": "label"; "required": false; }; "options": { "alias": "options"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "control": { "alias": "control"; "required": false; }; "ngModelValue": { "alias": "ngModelValue"; "required": false; }; }, { "ionInputEvent": "ionInputEvent"; "ngModelValueChange": "ngModelValueChange"; }, never, never, false, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormInputSelectComponent, "cf-form-input-select", never, { "label": { "alias": "label"; "required": false; }; "options": { "alias": "options"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "value": "value"; }, never, never, false, never>;
17
15
  }
@@ -7,14 +7,12 @@ export declare class FormInputTextAreaComponent implements OnChanges {
7
7
  autoCapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
8
8
  control?: FormControl | null;
9
9
  textCenter?: boolean | string | undefined;
10
- ionInputEvent: EventEmitter<string | undefined>;
11
- ngModelValue: string | undefined;
12
- ngModelValueChange: EventEmitter<string | undefined>;
10
+ value: EventEmitter<any>;
13
11
  inputLabelPlacement: typeof this.labelPlacement;
14
12
  inputClear: boolean;
15
13
  inputTextCenter: boolean;
16
14
  inputAutoCapitalize: typeof this.autoCapitalize;
17
15
  ngOnChanges(changes: SimpleChanges): void;
18
16
  static ɵfac: i0.ɵɵFactoryDeclaration<FormInputTextAreaComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<FormInputTextAreaComponent, "cf-form-input-text-area", never, { "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "control": { "alias": "control"; "required": false; }; "textCenter": { "alias": "textCenter"; "required": false; }; "ngModelValue": { "alias": "ngModelValue"; "required": false; }; }, { "ionInputEvent": "ionInputEvent"; "ngModelValueChange": "ngModelValueChange"; }, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormInputTextAreaComponent, "cf-form-input-text-area", never, { "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "control": { "alias": "control"; "required": false; }; "textCenter": { "alias": "textCenter"; "required": false; }; }, { "value": "value"; }, never, never, false, never>;
20
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "1.2.17",
3
+ "version": "1.3.0",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {