@carefirst/library 3.1.0 → 3.1.2
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/alert/alert.component.mjs +2 -2
- package/esm2022/lib/components/logo/logo.component.mjs +11 -3
- package/fesm2022/carefirst-library.mjs +11 -4
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/components/logo/logo.component.d.ts +6 -2
- package/package.json +1 -1
- package/public/styles/app.scss +20 -0
@@ -1,7 +1,11 @@
|
|
1
|
+
import { type OnChanges, type SimpleChanges } from '@angular/core';
|
1
2
|
import * as i0 from "@angular/core";
|
2
|
-
export declare class LogoComponent {
|
3
|
+
export declare class LogoComponent implements OnChanges {
|
3
4
|
type: 'horizontal' | 'vertical';
|
4
5
|
height: number;
|
6
|
+
white?: string | boolean | undefined;
|
7
|
+
inputWhite: boolean;
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
5
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<LogoComponent, never>;
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LogoComponent, "cf-logo", never, { "type": { "alias": "type"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, {}, never, never, false, never>;
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogoComponent, "cf-logo", never, { "type": { "alias": "type"; "required": false; }; "height": { "alias": "height"; "required": false; }; "white": { "alias": "white"; "required": false; }; }, {}, never, never, false, never>;
|
7
11
|
}
|
package/package.json
CHANGED
package/public/styles/app.scss
CHANGED
@@ -2,12 +2,32 @@
|
|
2
2
|
box-sizing: border-box;
|
3
3
|
}
|
4
4
|
|
5
|
+
/*===============================================
|
6
|
+
===================== Modals ====================
|
7
|
+
===============================================*/
|
5
8
|
//--- Full-screen Modals
|
6
9
|
ion-modal {
|
7
10
|
--height: 100dvh;
|
8
11
|
--width: 100dvw;
|
9
12
|
}
|
10
13
|
|
14
|
+
/*===============================================
|
15
|
+
================ Device Specific ================
|
16
|
+
===============================================*/
|
17
|
+
//--- Desktop specific
|
18
|
+
@media (min-width: $cf-screen-breakpoint) {
|
19
|
+
.only-display-mobile {
|
20
|
+
display: none;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
//--- Mobile specific
|
25
|
+
@media not (min-width: $cf-screen-breakpoint) {
|
26
|
+
.only-display-desktop {
|
27
|
+
display: none;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
11
31
|
/*===============================================
|
12
32
|
===================== Logos =====================
|
13
33
|
===============================================*/
|