@thecb/components 9.1.7-beta.7 → 9.1.7-beta.8

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": "@thecb/components",
3
- "version": "9.1.7-beta.7",
3
+ "version": "9.1.7-beta.8",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -1,9 +1,15 @@
1
- import { HOVER_LIGHT_BLUE, MATISSE_BLUE } from "../../../constants/colors";
1
+ import {
2
+ HOVER_LIGHT_BLUE,
3
+ MATISSE_BLUE,
4
+ MATISSE_BLUE_DARK
5
+ } from "../../../constants/colors";
2
6
 
3
7
  const selectedColor = `${MATISSE_BLUE}`;
4
8
  const hoverColor = `${HOVER_LIGHT_BLUE}`;
9
+ const focusColor = `${MATISSE_BLUE_DARK}`;
5
10
 
6
11
  export const fallbackValues = {
7
12
  selectedColor,
8
- hoverColor
13
+ hoverColor,
14
+ focusColor
9
15
  };
@@ -56,6 +56,7 @@ const INFO_BLUE = "#E4F4FD";
56
56
  const CORNFLOWER_BLUE = "#EBEFFB";
57
57
  const HOVER_LIGHT_BLUE = "#EFFAFF";
58
58
  const MATISSE_BLUE = "#15749D";
59
+ const MATISSE_BLUE_DARK = "#105C7D";
59
60
  const ROYAL_BLUE = "#3181E3";
60
61
  const ROYAL_BLUE_VIVID = "#3B5BDB";
61
62
  const ASTRAL_BLUE = "#3176AA";
@@ -192,6 +193,7 @@ export {
192
193
  BOSTON_BLUE,
193
194
  HOVER_LIGHT_BLUE,
194
195
  MATISSE_BLUE,
196
+ MATISSE_BLUE_DARK,
195
197
  ROYAL_BLUE,
196
198
  ROYAL_BLUE_VIVID,
197
199
  ASTRAL_BLUE,