@carefirst/library 2.0.20 → 2.0.22
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/badge/badge.component.mjs +1 -1
- package/esm2022/lib/components/button/button.component.mjs +1 -1
- package/esm2022/lib/components/form-input/form-input.component.mjs +10 -4
- package/esm2022/lib/components/icon/icon.component.mjs +6 -3
- package/esm2022/lib/components/notification/notification.component.mjs +1 -1
- package/esm2022/lib/components/verification-code/verification-code.component.mjs +3 -3
- package/fesm2022/carefirst-library.mjs +17 -9
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/components/form-input/form-input.component.d.ts +2 -0
- package/lib/components/icon/icon.component.d.ts +2 -1
- package/package.json +1 -1
@@ -30,7 +30,9 @@ export declare class FormInputComponent implements OnChanges {
|
|
30
30
|
inputType: typeof this.type;
|
31
31
|
inputAutoCapitalize: typeof this.autoCapitalize;
|
32
32
|
inputGreyBackground: boolean;
|
33
|
+
showPassword: boolean;
|
33
34
|
ngOnChanges(changes: SimpleChanges): void;
|
35
|
+
togglePasswordShow(): void;
|
34
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormInputComponent, never>;
|
35
37
|
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
38
|
}
|
@@ -3,6 +3,7 @@ import { type IconColorT, type IconsT } from '../../interfaces/icon.interface';
|
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class IconComponent implements OnChanges {
|
5
5
|
icon: IconsT;
|
6
|
+
height?: number;
|
6
7
|
heightMobile?: number;
|
7
8
|
heightDesktop?: number;
|
8
9
|
iconColor?: IconColorT;
|
@@ -10,5 +11,5 @@ export declare class IconComponent implements OnChanges {
|
|
10
11
|
inputColor: typeof this.iconColor | undefined;
|
11
12
|
ngOnChanges(changes: SimpleChanges): void;
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "cf-icon", never, { "icon": { "alias": "icon"; "required": false; }; "heightMobile": { "alias": "heightMobile"; "required": false; }; "heightDesktop": { "alias": "heightDesktop"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; }, {}, never, never, false, never>;
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "cf-icon", never, { "icon": { "alias": "icon"; "required": false; }; "height": { "alias": "height"; "required": false; }; "heightMobile": { "alias": "heightMobile"; "required": false; }; "heightDesktop": { "alias": "heightDesktop"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; }, {}, never, never, false, never>;
|
14
15
|
}
|