jcicl 0.0.15 → 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 +1 -1
- package/.chunks/AppContainer.js +18 -19
- package/.chunks/AppHeader.js +1 -1
- package/.chunks/Avatar.js +1 -1
- package/.chunks/AvatarWithImage.js +1 -1
- package/.chunks/BasicPage.js +1 -1
- package/.chunks/Button.js +1 -1
- package/.chunks/CompactNav.js +17 -17
- package/.chunks/Divider.js +1 -1
- package/.chunks/Input.js +1 -1
- package/.chunks/Nav.js +1 -1
- package/package.json +1 -1
- /package/assets/{theme.ts.js → theme.js} +0 -0
package/.chunks/AppBar.js
CHANGED
|
@@ -3,7 +3,7 @@ import { I } from "./Input.js";
|
|
|
3
3
|
import { B as R } from "./Button.js";
|
|
4
4
|
import { n as y } from "./emotion-styled.browser.esm.js";
|
|
5
5
|
import { l as j } from "./jocologo.js";
|
|
6
|
-
import f from "../assets/theme.
|
|
6
|
+
import f from "../assets/theme.js";
|
|
7
7
|
import * as v from "react";
|
|
8
8
|
import { a as x, g as B, s as m, e as c, u as A, c as k, P as r, b as T } from "./DefaultPropsProvider.js";
|
|
9
9
|
import { m as C } from "./memoTheme.js";
|
package/.chunks/AppContainer.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { A as
|
|
3
|
-
import { C as
|
|
4
|
-
import { n as
|
|
5
|
-
import r from "../assets/theme.
|
|
6
|
-
const
|
|
1
|
+
import { jsxs as d, jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { A as p } from "./AppHeader.js";
|
|
3
|
+
import { C as s } from "./CompactNav.js";
|
|
4
|
+
import { n as t } from "./emotion-styled.browser.esm.js";
|
|
5
|
+
import r from "../assets/theme.js";
|
|
6
|
+
const l = t("div")({
|
|
7
7
|
display: "flex",
|
|
8
8
|
flexDirection: "column",
|
|
9
9
|
width: "100%",
|
|
@@ -12,7 +12,7 @@ const c = i("div")({
|
|
|
12
12
|
height: "100vh",
|
|
13
13
|
fontFamily: "Roboto, sans-serif",
|
|
14
14
|
overflow: "hidden"
|
|
15
|
-
}),
|
|
15
|
+
}), c = t("div")({
|
|
16
16
|
display: "flex",
|
|
17
17
|
flexDirection: "row",
|
|
18
18
|
justifyContent: "flex-start",
|
|
@@ -21,7 +21,7 @@ const c = i("div")({
|
|
|
21
21
|
padding: "4px 2px",
|
|
22
22
|
paddingLeft: 0,
|
|
23
23
|
height: `calc(100% - ${r.constants.appHeaderHeight}px - 8px)`
|
|
24
|
-
}),
|
|
24
|
+
}), x = t("div")(({ withActionsPanel: o }) => ({
|
|
25
25
|
display: "flex",
|
|
26
26
|
flexDirection: "column",
|
|
27
27
|
opacity: o ? 1 : 0,
|
|
@@ -39,7 +39,7 @@ const c = i("div")({
|
|
|
39
39
|
...!o && {
|
|
40
40
|
border: "none"
|
|
41
41
|
}
|
|
42
|
-
})),
|
|
42
|
+
})), m = t("div")(({ withActionsPanel: o }) => ({
|
|
43
43
|
display: "flex",
|
|
44
44
|
backgroundColor: r.colors.whiteGreen,
|
|
45
45
|
borderRadius: "4px",
|
|
@@ -54,16 +54,15 @@ const c = i("div")({
|
|
|
54
54
|
}
|
|
55
55
|
})), R = ({
|
|
56
56
|
navProps: o,
|
|
57
|
-
appHeaderProps:
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
/* @__PURE__ */
|
|
63
|
-
|
|
64
|
-
/* @__PURE__ */
|
|
65
|
-
/* @__PURE__ */
|
|
66
|
-
/* @__PURE__ */ e(f, { withActionsPanel: t, children: p })
|
|
57
|
+
appHeaderProps: a,
|
|
58
|
+
actionsPanelContent: e,
|
|
59
|
+
children: n
|
|
60
|
+
}) => /* @__PURE__ */ d(l, { children: [
|
|
61
|
+
/* @__PURE__ */ i(p, { ...a }),
|
|
62
|
+
/* @__PURE__ */ d(c, { children: [
|
|
63
|
+
/* @__PURE__ */ i(s, { ...o }),
|
|
64
|
+
/* @__PURE__ */ i(x, { withActionsPanel: !!e, children: e && e }),
|
|
65
|
+
/* @__PURE__ */ i(m, { withActionsPanel: !!e, children: n })
|
|
67
66
|
] })
|
|
68
67
|
] });
|
|
69
68
|
export {
|
package/.chunks/AppHeader.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsxs as i, jsx as t } from "react/jsx-runtime";
|
|
2
2
|
import { useState as a } from "react";
|
|
3
3
|
import { n } from "./emotion-styled.browser.esm.js";
|
|
4
|
-
import r from "../assets/theme.
|
|
4
|
+
import r from "../assets/theme.js";
|
|
5
5
|
import { l as s } from "./jocologo.js";
|
|
6
6
|
import { I as p } from "./Input.js";
|
|
7
7
|
import { B as m } from "./Button.js";
|
package/.chunks/Avatar.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as i } from "react/jsx-runtime";
|
|
2
2
|
import { c } from "./createSvgIcon.js";
|
|
3
3
|
import { B as d } from "./ButtonBase.js";
|
|
4
|
-
import t from "../assets/theme.
|
|
4
|
+
import t from "../assets/theme.js";
|
|
5
5
|
import { n as a, i as l } from "./emotion-styled.browser.esm.js";
|
|
6
6
|
const m = c(/* @__PURE__ */ i("path", {
|
|
7
7
|
d: "M12 5.9c1.16 0 2.1.94 2.1 2.1s-.94 2.1-2.1 2.1S9.9 9.16 9.9 8s.94-2.1 2.1-2.1m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as n } from "react/jsx-runtime";
|
|
2
2
|
import { B as c } from "./ButtonBase.js";
|
|
3
|
-
import m from "../assets/theme.
|
|
3
|
+
import m from "../assets/theme.js";
|
|
4
4
|
import { n as d } from "./emotion-styled.browser.esm.js";
|
|
5
5
|
const s = d("img")(
|
|
6
6
|
({ borderColor: o = m.colors.darkGreen, size: r = 40, objectFit: e = "cover" }) => ({
|
package/.chunks/BasicPage.js
CHANGED
|
@@ -2,7 +2,7 @@ import { jsxs as o, jsx as t } from "react/jsx-runtime";
|
|
|
2
2
|
import { A as s } from "./AppBar.js";
|
|
3
3
|
import { N as p } from "./Nav.js";
|
|
4
4
|
import { n as r } from "./emotion-styled.browser.esm.js";
|
|
5
|
-
import a from "../assets/theme.
|
|
5
|
+
import a from "../assets/theme.js";
|
|
6
6
|
const m = r("div")({
|
|
7
7
|
display: "flex",
|
|
8
8
|
flexDirection: "column",
|
package/.chunks/Button.js
CHANGED
|
@@ -4,7 +4,7 @@ import { a as F, g as U, s as c, r as _, e, f as H, u as A, c as w, P as t, b as
|
|
|
4
4
|
import { m as J } from "./memoTheme.js";
|
|
5
5
|
import { c as K } from "./createSimplePaletteValueFilter.js";
|
|
6
6
|
import { B as Q } from "./ButtonBase.js";
|
|
7
|
-
import i from "../assets/theme.
|
|
7
|
+
import i from "../assets/theme.js";
|
|
8
8
|
function X(o) {
|
|
9
9
|
return F("MuiButton", o);
|
|
10
10
|
}
|
package/.chunks/CompactNav.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { useState as
|
|
3
|
-
import { n as
|
|
4
|
-
import o from "../assets/theme.
|
|
5
|
-
import { B as
|
|
6
|
-
const
|
|
1
|
+
import { jsx as s, jsxs as m } from "react/jsx-runtime";
|
|
2
|
+
import { useState as f } from "react";
|
|
3
|
+
import { n as i, i as u } from "./emotion-styled.browser.esm.js";
|
|
4
|
+
import o from "../assets/theme.js";
|
|
5
|
+
import { B as x } from "./ButtonBase.js";
|
|
6
|
+
const h = i("div")({
|
|
7
7
|
display: "flex",
|
|
8
8
|
flexDirection: "column",
|
|
9
9
|
backgroundColor: "transparent",
|
|
@@ -21,8 +21,8 @@ const x = s("div")({
|
|
|
21
21
|
borderRadius: "8px"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
}),
|
|
25
|
-
shouldForwardProp: (r) =>
|
|
24
|
+
}), g = i(x, {
|
|
25
|
+
shouldForwardProp: (r) => u(r)
|
|
26
26
|
})(({ active: r }) => ({
|
|
27
27
|
display: "flex",
|
|
28
28
|
flexDirection: "column",
|
|
@@ -55,16 +55,16 @@ const x = s("div")({
|
|
|
55
55
|
color: o.colors.darkGreen,
|
|
56
56
|
textAlign: "center"
|
|
57
57
|
}
|
|
58
|
-
})),
|
|
59
|
-
const [
|
|
60
|
-
|
|
58
|
+
})), S = ({ navItems: r, activeRoute: e }) => {
|
|
59
|
+
const [a, l] = f(""), c = (n, t) => {
|
|
60
|
+
l(n), t();
|
|
61
61
|
};
|
|
62
|
-
return /* @__PURE__ */
|
|
63
|
-
}, ...
|
|
64
|
-
|
|
65
|
-
/* @__PURE__ */
|
|
66
|
-
] },
|
|
62
|
+
return /* @__PURE__ */ s(h, { children: r.map(({ icon: n, label: t = "", onClick: d = () => {
|
|
63
|
+
}, ...p }) => /* @__PURE__ */ m(g, { ...p, active: e ? e === t : a === t, onClick: () => c(t, d), children: [
|
|
64
|
+
n,
|
|
65
|
+
/* @__PURE__ */ s("span", { children: t })
|
|
66
|
+
] }, t)) });
|
|
67
67
|
};
|
|
68
68
|
export {
|
|
69
|
-
|
|
69
|
+
S as C
|
|
70
70
|
};
|
package/.chunks/Divider.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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 u from "../assets/theme.
|
|
3
|
+
import u from "../assets/theme.js";
|
|
4
4
|
import * as S from "react";
|
|
5
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
6
|
import { m as b } from "./memoTheme.js";
|
package/.chunks/Input.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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 we from "../assets/theme.
|
|
3
|
+
import we from "../assets/theme.js";
|
|
4
4
|
import * as i from "react";
|
|
5
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";
|
|
6
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";
|
package/.chunks/Nav.js
CHANGED
|
@@ -3,7 +3,7 @@ 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 z from "../assets/theme.
|
|
6
|
+
import z from "../assets/theme.js";
|
|
7
7
|
import { D as ht } from "./Divider.js";
|
|
8
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";
|
|
9
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";
|
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",
|
|
File without changes
|