jcicl 0.0.118 → 0.0.122

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.
@@ -4,7 +4,7 @@ import { a as Ht, g as Ut, P as r, d as Ft, s as et, u as qt, c as zt, e as Yt,
4
4
  import { o as Rt, P as fo, H as Qe, d as uo, c as Xt, a as vo, f as mo, h as ho, g as go, G as At, i as ze, e as yo } from "../.chunks/Portal.js";
5
5
  import { m as lt } from "../.chunks/memoTheme.js";
6
6
  import { c as bo } from "../.chunks/chainPropTypes.js";
7
- import { r as Gt, c as it, e as Ct, b as Ye, d as Mt, f as wo } from "../.chunks/TransitionGroupContext.js";
7
+ import { r as Gt, a as it, u as Ct, d as Ye, e as Mt, f as wo } from "../.chunks/TransitionGroupContext.js";
8
8
  import { i as jt } from "../.chunks/isFocusVisible.js";
9
9
  var W = "top", z = "bottom", Y = "right", I = "left", ct = "auto", Ie = [W, z, Y, I], Oe = "start", ke = "end", Oo = "clippingParents", Kt = "viewport", Se = "popper", xo = "reference", $t = /* @__PURE__ */ Ie.reduce(function(t, e) {
10
10
  return t.concat([e + "-" + Oe, e + "-" + ke]);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jcicl",
3
3
  "private": false,
4
- "version": "0.0.118",
4
+ "version": "0.0.122",
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,9 +40,11 @@ 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;
47
+ indigoThick?: string;
45
48
  }
46
49
  export interface ThemeConstants {
47
50
  appHeaderHeight: number;
@@ -62,5 +65,19 @@ export interface Theme {
62
65
  screenSizes: ThemeScreenSizes;
63
66
  fonts: ThemeFonts;
64
67
  }
68
+ export interface TemplateThemeProps {
69
+ backgroundPrimary: string;
70
+ backgroundSecondary: string;
71
+ backgroundTertiary: string;
72
+ borderPrimary: string;
73
+ iconPrimary: string;
74
+ highlightPrimary: string;
75
+ highlightSecondary: string;
76
+ highlightTertiary: string;
77
+ shadowPrimary: string;
78
+ shadowSecondary: string;
79
+ shadowTertiary: string;
80
+ scrollColor: string;
81
+ }
65
82
  declare const theme: Theme;
66
83
  export default theme;
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",
@@ -51,21 +52,25 @@ const e = {
51
52
  // Testing range for mobile: 320px - 480px
52
53
  mobile: "533px",
53
54
  // Testing range for tablets: 533px - 1080px
54
- tablet: "963px"
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
72
  black63: "0px 0px 2px 1px rgba(0, 0, 0, 0.63)"
68
73
  };
69
74
  export {
70
- e as default
75
+ a as default
71
76
  };