@versini/ui-button 4.1.4 → 4.2.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.YQH_sQYD.js → utilities.DZA7UB1Y.js} +44 -35
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Button/ButtonCopy.js +7 -7
- package/dist/components/Button/ButtonIcon.js +119 -56
- package/dist/components/Button/ButtonLink.js +8 -8
- package/dist/index.js +33 -74
- package/dist/style.css +1 -1
- package/package.json +7 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import a from "clsx";
|
|
2
|
-
const
|
|
2
|
+
const b = "av-button", l = "icon", y = "button", d = "link", C = ({
|
|
3
3
|
type: t,
|
|
4
4
|
size: e,
|
|
5
5
|
labelRight: r,
|
|
@@ -15,20 +15,20 @@ const u = "av-button", b = "icon", y = "button", d = "link", m = ({
|
|
|
15
15
|
[n]: e === "medium",
|
|
16
16
|
[g]: e === "large"
|
|
17
17
|
});
|
|
18
|
-
case
|
|
18
|
+
case l:
|
|
19
19
|
return a("inline-flex items-center", {
|
|
20
20
|
"justify-center": s === "center",
|
|
21
21
|
"justify-start": s === "left",
|
|
22
22
|
"justify-end": s === "right",
|
|
23
|
-
"h-6
|
|
24
|
-
"h-6
|
|
25
|
-
"h-8
|
|
26
|
-
"h-8
|
|
27
|
-
"h-12
|
|
28
|
-
"h-12
|
|
23
|
+
"h-6 py-0": e === "small" && !(r || c),
|
|
24
|
+
"h-6": e === "small" && (r || c),
|
|
25
|
+
"h-8 py-1": e === "medium" && !(r || c),
|
|
26
|
+
"h-8": e === "medium" && (r || c),
|
|
27
|
+
"h-12 py-2": e === "large" && !(r || c),
|
|
28
|
+
"h-12": e === "large" && (r || c)
|
|
29
29
|
});
|
|
30
30
|
}
|
|
31
|
-
},
|
|
31
|
+
}, B = ({
|
|
32
32
|
type: t,
|
|
33
33
|
size: e,
|
|
34
34
|
labelRight: r,
|
|
@@ -44,14 +44,14 @@ const u = "av-button", b = "icon", y = "button", d = "link", m = ({
|
|
|
44
44
|
[i]: e === "medium",
|
|
45
45
|
[n]: e === "large"
|
|
46
46
|
});
|
|
47
|
-
case
|
|
47
|
+
case l:
|
|
48
48
|
return a({
|
|
49
49
|
[s]: e === "small" && (r || c),
|
|
50
50
|
[i]: e === "medium" && (r || c),
|
|
51
51
|
[n]: e === "large" && (r || c)
|
|
52
52
|
});
|
|
53
53
|
}
|
|
54
|
-
},
|
|
54
|
+
}, w = ({
|
|
55
55
|
mode: t,
|
|
56
56
|
noBackground: e,
|
|
57
57
|
noTruncate: r,
|
|
@@ -87,7 +87,7 @@ const u = "av-button", b = "icon", y = "button", d = "link", m = ({
|
|
|
87
87
|
return a("not-prose text-copy-lighter", {
|
|
88
88
|
truncate: !r
|
|
89
89
|
});
|
|
90
|
-
},
|
|
90
|
+
}, T = ({
|
|
91
91
|
mode: t,
|
|
92
92
|
noBackground: e,
|
|
93
93
|
variant: r
|
|
@@ -117,13 +117,13 @@ const u = "av-button", b = "icon", y = "button", d = "link", m = ({
|
|
|
117
117
|
if (r === "selected")
|
|
118
118
|
return "bg-action-selected-dark";
|
|
119
119
|
}
|
|
120
|
-
},
|
|
120
|
+
}, E = ({
|
|
121
121
|
radius: t
|
|
122
122
|
}) => a({
|
|
123
123
|
"rounded-full": t === "large",
|
|
124
124
|
"rounded-md": t === "medium",
|
|
125
125
|
"rounded-sm": t === "small"
|
|
126
|
-
}),
|
|
126
|
+
}), I = ({
|
|
127
127
|
mode: t,
|
|
128
128
|
disabled: e,
|
|
129
129
|
variant: r
|
|
@@ -220,7 +220,7 @@ const u = "av-button", b = "icon", y = "button", d = "link", m = ({
|
|
|
220
220
|
"focus:outline-focus-light": t === "light",
|
|
221
221
|
"focus:outline-focus-light dark:focus:outline-focus-dark": t === "alt-system",
|
|
222
222
|
"focus:outline-focus-dark dark:focus:outline-focus-light": t === "system"
|
|
223
|
-
}),
|
|
223
|
+
}), O = ({
|
|
224
224
|
mode: t,
|
|
225
225
|
raw: e,
|
|
226
226
|
iconClassName: r
|
|
@@ -232,7 +232,11 @@ const u = "av-button", b = "icon", y = "button", d = "link", m = ({
|
|
|
232
232
|
"dark:text-copy-accent-dark": t === "system"
|
|
233
233
|
},
|
|
234
234
|
r
|
|
235
|
-
),
|
|
235
|
+
), P = ({
|
|
236
|
+
animated: t
|
|
237
|
+
}) => a({
|
|
238
|
+
"transition-opacity duration-300 ease-in": t
|
|
239
|
+
}), S = ({
|
|
236
240
|
type: t,
|
|
237
241
|
className: e,
|
|
238
242
|
raw: r,
|
|
@@ -242,46 +246,51 @@ const u = "av-button", b = "icon", y = "button", d = "link", m = ({
|
|
|
242
246
|
fullWidth: n,
|
|
243
247
|
size: g,
|
|
244
248
|
noBorder: v,
|
|
245
|
-
labelRight:
|
|
246
|
-
labelLeft:
|
|
247
|
-
noBackground:
|
|
249
|
+
labelRight: h,
|
|
250
|
+
labelLeft: k,
|
|
251
|
+
noBackground: u,
|
|
248
252
|
variant: o,
|
|
249
253
|
noTruncate: p,
|
|
250
254
|
align: f,
|
|
251
|
-
radius: x
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
+
radius: x,
|
|
256
|
+
animated: m
|
|
257
|
+
}) => (o || (o = "primary"), r ? a(b, e) : a(
|
|
258
|
+
b,
|
|
259
|
+
w({
|
|
255
260
|
mode: c,
|
|
256
261
|
variant: o,
|
|
257
|
-
noBackground:
|
|
262
|
+
noBackground: u,
|
|
258
263
|
noTruncate: p
|
|
259
264
|
}),
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
265
|
+
T({ mode: c, noBackground: u, variant: o }),
|
|
266
|
+
E({ radius: x }),
|
|
267
|
+
C({
|
|
263
268
|
type: t,
|
|
264
269
|
size: g,
|
|
265
|
-
labelRight:
|
|
266
|
-
labelLeft:
|
|
270
|
+
labelRight: h,
|
|
271
|
+
labelLeft: k,
|
|
267
272
|
align: f
|
|
268
273
|
}),
|
|
269
|
-
|
|
274
|
+
B({ type: t, size: g, labelRight: h, labelLeft: k }),
|
|
270
275
|
_({ mode: c, variant: o, noBorder: v }),
|
|
271
276
|
j({ focusMode: s }),
|
|
272
|
-
|
|
277
|
+
I({ mode: c, variant: o, disabled: i }),
|
|
273
278
|
N({ mode: c, variant: o, disabled: i }),
|
|
274
279
|
{
|
|
275
280
|
"w-full": n,
|
|
276
281
|
"disabled:cursor-not-allowed disabled:opacity-50": i
|
|
277
282
|
},
|
|
283
|
+
a({
|
|
284
|
+
"transition-[width] duration-300 ease-in-out": t === l && m
|
|
285
|
+
}),
|
|
278
286
|
e
|
|
279
287
|
));
|
|
280
288
|
export {
|
|
281
|
-
|
|
289
|
+
b as BUTTON_CLASSNAME,
|
|
282
290
|
y as TYPE_BUTTON,
|
|
283
|
-
|
|
291
|
+
l as TYPE_ICON,
|
|
284
292
|
d as TYPE_LINK,
|
|
285
|
-
|
|
286
|
-
|
|
293
|
+
S as getButtonClasses,
|
|
294
|
+
P as getButtonIconLabelClasses,
|
|
295
|
+
O as getIconClasses
|
|
287
296
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as c } from "react/jsx-runtime";
|
|
2
2
|
import N from "react";
|
|
3
3
|
import { BaseButton_private as T } from "../../chunks/BaseButton.BFKIL4GO.js";
|
|
4
|
-
import { getButtonClasses as g, TYPE_BUTTON as x } from "../../chunks/utilities.
|
|
4
|
+
import { getButtonClasses as g, TYPE_BUTTON as x } from "../../chunks/utilities.DZA7UB1Y.js";
|
|
5
5
|
const C = N.forwardRef(
|
|
6
6
|
({
|
|
7
7
|
children: s,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs as r, Fragment as h, jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import w, { useState as u, useEffect as
|
|
3
|
-
import { ButtonIcon as
|
|
2
|
+
import w, { useState as u, useEffect as f } from "react";
|
|
3
|
+
import { ButtonIcon as _ } from "./ButtonIcon.js";
|
|
4
4
|
import v from "clsx";
|
|
5
5
|
const m = ({
|
|
6
6
|
children: e,
|
|
@@ -90,13 +90,13 @@ const I = ({
|
|
|
90
90
|
}
|
|
91
91
|
);
|
|
92
92
|
/*!
|
|
93
|
-
@versini/ui-icons v4.
|
|
93
|
+
@versini/ui-icons v4.6.0
|
|
94
94
|
© 2025 gizmette.com
|
|
95
95
|
*/
|
|
96
96
|
try {
|
|
97
97
|
window.__VERSINI_UI_ICONS__ || (window.__VERSINI_UI_ICONS__ = {
|
|
98
|
-
version: "4.
|
|
99
|
-
buildTime: "01/20/2025
|
|
98
|
+
version: "4.6.0",
|
|
99
|
+
buildTime: "01/20/2025 04:20 PM EST",
|
|
100
100
|
homepage: "https://github.com/aversini/ui-components",
|
|
101
101
|
license: "MIT"
|
|
102
102
|
});
|
|
@@ -106,7 +106,7 @@ const N = w.forwardRef(({ copyToClipboard: e, ...c }, s) => {
|
|
|
106
106
|
const [i, t] = u(!1), n = () => {
|
|
107
107
|
typeof e == "string" && (navigator.clipboard.writeText(e), t(!0)), typeof e == "function" && (navigator.clipboard.writeText(e()), t(!0));
|
|
108
108
|
};
|
|
109
|
-
return
|
|
109
|
+
return f(() => {
|
|
110
110
|
let l;
|
|
111
111
|
return i && (l = window.setTimeout(() => {
|
|
112
112
|
t(!1);
|
|
@@ -114,7 +114,7 @@ const N = w.forwardRef(({ copyToClipboard: e, ...c }, s) => {
|
|
|
114
114
|
clearTimeout(l);
|
|
115
115
|
};
|
|
116
116
|
}, [i]), /* @__PURE__ */ o(
|
|
117
|
-
|
|
117
|
+
_,
|
|
118
118
|
{
|
|
119
119
|
...c,
|
|
120
120
|
size: "small",
|
|
@@ -1,66 +1,129 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import
|
|
3
|
-
import { BaseButton_private as
|
|
4
|
-
import { getButtonClasses as
|
|
5
|
-
|
|
1
|
+
import { jsxs as G, jsx as m } from "react/jsx-runtime";
|
|
2
|
+
import H, { useRef as p, useEffect as B, useCallback as M, useMemo as E, useState as W, useLayoutEffect as v } from "react";
|
|
3
|
+
import { BaseButton_private as Y } from "../../chunks/BaseButton.BFKIL4GO.js";
|
|
4
|
+
import { getButtonClasses as J, getIconClasses as K, getButtonIconLabelClasses as L, TYPE_ICON as Q } from "../../chunks/utilities.DZA7UB1Y.js";
|
|
5
|
+
function U() {
|
|
6
|
+
const e = p(!1);
|
|
7
|
+
return B(() => (e.current = !0, () => {
|
|
8
|
+
e.current = !1;
|
|
9
|
+
}), []), M(() => e.current, []);
|
|
10
|
+
}
|
|
11
|
+
function V(e) {
|
|
12
|
+
return E(() => e.every((r) => r == null) ? () => {
|
|
13
|
+
} : (r) => {
|
|
14
|
+
e.forEach((t) => {
|
|
15
|
+
typeof t == "function" ? t(r) : t != null && (t.current = r);
|
|
16
|
+
});
|
|
17
|
+
}, e);
|
|
18
|
+
}
|
|
19
|
+
const X = {
|
|
20
|
+
x: 0,
|
|
21
|
+
y: 0,
|
|
22
|
+
width: 0,
|
|
23
|
+
height: 0,
|
|
24
|
+
top: 0,
|
|
25
|
+
left: 0,
|
|
26
|
+
bottom: 0,
|
|
27
|
+
right: 0
|
|
28
|
+
};
|
|
29
|
+
function I(e) {
|
|
30
|
+
const r = U(), t = p(0), s = p(null), [h, R] = W(X), n = E(() => typeof ResizeObserver > "u" ? null : new ResizeObserver((y) => {
|
|
31
|
+
const u = y[0];
|
|
32
|
+
u && (cancelAnimationFrame(t.current), t.current = requestAnimationFrame(() => {
|
|
33
|
+
s.current && r() && R(u.contentRect);
|
|
34
|
+
}));
|
|
35
|
+
}), [r]);
|
|
36
|
+
return B(() => (s.current && (n == null || n.observe(s.current, e)), () => {
|
|
37
|
+
n == null || n.disconnect(), t.current && cancelAnimationFrame(t.current);
|
|
38
|
+
}), [n, e]), [s, h];
|
|
39
|
+
}
|
|
40
|
+
const Z = {
|
|
41
|
+
small: 24,
|
|
42
|
+
// w-6
|
|
43
|
+
medium: 32,
|
|
44
|
+
// w-8
|
|
45
|
+
large: 48
|
|
46
|
+
// w-12
|
|
47
|
+
}, z = {
|
|
48
|
+
small: 8 * 2,
|
|
49
|
+
// px-2 x 2
|
|
50
|
+
medium: 12 * 2,
|
|
51
|
+
// px-3 x 2
|
|
52
|
+
large: 16 * 2
|
|
53
|
+
// px-4 x 2
|
|
54
|
+
}, ee = 2, te = H.forwardRef(
|
|
6
55
|
({
|
|
7
|
-
children:
|
|
8
|
-
disabled:
|
|
9
|
-
mode:
|
|
10
|
-
focusMode:
|
|
11
|
-
fullWidth:
|
|
12
|
-
className:
|
|
13
|
-
type:
|
|
14
|
-
raw:
|
|
15
|
-
noBorder:
|
|
16
|
-
"aria-label":
|
|
17
|
-
label:
|
|
18
|
-
size:
|
|
19
|
-
labelRight:
|
|
20
|
-
labelLeft:
|
|
21
|
-
noBackground:
|
|
22
|
-
align:
|
|
23
|
-
radius:
|
|
24
|
-
variant:
|
|
25
|
-
iconClassName:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
56
|
+
children: e,
|
|
57
|
+
disabled: r = !1,
|
|
58
|
+
mode: t = "system",
|
|
59
|
+
focusMode: s = "system",
|
|
60
|
+
fullWidth: h = !1,
|
|
61
|
+
className: R,
|
|
62
|
+
type: n = "button",
|
|
63
|
+
raw: y = !1,
|
|
64
|
+
noBorder: u = !1,
|
|
65
|
+
"aria-label": A,
|
|
66
|
+
label: D,
|
|
67
|
+
size: l = "medium",
|
|
68
|
+
labelRight: i,
|
|
69
|
+
labelLeft: f,
|
|
70
|
+
noBackground: O = !1,
|
|
71
|
+
align: $ = "center",
|
|
72
|
+
radius: F = "large",
|
|
73
|
+
variant: S = "primary",
|
|
74
|
+
iconClassName: j,
|
|
75
|
+
animated: x = !1,
|
|
76
|
+
...P
|
|
77
|
+
}, T) => {
|
|
78
|
+
const _ = J({
|
|
79
|
+
type: Q,
|
|
80
|
+
mode: t,
|
|
81
|
+
focusMode: s,
|
|
82
|
+
fullWidth: h,
|
|
83
|
+
disabled: r,
|
|
84
|
+
raw: y,
|
|
85
|
+
className: R,
|
|
86
|
+
noBorder: u,
|
|
87
|
+
size: l,
|
|
88
|
+
labelRight: i,
|
|
89
|
+
labelLeft: f,
|
|
90
|
+
noBackground: O,
|
|
91
|
+
align: $,
|
|
92
|
+
radius: F,
|
|
93
|
+
variant: S,
|
|
94
|
+
animated: x
|
|
95
|
+
}), k = K({ mode: t, raw: y, iconClassName: j }), b = L({ animated: x }), [c, w] = I(), [o, N] = I(), [d, g] = I(), C = p(0), a = p(null), q = V([T, a]);
|
|
96
|
+
return v(() => {
|
|
97
|
+
d && d.current && (C.current = g.width + z[l] + (u ? 0 : ee));
|
|
98
|
+
}, [g, d, l, u]), v(() => {
|
|
99
|
+
a && a.current && (i && c && w.width > 0 ? (c.current && (c.current.style.opacity = "100"), a.current.style.width = `${w.width + C.current}px`) : f && N.width > 0 ? (o.current && (o.current.style.opacity = "100"), a.current.style.width = `${N.width + C.current}px`) : (c.current && (c.current.style.opacity = "0"), o.current && (o.current.style.opacity = "0"), a.current.style.width = `${Z[l]}px`));
|
|
100
|
+
}, [
|
|
101
|
+
w,
|
|
102
|
+
i,
|
|
103
|
+
c,
|
|
104
|
+
N,
|
|
105
|
+
f,
|
|
106
|
+
o,
|
|
107
|
+
l
|
|
108
|
+
]), /* @__PURE__ */ G(
|
|
109
|
+
Y,
|
|
47
110
|
{
|
|
48
|
-
ref:
|
|
49
|
-
className:
|
|
50
|
-
disabled:
|
|
51
|
-
type:
|
|
52
|
-
"aria-label":
|
|
53
|
-
...
|
|
111
|
+
ref: q,
|
|
112
|
+
className: _,
|
|
113
|
+
disabled: r,
|
|
114
|
+
type: n,
|
|
115
|
+
"aria-label": A || D,
|
|
116
|
+
...P,
|
|
54
117
|
children: [
|
|
55
|
-
|
|
56
|
-
/* @__PURE__ */
|
|
57
|
-
|
|
118
|
+
/* @__PURE__ */ m("span", { ref: o, className: b, children: f && /* @__PURE__ */ m("span", { className: "pr-2", children: f }) }),
|
|
119
|
+
/* @__PURE__ */ m("span", { ref: d, className: k, children: e }),
|
|
120
|
+
/* @__PURE__ */ m("span", { ref: c, className: b, children: i && /* @__PURE__ */ m("span", { className: "pl-2", children: i }) })
|
|
58
121
|
]
|
|
59
122
|
}
|
|
60
123
|
);
|
|
61
124
|
}
|
|
62
125
|
);
|
|
63
|
-
|
|
126
|
+
te.displayName = "ButtonIcon";
|
|
64
127
|
export {
|
|
65
|
-
|
|
128
|
+
te as ButtonIcon
|
|
66
129
|
};
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { jsx as e, jsxs as a } from "react/jsx-runtime";
|
|
2
2
|
import b from "clsx";
|
|
3
|
-
import
|
|
4
|
-
import { getButtonClasses as
|
|
5
|
-
const L =
|
|
3
|
+
import V from "react";
|
|
4
|
+
import { getButtonClasses as v, TYPE_LINK as C } from "../../chunks/utilities.DZA7UB1Y.js";
|
|
5
|
+
const L = V.forwardRef(
|
|
6
6
|
({
|
|
7
7
|
children: r,
|
|
8
|
-
mode:
|
|
8
|
+
mode: n = "system",
|
|
9
9
|
focusMode: c = "system",
|
|
10
|
-
fullWidth:
|
|
10
|
+
fullWidth: o = !1,
|
|
11
11
|
className: i,
|
|
12
12
|
size: m = "small",
|
|
13
13
|
raw: d = !1,
|
|
@@ -18,11 +18,11 @@ const L = v.forwardRef(
|
|
|
18
18
|
radius: h = "large",
|
|
19
19
|
...w
|
|
20
20
|
}, x) => {
|
|
21
|
-
const u =
|
|
21
|
+
const u = v({
|
|
22
22
|
type: C,
|
|
23
|
-
mode:
|
|
23
|
+
mode: n,
|
|
24
24
|
focusMode: c,
|
|
25
|
-
fullWidth:
|
|
25
|
+
fullWidth: o,
|
|
26
26
|
disabled: !1,
|
|
27
27
|
raw: d,
|
|
28
28
|
className: i,
|
package/dist/index.js
CHANGED
|
@@ -1,69 +1,33 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import S from "react";
|
|
10
|
-
import { BaseButton_private as E } from "./chunks/BaseButton.BFKIL4GO.js";
|
|
1
|
+
import { BUTTON_CLASSNAME as B } from "./chunks/utilities.DZA7UB1Y.js";
|
|
2
|
+
import { Button as T } from "./components/Button/Button.js";
|
|
3
|
+
import { ButtonCopy as I } from "./components/Button/ButtonCopy.js";
|
|
4
|
+
import { ButtonIcon as l } from "./components/Button/ButtonIcon.js";
|
|
5
|
+
import { ButtonLink as k } from "./components/Button/ButtonLink.js";
|
|
6
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
7
|
+
import a from "clsx";
|
|
8
|
+
import m from "react";
|
|
11
9
|
/*!
|
|
12
|
-
@versini/ui-button v4.
|
|
10
|
+
@versini/ui-button v4.2.0
|
|
13
11
|
© 2025 gizmette.com
|
|
14
12
|
*/
|
|
15
13
|
try {
|
|
16
14
|
window.__VERSINI_UI_BUTTON__ || (window.__VERSINI_UI_BUTTON__ = {
|
|
17
|
-
version: "4.
|
|
18
|
-
buildTime: "01/
|
|
15
|
+
version: "4.2.0",
|
|
16
|
+
buildTime: "01/25/2025 10:54 PM EST",
|
|
19
17
|
homepage: "https://github.com/aversini/ui-components",
|
|
20
18
|
license: "MIT"
|
|
21
19
|
});
|
|
22
20
|
} catch {
|
|
23
21
|
}
|
|
24
|
-
const
|
|
22
|
+
const b = m.forwardRef(
|
|
25
23
|
({
|
|
26
|
-
children:
|
|
27
|
-
disabled: i = !1,
|
|
24
|
+
children: r,
|
|
28
25
|
mode: t = "system",
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
noBorder: m = !1,
|
|
35
|
-
"aria-label": d,
|
|
36
|
-
label: b,
|
|
37
|
-
size: u = "medium",
|
|
38
|
-
labelRight: a,
|
|
39
|
-
labelLeft: o,
|
|
40
|
-
noBackground: h = !1,
|
|
41
|
-
align: x = "center",
|
|
42
|
-
active: y = !1,
|
|
43
|
-
radius: _ = "large",
|
|
44
|
-
...k
|
|
45
|
-
}, N) => {
|
|
46
|
-
const B = I({
|
|
47
|
-
type: v,
|
|
48
|
-
mode: t,
|
|
49
|
-
focusMode: c,
|
|
50
|
-
fullWidth: l,
|
|
51
|
-
disabled: i,
|
|
52
|
-
raw: r,
|
|
53
|
-
className: f,
|
|
54
|
-
noBorder: m,
|
|
55
|
-
size: u,
|
|
56
|
-
labelRight: a,
|
|
57
|
-
labelLeft: o,
|
|
58
|
-
noBackground: h,
|
|
59
|
-
align: x,
|
|
60
|
-
radius: _
|
|
61
|
-
}), g = n({
|
|
62
|
-
"text-copy-accent-dark": t === "light" && !r,
|
|
63
|
-
"text-copy-light": t === "dark" && !r,
|
|
64
|
-
"text-copy-accent-dark dark:text-copy-light": t === "alt-system" && !r,
|
|
65
|
-
"text-copy-light dark:text-copy-accent-dark": t === "system" && !r
|
|
66
|
-
}), T = y ? n(
|
|
26
|
+
className: o,
|
|
27
|
+
active: i = !1,
|
|
28
|
+
...s
|
|
29
|
+
}, f) => {
|
|
30
|
+
const n = i ? a(
|
|
67
31
|
"relative",
|
|
68
32
|
"focus-within:static",
|
|
69
33
|
"focus-within:after:border-transparent",
|
|
@@ -80,30 +44,25 @@ const U = S.forwardRef(
|
|
|
80
44
|
"after:border-table-light dark:after:border-table-dark": t === "alt-system"
|
|
81
45
|
}
|
|
82
46
|
) : "";
|
|
83
|
-
return /* @__PURE__ */ e("div", { className:
|
|
84
|
-
|
|
47
|
+
return /* @__PURE__ */ e("div", { className: n, children: /* @__PURE__ */ e(
|
|
48
|
+
l,
|
|
85
49
|
{
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
children: [
|
|
93
|
-
o && /* @__PURE__ */ e("span", { className: "pr-2", children: o }),
|
|
94
|
-
/* @__PURE__ */ e("div", { className: g, children: s }),
|
|
95
|
-
a && /* @__PURE__ */ e("span", { className: "pl-2", children: a })
|
|
96
|
-
]
|
|
50
|
+
className: a("justify-center", o),
|
|
51
|
+
ref: f,
|
|
52
|
+
mode: t,
|
|
53
|
+
radius: "small",
|
|
54
|
+
...s,
|
|
55
|
+
children: r
|
|
97
56
|
}
|
|
98
57
|
) });
|
|
99
58
|
}
|
|
100
59
|
);
|
|
101
|
-
|
|
60
|
+
b.displayName = "ButtonSort";
|
|
102
61
|
export {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
62
|
+
B as BUTTON_CLASSNAME,
|
|
63
|
+
T as Button,
|
|
64
|
+
I as ButtonCopy,
|
|
65
|
+
l as ButtonIcon,
|
|
66
|
+
k as ButtonLink,
|
|
67
|
+
b as ButtonSort_private
|
|
109
68
|
};
|
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}.visible{visibility:visible}.fixed{position:fixed}.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}.size-6{width:1.5rem;height:1.5rem}.size-px{width:1px;height:1px}.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{border-radius:.25rem}.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(22 101 52 / 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(21 128 61 / var(--tw-bg-opacity, 1)))}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.py-0{padding-top:0;padding-bottom:0}.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))}.ring{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.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(22 163 74 / 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(34 197 94 / 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 (min-width: 640px){.sm\:size-6{width:1.5rem;height:1.5rem}}@media (min-width: 768px){.md\:size-px{width:1px;height:1px}}@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\: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\: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\: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)))}}
|
|
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}}@keyframes av-tooltip-fade-in{0%{opacity:0}to{opacity:100}}.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}.visible{visibility:visible}.fixed{position:fixed}.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}.size-6{width:1.5rem;height:1.5rem}.size-px{width:1px;height:1px}.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}.resize{resize:both}.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{border-radius:.25rem}.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(22 101 52 / 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(21 128 61 / var(--tw-bg-opacity, 1)))}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.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))}.ring{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.transition-\[width\]{transition-property:width;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-300{transition-duration:.3s}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,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(22 163 74 / 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(34 197 94 / 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 (min-width: 640px){.sm\:size-6{width:1.5rem;height:1.5rem}}@media (min-width: 768px){.md\:size-px{width:1px;height:1px}}@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\: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\: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\: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)))}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-button",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"dev:types": "tsup --watch src",
|
|
28
28
|
"dev": "npm-run-all clean --parallel dev:js dev:types",
|
|
29
29
|
"lint": "biome lint src",
|
|
30
|
+
"prettier": "biome check --write --no-errors-on-unmatched",
|
|
30
31
|
"start": "static-server dist --port 5173",
|
|
31
32
|
"test:coverage:ui": "vitest --coverage --ui",
|
|
32
33
|
"test:coverage": "vitest run --coverage",
|
|
@@ -38,17 +39,18 @@
|
|
|
38
39
|
"react-dom": "^18.3.1 || ^19.0.0"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"@versini/ui-svgicon": "4.0.
|
|
42
|
-
"@versini/ui-types": "4.
|
|
42
|
+
"@versini/ui-svgicon": "4.0.8",
|
|
43
|
+
"@versini/ui-types": "4.5.0"
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
46
|
"@tailwindcss/typography": "0.5.16",
|
|
46
|
-
"@versini/ui-
|
|
47
|
+
"@versini/ui-hooks": "4.6.1",
|
|
48
|
+
"@versini/ui-icons": "4.6.0",
|
|
47
49
|
"clsx": "2.1.1",
|
|
48
50
|
"tailwindcss": "3.4.17"
|
|
49
51
|
},
|
|
50
52
|
"sideEffects": [
|
|
51
53
|
"**/*.css"
|
|
52
54
|
],
|
|
53
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "95add63a475dc1307dd4ada55909553876a55b73"
|
|
54
56
|
}
|