@batijs/elements 0.0.10 → 0.0.11
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/elements/full.js +882 -842
- package/package.json +1 -1
package/dist/elements/full.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
function
|
|
1
|
+
function Br(e) {
|
|
2
2
|
return Object.keys(e).reduce((i, r) => {
|
|
3
3
|
const o = e[r];
|
|
4
|
-
return i[r] = Object.assign({}, o), Vi(o.value) && !
|
|
4
|
+
return i[r] = Object.assign({}, o), Vi(o.value) && !Fr(o.value) && !Array.isArray(o.value) && (i[r].value = Object.assign({}, o.value)), Array.isArray(o.value) && (i[r].value = o.value.slice(0)), i;
|
|
5
5
|
}, {});
|
|
6
6
|
}
|
|
7
|
-
function
|
|
7
|
+
function Hr(e) {
|
|
8
8
|
return e ? Object.keys(e).reduce((i, r) => {
|
|
9
9
|
const o = e[r];
|
|
10
10
|
return i[r] = Vi(o) && "value" in o ? o : {
|
|
11
11
|
value: o
|
|
12
|
-
}, i[r].attribute || (i[r].attribute =
|
|
12
|
+
}, i[r].attribute || (i[r].attribute = _r(r)), i[r].parse = "parse" in i[r] ? i[r].parse : typeof i[r].value != "string", i;
|
|
13
13
|
}, {}) : {};
|
|
14
14
|
}
|
|
15
|
-
function
|
|
15
|
+
function Vr(e) {
|
|
16
16
|
return Object.keys(e).reduce((i, r) => (i[r] = e[r].value, i), {});
|
|
17
17
|
}
|
|
18
|
-
function
|
|
19
|
-
const i =
|
|
18
|
+
function Jr(e, t) {
|
|
19
|
+
const i = Br(t);
|
|
20
20
|
return Object.keys(t).forEach((o) => {
|
|
21
21
|
const n = i[o], a = e.getAttribute(n.attribute), l = e[o];
|
|
22
22
|
a != null && (n.value = n.parse ? Hi(a) : a), l != null && (n.value = Array.isArray(l) ? l.slice(0) : l), n.reflect && di(e, n.attribute, n.value, !!n.parse), Object.defineProperty(e, o, {
|
|
@@ -47,20 +47,20 @@ function di(e, t, i, r) {
|
|
|
47
47
|
let o = r ? JSON.stringify(i) : i;
|
|
48
48
|
e.__updating[t] = !0, o === "true" && (o = ""), e.setAttribute(t, o), Promise.resolve().then(() => delete e.__updating[t]);
|
|
49
49
|
}
|
|
50
|
-
function
|
|
50
|
+
function _r(e) {
|
|
51
51
|
return e.replace(/\.?([A-Z]+)/g, (t, i) => "-" + i.toLowerCase()).replace("_", "-").replace(/^-/, "");
|
|
52
52
|
}
|
|
53
53
|
function Vi(e) {
|
|
54
54
|
return e != null && (typeof e == "object" || typeof e == "function");
|
|
55
55
|
}
|
|
56
|
-
function
|
|
56
|
+
function Fr(e) {
|
|
57
57
|
return Object.prototype.toString.call(e) === "[object Function]";
|
|
58
58
|
}
|
|
59
|
-
function
|
|
59
|
+
function $r(e) {
|
|
60
60
|
return typeof e == "function" && e.toString().indexOf("class") === 0;
|
|
61
61
|
}
|
|
62
|
-
let
|
|
63
|
-
function
|
|
62
|
+
let pt;
|
|
63
|
+
function Xr(e, t) {
|
|
64
64
|
const i = Object.keys(t);
|
|
65
65
|
return class extends e {
|
|
66
66
|
static get observedAttributes() {
|
|
@@ -71,16 +71,16 @@ function $r(e, t) {
|
|
|
71
71
|
}
|
|
72
72
|
connectedCallback() {
|
|
73
73
|
if (this.__initialized) return;
|
|
74
|
-
this.__releaseCallbacks = [], this.__propertyChangedCallbacks = [], this.__updating = {}, this.props =
|
|
75
|
-
const o =
|
|
74
|
+
this.__releaseCallbacks = [], this.__propertyChangedCallbacks = [], this.__updating = {}, this.props = Jr(this, t);
|
|
75
|
+
const o = Vr(this.props), n = this.Component, a = pt;
|
|
76
76
|
try {
|
|
77
|
-
|
|
77
|
+
pt = this, this.__initialized = !0, $r(n) ? new n(o, {
|
|
78
78
|
element: this
|
|
79
79
|
}) : n(o, {
|
|
80
80
|
element: this
|
|
81
81
|
});
|
|
82
82
|
} finally {
|
|
83
|
-
|
|
83
|
+
pt = a;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
async disconnectedCallback() {
|
|
@@ -113,7 +113,7 @@ function $r(e, t) {
|
|
|
113
113
|
}
|
|
114
114
|
};
|
|
115
115
|
}
|
|
116
|
-
function
|
|
116
|
+
function Kr(e, t = {}, i = {}) {
|
|
117
117
|
const {
|
|
118
118
|
BaseElement: r = HTMLElement,
|
|
119
119
|
extension: o,
|
|
@@ -121,11 +121,11 @@ function Xr(e, t = {}, i = {}) {
|
|
|
121
121
|
} = i;
|
|
122
122
|
return (a) => {
|
|
123
123
|
let l = n.get(e);
|
|
124
|
-
return l ? (l.prototype.Component = a, l) : (l =
|
|
124
|
+
return l ? (l.prototype.Component = a, l) : (l = Xr(r, Hr(t)), l.prototype.Component = a, l.prototype.registeredTag = e, n.define(e, l, o), l);
|
|
125
125
|
};
|
|
126
126
|
}
|
|
127
|
-
const
|
|
128
|
-
equals:
|
|
127
|
+
const qr = (e, t) => e === t, F = Symbol("solid-proxy"), Ji = typeof Proxy == "function", Ut = Symbol("solid-track"), ot = {
|
|
128
|
+
equals: qr
|
|
129
129
|
};
|
|
130
130
|
let _i = qi;
|
|
131
131
|
const ae = 1, nt = 2, Fi = {
|
|
@@ -133,9 +133,9 @@ const ae = 1, nt = 2, Fi = {
|
|
|
133
133
|
cleanups: null,
|
|
134
134
|
context: null,
|
|
135
135
|
owner: null
|
|
136
|
-
},
|
|
136
|
+
}, Tt = {};
|
|
137
137
|
var C = null;
|
|
138
|
-
let
|
|
138
|
+
let zt = null, eo = null, E = null, Q = null, ne = null, Nt = 0;
|
|
139
139
|
function tt(e, t) {
|
|
140
140
|
const i = E, r = C, o = e.length === 0, n = t === void 0 ? r : t, a = o ? Fi : {
|
|
141
141
|
owned: null,
|
|
@@ -160,73 +160,73 @@ function O(e, t) {
|
|
|
160
160
|
}, r = (o) => (typeof o == "function" && (o = o(i.value)), Ki(i, o));
|
|
161
161
|
return [Xi.bind(i), r];
|
|
162
162
|
}
|
|
163
|
-
function
|
|
164
|
-
const r =
|
|
163
|
+
function to(e, t, i) {
|
|
164
|
+
const r = Dt(e, t, !0, ae);
|
|
165
165
|
ke(r);
|
|
166
166
|
}
|
|
167
167
|
function S(e, t, i) {
|
|
168
|
-
const r =
|
|
168
|
+
const r = Dt(e, t, !1, ae);
|
|
169
169
|
ke(r);
|
|
170
170
|
}
|
|
171
|
-
function
|
|
172
|
-
_i =
|
|
173
|
-
const r =
|
|
171
|
+
function ye(e, t, i) {
|
|
172
|
+
_i = co;
|
|
173
|
+
const r = Dt(e, t, !1, ae);
|
|
174
174
|
r.user = !0, ne ? ne.push(r) : ke(r);
|
|
175
175
|
}
|
|
176
176
|
function z(e, t, i) {
|
|
177
177
|
i = i ? Object.assign({}, ot, i) : ot;
|
|
178
|
-
const r =
|
|
178
|
+
const r = Dt(e, t, !0, 0);
|
|
179
179
|
return r.observers = null, r.observerSlots = null, r.comparator = i.equals || void 0, ke(r), Xi.bind(r);
|
|
180
180
|
}
|
|
181
|
-
function
|
|
181
|
+
function io(e) {
|
|
182
182
|
return e && typeof e == "object" && "then" in e;
|
|
183
183
|
}
|
|
184
|
-
function
|
|
184
|
+
function ro(e, t, i) {
|
|
185
185
|
let r, o, n;
|
|
186
186
|
typeof t == "function" ? (r = e, o = t, n = i || {}) : (r = !0, o = e, n = t || {});
|
|
187
|
-
let a = null, l =
|
|
188
|
-
const u = /* @__PURE__ */ new Set(), [g, d] = (n.storage || O)(n.initialValue), [N, I] = O(void 0), [b,
|
|
187
|
+
let a = null, l = Tt, c = !1, s = "initialValue" in n, M = typeof r == "function" && z(r);
|
|
188
|
+
const u = /* @__PURE__ */ new Set(), [g, d] = (n.storage || O)(n.initialValue), [N, I] = O(void 0), [b, m] = O(void 0, {
|
|
189
189
|
equals: !1
|
|
190
190
|
}), [p, j] = O(s ? "ready" : "unresolved");
|
|
191
|
-
function
|
|
192
|
-
return a === T && (a = null, v !== void 0 && (s = !0), (T === l ||
|
|
191
|
+
function w(T, L, A, v) {
|
|
192
|
+
return a === T && (a = null, v !== void 0 && (s = !0), (T === l || L === l) && n.onHydrated && queueMicrotask(
|
|
193
193
|
() => n.onHydrated(v, {
|
|
194
|
-
value:
|
|
194
|
+
value: L
|
|
195
195
|
})
|
|
196
|
-
), l =
|
|
196
|
+
), l = Tt, h(L, A)), L;
|
|
197
197
|
}
|
|
198
|
-
function h(T,
|
|
198
|
+
function h(T, L) {
|
|
199
199
|
ue(() => {
|
|
200
|
-
|
|
200
|
+
L === void 0 && d(() => T), j(L !== void 0 ? "errored" : s ? "ready" : "unresolved"), I(L);
|
|
201
201
|
for (const A of u.keys()) A.decrement();
|
|
202
202
|
u.clear();
|
|
203
203
|
}, !1);
|
|
204
204
|
}
|
|
205
205
|
function k() {
|
|
206
|
-
const T =
|
|
206
|
+
const T = no, L = g(), A = N();
|
|
207
207
|
if (A !== void 0 && !a) throw A;
|
|
208
|
-
return E && E.user,
|
|
208
|
+
return E && E.user, L;
|
|
209
209
|
}
|
|
210
|
-
function
|
|
210
|
+
function x(T = !0) {
|
|
211
211
|
if (T !== !1 && c) return;
|
|
212
212
|
c = !1;
|
|
213
|
-
const
|
|
214
|
-
if (
|
|
215
|
-
|
|
213
|
+
const L = M ? M() : r;
|
|
214
|
+
if (L == null || L === !1) {
|
|
215
|
+
w(a, Y(g));
|
|
216
216
|
return;
|
|
217
217
|
}
|
|
218
|
-
const A = l !==
|
|
219
|
-
() => o(
|
|
218
|
+
const A = l !== Tt ? l : Y(
|
|
219
|
+
() => o(L, {
|
|
220
220
|
value: g(),
|
|
221
221
|
refetching: T
|
|
222
222
|
})
|
|
223
223
|
);
|
|
224
|
-
return
|
|
225
|
-
j(s ? "refreshing" : "pending"),
|
|
224
|
+
return io(A) ? (a = A, "value" in A ? (A.status === "success" ? w(a, A.value, void 0, L) : w(a, void 0, Gt(A.value), L), A) : (c = !0, queueMicrotask(() => c = !1), ue(() => {
|
|
225
|
+
j(s ? "refreshing" : "pending"), m();
|
|
226
226
|
}, !1), A.then(
|
|
227
|
-
(v) =>
|
|
228
|
-
(v) =>
|
|
229
|
-
))) : (
|
|
227
|
+
(v) => w(A, v, void 0, L),
|
|
228
|
+
(v) => w(A, void 0, Gt(v), L)
|
|
229
|
+
))) : (w(a, A, void 0, L), A);
|
|
230
230
|
}
|
|
231
231
|
return Object.defineProperties(k, {
|
|
232
232
|
state: {
|
|
@@ -249,15 +249,15 @@ function io(e, t, i) {
|
|
|
249
249
|
return g();
|
|
250
250
|
}
|
|
251
251
|
}
|
|
252
|
-
}), M ?
|
|
252
|
+
}), M ? to(() => x(!1)) : x(!1), [
|
|
253
253
|
k,
|
|
254
254
|
{
|
|
255
|
-
refetch:
|
|
255
|
+
refetch: x,
|
|
256
256
|
mutate: d
|
|
257
257
|
}
|
|
258
258
|
];
|
|
259
259
|
}
|
|
260
|
-
function
|
|
260
|
+
function Zt(e) {
|
|
261
261
|
return ue(e, !1);
|
|
262
262
|
}
|
|
263
263
|
function Y(e) {
|
|
@@ -270,7 +270,7 @@ function Y(e) {
|
|
|
270
270
|
E = t;
|
|
271
271
|
}
|
|
272
272
|
}
|
|
273
|
-
function
|
|
273
|
+
function oo(e, t, i) {
|
|
274
274
|
const r = Array.isArray(e);
|
|
275
275
|
let o;
|
|
276
276
|
return (n) => {
|
|
@@ -283,36 +283,36 @@ function ro(e, t, i) {
|
|
|
283
283
|
return o = a, l;
|
|
284
284
|
};
|
|
285
285
|
}
|
|
286
|
-
function
|
|
287
|
-
|
|
286
|
+
function jt(e) {
|
|
287
|
+
ye(() => Y(e));
|
|
288
288
|
}
|
|
289
289
|
function Je(e) {
|
|
290
290
|
return C === null || (C.cleanups === null ? C.cleanups = [e] : C.cleanups.push(e)), e;
|
|
291
291
|
}
|
|
292
|
-
function
|
|
292
|
+
function Pt() {
|
|
293
293
|
return E;
|
|
294
294
|
}
|
|
295
|
-
const [
|
|
296
|
-
function
|
|
295
|
+
const [Zc, Pc] = /* @__PURE__ */ O(!1);
|
|
296
|
+
function yt(e, t) {
|
|
297
297
|
const i = Symbol("context");
|
|
298
298
|
return {
|
|
299
299
|
id: i,
|
|
300
|
-
Provider:
|
|
300
|
+
Provider: so(i),
|
|
301
301
|
defaultValue: e
|
|
302
302
|
};
|
|
303
303
|
}
|
|
304
|
-
function
|
|
304
|
+
function U(e) {
|
|
305
305
|
let t;
|
|
306
306
|
return C && C.context && (t = C.context[e.id]) !== void 0 ? t : e.defaultValue;
|
|
307
307
|
}
|
|
308
308
|
function $i(e) {
|
|
309
|
-
const t = z(e), i = z(() =>
|
|
309
|
+
const t = z(e), i = z(() => Wt(t()));
|
|
310
310
|
return i.toArray = () => {
|
|
311
311
|
const r = i();
|
|
312
312
|
return Array.isArray(r) ? r : r != null ? [r] : [];
|
|
313
313
|
}, i;
|
|
314
314
|
}
|
|
315
|
-
let
|
|
315
|
+
let no;
|
|
316
316
|
function Xi() {
|
|
317
317
|
if (this.sources && this.state)
|
|
318
318
|
if (this.state === ae) ke(this);
|
|
@@ -330,8 +330,8 @@ function Ki(e, t, i) {
|
|
|
330
330
|
let r = e.value;
|
|
331
331
|
return (!e.comparator || !e.comparator(r, t)) && (e.value = t, e.observers && e.observers.length && ue(() => {
|
|
332
332
|
for (let o = 0; o < e.observers.length; o += 1) {
|
|
333
|
-
const n = e.observers[o], a =
|
|
334
|
-
a &&
|
|
333
|
+
const n = e.observers[o], a = zt && zt.running;
|
|
334
|
+
a && zt.disposed.has(n), (a ? !n.tState : !n.state) && (n.pure ? Q.push(n) : ne.push(n), n.observers && er(n)), a || (n.state = ae);
|
|
335
335
|
}
|
|
336
336
|
if (Q.length > 1e6)
|
|
337
337
|
throw Q = [], new Error();
|
|
@@ -341,13 +341,13 @@ function ke(e) {
|
|
|
341
341
|
if (!e.fn) return;
|
|
342
342
|
Ze(e);
|
|
343
343
|
const t = Nt;
|
|
344
|
-
|
|
344
|
+
ao(
|
|
345
345
|
e,
|
|
346
346
|
e.value,
|
|
347
347
|
t
|
|
348
348
|
);
|
|
349
349
|
}
|
|
350
|
-
function
|
|
350
|
+
function ao(e, t, i) {
|
|
351
351
|
let r;
|
|
352
352
|
const o = C, n = E;
|
|
353
353
|
E = C = e;
|
|
@@ -360,7 +360,7 @@ function no(e, t, i) {
|
|
|
360
360
|
}
|
|
361
361
|
(!e.updatedAt || e.updatedAt <= i) && (e.updatedAt != null && "observers" in e ? Ki(e, r) : e.value = r, e.updatedAt = i);
|
|
362
362
|
}
|
|
363
|
-
function
|
|
363
|
+
function Dt(e, t, i, r = ae, o) {
|
|
364
364
|
const n = {
|
|
365
365
|
fn: e,
|
|
366
366
|
state: r,
|
|
@@ -397,12 +397,12 @@ function ue(e, t) {
|
|
|
397
397
|
t || (Q = []), ne ? i = !0 : ne = [], Nt++;
|
|
398
398
|
try {
|
|
399
399
|
const r = e();
|
|
400
|
-
return
|
|
400
|
+
return lo(i), r;
|
|
401
401
|
} catch (r) {
|
|
402
402
|
i || (ne = null), Q = null, tr(r);
|
|
403
403
|
}
|
|
404
404
|
}
|
|
405
|
-
function
|
|
405
|
+
function lo(e) {
|
|
406
406
|
if (Q && (qi(Q), Q = null), e) return;
|
|
407
407
|
const t = ne;
|
|
408
408
|
ne = null, t.length && ue(() => _i(t), !1);
|
|
@@ -410,7 +410,7 @@ function ao(e) {
|
|
|
410
410
|
function qi(e) {
|
|
411
411
|
for (let t = 0; t < e.length; t++) at(e[t]);
|
|
412
412
|
}
|
|
413
|
-
function
|
|
413
|
+
function co(e) {
|
|
414
414
|
let t, i = 0;
|
|
415
415
|
for (t = 0; t < e.length; t++) {
|
|
416
416
|
const r = e[t];
|
|
@@ -458,27 +458,27 @@ function Ze(e) {
|
|
|
458
458
|
}
|
|
459
459
|
e.state = 0;
|
|
460
460
|
}
|
|
461
|
-
function
|
|
461
|
+
function Gt(e) {
|
|
462
462
|
return e instanceof Error ? e : new Error(typeof e == "string" ? e : "Unknown error", {
|
|
463
463
|
cause: e
|
|
464
464
|
});
|
|
465
465
|
}
|
|
466
466
|
function tr(e, t = C) {
|
|
467
|
-
throw
|
|
467
|
+
throw Gt(e);
|
|
468
468
|
}
|
|
469
|
-
function
|
|
470
|
-
if (typeof e == "function" && !e.length) return
|
|
469
|
+
function Wt(e) {
|
|
470
|
+
if (typeof e == "function" && !e.length) return Wt(e());
|
|
471
471
|
if (Array.isArray(e)) {
|
|
472
472
|
const t = [];
|
|
473
473
|
for (let i = 0; i < e.length; i++) {
|
|
474
|
-
const r =
|
|
474
|
+
const r = Wt(e[i]);
|
|
475
475
|
Array.isArray(r) ? t.push.apply(t, r) : t.push(r);
|
|
476
476
|
}
|
|
477
477
|
return t;
|
|
478
478
|
}
|
|
479
479
|
return e;
|
|
480
480
|
}
|
|
481
|
-
function
|
|
481
|
+
function so(e, t) {
|
|
482
482
|
return function(r) {
|
|
483
483
|
let o;
|
|
484
484
|
return S(
|
|
@@ -490,32 +490,32 @@ function co(e, t) {
|
|
|
490
490
|
), o;
|
|
491
491
|
};
|
|
492
492
|
}
|
|
493
|
-
const
|
|
493
|
+
const Mo = Symbol("fallback");
|
|
494
494
|
function Ii(e) {
|
|
495
495
|
for (let t = 0; t < e.length; t++) e[t]();
|
|
496
496
|
}
|
|
497
|
-
function
|
|
497
|
+
function uo(e, t, i = {}) {
|
|
498
498
|
let r = [], o = [], n = [], a = 0, l = t.length > 1 ? [] : null;
|
|
499
499
|
return Je(() => Ii(n)), () => {
|
|
500
500
|
let c = e() || [], s = c.length, M, u;
|
|
501
|
-
return c[
|
|
502
|
-
let d, N, I, b,
|
|
501
|
+
return c[Ut], Y(() => {
|
|
502
|
+
let d, N, I, b, m, p, j, w, h;
|
|
503
503
|
if (s === 0)
|
|
504
|
-
a !== 0 && (Ii(n), n = [], r = [], o = [], a = 0, l && (l = [])), i.fallback && (r = [
|
|
504
|
+
a !== 0 && (Ii(n), n = [], r = [], o = [], a = 0, l && (l = [])), i.fallback && (r = [Mo], o[0] = tt((k) => (n[0] = k, i.fallback())), a = 1);
|
|
505
505
|
else if (a === 0) {
|
|
506
506
|
for (o = new Array(s), u = 0; u < s; u++)
|
|
507
507
|
r[u] = c[u], o[u] = tt(g);
|
|
508
508
|
a = s;
|
|
509
509
|
} else {
|
|
510
|
-
for (I = new Array(s), b = new Array(s), l && (
|
|
511
|
-
for (j = a - 1,
|
|
512
|
-
I[
|
|
513
|
-
for (d = /* @__PURE__ */ new Map(), N = new Array(
|
|
510
|
+
for (I = new Array(s), b = new Array(s), l && (m = new Array(s)), p = 0, j = Math.min(a, s); p < j && r[p] === c[p]; p++) ;
|
|
511
|
+
for (j = a - 1, w = s - 1; j >= p && w >= p && r[j] === c[w]; j--, w--)
|
|
512
|
+
I[w] = o[j], b[w] = n[j], l && (m[w] = l[j]);
|
|
513
|
+
for (d = /* @__PURE__ */ new Map(), N = new Array(w + 1), u = w; u >= p; u--)
|
|
514
514
|
h = c[u], M = d.get(h), N[u] = M === void 0 ? -1 : M, d.set(h, u);
|
|
515
515
|
for (M = p; M <= j; M++)
|
|
516
|
-
h = r[M], u = d.get(h), u !== void 0 && u !== -1 ? (I[u] = o[M], b[u] = n[M], l && (
|
|
516
|
+
h = r[M], u = d.get(h), u !== void 0 && u !== -1 ? (I[u] = o[M], b[u] = n[M], l && (m[u] = l[M]), u = N[u], d.set(h, u)) : n[M]();
|
|
517
517
|
for (u = p; u < s; u++)
|
|
518
|
-
u in I ? (o[u] = I[u], n[u] = b[u], l && (l[u] =
|
|
518
|
+
u in I ? (o[u] = I[u], n[u] = b[u], l && (l[u] = m[u], l[u](u))) : o[u] = tt(g);
|
|
519
519
|
o = o.slice(0, a = s), r = c.slice(0);
|
|
520
520
|
}
|
|
521
521
|
return o;
|
|
@@ -535,7 +535,7 @@ function y(e, t) {
|
|
|
535
535
|
function $e() {
|
|
536
536
|
return !0;
|
|
537
537
|
}
|
|
538
|
-
const
|
|
538
|
+
const Rt = {
|
|
539
539
|
get(e, t, i) {
|
|
540
540
|
return t === F ? i : e.get(t);
|
|
541
541
|
},
|
|
@@ -559,10 +559,10 @@ const Gt = {
|
|
|
559
559
|
return e.keys();
|
|
560
560
|
}
|
|
561
561
|
};
|
|
562
|
-
function
|
|
562
|
+
function At(e) {
|
|
563
563
|
return (e = typeof e == "function" ? e() : e) ? e : {};
|
|
564
564
|
}
|
|
565
|
-
function
|
|
565
|
+
function go() {
|
|
566
566
|
for (let e = 0, t = this.length; e < t; ++e) {
|
|
567
567
|
const i = this[e]();
|
|
568
568
|
if (i !== void 0) return i;
|
|
@@ -579,23 +579,23 @@ function ir(...e) {
|
|
|
579
579
|
{
|
|
580
580
|
get(a) {
|
|
581
581
|
for (let l = e.length - 1; l >= 0; l--) {
|
|
582
|
-
const c =
|
|
582
|
+
const c = At(e[l])[a];
|
|
583
583
|
if (c !== void 0) return c;
|
|
584
584
|
}
|
|
585
585
|
},
|
|
586
586
|
has(a) {
|
|
587
587
|
for (let l = e.length - 1; l >= 0; l--)
|
|
588
|
-
if (a in
|
|
588
|
+
if (a in At(e[l])) return !0;
|
|
589
589
|
return !1;
|
|
590
590
|
},
|
|
591
591
|
keys() {
|
|
592
592
|
const a = [];
|
|
593
593
|
for (let l = 0; l < e.length; l++)
|
|
594
|
-
a.push(...Object.keys(
|
|
594
|
+
a.push(...Object.keys(At(e[l])));
|
|
595
595
|
return [...new Set(a)];
|
|
596
596
|
}
|
|
597
597
|
},
|
|
598
|
-
|
|
598
|
+
Rt
|
|
599
599
|
);
|
|
600
600
|
const i = {}, r = /* @__PURE__ */ Object.create(null);
|
|
601
601
|
for (let a = e.length - 1; a >= 0; a--) {
|
|
@@ -610,7 +610,7 @@ function ir(...e) {
|
|
|
610
610
|
r[M] = u.get ? {
|
|
611
611
|
enumerable: !0,
|
|
612
612
|
configurable: !0,
|
|
613
|
-
get:
|
|
613
|
+
get: go.bind(i[M] = [u.get.bind(l)])
|
|
614
614
|
} : u.value !== void 0 ? u : void 0;
|
|
615
615
|
else {
|
|
616
616
|
const g = i[M];
|
|
@@ -639,7 +639,7 @@ function rr(e, ...t) {
|
|
|
639
639
|
return a.filter((l) => l in e);
|
|
640
640
|
}
|
|
641
641
|
},
|
|
642
|
-
|
|
642
|
+
Rt
|
|
643
643
|
));
|
|
644
644
|
return n.push(
|
|
645
645
|
new Proxy(
|
|
@@ -654,7 +654,7 @@ function rr(e, ...t) {
|
|
|
654
654
|
return Object.keys(e).filter((a) => !o.has(a));
|
|
655
655
|
}
|
|
656
656
|
},
|
|
657
|
-
|
|
657
|
+
Rt
|
|
658
658
|
)
|
|
659
659
|
), n;
|
|
660
660
|
}
|
|
@@ -673,7 +673,7 @@ function ge(e) {
|
|
|
673
673
|
const t = "fallback" in e && {
|
|
674
674
|
fallback: () => e.fallback
|
|
675
675
|
};
|
|
676
|
-
return z(
|
|
676
|
+
return z(uo(() => e.each, e.children, t || void 0));
|
|
677
677
|
}
|
|
678
678
|
function P(e) {
|
|
679
679
|
const t = e.keyed, i = z(() => e.when, void 0, {
|
|
@@ -699,7 +699,7 @@ function P(e) {
|
|
|
699
699
|
void 0
|
|
700
700
|
);
|
|
701
701
|
}
|
|
702
|
-
function
|
|
702
|
+
function Io(e) {
|
|
703
703
|
let t = !1;
|
|
704
704
|
const i = (n, a) => (t ? n[1] === a[1] : !n[1] == !a[1]) && n[2] === a[2], r = $i(() => e.children), o = z(
|
|
705
705
|
() => {
|
|
@@ -738,7 +738,7 @@ function go(e) {
|
|
|
738
738
|
function Ni(e) {
|
|
739
739
|
return e;
|
|
740
740
|
}
|
|
741
|
-
const
|
|
741
|
+
const No = [
|
|
742
742
|
"allowfullscreen",
|
|
743
743
|
"async",
|
|
744
744
|
"autofocus",
|
|
@@ -764,7 +764,7 @@ const Io = [
|
|
|
764
764
|
"reversed",
|
|
765
765
|
"seamless",
|
|
766
766
|
"selected"
|
|
767
|
-
],
|
|
767
|
+
], jo = /* @__PURE__ */ new Set([
|
|
768
768
|
"className",
|
|
769
769
|
"value",
|
|
770
770
|
"readOnly",
|
|
@@ -772,16 +772,16 @@ const Io = [
|
|
|
772
772
|
"isMap",
|
|
773
773
|
"noModule",
|
|
774
774
|
"playsInline",
|
|
775
|
-
...
|
|
776
|
-
]),
|
|
775
|
+
...No
|
|
776
|
+
]), yo = /* @__PURE__ */ new Set([
|
|
777
777
|
"innerHTML",
|
|
778
778
|
"textContent",
|
|
779
779
|
"innerText",
|
|
780
780
|
"children"
|
|
781
|
-
]),
|
|
781
|
+
]), Do = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
|
|
782
782
|
className: "class",
|
|
783
783
|
htmlFor: "for"
|
|
784
|
-
}),
|
|
784
|
+
}), ho = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
|
|
785
785
|
class: "className",
|
|
786
786
|
formnovalidate: {
|
|
787
787
|
$: "formNoValidate",
|
|
@@ -806,11 +806,11 @@ const Io = [
|
|
|
806
806
|
TEXTAREA: 1
|
|
807
807
|
}
|
|
808
808
|
});
|
|
809
|
-
function
|
|
810
|
-
const i =
|
|
809
|
+
function bo(e, t) {
|
|
810
|
+
const i = ho[e];
|
|
811
811
|
return typeof i == "object" ? i[t] ? i.$ : void 0 : i;
|
|
812
812
|
}
|
|
813
|
-
const
|
|
813
|
+
const mo = /* @__PURE__ */ new Set([
|
|
814
814
|
"beforeinput",
|
|
815
815
|
"click",
|
|
816
816
|
"dblclick",
|
|
@@ -833,7 +833,7 @@ const bo = /* @__PURE__ */ new Set([
|
|
|
833
833
|
"touchend",
|
|
834
834
|
"touchmove",
|
|
835
835
|
"touchstart"
|
|
836
|
-
]),
|
|
836
|
+
]), wo = /* @__PURE__ */ new Set([
|
|
837
837
|
"altGlyph",
|
|
838
838
|
"altGlyphDef",
|
|
839
839
|
"altGlyphItem",
|
|
@@ -911,11 +911,11 @@ const bo = /* @__PURE__ */ new Set([
|
|
|
911
911
|
"use",
|
|
912
912
|
"view",
|
|
913
913
|
"vkern"
|
|
914
|
-
]),
|
|
914
|
+
]), Lo = {
|
|
915
915
|
xlink: "http://www.w3.org/1999/xlink",
|
|
916
916
|
xml: "http://www.w3.org/XML/1998/namespace"
|
|
917
917
|
};
|
|
918
|
-
function
|
|
918
|
+
function fo(e, t, i) {
|
|
919
919
|
let r = i.length, o = t.length, n = r, a = 0, l = 0, c = t[o - 1].nextSibling, s = null;
|
|
920
920
|
for (; a < o || l < n; ) {
|
|
921
921
|
if (t[a] === i[l]) {
|
|
@@ -955,7 +955,7 @@ function Lo(e, t, i) {
|
|
|
955
955
|
}
|
|
956
956
|
}
|
|
957
957
|
const ji = "_$DX_DELEGATE";
|
|
958
|
-
function
|
|
958
|
+
function f(e, t, i) {
|
|
959
959
|
let r;
|
|
960
960
|
const o = () => {
|
|
961
961
|
const a = document.createElement("template");
|
|
@@ -967,22 +967,22 @@ function Se(e, t = window.document) {
|
|
|
967
967
|
const i = t[ji] || (t[ji] = /* @__PURE__ */ new Set());
|
|
968
968
|
for (let r = 0, o = e.length; r < o; r++) {
|
|
969
969
|
const n = e[r];
|
|
970
|
-
i.has(n) || (i.add(n), t.addEventListener(n,
|
|
970
|
+
i.has(n) || (i.add(n), t.addEventListener(n, vo));
|
|
971
971
|
}
|
|
972
972
|
}
|
|
973
|
-
function
|
|
973
|
+
function Z(e, t, i) {
|
|
974
974
|
i == null ? e.removeAttribute(t) : e.setAttribute(t, i);
|
|
975
975
|
}
|
|
976
976
|
function xo(e, t, i, r) {
|
|
977
977
|
r == null ? e.removeAttributeNS(t, i) : e.setAttributeNS(t, i, r);
|
|
978
978
|
}
|
|
979
|
-
function
|
|
979
|
+
function po(e, t, i) {
|
|
980
980
|
i ? e.setAttribute(t, "") : e.removeAttribute(t);
|
|
981
981
|
}
|
|
982
982
|
function K(e, t) {
|
|
983
983
|
t == null ? e.removeAttribute("class") : e.className = t;
|
|
984
984
|
}
|
|
985
|
-
function
|
|
985
|
+
function Bt(e, t, i, r) {
|
|
986
986
|
if (r)
|
|
987
987
|
Array.isArray(i) ? (e[`$$${t}`] = i[0], e[`$$${t}Data`] = i[1]) : e[`$$${t}`] = i;
|
|
988
988
|
else if (Array.isArray(i)) {
|
|
@@ -990,7 +990,7 @@ function Wt(e, t, i, r) {
|
|
|
990
990
|
e.addEventListener(t, i[0] = (n) => o.call(e, i[1], n));
|
|
991
991
|
} else e.addEventListener(t, i, typeof i != "function" && i);
|
|
992
992
|
}
|
|
993
|
-
function
|
|
993
|
+
function De(e, t, i = {}) {
|
|
994
994
|
const r = Object.keys(t || {}), o = Object.keys(i);
|
|
995
995
|
let n, a;
|
|
996
996
|
for (n = 0, a = o.length; n < a; n++) {
|
|
@@ -1004,7 +1004,7 @@ function ye(e, t, i = {}) {
|
|
|
1004
1004
|
return i;
|
|
1005
1005
|
}
|
|
1006
1006
|
function nr(e, t, i) {
|
|
1007
|
-
if (!t) return i ?
|
|
1007
|
+
if (!t) return i ? Z(e, "style") : t;
|
|
1008
1008
|
const r = e.style;
|
|
1009
1009
|
if (typeof t == "string") return r.cssText = t;
|
|
1010
1010
|
typeof i == "string" && (r.cssText = i = void 0), i || (i = {}), t || (t = {});
|
|
@@ -1015,20 +1015,20 @@ function nr(e, t, i) {
|
|
|
1015
1015
|
o = t[n], o !== i[n] && (r.setProperty(n, o), i[n] = o);
|
|
1016
1016
|
return i;
|
|
1017
1017
|
}
|
|
1018
|
-
function
|
|
1018
|
+
function To(e, t = {}, i, r) {
|
|
1019
1019
|
const o = {};
|
|
1020
1020
|
return S(
|
|
1021
1021
|
() => o.children = Pe(e, t.children, o.children)
|
|
1022
|
-
), S(() => typeof t.ref == "function" &&
|
|
1022
|
+
), S(() => typeof t.ref == "function" && je(t.ref, e)), S(() => zo(e, t, i, !0, o, !0)), o;
|
|
1023
1023
|
}
|
|
1024
|
-
function
|
|
1024
|
+
function je(e, t, i) {
|
|
1025
1025
|
return Y(() => e(t, i));
|
|
1026
1026
|
}
|
|
1027
1027
|
function D(e, t, i, r) {
|
|
1028
1028
|
if (i !== void 0 && !r && (r = []), typeof t != "function") return Pe(e, t, r, i);
|
|
1029
1029
|
S((o) => Pe(e, t(), o, i), r);
|
|
1030
1030
|
}
|
|
1031
|
-
function
|
|
1031
|
+
function zo(e, t, i, r, o = {}, n = !1) {
|
|
1032
1032
|
t || (t = {});
|
|
1033
1033
|
for (const a in o)
|
|
1034
1034
|
if (!(a in t)) {
|
|
@@ -1042,7 +1042,7 @@ function To(e, t, i, r, o = {}, n = !1) {
|
|
|
1042
1042
|
o[a] = Di(e, a, l, o[a], i, n, t);
|
|
1043
1043
|
}
|
|
1044
1044
|
}
|
|
1045
|
-
function
|
|
1045
|
+
function Ao(e) {
|
|
1046
1046
|
return e.toLowerCase().replace(/-([a-z])/g, (t, i) => i.toUpperCase());
|
|
1047
1047
|
}
|
|
1048
1048
|
function yi(e, t, i) {
|
|
@@ -1053,7 +1053,7 @@ function yi(e, t, i) {
|
|
|
1053
1053
|
function Di(e, t, i, r, o, n, a) {
|
|
1054
1054
|
let l, c, s, M, u;
|
|
1055
1055
|
if (t === "style") return nr(e, i, r);
|
|
1056
|
-
if (t === "classList") return
|
|
1056
|
+
if (t === "classList") return De(e, i, r);
|
|
1057
1057
|
if (i === r) return r;
|
|
1058
1058
|
if (t === "ref")
|
|
1059
1059
|
n || i(e);
|
|
@@ -1064,25 +1064,25 @@ function Di(e, t, i, r, o, n, a) {
|
|
|
1064
1064
|
const g = t.slice(10);
|
|
1065
1065
|
r && e.removeEventListener(g, r, !0), i && e.addEventListener(g, i, !0);
|
|
1066
1066
|
} else if (t.slice(0, 2) === "on") {
|
|
1067
|
-
const g = t.slice(2).toLowerCase(), d =
|
|
1067
|
+
const g = t.slice(2).toLowerCase(), d = mo.has(g);
|
|
1068
1068
|
if (!d && r) {
|
|
1069
1069
|
const N = Array.isArray(r) ? r[0] : r;
|
|
1070
1070
|
e.removeEventListener(g, N);
|
|
1071
1071
|
}
|
|
1072
|
-
(d || i) && (
|
|
1072
|
+
(d || i) && (Bt(e, g, i, d), d && Se([g]));
|
|
1073
1073
|
} else if (t.slice(0, 5) === "attr:")
|
|
1074
|
-
|
|
1074
|
+
Z(e, t.slice(5), i);
|
|
1075
1075
|
else if (t.slice(0, 5) === "bool:")
|
|
1076
|
-
|
|
1077
|
-
else if ((u = t.slice(0, 5) === "prop:") || (s =
|
|
1078
|
-
u && (t = t.slice(5), c = !0), t === "class" || t === "className" ? K(e, i) : l && !c && !s ? e[
|
|
1076
|
+
po(e, t.slice(5), i);
|
|
1077
|
+
else if ((u = t.slice(0, 5) === "prop:") || (s = yo.has(t)) || !o && ((M = bo(t, e.tagName)) || (c = jo.has(t))) || (l = e.nodeName.includes("-") || "is" in a))
|
|
1078
|
+
u && (t = t.slice(5), c = !0), t === "class" || t === "className" ? K(e, i) : l && !c && !s ? e[Ao(t)] = i : e[M || t] = i;
|
|
1079
1079
|
else {
|
|
1080
|
-
const g = o && t.indexOf(":") > -1 &&
|
|
1081
|
-
g ? xo(e, g, t, i) :
|
|
1080
|
+
const g = o && t.indexOf(":") > -1 && Lo[t.split(":")[0]];
|
|
1081
|
+
g ? xo(e, g, t, i) : Z(e, Do[t] || t, i);
|
|
1082
1082
|
}
|
|
1083
1083
|
return i;
|
|
1084
1084
|
}
|
|
1085
|
-
function
|
|
1085
|
+
function vo(e) {
|
|
1086
1086
|
let t = e.target;
|
|
1087
1087
|
const i = `$$${e.type}`, r = e.target, o = e.currentTarget, n = (c) => Object.defineProperty(e, "target", {
|
|
1088
1088
|
configurable: !0,
|
|
@@ -1125,11 +1125,11 @@ function Pe(e, t, i, r, o) {
|
|
|
1125
1125
|
return i;
|
|
1126
1126
|
if (a) {
|
|
1127
1127
|
let l = i[0];
|
|
1128
|
-
l && l.nodeType === 3 ? l.data !== t && (l.data = t) : l = document.createTextNode(t), i =
|
|
1128
|
+
l && l.nodeType === 3 ? l.data !== t && (l.data = t) : l = document.createTextNode(t), i = we(e, i, r, l);
|
|
1129
1129
|
} else
|
|
1130
1130
|
i !== "" && typeof i == "string" ? i = e.firstChild.data = t : i = e.textContent = t;
|
|
1131
1131
|
} else if (t == null || n === "boolean")
|
|
1132
|
-
i =
|
|
1132
|
+
i = we(e, i, r);
|
|
1133
1133
|
else {
|
|
1134
1134
|
if (n === "function")
|
|
1135
1135
|
return S(() => {
|
|
@@ -1139,34 +1139,34 @@ function Pe(e, t, i, r, o) {
|
|
|
1139
1139
|
}), () => i;
|
|
1140
1140
|
if (Array.isArray(t)) {
|
|
1141
1141
|
const l = [], c = i && Array.isArray(i);
|
|
1142
|
-
if (
|
|
1142
|
+
if (Ht(l, t, i, o))
|
|
1143
1143
|
return S(() => i = Pe(e, l, i, r, !0)), () => i;
|
|
1144
1144
|
if (l.length === 0) {
|
|
1145
|
-
if (i =
|
|
1146
|
-
} else c ? i.length === 0 ? hi(e, l, r) :
|
|
1145
|
+
if (i = we(e, i, r), a) return i;
|
|
1146
|
+
} else c ? i.length === 0 ? hi(e, l, r) : fo(e, i, l) : (i && we(e), hi(e, l));
|
|
1147
1147
|
i = l;
|
|
1148
1148
|
} else if (t.nodeType) {
|
|
1149
1149
|
if (Array.isArray(i)) {
|
|
1150
|
-
if (a) return i =
|
|
1151
|
-
|
|
1150
|
+
if (a) return i = we(e, i, r, t);
|
|
1151
|
+
we(e, i, null, t);
|
|
1152
1152
|
} else i == null || i === "" || !e.firstChild ? e.appendChild(t) : e.replaceChild(t, e.firstChild);
|
|
1153
1153
|
i = t;
|
|
1154
1154
|
}
|
|
1155
1155
|
}
|
|
1156
1156
|
return i;
|
|
1157
1157
|
}
|
|
1158
|
-
function
|
|
1158
|
+
function Ht(e, t, i, r) {
|
|
1159
1159
|
let o = !1;
|
|
1160
1160
|
for (let n = 0, a = t.length; n < a; n++) {
|
|
1161
1161
|
let l = t[n], c = i && i[e.length], s;
|
|
1162
1162
|
if (!(l == null || l === !0 || l === !1)) if ((s = typeof l) == "object" && l.nodeType)
|
|
1163
1163
|
e.push(l);
|
|
1164
1164
|
else if (Array.isArray(l))
|
|
1165
|
-
o =
|
|
1165
|
+
o = Ht(e, l, c) || o;
|
|
1166
1166
|
else if (s === "function")
|
|
1167
1167
|
if (r) {
|
|
1168
1168
|
for (; typeof l == "function"; ) l = l();
|
|
1169
|
-
o =
|
|
1169
|
+
o = Ht(
|
|
1170
1170
|
e,
|
|
1171
1171
|
Array.isArray(l) ? l : [l],
|
|
1172
1172
|
Array.isArray(c) ? c : [c]
|
|
@@ -1183,7 +1183,7 @@ function Rt(e, t, i, r) {
|
|
|
1183
1183
|
function hi(e, t, i = null) {
|
|
1184
1184
|
for (let r = 0, o = t.length; r < o; r++) e.insertBefore(t[r], i);
|
|
1185
1185
|
}
|
|
1186
|
-
function
|
|
1186
|
+
function we(e, t, i, r) {
|
|
1187
1187
|
if (i === void 0) return e.textContent = "";
|
|
1188
1188
|
const o = r || document.createTextNode("");
|
|
1189
1189
|
if (t.length) {
|
|
@@ -1198,9 +1198,9 @@ function me(e, t, i, r) {
|
|
|
1198
1198
|
} else e.insertBefore(o, i);
|
|
1199
1199
|
return [o];
|
|
1200
1200
|
}
|
|
1201
|
-
const
|
|
1202
|
-
function
|
|
1203
|
-
return t ? document.createElementNS(
|
|
1201
|
+
const ko = "http://www.w3.org/2000/svg";
|
|
1202
|
+
function So(e, t = !1) {
|
|
1203
|
+
return t ? document.createElementNS(ko, e) : document.createElement(e);
|
|
1204
1204
|
}
|
|
1205
1205
|
function qt(e) {
|
|
1206
1206
|
const [t, i] = rr(e, ["component"]), r = z(() => t.component);
|
|
@@ -1210,12 +1210,12 @@ function qt(e) {
|
|
|
1210
1210
|
case "function":
|
|
1211
1211
|
return Y(() => o(i));
|
|
1212
1212
|
case "string":
|
|
1213
|
-
const n =
|
|
1214
|
-
return
|
|
1213
|
+
const n = wo.has(o), a = So(o, n);
|
|
1214
|
+
return To(a, i, n), a;
|
|
1215
1215
|
}
|
|
1216
1216
|
});
|
|
1217
1217
|
}
|
|
1218
|
-
function
|
|
1218
|
+
function Co(e) {
|
|
1219
1219
|
const t = Object.keys(e), i = {};
|
|
1220
1220
|
for (let r = 0; r < t.length; r++) {
|
|
1221
1221
|
const [o, n] = O(e[t[r]]);
|
|
@@ -1228,30 +1228,30 @@ function So(e) {
|
|
|
1228
1228
|
}
|
|
1229
1229
|
return i;
|
|
1230
1230
|
}
|
|
1231
|
-
function
|
|
1231
|
+
function Eo(e) {
|
|
1232
1232
|
if (e.assignedSlot && e.assignedSlot._$owner) return e.assignedSlot._$owner;
|
|
1233
1233
|
let t = e.parentNode;
|
|
1234
1234
|
for (; t && !t._$owner && !(t.assignedSlot && t.assignedSlot._$owner); )
|
|
1235
1235
|
t = t.parentNode;
|
|
1236
1236
|
return t && t.assignedSlot ? t.assignedSlot._$owner : e._$owner;
|
|
1237
1237
|
}
|
|
1238
|
-
function
|
|
1238
|
+
function Oo(e) {
|
|
1239
1239
|
return (t, i) => {
|
|
1240
1240
|
const { element: r } = i;
|
|
1241
1241
|
return tt((o) => {
|
|
1242
|
-
const n =
|
|
1242
|
+
const n = Co(t);
|
|
1243
1243
|
r.addPropertyChangedCallback((l, c) => n[l] = c), r.addReleaseCallback(() => {
|
|
1244
1244
|
r.renderRoot.textContent = "", o();
|
|
1245
1245
|
});
|
|
1246
1246
|
const a = e(n, i);
|
|
1247
1247
|
return D(r.renderRoot, a);
|
|
1248
|
-
},
|
|
1248
|
+
}, Eo(r));
|
|
1249
1249
|
};
|
|
1250
1250
|
}
|
|
1251
|
-
function
|
|
1252
|
-
return arguments.length === 2 && (i = t, t = {}),
|
|
1251
|
+
function Yo(e, t, i) {
|
|
1252
|
+
return arguments.length === 2 && (i = t, t = {}), Kr(e, t)(Oo(i));
|
|
1253
1253
|
}
|
|
1254
|
-
var
|
|
1254
|
+
var ht = [
|
|
1255
1255
|
// Vike
|
|
1256
1256
|
{
|
|
1257
1257
|
category: "Frontend Framework",
|
|
@@ -1863,8 +1863,8 @@ var yt = [
|
|
|
1863
1863
|
url: "https://logrocket.com",
|
|
1864
1864
|
disabled: !0
|
|
1865
1865
|
}
|
|
1866
|
-
],
|
|
1867
|
-
|
|
1866
|
+
], Qo = ht.map((e) => e.flag);
|
|
1867
|
+
ht.filter((e) => !e.invisibleCli).map((e) => e.flag);
|
|
1868
1868
|
var ar = /* @__PURE__ */ ((e) => (e.Frontend = "Frontend", e.Data = "Data", e.Deployment = "Deployment", e.Utilities = "Utilities", e))(ar || {}), lr = [
|
|
1869
1869
|
{
|
|
1870
1870
|
label: "Frontend Framework",
|
|
@@ -1942,7 +1942,7 @@ function Xe(e, t, i) {
|
|
|
1942
1942
|
const r = Array.from(cr(i));
|
|
1943
1943
|
return (o) => o.has(t) && !r.every((n) => o.has(n)) && e;
|
|
1944
1944
|
}
|
|
1945
|
-
function
|
|
1945
|
+
function Uo(e, t) {
|
|
1946
1946
|
return (i) => i.has(t) && e;
|
|
1947
1947
|
}
|
|
1948
1948
|
function Ie(e, t) {
|
|
@@ -1951,13 +1951,13 @@ function Ie(e, t) {
|
|
|
1951
1951
|
function cr(e) {
|
|
1952
1952
|
const t = /* @__PURE__ */ new Set();
|
|
1953
1953
|
for (const i of e)
|
|
1954
|
-
|
|
1954
|
+
Qo.includes(i) && t.add(ht.find((r) => r.flag === i).category), t.add(i);
|
|
1955
1955
|
return t;
|
|
1956
1956
|
}
|
|
1957
|
-
var
|
|
1957
|
+
var Zo = [
|
|
1958
1958
|
Xe(0, "Auth", ["Server"]),
|
|
1959
1959
|
Xe(1, "compiled-css", ["react"]),
|
|
1960
|
-
|
|
1960
|
+
Uo(10, "hattip"),
|
|
1961
1961
|
Xe(2, "drizzle", ["Server"]),
|
|
1962
1962
|
Xe(3, "Data fetching", ["Server"]),
|
|
1963
1963
|
Ie(5, (e) => e.has("cloudflare") ? e.has("hono") || e.has("hattip") ? !1 : e.has("Server") : !1),
|
|
@@ -1968,19 +1968,19 @@ var Uo = [
|
|
|
1968
1968
|
Ie(9, (e) => e.has("shadcn-ui") ? e.has("daisyui") || e.has("compiled-css") : !1),
|
|
1969
1969
|
Ie(11, (e) => e.has("drizzle") || e.has("sqlite") || e.has("cloudflare"))
|
|
1970
1970
|
];
|
|
1971
|
-
function
|
|
1971
|
+
function Po(e, t) {
|
|
1972
1972
|
const i = cr(e), r = [];
|
|
1973
|
-
for (const o of
|
|
1973
|
+
for (const o of Zo) {
|
|
1974
1974
|
const n = o(i);
|
|
1975
1975
|
typeof n == "number" && (n in t ? r.push(t[n]) : console.warn("No handler defined for rule", n));
|
|
1976
1976
|
}
|
|
1977
1977
|
return r;
|
|
1978
1978
|
}
|
|
1979
|
-
const
|
|
1979
|
+
const Vt = Symbol("store-raw"), fe = Symbol("store-node"), oe = Symbol("store-has"), sr = Symbol("store-self");
|
|
1980
1980
|
function Mr(e) {
|
|
1981
1981
|
let t = e[F];
|
|
1982
1982
|
if (!t && (Object.defineProperty(e, F, {
|
|
1983
|
-
value: t = new Proxy(e,
|
|
1983
|
+
value: t = new Proxy(e, Ro)
|
|
1984
1984
|
}), !Array.isArray(e))) {
|
|
1985
1985
|
const i = Object.keys(e), r = Object.getOwnPropertyDescriptors(e);
|
|
1986
1986
|
for (let o = 0, n = i.length; o < n; o++) {
|
|
@@ -1999,7 +1999,7 @@ function ct(e) {
|
|
|
1999
1999
|
}
|
|
2000
2000
|
function Ge(e, t = /* @__PURE__ */ new Set()) {
|
|
2001
2001
|
let i, r, o, n;
|
|
2002
|
-
if (i = e != null && e[
|
|
2002
|
+
if (i = e != null && e[Vt]) return i;
|
|
2003
2003
|
if (!ct(e) || t.has(e)) return e;
|
|
2004
2004
|
if (Array.isArray(e)) {
|
|
2005
2005
|
Object.isFrozen(e) ? e = e.slice(0) : t.add(e);
|
|
@@ -2027,33 +2027,33 @@ function We(e, t, i) {
|
|
|
2027
2027
|
});
|
|
2028
2028
|
return r.$ = o, e[t] = r;
|
|
2029
2029
|
}
|
|
2030
|
-
function
|
|
2030
|
+
function Go(e, t) {
|
|
2031
2031
|
const i = Reflect.getOwnPropertyDescriptor(e, t);
|
|
2032
|
-
return !i || i.get || !i.configurable || t === F || t ===
|
|
2032
|
+
return !i || i.get || !i.configurable || t === F || t === fe || (delete i.value, delete i.writable, i.get = () => e[F][t]), i;
|
|
2033
2033
|
}
|
|
2034
2034
|
function ur(e) {
|
|
2035
|
-
|
|
2035
|
+
Pt() && We(st(e, fe), sr)();
|
|
2036
2036
|
}
|
|
2037
|
-
function
|
|
2037
|
+
function Wo(e) {
|
|
2038
2038
|
return ur(e), Reflect.ownKeys(e);
|
|
2039
2039
|
}
|
|
2040
|
-
const
|
|
2040
|
+
const Ro = {
|
|
2041
2041
|
get(e, t, i) {
|
|
2042
|
-
if (t ===
|
|
2042
|
+
if (t === Vt) return e;
|
|
2043
2043
|
if (t === F) return i;
|
|
2044
|
-
if (t ===
|
|
2044
|
+
if (t === Ut)
|
|
2045
2045
|
return ur(e), i;
|
|
2046
|
-
const r = st(e,
|
|
2046
|
+
const r = st(e, fe), o = r[t];
|
|
2047
2047
|
let n = o ? o() : e[t];
|
|
2048
|
-
if (t ===
|
|
2048
|
+
if (t === fe || t === oe || t === "__proto__") return n;
|
|
2049
2049
|
if (!o) {
|
|
2050
2050
|
const a = Object.getOwnPropertyDescriptor(e, t);
|
|
2051
|
-
|
|
2051
|
+
Pt() && (typeof n != "function" || e.hasOwnProperty(t)) && !(a && a.get) && (n = We(r, t, n)());
|
|
2052
2052
|
}
|
|
2053
2053
|
return ct(n) ? Mr(n) : n;
|
|
2054
2054
|
},
|
|
2055
2055
|
has(e, t) {
|
|
2056
|
-
return t ===
|
|
2056
|
+
return t === Vt || t === F || t === Ut || t === fe || t === oe || t === "__proto__" ? !0 : (Pt() && We(st(e, oe), t)(), t in e);
|
|
2057
2057
|
},
|
|
2058
2058
|
set() {
|
|
2059
2059
|
return !0;
|
|
@@ -2061,14 +2061,14 @@ const Wo = {
|
|
|
2061
2061
|
deleteProperty() {
|
|
2062
2062
|
return !0;
|
|
2063
2063
|
},
|
|
2064
|
-
ownKeys:
|
|
2065
|
-
getOwnPropertyDescriptor:
|
|
2064
|
+
ownKeys: Wo,
|
|
2065
|
+
getOwnPropertyDescriptor: Go
|
|
2066
2066
|
};
|
|
2067
2067
|
function Mt(e, t, i, r = !1) {
|
|
2068
2068
|
if (!r && e[t] === i) return;
|
|
2069
2069
|
const o = e[t], n = e.length;
|
|
2070
2070
|
i === void 0 ? (delete e[t], e[oe] && e[oe][t] && o !== void 0 && e[oe][t].$()) : (e[t] = i, e[oe] && e[oe][t] && o === void 0 && e[oe][t].$());
|
|
2071
|
-
let a = st(e,
|
|
2071
|
+
let a = st(e, fe), l;
|
|
2072
2072
|
if ((l = We(a, t, o)) && l.$(() => i), Array.isArray(e) && e.length !== n) {
|
|
2073
2073
|
for (let c = e.length; c < n; c++) (l = a[c]) && l.$();
|
|
2074
2074
|
(l = We(a, "length", n)) && l.$(e.length);
|
|
@@ -2082,7 +2082,7 @@ function gr(e, t) {
|
|
|
2082
2082
|
Mt(e, o, t[o]);
|
|
2083
2083
|
}
|
|
2084
2084
|
}
|
|
2085
|
-
function
|
|
2085
|
+
function Bo(e, t) {
|
|
2086
2086
|
if (typeof t == "function" && (t = t(e)), t = Ge(t), Array.isArray(t)) {
|
|
2087
2087
|
if (e === t) return;
|
|
2088
2088
|
let i = 0, r = t.length;
|
|
@@ -2120,95 +2120,127 @@ function Ye(e, t, i = []) {
|
|
|
2120
2120
|
let n = t[0];
|
|
2121
2121
|
typeof n == "function" && (n = n(o, i), n === o) || r === void 0 && n == null || (n = Ge(n), r === void 0 || ct(o) && ct(n) && !Array.isArray(n) ? gr(o, n) : Mt(e, r, n));
|
|
2122
2122
|
}
|
|
2123
|
-
function
|
|
2123
|
+
function Ho(...[e, t]) {
|
|
2124
2124
|
const i = Ge(e || {}), r = Array.isArray(i), o = Mr(i);
|
|
2125
2125
|
function n(...a) {
|
|
2126
|
-
|
|
2127
|
-
r && a.length === 1 ?
|
|
2126
|
+
Zt(() => {
|
|
2127
|
+
r && a.length === 1 ? Bo(i, a[0]) : Ye(i, a);
|
|
2128
2128
|
});
|
|
2129
2129
|
}
|
|
2130
2130
|
return [o, n];
|
|
2131
2131
|
}
|
|
2132
|
-
var
|
|
2132
|
+
var Vo = /* @__PURE__ */ f("<div>");
|
|
2133
|
+
const dr = yt();
|
|
2134
|
+
function Jo(e) {
|
|
2135
|
+
let t;
|
|
2136
|
+
jt(() => {
|
|
2137
|
+
if (t) {
|
|
2138
|
+
const o = Fo(t);
|
|
2139
|
+
r(o);
|
|
2140
|
+
}
|
|
2141
|
+
});
|
|
2142
|
+
const [i, r] = O(document);
|
|
2143
|
+
return y(dr.Provider, {
|
|
2144
|
+
value: i,
|
|
2145
|
+
get children() {
|
|
2146
|
+
var o = Vo(), n = t;
|
|
2147
|
+
return typeof n == "function" ? je(n, o) : t = o, o.style.setProperty("display", "contents"), D(o, () => e.children), o;
|
|
2148
|
+
}
|
|
2149
|
+
});
|
|
2150
|
+
}
|
|
2151
|
+
function _o() {
|
|
2152
|
+
return U(dr);
|
|
2153
|
+
}
|
|
2154
|
+
function Fo(e) {
|
|
2155
|
+
let t = e;
|
|
2156
|
+
for (; t; ) {
|
|
2157
|
+
if (t instanceof ShadowRoot)
|
|
2158
|
+
return t;
|
|
2159
|
+
if (t = t.parentNode, !t || t === document)
|
|
2160
|
+
break;
|
|
2161
|
+
}
|
|
2162
|
+
return document;
|
|
2163
|
+
}
|
|
2164
|
+
var $o = /* @__PURE__ */ f('<span class=inline-block>A <span class=font-bold>Server</span> is required when using <span class=font-bold>Auth</span>. Check <a class=link href=https://vike.dev/integration#server-side-tools target=_blank>Vike documentation.</a><ul class="list-custom list-dot"><li>Either pick a server (Express.js / H3 / ...) or unselect <span class=font-bold>'), Xo = /* @__PURE__ */ f('<span class=inline-block><span class=font-bold>React</span> is required when using <span class=font-bold>Compiled</span>.<ul class="list-custom list-dot"><li>Either pick React or unselect <span class=font-bold>Compiled'), Ko = /* @__PURE__ */ f('<span class=inline-block><span class=font-bold>React</span> is required when using <span class=font-bold>Mantine</span>.<ul class="list-custom list-dot"><li>Either pick React or unselect <span class=font-bold>Mantine'), qo = /* @__PURE__ */ f("<span class=inline-block><span class=font-bold>HatTip</span> is an experimental project. Prefer <span class=font-bold>(Hono / Express.js / H3 / Fastify)</span> for production use"), en = /* @__PURE__ */ f('<span class=inline-block>A <span class=font-bold>Server</span> is required when using <span class=font-bold>Drizzle</span>.<ul class="list-custom list-dot"><li>Either pick a server (Express.js / H3 / ...) or unselect <span class=font-bold>Drizzle'), tn = /* @__PURE__ */ f('<span class=inline-block>A <span class=font-bold>Server</span> is required when using <span class=font-bold>Data fetching</span>.<ul class="list-custom list-dot"><li>Either pick a server (Express.js / H3 / ...) or unselect <span class=font-bold>'), rn = /* @__PURE__ */ f('<span class=inline-block><span class=font-bold>Cloudflare</span> is not compatible with <span class=font-bold></span>.<ul class="list-custom list-dot"><li>Either pick a <span class=font-bold>Hono</span> or <span class=font-bold>HatTip</span>, or unselect <span class=font-bold>'), on = /* @__PURE__ */ f('<span class=inline-block><span class=font-bold>Lucia</span> requires a <span class=font-bold>Database</span>, and is currently only compatible with <span class=font-bold>SQLite</span> or <span class=font-bold>Drizzle</span><ul class="list-custom list-dot"><li>Either pick a <span class=font-bold>SQLite</span> or <span class=font-bold>Drizzle</span>, or unselect <span class=font-bold>Lucia'), nn = /* @__PURE__ */ f('<span class=inline-block><ul class="list-custom list-dot"><li>Compatible servers: <span class=font-bold>Hono</span>, <span class=font-bold>HatTip'), bi = /* @__PURE__ */ f("<span class=font-bold>AWS"), an = /* @__PURE__ */ f("<span class=font-bold>"), ln = /* @__PURE__ */ f('<span class=inline-block><span class=font-bold>React</span> is required with <span class=font-bold>shadcn/ui</span>.<ul class="list-custom list-dot"><li>Either pick a <span class=font-bold>React</span> or unselect <span class=font-bold>shadcn/ui'), cn = /* @__PURE__ */ f("<span class=inline-block><span class=font-bold>shadcn/ui</span> integration is tied to <span class=font-bold>TailwindCSS</span>. Using another CSS library with it may have unpredictable behaviour.");
|
|
2133
2165
|
function re(e) {
|
|
2134
2166
|
return {
|
|
2135
2167
|
type: "error",
|
|
2136
2168
|
value: e
|
|
2137
2169
|
};
|
|
2138
2170
|
}
|
|
2139
|
-
function
|
|
2171
|
+
function sn(e) {
|
|
2140
2172
|
return {
|
|
2141
2173
|
type: "warning",
|
|
2142
2174
|
value: e
|
|
2143
2175
|
};
|
|
2144
2176
|
}
|
|
2145
|
-
function
|
|
2177
|
+
function Mn(e) {
|
|
2146
2178
|
return {
|
|
2147
2179
|
type: "info",
|
|
2148
2180
|
value: e
|
|
2149
2181
|
};
|
|
2150
2182
|
}
|
|
2151
|
-
function
|
|
2183
|
+
function un(e) {
|
|
2152
2184
|
return {
|
|
2153
2185
|
type: "invisible",
|
|
2154
2186
|
value: e
|
|
2155
2187
|
};
|
|
2156
2188
|
}
|
|
2157
|
-
const
|
|
2189
|
+
const gn = {
|
|
2158
2190
|
[W.ERROR_AUTH_R_SERVER]: re(() => {
|
|
2159
2191
|
const {
|
|
2160
2192
|
selectedFeatures: e
|
|
2161
|
-
} =
|
|
2193
|
+
} = U(R), t = z(() => {
|
|
2162
2194
|
var i;
|
|
2163
2195
|
return (i = e().filter((r) => r.category === "Auth")) == null ? void 0 : i[0].label;
|
|
2164
2196
|
});
|
|
2165
2197
|
return (() => {
|
|
2166
|
-
var i =
|
|
2198
|
+
var i = $o(), r = i.firstChild, o = r.nextSibling, n = o.nextSibling, a = n.nextSibling, l = a.nextSibling, c = l.nextSibling, s = c.nextSibling, M = s.firstChild, u = M.firstChild, g = u.nextSibling;
|
|
2167
2199
|
return D(g, t), i;
|
|
2168
2200
|
})();
|
|
2169
2201
|
}),
|
|
2170
|
-
[W.ERROR_COMPILED_R_REACT]: re(() =>
|
|
2171
|
-
[W.ERROR_MANTINE_R_REACT]: re(() =>
|
|
2172
|
-
[W.INFO_HATTIP]:
|
|
2173
|
-
[W.ERROR_DRIZZLE_R_SERVER]: re(() =>
|
|
2202
|
+
[W.ERROR_COMPILED_R_REACT]: re(() => Xo()),
|
|
2203
|
+
[W.ERROR_MANTINE_R_REACT]: re(() => Ko()),
|
|
2204
|
+
[W.INFO_HATTIP]: Mn(() => qo()),
|
|
2205
|
+
[W.ERROR_DRIZZLE_R_SERVER]: re(() => en()),
|
|
2174
2206
|
[W.ERROR_DATA_R_SERVER]: re(() => {
|
|
2175
2207
|
const {
|
|
2176
2208
|
selectedFeatures: e
|
|
2177
|
-
} =
|
|
2209
|
+
} = U(R), t = z(() => {
|
|
2178
2210
|
var i;
|
|
2179
2211
|
return (i = e().filter((r) => r.category === "Data fetching")) == null ? void 0 : i[0].label;
|
|
2180
2212
|
});
|
|
2181
2213
|
return (() => {
|
|
2182
|
-
var i =
|
|
2214
|
+
var i = tn(), r = i.firstChild, o = r.nextSibling, n = o.nextSibling, a = n.nextSibling, l = a.nextSibling, c = l.nextSibling, s = c.firstChild, M = s.firstChild, u = M.nextSibling;
|
|
2183
2215
|
return D(u, t), i;
|
|
2184
2216
|
})();
|
|
2185
2217
|
}),
|
|
2186
2218
|
[W.ERROR_CLOUDFLARE_R_COMPAT_SERVER]: re(() => {
|
|
2187
2219
|
const {
|
|
2188
2220
|
selectedFeatures: e
|
|
2189
|
-
} =
|
|
2221
|
+
} = U(R), t = z(() => {
|
|
2190
2222
|
var i;
|
|
2191
2223
|
return (i = e().filter((r) => r.category === "Server")) == null ? void 0 : i[0].label;
|
|
2192
2224
|
});
|
|
2193
2225
|
return (() => {
|
|
2194
|
-
var i =
|
|
2226
|
+
var i = rn(), r = i.firstChild, o = r.nextSibling, n = o.nextSibling, a = n.nextSibling, l = a.nextSibling, c = l.firstChild, s = c.firstChild, M = s.nextSibling, u = M.nextSibling, g = u.nextSibling, d = g.nextSibling, N = d.nextSibling;
|
|
2195
2227
|
return D(n, t), D(N, t), i;
|
|
2196
2228
|
})();
|
|
2197
2229
|
}),
|
|
2198
|
-
[W.ERROR_LUCIA_R_COMPAT_DATABASE]: re(() =>
|
|
2230
|
+
[W.ERROR_LUCIA_R_COMPAT_DATABASE]: re(() => on()),
|
|
2199
2231
|
[W.ERROR_AWS_R_COMPAT_SERVER]: re(() => {
|
|
2200
2232
|
const {
|
|
2201
2233
|
selectedFeatures: e
|
|
2202
|
-
} =
|
|
2234
|
+
} = U(R), t = z(() => {
|
|
2203
2235
|
var i, r;
|
|
2204
2236
|
return (r = (i = e().filter((o) => o.category === "Server")) == null ? void 0 : i[0]) == null ? void 0 : r.label;
|
|
2205
2237
|
});
|
|
2206
2238
|
return (() => {
|
|
2207
|
-
var i =
|
|
2239
|
+
var i = nn(), r = i.firstChild;
|
|
2208
2240
|
return D(i, (() => {
|
|
2209
2241
|
var o = z(() => !!t());
|
|
2210
2242
|
return () => o() && [bi(), " deployment is not compatible with", " ", (() => {
|
|
2211
|
-
var n =
|
|
2243
|
+
var n = an();
|
|
2212
2244
|
return D(n, t), n;
|
|
2213
2245
|
})(), "."];
|
|
2214
2246
|
})(), r), D(i, (() => {
|
|
@@ -2217,33 +2249,39 @@ const ln = {
|
|
|
2217
2249
|
})(), r), i;
|
|
2218
2250
|
})();
|
|
2219
2251
|
}),
|
|
2220
|
-
[W.ERROR_SHADCN_R_REACT]: re(() =>
|
|
2221
|
-
[W.WARN_SHADCN_R_TAILWINDCSS]:
|
|
2222
|
-
[W.INFO_STACKBLITZ_COMPAT]:
|
|
2223
|
-
const {
|
|
2224
|
-
selectedFeatures:
|
|
2225
|
-
} =
|
|
2226
|
-
function
|
|
2227
|
-
|
|
2252
|
+
[W.ERROR_SHADCN_R_REACT]: re(() => ln()),
|
|
2253
|
+
[W.WARN_SHADCN_R_TAILWINDCSS]: sn(() => cn()),
|
|
2254
|
+
[W.INFO_STACKBLITZ_COMPAT]: un(function() {
|
|
2255
|
+
const e = _o(), {
|
|
2256
|
+
selectedFeatures: t
|
|
2257
|
+
} = U(R), i = z(() => t().filter((o) => o.flag === "drizzle" || o.flag === "sqlite" || o.flag === "cloudflare"));
|
|
2258
|
+
function r() {
|
|
2259
|
+
var o;
|
|
2260
|
+
(o = e == null ? void 0 : e()) == null || o.querySelectorAll(".stackblitz-cta").forEach((n) => {
|
|
2261
|
+
n.classList.add("tooltip"), n.setAttribute("data-tip", "Stackblitz does not support the following features: " + i().map((a) => a.label).join(", "));
|
|
2262
|
+
});
|
|
2228
2263
|
}
|
|
2229
|
-
return
|
|
2230
|
-
|
|
2264
|
+
return ye(oo(i, r)), jt(r), Je(() => {
|
|
2265
|
+
var o;
|
|
2266
|
+
(o = e == null ? void 0 : e()) == null || o.querySelectorAll(".stackblitz-cta").forEach((n) => {
|
|
2267
|
+
n.classList.remove("tooltip"), n.removeAttribute("data-tip");
|
|
2268
|
+
});
|
|
2231
2269
|
}), [];
|
|
2232
2270
|
})
|
|
2233
2271
|
};
|
|
2234
|
-
function
|
|
2235
|
-
const e =
|
|
2272
|
+
function dn() {
|
|
2273
|
+
const e = ht.map((s) => ({
|
|
2236
2274
|
...s,
|
|
2237
2275
|
alt: s.disabled ? "Coming soon" : void 0,
|
|
2238
2276
|
selected: !!(s.selected ?? s.readonly)
|
|
2239
|
-
})), [t, i] =
|
|
2277
|
+
})), [t, i] = Ho(e);
|
|
2240
2278
|
function r(s, M, u) {
|
|
2241
2279
|
const g = lr.find((d) => d.label === s);
|
|
2242
|
-
g != null && g.multiple ||
|
|
2280
|
+
g != null && g.multiple || Zt(() => i((d) => d.category === s && !d.readonly, "selected", !1)), i((d) => d.flag === M, "selected", (g == null ? void 0 : g.required) ?? u);
|
|
2243
2281
|
}
|
|
2244
2282
|
const o = z(() => t.filter((s) => s.selected)), n = z(() => o().filter((s) => !s.invisibleCli).map((s) => s.flag));
|
|
2245
2283
|
function a(s) {
|
|
2246
|
-
|
|
2284
|
+
Zt(() => {
|
|
2247
2285
|
for (const M of e)
|
|
2248
2286
|
if (s.includes(M.category)) {
|
|
2249
2287
|
const u = e.findIndex((g) => g.category === M.category);
|
|
@@ -2252,7 +2290,7 @@ function cn() {
|
|
|
2252
2290
|
});
|
|
2253
2291
|
}
|
|
2254
2292
|
const l = z(() => o().map((s) => s.flag)), c = z(() => {
|
|
2255
|
-
const s =
|
|
2293
|
+
const s = Po(l(), gn);
|
|
2256
2294
|
return {
|
|
2257
2295
|
size: s.length,
|
|
2258
2296
|
error: s.filter((M) => M.type === "error").map((M) => M.value),
|
|
@@ -2271,9 +2309,9 @@ function cn() {
|
|
|
2271
2309
|
rules: c
|
|
2272
2310
|
};
|
|
2273
2311
|
}
|
|
2274
|
-
const R =
|
|
2275
|
-
function
|
|
2276
|
-
const t =
|
|
2312
|
+
const R = yt(void 0);
|
|
2313
|
+
function In(e) {
|
|
2314
|
+
const t = dn();
|
|
2277
2315
|
return y(R.Provider, {
|
|
2278
2316
|
value: t,
|
|
2279
2317
|
get children() {
|
|
@@ -2281,59 +2319,59 @@ function sn(e) {
|
|
|
2281
2319
|
}
|
|
2282
2320
|
});
|
|
2283
2321
|
}
|
|
2284
|
-
function
|
|
2322
|
+
function Ir(e) {
|
|
2285
2323
|
var t, i, r = "";
|
|
2286
2324
|
if (typeof e == "string" || typeof e == "number") r += e;
|
|
2287
2325
|
else if (typeof e == "object") if (Array.isArray(e)) {
|
|
2288
2326
|
var o = e.length;
|
|
2289
|
-
for (t = 0; t < o; t++) e[t] && (i =
|
|
2327
|
+
for (t = 0; t < o; t++) e[t] && (i = Ir(e[t])) && (r && (r += " "), r += i);
|
|
2290
2328
|
} else for (i in e) e[i] && (r && (r += " "), r += i);
|
|
2291
2329
|
return r;
|
|
2292
2330
|
}
|
|
2293
2331
|
function J() {
|
|
2294
|
-
for (var e, t, i = 0, r = "", o = arguments.length; i < o; i++) (e = arguments[i]) && (t =
|
|
2332
|
+
for (var e, t, i = 0, r = "", o = arguments.length; i < o; i++) (e = arguments[i]) && (t = Ir(e)) && (r && (r += " "), r += t);
|
|
2295
2333
|
return r;
|
|
2296
2334
|
}
|
|
2297
|
-
var
|
|
2298
|
-
const
|
|
2299
|
-
function
|
|
2335
|
+
var Nn = /* @__PURE__ */ f("<a target=_blank><span>"), jn = /* @__PURE__ */ f("<span>"), yn = /* @__PURE__ */ f("<span class=text-lg>Scaffolds a web app using <!>.");
|
|
2336
|
+
const Dn = new Intl.ListFormat("en");
|
|
2337
|
+
function hn(e) {
|
|
2300
2338
|
return e.feature.url ? (() => {
|
|
2301
|
-
var t =
|
|
2339
|
+
var t = Nn(), i = t.firstChild;
|
|
2302
2340
|
return D(i, () => e.feature.label), S((r) => {
|
|
2303
2341
|
var o = e.feature.url, n = J("text-primary link link-hover", e.feature.label === "Vike" && "font-semibold");
|
|
2304
|
-
return o !== r.e &&
|
|
2342
|
+
return o !== r.e && Z(t, "href", r.e = o), n !== r.t && K(i, r.t = n), r;
|
|
2305
2343
|
}, {
|
|
2306
2344
|
e: void 0,
|
|
2307
2345
|
t: void 0
|
|
2308
2346
|
}), t;
|
|
2309
2347
|
})() : (() => {
|
|
2310
|
-
var t =
|
|
2348
|
+
var t = jn();
|
|
2311
2349
|
return D(t, () => e.feature.label), S(() => K(t, J("text-primary", e.feature.label === "Vike" && "font-semibold"))), t;
|
|
2312
2350
|
})();
|
|
2313
2351
|
}
|
|
2314
|
-
function
|
|
2352
|
+
function bn() {
|
|
2315
2353
|
const {
|
|
2316
2354
|
selectedFeatures: e
|
|
2317
|
-
} =
|
|
2355
|
+
} = U(R), t = z(() => Dn.formatToParts(e().map((i) => i.label)).map((i) => i.type === "literal" ? i.value : y(hn, {
|
|
2318
2356
|
get feature() {
|
|
2319
2357
|
return e().find((r) => r.label === i.value);
|
|
2320
2358
|
}
|
|
2321
2359
|
})));
|
|
2322
2360
|
return (() => {
|
|
2323
|
-
var i =
|
|
2361
|
+
var i = yn(), r = i.firstChild, o = r.nextSibling;
|
|
2324
2362
|
return o.nextSibling, D(i, t, o), i;
|
|
2325
2363
|
})();
|
|
2326
2364
|
}
|
|
2327
|
-
var
|
|
2328
|
-
function
|
|
2365
|
+
var mn = /* @__PURE__ */ f('<div class="w-full rounded-md border-l-2"><ul class="flex flex-col gap-2 tracking-wide list-custom p-2 rounded-md">'), wn = /* @__PURE__ */ f("<li>");
|
|
2366
|
+
function vt(e) {
|
|
2329
2367
|
return (() => {
|
|
2330
|
-
var t =
|
|
2368
|
+
var t = mn(), i = t.firstChild;
|
|
2331
2369
|
return D(i, y(ge, {
|
|
2332
2370
|
get each() {
|
|
2333
2371
|
return e.children;
|
|
2334
2372
|
},
|
|
2335
2373
|
children: (r) => (() => {
|
|
2336
|
-
var o =
|
|
2374
|
+
var o = wn();
|
|
2337
2375
|
return D(o, y(qt, {
|
|
2338
2376
|
component: r
|
|
2339
2377
|
})), o;
|
|
@@ -2344,7 +2382,7 @@ function zt(e) {
|
|
|
2344
2382
|
"bg-warning/25 list-warning": e.warning,
|
|
2345
2383
|
"bg-error/25 list-error": e.error
|
|
2346
2384
|
};
|
|
2347
|
-
return o !== r.e && t.classList.toggle("border-info", r.e = o), n !== r.t && t.classList.toggle("border-warning", r.t = n), a !== r.a && t.classList.toggle("border-error", r.a = a), r.o =
|
|
2385
|
+
return o !== r.e && t.classList.toggle("border-info", r.e = o), n !== r.t && t.classList.toggle("border-warning", r.t = n), a !== r.a && t.classList.toggle("border-error", r.a = a), r.o = De(i, l, r.o), r;
|
|
2348
2386
|
}, {
|
|
2349
2387
|
e: void 0,
|
|
2350
2388
|
t: void 0,
|
|
@@ -2353,14 +2391,14 @@ function zt(e) {
|
|
|
2353
2391
|
}), t;
|
|
2354
2392
|
})();
|
|
2355
2393
|
}
|
|
2356
|
-
function
|
|
2394
|
+
function Nr(e) {
|
|
2357
2395
|
return [y(P, {
|
|
2358
2396
|
get when() {
|
|
2359
2397
|
var t;
|
|
2360
2398
|
return (t = e.info) == null ? void 0 : t.length;
|
|
2361
2399
|
},
|
|
2362
2400
|
get children() {
|
|
2363
|
-
return y(
|
|
2401
|
+
return y(vt, {
|
|
2364
2402
|
info: !0,
|
|
2365
2403
|
get children() {
|
|
2366
2404
|
return e.info;
|
|
@@ -2373,7 +2411,7 @@ function Ir(e) {
|
|
|
2373
2411
|
return (t = e.warning) == null ? void 0 : t.length;
|
|
2374
2412
|
},
|
|
2375
2413
|
get children() {
|
|
2376
|
-
return y(
|
|
2414
|
+
return y(vt, {
|
|
2377
2415
|
warning: !0,
|
|
2378
2416
|
get children() {
|
|
2379
2417
|
return e.warning;
|
|
@@ -2386,7 +2424,7 @@ function Ir(e) {
|
|
|
2386
2424
|
return (t = e.error) == null ? void 0 : t.length;
|
|
2387
2425
|
},
|
|
2388
2426
|
get children() {
|
|
2389
|
-
return y(
|
|
2427
|
+
return y(vt, {
|
|
2390
2428
|
error: !0,
|
|
2391
2429
|
get children() {
|
|
2392
2430
|
return e.error;
|
|
@@ -2413,50 +2451,50 @@ function Ir(e) {
|
|
|
2413
2451
|
const Re = Math.min, H = Math.max, ut = Math.round, Ke = Math.floor, q = (e) => ({
|
|
2414
2452
|
x: e,
|
|
2415
2453
|
y: e
|
|
2416
|
-
}),
|
|
2454
|
+
}), Ln = {
|
|
2417
2455
|
left: "right",
|
|
2418
2456
|
right: "left",
|
|
2419
2457
|
bottom: "top",
|
|
2420
2458
|
top: "bottom"
|
|
2421
|
-
},
|
|
2459
|
+
}, fn = {
|
|
2422
2460
|
start: "end",
|
|
2423
2461
|
end: "start"
|
|
2424
2462
|
};
|
|
2425
|
-
function
|
|
2463
|
+
function bt(e, t) {
|
|
2426
2464
|
return typeof e == "function" ? e(t) : e;
|
|
2427
2465
|
}
|
|
2428
|
-
function
|
|
2466
|
+
function he(e) {
|
|
2429
2467
|
return e.split("-")[0];
|
|
2430
2468
|
}
|
|
2431
2469
|
function _e(e) {
|
|
2432
2470
|
return e.split("-")[1];
|
|
2433
2471
|
}
|
|
2434
|
-
function
|
|
2472
|
+
function xn(e) {
|
|
2435
2473
|
return e === "x" ? "y" : "x";
|
|
2436
2474
|
}
|
|
2437
|
-
function
|
|
2475
|
+
function jr(e) {
|
|
2438
2476
|
return e === "y" ? "height" : "width";
|
|
2439
2477
|
}
|
|
2440
2478
|
function Te(e) {
|
|
2441
|
-
return ["top", "bottom"].includes(
|
|
2479
|
+
return ["top", "bottom"].includes(he(e)) ? "y" : "x";
|
|
2442
2480
|
}
|
|
2443
|
-
function
|
|
2444
|
-
return
|
|
2481
|
+
function yr(e) {
|
|
2482
|
+
return xn(Te(e));
|
|
2445
2483
|
}
|
|
2446
|
-
function
|
|
2484
|
+
function pn(e, t, i) {
|
|
2447
2485
|
i === void 0 && (i = !1);
|
|
2448
|
-
const r = _e(e), o =
|
|
2486
|
+
const r = _e(e), o = yr(e), n = jr(o);
|
|
2449
2487
|
let a = o === "x" ? r === (i ? "end" : "start") ? "right" : "left" : r === "start" ? "bottom" : "top";
|
|
2450
2488
|
return t.reference[n] > t.floating[n] && (a = gt(a)), [a, gt(a)];
|
|
2451
2489
|
}
|
|
2452
|
-
function
|
|
2490
|
+
function Tn(e) {
|
|
2453
2491
|
const t = gt(e);
|
|
2454
|
-
return [
|
|
2492
|
+
return [Jt(e), t, Jt(t)];
|
|
2455
2493
|
}
|
|
2456
|
-
function
|
|
2457
|
-
return e.replace(/start|end/g, (t) =>
|
|
2494
|
+
function Jt(e) {
|
|
2495
|
+
return e.replace(/start|end/g, (t) => fn[t]);
|
|
2458
2496
|
}
|
|
2459
|
-
function
|
|
2497
|
+
function zn(e, t, i) {
|
|
2460
2498
|
const r = ["left", "right"], o = ["right", "left"], n = ["top", "bottom"], a = ["bottom", "top"];
|
|
2461
2499
|
switch (e) {
|
|
2462
2500
|
case "top":
|
|
@@ -2469,15 +2507,15 @@ function Ln(e, t, i) {
|
|
|
2469
2507
|
return [];
|
|
2470
2508
|
}
|
|
2471
2509
|
}
|
|
2472
|
-
function
|
|
2510
|
+
function An(e, t, i, r) {
|
|
2473
2511
|
const o = _e(e);
|
|
2474
|
-
let n =
|
|
2475
|
-
return o && (n = n.map((a) => a + "-" + o), t && (n = n.concat(n.map(
|
|
2512
|
+
let n = zn(he(e), i === "start", r);
|
|
2513
|
+
return o && (n = n.map((a) => a + "-" + o), t && (n = n.concat(n.map(Jt)))), n;
|
|
2476
2514
|
}
|
|
2477
2515
|
function gt(e) {
|
|
2478
|
-
return e.replace(/left|right|bottom|top/g, (t) =>
|
|
2516
|
+
return e.replace(/left|right|bottom|top/g, (t) => Ln[t]);
|
|
2479
2517
|
}
|
|
2480
|
-
function
|
|
2518
|
+
function vn(e) {
|
|
2481
2519
|
return {
|
|
2482
2520
|
top: 0,
|
|
2483
2521
|
right: 0,
|
|
@@ -2486,8 +2524,8 @@ function fn(e) {
|
|
|
2486
2524
|
...e
|
|
2487
2525
|
};
|
|
2488
2526
|
}
|
|
2489
|
-
function
|
|
2490
|
-
return typeof e != "number" ?
|
|
2527
|
+
function kn(e) {
|
|
2528
|
+
return typeof e != "number" ? vn(e) : {
|
|
2491
2529
|
top: e,
|
|
2492
2530
|
right: e,
|
|
2493
2531
|
bottom: e,
|
|
@@ -2517,7 +2555,7 @@ function mi(e, t, i) {
|
|
|
2517
2555
|
reference: r,
|
|
2518
2556
|
floating: o
|
|
2519
2557
|
} = e;
|
|
2520
|
-
const n = Te(t), a =
|
|
2558
|
+
const n = Te(t), a = yr(t), l = jr(a), c = he(t), s = n === "y", M = r.x + r.width / 2 - o.width / 2, u = r.y + r.height / 2 - o.height / 2, g = r[l] / 2 - o[l] / 2;
|
|
2521
2559
|
let d;
|
|
2522
2560
|
switch (c) {
|
|
2523
2561
|
case "top":
|
|
@@ -2560,7 +2598,7 @@ function mi(e, t, i) {
|
|
|
2560
2598
|
}
|
|
2561
2599
|
return d;
|
|
2562
2600
|
}
|
|
2563
|
-
const
|
|
2601
|
+
const Sn = async (e, t, i) => {
|
|
2564
2602
|
const {
|
|
2565
2603
|
placement: r = "bottom",
|
|
2566
2604
|
strategy: o = "absolute",
|
|
@@ -2578,13 +2616,13 @@ const Tn = async (e, t, i) => {
|
|
|
2578
2616
|
for (let I = 0; I < l.length; I++) {
|
|
2579
2617
|
const {
|
|
2580
2618
|
name: b,
|
|
2581
|
-
fn:
|
|
2619
|
+
fn: m
|
|
2582
2620
|
} = l[I], {
|
|
2583
2621
|
x: p,
|
|
2584
2622
|
y: j,
|
|
2585
|
-
data:
|
|
2623
|
+
data: w,
|
|
2586
2624
|
reset: h
|
|
2587
|
-
} = await
|
|
2625
|
+
} = await m({
|
|
2588
2626
|
x: M,
|
|
2589
2627
|
y: u,
|
|
2590
2628
|
initialPlacement: r,
|
|
@@ -2602,7 +2640,7 @@ const Tn = async (e, t, i) => {
|
|
|
2602
2640
|
...d,
|
|
2603
2641
|
[b]: {
|
|
2604
2642
|
...d[b],
|
|
2605
|
-
...
|
|
2643
|
+
...w
|
|
2606
2644
|
}
|
|
2607
2645
|
}, h && N <= 50 && (N++, typeof h == "object" && (h.placement && (g = h.placement), h.rects && (s = h.rects === !0 ? await a.getElementRects({
|
|
2608
2646
|
reference: e,
|
|
@@ -2621,7 +2659,7 @@ const Tn = async (e, t, i) => {
|
|
|
2621
2659
|
middlewareData: d
|
|
2622
2660
|
};
|
|
2623
2661
|
};
|
|
2624
|
-
async function
|
|
2662
|
+
async function Dr(e, t) {
|
|
2625
2663
|
var i;
|
|
2626
2664
|
t === void 0 && (t = {});
|
|
2627
2665
|
const {
|
|
@@ -2637,7 +2675,7 @@ async function yr(e, t) {
|
|
|
2637
2675
|
elementContext: u = "floating",
|
|
2638
2676
|
altBoundary: g = !1,
|
|
2639
2677
|
padding: d = 0
|
|
2640
|
-
} =
|
|
2678
|
+
} = bt(t, e), N = kn(d), b = l[g ? u === "floating" ? "reference" : "floating" : u], m = dt(await n.getClippingRect({
|
|
2641
2679
|
element: (i = await (n.isElement == null ? void 0 : n.isElement(b))) == null || i ? b : b.contextElement || await (n.getDocumentElement == null ? void 0 : n.getDocumentElement(l.floating)),
|
|
2642
2680
|
boundary: s,
|
|
2643
2681
|
rootBoundary: M,
|
|
@@ -2647,7 +2685,7 @@ async function yr(e, t) {
|
|
|
2647
2685
|
y: o,
|
|
2648
2686
|
width: a.floating.width,
|
|
2649
2687
|
height: a.floating.height
|
|
2650
|
-
} : a.reference, j = await (n.getOffsetParent == null ? void 0 : n.getOffsetParent(l.floating)),
|
|
2688
|
+
} : a.reference, j = await (n.getOffsetParent == null ? void 0 : n.getOffsetParent(l.floating)), w = await (n.isElement == null ? void 0 : n.isElement(j)) ? await (n.getScale == null ? void 0 : n.getScale(j)) || {
|
|
2651
2689
|
x: 1,
|
|
2652
2690
|
y: 1
|
|
2653
2691
|
} : {
|
|
@@ -2660,13 +2698,13 @@ async function yr(e, t) {
|
|
|
2660
2698
|
strategy: c
|
|
2661
2699
|
}) : p);
|
|
2662
2700
|
return {
|
|
2663
|
-
top: (
|
|
2664
|
-
bottom: (h.bottom -
|
|
2665
|
-
left: (
|
|
2666
|
-
right: (h.right -
|
|
2701
|
+
top: (m.top - h.top + N.top) / w.y,
|
|
2702
|
+
bottom: (h.bottom - m.bottom + N.bottom) / w.y,
|
|
2703
|
+
left: (m.left - h.left + N.left) / w.x,
|
|
2704
|
+
right: (h.right - m.right + N.right) / w.x
|
|
2667
2705
|
};
|
|
2668
2706
|
}
|
|
2669
|
-
const
|
|
2707
|
+
const Cn = function(e) {
|
|
2670
2708
|
return e === void 0 && (e = {}), {
|
|
2671
2709
|
name: "flip",
|
|
2672
2710
|
options: e,
|
|
@@ -2687,23 +2725,23 @@ const zn = function(e) {
|
|
|
2687
2725
|
fallbackAxisSideDirection: N = "none",
|
|
2688
2726
|
flipAlignment: I = !0,
|
|
2689
2727
|
...b
|
|
2690
|
-
} =
|
|
2728
|
+
} = bt(e, t);
|
|
2691
2729
|
if ((i = n.arrow) != null && i.alignmentOffset)
|
|
2692
2730
|
return {};
|
|
2693
|
-
const
|
|
2694
|
-
!g && k && h.push(...
|
|
2695
|
-
const
|
|
2731
|
+
const m = he(o), p = Te(l), j = he(l) === l, w = await (c.isRTL == null ? void 0 : c.isRTL(s.floating)), h = g || (j || !I ? [gt(l)] : Tn(l)), k = N !== "none";
|
|
2732
|
+
!g && k && h.push(...An(l, I, N, w));
|
|
2733
|
+
const x = [l, ...h], T = await Dr(t, b), L = [];
|
|
2696
2734
|
let A = ((r = n.flip) == null ? void 0 : r.overflows) || [];
|
|
2697
|
-
if (M &&
|
|
2698
|
-
const ie =
|
|
2699
|
-
|
|
2735
|
+
if (M && L.push(T[m]), u) {
|
|
2736
|
+
const ie = pn(o, a, w);
|
|
2737
|
+
L.push(T[ie[0]], T[ie[1]]);
|
|
2700
2738
|
}
|
|
2701
2739
|
if (A = [...A, {
|
|
2702
2740
|
placement: o,
|
|
2703
|
-
overflows:
|
|
2704
|
-
}], !
|
|
2741
|
+
overflows: L
|
|
2742
|
+
}], !L.every((ie) => ie <= 0)) {
|
|
2705
2743
|
var v, V;
|
|
2706
|
-
const ie = (((v = n.flip) == null ? void 0 : v.index) || 0) + 1, gi =
|
|
2744
|
+
const ie = (((v = n.flip) == null ? void 0 : v.index) || 0) + 1, gi = x[ie];
|
|
2707
2745
|
if (gi)
|
|
2708
2746
|
return {
|
|
2709
2747
|
data: {
|
|
@@ -2714,12 +2752,12 @@ const zn = function(e) {
|
|
|
2714
2752
|
placement: gi
|
|
2715
2753
|
}
|
|
2716
2754
|
};
|
|
2717
|
-
let Ee = (V = A.filter((
|
|
2755
|
+
let Ee = (V = A.filter((me) => me.overflows[0] <= 0).sort((me, le) => me.overflows[1] - le.overflows[1])[0]) == null ? void 0 : V.placement;
|
|
2718
2756
|
if (!Ee)
|
|
2719
2757
|
switch (d) {
|
|
2720
2758
|
case "bestFit": {
|
|
2721
2759
|
var G;
|
|
2722
|
-
const
|
|
2760
|
+
const me = (G = A.filter((le) => {
|
|
2723
2761
|
if (k) {
|
|
2724
2762
|
const ce = Te(le.placement);
|
|
2725
2763
|
return ce === p || // Create a bias to the `y` side axis due to horizontal
|
|
@@ -2727,8 +2765,8 @@ const zn = function(e) {
|
|
|
2727
2765
|
ce === "y";
|
|
2728
2766
|
}
|
|
2729
2767
|
return !0;
|
|
2730
|
-
}).map((le) => [le.placement, le.overflows.filter((ce) => ce > 0).reduce((ce,
|
|
2731
|
-
|
|
2768
|
+
}).map((le) => [le.placement, le.overflows.filter((ce) => ce > 0).reduce((ce, Rr) => ce + Rr, 0)]).sort((le, ce) => le[1] - ce[1])[0]) == null ? void 0 : G[0];
|
|
2769
|
+
me && (Ee = me);
|
|
2732
2770
|
break;
|
|
2733
2771
|
}
|
|
2734
2772
|
case "initialPlacement":
|
|
@@ -2746,12 +2784,12 @@ const zn = function(e) {
|
|
|
2746
2784
|
}
|
|
2747
2785
|
};
|
|
2748
2786
|
};
|
|
2749
|
-
async function
|
|
2787
|
+
async function En(e, t) {
|
|
2750
2788
|
const {
|
|
2751
2789
|
placement: i,
|
|
2752
2790
|
platform: r,
|
|
2753
2791
|
elements: o
|
|
2754
|
-
} = e, n = await (r.isRTL == null ? void 0 : r.isRTL(o.floating)), a =
|
|
2792
|
+
} = e, n = await (r.isRTL == null ? void 0 : r.isRTL(o.floating)), a = he(i), l = _e(i), c = Te(i) === "y", s = ["left", "top"].includes(a) ? -1 : 1, M = n && c ? -1 : 1, u = bt(t, e);
|
|
2755
2793
|
let {
|
|
2756
2794
|
mainAxis: g,
|
|
2757
2795
|
crossAxis: d,
|
|
@@ -2773,7 +2811,7 @@ async function An(e, t) {
|
|
|
2773
2811
|
y: d * M
|
|
2774
2812
|
};
|
|
2775
2813
|
}
|
|
2776
|
-
const
|
|
2814
|
+
const On = function(e) {
|
|
2777
2815
|
return e === void 0 && (e = 0), {
|
|
2778
2816
|
name: "offset",
|
|
2779
2817
|
options: e,
|
|
@@ -2784,7 +2822,7 @@ const vn = function(e) {
|
|
|
2784
2822
|
y: n,
|
|
2785
2823
|
placement: a,
|
|
2786
2824
|
middlewareData: l
|
|
2787
|
-
} = t, c = await
|
|
2825
|
+
} = t, c = await En(t, e);
|
|
2788
2826
|
return a === ((i = l.offset) == null ? void 0 : i.placement) && (r = l.arrow) != null && r.alignmentOffset ? {} : {
|
|
2789
2827
|
x: o + c.x,
|
|
2790
2828
|
y: n + c.y,
|
|
@@ -2795,7 +2833,7 @@ const vn = function(e) {
|
|
|
2795
2833
|
};
|
|
2796
2834
|
}
|
|
2797
2835
|
};
|
|
2798
|
-
},
|
|
2836
|
+
}, Yn = function(e) {
|
|
2799
2837
|
return e === void 0 && (e = {}), {
|
|
2800
2838
|
name: "size",
|
|
2801
2839
|
options: e,
|
|
@@ -2810,25 +2848,25 @@ const vn = function(e) {
|
|
|
2810
2848
|
apply: c = () => {
|
|
2811
2849
|
},
|
|
2812
2850
|
...s
|
|
2813
|
-
} =
|
|
2851
|
+
} = bt(e, t), M = await Dr(t, s), u = he(o), g = _e(o), d = Te(o) === "y", {
|
|
2814
2852
|
width: N,
|
|
2815
2853
|
height: I
|
|
2816
2854
|
} = n.floating;
|
|
2817
|
-
let b,
|
|
2818
|
-
u === "top" || u === "bottom" ? (b = u,
|
|
2819
|
-
const p = I - M.top - M.bottom, j = N - M.left - M.right,
|
|
2820
|
-
let
|
|
2821
|
-
if ((i = t.middlewareData.shift) != null && i.enabled.x && (T = j), (r = t.middlewareData.shift) != null && r.enabled.y && (
|
|
2855
|
+
let b, m;
|
|
2856
|
+
u === "top" || u === "bottom" ? (b = u, m = g === (await (a.isRTL == null ? void 0 : a.isRTL(l.floating)) ? "start" : "end") ? "left" : "right") : (m = u, b = g === "end" ? "top" : "bottom");
|
|
2857
|
+
const p = I - M.top - M.bottom, j = N - M.left - M.right, w = Re(I - M[b], p), h = Re(N - M[m], j), k = !t.middlewareData.shift;
|
|
2858
|
+
let x = w, T = h;
|
|
2859
|
+
if ((i = t.middlewareData.shift) != null && i.enabled.x && (T = j), (r = t.middlewareData.shift) != null && r.enabled.y && (x = p), k && !g) {
|
|
2822
2860
|
const A = H(M.left, 0), v = H(M.right, 0), V = H(M.top, 0), G = H(M.bottom, 0);
|
|
2823
|
-
d ? T = N - 2 * (A !== 0 || v !== 0 ? A + v : H(M.left, M.right)) :
|
|
2861
|
+
d ? T = N - 2 * (A !== 0 || v !== 0 ? A + v : H(M.left, M.right)) : x = I - 2 * (V !== 0 || G !== 0 ? V + G : H(M.top, M.bottom));
|
|
2824
2862
|
}
|
|
2825
2863
|
await c({
|
|
2826
2864
|
...t,
|
|
2827
2865
|
availableWidth: T,
|
|
2828
|
-
availableHeight:
|
|
2866
|
+
availableHeight: x
|
|
2829
2867
|
});
|
|
2830
|
-
const
|
|
2831
|
-
return N !==
|
|
2868
|
+
const L = await a.getDimensions(l.floating);
|
|
2869
|
+
return N !== L.width || I !== L.height ? {
|
|
2832
2870
|
reset: {
|
|
2833
2871
|
rects: !0
|
|
2834
2872
|
}
|
|
@@ -2836,11 +2874,11 @@ const vn = function(e) {
|
|
|
2836
2874
|
}
|
|
2837
2875
|
};
|
|
2838
2876
|
};
|
|
2839
|
-
function
|
|
2877
|
+
function mt() {
|
|
2840
2878
|
return typeof window < "u";
|
|
2841
2879
|
}
|
|
2842
2880
|
function Ce(e) {
|
|
2843
|
-
return
|
|
2881
|
+
return hr(e) ? (e.nodeName || "").toLowerCase() : "#document";
|
|
2844
2882
|
}
|
|
2845
2883
|
function B(e) {
|
|
2846
2884
|
var t;
|
|
@@ -2848,19 +2886,19 @@ function B(e) {
|
|
|
2848
2886
|
}
|
|
2849
2887
|
function te(e) {
|
|
2850
2888
|
var t;
|
|
2851
|
-
return (t = (
|
|
2889
|
+
return (t = (hr(e) ? e.ownerDocument : e.document) || window.document) == null ? void 0 : t.documentElement;
|
|
2852
2890
|
}
|
|
2853
|
-
function
|
|
2854
|
-
return
|
|
2891
|
+
function hr(e) {
|
|
2892
|
+
return mt() ? e instanceof Node || e instanceof B(e).Node : !1;
|
|
2855
2893
|
}
|
|
2856
2894
|
function $(e) {
|
|
2857
|
-
return
|
|
2895
|
+
return mt() ? e instanceof Element || e instanceof B(e).Element : !1;
|
|
2858
2896
|
}
|
|
2859
2897
|
function ee(e) {
|
|
2860
|
-
return
|
|
2898
|
+
return mt() ? e instanceof HTMLElement || e instanceof B(e).HTMLElement : !1;
|
|
2861
2899
|
}
|
|
2862
2900
|
function wi(e) {
|
|
2863
|
-
return !
|
|
2901
|
+
return !mt() || typeof ShadowRoot > "u" ? !1 : e instanceof ShadowRoot || e instanceof B(e).ShadowRoot;
|
|
2864
2902
|
}
|
|
2865
2903
|
function Fe(e) {
|
|
2866
2904
|
const {
|
|
@@ -2871,10 +2909,10 @@ function Fe(e) {
|
|
|
2871
2909
|
} = X(e);
|
|
2872
2910
|
return /auto|scroll|overlay|hidden|clip/.test(t + r + i) && !["inline", "contents"].includes(o);
|
|
2873
2911
|
}
|
|
2874
|
-
function
|
|
2912
|
+
function Qn(e) {
|
|
2875
2913
|
return ["table", "td", "th"].includes(Ce(e));
|
|
2876
2914
|
}
|
|
2877
|
-
function
|
|
2915
|
+
function wt(e) {
|
|
2878
2916
|
return [":popover-open", ":modal"].some((t) => {
|
|
2879
2917
|
try {
|
|
2880
2918
|
return e.matches(t);
|
|
@@ -2887,12 +2925,12 @@ function ei(e) {
|
|
|
2887
2925
|
const t = ti(), i = $(e) ? X(e) : e;
|
|
2888
2926
|
return ["transform", "translate", "scale", "rotate", "perspective"].some((r) => i[r] ? i[r] !== "none" : !1) || (i.containerType ? i.containerType !== "normal" : !1) || !t && (i.backdropFilter ? i.backdropFilter !== "none" : !1) || !t && (i.filter ? i.filter !== "none" : !1) || ["transform", "translate", "scale", "rotate", "perspective", "filter"].some((r) => (i.willChange || "").includes(r)) || ["paint", "layout", "strict", "content"].some((r) => (i.contain || "").includes(r));
|
|
2889
2927
|
}
|
|
2890
|
-
function
|
|
2928
|
+
function Un(e) {
|
|
2891
2929
|
let t = de(e);
|
|
2892
2930
|
for (; ee(t) && !ze(t); ) {
|
|
2893
2931
|
if (ei(t))
|
|
2894
2932
|
return t;
|
|
2895
|
-
if (
|
|
2933
|
+
if (wt(t))
|
|
2896
2934
|
return null;
|
|
2897
2935
|
t = de(t);
|
|
2898
2936
|
}
|
|
@@ -2907,7 +2945,7 @@ function ze(e) {
|
|
|
2907
2945
|
function X(e) {
|
|
2908
2946
|
return B(e).getComputedStyle(e);
|
|
2909
2947
|
}
|
|
2910
|
-
function
|
|
2948
|
+
function Lt(e) {
|
|
2911
2949
|
return $(e) ? {
|
|
2912
2950
|
scrollLeft: e.scrollLeft,
|
|
2913
2951
|
scrollTop: e.scrollTop
|
|
@@ -2928,24 +2966,24 @@ function de(e) {
|
|
|
2928
2966
|
);
|
|
2929
2967
|
return wi(t) ? t.host : t;
|
|
2930
2968
|
}
|
|
2931
|
-
function
|
|
2969
|
+
function br(e) {
|
|
2932
2970
|
const t = de(e);
|
|
2933
|
-
return ze(t) ? e.ownerDocument ? e.ownerDocument.body : e.body : ee(t) && Fe(t) ? t :
|
|
2971
|
+
return ze(t) ? e.ownerDocument ? e.ownerDocument.body : e.body : ee(t) && Fe(t) ? t : br(t);
|
|
2934
2972
|
}
|
|
2935
2973
|
function Be(e, t, i) {
|
|
2936
2974
|
var r;
|
|
2937
2975
|
t === void 0 && (t = []), i === void 0 && (i = !0);
|
|
2938
|
-
const o =
|
|
2976
|
+
const o = br(e), n = o === ((r = e.ownerDocument) == null ? void 0 : r.body), a = B(o);
|
|
2939
2977
|
if (n) {
|
|
2940
|
-
const l =
|
|
2978
|
+
const l = _t(a);
|
|
2941
2979
|
return t.concat(a, a.visualViewport || [], Fe(o) ? o : [], l && i ? Be(l) : []);
|
|
2942
2980
|
}
|
|
2943
2981
|
return t.concat(o, Be(o, [], i));
|
|
2944
2982
|
}
|
|
2945
|
-
function
|
|
2983
|
+
function _t(e) {
|
|
2946
2984
|
return e.parent && Object.getPrototypeOf(e.parent) ? e.frameElement : null;
|
|
2947
2985
|
}
|
|
2948
|
-
function
|
|
2986
|
+
function mr(e) {
|
|
2949
2987
|
const t = X(e);
|
|
2950
2988
|
let i = parseFloat(t.width) || 0, r = parseFloat(t.height) || 0;
|
|
2951
2989
|
const o = ee(e), n = o ? e.offsetWidth : i, a = o ? e.offsetHeight : r, l = ut(i) !== n || ut(r) !== a;
|
|
@@ -2958,7 +2996,7 @@ function br(e) {
|
|
|
2958
2996
|
function ii(e) {
|
|
2959
2997
|
return $(e) ? e : e.contextElement;
|
|
2960
2998
|
}
|
|
2961
|
-
function
|
|
2999
|
+
function xe(e) {
|
|
2962
3000
|
const t = ii(e);
|
|
2963
3001
|
if (!ee(t))
|
|
2964
3002
|
return q(1);
|
|
@@ -2966,37 +3004,37 @@ function fe(e) {
|
|
|
2966
3004
|
width: r,
|
|
2967
3005
|
height: o,
|
|
2968
3006
|
$: n
|
|
2969
|
-
} =
|
|
3007
|
+
} = mr(t);
|
|
2970
3008
|
let a = (n ? ut(i.width) : i.width) / r, l = (n ? ut(i.height) : i.height) / o;
|
|
2971
3009
|
return (!a || !Number.isFinite(a)) && (a = 1), (!l || !Number.isFinite(l)) && (l = 1), {
|
|
2972
3010
|
x: a,
|
|
2973
3011
|
y: l
|
|
2974
3012
|
};
|
|
2975
3013
|
}
|
|
2976
|
-
const
|
|
2977
|
-
function
|
|
3014
|
+
const Zn = /* @__PURE__ */ q(0);
|
|
3015
|
+
function wr(e) {
|
|
2978
3016
|
const t = B(e);
|
|
2979
|
-
return !ti() || !t.visualViewport ?
|
|
3017
|
+
return !ti() || !t.visualViewport ? Zn : {
|
|
2980
3018
|
x: t.visualViewport.offsetLeft,
|
|
2981
3019
|
y: t.visualViewport.offsetTop
|
|
2982
3020
|
};
|
|
2983
3021
|
}
|
|
2984
|
-
function
|
|
3022
|
+
function Pn(e, t, i) {
|
|
2985
3023
|
return t === void 0 && (t = !1), !i || t && i !== B(e) ? !1 : t;
|
|
2986
3024
|
}
|
|
2987
|
-
function
|
|
3025
|
+
function be(e, t, i, r) {
|
|
2988
3026
|
t === void 0 && (t = !1), i === void 0 && (i = !1);
|
|
2989
3027
|
const o = e.getBoundingClientRect(), n = ii(e);
|
|
2990
3028
|
let a = q(1);
|
|
2991
|
-
t && (r ? $(r) && (a =
|
|
2992
|
-
const l =
|
|
3029
|
+
t && (r ? $(r) && (a = xe(r)) : a = xe(e));
|
|
3030
|
+
const l = Pn(n, i, r) ? wr(n) : q(0);
|
|
2993
3031
|
let c = (o.left + l.x) / a.x, s = (o.top + l.y) / a.y, M = o.width / a.x, u = o.height / a.y;
|
|
2994
3032
|
if (n) {
|
|
2995
3033
|
const g = B(n), d = r && $(r) ? B(r) : r;
|
|
2996
|
-
let N = g, I =
|
|
3034
|
+
let N = g, I = _t(N);
|
|
2997
3035
|
for (; I && r && d !== N; ) {
|
|
2998
|
-
const b =
|
|
2999
|
-
c *= b.x, s *= b.y, M *= b.x, u *= b.y, c += j, s +=
|
|
3036
|
+
const b = xe(I), m = I.getBoundingClientRect(), p = X(I), j = m.left + (I.clientLeft + parseFloat(p.paddingLeft)) * b.x, w = m.top + (I.clientTop + parseFloat(p.paddingTop)) * b.y;
|
|
3037
|
+
c *= b.x, s *= b.y, M *= b.x, u *= b.y, c += j, s += w, N = B(I), I = _t(N);
|
|
3000
3038
|
}
|
|
3001
3039
|
}
|
|
3002
3040
|
return dt({
|
|
@@ -3007,10 +3045,10 @@ function he(e, t, i, r) {
|
|
|
3007
3045
|
});
|
|
3008
3046
|
}
|
|
3009
3047
|
function ri(e, t) {
|
|
3010
|
-
const i =
|
|
3011
|
-
return t ? t.left + i :
|
|
3048
|
+
const i = Lt(e).scrollLeft;
|
|
3049
|
+
return t ? t.left + i : be(te(e)).left + i;
|
|
3012
3050
|
}
|
|
3013
|
-
function
|
|
3051
|
+
function Lr(e, t, i) {
|
|
3014
3052
|
i === void 0 && (i = !1);
|
|
3015
3053
|
const r = e.getBoundingClientRect(), o = r.left + t.scrollLeft - (i ? 0 : (
|
|
3016
3054
|
// RTL <body> scrollbar.
|
|
@@ -3021,14 +3059,14 @@ function wr(e, t, i) {
|
|
|
3021
3059
|
y: n
|
|
3022
3060
|
};
|
|
3023
3061
|
}
|
|
3024
|
-
function
|
|
3062
|
+
function Gn(e) {
|
|
3025
3063
|
let {
|
|
3026
3064
|
elements: t,
|
|
3027
3065
|
rect: i,
|
|
3028
3066
|
offsetParent: r,
|
|
3029
3067
|
strategy: o
|
|
3030
3068
|
} = e;
|
|
3031
|
-
const n = o === "fixed", a = te(r), l = t ?
|
|
3069
|
+
const n = o === "fixed", a = te(r), l = t ? wt(t.floating) : !1;
|
|
3032
3070
|
if (r === a || l && n)
|
|
3033
3071
|
return i;
|
|
3034
3072
|
let c = {
|
|
@@ -3036,11 +3074,11 @@ function Yn(e) {
|
|
|
3036
3074
|
scrollTop: 0
|
|
3037
3075
|
}, s = q(1);
|
|
3038
3076
|
const M = q(0), u = ee(r);
|
|
3039
|
-
if ((u || !u && !n) && ((Ce(r) !== "body" || Fe(a)) && (c =
|
|
3040
|
-
const d =
|
|
3041
|
-
s =
|
|
3077
|
+
if ((u || !u && !n) && ((Ce(r) !== "body" || Fe(a)) && (c = Lt(r)), ee(r))) {
|
|
3078
|
+
const d = be(r);
|
|
3079
|
+
s = xe(r), M.x = d.x + r.clientLeft, M.y = d.y + r.clientTop;
|
|
3042
3080
|
}
|
|
3043
|
-
const g = a && !u && !n ?
|
|
3081
|
+
const g = a && !u && !n ? Lr(a, c, !0) : q(0);
|
|
3044
3082
|
return {
|
|
3045
3083
|
width: i.width * s.x,
|
|
3046
3084
|
height: i.height * s.y,
|
|
@@ -3048,11 +3086,11 @@ function Yn(e) {
|
|
|
3048
3086
|
y: i.y * s.y - c.scrollTop * s.y + M.y + g.y
|
|
3049
3087
|
};
|
|
3050
3088
|
}
|
|
3051
|
-
function
|
|
3089
|
+
function Wn(e) {
|
|
3052
3090
|
return Array.from(e.getClientRects());
|
|
3053
3091
|
}
|
|
3054
|
-
function
|
|
3055
|
-
const t = te(e), i =
|
|
3092
|
+
function Rn(e) {
|
|
3093
|
+
const t = te(e), i = Lt(e), r = e.ownerDocument.body, o = H(t.scrollWidth, t.clientWidth, r.scrollWidth, r.clientWidth), n = H(t.scrollHeight, t.clientHeight, r.scrollHeight, r.clientHeight);
|
|
3056
3094
|
let a = -i.scrollLeft + ri(e);
|
|
3057
3095
|
const l = -i.scrollTop;
|
|
3058
3096
|
return X(r).direction === "rtl" && (a += H(t.clientWidth, r.clientWidth) - o), {
|
|
@@ -3062,7 +3100,7 @@ function Un(e) {
|
|
|
3062
3100
|
y: l
|
|
3063
3101
|
};
|
|
3064
3102
|
}
|
|
3065
|
-
function
|
|
3103
|
+
function Bn(e, t) {
|
|
3066
3104
|
const i = B(e), r = te(e), o = i.visualViewport;
|
|
3067
3105
|
let n = r.clientWidth, a = r.clientHeight, l = 0, c = 0;
|
|
3068
3106
|
if (o) {
|
|
@@ -3077,8 +3115,8 @@ function Zn(e, t) {
|
|
|
3077
3115
|
y: c
|
|
3078
3116
|
};
|
|
3079
3117
|
}
|
|
3080
|
-
function
|
|
3081
|
-
const i =
|
|
3118
|
+
function Hn(e, t) {
|
|
3119
|
+
const i = be(e, !0, t === "fixed"), r = i.top + e.clientTop, o = i.left + e.clientLeft, n = ee(e) ? xe(e) : q(1), a = e.clientWidth * n.x, l = e.clientHeight * n.y, c = o * n.x, s = r * n.y;
|
|
3082
3120
|
return {
|
|
3083
3121
|
width: a,
|
|
3084
3122
|
height: l,
|
|
@@ -3089,13 +3127,13 @@ function Pn(e, t) {
|
|
|
3089
3127
|
function Li(e, t, i) {
|
|
3090
3128
|
let r;
|
|
3091
3129
|
if (t === "viewport")
|
|
3092
|
-
r =
|
|
3130
|
+
r = Bn(e, i);
|
|
3093
3131
|
else if (t === "document")
|
|
3094
|
-
r =
|
|
3132
|
+
r = Rn(te(e));
|
|
3095
3133
|
else if ($(t))
|
|
3096
|
-
r =
|
|
3134
|
+
r = Hn(t, i);
|
|
3097
3135
|
else {
|
|
3098
|
-
const o =
|
|
3136
|
+
const o = wr(e);
|
|
3099
3137
|
r = {
|
|
3100
3138
|
x: t.x - o.x,
|
|
3101
3139
|
y: t.y - o.y,
|
|
@@ -3105,11 +3143,11 @@ function Li(e, t, i) {
|
|
|
3105
3143
|
}
|
|
3106
3144
|
return dt(r);
|
|
3107
3145
|
}
|
|
3108
|
-
function
|
|
3146
|
+
function fr(e, t) {
|
|
3109
3147
|
const i = de(e);
|
|
3110
|
-
return i === t || !$(i) || ze(i) ? !1 : X(i).position === "fixed" ||
|
|
3148
|
+
return i === t || !$(i) || ze(i) ? !1 : X(i).position === "fixed" || fr(i, t);
|
|
3111
3149
|
}
|
|
3112
|
-
function
|
|
3150
|
+
function Vn(e, t) {
|
|
3113
3151
|
const i = t.get(e);
|
|
3114
3152
|
if (i)
|
|
3115
3153
|
return i;
|
|
@@ -3118,18 +3156,18 @@ function Gn(e, t) {
|
|
|
3118
3156
|
let a = n ? de(e) : e;
|
|
3119
3157
|
for (; $(a) && !ze(a); ) {
|
|
3120
3158
|
const l = X(a), c = ei(a);
|
|
3121
|
-
!c && l.position === "fixed" && (o = null), (n ? !c && !o : !c && l.position === "static" && !!o && ["absolute", "fixed"].includes(o.position) || Fe(a) && !c &&
|
|
3159
|
+
!c && l.position === "fixed" && (o = null), (n ? !c && !o : !c && l.position === "static" && !!o && ["absolute", "fixed"].includes(o.position) || Fe(a) && !c && fr(e, a)) ? r = r.filter((M) => M !== a) : o = l, a = de(a);
|
|
3122
3160
|
}
|
|
3123
3161
|
return t.set(e, r), r;
|
|
3124
3162
|
}
|
|
3125
|
-
function
|
|
3163
|
+
function Jn(e) {
|
|
3126
3164
|
let {
|
|
3127
3165
|
element: t,
|
|
3128
3166
|
boundary: i,
|
|
3129
3167
|
rootBoundary: r,
|
|
3130
3168
|
strategy: o
|
|
3131
3169
|
} = e;
|
|
3132
|
-
const a = [...i === "clippingAncestors" ?
|
|
3170
|
+
const a = [...i === "clippingAncestors" ? wt(t) ? [] : Vn(t, this._c) : [].concat(i), r], l = a[0], c = a.reduce((s, M) => {
|
|
3133
3171
|
const u = Li(t, M, o);
|
|
3134
3172
|
return s.top = H(u.top, s.top), s.right = Re(u.right, s.right), s.bottom = Re(u.bottom, s.bottom), s.left = H(u.left, s.left), s;
|
|
3135
3173
|
}, Li(t, l, o));
|
|
@@ -3140,29 +3178,29 @@ function Wn(e) {
|
|
|
3140
3178
|
y: c.top
|
|
3141
3179
|
};
|
|
3142
3180
|
}
|
|
3143
|
-
function
|
|
3181
|
+
function _n(e) {
|
|
3144
3182
|
const {
|
|
3145
3183
|
width: t,
|
|
3146
3184
|
height: i
|
|
3147
|
-
} =
|
|
3185
|
+
} = mr(e);
|
|
3148
3186
|
return {
|
|
3149
3187
|
width: t,
|
|
3150
3188
|
height: i
|
|
3151
3189
|
};
|
|
3152
3190
|
}
|
|
3153
|
-
function
|
|
3154
|
-
const r = ee(t), o = te(t), n = i === "fixed", a =
|
|
3191
|
+
function Fn(e, t, i) {
|
|
3192
|
+
const r = ee(t), o = te(t), n = i === "fixed", a = be(e, !0, n, t);
|
|
3155
3193
|
let l = {
|
|
3156
3194
|
scrollLeft: 0,
|
|
3157
3195
|
scrollTop: 0
|
|
3158
3196
|
};
|
|
3159
3197
|
const c = q(0);
|
|
3160
3198
|
if (r || !r && !n)
|
|
3161
|
-
if ((Ce(t) !== "body" || Fe(o)) && (l =
|
|
3162
|
-
const g =
|
|
3199
|
+
if ((Ce(t) !== "body" || Fe(o)) && (l = Lt(t)), r) {
|
|
3200
|
+
const g = be(t, !0, n, t);
|
|
3163
3201
|
c.x = g.x + t.clientLeft, c.y = g.y + t.clientTop;
|
|
3164
3202
|
} else o && (c.x = ri(o));
|
|
3165
|
-
const s = o && !r && !n ?
|
|
3203
|
+
const s = o && !r && !n ? Lr(o, l) : q(0), M = a.left + l.scrollLeft - c.x - s.x, u = a.top + l.scrollTop - c.y - s.y;
|
|
3166
3204
|
return {
|
|
3167
3205
|
x: M,
|
|
3168
3206
|
y: u,
|
|
@@ -3170,10 +3208,10 @@ function Bn(e, t, i) {
|
|
|
3170
3208
|
height: a.height
|
|
3171
3209
|
};
|
|
3172
3210
|
}
|
|
3173
|
-
function
|
|
3211
|
+
function kt(e) {
|
|
3174
3212
|
return X(e).position === "static";
|
|
3175
3213
|
}
|
|
3176
|
-
function
|
|
3214
|
+
function fi(e, t) {
|
|
3177
3215
|
if (!ee(e) || X(e).position === "fixed")
|
|
3178
3216
|
return null;
|
|
3179
3217
|
if (t)
|
|
@@ -3183,26 +3221,26 @@ function xi(e, t) {
|
|
|
3183
3221
|
}
|
|
3184
3222
|
function xr(e, t) {
|
|
3185
3223
|
const i = B(e);
|
|
3186
|
-
if (
|
|
3224
|
+
if (wt(e))
|
|
3187
3225
|
return i;
|
|
3188
3226
|
if (!ee(e)) {
|
|
3189
3227
|
let o = de(e);
|
|
3190
3228
|
for (; o && !ze(o); ) {
|
|
3191
|
-
if ($(o) && !
|
|
3229
|
+
if ($(o) && !kt(o))
|
|
3192
3230
|
return o;
|
|
3193
3231
|
o = de(o);
|
|
3194
3232
|
}
|
|
3195
3233
|
return i;
|
|
3196
3234
|
}
|
|
3197
|
-
let r =
|
|
3198
|
-
for (; r &&
|
|
3199
|
-
r =
|
|
3200
|
-
return r && ze(r) &&
|
|
3235
|
+
let r = fi(e, t);
|
|
3236
|
+
for (; r && Qn(r) && kt(r); )
|
|
3237
|
+
r = fi(r, t);
|
|
3238
|
+
return r && ze(r) && kt(r) && !ei(r) ? i : r || Un(e) || i;
|
|
3201
3239
|
}
|
|
3202
|
-
const
|
|
3240
|
+
const $n = async function(e) {
|
|
3203
3241
|
const t = this.getOffsetParent || xr, i = this.getDimensions, r = await i(e.floating);
|
|
3204
3242
|
return {
|
|
3205
|
-
reference:
|
|
3243
|
+
reference: Fn(e.reference, await t(e.floating), e.strategy),
|
|
3206
3244
|
floating: {
|
|
3207
3245
|
x: 0,
|
|
3208
3246
|
y: 0,
|
|
@@ -3211,25 +3249,25 @@ const Hn = async function(e) {
|
|
|
3211
3249
|
}
|
|
3212
3250
|
};
|
|
3213
3251
|
};
|
|
3214
|
-
function
|
|
3252
|
+
function Xn(e) {
|
|
3215
3253
|
return X(e).direction === "rtl";
|
|
3216
3254
|
}
|
|
3217
|
-
const
|
|
3218
|
-
convertOffsetParentRelativeRectToViewportRelativeRect:
|
|
3255
|
+
const Kn = {
|
|
3256
|
+
convertOffsetParentRelativeRectToViewportRelativeRect: Gn,
|
|
3219
3257
|
getDocumentElement: te,
|
|
3220
|
-
getClippingRect:
|
|
3258
|
+
getClippingRect: Jn,
|
|
3221
3259
|
getOffsetParent: xr,
|
|
3222
|
-
getElementRects:
|
|
3223
|
-
getClientRects:
|
|
3224
|
-
getDimensions:
|
|
3225
|
-
getScale:
|
|
3260
|
+
getElementRects: $n,
|
|
3261
|
+
getClientRects: Wn,
|
|
3262
|
+
getDimensions: _n,
|
|
3263
|
+
getScale: xe,
|
|
3226
3264
|
isElement: $,
|
|
3227
|
-
isRTL:
|
|
3265
|
+
isRTL: Xn
|
|
3228
3266
|
};
|
|
3229
|
-
function
|
|
3267
|
+
function pr(e, t) {
|
|
3230
3268
|
return e.x === t.x && e.y === t.y && e.width === t.width && e.height === t.height;
|
|
3231
3269
|
}
|
|
3232
|
-
function
|
|
3270
|
+
function qn(e, t) {
|
|
3233
3271
|
let i = null, r;
|
|
3234
3272
|
const o = te(e);
|
|
3235
3273
|
function n() {
|
|
@@ -3246,21 +3284,21 @@ function _n(e, t) {
|
|
|
3246
3284
|
} = s;
|
|
3247
3285
|
if (l || t(), !g || !d)
|
|
3248
3286
|
return;
|
|
3249
|
-
const N = Ke(u), I = Ke(o.clientWidth - (M + g)), b = Ke(o.clientHeight - (u + d)),
|
|
3250
|
-
rootMargin: -N + "px " + -I + "px " + -b + "px " + -
|
|
3287
|
+
const N = Ke(u), I = Ke(o.clientWidth - (M + g)), b = Ke(o.clientHeight - (u + d)), m = Ke(M), j = {
|
|
3288
|
+
rootMargin: -N + "px " + -I + "px " + -b + "px " + -m + "px",
|
|
3251
3289
|
threshold: H(0, Re(1, c)) || 1
|
|
3252
3290
|
};
|
|
3253
|
-
let
|
|
3291
|
+
let w = !0;
|
|
3254
3292
|
function h(k) {
|
|
3255
|
-
const
|
|
3256
|
-
if (
|
|
3257
|
-
if (!
|
|
3293
|
+
const x = k[0].intersectionRatio;
|
|
3294
|
+
if (x !== c) {
|
|
3295
|
+
if (!w)
|
|
3258
3296
|
return a();
|
|
3259
|
-
|
|
3297
|
+
x ? a(!1, x) : r = setTimeout(() => {
|
|
3260
3298
|
a(!1, 1e-7);
|
|
3261
3299
|
}, 1e3);
|
|
3262
3300
|
}
|
|
3263
|
-
|
|
3301
|
+
x === 1 && !pr(s, e.getBoundingClientRect()) && a(), w = !1;
|
|
3264
3302
|
}
|
|
3265
3303
|
try {
|
|
3266
3304
|
i = new IntersectionObserver(h, {
|
|
@@ -3275,7 +3313,7 @@ function _n(e, t) {
|
|
|
3275
3313
|
}
|
|
3276
3314
|
return a(!0), n;
|
|
3277
3315
|
}
|
|
3278
|
-
function
|
|
3316
|
+
function xi(e, t, i, r) {
|
|
3279
3317
|
r === void 0 && (r = {});
|
|
3280
3318
|
const {
|
|
3281
3319
|
ancestorScroll: o = !0,
|
|
@@ -3284,42 +3322,42 @@ function fi(e, t, i, r) {
|
|
|
3284
3322
|
layoutShift: l = typeof IntersectionObserver == "function",
|
|
3285
3323
|
animationFrame: c = !1
|
|
3286
3324
|
} = r, s = ii(e), M = o || n ? [...s ? Be(s) : [], ...Be(t)] : [];
|
|
3287
|
-
M.forEach((
|
|
3288
|
-
o &&
|
|
3325
|
+
M.forEach((m) => {
|
|
3326
|
+
o && m.addEventListener("scroll", i, {
|
|
3289
3327
|
passive: !0
|
|
3290
|
-
}), n &&
|
|
3328
|
+
}), n && m.addEventListener("resize", i);
|
|
3291
3329
|
});
|
|
3292
|
-
const u = s && l ?
|
|
3330
|
+
const u = s && l ? qn(s, i) : null;
|
|
3293
3331
|
let g = -1, d = null;
|
|
3294
|
-
a && (d = new ResizeObserver((
|
|
3295
|
-
let [p] =
|
|
3332
|
+
a && (d = new ResizeObserver((m) => {
|
|
3333
|
+
let [p] = m;
|
|
3296
3334
|
p && p.target === s && d && (d.unobserve(t), cancelAnimationFrame(g), g = requestAnimationFrame(() => {
|
|
3297
3335
|
var j;
|
|
3298
3336
|
(j = d) == null || j.observe(t);
|
|
3299
3337
|
})), i();
|
|
3300
3338
|
}), s && !c && d.observe(s), d.observe(t));
|
|
3301
|
-
let N, I = c ?
|
|
3339
|
+
let N, I = c ? be(e) : null;
|
|
3302
3340
|
c && b();
|
|
3303
3341
|
function b() {
|
|
3304
|
-
const
|
|
3305
|
-
I && !
|
|
3342
|
+
const m = be(e);
|
|
3343
|
+
I && !pr(I, m) && i(), I = m, N = requestAnimationFrame(b);
|
|
3306
3344
|
}
|
|
3307
3345
|
return i(), () => {
|
|
3308
|
-
var
|
|
3346
|
+
var m;
|
|
3309
3347
|
M.forEach((p) => {
|
|
3310
3348
|
o && p.removeEventListener("scroll", i), n && p.removeEventListener("resize", i);
|
|
3311
|
-
}), u == null || u(), (
|
|
3349
|
+
}), u == null || u(), (m = d) == null || m.disconnect(), d = null, c && cancelAnimationFrame(N);
|
|
3312
3350
|
};
|
|
3313
3351
|
}
|
|
3314
|
-
const
|
|
3352
|
+
const ea = On, ta = Cn, ia = Yn, ra = (e, t, i) => {
|
|
3315
3353
|
const r = /* @__PURE__ */ new Map(), o = {
|
|
3316
|
-
platform:
|
|
3354
|
+
platform: Kn,
|
|
3317
3355
|
...i
|
|
3318
3356
|
}, n = {
|
|
3319
3357
|
...o.platform,
|
|
3320
3358
|
_c: r
|
|
3321
3359
|
};
|
|
3322
|
-
return
|
|
3360
|
+
return Sn(e, t, {
|
|
3323
3361
|
...o,
|
|
3324
3362
|
platform: n
|
|
3325
3363
|
});
|
|
@@ -3332,7 +3370,7 @@ function pi(e, t, i) {
|
|
|
3332
3370
|
strategy: o(),
|
|
3333
3371
|
middlewareData: {}
|
|
3334
3372
|
}), [c, s] = O();
|
|
3335
|
-
|
|
3373
|
+
ye(() => {
|
|
3336
3374
|
const g = c();
|
|
3337
3375
|
if (g)
|
|
3338
3376
|
throw g.value;
|
|
@@ -3342,7 +3380,7 @@ function pi(e, t, i) {
|
|
|
3342
3380
|
const g = e(), d = t();
|
|
3343
3381
|
if (g && d) {
|
|
3344
3382
|
const N = M();
|
|
3345
|
-
|
|
3383
|
+
ra(g, d, {
|
|
3346
3384
|
middleware: i == null ? void 0 : i.middleware,
|
|
3347
3385
|
placement: r(),
|
|
3348
3386
|
strategy: o()
|
|
@@ -3356,7 +3394,7 @@ function pi(e, t, i) {
|
|
|
3356
3394
|
);
|
|
3357
3395
|
}
|
|
3358
3396
|
}
|
|
3359
|
-
return
|
|
3397
|
+
return ye(() => {
|
|
3360
3398
|
const g = e(), d = t();
|
|
3361
3399
|
if (i == null || i.middleware, r(), o(), g && d)
|
|
3362
3400
|
if (i != null && i.whileElementsMounted) {
|
|
@@ -3397,25 +3435,25 @@ function pi(e, t, i) {
|
|
|
3397
3435
|
update: u
|
|
3398
3436
|
};
|
|
3399
3437
|
}
|
|
3400
|
-
var
|
|
3401
|
-
function
|
|
3438
|
+
var oa = /* @__PURE__ */ f('<div class="flex items-center justify-center"><div>'), na = /* @__PURE__ */ f("<div><div></div><div role=tooltip><div>");
|
|
3439
|
+
function aa() {
|
|
3402
3440
|
return !!globalThis.navigator && /firefox/i.test(navigator.userAgent);
|
|
3403
3441
|
}
|
|
3404
3442
|
function oi(e) {
|
|
3405
|
-
|
|
3443
|
+
ye(() => {
|
|
3406
3444
|
e.reference && i(e.reference);
|
|
3407
3445
|
});
|
|
3408
|
-
const [t, i] = O(e.reference), [r, o] = O(), [n, a] = O(), [l, c] = O(), s =
|
|
3446
|
+
const [t, i] = O(e.reference), [r, o] = O(), [n, a] = O(), [l, c] = O(), s = aa() ? {
|
|
3409
3447
|
transition: "none",
|
|
3410
3448
|
transform: "none"
|
|
3411
3449
|
} : {
|
|
3412
3450
|
transition: "transform 300ms"
|
|
3413
3451
|
}, M = pi(t, n, {
|
|
3414
3452
|
placement: e.placement,
|
|
3415
|
-
whileElementsMounted:
|
|
3416
|
-
middleware: e.withReference ? [
|
|
3453
|
+
whileElementsMounted: xi,
|
|
3454
|
+
middleware: e.withReference ? [ea(({
|
|
3417
3455
|
rects: I
|
|
3418
|
-
}) => -I.reference.width - (e.arrow ? 4 : 0)),
|
|
3456
|
+
}) => -I.reference.width - (e.arrow ? 4 : 0)), ia({
|
|
3419
3457
|
apply({
|
|
3420
3458
|
elements: I,
|
|
3421
3459
|
rects: b
|
|
@@ -3426,13 +3464,13 @@ function oi(e) {
|
|
|
3426
3464
|
...s
|
|
3427
3465
|
});
|
|
3428
3466
|
}
|
|
3429
|
-
})] : [
|
|
3467
|
+
})] : [ta({
|
|
3430
3468
|
fallbackAxisSideDirection: "end"
|
|
3431
3469
|
})],
|
|
3432
3470
|
offset: e.offset
|
|
3433
3471
|
}), u = e.arrow && e.withReference ? pi(r, l, {
|
|
3434
3472
|
placement: e.placement.split("-")[0],
|
|
3435
|
-
whileElementsMounted:
|
|
3473
|
+
whileElementsMounted: xi,
|
|
3436
3474
|
middleware: []
|
|
3437
3475
|
}) : void 0, g = {
|
|
3438
3476
|
right: "",
|
|
@@ -3445,26 +3483,26 @@ function oi(e) {
|
|
|
3445
3483
|
bottom: "-mb-1",
|
|
3446
3484
|
top: "-mt-1"
|
|
3447
3485
|
};
|
|
3448
|
-
|
|
3486
|
+
jt(() => {
|
|
3449
3487
|
M.update(), u == null || u.update();
|
|
3450
3488
|
});
|
|
3451
3489
|
const N = z(() => M.placement.split("-")[0]);
|
|
3452
3490
|
return (() => {
|
|
3453
|
-
var I =
|
|
3454
|
-
return b.$$click = (j) => "blur" in j.target && typeof j.target.blur == "function" && j.target.blur(),
|
|
3491
|
+
var I = na(), b = I.firstChild, m = b.nextSibling, p = m.firstChild;
|
|
3492
|
+
return b.$$click = (j) => "blur" in j.target && typeof j.target.blur == "function" && j.target.blur(), je((j) => {
|
|
3455
3493
|
o(j), e.reference || i(j);
|
|
3456
|
-
}, b), D(b, () => e.children),
|
|
3494
|
+
}, b), D(b, () => e.children), je(a, m), D(m, y(P, {
|
|
3457
3495
|
get when() {
|
|
3458
3496
|
return e.arrow;
|
|
3459
3497
|
},
|
|
3460
3498
|
get children() {
|
|
3461
|
-
var j =
|
|
3462
|
-
return
|
|
3499
|
+
var j = oa(), w = j.firstChild;
|
|
3500
|
+
return je(c, w), S((h) => {
|
|
3463
3501
|
var k = {
|
|
3464
3502
|
"w-1 relative hidden lg:block": e.withReference,
|
|
3465
3503
|
invisible: e.disabled
|
|
3466
|
-
},
|
|
3467
|
-
return h.e =
|
|
3504
|
+
}, x = J("w-2 h-2 rotate-45", e.arrowClass, d[N()]), T = !!e.withReference, L = u != null && u.y ? `${u.y - 4}px` : void 0;
|
|
3505
|
+
return h.e = De(j, k, h.e), x !== h.t && K(w, h.t = x), T !== h.a && w.classList.toggle("absolute", h.a = T), L !== h.o && ((h.o = L) != null ? w.style.setProperty("top", L) : w.style.removeProperty("top")), h;
|
|
3468
3506
|
}, {
|
|
3469
3507
|
e: void 0,
|
|
3470
3508
|
t: void 0,
|
|
@@ -3473,8 +3511,8 @@ function oi(e) {
|
|
|
3473
3511
|
}), j;
|
|
3474
3512
|
}
|
|
3475
3513
|
}), p), D(p, () => e.tip), S((j) => {
|
|
3476
|
-
var
|
|
3477
|
-
return
|
|
3514
|
+
var w = J("dropdown", e.class), h = !e.disabled, k = J(e.class), x = J("dropdown-content z-10 absolute bg-transparent flex", g[N()]), T = M.modal, L = J("rounded-md flex-row items-center", e.tooltipClass), A = !!e.disabled;
|
|
3515
|
+
return w !== j.e && K(I, j.e = w), h !== j.t && I.classList.toggle("dropdown-hover", j.t = h), k !== j.a && K(b, j.a = k), x !== j.o && K(m, j.o = x), j.i = nr(m, T, j.i), L !== j.n && K(p, j.n = L), A !== j.s && p.classList.toggle("invisible", j.s = A), j;
|
|
3478
3516
|
}, {
|
|
3479
3517
|
e: void 0,
|
|
3480
3518
|
t: void 0,
|
|
@@ -3487,13 +3525,13 @@ function oi(e) {
|
|
|
3487
3525
|
})();
|
|
3488
3526
|
}
|
|
3489
3527
|
Se(["click"]);
|
|
3490
|
-
var
|
|
3491
|
-
function
|
|
3528
|
+
var la = /* @__PURE__ */ f('<div class="tabs tabs-lg tabs-lift group rounded-md shadow-sm content-stretch items-stretch outline-offset-2 relative"><input type=radio class="tab tab-active text-xl font-semibold cursor-default"checked tabindex=-1><div class="tab-content bg-base-100 border-base-300 rounded-md px-5 !h-[22rem]"><div class></div></div><button class="btn btn-md btn-primary btn-outline absolute right-4 bottom-4 gap-0 px-3 transition-all"><svg xmlns=http://www.w3.org/2000/svg class="h-6 w-6"viewBox="0 0 24 24"><path fill=none stroke=currentColor stroke-linecap=round stroke-linejoin=round stroke-width=2 d="M15 19h4m0 0v-4m0 4l-4-4M9 5H5m0 0v4m0-4l4 4m6-4h4m0 0v4m0-4l-4 4M9 19H5m0 0v-4m0 4l4-4"></path></svg><span class="overflow-hidden text-nowrap w-0 group-hover:w-24 transition-all">Detailed view'), ca = /* @__PURE__ */ f("<div>"), sa = /* @__PURE__ */ f('<dialog class=modal inert><div class="modal-box w-11/12 max-w-5xl"><h3 class="font-bold text-xl"></h3><div></div><div class=modal-action><form method=dialog><button class=btn>Close</button></form></div></div><form method=dialog class=modal-backdrop><button>close'), Ma = /* @__PURE__ */ f('<span class="-ml-1 text-xs opacity-60">(required)'), ua = /* @__PURE__ */ f('<div class="flex flex-col items-baseline"><div class="divider divider-start font-semibold"><span></span></div><div class="flex flex-row flex-wrap gap-2">'), ga = /* @__PURE__ */ f('<img class="w-4 h-4">'), da = /* @__PURE__ */ f('<button type=button class="btn btn-sm rounded-md text-nowrap">');
|
|
3529
|
+
function Ia(e) {
|
|
3492
3530
|
const {
|
|
3493
3531
|
currentFeatures: t,
|
|
3494
3532
|
selectFeature: i,
|
|
3495
3533
|
rules: r
|
|
3496
|
-
} =
|
|
3534
|
+
} = U(R), [o, n] = O();
|
|
3497
3535
|
function a() {
|
|
3498
3536
|
const c = Y(o);
|
|
3499
3537
|
c && (c.open ? c.removeAttribute("inert") : c.setAttribute("inert", ""));
|
|
@@ -3503,7 +3541,7 @@ function sa(e) {
|
|
|
3503
3541
|
c && (c.showModal(), a());
|
|
3504
3542
|
}
|
|
3505
3543
|
return [(() => {
|
|
3506
|
-
var c =
|
|
3544
|
+
var c = la(), s = c.firstChild, M = s.nextSibling, u = M.firstChild, g = M.nextSibling;
|
|
3507
3545
|
return c.style.setProperty("--tab-radius", "0.375rem"), D(u, y(ge, {
|
|
3508
3546
|
get each() {
|
|
3509
3547
|
return e.categories;
|
|
@@ -3511,13 +3549,13 @@ function sa(e) {
|
|
|
3511
3549
|
children: (d) => {
|
|
3512
3550
|
const N = z(() => t.filter((I) => I.category === d.label));
|
|
3513
3551
|
return (() => {
|
|
3514
|
-
var I =
|
|
3515
|
-
return D(
|
|
3552
|
+
var I = ua(), b = I.firstChild, m = b.firstChild, p = b.nextSibling;
|
|
3553
|
+
return D(m, () => d.label), D(b, y(P, {
|
|
3516
3554
|
get when() {
|
|
3517
3555
|
return d.required;
|
|
3518
3556
|
},
|
|
3519
3557
|
get children() {
|
|
3520
|
-
return
|
|
3558
|
+
return Ma();
|
|
3521
3559
|
}
|
|
3522
3560
|
}), null), D(p, y(ge, {
|
|
3523
3561
|
get each() {
|
|
@@ -3534,42 +3572,42 @@ function sa(e) {
|
|
|
3534
3572
|
return j.flag !== "vike";
|
|
3535
3573
|
},
|
|
3536
3574
|
get children() {
|
|
3537
|
-
var
|
|
3538
|
-
return
|
|
3575
|
+
var w = da();
|
|
3576
|
+
return w.$$click = () => {
|
|
3539
3577
|
j.readonly || j.disabled || i(d.label, j.flag, !j.selected);
|
|
3540
|
-
}, D(
|
|
3578
|
+
}, D(w, y(P, {
|
|
3541
3579
|
get when() {
|
|
3542
3580
|
return j.image;
|
|
3543
3581
|
},
|
|
3544
3582
|
get children() {
|
|
3545
|
-
var h =
|
|
3546
|
-
return S(() =>
|
|
3583
|
+
var h = ga();
|
|
3584
|
+
return S(() => Z(h, "src", j.image)), h;
|
|
3547
3585
|
}
|
|
3548
|
-
}), null), D(
|
|
3549
|
-
var k = j.flag,
|
|
3586
|
+
}), null), D(w, () => j.label, null), S((h) => {
|
|
3587
|
+
var k = j.flag, x = j.disabled, T = {
|
|
3550
3588
|
"!btn-primary !btn-active": j.selected
|
|
3551
3589
|
};
|
|
3552
|
-
return k !== h.e &&
|
|
3590
|
+
return k !== h.e && Z(w, "data-flag", h.e = k), x !== h.t && (w.disabled = h.t = x), h.a = De(w, T, h.a), h;
|
|
3553
3591
|
}, {
|
|
3554
3592
|
e: void 0,
|
|
3555
3593
|
t: void 0,
|
|
3556
3594
|
a: void 0
|
|
3557
|
-
}),
|
|
3595
|
+
}), w;
|
|
3558
3596
|
}
|
|
3559
3597
|
})
|
|
3560
3598
|
})), I;
|
|
3561
3599
|
})();
|
|
3562
3600
|
}
|
|
3563
|
-
})), g.$$click = l, S(() =>
|
|
3601
|
+
})), g.$$click = l, S(() => Z(s, "aria-label", e.label)), c;
|
|
3564
3602
|
})(), (() => {
|
|
3565
|
-
var c =
|
|
3566
|
-
return c.addEventListener("close", a),
|
|
3603
|
+
var c = sa(), s = c.firstChild, M = s.firstChild, u = M.nextSibling;
|
|
3604
|
+
return c.addEventListener("close", a), je(n, c), D(M, () => e.label), D(s, y(P, {
|
|
3567
3605
|
get when() {
|
|
3568
3606
|
return r().size > 0;
|
|
3569
3607
|
},
|
|
3570
3608
|
get children() {
|
|
3571
|
-
var g =
|
|
3572
|
-
return D(g, y(
|
|
3609
|
+
var g = ca();
|
|
3610
|
+
return D(g, y(Nr, {
|
|
3573
3611
|
get error() {
|
|
3574
3612
|
return r().error;
|
|
3575
3613
|
},
|
|
@@ -3579,7 +3617,7 @@ function sa(e) {
|
|
|
3579
3617
|
get info() {
|
|
3580
3618
|
return r().info;
|
|
3581
3619
|
}
|
|
3582
|
-
})), S((d) =>
|
|
3620
|
+
})), S((d) => De(g, {
|
|
3583
3621
|
"flex flex-col gap-2 leading-6 rounded-md mt-4": r().invisible.length < r().size
|
|
3584
3622
|
}, d)), g;
|
|
3585
3623
|
}
|
|
@@ -3587,50 +3625,50 @@ function sa(e) {
|
|
|
3587
3625
|
})()];
|
|
3588
3626
|
}
|
|
3589
3627
|
Se(["click"]);
|
|
3590
|
-
var
|
|
3591
|
-
function
|
|
3628
|
+
var Na = /* @__PURE__ */ f('<svg xmlns=http://www.w3.org/2000/svg viewBox="0 0 64 64"><path fill=#86613e d="M63.45 53.623c0 .672-1.126 1.217-2.51 1.217H2.5c-1.385 0-2.508-.545-2.508-1.217l3.154-8.34c0-.672 1.121-1.217 2.505-1.217h52.13c1.385 0 2.508.545 2.508 1.217l3.155 8.34M55.26 36.35c0 .497-.836.904-1.863.904h-43.35c-1.029 0-1.861-.407-1.861-.904l2.34-6.186c0-.499.833-.902 1.859-.902h38.671c1.029 0 1.861.403 1.861.902l2.341 6.186m-5.297-13.3c0 .385-.646.7-1.44.7H14.933c-.792 0-1.44-.315-1.44-.7l1.813-4.794c0-.387.645-.698 1.442-.698h29.961c.794 0 1.44.312 1.44.698l1.812 4.794m-4.481-9.421c0 .29-.486.525-1.089.525H19.063c-.603 0-1.089-.235-1.089-.525l1.369-3.615c0-.293.487-.529 1.085-.529h22.6c.6 0 1.089.235 1.089.529l1.363 3.615"></path><path fill=#a87c4f d="M63.45 52.53c0 .672-1.126 1.215-2.51 1.215H2.5c-1.385 0-2.508-.543-2.508-1.215l3.154-8.339c0-.673 1.121-1.217 2.505-1.217h52.13c1.385 0 2.508.544 2.508 1.217l3.155 8.339M55.26 35.26c0 .497-.836.901-1.863.901h-43.35c-1.029 0-1.861-.404-1.861-.901l2.34-6.188c0-.497.833-.902 1.859-.902h38.671c1.029 0 1.861.405 1.861.902l2.341 6.188m-5.297-13.3c0 .387-.646.7-1.44.7H14.933c-.792 0-1.44-.313-1.44-.7l1.813-4.794c0-.385.645-.698 1.442-.698h29.961c.794 0 1.44.313 1.44.698l1.812 4.794m-4.481-9.424c0 .29-.486.529-1.089.529H19.063c-.603 0-1.089-.239-1.089-.529l1.369-3.615c0-.293.487-.525 1.085-.525h22.6c.6 0 1.089.231 1.089.525l1.363 3.615"></path><path fill=#929497 d="M13.1 61.51c-.614 1.875-3.99 2.534-5.949 1.943c-1.959-.589-4.337-2.975-3.723-4.85l20.706-56.11c.615-1.877 1.802-2.921 3.761-2.33c1.957.588 2.146 2.585 1.532 4.462L13.1 61.509"></path><path fill=#b1b1b2 d="M9.829 63.45c-1.959-.589-4.337-2.973-3.723-4.85L26.811 2.49c.327-1 .822-1.76 1.504-2.167a2.853 2.853 0 0 0-.419-.164c-1.959-.589-3.146.453-3.761 2.33L3.429 58.599c-.614 1.877 1.764 4.261 3.723 4.85c.84.253 1.935.275 2.965.073a4.329 4.329 0 0 1-.288-.073"></path><path fill=#929497 d="M50.26 61.51c.618 1.875 3.99 2.534 5.951 1.943c1.959-.589 4.339-2.975 3.725-4.85L39.228 2.493c-.612-1.877-1.8-2.921-3.759-2.33c-1.959.588-2.146 2.585-1.532 4.462L50.26 61.509"></path><path fill=#b1b1b2 d="M53.53 63.45c1.959-.589 4.335-2.973 3.723-4.85L36.545 2.49c-.327-1-.817-1.76-1.5-2.167c.13-.062.266-.12.419-.164c1.959-.589 3.146.453 3.759 2.33l20.708 56.11c.614 1.877-1.766 4.261-3.725 4.85c-.84.253-1.934.275-2.965.073c.098-.02.196-.045.289-.072">'), ja = /* @__PURE__ */ f('<svg xmlns=http://www.w3.org/2000/svg viewBox="0 0 36 36"><path fill=#67757F d="M16 34.375a1 1 0 1 1-2 0V26a1 1 0 1 1 2 0v8.375z"></path><circle cx=15.41 cy=15.625 r=13.873 fill=#E1E8ED></circle><path fill=#50A5E6 d="M3.592 16.139c.232 6.334 5.427 11.402 11.818 11.402s11.586-5.068 11.818-11.402H3.592z"></path><path fill=#67757F d="M30 24a2 2 0 0 1-2 2H3a2 2 0 0 1 0-4h25a2 2 0 0 1 2 2z"></path><path fill=#67757F d="M2.622 35.207a.999.999 0 1 1-1.883-.673l3.317-9.262a1 1 0 1 1 1.883.673l-3.317 9.262zm25.757 0a1 1 0 0 0 1.882-.673l-3.359-9.345a1 1 0 1 0-1.882.672l3.359 9.346z"></path><path fill=#E1E8ED d="M19.006 2.266S32.36 6.948 33.778 7.404c3.725 1.199 2.184 5.224-.385 4.582c-5.083-1.271-14.387-4.068-15.415-4.068s1.028-5.652 1.028-5.652z"></path><path fill=#9AAAB4 d="M29 23a1 1 0 0 1-1 1H3a1 1 0 1 1 0-2h25a1 1 0 0 1 1 1z"></path><ellipse cx=15.41 cy=16.139 fill=#3B94D9 rx=11.818 ry=1.629></ellipse><ellipse cx=34.047 cy=9.982 fill=#AAB8C2 rx=1.341 ry=.974 transform="rotate(-74.365 34.047 9.981)">');
|
|
3629
|
+
function Tr(e) {
|
|
3592
3630
|
return (() => {
|
|
3593
|
-
var t =
|
|
3594
|
-
return S(() =>
|
|
3631
|
+
var t = Na();
|
|
3632
|
+
return S(() => Z(t, "class", J("fill-current", e.class))), t;
|
|
3595
3633
|
})();
|
|
3596
3634
|
}
|
|
3597
|
-
function
|
|
3635
|
+
function zr(e) {
|
|
3598
3636
|
return (() => {
|
|
3599
|
-
var t =
|
|
3600
|
-
return S(() =>
|
|
3637
|
+
var t = ja();
|
|
3638
|
+
return S(() => Z(t, "class", J("fill-current", e.class))), t;
|
|
3601
3639
|
})();
|
|
3602
3640
|
}
|
|
3603
|
-
var
|
|
3604
|
-
async function
|
|
3641
|
+
var ya = /* @__PURE__ */ f('<span class="font-mono text-xs opacity-90"><span class="border-l border-solid border-primary py-0.5 px-1 rounded-l-md"></span><span class="border-r border-solid border-primary underline decoration-primary py-0.5 px-1 rounded-r-md">');
|
|
3642
|
+
async function Da(e) {
|
|
3605
3643
|
return await (await fetch(`https://img.shields.io/github/commit-activity/y/${e}.json`)).json();
|
|
3606
3644
|
}
|
|
3607
|
-
function
|
|
3645
|
+
function ha(e) {
|
|
3608
3646
|
if (!e.repo)
|
|
3609
3647
|
return [];
|
|
3610
3648
|
const [t, {
|
|
3611
3649
|
refetch: i
|
|
3612
|
-
}] =
|
|
3650
|
+
}] = ro(e.repo, Da, {
|
|
3613
3651
|
ssrLoadFrom: "initial"
|
|
3614
3652
|
});
|
|
3615
|
-
return
|
|
3653
|
+
return jt(i), y(P, {
|
|
3616
3654
|
get when() {
|
|
3617
3655
|
return t();
|
|
3618
3656
|
},
|
|
3619
3657
|
children: (r) => (() => {
|
|
3620
|
-
var o =
|
|
3658
|
+
var o = ya(), n = o.firstChild, a = n.nextSibling;
|
|
3621
3659
|
return D(n, () => r().label), D(a, () => r().message), o;
|
|
3622
3660
|
})()
|
|
3623
3661
|
});
|
|
3624
3662
|
}
|
|
3625
|
-
const
|
|
3663
|
+
const ba = /((?:--)?(?:\w+-?)+)\s*:\s*([^;]*)/g;
|
|
3626
3664
|
function Ti(e) {
|
|
3627
3665
|
const t = {};
|
|
3628
3666
|
let i;
|
|
3629
|
-
for (; i =
|
|
3667
|
+
for (; i = ba.exec(e); )
|
|
3630
3668
|
t[i[1]] = i[2];
|
|
3631
3669
|
return t;
|
|
3632
3670
|
}
|
|
3633
|
-
function
|
|
3671
|
+
function ma(e, t) {
|
|
3634
3672
|
if (typeof e == "string") {
|
|
3635
3673
|
if (typeof t == "string")
|
|
3636
3674
|
return `${e};${t}`;
|
|
@@ -3638,115 +3676,115 @@ function ja(e, t) {
|
|
|
3638
3676
|
} else typeof t == "string" && (t = Ti(t));
|
|
3639
3677
|
return { ...e, ...t };
|
|
3640
3678
|
}
|
|
3641
|
-
function
|
|
3679
|
+
function Ar(e, t) {
|
|
3642
3680
|
e.indexOf(t) === -1 && e.push(t);
|
|
3643
3681
|
}
|
|
3644
|
-
function
|
|
3682
|
+
function wa(e, t) {
|
|
3645
3683
|
const i = e.indexOf(t);
|
|
3646
3684
|
i > -1 && e.splice(i, 1);
|
|
3647
3685
|
}
|
|
3648
|
-
const
|
|
3686
|
+
const vr = (e, t, i) => Math.min(Math.max(i, e), t), _ = {
|
|
3649
3687
|
duration: 0.3,
|
|
3650
3688
|
delay: 0,
|
|
3651
3689
|
endDelay: 0,
|
|
3652
3690
|
repeat: 0,
|
|
3653
3691
|
easing: "ease"
|
|
3654
|
-
}, He = (e) => typeof e == "number", pe = (e) => Array.isArray(e) && !He(e[0]),
|
|
3692
|
+
}, He = (e) => typeof e == "number", pe = (e) => Array.isArray(e) && !He(e[0]), La = (e, t, i) => {
|
|
3655
3693
|
const r = t - e;
|
|
3656
3694
|
return ((i - e) % r + r) % r + e;
|
|
3657
3695
|
};
|
|
3658
|
-
function
|
|
3659
|
-
return pe(e) ? e[
|
|
3696
|
+
function fa(e, t) {
|
|
3697
|
+
return pe(e) ? e[La(0, e.length, t)] : e;
|
|
3660
3698
|
}
|
|
3661
|
-
const
|
|
3699
|
+
const kr = (e, t, i) => -i * e + i * t + e, Sr = () => {
|
|
3662
3700
|
}, se = (e) => e, ni = (e, t, i) => t - e === 0 ? 1 : (i - e) / (t - e);
|
|
3663
|
-
function
|
|
3701
|
+
function Cr(e, t) {
|
|
3664
3702
|
const i = e[e.length - 1];
|
|
3665
3703
|
for (let r = 1; r <= t; r++) {
|
|
3666
3704
|
const o = ni(0, t, r);
|
|
3667
|
-
e.push(
|
|
3705
|
+
e.push(kr(i, 1, o));
|
|
3668
3706
|
}
|
|
3669
3707
|
}
|
|
3670
|
-
function
|
|
3708
|
+
function xa(e) {
|
|
3671
3709
|
const t = [0];
|
|
3672
|
-
return
|
|
3710
|
+
return Cr(t, e - 1), t;
|
|
3673
3711
|
}
|
|
3674
|
-
function
|
|
3712
|
+
function pa(e, t = xa(e.length), i = se) {
|
|
3675
3713
|
const r = e.length, o = r - t.length;
|
|
3676
|
-
return o > 0 &&
|
|
3714
|
+
return o > 0 && Cr(t, o), (n) => {
|
|
3677
3715
|
let a = 0;
|
|
3678
3716
|
for (; a < r - 2 && !(n < t[a + 1]); a++)
|
|
3679
3717
|
;
|
|
3680
|
-
let l =
|
|
3681
|
-
return l =
|
|
3718
|
+
let l = vr(0, 1, ni(t[a], t[a + 1], n));
|
|
3719
|
+
return l = fa(i, a)(l), kr(e[a], e[a + 1], l);
|
|
3682
3720
|
};
|
|
3683
3721
|
}
|
|
3684
|
-
const
|
|
3722
|
+
const Er = (e) => Array.isArray(e) && He(e[0]), Ft = (e) => typeof e == "object" && !!e.createAnimation, Ve = (e) => typeof e == "function", Ta = (e) => typeof e == "string", St = {
|
|
3685
3723
|
ms: (e) => e * 1e3,
|
|
3686
3724
|
s: (e) => e / 1e3
|
|
3687
|
-
},
|
|
3688
|
-
function
|
|
3725
|
+
}, Or = (e, t, i) => (((1 - 3 * i + 3 * t) * e + (3 * i - 6 * t)) * e + 3 * t) * e, za = 1e-7, Aa = 12;
|
|
3726
|
+
function va(e, t, i, r, o) {
|
|
3689
3727
|
let n, a, l = 0;
|
|
3690
3728
|
do
|
|
3691
|
-
a = t + (i - t) / 2, n =
|
|
3692
|
-
while (Math.abs(n) >
|
|
3729
|
+
a = t + (i - t) / 2, n = Or(a, r, o) - e, n > 0 ? i = a : t = a;
|
|
3730
|
+
while (Math.abs(n) > za && ++l < Aa);
|
|
3693
3731
|
return a;
|
|
3694
3732
|
}
|
|
3695
3733
|
function Qe(e, t, i, r) {
|
|
3696
3734
|
if (e === t && i === r)
|
|
3697
3735
|
return se;
|
|
3698
|
-
const o = (n) =>
|
|
3699
|
-
return (n) => n === 0 || n === 1 ? n :
|
|
3736
|
+
const o = (n) => va(n, 0, 1, e, i);
|
|
3737
|
+
return (n) => n === 0 || n === 1 ? n : Or(o(n), t, r);
|
|
3700
3738
|
}
|
|
3701
|
-
const
|
|
3739
|
+
const ka = (e, t = "end") => (i) => {
|
|
3702
3740
|
i = t === "end" ? Math.min(i, 0.999) : Math.max(i, 1e-3);
|
|
3703
3741
|
const r = i * e, o = t === "end" ? Math.floor(r) : Math.ceil(r);
|
|
3704
|
-
return
|
|
3705
|
-
},
|
|
3742
|
+
return vr(0, 1, o / e);
|
|
3743
|
+
}, Sa = {
|
|
3706
3744
|
ease: Qe(0.25, 0.1, 0.25, 1),
|
|
3707
3745
|
"ease-in": Qe(0.42, 0, 1, 1),
|
|
3708
3746
|
"ease-in-out": Qe(0.42, 0, 0.58, 1),
|
|
3709
3747
|
"ease-out": Qe(0, 0, 0.58, 1)
|
|
3710
|
-
},
|
|
3748
|
+
}, Ca = /\((.*?)\)/;
|
|
3711
3749
|
function zi(e) {
|
|
3712
3750
|
if (Ve(e))
|
|
3713
3751
|
return e;
|
|
3714
|
-
if (
|
|
3752
|
+
if (Er(e))
|
|
3715
3753
|
return Qe(...e);
|
|
3716
|
-
const t =
|
|
3754
|
+
const t = Sa[e];
|
|
3717
3755
|
if (t)
|
|
3718
3756
|
return t;
|
|
3719
3757
|
if (e.startsWith("steps")) {
|
|
3720
|
-
const i =
|
|
3758
|
+
const i = Ca.exec(e);
|
|
3721
3759
|
if (i) {
|
|
3722
3760
|
const r = i[1].split(",");
|
|
3723
|
-
return
|
|
3761
|
+
return ka(parseFloat(r[0]), r[1].trim());
|
|
3724
3762
|
}
|
|
3725
3763
|
}
|
|
3726
3764
|
return se;
|
|
3727
3765
|
}
|
|
3728
|
-
class
|
|
3766
|
+
class Ea {
|
|
3729
3767
|
constructor(t, i = [0, 1], { easing: r, duration: o = _.duration, delay: n = _.delay, endDelay: a = _.endDelay, repeat: l = _.repeat, offset: c, direction: s = "normal", autoplay: M = !0 } = {}) {
|
|
3730
3768
|
if (this.startTime = null, this.rate = 1, this.t = 0, this.cancelTimestamp = null, this.easing = se, this.duration = 0, this.totalDuration = 0, this.repeat = 0, this.playState = "idle", this.finished = new Promise((g, d) => {
|
|
3731
3769
|
this.resolve = g, this.reject = d;
|
|
3732
|
-
}), r = r || _.easing,
|
|
3770
|
+
}), r = r || _.easing, Ft(r)) {
|
|
3733
3771
|
const g = r.createAnimation(i);
|
|
3734
3772
|
r = g.easing, i = g.keyframes || i, o = g.duration || o;
|
|
3735
3773
|
}
|
|
3736
3774
|
this.repeat = l, this.easing = pe(r) ? se : zi(r), this.updateDuration(o);
|
|
3737
|
-
const u =
|
|
3775
|
+
const u = pa(i, c, pe(r) ? r.map(zi) : se);
|
|
3738
3776
|
this.tick = (g) => {
|
|
3739
3777
|
var d;
|
|
3740
3778
|
n = n;
|
|
3741
3779
|
let N = 0;
|
|
3742
3780
|
this.pauseTime !== void 0 ? N = this.pauseTime : N = (g - this.startTime) * this.rate, this.t = N, N /= 1e3, N = Math.max(N - n, 0), this.playState === "finished" && this.pauseTime === void 0 && (N = this.totalDuration);
|
|
3743
3781
|
const I = N / this.duration;
|
|
3744
|
-
let b = Math.floor(I),
|
|
3745
|
-
!
|
|
3782
|
+
let b = Math.floor(I), m = I % 1;
|
|
3783
|
+
!m && I >= 1 && (m = 1), m === 1 && b--;
|
|
3746
3784
|
const p = b % 2;
|
|
3747
|
-
(s === "reverse" || s === "alternate" && p || s === "alternate-reverse" && !p) && (
|
|
3748
|
-
const j = N >= this.totalDuration ? 1 : Math.min(
|
|
3749
|
-
t(
|
|
3785
|
+
(s === "reverse" || s === "alternate" && p || s === "alternate-reverse" && !p) && (m = 1 - m);
|
|
3786
|
+
const j = N >= this.totalDuration ? 1 : Math.min(m, 1), w = u(this.easing(j));
|
|
3787
|
+
t(w), this.pauseTime === void 0 && (this.playState === "finished" || N >= this.totalDuration + a) ? (this.playState = "finished", (d = this.resolve) === null || d === void 0 || d.call(this, w)) : this.playState !== "idle" && (this.frameRequestId = requestAnimationFrame(this.tick));
|
|
3750
3788
|
}, M && this.play();
|
|
3751
3789
|
}
|
|
3752
3790
|
play() {
|
|
@@ -3787,7 +3825,7 @@ class Aa {
|
|
|
3787
3825
|
this.rate = t;
|
|
3788
3826
|
}
|
|
3789
3827
|
}
|
|
3790
|
-
class
|
|
3828
|
+
class Oa {
|
|
3791
3829
|
setAnimation(t) {
|
|
3792
3830
|
this.animation = t, t == null || t.finished.then(() => this.clearAnimation()).catch(() => {
|
|
3793
3831
|
});
|
|
@@ -3796,17 +3834,17 @@ class va {
|
|
|
3796
3834
|
this.animation = this.generator = void 0;
|
|
3797
3835
|
}
|
|
3798
3836
|
}
|
|
3799
|
-
const
|
|
3800
|
-
function
|
|
3801
|
-
return
|
|
3837
|
+
const Ct = /* @__PURE__ */ new WeakMap();
|
|
3838
|
+
function Yr(e) {
|
|
3839
|
+
return Ct.has(e) || Ct.set(e, {
|
|
3802
3840
|
transforms: [],
|
|
3803
3841
|
values: /* @__PURE__ */ new Map()
|
|
3804
|
-
}),
|
|
3842
|
+
}), Ct.get(e);
|
|
3805
3843
|
}
|
|
3806
|
-
function
|
|
3807
|
-
return e.has(t) || e.set(t, new
|
|
3844
|
+
function Ya(e, t) {
|
|
3845
|
+
return e.has(t) || e.set(t, new Oa()), e.get(t);
|
|
3808
3846
|
}
|
|
3809
|
-
const
|
|
3847
|
+
const Qa = ["", "X", "Y", "Z"], Ua = ["translate", "scale", "rotate", "skew"], Ae = {
|
|
3810
3848
|
x: "translateX",
|
|
3811
3849
|
y: "translateY",
|
|
3812
3850
|
z: "translateZ"
|
|
@@ -3814,7 +3852,7 @@ const Sa = ["", "X", "Y", "Z"], Ca = ["translate", "scale", "rotate", "skew"], A
|
|
|
3814
3852
|
syntax: "<angle>",
|
|
3815
3853
|
initialValue: "0deg",
|
|
3816
3854
|
toDefaultUnit: (e) => e + "deg"
|
|
3817
|
-
},
|
|
3855
|
+
}, Za = {
|
|
3818
3856
|
translate: {
|
|
3819
3857
|
syntax: "<length-percentage>",
|
|
3820
3858
|
initialValue: "0px",
|
|
@@ -3827,18 +3865,18 @@ const Sa = ["", "X", "Y", "Z"], Ca = ["translate", "scale", "rotate", "skew"], A
|
|
|
3827
3865
|
toDefaultUnit: se
|
|
3828
3866
|
},
|
|
3829
3867
|
skew: Ai
|
|
3830
|
-
}, ve = /* @__PURE__ */ new Map(),
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
It.push(e + t), ve.set(
|
|
3868
|
+
}, ve = /* @__PURE__ */ new Map(), ft = (e) => `--motion-${e}`, It = ["x", "y", "z"];
|
|
3869
|
+
Ua.forEach((e) => {
|
|
3870
|
+
Qa.forEach((t) => {
|
|
3871
|
+
It.push(e + t), ve.set(ft(e + t), Za[e]);
|
|
3834
3872
|
});
|
|
3835
3873
|
});
|
|
3836
|
-
const
|
|
3874
|
+
const Pa = (e, t) => It.indexOf(e) - It.indexOf(t), Ga = new Set(It), ai = (e) => Ga.has(e), Wa = (e, t) => {
|
|
3837
3875
|
Ae[t] && (t = Ae[t]);
|
|
3838
|
-
const { transforms: i } =
|
|
3839
|
-
|
|
3840
|
-
},
|
|
3841
|
-
function
|
|
3876
|
+
const { transforms: i } = Yr(e);
|
|
3877
|
+
Ar(i, t), e.style.transform = Qr(i);
|
|
3878
|
+
}, Qr = (e) => e.sort(Pa).reduce(Ra, "").trim(), Ra = (e, t) => `${e} ${t}(var(${ft(t)}))`, $t = (e) => e.startsWith("--"), vi = /* @__PURE__ */ new Set();
|
|
3879
|
+
function Ba(e) {
|
|
3842
3880
|
if (!vi.has(e)) {
|
|
3843
3881
|
vi.add(e);
|
|
3844
3882
|
try {
|
|
@@ -3853,49 +3891,49 @@ function Za(e) {
|
|
|
3853
3891
|
}
|
|
3854
3892
|
}
|
|
3855
3893
|
}
|
|
3856
|
-
const
|
|
3894
|
+
const Et = (e, t) => document.createElement("div").animate(e, t), ki = {
|
|
3857
3895
|
cssRegisterProperty: () => typeof CSS < "u" && Object.hasOwnProperty.call(CSS, "registerProperty"),
|
|
3858
3896
|
waapi: () => Object.hasOwnProperty.call(Element.prototype, "animate"),
|
|
3859
3897
|
partialKeyframes: () => {
|
|
3860
3898
|
try {
|
|
3861
|
-
|
|
3899
|
+
Et({ opacity: [1] });
|
|
3862
3900
|
} catch {
|
|
3863
3901
|
return !1;
|
|
3864
3902
|
}
|
|
3865
3903
|
return !0;
|
|
3866
3904
|
},
|
|
3867
|
-
finished: () => !!
|
|
3905
|
+
finished: () => !!Et({ opacity: [0, 1] }, { duration: 1e-3 }).finished,
|
|
3868
3906
|
linearEasing: () => {
|
|
3869
3907
|
try {
|
|
3870
|
-
|
|
3908
|
+
Et({ opacity: 0 }, { easing: "linear(0, 1)" });
|
|
3871
3909
|
} catch {
|
|
3872
3910
|
return !1;
|
|
3873
3911
|
}
|
|
3874
3912
|
return !0;
|
|
3875
3913
|
}
|
|
3876
|
-
},
|
|
3914
|
+
}, Ot = {}, Le = {};
|
|
3877
3915
|
for (const e in ki)
|
|
3878
|
-
|
|
3879
|
-
const
|
|
3916
|
+
Le[e] = () => (Ot[e] === void 0 && (Ot[e] = ki[e]()), Ot[e]);
|
|
3917
|
+
const Ha = 0.015, Va = (e, t) => {
|
|
3880
3918
|
let i = "";
|
|
3881
|
-
const r = Math.round(t /
|
|
3919
|
+
const r = Math.round(t / Ha);
|
|
3882
3920
|
for (let o = 0; o < r; o++)
|
|
3883
3921
|
i += e(ni(0, r - 1, o)) + ", ";
|
|
3884
3922
|
return i.substring(0, i.length - 2);
|
|
3885
|
-
}, Si = (e, t) => Ve(e) ?
|
|
3886
|
-
function
|
|
3923
|
+
}, Si = (e, t) => Ve(e) ? Le.linearEasing() ? `linear(${Va(e, t)})` : _.easing : Er(e) ? Ja(e) : e, Ja = ([e, t, i, r]) => `cubic-bezier(${e}, ${t}, ${i}, ${r})`;
|
|
3924
|
+
function _a(e, t) {
|
|
3887
3925
|
for (let i = 0; i < e.length; i++)
|
|
3888
3926
|
e[i] === null && (e[i] = i ? e[i - 1] : t());
|
|
3889
3927
|
return e;
|
|
3890
3928
|
}
|
|
3891
|
-
const
|
|
3892
|
-
function
|
|
3893
|
-
return Ae[e] && (e = Ae[e]), ai(e) ?
|
|
3929
|
+
const Fa = (e) => Array.isArray(e) ? e : [e];
|
|
3930
|
+
function Xt(e) {
|
|
3931
|
+
return Ae[e] && (e = Ae[e]), ai(e) ? ft(e) : e;
|
|
3894
3932
|
}
|
|
3895
3933
|
const Ue = {
|
|
3896
3934
|
get: (e, t) => {
|
|
3897
|
-
t =
|
|
3898
|
-
let i =
|
|
3935
|
+
t = Xt(t);
|
|
3936
|
+
let i = $t(t) ? e.style.getPropertyValue(t) : getComputedStyle(e)[t];
|
|
3899
3937
|
if (!i && i !== 0) {
|
|
3900
3938
|
const r = ve.get(t);
|
|
3901
3939
|
r && (i = r.initialValue);
|
|
@@ -3903,90 +3941,90 @@ const Ue = {
|
|
|
3903
3941
|
return i;
|
|
3904
3942
|
},
|
|
3905
3943
|
set: (e, t, i) => {
|
|
3906
|
-
t =
|
|
3944
|
+
t = Xt(t), $t(t) ? e.style.setProperty(t, i) : e.style[t] = i;
|
|
3907
3945
|
}
|
|
3908
3946
|
};
|
|
3909
|
-
function
|
|
3947
|
+
function $a(e, t = !0) {
|
|
3910
3948
|
if (!(!e || e.playState === "finished"))
|
|
3911
3949
|
try {
|
|
3912
3950
|
e.stop ? e.stop() : (t && e.commitStyles(), e.cancel());
|
|
3913
3951
|
} catch {
|
|
3914
3952
|
}
|
|
3915
3953
|
}
|
|
3916
|
-
function
|
|
3954
|
+
function Xa(e, t) {
|
|
3917
3955
|
var i;
|
|
3918
3956
|
let r = (t == null ? void 0 : t.toDefaultUnit) || se;
|
|
3919
3957
|
const o = e[e.length - 1];
|
|
3920
|
-
if (
|
|
3958
|
+
if (Ta(o)) {
|
|
3921
3959
|
const n = ((i = o.match(/(-?[\d.]+)([a-z%]*)/)) === null || i === void 0 ? void 0 : i[2]) || "";
|
|
3922
3960
|
n && (r = (a) => a + n);
|
|
3923
3961
|
}
|
|
3924
3962
|
return r;
|
|
3925
3963
|
}
|
|
3926
|
-
function
|
|
3964
|
+
function Ka() {
|
|
3927
3965
|
return window.__MOTION_DEV_TOOLS_RECORD;
|
|
3928
3966
|
}
|
|
3929
|
-
function
|
|
3930
|
-
const n =
|
|
3931
|
-
let l, { duration: c = _.duration, delay: s = _.delay, endDelay: M = _.endDelay, repeat: u = _.repeat, easing: g = _.easing, persist: d = !1, direction: N, offset: I, allowWebkitAcceleration: b = !1, autoplay:
|
|
3932
|
-
const p =
|
|
3933
|
-
let
|
|
3934
|
-
j &&
|
|
3935
|
-
const h =
|
|
3936
|
-
return
|
|
3967
|
+
function qa(e, t, i, r = {}, o) {
|
|
3968
|
+
const n = Ka(), a = r.record !== !1 && n;
|
|
3969
|
+
let l, { duration: c = _.duration, delay: s = _.delay, endDelay: M = _.endDelay, repeat: u = _.repeat, easing: g = _.easing, persist: d = !1, direction: N, offset: I, allowWebkitAcceleration: b = !1, autoplay: m = !0 } = r;
|
|
3970
|
+
const p = Yr(e), j = ai(t);
|
|
3971
|
+
let w = Le.waapi();
|
|
3972
|
+
j && Wa(e, t);
|
|
3973
|
+
const h = Xt(t), k = Ya(p.values, h), x = ve.get(h);
|
|
3974
|
+
return $a(k.animation, !(Ft(g) && k.generator) && r.record !== !1), () => {
|
|
3937
3975
|
const T = () => {
|
|
3938
3976
|
var v, V;
|
|
3939
|
-
return (V = (v = Ue.get(e, h)) !== null && v !== void 0 ? v :
|
|
3977
|
+
return (V = (v = Ue.get(e, h)) !== null && v !== void 0 ? v : x == null ? void 0 : x.initialValue) !== null && V !== void 0 ? V : 0;
|
|
3940
3978
|
};
|
|
3941
|
-
let
|
|
3942
|
-
const A =
|
|
3943
|
-
if (
|
|
3944
|
-
const v = g.createAnimation(
|
|
3945
|
-
g = v.easing,
|
|
3979
|
+
let L = _a(Fa(i), T);
|
|
3980
|
+
const A = Xa(L, x);
|
|
3981
|
+
if (Ft(g)) {
|
|
3982
|
+
const v = g.createAnimation(L, t !== "opacity", T, h, k);
|
|
3983
|
+
g = v.easing, L = v.keyframes || L, c = v.duration || c;
|
|
3946
3984
|
}
|
|
3947
|
-
if (
|
|
3948
|
-
|
|
3985
|
+
if ($t(h) && (Le.cssRegisterProperty() ? Ba(h) : w = !1), j && !Le.linearEasing() && (Ve(g) || pe(g) && g.some(Ve)) && (w = !1), w) {
|
|
3986
|
+
x && (L = L.map((G) => He(G) ? x.toDefaultUnit(G) : G)), L.length === 1 && (!Le.partialKeyframes() || a) && L.unshift(T());
|
|
3949
3987
|
const v = {
|
|
3950
|
-
delay:
|
|
3951
|
-
duration:
|
|
3952
|
-
endDelay:
|
|
3988
|
+
delay: St.ms(s),
|
|
3989
|
+
duration: St.ms(c),
|
|
3990
|
+
endDelay: St.ms(M),
|
|
3953
3991
|
easing: pe(g) ? void 0 : Si(g, c),
|
|
3954
3992
|
direction: N,
|
|
3955
3993
|
iterations: u + 1,
|
|
3956
3994
|
fill: "both"
|
|
3957
3995
|
};
|
|
3958
3996
|
l = e.animate({
|
|
3959
|
-
[h]:
|
|
3997
|
+
[h]: L,
|
|
3960
3998
|
offset: I,
|
|
3961
3999
|
easing: pe(g) ? g.map((G) => Si(G, c)) : void 0
|
|
3962
4000
|
}, v), l.finished || (l.finished = new Promise((G, ie) => {
|
|
3963
4001
|
l.onfinish = G, l.oncancel = ie;
|
|
3964
4002
|
}));
|
|
3965
|
-
const V =
|
|
4003
|
+
const V = L[L.length - 1];
|
|
3966
4004
|
l.finished.then(() => {
|
|
3967
4005
|
d || (Ue.set(e, h, V), l.cancel());
|
|
3968
|
-
}).catch(
|
|
4006
|
+
}).catch(Sr), b || (l.playbackRate = 1.000001);
|
|
3969
4007
|
} else if (o && j)
|
|
3970
|
-
|
|
4008
|
+
L = L.map((v) => typeof v == "string" ? parseFloat(v) : v), L.length === 1 && L.unshift(parseFloat(T())), l = new o((v) => {
|
|
3971
4009
|
Ue.set(e, h, A ? A(v) : v);
|
|
3972
|
-
},
|
|
4010
|
+
}, L, Object.assign(Object.assign({}, r), {
|
|
3973
4011
|
duration: c,
|
|
3974
4012
|
easing: g
|
|
3975
4013
|
}));
|
|
3976
4014
|
else {
|
|
3977
|
-
const v =
|
|
3978
|
-
Ue.set(e, h,
|
|
4015
|
+
const v = L[L.length - 1];
|
|
4016
|
+
Ue.set(e, h, x && He(v) ? x.toDefaultUnit(v) : v);
|
|
3979
4017
|
}
|
|
3980
|
-
return a && n(e, t,
|
|
4018
|
+
return a && n(e, t, L, {
|
|
3981
4019
|
duration: c,
|
|
3982
4020
|
delay: s,
|
|
3983
4021
|
easing: g,
|
|
3984
4022
|
repeat: u,
|
|
3985
4023
|
offset: I
|
|
3986
|
-
}, "motion-one"), k.setAnimation(l), l && !
|
|
4024
|
+
}, "motion-one"), k.setAnimation(l), l && !m && l.pause(), l;
|
|
3987
4025
|
};
|
|
3988
4026
|
}
|
|
3989
|
-
const
|
|
4027
|
+
const el = (e, t) => (
|
|
3990
4028
|
/**
|
|
3991
4029
|
* TODO: Make test for this
|
|
3992
4030
|
* Always return a new object otherwise delay is overwritten by results of stagger
|
|
@@ -3994,10 +4032,10 @@ const Fa = (e, t) => (
|
|
|
3994
4032
|
*/
|
|
3995
4033
|
e[t] ? Object.assign(Object.assign({}, e), e[t]) : Object.assign({}, e)
|
|
3996
4034
|
);
|
|
3997
|
-
function
|
|
4035
|
+
function tl(e, t) {
|
|
3998
4036
|
return typeof e == "string" ? e = document.querySelectorAll(e) : e instanceof Element && (e = [e]), Array.from(e || []);
|
|
3999
4037
|
}
|
|
4000
|
-
function
|
|
4038
|
+
function Ur(e, t) {
|
|
4001
4039
|
var i = {};
|
|
4002
4040
|
for (var r in e) Object.prototype.hasOwnProperty.call(e, r) && t.indexOf(r) < 0 && (i[r] = e[r]);
|
|
4003
4041
|
if (e != null && typeof Object.getOwnPropertySymbols == "function")
|
|
@@ -4005,15 +4043,15 @@ function Qr(e, t) {
|
|
|
4005
4043
|
t.indexOf(r[o]) < 0 && Object.prototype.propertyIsEnumerable.call(e, r[o]) && (i[r[o]] = e[r[o]]);
|
|
4006
4044
|
return i;
|
|
4007
4045
|
}
|
|
4008
|
-
const
|
|
4046
|
+
const il = {
|
|
4009
4047
|
any: 0,
|
|
4010
4048
|
all: 1
|
|
4011
4049
|
};
|
|
4012
|
-
function
|
|
4050
|
+
function rl(e, t, { root: i, margin: r, amount: o = "any" } = {}) {
|
|
4013
4051
|
if (typeof IntersectionObserver > "u")
|
|
4014
4052
|
return () => {
|
|
4015
4053
|
};
|
|
4016
|
-
const n =
|
|
4054
|
+
const n = tl(e), a = /* @__PURE__ */ new WeakMap(), l = (s) => {
|
|
4017
4055
|
s.forEach((M) => {
|
|
4018
4056
|
const u = a.get(M.target);
|
|
4019
4057
|
if (M.isIntersecting !== !!u)
|
|
@@ -4025,14 +4063,14 @@ function Ka(e, t, { root: i, margin: r, amount: o = "any" } = {}) {
|
|
|
4025
4063
|
}, c = new IntersectionObserver(l, {
|
|
4026
4064
|
root: i,
|
|
4027
4065
|
rootMargin: r,
|
|
4028
|
-
threshold: typeof o == "number" ? o :
|
|
4066
|
+
threshold: typeof o == "number" ? o : il[o]
|
|
4029
4067
|
});
|
|
4030
4068
|
return n.forEach((s) => c.observe(s)), () => c.disconnect();
|
|
4031
4069
|
}
|
|
4032
|
-
function
|
|
4033
|
-
return typeof e != typeof t ? !0 : Array.isArray(e) && Array.isArray(t) ? !
|
|
4070
|
+
function ol(e, t) {
|
|
4071
|
+
return typeof e != typeof t ? !0 : Array.isArray(e) && Array.isArray(t) ? !nl(e, t) : e !== t;
|
|
4034
4072
|
}
|
|
4035
|
-
function
|
|
4073
|
+
function nl(e, t) {
|
|
4036
4074
|
const i = t.length;
|
|
4037
4075
|
if (i !== e.length)
|
|
4038
4076
|
return !1;
|
|
@@ -4041,40 +4079,40 @@ function el(e, t) {
|
|
|
4041
4079
|
return !1;
|
|
4042
4080
|
return !0;
|
|
4043
4081
|
}
|
|
4044
|
-
function
|
|
4082
|
+
function al(e) {
|
|
4045
4083
|
return typeof e == "object";
|
|
4046
4084
|
}
|
|
4047
4085
|
function Ci(e, t) {
|
|
4048
|
-
if (
|
|
4086
|
+
if (al(e))
|
|
4049
4087
|
return e;
|
|
4050
4088
|
if (e && t)
|
|
4051
4089
|
return t[e];
|
|
4052
4090
|
}
|
|
4053
4091
|
let Me;
|
|
4054
|
-
function
|
|
4092
|
+
function ll() {
|
|
4055
4093
|
if (!Me)
|
|
4056
4094
|
return;
|
|
4057
|
-
const e = Me.sort(
|
|
4095
|
+
const e = Me.sort(sl).map(Ml);
|
|
4058
4096
|
e.forEach(Ei), e.forEach(Ei), Me = void 0;
|
|
4059
4097
|
}
|
|
4060
|
-
function
|
|
4061
|
-
Me ?
|
|
4098
|
+
function Yt(e) {
|
|
4099
|
+
Me ? Ar(Me, e) : (Me = [e], requestAnimationFrame(ll));
|
|
4062
4100
|
}
|
|
4063
|
-
function
|
|
4064
|
-
Me &&
|
|
4101
|
+
function cl(e) {
|
|
4102
|
+
Me && wa(Me, e);
|
|
4065
4103
|
}
|
|
4066
|
-
const
|
|
4067
|
-
function
|
|
4104
|
+
const sl = (e, t) => e.getDepth() - t.getDepth(), Ml = (e) => e.animateUpdates(), Ei = (e) => e.next(), Oi = (e, t) => new CustomEvent(e, { detail: { target: t } });
|
|
4105
|
+
function Kt(e, t, i) {
|
|
4068
4106
|
e.dispatchEvent(new CustomEvent(t, { detail: { originalEvent: i } }));
|
|
4069
4107
|
}
|
|
4070
4108
|
function Yi(e, t, i) {
|
|
4071
4109
|
e.dispatchEvent(new CustomEvent(t, { detail: { originalEntry: i } }));
|
|
4072
4110
|
}
|
|
4073
|
-
const
|
|
4111
|
+
const ul = {
|
|
4074
4112
|
isActive: (e) => !!e.inView,
|
|
4075
4113
|
subscribe: (e, { enable: t, disable: i }, { inViewOptions: r = {} }) => {
|
|
4076
|
-
const { once: o } = r, n =
|
|
4077
|
-
return
|
|
4114
|
+
const { once: o } = r, n = Ur(r, ["once"]);
|
|
4115
|
+
return rl(e, (a) => {
|
|
4078
4116
|
if (t(), Yi(e, "viewenter", a), !o)
|
|
4079
4117
|
return (l) => {
|
|
4080
4118
|
i(), Yi(e, "viewleave", l);
|
|
@@ -4082,8 +4120,8 @@ const al = {
|
|
|
4082
4120
|
}, n);
|
|
4083
4121
|
}
|
|
4084
4122
|
}, Qi = (e, t, i) => (r) => {
|
|
4085
|
-
r.pointerType && r.pointerType !== "mouse" || (i(),
|
|
4086
|
-
},
|
|
4123
|
+
r.pointerType && r.pointerType !== "mouse" || (i(), Kt(e, t, r));
|
|
4124
|
+
}, gl = {
|
|
4087
4125
|
isActive: (e) => !!e.hover,
|
|
4088
4126
|
subscribe: (e, { enable: t, disable: i }) => {
|
|
4089
4127
|
const r = Qi(e, "hoverstart", t), o = Qi(e, "hoverend", i);
|
|
@@ -4091,72 +4129,72 @@ const al = {
|
|
|
4091
4129
|
e.removeEventListener("pointerenter", r), e.removeEventListener("pointerleave", o);
|
|
4092
4130
|
};
|
|
4093
4131
|
}
|
|
4094
|
-
},
|
|
4132
|
+
}, dl = {
|
|
4095
4133
|
isActive: (e) => !!e.press,
|
|
4096
4134
|
subscribe: (e, { enable: t, disable: i }) => {
|
|
4097
4135
|
const r = (n) => {
|
|
4098
|
-
i(),
|
|
4136
|
+
i(), Kt(e, "pressend", n), window.removeEventListener("pointerup", r);
|
|
4099
4137
|
}, o = (n) => {
|
|
4100
|
-
t(),
|
|
4138
|
+
t(), Kt(e, "pressstart", n), window.addEventListener("pointerup", r);
|
|
4101
4139
|
};
|
|
4102
4140
|
return e.addEventListener("pointerdown", o), () => {
|
|
4103
4141
|
e.removeEventListener("pointerdown", o), window.removeEventListener("pointerup", r);
|
|
4104
4142
|
};
|
|
4105
4143
|
}
|
|
4106
|
-
}, it = { inView:
|
|
4107
|
-
function
|
|
4144
|
+
}, it = { inView: ul, hover: gl, press: dl }, Ui = ["initial", "animate", ...Object.keys(it), "exit"], Zi = /* @__PURE__ */ new WeakMap();
|
|
4145
|
+
function Il(e = {}, t) {
|
|
4108
4146
|
let i, r = t ? t.getDepth() + 1 : 0;
|
|
4109
4147
|
const o = { initial: !0, animate: !0 }, n = {}, a = {};
|
|
4110
4148
|
for (const I of Ui)
|
|
4111
4149
|
a[I] = typeof e[I] == "string" ? e[I] : t == null ? void 0 : t.getContext()[I];
|
|
4112
4150
|
const l = e.initial === !1 ? "animate" : "initial";
|
|
4113
|
-
let c = Ci(e[l] || a[l], e.variants) || {}, s =
|
|
4151
|
+
let c = Ci(e[l] || a[l], e.variants) || {}, s = Ur(c, ["transition"]);
|
|
4114
4152
|
const M = Object.assign({}, s);
|
|
4115
4153
|
function* u() {
|
|
4116
4154
|
var I, b;
|
|
4117
|
-
const
|
|
4155
|
+
const m = s;
|
|
4118
4156
|
s = {};
|
|
4119
4157
|
const p = {};
|
|
4120
|
-
for (const
|
|
4121
|
-
if (!o[
|
|
4158
|
+
for (const x of Ui) {
|
|
4159
|
+
if (!o[x])
|
|
4122
4160
|
continue;
|
|
4123
|
-
const T = Ci(e[
|
|
4161
|
+
const T = Ci(e[x]);
|
|
4124
4162
|
if (T)
|
|
4125
|
-
for (const
|
|
4126
|
-
|
|
4163
|
+
for (const L in T)
|
|
4164
|
+
L !== "transition" && (s[L] = T[L], p[L] = el((b = (I = T.transition) !== null && I !== void 0 ? I : e.transition) !== null && b !== void 0 ? b : {}, L));
|
|
4127
4165
|
}
|
|
4128
4166
|
const j = /* @__PURE__ */ new Set([
|
|
4129
4167
|
...Object.keys(s),
|
|
4130
|
-
...Object.keys(
|
|
4131
|
-
]),
|
|
4132
|
-
j.forEach((
|
|
4168
|
+
...Object.keys(m)
|
|
4169
|
+
]), w = [];
|
|
4170
|
+
j.forEach((x) => {
|
|
4133
4171
|
var T;
|
|
4134
|
-
s[
|
|
4172
|
+
s[x] === void 0 && (s[x] = M[x]), ol(m[x], s[x]) && ((T = M[x]) !== null && T !== void 0 || (M[x] = Ue.get(i, x)), w.push(qa(i, x, s[x], p[x], Ea)));
|
|
4135
4173
|
}), yield;
|
|
4136
|
-
const h =
|
|
4174
|
+
const h = w.map((x) => x()).filter(Boolean);
|
|
4137
4175
|
if (!h.length)
|
|
4138
4176
|
return;
|
|
4139
4177
|
const k = s;
|
|
4140
|
-
i.dispatchEvent(Oi("motionstart", k)), Promise.all(h.map((
|
|
4178
|
+
i.dispatchEvent(Oi("motionstart", k)), Promise.all(h.map((x) => x.finished)).then(() => {
|
|
4141
4179
|
i.dispatchEvent(Oi("motioncomplete", k));
|
|
4142
|
-
}).catch(
|
|
4180
|
+
}).catch(Sr);
|
|
4143
4181
|
}
|
|
4144
4182
|
const g = (I, b) => () => {
|
|
4145
|
-
o[I] = b,
|
|
4183
|
+
o[I] = b, Yt(N);
|
|
4146
4184
|
}, d = () => {
|
|
4147
4185
|
for (const I in it) {
|
|
4148
|
-
const b = it[I].isActive(e),
|
|
4149
|
-
b && !
|
|
4186
|
+
const b = it[I].isActive(e), m = n[I];
|
|
4187
|
+
b && !m ? n[I] = it[I].subscribe(i, {
|
|
4150
4188
|
enable: g(I, !0),
|
|
4151
4189
|
disable: g(I, !1)
|
|
4152
|
-
}, e) : !b &&
|
|
4190
|
+
}, e) : !b && m && (m(), delete n[I]);
|
|
4153
4191
|
}
|
|
4154
4192
|
}, N = {
|
|
4155
4193
|
update: (I) => {
|
|
4156
|
-
i && (e = I, d(),
|
|
4194
|
+
i && (e = I, d(), Yt(N));
|
|
4157
4195
|
},
|
|
4158
4196
|
setActive: (I, b) => {
|
|
4159
|
-
i && (o[I] = b,
|
|
4197
|
+
i && (o[I] = b, Yt(N));
|
|
4160
4198
|
},
|
|
4161
4199
|
animateUpdates: u,
|
|
4162
4200
|
getDepth: () => r,
|
|
@@ -4164,7 +4202,7 @@ function sl(e = {}, t) {
|
|
|
4164
4202
|
getOptions: () => e,
|
|
4165
4203
|
getContext: () => a,
|
|
4166
4204
|
mount: (I) => (i = I, Zi.set(i, N), d(), () => {
|
|
4167
|
-
Zi.delete(i),
|
|
4205
|
+
Zi.delete(i), cl(N);
|
|
4168
4206
|
for (const b in n)
|
|
4169
4207
|
n[b]();
|
|
4170
4208
|
}),
|
|
@@ -4172,35 +4210,35 @@ function sl(e = {}, t) {
|
|
|
4172
4210
|
};
|
|
4173
4211
|
return N;
|
|
4174
4212
|
}
|
|
4175
|
-
function
|
|
4213
|
+
function Nl(e) {
|
|
4176
4214
|
const t = {}, i = [];
|
|
4177
4215
|
for (let r in e) {
|
|
4178
4216
|
const o = e[r];
|
|
4179
|
-
ai(r) && (Ae[r] && (r = Ae[r]), i.push(r), r =
|
|
4217
|
+
ai(r) && (Ae[r] && (r = Ae[r]), i.push(r), r = ft(r));
|
|
4180
4218
|
let n = Array.isArray(o) ? o[0] : o;
|
|
4181
4219
|
const a = ve.get(r);
|
|
4182
4220
|
a && (n = He(o) ? a.toDefaultUnit(o) : o), t[r] = n;
|
|
4183
4221
|
}
|
|
4184
|
-
return i.length && (t.transform =
|
|
4222
|
+
return i.length && (t.transform = Qr(i)), t;
|
|
4185
4223
|
}
|
|
4186
|
-
var
|
|
4187
|
-
function
|
|
4188
|
-
const o =
|
|
4224
|
+
var jl = yt();
|
|
4225
|
+
function yl(e, t, i, r) {
|
|
4226
|
+
const o = Il((i == null ? void 0 : i.initial) === !1 ? {
|
|
4189
4227
|
...t(),
|
|
4190
4228
|
initial: !1
|
|
4191
4229
|
} : t(), r);
|
|
4192
|
-
return
|
|
4230
|
+
return ye(() => {
|
|
4193
4231
|
if (i && !i.mount()) return;
|
|
4194
4232
|
const n = e(), a = o.mount(n);
|
|
4195
|
-
|
|
4233
|
+
ye(() => o.update(t())), Je(() => {
|
|
4196
4234
|
i && t().exit ? (o.setActive("exit", !0), n.addEventListener("motioncomplete", a)) : a();
|
|
4197
4235
|
});
|
|
4198
|
-
}), [o,
|
|
4236
|
+
}), [o, Nl(o.getTarget())];
|
|
4199
4237
|
}
|
|
4200
|
-
var
|
|
4201
|
-
const [t, , i] = rr(e,
|
|
4238
|
+
var Dl = ["initial", "animate", "inView", "inViewOptions", "hover", "press", "variants", "transition", "exit"], hl = ["tag"], Pi = yt(), Gi = (e) => {
|
|
4239
|
+
const [t, , i] = rr(e, Dl, hl), [r, o] = yl(() => n, () => ({
|
|
4202
4240
|
...t
|
|
4203
|
-
}),
|
|
4241
|
+
}), U(jl), U(Pi));
|
|
4204
4242
|
let n;
|
|
4205
4243
|
return y(Pi.Provider, {
|
|
4206
4244
|
value: r,
|
|
@@ -4214,26 +4252,26 @@ var dl = ["initial", "animate", "inView", "inViewOptions", "hover", "press", "va
|
|
|
4214
4252
|
return e.tag || "div";
|
|
4215
4253
|
},
|
|
4216
4254
|
get style() {
|
|
4217
|
-
return
|
|
4255
|
+
return ma(e.style, o);
|
|
4218
4256
|
}
|
|
4219
4257
|
}));
|
|
4220
4258
|
}
|
|
4221
4259
|
});
|
|
4222
|
-
},
|
|
4260
|
+
}, bl = new Proxy(Gi, {
|
|
4223
4261
|
get: (e, t) => (i) => y(Gi, ir(i, {
|
|
4224
4262
|
tag: t
|
|
4225
4263
|
}))
|
|
4226
|
-
}),
|
|
4227
|
-
function
|
|
4264
|
+
}), ml = /* @__PURE__ */ f('<div id=bati-features class="grid grid-cols-1 lg:grid-cols-2 grid-flow-dense gap-4 box-border relative bg-transparent mt-4">'), wl = /* @__PURE__ */ f('<div class="flex flex-col relative gap">'), Ll = /* @__PURE__ */ f('<span class="-ml-1 text-xs opacity-60">(required)'), fl = /* @__PURE__ */ f('<div class="divider divider-start font-semibold"><span>'), xl = /* @__PURE__ */ f('<div class="flex flex-col lg:flex-row relative"><div class="basis-1/4 w-full gap-y-2"></div><div class=basis-3/4>'), pl = /* @__PURE__ */ f('<label class="group flex items-center cursor-pointer h-12 min-w-60 col-start-1 lg:mr-4"><div class="flex justify-center items-center pr-2.5"><input aria-describedby=details type=checkbox class=checkbox></div><div class="inline-flex gap-2 items-center w-full group"><div class="inline-flex flex-col gap-0 leading-5"><span></span></div><div class=flex-1>'), Tl = /* @__PURE__ */ f('<img class="max-w-5 max-h-5">'), zl = /* @__PURE__ */ f("<span class=text-xs>"), Al = /* @__PURE__ */ f("<p> Battle-Tested Solution: time-proven library, an industry favorite known for its reliability and widespread adoption."), vl = /* @__PURE__ */ f("<p> Stay Ahead of the Game: bleeding-edge library for unparalleled features and performance."), kl = /* @__PURE__ */ f("<div class=opacity-60>"), Sl = /* @__PURE__ */ f('<ul class="list-custom list-check inline-flex gap-2 my-2 flex-wrap">'), Cl = /* @__PURE__ */ f('<div class="mx-1 p-2 border-dashed border-t-2 border-t-neutral italic">'), El = /* @__PURE__ */ f('<div class="rounded-md relative h-full"role=tooltip id=details><div class="px-3 pb-2 pt-1"><div class="flex items-baseline"><h2 class="text-primary text-lg font-bold"></h2><span class=flex-1>'), Ol = /* @__PURE__ */ f("<ul><a class=link target=_blank tabindex=0>");
|
|
4265
|
+
function Yl() {
|
|
4228
4266
|
return (() => {
|
|
4229
|
-
var e =
|
|
4267
|
+
var e = ml();
|
|
4230
4268
|
return D(e, y(ge, {
|
|
4231
4269
|
get each() {
|
|
4232
4270
|
return Object.values(ar);
|
|
4233
4271
|
},
|
|
4234
4272
|
children: (t) => {
|
|
4235
4273
|
const i = z(() => lr.filter((r) => r.group === t));
|
|
4236
|
-
return y(
|
|
4274
|
+
return y(Ia, {
|
|
4237
4275
|
label: t,
|
|
4238
4276
|
flipLabel: t,
|
|
4239
4277
|
get categories() {
|
|
@@ -4241,12 +4279,12 @@ function kl() {
|
|
|
4241
4279
|
},
|
|
4242
4280
|
class: "w-full sm:w-auto rounded-md",
|
|
4243
4281
|
get children() {
|
|
4244
|
-
var r =
|
|
4282
|
+
var r = wl();
|
|
4245
4283
|
return D(r, y(ge, {
|
|
4246
4284
|
get each() {
|
|
4247
4285
|
return i();
|
|
4248
4286
|
},
|
|
4249
|
-
children: (o) => y(
|
|
4287
|
+
children: (o) => y(Ql, o)
|
|
4250
4288
|
})), r;
|
|
4251
4289
|
}
|
|
4252
4290
|
});
|
|
@@ -4254,32 +4292,32 @@ function kl() {
|
|
|
4254
4292
|
})), e;
|
|
4255
4293
|
})();
|
|
4256
4294
|
}
|
|
4257
|
-
function
|
|
4295
|
+
function Ql(e) {
|
|
4258
4296
|
const {
|
|
4259
4297
|
currentFeatures: t
|
|
4260
|
-
} =
|
|
4298
|
+
} = U(R), i = z(() => t.filter((n) => n.category === e.label)), [r, o] = O();
|
|
4261
4299
|
return [(() => {
|
|
4262
|
-
var n =
|
|
4300
|
+
var n = fl(), a = n.firstChild;
|
|
4263
4301
|
return D(a, () => e.label), D(n, y(P, {
|
|
4264
4302
|
get when() {
|
|
4265
4303
|
return e.required;
|
|
4266
4304
|
},
|
|
4267
4305
|
get children() {
|
|
4268
|
-
return
|
|
4306
|
+
return Ll();
|
|
4269
4307
|
}
|
|
4270
4308
|
}), null), n;
|
|
4271
4309
|
})(), (() => {
|
|
4272
|
-
var n =
|
|
4310
|
+
var n = xl(), a = n.firstChild, l = a.nextSibling;
|
|
4273
4311
|
return D(a, y(ge, {
|
|
4274
4312
|
get each() {
|
|
4275
4313
|
return i();
|
|
4276
4314
|
},
|
|
4277
|
-
children: (c) => y(
|
|
4315
|
+
children: (c) => y(Ul, {
|
|
4278
4316
|
feature: c,
|
|
4279
4317
|
category: e,
|
|
4280
4318
|
reference: r
|
|
4281
4319
|
})
|
|
4282
|
-
})), D(l, y(
|
|
4320
|
+
})), D(l, y(Wl, {
|
|
4283
4321
|
get description() {
|
|
4284
4322
|
return e.description;
|
|
4285
4323
|
},
|
|
@@ -4294,13 +4332,13 @@ function Sl(e) {
|
|
|
4294
4332
|
})), n;
|
|
4295
4333
|
})()];
|
|
4296
4334
|
}
|
|
4297
|
-
function
|
|
4335
|
+
function Ul(e) {
|
|
4298
4336
|
const {
|
|
4299
4337
|
selectFeature: t
|
|
4300
|
-
} =
|
|
4338
|
+
} = U(R);
|
|
4301
4339
|
return y(oi, {
|
|
4302
4340
|
get tip() {
|
|
4303
|
-
return y(
|
|
4341
|
+
return y(Gl, {
|
|
4304
4342
|
get feature() {
|
|
4305
4343
|
return e.feature;
|
|
4306
4344
|
}
|
|
@@ -4319,16 +4357,16 @@ function Cl(e) {
|
|
|
4319
4357
|
return e.reference();
|
|
4320
4358
|
},
|
|
4321
4359
|
get children() {
|
|
4322
|
-
var i =
|
|
4360
|
+
var i = pl(), r = i.firstChild, o = r.firstChild, n = r.nextSibling, a = n.firstChild, l = a.firstChild;
|
|
4323
4361
|
return a.nextSibling, o.addEventListener("change", () => {
|
|
4324
4362
|
t(e.category.label, e.feature.flag, !e.feature.selected);
|
|
4325
4363
|
}), D(n, (() => {
|
|
4326
4364
|
var c = z(() => !!e.feature.image);
|
|
4327
4365
|
return () => c() && (() => {
|
|
4328
|
-
var s =
|
|
4366
|
+
var s = Tl();
|
|
4329
4367
|
return S((M) => {
|
|
4330
4368
|
var u = e.feature.image, g = `${e.feature.label} logo`;
|
|
4331
|
-
return u !== M.e &&
|
|
4369
|
+
return u !== M.e && Z(s, "src", M.e = u), g !== M.t && Z(s, "alt", M.t = g), M;
|
|
4332
4370
|
}, {
|
|
4333
4371
|
e: void 0,
|
|
4334
4372
|
t: void 0
|
|
@@ -4337,24 +4375,24 @@ function Cl(e) {
|
|
|
4337
4375
|
})(), a), D(l, () => e.feature.label), D(a, (() => {
|
|
4338
4376
|
var c = z(() => !!e.feature.alt);
|
|
4339
4377
|
return () => c() && (() => {
|
|
4340
|
-
var s =
|
|
4378
|
+
var s = zl();
|
|
4341
4379
|
return D(s, () => e.feature.alt), s;
|
|
4342
4380
|
})();
|
|
4343
4381
|
})(), null), D(n, (() => {
|
|
4344
4382
|
var c = z(() => e.feature.spectrum === "beaten_path");
|
|
4345
|
-
return () => c() && y(
|
|
4383
|
+
return () => c() && y(Tr, {
|
|
4346
4384
|
class: "w-4 opacity-80"
|
|
4347
4385
|
});
|
|
4348
4386
|
})(), null), D(n, (() => {
|
|
4349
4387
|
var c = z(() => e.feature.spectrum === "bleeding_edge");
|
|
4350
|
-
return () => c() && y(
|
|
4388
|
+
return () => c() && y(zr, {
|
|
4351
4389
|
class: "w-4 opacity-80"
|
|
4352
4390
|
});
|
|
4353
4391
|
})(), null), S((c) => {
|
|
4354
4392
|
var s = {
|
|
4355
4393
|
"opacity-50 cursor-not-allowed": e.feature.disabled
|
|
4356
4394
|
}, M = !!e.feature.selected, u = !e.feature.disabled, g = !!e.category.multiple, d = !e.category.multiple, N = e.feature.disabled || e.feature.readonly;
|
|
4357
|
-
return c.e =
|
|
4395
|
+
return c.e = De(i, s, c.e), M !== c.t && o.classList.toggle("checkbox-success", c.t = M), u !== c.a && o.classList.toggle("border-solid", c.a = u), g !== c.o && o.classList.toggle("rounded", c.o = g), d !== c.i && o.classList.toggle("rounded-full", c.i = d), N !== c.n && (o.disabled = c.n = N), c;
|
|
4358
4396
|
}, {
|
|
4359
4397
|
e: void 0,
|
|
4360
4398
|
t: void 0,
|
|
@@ -4366,30 +4404,30 @@ function Cl(e) {
|
|
|
4366
4404
|
}
|
|
4367
4405
|
});
|
|
4368
4406
|
}
|
|
4369
|
-
function
|
|
4407
|
+
function Zl() {
|
|
4370
4408
|
return (() => {
|
|
4371
|
-
var e =
|
|
4372
|
-
return D(e, y(
|
|
4409
|
+
var e = Al(), t = e.firstChild;
|
|
4410
|
+
return D(e, y(Tr, {
|
|
4373
4411
|
class: "max-w-4 max-h-4 opacity-80 inline align-baseline mr-1"
|
|
4374
4412
|
}), t), e;
|
|
4375
4413
|
})();
|
|
4376
4414
|
}
|
|
4377
|
-
function
|
|
4415
|
+
function Pl() {
|
|
4378
4416
|
return (() => {
|
|
4379
|
-
var e =
|
|
4380
|
-
return D(e, y(
|
|
4417
|
+
var e = vl(), t = e.firstChild;
|
|
4418
|
+
return D(e, y(zr, {
|
|
4381
4419
|
class: "max-w-4 max-h-4 opacity-80 inline align-baseline mr-1"
|
|
4382
4420
|
}), t), e;
|
|
4383
4421
|
})();
|
|
4384
4422
|
}
|
|
4385
|
-
function
|
|
4423
|
+
function Gl(e) {
|
|
4386
4424
|
const t = [];
|
|
4387
4425
|
return e.feature.url && t.push({
|
|
4388
4426
|
label: "Homepage",
|
|
4389
4427
|
href: e.feature.url
|
|
4390
4428
|
}), e.feature.links && t.push(...e.feature.links), (() => {
|
|
4391
|
-
var i =
|
|
4392
|
-
return n.nextSibling, D(n, () => e.feature.label), D(o, y(
|
|
4429
|
+
var i = El(), r = i.firstChild, o = r.firstChild, n = o.firstChild;
|
|
4430
|
+
return n.nextSibling, D(n, () => e.feature.label), D(o, y(ha, {
|
|
4393
4431
|
get repo() {
|
|
4394
4432
|
return e.feature.repo;
|
|
4395
4433
|
}
|
|
@@ -4398,7 +4436,7 @@ function Yl(e) {
|
|
|
4398
4436
|
return e.feature.tagline;
|
|
4399
4437
|
},
|
|
4400
4438
|
get children() {
|
|
4401
|
-
var a =
|
|
4439
|
+
var a = kl();
|
|
4402
4440
|
return D(a, () => e.feature.tagline), a;
|
|
4403
4441
|
}
|
|
4404
4442
|
}), null), D(r, y(P, {
|
|
@@ -4406,12 +4444,12 @@ function Yl(e) {
|
|
|
4406
4444
|
return t.length > 0;
|
|
4407
4445
|
},
|
|
4408
4446
|
get children() {
|
|
4409
|
-
var a =
|
|
4447
|
+
var a = Sl();
|
|
4410
4448
|
return D(a, y(ge, {
|
|
4411
4449
|
each: t,
|
|
4412
4450
|
children: (l) => (() => {
|
|
4413
|
-
var c =
|
|
4414
|
-
return D(s, () => l.label), S(() =>
|
|
4451
|
+
var c = Ol(), s = c.firstChild;
|
|
4452
|
+
return D(s, () => l.label), S(() => Z(s, "href", l.href)), c;
|
|
4415
4453
|
})()
|
|
4416
4454
|
})), a;
|
|
4417
4455
|
}
|
|
@@ -4420,22 +4458,22 @@ function Yl(e) {
|
|
|
4420
4458
|
return e.feature.spectrum;
|
|
4421
4459
|
},
|
|
4422
4460
|
get children() {
|
|
4423
|
-
var a =
|
|
4424
|
-
return D(a, y(
|
|
4461
|
+
var a = Cl();
|
|
4462
|
+
return D(a, y(Io, {
|
|
4425
4463
|
get children() {
|
|
4426
4464
|
return [y(Ni, {
|
|
4427
4465
|
get when() {
|
|
4428
4466
|
return e.feature.spectrum === "beaten_path";
|
|
4429
4467
|
},
|
|
4430
4468
|
get children() {
|
|
4431
|
-
return y(
|
|
4469
|
+
return y(Zl, {});
|
|
4432
4470
|
}
|
|
4433
4471
|
}), y(Ni, {
|
|
4434
4472
|
get when() {
|
|
4435
4473
|
return e.feature.spectrum === "bleeding_edge";
|
|
4436
4474
|
},
|
|
4437
4475
|
get children() {
|
|
4438
|
-
return y(
|
|
4476
|
+
return y(Pl, {});
|
|
4439
4477
|
}
|
|
4440
4478
|
})];
|
|
4441
4479
|
}
|
|
@@ -4444,8 +4482,8 @@ function Yl(e) {
|
|
|
4444
4482
|
}), null), i;
|
|
4445
4483
|
})();
|
|
4446
4484
|
}
|
|
4447
|
-
function
|
|
4448
|
-
return y(
|
|
4485
|
+
function Wl(e) {
|
|
4486
|
+
return y(bl.div, {
|
|
4449
4487
|
exit: {
|
|
4450
4488
|
opacity: 0
|
|
4451
4489
|
},
|
|
@@ -4466,11 +4504,11 @@ function Ql(e) {
|
|
|
4466
4504
|
}
|
|
4467
4505
|
});
|
|
4468
4506
|
}
|
|
4469
|
-
var
|
|
4507
|
+
var Rl = /* @__PURE__ */ f("<button type=button>"), Bl = /* @__PURE__ */ f('<div class="w-full flex box-border gap-2">');
|
|
4470
4508
|
function Oe(e) {
|
|
4471
4509
|
const {
|
|
4472
4510
|
selectPreset: t
|
|
4473
|
-
} =
|
|
4511
|
+
} = U(R);
|
|
4474
4512
|
return y(oi, {
|
|
4475
4513
|
get tip() {
|
|
4476
4514
|
return e.description;
|
|
@@ -4484,7 +4522,7 @@ function Oe(e) {
|
|
|
4484
4522
|
return e.disabled;
|
|
4485
4523
|
},
|
|
4486
4524
|
get children() {
|
|
4487
|
-
var i =
|
|
4525
|
+
var i = Rl();
|
|
4488
4526
|
return i.$$click = () => !e.disabled && t(e.features), D(i, () => e.title), S((r) => {
|
|
4489
4527
|
var o = e.disabled, n = J("btn btn-sm whitespace-nowrap", e.class), a = !!e.disabled;
|
|
4490
4528
|
return o !== r.e && (i.disabled = r.e = o), n !== r.t && K(i, r.t = n), a !== r.a && i.classList.toggle("cursor-not-allowed", r.a = a), r;
|
|
@@ -4496,9 +4534,9 @@ function Oe(e) {
|
|
|
4496
4534
|
}
|
|
4497
4535
|
});
|
|
4498
4536
|
}
|
|
4499
|
-
function
|
|
4537
|
+
function Hl() {
|
|
4500
4538
|
return (() => {
|
|
4501
|
-
var e =
|
|
4539
|
+
var e = Bl();
|
|
4502
4540
|
return D(e, y(Oe, {
|
|
4503
4541
|
title: "Frontend",
|
|
4504
4542
|
features: ["UI Framework", "CSS", "Linter"],
|
|
@@ -4524,7 +4562,7 @@ function Pl() {
|
|
|
4524
4562
|
})();
|
|
4525
4563
|
}
|
|
4526
4564
|
Se(["click"]);
|
|
4527
|
-
function
|
|
4565
|
+
function Vl(e) {
|
|
4528
4566
|
let t;
|
|
4529
4567
|
const [i, r] = O(!1);
|
|
4530
4568
|
async function o() {
|
|
@@ -4546,15 +4584,15 @@ function Gl(e) {
|
|
|
4546
4584
|
}
|
|
4547
4585
|
e.addEventListener("click", o), e.addEventListener("mouseenter", n), e.addEventListener("mouseleave", a), Je(() => e.removeEventListener("click", o));
|
|
4548
4586
|
}
|
|
4549
|
-
var
|
|
4550
|
-
function
|
|
4587
|
+
var Jl = /* @__PURE__ */ f('<kbd role=tabpanel class="group h-10 join-item rounded-md cursor-pointer relative flex-1 justify-start pl-9 tooltip tooltip-primary text-left inline-flex tooltip-bottom kbd kbd-sm select-all flex-wrap leading-9 gap-2.5"><svg xmlns=http://www.w3.org/2000/svg width=24 height=24 viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=2 stroke-linecap=round stroke-linejoin=round class="lucide lucide-terminal absolute top-2 left-2 opacity-40 h-5"><polyline points="4 17 10 11 4 5"></polyline><line x1=12 x2=20 y1=19 y2=19>');
|
|
4588
|
+
function _l(e) {
|
|
4551
4589
|
return (() => {
|
|
4552
|
-
var t =
|
|
4553
|
-
return t.firstChild,
|
|
4590
|
+
var t = Jl();
|
|
4591
|
+
return t.firstChild, Bt(t, "click", e.onClick, !0), Bt(t, "mouseenter", e.onMouseEnter), je(Vl, t, () => !0), D(t, () => e.children, null), S(() => Z(t, "data-tip", e.tooltipText)), t;
|
|
4554
4592
|
})();
|
|
4555
4593
|
}
|
|
4556
4594
|
Se(["click"]);
|
|
4557
|
-
const
|
|
4595
|
+
const Fl = 500, $l = 20, Xl = 300, Kl = "https://stackblitz.com", Wi = [
|
|
4558
4596
|
"angular-cli",
|
|
4559
4597
|
"create-react-app",
|
|
4560
4598
|
"html",
|
|
@@ -4563,7 +4601,7 @@ const Bl = 500, Hl = 20, Vl = 300, Jl = "https://stackblitz.com", Wi = [
|
|
|
4563
4601
|
"polymer",
|
|
4564
4602
|
"typescript",
|
|
4565
4603
|
"vue"
|
|
4566
|
-
],
|
|
4604
|
+
], ql = ["project", "search", "ports", "settings"], ec = ["light", "dark"], tc = ["editor", "preview"], Ri = {
|
|
4567
4605
|
clickToLoad: (e) => Ne("ctl", e),
|
|
4568
4606
|
devToolsHeight: (e) => Bi("devtoolsheight", e),
|
|
4569
4607
|
forceEmbedLayout: (e) => Ne("embed", e),
|
|
@@ -4571,24 +4609,24 @@ const Bl = 500, Hl = 20, Vl = 300, Jl = "https://stackblitz.com", Wi = [
|
|
|
4571
4609
|
hideExplorer: (e) => Ne("hideExplorer", e),
|
|
4572
4610
|
hideNavigation: (e) => Ne("hideNavigation", e),
|
|
4573
4611
|
openFile: (e) => qe("file", e),
|
|
4574
|
-
showSidebar: (e) =>
|
|
4575
|
-
sidebarView: (e) =>
|
|
4612
|
+
showSidebar: (e) => ic("showSidebar", e),
|
|
4613
|
+
sidebarView: (e) => Qt("sidebarView", e, ql),
|
|
4576
4614
|
startScript: (e) => qe("startScript", e),
|
|
4577
4615
|
terminalHeight: (e) => Bi("terminalHeight", e),
|
|
4578
|
-
theme: (e) =>
|
|
4579
|
-
view: (e) =>
|
|
4616
|
+
theme: (e) => Qt("theme", e, ec),
|
|
4617
|
+
view: (e) => Qt("view", e, tc),
|
|
4580
4618
|
zenMode: (e) => Ne("zenMode", e),
|
|
4581
4619
|
organization: (e) => `${qe("orgName", e == null ? void 0 : e.name)}&${qe("orgProvider", e == null ? void 0 : e.provider)}`,
|
|
4582
4620
|
crossOriginIsolated: (e) => Ne("corp", e)
|
|
4583
4621
|
};
|
|
4584
|
-
function
|
|
4622
|
+
function Zr(e = {}) {
|
|
4585
4623
|
const t = Object.entries(e).map(([i, r]) => r != null && Ri.hasOwnProperty(i) ? Ri[i](r) : "").filter(Boolean);
|
|
4586
4624
|
return t.length ? `?${t.join("&")}` : "";
|
|
4587
4625
|
}
|
|
4588
4626
|
function Ne(e, t) {
|
|
4589
4627
|
return t === !0 ? `${e}=1` : "";
|
|
4590
4628
|
}
|
|
4591
|
-
function
|
|
4629
|
+
function ic(e, t) {
|
|
4592
4630
|
return typeof t == "boolean" ? `${e}=${t ? "1" : "0"}` : "";
|
|
4593
4631
|
}
|
|
4594
4632
|
function Bi(e, t) {
|
|
@@ -4598,31 +4636,31 @@ function Bi(e, t) {
|
|
|
4598
4636
|
}
|
|
4599
4637
|
return "";
|
|
4600
4638
|
}
|
|
4601
|
-
function
|
|
4639
|
+
function Qt(e, t = "", i = []) {
|
|
4602
4640
|
return i.includes(t) ? `${e}=${encodeURIComponent(t)}` : "";
|
|
4603
4641
|
}
|
|
4604
4642
|
function qe(e, t) {
|
|
4605
4643
|
return (Array.isArray(t) ? t : [t]).filter((r) => typeof r == "string" && r.trim() !== "").map((r) => `${e}=${encodeURIComponent(r)}`).join("&");
|
|
4606
4644
|
}
|
|
4607
|
-
function
|
|
4645
|
+
function Pr() {
|
|
4608
4646
|
return Math.random().toString(36).slice(2, 6) + Math.random().toString(36).slice(2, 6);
|
|
4609
4647
|
}
|
|
4610
4648
|
function li(e, t) {
|
|
4611
|
-
return `${
|
|
4649
|
+
return `${Gr(t)}${e}${Zr(t)}`;
|
|
4612
4650
|
}
|
|
4613
4651
|
function ci(e, t) {
|
|
4614
4652
|
const i = {
|
|
4615
4653
|
forceEmbedLayout: !0
|
|
4616
4654
|
};
|
|
4617
|
-
return t && typeof t == "object" && Object.assign(i, t), `${
|
|
4655
|
+
return t && typeof t == "object" && Object.assign(i, t), `${Gr(i)}${e}${Zr(i)}`;
|
|
4618
4656
|
}
|
|
4619
|
-
function
|
|
4620
|
-
return (typeof e.origin == "string" ? e.origin :
|
|
4657
|
+
function Gr(e = {}) {
|
|
4658
|
+
return (typeof e.origin == "string" ? e.origin : Kl).replace(/\/$/, "");
|
|
4621
4659
|
}
|
|
4622
4660
|
function si(e, t, i) {
|
|
4623
4661
|
if (!t || !e || !e.parentNode)
|
|
4624
4662
|
throw new Error("Invalid Element");
|
|
4625
|
-
e.id && (t.id = e.id), e.className && (t.className = e.className),
|
|
4663
|
+
e.id && (t.id = e.id), e.className && (t.className = e.className), rc(t, i), oc(e, t, i), e.replaceWith(t);
|
|
4626
4664
|
}
|
|
4627
4665
|
function Mi(e) {
|
|
4628
4666
|
if (typeof e == "string") {
|
|
@@ -4637,22 +4675,22 @@ function Mi(e) {
|
|
|
4637
4675
|
function ui(e) {
|
|
4638
4676
|
return e && e.newWindow === !1 ? "_self" : "_blank";
|
|
4639
4677
|
}
|
|
4640
|
-
function
|
|
4641
|
-
const i = Object.hasOwnProperty.call(t, "height") ? `${t.height}` : `${
|
|
4678
|
+
function rc(e, t = {}) {
|
|
4679
|
+
const i = Object.hasOwnProperty.call(t, "height") ? `${t.height}` : `${Xl}`, r = Object.hasOwnProperty.call(t, "width") ? `${t.width}` : void 0;
|
|
4642
4680
|
e.setAttribute("height", i), r ? e.setAttribute("width", r) : e.setAttribute("style", "width:100%;");
|
|
4643
4681
|
}
|
|
4644
|
-
function
|
|
4682
|
+
function oc(e, t, i = {}) {
|
|
4645
4683
|
var o, n;
|
|
4646
4684
|
const r = ((n = (o = e.allow) == null ? void 0 : o.split(";")) == null ? void 0 : n.map((a) => a.trim())) ?? [];
|
|
4647
4685
|
i.crossOriginIsolated && !r.includes("cross-origin-isolated") && r.push("cross-origin-isolated"), r.length > 0 && (t.allow = r.join("; "));
|
|
4648
4686
|
}
|
|
4649
|
-
class
|
|
4687
|
+
class nc {
|
|
4650
4688
|
constructor(t) {
|
|
4651
4689
|
this.pending = {}, this.port = t, this.port.onmessage = this.messageListener.bind(this);
|
|
4652
4690
|
}
|
|
4653
4691
|
request({ type: t, payload: i }) {
|
|
4654
4692
|
return new Promise((r, o) => {
|
|
4655
|
-
const n =
|
|
4693
|
+
const n = Pr();
|
|
4656
4694
|
this.pending[n] = { resolve: r, reject: o }, this.port.postMessage({
|
|
4657
4695
|
type: t,
|
|
4658
4696
|
payload: {
|
|
@@ -4675,7 +4713,7 @@ class ec {
|
|
|
4675
4713
|
return delete i.__reqid, delete i.__success, delete i.__error, Object.keys(i).length ? i : null;
|
|
4676
4714
|
}
|
|
4677
4715
|
}
|
|
4678
|
-
class
|
|
4716
|
+
class ac {
|
|
4679
4717
|
constructor(t, i) {
|
|
4680
4718
|
this.editor = {
|
|
4681
4719
|
/**
|
|
@@ -4779,7 +4817,7 @@ class tc {
|
|
|
4779
4817
|
payload: { path: r }
|
|
4780
4818
|
});
|
|
4781
4819
|
}
|
|
4782
|
-
}, this._rdc = new
|
|
4820
|
+
}, this._rdc = new nc(t), Object.defineProperty(this.preview, "origin", {
|
|
4783
4821
|
value: typeof i.previewOrigin == "string" ? i.previewOrigin : null,
|
|
4784
4822
|
writable: !1
|
|
4785
4823
|
});
|
|
@@ -4821,11 +4859,11 @@ class tc {
|
|
|
4821
4859
|
}
|
|
4822
4860
|
}
|
|
4823
4861
|
const rt = [];
|
|
4824
|
-
class
|
|
4862
|
+
class lc {
|
|
4825
4863
|
constructor(t) {
|
|
4826
|
-
this.id =
|
|
4864
|
+
this.id = Pr(), this.element = t, this.pending = new Promise((i, r) => {
|
|
4827
4865
|
const o = ({ data: s, ports: M }) => {
|
|
4828
|
-
(s == null ? void 0 : s.action) === "SDK_INIT_SUCCESS" && s.id === this.id && (this.vm = new
|
|
4866
|
+
(s == null ? void 0 : s.action) === "SDK_INIT_SUCCESS" && s.id === this.id && (this.vm = new ac(M[0], s.payload), i(this.vm), a());
|
|
4829
4867
|
}, n = () => {
|
|
4830
4868
|
var s;
|
|
4831
4869
|
(s = this.element.contentWindow) == null || s.postMessage(
|
|
@@ -4846,29 +4884,29 @@ class ic {
|
|
|
4846
4884
|
a();
|
|
4847
4885
|
return;
|
|
4848
4886
|
}
|
|
4849
|
-
if (l >=
|
|
4887
|
+
if (l >= $l) {
|
|
4850
4888
|
a(), r("Timeout: Unable to establish a connection with the StackBlitz VM"), rt.forEach((s, M) => {
|
|
4851
4889
|
s.id === this.id && rt.splice(M, 1);
|
|
4852
4890
|
});
|
|
4853
4891
|
return;
|
|
4854
4892
|
}
|
|
4855
4893
|
l++, n();
|
|
4856
|
-
},
|
|
4894
|
+
}, Fl);
|
|
4857
4895
|
}), rt.push(this);
|
|
4858
4896
|
}
|
|
4859
4897
|
}
|
|
4860
|
-
const
|
|
4898
|
+
const cc = (e) => {
|
|
4861
4899
|
const t = e instanceof Element ? "element" : "id";
|
|
4862
4900
|
return rt.find((i) => i[t] === e) ?? null;
|
|
4863
4901
|
};
|
|
4864
|
-
function
|
|
4902
|
+
function sc(e, t) {
|
|
4865
4903
|
const i = document.createElement("input");
|
|
4866
4904
|
return i.type = "hidden", i.name = e, i.value = t, i;
|
|
4867
4905
|
}
|
|
4868
|
-
function
|
|
4906
|
+
function Mc(e) {
|
|
4869
4907
|
return e.replace(/\[/g, "%5B").replace(/\]/g, "%5D");
|
|
4870
4908
|
}
|
|
4871
|
-
function
|
|
4909
|
+
function Wr({
|
|
4872
4910
|
template: e,
|
|
4873
4911
|
title: t,
|
|
4874
4912
|
description: i,
|
|
@@ -4881,18 +4919,18 @@ function Gr({
|
|
|
4881
4919
|
console.warn(`Unsupported project.template: must be one of ${s}`);
|
|
4882
4920
|
}
|
|
4883
4921
|
const a = [], l = (s, M, u = "") => {
|
|
4884
|
-
a.push(
|
|
4922
|
+
a.push(sc(s, typeof M == "string" ? M : u));
|
|
4885
4923
|
};
|
|
4886
4924
|
l("project[title]", t), typeof i == "string" && i.length > 0 && l("project[description]", i), l("project[template]", e, "javascript"), r && (e === "node" ? console.warn(
|
|
4887
4925
|
"Invalid project.dependencies: dependencies must be provided as a 'package.json' file when using the 'node' template."
|
|
4888
4926
|
) : l("project[dependencies]", JSON.stringify(r))), n && l("project[settings]", JSON.stringify(n)), Object.entries(o).forEach(([s, M]) => {
|
|
4889
|
-
l(`project[files][${
|
|
4927
|
+
l(`project[files][${Mc(s)}]`, M);
|
|
4890
4928
|
});
|
|
4891
4929
|
const c = document.createElement("form");
|
|
4892
4930
|
return c.method = "POST", c.setAttribute("style", "display:none!important;"), c.append(...a), c;
|
|
4893
4931
|
}
|
|
4894
|
-
function
|
|
4895
|
-
const i =
|
|
4932
|
+
function uc(e, t) {
|
|
4933
|
+
const i = Wr(e);
|
|
4896
4934
|
return i.action = ci("/run", t), i.id = "sb_run", `<!doctype html>
|
|
4897
4935
|
<html>
|
|
4898
4936
|
<head><title></title></head>
|
|
@@ -4902,89 +4940,89 @@ function ac(e, t) {
|
|
|
4902
4940
|
</body>
|
|
4903
4941
|
</html>`;
|
|
4904
4942
|
}
|
|
4905
|
-
function
|
|
4906
|
-
const i =
|
|
4943
|
+
function gc(e, t) {
|
|
4944
|
+
const i = Wr(e);
|
|
4907
4945
|
i.action = li("/run", t), i.target = ui(t), document.body.appendChild(i), i.submit(), document.body.removeChild(i);
|
|
4908
4946
|
}
|
|
4909
|
-
function
|
|
4910
|
-
return e != null && e.contentWindow ? (
|
|
4947
|
+
function xt(e) {
|
|
4948
|
+
return e != null && e.contentWindow ? (cc(e) ?? new lc(e)).pending : Promise.reject("Provided element is not an iframe.");
|
|
4911
4949
|
}
|
|
4912
|
-
function
|
|
4913
|
-
|
|
4950
|
+
function dc(e, t) {
|
|
4951
|
+
gc(e, t);
|
|
4914
4952
|
}
|
|
4915
|
-
function
|
|
4953
|
+
function Ic(e, t) {
|
|
4916
4954
|
const i = li(`/edit/${e}`, t), r = ui(t);
|
|
4917
4955
|
window.open(i, r);
|
|
4918
4956
|
}
|
|
4919
|
-
function
|
|
4957
|
+
function Nc(e, t) {
|
|
4920
4958
|
const i = li(`/github/${e}`, t), r = ui(t);
|
|
4921
4959
|
window.open(i, r);
|
|
4922
4960
|
}
|
|
4923
|
-
function
|
|
4961
|
+
function jc(e, t, i) {
|
|
4924
4962
|
var a;
|
|
4925
|
-
const r = Mi(e), o =
|
|
4926
|
-
return si(r, n, i), (a = n.contentDocument) == null || a.write(o),
|
|
4963
|
+
const r = Mi(e), o = uc(t, i), n = document.createElement("iframe");
|
|
4964
|
+
return si(r, n, i), (a = n.contentDocument) == null || a.write(o), xt(n);
|
|
4927
4965
|
}
|
|
4928
|
-
function
|
|
4966
|
+
function yc(e, t, i) {
|
|
4929
4967
|
const r = Mi(e), o = document.createElement("iframe");
|
|
4930
|
-
return o.src = ci(`/edit/${t}`, i), si(r, o, i),
|
|
4968
|
+
return o.src = ci(`/edit/${t}`, i), si(r, o, i), xt(o);
|
|
4931
4969
|
}
|
|
4932
|
-
function
|
|
4970
|
+
function Dc(e, t, i) {
|
|
4933
4971
|
const r = Mi(e), o = document.createElement("iframe");
|
|
4934
|
-
return o.src = ci(`/github/${t}`, i), si(r, o, i),
|
|
4935
|
-
}
|
|
4936
|
-
const
|
|
4937
|
-
connect:
|
|
4938
|
-
embedGithubProject:
|
|
4939
|
-
embedProject:
|
|
4940
|
-
embedProjectId:
|
|
4941
|
-
openGithubProject:
|
|
4942
|
-
openProject:
|
|
4943
|
-
openProjectId:
|
|
4972
|
+
return o.src = ci(`/github/${t}`, i), si(r, o, i), xt(o);
|
|
4973
|
+
}
|
|
4974
|
+
const hc = {
|
|
4975
|
+
connect: xt,
|
|
4976
|
+
embedGithubProject: Dc,
|
|
4977
|
+
embedProject: jc,
|
|
4978
|
+
embedProjectId: yc,
|
|
4979
|
+
openGithubProject: Nc,
|
|
4980
|
+
openProject: dc,
|
|
4981
|
+
openProjectId: Ic
|
|
4944
4982
|
};
|
|
4945
|
-
var
|
|
4946
|
-
const
|
|
4983
|
+
var bc = /* @__PURE__ */ f('<svg xmlns=http://www.w3.org/2000/svg viewBox="0 0 256 368"><path fill=#49A2F8 d="M109.586 217.013H0L200.34 0l-53.926 150.233H256L55.645 367.246l53.927-150.233z">'), mc = /* @__PURE__ */ f('<button><span class="text-nowrap overflow-hidden inline-block font-bold">Try me in Stackblitz');
|
|
4984
|
+
const wc = (e) => `{
|
|
4947
4985
|
"installDependencies": false,
|
|
4948
4986
|
"startCommand": "pnpm create bati ${e.join(" ")} --force . && pnpm i && pnpm run dev",
|
|
4949
4987
|
"env": {
|
|
4950
4988
|
"NODE_ENV": "development"
|
|
4951
4989
|
}
|
|
4952
4990
|
}`;
|
|
4953
|
-
function
|
|
4954
|
-
|
|
4991
|
+
function Lc(e) {
|
|
4992
|
+
hc.openProject(e, {});
|
|
4955
4993
|
}
|
|
4956
|
-
function
|
|
4994
|
+
function fc(e) {
|
|
4957
4995
|
return (() => {
|
|
4958
|
-
var t =
|
|
4959
|
-
return S(() =>
|
|
4996
|
+
var t = bc();
|
|
4997
|
+
return S(() => Z(t, "class", e.class)), t;
|
|
4960
4998
|
})();
|
|
4961
4999
|
}
|
|
4962
|
-
function
|
|
5000
|
+
function xc(e) {
|
|
4963
5001
|
return (() => {
|
|
4964
|
-
var t =
|
|
4965
|
-
return t.$$click = () =>
|
|
5002
|
+
var t = mc(), i = t.firstChild;
|
|
5003
|
+
return t.$$click = () => Lc({
|
|
4966
5004
|
title: "Bati project",
|
|
4967
5005
|
description: "Project generated with Bati",
|
|
4968
5006
|
template: "node",
|
|
4969
5007
|
files: {
|
|
4970
|
-
".stackblitzrc":
|
|
5008
|
+
".stackblitzrc": wc(e.flags),
|
|
4971
5009
|
"README.md": "Waiting for Bati CLI to finish. This file will automatically refresh when the project is ready"
|
|
4972
5010
|
}
|
|
4973
|
-
}), D(t, y(
|
|
5011
|
+
}), D(t, y(fc, {
|
|
4974
5012
|
class: "h-6"
|
|
4975
|
-
}), i), S(() => K(t, J("tooltip-bottom tooltip-warning left-[1px] btn btn-sm hover:btn-ghost group h-auto", e.class))), t;
|
|
5013
|
+
}), i), S(() => K(t, J("tooltip-bottom tooltip-warning left-[1px] btn btn-sm hover:btn-ghost group h-auto stackblitz-cta", e.class))), t;
|
|
4976
5014
|
})();
|
|
4977
5015
|
}
|
|
4978
5016
|
Se(["click"]);
|
|
4979
|
-
function
|
|
5017
|
+
function pc() {
|
|
4980
5018
|
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(e) {
|
|
4981
5019
|
const t = Math.random() * 16 | 0;
|
|
4982
5020
|
return (e === "x" ? t : t & 3 | 8).toString(16);
|
|
4983
5021
|
});
|
|
4984
5022
|
}
|
|
4985
|
-
function
|
|
5023
|
+
function Tc(e, t) {
|
|
4986
5024
|
var r, o;
|
|
4987
|
-
const i =
|
|
5025
|
+
const i = pc();
|
|
4988
5026
|
switch (console.log({
|
|
4989
5027
|
interactionid: i,
|
|
4990
5028
|
event: e,
|
|
@@ -5005,7 +5043,7 @@ function wc(e, t) {
|
|
|
5005
5043
|
}
|
|
5006
5044
|
}
|
|
5007
5045
|
}
|
|
5008
|
-
var
|
|
5046
|
+
var zc = /* @__PURE__ */ f('<div role=tabpanel class="tab-content !h-auto w-full bg-base-100 border-base-300 p-1.5"><div class="sm:join flex flex-row w-full rounded-md">'), Ac = /* @__PURE__ */ f(`<div role=tablist class="tabs tabs-lift tabs-sm flex-1"><input type=radio name=package_manager role=tab class=tab aria-label=npm><input type=radio name=package_manager role=tab class=tab aria-label=pnpm><input type=radio name=package_manager role=tab class=tab aria-label=yarn><input type=radio name=package_manager role=tab class=tab aria-label=bun><script>
|
|
5009
5047
|
const p = localStorage.getItem("packageManager");
|
|
5010
5048
|
if (p) {
|
|
5011
5049
|
const select = 'input[name="package_manager"][aria-label="' + p + '"]';
|
|
@@ -5016,8 +5054,8 @@ var Lc = /* @__PURE__ */ x('<div role=tabpanel class="tab-content !h-auto w-full
|
|
|
5016
5054
|
}`);
|
|
5017
5055
|
function et(e) {
|
|
5018
5056
|
return (() => {
|
|
5019
|
-
var t =
|
|
5020
|
-
return D(i, y(
|
|
5057
|
+
var t = zc(), i = t.firstChild;
|
|
5058
|
+
return D(i, y(_l, {
|
|
5021
5059
|
get onMouseEnter() {
|
|
5022
5060
|
return e.onMouseEnter;
|
|
5023
5061
|
},
|
|
@@ -5030,7 +5068,7 @@ function et(e) {
|
|
|
5030
5068
|
get children() {
|
|
5031
5069
|
return e.children;
|
|
5032
5070
|
}
|
|
5033
|
-
}), null), D(i, y(
|
|
5071
|
+
}), null), D(i, y(xc, {
|
|
5034
5072
|
get flags() {
|
|
5035
5073
|
return e.flags;
|
|
5036
5074
|
},
|
|
@@ -5038,26 +5076,26 @@ function et(e) {
|
|
|
5038
5076
|
}), null), t;
|
|
5039
5077
|
})();
|
|
5040
5078
|
}
|
|
5041
|
-
function
|
|
5079
|
+
function vc() {
|
|
5042
5080
|
const {
|
|
5043
5081
|
selectedFeaturesFlags: e
|
|
5044
|
-
} =
|
|
5082
|
+
} = U(R), [t, i] = O("Copy to Clipboard");
|
|
5045
5083
|
function r() {
|
|
5046
|
-
return e().map((
|
|
5084
|
+
return e().map((g) => `--${g}`);
|
|
5047
5085
|
}
|
|
5048
5086
|
const o = z(() => ["npm", "create", "bati", "---", ...r()]), n = z(() => ["pnpm", "create", "bati", ...r()]), a = z(() => ["yarn", "dlx", "@batijs/cli", ...r()]), l = z(() => ["bun", "create", "bati", ...r()]), c = () => {
|
|
5049
5087
|
i("Copy to Clipboard");
|
|
5050
|
-
}, s = (
|
|
5051
|
-
|
|
5088
|
+
}, s = (g) => {
|
|
5089
|
+
Tc("copy", {
|
|
5052
5090
|
flags: e(),
|
|
5053
|
-
package_manager:
|
|
5091
|
+
package_manager: g
|
|
5054
5092
|
}), i("Copied to Clipboard!");
|
|
5055
|
-
}, M = (
|
|
5056
|
-
localStorage.setItem("packageManager",
|
|
5057
|
-
};
|
|
5093
|
+
}, M = (g) => {
|
|
5094
|
+
localStorage.setItem("packageManager", g);
|
|
5095
|
+
}, u = localStorage.getItem("packageManager");
|
|
5058
5096
|
return (() => {
|
|
5059
|
-
var
|
|
5060
|
-
return
|
|
5097
|
+
var g = Ac(), d = g.firstChild, N = d.nextSibling, I = N.nextSibling, b = I.nextSibling, m = b.nextSibling;
|
|
5098
|
+
return d.addEventListener("change", () => M("npm")), d.checked = u === "npm", D(g, y(et, {
|
|
5061
5099
|
onMouseEnter: c,
|
|
5062
5100
|
onClick: () => s("npm"),
|
|
5063
5101
|
get tooltipText() {
|
|
@@ -5069,7 +5107,7 @@ function fc() {
|
|
|
5069
5107
|
get children() {
|
|
5070
5108
|
return o().join(" ");
|
|
5071
5109
|
}
|
|
5072
|
-
}),
|
|
5110
|
+
}), N), N.addEventListener("change", () => M("pnpm")), N.checked = u === "pnpm", D(g, y(et, {
|
|
5073
5111
|
onMouseEnter: c,
|
|
5074
5112
|
onClick: () => s("pnpm"),
|
|
5075
5113
|
get tooltipText() {
|
|
@@ -5081,7 +5119,7 @@ function fc() {
|
|
|
5081
5119
|
get children() {
|
|
5082
5120
|
return n().join(" ");
|
|
5083
5121
|
}
|
|
5084
|
-
}),
|
|
5122
|
+
}), I), I.addEventListener("change", () => M("yarn")), I.checked = u === "yarn", D(g, y(et, {
|
|
5085
5123
|
onMouseEnter: c,
|
|
5086
5124
|
onClick: () => s("yarn"),
|
|
5087
5125
|
get tooltipText() {
|
|
@@ -5093,7 +5131,7 @@ function fc() {
|
|
|
5093
5131
|
get children() {
|
|
5094
5132
|
return a().join(" ");
|
|
5095
5133
|
}
|
|
5096
|
-
}),
|
|
5134
|
+
}), b), b.addEventListener("change", () => M("bun")), b.checked = u === "bun", D(g, y(et, {
|
|
5097
5135
|
onMouseEnter: c,
|
|
5098
5136
|
onClick: () => s("bun"),
|
|
5099
5137
|
get tooltipText() {
|
|
@@ -5105,64 +5143,66 @@ function fc() {
|
|
|
5105
5143
|
get children() {
|
|
5106
5144
|
return l().join(" ");
|
|
5107
5145
|
}
|
|
5108
|
-
}),
|
|
5146
|
+
}), m), g;
|
|
5109
5147
|
})();
|
|
5110
5148
|
}
|
|
5111
|
-
var
|
|
5112
|
-
function
|
|
5149
|
+
var kc = /* @__PURE__ */ f("<div>"), Sc = /* @__PURE__ */ f('<div class="flex flex-col bg-base-300 p-6 rounded-xl shadow-2xl font-sans bati-widget"><div class="mb-2 w-full"></div><div class=flex></div><div class="divider my-2"></div><div class="w-full flex flex-col relative"><div class="flex items-center py-2 px-3 overflow-auto md:overflow-visible bg-base-100 rounded-md"><span class="text-lg font-bold">Presets</span><div class="divider divider-horizontal mx-1">');
|
|
5150
|
+
function Cc(e) {
|
|
5113
5151
|
const {
|
|
5114
5152
|
rules: t
|
|
5115
|
-
} =
|
|
5116
|
-
return (
|
|
5117
|
-
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5139
|
-
|
|
5140
|
-
|
|
5141
|
-
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
|
|
5145
|
-
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
5153
|
+
} = U(R);
|
|
5154
|
+
return y(Jo, {
|
|
5155
|
+
get children() {
|
|
5156
|
+
var i = Sc(), r = i.firstChild, o = r.nextSibling, n = o.nextSibling, a = n.nextSibling, l = a.firstChild, c = l.firstChild;
|
|
5157
|
+
return c.nextSibling, D(r, y(bn, {})), D(o, y(vc, {})), D(i, y(P, {
|
|
5158
|
+
get when() {
|
|
5159
|
+
return t().size > 0;
|
|
5160
|
+
},
|
|
5161
|
+
get children() {
|
|
5162
|
+
var s = kc();
|
|
5163
|
+
return D(s, y(Nr, {
|
|
5164
|
+
get error() {
|
|
5165
|
+
return t().error;
|
|
5166
|
+
},
|
|
5167
|
+
get warning() {
|
|
5168
|
+
return t().warning;
|
|
5169
|
+
},
|
|
5170
|
+
get info() {
|
|
5171
|
+
return t().info;
|
|
5172
|
+
},
|
|
5173
|
+
get invisible() {
|
|
5174
|
+
return t().invisible;
|
|
5175
|
+
}
|
|
5176
|
+
})), S((M) => De(s, {
|
|
5177
|
+
"flex flex-col gap-2 leading-6 rounded-md mt-4": t().invisible.length < t().size
|
|
5178
|
+
}, M)), s;
|
|
5179
|
+
}
|
|
5180
|
+
}), n), D(l, y(Hl, {}), null), D(a, y(Yl, {}), null), S((s) => {
|
|
5181
|
+
var M = e.theme, u = !e.widget;
|
|
5182
|
+
return M !== s.e && Z(i, "data-theme", s.e = M), u !== s.t && i.classList.toggle("w-11/12", s.t = u), s;
|
|
5183
|
+
}, {
|
|
5184
|
+
e: void 0,
|
|
5185
|
+
t: void 0
|
|
5186
|
+
}), i;
|
|
5187
|
+
}
|
|
5188
|
+
});
|
|
5149
5189
|
}
|
|
5150
|
-
const Ac = `/*! tailwindcss v4.0.6 | MIT License | https://tailwindcss.com */@layer theme,base,components,utilities;@layer theme{:root,:host{--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--color-red-50: oklch(.971 .013 17.38);--color-red-100: oklch(.936 .032 17.717);--color-red-200: oklch(.885 .062 18.334);--color-red-300: oklch(.808 .114 19.571);--color-red-400: oklch(.704 .191 22.216);--color-red-500: oklch(.637 .237 25.331);--color-red-600: oklch(.577 .245 27.325);--color-red-700: oklch(.505 .213 27.518);--color-red-800: oklch(.444 .177 26.899);--color-red-900: oklch(.396 .141 25.723);--color-red-950: oklch(.258 .092 26.042);--color-orange-50: oklch(.98 .016 73.684);--color-orange-100: oklch(.954 .038 75.164);--color-orange-200: oklch(.901 .076 70.697);--color-orange-300: oklch(.837 .128 66.29);--color-orange-400: oklch(.75 .183 55.934);--color-orange-500: oklch(.705 .213 47.604);--color-orange-600: oklch(.646 .222 41.116);--color-orange-700: oklch(.553 .195 38.402);--color-orange-800: oklch(.47 .157 37.304);--color-orange-900: oklch(.408 .123 38.172);--color-orange-950: oklch(.266 .079 36.259);--color-amber-50: oklch(.987 .022 95.277);--color-amber-100: oklch(.962 .059 95.617);--color-amber-200: oklch(.924 .12 95.746);--color-amber-300: oklch(.879 .169 91.605);--color-amber-400: oklch(.828 .189 84.429);--color-amber-500: oklch(.769 .188 70.08);--color-amber-600: oklch(.666 .179 58.318);--color-amber-700: oklch(.555 .163 48.998);--color-amber-800: oklch(.473 .137 46.201);--color-amber-900: oklch(.414 .112 45.904);--color-amber-950: oklch(.279 .077 45.635);--color-yellow-50: oklch(.987 .026 102.212);--color-yellow-100: oklch(.973 .071 103.193);--color-yellow-200: oklch(.945 .129 101.54);--color-yellow-300: oklch(.905 .182 98.111);--color-yellow-400: oklch(.852 .199 91.936);--color-yellow-500: oklch(.795 .184 86.047);--color-yellow-600: oklch(.681 .162 75.834);--color-yellow-700: oklch(.554 .135 66.442);--color-yellow-800: oklch(.476 .114 61.907);--color-yellow-900: oklch(.421 .095 57.708);--color-yellow-950: oklch(.286 .066 53.813);--color-lime-50: oklch(.986 .031 120.757);--color-lime-100: oklch(.967 .067 122.328);--color-lime-200: oklch(.938 .127 124.321);--color-lime-300: oklch(.897 .196 126.665);--color-lime-400: oklch(.841 .238 128.85);--color-lime-500: oklch(.768 .233 130.85);--color-lime-600: oklch(.648 .2 131.684);--color-lime-700: oklch(.532 .157 131.589);--color-lime-800: oklch(.453 .124 130.933);--color-lime-900: oklch(.405 .101 131.063);--color-lime-950: oklch(.274 .072 132.109);--color-green-50: oklch(.982 .018 155.826);--color-green-100: oklch(.962 .044 156.743);--color-green-200: oklch(.925 .084 155.995);--color-green-300: oklch(.871 .15 154.449);--color-green-400: oklch(.792 .209 151.711);--color-green-500: oklch(.723 .219 149.579);--color-green-600: oklch(.627 .194 149.214);--color-green-700: oklch(.527 .154 150.069);--color-green-800: oklch(.448 .119 151.328);--color-green-900: oklch(.393 .095 152.535);--color-green-950: oklch(.266 .065 152.934);--color-emerald-50: oklch(.979 .021 166.113);--color-emerald-100: oklch(.95 .052 163.051);--color-emerald-200: oklch(.905 .093 164.15);--color-emerald-300: oklch(.845 .143 164.978);--color-emerald-400: oklch(.765 .177 163.223);--color-emerald-500: oklch(.696 .17 162.48);--color-emerald-600: oklch(.596 .145 163.225);--color-emerald-700: oklch(.508 .118 165.612);--color-emerald-800: oklch(.432 .095 166.913);--color-emerald-900: oklch(.378 .077 168.94);--color-emerald-950: oklch(.262 .051 172.552);--color-teal-50: oklch(.984 .014 180.72);--color-teal-100: oklch(.953 .051 180.801);--color-teal-200: oklch(.91 .096 180.426);--color-teal-300: oklch(.855 .138 181.071);--color-teal-400: oklch(.777 .152 181.912);--color-teal-500: oklch(.704 .14 182.503);--color-teal-600: oklch(.6 .118 184.704);--color-teal-700: oklch(.511 .096 186.391);--color-teal-800: oklch(.437 .078 188.216);--color-teal-900: oklch(.386 .063 188.416);--color-teal-950: oklch(.277 .046 192.524);--color-cyan-50: oklch(.984 .019 200.873);--color-cyan-100: oklch(.956 .045 203.388);--color-cyan-200: oklch(.917 .08 205.041);--color-cyan-300: oklch(.865 .127 207.078);--color-cyan-400: oklch(.789 .154 211.53);--color-cyan-500: oklch(.715 .143 215.221);--color-cyan-600: oklch(.609 .126 221.723);--color-cyan-700: oklch(.52 .105 223.128);--color-cyan-800: oklch(.45 .085 224.283);--color-cyan-900: oklch(.398 .07 227.392);--color-cyan-950: oklch(.302 .056 229.695);--color-sky-50: oklch(.977 .013 236.62);--color-sky-100: oklch(.951 .026 236.824);--color-sky-200: oklch(.901 .058 230.902);--color-sky-300: oklch(.828 .111 230.318);--color-sky-400: oklch(.746 .16 232.661);--color-sky-500: oklch(.685 .169 237.323);--color-sky-600: oklch(.588 .158 241.966);--color-sky-700: oklch(.5 .134 242.749);--color-sky-800: oklch(.443 .11 240.79);--color-sky-900: oklch(.391 .09 240.876);--color-sky-950: oklch(.293 .066 243.157);--color-blue-50: oklch(.97 .014 254.604);--color-blue-100: oklch(.932 .032 255.585);--color-blue-200: oklch(.882 .059 254.128);--color-blue-300: oklch(.809 .105 251.813);--color-blue-400: oklch(.707 .165 254.624);--color-blue-500: oklch(.623 .214 259.815);--color-blue-600: oklch(.546 .245 262.881);--color-blue-700: oklch(.488 .243 264.376);--color-blue-800: oklch(.424 .199 265.638);--color-blue-900: oklch(.379 .146 265.522);--color-blue-950: oklch(.282 .091 267.935);--color-indigo-50: oklch(.962 .018 272.314);--color-indigo-100: oklch(.93 .034 272.788);--color-indigo-200: oklch(.87 .065 274.039);--color-indigo-300: oklch(.785 .115 274.713);--color-indigo-400: oklch(.673 .182 276.935);--color-indigo-500: oklch(.585 .233 277.117);--color-indigo-600: oklch(.511 .262 276.966);--color-indigo-700: oklch(.457 .24 277.023);--color-indigo-800: oklch(.398 .195 277.366);--color-indigo-900: oklch(.359 .144 278.697);--color-indigo-950: oklch(.257 .09 281.288);--color-violet-50: oklch(.969 .016 293.756);--color-violet-100: oklch(.943 .029 294.588);--color-violet-200: oklch(.894 .057 293.283);--color-violet-300: oklch(.811 .111 293.571);--color-violet-400: oklch(.702 .183 293.541);--color-violet-500: oklch(.606 .25 292.717);--color-violet-600: oklch(.541 .281 293.009);--color-violet-700: oklch(.491 .27 292.581);--color-violet-800: oklch(.432 .232 292.759);--color-violet-900: oklch(.38 .189 293.745);--color-violet-950: oklch(.283 .141 291.089);--color-purple-50: oklch(.977 .014 308.299);--color-purple-100: oklch(.946 .033 307.174);--color-purple-200: oklch(.902 .063 306.703);--color-purple-300: oklch(.827 .119 306.383);--color-purple-400: oklch(.714 .203 305.504);--color-purple-500: oklch(.627 .265 303.9);--color-purple-600: oklch(.558 .288 302.321);--color-purple-700: oklch(.496 .265 301.924);--color-purple-800: oklch(.438 .218 303.724);--color-purple-900: oklch(.381 .176 304.987);--color-purple-950: oklch(.291 .149 302.717);--color-fuchsia-50: oklch(.977 .017 320.058);--color-fuchsia-100: oklch(.952 .037 318.852);--color-fuchsia-200: oklch(.903 .076 319.62);--color-fuchsia-300: oklch(.833 .145 321.434);--color-fuchsia-400: oklch(.74 .238 322.16);--color-fuchsia-500: oklch(.667 .295 322.15);--color-fuchsia-600: oklch(.591 .293 322.896);--color-fuchsia-700: oklch(.518 .253 323.949);--color-fuchsia-800: oklch(.452 .211 324.591);--color-fuchsia-900: oklch(.401 .17 325.612);--color-fuchsia-950: oklch(.293 .136 325.661);--color-pink-50: oklch(.971 .014 343.198);--color-pink-100: oklch(.948 .028 342.258);--color-pink-200: oklch(.899 .061 343.231);--color-pink-300: oklch(.823 .12 346.018);--color-pink-400: oklch(.718 .202 349.761);--color-pink-500: oklch(.656 .241 354.308);--color-pink-600: oklch(.592 .249 .584);--color-pink-700: oklch(.525 .223 3.958);--color-pink-800: oklch(.459 .187 3.815);--color-pink-900: oklch(.408 .153 2.432);--color-pink-950: oklch(.284 .109 3.907);--color-rose-50: oklch(.969 .015 12.422);--color-rose-100: oklch(.941 .03 12.58);--color-rose-200: oklch(.892 .058 10.001);--color-rose-300: oklch(.81 .117 11.638);--color-rose-400: oklch(.712 .194 13.428);--color-rose-500: oklch(.645 .246 16.439);--color-rose-600: oklch(.586 .253 17.585);--color-rose-700: oklch(.514 .222 16.935);--color-rose-800: oklch(.455 .188 13.697);--color-rose-900: oklch(.41 .159 10.272);--color-rose-950: oklch(.271 .105 12.094);--color-slate-50: oklch(.984 .003 247.858);--color-slate-100: oklch(.968 .007 247.896);--color-slate-200: oklch(.929 .013 255.508);--color-slate-300: oklch(.869 .022 252.894);--color-slate-400: oklch(.704 .04 256.788);--color-slate-500: oklch(.554 .046 257.417);--color-slate-600: oklch(.446 .043 257.281);--color-slate-700: oklch(.372 .044 257.287);--color-slate-800: oklch(.279 .041 260.031);--color-slate-900: oklch(.208 .042 265.755);--color-slate-950: oklch(.129 .042 264.695);--color-gray-50: oklch(.985 .002 247.839);--color-gray-100: oklch(.967 .003 264.542);--color-gray-200: oklch(.928 .006 264.531);--color-gray-300: oklch(.872 .01 258.338);--color-gray-400: oklch(.707 .022 261.325);--color-gray-500: oklch(.551 .027 264.364);--color-gray-600: oklch(.446 .03 256.802);--color-gray-700: oklch(.373 .034 259.733);--color-gray-800: oklch(.278 .033 256.848);--color-gray-900: oklch(.21 .034 264.665);--color-gray-950: oklch(.13 .028 261.692);--color-zinc-50: oklch(.985 0 0);--color-zinc-100: oklch(.967 .001 286.375);--color-zinc-200: oklch(.92 .004 286.32);--color-zinc-300: oklch(.871 .006 286.286);--color-zinc-400: oklch(.705 .015 286.067);--color-zinc-500: oklch(.552 .016 285.938);--color-zinc-600: oklch(.442 .017 285.786);--color-zinc-700: oklch(.37 .013 285.805);--color-zinc-800: oklch(.274 .006 286.033);--color-zinc-900: oklch(.21 .006 285.885);--color-zinc-950: oklch(.141 .005 285.823);--color-neutral-50: oklch(.985 0 0);--color-neutral-100: oklch(.97 0 0);--color-neutral-200: oklch(.922 0 0);--color-neutral-300: oklch(.87 0 0);--color-neutral-400: oklch(.708 0 0);--color-neutral-500: oklch(.556 0 0);--color-neutral-600: oklch(.439 0 0);--color-neutral-700: oklch(.371 0 0);--color-neutral-800: oklch(.269 0 0);--color-neutral-900: oklch(.205 0 0);--color-neutral-950: oklch(.145 0 0);--color-stone-50: oklch(.985 .001 106.423);--color-stone-100: oklch(.97 .001 106.424);--color-stone-200: oklch(.923 .003 48.717);--color-stone-300: oklch(.869 .005 56.366);--color-stone-400: oklch(.709 .01 56.259);--color-stone-500: oklch(.553 .013 58.071);--color-stone-600: oklch(.444 .011 73.639);--color-stone-700: oklch(.374 .01 67.558);--color-stone-800: oklch(.268 .007 34.298);--color-stone-900: oklch(.216 .006 56.043);--color-stone-950: oklch(.147 .004 49.25);--color-black: #000;--color-white: #fff;--spacing: .25rem;--breakpoint-sm: 40rem;--breakpoint-md: 48rem;--breakpoint-lg: 64rem;--breakpoint-xl: 80rem;--breakpoint-2xl: 96rem;--container-3xs: 16rem;--container-2xs: 18rem;--container-xs: 20rem;--container-sm: 24rem;--container-md: 28rem;--container-lg: 32rem;--container-xl: 36rem;--container-2xl: 42rem;--container-3xl: 48rem;--container-4xl: 56rem;--container-5xl: 64rem;--container-6xl: 72rem;--container-7xl: 80rem;--text-xs: .75rem;--text-xs--line-height: calc(1 / .75);--text-sm: .875rem;--text-sm--line-height: calc(1.25 / .875);--text-base: 1rem;--text-base--line-height: 1.5 ;--text-lg: 1.125rem;--text-lg--line-height: calc(1.75 / 1.125);--text-xl: 1.25rem;--text-xl--line-height: calc(1.75 / 1.25);--text-2xl: 1.5rem;--text-2xl--line-height: calc(2 / 1.5);--text-3xl: 1.875rem;--text-3xl--line-height: 1.2 ;--text-4xl: 2.25rem;--text-4xl--line-height: calc(2.5 / 2.25);--text-5xl: 3rem;--text-5xl--line-height: 1;--text-6xl: 3.75rem;--text-6xl--line-height: 1;--text-7xl: 4.5rem;--text-7xl--line-height: 1;--text-8xl: 6rem;--text-8xl--line-height: 1;--text-9xl: 8rem;--text-9xl--line-height: 1;--font-weight-thin: 100;--font-weight-extralight: 200;--font-weight-light: 300;--font-weight-normal: 400;--font-weight-medium: 500;--font-weight-semibold: 600;--font-weight-bold: 700;--font-weight-extrabold: 800;--font-weight-black: 900;--tracking-tighter: -.05em;--tracking-tight: -.025em;--tracking-normal: 0em;--tracking-wide: .025em;--tracking-wider: .05em;--tracking-widest: .1em;--leading-tight: 1.25;--leading-snug: 1.375;--leading-normal: 1.5;--leading-relaxed: 1.625;--leading-loose: 2;--radius-xs: .125rem;--radius-sm: .25rem;--radius-md: .375rem;--radius-lg: .5rem;--radius-xl: .75rem;--radius-2xl: 1rem;--radius-3xl: 1.5rem;--radius-4xl: 2rem;--shadow-2xs: 0 1px rgb(0 0 0 / .05);--shadow-xs: 0 1px 2px 0 rgb(0 0 0 / .05);--shadow-sm: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--inset-shadow-2xs: inset 0 1px rgb(0 0 0 / .05);--inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / .05);--inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / .05);--drop-shadow-xs: 0 1px 1px rgb(0 0 0 / .05);--drop-shadow-sm: 0 1px 2px rgb(0 0 0 / .15);--drop-shadow-md: 0 3px 3px rgb(0 0 0 / .12);--drop-shadow-lg: 0 4px 4px rgb(0 0 0 / .15);--drop-shadow-xl: 0 9px 7px rgb(0 0 0 / .1);--drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / .15);--ease-in: cubic-bezier(.4, 0, 1, 1);--ease-out: cubic-bezier(0, 0, .2, 1);--ease-in-out: cubic-bezier(.4, 0, .2, 1);--animate-spin: spin 1s linear infinite;--animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite;--animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;--animate-bounce: bounce 1s infinite;--blur-xs: 4px;--blur-sm: 8px;--blur-md: 12px;--blur-lg: 16px;--blur-xl: 24px;--blur-2xl: 40px;--blur-3xl: 64px;--perspective-dramatic: 100px;--perspective-near: 300px;--perspective-normal: 500px;--perspective-midrange: 800px;--perspective-distant: 1200px;--aspect-video: 16 / 9;--default-transition-duration: .15s;--default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);--default-font-family: var(--font-sans);--default-font-feature-settings: var(--font-sans--font-feature-settings);--default-font-variation-settings: var( --font-sans--font-variation-settings );--default-mono-font-family: var(--font-mono);--default-mono-font-feature-settings: var( --font-mono--font-feature-settings );--default-mono-font-variation-settings: var( --font-mono--font-variation-settings )}}@layer base{*,:after,:before,::backdrop,::file-selector-button{box-sizing:border-box;margin:0;padding:0;border:0 solid}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;tab-size:4;font-family:var( --default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" );font-feature-settings:var(--default-font-feature-settings, normal);font-variation-settings:var( --default-font-variation-settings, normal );-webkit-tap-highlight-color:transparent}body{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;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var( --default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace );font-feature-settings:var( --default-mono-font-feature-settings, normal );font-variation-settings:var( --default-mono-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}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea,::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;border-radius:0;background-color:transparent;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]),::file-selector-button{appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer utilities{.diff{position:relative;display:grid;width:100%;overflow:hidden;webkit-user-select:none;user-select:none;direction:ltr;container-type:inline-size;grid-template-columns:auto 1fr;&:focus,&:has(.diff-item-1:focus){outline-style:var(--tw-outline-style);outline-width:2px;outline-offset:1px;outline-color:var(--color-base-content)}&:focus-visible{outline-style:var(--tw-outline-style);outline-width:2px;outline-offset:1px;outline-color:var(--color-base-content);.diff-resizer{min-width:90cqi;max-width:90cqi}}&:has(.diff-item-2:focus-visible){outline-style:var(--tw-outline-style);outline-width:2px;outline-offset:1px;.diff-resizer{min-width:10cqi;max-width:10cqi}}@supports (-webkit-overflow-scrolling: touch) and (overflow: -webkit-paged-x){&:focus{.diff-resizer{min-width:10cqi;max-width:10cqi}}&:has(.diff-item-1:focus){.diff-resizer{min-width:90cqi;max-width:90cqi}}}}.menu{display:flex;width:fit-content;flex-direction:column;flex-wrap:wrap;padding:.5rem;--menu-active-fg: var(--color-neutral-content);--menu-active-bg: var(--color-neutral);font-size:.875rem;:where(li ul){position:relative;margin-inline-start:1rem;padding-inline-start:.5rem;white-space:nowrap;&:before{position:absolute;inset-inline-start:0rem;top:.75rem;bottom:.75rem;background-color:var(--color-base-content);opacity:10%;width:var(--border);content:""}}:where(li>.menu-dropdown:not(.menu-dropdown-show)){display:none}:where(li:not(.menu-title)>*:not(ul,details,.menu-title,.btn)),:where(li:not(.menu-title)>details>summary:not(.menu-title)){display:grid;grid-auto-flow:column;align-content:flex-start;align-items:center;gap:.5rem;border-radius:var(--radius-field);padding-inline:.75rem;padding-block:.375rem;text-align:start;transition-property:color,background-color,box-shadow;transition-duration:.2s;transition-timing-function:cubic-bezier(0,0,.2,1);grid-auto-columns:minmax(auto,max-content) auto max-content;text-wrap:balance;user-select:none}:where(li>details>summary){outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}&::-webkit-details-marker{display:none}}:where(li>details>summary),:where(li>.menu-dropdown-toggle){&:after{justify-self:flex-end;display:block;height:.375rem;width:.375rem;rotate:-135deg;translate:0 -1px;transition-property:rotate,translate;transition-duration:.2s;content:"";transform-origin:50% 50%;box-shadow:2px 2px inset;pointer-events:none}}:where(li>details[open]>summary):after,:where(li>.menu-dropdown-toggle.menu-dropdown-show):after{rotate:45deg;translate:0 1px}:where(li:not(.menu-title,.disabled)>*:not(ul,details,.menu-title),li:not(.menu-title,.disabled)>details>summary:not(.menu-title)):not(.menu-active,:active,.btn){&.menu-focus,&:focus-visible{cursor:pointer;background-color:color-mix(in oklab,var(--color-base-content) 10%,transparent);color:var(--color-base-content);outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}}:where(li:not(.menu-title,.disabled)>*:not(ul,details,.menu-title):not(.menu-active,:active,.btn):hover,li:not(.menu-title,.disabled)>details>summary:not(.menu-title):not(.menu-active,:active,.btn):hover){cursor:pointer;background-color:color-mix(in oklab,var(--color-base-content) 10%,transparent);outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}box-shadow:0 1px #00000003 inset,0 -1px #ffffff03 inset}:where(li:empty){background-color:var(--color-base-content);opacity:10%;margin:.5rem 1rem;height:1px}:where(li){position:relative;display:flex;flex-shrink:0;flex-direction:column;flex-wrap:wrap;align-items:stretch;.badge{justify-self:flex-end}>*:not(ul,.menu-title,details,.btn):active,>*:not(ul,.menu-title,details,.btn).menu-active,>details>summary:active{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}color:var(--menu-active-fg);background-color:var(--menu-active-bg);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--fx-noise);&:not(&:active){box-shadow:0 2px calc(var(--depth) * 3px) -2px var(--menu-active-bg)}}&.menu-disabled{pointer-events:none;color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}}}.btn{display:inline-flex;flex-shrink:0;cursor:pointer;flex-wrap:nowrap;align-items:center;justify-content:center;gap:.375rem;text-align:center;vertical-align:middle;text-decoration-line:none;outline-offset:2px;webkit-user-select:none;user-select:none;padding-inline:var(--btn-p);color:var(--btn-fg);height:var(--size);font-size:.875rem;font-weight:600;outline-color:var(--btn-color, var(--color-base-content));transition-property:color,background-color,border-color,box-shadow;transition-timing-function:cubic-bezier(0,0,.2,1);transition-duration:.2s;border-start-start-radius:var(--join-ss, var(--radius-field));border-start-end-radius:var(--join-se, var(--radius-field));border-end-start-radius:var(--join-es, var(--radius-field));border-end-end-radius:var(--join-ee, var(--radius-field));background-color:var(--btn-bg);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--btn-noise);border-width:var(--border);border-style:solid;border-color:var(--btn-border);text-shadow:0 .5px oklch(100% 0 0 / calc(var(--depth) * .15));box-shadow:0 .5px 0 .5px oklch(100% 0 0 / calc(var(--depth) * 6%)) inset,var(--btn-shadow);--size: calc(var(--size-field, .25rem) * 10);--btn-bg: var(--btn-color, var(--color-base-200));--btn-fg: var(--color-base-content);--btn-p: 1rem;--btn-border: color-mix(in oklab, var(--btn-bg), #000 calc(var(--depth) * 5%));--btn-shadow: 0 3px 2px -2px color-mix(in oklab, var(--btn-bg) calc(var(--depth) * 30%), #0000), 0 4px 3px -2px color-mix(in oklab, var(--btn-bg) calc(var(--depth) * 30%), #0000);--btn-noise: var(--fx-noise);@media (hover: hover){&:hover{--btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%)}}&.btn-active{--btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%);--btn-shadow: 0 0 0 0 oklch(0% 0 0/0), 0 0 0 0 oklch(0% 0 0/0);isolation:isolate}&:focus-visible{outline-width:2px;outline-style:solid}&:active:not(.btn-active){translate:0 .5px;--btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 5%);--btn-border: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%);--btn-shadow: 0 0 0 0 oklch(0% 0 0/0), 0 0 0 0 oklch(0% 0 0/0)}&:is(:disabled,[disabled],.btn-disabled){&:not(.btn-link,.btn-ghost){background-color:color-mix(in oklab,var(--color-base-content) 10%,transparent);box-shadow:none}pointer-events:none;--btn-border: #0000;--btn-noise: none;--btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000);@media (hover: hover){&:hover{pointer-events:none;background-color:color-mix(in oklab,var(--color-neutral) 20%,transparent);--btn-border: #0000;--btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000)}}}&:is(input[type=checkbox],input[type=radio]){appearance:none;&:after{content:attr(aria-label)}&:checked{--btn-color: var(--color-primary);--btn-bg: var(--color-primary);--btn-fg: var(--color-primary-content);--btn-border: var(--color-primary);&:focus-visible{outline-color:var(--color-primary)}@media (hover: hover){&:hover{--btn-bg: color-mix(in oklab, var(--color-primary) 90%, #000);--btn-border: color-mix(in oklab, var(--color-primary) 90%, #000)}}}}}.modal{pointer-events:none;visibility:hidden;position:fixed;inset:0rem;margin:0rem;display:grid;height:100%;max-height:none;width:100%;max-width:none;align-items:center;justify-items:center;background-color:transparent;padding:0rem;color:inherit;overflow-x:hidden;transition:transform .3s ease-out,visibility 0s allow-discrete,opacity .1s ease-out;overflow-y:hidden;overscroll-behavior:contain;z-index:999;&:not(dialog:not(.modal-open)),&::backdrop{opacity:100%;@starting-style{visibility:hidden}@starting-style{opacity:0%}background-color:#0006;transition:display .3s ease-out allow-discrete,opacity .3s ease-out,visibility .3s ease-out allow-discrete}&.modal-open,&[open],&:target{pointer-events:auto;visibility:visible;opacity:100%;@starting-style{visibility:hidden}@starting-style{opacity:0%}.modal-box{translate:0 0;scale:1;opacity:1}}}.tab{position:relative;display:inline-flex;cursor:pointer;appearance:none;flex-wrap:wrap;align-items:center;justify-content:center;text-align:center;webkit-user-select:none;user-select:none;&:hover{@media (hover: hover){color:var(--color-base-content)}}--tab-p: 1rem;--tab-bg: var(--color-base-100);--tab-border-color: var(--color-base-300);--tab-radius-ss: 0;--tab-radius-se: 0;--tab-radius-es: 0;--tab-radius-ee: 0;--tab-order: 0;--tab-radius-min: calc(.75rem - var(--border));border-color:#0000;order:var(--tab-order);height:calc(var(--size-field, .25rem) * 10);font-size:.875rem;padding-inline-start:var(--tab-p);padding-inline-end:var(--tab-p);&:is(input[type=radio]){min-width:fit-content;&:after{content:attr(aria-label)}}&:checked,&:is(.tab-active,[aria-selected=true]){+.tab-content{display:block;height:100%}}&:not(:checked,:hover,.tab-active,[aria-selected=true]){color:color-mix(in oklab,var(--color-base-content) 50%,transparent)}&:not(input):empty{flex-grow:1;cursor:default}&:focus{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}&:focus-visible{outline:2px solid currentColor;outline-offset:-5px}&[disabled]{pointer-events:none;opacity:40%}}.tooltip{position:relative;display:inline-block;--tt-bg: var(--color-neutral);--tt-off: calc(100% + .5rem) ;--tt-tail: calc(100% + 1px + .25rem) ;>:where(.tooltip-content),&[data-tip]:before{position:absolute;max-width:20rem;border-radius:var(--radius-field);padding-inline:.5rem;padding-block:.25rem;text-align:center;white-space:normal;color:var(--color-neutral-content);opacity:0%;font-size:.875rem;line-height:1.25em;transition:opacity .2s cubic-bezier(.4,0,.2,1) 75ms,transform .2s cubic-bezier(.4,0,.2,1) 75ms;background-color:var(--tt-bg);width:max-content;pointer-events:none;z-index:1;--tw-content: attr(data-tip);content:var(--tw-content)}&:after{position:absolute;opacity:0%;background-color:var(--tt-bg);transition:opacity .2s cubic-bezier(.4,0,.2,1) 75ms,transform .2s cubic-bezier(.4,0,.2,1) 75ms;content:"";pointer-events:none;width:.625rem;height:.25rem;display:block;mask-repeat:no-repeat;mask-position:-1px 0;mask-image:var(--mask-tooltip)}&.tooltip-open,&[data-tip]:hover,&:hover,&:has(:focus-visible){>.tooltip-content,&[data-tip]:before,&:after{opacity:100%;--tt-pos: 0rem;transition:opacity .2s cubic-bezier(.4,0,.2,1) 0s,transform .2s cubic-bezier(.4,0,.2,1) 0ms}}>.tooltip-content,&[data-tip]:before{transform:translate(-50%) translateY(var(--tt-pos, .25rem));inset:auto auto var(--tt-off) 50%}&:after{transform:translate(-50%) translateY(var(--tt-pos, .25rem));inset:auto auto var(--tt-tail) 50%}}.dropdown{position:relative;display:inline-block;position-area:var(--anchor-v, bottom) var(--anchor-h, span-right);>*:not(summary):focus{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}.dropdown-content{position:absolute}&:not(details,.dropdown-open,.dropdown-hover:hover,:focus-within){.dropdown-content{display:none;transform-origin:top;opacity:0%;scale:95%}}&[popover],.dropdown-content{@starting-style{scale:95%}@starting-style{opacity:0}z-index:999;animation:dropdown .2s;transition-property:opacity,scale,display;transition-behavior:allow-discrete;transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,.2,1)}&.dropdown-open,&:not(.dropdown-hover):focus,&:focus-within{>[tabindex]:first-child{pointer-events:none}.dropdown-content{opacity:100%}}&.dropdown-hover:hover{.dropdown-content{opacity:100%;scale:100%}}&:is(details){summary{&::-webkit-details-marker{display:none}}}&.dropdown-open,&:focus,&:focus-within{.dropdown-content{scale:100%}}&:where([popover]){background:#0000}&[popover]{position:fixed;color:inherit;@supports not (position-area: bottom){margin:auto;&.dropdown-open:not(:popover-open){display:none;transform-origin:top;opacity:0%;scale:95%}&::backdrop{background-color:color-mix(in oklab,#000 30%,#0000)}}&:not(.dropdown-open,:popover-open){display:none;transform-origin:top;opacity:0%;scale:95%}}}.loading{pointer-events:none;display:inline-block;aspect-ratio:1 / 1;width:1.5rem;background-color:currentColor;vertical-align:middle;mask-size:100%;mask-repeat:no-repeat;mask-position:center;mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E")}.invisible{visibility:hidden}.visible{visibility:visible}.select{border:var(--border) solid #0000;position:relative;display:inline-flex;flex-shrink:1;appearance:none;align-items:center;gap:.375rem;background-color:var(--color-base-100);padding-inline-start:1rem;padding-inline-end:1.75rem;vertical-align:middle;width:clamp(3rem,20rem,100%);height:var(--size);font-size:.875rem;border-start-start-radius:var(--join-ss, var(--radius-field));border-start-end-radius:var(--join-se, var(--radius-field));border-end-start-radius:var(--join-es, var(--radius-field));border-end-end-radius:var(--join-ee, var(--radius-field));background-image:linear-gradient(45deg,#0000 50%,currentColor 50%),linear-gradient(135deg,currentColor 50%,#0000 50%);background-position:calc(100% - 20px) calc(1px + 50%),calc(100% - 16.1px) calc(1px + 50%);background-size:4px 4px,4px 4px;background-repeat:no-repeat;text-overflow:ellipsis;box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000) inset,0 -1px oklch(100% 0 0 / calc(var(--depth) * .1)) inset;border-color:var(--input-color);--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);--size: calc(var(--size-field, .25rem) * 10);[dir=rtl] &{background-position:calc(0% + 12px) calc(1px + 50%),calc(0% + 16px) calc(1px + 50%)}select{margin-inline-start:-1rem;margin-inline-end:-1.75rem;height:100%;width:calc(100% + 2.75rem);appearance:none;padding-inline-start:1rem;padding-inline-end:1.75rem;background:inherit;border-radius:inherit;border-style:none;&:focus,&:focus-within{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}}&:focus,&:focus-within{--input-color: var(--color-base-content);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000);outline:2px solid var(--input-color);outline-offset:2px}&:has(>select[disabled]),&:is(:disabled,[disabled]){cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);color:color-mix(in oklab,var(--color-base-content) 40%,transparent);&::placeholder{color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}}&:has(>select[disabled])>select[disabled]{cursor:not-allowed}}.toggle{border:var(--border) solid currentColor;color:var(--input-color);position:relative;display:inline-grid;flex-shrink:0;cursor:pointer;appearance:none;place-content:center;vertical-align:middle;webkit-user-select:none;user-select:none;grid-template-columns:0fr 1fr 1fr;border-radius:calc(var(--radius-selector) + min(var(--toggle-p),calc(var(--radius-selector) + var(--radius-selector) + var(--radius-selector))) + min(var(--border),calc(var(--radius-selector) + var(--radius-selector) + var(--radius-selector))));padding:var(--toggle-p);box-shadow:0 1px color-mix(in oklab,currentColor calc(var(--depth) * 10%),#0000) inset;transition:color .3s,grid-template-columns .2s;--input-color: color-mix(in oklab, var(--color-base-content) 50%, #0000);--toggle-p: .1875rem;--size: calc(var(--size-selector, .25rem) * 6);width:calc((var(--size) * 2) - (var(--border) + var(--toggle-p)) * 2);height:var(--size);>*{z-index:1;grid-column:span 1 / span 1;grid-column-start:2;grid-row-start:1;height:100%;cursor:pointer;appearance:none;background-color:transparent;padding:.125rem;transition:opacity .2s,rotate .4s;border:none;&:focus{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}&:nth-child(2){color:var(--color-base-100);rotate:0deg}&:nth-child(3){color:var(--color-base-100);opacity:0%;rotate:-15deg}}&:has(:checked){>:nth-child(2){opacity:0%;rotate:15deg}>:nth-child(3){opacity:100%;rotate:0deg}}&:before{position:relative;inset-inline-start:0rem;grid-column-start:2;grid-row-start:1;aspect-ratio:1 / 1;height:100%;border-radius:var(--radius-selector);background-color:currentColor;@media print{outline:.25rem solid}@media print{outline-offset:-1rem}translate:0;--tw-content: "";content:var(--tw-content);transition:background-color .1s,translate .2s,inset-inline-start .2s;box-shadow:0 -1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px color-mix(in oklab,currentColor calc(var(--depth) * 10%),#0000);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--fx-noise);@media (forced-colors: active){outline-style:var(--tw-outline-style);outline-width:1px;outline-offset:-1px}}&:focus-visible,&:has(:focus-visible){outline:2px solid currentColor;outline-offset:2px}&:checked,&[aria-checked=true],&:has(>input:checked){grid-template-columns:1fr 1fr 0fr;background-color:var(--color-base-100);--input-color: var(--color-base-content);&:before{background-color:currentColor;@starting-style{opacity:0}}}&:indeterminate{grid-template-columns:.5fr 1fr .5fr}&:disabled{cursor:not-allowed;opacity:30%;&:before{background-color:transparent;border:var(--border) solid currentColor}}}.checkbox{border:var(--border) solid var(--input-color, color-mix(in oklab, var(--color-base-content) 20%, #0000));position:relative;flex-shrink:0;cursor:pointer;appearance:none;border-radius:var(--radius-selector);padding:.25rem;vertical-align:middle;color:var(--color-base-content);box-shadow:0 1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 0 #0000 inset,0 0 #0000;transition:background-color .2s,box-shadow .2s;--size: calc(var(--size-selector, .25rem) * 6);width:var(--size);height:var(--size);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--fx-noise);&:before{--tw-content: "";content:var(--tw-content);display:block;width:100%;height:100%;rotate:45deg;background-color:currentColor;opacity:0%;transition:clip-path .3s,opacity .1s,rotate .3s,translate .3s;transition-delay:.1s;clip-path:polygon(20% 100%,20% 80%,50% 80%,50% 80%,70% 80%,70% 100%);box-shadow:0 3px oklch(100% 0 0 / calc(var(--depth) * .1)) inset;font-size:1rem;line-height:.75}&:focus-visible{outline:2px solid var(--input-color, currentColor);outline-offset:2px}&:checked,&[aria-checked=true]{background-color:var(--input-color, #0000);box-shadow:0 0 #0000 inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px oklch(0% 0 0 / calc(var(--depth) * .1));&:before{clip-path:polygon(20% 100%,20% 80%,50% 80%,50% 0%,70% 0%,70% 100%);opacity:100%;@media print{rotate:0deg}@media print{background-color:transparent}@media print{--tw-content: "✔︎"}@media print{clip-path:none}@media (forced-colors: active){rotate:0deg;background-color:transparent;--tw-content: "✔︎";clip-path:none}}}&:indeterminate{&:before{rotate:0deg;opacity:100%;translate:0 -35%;clip-path:polygon(20% 100%,20% 80%,50% 80%,50% 80%,80% 80%,80% 100%)}}&:disabled{cursor:not-allowed;opacity:20%}}.radio{position:relative;flex-shrink:0;cursor:pointer;appearance:none;border-radius:calc(infinity * 1px);padding:.25rem;vertical-align:middle;border:var(--border) solid var(--input-color, color-mix(in srgb, currentColor 20%, #0000));box-shadow:0 1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset;--size: calc(var(--size-selector, .25rem) * 6);width:var(--size);height:var(--size);color:var(--input-color, currentColor);&:before{display:block;width:100%;height:100%;border-radius:calc(infinity * 1px);--tw-content: "";content:var(--tw-content);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--fx-noise)}&:focus-visible{outline:2px solid currentColor}&:checked,&[aria-checked=true]{animation:radio .2s ease-out;border-color:currentColor;background-color:var(--color-base-100);&:before{background-color:currentColor;@media print{outline:.25rem solid}@media print{outline-offset:-1rem}box-shadow:0 -1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px oklch(0% 0 0 / calc(var(--depth) * .1));@media (forced-colors: active){outline-style:var(--tw-outline-style);outline-width:1px;outline-offset:-1px}}}&:disabled{cursor:not-allowed;opacity:20%}}.tabs-lift{--tabs-height: auto;--tabs-direction: row;>.tab{--tab-border: 0 0 var(--border) 0;--tab-radius-ss: min(var(--radius-field), var(--tab-radius-min));--tab-radius-se: min(var(--radius-field), var(--tab-radius-min));--tab-radius-es: 0;--tab-radius-ee: 0;--tab-paddings: var(--border) var(--tab-p) 0 var(--tab-p);--tab-border-colors: #0000 #0000 var(--tab-border-color) #0000;--tab-corner-width: calc(100% + min(var(--radius-field), var(--tab-radius-min))*2) ;--tab-corner-height: min(var(--radius-field), var(--tab-radius-min));--tab-corner-position: top left, top right;border-width:var(--tab-border);border-start-start-radius:var(--tab-radius-ss);border-start-end-radius:var(--tab-radius-se);border-end-start-radius:var(--tab-radius-es);border-end-end-radius:var(--tab-radius-ee);padding:var(--tab-paddings);border-color:var(--tab-border-colors);&:is(.tab-active,[aria-selected=true]):not(.tab-disabled,[disabled]),&:is(input:checked){--tab-border: var(--border) var(--border) 0 var(--border);--tab-border-colors: var(--tab-border-color) var(--tab-border-color) #0000 var(--tab-border-color);--tab-paddings: 0 calc(var(--tab-p) - var(--border)) var(--border) calc(var(--tab-p) - var(--border));--tab-inset: auto auto 0 auto;--tab-grad: calc(69% - var(--border));--radius-start: radial-gradient( circle at top left, #0000 var(--tab-grad), var(--tab-border-color) calc(var(--tab-grad) + .25px), var(--tab-border-color) calc(var(--tab-grad) + var(--border)), var(--tab-bg) calc(var(--tab-grad) + var(--border) + .25px) );--radius-end: radial-gradient( circle at top right, #0000 var(--tab-grad), var(--tab-border-color) calc(var(--tab-grad) + .25px), var(--tab-border-color) calc(var(--tab-grad) + var(--border)), var(--tab-bg) calc(var(--tab-grad) + var(--border) + .25px) );background-color:var(--tab-bg);&:before{z-index:1;content:"";display:block;position:absolute;width:var(--tab-corner-width);height:var(--tab-corner-height);background-position:var(--tab-corner-position);background-image:var(--radius-start),var(--radius-end);background-size:min(var(--radius-field),var(--tab-radius-min)) min(var(--radius-field),var(--tab-radius-min));background-repeat:no-repeat;inset:var(--tab-inset)}&:first-child:before{--radius-start: none}[dir=rtl] &:first-child:before{transform:rotateY(180deg)}&:last-child:before{--radius-end: none}[dir=rtl] &:last-child:before{transform:rotateY(180deg)}}}&:has(.tab-content){>.tab:first-child{&:not(.tab-active,[aria-selected=true]){--tab-border-colors: var(--tab-border-color) var(--tab-border-color) #0000 var(--tab-border-color)}}}.tab-content{--tabcontent-margin: calc(-1 * var(--border)) 0 0 0;--tabcontent-radius-ss: 0;--tabcontent-radius-se: var(--radius-box);--tabcontent-radius-es: var(--radius-box);--tabcontent-radius-ee: var(--radius-box)}:checked,:is(.tab-active,[aria-selected=true]){+.tab-content:not(:nth-child(2)){--tabcontent-radius-ss: var(--radius-box)}}}.range{appearance:none;webkit-appearance:none;--range-thumb: var(--color-base-100);--range-thumb-size: calc(var(--size-selector, .25rem) * 6);--range-progress: currentColor;--range-fill: 1;--range-p: .25rem;--range-bg: color-mix(in oklab, currentColor 10%, #0000);cursor:pointer;overflow:hidden;background-color:transparent;vertical-align:middle;width:clamp(3rem,20rem,100%);--radius-selector-max: calc( var(--radius-selector) + var(--radius-selector) + var(--radius-selector) );border-radius:calc(var(--radius-selector) + min(var(--range-p),var(--radius-selector-max)));border:none;height:var(--range-thumb-size);[dir=rtl] &{--range-dir: -1}&:focus{outline:none}&:focus-visible{outline:2px solid;outline-offset:2px}&::-webkit-slider-runnable-track{width:100%;background-color:var(--range-bg);border-radius:var(--radius-selector);height:calc(var(--range-thumb-size) * .5);@media (forced-colors: active){border:1px solid}}&::-webkit-slider-thumb{position:relative;box-sizing:border-box;border-radius:calc(var(--radius-selector) + min(var(--range-p),var(--radius-selector-max)));background-color:currentColor;height:var(--range-thumb-size);width:var(--range-thumb-size);border:var(--range-p) solid;appearance:none;webkit-appearance:none;top:50%;color:var(--range-progress);transform:translateY(-50%);box-shadow:0 -1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px color-mix(in oklab,currentColor calc(var(--depth) * 10%),#0000),0 0 0 2rem var(--range-thumb) inset,calc((var(--range-dir, 1) * -100rem) - (var(--range-dir, 1) * var(--range-thumb-size) / 2)) 0 0 calc(100rem * var(--range-fill))}&::-moz-range-track{width:100%;background-color:var(--range-bg);border-radius:var(--radius-selector);height:calc(var(--range-thumb-size) * .5);@media (forced-colors: active){border:1px solid}}&::-moz-range-thumb{position:relative;box-sizing:border-box;border-radius:calc(var(--radius-selector) + min(var(--range-p),var(--radius-selector-max)));background-color:currentColor;height:var(--range-thumb-size);width:var(--range-thumb-size);border:var(--range-p) solid;top:50%;color:var(--range-progress);box-shadow:0 -1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px color-mix(in oklab,currentColor calc(var(--depth) * 10%),#0000),0 0 0 2rem var(--range-thumb) inset,calc((var(--range-dir, 1) * -100rem) - (var(--range-dir, 1) * var(--range-thumb-size) / 2)) 0 0 calc(100rem * var(--range-fill))}&:disabled{cursor:not-allowed;opacity:30%}}.table{font-size:.875rem;position:relative;width:100%;border-radius:var(--radius-box);text-align:left;&:where(:dir(rtl),[dir=rtl],[dir=rtl] *){text-align:right}tr.row-hover{&,&:nth-child(2n){&:hover{@media (hover: hover){background-color:var(--color-base-200)}}}}:where(th,td){padding-inline:1rem;padding-block:.75rem;vertical-align:middle}:where(thead,tfoot){white-space:nowrap;color:color-mix(in oklab,var(--color-base-content) 60%,transparent);font-size:.875rem;font-weight:600}:where(tfoot){border-top:var(--border) solid color-mix(in oklch,var(--color-base-content) 5%,#0000)}:where(.table-pin-rows thead tr){position:sticky;top:0rem;z-index:1;background-color:var(--color-base-100)}:where(.table-pin-rows tfoot tr){position:sticky;bottom:0rem;z-index:1;background-color:var(--color-base-100)}:where(.table-pin-cols tr th){position:sticky;right:0rem;left:0rem;background-color:var(--color-base-100)}:where(thead tr,tbody tr:not(:last-child)){border-bottom:var(--border) solid color-mix(in oklch,var(--color-base-content) 5%,#0000)}}.timeline{position:relative;display:flex;>li{position:relative;display:grid;flex-shrink:0;align-items:center;grid-template-rows:var(--timeline-row-start, minmax(0, 1fr)) auto var( --timeline-row-end, minmax(0, 1fr) );grid-template-columns:var(--timeline-col-start, minmax(0, 1fr)) auto var( --timeline-col-end, minmax(0, 1fr) );>hr{border:none;width:100%;@media print{border:.1px solid var(--color-base-300)}&:first-child{grid-column-start:1;grid-row-start:2}&:last-child{grid-column-start:3;grid-column-end:none;grid-row-start:2;grid-row-end:auto}}}:where(hr){height:.25rem;background-color:var(--color-base-300)}&:has(.timeline-middle hr){&:first-child{border-start-start-radius:0;border-end-start-radius:0;border-start-end-radius:var(--radius-selector);border-end-end-radius:var(--radius-selector)}&:last-child{border-start-start-radius:var(--radius-selector);border-end-start-radius:var(--radius-selector);border-start-end-radius:0;border-end-end-radius:0}}&:not(:has(.timeline-middle)){:first-child hr:last-child{border-start-start-radius:var(--radius-selector);border-end-start-radius:var(--radius-selector);border-start-end-radius:0;border-end-end-radius:0}:last-child hr:first-child{border-start-start-radius:0;border-end-start-radius:0;border-start-end-radius:var(--radius-selector);border-end-end-radius:var(--radius-selector)}}}.list{display:flex;flex-direction:column;font-size:.875rem;:where(.list-row){--list-grid-cols: minmax(0, auto) 1fr;position:relative;display:grid;grid-auto-flow:column;gap:1rem;border-radius:var(--radius-box);padding:1rem;word-break:break-word;grid-template-columns:var(--list-grid-cols);&:has(.list-col-grow:nth-child(1)){--list-grid-cols: 1fr}&:has(.list-col-grow:nth-child(2)){--list-grid-cols: minmax(0, auto) 1fr}&:has(.list-col-grow:nth-child(3)){--list-grid-cols: minmax(0, auto) minmax(0, auto) 1fr}&:has(.list-col-grow:nth-child(4)){--list-grid-cols: minmax(0, auto) minmax(0, auto) minmax(0, auto) 1fr}&:has(.list-col-grow:nth-child(5)){--list-grid-cols: minmax(0, auto) minmax(0, auto) minmax(0, auto) minmax(0, auto) 1fr}&:has(.list-col-grow:nth-child(6)){--list-grid-cols: minmax(0, auto) minmax(0, auto) minmax(0, auto) minmax(0, auto) minmax(0, auto) 1fr}:not(.list-col-wrap){grid-row-start:1}}>:not(:last-child){&.list-row,.list-row{&:after{content:"";border-bottom:var(--border) solid;inset-inline:var(--radius-box);position:absolute;bottom:0rem;border-color:color-mix(in oklab,var(--color-base-content) 5%,transparent)}}}}.progress{position:relative;height:.5rem;width:100%;appearance:none;overflow:hidden;border-radius:var(--radius-box);background-color:color-mix(in oklab,currentColor 20%,transparent);color:var(--color-base-content);&:indeterminate{background-image:repeating-linear-gradient(90deg,currentColor -1%,currentColor 10%,#0000 10%,#0000 90%);background-size:200%;background-position-x:15%;animation:progress 5s ease-in-out infinite;@supports (-moz-appearance: none){&::-moz-progress-bar{background-color:transparent;background-image:repeating-linear-gradient(90deg,currentColor -1%,currentColor 10%,#0000 10%,#0000 90%);background-size:200%;background-position-x:15%;animation:progress 5s ease-in-out infinite}}}@supports (-moz-appearance: none){&::-moz-progress-bar{border-radius:var(--radius-box);background-color:currentColor}}@supports (-webkit-appearance: none){&::-webkit-progress-bar{border-radius:var(--radius-box);background-color:transparent}&::-webkit-progress-value{border-radius:var(--radius-box);background-color:currentColor}}}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.tooltip-bottom{>.tooltip-content,&[data-tip]:before{transform:translate(-50%) translateY(var(--tt-pos, -.25rem));inset:var(--tt-off) auto auto 50%}&:after{transform:translate(-50%) translateY(var(--tt-pos, -.25rem)) rotate(180deg);inset:var(--tt-tail) auto auto 50%}}.top-2{top:calc(var(--spacing) * 2)}.right-4{right:calc(var(--spacing) * 4)}.bottom-4{bottom:calc(var(--spacing) * 4)}.left-2{left:calc(var(--spacing) * 2)}.left-\\[1px\\]{left:1px}.input{cursor:text;border:var(--border) solid #0000;display:inline-flex;flex-shrink:1;appearance:none;align-items:center;gap:.5rem;background-color:var(--color-base-100);padding-inline:.75rem;vertical-align:middle;white-space:nowrap;width:clamp(3rem,20rem,100%);height:var(--size);font-size:.875rem;border-start-start-radius:var(--join-ss, var(--radius-field));border-start-end-radius:var(--join-se, var(--radius-field));border-end-start-radius:var(--join-es, var(--radius-field));border-end-end-radius:var(--join-ee, var(--radius-field));border-color:var(--input-color);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000) inset,0 -1px oklch(100% 0 0 / calc(var(--depth) * .1)) inset;--size: calc(var(--size-field, .25rem) * 10);--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);&:where(input){display:inline-block}:where(input){display:inline-block;height:100%;width:100%;appearance:none;background-color:transparent;border:none;&:focus,&:focus-within{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}}&:focus,&:focus-within{--input-color: var(--color-base-content);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000);outline:2px solid var(--input-color);outline-offset:2px;isolation:isolate}&:has(>input[disabled]),&:is(:disabled,[disabled]){cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);color:color-mix(in oklab,var(--color-base-content) 40%,transparent);&::placeholder{color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}box-shadow:none}&:has(>input[disabled])>input[disabled]{cursor:not-allowed}&::-webkit-date-and-time-value{text-align:inherit}&[type=number]{&::-webkit-inner-spin-button{margin-block:-.75rem;margin-inline-end:-.75rem}}}.textarea{border:var(--border) solid #0000;min-height:5rem;flex-shrink:1;appearance:none;border-radius:var(--radius-field);background-color:var(--color-base-100);padding-block:.5rem;vertical-align:middle;width:clamp(3rem,20rem,100%);padding-inline-start:.75rem;padding-inline-end:.75rem;font-size:.875rem;border-color:var(--input-color);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000) inset,0 -1px oklch(100% 0 0 / calc(var(--depth) * .1)) inset;--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);textarea{appearance:none;background-color:transparent;border:none;&:focus,&:focus-within{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}}&:focus,&:focus-within{--input-color: var(--color-base-content);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000);outline:2px solid var(--input-color);outline-offset:2px;isolation:isolate}&:has(>textarea[disabled]),&:is(:disabled,[disabled]){cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);color:color-mix(in oklab,var(--color-base-content) 40%,transparent);&::placeholder{color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}box-shadow:none}&:has(>textarea[disabled])>textarea[disabled]{cursor:not-allowed}}.modal-backdrop{grid-column-start:1;grid-row-start:1;display:grid;align-self:stretch;justify-self:stretch;color:transparent;z-index:-1;button{cursor:pointer}}.z-10{z-index:10}.tab-content{order:var(--tabcontent-order);display:none;border-color:transparent;--tabcontent-radius-ss: 0;--tabcontent-radius-se: 0;--tabcontent-radius-es: 0;--tabcontent-radius-ee: 0;--tabcontent-order: 1;width:100%;margin:var(--tabcontent-margin);border-width:var(--border);border-start-start-radius:var(--tabcontent-radius-ss);border-start-end-radius:var(--tabcontent-radius-se);border-end-start-radius:var(--tabcontent-radius-es);border-end-end-radius:var(--tabcontent-radius-ee)}.modal-box{grid-column-start:1;grid-row-start:1;max-height:100vh;width:calc(11/12 * 100%);max-width:32rem;background-color:var(--color-base-100);padding:1.5rem;transition:translate .3s ease-out,scale .3s ease-out,opacity .2s ease-out .05s,box-shadow .3s ease-out;border-top-left-radius:var(--modal-tl, var(--radius-box));border-top-right-radius:var(--modal-tr, var(--radius-box));border-bottom-left-radius:var(--modal-bl, var(--radius-box));border-bottom-right-radius:var(--modal-br, var(--radius-box));scale:95%;opacity:0;box-shadow:#00000040 0 25px 50px -12px;overflow-y:auto;overscroll-behavior:contain}.col-start-1{grid-column-start:1}.container{width:100%;@media (width >= 40rem){max-width:40rem}@media (width >= 48rem){max-width:48rem}@media (width >= 64rem){max-width:64rem}@media (width >= 80rem){max-width:80rem}@media (width >= 96rem){max-width:96rem}}.divider{display:flex;height:1rem;flex-direction:row;align-items:center;align-self:stretch;white-space:nowrap;margin:var(--divider-m, 1rem 0);&:before,&:after{content:"";height:.125rem;width:100%;flex-grow:1;background-color:color-mix(in oklab,var(--color-base-content) 10%,transparent)}@media print{&:before,&:after{border:.5px solid}}&:not(:empty){gap:1rem}}.filter{display:flex;flex-wrap:wrap;input[type=radio]{width:auto}input{overflow:hidden;opacity:100%;scale:1;transition:margin .1s,opacity .3s,padding .3s,border-width .1s;&:not(:last-child){margin-inline-end:.25rem}&.filter-reset{aspect-ratio:1 / 1;&:after{content:"×"}}}&:not(:has(input:checked:not(.filter-reset))){.filter-reset,input[type=reset]{scale:0;border-width:0;margin-inline:0rem;width:0rem;padding-inline:0rem;opacity:0%}}&:has(input:checked:not(.filter-reset)){input:not(:checked,.filter-reset,input[type=reset]){scale:0;border-width:0;margin-inline:0rem;width:0rem;padding-inline:0rem;opacity:0%}}}.mx-1{margin-inline:calc(var(--spacing) * 1)}.my-2{margin-block:calc(var(--spacing) * 2)}.input,.select{.label{display:flex;height:calc(100% - .5rem);align-items:center;padding-inline:.75rem;font-size:inherit;&:first-child{margin-inline-start:-.75rem;margin-inline-end:.75rem;border-inline-end:var(--border) solid color-mix(in oklab,currentColor 10%,#0000)}&:last-child{margin-inline-start:.75rem;margin-inline-end:-.75rem;border-inline-start:var(--border) solid color-mix(in oklab,currentColor 10%,#0000)}}}.join-item{&:where(*:not(:first-child)){margin-inline-start:calc(var(--border, 1px) * -1);margin-block-start:0}}.modal-action{margin-top:1.5rem;display:flex;justify-content:flex-end;gap:.5rem}.-mt-1{margin-top:calc(var(--spacing) * -1)}.mt-4{margin-top:calc(var(--spacing) * 4)}.-mr-1{margin-right:calc(var(--spacing) * -1)}.mr-1{margin-right:calc(var(--spacing) * 1)}.-mb-1{margin-bottom:calc(var(--spacing) * -1)}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.-ml-1{margin-left:calc(var(--spacing) * -1)}.ml-4{margin-left:calc(var(--spacing) * 4)}.box-border{box-sizing:border-box}.status{display:inline-block;aspect-ratio:1 / 1;width:.5rem;height:.5rem;border-radius:var(--radius-selector);background-color:color-mix(in oklab,var(--color-base-content) 20%,transparent);background-position:center;background-repeat:no-repeat;vertical-align:middle;color:color-mix(in oklab,var(--color-black) 30%,transparent);background-image:radial-gradient(circle at 35% 30%,oklch(1 0 0 / calc(var(--depth) * .5)),#0000);box-shadow:0 2px 3px -1px color-mix(in oklab,currentColor calc(var(--depth) * 100%),#0000)}.kbd{display:inline-flex;align-items:center;justify-content:center;border-radius:var(--radius-field);background-color:var(--color-base-200);vertical-align:middle;padding-left:.5em;padding-right:.5em;border:var(--border) solid color-mix(in srgb,var(--color-base-content) 20%,#0000);border-bottom:calc(var(--border) + 1px) solid color-mix(in srgb,var(--color-base-content) 20%,#0000);--size: calc(var(--size-selector, .25rem) * 6);font-size:.875rem;height:var(--size);min-width:var(--size)}.footer{display:grid;width:100%;grid-auto-flow:row;place-items:start;column-gap:1rem;row-gap:2.5rem;font-size:.875rem;line-height:1.25rem;>*{display:grid;place-items:start;gap:.5rem}&.footer-center{grid-auto-flow:column dense;place-items:center;text-align:center;>*{place-items:center}}}.fieldset{display:grid;gap:.375rem;padding-block:.25rem;font-size:.75rem;grid-template-columns:1fr;grid-auto-rows:max-content}.join{display:inline-flex;align-items:stretch;--join-ss: 0;--join-se: 0;--join-es: 0;--join-ee: 0;:where(.join-item){border-start-start-radius:var(--join-ss, 0);border-start-end-radius:var(--join-se, 0);border-end-start-radius:var(--join-es, 0);border-end-end-radius:var(--join-ee, 0);*{--join-ss: var(--radius-field);--join-se: var(--radius-field);--join-es: var(--radius-field);--join-ee: var(--radius-field)}}>.join-item:where(:first-child){--join-ss: var(--radius-field);--join-se: 0;--join-es: var(--radius-field);--join-ee: 0}:first-child:not(:last-child){:where(.join-item){--join-ss: var(--radius-field);--join-se: 0;--join-es: var(--radius-field);--join-ee: 0}}>.join-item:where(:last-child){--join-ss: 0;--join-se: var(--radius-field);--join-es: 0;--join-ee: var(--radius-field)}:last-child:not(:first-child){:where(.join-item){--join-ss: 0;--join-se: var(--radius-field);--join-es: 0;--join-ee: var(--radius-field)}}}.label{display:inline-flex;align-items:center;gap:.375rem;white-space:nowrap;color:color-mix(in oklab,currentColor 60%,transparent);&:has(input){cursor:pointer}}.tabs{display:flex;flex-wrap:wrap;--tabs-height: auto;--tabs-direction: row;height:var(--tabs-height);flex-direction:var(--tabs-direction)}.mask{display:inline-block;vertical-align:middle;mask-size:contain;mask-repeat:no-repeat;mask-position:center}.block{display:block}.contents{display:contents}.divider-start{&:before{display:none}}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.divider-horizontal{--divider-m: 0 1rem;&.divider{height:auto;width:1rem;flex-direction:column;&:before{height:100%;width:.125rem}&:after{height:100%;width:.125rem}}}.tabs-lg{:where(.tab){height:calc(var(--size-field, .25rem) * 12);font-size:1.125rem;--tab-p: 1rem;--tab-radius-min: calc(1.5rem - var(--border))}}.tabs-sm{:where(.tab){height:calc(var(--size-field, .25rem) * 8);font-size:.875rem;--tab-p: .5rem;--tab-radius-min: calc(.5rem - var(--border))}}.\\!h-\\[22rem\\]{height:22rem!important}.\\!h-auto{height:auto!important}.h-2{height:calc(var(--spacing) * 2)}.h-4{height:calc(var(--spacing) * 4)}.h-5{height:calc(var(--spacing) * 5)}.h-6{height:calc(var(--spacing) * 6)}.h-10{height:calc(var(--spacing) * 10)}.h-12{height:calc(var(--spacing) * 12)}.h-auto{height:auto}.h-full{height:100%}.max-h-4{max-height:calc(var(--spacing) * 4)}.max-h-5{max-height:calc(var(--spacing) * 5)}.w-0{width:calc(var(--spacing) * 0)}.w-1{width:calc(var(--spacing) * 1)}.w-2{width:calc(var(--spacing) * 2)}.w-4{width:calc(var(--spacing) * 4)}.w-6{width:calc(var(--spacing) * 6)}.w-11\\/12{width:calc(11/12 * 100%)}.w-64{width:calc(var(--spacing) * 64)}.w-full{width:100%}.max-w-4{max-width:calc(var(--spacing) * 4)}.max-w-5{max-width:calc(var(--spacing) * 5)}.max-w-5xl{max-width:var(--container-5xl)}.min-w-60{min-width:calc(var(--spacing) * 60)}.flex-1{flex:1}.basis-1\\/4{flex-basis:25%}.basis-3\\/4{flex-basis:75%}.rotate-45{rotate:45deg}.transform{transform:var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y)}.link{cursor:pointer;text-decoration-line:underline;&:focus{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}&:focus-visible{outline:2px solid currentColor;outline-offset:2px}}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize{resize:both}.grid-flow-dense{grid-auto-flow:dense}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-wrap{flex-wrap:wrap}.content-stretch{align-content:stretch}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-stretch{align-items:stretch}.justify-center{justify-content:center}.justify-start{justify-content:flex-start}.gap-0{gap:calc(var(--spacing) * 0)}.gap-2{gap:calc(var(--spacing) * 2)}.gap-2\\.5{gap:calc(var(--spacing) * 2.5)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-y-2{row-gap:calc(var(--spacing) * 2)}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.rounded{border-radius:.25rem}.rounded-full{border-radius:calc(infinity * 1px)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-l-md{border-top-left-radius:var(--radius-md);border-bottom-left-radius:var(--radius-md)}.rounded-r-md{border-top-right-radius:var(--radius-md);border-bottom-right-radius:var(--radius-md)}.border-t-2{border-top-style:var(--tw-border-style);border-top-width:2px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-l-2{border-left-style:var(--tw-border-style);border-left-width:2px}.border-dashed{--tw-border-style: dashed;border-style:dashed}.border-solid{--tw-border-style: solid;border-style:solid}.border-base-300{border-color:var(--color-base-300)}.border-error{border-color:var(--color-error)}.border-info{border-color:var(--color-info)}.border-neutral-300{border-color:var(--color-neutral-300)}.border-primary{border-color:var(--color-primary)}.border-warning{border-color:var(--color-warning)}.border-t-neutral{border-top-color:var(--color-neutral)}.bg-base-100{background-color:var(--color-base-100)}.bg-base-200{background-color:var(--color-base-200)}.bg-base-300{background-color:var(--color-base-300)}.bg-base-300\\/30{background-color:color-mix(in oklab,var(--color-base-300) 30%,transparent)}.bg-error\\/25{background-color:color-mix(in oklab,var(--color-error) 25%,transparent)}.bg-info\\/25{background-color:color-mix(in oklab,var(--color-info) 25%,transparent)}.bg-neutral-300{background-color:var(--color-neutral-300)}.bg-primary{background-color:var(--color-primary)}.bg-transparent{background-color:transparent}.bg-warning\\/25{background-color:color-mix(in oklab,var(--color-warning) 25%,transparent)}.fill-current{fill:currentColor}.p-0{padding:calc(var(--spacing) * 0)}.p-1\\.5{padding:calc(var(--spacing) * 1.5)}.p-2{padding:calc(var(--spacing) * 2)}.p-6{padding:calc(var(--spacing) * 6)}.px-1{padding-inline:calc(var(--spacing) * 1)}.px-1\\.5{padding-inline:calc(var(--spacing) * 1.5)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-5{padding-inline:calc(var(--spacing) * 5)}.py-0\\.5{padding-block:calc(var(--spacing) * .5)}.py-2{padding-block:calc(var(--spacing) * 2)}.pt-1{padding-top:calc(var(--spacing) * 1)}.pr-2\\.5{padding-right:calc(var(--spacing) * 2.5)}.pb-2{padding-bottom:calc(var(--spacing) * 2)}.pl-9{padding-left:calc(var(--spacing) * 9)}.text-center{text-align:center}.text-left{text-align:left}.align-baseline{vertical-align:baseline}.font-mono{font-family:var(--font-mono)}.font-sans{font-family:var(--font-sans)}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading, var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading, var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading, var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading, var(--text-xs--line-height))}.btn-md{font-size:.875rem;--btn-p: 1rem;--size: calc(var(--size-field, .25rem) * 10)}.btn-sm{font-size:.75rem;--btn-p: .75rem;--size: calc(var(--size-field, .25rem) * 8)}.kbd-sm{--size: calc(var(--size-selector, .25rem) * 5);font-size:.75rem}.leading-5{--tw-leading: calc(var(--spacing) * 5);line-height:calc(var(--spacing) * 5)}.leading-6{--tw-leading: calc(var(--spacing) * 6);line-height:calc(var(--spacing) * 6)}.leading-9{--tw-leading: calc(var(--spacing) * 9);line-height:calc(var(--spacing) * 9)}.font-bold{--tw-font-weight: var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-normal{--tw-font-weight: var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight: var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-wide{--tw-tracking: var(--tracking-wide);letter-spacing:var(--tracking-wide)}.text-nowrap{text-wrap:nowrap}.whitespace-nowrap{white-space:nowrap}.checkbox-success{color:var(--color-success-content);--input-color: var(--color-success)}.text-neutral{color:var(--color-neutral)}.text-primary{color:var(--color-primary)}.text-primary-content{color:var(--color-primary-content)}.tooltip-primary{--tt-bg: var(--color-primary);>.tooltip-content,&[data-tip]:before{color:var(--color-primary-content)}}.tooltip-success{--tt-bg: var(--color-success);>.tooltip-content,&[data-tip]:before{color:var(--color-success-content)}}.tooltip-warning{--tt-bg: var(--color-warning);>.tooltip-content,&[data-tip]:before{color:var(--color-warning-content)}}.italic{font-style:italic}.link-hover{text-decoration-line:none;&:hover{@media (hover: hover){text-decoration-line:underline}}}.underline{text-decoration-line:underline}.decoration-primary{text-decoration-color:var(--color-primary)}.opacity-40{opacity:40%}.opacity-50{opacity:50%}.opacity-60{opacity:60%}.opacity-80{opacity:80%}.opacity-90{opacity:90%}.shadow{--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / .1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / .25));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner{--tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / .05));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / .1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / .1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-base-300{--tw-shadow-color: var(--color-base-300)}.outline-offset-2{outline-offset:2px}.blur{--tw-blur: blur(8px);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.backdrop-blur-md{--tw-backdrop-blur: blur(var(--blur-md));-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease, var(--default-transition-timing-function));transition-duration:var(--tw-duration, var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease, var(--default-transition-timing-function));transition-duration:var(--tw-duration, var(--default-transition-duration))}.ease-in-out{--tw-ease: var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.\\!btn-primary{--btn-color: var(--color-primary) !important;--btn-fg: var(--color-primary-content) !important}.btn-outline{&:not(.btn-active,:hover,:active:focus,:focus-visible,:disabled,[disabled],.btn-disabled){--btn-shadow: "";--btn-bg: #0000;--btn-fg: var(--btn-color);--btn-border: var(--btn-color);--btn-noise: none}}.btn-primary{--btn-color: var(--color-primary);--btn-fg: var(--color-primary-content)}.select-all{-webkit-user-select:all;user-select:all}.group-hover\\:w-24{&:is(:where(.group):hover *){@media (hover: hover){width:calc(var(--spacing) * 24)}}}.hover\\:btn-ghost{&:hover{@media (hover: hover){&:not(.btn-active,:hover,:active:focus,:focus-visible){--btn-shadow: "";--btn-bg: #0000;--btn-border: #0000;--btn-noise: none;&:not(:disabled,[disabled],.btn-disabled){outline-color:currentColor;--btn-fg: currentColor}}}}}.sm\\:join{@media (width >= 40rem){display:inline-flex;align-items:stretch;--join-ss: 0;--join-se: 0;--join-es: 0;--join-ee: 0;:where(.join-item){border-start-start-radius:var(--join-ss, 0);border-start-end-radius:var(--join-se, 0);border-end-start-radius:var(--join-es, 0);border-end-end-radius:var(--join-ee, 0);*{--join-ss: var(--radius-field);--join-se: var(--radius-field);--join-es: var(--radius-field);--join-ee: var(--radius-field)}}>.join-item:where(:first-child){--join-ss: var(--radius-field);--join-se: 0;--join-es: var(--radius-field);--join-ee: 0}:first-child:not(:last-child){:where(.join-item){--join-ss: var(--radius-field);--join-se: 0;--join-es: var(--radius-field);--join-ee: 0}}>.join-item:where(:last-child){--join-ss: 0;--join-se: var(--radius-field);--join-es: 0;--join-ee: var(--radius-field)}:last-child:not(:first-child){:where(.join-item){--join-ss: 0;--join-se: var(--radius-field);--join-es: 0;--join-ee: var(--radius-field)}}}}.sm\\:flex{@media (width >= 40rem){display:flex}}.sm\\:w-auto{@media (width >= 40rem){width:auto}}.md\\:overflow-visible{@media (width >= 48rem){overflow:visible}}.lg\\:mr-4{@media (width >= 64rem){margin-right:calc(var(--spacing) * 4)}}.lg\\:ml-0{@media (width >= 64rem){margin-left:calc(var(--spacing) * 0)}}.lg\\:block{@media (width >= 64rem){display:block}}.lg\\:grid-cols-2{@media (width >= 64rem){grid-template-columns:repeat(2,minmax(0,1fr))}}.lg\\:flex-row{@media (width >= 64rem){flex-direction:row}}.dark\\:border-neutral-500{@media (prefers-color-scheme: dark){border-color:var(--color-neutral-500)}}.dark\\:bg-neutral{@media (prefers-color-scheme: dark){background-color:var(--color-neutral)}}.dark\\:bg-neutral-500{@media (prefers-color-scheme: dark){background-color:var(--color-neutral-500)}}.dark\\:bg-neutral\\/70{@media (prefers-color-scheme: dark){background-color:color-mix(in oklab,var(--color-neutral) 70%,transparent)}}.dark\\:text-neutral-content{@media (prefers-color-scheme: dark){color:var(--color-neutral-content)}}}@layer components{:root{--lm: "";--lm2: ""}.list-custom>li{list-style:inside}.list-custom>li>*{vertical-align:top}.list-custom>li::marker{content:var(--lm) var(--lm2) " "}li.list-colon::marker,.list-custom.list-colon>li::marker{--lm2: ":"}li.list-star::marker,.list-custom.list-star>li::marker{--lm: "★"}li.list-dot::marker,.list-custom.list-dot>li::marker{--lm: "•"}li.list-info::marker,.list-custom.list-info>li::marker{--lm: "🛈"}li.list-warning::marker,.list-custom.list-warning>li::marker{--lm: "⚠"}li.list-error::marker,.list-custom.list-error>li::marker{--lm: "⮿"}li.list-check::marker,.list-custom.list-check>li::marker{--lm: "🗸"}.listbox{position:relative;display:inline-flex;cursor:pointer;align-items:center;height:calc(var(--spacing) * 12);min-height:calc(var(--spacing) * 12);padding-right:calc(var(--spacing) * 10);padding-left:calc(var(--spacing) * 4);font-size:var(--text-sm);line-height:var(--tw-leading, var(--text-sm--line-height));--tw-leading: var(--leading-loose);line-height:var(--leading-loose);&[multiple]{height:auto}[role=combobox]{flex-grow:1;appearance:none;outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}-webkit-user-select:none;user-select:none}[role=listbox]{position:absolute;top:100%;left:calc(var(--spacing) * 0);z-index:50;width:100%;overflow:visible}[role=combobox]:not([aria-expanded=true])~[role=listbox]{display:none}[role=listbox] [role=option]{box-sizing:border-box;display:inline-flex;height:calc(var(--spacing) * 12);min-height:calc(var(--spacing) * 12);width:100%;align-items:center;border-radius:0;padding-right:calc(var(--spacing) * 10);padding-left:calc(var(--spacing) * 4);font-size:var(--text-sm);line-height:var(--tw-leading, var(--text-sm--line-height));--tw-leading: var(--leading-loose);line-height:var(--leading-loose)}}.listbox{border-style:var(--tw-border-style);border-width:2px;--tw-border-style: solid;border-style:solid;border-color:color-mix(in oklab,var(--color-base-content) 0%,transparent);background-color:var(--color-base-100);padding-right:calc(var(--spacing) * 10);--tw-font-weight: var(--font-weight-semibold);font-weight:var(--font-weight-semibold);.listbox-bordered{border-color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}background-image:linear-gradient(45deg,transparent 50%,currentColor 50%),linear-gradient(135deg,currentColor 50%,transparent 50%);background-position:calc(100% - 20px) calc(1px + 50%),calc(100% - 16px) calc(1px + 50%);background-size:4px 4px,4px 4px;background-repeat:no-repeat;&:focus{outline-width:1px;outline-style:var(--tw-outline-style);outline-width:2px;outline-offset:2px;outline-color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}[role=listbox]{border-radius:.25rem;background-color:var(--color-base-100);--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / .1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-shadow-color: var(--color-base-300);[role=option][aria-selected=true]{border-radius:.25rem;border-style:var(--tw-border-style);border-width:2px;--tw-border-style: solid;border-style:solid;border-color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}[role=option][aria-disabled=true]{cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);opacity:20%}[role=option]:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}[role=option]:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}}.listbox-ghost{background-color:color-mix(in oklab,var(--color-base-100) 5%,transparent);&:focus{background-color:color-mix(in oklab,var(--color-base-100) 100%,transparent);color:var(--color-base-content)}}.listbox-primary{border-color:color-mix(in oklab,var(--color-primary) 60%,transparent);&:focus{outline-color:var(--color-primary)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-primary) 60%,transparent);background-color:color-mix(in oklab,var(--color-primary) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-primary) 10%,transparent)}}.listbox-secondary{border-color:color-mix(in oklab,var(--color-secondary) 60%,transparent);&:focus{outline-color:var(--color-secondary)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-secondary) 60%,transparent);background-color:color-mix(in oklab,var(--color-secondary) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-secondary) 10%,transparent)}}.listbox-accent{border-color:color-mix(in oklab,var(--color-accent) 60%,transparent);&:focus{outline-color:var(--color-accent)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-accent) 60%,transparent);background-color:color-mix(in oklab,var(--color-accent) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-accent) 10%,transparent)}}.listbox-info{border-color:color-mix(in oklab,var(--color-info) 60%,transparent);&:focus{outline-color:var(--color-info)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-info) 60%,transparent);background-color:color-mix(in oklab,var(--color-info) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-info) 10%,transparent)}}.listbox-success{border-color:color-mix(in oklab,var(--color-success) 60%,transparent);&:focus{outline-color:var(--color-success)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-success) 60%,transparent);background-color:color-mix(in oklab,var(--color-success) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-success) 10%,transparent)}}.listbox-warning{border-color:color-mix(in oklab,var(--color-warning) 60%,transparent);&:focus{outline-color:var(--color-warning)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-warning) 60%,transparent);background-color:color-mix(in oklab,var(--color-warning) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-warning) 10%,transparent)}}.listbox-error{border-color:color-mix(in oklab,var(--color-error) 60%,transparent);&:focus{outline-color:var(--color-error)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-error) 60%,transparent);background-color:color-mix(in oklab,var(--color-error) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-error) 10%,transparent)}}.listbox-disabled,&:disabled,&[disabled],&[aria-disabled=true]{cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);color:color-mix(in oklab,var(--color-base-content) 20%,transparent);&::placeholder{color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}outline-style:none!important;@media (forced-colors: active){outline:2px solid transparent!important;outline-offset:2px!important}}& -multiple,&[multiple],&[size]:not([size="1"]){background-image:none;padding-right:calc(var(--spacing) * 4)}}}@layer base{:where(:root),:root:has(input.theme-controller[value=light]:checked),[data-theme=light]{color-scheme:light;--color-base-100: oklch(100% 0 0);--color-base-200: oklch(98% 0 0);--color-base-300: oklch(95% 0 0);--color-base-content: oklch(21% .006 285.885);--color-primary: oklch(45% .24 277.023);--color-primary-content: oklch(93% .034 272.788);--color-secondary: oklch(65% .241 354.308);--color-secondary-content: oklch(94% .028 342.258);--color-accent: oklch(77% .152 181.912);--color-accent-content: oklch(38% .063 188.416);--color-neutral: oklch(14% .005 285.823);--color-neutral-content: oklch(92% .004 286.32);--color-info: oklch(74% .16 232.661);--color-info-content: oklch(29% .066 243.157);--color-success: oklch(76% .177 163.223);--color-success-content: oklch(37% .077 168.94);--color-warning: oklch(82% .189 84.429);--color-warning-content: oklch(41% .112 45.904);--color-error: oklch(71% .194 13.428);--color-error-content: oklch(27% .105 12.094);--radius-selector: .5rem;--radius-field: .25rem;--radius-box: .5rem;--size-selector: .25rem;--size-field: .25rem;--border: 1px;--depth: 1;--noise: 0}}@layer base{@media (prefers-color-scheme: dark){:root{color-scheme:dark;--color-base-100: oklch(25.33% .016 252.42);--color-base-200: oklch(23.26% .014 253.1);--color-base-300: oklch(21.15% .012 254.09);--color-base-content: oklch(97.807% .029 256.847);--color-primary: oklch(58% .233 277.117);--color-primary-content: oklch(96% .018 272.314);--color-secondary: oklch(65% .241 354.308);--color-secondary-content: oklch(94% .028 342.258);--color-accent: oklch(77% .152 181.912);--color-accent-content: oklch(38% .063 188.416);--color-neutral: oklch(14% .005 285.823);--color-neutral-content: oklch(92% .004 286.32);--color-info: oklch(74% .16 232.661);--color-info-content: oklch(29% .066 243.157);--color-success: oklch(76% .177 163.223);--color-success-content: oklch(37% .077 168.94);--color-warning: oklch(82% .189 84.429);--color-warning-content: oklch(41% .112 45.904);--color-error: oklch(71% .194 13.428);--color-error-content: oklch(27% .105 12.094);--radius-selector: .5rem;--radius-field: .25rem;--radius-box: .5rem;--size-selector: .25rem;--size-field: .25rem;--border: 1px;--depth: 1;--noise: 0}}}@layer base{:root:has(input.theme-controller[value=light]:checked),[data-theme=light]{color-scheme:light;--color-base-100: oklch(100% 0 0);--color-base-200: oklch(98% 0 0);--color-base-300: oklch(95% 0 0);--color-base-content: oklch(21% .006 285.885);--color-primary: oklch(45% .24 277.023);--color-primary-content: oklch(93% .034 272.788);--color-secondary: oklch(65% .241 354.308);--color-secondary-content: oklch(94% .028 342.258);--color-accent: oklch(77% .152 181.912);--color-accent-content: oklch(38% .063 188.416);--color-neutral: oklch(14% .005 285.823);--color-neutral-content: oklch(92% .004 286.32);--color-info: oklch(74% .16 232.661);--color-info-content: oklch(29% .066 243.157);--color-success: oklch(76% .177 163.223);--color-success-content: oklch(37% .077 168.94);--color-warning: oklch(82% .189 84.429);--color-warning-content: oklch(41% .112 45.904);--color-error: oklch(71% .194 13.428);--color-error-content: oklch(27% .105 12.094);--radius-selector: .5rem;--radius-field: .25rem;--radius-box: .5rem;--size-selector: .25rem;--size-field: .25rem;--border: 1px;--depth: 1;--noise: 0}}@layer base{:root:has(input.theme-controller[value=dark]:checked),[data-theme=dark]{color-scheme:dark;--color-base-100: oklch(25.33% .016 252.42);--color-base-200: oklch(23.26% .014 253.1);--color-base-300: oklch(21.15% .012 254.09);--color-base-content: oklch(97.807% .029 256.847);--color-primary: oklch(58% .233 277.117);--color-primary-content: oklch(96% .018 272.314);--color-secondary: oklch(65% .241 354.308);--color-secondary-content: oklch(94% .028 342.258);--color-accent: oklch(77% .152 181.912);--color-accent-content: oklch(38% .063 188.416);--color-neutral: oklch(14% .005 285.823);--color-neutral-content: oklch(92% .004 286.32);--color-info: oklch(74% .16 232.661);--color-info-content: oklch(29% .066 243.157);--color-success: oklch(76% .177 163.223);--color-success-content: oklch(37% .077 168.94);--color-warning: oklch(82% .189 84.429);--color-warning-content: oklch(41% .112 45.904);--color-error: oklch(71% .194 13.428);--color-error-content: oklch(27% .105 12.094);--radius-selector: .5rem;--radius-field: .25rem;--radius-box: .5rem;--size-selector: .25rem;--size-field: .25rem;--border: 1px;--depth: 1;--noise: 0}}@layer base{:root{--fx-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.34' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.2'%3E%3C/rect%3E%3C/svg%3E")}.chat{--mask-chat: url("data:image/svg+xml,%3csvg width='13' height='13' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M0 11.5004C0 13.0004 2 13.0004 2 13.0004H12H13V0.00036329L12.5 0C12.5 0 11.977 2.09572 11.8581 2.50033C11.6075 3.35237 10.9149 4.22374 9 5.50036C6 7.50036 0 10.0004 0 11.5004Z'/%3e%3c/svg%3e")}.tooltip{--mask-tooltip: url("data:image/svg+xml,%3Csvg width='10' height='4' viewBox='0 0 8 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.500009 1C3.5 1 3.00001 4 5.00001 4C7 4 6.5 1 9.5 1C10 1 10 0.499897 10 0H0C-1.99338e-08 0.5 0 1 0.500009 1Z' fill='black'/%3E%3C/svg%3E%0A")}}@layer base{:root,[data-theme]{background-color:var(--root-bg, var(--color-base-100));color:var(--color-base-content)}}@layer base{*,:after,::backdrop,:before,::file-selector-button{box-sizing:border-box;margin:0;padding:0;border:0 solid}:host,html{line-height:1.5;font-family:var( --default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" );webkit-tap-highlight-color:#0000}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;webkit-text-decoration:inherit;text-decoration:inherit}table{text-indent:0;border-color:inherit;border-collapse:collapse}::file-selector-button,button,input,optgroup,select,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;background:0 0}input:where(:not([type=button],[type=reset],[type=submit])),select,textarea{border-width:1px}::file-selector-button,button,input:where([type=button],[type=reset],[type=submit]){appearance:button}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}::-webkit-search-decoration{webkit-appearance:none}menu,ol,ul{list-style:none}textarea{resize:vertical}::placeholder{opacity:1;color:color-mix(in oklch,currentColor 50%,#0000)}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}}@layer base{:where(:root:has(.modal-open,.modal[open],.modal:target,.modal-toggle:checked,.drawer:not(.drawer-open)>.drawer-toggle:checked)){scrollbar-gutter:stable;background-image:linear-gradient(var(--color-base-100),var(--color-base-100));--root-bg: color-mix(in srgb, var(--color-base-100), oklch(0% 0 0) 40%)}}@layer base{@property --radialprogress{syntax: "<percentage>"; inherits: true; initial-value: 0%;}}@layer base{:root:has(.modal-open,.modal[open],.modal:target,.modal-toggle:checked,.drawer:not([class*=drawer-open])>.drawer-toggle:checked){overflow:hidden}}@layer base{:root{scrollbar-color:color-mix(in oklch,currentColor 35%,#0000) #0000}}@keyframes dropdown{0%{opacity:0}}@keyframes rating{0%,40%{scale:1.1;filter:brightness(1.05) contrast(1.05)}}@keyframes radio{0%{padding:5px}50%{padding:3px}}@keyframes progress{50%{background-position-x:-115%}}@keyframes skeleton{0%{background-position:150%}to{background-position:-50%}}@keyframes toast{0%{scale:.9;opacity:0}to{scale:1;opacity:1}}@keyframes spin{to{transform:rotate(360deg)}}@keyframes ping{75%,to{transform:scale(2);opacity:0}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{transform:translateY(-25%);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:none;animation-timing-function:cubic-bezier(0,0,.2,1)}}@property --tw-rotate-x{syntax: "*"; inherits: false; initial-value: rotateX(0);}@property --tw-rotate-y{syntax: "*"; inherits: false; initial-value: rotateY(0);}@property --tw-rotate-z{syntax: "*"; inherits: false; initial-value: rotateZ(0);}@property --tw-skew-x{syntax: "*"; inherits: false; initial-value: skewX(0);}@property --tw-skew-y{syntax: "*"; inherits: false; initial-value: skewY(0);}@property --tw-border-style{syntax: "*"; inherits: false; initial-value: solid;}@property --tw-leading{syntax: "*"; inherits: false;}@property --tw-font-weight{syntax: "*"; inherits: false;}@property --tw-tracking{syntax: "*"; inherits: false;}@property --tw-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-shadow-color{syntax: "*"; inherits: false;}@property --tw-inset-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-inset-shadow-color{syntax: "*"; inherits: false;}@property --tw-ring-color{syntax: "*"; inherits: false;}@property --tw-ring-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-inset-ring-color{syntax: "*"; inherits: false;}@property --tw-inset-ring-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-ring-inset{syntax: "*"; inherits: false;}@property --tw-ring-offset-width{syntax: "<length>"; inherits: false; initial-value: 0px;}@property --tw-ring-offset-color{syntax: "*"; inherits: false; initial-value: #fff;}@property --tw-ring-offset-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-blur{syntax: "*"; inherits: false;}@property --tw-brightness{syntax: "*"; inherits: false;}@property --tw-contrast{syntax: "*"; inherits: false;}@property --tw-grayscale{syntax: "*"; inherits: false;}@property --tw-hue-rotate{syntax: "*"; inherits: false;}@property --tw-invert{syntax: "*"; inherits: false;}@property --tw-opacity{syntax: "*"; inherits: false;}@property --tw-saturate{syntax: "*"; inherits: false;}@property --tw-sepia{syntax: "*"; inherits: false;}@property --tw-backdrop-blur{syntax: "*"; inherits: false;}@property --tw-backdrop-brightness{syntax: "*"; inherits: false;}@property --tw-backdrop-contrast{syntax: "*"; inherits: false;}@property --tw-backdrop-grayscale{syntax: "*"; inherits: false;}@property --tw-backdrop-hue-rotate{syntax: "*"; inherits: false;}@property --tw-backdrop-invert{syntax: "*"; inherits: false;}@property --tw-backdrop-opacity{syntax: "*"; inherits: false;}@property --tw-backdrop-saturate{syntax: "*"; inherits: false;}@property --tw-backdrop-sepia{syntax: "*"; inherits: false;}@property --tw-ease{syntax: "*"; inherits: false;}@property --tw-outline-style{syntax: "*"; inherits: false; initial-value: solid;}`;
|
|
5151
|
-
var
|
|
5152
|
-
function
|
|
5153
|
-
return y(
|
|
5190
|
+
const Ec = `/*! tailwindcss v4.0.6 | MIT License | https://tailwindcss.com */@layer theme,base,components,utilities;@layer theme{:root,:host{--font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--color-red-50: oklch(.971 .013 17.38);--color-red-100: oklch(.936 .032 17.717);--color-red-200: oklch(.885 .062 18.334);--color-red-300: oklch(.808 .114 19.571);--color-red-400: oklch(.704 .191 22.216);--color-red-500: oklch(.637 .237 25.331);--color-red-600: oklch(.577 .245 27.325);--color-red-700: oklch(.505 .213 27.518);--color-red-800: oklch(.444 .177 26.899);--color-red-900: oklch(.396 .141 25.723);--color-red-950: oklch(.258 .092 26.042);--color-orange-50: oklch(.98 .016 73.684);--color-orange-100: oklch(.954 .038 75.164);--color-orange-200: oklch(.901 .076 70.697);--color-orange-300: oklch(.837 .128 66.29);--color-orange-400: oklch(.75 .183 55.934);--color-orange-500: oklch(.705 .213 47.604);--color-orange-600: oklch(.646 .222 41.116);--color-orange-700: oklch(.553 .195 38.402);--color-orange-800: oklch(.47 .157 37.304);--color-orange-900: oklch(.408 .123 38.172);--color-orange-950: oklch(.266 .079 36.259);--color-amber-50: oklch(.987 .022 95.277);--color-amber-100: oklch(.962 .059 95.617);--color-amber-200: oklch(.924 .12 95.746);--color-amber-300: oklch(.879 .169 91.605);--color-amber-400: oklch(.828 .189 84.429);--color-amber-500: oklch(.769 .188 70.08);--color-amber-600: oklch(.666 .179 58.318);--color-amber-700: oklch(.555 .163 48.998);--color-amber-800: oklch(.473 .137 46.201);--color-amber-900: oklch(.414 .112 45.904);--color-amber-950: oklch(.279 .077 45.635);--color-yellow-50: oklch(.987 .026 102.212);--color-yellow-100: oklch(.973 .071 103.193);--color-yellow-200: oklch(.945 .129 101.54);--color-yellow-300: oklch(.905 .182 98.111);--color-yellow-400: oklch(.852 .199 91.936);--color-yellow-500: oklch(.795 .184 86.047);--color-yellow-600: oklch(.681 .162 75.834);--color-yellow-700: oklch(.554 .135 66.442);--color-yellow-800: oklch(.476 .114 61.907);--color-yellow-900: oklch(.421 .095 57.708);--color-yellow-950: oklch(.286 .066 53.813);--color-lime-50: oklch(.986 .031 120.757);--color-lime-100: oklch(.967 .067 122.328);--color-lime-200: oklch(.938 .127 124.321);--color-lime-300: oklch(.897 .196 126.665);--color-lime-400: oklch(.841 .238 128.85);--color-lime-500: oklch(.768 .233 130.85);--color-lime-600: oklch(.648 .2 131.684);--color-lime-700: oklch(.532 .157 131.589);--color-lime-800: oklch(.453 .124 130.933);--color-lime-900: oklch(.405 .101 131.063);--color-lime-950: oklch(.274 .072 132.109);--color-green-50: oklch(.982 .018 155.826);--color-green-100: oklch(.962 .044 156.743);--color-green-200: oklch(.925 .084 155.995);--color-green-300: oklch(.871 .15 154.449);--color-green-400: oklch(.792 .209 151.711);--color-green-500: oklch(.723 .219 149.579);--color-green-600: oklch(.627 .194 149.214);--color-green-700: oklch(.527 .154 150.069);--color-green-800: oklch(.448 .119 151.328);--color-green-900: oklch(.393 .095 152.535);--color-green-950: oklch(.266 .065 152.934);--color-emerald-50: oklch(.979 .021 166.113);--color-emerald-100: oklch(.95 .052 163.051);--color-emerald-200: oklch(.905 .093 164.15);--color-emerald-300: oklch(.845 .143 164.978);--color-emerald-400: oklch(.765 .177 163.223);--color-emerald-500: oklch(.696 .17 162.48);--color-emerald-600: oklch(.596 .145 163.225);--color-emerald-700: oklch(.508 .118 165.612);--color-emerald-800: oklch(.432 .095 166.913);--color-emerald-900: oklch(.378 .077 168.94);--color-emerald-950: oklch(.262 .051 172.552);--color-teal-50: oklch(.984 .014 180.72);--color-teal-100: oklch(.953 .051 180.801);--color-teal-200: oklch(.91 .096 180.426);--color-teal-300: oklch(.855 .138 181.071);--color-teal-400: oklch(.777 .152 181.912);--color-teal-500: oklch(.704 .14 182.503);--color-teal-600: oklch(.6 .118 184.704);--color-teal-700: oklch(.511 .096 186.391);--color-teal-800: oklch(.437 .078 188.216);--color-teal-900: oklch(.386 .063 188.416);--color-teal-950: oklch(.277 .046 192.524);--color-cyan-50: oklch(.984 .019 200.873);--color-cyan-100: oklch(.956 .045 203.388);--color-cyan-200: oklch(.917 .08 205.041);--color-cyan-300: oklch(.865 .127 207.078);--color-cyan-400: oklch(.789 .154 211.53);--color-cyan-500: oklch(.715 .143 215.221);--color-cyan-600: oklch(.609 .126 221.723);--color-cyan-700: oklch(.52 .105 223.128);--color-cyan-800: oklch(.45 .085 224.283);--color-cyan-900: oklch(.398 .07 227.392);--color-cyan-950: oklch(.302 .056 229.695);--color-sky-50: oklch(.977 .013 236.62);--color-sky-100: oklch(.951 .026 236.824);--color-sky-200: oklch(.901 .058 230.902);--color-sky-300: oklch(.828 .111 230.318);--color-sky-400: oklch(.746 .16 232.661);--color-sky-500: oklch(.685 .169 237.323);--color-sky-600: oklch(.588 .158 241.966);--color-sky-700: oklch(.5 .134 242.749);--color-sky-800: oklch(.443 .11 240.79);--color-sky-900: oklch(.391 .09 240.876);--color-sky-950: oklch(.293 .066 243.157);--color-blue-50: oklch(.97 .014 254.604);--color-blue-100: oklch(.932 .032 255.585);--color-blue-200: oklch(.882 .059 254.128);--color-blue-300: oklch(.809 .105 251.813);--color-blue-400: oklch(.707 .165 254.624);--color-blue-500: oklch(.623 .214 259.815);--color-blue-600: oklch(.546 .245 262.881);--color-blue-700: oklch(.488 .243 264.376);--color-blue-800: oklch(.424 .199 265.638);--color-blue-900: oklch(.379 .146 265.522);--color-blue-950: oklch(.282 .091 267.935);--color-indigo-50: oklch(.962 .018 272.314);--color-indigo-100: oklch(.93 .034 272.788);--color-indigo-200: oklch(.87 .065 274.039);--color-indigo-300: oklch(.785 .115 274.713);--color-indigo-400: oklch(.673 .182 276.935);--color-indigo-500: oklch(.585 .233 277.117);--color-indigo-600: oklch(.511 .262 276.966);--color-indigo-700: oklch(.457 .24 277.023);--color-indigo-800: oklch(.398 .195 277.366);--color-indigo-900: oklch(.359 .144 278.697);--color-indigo-950: oklch(.257 .09 281.288);--color-violet-50: oklch(.969 .016 293.756);--color-violet-100: oklch(.943 .029 294.588);--color-violet-200: oklch(.894 .057 293.283);--color-violet-300: oklch(.811 .111 293.571);--color-violet-400: oklch(.702 .183 293.541);--color-violet-500: oklch(.606 .25 292.717);--color-violet-600: oklch(.541 .281 293.009);--color-violet-700: oklch(.491 .27 292.581);--color-violet-800: oklch(.432 .232 292.759);--color-violet-900: oklch(.38 .189 293.745);--color-violet-950: oklch(.283 .141 291.089);--color-purple-50: oklch(.977 .014 308.299);--color-purple-100: oklch(.946 .033 307.174);--color-purple-200: oklch(.902 .063 306.703);--color-purple-300: oklch(.827 .119 306.383);--color-purple-400: oklch(.714 .203 305.504);--color-purple-500: oklch(.627 .265 303.9);--color-purple-600: oklch(.558 .288 302.321);--color-purple-700: oklch(.496 .265 301.924);--color-purple-800: oklch(.438 .218 303.724);--color-purple-900: oklch(.381 .176 304.987);--color-purple-950: oklch(.291 .149 302.717);--color-fuchsia-50: oklch(.977 .017 320.058);--color-fuchsia-100: oklch(.952 .037 318.852);--color-fuchsia-200: oklch(.903 .076 319.62);--color-fuchsia-300: oklch(.833 .145 321.434);--color-fuchsia-400: oklch(.74 .238 322.16);--color-fuchsia-500: oklch(.667 .295 322.15);--color-fuchsia-600: oklch(.591 .293 322.896);--color-fuchsia-700: oklch(.518 .253 323.949);--color-fuchsia-800: oklch(.452 .211 324.591);--color-fuchsia-900: oklch(.401 .17 325.612);--color-fuchsia-950: oklch(.293 .136 325.661);--color-pink-50: oklch(.971 .014 343.198);--color-pink-100: oklch(.948 .028 342.258);--color-pink-200: oklch(.899 .061 343.231);--color-pink-300: oklch(.823 .12 346.018);--color-pink-400: oklch(.718 .202 349.761);--color-pink-500: oklch(.656 .241 354.308);--color-pink-600: oklch(.592 .249 .584);--color-pink-700: oklch(.525 .223 3.958);--color-pink-800: oklch(.459 .187 3.815);--color-pink-900: oklch(.408 .153 2.432);--color-pink-950: oklch(.284 .109 3.907);--color-rose-50: oklch(.969 .015 12.422);--color-rose-100: oklch(.941 .03 12.58);--color-rose-200: oklch(.892 .058 10.001);--color-rose-300: oklch(.81 .117 11.638);--color-rose-400: oklch(.712 .194 13.428);--color-rose-500: oklch(.645 .246 16.439);--color-rose-600: oklch(.586 .253 17.585);--color-rose-700: oklch(.514 .222 16.935);--color-rose-800: oklch(.455 .188 13.697);--color-rose-900: oklch(.41 .159 10.272);--color-rose-950: oklch(.271 .105 12.094);--color-slate-50: oklch(.984 .003 247.858);--color-slate-100: oklch(.968 .007 247.896);--color-slate-200: oklch(.929 .013 255.508);--color-slate-300: oklch(.869 .022 252.894);--color-slate-400: oklch(.704 .04 256.788);--color-slate-500: oklch(.554 .046 257.417);--color-slate-600: oklch(.446 .043 257.281);--color-slate-700: oklch(.372 .044 257.287);--color-slate-800: oklch(.279 .041 260.031);--color-slate-900: oklch(.208 .042 265.755);--color-slate-950: oklch(.129 .042 264.695);--color-gray-50: oklch(.985 .002 247.839);--color-gray-100: oklch(.967 .003 264.542);--color-gray-200: oklch(.928 .006 264.531);--color-gray-300: oklch(.872 .01 258.338);--color-gray-400: oklch(.707 .022 261.325);--color-gray-500: oklch(.551 .027 264.364);--color-gray-600: oklch(.446 .03 256.802);--color-gray-700: oklch(.373 .034 259.733);--color-gray-800: oklch(.278 .033 256.848);--color-gray-900: oklch(.21 .034 264.665);--color-gray-950: oklch(.13 .028 261.692);--color-zinc-50: oklch(.985 0 0);--color-zinc-100: oklch(.967 .001 286.375);--color-zinc-200: oklch(.92 .004 286.32);--color-zinc-300: oklch(.871 .006 286.286);--color-zinc-400: oklch(.705 .015 286.067);--color-zinc-500: oklch(.552 .016 285.938);--color-zinc-600: oklch(.442 .017 285.786);--color-zinc-700: oklch(.37 .013 285.805);--color-zinc-800: oklch(.274 .006 286.033);--color-zinc-900: oklch(.21 .006 285.885);--color-zinc-950: oklch(.141 .005 285.823);--color-neutral-50: oklch(.985 0 0);--color-neutral-100: oklch(.97 0 0);--color-neutral-200: oklch(.922 0 0);--color-neutral-300: oklch(.87 0 0);--color-neutral-400: oklch(.708 0 0);--color-neutral-500: oklch(.556 0 0);--color-neutral-600: oklch(.439 0 0);--color-neutral-700: oklch(.371 0 0);--color-neutral-800: oklch(.269 0 0);--color-neutral-900: oklch(.205 0 0);--color-neutral-950: oklch(.145 0 0);--color-stone-50: oklch(.985 .001 106.423);--color-stone-100: oklch(.97 .001 106.424);--color-stone-200: oklch(.923 .003 48.717);--color-stone-300: oklch(.869 .005 56.366);--color-stone-400: oklch(.709 .01 56.259);--color-stone-500: oklch(.553 .013 58.071);--color-stone-600: oklch(.444 .011 73.639);--color-stone-700: oklch(.374 .01 67.558);--color-stone-800: oklch(.268 .007 34.298);--color-stone-900: oklch(.216 .006 56.043);--color-stone-950: oklch(.147 .004 49.25);--color-black: #000;--color-white: #fff;--spacing: .25rem;--breakpoint-sm: 40rem;--breakpoint-md: 48rem;--breakpoint-lg: 64rem;--breakpoint-xl: 80rem;--breakpoint-2xl: 96rem;--container-3xs: 16rem;--container-2xs: 18rem;--container-xs: 20rem;--container-sm: 24rem;--container-md: 28rem;--container-lg: 32rem;--container-xl: 36rem;--container-2xl: 42rem;--container-3xl: 48rem;--container-4xl: 56rem;--container-5xl: 64rem;--container-6xl: 72rem;--container-7xl: 80rem;--text-xs: .75rem;--text-xs--line-height: calc(1 / .75);--text-sm: .875rem;--text-sm--line-height: calc(1.25 / .875);--text-base: 1rem;--text-base--line-height: 1.5 ;--text-lg: 1.125rem;--text-lg--line-height: calc(1.75 / 1.125);--text-xl: 1.25rem;--text-xl--line-height: calc(1.75 / 1.25);--text-2xl: 1.5rem;--text-2xl--line-height: calc(2 / 1.5);--text-3xl: 1.875rem;--text-3xl--line-height: 1.2 ;--text-4xl: 2.25rem;--text-4xl--line-height: calc(2.5 / 2.25);--text-5xl: 3rem;--text-5xl--line-height: 1;--text-6xl: 3.75rem;--text-6xl--line-height: 1;--text-7xl: 4.5rem;--text-7xl--line-height: 1;--text-8xl: 6rem;--text-8xl--line-height: 1;--text-9xl: 8rem;--text-9xl--line-height: 1;--font-weight-thin: 100;--font-weight-extralight: 200;--font-weight-light: 300;--font-weight-normal: 400;--font-weight-medium: 500;--font-weight-semibold: 600;--font-weight-bold: 700;--font-weight-extrabold: 800;--font-weight-black: 900;--tracking-tighter: -.05em;--tracking-tight: -.025em;--tracking-normal: 0em;--tracking-wide: .025em;--tracking-wider: .05em;--tracking-widest: .1em;--leading-tight: 1.25;--leading-snug: 1.375;--leading-normal: 1.5;--leading-relaxed: 1.625;--leading-loose: 2;--radius-xs: .125rem;--radius-sm: .25rem;--radius-md: .375rem;--radius-lg: .5rem;--radius-xl: .75rem;--radius-2xl: 1rem;--radius-3xl: 1.5rem;--radius-4xl: 2rem;--shadow-2xs: 0 1px rgb(0 0 0 / .05);--shadow-xs: 0 1px 2px 0 rgb(0 0 0 / .05);--shadow-sm: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);--inset-shadow-2xs: inset 0 1px rgb(0 0 0 / .05);--inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / .05);--inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / .05);--drop-shadow-xs: 0 1px 1px rgb(0 0 0 / .05);--drop-shadow-sm: 0 1px 2px rgb(0 0 0 / .15);--drop-shadow-md: 0 3px 3px rgb(0 0 0 / .12);--drop-shadow-lg: 0 4px 4px rgb(0 0 0 / .15);--drop-shadow-xl: 0 9px 7px rgb(0 0 0 / .1);--drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / .15);--ease-in: cubic-bezier(.4, 0, 1, 1);--ease-out: cubic-bezier(0, 0, .2, 1);--ease-in-out: cubic-bezier(.4, 0, .2, 1);--animate-spin: spin 1s linear infinite;--animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite;--animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;--animate-bounce: bounce 1s infinite;--blur-xs: 4px;--blur-sm: 8px;--blur-md: 12px;--blur-lg: 16px;--blur-xl: 24px;--blur-2xl: 40px;--blur-3xl: 64px;--perspective-dramatic: 100px;--perspective-near: 300px;--perspective-normal: 500px;--perspective-midrange: 800px;--perspective-distant: 1200px;--aspect-video: 16 / 9;--default-transition-duration: .15s;--default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);--default-font-family: var(--font-sans);--default-font-feature-settings: var(--font-sans--font-feature-settings);--default-font-variation-settings: var( --font-sans--font-variation-settings );--default-mono-font-family: var(--font-mono);--default-mono-font-feature-settings: var( --font-mono--font-feature-settings );--default-mono-font-variation-settings: var( --font-mono--font-variation-settings )}}@layer base{*,:after,:before,::backdrop,::file-selector-button{box-sizing:border-box;margin:0;padding:0;border:0 solid}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;tab-size:4;font-family:var( --default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" );font-feature-settings:var(--default-font-feature-settings, normal);font-variation-settings:var( --default-font-variation-settings, normal );-webkit-tap-highlight-color:transparent}body{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;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var( --default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace );font-feature-settings:var( --default-mono-font-feature-settings, normal );font-variation-settings:var( --default-mono-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}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea,::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;border-radius:0;background-color:transparent;opacity:1}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1;color:color-mix(in oklab,currentColor 50%,transparent)}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]),::file-selector-button{appearance:button}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer utilities{.diff{position:relative;display:grid;width:100%;overflow:hidden;webkit-user-select:none;user-select:none;direction:ltr;container-type:inline-size;grid-template-columns:auto 1fr;&:focus,&:has(.diff-item-1:focus){outline-style:var(--tw-outline-style);outline-width:2px;outline-offset:1px;outline-color:var(--color-base-content)}&:focus-visible{outline-style:var(--tw-outline-style);outline-width:2px;outline-offset:1px;outline-color:var(--color-base-content);.diff-resizer{min-width:90cqi;max-width:90cqi}}&:has(.diff-item-2:focus-visible){outline-style:var(--tw-outline-style);outline-width:2px;outline-offset:1px;.diff-resizer{min-width:10cqi;max-width:10cqi}}@supports (-webkit-overflow-scrolling: touch) and (overflow: -webkit-paged-x){&:focus{.diff-resizer{min-width:10cqi;max-width:10cqi}}&:has(.diff-item-1:focus){.diff-resizer{min-width:90cqi;max-width:90cqi}}}}.menu{display:flex;width:fit-content;flex-direction:column;flex-wrap:wrap;padding:.5rem;--menu-active-fg: var(--color-neutral-content);--menu-active-bg: var(--color-neutral);font-size:.875rem;:where(li ul){position:relative;margin-inline-start:1rem;padding-inline-start:.5rem;white-space:nowrap;&:before{position:absolute;inset-inline-start:0rem;top:.75rem;bottom:.75rem;background-color:var(--color-base-content);opacity:10%;width:var(--border);content:""}}:where(li>.menu-dropdown:not(.menu-dropdown-show)){display:none}:where(li:not(.menu-title)>*:not(ul,details,.menu-title,.btn)),:where(li:not(.menu-title)>details>summary:not(.menu-title)){display:grid;grid-auto-flow:column;align-content:flex-start;align-items:center;gap:.5rem;border-radius:var(--radius-field);padding-inline:.75rem;padding-block:.375rem;text-align:start;transition-property:color,background-color,box-shadow;transition-duration:.2s;transition-timing-function:cubic-bezier(0,0,.2,1);grid-auto-columns:minmax(auto,max-content) auto max-content;text-wrap:balance;user-select:none}:where(li>details>summary){outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}&::-webkit-details-marker{display:none}}:where(li>details>summary),:where(li>.menu-dropdown-toggle){&:after{justify-self:flex-end;display:block;height:.375rem;width:.375rem;rotate:-135deg;translate:0 -1px;transition-property:rotate,translate;transition-duration:.2s;content:"";transform-origin:50% 50%;box-shadow:2px 2px inset;pointer-events:none}}:where(li>details[open]>summary):after,:where(li>.menu-dropdown-toggle.menu-dropdown-show):after{rotate:45deg;translate:0 1px}:where(li:not(.menu-title,.disabled)>*:not(ul,details,.menu-title),li:not(.menu-title,.disabled)>details>summary:not(.menu-title)):not(.menu-active,:active,.btn){&.menu-focus,&:focus-visible{cursor:pointer;background-color:color-mix(in oklab,var(--color-base-content) 10%,transparent);color:var(--color-base-content);outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}}:where(li:not(.menu-title,.disabled)>*:not(ul,details,.menu-title):not(.menu-active,:active,.btn):hover,li:not(.menu-title,.disabled)>details>summary:not(.menu-title):not(.menu-active,:active,.btn):hover){cursor:pointer;background-color:color-mix(in oklab,var(--color-base-content) 10%,transparent);outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}box-shadow:0 1px #00000003 inset,0 -1px #ffffff03 inset}:where(li:empty){background-color:var(--color-base-content);opacity:10%;margin:.5rem 1rem;height:1px}:where(li){position:relative;display:flex;flex-shrink:0;flex-direction:column;flex-wrap:wrap;align-items:stretch;.badge{justify-self:flex-end}>*:not(ul,.menu-title,details,.btn):active,>*:not(ul,.menu-title,details,.btn).menu-active,>details>summary:active{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}color:var(--menu-active-fg);background-color:var(--menu-active-bg);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--fx-noise);&:not(&:active){box-shadow:0 2px calc(var(--depth) * 3px) -2px var(--menu-active-bg)}}&.menu-disabled{pointer-events:none;color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}}}.btn{display:inline-flex;flex-shrink:0;cursor:pointer;flex-wrap:nowrap;align-items:center;justify-content:center;gap:.375rem;text-align:center;vertical-align:middle;text-decoration-line:none;outline-offset:2px;webkit-user-select:none;user-select:none;padding-inline:var(--btn-p);color:var(--btn-fg);height:var(--size);font-size:.875rem;font-weight:600;outline-color:var(--btn-color, var(--color-base-content));transition-property:color,background-color,border-color,box-shadow;transition-timing-function:cubic-bezier(0,0,.2,1);transition-duration:.2s;border-start-start-radius:var(--join-ss, var(--radius-field));border-start-end-radius:var(--join-se, var(--radius-field));border-end-start-radius:var(--join-es, var(--radius-field));border-end-end-radius:var(--join-ee, var(--radius-field));background-color:var(--btn-bg);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--btn-noise);border-width:var(--border);border-style:solid;border-color:var(--btn-border);text-shadow:0 .5px oklch(100% 0 0 / calc(var(--depth) * .15));box-shadow:0 .5px 0 .5px oklch(100% 0 0 / calc(var(--depth) * 6%)) inset,var(--btn-shadow);--size: calc(var(--size-field, .25rem) * 10);--btn-bg: var(--btn-color, var(--color-base-200));--btn-fg: var(--color-base-content);--btn-p: 1rem;--btn-border: color-mix(in oklab, var(--btn-bg), #000 calc(var(--depth) * 5%));--btn-shadow: 0 3px 2px -2px color-mix(in oklab, var(--btn-bg) calc(var(--depth) * 30%), #0000), 0 4px 3px -2px color-mix(in oklab, var(--btn-bg) calc(var(--depth) * 30%), #0000);--btn-noise: var(--fx-noise);@media (hover: hover){&:hover{--btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%)}}&.btn-active{--btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%);--btn-shadow: 0 0 0 0 oklch(0% 0 0/0), 0 0 0 0 oklch(0% 0 0/0);isolation:isolate}&:focus-visible{outline-width:2px;outline-style:solid}&:active:not(.btn-active){translate:0 .5px;--btn-bg: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 5%);--btn-border: color-mix(in oklab, var(--btn-color, var(--color-base-200)), #000 7%);--btn-shadow: 0 0 0 0 oklch(0% 0 0/0), 0 0 0 0 oklch(0% 0 0/0)}&:is(:disabled,[disabled],.btn-disabled){&:not(.btn-link,.btn-ghost){background-color:color-mix(in oklab,var(--color-base-content) 10%,transparent);box-shadow:none}pointer-events:none;--btn-border: #0000;--btn-noise: none;--btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000);@media (hover: hover){&:hover{pointer-events:none;background-color:color-mix(in oklab,var(--color-neutral) 20%,transparent);--btn-border: #0000;--btn-fg: color-mix(in oklch, var(--color-base-content) 20%, #0000)}}}&:is(input[type=checkbox],input[type=radio]){appearance:none;&:after{content:attr(aria-label)}&:checked{--btn-color: var(--color-primary);--btn-bg: var(--color-primary);--btn-fg: var(--color-primary-content);--btn-border: var(--color-primary);&:focus-visible{outline-color:var(--color-primary)}@media (hover: hover){&:hover{--btn-bg: color-mix(in oklab, var(--color-primary) 90%, #000);--btn-border: color-mix(in oklab, var(--color-primary) 90%, #000)}}}}}.modal{pointer-events:none;visibility:hidden;position:fixed;inset:0rem;margin:0rem;display:grid;height:100%;max-height:none;width:100%;max-width:none;align-items:center;justify-items:center;background-color:transparent;padding:0rem;color:inherit;overflow-x:hidden;transition:transform .3s ease-out,visibility 0s allow-discrete,opacity .1s ease-out;overflow-y:hidden;overscroll-behavior:contain;z-index:999;&:not(dialog:not(.modal-open)),&::backdrop{opacity:100%;@starting-style{visibility:hidden}@starting-style{opacity:0%}background-color:#0006;transition:display .3s ease-out allow-discrete,opacity .3s ease-out,visibility .3s ease-out allow-discrete}&.modal-open,&[open],&:target{pointer-events:auto;visibility:visible;opacity:100%;@starting-style{visibility:hidden}@starting-style{opacity:0%}.modal-box{translate:0 0;scale:1;opacity:1}}}.tab{position:relative;display:inline-flex;cursor:pointer;appearance:none;flex-wrap:wrap;align-items:center;justify-content:center;text-align:center;webkit-user-select:none;user-select:none;&:hover{@media (hover: hover){color:var(--color-base-content)}}--tab-p: 1rem;--tab-bg: var(--color-base-100);--tab-border-color: var(--color-base-300);--tab-radius-ss: 0;--tab-radius-se: 0;--tab-radius-es: 0;--tab-radius-ee: 0;--tab-order: 0;--tab-radius-min: calc(.75rem - var(--border));border-color:#0000;order:var(--tab-order);height:calc(var(--size-field, .25rem) * 10);font-size:.875rem;padding-inline-start:var(--tab-p);padding-inline-end:var(--tab-p);&:is(input[type=radio]){min-width:fit-content;&:after{content:attr(aria-label)}}&:checked,&:is(.tab-active,[aria-selected=true]){+.tab-content{display:block;height:100%}}&:not(:checked,:hover,.tab-active,[aria-selected=true]){color:color-mix(in oklab,var(--color-base-content) 50%,transparent)}&:not(input):empty{flex-grow:1;cursor:default}&:focus{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}&:focus-visible{outline:2px solid currentColor;outline-offset:-5px}&[disabled]{pointer-events:none;opacity:40%}}.tooltip{position:relative;display:inline-block;--tt-bg: var(--color-neutral);--tt-off: calc(100% + .5rem) ;--tt-tail: calc(100% + 1px + .25rem) ;>:where(.tooltip-content),&[data-tip]:before{position:absolute;max-width:20rem;border-radius:var(--radius-field);padding-inline:.5rem;padding-block:.25rem;text-align:center;white-space:normal;color:var(--color-neutral-content);opacity:0%;font-size:.875rem;line-height:1.25em;transition:opacity .2s cubic-bezier(.4,0,.2,1) 75ms,transform .2s cubic-bezier(.4,0,.2,1) 75ms;background-color:var(--tt-bg);width:max-content;pointer-events:none;z-index:1;--tw-content: attr(data-tip);content:var(--tw-content)}&:after{position:absolute;opacity:0%;background-color:var(--tt-bg);transition:opacity .2s cubic-bezier(.4,0,.2,1) 75ms,transform .2s cubic-bezier(.4,0,.2,1) 75ms;content:"";pointer-events:none;width:.625rem;height:.25rem;display:block;mask-repeat:no-repeat;mask-position:-1px 0;mask-image:var(--mask-tooltip)}&.tooltip-open,&[data-tip]:hover,&:hover,&:has(:focus-visible){>.tooltip-content,&[data-tip]:before,&:after{opacity:100%;--tt-pos: 0rem;transition:opacity .2s cubic-bezier(.4,0,.2,1) 0s,transform .2s cubic-bezier(.4,0,.2,1) 0ms}}>.tooltip-content,&[data-tip]:before{transform:translate(-50%) translateY(var(--tt-pos, .25rem));inset:auto auto var(--tt-off) 50%}&:after{transform:translate(-50%) translateY(var(--tt-pos, .25rem));inset:auto auto var(--tt-tail) 50%}}.dropdown{position:relative;display:inline-block;position-area:var(--anchor-v, bottom) var(--anchor-h, span-right);>*:not(summary):focus{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}.dropdown-content{position:absolute}&:not(details,.dropdown-open,.dropdown-hover:hover,:focus-within){.dropdown-content{display:none;transform-origin:top;opacity:0%;scale:95%}}&[popover],.dropdown-content{@starting-style{scale:95%}@starting-style{opacity:0}z-index:999;animation:dropdown .2s;transition-property:opacity,scale,display;transition-behavior:allow-discrete;transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,.2,1)}&.dropdown-open,&:not(.dropdown-hover):focus,&:focus-within{>[tabindex]:first-child{pointer-events:none}.dropdown-content{opacity:100%}}&.dropdown-hover:hover{.dropdown-content{opacity:100%;scale:100%}}&:is(details){summary{&::-webkit-details-marker{display:none}}}&.dropdown-open,&:focus,&:focus-within{.dropdown-content{scale:100%}}&:where([popover]){background:#0000}&[popover]{position:fixed;color:inherit;@supports not (position-area: bottom){margin:auto;&.dropdown-open:not(:popover-open){display:none;transform-origin:top;opacity:0%;scale:95%}&::backdrop{background-color:color-mix(in oklab,#000 30%,#0000)}}&:not(.dropdown-open,:popover-open){display:none;transform-origin:top;opacity:0%;scale:95%}}}.loading{pointer-events:none;display:inline-block;aspect-ratio:1 / 1;width:1.5rem;background-color:currentColor;vertical-align:middle;mask-size:100%;mask-repeat:no-repeat;mask-position:center;mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E")}.invisible{visibility:hidden}.visible{visibility:visible}.select{border:var(--border) solid #0000;position:relative;display:inline-flex;flex-shrink:1;appearance:none;align-items:center;gap:.375rem;background-color:var(--color-base-100);padding-inline-start:1rem;padding-inline-end:1.75rem;vertical-align:middle;width:clamp(3rem,20rem,100%);height:var(--size);font-size:.875rem;border-start-start-radius:var(--join-ss, var(--radius-field));border-start-end-radius:var(--join-se, var(--radius-field));border-end-start-radius:var(--join-es, var(--radius-field));border-end-end-radius:var(--join-ee, var(--radius-field));background-image:linear-gradient(45deg,#0000 50%,currentColor 50%),linear-gradient(135deg,currentColor 50%,#0000 50%);background-position:calc(100% - 20px) calc(1px + 50%),calc(100% - 16.1px) calc(1px + 50%);background-size:4px 4px,4px 4px;background-repeat:no-repeat;text-overflow:ellipsis;box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000) inset,0 -1px oklch(100% 0 0 / calc(var(--depth) * .1)) inset;border-color:var(--input-color);--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);--size: calc(var(--size-field, .25rem) * 10);[dir=rtl] &{background-position:calc(0% + 12px) calc(1px + 50%),calc(0% + 16px) calc(1px + 50%)}select{margin-inline-start:-1rem;margin-inline-end:-1.75rem;height:100%;width:calc(100% + 2.75rem);appearance:none;padding-inline-start:1rem;padding-inline-end:1.75rem;background:inherit;border-radius:inherit;border-style:none;&:focus,&:focus-within{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}}&:focus,&:focus-within{--input-color: var(--color-base-content);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000);outline:2px solid var(--input-color);outline-offset:2px}&:has(>select[disabled]),&:is(:disabled,[disabled]){cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);color:color-mix(in oklab,var(--color-base-content) 40%,transparent);&::placeholder{color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}}&:has(>select[disabled])>select[disabled]{cursor:not-allowed}}.toggle{border:var(--border) solid currentColor;color:var(--input-color);position:relative;display:inline-grid;flex-shrink:0;cursor:pointer;appearance:none;place-content:center;vertical-align:middle;webkit-user-select:none;user-select:none;grid-template-columns:0fr 1fr 1fr;border-radius:calc(var(--radius-selector) + min(var(--toggle-p),calc(var(--radius-selector) + var(--radius-selector) + var(--radius-selector))) + min(var(--border),calc(var(--radius-selector) + var(--radius-selector) + var(--radius-selector))));padding:var(--toggle-p);box-shadow:0 1px color-mix(in oklab,currentColor calc(var(--depth) * 10%),#0000) inset;transition:color .3s,grid-template-columns .2s;--input-color: color-mix(in oklab, var(--color-base-content) 50%, #0000);--toggle-p: .1875rem;--size: calc(var(--size-selector, .25rem) * 6);width:calc((var(--size) * 2) - (var(--border) + var(--toggle-p)) * 2);height:var(--size);>*{z-index:1;grid-column:span 1 / span 1;grid-column-start:2;grid-row-start:1;height:100%;cursor:pointer;appearance:none;background-color:transparent;padding:.125rem;transition:opacity .2s,rotate .4s;border:none;&:focus{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}&:nth-child(2){color:var(--color-base-100);rotate:0deg}&:nth-child(3){color:var(--color-base-100);opacity:0%;rotate:-15deg}}&:has(:checked){>:nth-child(2){opacity:0%;rotate:15deg}>:nth-child(3){opacity:100%;rotate:0deg}}&:before{position:relative;inset-inline-start:0rem;grid-column-start:2;grid-row-start:1;aspect-ratio:1 / 1;height:100%;border-radius:var(--radius-selector);background-color:currentColor;@media print{outline:.25rem solid}@media print{outline-offset:-1rem}translate:0;--tw-content: "";content:var(--tw-content);transition:background-color .1s,translate .2s,inset-inline-start .2s;box-shadow:0 -1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px color-mix(in oklab,currentColor calc(var(--depth) * 10%),#0000);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--fx-noise);@media (forced-colors: active){outline-style:var(--tw-outline-style);outline-width:1px;outline-offset:-1px}}&:focus-visible,&:has(:focus-visible){outline:2px solid currentColor;outline-offset:2px}&:checked,&[aria-checked=true],&:has(>input:checked){grid-template-columns:1fr 1fr 0fr;background-color:var(--color-base-100);--input-color: var(--color-base-content);&:before{background-color:currentColor;@starting-style{opacity:0}}}&:indeterminate{grid-template-columns:.5fr 1fr .5fr}&:disabled{cursor:not-allowed;opacity:30%;&:before{background-color:transparent;border:var(--border) solid currentColor}}}.checkbox{border:var(--border) solid var(--input-color, color-mix(in oklab, var(--color-base-content) 20%, #0000));position:relative;flex-shrink:0;cursor:pointer;appearance:none;border-radius:var(--radius-selector);padding:.25rem;vertical-align:middle;color:var(--color-base-content);box-shadow:0 1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 0 #0000 inset,0 0 #0000;transition:background-color .2s,box-shadow .2s;--size: calc(var(--size-selector, .25rem) * 6);width:var(--size);height:var(--size);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--fx-noise);&:before{--tw-content: "";content:var(--tw-content);display:block;width:100%;height:100%;rotate:45deg;background-color:currentColor;opacity:0%;transition:clip-path .3s,opacity .1s,rotate .3s,translate .3s;transition-delay:.1s;clip-path:polygon(20% 100%,20% 80%,50% 80%,50% 80%,70% 80%,70% 100%);box-shadow:0 3px oklch(100% 0 0 / calc(var(--depth) * .1)) inset;font-size:1rem;line-height:.75}&:focus-visible{outline:2px solid var(--input-color, currentColor);outline-offset:2px}&:checked,&[aria-checked=true]{background-color:var(--input-color, #0000);box-shadow:0 0 #0000 inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px oklch(0% 0 0 / calc(var(--depth) * .1));&:before{clip-path:polygon(20% 100%,20% 80%,50% 80%,50% 0%,70% 0%,70% 100%);opacity:100%;@media print{rotate:0deg}@media print{background-color:transparent}@media print{--tw-content: "✔︎"}@media print{clip-path:none}@media (forced-colors: active){rotate:0deg;background-color:transparent;--tw-content: "✔︎";clip-path:none}}}&:indeterminate{&:before{rotate:0deg;opacity:100%;translate:0 -35%;clip-path:polygon(20% 100%,20% 80%,50% 80%,50% 80%,80% 80%,80% 100%)}}&:disabled{cursor:not-allowed;opacity:20%}}.radio{position:relative;flex-shrink:0;cursor:pointer;appearance:none;border-radius:calc(infinity * 1px);padding:.25rem;vertical-align:middle;border:var(--border) solid var(--input-color, color-mix(in srgb, currentColor 20%, #0000));box-shadow:0 1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset;--size: calc(var(--size-selector, .25rem) * 6);width:var(--size);height:var(--size);color:var(--input-color, currentColor);&:before{display:block;width:100%;height:100%;border-radius:calc(infinity * 1px);--tw-content: "";content:var(--tw-content);background-size:auto,calc(var(--noise) * 100%);background-image:none,var(--fx-noise)}&:focus-visible{outline:2px solid currentColor}&:checked,&[aria-checked=true]{animation:radio .2s ease-out;border-color:currentColor;background-color:var(--color-base-100);&:before{background-color:currentColor;@media print{outline:.25rem solid}@media print{outline-offset:-1rem}box-shadow:0 -1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px oklch(0% 0 0 / calc(var(--depth) * .1));@media (forced-colors: active){outline-style:var(--tw-outline-style);outline-width:1px;outline-offset:-1px}}}&:disabled{cursor:not-allowed;opacity:20%}}.tabs-lift{--tabs-height: auto;--tabs-direction: row;>.tab{--tab-border: 0 0 var(--border) 0;--tab-radius-ss: min(var(--radius-field), var(--tab-radius-min));--tab-radius-se: min(var(--radius-field), var(--tab-radius-min));--tab-radius-es: 0;--tab-radius-ee: 0;--tab-paddings: var(--border) var(--tab-p) 0 var(--tab-p);--tab-border-colors: #0000 #0000 var(--tab-border-color) #0000;--tab-corner-width: calc(100% + min(var(--radius-field), var(--tab-radius-min))*2) ;--tab-corner-height: min(var(--radius-field), var(--tab-radius-min));--tab-corner-position: top left, top right;border-width:var(--tab-border);border-start-start-radius:var(--tab-radius-ss);border-start-end-radius:var(--tab-radius-se);border-end-start-radius:var(--tab-radius-es);border-end-end-radius:var(--tab-radius-ee);padding:var(--tab-paddings);border-color:var(--tab-border-colors);&:is(.tab-active,[aria-selected=true]):not(.tab-disabled,[disabled]),&:is(input:checked){--tab-border: var(--border) var(--border) 0 var(--border);--tab-border-colors: var(--tab-border-color) var(--tab-border-color) #0000 var(--tab-border-color);--tab-paddings: 0 calc(var(--tab-p) - var(--border)) var(--border) calc(var(--tab-p) - var(--border));--tab-inset: auto auto 0 auto;--tab-grad: calc(69% - var(--border));--radius-start: radial-gradient( circle at top left, #0000 var(--tab-grad), var(--tab-border-color) calc(var(--tab-grad) + .25px), var(--tab-border-color) calc(var(--tab-grad) + var(--border)), var(--tab-bg) calc(var(--tab-grad) + var(--border) + .25px) );--radius-end: radial-gradient( circle at top right, #0000 var(--tab-grad), var(--tab-border-color) calc(var(--tab-grad) + .25px), var(--tab-border-color) calc(var(--tab-grad) + var(--border)), var(--tab-bg) calc(var(--tab-grad) + var(--border) + .25px) );background-color:var(--tab-bg);&:before{z-index:1;content:"";display:block;position:absolute;width:var(--tab-corner-width);height:var(--tab-corner-height);background-position:var(--tab-corner-position);background-image:var(--radius-start),var(--radius-end);background-size:min(var(--radius-field),var(--tab-radius-min)) min(var(--radius-field),var(--tab-radius-min));background-repeat:no-repeat;inset:var(--tab-inset)}&:first-child:before{--radius-start: none}[dir=rtl] &:first-child:before{transform:rotateY(180deg)}&:last-child:before{--radius-end: none}[dir=rtl] &:last-child:before{transform:rotateY(180deg)}}}&:has(.tab-content){>.tab:first-child{&:not(.tab-active,[aria-selected=true]){--tab-border-colors: var(--tab-border-color) var(--tab-border-color) #0000 var(--tab-border-color)}}}.tab-content{--tabcontent-margin: calc(-1 * var(--border)) 0 0 0;--tabcontent-radius-ss: 0;--tabcontent-radius-se: var(--radius-box);--tabcontent-radius-es: var(--radius-box);--tabcontent-radius-ee: var(--radius-box)}:checked,:is(.tab-active,[aria-selected=true]){+.tab-content:not(:nth-child(2)){--tabcontent-radius-ss: var(--radius-box)}}}.range{appearance:none;webkit-appearance:none;--range-thumb: var(--color-base-100);--range-thumb-size: calc(var(--size-selector, .25rem) * 6);--range-progress: currentColor;--range-fill: 1;--range-p: .25rem;--range-bg: color-mix(in oklab, currentColor 10%, #0000);cursor:pointer;overflow:hidden;background-color:transparent;vertical-align:middle;width:clamp(3rem,20rem,100%);--radius-selector-max: calc( var(--radius-selector) + var(--radius-selector) + var(--radius-selector) );border-radius:calc(var(--radius-selector) + min(var(--range-p),var(--radius-selector-max)));border:none;height:var(--range-thumb-size);[dir=rtl] &{--range-dir: -1}&:focus{outline:none}&:focus-visible{outline:2px solid;outline-offset:2px}&::-webkit-slider-runnable-track{width:100%;background-color:var(--range-bg);border-radius:var(--radius-selector);height:calc(var(--range-thumb-size) * .5);@media (forced-colors: active){border:1px solid}}&::-webkit-slider-thumb{position:relative;box-sizing:border-box;border-radius:calc(var(--radius-selector) + min(var(--range-p),var(--radius-selector-max)));background-color:currentColor;height:var(--range-thumb-size);width:var(--range-thumb-size);border:var(--range-p) solid;appearance:none;webkit-appearance:none;top:50%;color:var(--range-progress);transform:translateY(-50%);box-shadow:0 -1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px color-mix(in oklab,currentColor calc(var(--depth) * 10%),#0000),0 0 0 2rem var(--range-thumb) inset,calc((var(--range-dir, 1) * -100rem) - (var(--range-dir, 1) * var(--range-thumb-size) / 2)) 0 0 calc(100rem * var(--range-fill))}&::-moz-range-track{width:100%;background-color:var(--range-bg);border-radius:var(--radius-selector);height:calc(var(--range-thumb-size) * .5);@media (forced-colors: active){border:1px solid}}&::-moz-range-thumb{position:relative;box-sizing:border-box;border-radius:calc(var(--radius-selector) + min(var(--range-p),var(--radius-selector-max)));background-color:currentColor;height:var(--range-thumb-size);width:var(--range-thumb-size);border:var(--range-p) solid;top:50%;color:var(--range-progress);box-shadow:0 -1px oklch(0% 0 0 / calc(var(--depth) * .1)) inset,0 8px 0 -4px oklch(100% 0 0 / calc(var(--depth) * .1)) inset,0 1px color-mix(in oklab,currentColor calc(var(--depth) * 10%),#0000),0 0 0 2rem var(--range-thumb) inset,calc((var(--range-dir, 1) * -100rem) - (var(--range-dir, 1) * var(--range-thumb-size) / 2)) 0 0 calc(100rem * var(--range-fill))}&:disabled{cursor:not-allowed;opacity:30%}}.table{font-size:.875rem;position:relative;width:100%;border-radius:var(--radius-box);text-align:left;&:where(:dir(rtl),[dir=rtl],[dir=rtl] *){text-align:right}tr.row-hover{&,&:nth-child(2n){&:hover{@media (hover: hover){background-color:var(--color-base-200)}}}}:where(th,td){padding-inline:1rem;padding-block:.75rem;vertical-align:middle}:where(thead,tfoot){white-space:nowrap;color:color-mix(in oklab,var(--color-base-content) 60%,transparent);font-size:.875rem;font-weight:600}:where(tfoot){border-top:var(--border) solid color-mix(in oklch,var(--color-base-content) 5%,#0000)}:where(.table-pin-rows thead tr){position:sticky;top:0rem;z-index:1;background-color:var(--color-base-100)}:where(.table-pin-rows tfoot tr){position:sticky;bottom:0rem;z-index:1;background-color:var(--color-base-100)}:where(.table-pin-cols tr th){position:sticky;right:0rem;left:0rem;background-color:var(--color-base-100)}:where(thead tr,tbody tr:not(:last-child)){border-bottom:var(--border) solid color-mix(in oklch,var(--color-base-content) 5%,#0000)}}.timeline{position:relative;display:flex;>li{position:relative;display:grid;flex-shrink:0;align-items:center;grid-template-rows:var(--timeline-row-start, minmax(0, 1fr)) auto var( --timeline-row-end, minmax(0, 1fr) );grid-template-columns:var(--timeline-col-start, minmax(0, 1fr)) auto var( --timeline-col-end, minmax(0, 1fr) );>hr{border:none;width:100%;@media print{border:.1px solid var(--color-base-300)}&:first-child{grid-column-start:1;grid-row-start:2}&:last-child{grid-column-start:3;grid-column-end:none;grid-row-start:2;grid-row-end:auto}}}:where(hr){height:.25rem;background-color:var(--color-base-300)}&:has(.timeline-middle hr){&:first-child{border-start-start-radius:0;border-end-start-radius:0;border-start-end-radius:var(--radius-selector);border-end-end-radius:var(--radius-selector)}&:last-child{border-start-start-radius:var(--radius-selector);border-end-start-radius:var(--radius-selector);border-start-end-radius:0;border-end-end-radius:0}}&:not(:has(.timeline-middle)){:first-child hr:last-child{border-start-start-radius:var(--radius-selector);border-end-start-radius:var(--radius-selector);border-start-end-radius:0;border-end-end-radius:0}:last-child hr:first-child{border-start-start-radius:0;border-end-start-radius:0;border-start-end-radius:var(--radius-selector);border-end-end-radius:var(--radius-selector)}}}.list{display:flex;flex-direction:column;font-size:.875rem;:where(.list-row){--list-grid-cols: minmax(0, auto) 1fr;position:relative;display:grid;grid-auto-flow:column;gap:1rem;border-radius:var(--radius-box);padding:1rem;word-break:break-word;grid-template-columns:var(--list-grid-cols);&:has(.list-col-grow:nth-child(1)){--list-grid-cols: 1fr}&:has(.list-col-grow:nth-child(2)){--list-grid-cols: minmax(0, auto) 1fr}&:has(.list-col-grow:nth-child(3)){--list-grid-cols: minmax(0, auto) minmax(0, auto) 1fr}&:has(.list-col-grow:nth-child(4)){--list-grid-cols: minmax(0, auto) minmax(0, auto) minmax(0, auto) 1fr}&:has(.list-col-grow:nth-child(5)){--list-grid-cols: minmax(0, auto) minmax(0, auto) minmax(0, auto) minmax(0, auto) 1fr}&:has(.list-col-grow:nth-child(6)){--list-grid-cols: minmax(0, auto) minmax(0, auto) minmax(0, auto) minmax(0, auto) minmax(0, auto) 1fr}:not(.list-col-wrap){grid-row-start:1}}>:not(:last-child){&.list-row,.list-row{&:after{content:"";border-bottom:var(--border) solid;inset-inline:var(--radius-box);position:absolute;bottom:0rem;border-color:color-mix(in oklab,var(--color-base-content) 5%,transparent)}}}}.progress{position:relative;height:.5rem;width:100%;appearance:none;overflow:hidden;border-radius:var(--radius-box);background-color:color-mix(in oklab,currentColor 20%,transparent);color:var(--color-base-content);&:indeterminate{background-image:repeating-linear-gradient(90deg,currentColor -1%,currentColor 10%,#0000 10%,#0000 90%);background-size:200%;background-position-x:15%;animation:progress 5s ease-in-out infinite;@supports (-moz-appearance: none){&::-moz-progress-bar{background-color:transparent;background-image:repeating-linear-gradient(90deg,currentColor -1%,currentColor 10%,#0000 10%,#0000 90%);background-size:200%;background-position-x:15%;animation:progress 5s ease-in-out infinite}}}@supports (-moz-appearance: none){&::-moz-progress-bar{border-radius:var(--radius-box);background-color:currentColor}}@supports (-webkit-appearance: none){&::-webkit-progress-bar{border-radius:var(--radius-box);background-color:transparent}&::-webkit-progress-value{border-radius:var(--radius-box);background-color:currentColor}}}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.tooltip-bottom{>.tooltip-content,&[data-tip]:before{transform:translate(-50%) translateY(var(--tt-pos, -.25rem));inset:var(--tt-off) auto auto 50%}&:after{transform:translate(-50%) translateY(var(--tt-pos, -.25rem)) rotate(180deg);inset:var(--tt-tail) auto auto 50%}}.top-2{top:calc(var(--spacing) * 2)}.right-4{right:calc(var(--spacing) * 4)}.bottom-4{bottom:calc(var(--spacing) * 4)}.left-2{left:calc(var(--spacing) * 2)}.left-\\[1px\\]{left:1px}.input{cursor:text;border:var(--border) solid #0000;display:inline-flex;flex-shrink:1;appearance:none;align-items:center;gap:.5rem;background-color:var(--color-base-100);padding-inline:.75rem;vertical-align:middle;white-space:nowrap;width:clamp(3rem,20rem,100%);height:var(--size);font-size:.875rem;border-start-start-radius:var(--join-ss, var(--radius-field));border-start-end-radius:var(--join-se, var(--radius-field));border-end-start-radius:var(--join-es, var(--radius-field));border-end-end-radius:var(--join-ee, var(--radius-field));border-color:var(--input-color);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000) inset,0 -1px oklch(100% 0 0 / calc(var(--depth) * .1)) inset;--size: calc(var(--size-field, .25rem) * 10);--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);&:where(input){display:inline-block}:where(input){display:inline-block;height:100%;width:100%;appearance:none;background-color:transparent;border:none;&:focus,&:focus-within{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}}&:focus,&:focus-within{--input-color: var(--color-base-content);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000);outline:2px solid var(--input-color);outline-offset:2px;isolation:isolate}&:has(>input[disabled]),&:is(:disabled,[disabled]){cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);color:color-mix(in oklab,var(--color-base-content) 40%,transparent);&::placeholder{color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}box-shadow:none}&:has(>input[disabled])>input[disabled]{cursor:not-allowed}&::-webkit-date-and-time-value{text-align:inherit}&[type=number]{&::-webkit-inner-spin-button{margin-block:-.75rem;margin-inline-end:-.75rem}}}.textarea{border:var(--border) solid #0000;min-height:5rem;flex-shrink:1;appearance:none;border-radius:var(--radius-field);background-color:var(--color-base-100);padding-block:.5rem;vertical-align:middle;width:clamp(3rem,20rem,100%);padding-inline-start:.75rem;padding-inline-end:.75rem;font-size:.875rem;border-color:var(--input-color);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000) inset,0 -1px oklch(100% 0 0 / calc(var(--depth) * .1)) inset;--input-color: color-mix(in oklab, var(--color-base-content) 20%, #0000);textarea{appearance:none;background-color:transparent;border:none;&:focus,&:focus-within{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}}&:focus,&:focus-within{--input-color: var(--color-base-content);box-shadow:0 1px color-mix(in oklab,var(--input-color) calc(var(--depth) * 10%),#0000);outline:2px solid var(--input-color);outline-offset:2px;isolation:isolate}&:has(>textarea[disabled]),&:is(:disabled,[disabled]){cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);color:color-mix(in oklab,var(--color-base-content) 40%,transparent);&::placeholder{color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}box-shadow:none}&:has(>textarea[disabled])>textarea[disabled]{cursor:not-allowed}}.modal-backdrop{grid-column-start:1;grid-row-start:1;display:grid;align-self:stretch;justify-self:stretch;color:transparent;z-index:-1;button{cursor:pointer}}.z-10{z-index:10}.tab-content{order:var(--tabcontent-order);display:none;border-color:transparent;--tabcontent-radius-ss: 0;--tabcontent-radius-se: 0;--tabcontent-radius-es: 0;--tabcontent-radius-ee: 0;--tabcontent-order: 1;width:100%;margin:var(--tabcontent-margin);border-width:var(--border);border-start-start-radius:var(--tabcontent-radius-ss);border-start-end-radius:var(--tabcontent-radius-se);border-end-start-radius:var(--tabcontent-radius-es);border-end-end-radius:var(--tabcontent-radius-ee)}.modal-box{grid-column-start:1;grid-row-start:1;max-height:100vh;width:calc(11/12 * 100%);max-width:32rem;background-color:var(--color-base-100);padding:1.5rem;transition:translate .3s ease-out,scale .3s ease-out,opacity .2s ease-out .05s,box-shadow .3s ease-out;border-top-left-radius:var(--modal-tl, var(--radius-box));border-top-right-radius:var(--modal-tr, var(--radius-box));border-bottom-left-radius:var(--modal-bl, var(--radius-box));border-bottom-right-radius:var(--modal-br, var(--radius-box));scale:95%;opacity:0;box-shadow:#00000040 0 25px 50px -12px;overflow-y:auto;overscroll-behavior:contain}.col-start-1{grid-column-start:1}.container{width:100%;@media (width >= 40rem){max-width:40rem}@media (width >= 48rem){max-width:48rem}@media (width >= 64rem){max-width:64rem}@media (width >= 80rem){max-width:80rem}@media (width >= 96rem){max-width:96rem}}.divider{display:flex;height:1rem;flex-direction:row;align-items:center;align-self:stretch;white-space:nowrap;margin:var(--divider-m, 1rem 0);&:before,&:after{content:"";height:.125rem;width:100%;flex-grow:1;background-color:color-mix(in oklab,var(--color-base-content) 10%,transparent)}@media print{&:before,&:after{border:.5px solid}}&:not(:empty){gap:1rem}}.filter{display:flex;flex-wrap:wrap;input[type=radio]{width:auto}input{overflow:hidden;opacity:100%;scale:1;transition:margin .1s,opacity .3s,padding .3s,border-width .1s;&:not(:last-child){margin-inline-end:.25rem}&.filter-reset{aspect-ratio:1 / 1;&:after{content:"×"}}}&:not(:has(input:checked:not(.filter-reset))){.filter-reset,input[type=reset]{scale:0;border-width:0;margin-inline:0rem;width:0rem;padding-inline:0rem;opacity:0%}}&:has(input:checked:not(.filter-reset)){input:not(:checked,.filter-reset,input[type=reset]){scale:0;border-width:0;margin-inline:0rem;width:0rem;padding-inline:0rem;opacity:0%}}}.mx-1{margin-inline:calc(var(--spacing) * 1)}.my-2{margin-block:calc(var(--spacing) * 2)}.input,.select{.label{display:flex;height:calc(100% - .5rem);align-items:center;padding-inline:.75rem;font-size:inherit;&:first-child{margin-inline-start:-.75rem;margin-inline-end:.75rem;border-inline-end:var(--border) solid color-mix(in oklab,currentColor 10%,#0000)}&:last-child{margin-inline-start:.75rem;margin-inline-end:-.75rem;border-inline-start:var(--border) solid color-mix(in oklab,currentColor 10%,#0000)}}}.join-item{&:where(*:not(:first-child)){margin-inline-start:calc(var(--border, 1px) * -1);margin-block-start:0}}.modal-action{margin-top:1.5rem;display:flex;justify-content:flex-end;gap:.5rem}.-mt-1{margin-top:calc(var(--spacing) * -1)}.mt-4{margin-top:calc(var(--spacing) * 4)}.-mr-1{margin-right:calc(var(--spacing) * -1)}.mr-1{margin-right:calc(var(--spacing) * 1)}.-mb-1{margin-bottom:calc(var(--spacing) * -1)}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.-ml-1{margin-left:calc(var(--spacing) * -1)}.ml-4{margin-left:calc(var(--spacing) * 4)}.box-border{box-sizing:border-box}.status{display:inline-block;aspect-ratio:1 / 1;width:.5rem;height:.5rem;border-radius:var(--radius-selector);background-color:color-mix(in oklab,var(--color-base-content) 20%,transparent);background-position:center;background-repeat:no-repeat;vertical-align:middle;color:color-mix(in oklab,var(--color-black) 30%,transparent);background-image:radial-gradient(circle at 35% 30%,oklch(1 0 0 / calc(var(--depth) * .5)),#0000);box-shadow:0 2px 3px -1px color-mix(in oklab,currentColor calc(var(--depth) * 100%),#0000)}.kbd{display:inline-flex;align-items:center;justify-content:center;border-radius:var(--radius-field);background-color:var(--color-base-200);vertical-align:middle;padding-left:.5em;padding-right:.5em;border:var(--border) solid color-mix(in srgb,var(--color-base-content) 20%,#0000);border-bottom:calc(var(--border) + 1px) solid color-mix(in srgb,var(--color-base-content) 20%,#0000);--size: calc(var(--size-selector, .25rem) * 6);font-size:.875rem;height:var(--size);min-width:var(--size)}.footer{display:grid;width:100%;grid-auto-flow:row;place-items:start;column-gap:1rem;row-gap:2.5rem;font-size:.875rem;line-height:1.25rem;>*{display:grid;place-items:start;gap:.5rem}&.footer-center{grid-auto-flow:column dense;place-items:center;text-align:center;>*{place-items:center}}}.fieldset{display:grid;gap:.375rem;padding-block:.25rem;font-size:.75rem;grid-template-columns:1fr;grid-auto-rows:max-content}.join{display:inline-flex;align-items:stretch;--join-ss: 0;--join-se: 0;--join-es: 0;--join-ee: 0;:where(.join-item){border-start-start-radius:var(--join-ss, 0);border-start-end-radius:var(--join-se, 0);border-end-start-radius:var(--join-es, 0);border-end-end-radius:var(--join-ee, 0);*{--join-ss: var(--radius-field);--join-se: var(--radius-field);--join-es: var(--radius-field);--join-ee: var(--radius-field)}}>.join-item:where(:first-child){--join-ss: var(--radius-field);--join-se: 0;--join-es: var(--radius-field);--join-ee: 0}:first-child:not(:last-child){:where(.join-item){--join-ss: var(--radius-field);--join-se: 0;--join-es: var(--radius-field);--join-ee: 0}}>.join-item:where(:last-child){--join-ss: 0;--join-se: var(--radius-field);--join-es: 0;--join-ee: var(--radius-field)}:last-child:not(:first-child){:where(.join-item){--join-ss: 0;--join-se: var(--radius-field);--join-es: 0;--join-ee: var(--radius-field)}}}.label{display:inline-flex;align-items:center;gap:.375rem;white-space:nowrap;color:color-mix(in oklab,currentColor 60%,transparent);&:has(input){cursor:pointer}}.tabs{display:flex;flex-wrap:wrap;--tabs-height: auto;--tabs-direction: row;height:var(--tabs-height);flex-direction:var(--tabs-direction)}.mask{display:inline-block;vertical-align:middle;mask-size:contain;mask-repeat:no-repeat;mask-position:center}.block{display:block}.contents{display:contents}.divider-start{&:before{display:none}}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.divider-horizontal{--divider-m: 0 1rem;&.divider{height:auto;width:1rem;flex-direction:column;&:before{height:100%;width:.125rem}&:after{height:100%;width:.125rem}}}.tabs-lg{:where(.tab){height:calc(var(--size-field, .25rem) * 12);font-size:1.125rem;--tab-p: 1rem;--tab-radius-min: calc(1.5rem - var(--border))}}.tabs-sm{:where(.tab){height:calc(var(--size-field, .25rem) * 8);font-size:.875rem;--tab-p: .5rem;--tab-radius-min: calc(.5rem - var(--border))}}.\\!h-\\[22rem\\]{height:22rem!important}.\\!h-auto{height:auto!important}.h-2{height:calc(var(--spacing) * 2)}.h-4{height:calc(var(--spacing) * 4)}.h-5{height:calc(var(--spacing) * 5)}.h-6{height:calc(var(--spacing) * 6)}.h-10{height:calc(var(--spacing) * 10)}.h-12{height:calc(var(--spacing) * 12)}.h-auto{height:auto}.h-full{height:100%}.max-h-4{max-height:calc(var(--spacing) * 4)}.max-h-5{max-height:calc(var(--spacing) * 5)}.w-0{width:calc(var(--spacing) * 0)}.w-1{width:calc(var(--spacing) * 1)}.w-2{width:calc(var(--spacing) * 2)}.w-4{width:calc(var(--spacing) * 4)}.w-6{width:calc(var(--spacing) * 6)}.w-11\\/12{width:calc(11/12 * 100%)}.w-64{width:calc(var(--spacing) * 64)}.w-full{width:100%}.max-w-4{max-width:calc(var(--spacing) * 4)}.max-w-5{max-width:calc(var(--spacing) * 5)}.max-w-5xl{max-width:var(--container-5xl)}.min-w-60{min-width:calc(var(--spacing) * 60)}.flex-1{flex:1}.basis-1\\/4{flex-basis:25%}.basis-3\\/4{flex-basis:75%}.rotate-45{rotate:45deg}.transform{transform:var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y)}.link{cursor:pointer;text-decoration-line:underline;&:focus{outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}}&:focus-visible{outline:2px solid currentColor;outline-offset:2px}}.cursor-default{cursor:default}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize{resize:both}.grid-flow-dense{grid-auto-flow:dense}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-wrap{flex-wrap:wrap}.content-stretch{align-content:stretch}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-stretch{align-items:stretch}.justify-center{justify-content:center}.justify-start{justify-content:flex-start}.gap-0{gap:calc(var(--spacing) * 0)}.gap-2{gap:calc(var(--spacing) * 2)}.gap-2\\.5{gap:calc(var(--spacing) * 2.5)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-y-2{row-gap:calc(var(--spacing) * 2)}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.rounded{border-radius:.25rem}.rounded-full{border-radius:calc(infinity * 1px)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-l-md{border-top-left-radius:var(--radius-md);border-bottom-left-radius:var(--radius-md)}.rounded-r-md{border-top-right-radius:var(--radius-md);border-bottom-right-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-t-2{border-top-style:var(--tw-border-style);border-top-width:2px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-l-2{border-left-style:var(--tw-border-style);border-left-width:2px}.border-dashed{--tw-border-style: dashed;border-style:dashed}.border-solid{--tw-border-style: solid;border-style:solid}.border-base-300{border-color:var(--color-base-300)}.border-error{border-color:var(--color-error)}.border-info{border-color:var(--color-info)}.border-neutral-300{border-color:var(--color-neutral-300)}.border-primary{border-color:var(--color-primary)}.border-warning{border-color:var(--color-warning)}.border-t-neutral{border-top-color:var(--color-neutral)}.bg-base-100{background-color:var(--color-base-100)}.bg-base-200{background-color:var(--color-base-200)}.bg-base-300{background-color:var(--color-base-300)}.bg-base-300\\/30{background-color:color-mix(in oklab,var(--color-base-300) 30%,transparent)}.bg-error\\/25{background-color:color-mix(in oklab,var(--color-error) 25%,transparent)}.bg-info\\/25{background-color:color-mix(in oklab,var(--color-info) 25%,transparent)}.bg-neutral-300{background-color:var(--color-neutral-300)}.bg-primary{background-color:var(--color-primary)}.bg-transparent{background-color:transparent}.bg-warning\\/25{background-color:color-mix(in oklab,var(--color-warning) 25%,transparent)}.fill-current{fill:currentColor}.p-0{padding:calc(var(--spacing) * 0)}.p-1\\.5{padding:calc(var(--spacing) * 1.5)}.p-2{padding:calc(var(--spacing) * 2)}.p-6{padding:calc(var(--spacing) * 6)}.px-1{padding-inline:calc(var(--spacing) * 1)}.px-1\\.5{padding-inline:calc(var(--spacing) * 1.5)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-5{padding-inline:calc(var(--spacing) * 5)}.py-0\\.5{padding-block:calc(var(--spacing) * .5)}.py-2{padding-block:calc(var(--spacing) * 2)}.pt-1{padding-top:calc(var(--spacing) * 1)}.pr-2\\.5{padding-right:calc(var(--spacing) * 2.5)}.pb-2{padding-bottom:calc(var(--spacing) * 2)}.pl-9{padding-left:calc(var(--spacing) * 9)}.text-center{text-align:center}.text-left{text-align:left}.align-baseline{vertical-align:baseline}.font-mono{font-family:var(--font-mono)}.font-sans{font-family:var(--font-sans)}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading, var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading, var(--text-sm--line-height))}.text-xl{font-size:var(--text-xl);line-height:var(--tw-leading, var(--text-xl--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading, var(--text-xs--line-height))}.btn-md{font-size:.875rem;--btn-p: 1rem;--size: calc(var(--size-field, .25rem) * 10)}.btn-sm{font-size:.75rem;--btn-p: .75rem;--size: calc(var(--size-field, .25rem) * 8)}.kbd-sm{--size: calc(var(--size-selector, .25rem) * 5);font-size:.75rem}.leading-5{--tw-leading: calc(var(--spacing) * 5);line-height:calc(var(--spacing) * 5)}.leading-6{--tw-leading: calc(var(--spacing) * 6);line-height:calc(var(--spacing) * 6)}.leading-9{--tw-leading: calc(var(--spacing) * 9);line-height:calc(var(--spacing) * 9)}.font-bold{--tw-font-weight: var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-normal{--tw-font-weight: var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight: var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-wide{--tw-tracking: var(--tracking-wide);letter-spacing:var(--tracking-wide)}.text-nowrap{text-wrap:nowrap}.whitespace-nowrap{white-space:nowrap}.checkbox-success{color:var(--color-success-content);--input-color: var(--color-success)}.text-neutral{color:var(--color-neutral)}.text-primary{color:var(--color-primary)}.text-primary-content{color:var(--color-primary-content)}.tooltip-primary{--tt-bg: var(--color-primary);>.tooltip-content,&[data-tip]:before{color:var(--color-primary-content)}}.tooltip-success{--tt-bg: var(--color-success);>.tooltip-content,&[data-tip]:before{color:var(--color-success-content)}}.tooltip-warning{--tt-bg: var(--color-warning);>.tooltip-content,&[data-tip]:before{color:var(--color-warning-content)}}.italic{font-style:italic}.link-hover{text-decoration-line:none;&:hover{@media (hover: hover){text-decoration-line:underline}}}.underline{text-decoration-line:underline}.decoration-primary{text-decoration-color:var(--color-primary)}.opacity-40{opacity:40%}.opacity-50{opacity:50%}.opacity-60{opacity:60%}.opacity-80{opacity:80%}.opacity-90{opacity:90%}.shadow{--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / .1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / .25));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner{--tw-shadow: inset 0 2px 4px 0 var(--tw-shadow-color, rgb(0 0 0 / .05));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / .1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / .1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-base-300{--tw-shadow-color: var(--color-base-300)}.outline-offset-2{outline-offset:2px}.blur{--tw-blur: blur(8px);filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.backdrop-blur-md{--tw-backdrop-blur: blur(var(--blur-md));-webkit-backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease, var(--default-transition-timing-function));transition-duration:var(--tw-duration, var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease, var(--default-transition-timing-function));transition-duration:var(--tw-duration, var(--default-transition-duration))}.ease-in-out{--tw-ease: var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.\\!btn-primary{--btn-color: var(--color-primary) !important;--btn-fg: var(--color-primary-content) !important}.btn-outline{&:not(.btn-active,:hover,:active:focus,:focus-visible,:disabled,[disabled],.btn-disabled){--btn-shadow: "";--btn-bg: #0000;--btn-fg: var(--btn-color);--btn-border: var(--btn-color);--btn-noise: none}}.btn-primary{--btn-color: var(--color-primary);--btn-fg: var(--color-primary-content)}.select-all{-webkit-user-select:all;user-select:all}.group-hover\\:w-24{&:is(:where(.group):hover *){@media (hover: hover){width:calc(var(--spacing) * 24)}}}.hover\\:btn-ghost{&:hover{@media (hover: hover){&:not(.btn-active,:hover,:active:focus,:focus-visible){--btn-shadow: "";--btn-bg: #0000;--btn-border: #0000;--btn-noise: none;&:not(:disabled,[disabled],.btn-disabled){outline-color:currentColor;--btn-fg: currentColor}}}}}.sm\\:join{@media (width >= 40rem){display:inline-flex;align-items:stretch;--join-ss: 0;--join-se: 0;--join-es: 0;--join-ee: 0;:where(.join-item){border-start-start-radius:var(--join-ss, 0);border-start-end-radius:var(--join-se, 0);border-end-start-radius:var(--join-es, 0);border-end-end-radius:var(--join-ee, 0);*{--join-ss: var(--radius-field);--join-se: var(--radius-field);--join-es: var(--radius-field);--join-ee: var(--radius-field)}}>.join-item:where(:first-child){--join-ss: var(--radius-field);--join-se: 0;--join-es: var(--radius-field);--join-ee: 0}:first-child:not(:last-child){:where(.join-item){--join-ss: var(--radius-field);--join-se: 0;--join-es: var(--radius-field);--join-ee: 0}}>.join-item:where(:last-child){--join-ss: 0;--join-se: var(--radius-field);--join-es: 0;--join-ee: var(--radius-field)}:last-child:not(:first-child){:where(.join-item){--join-ss: 0;--join-se: var(--radius-field);--join-es: 0;--join-ee: var(--radius-field)}}}}.sm\\:flex{@media (width >= 40rem){display:flex}}.sm\\:w-auto{@media (width >= 40rem){width:auto}}.md\\:overflow-visible{@media (width >= 48rem){overflow:visible}}.lg\\:mr-4{@media (width >= 64rem){margin-right:calc(var(--spacing) * 4)}}.lg\\:ml-0{@media (width >= 64rem){margin-left:calc(var(--spacing) * 0)}}.lg\\:block{@media (width >= 64rem){display:block}}.lg\\:grid-cols-2{@media (width >= 64rem){grid-template-columns:repeat(2,minmax(0,1fr))}}.lg\\:flex-row{@media (width >= 64rem){flex-direction:row}}.dark\\:border-neutral-500{@media (prefers-color-scheme: dark){border-color:var(--color-neutral-500)}}.dark\\:bg-neutral{@media (prefers-color-scheme: dark){background-color:var(--color-neutral)}}.dark\\:bg-neutral-500{@media (prefers-color-scheme: dark){background-color:var(--color-neutral-500)}}.dark\\:bg-neutral\\/70{@media (prefers-color-scheme: dark){background-color:color-mix(in oklab,var(--color-neutral) 70%,transparent)}}.dark\\:text-neutral-content{@media (prefers-color-scheme: dark){color:var(--color-neutral-content)}}}@layer components{:root{--lm: "";--lm2: ""}.list-custom>li{list-style:inside}.list-custom>li>*{vertical-align:top}.list-custom>li::marker{content:var(--lm) var(--lm2) " "}li.list-colon::marker,.list-custom.list-colon>li::marker{--lm2: ":"}li.list-star::marker,.list-custom.list-star>li::marker{--lm: "★"}li.list-dot::marker,.list-custom.list-dot>li::marker{--lm: "•"}li.list-info::marker,.list-custom.list-info>li::marker{--lm: "🛈"}li.list-warning::marker,.list-custom.list-warning>li::marker{--lm: "⚠"}li.list-error::marker,.list-custom.list-error>li::marker{--lm: "⮿"}li.list-check::marker,.list-custom.list-check>li::marker{--lm: "🗸"}.listbox{position:relative;display:inline-flex;cursor:pointer;align-items:center;height:calc(var(--spacing) * 12);min-height:calc(var(--spacing) * 12);padding-right:calc(var(--spacing) * 10);padding-left:calc(var(--spacing) * 4);font-size:var(--text-sm);line-height:var(--tw-leading, var(--text-sm--line-height));--tw-leading: var(--leading-loose);line-height:var(--leading-loose);&[multiple]{height:auto}[role=combobox]{flex-grow:1;appearance:none;outline-style:none;@media (forced-colors: active){outline:2px solid transparent;outline-offset:2px}-webkit-user-select:none;user-select:none}[role=listbox]{position:absolute;top:100%;left:calc(var(--spacing) * 0);z-index:50;width:100%;overflow:visible}[role=combobox]:not([aria-expanded=true])~[role=listbox]{display:none}[role=listbox] [role=option]{box-sizing:border-box;display:inline-flex;height:calc(var(--spacing) * 12);min-height:calc(var(--spacing) * 12);width:100%;align-items:center;border-radius:0;padding-right:calc(var(--spacing) * 10);padding-left:calc(var(--spacing) * 4);font-size:var(--text-sm);line-height:var(--tw-leading, var(--text-sm--line-height));--tw-leading: var(--leading-loose);line-height:var(--leading-loose)}}.listbox{border-style:var(--tw-border-style);border-width:2px;--tw-border-style: solid;border-style:solid;border-color:color-mix(in oklab,var(--color-base-content) 0%,transparent);background-color:var(--color-base-100);padding-right:calc(var(--spacing) * 10);--tw-font-weight: var(--font-weight-semibold);font-weight:var(--font-weight-semibold);.listbox-bordered{border-color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}background-image:linear-gradient(45deg,transparent 50%,currentColor 50%),linear-gradient(135deg,currentColor 50%,transparent 50%);background-position:calc(100% - 20px) calc(1px + 50%),calc(100% - 16px) calc(1px + 50%);background-size:4px 4px,4px 4px;background-repeat:no-repeat;&:focus{outline-width:1px;outline-style:var(--tw-outline-style);outline-width:2px;outline-offset:2px;outline-color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}[role=listbox]{border-radius:.25rem;background-color:var(--color-base-100);--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / .1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / .1));box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);--tw-shadow-color: var(--color-base-300);[role=option][aria-selected=true]{border-radius:.25rem;border-style:var(--tw-border-style);border-width:2px;--tw-border-style: solid;border-style:solid;border-color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}[role=option][aria-disabled=true]{cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);opacity:20%}[role=option]:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}[role=option]:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}}.listbox-ghost{background-color:color-mix(in oklab,var(--color-base-100) 5%,transparent);&:focus{background-color:color-mix(in oklab,var(--color-base-100) 100%,transparent);color:var(--color-base-content)}}.listbox-primary{border-color:color-mix(in oklab,var(--color-primary) 60%,transparent);&:focus{outline-color:var(--color-primary)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-primary) 60%,transparent);background-color:color-mix(in oklab,var(--color-primary) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-primary) 10%,transparent)}}.listbox-secondary{border-color:color-mix(in oklab,var(--color-secondary) 60%,transparent);&:focus{outline-color:var(--color-secondary)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-secondary) 60%,transparent);background-color:color-mix(in oklab,var(--color-secondary) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-secondary) 10%,transparent)}}.listbox-accent{border-color:color-mix(in oklab,var(--color-accent) 60%,transparent);&:focus{outline-color:var(--color-accent)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-accent) 60%,transparent);background-color:color-mix(in oklab,var(--color-accent) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-accent) 10%,transparent)}}.listbox-info{border-color:color-mix(in oklab,var(--color-info) 60%,transparent);&:focus{outline-color:var(--color-info)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-info) 60%,transparent);background-color:color-mix(in oklab,var(--color-info) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-info) 10%,transparent)}}.listbox-success{border-color:color-mix(in oklab,var(--color-success) 60%,transparent);&:focus{outline-color:var(--color-success)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-success) 60%,transparent);background-color:color-mix(in oklab,var(--color-success) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-success) 10%,transparent)}}.listbox-warning{border-color:color-mix(in oklab,var(--color-warning) 60%,transparent);&:focus{outline-color:var(--color-warning)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-warning) 60%,transparent);background-color:color-mix(in oklab,var(--color-warning) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-warning) 10%,transparent)}}.listbox-error{border-color:color-mix(in oklab,var(--color-error) 60%,transparent);&:focus{outline-color:var(--color-error)}[role=listbox] [role=option][aria-selected=true]{border-color:color-mix(in oklab,var(--color-error) 60%,transparent);background-color:color-mix(in oklab,var(--color-error) 10%,transparent)}[role=listbox] [role=option]:hover{background-color:color-mix(in oklab,var(--color-error) 10%,transparent)}}.listbox-disabled,&:disabled,&[disabled],&[aria-disabled=true]{cursor:not-allowed;border-color:var(--color-base-200);background-color:var(--color-base-200);color:color-mix(in oklab,var(--color-base-content) 20%,transparent);&::placeholder{color:color-mix(in oklab,var(--color-base-content) 20%,transparent)}outline-style:none!important;@media (forced-colors: active){outline:2px solid transparent!important;outline-offset:2px!important}}& -multiple,&[multiple],&[size]:not([size="1"]){background-image:none;padding-right:calc(var(--spacing) * 4)}}}@layer base{:where(:root),:root:has(input.theme-controller[value=light]:checked),[data-theme=light]{color-scheme:light;--color-base-100: oklch(100% 0 0);--color-base-200: oklch(98% 0 0);--color-base-300: oklch(95% 0 0);--color-base-content: oklch(21% .006 285.885);--color-primary: oklch(45% .24 277.023);--color-primary-content: oklch(93% .034 272.788);--color-secondary: oklch(65% .241 354.308);--color-secondary-content: oklch(94% .028 342.258);--color-accent: oklch(77% .152 181.912);--color-accent-content: oklch(38% .063 188.416);--color-neutral: oklch(14% .005 285.823);--color-neutral-content: oklch(92% .004 286.32);--color-info: oklch(74% .16 232.661);--color-info-content: oklch(29% .066 243.157);--color-success: oklch(76% .177 163.223);--color-success-content: oklch(37% .077 168.94);--color-warning: oklch(82% .189 84.429);--color-warning-content: oklch(41% .112 45.904);--color-error: oklch(71% .194 13.428);--color-error-content: oklch(27% .105 12.094);--radius-selector: .5rem;--radius-field: .25rem;--radius-box: .5rem;--size-selector: .25rem;--size-field: .25rem;--border: 1px;--depth: 1;--noise: 0}}@layer base{@media (prefers-color-scheme: dark){:root{color-scheme:dark;--color-base-100: oklch(25.33% .016 252.42);--color-base-200: oklch(23.26% .014 253.1);--color-base-300: oklch(21.15% .012 254.09);--color-base-content: oklch(97.807% .029 256.847);--color-primary: oklch(58% .233 277.117);--color-primary-content: oklch(96% .018 272.314);--color-secondary: oklch(65% .241 354.308);--color-secondary-content: oklch(94% .028 342.258);--color-accent: oklch(77% .152 181.912);--color-accent-content: oklch(38% .063 188.416);--color-neutral: oklch(14% .005 285.823);--color-neutral-content: oklch(92% .004 286.32);--color-info: oklch(74% .16 232.661);--color-info-content: oklch(29% .066 243.157);--color-success: oklch(76% .177 163.223);--color-success-content: oklch(37% .077 168.94);--color-warning: oklch(82% .189 84.429);--color-warning-content: oklch(41% .112 45.904);--color-error: oklch(71% .194 13.428);--color-error-content: oklch(27% .105 12.094);--radius-selector: .5rem;--radius-field: .25rem;--radius-box: .5rem;--size-selector: .25rem;--size-field: .25rem;--border: 1px;--depth: 1;--noise: 0}}}@layer base{:root:has(input.theme-controller[value=light]:checked),[data-theme=light]{color-scheme:light;--color-base-100: oklch(100% 0 0);--color-base-200: oklch(98% 0 0);--color-base-300: oklch(95% 0 0);--color-base-content: oklch(21% .006 285.885);--color-primary: oklch(45% .24 277.023);--color-primary-content: oklch(93% .034 272.788);--color-secondary: oklch(65% .241 354.308);--color-secondary-content: oklch(94% .028 342.258);--color-accent: oklch(77% .152 181.912);--color-accent-content: oklch(38% .063 188.416);--color-neutral: oklch(14% .005 285.823);--color-neutral-content: oklch(92% .004 286.32);--color-info: oklch(74% .16 232.661);--color-info-content: oklch(29% .066 243.157);--color-success: oklch(76% .177 163.223);--color-success-content: oklch(37% .077 168.94);--color-warning: oklch(82% .189 84.429);--color-warning-content: oklch(41% .112 45.904);--color-error: oklch(71% .194 13.428);--color-error-content: oklch(27% .105 12.094);--radius-selector: .5rem;--radius-field: .25rem;--radius-box: .5rem;--size-selector: .25rem;--size-field: .25rem;--border: 1px;--depth: 1;--noise: 0}}@layer base{:root:has(input.theme-controller[value=dark]:checked),[data-theme=dark]{color-scheme:dark;--color-base-100: oklch(25.33% .016 252.42);--color-base-200: oklch(23.26% .014 253.1);--color-base-300: oklch(21.15% .012 254.09);--color-base-content: oklch(97.807% .029 256.847);--color-primary: oklch(58% .233 277.117);--color-primary-content: oklch(96% .018 272.314);--color-secondary: oklch(65% .241 354.308);--color-secondary-content: oklch(94% .028 342.258);--color-accent: oklch(77% .152 181.912);--color-accent-content: oklch(38% .063 188.416);--color-neutral: oklch(14% .005 285.823);--color-neutral-content: oklch(92% .004 286.32);--color-info: oklch(74% .16 232.661);--color-info-content: oklch(29% .066 243.157);--color-success: oklch(76% .177 163.223);--color-success-content: oklch(37% .077 168.94);--color-warning: oklch(82% .189 84.429);--color-warning-content: oklch(41% .112 45.904);--color-error: oklch(71% .194 13.428);--color-error-content: oklch(27% .105 12.094);--radius-selector: .5rem;--radius-field: .25rem;--radius-box: .5rem;--size-selector: .25rem;--size-field: .25rem;--border: 1px;--depth: 1;--noise: 0}}@layer base{:root{--fx-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.34' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.2'%3E%3C/rect%3E%3C/svg%3E")}.chat{--mask-chat: url("data:image/svg+xml,%3csvg width='13' height='13' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='black' d='M0 11.5004C0 13.0004 2 13.0004 2 13.0004H12H13V0.00036329L12.5 0C12.5 0 11.977 2.09572 11.8581 2.50033C11.6075 3.35237 10.9149 4.22374 9 5.50036C6 7.50036 0 10.0004 0 11.5004Z'/%3e%3c/svg%3e")}.tooltip{--mask-tooltip: url("data:image/svg+xml,%3Csvg width='10' height='4' viewBox='0 0 8 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.500009 1C3.5 1 3.00001 4 5.00001 4C7 4 6.5 1 9.5 1C10 1 10 0.499897 10 0H0C-1.99338e-08 0.5 0 1 0.500009 1Z' fill='black'/%3E%3C/svg%3E%0A")}}@layer base{:root,[data-theme]{background-color:var(--root-bg, var(--color-base-100));color:var(--color-base-content)}}@layer base{*,:after,::backdrop,:before,::file-selector-button{box-sizing:border-box;margin:0;padding:0;border:0 solid}:host,html{line-height:1.5;font-family:var( --default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" );webkit-tap-highlight-color:#0000}body{line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;webkit-text-decoration:inherit;text-decoration:inherit}table{text-indent:0;border-color:inherit;border-collapse:collapse}::file-selector-button,button,input,optgroup,select,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;background:0 0}input:where(:not([type=button],[type=reset],[type=submit])),select,textarea{border-width:1px}::file-selector-button,button,input:where([type=button],[type=reset],[type=submit]){appearance:button}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}::-webkit-search-decoration{webkit-appearance:none}menu,ol,ul{list-style:none}textarea{resize:vertical}::placeholder{opacity:1;color:color-mix(in oklch,currentColor 50%,#0000)}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}}@layer base{:where(:root:has(.modal-open,.modal[open],.modal:target,.modal-toggle:checked,.drawer:not(.drawer-open)>.drawer-toggle:checked)){scrollbar-gutter:stable;background-image:linear-gradient(var(--color-base-100),var(--color-base-100));--root-bg: color-mix(in srgb, var(--color-base-100), oklch(0% 0 0) 40%)}}@layer base{@property --radialprogress{syntax: "<percentage>"; inherits: true; initial-value: 0%;}}@layer base{:root:has(.modal-open,.modal[open],.modal:target,.modal-toggle:checked,.drawer:not([class*=drawer-open])>.drawer-toggle:checked){overflow:hidden}}@layer base{:root{scrollbar-color:color-mix(in oklch,currentColor 35%,#0000) #0000}}@keyframes dropdown{0%{opacity:0}}@keyframes rating{0%,40%{scale:1.1;filter:brightness(1.05) contrast(1.05)}}@keyframes radio{0%{padding:5px}50%{padding:3px}}@keyframes progress{50%{background-position-x:-115%}}@keyframes skeleton{0%{background-position:150%}to{background-position:-50%}}@keyframes toast{0%{scale:.9;opacity:0}to{scale:1;opacity:1}}@keyframes spin{to{transform:rotate(360deg)}}@keyframes ping{75%,to{transform:scale(2);opacity:0}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{transform:translateY(-25%);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:none;animation-timing-function:cubic-bezier(0,0,.2,1)}}@property --tw-rotate-x{syntax: "*"; inherits: false; initial-value: rotateX(0);}@property --tw-rotate-y{syntax: "*"; inherits: false; initial-value: rotateY(0);}@property --tw-rotate-z{syntax: "*"; inherits: false; initial-value: rotateZ(0);}@property --tw-skew-x{syntax: "*"; inherits: false; initial-value: skewX(0);}@property --tw-skew-y{syntax: "*"; inherits: false; initial-value: skewY(0);}@property --tw-border-style{syntax: "*"; inherits: false; initial-value: solid;}@property --tw-leading{syntax: "*"; inherits: false;}@property --tw-font-weight{syntax: "*"; inherits: false;}@property --tw-tracking{syntax: "*"; inherits: false;}@property --tw-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-shadow-color{syntax: "*"; inherits: false;}@property --tw-inset-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-inset-shadow-color{syntax: "*"; inherits: false;}@property --tw-ring-color{syntax: "*"; inherits: false;}@property --tw-ring-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-inset-ring-color{syntax: "*"; inherits: false;}@property --tw-inset-ring-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-ring-inset{syntax: "*"; inherits: false;}@property --tw-ring-offset-width{syntax: "<length>"; inherits: false; initial-value: 0px;}@property --tw-ring-offset-color{syntax: "*"; inherits: false; initial-value: #fff;}@property --tw-ring-offset-shadow{syntax: "*"; inherits: false; initial-value: 0 0 #0000;}@property --tw-blur{syntax: "*"; inherits: false;}@property --tw-brightness{syntax: "*"; inherits: false;}@property --tw-contrast{syntax: "*"; inherits: false;}@property --tw-grayscale{syntax: "*"; inherits: false;}@property --tw-hue-rotate{syntax: "*"; inherits: false;}@property --tw-invert{syntax: "*"; inherits: false;}@property --tw-opacity{syntax: "*"; inherits: false;}@property --tw-saturate{syntax: "*"; inherits: false;}@property --tw-sepia{syntax: "*"; inherits: false;}@property --tw-backdrop-blur{syntax: "*"; inherits: false;}@property --tw-backdrop-brightness{syntax: "*"; inherits: false;}@property --tw-backdrop-contrast{syntax: "*"; inherits: false;}@property --tw-backdrop-grayscale{syntax: "*"; inherits: false;}@property --tw-backdrop-hue-rotate{syntax: "*"; inherits: false;}@property --tw-backdrop-invert{syntax: "*"; inherits: false;}@property --tw-backdrop-opacity{syntax: "*"; inherits: false;}@property --tw-backdrop-saturate{syntax: "*"; inherits: false;}@property --tw-backdrop-sepia{syntax: "*"; inherits: false;}@property --tw-ease{syntax: "*"; inherits: false;}@property --tw-outline-style{syntax: "*"; inherits: false; initial-value: solid;}`;
|
|
5191
|
+
var Oc = /* @__PURE__ */ f("<style>");
|
|
5192
|
+
function Yc(e) {
|
|
5193
|
+
return y(In, {
|
|
5154
5194
|
get children() {
|
|
5155
5195
|
return [(() => {
|
|
5156
|
-
var t =
|
|
5157
|
-
return D(t,
|
|
5196
|
+
var t = Oc();
|
|
5197
|
+
return D(t, Ec), t;
|
|
5158
5198
|
})(), z(() => e.children)];
|
|
5159
5199
|
}
|
|
5160
5200
|
});
|
|
5161
5201
|
}
|
|
5162
|
-
function
|
|
5163
|
-
return y(
|
|
5202
|
+
function Qc(e) {
|
|
5203
|
+
return y(Yc, {
|
|
5164
5204
|
get children() {
|
|
5165
|
-
return y(
|
|
5205
|
+
return y(Cc, {
|
|
5166
5206
|
widget: !0,
|
|
5167
5207
|
get theme() {
|
|
5168
5208
|
return e.theme;
|
|
@@ -5171,4 +5211,4 @@ function Sc(e) {
|
|
|
5171
5211
|
}
|
|
5172
5212
|
});
|
|
5173
5213
|
}
|
|
5174
|
-
|
|
5214
|
+
Yo("bati-widget", { theme: "" }, Qc);
|