@carefirst/library 1.2.15 → 1.2.17

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,7 +5,7 @@ declare const inputsC: {
5
5
  readonly labelPlacement: readonly ["fixed", "floating", "stacked"];
6
6
  readonly inputMode: readonly ["text", "email", "numeric", "tel", "decimal", "url", "search"];
7
7
  readonly autoCapitalize: readonly ["off", "none", "on", "sentences", "words", "characters"];
8
- readonly type: readonly ["number", "date", "text", "password"];
8
+ readonly type: readonly ["date", "datetime-local", "email", "month", "number", "password", "search", "tel", "text", "time", "url", "week"];
9
9
  };
10
10
  export declare class FormInputComponent implements OnChanges {
11
11
  label: string;
@@ -20,7 +20,9 @@ export declare class FormInputComponent implements OnChanges {
20
20
  textCenter?: boolean | string | undefined;
21
21
  maxLength?: number | string;
22
22
  greyBackground?: boolean | string | undefined;
23
- value: EventEmitter<any>;
23
+ ionInputEvent: EventEmitter<string | undefined>;
24
+ ngModelValue: string | undefined;
25
+ ngModelValueChange: EventEmitter<string | undefined>;
24
26
  inputLabelPlacement: typeof this.labelPlacement;
25
27
  localInputMode: typeof this.inputmode;
26
28
  inputClear: boolean;
@@ -30,6 +32,6 @@ export declare class FormInputComponent implements OnChanges {
30
32
  inputGreyBackground: boolean;
31
33
  ngOnChanges(changes: SimpleChanges): void;
32
34
  static ɵfac: i0.ɵɵFactoryDeclaration<FormInputComponent, 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>;
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>;
34
36
  }
35
37
  export {};
@@ -7,9 +7,11 @@ export declare class FormInputSelectComponent implements OnChanges {
7
7
  options: FormInputSelectOptionsI[];
8
8
  labelPlacement?: 'fixed' | 'floating' | 'stacked';
9
9
  control?: FormControl | null;
10
- value: EventEmitter<any>;
10
+ ionInputEvent: EventEmitter<string | number | boolean | object | null | undefined>;
11
+ ngModelValue: FormInputSelectOptionsI['value'] | undefined;
12
+ ngModelValueChange: EventEmitter<string | number | boolean | object | null | undefined>;
11
13
  inputLabelPlacement: typeof this.labelPlacement;
12
14
  ngOnChanges(changes: SimpleChanges): void;
13
15
  static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent, 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>;
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>;
15
17
  }
@@ -7,12 +7,14 @@ 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
- value: EventEmitter<any>;
10
+ ionInputEvent: EventEmitter<string | undefined>;
11
+ ngModelValue: string | undefined;
12
+ ngModelValueChange: EventEmitter<string | undefined>;
11
13
  inputLabelPlacement: typeof this.labelPlacement;
12
14
  inputClear: boolean;
13
15
  inputTextCenter: boolean;
14
16
  inputAutoCapitalize: typeof this.autoCapitalize;
15
17
  ngOnChanges(changes: SimpleChanges): void;
16
18
  static ɵfac: i0.ɵɵFactoryDeclaration<FormInputTextAreaComponent, 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>;
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>;
18
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "1.2.15",
3
+ "version": "1.2.17",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {