@carefirst/library 7.0.3 → 7.0.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "7.0.3",
3
+ "version": "7.0.5",
4
4
  "author": "FCS Dev Team",
5
5
  "private": false,
6
6
  "peerDependencies": {
@@ -278,34 +278,44 @@ p.body-extra-extra-small {
278
278
  ===============================================*/
279
279
 
280
280
  @mixin button-text-base {
281
- > p {
282
- font-family: 'Roboto', sans-serif;
283
- font-weight: 500;
284
- font-style: normal;
285
- line-height: auto;
286
- }
281
+ font-family: 'Roboto', sans-serif;
282
+ font-weight: 500;
283
+ font-style: normal;
284
+ line-height: auto;
287
285
  }
288
286
 
289
287
  ion-button[class^='cf-button-'],
290
288
  .cf-button-text {
291
289
  @include button-text-base;
292
290
  font-size: 1.2rem;
291
+ > p {
292
+ @include button-text-base;
293
+ }
293
294
  }
294
295
 
295
296
  ion-button[class^='cf-button-'].text-extra-small,
296
297
  .cf-button-text-extra-small {
297
298
  @include button-text-base;
298
299
  font-size: 0.8rem;
300
+ > p {
301
+ @include button-text-base;
302
+ }
299
303
  }
300
304
 
301
305
  ion-button[class^='cf-button-'].text-small,
302
306
  .cf-button-text-small {
303
307
  @include button-text-base;
304
308
  font-size: 1rem;
309
+ > p {
310
+ @include button-text-base;
311
+ }
305
312
  }
306
313
 
307
314
  ion-button[class^='cf-button-'].text-large,
308
315
  .cf-button-text-large {
309
316
  @include button-text-base;
310
317
  font-size: 1.6rem;
318
+ > p {
319
+ @include button-text-base;
320
+ }
311
321
  }
@@ -11,7 +11,8 @@ import * as i24 from '@angular/common';
11
11
  declare class PageComponent implements OnChanges {
12
12
  centerH?: boolean | string | undefined;
13
13
  centerV?: boolean | string | undefined;
14
- headerInheritanceOff?: boolean | string | undefined;
14
+ headerCenterInheritanceOff?: boolean | string | undefined;
15
+ headerNoPagePadding?: boolean | string | undefined;
15
16
  stickyHeaderOff?: boolean | string | undefined;
16
17
  dark?: boolean | string | undefined;
17
18
  noScroll?: boolean | string | undefined;
@@ -22,7 +23,8 @@ declare class PageComponent implements OnChanges {
22
23
  readonly scrollEvent: EventEmitter<IonContentCustomEvent<ScrollDetail>>;
23
24
  inputCenterH: boolean;
24
25
  inputCenterV: boolean;
25
- inputHeaderInheritanceOff: boolean;
26
+ inputHeaderCenterInheritanceOff: boolean;
27
+ inputHeaderNoPagePadding: boolean;
26
28
  inputStickyHeaderOff: boolean;
27
29
  inputDark: boolean;
28
30
  inputNoScroll: boolean;
@@ -37,7 +39,7 @@ declare class PageComponent implements OnChanges {
37
39
  */
38
40
  ngOnChanges(changes: SimpleChanges): void;
39
41
  static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
40
- static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "headerInheritanceOff": { "alias": "headerInheritanceOff"; "required": false; }; "stickyHeaderOff": { "alias": "stickyHeaderOff"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "noScroll": { "alias": "noScroll"; "required": false; }; "devMode": { "alias": "devMode"; "required": false; }; "buttonsVertical": { "alias": "buttonsVertical"; "required": false; }; "stickyButtonOn": { "alias": "stickyButtonOn"; "required": false; }; "noStickyButtonFade": { "alias": "noStickyButtonFade"; "required": false; }; }, { "scrollEvent": "scrollEvent"; }, never, ["[cf-page-header]", "*", "[cf-page-buttons]", "[cf-page-footer]", "[cf-page-sticky-buttons]"], false, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageComponent, "cf-page", never, { "centerH": { "alias": "centerH"; "required": false; }; "centerV": { "alias": "centerV"; "required": false; }; "headerCenterInheritanceOff": { "alias": "headerCenterInheritanceOff"; "required": false; }; "headerNoPagePadding": { "alias": "headerNoPagePadding"; "required": false; }; "stickyHeaderOff": { "alias": "stickyHeaderOff"; "required": false; }; "dark": { "alias": "dark"; "required": false; }; "noScroll": { "alias": "noScroll"; "required": false; }; "devMode": { "alias": "devMode"; "required": false; }; "buttonsVertical": { "alias": "buttonsVertical"; "required": false; }; "stickyButtonOn": { "alias": "stickyButtonOn"; "required": false; }; "noStickyButtonFade": { "alias": "noStickyButtonFade"; "required": false; }; }, { "scrollEvent": "scrollEvent"; }, never, ["[cf-page-header]", "*", "[cf-page-buttons]", "[cf-page-footer]", "[cf-page-sticky-buttons]"], false, never>;
41
43
  }
42
44
 
43
45
  /**==============================================