@carefirst/library 1.3.11 → 1.3.12
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/components/button/button.component.mjs +8 -3
- package/esm2022/lib/components/notification/notification.component.mjs +1 -1
- package/fesm2022/carefirst-library.mjs +8 -3
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/components/button/button.component.d.ts +3 -1
- package/package.json +1 -1
@@ -7,6 +7,7 @@ export declare class ButtonComponent implements OnChanges {
|
|
7
7
|
alert?: boolean | string | undefined;
|
8
8
|
action?: boolean | string | undefined;
|
9
9
|
snug?: boolean | string | undefined;
|
10
|
+
accent?: boolean | string | undefined;
|
10
11
|
fontSize?: 'small' | 'large';
|
11
12
|
iconStart?: IconsT | undefined;
|
12
13
|
iconEnd?: IconsT | undefined;
|
@@ -19,6 +20,7 @@ export declare class ButtonComponent implements OnChanges {
|
|
19
20
|
inputAlert: boolean;
|
20
21
|
inputAction: boolean;
|
21
22
|
inputSnug: boolean;
|
23
|
+
inputAccent: boolean;
|
22
24
|
inputIconStart: typeof this.iconStart | undefined;
|
23
25
|
inputIconEnd: typeof this.iconEnd | undefined;
|
24
26
|
inputLoading: boolean;
|
@@ -26,5 +28,5 @@ export declare class ButtonComponent implements OnChanges {
|
|
26
28
|
ngOnChanges(changes: SimpleChanges): void;
|
27
29
|
checkCustomColor(color: string): string;
|
28
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "cf-btn", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "alert": { "alias": "alert"; "required": false; }; "action": { "alias": "action"; "required": false; }; "snug": { "alias": "snug"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "iconStart": { "alias": "iconStart"; "required": false; }; "iconEnd": { "alias": "iconEnd"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; }, {}, never, ["*"], false, never>;
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "cf-btn", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "alert": { "alias": "alert"; "required": false; }; "action": { "alias": "action"; "required": false; }; "snug": { "alias": "snug"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "iconStart": { "alias": "iconStart"; "required": false; }; "iconEnd": { "alias": "iconEnd"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; }, {}, never, ["*"], false, never>;
|
30
32
|
}
|