@versini/ui-bubble 3.1.13 → 3.2.1
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/index.js +340 -305
- package/dist/style.css +1 -1
- package/package.json +5 -4
package/dist/index.js
CHANGED
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as c, jsxs as B, Fragment as ee } from "react/jsx-runtime";
|
|
2
|
+
import V, { useRef as I, useLayoutEffect as S, useMemo as P, useState as F, useEffect as L, useCallback as te } from "react";
|
|
2
3
|
import i from "clsx";
|
|
3
|
-
import T, { useState as U, useEffect as O } from "react";
|
|
4
4
|
/*!
|
|
5
|
-
@versini/ui-bubble v3.1
|
|
5
|
+
@versini/ui-bubble v3.2.1
|
|
6
6
|
© 2025 gizmette.com
|
|
7
7
|
*/
|
|
8
8
|
try {
|
|
9
9
|
window.__VERSINI_UI_BUBBLE__ || (window.__VERSINI_UI_BUBBLE__ = {
|
|
10
|
-
version: "3.1
|
|
11
|
-
buildTime: "01/
|
|
10
|
+
version: "3.2.1",
|
|
11
|
+
buildTime: "01/26/2025 05:19 PM EST",
|
|
12
12
|
homepage: "https://github.com/aversini/ui-components",
|
|
13
13
|
license: "MIT"
|
|
14
14
|
});
|
|
15
15
|
} catch {
|
|
16
16
|
}
|
|
17
|
-
const
|
|
17
|
+
const re = "av-bubble", O = "av-button", T = "icon", G = "button", M = "link", ae = ({
|
|
18
18
|
type: e,
|
|
19
|
-
size:
|
|
19
|
+
size: r,
|
|
20
20
|
labelRight: t,
|
|
21
|
-
labelLeft:
|
|
22
|
-
align:
|
|
21
|
+
labelLeft: a,
|
|
22
|
+
align: n
|
|
23
23
|
}) => {
|
|
24
|
-
const o = "max-h-8 py-0 px-2",
|
|
24
|
+
const o = "max-h-8 py-0 px-2", s = "max-h-9 h-8 px-3", u = "max-h-12 py-2 px-4";
|
|
25
25
|
switch (e) {
|
|
26
|
-
case
|
|
27
|
-
case
|
|
26
|
+
case G:
|
|
27
|
+
case M:
|
|
28
28
|
return i({
|
|
29
|
-
[o]:
|
|
30
|
-
[
|
|
31
|
-
[
|
|
29
|
+
[o]: r === "small",
|
|
30
|
+
[s]: r === "medium",
|
|
31
|
+
[u]: r === "large"
|
|
32
32
|
});
|
|
33
|
-
case
|
|
33
|
+
case T:
|
|
34
34
|
return i("inline-flex items-center", {
|
|
35
|
-
"justify-center":
|
|
36
|
-
"justify-start":
|
|
37
|
-
"justify-end":
|
|
38
|
-
"h-6
|
|
39
|
-
"h-6
|
|
40
|
-
"h-8
|
|
41
|
-
"h-8
|
|
42
|
-
"h-12
|
|
43
|
-
"h-12
|
|
35
|
+
"justify-center": n === "center",
|
|
36
|
+
"justify-start": n === "left",
|
|
37
|
+
"justify-end": n === "right",
|
|
38
|
+
"h-6 py-0": r === "small" && !(t || a),
|
|
39
|
+
"h-6": r === "small" && (t || a),
|
|
40
|
+
"h-8 py-1": r === "medium" && !(t || a),
|
|
41
|
+
"h-8": r === "medium" && (t || a),
|
|
42
|
+
"h-12 py-2": r === "large" && !(t || a),
|
|
43
|
+
"h-12": r === "large" && (t || a)
|
|
44
44
|
});
|
|
45
45
|
}
|
|
46
|
-
},
|
|
46
|
+
}, ie = ({
|
|
47
47
|
type: e,
|
|
48
|
-
size:
|
|
48
|
+
size: r,
|
|
49
49
|
labelRight: t,
|
|
50
|
-
labelLeft:
|
|
50
|
+
labelLeft: a
|
|
51
51
|
}) => {
|
|
52
|
-
const
|
|
52
|
+
const n = "text-sm font-medium", o = "text-base font-medium", s = "text-lg font-medium";
|
|
53
53
|
switch (e) {
|
|
54
|
-
case
|
|
55
|
-
case
|
|
54
|
+
case G:
|
|
55
|
+
case M:
|
|
56
56
|
return i({
|
|
57
|
-
"text-center": e ===
|
|
58
|
-
[
|
|
59
|
-
[o]:
|
|
60
|
-
[
|
|
57
|
+
"text-center": e === M,
|
|
58
|
+
[n]: r === "small",
|
|
59
|
+
[o]: r === "medium",
|
|
60
|
+
[s]: r === "large"
|
|
61
61
|
});
|
|
62
|
-
case
|
|
62
|
+
case T:
|
|
63
63
|
return i({
|
|
64
|
-
[
|
|
65
|
-
[o]:
|
|
66
|
-
[
|
|
64
|
+
[n]: r === "small" && (t || a),
|
|
65
|
+
[o]: r === "medium" && (t || a),
|
|
66
|
+
[s]: r === "large" && (t || a)
|
|
67
67
|
});
|
|
68
68
|
}
|
|
69
|
-
},
|
|
69
|
+
}, oe = ({
|
|
70
70
|
mode: e,
|
|
71
|
-
noBackground:
|
|
71
|
+
noBackground: r,
|
|
72
72
|
noTruncate: t,
|
|
73
|
-
variant:
|
|
73
|
+
variant: a
|
|
74
74
|
}) => {
|
|
75
|
-
if (
|
|
75
|
+
if (r)
|
|
76
76
|
return "not-prose";
|
|
77
|
-
if (
|
|
77
|
+
if (a === "primary")
|
|
78
78
|
return i("not-prose", {
|
|
79
79
|
truncate: !t,
|
|
80
80
|
"text-copy-light": e === "dark" || e === "system",
|
|
@@ -82,7 +82,7 @@ const j = "av-bubble", E = "av-button", y = "icon", S = "button", C = "link", H
|
|
|
82
82
|
"dark:text-copy-lighter": e === "system",
|
|
83
83
|
"dark:text-copy-light": e === "alt-system"
|
|
84
84
|
});
|
|
85
|
-
if (
|
|
85
|
+
if (a === "secondary")
|
|
86
86
|
return i("not-prose", {
|
|
87
87
|
truncate: !t,
|
|
88
88
|
"text-copy-light": e === "light" || e === "system",
|
|
@@ -90,7 +90,7 @@ const j = "av-bubble", E = "av-button", y = "icon", S = "button", C = "link", H
|
|
|
90
90
|
"dark:text-copy-lighter": e === "alt-system",
|
|
91
91
|
"dark:text-copy-light": e === "system"
|
|
92
92
|
});
|
|
93
|
-
if (
|
|
93
|
+
if (a === "danger")
|
|
94
94
|
return i("not-prose", {
|
|
95
95
|
truncate: !t,
|
|
96
96
|
"text-copy-light": e === "dark" || e === "system",
|
|
@@ -98,16 +98,16 @@ const j = "av-bubble", E = "av-button", y = "icon", S = "button", C = "link", H
|
|
|
98
98
|
"dark:text-copy-lighter": e === "system",
|
|
99
99
|
"dark:text-copy-light": e === "alt-system"
|
|
100
100
|
});
|
|
101
|
-
if (
|
|
101
|
+
if (a === "selected")
|
|
102
102
|
return i("not-prose text-copy-lighter", {
|
|
103
103
|
truncate: !t
|
|
104
104
|
});
|
|
105
|
-
},
|
|
105
|
+
}, ne = ({
|
|
106
106
|
mode: e,
|
|
107
|
-
noBackground:
|
|
107
|
+
noBackground: r,
|
|
108
108
|
variant: t
|
|
109
109
|
}) => {
|
|
110
|
-
if (!
|
|
110
|
+
if (!r) {
|
|
111
111
|
if (t === "primary")
|
|
112
112
|
return i({
|
|
113
113
|
"bg-action-dark": e === "dark",
|
|
@@ -132,18 +132,18 @@ const j = "av-bubble", E = "av-button", y = "icon", S = "button", C = "link", H
|
|
|
132
132
|
if (t === "selected")
|
|
133
133
|
return "bg-action-selected-dark";
|
|
134
134
|
}
|
|
135
|
-
},
|
|
135
|
+
}, se = ({
|
|
136
136
|
radius: e
|
|
137
137
|
}) => i({
|
|
138
138
|
"rounded-full": e === "large",
|
|
139
139
|
"rounded-md": e === "medium",
|
|
140
140
|
"rounded-sm": e === "small"
|
|
141
|
-
}),
|
|
141
|
+
}), ce = ({
|
|
142
142
|
mode: e,
|
|
143
|
-
disabled:
|
|
143
|
+
disabled: r,
|
|
144
144
|
variant: t
|
|
145
145
|
}) => {
|
|
146
|
-
if (
|
|
146
|
+
if (r)
|
|
147
147
|
return "";
|
|
148
148
|
if (t === "primary")
|
|
149
149
|
return i("hover:text-copy-light-hover", {
|
|
@@ -168,12 +168,12 @@ const j = "av-bubble", E = "av-button", y = "icon", S = "button", C = "link", H
|
|
|
168
168
|
});
|
|
169
169
|
if (t === "selected")
|
|
170
170
|
return "hover:text-copy-light-hover hover:bg-action-selected-dark-hover";
|
|
171
|
-
},
|
|
171
|
+
}, le = ({
|
|
172
172
|
mode: e,
|
|
173
|
-
disabled:
|
|
173
|
+
disabled: r,
|
|
174
174
|
variant: t
|
|
175
175
|
}) => {
|
|
176
|
-
if (
|
|
176
|
+
if (r)
|
|
177
177
|
return "";
|
|
178
178
|
if (t === "primary")
|
|
179
179
|
return i("active:text-copy-light-active", {
|
|
@@ -198,12 +198,12 @@ const j = "av-bubble", E = "av-button", y = "icon", S = "button", C = "link", H
|
|
|
198
198
|
});
|
|
199
199
|
if (t === "selected")
|
|
200
200
|
return "active:text-copy-lighter-active active:bg-action-selected-dark-active";
|
|
201
|
-
},
|
|
201
|
+
}, de = ({
|
|
202
202
|
mode: e,
|
|
203
|
-
noBorder:
|
|
203
|
+
noBorder: r,
|
|
204
204
|
variant: t
|
|
205
205
|
}) => {
|
|
206
|
-
if (
|
|
206
|
+
if (r)
|
|
207
207
|
return "border border-transparent";
|
|
208
208
|
if (t === "primary")
|
|
209
209
|
return i("border", {
|
|
@@ -228,18 +228,18 @@ const j = "av-bubble", E = "av-button", y = "icon", S = "button", C = "link", H
|
|
|
228
228
|
});
|
|
229
229
|
if (t === "selected")
|
|
230
230
|
return "border border-border-selected-dark";
|
|
231
|
-
},
|
|
231
|
+
}, ue = ({
|
|
232
232
|
focusMode: e
|
|
233
233
|
}) => i("focus:outline", "focus:outline-2", "focus:outline-offset-2", {
|
|
234
234
|
"focus:outline-focus-dark": e === "dark",
|
|
235
235
|
"focus:outline-focus-light": e === "light",
|
|
236
236
|
"focus:outline-focus-light dark:focus:outline-focus-dark": e === "alt-system",
|
|
237
237
|
"focus:outline-focus-dark dark:focus:outline-focus-light": e === "system"
|
|
238
|
-
}),
|
|
238
|
+
}), ge = ({
|
|
239
239
|
mode: e,
|
|
240
|
-
raw:
|
|
240
|
+
raw: r,
|
|
241
241
|
iconClassName: t
|
|
242
|
-
}) =>
|
|
242
|
+
}) => r ? "" : i(
|
|
243
243
|
{
|
|
244
244
|
"text-copy-accent-dark": e === "light" || e === "alt-system",
|
|
245
245
|
"text-copy-light": e === "dark" || e === "system",
|
|
@@ -247,182 +247,222 @@ const j = "av-bubble", E = "av-button", y = "icon", S = "button", C = "link", H
|
|
|
247
247
|
"dark:text-copy-accent-dark": e === "system"
|
|
248
248
|
},
|
|
249
249
|
t
|
|
250
|
-
),
|
|
250
|
+
), me = ({
|
|
251
|
+
animated: e
|
|
252
|
+
}) => i({
|
|
253
|
+
"transition-opacity duration-300 ease-in": e
|
|
254
|
+
}), he = ({
|
|
251
255
|
type: e,
|
|
252
|
-
className:
|
|
256
|
+
className: r,
|
|
253
257
|
raw: t,
|
|
254
|
-
mode:
|
|
255
|
-
focusMode:
|
|
258
|
+
mode: a,
|
|
259
|
+
focusMode: n,
|
|
256
260
|
disabled: o,
|
|
257
|
-
fullWidth:
|
|
258
|
-
size:
|
|
259
|
-
noBorder:
|
|
260
|
-
labelRight:
|
|
261
|
-
labelLeft:
|
|
262
|
-
noBackground:
|
|
263
|
-
variant:
|
|
264
|
-
noTruncate:
|
|
265
|
-
align:
|
|
266
|
-
radius:
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
261
|
+
fullWidth: s,
|
|
262
|
+
size: u,
|
|
263
|
+
noBorder: g,
|
|
264
|
+
labelRight: m,
|
|
265
|
+
labelLeft: p,
|
|
266
|
+
noBackground: l,
|
|
267
|
+
variant: d,
|
|
268
|
+
noTruncate: f,
|
|
269
|
+
align: h,
|
|
270
|
+
radius: N,
|
|
271
|
+
animated: z
|
|
272
|
+
}) => (d || (d = "primary"), t ? i(O, r) : i(
|
|
273
|
+
O,
|
|
274
|
+
oe({
|
|
275
|
+
mode: a,
|
|
276
|
+
variant: d,
|
|
277
|
+
noBackground: l,
|
|
278
|
+
noTruncate: f
|
|
274
279
|
}),
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
280
|
+
ne({ mode: a, noBackground: l, variant: d }),
|
|
281
|
+
se({ radius: N }),
|
|
282
|
+
ae({
|
|
278
283
|
type: e,
|
|
279
|
-
size:
|
|
280
|
-
labelRight:
|
|
281
|
-
labelLeft:
|
|
282
|
-
align:
|
|
284
|
+
size: u,
|
|
285
|
+
labelRight: m,
|
|
286
|
+
labelLeft: p,
|
|
287
|
+
align: h
|
|
283
288
|
}),
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
+
ie({ type: e, size: u, labelRight: m, labelLeft: p }),
|
|
290
|
+
de({ mode: a, variant: d, noBorder: g }),
|
|
291
|
+
ue({ focusMode: n }),
|
|
292
|
+
ce({ mode: a, variant: d, disabled: o }),
|
|
293
|
+
le({ mode: a, variant: d, disabled: o }),
|
|
289
294
|
{
|
|
290
|
-
"w-full":
|
|
295
|
+
"w-full": s,
|
|
291
296
|
"disabled:cursor-not-allowed disabled:opacity-50": o
|
|
292
297
|
},
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
298
|
+
i({
|
|
299
|
+
"transition-[width] duration-300 ease-in-out": e === T && z
|
|
300
|
+
}),
|
|
301
|
+
r
|
|
302
|
+
)), be = (e, r, t) => {
|
|
303
|
+
var a;
|
|
304
|
+
!r && (!document.activeElement || document.activeElement !== e.currentTarget) && typeof ((a = e == null ? void 0 : e.currentTarget) == null ? void 0 : a.focus) == "function" && e.currentTarget.focus(), typeof t == "function" && t(e);
|
|
305
|
+
}, q = V.forwardRef((e, r) => {
|
|
306
|
+
const { onClick: t, noInternalClick: a = !1, ...n } = e;
|
|
307
|
+
return /* @__PURE__ */ c(
|
|
300
308
|
"button",
|
|
301
309
|
{
|
|
302
|
-
ref:
|
|
310
|
+
ref: r,
|
|
303
311
|
onClick: (o) => {
|
|
304
|
-
|
|
312
|
+
be(o, a, t);
|
|
305
313
|
},
|
|
306
|
-
...
|
|
314
|
+
...n
|
|
307
315
|
}
|
|
308
316
|
);
|
|
309
317
|
});
|
|
310
|
-
|
|
311
|
-
|
|
318
|
+
q.displayName = "BaseButton";
|
|
319
|
+
function fe() {
|
|
320
|
+
const e = I(!1);
|
|
321
|
+
return L(() => (e.current = !0, () => {
|
|
322
|
+
e.current = !1;
|
|
323
|
+
}), []), te(() => e.current, []);
|
|
324
|
+
}
|
|
325
|
+
function ve(e) {
|
|
326
|
+
return P(() => e.every((r) => r == null) ? () => {
|
|
327
|
+
} : (r) => {
|
|
328
|
+
e.forEach((t) => {
|
|
329
|
+
typeof t == "function" ? t(r) : t != null && (t.current = r);
|
|
330
|
+
});
|
|
331
|
+
}, e);
|
|
332
|
+
}
|
|
333
|
+
const pe = {
|
|
334
|
+
x: 0,
|
|
335
|
+
y: 0,
|
|
336
|
+
width: 0,
|
|
337
|
+
height: 0,
|
|
338
|
+
top: 0,
|
|
339
|
+
left: 0,
|
|
340
|
+
bottom: 0,
|
|
341
|
+
right: 0
|
|
342
|
+
};
|
|
343
|
+
function R(e) {
|
|
344
|
+
const r = fe(), t = I(0), a = I(null), [n, o] = F(pe), s = P(() => typeof ResizeObserver > "u" ? null : new ResizeObserver((u) => {
|
|
345
|
+
const g = u[0];
|
|
346
|
+
g && (cancelAnimationFrame(t.current), t.current = requestAnimationFrame(() => {
|
|
347
|
+
a.current && r() && o(g.contentRect);
|
|
348
|
+
}));
|
|
349
|
+
}), [r]);
|
|
350
|
+
return L(() => (a.current && (s == null || s.observe(a.current, e)), () => {
|
|
351
|
+
s == null || s.disconnect(), t.current && cancelAnimationFrame(t.current);
|
|
352
|
+
}), [s, e]), [a, n];
|
|
353
|
+
}
|
|
354
|
+
const j = {
|
|
355
|
+
small: 24,
|
|
356
|
+
// w-6
|
|
357
|
+
medium: 32,
|
|
358
|
+
// w-8
|
|
359
|
+
large: 48
|
|
360
|
+
// w-12
|
|
361
|
+
}, A = {
|
|
362
|
+
small: 8 * 2,
|
|
363
|
+
// px-2 x 2
|
|
364
|
+
medium: 12 * 2,
|
|
365
|
+
// px-3 x 2
|
|
366
|
+
large: 16 * 2
|
|
367
|
+
// px-4 x 2
|
|
368
|
+
}, H = 2, U = V.forwardRef(
|
|
312
369
|
({
|
|
313
370
|
children: e,
|
|
314
|
-
disabled:
|
|
371
|
+
disabled: r = !1,
|
|
315
372
|
mode: t = "system",
|
|
316
|
-
focusMode:
|
|
317
|
-
fullWidth:
|
|
373
|
+
focusMode: a = "system",
|
|
374
|
+
fullWidth: n = !1,
|
|
318
375
|
className: o,
|
|
319
|
-
type:
|
|
320
|
-
raw:
|
|
321
|
-
noBorder:
|
|
322
|
-
"aria-label":
|
|
323
|
-
label:
|
|
324
|
-
size:
|
|
325
|
-
labelRight:
|
|
326
|
-
labelLeft:
|
|
327
|
-
noBackground:
|
|
328
|
-
align:
|
|
329
|
-
radius:
|
|
330
|
-
variant:
|
|
331
|
-
iconClassName:
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
376
|
+
type: s = "button",
|
|
377
|
+
raw: u = !1,
|
|
378
|
+
noBorder: g = !1,
|
|
379
|
+
"aria-label": m,
|
|
380
|
+
label: p,
|
|
381
|
+
size: l = "medium",
|
|
382
|
+
labelRight: d,
|
|
383
|
+
labelLeft: f,
|
|
384
|
+
noBackground: h = !1,
|
|
385
|
+
align: N = "center",
|
|
386
|
+
radius: z = "large",
|
|
387
|
+
variant: Z = "primary",
|
|
388
|
+
iconClassName: D,
|
|
389
|
+
animated: v = !1,
|
|
390
|
+
...J
|
|
391
|
+
}, K) => {
|
|
392
|
+
const Q = he({
|
|
393
|
+
type: T,
|
|
336
394
|
mode: t,
|
|
337
|
-
focusMode:
|
|
338
|
-
fullWidth:
|
|
339
|
-
disabled:
|
|
340
|
-
raw:
|
|
395
|
+
focusMode: a,
|
|
396
|
+
fullWidth: n,
|
|
397
|
+
disabled: r,
|
|
398
|
+
raw: u,
|
|
341
399
|
className: o,
|
|
342
|
-
noBorder:
|
|
343
|
-
size:
|
|
344
|
-
labelRight:
|
|
345
|
-
labelLeft:
|
|
346
|
-
noBackground:
|
|
347
|
-
align:
|
|
348
|
-
radius:
|
|
349
|
-
variant:
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
400
|
+
noBorder: g,
|
|
401
|
+
size: l,
|
|
402
|
+
labelRight: d,
|
|
403
|
+
labelLeft: f,
|
|
404
|
+
noBackground: h,
|
|
405
|
+
align: N,
|
|
406
|
+
radius: z,
|
|
407
|
+
variant: Z,
|
|
408
|
+
animated: v
|
|
409
|
+
}), X = ge({ mode: t, raw: u, iconClassName: D }), $ = me({ animated: v }), [y, k] = R(), [x, w] = R(), [C, E] = R(), _ = I(0), b = I(null), Y = ve([K, b]);
|
|
410
|
+
return S(() => {
|
|
411
|
+
v || (_.current = E.width + A[l] + (g ? 0 : H), b && b.current && (k.width > 0 ? b.current.style.width = `${k.width + _.current}px` : w.width > 0 ? b.current.style.width = `${w.width + _.current}px` : b.current.style.width = `${j[l]}px`));
|
|
412
|
+
}, [v, E, l, g, k, w]), S(() => {
|
|
413
|
+
C && C.current && v && (_.current = E.width + A[l] + (g ? 0 : H));
|
|
414
|
+
}, [E, C, l, g, v]), S(() => {
|
|
415
|
+
b && b.current && v && (d && y && k.width > 0 ? (y.current && (y.current.style.opacity = "100"), b.current.style.width = `${k.width + _.current}px`) : f && w.width > 0 ? (x.current && (x.current.style.opacity = "100"), b.current.style.width = `${w.width + _.current}px`) : (y.current && (y.current.style.opacity = "0"), x.current && (x.current.style.opacity = "0"), b.current.style.width = `${j[l]}px`));
|
|
416
|
+
}, [
|
|
417
|
+
k,
|
|
418
|
+
d,
|
|
419
|
+
y,
|
|
420
|
+
w,
|
|
421
|
+
f,
|
|
422
|
+
x,
|
|
423
|
+
l,
|
|
424
|
+
v
|
|
425
|
+
]), /* @__PURE__ */ B(
|
|
426
|
+
q,
|
|
353
427
|
{
|
|
354
|
-
ref:
|
|
355
|
-
className:
|
|
356
|
-
disabled:
|
|
357
|
-
type:
|
|
358
|
-
"aria-label":
|
|
359
|
-
...
|
|
428
|
+
ref: Y,
|
|
429
|
+
className: Q,
|
|
430
|
+
disabled: r,
|
|
431
|
+
type: s,
|
|
432
|
+
"aria-label": m || p,
|
|
433
|
+
...J,
|
|
360
434
|
children: [
|
|
361
|
-
|
|
362
|
-
/* @__PURE__ */
|
|
363
|
-
c && /* @__PURE__ */
|
|
435
|
+
/* @__PURE__ */ c("span", { ref: x, className: $, children: f && /* @__PURE__ */ c("span", { className: "pr-2", children: f }) }),
|
|
436
|
+
/* @__PURE__ */ c("span", { ref: C, className: X, children: e }),
|
|
437
|
+
/* @__PURE__ */ c("span", { ref: y, className: $, children: d && /* @__PURE__ */ c("span", { className: "pl-2", children: d }) })
|
|
364
438
|
]
|
|
365
439
|
}
|
|
366
440
|
);
|
|
367
441
|
}
|
|
368
442
|
);
|
|
369
|
-
|
|
443
|
+
U.displayName = "ButtonIcon";
|
|
370
444
|
/*!
|
|
371
|
-
@versini/ui-button v4.1
|
|
445
|
+
@versini/ui-button v4.2.1
|
|
372
446
|
© 2025 gizmette.com
|
|
373
447
|
*/
|
|
374
448
|
try {
|
|
375
449
|
window.__VERSINI_UI_BUTTON__ || (window.__VERSINI_UI_BUTTON__ = {
|
|
376
|
-
version: "4.1
|
|
377
|
-
buildTime: "01/
|
|
450
|
+
version: "4.2.1",
|
|
451
|
+
buildTime: "01/26/2025 05:19 PM EST",
|
|
378
452
|
homepage: "https://github.com/aversini/ui-components",
|
|
379
453
|
license: "MIT"
|
|
380
454
|
});
|
|
381
455
|
} catch {
|
|
382
456
|
}
|
|
383
|
-
const
|
|
457
|
+
const ye = V.forwardRef(
|
|
384
458
|
({
|
|
385
459
|
children: e,
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
raw: d = !1,
|
|
393
|
-
noBorder: u = !1,
|
|
394
|
-
"aria-label": g,
|
|
395
|
-
label: f,
|
|
396
|
-
size: h = "medium",
|
|
397
|
-
labelRight: c,
|
|
398
|
-
labelLeft: b,
|
|
399
|
-
noBackground: m = !1,
|
|
400
|
-
align: v = "center",
|
|
401
|
-
active: k = !1,
|
|
402
|
-
radius: x = "large",
|
|
403
|
-
...w
|
|
404
|
-
}, B) => {
|
|
405
|
-
const _ = R({
|
|
406
|
-
type: y,
|
|
407
|
-
mode: t,
|
|
408
|
-
focusMode: r,
|
|
409
|
-
fullWidth: s,
|
|
410
|
-
disabled: a,
|
|
411
|
-
raw: d,
|
|
412
|
-
className: o,
|
|
413
|
-
noBorder: u,
|
|
414
|
-
size: h,
|
|
415
|
-
labelRight: c,
|
|
416
|
-
labelLeft: b,
|
|
417
|
-
noBackground: m,
|
|
418
|
-
align: v,
|
|
419
|
-
radius: x
|
|
420
|
-
}), N = i({
|
|
421
|
-
"text-copy-accent-dark": t === "light" && !d,
|
|
422
|
-
"text-copy-light": t === "dark" && !d,
|
|
423
|
-
"text-copy-accent-dark dark:text-copy-light": t === "alt-system" && !d,
|
|
424
|
-
"text-copy-light dark:text-copy-accent-dark": t === "system" && !d
|
|
425
|
-
}), I = k ? i(
|
|
460
|
+
mode: r = "system",
|
|
461
|
+
className: t,
|
|
462
|
+
active: a = !1,
|
|
463
|
+
...n
|
|
464
|
+
}, o) => {
|
|
465
|
+
const s = a ? i(
|
|
426
466
|
"relative",
|
|
427
467
|
"focus-within:static",
|
|
428
468
|
"focus-within:after:border-transparent",
|
|
@@ -433,59 +473,54 @@ const K = T.forwardRef(
|
|
|
433
473
|
"after:left-0",
|
|
434
474
|
"after:right-0",
|
|
435
475
|
{
|
|
436
|
-
"after:border-table-dark":
|
|
437
|
-
"after:border-table-light":
|
|
438
|
-
"after:border-table-dark dark:after:border-table-light":
|
|
439
|
-
"after:border-table-light dark:after:border-table-dark":
|
|
476
|
+
"after:border-table-dark": r === "dark",
|
|
477
|
+
"after:border-table-light": r === "light",
|
|
478
|
+
"after:border-table-dark dark:after:border-table-light": r === "system",
|
|
479
|
+
"after:border-table-light dark:after:border-table-dark": r === "alt-system"
|
|
440
480
|
}
|
|
441
481
|
) : "";
|
|
442
|
-
return /* @__PURE__ */
|
|
443
|
-
|
|
482
|
+
return /* @__PURE__ */ c("div", { className: s, children: /* @__PURE__ */ c(
|
|
483
|
+
U,
|
|
444
484
|
{
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
children: [
|
|
452
|
-
b && /* @__PURE__ */ l("span", { className: "pr-2", children: b }),
|
|
453
|
-
/* @__PURE__ */ l("div", { className: N, children: e }),
|
|
454
|
-
c && /* @__PURE__ */ l("span", { className: "pl-2", children: c })
|
|
455
|
-
]
|
|
485
|
+
className: i("justify-center", t),
|
|
486
|
+
ref: o,
|
|
487
|
+
mode: r,
|
|
488
|
+
radius: "small",
|
|
489
|
+
...n,
|
|
490
|
+
children: e
|
|
456
491
|
}
|
|
457
492
|
) });
|
|
458
493
|
}
|
|
459
494
|
);
|
|
460
|
-
|
|
461
|
-
const
|
|
495
|
+
ye.displayName = "ButtonSort";
|
|
496
|
+
const W = ({
|
|
462
497
|
children: e,
|
|
463
|
-
fill:
|
|
498
|
+
fill: r,
|
|
464
499
|
viewBox: t,
|
|
465
|
-
className:
|
|
466
|
-
defaultViewBox:
|
|
500
|
+
className: a,
|
|
501
|
+
defaultViewBox: n,
|
|
467
502
|
size: o,
|
|
468
|
-
title:
|
|
469
|
-
semantic:
|
|
470
|
-
...
|
|
503
|
+
title: s,
|
|
504
|
+
semantic: u = !1,
|
|
505
|
+
...g
|
|
471
506
|
}) => {
|
|
472
|
-
const
|
|
473
|
-
return /* @__PURE__ */
|
|
474
|
-
/* @__PURE__ */
|
|
507
|
+
const m = i(o, a);
|
|
508
|
+
return /* @__PURE__ */ B(ee, { children: [
|
|
509
|
+
/* @__PURE__ */ c(
|
|
475
510
|
"svg",
|
|
476
511
|
{
|
|
477
512
|
xmlns: "http://www.w3.org/2000/svg",
|
|
478
|
-
className:
|
|
479
|
-
viewBox: t ||
|
|
480
|
-
fill:
|
|
513
|
+
className: m,
|
|
514
|
+
viewBox: t || n,
|
|
515
|
+
fill: r || "currentColor",
|
|
481
516
|
role: "img",
|
|
482
|
-
"aria-hidden": !
|
|
517
|
+
"aria-hidden": !u,
|
|
483
518
|
focusable: !1,
|
|
484
|
-
...
|
|
519
|
+
...g,
|
|
485
520
|
children: e
|
|
486
521
|
}
|
|
487
522
|
),
|
|
488
|
-
|
|
523
|
+
s && u && /* @__PURE__ */ c("span", { className: "sr-only", children: s })
|
|
489
524
|
] });
|
|
490
525
|
};
|
|
491
526
|
/*!
|
|
@@ -501,48 +536,48 @@ try {
|
|
|
501
536
|
});
|
|
502
537
|
} catch {
|
|
503
538
|
}
|
|
504
|
-
const
|
|
539
|
+
const ke = ({
|
|
505
540
|
className: e,
|
|
506
|
-
viewBox:
|
|
541
|
+
viewBox: r,
|
|
507
542
|
title: t,
|
|
508
|
-
monotone:
|
|
509
|
-
...
|
|
510
|
-
}) => /* @__PURE__ */
|
|
511
|
-
|
|
543
|
+
monotone: a,
|
|
544
|
+
...n
|
|
545
|
+
}) => /* @__PURE__ */ B(
|
|
546
|
+
W,
|
|
512
547
|
{
|
|
513
548
|
defaultViewBox: "0 0 448 512",
|
|
514
549
|
size: "size-5",
|
|
515
|
-
viewBox:
|
|
550
|
+
viewBox: r,
|
|
516
551
|
className: e,
|
|
517
552
|
title: t || "Copied",
|
|
518
|
-
...
|
|
553
|
+
...n,
|
|
519
554
|
children: [
|
|
520
|
-
/* @__PURE__ */
|
|
555
|
+
/* @__PURE__ */ c(
|
|
521
556
|
"path",
|
|
522
557
|
{
|
|
523
558
|
d: "M0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64C28.7 32 0 60.7 0 96m104 160c0-6.1 2.3-12.3 7-17 9.4-9.4 24.6-9.4 33.9 0l47 47 111-111c4.7-4.7 10.8-7 17-7s12.3 2.3 17 7c2.3 2.3 4.1 5 5.3 7.9.6 1.5 1 2.9 1.3 4.4.2 1.1.3 2.2.3 2.2.1 1.2.1 1.2.1 2.5-.1 1.5-.1 1.9-.1 2.3-.1.7-.2 1.5-.3 2.2-.3 1.5-.7 3-1.3 4.4-1.2 2.9-2.9 5.6-5.3 7.9l-128 128c-4.7 4.7-10.8 7-17 7s-12.3-2.3-17-7l-64-64c-4.7-4.7-7-10.8-7-17z",
|
|
524
559
|
opacity: ".4"
|
|
525
560
|
}
|
|
526
561
|
),
|
|
527
|
-
/* @__PURE__ */
|
|
562
|
+
/* @__PURE__ */ c("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" })
|
|
528
563
|
]
|
|
529
564
|
}
|
|
530
|
-
),
|
|
565
|
+
), xe = ({
|
|
531
566
|
className: e,
|
|
532
|
-
viewBox:
|
|
567
|
+
viewBox: r,
|
|
533
568
|
title: t,
|
|
534
|
-
monotone:
|
|
535
|
-
...
|
|
536
|
-
}) => /* @__PURE__ */
|
|
537
|
-
|
|
569
|
+
monotone: a,
|
|
570
|
+
...n
|
|
571
|
+
}) => /* @__PURE__ */ c(
|
|
572
|
+
W,
|
|
538
573
|
{
|
|
539
574
|
defaultViewBox: "0 0 512 512",
|
|
540
575
|
size: "size-5",
|
|
541
|
-
viewBox:
|
|
576
|
+
viewBox: r,
|
|
542
577
|
className: e,
|
|
543
578
|
title: t || "Copy",
|
|
544
|
-
...
|
|
545
|
-
children: /* @__PURE__ */
|
|
579
|
+
...n,
|
|
580
|
+
children: /* @__PURE__ */ c("path", { d: "M64 464h224c8.8 0 16-7.2 16-16v-64h48v64c0 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 16v224c0 8.8 7.2 16 16 16m160-160h224c8.8 0 16-7.2 16-16V64c0-8.8-7.2-16-16-16H224c-8.8 0-16 7.2-16 16v224c0 8.8 7.2 16 16 16m-64-16V64c0-35.3 28.7-64 64-64h224c35.3 0 64 28.7 64 64v224c0 35.3-28.7 64-64 64H224c-35.3 0-64-28.7-64-64" })
|
|
546
581
|
}
|
|
547
582
|
);
|
|
548
583
|
/*!
|
|
@@ -558,99 +593,99 @@ try {
|
|
|
558
593
|
});
|
|
559
594
|
} catch {
|
|
560
595
|
}
|
|
561
|
-
const
|
|
596
|
+
const we = ({
|
|
562
597
|
kind: e,
|
|
563
|
-
noMaxWidth:
|
|
598
|
+
noMaxWidth: r
|
|
564
599
|
}) => i("p-4", {
|
|
565
|
-
"max-w-xs sm:max-w-md md:max-w-2xl": !
|
|
566
|
-
"lg:max-w-3xl": e === "left" && !
|
|
567
|
-
}),
|
|
600
|
+
"max-w-xs sm:max-w-md md:max-w-2xl": !r,
|
|
601
|
+
"lg:max-w-3xl": e === "left" && !r
|
|
602
|
+
}), _e = ({ kind: e }) => i({
|
|
568
603
|
"bg-surface-lighter dark:bg-surface-dark": e === "left",
|
|
569
604
|
"bg-surface-accent": e === "right"
|
|
570
|
-
}),
|
|
605
|
+
}), Be = ({ kind: e }) => i(
|
|
571
606
|
"prose prose-dark dark:prose-lighter prose-p:my-3 prose-blockquote:my-3 prose-ol:my-3 prose-ul:my-3 prose-ul:prose-li:marker:text-black",
|
|
572
607
|
{
|
|
573
608
|
"text-copy-lighter": e === "right"
|
|
574
609
|
}
|
|
575
|
-
),
|
|
610
|
+
), Ne = ({ kind: e }) => i("rounded-b-xl", {
|
|
576
611
|
"rounded-tr-xl": e === "left",
|
|
577
612
|
"rounded-tl-xl": e === "right"
|
|
578
|
-
}),
|
|
613
|
+
}), Ie = ({
|
|
579
614
|
kind: e,
|
|
580
|
-
className:
|
|
615
|
+
className: r,
|
|
581
616
|
noMaxWidth: t
|
|
582
617
|
}) => {
|
|
583
|
-
const
|
|
584
|
-
|
|
618
|
+
const a = i(
|
|
619
|
+
re,
|
|
585
620
|
"flex items-start",
|
|
586
621
|
{
|
|
587
622
|
"flex-row-reverse": e === "right"
|
|
588
623
|
},
|
|
589
|
-
|
|
590
|
-
),
|
|
624
|
+
r
|
|
625
|
+
), n = i(
|
|
591
626
|
"flex flex-col empty:hidden",
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
), o = "pr-2 pt-1 text-end text-xs text-copy-light",
|
|
627
|
+
we({ kind: e, noMaxWidth: t }),
|
|
628
|
+
Be({ kind: e }),
|
|
629
|
+
_e({ kind: e }),
|
|
630
|
+
Ne({ kind: e })
|
|
631
|
+
), o = "pr-2 pt-1 text-end text-xs text-copy-light", s = i("flex flex-col-reverse gap-2 sm:flex-row", {
|
|
597
632
|
"ml-2": e === "left",
|
|
598
633
|
"mr-2": e === "right"
|
|
599
634
|
});
|
|
600
635
|
return {
|
|
601
|
-
wrapper:
|
|
602
|
-
main:
|
|
636
|
+
wrapper: a,
|
|
637
|
+
main: n,
|
|
603
638
|
footer: o,
|
|
604
|
-
copyButton:
|
|
639
|
+
copyButton: s
|
|
605
640
|
};
|
|
606
|
-
},
|
|
641
|
+
}, ze = ({
|
|
607
642
|
children: e,
|
|
608
|
-
kind:
|
|
643
|
+
kind: r = "left",
|
|
609
644
|
className: t,
|
|
610
|
-
footer:
|
|
611
|
-
rawFooter:
|
|
645
|
+
footer: a,
|
|
646
|
+
rawFooter: n,
|
|
612
647
|
copyToClipboard: o,
|
|
613
|
-
copyToClipboardFocusMode:
|
|
614
|
-
copyToClipboardMode:
|
|
615
|
-
noMaxWidth:
|
|
648
|
+
copyToClipboardFocusMode: s = "system",
|
|
649
|
+
copyToClipboardMode: u = "system",
|
|
650
|
+
noMaxWidth: g = !1
|
|
616
651
|
}) => {
|
|
617
|
-
const [
|
|
618
|
-
|
|
652
|
+
const [m, p] = F(!1), l = Ie({ kind: r, className: t, noMaxWidth: g }), d = !!o && (typeof o == "function" || typeof o == "string" || typeof e == "string"), f = () => {
|
|
653
|
+
p(!0), typeof o == "function" ? o(e) : typeof o == "string" ? navigator.clipboard.writeText(o) : typeof e == "string" && navigator.clipboard.writeText(e);
|
|
619
654
|
};
|
|
620
|
-
return
|
|
621
|
-
let
|
|
622
|
-
return
|
|
623
|
-
|
|
655
|
+
return L(() => {
|
|
656
|
+
let h;
|
|
657
|
+
return m && (h = window.setTimeout(() => {
|
|
658
|
+
p(!1);
|
|
624
659
|
}, 3e3)), () => {
|
|
625
|
-
clearTimeout(
|
|
660
|
+
clearTimeout(h);
|
|
626
661
|
};
|
|
627
|
-
}, [
|
|
628
|
-
/* @__PURE__ */
|
|
629
|
-
/* @__PURE__ */
|
|
630
|
-
|
|
631
|
-
|
|
662
|
+
}, [m]), /* @__PURE__ */ B("div", { className: l.wrapper, children: [
|
|
663
|
+
/* @__PURE__ */ B("div", { children: [
|
|
664
|
+
/* @__PURE__ */ c("div", { className: l.main, children: e }),
|
|
665
|
+
a && Object.keys(a).map((h, N) => a[h] ? /* @__PURE__ */ c("div", { className: "prose-p:m-0", children: /* @__PURE__ */ B("p", { className: l.footer, children: [
|
|
666
|
+
h,
|
|
632
667
|
": ",
|
|
633
|
-
|
|
634
|
-
] }) }, `${
|
|
635
|
-
|
|
668
|
+
a[h]
|
|
669
|
+
] }) }, `${h}-${N}`) : null),
|
|
670
|
+
n && n
|
|
636
671
|
] }),
|
|
637
|
-
|
|
638
|
-
|
|
672
|
+
d && /* @__PURE__ */ c("div", { className: l.copyButton, children: /* @__PURE__ */ c(
|
|
673
|
+
U,
|
|
639
674
|
{
|
|
640
675
|
noBorder: !0,
|
|
641
676
|
noBackground: !0,
|
|
642
677
|
size: "small",
|
|
643
|
-
mode:
|
|
644
|
-
focusMode:
|
|
645
|
-
label:
|
|
646
|
-
onClick:
|
|
647
|
-
disabled:
|
|
648
|
-
children:
|
|
678
|
+
mode: u,
|
|
679
|
+
focusMode: s,
|
|
680
|
+
label: m ? "Copied to clipboard" : "Copy to clipboard",
|
|
681
|
+
onClick: f,
|
|
682
|
+
disabled: m,
|
|
683
|
+
children: m ? /* @__PURE__ */ c(ke, { size: "size-3" }) : /* @__PURE__ */ c(xe, { size: "size-3" })
|
|
649
684
|
}
|
|
650
685
|
) })
|
|
651
686
|
] });
|
|
652
687
|
};
|
|
653
688
|
export {
|
|
654
|
-
|
|
655
|
-
|
|
689
|
+
re as BUBBLE_CLASSNAME,
|
|
690
|
+
ze as Bubble
|
|
656
691
|
};
|
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}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.prose{color:var(--tw-prose-body);max-width:inherit}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;-webkit-padding-start:1.625em;padding-inline-start:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;-webkit-padding-start:1.625em;padding-inline-start:1.625em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;-webkit-padding-start:1em;padding-inline-start:1em;border-left-width:6px}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%),0 3px rgb(var(--tw-prose-kbd-shadows) / 10%);font-size:.875em;border-radius:.3125rem;padding-top:.1875em;-webkit-padding-end:.375em;padding-inline-end:.375em;padding-bottom:.1875em;-webkit-padding-start:.375em;padding-inline-start:.375em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875rem;line-height:1.25rem;margin-top:2rem;margin-bottom:2rem;border-radius:.375rem;padding-top:.8571429em;-webkit-padding-end:1.1428571em;padding-inline-end:1.1428571em;padding-bottom:.8571429em;-webkit-padding-start:1.1428571em;padding-inline-start:1.1428571em}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;-webkit-padding-end:.5714286em;padding-inline-end:.5714286em;padding-bottom:.5714286em;-webkit-padding-start:.5714286em;padding-inline-start:.5714286em}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose{--tw-prose-body: #374151;--tw-prose-headings: #111827;--tw-prose-lead: #4b5563;--tw-prose-links: #111827;--tw-prose-bold: #111827;--tw-prose-counters: #6b7280;--tw-prose-bullets: #d1d5db;--tw-prose-hr: #e5e7eb;--tw-prose-quotes: #111827;--tw-prose-quote-borders: #e5e7eb;--tw-prose-captions: #6b7280;--tw-prose-kbd: #111827;--tw-prose-kbd-shadows: 17 24 39;--tw-prose-code: #111827;--tw-prose-pre-code: #e5e7eb;--tw-prose-pre-bg: #1f2937;--tw-prose-th-borders: #d1d5db;--tw-prose-td-borders: #e5e7eb;--tw-prose-invert-body: #d1d5db;--tw-prose-invert-headings: #fff;--tw-prose-invert-lead: #9ca3af;--tw-prose-invert-links: #fff;--tw-prose-invert-bold: #fff;--tw-prose-invert-counters: #9ca3af;--tw-prose-invert-bullets: #4b5563;--tw-prose-invert-hr: #374151;--tw-prose-invert-quotes: #f3f4f6;--tw-prose-invert-quote-borders: #374151;--tw-prose-invert-captions: #9ca3af;--tw-prose-invert-kbd: #fff;--tw-prose-invert-kbd-shadows: 255 255 255;--tw-prose-invert-code: #fff;--tw-prose-invert-pre-code: #d1d5db;--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);--tw-prose-invert-th-borders: #4b5563;--tw-prose-invert-td-borders: #374151;font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em;font-size:1rem}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-start:.375em;padding-inline-start:.375em}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-start:.375em;padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;-webkit-padding-start:1.625em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-start:0;padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-end:0;padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.5714286em;-webkit-padding-end:.5714286em;padding-inline-end:.5714286em;padding-bottom:.5714286em;-webkit-padding-start:.5714286em;padding-inline-start:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-start:0;padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-end:0;padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.prose :where(h1,h2,h3,h4,h5,h6):not(:where([class~=not-prose],[class~=not-prose] *)){font-family:Open Sans,ui-sans-serif,system-ui,sans-serif;font-weight:400}.prose :where(.av-header h1,.av-header h2,.av-header h3,.av-header h4,.av-header h5,.av-header h6):not(:where([class~=not-prose],[class~=not-prose] *)){margin:0}.prose :where(.av-header p):not(:where([class~=not-prose],[class~=not-prose] *)){margin:0}.prose :where(blockquote p):not(:where([class~=not-prose],[class~=not-prose] *)){font-family:Georgia,Cambria,Times New Roman,Times,serif}.prose-dark{--tw-prose-body: #1e293b;--tw-prose-headings: #0f172a;--tw-prose-lead: #334155;--tw-prose-links: #0f172a;--tw-prose-bold: #0f172a;--tw-prose-counters: #475569;--tw-prose-bullets: #94a3b8;--tw-prose-hr: #cbd5e1;--tw-prose-quotes: #0f172a;--tw-prose-quote-borders: #cbd5e1;--tw-prose-captions: #334155;--tw-prose-code: #0f172a;--tw-prose-pre-code: #ffffff;--tw-prose-pre-bg: #0f172a;--tw-prose-kbd: #1e293b}.prose-dark :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:#0f172a}@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}.ml-2{margin-left:.5rem}.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-6{width:1.5rem}.w-8{width:2rem}.w-full{width:100%}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-\[95qcw\]{max-width:95qcw}.max-w-xs{max-width:20rem}.grow{flex-grow:1}.basis-11\/12{flex-basis:91.666667%}.basis-4{flex-basis:1rem}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.gap-2{gap:.5rem}.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}.rounded-b-xl{border-bottom-right-radius:.75rem;border-bottom-left-radius:.75rem}.rounded-tl-xl{border-top-left-radius:.75rem}.rounded-tr-xl{border-top-right-radius:.75rem}.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)))}.bg-surface-accent{--tw-bg-opacity: 1;background-color:var(--av-surface-accent, rgb(0 113 235 / var(--tw-bg-opacity, 1)))}.bg-surface-dark{--tw-bg-opacity: 1;background-color:var(--av-surface-dark, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.bg-surface-lighter{--tw-bg-opacity: 1;background-color:var(--av-surface-lighter, rgb(226 232 240 / var(--tw-bg-opacity, 1)))}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-4{padding:1rem}.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}.pt-1{padding-top:.25rem}.text-center{text-align:center}.text-start{text-align:start}.text-end{text-align:end}.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}.text-xs{font-size:.75rem;line-height:1rem}.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)))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / 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)}@media (prefers-color-scheme: dark){.dark\:prose-lighter{--tw-prose-body: #ffffff;--tw-prose-headings: #e2e8f0;--tw-prose-lead: #ffffff;--tw-prose-links: #ffffff;--tw-prose-bold: #ffffff;--tw-prose-counters: #e2e8f0;--tw-prose-bullets: #e2e8f0;--tw-prose-hr: #e2e8f0;--tw-prose-quotes: #ffffff;--tw-prose-quote-borders: #ffffff;--tw-prose-captions: #ffffff;--tw-prose-code: #ffffff;--tw-prose-pre-code: #ffffff;--tw-prose-pre-bg: #0f172a;--tw-prose-kbd: #ffffff}.dark\:prose-lighter :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:#fff}}.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)}.empty\:hidden:empty{display:none}.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}.prose-p\:m-0 :is(:where(p):not(:where([class~=not-prose],[class~=not-prose] *))){margin:0}.prose-p\:my-3 :is(:where(p):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.75rem;margin-bottom:.75rem}.prose-blockquote\:my-3 :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.75rem;margin-bottom:.75rem}.prose-ol\:my-3 :is(:where(ol):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.75rem;margin-bottom:.75rem}.prose-ul\:my-3 :is(:where(ul):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.75rem;margin-bottom:.75rem}.prose-ul\:prose-li\:marker\:text-black * :is(:where(li):not(:where([class~=not-prose],[class~=not-prose] *))) :is(:where(ul):not(:where([class~=not-prose],[class~=not-prose] *)))::marker{color:#000}.prose-ul\:prose-li\:marker\:text-black :is(:where(li):not(:where([class~=not-prose],[class~=not-prose] *))) :is(:where(ul):not(:where([class~=not-prose],[class~=not-prose] *)))::marker{color:#000}@media (min-width: 640px){.sm\:size-6{width:1.5rem;height:1.5rem}.sm\:max-w-md{max-width:28rem}.sm\:flex-row{flex-direction:row}}@media (min-width: 768px){.md\:size-px{width:1px;height:1px}.md\:max-w-2xl{max-width:42rem}}@media (min-width: 1024px){.lg\:max-w-3xl{max-width:48rem}}@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\:bg-surface-dark{--tw-bg-opacity: 1;background-color:var(--av-surface-dark, rgb(51 65 85 / 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}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.prose{color:var(--tw-prose-body);max-width:inherit}.prose :where(p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where([class~=lead]):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-lead);font-size:1.25em;line-height:1.6;margin-top:1.2em;margin-bottom:1.2em}.prose :where(a):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-links);text-decoration:underline;font-weight:500}.prose :where(strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-bold);font-weight:600}.prose :where(a strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th strong):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(ol):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal;margin-top:1.25em;margin-bottom:1.25em;-webkit-padding-start:1.625em;padding-inline-start:1.625em}.prose :where(ol[type=A]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=A s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-alpha}.prose :where(ol[type=a s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-alpha}.prose :where(ol[type=I]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type=I s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:upper-roman}.prose :where(ol[type=i s]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:lower-roman}.prose :where(ol[type="1"]):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:decimal}.prose :where(ul):not(:where([class~=not-prose],[class~=not-prose] *)){list-style-type:disc;margin-top:1.25em;margin-bottom:1.25em;-webkit-padding-start:1.625em;padding-inline-start:1.625em}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{font-weight:400;color:var(--tw-prose-counters)}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *))::marker{color:var(--tw-prose-bullets)}.prose :where(dt):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.25em}.prose :where(hr):not(:where([class~=not-prose],[class~=not-prose] *)){border-color:var(--tw-prose-hr);border-top-width:1px;margin-top:3em;margin-bottom:3em}.prose :where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-style:italic;color:var(--tw-prose-quotes);border-inline-start-width:.25rem;border-inline-start-color:var(--tw-prose-quote-borders);quotes:"“""”""‘""’";margin-top:1.6em;margin-bottom:1.6em;-webkit-padding-start:1em;padding-inline-start:1em;border-left-width:6px}.prose :where(blockquote p:first-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:open-quote}.prose :where(blockquote p:last-of-type):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:close-quote}.prose :where(h1):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:800;font-size:2.25em;margin-top:0;margin-bottom:.8888889em;line-height:1.1111111}.prose :where(h1 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:900;color:inherit}.prose :where(h2):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:700;font-size:1.5em;margin-top:2em;margin-bottom:1em;line-height:1.3333333}.prose :where(h2 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:800;color:inherit}.prose :where(h3):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;font-size:1.25em;margin-top:1.6em;margin-bottom:.6em;line-height:1.6}.prose :where(h3 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(h4):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;margin-top:1.5em;margin-bottom:.5em;line-height:1.5}.prose :where(h4 strong):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:700;color:inherit}.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(picture):not(:where([class~=not-prose],[class~=not-prose] *)){display:block;margin-top:2em;margin-bottom:2em}.prose :where(video):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(kbd):not(:where([class~=not-prose],[class~=not-prose] *)){font-weight:500;font-family:inherit;color:var(--tw-prose-kbd);box-shadow:0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%),0 3px rgb(var(--tw-prose-kbd-shadows) / 10%);font-size:.875em;border-radius:.3125rem;padding-top:.1875em;-webkit-padding-end:.375em;padding-inline-end:.375em;padding-bottom:.1875em;-webkit-padding-start:.375em;padding-inline-start:.375em}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-code);font-weight:600;font-size:.875em;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:"`"}.prose :where(code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:"`"}.prose :where(a code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h1 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(h2 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.875em}.prose :where(h3 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit;font-size:.9em}.prose :where(h4 code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(blockquote code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(thead th code):not(:where([class~=not-prose],[class~=not-prose] *)){color:inherit}.prose :where(pre):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-pre-code);background-color:var(--tw-prose-pre-bg);overflow-x:auto;font-weight:400;font-size:.875rem;line-height:1.25rem;margin-top:2rem;margin-bottom:2rem;border-radius:.375rem;padding-top:.8571429em;-webkit-padding-end:1.1428571em;padding-inline-end:1.1428571em;padding-bottom:.8571429em;-webkit-padding-start:1.1428571em;padding-inline-start:1.1428571em}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)){background-color:transparent;border-width:0;border-radius:0;padding:0;font-weight:inherit;color:inherit;font-size:inherit;font-family:inherit;line-height:inherit}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):before{content:none}.prose :where(pre code):not(:where([class~=not-prose],[class~=not-prose] *)):after{content:none}.prose :where(table):not(:where([class~=not-prose],[class~=not-prose] *)){width:100%;table-layout:auto;margin-top:2em;margin-bottom:2em;font-size:.875em;line-height:1.7142857}.prose :where(thead):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-th-borders)}.prose :where(thead th):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-headings);font-weight:600;vertical-align:bottom;-webkit-padding-end:.5714286em;padding-inline-end:.5714286em;padding-bottom:.5714286em;-webkit-padding-start:.5714286em;padding-inline-start:.5714286em}.prose :where(tbody tr):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:1px;border-bottom-color:var(--tw-prose-td-borders)}.prose :where(tbody tr:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){border-bottom-width:0}.prose :where(tbody td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:baseline}.prose :where(tfoot):not(:where([class~=not-prose],[class~=not-prose] *)){border-top-width:1px;border-top-color:var(--tw-prose-th-borders)}.prose :where(tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){vertical-align:top}.prose :where(th,td):not(:where([class~=not-prose],[class~=not-prose] *)){text-align:start}.prose :where(figure>*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(figcaption):not(:where([class~=not-prose],[class~=not-prose] *)){color:var(--tw-prose-captions);font-size:.875em;line-height:1.4285714;margin-top:.8571429em}.prose{--tw-prose-body: #374151;--tw-prose-headings: #111827;--tw-prose-lead: #4b5563;--tw-prose-links: #111827;--tw-prose-bold: #111827;--tw-prose-counters: #6b7280;--tw-prose-bullets: #d1d5db;--tw-prose-hr: #e5e7eb;--tw-prose-quotes: #111827;--tw-prose-quote-borders: #e5e7eb;--tw-prose-captions: #6b7280;--tw-prose-kbd: #111827;--tw-prose-kbd-shadows: 17 24 39;--tw-prose-code: #111827;--tw-prose-pre-code: #e5e7eb;--tw-prose-pre-bg: #1f2937;--tw-prose-th-borders: #d1d5db;--tw-prose-td-borders: #e5e7eb;--tw-prose-invert-body: #d1d5db;--tw-prose-invert-headings: #fff;--tw-prose-invert-lead: #9ca3af;--tw-prose-invert-links: #fff;--tw-prose-invert-bold: #fff;--tw-prose-invert-counters: #9ca3af;--tw-prose-invert-bullets: #4b5563;--tw-prose-invert-hr: #374151;--tw-prose-invert-quotes: #f3f4f6;--tw-prose-invert-quote-borders: #374151;--tw-prose-invert-captions: #9ca3af;--tw-prose-invert-kbd: #fff;--tw-prose-invert-kbd-shadows: 255 255 255;--tw-prose-invert-code: #fff;--tw-prose-invert-pre-code: #d1d5db;--tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);--tw-prose-invert-th-borders: #4b5563;--tw-prose-invert-td-borders: #374151;font-size:1rem;line-height:1.75}.prose :where(picture>img):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0;margin-bottom:0}.prose :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;margin-bottom:.5em;font-size:1rem}.prose :where(ol>li):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-start:.375em;padding-inline-start:.375em}.prose :where(ul>li):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-start:.375em;padding-inline-start:.375em}.prose :where(.prose>ul>li p):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(.prose>ul>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ul>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(.prose>ol>li>p:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em}.prose :where(.prose>ol>li>p:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:1.25em}.prose :where(ul ul,ul ol,ol ul,ol ol):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.75em;margin-bottom:.75em}.prose :where(dl):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:1.25em;margin-bottom:1.25em}.prose :where(dd):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:.5em;-webkit-padding-start:1.625em;padding-inline-start:1.625em}.prose :where(hr+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h2+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h3+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(h4+*):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(thead th:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-start:0;padding-inline-start:0}.prose :where(thead th:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-end:0;padding-inline-end:0}.prose :where(tbody td,tfoot td):not(:where([class~=not-prose],[class~=not-prose] *)){padding-top:.5714286em;-webkit-padding-end:.5714286em;padding-inline-end:.5714286em;padding-bottom:.5714286em;-webkit-padding-start:.5714286em;padding-inline-start:.5714286em}.prose :where(tbody td:first-child,tfoot td:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-start:0;padding-inline-start:0}.prose :where(tbody td:last-child,tfoot td:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){-webkit-padding-end:0;padding-inline-end:0}.prose :where(figure):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:2em;margin-bottom:2em}.prose :where(.prose>:first-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-top:0}.prose :where(.prose>:last-child):not(:where([class~=not-prose],[class~=not-prose] *)){margin-bottom:0}.prose :where(h1,h2,h3,h4,h5,h6):not(:where([class~=not-prose],[class~=not-prose] *)){font-family:Open Sans,ui-sans-serif,system-ui,sans-serif;font-weight:400}.prose :where(.av-header h1,.av-header h2,.av-header h3,.av-header h4,.av-header h5,.av-header h6):not(:where([class~=not-prose],[class~=not-prose] *)){margin:0}.prose :where(.av-header p):not(:where([class~=not-prose],[class~=not-prose] *)){margin:0}.prose :where(blockquote p):not(:where([class~=not-prose],[class~=not-prose] *)){font-family:Georgia,Cambria,Times New Roman,Times,serif}.prose-dark{--tw-prose-body: #1e293b;--tw-prose-headings: #0f172a;--tw-prose-lead: #334155;--tw-prose-links: #0f172a;--tw-prose-bold: #0f172a;--tw-prose-counters: #475569;--tw-prose-bullets: #94a3b8;--tw-prose-hr: #cbd5e1;--tw-prose-quotes: #0f172a;--tw-prose-quote-borders: #cbd5e1;--tw-prose-captions: #334155;--tw-prose-code: #0f172a;--tw-prose-pre-code: #ffffff;--tw-prose-pre-bg: #0f172a;--tw-prose-kbd: #1e293b}.prose-dark :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:#0f172a}@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}.ml-2{margin-left:.5rem}.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-6{width:1.5rem}.w-8{width:2rem}.w-full{width:100%}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-\[95qcw\]{max-width:95qcw}.max-w-xs{max-width:20rem}.grow{flex-grow:1}.basis-11\/12{flex-basis:91.666667%}.basis-4{flex-basis:1rem}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.gap-2{gap:.5rem}.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}.rounded-b-xl{border-bottom-right-radius:.75rem;border-bottom-left-radius:.75rem}.rounded-tl-xl{border-top-left-radius:.75rem}.rounded-tr-xl{border-top-right-radius:.75rem}.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)))}.bg-surface-accent{--tw-bg-opacity: 1;background-color:var(--av-surface-accent, rgb(0 113 235 / var(--tw-bg-opacity, 1)))}.bg-surface-dark{--tw-bg-opacity: 1;background-color:var(--av-surface-dark, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.bg-surface-lighter{--tw-bg-opacity: 1;background-color:var(--av-surface-lighter, rgb(226 232 240 / var(--tw-bg-opacity, 1)))}.p-4{padding:1rem}.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}.pt-1{padding-top:.25rem}.text-center{text-align:center}.text-start{text-align:start}.text-end{text-align:end}.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}.text-xs{font-size:.75rem;line-height:1rem}.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)))}.text-red-500{--tw-text-opacity: 1;color:rgb(239 68 68 / 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)}@media (prefers-color-scheme: dark){.dark\:prose-lighter{--tw-prose-body: #ffffff;--tw-prose-headings: #e2e8f0;--tw-prose-lead: #ffffff;--tw-prose-links: #ffffff;--tw-prose-bold: #ffffff;--tw-prose-counters: #e2e8f0;--tw-prose-bullets: #e2e8f0;--tw-prose-hr: #e2e8f0;--tw-prose-quotes: #ffffff;--tw-prose-quote-borders: #ffffff;--tw-prose-captions: #ffffff;--tw-prose-code: #ffffff;--tw-prose-pre-code: #ffffff;--tw-prose-pre-bg: #0f172a;--tw-prose-kbd: #ffffff}.dark\:prose-lighter :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:#fff}}.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)}.empty\:hidden:empty{display:none}.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}.prose-p\:m-0 :is(:where(p):not(:where([class~=not-prose],[class~=not-prose] *))){margin:0}.prose-p\:my-3 :is(:where(p):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.75rem;margin-bottom:.75rem}.prose-blockquote\:my-3 :is(:where(blockquote):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.75rem;margin-bottom:.75rem}.prose-ol\:my-3 :is(:where(ol):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.75rem;margin-bottom:.75rem}.prose-ul\:my-3 :is(:where(ul):not(:where([class~=not-prose],[class~=not-prose] *))){margin-top:.75rem;margin-bottom:.75rem}.prose-ul\:prose-li\:marker\:text-black * :is(:where(li):not(:where([class~=not-prose],[class~=not-prose] *))) :is(:where(ul):not(:where([class~=not-prose],[class~=not-prose] *)))::marker{color:#000}.prose-ul\:prose-li\:marker\:text-black :is(:where(li):not(:where([class~=not-prose],[class~=not-prose] *))) :is(:where(ul):not(:where([class~=not-prose],[class~=not-prose] *)))::marker{color:#000}@media (min-width: 640px){.sm\:size-6{width:1.5rem;height:1.5rem}.sm\:max-w-md{max-width:28rem}.sm\:flex-row{flex-direction:row}}@media (min-width: 768px){.md\:size-px{width:1px;height:1px}.md\:max-w-2xl{max-width:42rem}}@media (min-width: 1024px){.lg\:max-w-3xl{max-width:48rem}}@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\:bg-surface-dark{--tw-bg-opacity: 1;background-color:var(--av-surface-dark, rgb(51 65 85 / 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-bubble",
|
|
3
|
-
"version": "3.1
|
|
3
|
+
"version": "3.2.1",
|
|
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,11 +39,11 @@
|
|
|
38
39
|
"react-dom": "^18.3.1 || ^19.0.0"
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"@versini/ui-types": "4.
|
|
42
|
+
"@versini/ui-types": "4.5.0"
|
|
42
43
|
},
|
|
43
44
|
"dependencies": {
|
|
44
45
|
"@tailwindcss/typography": "0.5.16",
|
|
45
|
-
"@versini/ui-button": "4.1
|
|
46
|
+
"@versini/ui-button": "4.2.1",
|
|
46
47
|
"@versini/ui-icons": "4.6.0",
|
|
47
48
|
"clsx": "2.1.1",
|
|
48
49
|
"tailwindcss": "3.4.17"
|
|
@@ -50,5 +51,5 @@
|
|
|
50
51
|
"sideEffects": [
|
|
51
52
|
"**/*.css"
|
|
52
53
|
],
|
|
53
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "2afa12a4fcc5da2231f908342e8e18524126274b"
|
|
54
55
|
}
|