@carefirst/library 3.1.0 → 3.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "3.1.0",
3
+ "version": "3.1.2",
4
4
  "author": "Jacques Francois Coetzee",
5
5
  "private": false,
6
6
  "peerDependencies": {
@@ -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
  ===============================================*/