@versini/ui-button 1.7.0 → 2.1.0
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/dist/chunks/{utilities.3-gVSv1A.js → utilities.BWGZmbN4.js} +66 -91
- package/dist/components/Button/Button.js +22 -24
- package/dist/components/Button/ButtonCopy.js +132 -0
- package/dist/components/Button/ButtonIcon.js +25 -27
- package/dist/components/Button/ButtonLink.js +17 -19
- package/dist/index.d.ts +10 -6
- package/dist/index.js +43 -43
- package/dist/style.css +1 -1
- package/package.json +5 -5
|
@@ -1,119 +1,96 @@
|
|
|
1
1
|
import a from "clsx";
|
|
2
|
-
const l = "av-button"
|
|
3
|
-
/*!
|
|
4
|
-
@versini/ui-spacing v1.1.1
|
|
5
|
-
© 2024 gizmette.com
|
|
6
|
-
*/
|
|
7
|
-
try {
|
|
8
|
-
window.__VERSINI_UI_SPACING__ || (window.__VERSINI_UI_SPACING__ = {
|
|
9
|
-
version: "1.1.1",
|
|
10
|
-
buildTime: "12/28/2024 05:53 PM EST",
|
|
11
|
-
homepage: "https://github.com/aversini/ui-components",
|
|
12
|
-
license: "MIT"
|
|
13
|
-
});
|
|
14
|
-
} catch {
|
|
15
|
-
}
|
|
16
|
-
const m = (t) => {
|
|
17
|
-
let r = "";
|
|
18
|
-
if (typeof t == "number" || typeof t == "string")
|
|
19
|
-
r = "m-" + t;
|
|
20
|
-
else {
|
|
21
|
-
const e = [];
|
|
22
|
-
(t == null ? void 0 : t.t) !== void 0 && e.push(`mt-${t.t}`), (t == null ? void 0 : t.r) !== void 0 && e.push(`mr-${t.r}`), (t == null ? void 0 : t.b) !== void 0 && e.push(`mb-${t.b}`), (t == null ? void 0 : t.l) !== void 0 && e.push(`ml-${t.l}`), r = e.join(" ");
|
|
23
|
-
}
|
|
24
|
-
return r;
|
|
25
|
-
}, f = "icon", x = "button", _ = "link", C = ({
|
|
2
|
+
const l = "av-button", p = "icon", x = "button", f = "link", m = ({
|
|
26
3
|
type: t,
|
|
27
4
|
size: r,
|
|
28
5
|
labelRight: e,
|
|
29
|
-
labelLeft:
|
|
30
|
-
align:
|
|
6
|
+
labelLeft: i,
|
|
7
|
+
align: c
|
|
31
8
|
}) => {
|
|
32
|
-
const
|
|
9
|
+
const o = "text-sm font-medium max-h-8 py-0", g = "text-base font-medium max-h-9 py-1", n = "text-lg font-medium max-h-12 py-2";
|
|
33
10
|
switch (t) {
|
|
34
11
|
case x:
|
|
35
12
|
return a("px-4", {
|
|
36
|
-
[
|
|
13
|
+
[o]: r === "small",
|
|
37
14
|
[g]: r === "medium",
|
|
38
15
|
[n]: r === "large"
|
|
39
16
|
});
|
|
40
|
-
case
|
|
17
|
+
case f:
|
|
41
18
|
return a("px-4 text-center", {
|
|
42
|
-
[
|
|
19
|
+
[o]: r === "small",
|
|
43
20
|
[g]: r === "medium",
|
|
44
21
|
[n]: r === "large"
|
|
45
22
|
});
|
|
46
|
-
case
|
|
23
|
+
case p:
|
|
47
24
|
return a("inline-flex items-center", {
|
|
48
|
-
"justify-center":
|
|
49
|
-
"justify-start":
|
|
50
|
-
"justify-end":
|
|
51
|
-
"h-6 w-6 p-0": r === "small" && !(e ||
|
|
52
|
-
"h-6 px-4 text-sm font-medium": r === "small" && (e ||
|
|
53
|
-
"h-8 w-8 p-1": r === "medium" && !(e ||
|
|
54
|
-
"h-8 px-4 text-base font-medium": r === "medium" && (e ||
|
|
55
|
-
"h-12 w-12 p-2": r === "large" && !(e ||
|
|
56
|
-
"h-12 px-4 text-lg font-medium": r === "large" && (e ||
|
|
25
|
+
"justify-center": c === "center",
|
|
26
|
+
"justify-start": c === "left",
|
|
27
|
+
"justify-end": c === "right",
|
|
28
|
+
"h-6 w-6 p-0": r === "small" && !(e || i),
|
|
29
|
+
"h-6 px-4 text-sm font-medium": r === "small" && (e || i),
|
|
30
|
+
"h-8 w-8 p-1": r === "medium" && !(e || i),
|
|
31
|
+
"h-8 px-4 text-base font-medium": r === "medium" && (e || i),
|
|
32
|
+
"h-12 w-12 p-2": r === "large" && !(e || i),
|
|
33
|
+
"h-12 px-4 text-lg font-medium": r === "large" && (e || i)
|
|
57
34
|
});
|
|
58
35
|
}
|
|
59
|
-
},
|
|
36
|
+
}, C = ({
|
|
60
37
|
mode: t,
|
|
61
38
|
noBackground: r,
|
|
62
39
|
noTruncate: e,
|
|
63
|
-
variant:
|
|
64
|
-
radius:
|
|
40
|
+
variant: i,
|
|
41
|
+
radius: c
|
|
65
42
|
}) => {
|
|
66
43
|
if (r)
|
|
67
44
|
return a("not-prose", {
|
|
68
|
-
"rounded-full":
|
|
69
|
-
"rounded-md":
|
|
70
|
-
"rounded-sm":
|
|
45
|
+
"rounded-full": c === "large",
|
|
46
|
+
"rounded-md": c === "medium",
|
|
47
|
+
"rounded-sm": c === "small"
|
|
71
48
|
});
|
|
72
|
-
if (
|
|
49
|
+
if (i === "primary")
|
|
73
50
|
return a("not-prose", {
|
|
74
|
-
"rounded-full":
|
|
75
|
-
"rounded-md":
|
|
76
|
-
"rounded-sm":
|
|
51
|
+
"rounded-full": c === "large",
|
|
52
|
+
"rounded-md": c === "medium",
|
|
53
|
+
"rounded-sm": c === "small",
|
|
77
54
|
truncate: !e,
|
|
78
55
|
"bg-action-dark text-copy-light": t === "dark",
|
|
79
56
|
"bg-action-light text-copy-lighter": t === "light",
|
|
80
57
|
"bg-action-dark text-copy-light dark:bg-action-light dark:text-copy-lighter": t === "system",
|
|
81
58
|
"bg-action-light text-copy-lighter dark:bg-action-dark dark:text-copy-light": t === "alt-system"
|
|
82
59
|
});
|
|
83
|
-
if (
|
|
60
|
+
if (i === "secondary")
|
|
84
61
|
return a("not-prose", {
|
|
85
|
-
"rounded-full":
|
|
86
|
-
"rounded-md":
|
|
87
|
-
"rounded-sm":
|
|
62
|
+
"rounded-full": c === "large",
|
|
63
|
+
"rounded-md": c === "medium",
|
|
64
|
+
"rounded-sm": c === "small",
|
|
88
65
|
truncate: !e,
|
|
89
66
|
"bg-action-dark text-copy-light": t === "light",
|
|
90
67
|
"bg-action-light text-copy-lighter": t === "dark",
|
|
91
68
|
"bg-action-dark text-copy-light dark:bg-action-light dark:text-copy-lighter": t === "alt-system",
|
|
92
69
|
"bg-action-light text-copy-lighter dark:bg-action-dark dark:text-copy-light": t === "system"
|
|
93
70
|
});
|
|
94
|
-
if (
|
|
71
|
+
if (i === "danger")
|
|
95
72
|
return a("not-prose", {
|
|
96
|
-
"rounded-full":
|
|
97
|
-
"rounded-md":
|
|
98
|
-
"rounded-sm":
|
|
73
|
+
"rounded-full": c === "large",
|
|
74
|
+
"rounded-md": c === "medium",
|
|
75
|
+
"rounded-sm": c === "small",
|
|
99
76
|
truncate: !e,
|
|
100
77
|
"bg-action-danger-dark text-copy-light": t === "dark",
|
|
101
78
|
"bg-action-danger-light text-copy-lighter": t === "light",
|
|
102
79
|
"bg-action-danger-dark text-copy-light dark:bg-action-danger-light dark:text-copy-lighter": t === "system",
|
|
103
80
|
"bg-action-danger-light text-copy-lighter dark:bg-action-danger-dark dark:text-copy-light": t === "alt-system"
|
|
104
81
|
});
|
|
105
|
-
if (
|
|
82
|
+
if (i === "selected")
|
|
106
83
|
return a("not-prose", {
|
|
107
|
-
"rounded-full":
|
|
108
|
-
"rounded-md":
|
|
109
|
-
"rounded-sm":
|
|
84
|
+
"rounded-full": c === "large",
|
|
85
|
+
"rounded-md": c === "medium",
|
|
86
|
+
"rounded-sm": c === "small",
|
|
110
87
|
truncate: !e,
|
|
111
88
|
"bg-action-selected-dark text-copy-light": t === "dark",
|
|
112
89
|
"bg-action-selected-light text-copy-lighter": t === "light",
|
|
113
90
|
"bg-action-selected-dark text-copy-light dark:bg-action-selected-light dark:text-copy-lighter": t === "system",
|
|
114
91
|
"bg-action-selected-light text-copy-lighter dark:bg-action-selected-dark dark:text-copy-light": t === "alt-system"
|
|
115
92
|
});
|
|
116
|
-
},
|
|
93
|
+
}, B = ({
|
|
117
94
|
mode: t,
|
|
118
95
|
disabled: r,
|
|
119
96
|
variant: e
|
|
@@ -183,7 +160,7 @@ const m = (t) => {
|
|
|
183
160
|
"active:bg-action-selected-dark-active dark:active:bg-action-selected-light-active": t === "system",
|
|
184
161
|
"active:bg-action-selected-light-active dark:active:bg-action-selected-dark-active": t === "alt-system"
|
|
185
162
|
});
|
|
186
|
-
},
|
|
163
|
+
}, E = ({
|
|
187
164
|
mode: t,
|
|
188
165
|
noBorder: r,
|
|
189
166
|
variant: e
|
|
@@ -218,56 +195,54 @@ const m = (t) => {
|
|
|
218
195
|
"border-border-selected-dark dark:border-border-selected-medium": t === "system",
|
|
219
196
|
"border-border-selected-medium dark:border-border-selected-dark": t === "alt-system"
|
|
220
197
|
});
|
|
221
|
-
},
|
|
198
|
+
}, N = ({
|
|
222
199
|
focusMode: t
|
|
223
200
|
}) => a("focus:outline", "focus:outline-2", "focus:outline-offset-2", {
|
|
224
201
|
"focus:outline-focus-dark": t === "dark",
|
|
225
202
|
"focus:outline-focus-light": t === "light",
|
|
226
203
|
"focus:outline-focus-light dark:focus:outline-focus-dark": t === "alt-system",
|
|
227
204
|
"focus:outline-focus-dark dark:focus:outline-focus-light": t === "system"
|
|
228
|
-
}),
|
|
205
|
+
}), _ = ({
|
|
229
206
|
type: t,
|
|
230
207
|
className: r,
|
|
231
208
|
raw: e,
|
|
232
|
-
mode:
|
|
233
|
-
focusMode:
|
|
234
|
-
disabled:
|
|
209
|
+
mode: i,
|
|
210
|
+
focusMode: c,
|
|
211
|
+
disabled: o,
|
|
235
212
|
fullWidth: g,
|
|
236
213
|
size: n,
|
|
237
214
|
noBorder: s,
|
|
238
215
|
labelRight: h,
|
|
239
216
|
labelLeft: b,
|
|
240
|
-
|
|
241
|
-
noBackground: v,
|
|
217
|
+
noBackground: k,
|
|
242
218
|
variant: d,
|
|
243
|
-
noTruncate:
|
|
244
|
-
align:
|
|
245
|
-
radius:
|
|
219
|
+
noTruncate: v,
|
|
220
|
+
align: u,
|
|
221
|
+
radius: y
|
|
246
222
|
}) => (d || (d = "primary"), e ? a(l, r) : a(
|
|
247
223
|
l,
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
B({
|
|
251
|
-
mode: o,
|
|
224
|
+
C({
|
|
225
|
+
mode: i,
|
|
252
226
|
variant: d,
|
|
253
|
-
noBackground:
|
|
254
|
-
noTruncate:
|
|
255
|
-
radius:
|
|
227
|
+
noBackground: k,
|
|
228
|
+
noTruncate: v,
|
|
229
|
+
radius: y
|
|
256
230
|
}),
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
w({ mode:
|
|
231
|
+
m({ type: t, size: n, labelRight: h, labelLeft: b, align: u }),
|
|
232
|
+
E({ mode: i, variant: d, noBorder: s }),
|
|
233
|
+
N({ focusMode: c }),
|
|
234
|
+
B({ mode: i, variant: d, disabled: o }),
|
|
235
|
+
w({ mode: i, variant: d, disabled: o }),
|
|
262
236
|
{
|
|
263
237
|
"w-full": g,
|
|
264
|
-
"disabled:cursor-not-allowed disabled:opacity-50":
|
|
265
|
-
}
|
|
238
|
+
"disabled:cursor-not-allowed disabled:opacity-50": o
|
|
239
|
+
},
|
|
240
|
+
r
|
|
266
241
|
));
|
|
267
242
|
export {
|
|
268
243
|
l as BUTTON_CLASSNAME,
|
|
269
244
|
x as TYPE_BUTTON,
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
245
|
+
p as TYPE_ICON,
|
|
246
|
+
f as TYPE_LINK,
|
|
247
|
+
_ as getButtonClasses
|
|
273
248
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
import { BaseButton_private as
|
|
4
|
-
import { getButtonClasses as
|
|
5
|
-
const
|
|
1
|
+
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
+
import N from "react";
|
|
3
|
+
import { BaseButton_private as T } from "../../chunks/BaseButton.BFKIL4GO.js";
|
|
4
|
+
import { getButtonClasses as g, TYPE_BUTTON as x } from "../../chunks/utilities.BWGZmbN4.js";
|
|
5
|
+
const C = N.forwardRef(
|
|
6
6
|
({
|
|
7
7
|
children: s,
|
|
8
8
|
disabled: t = !1,
|
|
@@ -13,14 +13,13 @@ const R = T.forwardRef(
|
|
|
13
13
|
size: m = "medium",
|
|
14
14
|
raw: f = !1,
|
|
15
15
|
noBorder: l = !1,
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
type: C,
|
|
16
|
+
variant: p = "primary",
|
|
17
|
+
noTruncate: n = !1,
|
|
18
|
+
radius: i = "large",
|
|
19
|
+
...u
|
|
20
|
+
}, B) => {
|
|
21
|
+
const y = g({
|
|
22
|
+
type: x,
|
|
24
23
|
mode: e,
|
|
25
24
|
focusMode: o,
|
|
26
25
|
fullWidth: r,
|
|
@@ -29,24 +28,23 @@ const R = T.forwardRef(
|
|
|
29
28
|
className: a,
|
|
30
29
|
size: m,
|
|
31
30
|
noBorder: l,
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
radius: u
|
|
31
|
+
variant: p,
|
|
32
|
+
noTruncate: n,
|
|
33
|
+
radius: i
|
|
36
34
|
});
|
|
37
|
-
return /* @__PURE__ */
|
|
38
|
-
|
|
35
|
+
return /* @__PURE__ */ c(
|
|
36
|
+
T,
|
|
39
37
|
{
|
|
40
|
-
ref:
|
|
41
|
-
className:
|
|
38
|
+
ref: B,
|
|
39
|
+
className: y,
|
|
42
40
|
disabled: t,
|
|
43
|
-
...
|
|
41
|
+
...u,
|
|
44
42
|
children: s
|
|
45
43
|
}
|
|
46
44
|
);
|
|
47
45
|
}
|
|
48
46
|
);
|
|
49
|
-
|
|
47
|
+
C.displayName = "Button";
|
|
50
48
|
export {
|
|
51
|
-
|
|
49
|
+
C as Button
|
|
52
50
|
};
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { jsxs as r, Fragment as u, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import w, { useState as _, useEffect as h } from "react";
|
|
3
|
+
import { ButtonIcon as f } from "./ButtonIcon.js";
|
|
4
|
+
import N from "clsx";
|
|
5
|
+
const m = ({
|
|
6
|
+
children: o,
|
|
7
|
+
fill: c,
|
|
8
|
+
viewBox: s,
|
|
9
|
+
className: e,
|
|
10
|
+
defaultViewBox: i,
|
|
11
|
+
defaultClassName: l,
|
|
12
|
+
title: a,
|
|
13
|
+
semantic: n = !1,
|
|
14
|
+
...d
|
|
15
|
+
}) => {
|
|
16
|
+
const p = N(e || l);
|
|
17
|
+
return /* @__PURE__ */ r(u, { children: [
|
|
18
|
+
/* @__PURE__ */ t(
|
|
19
|
+
"svg",
|
|
20
|
+
{
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
className: p,
|
|
23
|
+
viewBox: s || i,
|
|
24
|
+
fill: c || "currentColor",
|
|
25
|
+
role: "img",
|
|
26
|
+
"aria-hidden": !n,
|
|
27
|
+
focusable: !1,
|
|
28
|
+
...d,
|
|
29
|
+
children: o
|
|
30
|
+
}
|
|
31
|
+
),
|
|
32
|
+
a && n && /* @__PURE__ */ t("span", { className: "sr-only", children: a })
|
|
33
|
+
] });
|
|
34
|
+
};
|
|
35
|
+
/*!
|
|
36
|
+
@versini/ui-svgicon v2.0.1
|
|
37
|
+
© 2024 gizmette.com
|
|
38
|
+
*/
|
|
39
|
+
try {
|
|
40
|
+
window.__VERSINI_UI_SVGICON__ || (window.__VERSINI_UI_SVGICON__ = {
|
|
41
|
+
version: "2.0.1",
|
|
42
|
+
buildTime: "12/30/2024 11:40 AM EST",
|
|
43
|
+
homepage: "https://github.com/aversini/ui-components",
|
|
44
|
+
license: "MIT"
|
|
45
|
+
});
|
|
46
|
+
} catch {
|
|
47
|
+
}
|
|
48
|
+
const I = ({
|
|
49
|
+
className: o,
|
|
50
|
+
viewBox: c,
|
|
51
|
+
title: s,
|
|
52
|
+
monotone: e,
|
|
53
|
+
...i
|
|
54
|
+
}) => /* @__PURE__ */ r(
|
|
55
|
+
m,
|
|
56
|
+
{
|
|
57
|
+
defaultViewBox: "0 0 448 512",
|
|
58
|
+
defaultClassName: "size-5",
|
|
59
|
+
viewBox: c,
|
|
60
|
+
className: o,
|
|
61
|
+
title: s || "Copied",
|
|
62
|
+
...i,
|
|
63
|
+
children: [
|
|
64
|
+
/* @__PURE__ */ t(
|
|
65
|
+
"path",
|
|
66
|
+
{
|
|
67
|
+
opacity: "0.4",
|
|
68
|
+
d: "M64 32C28.7 32 0 60.7 0 96V416c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zM337 209L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"
|
|
69
|
+
}
|
|
70
|
+
),
|
|
71
|
+
/* @__PURE__ */ t("path", { d: "M337 175c9.4 9.4 9.4 24.6 0 33.9L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0z" })
|
|
72
|
+
]
|
|
73
|
+
}
|
|
74
|
+
), C = ({
|
|
75
|
+
className: o,
|
|
76
|
+
viewBox: c,
|
|
77
|
+
title: s,
|
|
78
|
+
monotone: e,
|
|
79
|
+
...i
|
|
80
|
+
}) => /* @__PURE__ */ t(
|
|
81
|
+
m,
|
|
82
|
+
{
|
|
83
|
+
defaultViewBox: "0 0 512 512",
|
|
84
|
+
defaultClassName: "size-5",
|
|
85
|
+
viewBox: c,
|
|
86
|
+
className: o,
|
|
87
|
+
title: s || "Copy",
|
|
88
|
+
...i,
|
|
89
|
+
children: /* @__PURE__ */ t("path", { d: "M64 464H288c8.8 0 16-7.2 16-16V384h48v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V224c0-35.3 28.7-64 64-64h64v48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16zM224 304H448c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16V288c0 8.8 7.2 16 16 16zm-64-16V64c0-35.3 28.7-64 64-64H448c35.3 0 64 28.7 64 64V288c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64z" })
|
|
90
|
+
}
|
|
91
|
+
);
|
|
92
|
+
/*!
|
|
93
|
+
@versini/ui-icons v2.0.1
|
|
94
|
+
© 2024 gizmette.com
|
|
95
|
+
*/
|
|
96
|
+
try {
|
|
97
|
+
window.__VERSINI_UI_ICONS__ || (window.__VERSINI_UI_ICONS__ = {
|
|
98
|
+
version: "2.0.1",
|
|
99
|
+
buildTime: "12/30/2024 11:40 AM EST",
|
|
100
|
+
homepage: "https://github.com/aversini/ui-components",
|
|
101
|
+
license: "MIT"
|
|
102
|
+
});
|
|
103
|
+
} catch {
|
|
104
|
+
}
|
|
105
|
+
const V = w.forwardRef(({ copyToClipboard: o, ...c }, s) => {
|
|
106
|
+
const [e, i] = _(!1), l = () => {
|
|
107
|
+
i(!0), typeof o == "string" && navigator.clipboard.writeText(o);
|
|
108
|
+
};
|
|
109
|
+
return h(() => {
|
|
110
|
+
let a;
|
|
111
|
+
return e && (a = window.setTimeout(() => {
|
|
112
|
+
i(!1);
|
|
113
|
+
}, 3e3)), () => {
|
|
114
|
+
clearTimeout(a);
|
|
115
|
+
};
|
|
116
|
+
}, [e]), /* @__PURE__ */ t(
|
|
117
|
+
f,
|
|
118
|
+
{
|
|
119
|
+
...c,
|
|
120
|
+
size: "small",
|
|
121
|
+
ref: s,
|
|
122
|
+
label: e ? "Copied to clipboard" : "Copy to clipboard",
|
|
123
|
+
onClick: l,
|
|
124
|
+
disabled: e,
|
|
125
|
+
children: e ? /* @__PURE__ */ t(I, { className: "size-3" }) : /* @__PURE__ */ t(C, { className: "size-3" })
|
|
126
|
+
}
|
|
127
|
+
);
|
|
128
|
+
});
|
|
129
|
+
V.displayName = "ButtonCopy";
|
|
130
|
+
export {
|
|
131
|
+
V as ButtonCopy
|
|
132
|
+
};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import { BaseButton_private as
|
|
5
|
-
import { getButtonClasses as
|
|
6
|
-
const
|
|
1
|
+
import { jsxs as C, jsx as c } from "react/jsx-runtime";
|
|
2
|
+
import I from "clsx";
|
|
3
|
+
import j from "react";
|
|
4
|
+
import { BaseButton_private as v } from "../../chunks/BaseButton.BFKIL4GO.js";
|
|
5
|
+
import { getButtonClasses as _, TYPE_ICON as E } from "../../chunks/utilities.BWGZmbN4.js";
|
|
6
|
+
const O = j.forwardRef(
|
|
7
7
|
({
|
|
8
8
|
children: r,
|
|
9
9
|
disabled: o = !1,
|
|
@@ -19,14 +19,13 @@ const P = v.forwardRef(
|
|
|
19
19
|
size: x = "medium",
|
|
20
20
|
labelRight: a,
|
|
21
21
|
labelLeft: e,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
type: O,
|
|
22
|
+
noBackground: u = !1,
|
|
23
|
+
align: d = "center",
|
|
24
|
+
radius: k = "large",
|
|
25
|
+
...N
|
|
26
|
+
}, h) => {
|
|
27
|
+
const B = _({
|
|
28
|
+
type: E,
|
|
30
29
|
mode: t,
|
|
31
30
|
focusMode: n,
|
|
32
31
|
fullWidth: l,
|
|
@@ -37,35 +36,34 @@ const P = v.forwardRef(
|
|
|
37
36
|
size: x,
|
|
38
37
|
labelRight: a,
|
|
39
38
|
labelLeft: e,
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}), C = j({
|
|
39
|
+
noBackground: u,
|
|
40
|
+
align: d,
|
|
41
|
+
radius: k
|
|
42
|
+
}), g = I({
|
|
45
43
|
"text-copy-accent-dark": t === "light" && !s,
|
|
46
44
|
"text-copy-light": t === "dark" && !s,
|
|
47
45
|
"text-copy-accent-dark dark:text-copy-light": t === "alt-system" && !s,
|
|
48
46
|
"text-copy-light dark:text-copy-accent-dark": t === "system" && !s
|
|
49
47
|
});
|
|
50
|
-
return /* @__PURE__ */
|
|
51
|
-
|
|
48
|
+
return /* @__PURE__ */ C(
|
|
49
|
+
v,
|
|
52
50
|
{
|
|
53
|
-
ref:
|
|
54
|
-
className:
|
|
51
|
+
ref: h,
|
|
52
|
+
className: B,
|
|
55
53
|
disabled: o,
|
|
56
54
|
type: m,
|
|
57
55
|
"aria-label": y || f,
|
|
58
|
-
...
|
|
56
|
+
...N,
|
|
59
57
|
children: [
|
|
60
58
|
e && /* @__PURE__ */ c("span", { className: "pr-2", children: e }),
|
|
61
|
-
/* @__PURE__ */ c("div", { className:
|
|
59
|
+
/* @__PURE__ */ c("div", { className: g, children: r }),
|
|
62
60
|
a && /* @__PURE__ */ c("span", { className: "pl-2", children: a })
|
|
63
61
|
]
|
|
64
62
|
}
|
|
65
63
|
);
|
|
66
64
|
}
|
|
67
65
|
);
|
|
68
|
-
|
|
66
|
+
O.displayName = "ButtonIcon";
|
|
69
67
|
export {
|
|
70
|
-
|
|
68
|
+
O as ButtonIcon
|
|
71
69
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx as e, jsxs as a } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import { getButtonClasses as
|
|
5
|
-
const
|
|
2
|
+
import b from "clsx";
|
|
3
|
+
import v from "react";
|
|
4
|
+
import { getButtonClasses as V, TYPE_LINK as C } from "../../chunks/utilities.BWGZmbN4.js";
|
|
5
|
+
const L = v.forwardRef(
|
|
6
6
|
({
|
|
7
7
|
children: r,
|
|
8
8
|
mode: o = "system",
|
|
@@ -15,12 +15,11 @@ const g = V.forwardRef(
|
|
|
15
15
|
target: t,
|
|
16
16
|
noTruncate: l = !1,
|
|
17
17
|
noNewWindowIcon: p = !1,
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
type: L,
|
|
18
|
+
radius: h = "large",
|
|
19
|
+
...w
|
|
20
|
+
}, x) => {
|
|
21
|
+
const u = V({
|
|
22
|
+
type: C,
|
|
24
23
|
mode: o,
|
|
25
24
|
focusMode: c,
|
|
26
25
|
fullWidth: n,
|
|
@@ -29,19 +28,18 @@ const g = V.forwardRef(
|
|
|
29
28
|
className: i,
|
|
30
29
|
size: m,
|
|
31
30
|
noBorder: f,
|
|
32
|
-
spacing: h,
|
|
33
31
|
noTruncate: l,
|
|
34
|
-
radius:
|
|
35
|
-
}), s = t === "_blank",
|
|
32
|
+
radius: h
|
|
33
|
+
}), s = t === "_blank", y = {
|
|
36
34
|
target: t,
|
|
37
35
|
rel: s ? "noopener noreferrer" : void 0,
|
|
38
|
-
...
|
|
39
|
-
},
|
|
36
|
+
...w
|
|
37
|
+
}, N = b({
|
|
40
38
|
truncate: !l,
|
|
41
39
|
"basis-11/12": !l && s
|
|
42
40
|
});
|
|
43
|
-
return /* @__PURE__ */ e("a", { ref:
|
|
44
|
-
/* @__PURE__ */ a("div", { className:
|
|
41
|
+
return /* @__PURE__ */ e("a", { ref: x, className: u, ...y, children: /* @__PURE__ */ a("div", { role: "text", className: "flex items-center justify-center", children: [
|
|
42
|
+
/* @__PURE__ */ a("div", { className: N, children: [
|
|
45
43
|
r,
|
|
46
44
|
s && /* @__PURE__ */ e("span", { className: "sr-only", children: ", opens in a new window" })
|
|
47
45
|
] }),
|
|
@@ -68,7 +66,7 @@ const g = V.forwardRef(
|
|
|
68
66
|
] }) });
|
|
69
67
|
}
|
|
70
68
|
);
|
|
71
|
-
|
|
69
|
+
L.displayName = "ButtonLink";
|
|
72
70
|
export {
|
|
73
|
-
|
|
71
|
+
L as ButtonLink
|
|
74
72
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as _versini_ui_types from '@versini/ui-types';
|
|
2
1
|
import React from 'react';
|
|
2
|
+
import * as _versini_ui_types from '@versini/ui-types';
|
|
3
3
|
|
|
4
4
|
declare const BUTTON_CLASSNAME = "av-button";
|
|
5
5
|
|
|
@@ -19,7 +19,11 @@ declare const Button: React.ForwardRefExoticComponent<{
|
|
|
19
19
|
raw?: boolean;
|
|
20
20
|
size?: "small" | "medium" | "large";
|
|
21
21
|
radius?: "small" | "medium" | "large";
|
|
22
|
-
} &
|
|
22
|
+
} & React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>;
|
|
23
|
+
|
|
24
|
+
declare const ButtonCopy: React.ForwardRefExoticComponent<{
|
|
25
|
+
copyToClipboard: string;
|
|
26
|
+
} & Omit<_versini_ui_types.ButtonIconTypes.Props, "children" | "fullWidth" | "size" | "align" | "label" | "labelLeft" | "labelRight"> & React.RefAttributes<HTMLButtonElement>>;
|
|
23
27
|
|
|
24
28
|
declare const ButtonIcon: React.ForwardRefExoticComponent<{
|
|
25
29
|
children: React.ReactNode;
|
|
@@ -38,7 +42,7 @@ declare const ButtonIcon: React.ForwardRefExoticComponent<{
|
|
|
38
42
|
raw?: boolean;
|
|
39
43
|
size?: "small" | "medium" | "large";
|
|
40
44
|
radius?: "small" | "medium" | "large";
|
|
41
|
-
} &
|
|
45
|
+
} & React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>;
|
|
42
46
|
|
|
43
47
|
declare const ButtonLink: React.ForwardRefExoticComponent<{
|
|
44
48
|
noNewWindowIcon?: boolean;
|
|
@@ -60,7 +64,7 @@ declare const ButtonLink: React.ForwardRefExoticComponent<{
|
|
|
60
64
|
raw?: boolean;
|
|
61
65
|
size?: "small" | "medium" | "large";
|
|
62
66
|
radius?: "small" | "medium" | "large";
|
|
63
|
-
} &
|
|
67
|
+
} & React.ButtonHTMLAttributes<HTMLButtonElement> & React.AnchorHTMLAttributes<HTMLAnchorElement> & React.RefAttributes<HTMLAnchorElement>>;
|
|
64
68
|
|
|
65
69
|
declare const ButtonSort_private: React.ForwardRefExoticComponent<{
|
|
66
70
|
active?: boolean;
|
|
@@ -81,6 +85,6 @@ declare const ButtonSort_private: React.ForwardRefExoticComponent<{
|
|
|
81
85
|
raw?: boolean;
|
|
82
86
|
size?: "small" | "medium" | "large";
|
|
83
87
|
radius?: "small" | "medium" | "large";
|
|
84
|
-
} &
|
|
88
|
+
} & React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>;
|
|
85
89
|
|
|
86
|
-
export { BUTTON_CLASSNAME, Button, ButtonIcon, ButtonLink, ButtonSort_private };
|
|
90
|
+
export { BUTTON_CLASSNAME, Button, ButtonCopy, ButtonIcon, ButtonLink, ButtonSort_private };
|
package/dist/index.js
CHANGED
|
@@ -1,31 +1,32 @@
|
|
|
1
|
-
import { getButtonClasses as
|
|
2
|
-
import { BUTTON_CLASSNAME as
|
|
3
|
-
import { Button as
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
1
|
+
import { getButtonClasses as I, TYPE_ICON as v } from "./chunks/utilities.BWGZmbN4.js";
|
|
2
|
+
import { BUTTON_CLASSNAME as P } from "./chunks/utilities.BWGZmbN4.js";
|
|
3
|
+
import { Button as q } from "./components/Button/Button.js";
|
|
4
|
+
import { ButtonCopy as D } from "./components/Button/ButtonCopy.js";
|
|
5
|
+
import { ButtonIcon as G } from "./components/Button/ButtonIcon.js";
|
|
6
|
+
import { ButtonLink as J } from "./components/Button/ButtonLink.js";
|
|
6
7
|
import { jsx as e, jsxs as C } from "react/jsx-runtime";
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import { BaseButton_private as
|
|
8
|
+
import n from "clsx";
|
|
9
|
+
import S from "react";
|
|
10
|
+
import { BaseButton_private as E } from "./chunks/BaseButton.BFKIL4GO.js";
|
|
10
11
|
/*!
|
|
11
|
-
@versini/ui-button
|
|
12
|
+
@versini/ui-button v2.1.0
|
|
12
13
|
© 2024 gizmette.com
|
|
13
14
|
*/
|
|
14
15
|
try {
|
|
15
16
|
window.__VERSINI_UI_BUTTON__ || (window.__VERSINI_UI_BUTTON__ = {
|
|
16
|
-
version: "1.
|
|
17
|
-
buildTime: "12/
|
|
17
|
+
version: "2.1.0",
|
|
18
|
+
buildTime: "12/30/2024 11:40 AM EST",
|
|
18
19
|
homepage: "https://github.com/aversini/ui-components",
|
|
19
20
|
license: "MIT"
|
|
20
21
|
});
|
|
21
22
|
} catch {
|
|
22
23
|
}
|
|
23
|
-
const
|
|
24
|
+
const U = S.forwardRef(
|
|
24
25
|
({
|
|
25
|
-
children:
|
|
26
|
+
children: s,
|
|
26
27
|
disabled: i = !1,
|
|
27
28
|
mode: t = "system",
|
|
28
|
-
focusMode:
|
|
29
|
+
focusMode: c = "system",
|
|
29
30
|
fullWidth: l = !1,
|
|
30
31
|
className: f,
|
|
31
32
|
type: p = "button",
|
|
@@ -33,38 +34,36 @@ const O = E.forwardRef(
|
|
|
33
34
|
noBorder: m = !1,
|
|
34
35
|
"aria-label": d,
|
|
35
36
|
label: b,
|
|
36
|
-
size:
|
|
37
|
+
size: u = "medium",
|
|
37
38
|
labelRight: a,
|
|
38
|
-
labelLeft:
|
|
39
|
-
|
|
40
|
-
noBackground: _ = !1,
|
|
39
|
+
labelLeft: o,
|
|
40
|
+
noBackground: h = !1,
|
|
41
41
|
align: x = "center",
|
|
42
42
|
active: y = !1,
|
|
43
|
-
radius:
|
|
44
|
-
...
|
|
45
|
-
},
|
|
46
|
-
const B =
|
|
47
|
-
type:
|
|
43
|
+
radius: _ = "large",
|
|
44
|
+
...k
|
|
45
|
+
}, N) => {
|
|
46
|
+
const B = I({
|
|
47
|
+
type: v,
|
|
48
48
|
mode: t,
|
|
49
|
-
focusMode:
|
|
49
|
+
focusMode: c,
|
|
50
50
|
fullWidth: l,
|
|
51
51
|
disabled: i,
|
|
52
52
|
raw: r,
|
|
53
53
|
className: f,
|
|
54
54
|
noBorder: m,
|
|
55
|
-
size:
|
|
55
|
+
size: u,
|
|
56
56
|
labelRight: a,
|
|
57
|
-
labelLeft:
|
|
58
|
-
|
|
59
|
-
noBackground: _,
|
|
57
|
+
labelLeft: o,
|
|
58
|
+
noBackground: h,
|
|
60
59
|
align: x,
|
|
61
|
-
radius:
|
|
62
|
-
}),
|
|
60
|
+
radius: _
|
|
61
|
+
}), g = n({
|
|
63
62
|
"text-copy-accent-dark": t === "light" && !r,
|
|
64
63
|
"text-copy-light": t === "dark" && !r,
|
|
65
64
|
"text-copy-accent-dark dark:text-copy-light": t === "alt-system" && !r,
|
|
66
65
|
"text-copy-light dark:text-copy-accent-dark": t === "system" && !r
|
|
67
|
-
}),
|
|
66
|
+
}), T = y ? n(
|
|
68
67
|
"relative",
|
|
69
68
|
"focus-within:static",
|
|
70
69
|
"focus-within:after:border-transparent",
|
|
@@ -81,29 +80,30 @@ const O = E.forwardRef(
|
|
|
81
80
|
"after:border-table-light dark:after:border-table-dark": t === "alt-system"
|
|
82
81
|
}
|
|
83
82
|
) : "";
|
|
84
|
-
return /* @__PURE__ */ e("div", { className:
|
|
85
|
-
|
|
83
|
+
return /* @__PURE__ */ e("div", { className: T, children: /* @__PURE__ */ C(
|
|
84
|
+
E,
|
|
86
85
|
{
|
|
87
|
-
ref:
|
|
86
|
+
ref: N,
|
|
88
87
|
className: B,
|
|
89
88
|
disabled: i,
|
|
90
89
|
type: p,
|
|
91
90
|
"aria-label": d || b,
|
|
92
|
-
...
|
|
91
|
+
...k,
|
|
93
92
|
children: [
|
|
94
|
-
|
|
95
|
-
/* @__PURE__ */ e("div", { className:
|
|
93
|
+
o && /* @__PURE__ */ e("span", { className: "pr-2", children: o }),
|
|
94
|
+
/* @__PURE__ */ e("div", { className: g, children: s }),
|
|
96
95
|
a && /* @__PURE__ */ e("span", { className: "pl-2", children: a })
|
|
97
96
|
]
|
|
98
97
|
}
|
|
99
98
|
) });
|
|
100
99
|
}
|
|
101
100
|
);
|
|
102
|
-
|
|
101
|
+
U.displayName = "ButtonSort";
|
|
103
102
|
export {
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
103
|
+
P as BUTTON_CLASSNAME,
|
|
104
|
+
q as Button,
|
|
105
|
+
D as ButtonCopy,
|
|
106
|
+
G as ButtonIcon,
|
|
107
|
+
J as ButtonLink,
|
|
108
|
+
U as ButtonSort_private
|
|
109
109
|
};
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::-ms-backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-ms-input-placeholder,textarea::-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}@keyframes blink{50%{fill:transparent}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.relative{position:relative}.m-0{margin:0}.m-1{margin:.25rem}.m-10{margin:2.5rem}.m-11{margin:2.75rem}.m-12{margin:3rem}.m-14{margin:3.5rem}.m-16{margin:4rem}.m-2{margin:.5rem}.m-20{margin:5rem}.m-24{margin:6rem}.m-28{margin:7rem}.m-3{margin:.75rem}.m-32{margin:8rem}.m-36{margin:9rem}.m-4{margin:1rem}.m-44{margin:11rem}.m-48{margin:12rem}.m-5{margin:1.25rem}.m-52{margin:13rem}.m-56{margin:14rem}.m-6{margin:1.5rem}.m-60{margin:15rem}.m-64{margin:16rem}.m-7{margin:1.75rem}.m-72{margin:18rem}.m-8{margin:2rem}.m-80{margin:20rem}.m-9{margin:2.25rem}.m-96{margin:24rem}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-11{margin-bottom:2.75rem}.mb-12{margin-bottom:3rem}.mb-14{margin-bottom:3.5rem}.mb-16{margin-bottom:4rem}.mb-2{margin-bottom:.5rem}.mb-20{margin-bottom:5rem}.mb-24{margin-bottom:6rem}.mb-28{margin-bottom:7rem}.mb-3{margin-bottom:.75rem}.mb-32{margin-bottom:8rem}.mb-36{margin-bottom:9rem}.mb-4{margin-bottom:1rem}.mb-44{margin-bottom:11rem}.mb-48{margin-bottom:12rem}.mb-5{margin-bottom:1.25rem}.mb-52{margin-bottom:13rem}.mb-56{margin-bottom:14rem}.mb-6{margin-bottom:1.5rem}.mb-60{margin-bottom:15rem}.mb-64{margin-bottom:16rem}.mb-7{margin-bottom:1.75rem}.mb-72{margin-bottom:18rem}.mb-8{margin-bottom:2rem}.mb-80{margin-bottom:20rem}.mb-9{margin-bottom:2.25rem}.mb-96{margin-bottom:24rem}.ml-0{margin-left:0}.ml-1{margin-left:.25rem}.ml-10{margin-left:2.5rem}.ml-11{margin-left:2.75rem}.ml-12{margin-left:3rem}.ml-14{margin-left:3.5rem}.ml-16{margin-left:4rem}.ml-2{margin-left:.5rem}.ml-20{margin-left:5rem}.ml-24{margin-left:6rem}.ml-28{margin-left:7rem}.ml-3{margin-left:.75rem}.ml-32{margin-left:8rem}.ml-36{margin-left:9rem}.ml-4{margin-left:1rem}.ml-44{margin-left:11rem}.ml-48{margin-left:12rem}.ml-5{margin-left:1.25rem}.ml-52{margin-left:13rem}.ml-56{margin-left:14rem}.ml-6{margin-left:1.5rem}.ml-60{margin-left:15rem}.ml-64{margin-left:16rem}.ml-7{margin-left:1.75rem}.ml-72{margin-left:18rem}.ml-8{margin-left:2rem}.ml-80{margin-left:20rem}.ml-9{margin-left:2.25rem}.ml-96{margin-left:24rem}.mr-0{margin-right:0}.mr-1{margin-right:.25rem}.mr-10{margin-right:2.5rem}.mr-11{margin-right:2.75rem}.mr-12{margin-right:3rem}.mr-14{margin-right:3.5rem}.mr-16{margin-right:4rem}.mr-2{margin-right:.5rem}.mr-20{margin-right:5rem}.mr-24{margin-right:6rem}.mr-28{margin-right:7rem}.mr-3{margin-right:.75rem}.mr-32{margin-right:8rem}.mr-36{margin-right:9rem}.mr-4{margin-right:1rem}.mr-44{margin-right:11rem}.mr-48{margin-right:12rem}.mr-5{margin-right:1.25rem}.mr-52{margin-right:13rem}.mr-56{margin-right:14rem}.mr-6{margin-right:1.5rem}.mr-60{margin-right:15rem}.mr-64{margin-right:16rem}.mr-7{margin-right:1.75rem}.mr-72{margin-right:18rem}.mr-8{margin-right:2rem}.mr-80{margin-right:20rem}.mr-9{margin-right:2.25rem}.mr-96{margin-right:24rem}.mt-0{margin-top:0}.mt-1{margin-top:.25rem}.mt-10{margin-top:2.5rem}.mt-11{margin-top:2.75rem}.mt-12{margin-top:3rem}.mt-14{margin-top:3.5rem}.mt-16{margin-top:4rem}.mt-2{margin-top:.5rem}.mt-20{margin-top:5rem}.mt-24{margin-top:6rem}.mt-28{margin-top:7rem}.mt-3{margin-top:.75rem}.mt-32{margin-top:8rem}.mt-36{margin-top:9rem}.mt-4{margin-top:1rem}.mt-44{margin-top:11rem}.mt-48{margin-top:12rem}.mt-5{margin-top:1.25rem}.mt-52{margin-top:13rem}.mt-56{margin-top:14rem}.mt-6{margin-top:1.5rem}.mt-60{margin-top:15rem}.mt-64{margin-top:16rem}.mt-7{margin-top:1.75rem}.mt-72{margin-top:18rem}.mt-8{margin-top:2rem}.mt-80{margin-top:20rem}.mt-9{margin-top:2.25rem}.mt-96{margin-top:24rem}.flex{display:flex}.inline-flex{display:inline-flex}.size-4{width:1rem;height:1rem}.size-5{width:1.25rem;height:1.25rem}.h-12{height:3rem}.h-6{height:1.5rem}.h-8{height:2rem}.max-h-12{max-height:3rem}.max-h-8{max-height:2rem}.max-h-9{max-height:2.25rem}.w-12{width:3rem}.w-44{width:11rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-full{width:100%}.basis-11\/12{flex-basis:91.666667%}.basis-4{flex-basis:1rem}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.border{border-width:1px}.border-border-accent{--tw-border-opacity: 1;border-color:var(--av-border-accent, rgb(169 185 173 / var(--tw-border-opacity, 1)))}.border-border-danger-dark{--tw-border-opacity: 1;border-color:var(--av-border-danger-dark, rgb(127 29 29 / var(--tw-border-opacity, 1)))}.border-border-danger-medium{--tw-border-opacity: 1;border-color:var(--av-border-danger-medium, rgb(248 113 113 / var(--tw-border-opacity, 1)))}.border-border-dark{--tw-border-opacity: 1;border-color:var(--av-border-dark, rgb(15 23 42 / var(--tw-border-opacity, 1)))}.border-border-selected-dark{--tw-border-opacity: 1;border-color:var(--av-border-selected-dark, rgb(20 83 45 / var(--tw-border-opacity, 1)))}.border-border-selected-medium{--tw-border-opacity: 1;border-color:var(--av-border-selected-medium, rgb(74 222 128 / var(--tw-border-opacity, 1)))}.border-table-dark{--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.border-table-light{--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.border-transparent{border-color:transparent}.bg-action-danger-dark{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark, rgb(127 29 29 / var(--tw-bg-opacity, 1)))}.bg-action-danger-dark-active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.bg-action-danger-dark-hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.bg-action-danger-light{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.bg-action-danger-light-active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.bg-action-danger-light-hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.bg-action-dark{--tw-bg-opacity: 1;background-color:var(--av-action-dark, rgb(15 23 42 / var(--tw-bg-opacity, 1)))}.bg-action-dark-active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.bg-action-dark-hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.bg-action-light{--tw-bg-opacity: 1;background-color:var(--av-action-light, rgb(100 116 139 / var(--tw-bg-opacity, 1)))}.bg-action-light-active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.bg-action-light-hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.bg-action-selected-dark{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark, rgb(20 83 45 / var(--tw-bg-opacity, 1)))}.bg-action-selected-dark-active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-active, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.bg-action-selected-dark-hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.bg-action-selected-light{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.bg-action-selected-light-active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-active, rgb(22 101 52 / var(--tw-bg-opacity, 1)))}.bg-action-selected-light-hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-0{padding-top:0;padding-bottom:0}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.text-center{text-align:center}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-medium{font-weight:500}.text-copy-accent-dark{--tw-text-opacity: 1;color:var(--av-copy-accent-dark, rgb(205 232 212 / var(--tw-text-opacity, 1)))}.text-copy-light{--tw-text-opacity: 1;color:var(--av-copy-light, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.text-copy-lighter{--tw-text-opacity: 1;color:var(--av-copy-lighter, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.opacity-50{opacity:.5}.outline-focus-dark{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.outline-focus-light{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:bottom-\[-4px\]:after{content:var(--tw-content);bottom:-4px}.after\:left-0:after{content:var(--tw-content);left:0}.after\:right-0:after{content:var(--tw-content);right:0}.after\:border-b-2:after{content:var(--tw-content);border-bottom-width:2px}.after\:border-table-dark:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.after\:border-table-light:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.focus-within\:static:focus-within{position:static}.focus-within\:after\:border-transparent:focus-within:after{content:var(--tw-content);border-color:transparent}.hover\:bg-action-danger-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-danger-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-selected-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-selected-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.hover\:text-copy-light-hover:hover{--tw-text-opacity: 1;color:var(--av-copy-light-hover, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.focus\:outline:focus{outline-style:solid}.focus\:outline-2:focus{outline-width:2px}.focus\:outline-offset-2:focus{outline-offset:2px}.focus\:outline-focus-dark:focus{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.focus\:outline-focus-light:focus{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.active\:bg-action-danger-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.active\:bg-action-danger-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.active\:bg-action-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.active\:bg-action-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.active\:bg-action-selected-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-active, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.active\:bg-action-selected-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-active, rgb(22 101 52 / var(--tw-bg-opacity, 1)))}.active\:text-copy-light-active:active{--tw-text-opacity: 1;color:var(--av-copy-light-active, rgb(148 163 184 / var(--tw-text-opacity, 1)))}.active\:text-copy-lighter-active:active{--tw-text-opacity: 1;color:var(--av-copy-lighter-active, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}@media (prefers-color-scheme: dark){.dark\:border-border-accent{--tw-border-opacity: 1;border-color:var(--av-border-accent, rgb(169 185 173 / var(--tw-border-opacity, 1)))}.dark\:border-border-danger-dark{--tw-border-opacity: 1;border-color:var(--av-border-danger-dark, rgb(127 29 29 / var(--tw-border-opacity, 1)))}.dark\:border-border-danger-medium{--tw-border-opacity: 1;border-color:var(--av-border-danger-medium, rgb(248 113 113 / var(--tw-border-opacity, 1)))}.dark\:border-border-dark{--tw-border-opacity: 1;border-color:var(--av-border-dark, rgb(15 23 42 / var(--tw-border-opacity, 1)))}.dark\:border-border-selected-dark{--tw-border-opacity: 1;border-color:var(--av-border-selected-dark, rgb(20 83 45 / var(--tw-border-opacity, 1)))}.dark\:border-border-selected-medium{--tw-border-opacity: 1;border-color:var(--av-border-selected-medium, rgb(74 222 128 / var(--tw-border-opacity, 1)))}.dark\:bg-action-danger-dark{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark, rgb(127 29 29 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-danger-light{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-dark{--tw-bg-opacity: 1;background-color:var(--av-action-dark, rgb(15 23 42 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-light{--tw-bg-opacity: 1;background-color:var(--av-action-light, rgb(100 116 139 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-selected-dark{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark, rgb(20 83 45 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-selected-light{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.dark\:text-copy-accent-dark{--tw-text-opacity: 1;color:var(--av-copy-accent-dark, rgb(205 232 212 / var(--tw-text-opacity, 1)))}.dark\:text-copy-light{--tw-text-opacity: 1;color:var(--av-copy-light, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.dark\:text-copy-lighter{--tw-text-opacity: 1;color:var(--av-copy-lighter, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.dark\:after\:border-table-dark:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.dark\:after\:border-table-light:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.dark\:hover\:bg-action-danger-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-danger-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-selected-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-selected-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.dark\:focus\:outline-focus-dark:focus{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.dark\:focus\:outline-focus-light:focus{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.dark\:active\:bg-action-danger-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-danger-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-selected-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-active, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-selected-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-active, rgb(22 101 52 / var(--tw-bg-opacity, 1)))}}
|
|
1
|
+
*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::-ms-backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-ms-input-placeholder,textarea::-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}@keyframes blink{50%{fill:transparent}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.relative{position:relative}.ml-1{margin-left:.25rem}.mr-2{margin-right:.5rem}.flex{display:flex}.inline-flex{display:inline-flex}.size-3{width:.75rem;height:.75rem}.size-4{width:1rem;height:1rem}.size-5{width:1.25rem;height:1.25rem}.h-12{height:3rem}.h-6{height:1.5rem}.h-8{height:2rem}.max-h-12{max-height:3rem}.max-h-8{max-height:2rem}.max-h-9{max-height:2.25rem}.w-12{width:3rem}.w-44{width:11rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-full{width:100%}.basis-11\/12{flex-basis:91.666667%}.basis-4{flex-basis:1rem}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.border{border-width:1px}.border-border-accent{--tw-border-opacity: 1;border-color:var(--av-border-accent, rgb(169 185 173 / var(--tw-border-opacity, 1)))}.border-border-danger-dark{--tw-border-opacity: 1;border-color:var(--av-border-danger-dark, rgb(127 29 29 / var(--tw-border-opacity, 1)))}.border-border-danger-medium{--tw-border-opacity: 1;border-color:var(--av-border-danger-medium, rgb(248 113 113 / var(--tw-border-opacity, 1)))}.border-border-dark{--tw-border-opacity: 1;border-color:var(--av-border-dark, rgb(15 23 42 / var(--tw-border-opacity, 1)))}.border-border-selected-dark{--tw-border-opacity: 1;border-color:var(--av-border-selected-dark, rgb(20 83 45 / var(--tw-border-opacity, 1)))}.border-border-selected-medium{--tw-border-opacity: 1;border-color:var(--av-border-selected-medium, rgb(74 222 128 / var(--tw-border-opacity, 1)))}.border-table-dark{--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.border-table-light{--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.border-transparent{border-color:transparent}.bg-action-danger-dark{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark, rgb(127 29 29 / var(--tw-bg-opacity, 1)))}.bg-action-danger-dark-active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.bg-action-danger-dark-hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.bg-action-danger-light{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.bg-action-danger-light-active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.bg-action-danger-light-hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.bg-action-dark{--tw-bg-opacity: 1;background-color:var(--av-action-dark, rgb(15 23 42 / var(--tw-bg-opacity, 1)))}.bg-action-dark-active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.bg-action-dark-hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.bg-action-light{--tw-bg-opacity: 1;background-color:var(--av-action-light, rgb(100 116 139 / var(--tw-bg-opacity, 1)))}.bg-action-light-active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.bg-action-light-hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.bg-action-selected-dark{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark, rgb(20 83 45 / var(--tw-bg-opacity, 1)))}.bg-action-selected-dark-active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-active, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.bg-action-selected-dark-hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.bg-action-selected-light{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.bg-action-selected-light-active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-active, rgb(22 101 52 / var(--tw-bg-opacity, 1)))}.bg-action-selected-light-hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-0{padding-top:0;padding-bottom:0}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.text-center{text-align:center}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-medium{font-weight:500}.text-copy-accent-dark{--tw-text-opacity: 1;color:var(--av-copy-accent-dark, rgb(205 232 212 / var(--tw-text-opacity, 1)))}.text-copy-light{--tw-text-opacity: 1;color:var(--av-copy-light, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.text-copy-lighter{--tw-text-opacity: 1;color:var(--av-copy-lighter, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.opacity-50{opacity:.5}.outline-focus-dark{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.outline-focus-light{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:bottom-\[-4px\]:after{content:var(--tw-content);bottom:-4px}.after\:left-0:after{content:var(--tw-content);left:0}.after\:right-0:after{content:var(--tw-content);right:0}.after\:border-b-2:after{content:var(--tw-content);border-bottom-width:2px}.after\:border-table-dark:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.after\:border-table-light:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.focus-within\:static:focus-within{position:static}.focus-within\:after\:border-transparent:focus-within:after{content:var(--tw-content);border-color:transparent}.hover\:bg-action-danger-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-danger-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-selected-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-selected-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.hover\:text-copy-light-hover:hover{--tw-text-opacity: 1;color:var(--av-copy-light-hover, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.focus\:outline:focus{outline-style:solid}.focus\:outline-2:focus{outline-width:2px}.focus\:outline-offset-2:focus{outline-offset:2px}.focus\:outline-focus-dark:focus{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.focus\:outline-focus-light:focus{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.active\:bg-action-danger-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.active\:bg-action-danger-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.active\:bg-action-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.active\:bg-action-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.active\:bg-action-selected-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-active, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.active\:bg-action-selected-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-active, rgb(22 101 52 / var(--tw-bg-opacity, 1)))}.active\:text-copy-light-active:active{--tw-text-opacity: 1;color:var(--av-copy-light-active, rgb(148 163 184 / var(--tw-text-opacity, 1)))}.active\:text-copy-lighter-active:active{--tw-text-opacity: 1;color:var(--av-copy-lighter-active, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}@media (prefers-color-scheme: dark){.dark\:border-border-accent{--tw-border-opacity: 1;border-color:var(--av-border-accent, rgb(169 185 173 / var(--tw-border-opacity, 1)))}.dark\:border-border-danger-dark{--tw-border-opacity: 1;border-color:var(--av-border-danger-dark, rgb(127 29 29 / var(--tw-border-opacity, 1)))}.dark\:border-border-danger-medium{--tw-border-opacity: 1;border-color:var(--av-border-danger-medium, rgb(248 113 113 / var(--tw-border-opacity, 1)))}.dark\:border-border-dark{--tw-border-opacity: 1;border-color:var(--av-border-dark, rgb(15 23 42 / var(--tw-border-opacity, 1)))}.dark\:border-border-selected-dark{--tw-border-opacity: 1;border-color:var(--av-border-selected-dark, rgb(20 83 45 / var(--tw-border-opacity, 1)))}.dark\:border-border-selected-medium{--tw-border-opacity: 1;border-color:var(--av-border-selected-medium, rgb(74 222 128 / var(--tw-border-opacity, 1)))}.dark\:bg-action-danger-dark{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark, rgb(127 29 29 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-danger-light{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-dark{--tw-bg-opacity: 1;background-color:var(--av-action-dark, rgb(15 23 42 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-light{--tw-bg-opacity: 1;background-color:var(--av-action-light, rgb(100 116 139 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-selected-dark{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark, rgb(20 83 45 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-selected-light{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.dark\:text-copy-accent-dark{--tw-text-opacity: 1;color:var(--av-copy-accent-dark, rgb(205 232 212 / var(--tw-text-opacity, 1)))}.dark\:text-copy-light{--tw-text-opacity: 1;color:var(--av-copy-light, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.dark\:text-copy-lighter{--tw-text-opacity: 1;color:var(--av-copy-lighter, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.dark\:after\:border-table-dark:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.dark\:after\:border-table-light:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.dark\:hover\:bg-action-danger-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-danger-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-selected-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-selected-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-hover, rgb(21 128 61 / var(--tw-bg-opacity, 1)))}.dark\:focus\:outline-focus-dark:focus{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.dark\:focus\:outline-focus-light:focus{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.dark\:active\:bg-action-danger-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-danger-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-selected-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-active, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-selected-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-light-active, rgb(22 101 52 / var(--tw-bg-opacity, 1)))}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-button",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -38,17 +38,17 @@
|
|
|
38
38
|
"react-dom": "^18.3.1 || ^19.0.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@versini/ui-svgicon": "
|
|
41
|
+
"@versini/ui-svgicon": "2.0.1"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@tailwindcss/typography": "0.5.15",
|
|
45
|
-
"@versini/ui-
|
|
46
|
-
"@versini/ui-types": "
|
|
45
|
+
"@versini/ui-icons": "2.0.1",
|
|
46
|
+
"@versini/ui-types": "2.1.0",
|
|
47
47
|
"clsx": "2.1.1",
|
|
48
48
|
"tailwindcss": "3.4.17"
|
|
49
49
|
},
|
|
50
50
|
"sideEffects": [
|
|
51
51
|
"**/*.css"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "1221c66705bd1e8a31981a21a9566c8db647ab5c"
|
|
54
54
|
}
|