@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "2.0.14",
3
+ "version": "2.0.16",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {
@@ -53,7 +53,7 @@ cf-btn ion-button {
53
53
  width: 100%;
54
54
  max-width: 358px;
55
55
 
56
- @media (min-width: $desktop-breakpoint) {
56
+ @media (min-width: $cf-screen-breakpoint) {
57
57
  max-width: 420px;
58
58
  }
59
59
  }
@@ -140,7 +140,7 @@ h4 {
140
140
 
141
141
  /*================== Desktop ==================*/
142
142
 
143
- @media (min-width: $desktop-breakpoint) {
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: $desktop-breakpoint) {
221
+ @media (min-width: $cf-screen-breakpoint) {
222
222
  p.body-large {
223
223
  font-size: 2.4rem;
224
224
  line-height: 3.2rem;
@@ -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';
@@ -0,0 +1,2 @@
1
+ //--- Screen size breakpoint
2
+ $cf-screen-breakpoint: 768px; //--- Same as ionic md breakpoint