jcicl 0.0.77 → 0.0.79
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.
|
|
4
|
+
"version": "0.0.79",
|
|
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",
|
|
@@ -22,6 +22,8 @@ interface EditableInfoCardStyleProps {
|
|
|
22
22
|
/** If true, the card renders a loading spinner as content */
|
|
23
23
|
loading?: boolean;
|
|
24
24
|
loadingStyles?: CSSObject;
|
|
25
|
+
titleSpacing?: string;
|
|
26
|
+
canEditTitle?: boolean;
|
|
25
27
|
}
|
|
26
28
|
export interface EditableInfoCardProps extends EditableInfoCardStyleProps {
|
|
27
29
|
title?: string;
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import { jsx as o, jsxs as n, Fragment as y } from "react/jsx-runtime";
|
|
2
|
-
import { useState as z, useEffect as
|
|
2
|
+
import { useState as z, useEffect as K } from "react";
|
|
3
3
|
import { n as i } from "../../.chunks/emotion-styled.browser.esm.js";
|
|
4
4
|
import { c as m } from "../../.chunks/emotion-react.browser.esm.js";
|
|
5
5
|
import { c as C } from "../../.chunks/createSvgIcon.js";
|
|
6
6
|
import d from "../../theme.js";
|
|
7
|
-
import { LabeledValue as
|
|
8
|
-
import { LabeledInput as
|
|
7
|
+
import { LabeledValue as N } from "../../base/LabeledValue/LabeledValue.js";
|
|
8
|
+
import { LabeledInput as O } from "../../composite/LabeledInput/LabeledInput.js";
|
|
9
9
|
import k from "../../base/Loading/Loading.js";
|
|
10
10
|
import f from "../../base/Flex/Flex.js";
|
|
11
11
|
import { Tooltip as x } from "../../composite/Tooltip/Tooltip.js";
|
|
12
|
-
import { T as
|
|
13
|
-
import { B as
|
|
14
|
-
const
|
|
12
|
+
import { T as Q } from "../../.chunks/Input.js";
|
|
13
|
+
import { B as X } from "../../.chunks/ButtonBase.js";
|
|
14
|
+
const Z = C(/* @__PURE__ */ o("path", {
|
|
15
15
|
d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34a.996.996 0 0 0-1.41 0l-1.83 1.83 3.75 3.75z"
|
|
16
|
-
}), "Edit"),
|
|
16
|
+
}), "Edit"), _ = C(/* @__PURE__ */ o("path", {
|
|
17
17
|
d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
|
|
18
|
-
}), "Close"),
|
|
18
|
+
}), "Close"), oo = C(/* @__PURE__ */ o("path", {
|
|
19
19
|
d: "M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"
|
|
20
20
|
}), "Check"), L = i("div")(
|
|
21
|
-
({ width: t, padding:
|
|
21
|
+
({ width: t, padding: a, shadow: r, styles: u, isEditing: c }) => ({
|
|
22
22
|
...m`
|
|
23
23
|
width: ${t};
|
|
24
24
|
max-width: 100%;
|
|
@@ -29,7 +29,7 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
29
29
|
font-size: 28px;
|
|
30
30
|
}
|
|
31
31
|
font-family: 'Roboto', sans-serif;
|
|
32
|
-
padding: ${
|
|
32
|
+
padding: ${a};
|
|
33
33
|
display: flex;
|
|
34
34
|
flex-direction: column;
|
|
35
35
|
box-shadow: ${r};
|
|
@@ -43,7 +43,7 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
43
43
|
opacity: ${c ? "0" : "1"};
|
|
44
44
|
`
|
|
45
45
|
})
|
|
46
|
-
),
|
|
46
|
+
), eo = i(Q)({
|
|
47
47
|
backgroundColor: d.colors.white,
|
|
48
48
|
borderRadius: "0",
|
|
49
49
|
input: {
|
|
@@ -71,7 +71,7 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
71
71
|
border: "none"
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
|
-
}),
|
|
74
|
+
}), to = i(L)(({ isEditing: t }) => ({
|
|
75
75
|
...m`
|
|
76
76
|
position: absolute;
|
|
77
77
|
top: 0;
|
|
@@ -81,66 +81,68 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
81
81
|
transition: 920ms all ease-in-out;
|
|
82
82
|
`
|
|
83
83
|
})), M = i("div")(
|
|
84
|
-
({ spacing: t, columns:
|
|
84
|
+
({ spacing: t, columns: a, numRows: r }) => ({
|
|
85
85
|
...m`
|
|
86
86
|
margin-top: calc(${t} * 0.75);
|
|
87
87
|
grid-row-gap: ${t};
|
|
88
88
|
grid-column-gap: calc(${t} * 1.5);
|
|
89
89
|
display: grid;
|
|
90
|
-
grid-template-columns: repeat(${
|
|
90
|
+
grid-template-columns: repeat(${a}, 1fr);
|
|
91
91
|
grid-template-rows: repeat(${r}, 1fr);
|
|
92
92
|
`
|
|
93
93
|
})
|
|
94
|
-
), $ = i(
|
|
94
|
+
), $ = i(X)(() => ({
|
|
95
95
|
...m`
|
|
96
96
|
width: 40px;
|
|
97
97
|
height: 40px;
|
|
98
98
|
border-radius: 50%;
|
|
99
99
|
`
|
|
100
|
-
})),
|
|
100
|
+
})), ro = i("div")`
|
|
101
101
|
position: relative;
|
|
102
102
|
width: 100%;
|
|
103
103
|
`, B = i("div")`
|
|
104
104
|
height: 19px;
|
|
105
|
-
`,
|
|
105
|
+
`, xo = ({
|
|
106
106
|
decorativeElement: t,
|
|
107
|
-
title:
|
|
107
|
+
title: a,
|
|
108
108
|
items: r = [],
|
|
109
109
|
padding: u = "1rem 2rem",
|
|
110
110
|
shadow: c = d.boxShadow.darkGreen,
|
|
111
111
|
spacing: P = "2rem",
|
|
112
|
+
titleSpacing: R = "1rem",
|
|
113
|
+
canEditTitle: T = !0,
|
|
112
114
|
columns: w = 3,
|
|
113
|
-
styles:
|
|
114
|
-
width:
|
|
115
|
+
styles: j,
|
|
116
|
+
width: E = "100%",
|
|
115
117
|
loading: v = !1,
|
|
116
|
-
onSave:
|
|
118
|
+
onSave: V = () => {
|
|
117
119
|
},
|
|
118
|
-
onCancel:
|
|
120
|
+
onCancel: Y = () => {
|
|
119
121
|
},
|
|
120
|
-
onEdit:
|
|
122
|
+
onEdit: F = () => {
|
|
121
123
|
}
|
|
122
124
|
}) => {
|
|
123
|
-
const b = r.reduce((e,
|
|
124
|
-
|
|
125
|
+
const b = r.reduce((e, l) => ({ ...e, [l.label]: l.value }), { titleValue: a }), [G, g] = z(!1), [p, h] = z(b);
|
|
126
|
+
K(() => {
|
|
125
127
|
h(b);
|
|
126
128
|
}, [r]);
|
|
127
|
-
const
|
|
128
|
-
|
|
129
|
-
},
|
|
130
|
-
|
|
131
|
-
},
|
|
132
|
-
|
|
133
|
-
},
|
|
134
|
-
h((
|
|
135
|
-
},
|
|
136
|
-
h((
|
|
137
|
-
},
|
|
138
|
-
return /* @__PURE__ */ n(
|
|
129
|
+
const U = () => {
|
|
130
|
+
F(), g(!0);
|
|
131
|
+
}, W = () => {
|
|
132
|
+
V(p), g(!1);
|
|
133
|
+
}, q = () => {
|
|
134
|
+
Y(), h(b), g(!1);
|
|
135
|
+
}, A = (e, l) => {
|
|
136
|
+
h((J) => ({ ...J, [e]: l }));
|
|
137
|
+
}, D = (e) => {
|
|
138
|
+
h((l) => ({ ...l, titleValue: e }));
|
|
139
|
+
}, H = Math.ceil(r.length / w), s = 50, I = { width: E, padding: u, shadow: c, styles: j, isEditing: G }, S = { spacing: P, columns: w, numRows: H };
|
|
140
|
+
return /* @__PURE__ */ n(ro, { children: [
|
|
139
141
|
/* @__PURE__ */ n(L, { ...I, children: [
|
|
140
142
|
/* @__PURE__ */ n(f, { width: "100%", gap: "1rem", justifyContent: "space-between", children: [
|
|
141
|
-
/* @__PURE__ */ n(f, { width: "100%", gap:
|
|
143
|
+
/* @__PURE__ */ n(f, { width: "100%", gap: R, alignItems: "center", children: [
|
|
142
144
|
t && t,
|
|
143
|
-
/* @__PURE__ */ o("h3", { children:
|
|
145
|
+
/* @__PURE__ */ o("h3", { children: a })
|
|
144
146
|
] }),
|
|
145
147
|
/* @__PURE__ */ o(
|
|
146
148
|
x,
|
|
@@ -159,7 +161,7 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
159
161
|
]
|
|
160
162
|
}
|
|
161
163
|
},
|
|
162
|
-
children: /* @__PURE__ */ o($, { onClick:
|
|
164
|
+
children: /* @__PURE__ */ o($, { onClick: U, children: /* @__PURE__ */ o(Z, {}) })
|
|
163
165
|
}
|
|
164
166
|
)
|
|
165
167
|
] }),
|
|
@@ -176,19 +178,19 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
176
178
|
}
|
|
177
179
|
}
|
|
178
180
|
)
|
|
179
|
-
] }) : r == null ? void 0 : r.map((e) => /* @__PURE__ */ o(
|
|
181
|
+
] }) : r == null ? void 0 : r.map((e) => /* @__PURE__ */ o(N, { ...e }, e.label)) })
|
|
180
182
|
] }),
|
|
181
|
-
/* @__PURE__ */ n(
|
|
183
|
+
/* @__PURE__ */ n(to, { ...I, children: [
|
|
182
184
|
/* @__PURE__ */ n(f, { width: "100%", justifyContent: "space-between", children: [
|
|
183
185
|
/* @__PURE__ */ n(f, { width: "100%", gap: "1rem", alignItems: "center", children: [
|
|
184
186
|
t && t,
|
|
185
|
-
/* @__PURE__ */ o("h3", { children: /* @__PURE__ */ o(
|
|
186
|
-
|
|
187
|
+
/* @__PURE__ */ o("h3", { children: T ? /* @__PURE__ */ o(
|
|
188
|
+
eo,
|
|
187
189
|
{
|
|
188
|
-
onChange: (e) =>
|
|
189
|
-
value: (p == null ? void 0 : p.titleValue) ??
|
|
190
|
+
onChange: (e) => D(e.target.value),
|
|
191
|
+
value: (p == null ? void 0 : p.titleValue) ?? a
|
|
190
192
|
}
|
|
191
|
-
) })
|
|
193
|
+
) : /* @__PURE__ */ o("h3", { children: a }) })
|
|
192
194
|
] }),
|
|
193
195
|
/* @__PURE__ */ o(
|
|
194
196
|
x,
|
|
@@ -207,7 +209,7 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
207
209
|
]
|
|
208
210
|
}
|
|
209
211
|
},
|
|
210
|
-
children: /* @__PURE__ */ o($, { onClick:
|
|
212
|
+
children: /* @__PURE__ */ o($, { onClick: q, children: /* @__PURE__ */ o(_, {}) })
|
|
211
213
|
}
|
|
212
214
|
),
|
|
213
215
|
/* @__PURE__ */ o(
|
|
@@ -227,7 +229,7 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
227
229
|
]
|
|
228
230
|
}
|
|
229
231
|
},
|
|
230
|
-
children: /* @__PURE__ */ o($, { onClick:
|
|
232
|
+
children: /* @__PURE__ */ o($, { onClick: W, children: /* @__PURE__ */ o(oo, {}) })
|
|
231
233
|
}
|
|
232
234
|
)
|
|
233
235
|
] }),
|
|
@@ -245,11 +247,11 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
245
247
|
}
|
|
246
248
|
)
|
|
247
249
|
] }) : r == null ? void 0 : r.map((e) => /* @__PURE__ */ o(
|
|
248
|
-
|
|
250
|
+
O,
|
|
249
251
|
{
|
|
250
252
|
label: e.label,
|
|
251
253
|
value: p[e.label],
|
|
252
|
-
onChange: (
|
|
254
|
+
onChange: (l) => A(e.label, l.target.value)
|
|
253
255
|
},
|
|
254
256
|
e.label
|
|
255
257
|
)) })
|
|
@@ -257,6 +259,6 @@ const Q = C(/* @__PURE__ */ o("path", {
|
|
|
257
259
|
] });
|
|
258
260
|
};
|
|
259
261
|
export {
|
|
260
|
-
|
|
261
|
-
|
|
262
|
+
xo as EditableInfoCard,
|
|
263
|
+
xo as default
|
|
262
264
|
};
|