@carefirst/library 2.0.14 → 2.0.16
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/mix-p/mix-p.component.mjs +1 -1
- package/esm2022/lib/components/page/page.component.mjs +8 -3
- package/fesm2022/carefirst-library.mjs +7 -2
- package/fesm2022/carefirst-library.mjs.map +1 -1
- package/lib/components/page/page.component.d.ts +3 -1
- package/package.json +1 -1
- package/public/styles/app.scss +1 -1
- package/public/styles/font.scss +2 -2
- package/public/styles/index.scss +2 -3
- package/public/styles/stylePreprocessorOptions/cf-breakpoint.scss +2 -0
@@ -6,13 +6,15 @@ export declare class PageComponent implements OnChanges {
|
|
6
6
|
dark?: boolean | string | undefined;
|
7
7
|
noScroll?: boolean | string | undefined;
|
8
8
|
devMode?: boolean | string | undefined;
|
9
|
+
buttonsVertical?: boolean | string | undefined;
|
9
10
|
scrollEvent: EventEmitter<CustomEvent<any>>;
|
10
11
|
inputCenterH: boolean;
|
11
12
|
inputCenterV: boolean;
|
12
13
|
inputDark: boolean;
|
13
14
|
inputNoScroll: boolean;
|
14
15
|
inputDevMode: boolean;
|
16
|
+
inputButtonsVertical: boolean;
|
15
17
|
ngOnChanges(changes: SimpleChanges): void;
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "noScroll": { "alias": "noScroll"; "required": false; }; "devMode": { "alias": "devMode"; "required": false; }; }, { "scrollEvent": "scrollEvent"; }, never, ["[cf-page-header]", "*", "[cf-page-buttons]", "[cf-page-footer]"], false, never>;
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "noScroll": { "alias": "noScroll"; "required": false; }; "devMode": { "alias": "devMode"; "required": false; }; "buttonsVertical": { "alias": "buttonsVertical"; "required": false; }; }, { "scrollEvent": "scrollEvent"; }, never, ["[cf-page-header]", "*", "[cf-page-buttons]", "[cf-page-footer]"], false, never>;
|
18
20
|
}
|
package/package.json
CHANGED
package/public/styles/app.scss
CHANGED
package/public/styles/font.scss
CHANGED
@@ -140,7 +140,7 @@ h4 {
|
|
140
140
|
|
141
141
|
/*================== Desktop ==================*/
|
142
142
|
|
143
|
-
@media (min-width: $
|
143
|
+
@media (min-width: $cf-screen-breakpoint) {
|
144
144
|
h1 {
|
145
145
|
font-size: 6.4rem;
|
146
146
|
}
|
@@ -218,7 +218,7 @@ p.body-extra-extra-small {
|
|
218
218
|
|
219
219
|
/*================== Desktop ==================*/
|
220
220
|
|
221
|
-
@media (min-width: $
|
221
|
+
@media (min-width: $cf-screen-breakpoint) {
|
222
222
|
p.body-large {
|
223
223
|
font-size: 2.4rem;
|
224
224
|
line-height: 3.2rem;
|
package/public/styles/index.scss
CHANGED
@@ -6,12 +6,11 @@
|
|
6
6
|
* @author Jacques Coetzee
|
7
7
|
* @since 2023 - 09 - 04
|
8
8
|
* @usage @import "../node_modules/@carefirst/library/styles/index.scss";
|
9
|
+
Add to angular.json - "stylePreprocessorOptions": {"includePaths": ["node_modules/@carefirst/library/public/styles/stylePreprocessorOptions"]}
|
9
10
|
*/
|
10
11
|
|
11
|
-
//--- Screen size breakpoint
|
12
|
-
$desktop-breakpoint: 768px; //--- Same as ionic md breakpoint
|
13
|
-
|
14
12
|
//--- SCSS Imports
|
13
|
+
@import './stylePreprocessorOptions/cf-breakpoint.scss';
|
15
14
|
@import './app.scss';
|
16
15
|
@import './colors.scss';
|
17
16
|
@import './font.scss';
|