jcicl 0.0.120 → 0.0.124

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,7 +1,7 @@
1
1
  {
2
2
  "name": "jcicl",
3
3
  "private": false,
4
- "version": "0.0.120",
4
+ "version": "0.0.124",
5
5
  "description": "Component library for the websites of Johnson County Iowa",
6
6
  "license": "MIT",
7
7
  "homepage": "https://devops.jc.net/JCIT/Business%20Solutions%20Delivery/_git/JCComponentLibrary?path=%2FREADME.md&version=GBmaster",
package/theme.d.ts CHANGED
@@ -3,6 +3,7 @@ export interface ThemeColors {
3
3
  blue: string;
4
4
  burgundy: string;
5
5
  charcoal: string;
6
+ cherryBlossom: string;
6
7
  cobalt: string;
7
8
  cornflower: string;
8
9
  dandelion: string;
@@ -39,6 +40,7 @@ export interface ThemeColors {
39
40
  }
40
41
  export interface ThemeBoxShadows extends Partial<ThemeColors> {
41
42
  black63?: string;
43
+ maroonThick?: string;
42
44
  darkGreenThick?: string;
43
45
  gray63?: string;
44
46
  greenThick?: string;
package/theme.js CHANGED
@@ -1,4 +1,4 @@
1
- const e = {
1
+ const a = {
2
2
  fonts: {
3
3
  roboto: "Roboto, sans-serif"
4
4
  },
@@ -8,6 +8,7 @@ const e = {
8
8
  blue: "#1976d2",
9
9
  burgundy: "#920920",
10
10
  charcoal: "#404040",
11
+ cherryBlossom: "#f7c6d0",
11
12
  cobalt: "#022961",
12
13
  cornflower: "#6aa7fc",
13
14
  dandelion: "#fffacd",
@@ -54,19 +55,22 @@ const e = {
54
55
  tablet: "1080px"
55
56
  }
56
57
  };
57
- e.boxShadows = {
58
+ a.boxShadows = {
58
59
  ...Object.fromEntries(
59
- Object.keys(e.colors).map((a) => [
60
- a,
61
- `0 0 8px -2px ${e.colors[a]}`
60
+ Object.keys(a.colors).map((e) => [
61
+ e,
62
+ `0 0 8px -2px ${a.colors[e]}`
63
+ ])
64
+ ),
65
+ ...Object.fromEntries(
66
+ Object.keys(a.colors).map((e) => [
67
+ `${e}Thick`,
68
+ `0 0 2px 1px ${a.colors[e]}`
62
69
  ])
63
70
  ),
64
- darkGreenThick: `0 0 2px 1px ${e.colors.darkGreen}`,
65
- greenThick: `0 0 2px 1px ${e.colors.green}`,
66
71
  gray63: "0px 0px 2px 1px rgba(100, 100, 100, 0.63)",
67
- black63: "0px 0px 2px 1px rgba(0, 0, 0, 0.63)",
68
- indigoThick: `0 0 2px 1px ${e.colors.indigo}`
72
+ black63: "0px 0px 2px 1px rgba(0, 0, 0, 0.63)"
69
73
  };
70
74
  export {
71
- e as default
75
+ a as default
72
76
  };