@carefirst/library 6.3.4 → 6.4.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/index.d.ts
CHANGED
|
@@ -808,6 +808,7 @@ declare class BadgeComponent implements OnChanges {
|
|
|
808
808
|
type: BadgeTypeT;
|
|
809
809
|
icon?: IconsT | undefined;
|
|
810
810
|
emoji?: EmojisT | undefined;
|
|
811
|
+
'extra-small'?: boolean | string | undefined;
|
|
811
812
|
small?: boolean | string | undefined;
|
|
812
813
|
large?: boolean | string | undefined;
|
|
813
814
|
stretch?: boolean | string | undefined;
|
|
@@ -815,6 +816,7 @@ declare class BadgeComponent implements OnChanges {
|
|
|
815
816
|
inputIcon: typeof this.icon | undefined;
|
|
816
817
|
inputEmoji: typeof this.emoji | undefined;
|
|
817
818
|
fontsize: number;
|
|
819
|
+
inputExtraSmall: boolean;
|
|
818
820
|
inputSmall: boolean;
|
|
819
821
|
inputLarge: boolean;
|
|
820
822
|
inputStretch: boolean;
|
|
@@ -825,7 +827,7 @@ declare class BadgeComponent implements OnChanges {
|
|
|
825
827
|
*/
|
|
826
828
|
ngOnChanges(changes: SimpleChanges): void;
|
|
827
829
|
static ɵfac: i0.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
828
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cf-badge", never, { "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "emoji": { "alias": "emoji"; "required": false; }; "small": { "alias": "small"; "required": false; }; "large": { "alias": "large"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
830
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BadgeComponent, "cf-badge", never, { "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "emoji": { "alias": "emoji"; "required": false; }; "extra-small": { "alias": "extra-small"; "required": false; }; "small": { "alias": "small"; "required": false; }; "large": { "alias": "large"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
829
831
|
}
|
|
830
832
|
|
|
831
833
|
declare class SpinnerComponent implements OnChanges {
|
package/package.json
CHANGED
package/public/styles/font.scss
CHANGED
|
@@ -110,20 +110,26 @@ h4 {
|
|
|
110
110
|
margin: 0;
|
|
111
111
|
display: inline-block;
|
|
112
112
|
color: var(--cf-app-text-color-default);
|
|
113
|
-
}
|
|
114
113
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
h4.light {
|
|
119
|
-
color: var(--cf-app-text-color-light);
|
|
120
|
-
}
|
|
114
|
+
&.light {
|
|
115
|
+
color: var(--cf-app-text-color-light);
|
|
116
|
+
}
|
|
121
117
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
118
|
+
&.grey {
|
|
119
|
+
color: var(--cf-app-text-color-grey);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
&.green {
|
|
123
|
+
color: var(--cf-app-text-color-dark-green);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&.yellow {
|
|
127
|
+
color: var(--cf-app-text-color-dark-yellow);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
&.red {
|
|
131
|
+
color: var(--cf-app-text-color-dark-red);
|
|
132
|
+
}
|
|
127
133
|
}
|
|
128
134
|
|
|
129
135
|
/*================== Mobile ==================*/
|
|
@@ -284,6 +290,12 @@ ion-button[class^='cf-button-'],
|
|
|
284
290
|
font-size: 1.2rem;
|
|
285
291
|
}
|
|
286
292
|
|
|
293
|
+
ion-button[class^='cf-button-'].text-extra-small,
|
|
294
|
+
.cf-button-text-extra-small {
|
|
295
|
+
@include button-text-base;
|
|
296
|
+
font-size: 0.8rem;
|
|
297
|
+
}
|
|
298
|
+
|
|
287
299
|
ion-button[class^='cf-button-'].text-small,
|
|
288
300
|
.cf-button-text-small {
|
|
289
301
|
@include button-text-base;
|