@versini/ui-panel 1.3.17 → 1.3.19
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 +245 -236
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,48 +1,55 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import * as
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import { useFloating as oe, useClick as
|
|
1
|
+
import { jsx as l, jsxs as R, Fragment as W } from "react/jsx-runtime";
|
|
2
|
+
import * as g from "react";
|
|
3
|
+
import A, { useRef as w, useLayoutEffect as F, useMemo as X, useState as ne, useEffect as V, useCallback as ie, useId as q } from "react";
|
|
4
|
+
import o from "clsx";
|
|
5
|
+
import { useFloating as oe, useClick as ce, useDismiss as le, useRole as se, useInteractions as de, useMergeRefs as ue, FloatingPortal as me, FloatingOverlay as ge, FloatingFocusManager as he } from "@floating-ui/react";
|
|
6
6
|
/*!
|
|
7
|
-
@versini/ui-panel v1.3.
|
|
7
|
+
@versini/ui-panel v1.3.19
|
|
8
8
|
© 2025 gizmette.com
|
|
9
9
|
*/
|
|
10
10
|
try {
|
|
11
11
|
window.__VERSINI_UI_PANEL__ || (window.__VERSINI_UI_PANEL__ = {
|
|
12
|
-
version: "1.3.
|
|
13
|
-
buildTime: "01/
|
|
12
|
+
version: "1.3.19",
|
|
13
|
+
buildTime: "01/26/2025 07:26 PM EST",
|
|
14
14
|
homepage: "https://github.com/aversini/ui-components",
|
|
15
15
|
license: "MIT"
|
|
16
16
|
});
|
|
17
17
|
} catch {
|
|
18
18
|
}
|
|
19
|
-
const j = "av-messagebox", D = "av-panel", G = "av-button",
|
|
19
|
+
const j = "av-messagebox", D = "av-panel", G = "av-button", B = "icon", Y = "button", P = "link", be = ({
|
|
20
20
|
type: e,
|
|
21
21
|
size: t,
|
|
22
22
|
labelRight: r,
|
|
23
23
|
labelLeft: a,
|
|
24
|
-
align:
|
|
24
|
+
align: i,
|
|
25
|
+
animated: n
|
|
25
26
|
}) => {
|
|
26
|
-
const
|
|
27
|
+
const c = "max-h-8 py-0 px-2", s = "max-h-9 h-8 px-3", d = "max-h-12 py-2 px-4";
|
|
27
28
|
switch (e) {
|
|
28
29
|
case Y:
|
|
29
|
-
case
|
|
30
|
-
return
|
|
31
|
-
[
|
|
30
|
+
case P:
|
|
31
|
+
return o({
|
|
32
|
+
[c]: t === "small",
|
|
32
33
|
[s]: t === "medium",
|
|
33
|
-
[
|
|
34
|
+
[d]: t === "large"
|
|
34
35
|
});
|
|
35
|
-
case
|
|
36
|
-
return
|
|
37
|
-
"justify-center":
|
|
38
|
-
"justify-start":
|
|
39
|
-
"justify-end":
|
|
40
|
-
"h-6
|
|
41
|
-
"h-6": t === "small" && (r || a),
|
|
42
|
-
"h-8
|
|
43
|
-
"h-8": t === "medium" && (r || a),
|
|
44
|
-
"h-12
|
|
45
|
-
"h-12": t === "large" && (r || a)
|
|
36
|
+
case B:
|
|
37
|
+
return o("inline-flex items-center", {
|
|
38
|
+
"justify-center": i === "center",
|
|
39
|
+
"justify-start": i === "left",
|
|
40
|
+
"justify-end": i === "right",
|
|
41
|
+
"h-6 w-6 p-0": t === "small" && !n && !(r || a),
|
|
42
|
+
"h-6 px-2": t === "small" && !n && (r || a),
|
|
43
|
+
"h-8 w-8 p-1": t === "medium" && !n && !(r || a),
|
|
44
|
+
"h-8 px-3": t === "medium" && !n && (r || a),
|
|
45
|
+
"h-12 w-12 p-2": t === "large" && !n && !(r || a),
|
|
46
|
+
"h-12 px-4": t === "large" && !n && (r || a),
|
|
47
|
+
"h-6 py-0": t === "small" && n && !(r || a),
|
|
48
|
+
"h-6": t === "small" && n && (r || a),
|
|
49
|
+
"h-8 py-1": t === "medium" && n && !(r || a),
|
|
50
|
+
"h-8": t === "medium" && n && (r || a),
|
|
51
|
+
"h-12 py-2": t === "large" && n && !(r || a),
|
|
52
|
+
"h-12": t === "large" && n && (r || a)
|
|
46
53
|
});
|
|
47
54
|
}
|
|
48
55
|
}, fe = ({
|
|
@@ -51,21 +58,21 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
51
58
|
labelRight: r,
|
|
52
59
|
labelLeft: a
|
|
53
60
|
}) => {
|
|
54
|
-
const
|
|
61
|
+
const i = "text-sm font-medium", n = "text-base font-medium", c = "text-lg font-medium";
|
|
55
62
|
switch (e) {
|
|
56
63
|
case Y:
|
|
57
|
-
case
|
|
58
|
-
return
|
|
59
|
-
"text-center": e ===
|
|
60
|
-
[
|
|
61
|
-
[
|
|
62
|
-
[
|
|
64
|
+
case P:
|
|
65
|
+
return o({
|
|
66
|
+
"text-center": e === P,
|
|
67
|
+
[i]: t === "small",
|
|
68
|
+
[n]: t === "medium",
|
|
69
|
+
[c]: t === "large"
|
|
63
70
|
});
|
|
64
|
-
case
|
|
65
|
-
return
|
|
66
|
-
[
|
|
67
|
-
[
|
|
68
|
-
[
|
|
71
|
+
case B:
|
|
72
|
+
return o({
|
|
73
|
+
[i]: t === "small" && (r || a),
|
|
74
|
+
[n]: t === "medium" && (r || a),
|
|
75
|
+
[c]: t === "large" && (r || a)
|
|
69
76
|
});
|
|
70
77
|
}
|
|
71
78
|
}, ve = ({
|
|
@@ -77,7 +84,7 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
77
84
|
if (t)
|
|
78
85
|
return "not-prose";
|
|
79
86
|
if (a === "primary")
|
|
80
|
-
return
|
|
87
|
+
return o("not-prose", {
|
|
81
88
|
truncate: !r,
|
|
82
89
|
"text-copy-light": e === "dark" || e === "system",
|
|
83
90
|
"text-copy-lighter": e === "light" || e === "alt-system",
|
|
@@ -85,7 +92,7 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
85
92
|
"dark:text-copy-light": e === "alt-system"
|
|
86
93
|
});
|
|
87
94
|
if (a === "secondary")
|
|
88
|
-
return
|
|
95
|
+
return o("not-prose", {
|
|
89
96
|
truncate: !r,
|
|
90
97
|
"text-copy-light": e === "light" || e === "system",
|
|
91
98
|
"text-copy-lighter": e === "dark" || e === "alt-system",
|
|
@@ -93,7 +100,7 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
93
100
|
"dark:text-copy-light": e === "system"
|
|
94
101
|
});
|
|
95
102
|
if (a === "danger")
|
|
96
|
-
return
|
|
103
|
+
return o("not-prose", {
|
|
97
104
|
truncate: !r,
|
|
98
105
|
"text-copy-light": e === "dark" || e === "system",
|
|
99
106
|
"text-copy-lighter": e === "light" || e === "alt-system",
|
|
@@ -101,31 +108,31 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
101
108
|
"dark:text-copy-light": e === "alt-system"
|
|
102
109
|
});
|
|
103
110
|
if (a === "selected")
|
|
104
|
-
return
|
|
111
|
+
return o("not-prose text-copy-lighter", {
|
|
105
112
|
truncate: !r
|
|
106
113
|
});
|
|
107
|
-
},
|
|
114
|
+
}, pe = ({
|
|
108
115
|
mode: e,
|
|
109
116
|
noBackground: t,
|
|
110
117
|
variant: r
|
|
111
118
|
}) => {
|
|
112
119
|
if (!t) {
|
|
113
120
|
if (r === "primary")
|
|
114
|
-
return
|
|
121
|
+
return o({
|
|
115
122
|
"bg-action-dark": e === "dark",
|
|
116
123
|
"bg-action-light": e === "light",
|
|
117
124
|
"bg-action-dark dark:bg-action-light": e === "system",
|
|
118
125
|
"bg-action-light dark:bg-action-dark": e === "alt-system"
|
|
119
126
|
});
|
|
120
127
|
if (r === "secondary")
|
|
121
|
-
return
|
|
128
|
+
return o({
|
|
122
129
|
"bg-action-dark": e === "light",
|
|
123
130
|
"bg-action-light": e === "dark",
|
|
124
131
|
"bg-action-dark dark:bg-action-light": e === "alt-system",
|
|
125
132
|
"bg-action-light dark:bg-action-dark": e === "system"
|
|
126
133
|
});
|
|
127
134
|
if (r === "danger")
|
|
128
|
-
return
|
|
135
|
+
return o({
|
|
129
136
|
"bg-action-danger-dark": e === "dark",
|
|
130
137
|
"bg-action-danger-light": e === "light",
|
|
131
138
|
"bg-action-danger-dark dark:bg-action-danger-light": e === "system",
|
|
@@ -134,9 +141,9 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
134
141
|
if (r === "selected")
|
|
135
142
|
return "bg-action-selected-dark";
|
|
136
143
|
}
|
|
137
|
-
},
|
|
144
|
+
}, ye = ({
|
|
138
145
|
radius: e
|
|
139
|
-
}) =>
|
|
146
|
+
}) => o({
|
|
140
147
|
"rounded-full": e === "large",
|
|
141
148
|
"rounded-md": e === "medium",
|
|
142
149
|
"rounded-sm": e === "small"
|
|
@@ -148,21 +155,21 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
148
155
|
if (t)
|
|
149
156
|
return "";
|
|
150
157
|
if (r === "primary")
|
|
151
|
-
return
|
|
158
|
+
return o("hover:text-copy-light-hover", {
|
|
152
159
|
"hover:bg-action-dark-hover": e === "dark",
|
|
153
160
|
"hover:bg-action-light-hover": e === "light",
|
|
154
161
|
"hover:bg-action-dark-hover dark:hover:bg-action-light-hover": e === "system",
|
|
155
162
|
"hover:bg-action-light-hover dark:hover:bg-action-dark-hover": e === "alt-system"
|
|
156
163
|
});
|
|
157
164
|
if (r === "secondary")
|
|
158
|
-
return
|
|
165
|
+
return o("hover:text-copy-light-hover", {
|
|
159
166
|
"hover:bg-action-dark-hover": e === "light",
|
|
160
167
|
"hover:bg-action-light-hover": e === "dark",
|
|
161
168
|
"hover:bg-action-dark-hover dark:hover:bg-action-light-hover": e === "alt-system",
|
|
162
169
|
"hover:bg-action-light-hover dark:hover:bg-action-dark-hover": e === "system"
|
|
163
170
|
});
|
|
164
171
|
if (r === "danger")
|
|
165
|
-
return
|
|
172
|
+
return o("hover:text-copy-light-hover", {
|
|
166
173
|
"hover:bg-action-danger-dark-hover": e === "dark",
|
|
167
174
|
"hover:bg-action-danger-light-hover": e === "light",
|
|
168
175
|
"hover:bg-action-danger-dark-hover dark:hover:bg-action-danger-light-hover": e === "system",
|
|
@@ -170,7 +177,7 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
170
177
|
});
|
|
171
178
|
if (r === "selected")
|
|
172
179
|
return "hover:text-copy-light-hover hover:bg-action-selected-dark-hover";
|
|
173
|
-
},
|
|
180
|
+
}, xe = ({
|
|
174
181
|
mode: e,
|
|
175
182
|
disabled: t,
|
|
176
183
|
variant: r
|
|
@@ -178,21 +185,21 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
178
185
|
if (t)
|
|
179
186
|
return "";
|
|
180
187
|
if (r === "primary")
|
|
181
|
-
return
|
|
188
|
+
return o("active:text-copy-light-active", {
|
|
182
189
|
"active:bg-action-dark-active": e === "dark",
|
|
183
190
|
"active:bg-action-light-active": e === "light",
|
|
184
191
|
"active:bg-action-dark-active dark:active:bg-action-light-active": e === "system",
|
|
185
192
|
"active:bg-action-light-active dark:active:bg-action-dark-active": e === "alt-system"
|
|
186
193
|
});
|
|
187
194
|
if (r === "secondary")
|
|
188
|
-
return
|
|
195
|
+
return o("active:text-copy-light-active", {
|
|
189
196
|
"active:bg-action-dark-active": e === "light",
|
|
190
197
|
"active:bg-action-light-active": e === "dark",
|
|
191
198
|
"active:bg-action-dark-active dark:active:bg-action-light-active": e === "alt-system",
|
|
192
199
|
"active:bg-action-light-active dark:active:bg-action-dark-active": e === "system"
|
|
193
200
|
});
|
|
194
201
|
if (r === "danger")
|
|
195
|
-
return
|
|
202
|
+
return o("active:text-copy-lighter-active", {
|
|
196
203
|
"active:bg-action-danger-dark-active": e === "dark",
|
|
197
204
|
"active:bg-action-danger-light-active": e === "light",
|
|
198
205
|
"active:bg-action-danger-dark-active dark:active:bg-action-danger-light-active": e === "system",
|
|
@@ -200,7 +207,7 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
200
207
|
});
|
|
201
208
|
if (r === "selected")
|
|
202
209
|
return "active:text-copy-lighter-active active:bg-action-selected-dark-active";
|
|
203
|
-
},
|
|
210
|
+
}, we = ({
|
|
204
211
|
mode: e,
|
|
205
212
|
noBorder: t,
|
|
206
213
|
variant: r
|
|
@@ -208,21 +215,21 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
208
215
|
if (t)
|
|
209
216
|
return "border border-transparent";
|
|
210
217
|
if (r === "primary")
|
|
211
|
-
return
|
|
218
|
+
return o("border", {
|
|
212
219
|
"border-border-dark": e === "dark",
|
|
213
220
|
"border-border-accent": e === "light",
|
|
214
221
|
"border-border-dark dark:border-border-accent": e === "system",
|
|
215
222
|
"border-border-accent dark:border-border-dark": e === "alt-system"
|
|
216
223
|
});
|
|
217
224
|
if (r === "secondary")
|
|
218
|
-
return
|
|
225
|
+
return o("border", {
|
|
219
226
|
"border-border-dark": e === "light",
|
|
220
227
|
"border-border-accent": e === "dark",
|
|
221
228
|
"border-border-dark dark:border-border-accent": e === "alt-system",
|
|
222
229
|
"border-border-accent dark:border-border-dark": e === "system"
|
|
223
230
|
});
|
|
224
231
|
if (r === "danger")
|
|
225
|
-
return
|
|
232
|
+
return o("border", {
|
|
226
233
|
"border-border-danger-dark": e === "dark",
|
|
227
234
|
"border-border-danger-medium": e === "light",
|
|
228
235
|
"border-border-danger-dark dark:border-border-danger-medium": e === "system",
|
|
@@ -232,7 +239,7 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
232
239
|
return "border border-border-selected-dark";
|
|
233
240
|
}, _e = ({
|
|
234
241
|
focusMode: e
|
|
235
|
-
}) =>
|
|
242
|
+
}) => o("focus:outline", "focus:outline-2", "focus:outline-offset-2", {
|
|
236
243
|
"focus:outline-focus-dark": e === "dark",
|
|
237
244
|
"focus:outline-focus-light": e === "light",
|
|
238
245
|
"focus:outline-focus-light dark:focus:outline-focus-dark": e === "alt-system",
|
|
@@ -241,7 +248,7 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
241
248
|
mode: e,
|
|
242
249
|
raw: t,
|
|
243
250
|
iconClassName: r
|
|
244
|
-
}) => t ? "" :
|
|
251
|
+
}) => t ? "" : o(
|
|
245
252
|
{
|
|
246
253
|
"text-copy-accent-dark": e === "light" || e === "alt-system",
|
|
247
254
|
"text-copy-light": e === "dark" || e === "system",
|
|
@@ -251,76 +258,77 @@ const j = "av-messagebox", D = "av-panel", G = "av-button", R = "icon", Y = "but
|
|
|
251
258
|
r
|
|
252
259
|
), Ie = ({
|
|
253
260
|
animated: e
|
|
254
|
-
}) =>
|
|
261
|
+
}) => o({
|
|
255
262
|
"transition-opacity duration-300 ease-in": e
|
|
256
263
|
}), Ee = ({
|
|
257
264
|
type: e,
|
|
258
265
|
className: t,
|
|
259
266
|
raw: r,
|
|
260
267
|
mode: a,
|
|
261
|
-
focusMode:
|
|
262
|
-
disabled:
|
|
263
|
-
fullWidth:
|
|
264
|
-
size:
|
|
265
|
-
noBorder:
|
|
266
|
-
labelRight:
|
|
268
|
+
focusMode: i,
|
|
269
|
+
disabled: n,
|
|
270
|
+
fullWidth: c,
|
|
271
|
+
size: s,
|
|
272
|
+
noBorder: d,
|
|
273
|
+
labelRight: m,
|
|
267
274
|
labelLeft: f,
|
|
268
275
|
noBackground: h,
|
|
269
|
-
variant:
|
|
276
|
+
variant: u,
|
|
270
277
|
noTruncate: b,
|
|
271
|
-
align:
|
|
272
|
-
radius:
|
|
273
|
-
animated:
|
|
274
|
-
}) => (
|
|
278
|
+
align: _,
|
|
279
|
+
radius: N,
|
|
280
|
+
animated: v
|
|
281
|
+
}) => (u || (u = "primary"), r ? o(G, t) : o(
|
|
275
282
|
G,
|
|
276
283
|
ve({
|
|
277
284
|
mode: a,
|
|
278
|
-
variant:
|
|
285
|
+
variant: u,
|
|
279
286
|
noBackground: h,
|
|
280
287
|
noTruncate: b
|
|
281
288
|
}),
|
|
282
|
-
|
|
283
|
-
|
|
289
|
+
pe({ mode: a, noBackground: h, variant: u }),
|
|
290
|
+
ye({ radius: N }),
|
|
284
291
|
be({
|
|
285
292
|
type: e,
|
|
286
|
-
size:
|
|
287
|
-
labelRight:
|
|
293
|
+
size: s,
|
|
294
|
+
labelRight: m,
|
|
288
295
|
labelLeft: f,
|
|
289
|
-
align:
|
|
296
|
+
align: _,
|
|
297
|
+
animated: v
|
|
290
298
|
}),
|
|
291
|
-
fe({ type: e, size:
|
|
292
|
-
|
|
293
|
-
_e({ focusMode:
|
|
294
|
-
ke({ mode: a, variant:
|
|
295
|
-
|
|
299
|
+
fe({ type: e, size: s, labelRight: m, labelLeft: f }),
|
|
300
|
+
we({ mode: a, variant: u, noBorder: d }),
|
|
301
|
+
_e({ focusMode: i }),
|
|
302
|
+
ke({ mode: a, variant: u, disabled: n }),
|
|
303
|
+
xe({ mode: a, variant: u, disabled: n }),
|
|
296
304
|
{
|
|
297
|
-
"w-full":
|
|
298
|
-
"disabled:cursor-not-allowed disabled:opacity-50":
|
|
305
|
+
"w-full": c,
|
|
306
|
+
"disabled:cursor-not-allowed disabled:opacity-50": n
|
|
299
307
|
},
|
|
300
|
-
|
|
301
|
-
"transition-[width] duration-300 ease-in-out": e ===
|
|
308
|
+
o({
|
|
309
|
+
"transition-[width] duration-300 ease-in-out": e === B && v
|
|
302
310
|
}),
|
|
303
311
|
t
|
|
304
312
|
)), Se = (e, t, r) => {
|
|
305
313
|
var a;
|
|
306
314
|
!t && (!document.activeElement || document.activeElement !== e.currentTarget) && typeof ((a = e == null ? void 0 : e.currentTarget) == null ? void 0 : a.focus) == "function" && e.currentTarget.focus(), typeof r == "function" && r(e);
|
|
307
|
-
}, Z =
|
|
308
|
-
const { onClick: r, noInternalClick: a = !1, ...
|
|
309
|
-
return /* @__PURE__ */
|
|
315
|
+
}, Z = A.forwardRef((e, t) => {
|
|
316
|
+
const { onClick: r, noInternalClick: a = !1, ...i } = e;
|
|
317
|
+
return /* @__PURE__ */ l(
|
|
310
318
|
"button",
|
|
311
319
|
{
|
|
312
320
|
ref: t,
|
|
313
|
-
onClick: (
|
|
314
|
-
Se(
|
|
321
|
+
onClick: (n) => {
|
|
322
|
+
Se(n, a, r);
|
|
315
323
|
},
|
|
316
|
-
...
|
|
324
|
+
...i
|
|
317
325
|
}
|
|
318
326
|
);
|
|
319
327
|
});
|
|
320
328
|
Z.displayName = "BaseButton";
|
|
321
329
|
function Re() {
|
|
322
330
|
const e = w(!1);
|
|
323
|
-
return
|
|
331
|
+
return V(() => (e.current = !0, () => {
|
|
324
332
|
e.current = !1;
|
|
325
333
|
}), []), ie(() => e.current, []);
|
|
326
334
|
}
|
|
@@ -342,16 +350,16 @@ const Te = {
|
|
|
342
350
|
bottom: 0,
|
|
343
351
|
right: 0
|
|
344
352
|
};
|
|
345
|
-
function
|
|
346
|
-
const t = Re(), r = w(0), a = w(null), [
|
|
347
|
-
const
|
|
348
|
-
|
|
349
|
-
a.current && t() &&
|
|
353
|
+
function O(e) {
|
|
354
|
+
const t = Re(), r = w(0), a = w(null), [i, n] = ne(Te), c = X(() => typeof ResizeObserver > "u" ? null : new ResizeObserver((s) => {
|
|
355
|
+
const d = s[0];
|
|
356
|
+
d && (cancelAnimationFrame(r.current), r.current = requestAnimationFrame(() => {
|
|
357
|
+
a.current && t() && n(d.contentRect);
|
|
350
358
|
}));
|
|
351
359
|
}), [t]);
|
|
352
|
-
return
|
|
353
|
-
|
|
354
|
-
}), [
|
|
360
|
+
return V(() => (a.current && (c == null || c.observe(a.current, e)), () => {
|
|
361
|
+
c == null || c.disconnect(), r.current && cancelAnimationFrame(r.current);
|
|
362
|
+
}), [c, e]), [a, i];
|
|
355
363
|
}
|
|
356
364
|
const Ce = {
|
|
357
365
|
small: 24,
|
|
@@ -367,101 +375,102 @@ const Ce = {
|
|
|
367
375
|
// px-3 x 2
|
|
368
376
|
large: 16 * 2
|
|
369
377
|
// px-4 x 2
|
|
370
|
-
}, Le = 2,
|
|
378
|
+
}, Le = 2, $ = A.forwardRef(
|
|
371
379
|
({
|
|
372
380
|
children: e,
|
|
373
381
|
disabled: t = !1,
|
|
374
382
|
mode: r = "system",
|
|
375
383
|
focusMode: a = "system",
|
|
376
|
-
fullWidth:
|
|
377
|
-
className:
|
|
378
|
-
type:
|
|
379
|
-
raw:
|
|
380
|
-
noBorder:
|
|
381
|
-
"aria-label":
|
|
384
|
+
fullWidth: i = !1,
|
|
385
|
+
className: n,
|
|
386
|
+
type: c = "button",
|
|
387
|
+
raw: s = !1,
|
|
388
|
+
noBorder: d = !1,
|
|
389
|
+
"aria-label": m,
|
|
382
390
|
label: f,
|
|
383
391
|
size: h = "medium",
|
|
384
|
-
labelRight:
|
|
392
|
+
labelRight: u,
|
|
385
393
|
labelLeft: b,
|
|
386
|
-
noBackground:
|
|
387
|
-
align:
|
|
388
|
-
radius:
|
|
394
|
+
noBackground: _ = !1,
|
|
395
|
+
align: N = "center",
|
|
396
|
+
radius: v = "large",
|
|
389
397
|
variant: J = "primary",
|
|
390
398
|
iconClassName: K,
|
|
391
|
-
animated:
|
|
399
|
+
animated: y = !1,
|
|
392
400
|
...Q
|
|
393
401
|
}, ee) => {
|
|
394
402
|
const re = Ee({
|
|
395
|
-
type:
|
|
403
|
+
type: B,
|
|
396
404
|
mode: r,
|
|
397
405
|
focusMode: a,
|
|
398
|
-
fullWidth:
|
|
406
|
+
fullWidth: i,
|
|
399
407
|
disabled: t,
|
|
400
|
-
raw:
|
|
401
|
-
className:
|
|
402
|
-
noBorder:
|
|
408
|
+
raw: s,
|
|
409
|
+
className: n,
|
|
410
|
+
noBorder: d,
|
|
403
411
|
size: h,
|
|
404
|
-
labelRight:
|
|
412
|
+
labelRight: u,
|
|
405
413
|
labelLeft: b,
|
|
406
|
-
noBackground:
|
|
407
|
-
align:
|
|
408
|
-
radius:
|
|
414
|
+
noBackground: _,
|
|
415
|
+
align: N,
|
|
416
|
+
radius: v,
|
|
409
417
|
variant: J,
|
|
410
|
-
animated:
|
|
411
|
-
}), te = Ne({ mode: r, raw:
|
|
418
|
+
animated: y
|
|
419
|
+
}), te = Ne({ mode: r, raw: s, iconClassName: K }), z = Ie({ animated: y }), [p, C] = O(), [k, M] = O(), [E, U] = O(), L = w(0), x = w(null), ae = Be([ee, x]);
|
|
412
420
|
return F(() => {
|
|
413
|
-
|
|
414
|
-
}, [
|
|
415
|
-
|
|
421
|
+
E && E.current && y && (L.current = U.width + Me[h] + (d ? 0 : Le));
|
|
422
|
+
}, [U, E, h, d, y]), F(() => {
|
|
423
|
+
x && x.current && y && (u && p && C.width > 0 ? (p.current && (p.current.style.opacity = "100"), x.current.style.width = `${C.width + L.current}px`) : b && M.width > 0 ? (k.current && (k.current.style.opacity = "100"), x.current.style.width = `${M.width + L.current}px`) : (p.current && (p.current.style.opacity = "0"), k.current && (k.current.style.opacity = "0"), x.current.style.width = `${Ce[h]}px`));
|
|
416
424
|
}, [
|
|
417
|
-
T,
|
|
418
|
-
d,
|
|
419
|
-
v,
|
|
420
425
|
C,
|
|
421
|
-
|
|
426
|
+
u,
|
|
422
427
|
p,
|
|
423
|
-
|
|
424
|
-
|
|
428
|
+
M,
|
|
429
|
+
b,
|
|
430
|
+
k,
|
|
431
|
+
h,
|
|
432
|
+
y
|
|
433
|
+
]), /* @__PURE__ */ R(
|
|
425
434
|
Z,
|
|
426
435
|
{
|
|
427
436
|
ref: ae,
|
|
428
437
|
className: re,
|
|
429
438
|
disabled: t,
|
|
430
|
-
type:
|
|
431
|
-
"aria-label":
|
|
439
|
+
type: c,
|
|
440
|
+
"aria-label": m || f,
|
|
432
441
|
...Q,
|
|
433
442
|
children: [
|
|
434
|
-
/* @__PURE__ */
|
|
435
|
-
/* @__PURE__ */
|
|
436
|
-
/* @__PURE__ */
|
|
443
|
+
/* @__PURE__ */ l("span", { ref: k, className: z, children: b && /* @__PURE__ */ l("span", { className: "pr-2", children: b }) }),
|
|
444
|
+
/* @__PURE__ */ l("span", { ref: E, className: te, children: e }),
|
|
445
|
+
/* @__PURE__ */ l("span", { ref: p, className: z, children: u && /* @__PURE__ */ l("span", { className: "pl-2", children: u }) })
|
|
437
446
|
]
|
|
438
447
|
}
|
|
439
448
|
);
|
|
440
449
|
}
|
|
441
450
|
);
|
|
442
|
-
|
|
451
|
+
$.displayName = "ButtonIcon";
|
|
443
452
|
/*!
|
|
444
|
-
@versini/ui-button v4.2.
|
|
453
|
+
@versini/ui-button v4.2.2
|
|
445
454
|
© 2025 gizmette.com
|
|
446
455
|
*/
|
|
447
456
|
try {
|
|
448
457
|
window.__VERSINI_UI_BUTTON__ || (window.__VERSINI_UI_BUTTON__ = {
|
|
449
|
-
version: "4.2.
|
|
450
|
-
buildTime: "01/
|
|
458
|
+
version: "4.2.2",
|
|
459
|
+
buildTime: "01/26/2025 07:26 PM EST",
|
|
451
460
|
homepage: "https://github.com/aversini/ui-components",
|
|
452
461
|
license: "MIT"
|
|
453
462
|
});
|
|
454
463
|
} catch {
|
|
455
464
|
}
|
|
456
|
-
const Oe =
|
|
465
|
+
const Oe = A.forwardRef(
|
|
457
466
|
({
|
|
458
467
|
children: e,
|
|
459
468
|
mode: t = "system",
|
|
460
469
|
className: r,
|
|
461
470
|
active: a = !1,
|
|
462
|
-
...
|
|
463
|
-
},
|
|
464
|
-
const
|
|
471
|
+
...i
|
|
472
|
+
}, n) => {
|
|
473
|
+
const c = a ? o(
|
|
465
474
|
"relative",
|
|
466
475
|
"focus-within:static",
|
|
467
476
|
"focus-within:after:border-transparent",
|
|
@@ -478,14 +487,14 @@ const Oe = P.forwardRef(
|
|
|
478
487
|
"after:border-table-light dark:after:border-table-dark": t === "alt-system"
|
|
479
488
|
}
|
|
480
489
|
) : "";
|
|
481
|
-
return /* @__PURE__ */
|
|
482
|
-
|
|
490
|
+
return /* @__PURE__ */ l("div", { className: c, children: /* @__PURE__ */ l(
|
|
491
|
+
$,
|
|
483
492
|
{
|
|
484
|
-
className:
|
|
485
|
-
ref:
|
|
493
|
+
className: o("justify-center", r),
|
|
494
|
+
ref: n,
|
|
486
495
|
mode: t,
|
|
487
496
|
radius: "small",
|
|
488
|
-
...
|
|
497
|
+
...i,
|
|
489
498
|
children: e
|
|
490
499
|
}
|
|
491
500
|
) });
|
|
@@ -497,29 +506,29 @@ const Pe = ({
|
|
|
497
506
|
fill: t,
|
|
498
507
|
viewBox: r,
|
|
499
508
|
className: a,
|
|
500
|
-
defaultViewBox:
|
|
501
|
-
size:
|
|
502
|
-
title:
|
|
503
|
-
semantic:
|
|
504
|
-
...
|
|
509
|
+
defaultViewBox: i,
|
|
510
|
+
size: n,
|
|
511
|
+
title: c,
|
|
512
|
+
semantic: s = !1,
|
|
513
|
+
...d
|
|
505
514
|
}) => {
|
|
506
|
-
const
|
|
507
|
-
return /* @__PURE__ */
|
|
508
|
-
/* @__PURE__ */
|
|
515
|
+
const m = o(n, a);
|
|
516
|
+
return /* @__PURE__ */ R(W, { children: [
|
|
517
|
+
/* @__PURE__ */ l(
|
|
509
518
|
"svg",
|
|
510
519
|
{
|
|
511
520
|
xmlns: "http://www.w3.org/2000/svg",
|
|
512
|
-
className:
|
|
513
|
-
viewBox: r ||
|
|
521
|
+
className: m,
|
|
522
|
+
viewBox: r || i,
|
|
514
523
|
fill: t || "currentColor",
|
|
515
524
|
role: "img",
|
|
516
|
-
"aria-hidden": !
|
|
525
|
+
"aria-hidden": !s,
|
|
517
526
|
focusable: !1,
|
|
518
|
-
...
|
|
527
|
+
...d,
|
|
519
528
|
children: e
|
|
520
529
|
}
|
|
521
530
|
),
|
|
522
|
-
|
|
531
|
+
c && s && /* @__PURE__ */ l("span", { className: "sr-only", children: c })
|
|
523
532
|
] });
|
|
524
533
|
};
|
|
525
534
|
/*!
|
|
@@ -540,8 +549,8 @@ const Ae = ({
|
|
|
540
549
|
viewBox: t,
|
|
541
550
|
title: r,
|
|
542
551
|
monotone: a,
|
|
543
|
-
...
|
|
544
|
-
}) => /* @__PURE__ */
|
|
552
|
+
...i
|
|
553
|
+
}) => /* @__PURE__ */ l(
|
|
545
554
|
Pe,
|
|
546
555
|
{
|
|
547
556
|
defaultViewBox: "0 0 384 512",
|
|
@@ -549,8 +558,8 @@ const Ae = ({
|
|
|
549
558
|
viewBox: t,
|
|
550
559
|
className: e,
|
|
551
560
|
title: r || "Close",
|
|
552
|
-
...
|
|
553
|
-
children: /* @__PURE__ */
|
|
561
|
+
...i,
|
|
562
|
+
children: /* @__PURE__ */ l(
|
|
554
563
|
"path",
|
|
555
564
|
{
|
|
556
565
|
d: "M297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256l105.3-105.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3z",
|
|
@@ -572,78 +581,78 @@ try {
|
|
|
572
581
|
});
|
|
573
582
|
} catch {
|
|
574
583
|
}
|
|
575
|
-
const H =
|
|
584
|
+
const H = g.createContext(null);
|
|
576
585
|
function Ve({
|
|
577
586
|
initialOpen: e = !1,
|
|
578
587
|
open: t,
|
|
579
588
|
onOpenChange: r
|
|
580
589
|
} = {}) {
|
|
581
|
-
const [a,
|
|
582
|
-
open:
|
|
590
|
+
const [a, i] = g.useState(e), [n, c] = g.useState(), [s, d] = g.useState(), m = t ?? a, f = r ?? i, h = oe({
|
|
591
|
+
open: m,
|
|
583
592
|
onOpenChange: f
|
|
584
|
-
}),
|
|
593
|
+
}), u = h.context, b = ce(u, {
|
|
585
594
|
enabled: t == null
|
|
586
|
-
}),
|
|
595
|
+
}), _ = le(u, {
|
|
587
596
|
outsidePress: !1,
|
|
588
597
|
outsidePressEvent: "mousedown"
|
|
589
|
-
}),
|
|
590
|
-
return
|
|
598
|
+
}), N = se(u), v = de([b, _, N]);
|
|
599
|
+
return g.useMemo(
|
|
591
600
|
() => ({
|
|
592
|
-
open:
|
|
601
|
+
open: m,
|
|
593
602
|
setOpen: f,
|
|
594
|
-
...
|
|
603
|
+
...v,
|
|
595
604
|
...h,
|
|
596
|
-
labelId:
|
|
597
|
-
descriptionId:
|
|
598
|
-
setLabelId:
|
|
599
|
-
setDescriptionId:
|
|
605
|
+
labelId: n,
|
|
606
|
+
descriptionId: s,
|
|
607
|
+
setLabelId: c,
|
|
608
|
+
setDescriptionId: d
|
|
600
609
|
}),
|
|
601
|
-
[
|
|
610
|
+
[m, f, v, h, n, s]
|
|
602
611
|
);
|
|
603
612
|
}
|
|
604
|
-
const
|
|
605
|
-
const e =
|
|
613
|
+
const T = () => {
|
|
614
|
+
const e = g.useContext(H);
|
|
606
615
|
if (e == null)
|
|
607
616
|
throw new Error("Modal components must be wrapped in <Modal />");
|
|
608
617
|
return e;
|
|
609
618
|
};
|
|
610
|
-
function
|
|
619
|
+
function $e({
|
|
611
620
|
children: e,
|
|
612
621
|
...t
|
|
613
622
|
}) {
|
|
614
623
|
const r = Ve(t);
|
|
615
|
-
return /* @__PURE__ */
|
|
624
|
+
return /* @__PURE__ */ l(H.Provider, { value: r, children: e });
|
|
616
625
|
}
|
|
617
|
-
const
|
|
618
|
-
const { context: r, ...a } =
|
|
626
|
+
const ze = g.forwardRef(function(e, t) {
|
|
627
|
+
const { context: r, ...a } = T(), i = ue([a.refs.setFloating, t]);
|
|
619
628
|
if (!r.open)
|
|
620
629
|
return null;
|
|
621
|
-
const { overlayBackground:
|
|
622
|
-
[`${
|
|
623
|
-
"bg-black sm:bg-black/[.8]": !
|
|
630
|
+
const { overlayBackground: n, ...c } = e, s = o("grid place-items-center", {
|
|
631
|
+
[`${n}`]: n,
|
|
632
|
+
"bg-black sm:bg-black/[.8]": !n
|
|
624
633
|
});
|
|
625
|
-
return /* @__PURE__ */
|
|
634
|
+
return /* @__PURE__ */ l(me, { children: /* @__PURE__ */ l(ge, { className: s, lockScroll: !0, children: /* @__PURE__ */ l(he, { context: r, children: /* @__PURE__ */ l(
|
|
626
635
|
"div",
|
|
627
636
|
{
|
|
628
|
-
ref:
|
|
637
|
+
ref: i,
|
|
629
638
|
"aria-labelledby": a.labelId,
|
|
630
639
|
"aria-describedby": a.descriptionId,
|
|
631
|
-
...a.getFloatingProps(
|
|
632
|
-
children:
|
|
640
|
+
...a.getFloatingProps(c),
|
|
641
|
+
children: c.children
|
|
633
642
|
}
|
|
634
643
|
) }) }) });
|
|
635
|
-
}),
|
|
636
|
-
const { setLabelId: a } =
|
|
637
|
-
return
|
|
638
|
-
}), Fe =
|
|
639
|
-
const { setDescriptionId: a } =
|
|
640
|
-
return
|
|
641
|
-
}), je =
|
|
642
|
-
const { setOpen: r } =
|
|
643
|
-
return /* @__PURE__ */
|
|
644
|
+
}), Ue = g.forwardRef(function({ children: e, ...t }, r) {
|
|
645
|
+
const { setLabelId: a } = T(), i = q();
|
|
646
|
+
return g.useLayoutEffect(() => (a(i), () => a(void 0)), [i, a]), /* @__PURE__ */ l("h1", { ...t, ref: r, id: i, children: e });
|
|
647
|
+
}), Fe = g.forwardRef(function({ children: e, ...t }, r) {
|
|
648
|
+
const { setDescriptionId: a } = T(), i = q();
|
|
649
|
+
return g.useLayoutEffect(() => (a(i), () => a(void 0)), [i, a]), /* @__PURE__ */ l("div", { ...t, ref: r, id: i, children: e });
|
|
650
|
+
}), je = g.forwardRef(function(e, t) {
|
|
651
|
+
const { setOpen: r } = T(), { trigger: a, className: i, ...n } = e, c = g.useCallback(() => r(!1), [r]);
|
|
652
|
+
return /* @__PURE__ */ l("div", { className: i, children: g.cloneElement(a, {
|
|
644
653
|
ref: t,
|
|
645
|
-
onClick:
|
|
646
|
-
...
|
|
654
|
+
onClick: c,
|
|
655
|
+
...n
|
|
647
656
|
}) });
|
|
648
657
|
});
|
|
649
658
|
/*!
|
|
@@ -653,27 +662,27 @@ const Ue = m.forwardRef(function(e, t) {
|
|
|
653
662
|
try {
|
|
654
663
|
window.__VERSINI_UI_MODAL__ || (window.__VERSINI_UI_MODAL__ = {
|
|
655
664
|
version: "1.2.9",
|
|
656
|
-
buildTime: "01/
|
|
665
|
+
buildTime: "01/26/2025 07:26 PM EST",
|
|
657
666
|
homepage: "https://github.com/aversini/ui-components",
|
|
658
667
|
license: "MIT"
|
|
659
668
|
});
|
|
660
669
|
} catch {
|
|
661
670
|
}
|
|
662
|
-
const
|
|
671
|
+
const I = "panel", S = "messagebox", De = ({
|
|
663
672
|
className: e,
|
|
664
673
|
kind: t,
|
|
665
674
|
borderMode: r
|
|
666
675
|
}) => ({
|
|
667
|
-
main:
|
|
668
|
-
[`${D} max-h-full sm:max-h-[95%] min-h-full sm:min-h-[10rem] sm:rounded-lg sm:border-2`]: t ===
|
|
669
|
-
[`${D} w-full sm:w-[95%] md:max-w-2xl`]: t ===
|
|
670
|
-
[`${j} rounded-lg border-2`]: t ===
|
|
671
|
-
[`${j} w-[95%] sm:w-[50%] md:max-w-2xl`]: t ===
|
|
676
|
+
main: o("prose prose-lighter flex flex-col bg-surface-medium", {
|
|
677
|
+
[`${D} max-h-full sm:max-h-[95%] min-h-full sm:min-h-[10rem] sm:rounded-lg sm:border-2`]: t === I,
|
|
678
|
+
[`${D} w-full sm:w-[95%] md:max-w-2xl`]: t === I && !e,
|
|
679
|
+
[`${j} rounded-lg border-2`]: t === S,
|
|
680
|
+
[`${j} w-[95%] sm:w-[50%] md:max-w-2xl`]: t === S && !e,
|
|
672
681
|
[`${e}`]: !!e,
|
|
673
|
-
"sm:border-border-dark": r === "dark" && t ===
|
|
674
|
-
"sm:border-border-accent": r === "light" && t ===
|
|
675
|
-
"border-border-dark": r === "dark" && t ===
|
|
676
|
-
"border-border-accent": r === "light" && t ===
|
|
682
|
+
"sm:border-border-dark": r === "dark" && t === I,
|
|
683
|
+
"sm:border-border-accent": r === "light" && t === I,
|
|
684
|
+
"border-border-dark": r === "dark" && t === S,
|
|
685
|
+
"border-border-accent": r === "light" && t === S
|
|
677
686
|
}),
|
|
678
687
|
content: "flex flex-col py-2 sm:py-4 sm:px-4 px-2 overflow-y-auto",
|
|
679
688
|
footer: "flex flex-grow flex-col sm:p-4 p-2",
|
|
@@ -684,36 +693,36 @@ const N = "panel", E = "messagebox", De = ({
|
|
|
684
693
|
onOpenChange: t,
|
|
685
694
|
title: r,
|
|
686
695
|
children: a,
|
|
687
|
-
footer:
|
|
688
|
-
borderMode:
|
|
689
|
-
kind:
|
|
690
|
-
className:
|
|
696
|
+
footer: i,
|
|
697
|
+
borderMode: n = "light",
|
|
698
|
+
kind: c = I,
|
|
699
|
+
className: s
|
|
691
700
|
}) => {
|
|
692
|
-
const
|
|
693
|
-
return
|
|
694
|
-
e && (document.title =
|
|
695
|
-
}), [r, e]), /* @__PURE__ */
|
|
696
|
-
/* @__PURE__ */
|
|
697
|
-
/* @__PURE__ */
|
|
701
|
+
const d = w(""), m = De({ className: s, kind: c, borderMode: n });
|
|
702
|
+
return V(() => (e && (d.current = document.title, document.title = `${r} | ${d.current}`), () => {
|
|
703
|
+
e && (document.title = d.current);
|
|
704
|
+
}), [r, e]), /* @__PURE__ */ l(W, { children: e && /* @__PURE__ */ l($e, { open: e, onOpenChange: t, children: /* @__PURE__ */ R(ze, { className: m.main, children: [
|
|
705
|
+
/* @__PURE__ */ R("div", { className: "flex flex-row-reverse items-center justify-between", children: [
|
|
706
|
+
/* @__PURE__ */ l(
|
|
698
707
|
je,
|
|
699
708
|
{
|
|
700
|
-
className:
|
|
701
|
-
trigger: /* @__PURE__ */
|
|
702
|
-
|
|
709
|
+
className: m.close,
|
|
710
|
+
trigger: /* @__PURE__ */ l(
|
|
711
|
+
$,
|
|
703
712
|
{
|
|
704
713
|
mode: "dark",
|
|
705
714
|
focusMode: "light",
|
|
706
715
|
noBorder: !0,
|
|
707
716
|
label: "Close",
|
|
708
|
-
children: /* @__PURE__ */
|
|
717
|
+
children: /* @__PURE__ */ l(Ae, {})
|
|
709
718
|
}
|
|
710
719
|
)
|
|
711
720
|
}
|
|
712
721
|
),
|
|
713
|
-
/* @__PURE__ */
|
|
722
|
+
/* @__PURE__ */ l(Ue, { className: m.header, children: r })
|
|
714
723
|
] }),
|
|
715
|
-
/* @__PURE__ */
|
|
716
|
-
|
|
724
|
+
/* @__PURE__ */ l(Fe, { className: m.content, children: a }),
|
|
725
|
+
i && /* @__PURE__ */ l("div", { className: m.footer, children: i })
|
|
717
726
|
] }) }) });
|
|
718
727
|
};
|
|
719
728
|
export {
|
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}.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-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}.prose-lighter :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:#fff}@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}.relative{position:relative}.mb-0{margin-bottom:0}.ml-1{margin-left:.25rem}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.size-3{width:.75rem;height:.75rem}.size-4{width:1rem;height:1rem}.size-5{width:1.25rem;height:1.25rem}.h-12{height:3rem}.h-6{height:1.5rem}.h-8{height:2rem}.max-h-12{max-height:3rem}.max-h-8{max-height:2rem}.max-h-9{max-height:2.25rem}.max-h-full{max-height:100%}.min-h-full{min-height:100%}.w-12{width:3rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-\[95\%\]{width:95%}.w-full{width:100%}.flex-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}.place-items-center{place-items:center}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.border{border-width:1px}.border-2{border-width:2px}.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-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity, 1))}.bg-surface-medium{--tw-bg-opacity: 1;background-color:var(--av-surface-medium, rgb(100 116 139 / var(--tw-bg-opacity, 1)))}.p-2{padding:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.py-0{padding-top:0;padding-bottom:0}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.text-center{text-align:center}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-medium{font-weight:500}.text-copy-accent-dark{--tw-text-opacity: 1;color:var(--av-copy-accent-dark, rgb(205 232 212 / var(--tw-text-opacity, 1)))}.text-copy-light{--tw-text-opacity: 1;color:var(--av-copy-light, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.text-copy-lighter{--tw-text-opacity: 1;color:var(--av-copy-lighter, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.opacity-50{opacity:.5}.outline-focus-dark{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.outline-focus-light{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.transition-\[width\]{transition-property:width;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-300{transition-duration:.3s}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:bottom-\[-4px\]:after{content:var(--tw-content);bottom:-4px}.after\:left-0:after{content:var(--tw-content);left:0}.after\:right-0:after{content:var(--tw-content);right:0}.after\:border-b-2:after{content:var(--tw-content);border-bottom-width:2px}.after\:border-table-dark:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.after\:border-table-light:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.focus-within\:static:focus-within{position:static}.focus-within\:after\:border-transparent:focus-within:after{content:var(--tw-content);border-color:transparent}.hover\:bg-action-danger-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-danger-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-selected-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-hover, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.hover\:text-copy-light-hover:hover{--tw-text-opacity: 1;color:var(--av-copy-light-hover, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.focus\:outline:focus{outline-style:solid}.focus\:outline-2:focus{outline-width:2px}.focus\:outline-offset-2:focus{outline-offset:2px}.focus\:outline-focus-dark:focus{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.focus\:outline-focus-light:focus{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.active\:bg-action-danger-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.active\:bg-action-danger-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.active\:bg-action-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.active\:bg-action-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.active\:bg-action-selected-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-active, rgb(34 197 94 / var(--tw-bg-opacity, 1)))}.active\:text-copy-light-active:active{--tw-text-opacity: 1;color:var(--av-copy-light-active, rgb(148 163 184 / var(--tw-text-opacity, 1)))}.active\:text-copy-lighter-active:active{--tw-text-opacity: 1;color:var(--av-copy-lighter-active, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}@media (min-width: 640px){.sm\:max-h-\[95\%\]{max-height:95%}.sm\:min-h-\[10rem\]{min-height:10rem}.sm\:w-\[50\%\]{width:50%}.sm\:w-\[95\%\]{width:95%}.sm\:rounded-lg{border-radius:.5rem}.sm\:border-2{border-width:2px}.sm\:border-border-accent{--tw-border-opacity: 1;border-color:var(--av-border-accent, rgb(169 185 173 / var(--tw-border-opacity, 1)))}.sm\:border-border-dark{--tw-border-opacity: 1;border-color:var(--av-border-dark, rgb(15 23 42 / var(--tw-border-opacity, 1)))}.sm\:bg-black\/\[\.8\]{background-color:#000c}.sm\:p-4{padding:1rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:py-4{padding-top:1rem;padding-bottom:1rem}}@media (min-width: 768px){.md\:max-w-2xl{max-width:42rem}}@media (prefers-color-scheme: dark){.dark\:border-border-accent{--tw-border-opacity: 1;border-color:var(--av-border-accent, rgb(169 185 173 / var(--tw-border-opacity, 1)))}.dark\:border-border-danger-dark{--tw-border-opacity: 1;border-color:var(--av-border-danger-dark, rgb(127 29 29 / var(--tw-border-opacity, 1)))}.dark\:border-border-danger-medium{--tw-border-opacity: 1;border-color:var(--av-border-danger-medium, rgb(248 113 113 / var(--tw-border-opacity, 1)))}.dark\:border-border-dark{--tw-border-opacity: 1;border-color:var(--av-border-dark, rgb(15 23 42 / var(--tw-border-opacity, 1)))}.dark\:bg-action-danger-dark{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark, rgb(127 29 29 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-danger-light{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-dark{--tw-bg-opacity: 1;background-color:var(--av-action-dark, rgb(15 23 42 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-light{--tw-bg-opacity: 1;background-color:var(--av-action-light, rgb(100 116 139 / var(--tw-bg-opacity, 1)))}.dark\:text-copy-accent-dark{--tw-text-opacity: 1;color:var(--av-copy-accent-dark, rgb(205 232 212 / var(--tw-text-opacity, 1)))}.dark\:text-copy-light{--tw-text-opacity: 1;color:var(--av-copy-light, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.dark\:text-copy-lighter{--tw-text-opacity: 1;color:var(--av-copy-lighter, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.dark\:after\:border-table-dark:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.dark\:after\:border-table-light:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.dark\:hover\:bg-action-danger-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-danger-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.dark\:focus\:outline-focus-dark:focus{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.dark\:focus\:outline-focus-light:focus{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.dark\:active\:bg-action-danger-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-danger-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}}
|
|
1
|
+
*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::-ms-backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-ms-input-placeholder,textarea::-ms-input-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.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-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}.prose-lighter :where(li):not(:where([class~=not-prose],[class~=not-prose] *)){color:#fff}@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}.relative{position:relative}.mb-0{margin-bottom:0}.ml-1{margin-left:.25rem}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.size-3{width:.75rem;height:.75rem}.size-4{width:1rem;height:1rem}.size-5{width:1.25rem;height:1.25rem}.h-12{height:3rem}.h-6{height:1.5rem}.h-8{height:2rem}.max-h-12{max-height:3rem}.max-h-8{max-height:2rem}.max-h-9{max-height:2.25rem}.max-h-full{max-height:100%}.min-h-full{min-height:100%}.w-12{width:3rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-\[95\%\]{width:95%}.w-full{width:100%}.flex-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}.place-items-center{place-items:center}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.overflow-y-auto{overflow-y:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-sm{border-radius:.125rem}.border{border-width:1px}.border-2{border-width:2px}.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-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity, 1))}.bg-surface-medium{--tw-bg-opacity: 1;background-color:var(--av-surface-medium, rgb(100 116 139 / var(--tw-bg-opacity, 1)))}.p-0{padding:0}.p-1{padding:.25rem}.p-2{padding:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.py-0{padding-top:0;padding-bottom:0}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pr-2{padding-right:.5rem}.text-center{text-align:center}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-medium{font-weight:500}.text-copy-accent-dark{--tw-text-opacity: 1;color:var(--av-copy-accent-dark, rgb(205 232 212 / var(--tw-text-opacity, 1)))}.text-copy-light{--tw-text-opacity: 1;color:var(--av-copy-light, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.text-copy-lighter{--tw-text-opacity: 1;color:var(--av-copy-lighter, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.opacity-50{opacity:.5}.outline-focus-dark{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.outline-focus-light{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.transition-\[width\]{transition-property:width;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-300{transition-duration:.3s}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.after\:absolute:after{content:var(--tw-content);position:absolute}.after\:bottom-\[-4px\]:after{content:var(--tw-content);bottom:-4px}.after\:left-0:after{content:var(--tw-content);left:0}.after\:right-0:after{content:var(--tw-content);right:0}.after\:border-b-2:after{content:var(--tw-content);border-bottom-width:2px}.after\:border-table-dark:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.after\:border-table-light:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.after\:content-\[\'\'\]:after{--tw-content: "";content:var(--tw-content)}.focus-within\:static:focus-within{position:static}.focus-within\:after\:border-transparent:focus-within:after{content:var(--tw-content);border-color:transparent}.hover\:bg-action-danger-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-danger-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.hover\:bg-action-selected-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-hover, rgb(22 163 74 / var(--tw-bg-opacity, 1)))}.hover\:text-copy-light-hover:hover{--tw-text-opacity: 1;color:var(--av-copy-light-hover, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.focus\:outline:focus{outline-style:solid}.focus\:outline-2:focus{outline-width:2px}.focus\:outline-offset-2:focus{outline-offset:2px}.focus\:outline-focus-dark:focus{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.focus\:outline-focus-light:focus{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.active\:bg-action-danger-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.active\:bg-action-danger-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.active\:bg-action-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.active\:bg-action-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.active\:bg-action-selected-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-selected-dark-active, rgb(34 197 94 / var(--tw-bg-opacity, 1)))}.active\:text-copy-light-active:active{--tw-text-opacity: 1;color:var(--av-copy-light-active, rgb(148 163 184 / var(--tw-text-opacity, 1)))}.active\:text-copy-lighter-active:active{--tw-text-opacity: 1;color:var(--av-copy-lighter-active, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}@media (min-width: 640px){.sm\:max-h-\[95\%\]{max-height:95%}.sm\:min-h-\[10rem\]{min-height:10rem}.sm\:w-\[50\%\]{width:50%}.sm\:w-\[95\%\]{width:95%}.sm\:rounded-lg{border-radius:.5rem}.sm\:border-2{border-width:2px}.sm\:border-border-accent{--tw-border-opacity: 1;border-color:var(--av-border-accent, rgb(169 185 173 / var(--tw-border-opacity, 1)))}.sm\:border-border-dark{--tw-border-opacity: 1;border-color:var(--av-border-dark, rgb(15 23 42 / var(--tw-border-opacity, 1)))}.sm\:bg-black\/\[\.8\]{background-color:#000c}.sm\:p-4{padding:1rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:py-4{padding-top:1rem;padding-bottom:1rem}}@media (min-width: 768px){.md\:max-w-2xl{max-width:42rem}}@media (prefers-color-scheme: dark){.dark\:border-border-accent{--tw-border-opacity: 1;border-color:var(--av-border-accent, rgb(169 185 173 / var(--tw-border-opacity, 1)))}.dark\:border-border-danger-dark{--tw-border-opacity: 1;border-color:var(--av-border-danger-dark, rgb(127 29 29 / var(--tw-border-opacity, 1)))}.dark\:border-border-danger-medium{--tw-border-opacity: 1;border-color:var(--av-border-danger-medium, rgb(248 113 113 / var(--tw-border-opacity, 1)))}.dark\:border-border-dark{--tw-border-opacity: 1;border-color:var(--av-border-dark, rgb(15 23 42 / var(--tw-border-opacity, 1)))}.dark\:bg-action-danger-dark{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark, rgb(127 29 29 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-danger-light{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-dark{--tw-bg-opacity: 1;background-color:var(--av-action-dark, rgb(15 23 42 / var(--tw-bg-opacity, 1)))}.dark\:bg-action-light{--tw-bg-opacity: 1;background-color:var(--av-action-light, rgb(100 116 139 / var(--tw-bg-opacity, 1)))}.dark\:text-copy-accent-dark{--tw-text-opacity: 1;color:var(--av-copy-accent-dark, rgb(205 232 212 / var(--tw-text-opacity, 1)))}.dark\:text-copy-light{--tw-text-opacity: 1;color:var(--av-copy-light, rgb(226 232 240 / var(--tw-text-opacity, 1)))}.dark\:text-copy-lighter{--tw-text-opacity: 1;color:var(--av-copy-lighter, rgb(255 255 255 / var(--tw-text-opacity, 1)))}.dark\:after\:border-table-dark:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-dark, rgb(55 65 81 / var(--tw-border-opacity, 1)))}.dark\:after\:border-table-light:after{content:var(--tw-content);--tw-border-opacity: 1;border-color:var(--av-table-light, rgb(243 244 246 / var(--tw-border-opacity, 1)))}.dark\:hover\:bg-action-danger-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-danger-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-hover, rgb(185 28 28 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-dark-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-dark-hover, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}.dark\:hover\:bg-action-light-hover:hover{--tw-bg-opacity: 1;background-color:var(--av-action-light-hover, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.dark\:focus\:outline-focus-dark:focus{outline-color:var(--av-focus-dark, rgb(21 128 61 / 1))}.dark\:focus\:outline-focus-light:focus{outline-color:var(--av-focus-light, rgb(134 239 172 / 1))}.dark\:active\:bg-action-danger-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-dark-active, rgb(220 38 38 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-danger-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-danger-light-active, rgb(153 27 27 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-dark-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-dark-active, rgb(71 85 105 / var(--tw-bg-opacity, 1)))}.dark\:active\:bg-action-light-active:active{--tw-bg-opacity: 1;background-color:var(--av-action-light-active, rgb(51 65 85 / var(--tw-bg-opacity, 1)))}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versini/ui-panel",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.19",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Arno Versini",
|
|
6
6
|
"publishConfig": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@tailwindcss/typography": "0.5.16",
|
|
43
|
-
"@versini/ui-button": "4.2.
|
|
43
|
+
"@versini/ui-button": "4.2.2",
|
|
44
44
|
"@versini/ui-icons": "4.6.0",
|
|
45
45
|
"@versini/ui-modal": "1.2.9",
|
|
46
46
|
"clsx": "2.1.1",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"sideEffects": [
|
|
50
50
|
"**/*.css"
|
|
51
51
|
],
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "6b7a9cc0b72a300e97994f35f4bcdbda478ba095"
|
|
53
53
|
}
|