@carefirst/library 7.1.0 → 7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carefirst/library",
3
- "version": "7.1.0",
3
+ "version": "7.1.2",
4
4
  "author": "FCS Dev Team",
5
5
  "private": false,
6
6
  "peerDependencies": {
@@ -148,7 +148,7 @@ cf-badge:has(div.stretch) {
148
148
  ============== Opacity Background ==============
149
149
  ===============================================*/
150
150
  @mixin opacity($percentage) {
151
- background-color: color-mix(in srgb, var(--cf-app-color-accent) $percentage, var(--cf-app-background-light)) !important;
151
+ background-color: color-mix(in srgb, var(--cf-app-color-accent) $percentage, #fff) !important;
152
152
  border: 1px solid var(--cf-app-color-accent) !important;
153
153
  }
154
154
 
@@ -6,7 +6,7 @@
6
6
  --cf-app-color-secondary: #80858a;
7
7
  --cf-app-color-white: #fcfcfc;
8
8
  --cf-app-color-off-white: #fcfaf9;
9
- --cf-app-background-light: #fff;
9
+ --cf-app-background-light: var(--cf-app-color-white);
10
10
  --cf-app-background-dark: #252525;
11
11
  --cf-app-color-accent: #3fa3db;
12
12
  --cf-app-color-accent-25: color-mix(in srgb, var(--cf-app-color-accent) 25%, #fff);
@@ -93,6 +93,7 @@ declare class ButtonComponent implements OnChanges {
93
93
  emojiEnd?: EmojisT | undefined;
94
94
  loading?: boolean | string | undefined;
95
95
  loadingText?: string;
96
+ primaryColorSpinner?: boolean | string | undefined;
96
97
  customColor?: string | undefined;
97
98
  get parentEvents(): string;
98
99
  inputType: typeof this.type;
@@ -108,6 +109,7 @@ declare class ButtonComponent implements OnChanges {
108
109
  inputEmojiStart: typeof this.emojiStart | undefined;
109
110
  inputEmojiEnd: typeof this.emojiEnd | undefined;
110
111
  inputLoading: boolean;
112
+ inputPrimaryColorSpinner: boolean;
111
113
  inputCustomColor: string;
112
114
  /**----------------------------------------------------------------
113
115
  * @name ngOnChanges
@@ -123,7 +125,7 @@ declare class ButtonComponent implements OnChanges {
123
125
  */
124
126
  checkCustomColor(color: string): string;
125
127
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
126
- static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "cf-btn", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "alert": { "alias": "alert"; "required": false; }; "action": { "alias": "action"; "required": false; }; "white": { "alias": "white"; "required": false; }; "snug": { "alias": "snug"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "iconStart": { "alias": "iconStart"; "required": false; }; "iconEnd": { "alias": "iconEnd"; "required": false; }; "emojiStart": { "alias": "emojiStart"; "required": false; }; "emojiEnd": { "alias": "emojiEnd"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; }, {}, never, ["*"], false, never>;
128
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "cf-btn", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "alert": { "alias": "alert"; "required": false; }; "action": { "alias": "action"; "required": false; }; "white": { "alias": "white"; "required": false; }; "snug": { "alias": "snug"; "required": false; }; "accent": { "alias": "accent"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "iconStart": { "alias": "iconStart"; "required": false; }; "iconEnd": { "alias": "iconEnd"; "required": false; }; "emojiStart": { "alias": "emojiStart"; "required": false; }; "emojiEnd": { "alias": "emojiEnd"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "primaryColorSpinner": { "alias": "primaryColorSpinner"; "required": false; }; "customColor": { "alias": "customColor"; "required": false; }; }, {}, never, ["*"], false, never>;
127
129
  }
128
130
 
129
131
  /**==============================================