@carefirst/library 3.1.4 → 3.2.0
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.
- package/esm2022/lib/components/form-input/form-input.component.mjs +6 -3
- package/esm2022/lib/components/form-input-select/form-input-select.component.mjs +6 -3
- package/esm2022/lib/components/form-input-text-area/form-input-text-area.component.mjs +6 -3
- package/esm2022/lib/components/form-validation/form-validation.component.mjs +7 -4
- package/esm2022/lib/components/verification-code/verification-code.component.mjs +3 -3
- package/fesm2022/carefirst-library.mjs +23 -11
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/components/form-input/form-input.component.d.ts +2 -1
- package/lib/components/form-input-select/form-input-select.component.d.ts +2 -1
- package/lib/components/form-input-text-area/form-input-text-area.component.d.ts +2 -1
- package/lib/components/form-validation/form-validation.component.d.ts +2 -1
- package/package.json +1 -1
@@ -21,6 +21,7 @@ export declare class FormInputComponent implements OnChanges {
|
|
21
21
|
textCenter?: boolean | string | undefined;
|
22
22
|
maxLength?: number | string;
|
23
23
|
greyBackground?: boolean | string | undefined;
|
24
|
+
customErrorMessage: string | null;
|
24
25
|
value: string | undefined;
|
25
26
|
valueChange: EventEmitter<string | undefined>;
|
26
27
|
inputLabelPlacement: typeof this.labelPlacement;
|
@@ -36,6 +37,6 @@ export declare class FormInputComponent implements OnChanges {
|
|
36
37
|
ngOnChanges(changes: SimpleChanges): void;
|
37
38
|
togglePasswordShow(): void;
|
38
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputComponent, never>;
|
39
|
-
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; }; "placeholder": { "alias": "placeholder"; "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": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
40
|
+
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; }; "placeholder": { "alias": "placeholder"; "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; }; "customErrorMessage": { "alias": "customErrorMessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
40
41
|
}
|
41
42
|
export {};
|
@@ -11,11 +11,12 @@ export declare class FormInputSelectComponent<T> implements OnChanges {
|
|
11
11
|
labelPlacement?: (typeof inputSelectC.labelPlacement)[number];
|
12
12
|
placeholder?: string | undefined;
|
13
13
|
control?: FormControl | null;
|
14
|
+
customErrorMessage: string | null;
|
14
15
|
value: FormInputSelectOptionsI<T>['value'] | undefined;
|
15
16
|
valueChange: EventEmitter<T | undefined>;
|
16
17
|
inputLabelPlacement: typeof this.labelPlacement;
|
17
18
|
ngOnChanges(changes: SimpleChanges): void;
|
18
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any>, never>;
|
19
|
-
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; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, 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>;
|
20
21
|
}
|
21
22
|
export {};
|
@@ -14,6 +14,7 @@ export declare class FormInputTextAreaComponent implements OnChanges {
|
|
14
14
|
textCenter?: boolean | string | undefined;
|
15
15
|
minHeight?: string | 'none';
|
16
16
|
maxHeight?: string | 'none';
|
17
|
+
customErrorMessage: string | null;
|
17
18
|
value: string | undefined;
|
18
19
|
valueChange: EventEmitter<string | undefined>;
|
19
20
|
inputLabelPlacement: typeof this.labelPlacement;
|
@@ -22,6 +23,6 @@ export declare class FormInputTextAreaComponent implements OnChanges {
|
|
22
23
|
inputAutoCapitalize: typeof this.autoCapitalize;
|
23
24
|
ngOnChanges(changes: SimpleChanges): void;
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputTextAreaComponent, never>;
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputTextAreaComponent, "cf-form-input-text-area", never, { "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "control": { "alias": "control"; "required": false; }; "textCenter": { "alias": "textCenter"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormInputTextAreaComponent, "cf-form-input-text-area", never, { "label": { "alias": "label"; "required": false; }; "labelPlacement": { "alias": "labelPlacement"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "autoCapitalize": { "alias": "autoCapitalize"; "required": false; }; "control": { "alias": "control"; "required": false; }; "textCenter": { "alias": "textCenter"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "customErrorMessage": { "alias": "customErrorMessage"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
26
27
|
}
|
27
28
|
export {};
|
@@ -3,7 +3,8 @@ import type { FormControl } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class FormValidationComponent implements OnChanges {
|
5
5
|
control: FormControl | null;
|
6
|
+
customErrorMessage: string | null;
|
6
7
|
ngOnChanges(changes: SimpleChanges): void;
|
7
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormValidationComponent, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormValidationComponent, "cf-form-validation", never, { "control": { "alias": "control"; "required": false; }; }, {}, never, never, false, never>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormValidationComponent, "cf-form-validation", never, { "control": { "alias": "control"; "required": false; }; "customErrorMessage": { "alias": "customErrorMessage"; "required": false; }; }, {}, never, never, false, never>;
|
9
10
|
}
|