@carefirst/library 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/components/form-input/form-input.component.mjs +10 -10
- package/esm2022/lib/components/form-input-select/form-input-select.component.mjs +10 -10
- package/esm2022/lib/components/form-input-text-area/form-input-text-area.component.mjs +16 -10
- package/fesm2022/carefirst-library.mjs +33 -27
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/components/form-input/form-input.component.d.ts +4 -4
- package/lib/components/form-input-select/form-input-select.component.d.ts +4 -4
- package/lib/components/form-input-text-area/form-input-text-area.component.d.ts +6 -4
- package/package.json +1 -1
@@ -12,6 +12,7 @@ export declare class FormInputComponent implements OnChanges {
|
|
12
12
|
min: number | string;
|
13
13
|
max: number | string;
|
14
14
|
labelPlacement?: (typeof inputsC.labelPlacement)[number];
|
15
|
+
placeholder?: string | undefined;
|
15
16
|
inputmode?: (typeof inputsC.inputMode)[number];
|
16
17
|
autoCapitalize?: (typeof inputsC.autoCapitalize)[number];
|
17
18
|
type?: (typeof inputsC.type)[number];
|
@@ -20,9 +21,8 @@ export declare class FormInputComponent implements OnChanges {
|
|
20
21
|
textCenter?: boolean | string | undefined;
|
21
22
|
maxLength?: number | string;
|
22
23
|
greyBackground?: boolean | string | undefined;
|
23
|
-
|
24
|
-
|
25
|
-
ngModelValueChange: EventEmitter<string | undefined>;
|
24
|
+
value: string | undefined;
|
25
|
+
valueChange: EventEmitter<string | undefined>;
|
26
26
|
inputLabelPlacement: typeof this.labelPlacement;
|
27
27
|
localInputMode: typeof this.inputmode;
|
28
28
|
inputClear: boolean;
|
@@ -32,6 +32,6 @@ export declare class FormInputComponent implements OnChanges {
|
|
32
32
|
inputGreyBackground: boolean;
|
33
33
|
ngOnChanges(changes: SimpleChanges): void;
|
34
34
|
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; }; "
|
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; }; "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>;
|
36
36
|
}
|
37
37
|
export {};
|
@@ -6,12 +6,12 @@ export declare class FormInputSelectComponent<T> implements OnChanges {
|
|
6
6
|
label: string;
|
7
7
|
options: FormInputSelectOptionsI<T>[];
|
8
8
|
labelPlacement?: 'fixed' | 'floating' | 'stacked';
|
9
|
+
placeholder?: string | undefined;
|
9
10
|
control?: FormControl | null;
|
10
|
-
|
11
|
-
|
12
|
-
ngModelValueChange: EventEmitter<T | undefined>;
|
11
|
+
value: FormInputSelectOptionsI<T>['value'] | undefined;
|
12
|
+
valueChange: EventEmitter<T | undefined>;
|
13
13
|
inputLabelPlacement: typeof this.labelPlacement;
|
14
14
|
ngOnChanges(changes: SimpleChanges): void;
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputSelectComponent<any>, never>;
|
16
|
-
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; }; "
|
16
|
+
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>;
|
17
17
|
}
|
@@ -4,17 +4,19 @@ import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FormInputTextAreaComponent implements OnChanges {
|
5
5
|
label: string;
|
6
6
|
labelPlacement?: 'fixed' | 'floating' | 'stacked';
|
7
|
+
placeholder?: string | undefined;
|
7
8
|
autoCapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
|
8
9
|
control?: FormControl | null;
|
9
10
|
textCenter?: boolean | string | undefined;
|
10
|
-
|
11
|
-
|
12
|
-
|
11
|
+
minHeight?: string | 'none';
|
12
|
+
maxHeight?: string | 'none';
|
13
|
+
value: string | undefined;
|
14
|
+
valueChange: EventEmitter<string | undefined>;
|
13
15
|
inputLabelPlacement: typeof this.labelPlacement;
|
14
16
|
inputClear: boolean;
|
15
17
|
inputTextCenter: boolean;
|
16
18
|
inputAutoCapitalize: typeof this.autoCapitalize;
|
17
19
|
ngOnChanges(changes: SimpleChanges): void;
|
18
20
|
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; }; "
|
21
|
+
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>;
|
20
22
|
}
|