jcicl 0.0.13 → 0.0.16
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/.chunks/AppBar.js +26 -25
- package/.chunks/AppContainer.js +18 -19
- package/.chunks/AppHeader.js +6 -6
- package/.chunks/Avatar.js +6 -6
- package/.chunks/AvatarWithImage.js +4 -4
- package/.chunks/BasicPage.js +1 -1
- package/.chunks/Button.js +17 -16
- package/.chunks/ButtonBase.js +1 -1
- package/.chunks/CompactNav.js +16 -16
- package/.chunks/{theme.js → DefaultPropsProvider.js} +133 -163
- package/.chunks/Divider.js +17 -16
- package/.chunks/Input.js +4 -3
- package/.chunks/Menu.js +1 -1
- package/.chunks/Nav.js +4 -3
- package/.chunks/TransitionGroupContext.js +1 -1
- package/.chunks/createSvgIcon.js +1 -1
- package/.chunks/memoTheme.js +1 -1
- package/assets/theme.js +32 -0
- package/package.json +1 -1
package/.chunks/Divider.js
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { jsx as g } from "react/jsx-runtime";
|
|
2
2
|
import { n as D, i as A } from "./emotion-styled.browser.esm.js";
|
|
3
|
-
import
|
|
4
|
-
import * as
|
|
5
|
-
import { m } from "./
|
|
3
|
+
import u from "../assets/theme.js";
|
|
4
|
+
import * as S from "react";
|
|
5
|
+
import { g as R, a as T, s as m, u as L, c as W, P as r, b as $, d as I } from "./DefaultPropsProvider.js";
|
|
6
|
+
import { m as b } from "./memoTheme.js";
|
|
6
7
|
function O(t) {
|
|
7
|
-
return
|
|
8
|
+
return T("MuiDivider", t);
|
|
8
9
|
}
|
|
9
|
-
|
|
10
|
+
R("MuiDivider", ["root", "absolute", "fullWidth", "inset", "middle", "flexItem", "light", "vertical", "withChildren", "withChildrenVertical", "textAlignRight", "textAlignLeft", "wrapper", "wrapperVertical"]);
|
|
10
11
|
const V = (t) => {
|
|
11
12
|
const {
|
|
12
13
|
absolute: e,
|
|
@@ -18,11 +19,11 @@ const V = (t) => {
|
|
|
18
19
|
textAlign: l,
|
|
19
20
|
variant: n
|
|
20
21
|
} = t;
|
|
21
|
-
return
|
|
22
|
+
return $({
|
|
22
23
|
root: ["root", e && "absolute", n, s && "light", a === "vertical" && "vertical", p && "flexItem", i && "withChildren", i && a === "vertical" && "withChildrenVertical", l === "right" && a !== "vertical" && "textAlignRight", l === "left" && a !== "vertical" && "textAlignLeft"],
|
|
23
24
|
wrapper: ["wrapper", a === "vertical" && "wrapperVertical"]
|
|
24
25
|
}, O, o);
|
|
25
|
-
}, N =
|
|
26
|
+
}, N = m("div", {
|
|
26
27
|
name: "MuiDivider",
|
|
27
28
|
slot: "Root",
|
|
28
29
|
overridesResolver: (t, e) => {
|
|
@@ -31,7 +32,7 @@ const V = (t) => {
|
|
|
31
32
|
} = t;
|
|
32
33
|
return [e.root, i.absolute && e.absolute, e[i.variant], i.light && e.light, i.orientation === "vertical" && e.vertical, i.flexItem && e.flexItem, i.children && e.withChildren, i.children && i.orientation === "vertical" && e.withChildrenVertical, i.textAlign === "right" && i.orientation !== "vertical" && e.textAlignRight, i.textAlign === "left" && i.orientation !== "vertical" && e.textAlignLeft];
|
|
33
34
|
}
|
|
34
|
-
})(
|
|
35
|
+
})(b(({
|
|
35
36
|
theme: t
|
|
36
37
|
}) => ({
|
|
37
38
|
margin: 0,
|
|
@@ -56,7 +57,7 @@ const V = (t) => {
|
|
|
56
57
|
light: !0
|
|
57
58
|
},
|
|
58
59
|
style: {
|
|
59
|
-
borderColor: t.vars ? `rgba(${t.vars.palette.dividerChannel} / 0.08)` :
|
|
60
|
+
borderColor: t.vars ? `rgba(${t.vars.palette.dividerChannel} / 0.08)` : I(t.palette.divider, 0.08)
|
|
60
61
|
}
|
|
61
62
|
}, {
|
|
62
63
|
props: {
|
|
@@ -164,7 +165,7 @@ const V = (t) => {
|
|
|
164
165
|
}
|
|
165
166
|
}
|
|
166
167
|
}]
|
|
167
|
-
}))), B =
|
|
168
|
+
}))), B = m("span", {
|
|
168
169
|
name: "MuiDivider",
|
|
169
170
|
slot: "Wrapper",
|
|
170
171
|
overridesResolver: (t, e) => {
|
|
@@ -173,7 +174,7 @@ const V = (t) => {
|
|
|
173
174
|
} = t;
|
|
174
175
|
return [e.wrapper, i.orientation === "vertical" && e.wrapperVertical];
|
|
175
176
|
}
|
|
176
|
-
})(
|
|
177
|
+
})(b(({
|
|
177
178
|
theme: t
|
|
178
179
|
}) => ({
|
|
179
180
|
display: "inline-block",
|
|
@@ -188,8 +189,8 @@ const V = (t) => {
|
|
|
188
189
|
paddingBottom: `calc(${t.spacing(1)} * 1.2)`
|
|
189
190
|
}
|
|
190
191
|
}]
|
|
191
|
-
}))), d = /* @__PURE__ */
|
|
192
|
-
const o =
|
|
192
|
+
}))), d = /* @__PURE__ */ S.forwardRef(function(e, i) {
|
|
193
|
+
const o = L({
|
|
193
194
|
props: e,
|
|
194
195
|
name: "MuiDivider"
|
|
195
196
|
}), {
|
|
@@ -217,7 +218,7 @@ const V = (t) => {
|
|
|
217
218
|
}, v = V(h);
|
|
218
219
|
return /* @__PURE__ */ g(N, {
|
|
219
220
|
as: n,
|
|
220
|
-
className:
|
|
221
|
+
className: W(v.root, a),
|
|
221
222
|
role: c,
|
|
222
223
|
ref: i,
|
|
223
224
|
ownerState: h,
|
|
@@ -305,7 +306,7 @@ const M = D(d, {
|
|
|
305
306
|
width: o ? 1 : "100%",
|
|
306
307
|
alignSelf: "stretch",
|
|
307
308
|
transition: "313ms all ease-in-out"
|
|
308
|
-
})),
|
|
309
|
+
})), E = ({ orientation: t, ...e }) => /* @__PURE__ */ g(M, { vertical: t === "vertical", ...e });
|
|
309
310
|
export {
|
|
310
|
-
|
|
311
|
+
E as D
|
|
311
312
|
};
|
package/.chunks/Input.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { jsxs as ce, jsx as S } from "react/jsx-runtime";
|
|
2
2
|
import { n as Ao } from "./emotion-styled.browser.esm.js";
|
|
3
|
-
import
|
|
3
|
+
import we from "../assets/theme.js";
|
|
4
4
|
import * as i from "react";
|
|
5
|
+
import { f as Bo, i as Wo, T as Do, P as e, g as Q, a as ee, e as _, s as F, u as fe, c as le, b as oe, j as To, r as ye, k as so, l as Uo, m as Vo } from "./DefaultPropsProvider.js";
|
|
5
6
|
import { l as Ho, o as co, d as qo, f as fo, m as _o, c as no, n as Ko, k as Go, g as Xo, p as We } from "./Menu.js";
|
|
6
7
|
import { m as K } from "./memoTheme.js";
|
|
7
8
|
import { c as Xe } from "./createSimplePaletteValueFilter.js";
|
|
@@ -4386,7 +4387,7 @@ const on = Ao(zo)({
|
|
|
4386
4387
|
border: "none"
|
|
4387
4388
|
}
|
|
4388
4389
|
}
|
|
4389
|
-
}),
|
|
4390
|
+
}), cn = ({ ...o }) => /* @__PURE__ */ S(on, { ...o });
|
|
4390
4391
|
export {
|
|
4391
|
-
|
|
4392
|
+
cn as I
|
|
4392
4393
|
};
|
package/.chunks/Menu.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as p from "react";
|
|
2
2
|
import ve from "react";
|
|
3
3
|
import { jsx as I, jsxs as $e } from "react/jsx-runtime";
|
|
4
|
-
import { P as e, c as W, n as Ft, o as At, q as Vt, T as it, i as at, g as ae, a as le, s as G, u as ce, b as ue, m as lt, d as We,
|
|
4
|
+
import { P as e, c as W, n as Ft, o as At, q as Vt, T as it, i as at, g as ae, a as le, s as G, u as ce, b as ue, m as lt, d as We, t as ze, r as _t } from "./DefaultPropsProvider.js";
|
|
5
5
|
import { f as Ce, c as X, G as $t, _ as Ut, a as qt, T as ct, g as Fe, b as Ht, s as Ge, d as Xe, r as Bt, e as Kt } from "./TransitionGroupContext.js";
|
|
6
6
|
import { m as ut } from "./memoTheme.js";
|
|
7
7
|
import { T as Wt } from "./emotion-styled.browser.esm.js";
|
package/.chunks/Nav.js
CHANGED
|
@@ -3,8 +3,9 @@ import * as m from "react";
|
|
|
3
3
|
import { useState as ft, createElement as Zt } from "react";
|
|
4
4
|
import { n as X, i as It } from "./emotion-styled.browser.esm.js";
|
|
5
5
|
import { c as pt } from "./createSvgIcon.js";
|
|
6
|
-
import
|
|
6
|
+
import z from "../assets/theme.js";
|
|
7
7
|
import { D as ht } from "./Divider.js";
|
|
8
|
+
import { P as e, a as J, g as q, s as V, r as Nt, e as Y, u as K, c as j, b as Q, d as it, h as te } from "./DefaultPropsProvider.js";
|
|
8
9
|
import { e as ee, H as oe, u as mt, g as ne, o as Ot, T as kt, d as re, r as ie, a as lt, M as se, P as ae, b as le, i as ce, L as _, c as Mt, f as xt, h as pe, j as de, k as ue } from "./Menu.js";
|
|
9
10
|
import { m as tt } from "./memoTheme.js";
|
|
10
11
|
import { c as fe } from "./createSimplePaletteValueFilter.js";
|
|
@@ -2095,7 +2096,7 @@ const St = pt(/* @__PURE__ */ s("path", {
|
|
|
2095
2096
|
width: auto;
|
|
2096
2097
|
}
|
|
2097
2098
|
}
|
|
2098
|
-
`,
|
|
2099
|
+
`, fo = ({ navItems: t, anchor: o = "left", collapsible: n, ...r }) => {
|
|
2099
2100
|
const [i, c] = ft(!1), a = o === "top" || o === "bottom" ? "horizontal" : "vertical";
|
|
2100
2101
|
return a === "horizontal" ? /* @__PURE__ */ s(Qe, { ...r, anchor: o, variant: "permanent", children: t == null ? void 0 : t.map((l, d) => /* @__PURE__ */ Zt(
|
|
2101
2102
|
Lt,
|
|
@@ -2134,5 +2135,5 @@ const St = pt(/* @__PURE__ */ s("path", {
|
|
|
2134
2135
|
] });
|
|
2135
2136
|
};
|
|
2136
2137
|
export {
|
|
2137
|
-
|
|
2138
|
+
fo as N
|
|
2138
2139
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var de = Object.defineProperty;
|
|
2
2
|
var ye = (e, t, o) => t in e ? de(e, t, { enumerable: !0, configurable: !0, writable: !0, value: o }) : e[t] = o;
|
|
3
3
|
var C = (e, t, o) => ye(e, typeof t != "symbol" ? t + "" : t, o);
|
|
4
|
-
import { P } from "./
|
|
4
|
+
import { P } from "./DefaultPropsProvider.js";
|
|
5
5
|
import * as T from "react";
|
|
6
6
|
import pe from "react";
|
|
7
7
|
import { s as V, w as Ee, T as ve, u as L, a as Se } from "./emotion-styled.browser.esm.js";
|
package/.chunks/createSvgIcon.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as z from "react";
|
|
2
2
|
import { jsxs as I, jsx as b } from "react/jsx-runtime";
|
|
3
|
-
import { a as w, g as C, s as T, e as x, u as N, c as O, P as e, b as R } from "./
|
|
3
|
+
import { a as w, g as C, s as T, e as x, u as N, c as O, P as e, b as R } from "./DefaultPropsProvider.js";
|
|
4
4
|
import { m as j } from "./memoTheme.js";
|
|
5
5
|
function E(o) {
|
|
6
6
|
return w("MuiSvgIcon", o);
|
package/.chunks/memoTheme.js
CHANGED
package/assets/theme.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const e = {
|
|
2
|
+
colors: {
|
|
3
|
+
black: "black",
|
|
4
|
+
blue: "#1976d2",
|
|
5
|
+
charcoal: "#404040",
|
|
6
|
+
darkBlue: "#10517c",
|
|
7
|
+
darkGreen: "#005c00",
|
|
8
|
+
darkGreenO22: "#005c0022",
|
|
9
|
+
darkRed: "#800000",
|
|
10
|
+
gold: "#fab62d",
|
|
11
|
+
gray: "#727272",
|
|
12
|
+
grayO44: "#72727244",
|
|
13
|
+
green: "#009200",
|
|
14
|
+
midnight: "#131313",
|
|
15
|
+
mint: "#a4edb4",
|
|
16
|
+
sunlight: "#faf9e8",
|
|
17
|
+
white: "white",
|
|
18
|
+
whiteGreen: "#f2fcf5",
|
|
19
|
+
whiteGreen2: "#dae8de",
|
|
20
|
+
veryLightGray: "#fafafa"
|
|
21
|
+
},
|
|
22
|
+
constants: {
|
|
23
|
+
appBarHeight: 92,
|
|
24
|
+
appHeaderHeight: 54,
|
|
25
|
+
appInnerNavWidth: 201,
|
|
26
|
+
appSideNavWidth: 64,
|
|
27
|
+
navBarWidth: 290
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
export {
|
|
31
|
+
e as default
|
|
32
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jcicl",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.16",
|
|
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",
|