@thecb/components 10.6.0 → 10.6.1

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": "10.6.0",
3
+ "version": "10.6.1",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
package/src/.DS_Store ADDED
Binary file
Binary file
Binary file
@@ -8,27 +8,13 @@ import {
8
8
  TRANSPARENT
9
9
  } from "../../../constants/colors";
10
10
 
11
- const disabledBackgroundColor = {
12
- primary: TRANSPARENT
13
- };
14
- const disabledBorderColor = {
15
- primary: GHOST_GREY
16
- };
17
- const disabledColor = {
18
- primary: MANATEE_GREY
19
- };
20
- const activeBackgroundColor = {
21
- primary: CORNFLOWER_BLUE
22
- };
23
- const backgroundColor = {
24
- primary: LINK_WATER
25
- };
26
- const borderColor = {
27
- primary: MOON_RAKER
28
- };
29
- const color = {
30
- primary: ROYAL_BLUE_VIVID
31
- };
11
+ const disabledBackgroundColor = TRANSPARENT;
12
+ const disabledBorderColor = GHOST_GREY;
13
+ const disabledColor = MANATEE_GREY;
14
+ const activeBackgroundColor = CORNFLOWER_BLUE;
15
+ const backgroundColor = LINK_WATER;
16
+ const borderColor = MOON_RAKER;
17
+ const color = ROYAL_BLUE_VIVID;
32
18
 
33
19
  export const fallbackValues = {
34
20
  disabledBackgroundColor,