@batijs/elements 0.0.6 → 0.0.8
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 +830 -951
- package/package.json +20 -15
package/dist/elements/full.js
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
function
|
|
1
|
+
function _t(t) {
|
|
2
2
|
return Object.keys(t).reduce((i, r) => {
|
|
3
3
|
const o = t[r];
|
|
4
|
-
return i[r] = Object.assign({}, o),
|
|
4
|
+
return i[r] = Object.assign({}, o), ht(o.value) && !qt(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 Ft(t) {
|
|
8
8
|
return t ? Object.keys(t).reduce((i, r) => {
|
|
9
9
|
const o = t[r];
|
|
10
|
-
return i[r] =
|
|
10
|
+
return i[r] = ht(o) && "value" in o ? o : {
|
|
11
11
|
value: o
|
|
12
|
-
}, i[r].attribute || (i[r].attribute =
|
|
12
|
+
}, i[r].attribute || (i[r].attribute = Kt(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 $t(t) {
|
|
16
16
|
return Object.keys(t).reduce((i, r) => (i[r] = t[r].value, i), {});
|
|
17
17
|
}
|
|
18
|
-
function
|
|
19
|
-
const i =
|
|
18
|
+
function Xt(t, e) {
|
|
19
|
+
const i = _t(e);
|
|
20
20
|
return Object.keys(e).forEach((o) => {
|
|
21
21
|
const M = i[o], n = t.getAttribute(M.attribute), l = t[o];
|
|
22
|
-
n && (M.value = M.parse ?
|
|
22
|
+
n && (M.value = M.parse ? mt(n) : n), l != null && (M.value = Array.isArray(l) ? l.slice(0) : l), M.reflect && bt(t, M.attribute, M.value), Object.defineProperty(t, o, {
|
|
23
23
|
get() {
|
|
24
24
|
return M.value;
|
|
25
25
|
},
|
|
26
|
-
set(
|
|
27
|
-
const
|
|
28
|
-
M.value =
|
|
29
|
-
for (let a = 0,
|
|
30
|
-
this.__propertyChangedCallbacks[a](o,
|
|
26
|
+
set(s) {
|
|
27
|
+
const u = M.value;
|
|
28
|
+
M.value = s, M.reflect && bt(this, M.attribute, M.value);
|
|
29
|
+
for (let a = 0, c = this.__propertyChangedCallbacks.length; a < c; a++)
|
|
30
|
+
this.__propertyChangedCallbacks[a](o, s, u);
|
|
31
31
|
},
|
|
32
32
|
enumerable: !0,
|
|
33
33
|
configurable: !0
|
|
34
34
|
});
|
|
35
35
|
}), i;
|
|
36
36
|
}
|
|
37
|
-
function
|
|
37
|
+
function mt(t) {
|
|
38
38
|
if (t)
|
|
39
39
|
try {
|
|
40
40
|
return JSON.parse(t);
|
|
@@ -42,26 +42,26 @@ function Ht(t) {
|
|
|
42
42
|
return t;
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
|
-
function
|
|
45
|
+
function bt(t, e, i) {
|
|
46
46
|
if (i == null || i === !1)
|
|
47
47
|
return t.removeAttribute(e);
|
|
48
48
|
let r = JSON.stringify(i);
|
|
49
49
|
t.__updating[e] = !0, r === "true" && (r = ""), t.setAttribute(e, r), Promise.resolve().then(() => delete t.__updating[e]);
|
|
50
50
|
}
|
|
51
|
-
function
|
|
51
|
+
function Kt(t) {
|
|
52
52
|
return t.replace(/\.?([A-Z]+)/g, (e, i) => "-" + i.toLowerCase()).replace("_", "-").replace(/^-/, "");
|
|
53
53
|
}
|
|
54
|
-
function
|
|
54
|
+
function ht(t) {
|
|
55
55
|
return t != null && (typeof t == "object" || typeof t == "function");
|
|
56
56
|
}
|
|
57
|
-
function
|
|
57
|
+
function qt(t) {
|
|
58
58
|
return Object.prototype.toString.call(t) === "[object Function]";
|
|
59
59
|
}
|
|
60
|
-
function
|
|
60
|
+
function te(t) {
|
|
61
61
|
return typeof t == "function" && t.toString().indexOf("class") === 0;
|
|
62
62
|
}
|
|
63
|
-
let
|
|
64
|
-
function
|
|
63
|
+
let nt;
|
|
64
|
+
function ee(t, e) {
|
|
65
65
|
const i = Object.keys(e);
|
|
66
66
|
return class extends t {
|
|
67
67
|
static get observedAttributes() {
|
|
@@ -73,16 +73,16 @@ function Ae(t, e) {
|
|
|
73
73
|
connectedCallback() {
|
|
74
74
|
if (this.__initialized)
|
|
75
75
|
return;
|
|
76
|
-
this.__releaseCallbacks = [], this.__propertyChangedCallbacks = [], this.__updating = {}, this.props =
|
|
77
|
-
const o =
|
|
76
|
+
this.__releaseCallbacks = [], this.__propertyChangedCallbacks = [], this.__updating = {}, this.props = Xt(this, e);
|
|
77
|
+
const o = $t(this.props), M = this.Component, n = nt;
|
|
78
78
|
try {
|
|
79
|
-
|
|
79
|
+
nt = this, this.__initialized = !0, te(M) ? new M(o, {
|
|
80
80
|
element: this
|
|
81
81
|
}) : M(o, {
|
|
82
82
|
element: this
|
|
83
83
|
});
|
|
84
84
|
} finally {
|
|
85
|
-
|
|
85
|
+
nt = n;
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
async disconnectedCallback() {
|
|
@@ -98,7 +98,7 @@ function Ae(t, e) {
|
|
|
98
98
|
if (this.__initialized && !this.__updating[o] && (o = this.lookupProp(o), o in e)) {
|
|
99
99
|
if (n == null && !this[o])
|
|
100
100
|
return;
|
|
101
|
-
this[o] = e[o].parse ?
|
|
101
|
+
this[o] = e[o].parse ? mt(n) : n;
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
lookupProp(o) {
|
|
@@ -118,7 +118,7 @@ function Ae(t, e) {
|
|
|
118
118
|
}
|
|
119
119
|
};
|
|
120
120
|
}
|
|
121
|
-
function
|
|
121
|
+
function ie(t, e = {}, i = {}) {
|
|
122
122
|
const {
|
|
123
123
|
BaseElement: r = HTMLElement,
|
|
124
124
|
extension: o
|
|
@@ -127,83 +127,58 @@ function xe(t, e = {}, i = {}) {
|
|
|
127
127
|
if (!t)
|
|
128
128
|
throw new Error("tag is required to register a Component");
|
|
129
129
|
let n = customElements.get(t);
|
|
130
|
-
return n ? (n.prototype.Component = M, n) : (n =
|
|
130
|
+
return n ? (n.prototype.Component = M, n) : (n = ee(r, Ft(e)), n.prototype.Component = M, n.prototype.registeredTag = t, customElements.define(t, n, o), n);
|
|
131
131
|
};
|
|
132
132
|
}
|
|
133
|
-
const
|
|
134
|
-
equals:
|
|
133
|
+
const re = (t, e) => t === e, p = Symbol("solid-proxy"), st = Symbol("solid-track"), oe = Symbol("solid-dev-component"), F = {
|
|
134
|
+
equals: re
|
|
135
135
|
};
|
|
136
|
-
let
|
|
137
|
-
const
|
|
136
|
+
let Me = kt;
|
|
137
|
+
const O = 1, $ = 2, ft = {
|
|
138
138
|
owned: null,
|
|
139
139
|
cleanups: null,
|
|
140
140
|
context: null,
|
|
141
141
|
owner: null
|
|
142
142
|
};
|
|
143
|
-
var
|
|
144
|
-
let
|
|
145
|
-
function
|
|
146
|
-
const i = b, r =
|
|
143
|
+
var I = null;
|
|
144
|
+
let lt = null, b = null, z = null, S = null, et = 0;
|
|
145
|
+
function J(t, e) {
|
|
146
|
+
const i = b, r = I, o = t.length === 0, M = e === void 0 ? r : e, n = o ? ft : {
|
|
147
147
|
owned: null,
|
|
148
148
|
cleanups: null,
|
|
149
149
|
context: M ? M.context : null,
|
|
150
150
|
owner: M
|
|
151
|
-
}, l = o ? t : () => t(() =>
|
|
152
|
-
|
|
151
|
+
}, l = o ? t : () => t(() => C(() => rt(n)));
|
|
152
|
+
I = n, b = null;
|
|
153
153
|
try {
|
|
154
|
-
return
|
|
154
|
+
return Z(l, !0);
|
|
155
155
|
} finally {
|
|
156
|
-
b = i,
|
|
156
|
+
b = i, I = r;
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
|
-
function
|
|
160
|
-
e = e ? Object.assign({},
|
|
159
|
+
function yt(t, e) {
|
|
160
|
+
e = e ? Object.assign({}, F, e) : F;
|
|
161
161
|
const i = {
|
|
162
162
|
value: t,
|
|
163
163
|
observers: null,
|
|
164
164
|
observerSlots: null,
|
|
165
165
|
comparator: e.equals || void 0
|
|
166
|
-
}, r = (o) => (typeof o == "function" && (o = o(i.value)),
|
|
167
|
-
return [
|
|
168
|
-
}
|
|
169
|
-
function h(t, e, i) {
|
|
170
|
-
const r = It(t, e, !1, R);
|
|
171
|
-
$(r);
|
|
172
|
-
}
|
|
173
|
-
function Kt(t, e, i) {
|
|
174
|
-
$t = Ee;
|
|
175
|
-
const r = It(t, e, !1, R);
|
|
176
|
-
(!i || !i.render) && (r.user = !0), P ? P.push(r) : $(r);
|
|
166
|
+
}, r = (o) => (typeof o == "function" && (o = o(i.value)), St(i, o));
|
|
167
|
+
return [Et.bind(i), r];
|
|
177
168
|
}
|
|
178
169
|
function m(t, e, i) {
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
return r.observers = null, r.observerSlots = null, r.comparator = i.equals || void 0, $(r), te.bind(r);
|
|
182
|
-
}
|
|
183
|
-
function ze(t, e = Xt, i) {
|
|
184
|
-
const r = /* @__PURE__ */ new Map(), o = It((M) => {
|
|
185
|
-
const n = t();
|
|
186
|
-
for (const [l, c] of r.entries())
|
|
187
|
-
if (e(l, n) !== e(l, M))
|
|
188
|
-
for (const s of c.values())
|
|
189
|
-
s.state = R, s.pure ? x.push(s) : P.push(s);
|
|
190
|
-
return n;
|
|
191
|
-
}, void 0, !0, R);
|
|
192
|
-
return $(o), (M) => {
|
|
193
|
-
const n = b;
|
|
194
|
-
if (n) {
|
|
195
|
-
let l;
|
|
196
|
-
(l = r.get(M)) ? l.add(n) : r.set(M, l = /* @__PURE__ */ new Set([n])), Et(() => {
|
|
197
|
-
l.delete(n), !l.size && r.delete(M);
|
|
198
|
-
});
|
|
199
|
-
}
|
|
200
|
-
return e(M, o.value);
|
|
201
|
-
};
|
|
170
|
+
const r = Ot(t, e, !1, O);
|
|
171
|
+
it(r);
|
|
202
172
|
}
|
|
203
|
-
function
|
|
204
|
-
|
|
173
|
+
function L(t, e, i) {
|
|
174
|
+
i = i ? Object.assign({}, F, i) : F;
|
|
175
|
+
const r = Ot(t, e, !0, 0);
|
|
176
|
+
return r.observers = null, r.observerSlots = null, r.comparator = i.equals || void 0, it(r), Et.bind(r);
|
|
177
|
+
}
|
|
178
|
+
function pt(t) {
|
|
179
|
+
return Z(t, !1);
|
|
205
180
|
}
|
|
206
|
-
function
|
|
181
|
+
function C(t) {
|
|
207
182
|
if (b === null)
|
|
208
183
|
return t();
|
|
209
184
|
const e = b;
|
|
@@ -214,59 +189,37 @@ function Z(t) {
|
|
|
214
189
|
b = e;
|
|
215
190
|
}
|
|
216
191
|
}
|
|
217
|
-
function
|
|
218
|
-
|
|
219
|
-
let o, M = i && i.defer;
|
|
220
|
-
return (n) => {
|
|
221
|
-
let l;
|
|
222
|
-
if (r) {
|
|
223
|
-
l = Array(t.length);
|
|
224
|
-
for (let s = 0; s < t.length; s++)
|
|
225
|
-
l[s] = t[s]();
|
|
226
|
-
} else
|
|
227
|
-
l = t();
|
|
228
|
-
if (M) {
|
|
229
|
-
M = !1;
|
|
230
|
-
return;
|
|
231
|
-
}
|
|
232
|
-
const c = Z(() => e(l, o, n));
|
|
233
|
-
return o = l, c;
|
|
234
|
-
};
|
|
235
|
-
}
|
|
236
|
-
function me(t) {
|
|
237
|
-
Kt(() => Z(t));
|
|
238
|
-
}
|
|
239
|
-
function Et(t) {
|
|
240
|
-
return y === null || (y.cleanups === null ? y.cleanups = [t] : y.cleanups.push(t)), t;
|
|
192
|
+
function Ct(t) {
|
|
193
|
+
return I === null || (I.cleanups === null ? I.cleanups = [t] : I.cleanups.push(t)), t;
|
|
241
194
|
}
|
|
242
|
-
function
|
|
195
|
+
function ct() {
|
|
243
196
|
return b;
|
|
244
197
|
}
|
|
245
|
-
function
|
|
198
|
+
function ne(t, e) {
|
|
246
199
|
const i = Symbol("context");
|
|
247
200
|
return {
|
|
248
201
|
id: i,
|
|
249
|
-
Provider:
|
|
202
|
+
Provider: ue(i),
|
|
250
203
|
defaultValue: t
|
|
251
204
|
};
|
|
252
205
|
}
|
|
253
|
-
function
|
|
254
|
-
return
|
|
206
|
+
function B(t) {
|
|
207
|
+
return I && I.context && I.context[t.id] !== void 0 ? I.context[t.id] : t.defaultValue;
|
|
255
208
|
}
|
|
256
|
-
function
|
|
257
|
-
const e =
|
|
209
|
+
function le(t) {
|
|
210
|
+
const e = L(t), i = L(() => ut(e()));
|
|
258
211
|
return i.toArray = () => {
|
|
259
212
|
const r = i();
|
|
260
213
|
return Array.isArray(r) ? r : r != null ? [r] : [];
|
|
261
214
|
}, i;
|
|
262
215
|
}
|
|
263
|
-
function
|
|
216
|
+
function Et() {
|
|
264
217
|
if (this.sources && this.state)
|
|
265
|
-
if (this.state ===
|
|
266
|
-
|
|
218
|
+
if (this.state === O)
|
|
219
|
+
it(this);
|
|
267
220
|
else {
|
|
268
|
-
const t =
|
|
269
|
-
|
|
221
|
+
const t = z;
|
|
222
|
+
z = null, Z(() => X(this), !1), z = t;
|
|
270
223
|
}
|
|
271
224
|
if (b) {
|
|
272
225
|
const t = this.observers ? this.observers.length : 0;
|
|
@@ -274,34 +227,34 @@ function te() {
|
|
|
274
227
|
}
|
|
275
228
|
return this.value;
|
|
276
229
|
}
|
|
277
|
-
function
|
|
230
|
+
function St(t, e, i) {
|
|
278
231
|
let r = t.value;
|
|
279
|
-
return (!t.comparator || !t.comparator(r, e)) && (t.value = e, t.observers && t.observers.length &&
|
|
232
|
+
return (!t.comparator || !t.comparator(r, e)) && (t.value = e, t.observers && t.observers.length && Z(() => {
|
|
280
233
|
for (let o = 0; o < t.observers.length; o += 1) {
|
|
281
|
-
const M = t.observers[o], n =
|
|
282
|
-
n &&
|
|
234
|
+
const M = t.observers[o], n = lt && lt.running;
|
|
235
|
+
n && lt.disposed.has(M), (n ? !M.tState : !M.state) && (M.pure ? z.push(M) : S.push(M), M.observers && Yt(M)), n || (M.state = O);
|
|
283
236
|
}
|
|
284
|
-
if (
|
|
285
|
-
throw
|
|
237
|
+
if (z.length > 1e6)
|
|
238
|
+
throw z = [], new Error();
|
|
286
239
|
}, !1)), e;
|
|
287
240
|
}
|
|
288
|
-
function
|
|
241
|
+
function it(t) {
|
|
289
242
|
if (!t.fn)
|
|
290
243
|
return;
|
|
291
|
-
|
|
292
|
-
const e =
|
|
293
|
-
b =
|
|
244
|
+
rt(t);
|
|
245
|
+
const e = I, i = b, r = et;
|
|
246
|
+
b = I = t, ae(t, t.value, r), b = i, I = e;
|
|
294
247
|
}
|
|
295
|
-
function
|
|
248
|
+
function ae(t, e, i) {
|
|
296
249
|
let r;
|
|
297
250
|
try {
|
|
298
251
|
r = t.fn(e);
|
|
299
252
|
} catch (o) {
|
|
300
|
-
return t.pure && (t.state =
|
|
253
|
+
return t.pure && (t.state = O, t.owned && t.owned.forEach(rt), t.owned = null), t.updatedAt = i + 1, Qt(o);
|
|
301
254
|
}
|
|
302
|
-
(!t.updatedAt || t.updatedAt <= i) && (t.updatedAt != null && "observers" in t ?
|
|
255
|
+
(!t.updatedAt || t.updatedAt <= i) && (t.updatedAt != null && "observers" in t ? St(t, r) : t.value = r, t.updatedAt = i);
|
|
303
256
|
}
|
|
304
|
-
function
|
|
257
|
+
function Ot(t, e, i, r = O, o) {
|
|
305
258
|
const M = {
|
|
306
259
|
fn: t,
|
|
307
260
|
state: r,
|
|
@@ -311,78 +264,69 @@ function It(t, e, i, r = R, o) {
|
|
|
311
264
|
sourceSlots: null,
|
|
312
265
|
cleanups: null,
|
|
313
266
|
value: e,
|
|
314
|
-
owner:
|
|
315
|
-
context:
|
|
267
|
+
owner: I,
|
|
268
|
+
context: I ? I.context : null,
|
|
316
269
|
pure: i
|
|
317
270
|
};
|
|
318
|
-
return
|
|
271
|
+
return I === null || I !== ft && (I.owned ? I.owned.push(M) : I.owned = [M]), M;
|
|
319
272
|
}
|
|
320
|
-
function
|
|
273
|
+
function vt(t) {
|
|
321
274
|
if (t.state === 0)
|
|
322
275
|
return;
|
|
323
|
-
if (t.state ===
|
|
324
|
-
return
|
|
325
|
-
if (t.suspense &&
|
|
276
|
+
if (t.state === $)
|
|
277
|
+
return X(t);
|
|
278
|
+
if (t.suspense && C(t.suspense.inFallback))
|
|
326
279
|
return t.suspense.effects.push(t);
|
|
327
280
|
const e = [t];
|
|
328
|
-
for (; (t = t.owner) && (!t.updatedAt || t.updatedAt <
|
|
281
|
+
for (; (t = t.owner) && (!t.updatedAt || t.updatedAt < et); )
|
|
329
282
|
t.state && e.push(t);
|
|
330
283
|
for (let i = e.length - 1; i >= 0; i--)
|
|
331
|
-
if (t = e[i], t.state ===
|
|
332
|
-
|
|
333
|
-
else if (t.state ===
|
|
334
|
-
const r =
|
|
335
|
-
|
|
284
|
+
if (t = e[i], t.state === O)
|
|
285
|
+
it(t);
|
|
286
|
+
else if (t.state === $) {
|
|
287
|
+
const r = z;
|
|
288
|
+
z = null, Z(() => X(t, e[0]), !1), z = r;
|
|
336
289
|
}
|
|
337
290
|
}
|
|
338
|
-
function
|
|
339
|
-
if (
|
|
291
|
+
function Z(t, e) {
|
|
292
|
+
if (z)
|
|
340
293
|
return t();
|
|
341
294
|
let i = !1;
|
|
342
|
-
e || (
|
|
295
|
+
e || (z = []), S ? i = !0 : S = [], et++;
|
|
343
296
|
try {
|
|
344
297
|
const r = t();
|
|
345
|
-
return
|
|
298
|
+
return se(i), r;
|
|
346
299
|
} catch (r) {
|
|
347
|
-
i || (
|
|
300
|
+
i || (S = null), z = null, Qt(r);
|
|
348
301
|
}
|
|
349
302
|
}
|
|
350
|
-
function
|
|
351
|
-
if (
|
|
303
|
+
function se(t) {
|
|
304
|
+
if (z && (kt(z), z = null), t)
|
|
352
305
|
return;
|
|
353
|
-
const e =
|
|
354
|
-
|
|
306
|
+
const e = S;
|
|
307
|
+
S = null, e.length && Z(() => Me(e), !1);
|
|
355
308
|
}
|
|
356
|
-
function
|
|
309
|
+
function kt(t) {
|
|
357
310
|
for (let e = 0; e < t.length; e++)
|
|
358
|
-
|
|
359
|
-
}
|
|
360
|
-
function Ee(t) {
|
|
361
|
-
let e, i = 0;
|
|
362
|
-
for (e = 0; e < t.length; e++) {
|
|
363
|
-
const r = t[e];
|
|
364
|
-
r.user ? t[i++] = r : at(r);
|
|
365
|
-
}
|
|
366
|
-
for (e = 0; e < i; e++)
|
|
367
|
-
at(t[e]);
|
|
311
|
+
vt(t[e]);
|
|
368
312
|
}
|
|
369
|
-
function
|
|
313
|
+
function X(t, e) {
|
|
370
314
|
t.state = 0;
|
|
371
315
|
for (let i = 0; i < t.sources.length; i += 1) {
|
|
372
316
|
const r = t.sources[i];
|
|
373
317
|
if (r.sources) {
|
|
374
318
|
const o = r.state;
|
|
375
|
-
o ===
|
|
319
|
+
o === O ? r !== e && (!r.updatedAt || r.updatedAt < et) && vt(r) : o === $ && X(r, e);
|
|
376
320
|
}
|
|
377
321
|
}
|
|
378
322
|
}
|
|
379
|
-
function
|
|
323
|
+
function Yt(t) {
|
|
380
324
|
for (let e = 0; e < t.observers.length; e += 1) {
|
|
381
325
|
const i = t.observers[e];
|
|
382
|
-
i.state || (i.state =
|
|
326
|
+
i.state || (i.state = $, i.pure ? z.push(i) : S.push(i), i.observers && Yt(i));
|
|
383
327
|
}
|
|
384
328
|
}
|
|
385
|
-
function
|
|
329
|
+
function rt(t) {
|
|
386
330
|
let e;
|
|
387
331
|
if (t.sources)
|
|
388
332
|
for (; t.sources.length; ) {
|
|
@@ -394,7 +338,7 @@ function yt(t) {
|
|
|
394
338
|
}
|
|
395
339
|
if (t.owned) {
|
|
396
340
|
for (e = t.owned.length - 1; e >= 0; e--)
|
|
397
|
-
|
|
341
|
+
rt(t.owned[e]);
|
|
398
342
|
t.owned = null;
|
|
399
343
|
}
|
|
400
344
|
if (t.cleanups) {
|
|
@@ -404,92 +348,92 @@ function yt(t) {
|
|
|
404
348
|
}
|
|
405
349
|
t.state = 0;
|
|
406
350
|
}
|
|
407
|
-
function
|
|
351
|
+
function ce(t) {
|
|
408
352
|
return t instanceof Error ? t : new Error(typeof t == "string" ? t : "Unknown error", {
|
|
409
353
|
cause: t
|
|
410
354
|
});
|
|
411
355
|
}
|
|
412
|
-
function
|
|
413
|
-
throw
|
|
356
|
+
function Qt(t, e = I) {
|
|
357
|
+
throw ce(t);
|
|
414
358
|
}
|
|
415
|
-
function
|
|
359
|
+
function ut(t) {
|
|
416
360
|
if (typeof t == "function" && !t.length)
|
|
417
|
-
return
|
|
361
|
+
return ut(t());
|
|
418
362
|
if (Array.isArray(t)) {
|
|
419
363
|
const e = [];
|
|
420
364
|
for (let i = 0; i < t.length; i++) {
|
|
421
|
-
const r =
|
|
365
|
+
const r = ut(t[i]);
|
|
422
366
|
Array.isArray(r) ? e.push.apply(e, r) : e.push(r);
|
|
423
367
|
}
|
|
424
368
|
return e;
|
|
425
369
|
}
|
|
426
370
|
return t;
|
|
427
371
|
}
|
|
428
|
-
function
|
|
372
|
+
function ue(t, e) {
|
|
429
373
|
return function(r) {
|
|
430
374
|
let o;
|
|
431
|
-
return
|
|
432
|
-
...
|
|
375
|
+
return m(() => o = C(() => (I.context = {
|
|
376
|
+
...I.context,
|
|
433
377
|
[t]: r.value
|
|
434
|
-
},
|
|
378
|
+
}, le(() => r.children))), void 0), o;
|
|
435
379
|
};
|
|
436
380
|
}
|
|
437
|
-
const
|
|
438
|
-
function
|
|
381
|
+
const ge = Symbol("fallback");
|
|
382
|
+
function wt(t) {
|
|
439
383
|
for (let e = 0; e < t.length; e++)
|
|
440
384
|
t[e]();
|
|
441
385
|
}
|
|
442
|
-
function
|
|
386
|
+
function Ne(t, e, i = {}) {
|
|
443
387
|
let r = [], o = [], M = [], n = 0, l = e.length > 1 ? [] : null;
|
|
444
|
-
return
|
|
445
|
-
let
|
|
446
|
-
return
|
|
447
|
-
let g =
|
|
388
|
+
return Ct(() => wt(M)), () => {
|
|
389
|
+
let s = t() || [], u, a;
|
|
390
|
+
return s[st], C(() => {
|
|
391
|
+
let g = s.length, N, d, h, D, f, w, A, x, v;
|
|
448
392
|
if (g === 0)
|
|
449
|
-
n !== 0 && (
|
|
393
|
+
n !== 0 && (wt(M), M = [], r = [], o = [], n = 0, l && (l = [])), i.fallback && (r = [ge], o[0] = J((Jt) => (M[0] = Jt, i.fallback())), n = 1);
|
|
450
394
|
else if (n === 0) {
|
|
451
395
|
for (o = new Array(g), a = 0; a < g; a++)
|
|
452
|
-
r[a] =
|
|
396
|
+
r[a] = s[a], o[a] = J(c);
|
|
453
397
|
n = g;
|
|
454
398
|
} else {
|
|
455
|
-
for (
|
|
399
|
+
for (h = new Array(g), D = new Array(g), l && (f = new Array(g)), w = 0, A = Math.min(n, g); w < A && r[w] === s[w]; w++)
|
|
456
400
|
;
|
|
457
|
-
for (
|
|
458
|
-
|
|
459
|
-
for (
|
|
460
|
-
|
|
461
|
-
for (
|
|
462
|
-
|
|
463
|
-
for (a =
|
|
464
|
-
a in
|
|
465
|
-
o = o.slice(0, n = g), r =
|
|
401
|
+
for (A = n - 1, x = g - 1; A >= w && x >= w && r[A] === s[x]; A--, x--)
|
|
402
|
+
h[x] = o[A], D[x] = M[A], l && (f[x] = l[A]);
|
|
403
|
+
for (N = /* @__PURE__ */ new Map(), d = new Array(x + 1), a = x; a >= w; a--)
|
|
404
|
+
v = s[a], u = N.get(v), d[a] = u === void 0 ? -1 : u, N.set(v, a);
|
|
405
|
+
for (u = w; u <= A; u++)
|
|
406
|
+
v = r[u], a = N.get(v), a !== void 0 && a !== -1 ? (h[a] = o[u], D[a] = M[u], l && (f[a] = l[u]), a = d[a], N.set(v, a)) : M[u]();
|
|
407
|
+
for (a = w; a < g; a++)
|
|
408
|
+
a in h ? (o[a] = h[a], M[a] = D[a], l && (l[a] = f[a], l[a](a))) : o[a] = J(c);
|
|
409
|
+
o = o.slice(0, n = g), r = s.slice(0);
|
|
466
410
|
}
|
|
467
411
|
return o;
|
|
468
412
|
});
|
|
469
|
-
function
|
|
413
|
+
function c(g) {
|
|
470
414
|
if (M[a] = g, l) {
|
|
471
|
-
const [
|
|
472
|
-
return l[a] =
|
|
415
|
+
const [N, d] = yt(a);
|
|
416
|
+
return l[a] = d, e(s[a], N);
|
|
473
417
|
}
|
|
474
|
-
return e(
|
|
418
|
+
return e(s[a]);
|
|
475
419
|
}
|
|
476
420
|
};
|
|
477
421
|
}
|
|
478
|
-
function
|
|
479
|
-
return
|
|
422
|
+
function y(t, e) {
|
|
423
|
+
return C(() => t(e || {}));
|
|
480
424
|
}
|
|
481
|
-
function
|
|
425
|
+
function H() {
|
|
482
426
|
return !0;
|
|
483
427
|
}
|
|
484
|
-
const
|
|
428
|
+
const Lt = {
|
|
485
429
|
get(t, e, i) {
|
|
486
|
-
return e ===
|
|
430
|
+
return e === p ? i : t.get(e);
|
|
487
431
|
},
|
|
488
432
|
has(t, e) {
|
|
489
|
-
return e ===
|
|
433
|
+
return e === p ? !0 : t.has(e);
|
|
490
434
|
},
|
|
491
|
-
set:
|
|
492
|
-
deleteProperty:
|
|
435
|
+
set: H,
|
|
436
|
+
deleteProperty: H,
|
|
493
437
|
getOwnPropertyDescriptor(t, e) {
|
|
494
438
|
return {
|
|
495
439
|
configurable: !0,
|
|
@@ -497,79 +441,16 @@ const mt = {
|
|
|
497
441
|
get() {
|
|
498
442
|
return t.get(e);
|
|
499
443
|
},
|
|
500
|
-
set:
|
|
501
|
-
deleteProperty:
|
|
444
|
+
set: H,
|
|
445
|
+
deleteProperty: H
|
|
502
446
|
};
|
|
503
447
|
},
|
|
504
448
|
ownKeys(t) {
|
|
505
449
|
return t.keys();
|
|
506
450
|
}
|
|
507
451
|
};
|
|
508
|
-
function
|
|
509
|
-
|
|
510
|
-
}
|
|
511
|
-
function Ye() {
|
|
512
|
-
for (let t = 0, e = this.length; t < e; ++t) {
|
|
513
|
-
const i = this[t]();
|
|
514
|
-
if (i !== void 0)
|
|
515
|
-
return i;
|
|
516
|
-
}
|
|
517
|
-
}
|
|
518
|
-
function Qe(...t) {
|
|
519
|
-
let e = !1;
|
|
520
|
-
for (let M = 0; M < t.length; M++) {
|
|
521
|
-
const n = t[M];
|
|
522
|
-
e = e || !!n && U in n, t[M] = typeof n == "function" ? (e = !0, m(n)) : n;
|
|
523
|
-
}
|
|
524
|
-
if (e)
|
|
525
|
-
return new Proxy({
|
|
526
|
-
get(M) {
|
|
527
|
-
for (let n = t.length - 1; n >= 0; n--) {
|
|
528
|
-
const l = At(t[n])[M];
|
|
529
|
-
if (l !== void 0)
|
|
530
|
-
return l;
|
|
531
|
-
}
|
|
532
|
-
},
|
|
533
|
-
has(M) {
|
|
534
|
-
for (let n = t.length - 1; n >= 0; n--)
|
|
535
|
-
if (M in At(t[n]))
|
|
536
|
-
return !0;
|
|
537
|
-
return !1;
|
|
538
|
-
},
|
|
539
|
-
keys() {
|
|
540
|
-
const M = [];
|
|
541
|
-
for (let n = 0; n < t.length; n++)
|
|
542
|
-
M.push(...Object.keys(At(t[n])));
|
|
543
|
-
return [...new Set(M)];
|
|
544
|
-
}
|
|
545
|
-
}, mt);
|
|
546
|
-
const i = {}, r = {}, o = /* @__PURE__ */ new Set();
|
|
547
|
-
for (let M = t.length - 1; M >= 0; M--) {
|
|
548
|
-
const n = t[M];
|
|
549
|
-
if (!n)
|
|
550
|
-
continue;
|
|
551
|
-
const l = Object.getOwnPropertyNames(n);
|
|
552
|
-
for (let c = 0, s = l.length; c < s; c++) {
|
|
553
|
-
const a = l[c];
|
|
554
|
-
if (a === "__proto__" || a === "constructor")
|
|
555
|
-
continue;
|
|
556
|
-
const u = Object.getOwnPropertyDescriptor(n, a);
|
|
557
|
-
if (!o.has(a))
|
|
558
|
-
u.get ? (o.add(a), Object.defineProperty(i, a, {
|
|
559
|
-
enumerable: !0,
|
|
560
|
-
configurable: !0,
|
|
561
|
-
get: Ye.bind(r[a] = [u.get.bind(n)])
|
|
562
|
-
})) : (u.value !== void 0 && o.add(a), i[a] = u.value);
|
|
563
|
-
else {
|
|
564
|
-
const g = r[a];
|
|
565
|
-
g ? u.get ? g.push(u.get.bind(n)) : u.value !== void 0 && g.push(() => u.value) : i[a] === void 0 && (i[a] = u.value);
|
|
566
|
-
}
|
|
567
|
-
}
|
|
568
|
-
}
|
|
569
|
-
return i;
|
|
570
|
-
}
|
|
571
|
-
function Ue(t, ...e) {
|
|
572
|
-
if (U in t) {
|
|
452
|
+
function je(t, ...e) {
|
|
453
|
+
if (p in t) {
|
|
573
454
|
const o = new Set(e.length > 1 ? e.flat() : e[0]), M = e.map((n) => new Proxy({
|
|
574
455
|
get(l) {
|
|
575
456
|
return n.includes(l) ? t[l] : void 0;
|
|
@@ -580,7 +461,7 @@ function Ue(t, ...e) {
|
|
|
580
461
|
keys() {
|
|
581
462
|
return n.filter((l) => l in t);
|
|
582
463
|
}
|
|
583
|
-
},
|
|
464
|
+
}, Lt));
|
|
584
465
|
return M.push(new Proxy({
|
|
585
466
|
get(n) {
|
|
586
467
|
return o.has(n) ? void 0 : t[n];
|
|
@@ -591,58 +472,46 @@ function Ue(t, ...e) {
|
|
|
591
472
|
keys() {
|
|
592
473
|
return Object.keys(t).filter((n) => !o.has(n));
|
|
593
474
|
}
|
|
594
|
-
},
|
|
475
|
+
}, Lt)), M;
|
|
595
476
|
}
|
|
596
477
|
const i = {}, r = e.map(() => ({}));
|
|
597
478
|
for (const o of Object.getOwnPropertyNames(t)) {
|
|
598
479
|
const M = Object.getOwnPropertyDescriptor(t, o), n = !M.get && !M.set && M.enumerable && M.writable && M.configurable;
|
|
599
|
-
let l = !1,
|
|
600
|
-
for (const
|
|
601
|
-
|
|
480
|
+
let l = !1, s = 0;
|
|
481
|
+
for (const u of e)
|
|
482
|
+
u.includes(o) && (l = !0, n ? r[s][o] = M.value : Object.defineProperty(r[s], o, M)), ++s;
|
|
602
483
|
l || (n ? i[o] = M.value : Object.defineProperty(i, o, M));
|
|
603
484
|
}
|
|
604
485
|
return [...r, i];
|
|
605
486
|
}
|
|
606
|
-
const
|
|
607
|
-
function
|
|
487
|
+
const de = (t) => `Stale read from <${t}>.`;
|
|
488
|
+
function gt(t) {
|
|
608
489
|
const e = "fallback" in t && {
|
|
609
490
|
fallback: () => t.fallback
|
|
610
491
|
};
|
|
611
|
-
return
|
|
612
|
-
}
|
|
613
|
-
function
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
let M = r();
|
|
617
|
-
Array.isArray(M) || (M = [M]);
|
|
618
|
-
for (let n = 0; n < M.length; n++) {
|
|
619
|
-
const l = M[n].when;
|
|
620
|
-
if (l)
|
|
621
|
-
return e = !!M[n].keyed, [n, l, M[n]];
|
|
622
|
-
}
|
|
623
|
-
return [-1];
|
|
624
|
-
}, void 0, {
|
|
625
|
-
equals: i
|
|
492
|
+
return L(Ne(() => t.each, t.children, e || void 0));
|
|
493
|
+
}
|
|
494
|
+
function _(t) {
|
|
495
|
+
const e = t.keyed, i = L(() => t.when, void 0, {
|
|
496
|
+
equals: (r, o) => e ? r === o : !r == !o
|
|
626
497
|
});
|
|
627
|
-
return
|
|
628
|
-
const
|
|
629
|
-
if (
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
}
|
|
498
|
+
return L(() => {
|
|
499
|
+
const r = i();
|
|
500
|
+
if (r) {
|
|
501
|
+
const o = t.children;
|
|
502
|
+
return typeof o == "function" && o.length > 0 ? C(() => o(e ? r : () => {
|
|
503
|
+
if (!C(i))
|
|
504
|
+
throw de("Show");
|
|
505
|
+
return t.when;
|
|
506
|
+
})) : o;
|
|
507
|
+
}
|
|
508
|
+
return t.fallback;
|
|
637
509
|
}, void 0, void 0);
|
|
638
510
|
}
|
|
639
|
-
|
|
640
|
-
return t;
|
|
641
|
-
}
|
|
642
|
-
const Ge = ["allowfullscreen", "async", "autofocus", "autoplay", "checked", "controls", "default", "disabled", "formnovalidate", "hidden", "indeterminate", "ismap", "loop", "multiple", "muted", "nomodule", "novalidate", "open", "playsinline", "readonly", "required", "reversed", "seamless", "selected"], Pe = /* @__PURE__ */ new Set(["className", "value", "readOnly", "formNoValidate", "isMap", "noModule", "playsInline", ...Ge]), Re = /* @__PURE__ */ new Set(["innerHTML", "textContent", "innerText", "children"]), Be = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
|
|
511
|
+
const Ie = ["allowfullscreen", "async", "autofocus", "autoplay", "checked", "controls", "default", "disabled", "formnovalidate", "hidden", "indeterminate", "ismap", "loop", "multiple", "muted", "nomodule", "novalidate", "open", "playsinline", "readonly", "required", "reversed", "seamless", "selected"], ye = /* @__PURE__ */ new Set(["className", "value", "readOnly", "formNoValidate", "isMap", "noModule", "playsInline", ...Ie]), De = /* @__PURE__ */ new Set(["innerHTML", "textContent", "innerText", "children"]), be = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
|
|
643
512
|
className: "class",
|
|
644
513
|
htmlFor: "for"
|
|
645
|
-
}),
|
|
514
|
+
}), we = /* @__PURE__ */ Object.assign(/* @__PURE__ */ Object.create(null), {
|
|
646
515
|
class: "className",
|
|
647
516
|
formnovalidate: {
|
|
648
517
|
$: "formNoValidate",
|
|
@@ -667,16 +536,93 @@ const Ge = ["allowfullscreen", "async", "autofocus", "autoplay", "checked", "con
|
|
|
667
536
|
TEXTAREA: 1
|
|
668
537
|
}
|
|
669
538
|
});
|
|
670
|
-
function
|
|
671
|
-
const i =
|
|
539
|
+
function Le(t, e) {
|
|
540
|
+
const i = we[t];
|
|
672
541
|
return typeof i == "object" ? i[e] ? i.$ : void 0 : i;
|
|
673
542
|
}
|
|
674
|
-
const
|
|
543
|
+
const Te = /* @__PURE__ */ new Set(["beforeinput", "click", "dblclick", "contextmenu", "focusin", "focusout", "input", "keydown", "keyup", "mousedown", "mousemove", "mouseout", "mouseover", "mouseup", "pointerdown", "pointermove", "pointerout", "pointerover", "pointerup", "touchend", "touchmove", "touchstart"]), Ae = /* @__PURE__ */ new Set([
|
|
544
|
+
"altGlyph",
|
|
545
|
+
"altGlyphDef",
|
|
546
|
+
"altGlyphItem",
|
|
547
|
+
"animate",
|
|
548
|
+
"animateColor",
|
|
549
|
+
"animateMotion",
|
|
550
|
+
"animateTransform",
|
|
551
|
+
"circle",
|
|
552
|
+
"clipPath",
|
|
553
|
+
"color-profile",
|
|
554
|
+
"cursor",
|
|
555
|
+
"defs",
|
|
556
|
+
"desc",
|
|
557
|
+
"ellipse",
|
|
558
|
+
"feBlend",
|
|
559
|
+
"feColorMatrix",
|
|
560
|
+
"feComponentTransfer",
|
|
561
|
+
"feComposite",
|
|
562
|
+
"feConvolveMatrix",
|
|
563
|
+
"feDiffuseLighting",
|
|
564
|
+
"feDisplacementMap",
|
|
565
|
+
"feDistantLight",
|
|
566
|
+
"feFlood",
|
|
567
|
+
"feFuncA",
|
|
568
|
+
"feFuncB",
|
|
569
|
+
"feFuncG",
|
|
570
|
+
"feFuncR",
|
|
571
|
+
"feGaussianBlur",
|
|
572
|
+
"feImage",
|
|
573
|
+
"feMerge",
|
|
574
|
+
"feMergeNode",
|
|
575
|
+
"feMorphology",
|
|
576
|
+
"feOffset",
|
|
577
|
+
"fePointLight",
|
|
578
|
+
"feSpecularLighting",
|
|
579
|
+
"feSpotLight",
|
|
580
|
+
"feTile",
|
|
581
|
+
"feTurbulence",
|
|
582
|
+
"filter",
|
|
583
|
+
"font",
|
|
584
|
+
"font-face",
|
|
585
|
+
"font-face-format",
|
|
586
|
+
"font-face-name",
|
|
587
|
+
"font-face-src",
|
|
588
|
+
"font-face-uri",
|
|
589
|
+
"foreignObject",
|
|
590
|
+
"g",
|
|
591
|
+
"glyph",
|
|
592
|
+
"glyphRef",
|
|
593
|
+
"hkern",
|
|
594
|
+
"image",
|
|
595
|
+
"line",
|
|
596
|
+
"linearGradient",
|
|
597
|
+
"marker",
|
|
598
|
+
"mask",
|
|
599
|
+
"metadata",
|
|
600
|
+
"missing-glyph",
|
|
601
|
+
"mpath",
|
|
602
|
+
"path",
|
|
603
|
+
"pattern",
|
|
604
|
+
"polygon",
|
|
605
|
+
"polyline",
|
|
606
|
+
"radialGradient",
|
|
607
|
+
"rect",
|
|
608
|
+
"set",
|
|
609
|
+
"stop",
|
|
610
|
+
"svg",
|
|
611
|
+
"switch",
|
|
612
|
+
"symbol",
|
|
613
|
+
"text",
|
|
614
|
+
"textPath",
|
|
615
|
+
"tref",
|
|
616
|
+
"tspan",
|
|
617
|
+
"use",
|
|
618
|
+
"view",
|
|
619
|
+
"vkern"
|
|
620
|
+
]), ze = {
|
|
675
621
|
xlink: "http://www.w3.org/1999/xlink",
|
|
676
622
|
xml: "http://www.w3.org/XML/1998/namespace"
|
|
677
623
|
};
|
|
678
|
-
function
|
|
679
|
-
let r = i.length, o = e.length, M = r, n = 0, l = 0,
|
|
624
|
+
function xe(t, e, i) {
|
|
625
|
+
let r = i.length, o = e.length, M = r, n = 0, l = 0, s = e[o - 1].nextSibling, u = null;
|
|
680
626
|
for (; n < o || l < M; ) {
|
|
681
627
|
if (e[n] === i[l]) {
|
|
682
628
|
n++, l++;
|
|
@@ -685,32 +631,32 @@ function Xe(t, e, i) {
|
|
|
685
631
|
for (; e[o - 1] === i[M - 1]; )
|
|
686
632
|
o--, M--;
|
|
687
633
|
if (o === n) {
|
|
688
|
-
const a = M < r ? l ? i[l - 1].nextSibling : i[M - l] :
|
|
634
|
+
const a = M < r ? l ? i[l - 1].nextSibling : i[M - l] : s;
|
|
689
635
|
for (; l < M; )
|
|
690
636
|
t.insertBefore(i[l++], a);
|
|
691
637
|
} else if (M === l)
|
|
692
638
|
for (; n < o; )
|
|
693
|
-
(!
|
|
639
|
+
(!u || !u.has(e[n])) && e[n].remove(), n++;
|
|
694
640
|
else if (e[n] === i[M - 1] && i[l] === e[o - 1]) {
|
|
695
641
|
const a = e[--o].nextSibling;
|
|
696
642
|
t.insertBefore(i[l++], e[n++].nextSibling), t.insertBefore(i[--M], a), e[o] = i[M];
|
|
697
643
|
} else {
|
|
698
|
-
if (!
|
|
699
|
-
|
|
700
|
-
let
|
|
701
|
-
for (;
|
|
702
|
-
|
|
644
|
+
if (!u) {
|
|
645
|
+
u = /* @__PURE__ */ new Map();
|
|
646
|
+
let c = l;
|
|
647
|
+
for (; c < M; )
|
|
648
|
+
u.set(i[c], c++);
|
|
703
649
|
}
|
|
704
|
-
const a =
|
|
650
|
+
const a = u.get(e[n]);
|
|
705
651
|
if (a != null)
|
|
706
652
|
if (l < a && a < M) {
|
|
707
|
-
let
|
|
708
|
-
for (; ++
|
|
653
|
+
let c = n, g = 1, N;
|
|
654
|
+
for (; ++c < o && c < M && !((N = u.get(e[c])) == null || N !== a + g); )
|
|
709
655
|
g++;
|
|
710
656
|
if (g > a - l) {
|
|
711
|
-
const
|
|
657
|
+
const d = e[n];
|
|
712
658
|
for (; l < a; )
|
|
713
|
-
t.insertBefore(i[l++],
|
|
659
|
+
t.insertBefore(i[l++], d);
|
|
714
660
|
} else
|
|
715
661
|
t.replaceChild(i[l++], e[n++]);
|
|
716
662
|
} else
|
|
@@ -720,32 +666,32 @@ function Xe(t, e, i) {
|
|
|
720
666
|
}
|
|
721
667
|
}
|
|
722
668
|
}
|
|
723
|
-
const
|
|
724
|
-
function
|
|
669
|
+
const Tt = "_$DX_DELEGATE";
|
|
670
|
+
function T(t, e, i) {
|
|
725
671
|
let r;
|
|
726
672
|
const o = () => {
|
|
727
673
|
const n = document.createElement("template");
|
|
728
674
|
return n.innerHTML = t, i ? n.content.firstChild.firstChild : n.content.firstChild;
|
|
729
|
-
}, M = e ? () =>
|
|
675
|
+
}, M = e ? () => C(() => document.importNode(r || (r = o()), !0)) : () => (r || (r = o())).cloneNode(!0);
|
|
730
676
|
return M.cloneNode = M, M;
|
|
731
677
|
}
|
|
732
|
-
function
|
|
733
|
-
const i = e[
|
|
678
|
+
function Ut(t, e = window.document) {
|
|
679
|
+
const i = e[Tt] || (e[Tt] = /* @__PURE__ */ new Set());
|
|
734
680
|
for (let r = 0, o = t.length; r < o; r++) {
|
|
735
681
|
const M = t[r];
|
|
736
|
-
i.has(M) || (i.add(M), e.addEventListener(M,
|
|
682
|
+
i.has(M) || (i.add(M), e.addEventListener(M, Ee));
|
|
737
683
|
}
|
|
738
684
|
}
|
|
739
|
-
function
|
|
685
|
+
function Q(t, e, i) {
|
|
740
686
|
i == null ? t.removeAttribute(e) : t.setAttribute(e, i);
|
|
741
687
|
}
|
|
742
|
-
function
|
|
688
|
+
function me(t, e, i, r) {
|
|
743
689
|
r == null ? t.removeAttributeNS(e, i) : t.setAttributeNS(e, i, r);
|
|
744
690
|
}
|
|
745
|
-
function
|
|
691
|
+
function ot(t, e) {
|
|
746
692
|
e == null ? t.removeAttribute("class") : t.className = e;
|
|
747
693
|
}
|
|
748
|
-
function
|
|
694
|
+
function he(t, e, i, r) {
|
|
749
695
|
if (r)
|
|
750
696
|
Array.isArray(i) ? (t[`$$${e}`] = i[0], t[`$$${e}Data`] = i[1]) : t[`$$${e}`] = i;
|
|
751
697
|
else if (Array.isArray(i)) {
|
|
@@ -754,22 +700,22 @@ function _e(t, e, i, r) {
|
|
|
754
700
|
} else
|
|
755
701
|
t.addEventListener(e, i);
|
|
756
702
|
}
|
|
757
|
-
function
|
|
703
|
+
function Mt(t, e, i = {}) {
|
|
758
704
|
const r = Object.keys(e || {}), o = Object.keys(i);
|
|
759
705
|
let M, n;
|
|
760
706
|
for (M = 0, n = o.length; M < n; M++) {
|
|
761
707
|
const l = o[M];
|
|
762
|
-
!l || l === "undefined" || e[l] || (
|
|
708
|
+
!l || l === "undefined" || e[l] || (At(t, l, !1), delete i[l]);
|
|
763
709
|
}
|
|
764
710
|
for (M = 0, n = r.length; M < n; M++) {
|
|
765
|
-
const l = r[M],
|
|
766
|
-
!l || l === "undefined" || i[l] ===
|
|
711
|
+
const l = r[M], s = !!e[l];
|
|
712
|
+
!l || l === "undefined" || i[l] === s || !s || (At(t, l, !0), i[l] = s);
|
|
767
713
|
}
|
|
768
714
|
return i;
|
|
769
715
|
}
|
|
770
|
-
function
|
|
716
|
+
function Zt(t, e, i) {
|
|
771
717
|
if (!e)
|
|
772
|
-
return i ?
|
|
718
|
+
return i ? Q(t, "style") : e;
|
|
773
719
|
const r = t.style;
|
|
774
720
|
if (typeof e == "string")
|
|
775
721
|
return r.cssText = e;
|
|
@@ -781,77 +727,77 @@ function ne(t, e, i) {
|
|
|
781
727
|
o = e[M], o !== i[M] && (r.setProperty(M, o), i[M] = o);
|
|
782
728
|
return i;
|
|
783
729
|
}
|
|
784
|
-
function
|
|
730
|
+
function fe(t, e = {}, i, r) {
|
|
785
731
|
const o = {};
|
|
786
|
-
return r ||
|
|
732
|
+
return r || m(() => o.children = U(t, e.children, o.children)), m(() => e.ref && e.ref(t)), m(() => pe(t, e, i, !0, o, !0)), o;
|
|
787
733
|
}
|
|
788
|
-
function
|
|
789
|
-
return
|
|
734
|
+
function Wt(t, e, i) {
|
|
735
|
+
return C(() => t(e, i));
|
|
790
736
|
}
|
|
791
|
-
function
|
|
737
|
+
function j(t, e, i, r) {
|
|
792
738
|
if (i !== void 0 && !r && (r = []), typeof e != "function")
|
|
793
|
-
return
|
|
794
|
-
|
|
739
|
+
return U(t, e, r, i);
|
|
740
|
+
m((o) => U(t, e(), o, i), r);
|
|
795
741
|
}
|
|
796
|
-
function
|
|
742
|
+
function pe(t, e, i, r, o = {}, M = !1) {
|
|
797
743
|
e || (e = {});
|
|
798
744
|
for (const n in o)
|
|
799
745
|
if (!(n in e)) {
|
|
800
746
|
if (n === "children")
|
|
801
747
|
continue;
|
|
802
|
-
o[n] =
|
|
748
|
+
o[n] = zt(t, n, null, o[n], i, M);
|
|
803
749
|
}
|
|
804
750
|
for (const n in e) {
|
|
805
751
|
if (n === "children") {
|
|
806
|
-
r ||
|
|
752
|
+
r || U(t, e.children);
|
|
807
753
|
continue;
|
|
808
754
|
}
|
|
809
755
|
const l = e[n];
|
|
810
|
-
o[n] =
|
|
756
|
+
o[n] = zt(t, n, l, o[n], i, M);
|
|
811
757
|
}
|
|
812
758
|
}
|
|
813
|
-
function
|
|
759
|
+
function Ce(t) {
|
|
814
760
|
return t.toLowerCase().replace(/-([a-z])/g, (e, i) => i.toUpperCase());
|
|
815
761
|
}
|
|
816
|
-
function
|
|
762
|
+
function At(t, e, i) {
|
|
817
763
|
const r = e.trim().split(/\s+/);
|
|
818
764
|
for (let o = 0, M = r.length; o < M; o++)
|
|
819
765
|
t.classList.toggle(r[o], i);
|
|
820
766
|
}
|
|
821
|
-
function
|
|
822
|
-
let n, l,
|
|
767
|
+
function zt(t, e, i, r, o, M) {
|
|
768
|
+
let n, l, s, u, a;
|
|
823
769
|
if (e === "style")
|
|
824
|
-
return
|
|
770
|
+
return Zt(t, i, r);
|
|
825
771
|
if (e === "classList")
|
|
826
|
-
return
|
|
772
|
+
return Mt(t, i, r);
|
|
827
773
|
if (i === r)
|
|
828
774
|
return r;
|
|
829
775
|
if (e === "ref")
|
|
830
776
|
M || i(t);
|
|
831
777
|
else if (e.slice(0, 3) === "on:") {
|
|
832
|
-
const
|
|
833
|
-
r && t.removeEventListener(
|
|
778
|
+
const c = e.slice(3);
|
|
779
|
+
r && t.removeEventListener(c, r), i && t.addEventListener(c, i);
|
|
834
780
|
} else if (e.slice(0, 10) === "oncapture:") {
|
|
835
|
-
const
|
|
836
|
-
r && t.removeEventListener(
|
|
781
|
+
const c = e.slice(10);
|
|
782
|
+
r && t.removeEventListener(c, r, !0), i && t.addEventListener(c, i, !0);
|
|
837
783
|
} else if (e.slice(0, 2) === "on") {
|
|
838
|
-
const
|
|
784
|
+
const c = e.slice(2).toLowerCase(), g = Te.has(c);
|
|
839
785
|
if (!g && r) {
|
|
840
|
-
const
|
|
841
|
-
t.removeEventListener(
|
|
786
|
+
const N = Array.isArray(r) ? r[0] : r;
|
|
787
|
+
t.removeEventListener(c, N);
|
|
842
788
|
}
|
|
843
|
-
(g || i) && (
|
|
789
|
+
(g || i) && (he(t, c, i, g), g && Ut([c]));
|
|
844
790
|
} else if (e.slice(0, 5) === "attr:")
|
|
845
|
-
|
|
846
|
-
else if ((a = e.slice(0, 5) === "prop:") || (
|
|
847
|
-
a && (e = e.slice(5), l = !0), e === "class" || e === "className" ?
|
|
791
|
+
Q(t, e.slice(5), i);
|
|
792
|
+
else if ((a = e.slice(0, 5) === "prop:") || (s = De.has(e)) || !o && ((u = Le(e, t.tagName)) || (l = ye.has(e))) || (n = t.nodeName.includes("-")))
|
|
793
|
+
a && (e = e.slice(5), l = !0), e === "class" || e === "className" ? ot(t, i) : n && !l && !s ? t[Ce(e)] = i : t[u || e] = i;
|
|
848
794
|
else {
|
|
849
|
-
const
|
|
850
|
-
|
|
795
|
+
const c = o && e.indexOf(":") > -1 && ze[e.split(":")[0]];
|
|
796
|
+
c ? me(t, c, e, i) : Q(t, be[e] || e, i);
|
|
851
797
|
}
|
|
852
798
|
return i;
|
|
853
799
|
}
|
|
854
|
-
function
|
|
800
|
+
function Ee(t) {
|
|
855
801
|
const e = `$$${t.type}`;
|
|
856
802
|
let i = t.composedPath && t.composedPath()[0] || t.target;
|
|
857
803
|
for (t.target !== i && Object.defineProperty(t, "target", {
|
|
@@ -872,7 +818,7 @@ function ei(t) {
|
|
|
872
818
|
i = i._$host || i.parentNode || i.host;
|
|
873
819
|
}
|
|
874
820
|
}
|
|
875
|
-
function
|
|
821
|
+
function U(t, e, i, r, o) {
|
|
876
822
|
for (; typeof i == "function"; )
|
|
877
823
|
i = i();
|
|
878
824
|
if (e === i)
|
|
@@ -881,34 +827,34 @@ function X(t, e, i, r, o) {
|
|
|
881
827
|
if (t = n && i[0] && i[0].parentNode || t, M === "string" || M === "number")
|
|
882
828
|
if (M === "number" && (e = e.toString()), n) {
|
|
883
829
|
let l = i[0];
|
|
884
|
-
l && l.nodeType === 3 ? l.data = e : l = document.createTextNode(e), i =
|
|
830
|
+
l && l.nodeType === 3 ? l.data = e : l = document.createTextNode(e), i = k(t, i, r, l);
|
|
885
831
|
} else
|
|
886
832
|
i !== "" && typeof i == "string" ? i = t.firstChild.data = e : i = t.textContent = e;
|
|
887
833
|
else if (e == null || M === "boolean")
|
|
888
|
-
i =
|
|
834
|
+
i = k(t, i, r);
|
|
889
835
|
else {
|
|
890
836
|
if (M === "function")
|
|
891
|
-
return
|
|
837
|
+
return m(() => {
|
|
892
838
|
let l = e();
|
|
893
839
|
for (; typeof l == "function"; )
|
|
894
840
|
l = l();
|
|
895
|
-
i =
|
|
841
|
+
i = U(t, l, i, r);
|
|
896
842
|
}), () => i;
|
|
897
843
|
if (Array.isArray(e)) {
|
|
898
|
-
const l = [],
|
|
899
|
-
if (
|
|
900
|
-
return
|
|
844
|
+
const l = [], s = i && Array.isArray(i);
|
|
845
|
+
if (Nt(l, e, i, o))
|
|
846
|
+
return m(() => i = U(t, l, i, r, !0)), () => i;
|
|
901
847
|
if (l.length === 0) {
|
|
902
|
-
if (i =
|
|
848
|
+
if (i = k(t, i, r), n)
|
|
903
849
|
return i;
|
|
904
850
|
} else
|
|
905
|
-
|
|
851
|
+
s ? i.length === 0 ? xt(t, l, r) : xe(t, i, l) : (i && k(t), xt(t, l));
|
|
906
852
|
i = l;
|
|
907
853
|
} else if (e.nodeType) {
|
|
908
854
|
if (Array.isArray(i)) {
|
|
909
855
|
if (n)
|
|
910
|
-
return i =
|
|
911
|
-
|
|
856
|
+
return i = k(t, i, r, e);
|
|
857
|
+
k(t, i, null, e);
|
|
912
858
|
} else
|
|
913
859
|
i == null || i === "" || !t.firstChild ? t.appendChild(e) : t.replaceChild(e, t.firstChild);
|
|
914
860
|
i = e;
|
|
@@ -917,34 +863,34 @@ function X(t, e, i, r, o) {
|
|
|
917
863
|
}
|
|
918
864
|
return i;
|
|
919
865
|
}
|
|
920
|
-
function
|
|
866
|
+
function Nt(t, e, i, r) {
|
|
921
867
|
let o = !1;
|
|
922
868
|
for (let M = 0, n = e.length; M < n; M++) {
|
|
923
|
-
let l = e[M],
|
|
869
|
+
let l = e[M], s = i && i[M], u;
|
|
924
870
|
if (!(l == null || l === !0 || l === !1))
|
|
925
|
-
if ((
|
|
871
|
+
if ((u = typeof l) == "object" && l.nodeType)
|
|
926
872
|
t.push(l);
|
|
927
873
|
else if (Array.isArray(l))
|
|
928
|
-
o =
|
|
929
|
-
else if (
|
|
874
|
+
o = Nt(t, l, s) || o;
|
|
875
|
+
else if (u === "function")
|
|
930
876
|
if (r) {
|
|
931
877
|
for (; typeof l == "function"; )
|
|
932
878
|
l = l();
|
|
933
|
-
o =
|
|
879
|
+
o = Nt(t, Array.isArray(l) ? l : [l], Array.isArray(s) ? s : [s]) || o;
|
|
934
880
|
} else
|
|
935
881
|
t.push(l), o = !0;
|
|
936
882
|
else {
|
|
937
883
|
const a = String(l);
|
|
938
|
-
|
|
884
|
+
s && s.nodeType === 3 && s.data === a ? t.push(s) : t.push(document.createTextNode(a));
|
|
939
885
|
}
|
|
940
886
|
}
|
|
941
887
|
return o;
|
|
942
888
|
}
|
|
943
|
-
function
|
|
889
|
+
function xt(t, e, i = null) {
|
|
944
890
|
for (let r = 0, o = e.length; r < o; r++)
|
|
945
891
|
t.insertBefore(e[r], i);
|
|
946
892
|
}
|
|
947
|
-
function
|
|
893
|
+
function k(t, e, i, r) {
|
|
948
894
|
if (i === void 0)
|
|
949
895
|
return t.textContent = "";
|
|
950
896
|
const o = r || document.createTextNode("");
|
|
@@ -953,8 +899,8 @@ function H(t, e, i, r) {
|
|
|
953
899
|
for (let n = e.length - 1; n >= 0; n--) {
|
|
954
900
|
const l = e[n];
|
|
955
901
|
if (o !== l) {
|
|
956
|
-
const
|
|
957
|
-
!M && !n ?
|
|
902
|
+
const s = l.parentNode === t;
|
|
903
|
+
!M && !n ? s ? t.replaceChild(o, l) : t.insertBefore(o, i) : s && l.remove();
|
|
958
904
|
} else
|
|
959
905
|
M = !0;
|
|
960
906
|
}
|
|
@@ -962,10 +908,29 @@ function H(t, e, i, r) {
|
|
|
962
908
|
t.insertBefore(o, i);
|
|
963
909
|
return [o];
|
|
964
910
|
}
|
|
965
|
-
|
|
911
|
+
const Se = "http://www.w3.org/2000/svg";
|
|
912
|
+
function Oe(t, e = !1) {
|
|
913
|
+
return e ? document.createElementNS(Se, t) : document.createElement(t);
|
|
914
|
+
}
|
|
915
|
+
function ve(t) {
|
|
916
|
+
const [e, i] = je(t, ["component"]), r = L(() => e.component);
|
|
917
|
+
return L(() => {
|
|
918
|
+
const o = r();
|
|
919
|
+
switch (typeof o) {
|
|
920
|
+
case "function":
|
|
921
|
+
return Object.assign(o, {
|
|
922
|
+
[oe]: !0
|
|
923
|
+
}), C(() => o(i));
|
|
924
|
+
case "string":
|
|
925
|
+
const M = Ae.has(o), n = Oe(o, M);
|
|
926
|
+
return fe(n, i, M), n;
|
|
927
|
+
}
|
|
928
|
+
});
|
|
929
|
+
}
|
|
930
|
+
function ke(t) {
|
|
966
931
|
const e = Object.keys(t), i = {};
|
|
967
932
|
for (let r = 0; r < e.length; r++) {
|
|
968
|
-
const [o, M] =
|
|
933
|
+
const [o, M] = yt(t[e[r]]);
|
|
969
934
|
Object.defineProperty(i, e[r], {
|
|
970
935
|
get: o,
|
|
971
936
|
set(n) {
|
|
@@ -975,7 +940,7 @@ function ii(t) {
|
|
|
975
940
|
}
|
|
976
941
|
return i;
|
|
977
942
|
}
|
|
978
|
-
function
|
|
943
|
+
function Ye(t) {
|
|
979
944
|
if (t.assignedSlot && t.assignedSlot._$owner)
|
|
980
945
|
return t.assignedSlot._$owner;
|
|
981
946
|
let e = t.parentNode;
|
|
@@ -983,28 +948,50 @@ function ri(t) {
|
|
|
983
948
|
e = e.parentNode;
|
|
984
949
|
return e && e.assignedSlot ? e.assignedSlot._$owner : t._$owner;
|
|
985
950
|
}
|
|
986
|
-
function
|
|
951
|
+
function Qe(t) {
|
|
987
952
|
return (e, i) => {
|
|
988
953
|
const { element: r } = i;
|
|
989
|
-
return
|
|
990
|
-
const M =
|
|
991
|
-
r.addPropertyChangedCallback((l,
|
|
954
|
+
return J((o) => {
|
|
955
|
+
const M = ke(e);
|
|
956
|
+
r.addPropertyChangedCallback((l, s) => M[l] = s), r.addReleaseCallback(() => {
|
|
992
957
|
r.renderRoot.textContent = "", o();
|
|
993
958
|
});
|
|
994
959
|
const n = t(M, i);
|
|
995
|
-
return
|
|
996
|
-
},
|
|
960
|
+
return j(r.renderRoot, n);
|
|
961
|
+
}, Ye(r));
|
|
997
962
|
};
|
|
998
963
|
}
|
|
999
|
-
function
|
|
1000
|
-
return arguments.length === 2 && (i = e, e = {}),
|
|
964
|
+
function Ue(t, e, i) {
|
|
965
|
+
return arguments.length === 2 && (i = e, e = {}), ie(t, e)(Qe(i));
|
|
966
|
+
}
|
|
967
|
+
var jt = ((t) => (t[t.ERROR_AUTH_R_SERVER = 0] = "ERROR_AUTH_R_SERVER", t[t.INFO_HATTIP = 1] = "INFO_HATTIP", t))(jt || {});
|
|
968
|
+
function Ze(t, e, i) {
|
|
969
|
+
let r = Array.from(Gt(i));
|
|
970
|
+
return (o) => o.has(e) && !r.every((M) => o.has(M)) && t;
|
|
971
|
+
}
|
|
972
|
+
function We(t, e) {
|
|
973
|
+
return (i) => i.has(e) && t;
|
|
974
|
+
}
|
|
975
|
+
function Gt(t) {
|
|
976
|
+
let e = /* @__PURE__ */ new Set();
|
|
977
|
+
for (let i of t)
|
|
978
|
+
i.includes(":") && e.add(i.split(":")[0]), e.add(i);
|
|
979
|
+
return e;
|
|
980
|
+
}
|
|
981
|
+
var Ge = [Ze(0, "auth", ["server"]), We(1, "server:hattip")];
|
|
982
|
+
function Pe(t, e) {
|
|
983
|
+
let i = Gt(t), r = [];
|
|
984
|
+
for (let o of Ge) {
|
|
985
|
+
let M = o(i);
|
|
986
|
+
typeof M == "number" && (M in e ? r.push(e[M]) : console.warn("No handler defined for rule", M));
|
|
987
|
+
}
|
|
988
|
+
return r;
|
|
1001
989
|
}
|
|
1002
|
-
const ni = `.bati-widget,[data-theme]{background-color:hsl(var(--b1) / var(--tw-bg-opacity, 1));color:hsl(var(--bc) / var(--tw-text-opacity, 1))}html{-webkit-tap-highlight-color:transparent}.bati-widget{color-scheme:light;--pf: 259 94% 44%;--sf: 314 100% 40%;--af: 174 75% 39%;--nf: 214 20% 14%;--in: 198 93% 60%;--su: 158 64% 52%;--wa: 43 96% 56%;--er: 0 91% 71%;--inc: 198 100% 12%;--suc: 158 100% 10%;--wac: 43 100% 11%;--erc: 0 100% 14%;--rounded-box: 1rem;--rounded-btn: .5rem;--rounded-badge: 1.9rem;--animation-btn: .25s;--animation-input: .2s;--btn-text-case: uppercase;--btn-focus-scale: .95;--border-btn: 1px;--tab-border: 1px;--tab-radius: .5rem;--p: 259 94% 51%;--pc: 259 96% 91%;--s: 314 100% 47%;--sc: 314 100% 91%;--a: 174 75% 46%;--ac: 174 75% 11%;--n: 214 20% 21%;--nc: 212 19% 87%;--b1: 0 0% 100%;--b2: 0 0% 95%;--b3: 180 2% 90%;--bc: 215 28% 17%}@media (prefers-color-scheme: dark){.bati-widget{color-scheme:dark;--pf: 262 80% 43%;--sf: 316 70% 43%;--af: 175 70% 34%;--in: 198 93% 60%;--su: 158 64% 52%;--wa: 43 96% 56%;--er: 0 91% 71%;--inc: 198 100% 12%;--suc: 158 100% 10%;--wac: 43 100% 11%;--erc: 0 100% 14%;--rounded-box: 1rem;--rounded-btn: .5rem;--rounded-badge: 1.9rem;--animation-btn: .25s;--animation-input: .2s;--btn-text-case: uppercase;--btn-focus-scale: .95;--border-btn: 1px;--tab-border: 1px;--tab-radius: .5rem;--p: 262 80% 50%;--pc: 0 0% 100%;--s: 316 70% 50%;--sc: 0 0% 100%;--a: 175 70% 41%;--ac: 0 0% 100%;--n: 213 18% 20%;--nf: 212 17% 17%;--nc: 220 13% 69%;--b1: 212 18% 14%;--b2: 213 18% 12%;--b3: 213 18% 10%;--bc: 220 13% 69%}}[data-theme=light]{color-scheme:light;--pf: 259 94% 44%;--sf: 314 100% 40%;--af: 174 75% 39%;--nf: 214 20% 14%;--in: 198 93% 60%;--su: 158 64% 52%;--wa: 43 96% 56%;--er: 0 91% 71%;--inc: 198 100% 12%;--suc: 158 100% 10%;--wac: 43 100% 11%;--erc: 0 100% 14%;--rounded-box: 1rem;--rounded-btn: .5rem;--rounded-badge: 1.9rem;--animation-btn: .25s;--animation-input: .2s;--btn-text-case: uppercase;--btn-focus-scale: .95;--border-btn: 1px;--tab-border: 1px;--tab-radius: .5rem;--p: 259 94% 51%;--pc: 259 96% 91%;--s: 314 100% 47%;--sc: 314 100% 91%;--a: 174 75% 46%;--ac: 174 75% 11%;--n: 214 20% 21%;--nc: 212 19% 87%;--b1: 0 0% 100%;--b2: 0 0% 95%;--b3: 180 2% 90%;--bc: 215 28% 17%}[data-theme=dark]{color-scheme:dark;--pf: 262 80% 43%;--sf: 316 70% 43%;--af: 175 70% 34%;--in: 198 93% 60%;--su: 158 64% 52%;--wa: 43 96% 56%;--er: 0 91% 71%;--inc: 198 100% 12%;--suc: 158 100% 10%;--wac: 43 100% 11%;--erc: 0 100% 14%;--rounded-box: 1rem;--rounded-btn: .5rem;--rounded-badge: 1.9rem;--animation-btn: .25s;--animation-input: .2s;--btn-text-case: uppercase;--btn-focus-scale: .95;--border-btn: 1px;--tab-border: 1px;--tab-radius: .5rem;--p: 262 80% 50%;--pc: 0 0% 100%;--s: 316 70% 50%;--sc: 0 0% 100%;--a: 175 70% 41%;--ac: 0 0% 100%;--n: 213 18% 20%;--nf: 212 17% 17%;--nc: 220 13% 69%;--b1: 212 18% 14%;--b2: 213 18% 12%;--b3: 213 18% 10%;--bc: 220 13% 69%}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }@media (hover:hover){.link-hover:hover{text-decoration-line:underline}.checkbox-success:hover{--tw-border-opacity: 1;border-color:hsl(var(--su) / var(--tw-border-opacity))}.label a:hover{--tw-text-opacity: 1;color:hsl(var(--bc) / var(--tw-text-opacity))}.menu li>*:not(ul):not(.menu-title):not(details):active,.menu li>*:not(ul):not(.menu-title):not(details).active,.menu li>details>summary:active{--tw-bg-opacity: 1;background-color:hsl(var(--n) / var(--tw-bg-opacity));--tw-text-opacity: 1;color:hsl(var(--nc) / var(--tw-text-opacity))}}.card{position:relative;display:flex;flex-direction:column;border-radius:var(--rounded-box, 1rem)}.card:focus{outline:2px solid transparent;outline-offset:2px}.card-body{display:flex;flex:1 1 auto;flex-direction:column;padding:var(--padding-card, 2rem);gap:.5rem}.card-body :where(p){flex-grow:1}.card figure{display:flex;align-items:center;justify-content:center}.card.image-full{display:grid}.card.image-full:before{position:relative;content:"";z-index:10;--tw-bg-opacity: 1;background-color:hsl(var(--n) / var(--tw-bg-opacity));opacity:.75;border-radius:var(--rounded-box, 1rem)}.card.image-full:before,.card.image-full>*{grid-column-start:1;grid-row-start:1}.card.image-full>figure img{height:100%;-o-object-fit:cover;object-fit:cover}.card.image-full>.card-body{position:relative;z-index:20;--tw-text-opacity: 1;color:hsl(var(--nc) / var(--tw-text-opacity))}.checkbox{flex-shrink:0;--chkbg: var(--bc);--chkfg: var(--b1);height:1.5rem;width:1.5rem;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-width:1px;border-color:hsl(var(--bc) / var(--tw-border-opacity));--tw-border-opacity: .2;border-radius:var(--rounded-btn, .5rem)}.divider{display:flex;flex-direction:row;align-items:center;align-self:stretch;margin-top:1rem;margin-bottom:1rem;height:1rem;white-space:nowrap}.divider:before,.divider:after{content:"";flex-grow:1;height:.125rem;width:100%}@media (hover: hover){.btm-nav>*.disabled:hover,.btm-nav>*[disabled]:hover{pointer-events:none;--tw-border-opacity: 0;background-color:hsl(var(--n) / var(--tw-bg-opacity));--tw-bg-opacity: .1;color:hsl(var(--bc) / var(--tw-text-opacity));--tw-text-opacity: .2}:where(.menu li:not(.menu-title):not(.disabled)>*:not(ul):not(details):not(.menu-title)):not(.active):hover,:where(.menu li:not(.menu-title):not(.disabled)>details>summary:not(.menu-title)):not(.active):hover{cursor:pointer;background-color:hsl(var(--bc) / .1);--tw-text-opacity: 1;color:hsl(var(--bc) / var(--tw-text-opacity));outline:2px solid transparent;outline-offset:2px}}.footer{display:grid;width:100%;grid-auto-flow:row;place-items:start;row-gap:2.5rem;-moz-column-gap:1rem;column-gap:1rem;font-size:.875rem;line-height:1.25rem}.footer>*{display:grid;place-items:start;gap:.5rem}.footer-center{place-items:center;text-align:center}.footer-center>*{place-items:center}@media (min-width: 48rem){.footer{grid-auto-flow:column}.footer-center{grid-auto-flow:row dense}}.form-control{display:flex;flex-direction:column}.label{display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;align-items:center;justify-content:space-between;padding:.5rem .25rem}.input{flex-shrink:1;height:3rem;padding-left:1rem;padding-right:1rem;font-size:1rem;line-height:2;line-height:1.5rem;border-width:1px;border-color:hsl(var(--bc) / var(--tw-border-opacity));--tw-border-opacity: 0;--tw-bg-opacity: 1;background-color:hsl(var(--b1) / var(--tw-bg-opacity));border-radius:var(--rounded-btn, .5rem)}.input-group>.input{isolation:isolate}.input-group>*,.input-group>.input,.input-group>.textarea,.input-group>.select{border-radius:0}.join{display:inline-flex;align-items:stretch;border-radius:var(--rounded-btn, .5rem)}.join :where(.join-item){border-radius:0}.join .join-item:not(:first-child):not(:last-child),.join *:not(:first-child):not(:last-child) .join-item{border-radius:0}.join .join-item:first-child:not(:last-child),.join *:first-child:not(:last-child) .join-item{border-top-right-radius:0;border-bottom-right-radius:0}.join :where(.join-item:first-child:not(:last-child)),.join :where(*:first-child:not(:last-child) .join-item){border-bottom-left-radius:inherit;border-top-left-radius:inherit}.join .join-item:last-child:not(:first-child),.join *:last-child:not(:first-child) .join-item{border-bottom-left-radius:0;border-top-left-radius:0}.join :where(.join-item:last-child:not(:first-child)),.join :where(*:last-child:not(:first-child) .join-item){border-top-right-radius:inherit;border-bottom-right-radius:inherit}:where(.join *){border-radius:inherit}.kbd{display:inline-flex;align-items:center;justify-content:center;border-width:1px;border-color:hsl(var(--bc) / var(--tw-border-opacity));--tw-border-opacity: .2;--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));padding-left:.5rem;padding-right:.5rem;border-radius:var(--rounded-btn, .5rem);border-bottom-width:2px;min-height:2.2em;min-width:2.2em}.link{cursor:pointer;text-decoration-line:underline}.link-hover{text-decoration-line:none}.menu li.disabled{cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;user-select:none;color:hsl(var(--bc) / .3)}.select{display:inline-flex;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:3rem;padding-left:1rem;padding-right:2.5rem;font-size:.875rem;line-height:1.25rem;line-height:2;min-height:3rem;border-width:1px;border-color:hsl(var(--bc) / var(--tw-border-opacity));--tw-border-opacity: 0;--tw-bg-opacity: 1;background-color:hsl(var(--b1) / var(--tw-bg-opacity));font-weight:600;border-radius:var(--rounded-btn, .5rem);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}.select[multiple]{height:auto}.stack{display:inline-grid;place-items:center;align-items:flex-end}.stack>*{grid-column-start:1;grid-row-start:1;transform:translateY(10%) scale(.9);z-index:1;width:100%;opacity:.6}.stack>*:nth-child(2){transform:translateY(5%) scale(.95);z-index:2;opacity:.8}.stack>*:nth-child(1){transform:translateY(0) scale(1);z-index:3;opacity:1}.btm-nav>*:where(.active){border-top-width:2px;--tw-bg-opacity: 1;background-color:hsl(var(--b1) / var(--tw-bg-opacity))}.btm-nav>*.disabled,.btm-nav>*[disabled]{pointer-events:none;--tw-border-opacity: 0;background-color:hsl(var(--n) / var(--tw-bg-opacity));--tw-bg-opacity: .1;color:hsl(var(--bc) / var(--tw-text-opacity));--tw-text-opacity: .2}.btm-nav>* .label{font-size:1rem;line-height:1.5rem}@keyframes button-pop{0%{transform:scale(var(--btn-focus-scale, .98))}40%{transform:scale(1.02)}to{transform:scale(1)}}.card :where(figure:first-child){overflow:hidden;border-start-start-radius:inherit;border-start-end-radius:inherit;border-end-start-radius:unset;border-end-end-radius:unset}.card :where(figure:last-child){overflow:hidden;border-start-start-radius:unset;border-start-end-radius:unset;border-end-start-radius:inherit;border-end-end-radius:inherit}.card:focus-visible{outline:2px solid currentColor;outline-offset:2px}.card.bordered{border-width:1px;--tw-border-opacity: 1;border-color:hsl(var(--b2) / var(--tw-border-opacity))}.card.compact .card-body{padding:1rem;font-size:.875rem;line-height:1.25rem}.card-title{display:flex;align-items:center;gap:.5rem;font-size:1.25rem;line-height:1.75rem;font-weight:600}.card.image-full :where(figure){overflow:hidden;border-radius:inherit}.checkbox:focus-visible{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:hsl(var(--bc) / 1)}.checkbox:checked,.checkbox[checked=true],.checkbox[aria-checked=true]{--tw-bg-opacity: 1;background-color:hsl(var(--bc) / var(--tw-bg-opacity));background-repeat:no-repeat;animation:checkmark var(--animation-input, .2s) ease-out;background-image:linear-gradient(-45deg,transparent 65%,hsl(var(--chkbg)) 65.99%),linear-gradient(45deg,transparent 75%,hsl(var(--chkbg)) 75.99%),linear-gradient(-45deg,hsl(var(--chkbg)) 40%,transparent 40.99%),linear-gradient(45deg,hsl(var(--chkbg)) 30%,hsl(var(--chkfg)) 30.99%,hsl(var(--chkfg)) 40%,transparent 40.99%),linear-gradient(-45deg,hsl(var(--chkfg)) 50%,hsl(var(--chkbg)) 50.99%)}.checkbox:indeterminate{--tw-bg-opacity: 1;background-color:hsl(var(--bc) / var(--tw-bg-opacity));background-repeat:no-repeat;animation:checkmark var(--animation-input, .2s) ease-out;background-image:linear-gradient(90deg,transparent 80%,hsl(var(--chkbg)) 80%),linear-gradient(-90deg,transparent 80%,hsl(var(--chkbg)) 80%),linear-gradient(0deg,hsl(var(--chkbg)) 43%,hsl(var(--chkfg)) 43%,hsl(var(--chkfg)) 57%,hsl(var(--chkbg)) 57%)}.checkbox-success{--chkbg: var(--su);--chkfg: var(--suc);--tw-border-opacity: 1;border-color:hsl(var(--su) / var(--tw-border-opacity))}.checkbox-success:focus-visible{outline-color:hsl(var(--su) / 1)}.checkbox-success:checked,.checkbox-success[checked=true],.checkbox-success[aria-checked=true]{--tw-border-opacity: 1;border-color:hsl(var(--su) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--su) / var(--tw-bg-opacity));--tw-text-opacity: 1;color:hsl(var(--suc) / var(--tw-text-opacity))}.checkbox:disabled{cursor:not-allowed;border-color:transparent;--tw-bg-opacity: 1;background-color:hsl(var(--bc) / var(--tw-bg-opacity));opacity:.2}@keyframes checkmark{0%{background-position-y:5px}50%{background-position-y:-2px}to{background-position-y:0}}[dir=rtl] .checkbox:checked,[dir=rtl] .checkbox[checked=true],[dir=rtl] .checkbox[aria-checked=true]{background-image:linear-gradient(45deg,transparent 65%,hsl(var(--chkbg)) 65.99%),linear-gradient(-45deg,transparent 75%,hsl(var(--chkbg)) 75.99%),linear-gradient(45deg,hsl(var(--chkbg)) 40%,transparent 40.99%),linear-gradient(-45deg,hsl(var(--chkbg)) 30%,hsl(var(--chkfg)) 30.99%,hsl(var(--chkfg)) 40%,transparent 40.99%),linear-gradient(45deg,hsl(var(--chkfg)) 50%,hsl(var(--chkbg)) 50.99%)}.divider:before{background-color:hsl(var(--bc) / var(--tw-bg-opacity));--tw-bg-opacity: .1}.divider:after{background-color:hsl(var(--bc) / var(--tw-bg-opacity));--tw-bg-opacity: .1}.divider:not(:empty){gap:1rem}.label-text{font-size:.875rem;line-height:1.25rem;--tw-text-opacity: 1;color:hsl(var(--bc) / var(--tw-text-opacity))}.input[list]::-webkit-calendar-picker-indicator{line-height:1em}.input:focus{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:hsl(var(--bc) / .2)}.input-disabled,.input:disabled,.input[disabled]{cursor:not-allowed;--tw-border-opacity: 1;border-color:hsl(var(--b2) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));--tw-text-opacity: .2}.input-disabled::-moz-placeholder,.input:disabled::-moz-placeholder,.input[disabled]::-moz-placeholder{color:hsl(var(--bc) / var(--tw-placeholder-opacity));--tw-placeholder-opacity: .2}.input-disabled::placeholder,.input:disabled::placeholder,.input[disabled]::placeholder{color:hsl(var(--bc) / var(--tw-placeholder-opacity));--tw-placeholder-opacity: .2}.join>:where(*:not(:first-child)){margin-top:0;margin-bottom:0;margin-left:-1px}.join-item:focus{isolation:isolate}.link:focus{outline:2px solid transparent;outline-offset:2px}.link:focus-visible{outline:2px solid currentColor;outline-offset:2px}:where(.menu li:not(.menu-title):not(.disabled)>*:not(ul):not(details):not(.menu-title)):not(summary):not(.active).focus,:where(.menu li:not(.menu-title):not(.disabled)>*:not(ul):not(details):not(.menu-title)):not(summary):not(.active):focus,:where(.menu li:not(.menu-title):not(.disabled)>*:not(ul):not(details):not(.menu-title)):is(summary):not(.active):focus-visible,:where(.menu li:not(.menu-title):not(.disabled)>details>summary:not(.menu-title)):not(summary):not(.active).focus,:where(.menu li:not(.menu-title):not(.disabled)>details>summary:not(.menu-title)):not(summary):not(.active):focus,:where(.menu li:not(.menu-title):not(.disabled)>details>summary:not(.menu-title)):is(summary):not(.active):focus-visible{cursor:pointer;background-color:hsl(var(--bc) / .1);--tw-text-opacity: 1;color:hsl(var(--bc) / var(--tw-text-opacity));outline:2px solid transparent;outline-offset:2px}.menu li>*:not(ul):not(.menu-title):not(details):active,.menu li>*:not(ul):not(.menu-title):not(details).active,.menu li>details>summary:active{--tw-bg-opacity: 1;background-color:hsl(var(--n) / var(--tw-bg-opacity));--tw-text-opacity: 1;color:hsl(var(--nc) / var(--tw-text-opacity))}.mockup-browser .mockup-browser-toolbar .input{position:relative;margin-left:auto;margin-right:auto;display:block;height:1.75rem;width:24rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));padding-left:2rem}.mockup-browser .mockup-browser-toolbar .input:before{content:"";position:absolute;top:50%;left:.5rem;aspect-ratio:1 / 1;height:.75rem;--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-radius:9999px;border-width:2px;border-color:currentColor;opacity:.6}.mockup-browser .mockup-browser-toolbar .input:after{content:"";position:absolute;top:50%;left:1.25rem;height:.5rem;--tw-translate-y: 25%;--tw-rotate: -45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-radius:9999px;border-width:1px;border-color:currentColor;opacity:.6}@keyframes modal-pop{0%{opacity:0}}@keyframes progress-loading{50%{background-position-x:-115%}}@keyframes radiomark{0%{box-shadow:0 0 0 12px hsl(var(--b1)) inset,0 0 0 12px hsl(var(--b1)) inset}50%{box-shadow:0 0 0 3px hsl(var(--b1)) inset,0 0 0 3px hsl(var(--b1)) inset}to{box-shadow:0 0 0 4px hsl(var(--b1)) inset,0 0 0 4px hsl(var(--b1)) inset}}@keyframes rating-pop{0%{transform:translateY(-.125em)}40%{transform:translateY(-.125em)}to{transform:translateY(0)}}.select:focus{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:hsl(var(--bc) / .2)}.select-disabled,.select:disabled,.select[disabled]{cursor:not-allowed;--tw-border-opacity: 1;border-color:hsl(var(--b2) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));--tw-text-opacity: .2}.select-disabled::-moz-placeholder,.select:disabled::-moz-placeholder,.select[disabled]::-moz-placeholder{color:hsl(var(--bc) / var(--tw-placeholder-opacity));--tw-placeholder-opacity: .2}.select-disabled::placeholder,.select:disabled::placeholder,.select[disabled]::placeholder{color:hsl(var(--bc) / var(--tw-placeholder-opacity));--tw-placeholder-opacity: .2}.select-multiple,.select[multiple],.select[size].select:not([size="1"]){background-image:none;padding-right:1rem}[dir=rtl] .select{background-position:calc(0% + 12px) calc(1px + 50%),calc(0% + 16px) calc(1px + 50%)}.table tr.active,.table tr.active:nth-child(2n),.table-zebra tbody tr:nth-child(2n){--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity))}.table-zebra tr.active,.table-zebra tr.active:nth-child(2n),.table-zebra-zebra tbody tr:nth-child(2n){--tw-bg-opacity: 1;background-color:hsl(var(--b3) / var(--tw-bg-opacity))}@keyframes toast-pop{0%{transform:scale(.9);opacity:0}to{transform:scale(1);opacity:1}}.tooltip.tooltip-primary{--tooltip-color: hsl(var(--p));--tooltip-text-color: hsl(var(--pc))}.tooltip.tooltip-secondary{--tooltip-color: hsl(var(--s));--tooltip-text-color: hsl(var(--sc))}.tooltip.tooltip-accent{--tooltip-color: hsl(var(--a));--tooltip-text-color: hsl(var(--ac))}.tooltip.tooltip-info{--tooltip-color: hsl(var(--in));--tooltip-text-color: hsl(var(--inc))}.tooltip.tooltip-success{--tooltip-color: hsl(var(--su));--tooltip-text-color: hsl(var(--suc))}.tooltip.tooltip-warning{--tooltip-color: hsl(var(--wa));--tooltip-text-color: hsl(var(--wac))}.tooltip.tooltip-error{--tooltip-color: hsl(var(--er));--tooltip-text-color: hsl(var(--erc))}.btm-nav-xs>*:where(.active){border-top-width:1px}.btm-nav-sm>*:where(.active){border-top-width:2px}.btm-nav-md>*:where(.active){border-top-width:2px}.btm-nav-lg>*:where(.active){border-top-width:4px}.join.join-vertical{flex-direction:column}.join.join-vertical .join-item:first-child:not(:last-child),.join.join-vertical *:first-child:not(:last-child) .join-item{border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:inherit;border-top-right-radius:inherit}.join.join-vertical .join-item:last-child:not(:first-child),.join.join-vertical *:last-child:not(:first-child) .join-item{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.join.join-horizontal{flex-direction:row}.join.join-horizontal .join-item:first-child:not(:last-child),.join.join-horizontal *:first-child:not(:last-child) .join-item{border-bottom-right-radius:0;border-top-right-radius:0;border-bottom-left-radius:inherit;border-top-left-radius:inherit}.join.join-horizontal .join-item:last-child:not(:first-child),.join.join-horizontal *:last-child:not(:first-child) .join-item{border-bottom-left-radius:0;border-top-left-radius:0;border-bottom-right-radius:inherit;border-top-right-radius:inherit}.kbd-lg{padding-left:1rem;padding-right:1rem;font-size:1.125rem;line-height:1.75rem;min-height:2.5em;min-width:2.5em}.tooltip{position:relative;display:inline-block;--tooltip-offset: calc(100% + 1px + var(--tooltip-tail, 0px))}.tooltip:before{position:absolute;pointer-events:none;z-index:1;content:var(--tw-content);--tw-content: attr(data-tip)}.tooltip:before,.tooltip-top:before{transform:translate(-50%);top:auto;left:50%;right:auto;bottom:var(--tooltip-offset)}.tooltip-bottom:before{transform:translate(-50%);top:var(--tooltip-offset);left:50%;right:auto;bottom:auto}.card-compact .card-body{padding:1rem;font-size:.875rem;line-height:1.25rem}.card-compact .card-title{margin-bottom:.25rem}.card-normal .card-body{padding:var(--padding-card, 2rem);font-size:1rem;line-height:1.5rem}.card-normal .card-title{margin-bottom:.75rem}.join.join-vertical>:where(*:not(:first-child)){margin-left:0;margin-right:0;margin-top:-1px}.join.join-horizontal>:where(*:not(:first-child)){margin-top:0;margin-bottom:0;margin-left:-1px}.tooltip{position:relative;display:inline-block;text-align:center;--tooltip-tail: .1875rem;--tooltip-color: hsl(var(--n));--tooltip-text-color: hsl(var(--nc));--tooltip-tail-offset: calc(100% + .0625rem - var(--tooltip-tail))}.tooltip:before,.tooltip:after{opacity:0;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-delay:.1s;transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tooltip:after{position:absolute;content:"";border-style:solid;border-width:var(--tooltip-tail, 0);width:0;height:0;display:block}.tooltip:before{max-width:20rem;border-radius:.25rem;padding:.25rem .5rem;font-size:.875rem;line-height:1.25rem;background-color:var(--tooltip-color);color:var(--tooltip-text-color);width:-moz-max-content;width:max-content}.tooltip.tooltip-open:before,.tooltip.tooltip-open:after,.tooltip:hover:before,.tooltip:hover:after{opacity:1;transition-delay:75ms}.tooltip:has(:focus-visible):after,.tooltip:has(:focus-visible):before{opacity:1;transition-delay:75ms}.tooltip:not([data-tip]):hover:before,.tooltip:not([data-tip]):hover:after{visibility:hidden;opacity:0}.tooltip:after,.tooltip-top:after{transform:translate(-50%);border-color:var(--tooltip-color) transparent transparent transparent;top:auto;left:50%;right:auto;bottom:var(--tooltip-tail-offset)}.tooltip-bottom:after{transform:translate(-50%);border-color:transparent transparent var(--tooltip-color) transparent;top:var(--tooltip-tail-offset);left:50%;right:auto;bottom:auto}.bati-widget{--lm: "";--lm2: ""}.listbox{position:relative;display:inline-flex;cursor:pointer;align-items:center;min-height:3rem;height:3rem;padding-left:1rem;padding-right:2.5rem;font-size:.875rem;line-height:1.25rem;line-height:2}.listbox[multiple]{height:auto}.listbox [role=combobox]{flex-grow:1;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;outline:2px solid transparent;outline-offset:2px}.listbox [role=listbox]{position:absolute;top:100%;left:0;z-index:50;width:100%;overflow-y:auto}.listbox [role=combobox]:not([aria-expanded=true])~[role=listbox]{display:none}.listbox [role=listbox] [role=option]{min-height:3rem;box-sizing:border-box;display:inline-flex;height:3rem;width:100%;align-items:center;border-radius:0;padding-left:1rem;padding-right:2.5rem;font-size:.875rem;line-height:1.25rem;line-height:2}.listbox{border-radius:var(--rounded-btn, .5rem);border-width:1px;border-style:solid;border-color:hsl(var(--bc) / var(--tw-border-opacity));--tw-border-opacity: 0;--tw-bg-opacity: 1;background-color:hsl(var(--b1) / var(--tw-bg-opacity));padding-right:2.5rem;font-weight:600;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}.listbox:focus{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:hsl(var(--bc) / .2)}.listbox [role=listbox]{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem;--tw-bg-opacity: 1;background-color:hsl(var(--b1) / var(--tw-bg-opacity));--tw-drop-shadow: drop-shadow(0 20px 13px rgb(0 0 0 / .03)) drop-shadow(0 8px 5px rgb(0 0 0 / .08));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)}.listbox [role=listbox] [role=option][aria-selected=true]{border-width:2px;border-style:solid;border-color:hsl(var(--bc) / .2)}.listbox [role=listbox] [role=option][aria-disabled=true]{cursor:not-allowed;--tw-border-opacity: 1;border-color:hsl(var(--b2) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));opacity:.2}.listbox [role=listbox] [role=option]:last-of-type{border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:.5rem;border-bottom-left-radius:.5rem}.listbox-primary{--tw-border-opacity: 1;border-color:hsl(var(--p) / var(--tw-border-opacity))}.listbox-primary:focus{outline-color:hsl(var(--p) / 1)}.listbox-primary [role=listbox] [role=option][aria-selected=true]{--tw-border-opacity: 1;border-color:hsl(var(--p) / var(--tw-border-opacity))}.listbox-success{--tw-border-opacity: 1;border-color:hsl(var(--su) / var(--tw-border-opacity))}.listbox-success:focus{outline-color:hsl(var(--su) / 1)}.listbox-success [role=listbox] [role=option][aria-selected=true]{--tw-border-opacity: 1;border-color:hsl(var(--su) / var(--tw-border-opacity))}.listbox-disabled,.listbox:disabled,.listbox[disabled],.listbox[aria-disabled=true]{cursor:not-allowed;--tw-border-opacity: 1;border-color:hsl(var(--b2) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));--tw-text-opacity: .2}.listbox-disabled::-moz-placeholder,.listbox:disabled::-moz-placeholder,.listbox[disabled]::-moz-placeholder,.listbox[aria-disabled=true]::-moz-placeholder{color:hsl(var(--bc) / var(--tw-placeholder-opacity));--tw-placeholder-opacity: .2}.listbox-disabled::placeholder,.listbox:disabled::placeholder,.listbox[disabled]::placeholder,.listbox[aria-disabled=true]::placeholder{color:hsl(var(--bc) / var(--tw-placeholder-opacity));--tw-placeholder-opacity: .2}.listbox-disabled,.listbox:disabled,.listbox[disabled],.listbox[aria-disabled=true]{outline:2px solid transparent!important;outline-offset:2px!important}.listbox-multiple,.listbox[multiple],.listbox[size].listbox:not([size="1"]){background-image:none;padding-right:1rem}.visible{visibility:visible}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.-top-2{top:-.5rem}.bottom-0{bottom:0}.left-2{left:.5rem}.left-2\\.5{left:.625rem}.right-0{right:0}.right-4{right:1rem}.top-0{top:0}.top-2{top:.5rem}.top-2\\.5{top:.625rem}.z-10{z-index:10}.z-30{z-index:30}.mx-auto{margin-left:auto;margin-right:auto}.mt-8{margin-top:2rem}.box-border{box-sizing:border-box}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.max-h-4{max-height:1rem}.w-4\\/5{width:80%}.w-full{width:100%}.max-w-xs{max-width:20rem}.flex-1{flex:1 1 0%}.cursor-default{cursor:default}.select-all{-webkit-user-select:all;-moz-user-select:all;user-select:all}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-\\[repeat\\(auto-fit\\,_minmax\\(14rem\\,_1fr\\)\\)\\]{grid-template-columns:repeat(auto-fit,minmax(14rem,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.gap-2{gap:.5rem}.gap-2\\.5{gap:.625rem}.gap-4{gap:1rem}.gap-8{gap:2rem}.rounded{border-radius:.25rem}.rounded-xl{border-radius:.75rem}.border{border-width:1px}.border-0{border-width:0px}.border-l-0{border-left-width:0px}.border-solid{border-style:solid}.border-base-200{--tw-border-opacity: 1;border-color:hsl(var(--b2) / var(--tw-border-opacity))}.border-primary{--tw-border-opacity: 1;border-color:hsl(var(--p) / var(--tw-border-opacity))}.border-success{--tw-border-opacity: 1;border-color:hsl(var(--su) / var(--tw-border-opacity))}.bg-base-100{--tw-bg-opacity: 1;background-color:hsl(var(--b1) / var(--tw-bg-opacity))}.bg-base-200{--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity))}.bg-base-300{--tw-bg-opacity: 1;background-color:hsl(var(--b3) / var(--tw-bg-opacity))}.fill-base-100{fill:hsl(var(--b1) / 1)}.fill-neutral-800{fill:#262626}.p-4{padding:1rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-16{padding-bottom:4rem}.pb-4{padding-bottom:1rem}.pl-1{padding-left:.25rem}.pl-10{padding-left:2.5rem}.text-left{text-align:left}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.text-8xl{font-size:6rem;line-height:1}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.leading-10{line-height:2.5rem}.text-base-content{--tw-text-opacity: 1;color:hsl(var(--bc) / var(--tw-text-opacity))}.underline{text-decoration-line:underline}.decoration-amber-500{text-decoration-color:#f59e0b}.decoration-fuchsia-700{text-decoration-color:#a21caf}.decoration-sky-500{text-decoration-color:#0ea5e9}.opacity-50{opacity:.5}.opacity-70{opacity:.7}.opacity-80{opacity:.8}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline-1{outline-width:1px}.outline-offset-2{outline-offset:2px}.outline-amber-500{outline-color:#f59e0b}.outline-fuchsia-700{outline-color:#a21caf}.outline-sky-500{outline-color:#0ea5e9}.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)}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.hover\\:opacity-100:hover{opacity:1}.hover\\:outline:hover{outline-style:solid}.group:hover .group-hover\\:scale-110{--tw-scale-x: 1.1;--tw-scale-y: 1.1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@media (prefers-color-scheme: dark){.dark\\:fill-neutral-200{fill:#e5e5e5}}@media (min-width: 640px){.sm\\:w-auto{width:auto}}@media (min-width: 768px){.md\\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width: 1280px){.xl\\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}}
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
value: e = new Proxy(t, ci)
|
|
990
|
+
const dt = Symbol("store-raw"), Y = Symbol("store-node"), E = Symbol("store-has"), Pt = Symbol("store-self");
|
|
991
|
+
function Rt(t) {
|
|
992
|
+
let e = t[p];
|
|
993
|
+
if (!e && (Object.defineProperty(t, p, {
|
|
994
|
+
value: e = new Proxy(t, Be)
|
|
1008
995
|
}), !Array.isArray(t))) {
|
|
1009
996
|
const i = Object.keys(t), r = Object.getOwnPropertyDescriptors(t);
|
|
1010
997
|
for (let o = 0, M = i.length; o < M; o++) {
|
|
@@ -1017,73 +1004,73 @@ function ae(t) {
|
|
|
1017
1004
|
}
|
|
1018
1005
|
return e;
|
|
1019
1006
|
}
|
|
1020
|
-
function
|
|
1007
|
+
function K(t) {
|
|
1021
1008
|
let e;
|
|
1022
|
-
return t != null && typeof t == "object" && (t[
|
|
1009
|
+
return t != null && typeof t == "object" && (t[p] || !(e = Object.getPrototypeOf(t)) || e === Object.prototype || Array.isArray(t));
|
|
1023
1010
|
}
|
|
1024
|
-
function
|
|
1011
|
+
function R(t, e = /* @__PURE__ */ new Set()) {
|
|
1025
1012
|
let i, r, o, M;
|
|
1026
|
-
if (i = t != null && t[
|
|
1013
|
+
if (i = t != null && t[dt])
|
|
1027
1014
|
return i;
|
|
1028
|
-
if (!
|
|
1015
|
+
if (!K(t) || e.has(t))
|
|
1029
1016
|
return t;
|
|
1030
1017
|
if (Array.isArray(t)) {
|
|
1031
1018
|
Object.isFrozen(t) ? t = t.slice(0) : e.add(t);
|
|
1032
1019
|
for (let n = 0, l = t.length; n < l; n++)
|
|
1033
|
-
o = t[n], (r =
|
|
1020
|
+
o = t[n], (r = R(o, e)) !== o && (t[n] = r);
|
|
1034
1021
|
} else {
|
|
1035
1022
|
Object.isFrozen(t) ? t = Object.assign({}, t) : e.add(t);
|
|
1036
1023
|
const n = Object.keys(t), l = Object.getOwnPropertyDescriptors(t);
|
|
1037
|
-
for (let
|
|
1038
|
-
M = n[
|
|
1024
|
+
for (let s = 0, u = n.length; s < u; s++)
|
|
1025
|
+
M = n[s], !l[M].get && (o = t[M], (r = R(o, e)) !== o && (t[M] = r));
|
|
1039
1026
|
}
|
|
1040
1027
|
return t;
|
|
1041
1028
|
}
|
|
1042
|
-
function
|
|
1029
|
+
function q(t, e) {
|
|
1043
1030
|
let i = t[e];
|
|
1044
1031
|
return i || Object.defineProperty(t, e, {
|
|
1045
1032
|
value: i = /* @__PURE__ */ Object.create(null)
|
|
1046
1033
|
}), i;
|
|
1047
1034
|
}
|
|
1048
|
-
function
|
|
1035
|
+
function V(t, e, i) {
|
|
1049
1036
|
if (t[e])
|
|
1050
1037
|
return t[e];
|
|
1051
|
-
const [r, o] =
|
|
1038
|
+
const [r, o] = yt(i, {
|
|
1052
1039
|
equals: !1,
|
|
1053
1040
|
internal: !0
|
|
1054
1041
|
});
|
|
1055
1042
|
return r.$ = o, t[e] = r;
|
|
1056
1043
|
}
|
|
1057
|
-
function
|
|
1044
|
+
function Re(t, e) {
|
|
1058
1045
|
const i = Reflect.getOwnPropertyDescriptor(t, e);
|
|
1059
|
-
return !i || i.get || !i.configurable || e ===
|
|
1046
|
+
return !i || i.get || !i.configurable || e === p || e === Y || (delete i.value, delete i.writable, i.get = () => t[p][e]), i;
|
|
1060
1047
|
}
|
|
1061
|
-
function
|
|
1062
|
-
|
|
1048
|
+
function Vt(t) {
|
|
1049
|
+
ct() && V(q(t, Y), Pt)();
|
|
1063
1050
|
}
|
|
1064
|
-
function
|
|
1065
|
-
return
|
|
1051
|
+
function Ve(t) {
|
|
1052
|
+
return Vt(t), Reflect.ownKeys(t);
|
|
1066
1053
|
}
|
|
1067
|
-
const
|
|
1054
|
+
const Be = {
|
|
1068
1055
|
get(t, e, i) {
|
|
1069
|
-
if (e ===
|
|
1056
|
+
if (e === dt)
|
|
1070
1057
|
return t;
|
|
1071
|
-
if (e ===
|
|
1058
|
+
if (e === p)
|
|
1072
1059
|
return i;
|
|
1073
|
-
if (e ===
|
|
1074
|
-
return
|
|
1075
|
-
const r =
|
|
1060
|
+
if (e === st)
|
|
1061
|
+
return Vt(t), i;
|
|
1062
|
+
const r = q(t, Y), o = r[e];
|
|
1076
1063
|
let M = o ? o() : t[e];
|
|
1077
|
-
if (e ===
|
|
1064
|
+
if (e === Y || e === E || e === "__proto__")
|
|
1078
1065
|
return M;
|
|
1079
1066
|
if (!o) {
|
|
1080
1067
|
const n = Object.getOwnPropertyDescriptor(t, e);
|
|
1081
|
-
|
|
1068
|
+
ct() && (typeof M != "function" || t.hasOwnProperty(e)) && !(n && n.get) && (M = V(r, e, M)());
|
|
1082
1069
|
}
|
|
1083
|
-
return
|
|
1070
|
+
return K(M) ? Rt(M) : M;
|
|
1084
1071
|
},
|
|
1085
1072
|
has(t, e) {
|
|
1086
|
-
return e ===
|
|
1073
|
+
return e === dt || e === p || e === st || e === Y || e === E || e === "__proto__" ? !0 : (ct() && V(q(t, E), e)(), e in t);
|
|
1087
1074
|
},
|
|
1088
1075
|
set() {
|
|
1089
1076
|
return !0;
|
|
@@ -1091,88 +1078,87 @@ const ci = {
|
|
|
1091
1078
|
deleteProperty() {
|
|
1092
1079
|
return !0;
|
|
1093
1080
|
},
|
|
1094
|
-
ownKeys:
|
|
1095
|
-
getOwnPropertyDescriptor:
|
|
1081
|
+
ownKeys: Ve,
|
|
1082
|
+
getOwnPropertyDescriptor: Re
|
|
1096
1083
|
};
|
|
1097
|
-
function
|
|
1084
|
+
function tt(t, e, i, r = !1) {
|
|
1098
1085
|
if (!r && t[e] === i)
|
|
1099
1086
|
return;
|
|
1100
1087
|
const o = t[e], M = t.length;
|
|
1101
|
-
i === void 0 ? (delete t[e], t[
|
|
1102
|
-
let n =
|
|
1103
|
-
if ((l =
|
|
1104
|
-
for (let
|
|
1105
|
-
(l = n[
|
|
1106
|
-
(l =
|
|
1088
|
+
i === void 0 ? (delete t[e], t[E] && t[E][e] && o !== void 0 && t[E][e].$()) : (t[e] = i, t[E] && t[E][e] && o === void 0 && t[E][e].$());
|
|
1089
|
+
let n = q(t, Y), l;
|
|
1090
|
+
if ((l = V(n, e, o)) && l.$(() => i), Array.isArray(t) && t.length !== M) {
|
|
1091
|
+
for (let s = t.length; s < M; s++)
|
|
1092
|
+
(l = n[s]) && l.$();
|
|
1093
|
+
(l = V(n, "length", M)) && l.$(t.length);
|
|
1107
1094
|
}
|
|
1108
|
-
(l = n[
|
|
1095
|
+
(l = n[Pt]) && l.$();
|
|
1109
1096
|
}
|
|
1110
|
-
function
|
|
1097
|
+
function Bt(t, e) {
|
|
1111
1098
|
const i = Object.keys(e);
|
|
1112
1099
|
for (let r = 0; r < i.length; r += 1) {
|
|
1113
1100
|
const o = i[r];
|
|
1114
|
-
|
|
1101
|
+
tt(t, o, e[o]);
|
|
1115
1102
|
}
|
|
1116
1103
|
}
|
|
1117
|
-
function
|
|
1118
|
-
if (typeof e == "function" && (e = e(t)), e =
|
|
1104
|
+
function He(t, e) {
|
|
1105
|
+
if (typeof e == "function" && (e = e(t)), e = R(e), Array.isArray(e)) {
|
|
1119
1106
|
if (t === e)
|
|
1120
1107
|
return;
|
|
1121
1108
|
let i = 0, r = e.length;
|
|
1122
1109
|
for (; i < r; i++) {
|
|
1123
1110
|
const o = e[i];
|
|
1124
|
-
t[i] !== o &&
|
|
1111
|
+
t[i] !== o && tt(t, i, o);
|
|
1125
1112
|
}
|
|
1126
|
-
|
|
1113
|
+
tt(t, "length", r);
|
|
1127
1114
|
} else
|
|
1128
|
-
|
|
1115
|
+
Bt(t, e);
|
|
1129
1116
|
}
|
|
1130
|
-
function
|
|
1117
|
+
function P(t, e, i = []) {
|
|
1131
1118
|
let r, o = t;
|
|
1132
1119
|
if (e.length > 1) {
|
|
1133
1120
|
r = e.shift();
|
|
1134
1121
|
const n = typeof r, l = Array.isArray(t);
|
|
1135
1122
|
if (Array.isArray(r)) {
|
|
1136
|
-
for (let
|
|
1137
|
-
|
|
1123
|
+
for (let s = 0; s < r.length; s++)
|
|
1124
|
+
P(t, [r[s]].concat(e), i);
|
|
1138
1125
|
return;
|
|
1139
1126
|
} else if (l && n === "function") {
|
|
1140
|
-
for (let
|
|
1141
|
-
r(t[
|
|
1127
|
+
for (let s = 0; s < t.length; s++)
|
|
1128
|
+
r(t[s], s) && P(t, [s].concat(e), i);
|
|
1142
1129
|
return;
|
|
1143
1130
|
} else if (l && n === "object") {
|
|
1144
1131
|
const {
|
|
1145
|
-
from:
|
|
1146
|
-
to:
|
|
1132
|
+
from: s = 0,
|
|
1133
|
+
to: u = t.length - 1,
|
|
1147
1134
|
by: a = 1
|
|
1148
1135
|
} = r;
|
|
1149
|
-
for (let
|
|
1150
|
-
|
|
1136
|
+
for (let c = s; c <= u; c += a)
|
|
1137
|
+
P(t, [c].concat(e), i);
|
|
1151
1138
|
return;
|
|
1152
1139
|
} else if (e.length > 1) {
|
|
1153
|
-
|
|
1140
|
+
P(t[r], e, [r].concat(i));
|
|
1154
1141
|
return;
|
|
1155
1142
|
}
|
|
1156
1143
|
o = t[r], i = [r].concat(i);
|
|
1157
1144
|
}
|
|
1158
1145
|
let M = e[0];
|
|
1159
|
-
typeof M == "function" && (M = M(o, i), M === o) || r === void 0 && M == null || (M =
|
|
1146
|
+
typeof M == "function" && (M = M(o, i), M === o) || r === void 0 && M == null || (M = R(M), r === void 0 || K(o) && K(M) && !Array.isArray(M) ? Bt(o, M) : tt(t, r, M));
|
|
1160
1147
|
}
|
|
1161
|
-
function
|
|
1162
|
-
const i =
|
|
1148
|
+
function Je(...[t, e]) {
|
|
1149
|
+
const i = R(t || {}), r = Array.isArray(i), o = Rt(i);
|
|
1163
1150
|
function M(...n) {
|
|
1164
|
-
|
|
1165
|
-
r && n.length === 1 ?
|
|
1151
|
+
pt(() => {
|
|
1152
|
+
r && n.length === 1 ? He(i, n[0]) : P(i, n);
|
|
1166
1153
|
});
|
|
1167
1154
|
}
|
|
1168
1155
|
return [o, M];
|
|
1169
1156
|
}
|
|
1170
|
-
const
|
|
1157
|
+
const _e = {
|
|
1171
1158
|
label: "Framework",
|
|
1172
|
-
inview: !0,
|
|
1173
1159
|
features: [
|
|
1174
1160
|
{
|
|
1175
|
-
label: "SolidJS
|
|
1161
|
+
label: "SolidJS",
|
|
1176
1162
|
value: "solid",
|
|
1177
1163
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjA4ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIyNTYgMjM5IDI1NiAyMzkiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0ibG9nb3NTb2xpZGpzSWNvbjAiIHgxPSIyNy41IiB4Mj0iMTUyIiB5MT0iMyIgeTI9IjYzLjUiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjQ5LjU2IDIzMy4xMikgc2NhbGUoMS42MTAwNikiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9Ii4xIiBzdG9wLWNvbG9yPSIjNzZiM2UxIi8+PHN0b3Agb2Zmc2V0PSIuMyIgc3RvcC1jb2xvcj0iI2RjZjJmZCIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzc2YjNlMSIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJsb2dvc1NvbGlkanNJY29uMSIgeDE9Ijk1LjgiIHgyPSI3NCIgeTE9IjMyLjYiIHkyPSIxMDUuMiIgZ3JhZGllbnRUcmFuc2Zvcm09InRyYW5zbGF0ZSgyNDkuNTYgMjMzLjEyKSBzY2FsZSgxLjYxMDA2KSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iIzc2YjNlMSIvPjxzdG9wIG9mZnNldD0iLjUiIHN0b3AtY29sb3I9IiM0Mzc3YmIiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiMxZjNiNzciLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCBpZD0ibG9nb3NTb2xpZGpzSWNvbjIiIHgxPSIxOC40IiB4Mj0iMTQ0LjMiIHkxPSI2NC4yIiB5Mj0iMTQ5LjgiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjQ5LjU2IDIzMy4xMikgc2NhbGUoMS42MTAwNikiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiMzMTVhYTkiLz48c3RvcCBvZmZzZXQ9Ii41IiBzdG9wLWNvbG9yPSIjNTE4YWM4Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMzE1YWE5Ii8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9ImxvZ29zU29saWRqc0ljb24zIiB4MT0iNzUuMiIgeDI9IjI0LjQiIHkxPSI3NC41IiB5Mj0iMjYwLjgiIGdyYWRpZW50VHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjQ5LjU2IDIzMy4xMikgc2NhbGUoMS42MTAwNikiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiM0Mzc3YmIiLz48c3RvcCBvZmZzZXQ9Ii41IiBzdG9wLWNvbG9yPSIjMWEzMzZiIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMWEzMzZiIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZmlsbD0iIzc2YjNlMSIgZD0iTTUxMiAyODkuNDcycy04NS4zMzMtNjIuNzkxLTE1MS4zNDctNDguMzAxbC00LjgyOSAxLjYxYy05LjY2IDMuMjIxLTE3LjcxMSA4LjA1LTIyLjU0MiAxNC40OTFsLTMuMjE5IDQuODI5bC0yNC4xNTIgNDEuODYybDQxLjg2MyA4LjA1MWMxNy43MSAxMS4yNyA0MC4yNTEgMTYuMTAxIDYxLjE4MiAxMS4yN2w3NC4wNjMgMTQuNDkxTDUxMiAyODkuNDcyWiIvPjxwYXRoIGZpbGw9InVybCgjbG9nb3NTb2xpZGpzSWNvbjApIiBkPSJNNTEyIDI4OS40NzJzLTg1LjMzMy02Mi43OTEtMTUxLjM0Ny00OC4zMDFsLTQuODI5IDEuNjFjLTkuNjYgMy4yMjEtMTcuNzExIDguMDUtMjIuNTQyIDE0LjQ5MWwtMy4yMTkgNC44MjlsLTI0LjE1MiA0MS44NjJsNDEuODYzIDguMDUxYzE3LjcxIDExLjI3IDQwLjI1MSAxNi4xMDEgNjEuMTgyIDExLjI3bDc0LjA2MyAxNC40OTFMNTEyIDI4OS40NzJaIiBvcGFjaXR5PSIuMyIvPjxwYXRoIGZpbGw9IiM1MThhYzgiIGQ9Im0zMzMuMjgyIDI4OS40NzJsLTYuNDM5IDEuNjExYy0yNy4zNzEgOC4wNS0zNS40MjEgMzMuODExLTIwLjkzMiA1Ni4zNTJjMTYuMTAxIDIwLjkzMSA0OS45MTMgMzIuMjAxIDc3LjI4NCAyNC4xNTFsOTkuODI0LTMzLjgxMXMtODUuMzM0LTYyLjc5Mi0xNDkuNzM3LTQ4LjMwM1oiLz48cGF0aCBmaWxsPSJ1cmwoI2xvZ29zU29saWRqc0ljb24xKSIgZD0ibTMzMy4yODIgMjg5LjQ3MmwtNi40MzkgMS42MTFjLTI3LjM3MSA4LjA1LTM1LjQyMSAzMy44MTEtMjAuOTMyIDU2LjM1MmMxNi4xMDEgMjAuOTMxIDQ5LjkxMyAzMi4yMDEgNzcuMjg0IDI0LjE1MWw5OS44MjQtMzMuODExcy04NS4zMzQtNjIuNzkyLTE0OS43MzctNDguMzAzWiIgb3BhY2l0eT0iLjMiLz48cGF0aCBmaWxsPSJ1cmwoI2xvZ29zU29saWRqc0ljb24yKSIgZD0iTTQ2NS4zMDggMzYxLjkyNWMtMTguNDM5LTIzLjAzNi00OS4wMDgtMzIuNTg4LTc3LjI4My0yNC4xNWwtOTkuODIzIDMyLjIwMUwyNTYgNDI2LjMyOGwxODAuMzI3IDMwLjU5MmwzMi4yMDEtNTcuOTYzYzYuNDQxLTExLjI3MSA0LjgzMS0yNC4xNS0zLjIyLTM3LjAzMloiLz48cGF0aCBmaWxsPSJ1cmwoI2xvZ29zU29saWRqc0ljb24zKSIgZD0iTTQzMy4xMDYgNDE4LjI3N2MtMTguNDM5LTIzLjAzNi00OS4wMDYtMzIuNTg4LTc3LjI4Mi0yNC4xNUwyNTYgNDI2LjMyOHM4NS4zMzMgNjQuNDAyIDE1MS4zNDYgNDguMzAzbDQuODMtMS42MTJjMjcuMzcxLTguMDQ5IDM3LjAzMS0zMy44MSAyMC45My01NC43NDJaIi8+PC9zdmc+",
|
|
1178
1164
|
selected: !0
|
|
@@ -1183,55 +1169,74 @@ const gi = {
|
|
|
1183
1169
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjEzZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDIyOCI+PHBhdGggZmlsbD0iIzAwRDhGRiIgZD0iTTIxMC40ODMgNzMuODI0YTE3MS40OSAxNzEuNDkgMCAwIDAtOC4yNC0yLjU5N2MuNDY1LTEuOS44OTMtMy43NzcgMS4yNzMtNS42MjFjNi4yMzgtMzAuMjgxIDIuMTYtNTQuNjc2LTExLjc2OS02Mi43MDhjLTEzLjM1NS03LjctMzUuMTk2LjMyOS01Ny4yNTQgMTkuNTI2YTE3MS4yMyAxNzEuMjMgMCAwIDAtNi4zNzUgNS44NDhhMTU1Ljg2NiAxNTUuODY2IDAgMCAwLTQuMjQxLTMuOTE3QzEwMC43NTkgMy44MjkgNzcuNTg3LTQuODIyIDYzLjY3MyAzLjIzM0M1MC4zMyAxMC45NTcgNDYuMzc5IDMzLjg5IDUxLjk5NSA2Mi41ODhhMTcwLjk3NCAxNzAuOTc0IDAgMCAwIDEuODkyIDguNDhjLTMuMjguOTMyLTYuNDQ1IDEuOTI0LTkuNDc0IDIuOThDMTcuMzA5IDgzLjQ5OCAwIDk4LjMwNyAwIDExMy42NjhjMCAxNS44NjUgMTguNTgyIDMxLjc3OCA0Ni44MTIgNDEuNDI3YTE0NS41MiAxNDUuNTIgMCAwIDAgNi45MjEgMi4xNjVhMTY3LjQ2NyAxNjcuNDY3IDAgMCAwLTIuMDEgOS4xMzhjLTUuMzU0IDI4LjItMS4xNzMgNTAuNTkxIDEyLjEzNCA1OC4yNjZjMTMuNzQ0IDcuOTI2IDM2LjgxMi0uMjIgNTkuMjczLTE5Ljg1NWExNDUuNTY3IDE0NS41NjcgMCAwIDAgNS4zNDItNC45MjNhMTY4LjA2NCAxNjguMDY0IDAgMCAwIDYuOTIgNi4zMTRjMjEuNzU4IDE4LjcyMiA0My4yNDYgMjYuMjgyIDU2LjU0IDE4LjU4NmMxMy43MzEtNy45NDkgMTguMTk0LTMyLjAwMyAxMi40LTYxLjI2OGExNDUuMDE2IDE0NS4wMTYgMCAwIDAtMS41MzUtNi44NDJjMS42Mi0uNDggMy4yMS0uOTc0IDQuNzYtMS40ODhjMjkuMzQ4LTkuNzIzIDQ4LjQ0My0yNS40NDMgNDguNDQzLTQxLjUyYzAtMTUuNDE3LTE3Ljg2OC0zMC4zMjYtNDUuNTE3LTM5Ljg0NFptLTYuMzY1IDcwLjk4NGMtMS40LjQ2My0yLjgzNi45MS00LjMgMS4zNDVjLTMuMjQtMTAuMjU3LTcuNjEyLTIxLjE2My0xMi45NjMtMzIuNDMyYzUuMTA2LTExIDkuMzEtMjEuNzY3IDEyLjQ1OS0zMS45NTdjMi42MTkuNzU4IDUuMTYgMS41NTcgNy42MSAyLjRjMjMuNjkgOC4xNTYgMzguMTQgMjAuMjEzIDM4LjE0IDI5LjUwNGMwIDkuODk2LTE1LjYwNiAyMi43NDMtNDAuOTQ2IDMxLjE0Wm0tMTAuNTE0IDIwLjgzNGMyLjU2MiAxMi45NCAyLjkyNyAyNC42NCAxLjIzIDMzLjc4N2MtMS41MjQgOC4yMTktNC41OSAxMy42OTgtOC4zODIgMTUuODkzYy04LjA2NyA0LjY3LTI1LjMyLTEuNC00My45MjctMTcuNDEyYTE1Ni43MjYgMTU2LjcyNiAwIDAgMS02LjQzNy01Ljg3YzcuMjE0LTcuODg5IDE0LjQyMy0xNy4wNiAyMS40NTktMjcuMjQ2YzEyLjM3Ni0xLjA5OCAyNC4wNjgtMi44OTQgMzQuNjcxLTUuMzQ1YTEzNC4xNyAxMzQuMTcgMCAwIDEgMS4zODYgNi4xOTNaTTg3LjI3NiAyMTQuNTE1Yy03Ljg4MiAyLjc4My0xNC4xNiAyLjg2My0xNy45NTUuNjc1Yy04LjA3NS00LjY1Ny0xMS40MzItMjIuNjM2LTYuODUzLTQ2Ljc1MmExNTYuOTIzIDE1Ni45MjMgMCAwIDEgMS44NjktOC40OTljMTAuNDg2IDIuMzIgMjIuMDkzIDMuOTg4IDM0LjQ5OCA0Ljk5NGM3LjA4NCA5Ljk2NyAxNC41MDEgMTkuMTI4IDIxLjk3NiAyNy4xNWExMzQuNjY4IDEzNC42NjggMCAwIDEtNC44NzcgNC40OTJjLTkuOTMzIDguNjgyLTE5Ljg4NiAxNC44NDItMjguNjU4IDE3Ljk0Wk01MC4zNSAxNDQuNzQ3Yy0xMi40ODMtNC4yNjctMjIuNzkyLTkuODEyLTI5Ljg1OC0xNS44NjNjLTYuMzUtNS40MzctOS41NTUtMTAuODM2LTkuNTU1LTE1LjIxNmMwLTkuMzIyIDEzLjg5Ny0yMS4yMTIgMzcuMDc2LTI5LjI5M2MyLjgxMy0uOTggNS43NTctMS45MDUgOC44MTItMi43NzNjMy4yMDQgMTAuNDIgNy40MDYgMjEuMzE1IDEyLjQ3NyAzMi4zMzJjLTUuMTM3IDExLjE4LTkuMzk5IDIyLjI0OS0xMi42MzQgMzIuNzkyYTEzNC43MTggMTM0LjcxOCAwIDAgMS02LjMxOC0xLjk3OVptMTIuMzc4LTg0LjI2Yy00LjgxMS0yNC41ODctMS42MTYtNDMuMTM0IDYuNDI1LTQ3Ljc4OWM4LjU2NC00Ljk1OCAyNy41MDIgMi4xMTEgNDcuNDYzIDE5LjgzNWExNDQuMzE4IDE0NC4zMTggMCAwIDEgMy44NDEgMy41NDVjLTcuNDM4IDcuOTg3LTE0Ljc4NyAxNy4wOC0yMS44MDggMjYuOTg4Yy0xMi4wNCAxLjExNi0yMy41NjUgMi45MDgtMzQuMTYxIDUuMzA5YTE2MC4zNDIgMTYwLjM0MiAwIDAgMS0xLjc2LTcuODg3Wm0xMTAuNDI3IDI3LjI2OGEzNDcuOCAzNDcuOCAwIDAgMC03Ljc4NS0xMi44MDNjOC4xNjggMS4wMzMgMTUuOTk0IDIuNDA0IDIzLjM0MyA0LjA4Yy0yLjIwNiA3LjA3Mi00Ljk1NiAxNC40NjUtOC4xOTMgMjIuMDQ1YTM4MS4xNTEgMzgxLjE1MSAwIDAgMC03LjM2NS0xMy4zMjJabS00NS4wMzItNDMuODYxYzUuMDQ0IDUuNDY1IDEwLjA5NiAxMS41NjYgMTUuMDY1IDE4LjE4NmEzMjIuMDQgMzIyLjA0IDAgMCAwLTMwLjI1Ny0uMDA2YzQuOTc0LTYuNTU5IDEwLjA2OS0xMi42NTIgMTUuMTkyLTE4LjE4Wk04Mi44MDIgODcuODNhMzIzLjE2NyAzMjMuMTY3IDAgMCAwLTcuMjI3IDEzLjIzOGMtMy4xODQtNy41NTMtNS45MDktMTQuOTgtOC4xMzQtMjIuMTUyYzcuMzA0LTEuNjM0IDE1LjA5My0yLjk3IDIzLjIwOS0zLjk4NGEzMjEuNTI0IDMyMS41MjQgMCAwIDAtNy44NDggMTIuODk3Wm04LjA4MSA2NS4zNTJjLTguMzg1LS45MzYtMTYuMjkxLTIuMjAzLTIzLjU5My0zLjc5M2MyLjI2LTcuMyA1LjA0NS0xNC44ODUgOC4yOTgtMjIuNmEzMjEuMTg3IDMyMS4xODcgMCAwIDAgNy4yNTcgMTMuMjQ2YzIuNTk0IDQuNDggNS4yOCA4Ljg2OCA4LjAzOCAxMy4xNDdabTM3LjU0MiAzMS4wM2MtNS4xODQtNS41OTItMTAuMzU0LTExLjc3OS0xNS40MDMtMTguNDMzYzQuOTAyLjE5MiA5Ljg5OS4yOSAxNC45NzguMjljNS4yMTggMCAxMC4zNzYtLjExNyAxNS40NTMtLjM0M2MtNC45ODUgNi43NzQtMTAuMDE4IDEyLjk3LTE1LjAyOCAxOC40ODZabTUyLjE5OC01Ny44MTdjMy40MjIgNy44IDYuMzA2IDE1LjM0NSA4LjU5NiAyMi41MmMtNy40MjIgMS42OTQtMTUuNDM2IDMuMDU4LTIzLjg4IDQuMDcxYTM4Mi40MTcgMzgyLjQxNyAwIDAgMCA3Ljg1OS0xMy4wMjZhMzQ3LjQwMyAzNDcuNDAzIDAgMCAwIDcuNDI1LTEzLjU2NVptLTE2Ljg5OCA4LjEwMWEzNTguNTU3IDM1OC41NTcgMCAwIDEtMTIuMjgxIDE5LjgxNWEzMjkuNCAzMjkuNCAwIDAgMS0yMy40NDQuODIzYy03Ljk2NyAwLTE1LjcxNi0uMjQ4LTIzLjE3OC0uNzMyYTMxMC4yMDIgMzEwLjIwMiAwIDAgMS0xMi41MTMtMTkuODQ2aC4wMDFhMzA3LjQxIDMwNy40MSAwIDAgMS0xMC45MjMtMjAuNjI3YTMxMC4yNzggMzEwLjI3OCAwIDAgMSAxMC44OS0yMC42MzdsLS4wMDEuMDAxYTMwNy4zMTggMzA3LjMxOCAwIDAgMSAxMi40MTMtMTkuNzYxYzcuNjEzLS41NzYgMTUuNDItLjg3NiAyMy4zMS0uODc2SDEyOGM3LjkyNiAwIDE1Ljc0My4zMDMgMjMuMzU0Ljg4M2EzMjkuMzU3IDMyOS4zNTcgMCAwIDEgMTIuMzM1IDE5LjY5NWEzNTguNDg5IDM1OC40ODkgMCAwIDEgMTEuMDM2IDIwLjU0YTMyOS40NzIgMzI5LjQ3MiAwIDAgMS0xMSAyMC43MjJabTIyLjU2LTEyMi4xMjRjOC41NzIgNC45NDQgMTEuOTA2IDI0Ljg4MSA2LjUyIDUxLjAyNmMtLjM0NCAxLjY2OC0uNzMgMy4zNjctMS4xNSA1LjA5Yy0xMC42MjItMi40NTItMjIuMTU1LTQuMjc1LTM0LjIzLTUuNDA4Yy03LjAzNC0xMC4wMTctMTQuMzIzLTE5LjEyNC0yMS42NC0yNy4wMDhhMTYwLjc4OSAxNjAuNzg5IDAgMCAxIDUuODg4LTUuNGMxOC45LTE2LjQ0NyAzNi41NjQtMjIuOTQxIDQ0LjYxMi0xOC4zWk0xMjggOTAuODA4YzEyLjYyNSAwIDIyLjg2IDEwLjIzNSAyMi44NiAyMi44NnMtMTAuMjM1IDIyLjg2LTIyLjg2IDIyLjg2cy0yMi44Ni0xMC4yMzUtMjIuODYtMjIuODZzMTAuMjM1LTIyLjg2IDIyLjg2LTIyLjg2WiIvPjwvc3ZnPg=="
|
|
1184
1170
|
},
|
|
1185
1171
|
{
|
|
1186
|
-
label: "Vue
|
|
1172
|
+
label: "Vue",
|
|
1187
1173
|
value: "vue",
|
|
1188
|
-
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjE2ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDIyMSI+PHBhdGggZmlsbD0iIzQxQjg4MyIgZD0iTTIwNC44IDBIMjU2TDEyOCAyMjAuOEwwIDBoOTcuOTJMMTI4IDUxLjJMMTU3LjQ0IDBoNDcuMzZaIi8+PHBhdGggZmlsbD0iIzQxQjg4MyIgZD0ibTAgMGwxMjggMjIwLjhMMjU2IDBoLTUxLjJMMTI4IDEzMi40OEw1MC41NiAwSDBaIi8+PHBhdGggZmlsbD0iIzM1NDk1RSIgZD0iTTUwLjU2IDBMMTI4IDEzMy4xMkwyMDQuOCAwaC00Ny4zNkwxMjggNTEuMkw5Ny45MiAwSDUwLjU2WiIvPjwvc3ZnPg=="
|
|
1189
|
-
disabled: !0
|
|
1174
|
+
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjE2ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDIyMSI+PHBhdGggZmlsbD0iIzQxQjg4MyIgZD0iTTIwNC44IDBIMjU2TDEyOCAyMjAuOEwwIDBoOTcuOTJMMTI4IDUxLjJMMTU3LjQ0IDBoNDcuMzZaIi8+PHBhdGggZmlsbD0iIzQxQjg4MyIgZD0ibTAgMGwxMjggMjIwLjhMMjU2IDBoLTUxLjJMMTI4IDEzMi40OEw1MC41NiAwSDBaIi8+PHBhdGggZmlsbD0iIzM1NDk1RSIgZD0iTTUwLjU2IDBMMTI4IDEzMy4xMkwyMDQuOCAwaC00Ny4zNkwxMjggNTEuMkw5Ny45MiAwSDUwLjU2WiIvPjwvc3ZnPg=="
|
|
1190
1175
|
}
|
|
1191
1176
|
]
|
|
1192
|
-
},
|
|
1177
|
+
}, Fe = {
|
|
1178
|
+
label: "CSS",
|
|
1179
|
+
features: [
|
|
1180
|
+
{
|
|
1181
|
+
label: "TailwindCSS",
|
|
1182
|
+
value: "tailwindcss",
|
|
1183
|
+
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjY3ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDE1NCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJsb2dvc1RhaWx3aW5kY3NzSWNvbjAiIHgxPSItMi43NzglIiB4Mj0iMTAwJSIgeTE9IjMyJSIgeTI9IjY3LjU1NiUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMyMjk4QkQiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwRUQ3QjUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cGF0aCBmaWxsPSJ1cmwoI2xvZ29zVGFpbHdpbmRjc3NJY29uMCkiIGQ9Ik0xMjggMEM5My44NjcgMCA3Mi41MzMgMTcuMDY3IDY0IDUxLjJDNzYuOCAzNC4xMzMgOTEuNzMzIDI3LjczMyAxMDguOCAzMmM5LjczNyAyLjQzNCAxNi42OTcgOS40OTkgMjQuNDAxIDE3LjMxOEMxNDUuNzUxIDYyLjA1NyAxNjAuMjc1IDc2LjggMTkyIDc2LjhjMzQuMTMzIDAgNTUuNDY3LTE3LjA2NyA2NC01MS4yYy0xMi44IDE3LjA2Ny0yNy43MzMgMjMuNDY3LTQ0LjggMTkuMmMtOS43MzctMi40MzQtMTYuNjk3LTkuNDk5LTI0LjQwMS0xNy4zMThDMTc0LjI0OSAxNC43NDMgMTU5LjcyNSAwIDEyOCAwWk02NCA3Ni44QzI5Ljg2NyA3Ni44IDguNTMzIDkzLjg2NyAwIDEyOGMxMi44LTE3LjA2NyAyNy43MzMtMjMuNDY3IDQ0LjgtMTkuMmM5LjczNyAyLjQzNCAxNi42OTcgOS40OTkgMjQuNDAxIDE3LjMxOEM4MS43NTEgMTM4Ljg1NyA5Ni4yNzUgMTUzLjYgMTI4IDE1My42YzM0LjEzMyAwIDU1LjQ2Ny0xNy4wNjcgNjQtNTEuMmMtMTIuOCAxNy4wNjctMjcuNzMzIDIzLjQ2Ny00NC44IDE5LjJjLTkuNzM3LTIuNDM0LTE2LjY5Ny05LjQ5OS0yNC40MDEtMTcuMzE4QzExMC4yNDkgOTEuNTQzIDk1LjcyNSA3Ni44IDY0IDc2LjhaIi8+PC9zdmc+",
|
|
1184
|
+
selected: !0
|
|
1185
|
+
},
|
|
1186
|
+
{
|
|
1187
|
+
label: "MUI",
|
|
1188
|
+
value: "mui",
|
|
1189
|
+
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjE2ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDIyMiI+PHBhdGggZmlsbD0iIzAwN0ZGRiIgZD0iTTIxNS43NzEgMTUxLjEwN2E3LjExMSA3LjExMSAwIDAgMCAzLjU3LTYuMTQ0bC4xMjgtNDEuMTUzYTcuMTExIDcuMTExIDAgMCAxIDMuNTctNi4xNDVsMjIuMzA4LTEyLjgxNEE3LjExMSA3LjExMSAwIDAgMSAyNTYgOTEuMDE2djc0LjgxOGE3LjExIDcuMTEgMCAwIDEtMy41NyA2LjE2NmwtODQuMTkgNDguMzU3YTcuMTExIDcuMTExIDAgMCAxLTcuMDcuMDA3bC02Ni4wNy0zNy43OWE3LjExMSA3LjExMSAwIDAgMS0zLjU4NS02LjE3MnYtMzcuNzI2YzAtLjA0Mi4wNS0uMDcuMDkzLS4wNWMuMDM1LjAyMi4wODUgMCAuMDg1LS4wNXYtLjA0MmMwLS4wMjguMDE0LS4wNTcuMDQzLS4wNzFsNTQuNDE2LTMxLjI2MWMuMDUtLjAyOS4wMjgtLjEwNy0uMDI5LS4xMDdhLjA1Ny4wNTcgMCAwIDEtLjA1Ny0uMDU3bC4xMDctMzYuOTg2YTcuMTExIDcuMTExIDAgMCAwLTEwLjY2Ny02LjE4N0w5NS4wNjQgODcuMTdhNy4xMTEgNy4xMTEgMCAwIDEtNy4wOTcgMGwtNDAuNTctMjMuMzZhNy4xMTEgNy4xMTEgMCAwIDAtMTAuNjYgNi4xNTh2NjYuODQ2YTcuMTExIDcuMTExIDAgMCAxLTEwLjYzOCA2LjE4TDMuNTg0IDEzMC4xMkE3LjExMSA3LjExMSAwIDAgMSAwIDEyMy45MzVMLjIgNy4wOTVBNy4xMTEgNy4xMTEgMCAwIDEgMTAuODUxLjk0Nkw4Ny45NzQgNDUuMjRhNy4xMTEgNy4xMTEgMCAwIDAgNy4wODMgMGw3Ny4xLTQ0LjI5NmE3LjExMSA3LjExMSAwIDAgMSAxMC42NTMgNi4xNzJ2MTE2Ljg2N2E3LjExMSA3LjExMSAwIDAgMS0zLjU2MiA2LjE2NmwtNDAuMzc4IDIzLjI1NGE3LjExMSA3LjExMSAwIDAgMCAuMDI4IDEyLjMzOGwyMi4yNzMgMTIuNjhhNy4xMTEgNy4xMTEgMCAwIDAgNy4wNjEtLjAxNWw0Ny41NC0yNy4zWm00LjY3Mi0xMDQuODM1YTcuMTExIDcuMTExIDAgMCAwIDEwLjc2NyA2LjA5NGwyMS4zMzQtMTIuOEE3LjExMSA3LjExMSAwIDAgMCAyNTYgMzMuNDcyVjcuMzg3QTcuMTExIDcuMTExIDAgMCAwIDI0NS4yMzMgMS4zTDIyMy45IDE0LjFhNy4xMTEgNy4xMTEgMCAwIDAtMy40NTcgNi4wOTV2MjYuMDg0di0uMDA3WiIvPjwvc3ZnPg==",
|
|
1190
|
+
disabled: !0,
|
|
1191
|
+
alt: "Coming Soon"
|
|
1192
|
+
}
|
|
1193
|
+
]
|
|
1194
|
+
}, $e = {
|
|
1193
1195
|
label: "Auth",
|
|
1194
1196
|
features: [
|
|
1195
1197
|
{
|
|
1196
|
-
label: "
|
|
1198
|
+
label: "Auth.js",
|
|
1197
1199
|
value: "authjs",
|
|
1198
1200
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0iIzg4ODg4OCIgZD0ibTUwLjAyNyAxMC40NTlsLS4wMTgtLjAzMmwtMzMuNjA2IDE5LjQwNGwuMDc2LjEzMnYyMi44OTNoLjAxNGMuMjg2IDE5LjExMSAxNC44NTkgMzQuNzU1IDMzLjUxOSAzNi43MThjMTguNjYtMS45NjIgMzMuMjM0LTE3LjYwNiAzMy41MTktMzYuNzE4VjI5Ljk1M2wuMDY2LS4xMTRsLTMzLjU3LTE5LjM4em0tLjAxNSA2OS4wOTdWNTEuNjc3SDI2LjQzNVYzNS42NTFMNTAuMDEyIDIyLjA0djI5LjYzN2gyMy41NjN2MS4xNzloLjAxN2MtLjI3OCAxMy41OTMtMTAuNDM5IDI0Ljc5OC0yMy41OCAyNi43eiIvPjwvc3ZnPg==",
|
|
1199
1201
|
selected: !0
|
|
1200
1202
|
},
|
|
1201
1203
|
{
|
|
1202
|
-
label: "Auth0
|
|
1204
|
+
label: "Auth0",
|
|
1203
1205
|
value: "auth0",
|
|
1204
1206
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIwLjllbSIgaGVpZ2h0PSIxZW0iIHZpZXdCb3g9IjAgMCAyNTYgMjg1Ij48cGF0aCBkPSJNMjIwLjQxMiAwaC05Mi40MTVsMjguNTYyIDg5LjAwNmg5Mi40MTZsLTc0Ljc3IDUzLjA3N2wyOC41NyA4OS41MTFjNDguMTI4LTM1LjA2IDYzLjg1NC04OC4xMiA0Ni4yMDgtMTQyLjU4OEwyMjAuNDEzIDBaTTcuMDE4IDg5LjAwNmg5Mi40MTZMMTI3Ljk5NyAwSDM1LjU4OUw3LjAxOSA4OS4wMDZjLTE3LjY1NSA1NC40NjgtMS45MiAxMDcuNTI5IDQ2LjIwNyAxNDIuNTg4bDI4LjU2My04OS41MWwtNzQuNzctNTMuMDc4Wm00Ni4yMDggMTQyLjU4OGw3NC43NyA1Mi45N2w3NC43Ny01Mi45N2wtNzQuNzctNTMuODQ3bC03NC43NyA1My44NDdaIi8+PC9zdmc+",
|
|
1205
|
-
disabled: !0
|
|
1207
|
+
disabled: !0,
|
|
1208
|
+
alt: "Coming Soon"
|
|
1206
1209
|
},
|
|
1207
1210
|
{
|
|
1208
|
-
label: "Firebase
|
|
1211
|
+
label: "Firebase",
|
|
1209
1212
|
value: "firebase",
|
|
1210
1213
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIwLjczZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDM1MSI+PGRlZnM+PGZpbHRlciBpZD0ibG9nb3NGaXJlYmFzZTAiIHdpZHRoPSIyMDAlIiBoZWlnaHQ9IjIwMCUiIHg9Ii01MCUiIHk9Ii01MCUiIGZpbHRlclVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PGZlR2F1c3NpYW5CbHVyIGluPSJTb3VyY2VBbHBoYSIgcmVzdWx0PSJzaGFkb3dCbHVySW5uZXIxIiBzdGREZXZpYXRpb249IjE3LjUiLz48ZmVPZmZzZXQgaW49InNoYWRvd0JsdXJJbm5lcjEiIHJlc3VsdD0ic2hhZG93T2Zmc2V0SW5uZXIxIi8+PGZlQ29tcG9zaXRlIGluPSJzaGFkb3dPZmZzZXRJbm5lcjEiIGluMj0iU291cmNlQWxwaGEiIGsyPSItMSIgazM9IjEiIG9wZXJhdG9yPSJhcml0aG1ldGljIiByZXN1bHQ9InNoYWRvd0lubmVySW5uZXIxIi8+PGZlQ29sb3JNYXRyaXggaW49InNoYWRvd0lubmVySW5uZXIxIiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAuMDYgMCIvPjwvZmlsdGVyPjxmaWx0ZXIgaWQ9ImxvZ29zRmlyZWJhc2UxIiB3aWR0aD0iMjAwJSIgaGVpZ2h0PSIyMDAlIiB4PSItNTAlIiB5PSItNTAlIiBmaWx0ZXJVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxmZUdhdXNzaWFuQmx1ciBpbj0iU291cmNlQWxwaGEiIHJlc3VsdD0ic2hhZG93Qmx1cklubmVyMSIgc3RkRGV2aWF0aW9uPSIzLjUiLz48ZmVPZmZzZXQgZHg9IjEiIGR5PSItOSIgaW49InNoYWRvd0JsdXJJbm5lcjEiIHJlc3VsdD0ic2hhZG93T2Zmc2V0SW5uZXIxIi8+PGZlQ29tcG9zaXRlIGluPSJzaGFkb3dPZmZzZXRJbm5lcjEiIGluMj0iU291cmNlQWxwaGEiIGsyPSItMSIgazM9IjEiIG9wZXJhdG9yPSJhcml0aG1ldGljIiByZXN1bHQ9InNoYWRvd0lubmVySW5uZXIxIi8+PGZlQ29sb3JNYXRyaXggaW49InNoYWRvd0lubmVySW5uZXIxIiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAuMDkgMCIvPjwvZmlsdGVyPjxwYXRoIGlkPSJsb2dvc0ZpcmViYXNlMiIgZD0ibTEuMjUzIDI4MC43MzJsMS42MDUtMy4xMzFsOTkuMzUzLTE4OC41MThsLTQ0LjE1LTgzLjQ3NUM1NC4zOTItMS4yODMgNDUuMDc0LjQ3NCA0My44NyA4LjE4OEwxLjI1MyAyODAuNzMyWiIvPjxwYXRoIGlkPSJsb2dvc0ZpcmViYXNlMyIgZD0ibTEzNC40MTcgMTQ4Ljk3NGwzMi4wMzktMzIuODEybC0zMi4wMzktNjEuMDA3Yy0zLjA0Mi01Ljc5MS0xMC40MzMtNi4zOTgtMTMuNDQzLS41OWwtMTcuNzA1IDM0LjEwOWwtLjUzIDEuNzQ0bDMxLjY3OCA1OC41NTZaIi8+PC9kZWZzPjxwYXRoIGZpbGw9IiNGRkMyNEEiIGQ9Im0wIDI4Mi45OThsMi4xMjMtMi45NzJMMTAyLjUyNyA4OS41MTJsLjIxMi0yLjAxN0w1OC40OCA0LjM1OEM1NC43Ny0yLjYwNiA0NC4zMy0uODQ1IDQzLjExNCA2Ljk1MUwwIDI4Mi45OThaIi8+PHVzZSBmaWxsPSIjRkZBNzEyIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGhyZWY9IiNsb2dvc0ZpcmViYXNlMiIvPjx1c2UgZmlsdGVyPSJ1cmwoI2xvZ29zRmlyZWJhc2UwKSIgaHJlZj0iI2xvZ29zRmlyZWJhc2UyIi8+PHBhdGggZmlsbD0iI0Y0QkQ2MiIgZD0ibTEzNS4wMDUgMTUwLjM4bDMyLjk1NS0zMy43NWwtMzIuOTY1LTYyLjkzYy0zLjEyOS01Ljk1Ny0xMS44NjYtNS45NzUtMTQuOTYyIDBMMTAyLjQyIDg3LjI4N3YyLjg2bDMyLjU4NCA2MC4yMzNaIi8+PHVzZSBmaWxsPSIjRkZBNTBFIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGhyZWY9IiNsb2dvc0ZpcmViYXNlMyIvPjx1c2UgZmlsdGVyPSJ1cmwoI2xvZ29zRmlyZWJhc2UxKSIgaHJlZj0iI2xvZ29zRmlyZWJhc2UzIi8+PHBhdGggZmlsbD0iI0Y2ODIwQyIgZD0ibTAgMjgyLjk5OGwuOTYyLS45NjhsMy40OTYtMS40MmwxMjguNDc3LTEyOGwxLjYyOC00LjQzMWwtMzIuMDUtNjEuMDc0eiIvPjxwYXRoIGZpbGw9IiNGREUwNjgiIGQ9Im0xMzkuMTIxIDM0Ny41NTFsMTE2LjI3NS02NC44NDdsLTMzLjIwNC0yMDQuNDk1Yy0xLjAzOS02LjM5OC04Ljg4OC04LjkyNy0xMy40NjgtNC4zNEwwIDI4Mi45OThsMTE1LjYwOCA2NC41NDhhMjQuMTI2IDI0LjEyNiAwIDAgMCAyMy41MTMuMDA1Ii8+PHBhdGggZmlsbD0iI0ZDQ0EzRiIgZD0iTTI1NC4zNTQgMjgyLjE2TDIyMS40MDIgNzkuMjE4Yy0xLjAzLTYuMzUtNy41NTgtOC45NzctMTIuMTAzLTQuNDI0TDEuMjkgMjgyLjZsMTE0LjMzOSA2My45MDhhMjMuOTQzIDIzLjk0MyAwIDAgMCAyMy4zMzQuMDA2bDExNS4zOTItNjQuMzU1WiIvPjxwYXRoIGZpbGw9IiNFRUFCMzciIGQ9Ik0xMzkuMTIgMzQ1LjY0YTI0LjEyNiAyNC4xMjYgMCAwIDEtMjMuNTEyLS4wMDVMLjkzMSAyODIuMDE1bC0uOTMuOTgzbDExNS42MDcgNjQuNTQ4YTI0LjEyNiAyNC4xMjYgMCAwIDAgMjMuNTEzLjAwNWwxMTYuMjc1LTY0Ljg0N2wtLjI4NS0xLjc1MmwtMTE1Ljk5IDY0LjY4OVoiLz48L3N2Zz4=",
|
|
1211
|
-
disabled: !0
|
|
1214
|
+
disabled: !0,
|
|
1215
|
+
alt: "Coming Soon"
|
|
1212
1216
|
}
|
|
1213
1217
|
]
|
|
1214
|
-
},
|
|
1218
|
+
}, Xe = {
|
|
1215
1219
|
label: "RPC",
|
|
1216
1220
|
features: [
|
|
1217
1221
|
{
|
|
1218
|
-
label: "Telefunc
|
|
1222
|
+
label: "Telefunc",
|
|
1219
1223
|
value: "telefunc",
|
|
1220
1224
|
image: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDcuMDIiIGhlaWdodD0iNDcuMDIiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDQ3LjAyIDQ3LjAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogPGNpcmNsZSBjeD0iMjMuNTEiIGN5PSIyMy41MSIgcj0iMjEuOTUiIGZpbGw9IiNmN2UwMTgiIHN0cm9rZT0iIzMxMzQzZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIzLjEyIiBzdHlsZT0icGFpbnQtb3JkZXI6bm9ybWFsIi8+CiA8ZyB0cmFuc2Zvcm09Im1hdHJpeCguOTU1MDMgMCAwIC45NTUwMyAuMzQ0MDUgMS4wMTE3KSIgZmlsbD0iIzMxMzQzZCIgc2hhcGUtcmVuZGVyaW5nPSJhdXRvIj4KICA8cGF0aCBkPSJtMjEuODA0IDEzLjkxMyA2LjQzMzMgOS42NDU4LTYuNDMzMyA5LjY0NDFoNS44ODI0bDMuNDkzLTUuMjM1MiAzLjQ5MTMgNS4yMzUyaDUuODgyNGwtMTIuODY3LTE5LjI5eiIgY29sb3I9IiMwMDAwMDAiIGNvbG9yLXJlbmRlcmluZz0iYXV0byIgZG9taW5hbnQtYmFzZWxpbmU9ImF1dG8iIGltYWdlLXJlbmRlcmluZz0iYXV0byIgc29saWQtY29sb3I9IiMwMDAwMDAiIHN0eWxlPSJmb250LWZlYXR1cmUtc2V0dGluZ3M6bm9ybWFsO2ZvbnQtdmFyaWFudC1hbHRlcm5hdGVzOm5vcm1hbDtmb250LXZhcmlhbnQtY2Fwczpub3JtYWw7Zm9udC12YXJpYW50LWxpZ2F0dXJlczpub3JtYWw7Zm9udC12YXJpYW50LW51bWVyaWM6bm9ybWFsO2ZvbnQtdmFyaWFudC1wb3NpdGlvbjpub3JtYWw7aXNvbGF0aW9uOmF1dG87bWl4LWJsZW5kLW1vZGU6bm9ybWFsO3NoYXBlLXBhZGRpbmc6MDt0ZXh0LWRlY29yYXRpb24tY29sb3I6IzAwMDAwMDt0ZXh0LWRlY29yYXRpb24tbGluZTpub25lO3RleHQtZGVjb3JhdGlvbi1zdHlsZTpzb2xpZDt0ZXh0LWluZGVudDowO3RleHQtb3JpZW50YXRpb246bWl4ZWQ7dGV4dC10cmFuc2Zvcm06bm9uZTt3aGl0ZS1zcGFjZTpub3JtYWwiLz4KICA8cGF0aCBkPSJtMTQuODgyIDEzLjkxMyA2LjQzMzMgOS42NDU4LTYuNDMzMyA5LjY0NDFoNS44ODI0YzIuMDg1NS0zLjI5MTEgNC4wNDUyLTYuMjk1OSA2LjIyMjEtOS45NjE4bC02LjIyMjEtOS4zMjgxeiIgY29sb3I9IiMwMDAwMDAiIGNvbG9yLXJlbmRlcmluZz0iYXV0byIgZG9taW5hbnQtYmFzZWxpbmU9ImF1dG8iIGZpbGwtb3BhY2l0eT0iLjU3MzE1IiBpbWFnZS1yZW5kZXJpbmc9ImF1dG8iIHNvbGlkLWNvbG9yPSIjMDAwMDAwIiBzdHlsZT0iZm9udC1mZWF0dXJlLXNldHRpbmdzOm5vcm1hbDtmb250LXZhcmlhbnQtYWx0ZXJuYXRlczpub3JtYWw7Zm9udC12YXJpYW50LWNhcHM6bm9ybWFsO2ZvbnQtdmFyaWFudC1saWdhdHVyZXM6bm9ybWFsO2ZvbnQtdmFyaWFudC1udW1lcmljOm5vcm1hbDtmb250LXZhcmlhbnQtcG9zaXRpb246bm9ybWFsO2lzb2xhdGlvbjphdXRvO21peC1ibGVuZC1tb2RlOm5vcm1hbDtzaGFwZS1wYWRkaW5nOjA7dGV4dC1kZWNvcmF0aW9uLWNvbG9yOiMwMDAwMDA7dGV4dC1kZWNvcmF0aW9uLWxpbmU6bm9uZTt0ZXh0LWRlY29yYXRpb24tc3R5bGU6c29saWQ7dGV4dC1pbmRlbnQ6MDt0ZXh0LW9yaWVudGF0aW9uOm1peGVkO3RleHQtdHJhbnNmb3JtOm5vbmU7d2hpdGUtc3BhY2U6bm9ybWFsIi8+CiAgPHBhdGggZD0ibTcuOTYwNCAxMy45MTMgNi40MzMzIDkuNjQ1OC02LjQzMzMgOS42NDQxaDUuODgyNGMyLjA4NTUtMy4yOTExIDQuMDQ1Mi02LjI5NTkgNi4yMjIxLTkuOTYxOGwtNi4yMjIxLTkuMzI4MXoiIGNvbG9yPSIjMDAwMDAwIiBjb2xvci1yZW5kZXJpbmc9ImF1dG8iIGRvbWluYW50LWJhc2VsaW5lPSJhdXRvIiBmaWxsLW9wYWNpdHk9Ii4yNzY1NSIgaW1hZ2UtcmVuZGVyaW5nPSJhdXRvIiBzb2xpZC1jb2xvcj0iIzAwMDAwMCIgc3R5bGU9ImZvbnQtZmVhdHVyZS1zZXR0aW5nczpub3JtYWw7Zm9udC12YXJpYW50LWFsdGVybmF0ZXM6bm9ybWFsO2ZvbnQtdmFyaWFudC1jYXBzOm5vcm1hbDtmb250LXZhcmlhbnQtbGlnYXR1cmVzOm5vcm1hbDtmb250LXZhcmlhbnQtbnVtZXJpYzpub3JtYWw7Zm9udC12YXJpYW50LXBvc2l0aW9uOm5vcm1hbDtpc29sYXRpb246YXV0bzttaXgtYmxlbmQtbW9kZTpub3JtYWw7c2hhcGUtcGFkZGluZzowO3RleHQtZGVjb3JhdGlvbi1jb2xvcjojMDAwMDAwO3RleHQtZGVjb3JhdGlvbi1saW5lOm5vbmU7dGV4dC1kZWNvcmF0aW9uLXN0eWxlOnNvbGlkO3RleHQtaW5kZW50OjA7dGV4dC1vcmllbnRhdGlvbjptaXhlZDt0ZXh0LXRyYW5zZm9ybTpub25lO3doaXRlLXNwYWNlOm5vcm1hbCIvPgogPC9nPgo8L3N2Zz4K",
|
|
1221
1225
|
selected: !0
|
|
1222
1226
|
},
|
|
1223
1227
|
{
|
|
1224
|
-
label: "tRPC
|
|
1228
|
+
label: "tRPC",
|
|
1225
1229
|
value: "trpc",
|
|
1226
1230
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIwLjg0ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDMwNSI+PHBhdGggZmlsbD0iIzM5OENDQiIgZD0iTTI4LjU3IDI0NC40ODRoMjEuOTgydjExLjE1M0gyOC41NzF2MjUuMzA4YTE2Ljg4IDE2Ljg4IDAgMCAwIC43MzggNS4zNjRhOC4xNTIgOC4xNTIgMCAwIDAgMi4wODggMy40YTcuODE1IDcuODE1IDAgMCAwIDMuMyAxLjg1MWMxLjIzNS4zMyAyLjUwNC41MSAzLjc4LjUzNmwuNTQ3LjAwMmMxLjE1IDAgMi4zMzggMCAzLjU2My0uMTYybC43MjctLjA5bDEuNDA5LS4xNmMuNDYxLS4wNTQuOTE1LS4xMTMgMS4zNjYtLjE4OGwuNjYtLjEwNWwxLjI0LS4xODRjLjQwMS0uMDYuNzktLjEyNCAxLjE3NS0uMTk5bC45MTgtLjE4NGwuNDI3LS4wOWwuNzktLjE3NmwuMzY2LS4wODdsMS40NzYgMTAuMzlhMTguNTA1IDE4LjUwNSAwIDAgMS0zLjc1MiAxLjZhMzUuOSAzNS45IDAgMCAxLTQuNTEzIDEuMTEzYy0xLjYuMy0zLjI2NC41MjYtNS4wMDIuNjg4YTU0LjI4IDU0LjI4IDAgMCAxLTUuMDg5LjIzOGEyOC4zOTYgMjguMzk2IDAgMCAxLTguNzUyLTEuMjVhMTYuODMgMTYuODMgMCAwIDEtNi43MjctNC4wMDJhMTcuMzQzIDE3LjM0MyAwIDAgMS00LjMwMi02Ljg1MmEyOS4xOTYgMjkuMTk2IDAgMCAxLTEuNTI1LTEwLjAwM3YtMjYuNzU4SDB2LTExLjE1M2gxMy40NDF2LTE0LjQxN2gxNS4xM3YxNC40MTdabTUzLjg4IDI5LjI3MXYyOS42MDlINjcuMTU2di03OS4yMzZoMjYuNjJhNDIuNTIgNDIuNTIgMCAwIDEgMTEuOTE2IDEuNTVhMjYuNjcgMjYuNjcgMCAwIDEgOS4xNCA0LjU1MmExOS44OCAxOS44OCAwIDAgMSA1Ljc5IDcuNTAyYTI0LjU3IDI0LjU3IDAgMCAxIDIuMDUgMTAuMzRhMjYuNzIgMjYuNzIgMCAwIDEtMS4wMTIgNy42NGEyMC4zMzEgMjAuMzMxIDAgMCAxLTcuNDAzIDEwLjgwNGEzMC4wOTYgMzAuMDk2IDAgMCAxLTUuOTAxIDMuNDg4bDE3LjAzIDMyLjY5N3YuNzEzaC0xNi40NDNMOTQuMDQgMjczLjc1NUg4Mi40NVptLjAxMi0xMi40MjhoMTEuMzE1YTE3Ljg2OCAxNy44NjggMCAwIDAgNi4yNTItMWExMC44NjYgMTAuODY2IDAgMCAwIDQuMzktMi45MTRhMTAuNTI4IDEwLjUyOCAwIDAgMCAyLjExMi0zLjU4OWMuNDQ4LTEuMzU4LjY5Mi0yLjc3NS43MjMtNC4yMDNsLjAwMi0uNTM2YTE1LjEwNCAxNS4xMDQgMCAwIDAtLjk1LTUuNTc2YTkuODY1IDkuODY1IDAgMCAwLTIuODUtNC4wMDFhMTIuMDY2IDEyLjA2NiAwIDAgMC00LjE0LTIuMTc2YTE5LjE0MyAxOS4xNDMgMCAwIDAtNC45Ny0uNzZsLTExLjg4NC0uMDAzdjI0Ljc1OFptNjcuODQ1IDQyLjAzN0gxMzUuMDR2LTc5LjIzNmgyNy4wOTVhMzQuNDEgMzQuNDEgMCAwIDEgMTEuNzAzIDEuODc2YTI2LjYzMyAyNi42MzMgMCAwIDEgOC45MjggNS4yMDFhMjMuMzA3IDIzLjMwNyAwIDAgMSA1LjYyNyA4LjA1M2EyNi4zNTggMjYuMzU4IDAgMCAxIDEuOTg4IDkuNzIzdi42NjdhMjQuMTcgMjQuMTcgMCAwIDEtMS45ODggOS44NTNhMjIuNTA3IDIyLjUwNyAwIDAgMS01LjYyNyA3Ljc3N2EyNi4zNyAyNi4zNyAwIDAgMS04Ljk2NSA1LjE3N2EzNC43MjMgMzQuNzIzIDAgMCAxLTExLjcwNCAxLjg1aC0xMS44MDNsLjAxMyAyOS4wNTlabTAtNDEuNDYyaDExLjgwM2ExNS4wMDQgMTUuMDA0IDAgMCAwIDUuNjY0LS45ODhhMTEuNTUzIDExLjU1MyAwIDAgMCA0LjAyNi0yLjY2M2ExMS4xNzggMTEuMTc4IDAgMCAwIDIuMzY0LTMuODg5Yy41My0xLjQ3Ni44LTMuMDMzLjgtNC42MDFhMTYuMzY3IDE2LjM2NyAwIDAgMC0uOC01LjE2NGExMS45NjYgMTEuOTY2IDAgMCAwLTIuMzY0LTQuMjAyYTExLjU5IDExLjU5IDAgMCAwLTQuMDI2LTIuODI1YTE0LjI2NyAxNC4yNjcgMCAwIDAtNS42NjQtMS4wMzhoLTExLjgwM3YyNS4zN1ptMTAzLjA0MiAyNy40MmEyNS4zMDcgMjUuMzA3IDAgMCAxLTUuOTAyIDguMTY1YTI2LjA0NSAyNi4wNDUgMCAwIDEtOC44MTUgNS4yMDJhMzMuNjQ3IDMzLjY0NyAwIDAgMS0xMC41NTggMS44MTRsLS43Ny0uMDAxYTMwLjc1OSAzMC43NTkgMCAwIDEtOS4wNTMtMS4yNWEyNS4zNDUgMjUuMzQ1IDAgMCAxLTcuNTAyLTMuNjc3YTI1LjcwNyAyNS43MDcgMCAwIDEtNS40MTQtNS4zODlhMzMuNjcyIDMzLjY3MiAwIDAgMS00LjAwMS02Ljk2NGE0MS41NzUgNDEuNTc1IDAgMCAxLTIuNDEzLTguMzc4YTUzLjQwOCA1My40MDggMCAwIDEtLjg1MS05LjY5di0xMC42NjZhNTMuNDMgNTMuNDMgMCAwIDEgLjc2My05LjExNWEzOS40MTEgMzkuNDExIDAgMCAxIDEuOTUtNy4xNjFsLjMzOC0uODY2YTMwLjQwOSAzMC40MDkgMCAwIDEgNC41NzctOC4wNTNhMjkuMjcxIDI5LjI3MSAwIDAgMSA2LjQxNC01Ljk3NmEyNi4xNTggMjYuMTU4IDAgMCAxIDcuMDUyLTMuMTg5YTI5LjEwOCAyOS4xMDggMCAwIDEgNy40OC0xLjExbC43Ni0uMDAzYTMzLjc2IDMzLjc2IDAgMCAxIDExLjYxNiAxLjg1YTIzLjc1NyAyMy43NTcgMCAwIDEgMTQuMzQyIDEzLjY1NWEzNy40MTEgMzcuNDExIDAgMCAxIDIuNjEzIDExLjE1M2gtMTUuMjNjLS4wOS0yLjEyLS40NDItNC4yMi0xLjA1LTYuMjUyYTEyLjM1NCAxMi4zNTQgMCAwIDAtMi40MjUtNC40NjNhMTAuNDE2IDEwLjQxNiAwIDAgMC00LjA1Mi0yLjYzOWExNi43MyAxNi43MyAwIDAgMC01LjgwMS0uOWExNC4yNDIgMTQuMjQyIDAgMCAwLTMuMzUxLjM4OGMtMSAuMjQzLTEuOTU5LjYyNi0yLjg1MSAxLjEzN2ExMS4zMjggMTEuMzI4IDAgMCAwLTMuNzUxIDMuNzUyYTIxLjk2OSAyMS45NjkgMCAwIDAtMi41MDEgNS42MzlhMzQuMDEgMzQuMDEgMCAwIDAtMS4wMjUgNS41MjZhNTguNzY3IDU4Ljc2NyAwIDAgMC0uMzI1IDYuNTAydjEwLjc2NmE2MS4yOCA2MS4yOCAwIDAgMCAuNTEyIDguNDY1YTI4LjkyIDI4LjkyIDAgMCAwIDEuNiA2LjUwMmExNS45OTIgMTUuOTkyIDAgMCAwIDEuODI2IDMuMzc2Yy42NjcuOTYgMS40ODcgMS44MDQgMi40MjYgMi41YTEwLjAwMyAxMC4wMDMgMCAwIDAgMy4yODggMS42YTE0LjU2IDE0LjU2IDAgMCAwIDQuMDUyLjUyNmExNy45MTggMTcuOTE4IDAgMCAwIDUuMzg5LS43NjNhMTAuMzAzIDEwLjMwMyAwIDAgMCA0LjA4OC0yLjRhMTEuMjUzIDExLjI1MyAwIDAgMCAyLjY2NC00LjE5YTIwLjk2OSAyMC45NjkgMCAwIDAgMS4yNS02LjE1SDI1NmEzMC4zOTYgMzAuMzk2IDAgMCAxLTIuNjUgMTAuNzI3Wk0xODYuMzggOTIuNDAybDM4LjQ4NiAyMi4yMnY0NC40NjJsLTM4LjQ4NiAyMi4yMmwtMTcuMDg1LTkuODgxbC00MS41NDUgMjMuOTg0bC00MS4yOTYtMjMuODQ3bC0xNi44NDYgOS43NDNsLTM4LjQ4Ni0yMi4yNTZWMTE0LjYybDM4LjQ4Ni0yMi4yMTlsMzguNDg2IDIyLjIydjQ0LjQyNWwtMTEuNjQzIDYuNzMzbDMxLjI5OSAxOC4wNzRsMzEuNTQ4LTE4LjIxMmwtMTEuNDA1LTYuNTk1VjExNC42MmwzOC40ODctMjIuMjE5Wk0xNTcuODk2IDEyNi4ydjI3LjEybDIzLjQ4MiAxMy41NTV2LTI3LjEyTDE1Ny44OTYgMTI2LjJabTU2Ljk2Ny0uMDM3bC0yMy40ODIgMTMuNTU0djI3LjE1OGwyMy40ODItMTMuNTkydi0yNy4xMlptLTE3My43MzggMHYyNy4xMmwyMy40ODEgMTMuNTU0di0yNy4xMmwtMjMuNDgxLTEzLjU1NFptNTYuOTY2IDBMNzQuNjEgMTM5LjcxNnYyNy4xMmwyMy40ODItMTMuNTU0di0yNy4xMlptODguMjg5LTIyLjE4MmwtMjMuNDgyIDEzLjU1NGwyMy40ODIgMTMuNTY3bDIzLjQ4MS0xMy41NjdsLTIzLjQ4MS0xMy41NTRabS0xMTYuNzcyLS4wMzdsLTIzLjQ4MiAxMy41OTFsMjMuNDgyIDEzLjUzbDIzLjQ4Mi0xMy41M2wtMjMuNDgyLTEzLjU5MVptMTkuMTQzLTY4LjkydjExLjU0bC0zNS42MSAyMC41N3YzNC43NzJsLTEwLjAwMyA1Ljc3N1Y2MS4zNTVMODguNzUgMzUuMDIzWk0xMjcuMjM3IDBsMzguNTEyIDIyLjIxOXYxMi4yMTlsNDYuNjEzIDI2LjkxN3Y0Ni4wMzlsLTEwLjAwMy01Ljc3N1Y2Ny4xMzJsLTM2LjYxLTIxLjE0MXYyMC42NjZsLTM4LjQ4NyAyMi4yMTlsLTM4LjQ4Ni0yMi4yMTlWMjIuMjE5TDEyNy4yMzcgMFpNOTguNzggMzMuNzZ2MjcuMTJsMjMuNDU3IDEzLjU1NFY0Ny4zMjZMOTguNzc5IDMzLjc2Wm01Ni45NDIgMGwtMjMuNDU3IDEzLjU2NnYyNy4wOTZMMTU1LjcyIDYwLjg4VjMzLjc2Wm0tMjguNDg0LTIyLjIwN0wxMDMuNzggMjUuMTA3bDIzLjQ1NyAxMy41NTRsMjMuNDgyLTEzLjU1NGwtMjMuNDgyLTEzLjU1NFoiLz48L3N2Zz4=",
|
|
1227
|
-
disabled: !0
|
|
1231
|
+
disabled: !0,
|
|
1232
|
+
alt: "Coming Soon"
|
|
1228
1233
|
}
|
|
1229
1234
|
]
|
|
1230
|
-
},
|
|
1235
|
+
}, Ke = {
|
|
1231
1236
|
label: "Server",
|
|
1232
1237
|
features: [
|
|
1233
1238
|
{
|
|
1234
|
-
label: "
|
|
1239
|
+
label: "HatTip",
|
|
1235
1240
|
value: "hattip",
|
|
1236
1241
|
image: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgMjYzIDIyOCIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoyOyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBpZD0iSGF0VGlwTG9nbyIgdHJhbnNmb3JtPSJtYXRyaXgoMSwgMCwgMCwgMSwgMC43MTcxMDUsIDcuODg4MTU4KSI+CiAgICA8cGF0aCBkPSJNMzQuNjMsMTYyLjMxMWMtMCwwIC0xMi4xNjEsLTYxLjc4IC0xMi42NzksLTgxLjAxOGMwLC0wIDEuODkyLC01My4zNDIgNzUuMDU3LC02OC41OGMwLDAgNzkuMTcxLC0zMC4wNzYgMTA1LjUzOCwyNC4zMzZjMCwtMCAyMy4wNDMsNTcuMzIzIDI1LjM0LDc2Ljg5Yy0wLC0wIC01NC40NywzOS4wNzMgLTE5MS44MjEsNTQuMzY3bC0xLjQzNSwtNS45OTVaIiBzdHlsZT0iZmlsbDojMjMzNjNmO2ZpbGwtcnVsZTpub256ZXJvOyIvPgogICAgPHBhdGggZD0iTTM5LjI3NywxODEuNjkybC0zLjIxMiwtMTMuMzg2YzAsMCAxMjEuOTM0LC0xMS4yMzUgMTkxLjgyMSwtNTQuMzY3bDMuODg3LDE2LjIwNGMtMCwwIC04OS4xLDU5LjYzNyAtMTkyLjQ5Niw1MS41NDlaIiBzdHlsZT0iZmlsbDojMDRiNTc4O2ZpbGwtcnVsZTpub256ZXJvOyIvPgogICAgPHBhdGggZD0iTTMzLjg1MiwxNTguMDI0bDUuNDI1LDIzLjY2OGMtMCwtMCA4OS4wNTksMTEuMTM3IDE5Mi40OTYsLTUxLjU0OWwtMy44ODcsLTE2LjIwNGwyNC44ODksLTEyLjAwNmMwLDAgNy4yMzEsLTMuOTczIDQuNTI0LDcuNDgxYy0wLC0wIDEuNjM5LDU3Ljk1MyAtMTMwLjI1MSw4Ny4zMTRjLTEyNi43NTQsMjguMjE4IC0xMzEuMzg1LC0zMi41NzUgLTExNy4wOTQsLTM1LjYxM2wyMy44OTgsLTMuMDkxWiIgc3R5bGU9ImZpbGw6IzIzMzY0MDtmaWxsLXJ1bGU6bm9uemVybzsiLz4KICA8L2c+Cjwvc3ZnPg==",
|
|
1237
1242
|
selected: !0
|
|
@@ -1241,23 +1246,7 @@ const gi = {
|
|
|
1241
1246
|
value: "express"
|
|
1242
1247
|
}
|
|
1243
1248
|
]
|
|
1244
|
-
},
|
|
1245
|
-
label: "CSS",
|
|
1246
|
-
features: [
|
|
1247
|
-
{
|
|
1248
|
-
label: "TailwindCSS",
|
|
1249
|
-
value: "tailwindcss",
|
|
1250
|
-
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjY3ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDE1NCI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJsb2dvc1RhaWx3aW5kY3NzSWNvbjAiIHgxPSItMi43NzglIiB4Mj0iMTAwJSIgeTE9IjMyJSIgeTI9IjY3LjU1NiUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMyMjk4QkQiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwRUQ3QjUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cGF0aCBmaWxsPSJ1cmwoI2xvZ29zVGFpbHdpbmRjc3NJY29uMCkiIGQ9Ik0xMjggMEM5My44NjcgMCA3Mi41MzMgMTcuMDY3IDY0IDUxLjJDNzYuOCAzNC4xMzMgOTEuNzMzIDI3LjczMyAxMDguOCAzMmM5LjczNyAyLjQzNCAxNi42OTcgOS40OTkgMjQuNDAxIDE3LjMxOEMxNDUuNzUxIDYyLjA1NyAxNjAuMjc1IDc2LjggMTkyIDc2LjhjMzQuMTMzIDAgNTUuNDY3LTE3LjA2NyA2NC01MS4yYy0xMi44IDE3LjA2Ny0yNy43MzMgMjMuNDY3LTQ0LjggMTkuMmMtOS43MzctMi40MzQtMTYuNjk3LTkuNDk5LTI0LjQwMS0xNy4zMThDMTc0LjI0OSAxNC43NDMgMTU5LjcyNSAwIDEyOCAwWk02NCA3Ni44QzI5Ljg2NyA3Ni44IDguNTMzIDkzLjg2NyAwIDEyOGMxMi44LTE3LjA2NyAyNy43MzMtMjMuNDY3IDQ0LjgtMTkuMmM5LjczNyAyLjQzNCAxNi42OTcgOS40OTkgMjQuNDAxIDE3LjMxOEM4MS43NTEgMTM4Ljg1NyA5Ni4yNzUgMTUzLjYgMTI4IDE1My42YzM0LjEzMyAwIDU1LjQ2Ny0xNy4wNjcgNjQtNTEuMmMtMTIuOCAxNy4wNjctMjcuNzMzIDIzLjQ2Ny00NC44IDE5LjJjLTkuNzM3LTIuNDM0LTE2LjY5Ny05LjQ5OS0yNC40MDEtMTcuMzE4QzExMC4yNDkgOTEuNTQzIDk1LjcyNSA3Ni44IDY0IDc2LjhaIi8+PC9zdmc+",
|
|
1251
|
-
selected: !0
|
|
1252
|
-
},
|
|
1253
|
-
{
|
|
1254
|
-
label: "MUI - Coming Soon",
|
|
1255
|
-
value: "mui",
|
|
1256
|
-
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjE2ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDIyMiI+PHBhdGggZmlsbD0iIzAwN0ZGRiIgZD0iTTIxNS43NzEgMTUxLjEwN2E3LjExMSA3LjExMSAwIDAgMCAzLjU3LTYuMTQ0bC4xMjgtNDEuMTUzYTcuMTExIDcuMTExIDAgMCAxIDMuNTctNi4xNDVsMjIuMzA4LTEyLjgxNEE3LjExMSA3LjExMSAwIDAgMSAyNTYgOTEuMDE2djc0LjgxOGE3LjExIDcuMTEgMCAwIDEtMy41NyA2LjE2NmwtODQuMTkgNDguMzU3YTcuMTExIDcuMTExIDAgMCAxLTcuMDcuMDA3bC02Ni4wNy0zNy43OWE3LjExMSA3LjExMSAwIDAgMS0zLjU4NS02LjE3MnYtMzcuNzI2YzAtLjA0Mi4wNS0uMDcuMDkzLS4wNWMuMDM1LjAyMi4wODUgMCAuMDg1LS4wNXYtLjA0MmMwLS4wMjguMDE0LS4wNTcuMDQzLS4wNzFsNTQuNDE2LTMxLjI2MWMuMDUtLjAyOS4wMjgtLjEwNy0uMDI5LS4xMDdhLjA1Ny4wNTcgMCAwIDEtLjA1Ny0uMDU3bC4xMDctMzYuOTg2YTcuMTExIDcuMTExIDAgMCAwLTEwLjY2Ny02LjE4N0w5NS4wNjQgODcuMTdhNy4xMTEgNy4xMTEgMCAwIDEtNy4wOTcgMGwtNDAuNTctMjMuMzZhNy4xMTEgNy4xMTEgMCAwIDAtMTAuNjYgNi4xNTh2NjYuODQ2YTcuMTExIDcuMTExIDAgMCAxLTEwLjYzOCA2LjE4TDMuNTg0IDEzMC4xMkE3LjExMSA3LjExMSAwIDAgMSAwIDEyMy45MzVMLjIgNy4wOTVBNy4xMTEgNy4xMTEgMCAwIDEgMTAuODUxLjk0Nkw4Ny45NzQgNDUuMjRhNy4xMTEgNy4xMTEgMCAwIDAgNy4wODMgMGw3Ny4xLTQ0LjI5NmE3LjExMSA3LjExMSAwIDAgMSAxMC42NTMgNi4xNzJ2MTE2Ljg2N2E3LjExMSA3LjExMSAwIDAgMS0zLjU2MiA2LjE2NmwtNDAuMzc4IDIzLjI1NGE3LjExMSA3LjExMSAwIDAgMCAuMDI4IDEyLjMzOGwyMi4yNzMgMTIuNjhhNy4xMTEgNy4xMTEgMCAwIDAgNy4wNjEtLjAxNWw0Ny41NC0yNy4zWm00LjY3Mi0xMDQuODM1YTcuMTExIDcuMTExIDAgMCAwIDEwLjc2NyA2LjA5NGwyMS4zMzQtMTIuOEE3LjExMSA3LjExMSAwIDAgMCAyNTYgMzMuNDcyVjcuMzg3QTcuMTExIDcuMTExIDAgMCAwIDI0NS4yMzMgMS4zTDIyMy45IDE0LjFhNy4xMTEgNy4xMTEgMCAwIDAtMy40NTcgNi4wOTV2MjYuMDg0di0uMDA3WiIvPjwvc3ZnPg==",
|
|
1257
|
-
disabled: !0
|
|
1258
|
-
}
|
|
1259
|
-
]
|
|
1260
|
-
}, yi = {
|
|
1249
|
+
}, qe = {
|
|
1261
1250
|
label: "Database",
|
|
1262
1251
|
features: [
|
|
1263
1252
|
{
|
|
@@ -1272,7 +1261,7 @@ const gi = {
|
|
|
1272
1261
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyLjIxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgNTEyIDIzMi43MjciPjxwYXRoIGZpbGw9IiM0RDRENEQiIGQ9Ik00MzMuNjY3IDExNS4yMzhjMCAzNS4zMzMtMTQuMTY3IDQxLjY2Ni0zMC4wMDIgNDEuNjY2SDM3MFY3My41NzFoMzMuNjY2YzE1LjgzNSAwIDMwLjAwMiA2LjMzNCAzMC4wMDIgNDEuNjY3Wm0tMTcuMTY3LjAwNGMwLTI0LjY2Ny03LjUtMjUuODMzLTE4LjMzMy0yNS44MzNoLTEwLjQ5OXY1MS42NjZoMTAuNWMxMC44MzMgMCAxOC4zMzItMS4xNjcgMTguMzMyLTI1LjgzM1ptLTE3OC4zMzYgNDEuNjYyVjczLjU3MWg1My4wMDF2MTUuODM0aC0zNS4zMzR2MTdoMjYuNjY2djE1LjY2NmgtMjYuNjY2djE5aDM1LjMzNHYxNS44MzNoLTUzWk0zMjAgMjMyLjcyN2gxNy40NTVWMEgzMjB2MjMyLjcyN1pNNDY4Ljk5NSAxMTkuOTF2MjEuMTY2aDE0LjY2OGM5LjE2NiAwIDExLjUtNiAxMS41LTEwLjVjMC0zLjUtMS42NjgtMTAuNjY2LTE0LjE2OC0xMC42NjZoLTEyWm0wLTMwLjUwMnYxNS44MzNoMTJjNi44MzMgMCAxMC44MzMtMyAxMC44MzMtOHMtNC03LjgzMy0xMC44MzMtNy44MzNoLTEyWk00NTEuMzM0IDczLjU3aDMzLjk5OGMxNy44MzYgMCAyMy4xNjggMTIuNSAyMy4xNjggMjEuNWMwIDguMzM0LTUuMzMyIDE0LjMzNC05IDE2YzEwLjY2NyA1LjE2NyAxMi41IDE1LjY2NyAxMi41IDIxYzAgNy0zLjUgMjQuODMzLTI2LjY2OCAyNC44MzNoLTMzLjk5OFY3My41NzFabS0zMTQuNjY1IDQxLjY2N2MwIDM1LjMzMy0xNC4xNjcgNDEuNjY2LTMwIDQxLjY2Nkg3My4wMDJWNzMuNTcxaDMzLjY2N2MxNS44MzMgMCAzMCA2LjMzNCAzMCA0MS42NjdabTUxLjk5NyAyNi41MDdjOSAwIDEzLjY2Ni0zIDE1LjMzMy01di05LjE2NmgtMTQuMzM0di0xNC4zMzRoMjguNXYzMy4xNjdjLTIuNSAzLjgzMy0xNi4xNjYgMTEuMzMzLTI4LjY2NiAxMS4zMzNjLTIwLjUgMC0zNy44MzMtOC0zNy44MzMtNDMuMzMzczE3LjUtNDEuNjY2IDMzLjMzMy00MS42NjZjMjQuODMzIDAgMzEgMTMgMzMgMjQuNWwtMTQuNjY3IDMuMzMzYy0uODMzLTUuMzM0LTUuNS0xMi0xNi4xNjYtMTJjLTEwLjgzNCAwLTE4LjMzNCAxLjE2Ni0xOC4zMzQgMjUuODMzYzAgMjQuNjY3IDcuODM0IDI3LjMzMyAxOS44MzQgMjcuMzMzWk0xMTkuNSAxMTUuMjQyYzAtMjQuNjY3LTcuNS0yNS44MzMtMTguMzMzLTI1LjgzM2gtMTAuNXY1MS42NjZoMTAuNWMxMC44MzMgMCAxOC4zMzMtMS4xNjcgMTguMzMzLTI1LjgzM1pNMCAxNTYuOTA0VjczLjU3MWg1M3YxNS44MzRIMTcuNjY3djE3aDI2LjY2NnYxNS42NjZIMTcuNjY3djE5SDUzdjE1LjgzM0gwWiIvPjwvc3ZnPg=="
|
|
1273
1262
|
}
|
|
1274
1263
|
]
|
|
1275
|
-
},
|
|
1264
|
+
}, ti = {
|
|
1276
1265
|
label: "Analytics",
|
|
1277
1266
|
features: [
|
|
1278
1267
|
{
|
|
@@ -1282,586 +1271,476 @@ const gi = {
|
|
|
1282
1271
|
selected: !0
|
|
1283
1272
|
},
|
|
1284
1273
|
{
|
|
1285
|
-
label: "Google Analytics
|
|
1274
|
+
label: "Google Analytics",
|
|
1286
1275
|
value: "google-analytics",
|
|
1287
1276
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIwLjkxZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDI4NCI+PHBhdGggZmlsbD0iI0Y5QUIwMCIgZD0iTTI1Ni4wMDMgMjQ3LjkzM2EzNS4yMjQgMzUuMjI0IDAgMCAxLTM5LjM3NiAzNS4xNjFjLTE4LjA0NC0yLjY3LTMxLjI2Ni0xOC4zNzEtMzAuODI2LTM2LjYwNlYzNi44NDVDMTg1LjM2NSAxOC41OTEgMTk4LjYyIDIuODgxIDIxNi42ODcuMjRhMzUuMjIxIDM1LjIyMSAwIDAgMSAzOS4zMTYgMzUuMTZ2MjEyLjUzM1oiLz48cGF0aCBmaWxsPSIjRTM3NDAwIiBkPSJNMzUuMTAxIDIxMy4xOTNjMTkuMzg2IDAgMzUuMTAxIDE1LjcxNiAzNS4xMDEgMzUuMTAxYzAgMTkuMzg2LTE1LjcxNSAzNS4xMDEtMzUuMTAxIDM1LjEwMVMwIDI2Ny42OCAwIDI0OC4yOTVjMC0xOS4zODYgMTUuNzE1LTM1LjEwMiAzNS4xMDEtMzUuMTAyWm05Mi4zNTgtMTA2LjM4N2MtMTkuNDc3IDEuMDY4LTM0LjU5IDE3LjQwNi0zNC4xMzcgMzYuOTA4djk0LjI4NWMwIDI1LjU4OCAxMS4yNTkgNDEuMTIyIDI3Ljc1NSA0NC40MzNhMzUuMTYxIDM1LjE2MSAwIDAgMCA0Mi4xNDYtMzQuNTZWMTQyLjA4OWEzNS4yMjIgMzUuMjIyIDAgMCAwLTM1Ljc2NC0zNS4yODJaIi8+PC9zdmc+",
|
|
1288
|
-
disabled: !0
|
|
1277
|
+
disabled: !0,
|
|
1278
|
+
alt: "Coming Soon"
|
|
1289
1279
|
},
|
|
1290
1280
|
{
|
|
1291
|
-
label: "Segment
|
|
1281
|
+
label: "Segment",
|
|
1292
1282
|
value: "segment",
|
|
1293
1283
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIwLjk3ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDI2NSI+PHBhdGggZmlsbD0iIzRGQjU4QiIgZD0ibTIzMy41NiAxNDEuOTI3bC4xNy4wMTNsMTcuODkyIDEuODdhNC45MjcgNC45MjcgMCAwIDEgMy4yMjUgMS43MDdsLjEzMy4xNjNsLS4xNy4wODVhNC45MyA0LjkzIDAgMCAxIDEuMDIgMy43NGExMzMuMjcyIDEzMy4yNzIgMCAwIDEtNDEuNjA0IDgxLjA4M2ExMjguODYgMTI4Ljg2IDAgMCAxLTg3LjYyOSAzNC4zOGExMjcuNDg4IDEyNy40ODggMCAwIDEtNDYuMTU2LTguNTdsLS44MDItLjMxMmE0LjcxNiA0LjcxNiAwIDAgMS0yLjY4Ni0yLjUzM2wtLjA3Ny0uMTg3YTQuODkxIDQuODkxIDAgMCAxLS4wODMtMy42Nmw3LjA2Mi0xNy4yM2E0Ljg0NiA0Ljg0NiAwIDAgMSA2LjExOC0yLjc5OWwuMTYzLjA2YzM2LjA5NyAxMy45MzkgNzYuOTggNi4wODkgMTA1LjM0OS0yMC4yMjdhMTA0LjQ1NSAxMDQuNDU1IDAgMCAwIDMyLjg5MS02My4zMmE0LjkzIDQuOTMgMCAwIDEgNS4wMTMtNC4yN2wuMTcuMDA3Wm0tMTkwLjA4IDY0LjMxbC4yNTEtLjAwMmwuMjUzLjAwMmM4LjEyLjA5MyAxNC42NTggNi42NTkgMTQuNzQ2IDE0Ljc0OXYuMjUzYzAgLjA4NCAwIC4xNjgtLjAwMi4yNTJjLS4xNDEgOC4yODQtNi45NyAxNC44ODYtMTUuMjU0IDE0Ljc0NWMtOC4yODQtLjE0MS0xNC44ODUtNi45Ny0xNC43NDUtMTUuMjU0Yy4xMzktOC4xMTUgNi42OTUtMTQuNjE1IDE0Ljc1LTE0Ljc0NVpNNC45MyAxNDcuMDgyaDE0Ni4zMTZhNC45NzMgNC45NzMgMCAwIDEgNC45MjggNC44NDRsLjAwMi4xNzF2MTguMzE2YTQuOTc0IDQuOTc0IDAgMCAxLTQuNzYgNS4wMWwtLjE3LjAwNUg0LjkzQTQuOTc1IDQuOTc1IDAgMCAxIDAgMTcwLjU4NHYtMTguNjU5YTQuOTc1IDQuOTc1IDAgMCAxIDQuNzU1LTQuODM4bC4xNzUtLjAwNVpNMTY5LjU2IDcuMzExYTQuOTc0IDQuOTc0IDAgMCAxIDIuODQ4IDIuNjM1YTUuMDk2IDUuMDk2IDAgMCAxIDAgMy44NjdsLTYuMzc1IDE2Ljk5OWE0Ljg0NSA0Ljg0NSAwIDAgMS02LjE2MiAyLjk3NEExMDEuMjI4IDEwMS4yMjggMCAwIDAgNjIuMTMgNTEuMjUyYTEwNS4yNjcgMTA1LjI2NyAwIDAgMC0zNC41MDcgNTQuOTlhNC45MyA0LjkzIDAgMCAxLTQuNzYgMy42OThoLTEuMTA1TDQuMjUgMTA1LjczM2E0Ljg4NiA0Ljg4NiAwIDAgMS0zLjEwMy0yLjI5NWgtLjA4NUE0LjkyOSA0LjkyOSAwIDAgMSAuNTEgOTkuNTdhMTMzLjM5MyAxMzMuMzkzIDAgMCAxIDQ0LjQxLTcwLjIwNEM3OS43MzkuNyAxMjcuMDE5LTcuNjY2IDE2OS41NiA3LjMxMVptLTY0LjgwNyA3My40MzRIMjUxLjA3YTQuOTcyIDQuOTcyIDAgMCAxIDQuOTIyIDQuNjdsLjAwOC4xNzR2MTguMzE3YTQuOTczIDQuOTczIDAgMCAxLTQuNzYgNS4wMWwtLjE3LjAwNUgxMDQuNzU0YTQuOTcyIDQuOTcyIDAgMCAxLTQuODg2LTQuODQybC0uMDAyLS4xNzNWODUuNzU5YTQuOTcyIDQuOTcyIDAgMCAxIDQuNzE1LTUuMDA4bC4xNzMtLjAwNlptMTAxLjU3Mi01NS44ODNsLjI1Mi0uMDAybC4yNTMuMDAyYzguMTIuMDkzIDE0LjY1OCA2LjY1OSAxNC43NDYgMTQuNzQ4di4yNTNjMCAuMDg1IDAgLjE3LS4wMDIuMjUzYy0uMTQgOC4yODQtNi45NyAxNC44ODUtMTUuMjU0IDE0Ljc0NGMtOC4yODQtLjE0LTE0Ljg4NS02Ljk3LTE0Ljc0NC0xNS4yNTNjLjEzOC04LjExNiA2LjY5NC0xNC42MTYgMTQuNzQ5LTE0Ljc0NVoiLz48L3N2Zz4=",
|
|
1294
|
-
disabled: !0
|
|
1284
|
+
disabled: !0,
|
|
1285
|
+
alt: "Coming Soon"
|
|
1295
1286
|
}
|
|
1296
1287
|
]
|
|
1297
|
-
},
|
|
1298
|
-
disabled: !0,
|
|
1288
|
+
}, ei = {
|
|
1299
1289
|
label: "Hosting",
|
|
1300
1290
|
features: [
|
|
1301
1291
|
{
|
|
1302
|
-
label: "
|
|
1303
|
-
selected: !0
|
|
1304
|
-
},
|
|
1305
|
-
{
|
|
1306
|
-
label: "Vercel - Coming Soon",
|
|
1292
|
+
label: "Vercel",
|
|
1307
1293
|
value: "vercel",
|
|
1308
1294
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjE2ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDIyMiI+PHBhdGggZD0ibTEyOCAwbDEyOCAyMjEuNzA1SDB6Ii8+PC9zdmc+",
|
|
1309
|
-
|
|
1295
|
+
selected: !0
|
|
1310
1296
|
},
|
|
1311
1297
|
{
|
|
1312
|
-
label: "Netlify
|
|
1298
|
+
label: "Netlify",
|
|
1313
1299
|
value: "netlify",
|
|
1314
1300
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjE0ZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDIyNiI+PHBhdGggZmlsbD0iIzA1QkRCQSIgZD0iTTY5LjE4MSAxODguMDg3aC0yLjQxN2wtMTIuMDY1LTEyLjA2NXYtMi40MTdsMTguNDQ0LTE4LjQ0NGgxMi43NzhsMS43MDQgMS43MDR2MTIuNzc4ek01NC42OTkgNTEuNjI4di0yLjQxN2wxMi4wNjUtMTIuMDY1aDIuNDE3TDg3LjYyNSA1NS41OXYxMi43NzhsLTEuNzA0IDEuNzA0SDczLjE0M3oiLz48cGF0aCBmaWxsPSIjMDE0ODQ3IiBkPSJNMTYwLjkwNiAxNDkuMTk4aC0xNy41NTJsLTEuNDY2LTEuNDY2di00MS4wODljMC03LjMxLTIuODczLTEyLjk3Ni0xMS42ODktMTMuMTc0Yy00LjUzNy0uMTE5LTkuNzI3IDAtMTUuMjc0LjIxOGwtLjgzMy44NTJ2NTMuMTczbC0xLjQ2NiAxLjQ2Nkg5NS4wNzRsLTEuNDY2LTEuNDY2di03MC4xOWwxLjQ2Ni0xLjQ2N2gzOS41MDNjMTUuMzU0IDAgMjcuNzk1IDEyLjQ0MSAyNy43OTUgMjcuNzk1djQzLjg4MmwtMS40NjYgMS40NjZaIi8+PHBhdGggZmlsbD0iIzA1QkRCQSIgZD0iTTcxLjY3NyAxMjIuODg5SDEuNDY2TDAgMTIxLjQyM1YxMDMuODNsMS40NjYtMS40NjZoNzAuMjExbDEuNDY2IDEuNDY2djE3LjU5M3ptMTgyLjg1NyAwaC03MC4yMTFsLTEuNDY2LTEuNDY2VjEwMy44M2wxLjQ2Ni0xLjQ2Nmg3MC4yMTFMMjU2IDEwMy44M3YxNy41OTN6TTExNy44NzYgNTQuMTI0VjEuNDY2TDExOS4zNDIgMGgxNy41OTNsMS40NjYgMS40NjZ2NTIuNjU4bC0xLjQ2NiAxLjQ2NmgtMTcuNTkzem0wIDE2OS42NjN2LTUyLjY1OGwxLjQ2Ni0xLjQ2NmgxNy41OTNsMS40NjYgMS40NjZ2NTIuNjU4bC0xLjQ2NiAxLjQ2NWgtMTcuNTkzeiIvPjwvc3ZnPg==",
|
|
1315
|
-
disabled: !0
|
|
1301
|
+
disabled: !0,
|
|
1302
|
+
alt: "Coming Soon"
|
|
1316
1303
|
}
|
|
1317
1304
|
]
|
|
1318
|
-
},
|
|
1305
|
+
}, ii = {
|
|
1319
1306
|
disabled: !0,
|
|
1320
1307
|
label: "Error tracking",
|
|
1321
1308
|
features: [
|
|
1322
1309
|
{
|
|
1323
|
-
label: "
|
|
1324
|
-
selected: !0
|
|
1325
|
-
},
|
|
1326
|
-
{
|
|
1327
|
-
label: "Sentry - Coming Soon",
|
|
1310
|
+
label: "Sentry",
|
|
1328
1311
|
value: "sentry",
|
|
1329
1312
|
image: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxLjEzZW0iIGhlaWdodD0iMWVtIiB2aWV3Qm94PSIwIDAgMjU2IDIyNyI+PHBhdGggZmlsbD0iIzM2MkQ1OSIgZD0iTTE0OC4zNjggMTIuNDAzYTIzLjkzNSAyMy45MzUgMCAwIDAtNDEuMDAzIDBMNzMuNjQgNzAuMTY1YzUyLjQyNiAyNi4xNzQgODcuMDUgNzguMTc3IDkwLjk3NSAxMzYuNjQyaC0yMy42NzljLTMuOTE4LTUwLjExMy0zNC4wNjEtOTQuNDEtNzkuMjM4LTExNi40NDhsLTMxLjIxMyA1My45N2E4MS41OTUgODEuNTk1IDAgMCAxIDQ3LjMwNyA2Mi4zNzVoLTU0LjM4YTMuODk1IDMuODk1IDAgMCAxLTMuMTc4LTUuNjlsMTUuMDY5LTI1LjYyNmE1NS4wNDYgNTUuMDQ2IDAgMCAwLTE3LjIyMS05LjczOEwzLjE2NyAxOTEuMjc3YTIzLjI2OSAyMy4yNjkgMCAwIDAgOC42NjIgMzEuOTgyYTIzLjg4NCAyMy44ODQgMCAwIDAgMTEuNTgzIDMuMDc1aDc0LjQ3MWE5OS40MzIgOTkuNDMyIDAgMCAwLTQxLjAwMy04OC43MmwxMS44NC0yMC41YzM1LjY3OSAyNC41MDQgNTUuNzU0IDY2LjAzOCA1Mi43OSAxMDkuMjJoNjMuMDk0YzIuOTktNjUuNDMtMjkuMDQ3LTEyNy41MTItODQuMTA3LTE2Mi45ODZsMjMuOTM1LTQxLjAwMmEzLjk0NyAzLjk0NyAwIDAgMSA1LjM4Mi0xLjM4NGMyLjcxNiAxLjQ4NiAxMDMuOTkzIDE3OC4yMDggMTA1Ljg5IDE4MC4yNThhMy44OTUgMy44OTUgMCAwIDEtMy40ODYgNS43OTJoLTI0LjM5NmMuMzA3IDYuNTI2LjMwNyAxMy4wMzUgMCAxOS41MjhoMjQuNDk5QTIzLjUyOCAyMy41MjggMCAwIDAgMjU2IDIwMi45MWEyMy4wMTUgMjMuMDE1IDAgMCAwLTMuMTc4LTExLjY4NUwxNDguMzY4IDEyLjQwM1oiLz48L3N2Zz4=",
|
|
1330
|
-
disabled: !0
|
|
1313
|
+
disabled: !0,
|
|
1314
|
+
alt: "Coming Soon"
|
|
1331
1315
|
},
|
|
1332
1316
|
{
|
|
1333
|
-
label: "Logrocket
|
|
1317
|
+
label: "Logrocket",
|
|
1334
1318
|
value: "logrocket",
|
|
1335
1319
|
image: "",
|
|
1336
|
-
disabled: !0
|
|
1320
|
+
disabled: !0,
|
|
1321
|
+
alt: "Coming Soon"
|
|
1337
1322
|
}
|
|
1338
1323
|
]
|
|
1339
|
-
},
|
|
1340
|
-
framework:
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
db:
|
|
1346
|
-
analytics:
|
|
1347
|
-
hosting:
|
|
1348
|
-
error:
|
|
1324
|
+
}, It = {
|
|
1325
|
+
framework: _e,
|
|
1326
|
+
uikit: Fe,
|
|
1327
|
+
auth: $e,
|
|
1328
|
+
rpc: Xe,
|
|
1329
|
+
server: Ke,
|
|
1330
|
+
db: qe,
|
|
1331
|
+
analytics: ti,
|
|
1332
|
+
hosting: ei,
|
|
1333
|
+
error: ii
|
|
1334
|
+
}, ri = /* @__PURE__ */ T('<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 / HatTip / ...) or unselect <span class="font-bold">'), oi = /* @__PURE__ */ T('<span class="inline-block">A <span class="font-bold">HatTip</span> is an experimental project. Prefer Express for production use');
|
|
1335
|
+
function Mi(t) {
|
|
1336
|
+
return {
|
|
1337
|
+
type: "error",
|
|
1338
|
+
value: t
|
|
1339
|
+
};
|
|
1340
|
+
}
|
|
1341
|
+
function ni(t) {
|
|
1342
|
+
return {
|
|
1343
|
+
type: "info",
|
|
1344
|
+
value: t
|
|
1345
|
+
};
|
|
1346
|
+
}
|
|
1347
|
+
const li = {
|
|
1348
|
+
[jt.ERROR_AUTH_R_SERVER]: Mi(() => {
|
|
1349
|
+
const {
|
|
1350
|
+
inViewFeatures: t
|
|
1351
|
+
} = B(W), e = L(() => {
|
|
1352
|
+
var i, r;
|
|
1353
|
+
return (r = (i = t().auth) == null ? void 0 : i.features.find((o) => o.selected)) == null ? void 0 : r.label;
|
|
1354
|
+
});
|
|
1355
|
+
return (() => {
|
|
1356
|
+
const i = ri(), r = i.firstChild, o = r.nextSibling, M = o.nextSibling, n = M.nextSibling, l = n.nextSibling, s = l.nextSibling, u = s.nextSibling, a = u.firstChild, c = a.firstChild, g = c.nextSibling;
|
|
1357
|
+
return j(g, e), i;
|
|
1358
|
+
})();
|
|
1359
|
+
}),
|
|
1360
|
+
[jt.INFO_HATTIP]: ni(() => oi())
|
|
1349
1361
|
};
|
|
1350
|
-
function
|
|
1362
|
+
function ai(t, e) {
|
|
1351
1363
|
return Object.keys(t).reduce(function(i, r) {
|
|
1352
1364
|
return e(t, r) && (i[r] = t[r]), i;
|
|
1353
1365
|
}, {});
|
|
1354
1366
|
}
|
|
1355
|
-
function
|
|
1356
|
-
const [t, e] =
|
|
1357
|
-
function
|
|
1358
|
-
e(a, "inview", (
|
|
1367
|
+
function si() {
|
|
1368
|
+
const [t, e] = Je(It), i = L(() => ai(t, (a, c) => !!a[c].inview));
|
|
1369
|
+
function r(a) {
|
|
1370
|
+
e(a, "inview", (c) => !c);
|
|
1359
1371
|
}
|
|
1360
|
-
function
|
|
1361
|
-
e(a, "features", (g) => g.map((
|
|
1362
|
-
var
|
|
1372
|
+
function o(a, c) {
|
|
1373
|
+
e(a, "features", (g) => g.map((N) => {
|
|
1374
|
+
var d;
|
|
1363
1375
|
return {
|
|
1364
|
-
...
|
|
1365
|
-
selected:
|
|
1376
|
+
...N,
|
|
1377
|
+
selected: c ? c === N.value : (d = It[a].features.find((h) => h.value === N.value)) == null ? void 0 : d.selected
|
|
1366
1378
|
};
|
|
1367
1379
|
}));
|
|
1368
1380
|
}
|
|
1369
|
-
const
|
|
1381
|
+
const M = L(() => Object.assign({}, ...Object.entries(i()).map(([a, c]) => {
|
|
1370
1382
|
var g;
|
|
1371
1383
|
return {
|
|
1372
|
-
[a]: (g =
|
|
1384
|
+
[a]: (g = c.features.find((N) => N.selected)) == null ? void 0 : g.value
|
|
1373
1385
|
};
|
|
1374
|
-
}))),
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1386
|
+
}))), n = L(() => Object.values(i()).map((a) => {
|
|
1387
|
+
var c;
|
|
1388
|
+
return (c = a.features.find((g) => g.selected)) == null ? void 0 : c.label;
|
|
1389
|
+
}).filter(Boolean));
|
|
1390
|
+
function l(a) {
|
|
1391
|
+
const c = a.map((N) => N.includes(":") ? N.split(":")[0] : N), g = a.filter((N) => N.includes(":"));
|
|
1392
|
+
pt(() => {
|
|
1393
|
+
Object.keys(t).forEach((N) => {
|
|
1394
|
+
e(N, "inview", c.includes(N));
|
|
1395
|
+
}), g.forEach((N) => {
|
|
1396
|
+
const [d, h] = N.split(":");
|
|
1397
|
+
o(d, h);
|
|
1398
|
+
});
|
|
1380
1399
|
});
|
|
1381
1400
|
}
|
|
1401
|
+
const s = L(() => Object.entries(i()).map(([a, c]) => c.features.filter((g) => g.selected).map((g) => `${a}:${g.value}`)).flat(1).filter(Boolean)), u = L(() => {
|
|
1402
|
+
const a = Pe(s(), li);
|
|
1403
|
+
return {
|
|
1404
|
+
size: a.length,
|
|
1405
|
+
error: a.filter((c) => c.type === "error").map((c) => c.value),
|
|
1406
|
+
warning: a.filter((c) => c.type === "warning").map((c) => c.value),
|
|
1407
|
+
info: a.filter((c) => c.type === "info").map((c) => c.value)
|
|
1408
|
+
};
|
|
1409
|
+
});
|
|
1382
1410
|
return {
|
|
1383
1411
|
inViewFeatures: i,
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1412
|
+
moveFeature: r,
|
|
1413
|
+
selectFeature: o,
|
|
1414
|
+
featuresValues: M,
|
|
1415
|
+
featuresLabels: n,
|
|
1388
1416
|
currentFeatures: t,
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1417
|
+
selectPreset: l,
|
|
1418
|
+
inViewFlagsWithNs: s,
|
|
1419
|
+
rules: u
|
|
1392
1420
|
};
|
|
1393
1421
|
}
|
|
1394
|
-
const
|
|
1395
|
-
function
|
|
1396
|
-
const e =
|
|
1397
|
-
return
|
|
1422
|
+
const W = ne(void 0);
|
|
1423
|
+
function ci(t) {
|
|
1424
|
+
const e = si();
|
|
1425
|
+
return y(W.Provider, {
|
|
1398
1426
|
value: e,
|
|
1399
1427
|
get children() {
|
|
1400
1428
|
return t.children;
|
|
1401
1429
|
}
|
|
1402
1430
|
});
|
|
1403
1431
|
}
|
|
1404
|
-
function
|
|
1405
|
-
|
|
1406
|
-
|
|
1432
|
+
function ui(t) {
|
|
1433
|
+
let e;
|
|
1434
|
+
async function i() {
|
|
1435
|
+
clearTimeout(e);
|
|
1436
|
+
const r = window.getSelection();
|
|
1437
|
+
if (r) {
|
|
1438
|
+
const o = r.toString().replaceAll(`
|
|
1439
|
+
`, " ");
|
|
1440
|
+
await navigator.clipboard.writeText(o), t.classList.add("tooltip", "tooltip-open"), e = setTimeout(() => {
|
|
1441
|
+
t.classList.remove("tooltip", "tooltip-open");
|
|
1442
|
+
}, 3e3);
|
|
1443
|
+
}
|
|
1444
|
+
}
|
|
1445
|
+
t.addEventListener("click", i), Ct(() => t.removeEventListener("click", i));
|
|
1407
1446
|
}
|
|
1408
|
-
function
|
|
1447
|
+
function Ht(t) {
|
|
1409
1448
|
var e, i, r = "";
|
|
1410
1449
|
if (typeof t == "string" || typeof t == "number")
|
|
1411
1450
|
r += t;
|
|
1412
1451
|
else if (typeof t == "object")
|
|
1413
1452
|
if (Array.isArray(t))
|
|
1414
1453
|
for (e = 0; e < t.length; e++)
|
|
1415
|
-
t[e] && (i =
|
|
1454
|
+
t[e] && (i = Ht(t[e])) && (r && (r += " "), r += i);
|
|
1416
1455
|
else
|
|
1417
1456
|
for (e in t)
|
|
1418
1457
|
t[e] && (r && (r += " "), r += e);
|
|
1419
1458
|
return r;
|
|
1420
1459
|
}
|
|
1421
|
-
function
|
|
1460
|
+
function Dt() {
|
|
1422
1461
|
for (var t, e, i = 0, r = ""; i < arguments.length; )
|
|
1423
|
-
(t = arguments[i++]) && (e =
|
|
1462
|
+
(t = arguments[i++]) && (e = Ht(t)) && (r && (r += " "), r += e);
|
|
1424
1463
|
return r;
|
|
1425
1464
|
}
|
|
1426
|
-
const
|
|
1427
|
-
function
|
|
1465
|
+
const gi = /* @__PURE__ */ T("<span>"), Ni = /* @__PURE__ */ T('<span class="text-lg">Scaffolds a web app using <!>.'), ji = new Intl.ListFormat("en");
|
|
1466
|
+
function di() {
|
|
1467
|
+
const {
|
|
1468
|
+
featuresLabels: t
|
|
1469
|
+
} = B(W), e = L(() => ji.formatToParts(["Vike", ...t()]).map((i) => i.type === "literal" ? i.value : (() => {
|
|
1470
|
+
const r = gi();
|
|
1471
|
+
return j(r, () => i.value), m(() => ot(r, Dt("text-primary", i.value === "Vike" && "font-semibold"))), r;
|
|
1472
|
+
})()));
|
|
1428
1473
|
return (() => {
|
|
1429
|
-
const
|
|
1430
|
-
return
|
|
1431
|
-
const M = Nt("form-control", t.class), n = t.style;
|
|
1432
|
-
return M !== o._v$ && st(e, o._v$ = M), o._v$2 = ne(e, n, o._v$2), o;
|
|
1433
|
-
}, {
|
|
1434
|
-
_v$: void 0,
|
|
1435
|
-
_v$2: void 0
|
|
1436
|
-
}), e;
|
|
1474
|
+
const i = Ni(), r = i.firstChild, o = r.nextSibling;
|
|
1475
|
+
return o.nextSibling, j(i, e, o), i;
|
|
1437
1476
|
})();
|
|
1438
1477
|
}
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
First: 2,
|
|
1443
|
-
Last: 3,
|
|
1444
|
-
Next: 4,
|
|
1445
|
-
Open: 5,
|
|
1446
|
-
PageDown: 6,
|
|
1447
|
-
PageUp: 7,
|
|
1448
|
-
Previous: 8,
|
|
1449
|
-
Select: 9,
|
|
1450
|
-
Type: 10
|
|
1451
|
-
};
|
|
1452
|
-
function Vt(t = [], e, i = []) {
|
|
1453
|
-
return t.filter((r) => r.toLowerCase().indexOf(e.toLowerCase()) === 0 && i.indexOf(r) < 0);
|
|
1454
|
-
}
|
|
1455
|
-
function fi(t, e) {
|
|
1456
|
-
const {
|
|
1457
|
-
key: i,
|
|
1458
|
-
altKey: r,
|
|
1459
|
-
ctrlKey: o,
|
|
1460
|
-
metaKey: M
|
|
1461
|
-
} = t;
|
|
1462
|
-
if (!e && ["ArrowDown", "ArrowUp", "Enter", " "].includes(i))
|
|
1463
|
-
return I.Open;
|
|
1464
|
-
if (i === "Home")
|
|
1465
|
-
return I.First;
|
|
1466
|
-
if (i === "End")
|
|
1467
|
-
return I.Last;
|
|
1468
|
-
if (i === "Backspace" || i === "Clear" || i.length === 1 && i !== " " && !r && !o && !M)
|
|
1469
|
-
return I.Type;
|
|
1470
|
-
if (e) {
|
|
1471
|
-
if (i === "ArrowUp" && r)
|
|
1472
|
-
return I.CloseSelect;
|
|
1473
|
-
if (i === "ArrowDown" && !r)
|
|
1474
|
-
return I.Next;
|
|
1475
|
-
if (i === "ArrowUp")
|
|
1476
|
-
return I.Previous;
|
|
1477
|
-
if (i === "PageUp")
|
|
1478
|
-
return I.PageUp;
|
|
1479
|
-
if (i === "PageDown")
|
|
1480
|
-
return I.PageDown;
|
|
1481
|
-
if (i === "Escape")
|
|
1482
|
-
return I.Close;
|
|
1483
|
-
if (i === "Enter" || i === " ")
|
|
1484
|
-
return I.CloseSelect;
|
|
1485
|
-
}
|
|
1486
|
-
}
|
|
1487
|
-
function pi(t, e, i = 0) {
|
|
1488
|
-
const r = [...t.slice(i), ...t.slice(0, i)], o = Vt(r, e)[0], M = (n) => n.every((l) => l === n[0]);
|
|
1489
|
-
if (o)
|
|
1490
|
-
return t.indexOf(o);
|
|
1491
|
-
if (M(e.split(""))) {
|
|
1492
|
-
const n = Vt(r, e[0]);
|
|
1493
|
-
return t.indexOf(n[0]);
|
|
1494
|
-
} else
|
|
1495
|
-
return -1;
|
|
1496
|
-
}
|
|
1497
|
-
function Ci(t, e, i) {
|
|
1498
|
-
switch (i) {
|
|
1499
|
-
case I.First:
|
|
1500
|
-
return 0;
|
|
1501
|
-
case I.Last:
|
|
1502
|
-
return e;
|
|
1503
|
-
case I.Previous:
|
|
1504
|
-
return Math.max(0, t - 1);
|
|
1505
|
-
case I.Next:
|
|
1506
|
-
return Math.min(e, t + 1);
|
|
1507
|
-
case I.PageUp:
|
|
1508
|
-
return Math.max(0, t - 10);
|
|
1509
|
-
case I.PageDown:
|
|
1510
|
-
return Math.min(e, t + 10);
|
|
1511
|
-
default:
|
|
1512
|
-
return t;
|
|
1513
|
-
}
|
|
1514
|
-
}
|
|
1515
|
-
function Jt(t) {
|
|
1516
|
-
const e = t.getBoundingClientRect();
|
|
1517
|
-
return e.top >= 0 && e.left >= 0 && e.bottom <= (window.innerHeight || document.documentElement.clientHeight) && e.right <= (window.innerWidth || document.documentElement.clientWidth);
|
|
1518
|
-
}
|
|
1519
|
-
function Ei(t) {
|
|
1520
|
-
return t && t.clientHeight < t.scrollHeight;
|
|
1478
|
+
function Ii(t, e) {
|
|
1479
|
+
const i = e();
|
|
1480
|
+
i && (t.setAttribute("data-flip-name", i), t.style.viewTransitionName = i);
|
|
1521
1481
|
}
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
offsetHeight: i,
|
|
1525
|
-
offsetTop: r
|
|
1526
|
-
} = t, {
|
|
1527
|
-
offsetHeight: o,
|
|
1528
|
-
scrollTop: M
|
|
1529
|
-
} = e, n = r < M, l = r + i > M + o;
|
|
1530
|
-
n ? e.scrollTo(0, r) : l && e.scrollTo(0, r - o + i);
|
|
1531
|
-
}
|
|
1532
|
-
function vi(t) {
|
|
1533
|
-
let e, i, r;
|
|
1534
|
-
const [o, M] = J(0), [n, l] = J(0), [c, s] = J(!1);
|
|
1535
|
-
let a = "", u = null, g = !1;
|
|
1536
|
-
const [d, f] = Ue(t, ["options", "class", "onChange"]), p = m(() => t.options.map((N, D) => N.disabled ? -1 : D).filter((N) => N !== -1)), S = m(() => t.options[n()]);
|
|
1537
|
-
me(() => {
|
|
1538
|
-
l(0);
|
|
1539
|
-
}), Kt(he(n, (N) => {
|
|
1540
|
-
var D;
|
|
1541
|
-
(D = t.onChange) == null || D.call(t, t.options[N].value);
|
|
1542
|
-
}));
|
|
1543
|
-
const W = ze(o);
|
|
1544
|
-
function v(N) {
|
|
1545
|
-
t.options[N].disabled || (E(N), l(N)), C(!1);
|
|
1546
|
-
}
|
|
1547
|
-
function O() {
|
|
1548
|
-
g = !0;
|
|
1549
|
-
}
|
|
1550
|
-
function E(N) {
|
|
1551
|
-
M(p()[N]);
|
|
1552
|
-
const D = e.querySelectorAll("[role=option]");
|
|
1553
|
-
Ei(r) && Si(D[N], r), Jt(D[N]) || D[N].scrollIntoView({
|
|
1554
|
-
behavior: "smooth",
|
|
1555
|
-
block: "nearest"
|
|
1556
|
-
});
|
|
1557
|
-
}
|
|
1558
|
-
function C(N, D = !0) {
|
|
1559
|
-
c() !== N && (s(N), !N && !Jt(i) && i.scrollIntoView({
|
|
1560
|
-
behavior: "smooth",
|
|
1561
|
-
block: "nearest"
|
|
1562
|
-
}), D && e.focus());
|
|
1563
|
-
}
|
|
1564
|
-
function wt() {
|
|
1565
|
-
if (g) {
|
|
1566
|
-
g = !1;
|
|
1567
|
-
return;
|
|
1568
|
-
}
|
|
1569
|
-
c() && (l(o()), C(!1, !1));
|
|
1570
|
-
}
|
|
1571
|
-
function ge() {
|
|
1572
|
-
t.disabled || C(!c());
|
|
1573
|
-
}
|
|
1574
|
-
function de(N) {
|
|
1575
|
-
if (t.disabled)
|
|
1576
|
-
return;
|
|
1577
|
-
const {
|
|
1578
|
-
key: D
|
|
1579
|
-
} = N, B = p().length - 1, j = fi(N, c());
|
|
1580
|
-
switch (j) {
|
|
1581
|
-
case I.Last:
|
|
1582
|
-
case I.First:
|
|
1583
|
-
C(!0);
|
|
1584
|
-
case I.Next:
|
|
1585
|
-
case I.Previous:
|
|
1586
|
-
case I.PageUp:
|
|
1587
|
-
case I.PageDown:
|
|
1588
|
-
return N.preventDefault(), E(Ci(p().findIndex(W), B, j));
|
|
1589
|
-
case I.CloseSelect:
|
|
1590
|
-
N.preventDefault(), l(o());
|
|
1591
|
-
case I.Close:
|
|
1592
|
-
return N.preventDefault(), C(!1);
|
|
1593
|
-
case I.Type:
|
|
1594
|
-
return Ne(D);
|
|
1595
|
-
case I.Open:
|
|
1596
|
-
return N.preventDefault(), C(!0);
|
|
1597
|
-
}
|
|
1598
|
-
}
|
|
1599
|
-
function Ne(N) {
|
|
1600
|
-
C(!0);
|
|
1601
|
-
const D = je(N), B = pi(t.options.map((j) => j.label), D, o() + 1);
|
|
1602
|
-
B >= 0 ? E(B) : (clearTimeout(u), a = "");
|
|
1603
|
-
}
|
|
1604
|
-
function je(N) {
|
|
1605
|
-
return typeof u == "number" && clearTimeout(u), u = setTimeout(() => {
|
|
1606
|
-
a = "";
|
|
1607
|
-
}, 500), a += N, a;
|
|
1608
|
-
}
|
|
1482
|
+
const yi = /* @__PURE__ */ T('<fieldset><legend class="label text-lg font-bold ml-1">');
|
|
1483
|
+
function Di(t) {
|
|
1609
1484
|
return (() => {
|
|
1610
|
-
const
|
|
1611
|
-
return
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
},
|
|
1615
|
-
get class() {
|
|
1616
|
-
return Nt("listbox", d.class);
|
|
1617
|
-
},
|
|
1618
|
-
get tabIndex() {
|
|
1619
|
-
return t.disabled ? -1 : 0;
|
|
1620
|
-
},
|
|
1621
|
-
onBlur: wt,
|
|
1622
|
-
onClick: ge,
|
|
1623
|
-
onKeyDown: de
|
|
1624
|
-
}), !1, !0), tt((j) => i = j, D), w(D, (() => {
|
|
1625
|
-
const j = m(() => !!S().image);
|
|
1626
|
-
return () => j() && (() => {
|
|
1627
|
-
const G = Bt();
|
|
1628
|
-
return h((L) => {
|
|
1629
|
-
const T = S().image, k = `${S().value} logo`;
|
|
1630
|
-
return T !== L._v$6 && z(G, "src", L._v$6 = T), k !== L._v$7 && z(G, "alt", L._v$7 = k), L;
|
|
1631
|
-
}, {
|
|
1632
|
-
_v$6: void 0,
|
|
1633
|
-
_v$7: void 0
|
|
1634
|
-
}), G;
|
|
1635
|
-
})();
|
|
1636
|
-
})(), null), w(D, () => S().label, null), tt((j) => r = j, B), w(B, A(Me, {
|
|
1637
|
-
get each() {
|
|
1638
|
-
return t.options;
|
|
1639
|
-
},
|
|
1640
|
-
children: (j, G) => (() => {
|
|
1641
|
-
const L = mi();
|
|
1642
|
-
return L.$$mousedown = O, L.$$click = (T) => {
|
|
1643
|
-
T.stopPropagation(), v(G());
|
|
1644
|
-
}, w(L, (() => {
|
|
1645
|
-
const T = m(() => !!j.image);
|
|
1646
|
-
return () => T() && (() => {
|
|
1647
|
-
const k = Bt();
|
|
1648
|
-
return h((Q) => {
|
|
1649
|
-
const K = j.image, kt = `${j.value} logo`;
|
|
1650
|
-
return K !== Q._v$11 && z(k, "src", Q._v$11 = K), kt !== Q._v$12 && z(k, "alt", Q._v$12 = kt), Q;
|
|
1651
|
-
}, {
|
|
1652
|
-
_v$11: void 0,
|
|
1653
|
-
_v$12: void 0
|
|
1654
|
-
}), k;
|
|
1655
|
-
})();
|
|
1656
|
-
})(), null), w(L, () => j.label, null), h((T) => {
|
|
1657
|
-
const k = `listboxitem-${t.id}-${G()}`, Q = W(G()), K = j.disabled;
|
|
1658
|
-
return k !== T._v$8 && z(L, "id", T._v$8 = k), Q !== T._v$9 && z(L, "aria-selected", T._v$9 = Q), K !== T._v$10 && z(L, "aria-disabled", T._v$10 = K), T;
|
|
1659
|
-
}, {
|
|
1660
|
-
_v$8: void 0,
|
|
1661
|
-
_v$9: void 0,
|
|
1662
|
-
_v$10: void 0
|
|
1663
|
-
}), L;
|
|
1664
|
-
})()
|
|
1665
|
-
})), h((j) => {
|
|
1666
|
-
const G = `listbox-${t.id}`, L = c(), T = `combo-${t.id}`, k = `listbox-${t.id}`, Q = `listboxitem-${t.id}-${o()}`;
|
|
1667
|
-
return G !== j._v$ && z(D, "aria-controls", j._v$ = G), L !== j._v$2 && z(D, "aria-expanded", j._v$2 = L), T !== j._v$3 && z(D, "id", j._v$3 = T), k !== j._v$4 && z(B, "id", j._v$4 = k), Q !== j._v$5 && z(B, "aria-activedescendant", j._v$5 = Q), j;
|
|
1485
|
+
const e = yi(), i = e.firstChild;
|
|
1486
|
+
return Wt(Ii, e, () => t.flipLabel), j(i, () => t.label), j(e, () => t.children, null), m((r) => {
|
|
1487
|
+
const o = Dt("form-control", t.class), M = t.style, n = t.classList;
|
|
1488
|
+
return o !== r._v$ && ot(e, r._v$ = o), r._v$2 = Zt(e, M, r._v$2), r._v$3 = Mt(e, n, r._v$3), r;
|
|
1668
1489
|
}, {
|
|
1669
1490
|
_v$: void 0,
|
|
1670
1491
|
_v$2: void 0,
|
|
1671
|
-
_v$3: void 0
|
|
1672
|
-
|
|
1673
|
-
_v$5: void 0
|
|
1674
|
-
}), N;
|
|
1492
|
+
_v$3: void 0
|
|
1493
|
+
}), e;
|
|
1675
1494
|
})();
|
|
1676
1495
|
}
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
function Yi() {
|
|
1496
|
+
const bi = /* @__PURE__ */ T('<div class="grid grid-cols-[repeat(auto-fit,_minmax(14rem,_1fr))] gap-4 box-border w-full relative guy">'), wi = /* @__PURE__ */ T('<div class="grid grid-rows-3 group w-full gap-2 py-2 h-32 -mt-3">'), Li = /* @__PURE__ */ T('<label class="flex"><div class="flex justify-center items-center px-2.5"><input type="checkbox" class="checkbox rounded"></div><div class="inline-flex gap-2 items-center"><div class="inline-flex flex-col gap-0 leading-5"><span>'), Ti = /* @__PURE__ */ T('<img class="max-w-5 max-h-5">'), Ai = /* @__PURE__ */ T('<span class="text-xs">');
|
|
1497
|
+
function zi() {
|
|
1680
1498
|
const {
|
|
1681
1499
|
currentFeatures: t,
|
|
1682
1500
|
selectFeature: e,
|
|
1683
|
-
moveFeature: i
|
|
1684
|
-
|
|
1685
|
-
} = St(bt), o = m(() => Object.keys(t));
|
|
1501
|
+
moveFeature: i
|
|
1502
|
+
} = B(W), r = L(() => Object.keys(t));
|
|
1686
1503
|
return (() => {
|
|
1687
|
-
const
|
|
1688
|
-
return
|
|
1504
|
+
const o = bi();
|
|
1505
|
+
return j(o, y(gt, {
|
|
1689
1506
|
get each() {
|
|
1690
|
-
return
|
|
1507
|
+
return r();
|
|
1691
1508
|
},
|
|
1692
|
-
children: (
|
|
1693
|
-
const
|
|
1694
|
-
return
|
|
1509
|
+
children: (M, n) => {
|
|
1510
|
+
const l = t[M];
|
|
1511
|
+
return y(Di, {
|
|
1695
1512
|
get label() {
|
|
1696
|
-
return
|
|
1513
|
+
return l.label;
|
|
1514
|
+
},
|
|
1515
|
+
flipLabel: M,
|
|
1516
|
+
class: "w-full sm:w-auto border-solid border-l-2 rounded-md bg-base-100",
|
|
1517
|
+
get classList() {
|
|
1518
|
+
return {
|
|
1519
|
+
"border-success/60": !!l.inview,
|
|
1520
|
+
"border-base-200 opacity-70": !!l.disabled,
|
|
1521
|
+
"border-primary/60": !l.inview && !l.disabled
|
|
1522
|
+
};
|
|
1697
1523
|
},
|
|
1698
|
-
flipLabel: l,
|
|
1699
|
-
class: "w-full sm:w-auto",
|
|
1700
1524
|
get style() {
|
|
1701
1525
|
return {
|
|
1702
|
-
"z-index":
|
|
1526
|
+
"z-index": r().length - n()
|
|
1703
1527
|
};
|
|
1704
1528
|
},
|
|
1705
1529
|
get children() {
|
|
1706
|
-
const
|
|
1707
|
-
return
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
get disabled() {
|
|
1711
|
-
return s.disabled;
|
|
1530
|
+
const s = wi();
|
|
1531
|
+
return j(s, y(gt, {
|
|
1532
|
+
get each() {
|
|
1533
|
+
return l.features;
|
|
1712
1534
|
},
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
}
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1535
|
+
children: (u) => (() => {
|
|
1536
|
+
const a = Li(), c = a.firstChild, g = c.firstChild, N = c.nextSibling, d = N.firstChild, h = d.firstChild;
|
|
1537
|
+
return g.addEventListener("change", (D) => {
|
|
1538
|
+
e(M, u.value), (!l.inview || !D.currentTarget.checked) && i(M);
|
|
1539
|
+
}), j(N, (() => {
|
|
1540
|
+
const D = L(() => !!u.image);
|
|
1541
|
+
return () => D() && (() => {
|
|
1542
|
+
const f = Ti();
|
|
1543
|
+
return m((w) => {
|
|
1544
|
+
const A = u.image, x = `${u.value} logo`;
|
|
1545
|
+
return A !== w._v$5 && Q(f, "src", w._v$5 = A), x !== w._v$6 && Q(f, "alt", w._v$6 = x), w;
|
|
1546
|
+
}, {
|
|
1547
|
+
_v$5: void 0,
|
|
1548
|
+
_v$6: void 0
|
|
1549
|
+
}), f;
|
|
1550
|
+
})();
|
|
1551
|
+
})(), d), j(h, () => u.label), j(d, (() => {
|
|
1552
|
+
const D = L(() => !!u.alt);
|
|
1553
|
+
return () => D() && (() => {
|
|
1554
|
+
const f = Ai();
|
|
1555
|
+
return j(f, () => u.alt), f;
|
|
1556
|
+
})();
|
|
1557
|
+
})(), null), m((D) => {
|
|
1558
|
+
const f = {
|
|
1559
|
+
"opacity-50 cursor-not-allowed": l.disabled || u.disabled
|
|
1560
|
+
}, w = !!(l.inview && u.selected), A = !(l.disabled || u.disabled), x = l.disabled || u.disabled;
|
|
1561
|
+
return D._v$ = Mt(a, f, D._v$), w !== D._v$2 && g.classList.toggle("checkbox-success", D._v$2 = w), A !== D._v$3 && g.classList.toggle("border-solid", D._v$3 = A), x !== D._v$4 && (g.disabled = D._v$4 = x), D;
|
|
1562
|
+
}, {
|
|
1563
|
+
_v$: void 0,
|
|
1564
|
+
_v$2: void 0,
|
|
1565
|
+
_v$3: void 0,
|
|
1566
|
+
_v$4: void 0
|
|
1567
|
+
}), m(() => g.checked = l.inview && u.selected), a;
|
|
1568
|
+
})()
|
|
1569
|
+
})), s;
|
|
1736
1570
|
}
|
|
1737
1571
|
});
|
|
1738
1572
|
}
|
|
1739
|
-
})
|
|
1573
|
+
})), o;
|
|
1740
1574
|
})();
|
|
1741
1575
|
}
|
|
1742
|
-
|
|
1743
|
-
function
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1576
|
+
const xi = /* @__PURE__ */ T('<div class="w-full rounded-md border-l-2"><ul class="flex flex-col gap-2 tracking-wide list-custom p-2 rounded-md">'), mi = /* @__PURE__ */ T("<li>");
|
|
1577
|
+
function at(t) {
|
|
1578
|
+
return (() => {
|
|
1579
|
+
const e = xi(), i = e.firstChild;
|
|
1580
|
+
return j(i, y(gt, {
|
|
1581
|
+
get each() {
|
|
1582
|
+
return t.children;
|
|
1583
|
+
},
|
|
1584
|
+
children: (r) => (() => {
|
|
1585
|
+
const o = mi();
|
|
1586
|
+
return j(o, y(ve, {
|
|
1587
|
+
component: r
|
|
1588
|
+
})), o;
|
|
1589
|
+
})()
|
|
1590
|
+
})), m((r) => {
|
|
1591
|
+
const o = !!t.info, M = !!t.warning, n = !!t.error, l = {
|
|
1592
|
+
"bg-info/25 list-info": t.info,
|
|
1593
|
+
"bg-warning/25 list-warning": t.warning,
|
|
1594
|
+
"bg-error/25 list-error": t.error
|
|
1595
|
+
};
|
|
1596
|
+
return o !== r._v$ && e.classList.toggle("border-info", r._v$ = o), M !== r._v$2 && e.classList.toggle("border-warning", r._v$2 = M), n !== r._v$3 && e.classList.toggle("border-error", r._v$3 = n), r._v$4 = Mt(i, l, r._v$4), r;
|
|
1597
|
+
}, {
|
|
1598
|
+
_v$: void 0,
|
|
1599
|
+
_v$2: void 0,
|
|
1600
|
+
_v$3: void 0,
|
|
1601
|
+
_v$4: void 0
|
|
1602
|
+
}), e;
|
|
1603
|
+
})();
|
|
1604
|
+
}
|
|
1605
|
+
function hi(t) {
|
|
1606
|
+
return [y(_, {
|
|
1607
|
+
get when() {
|
|
1608
|
+
var e;
|
|
1609
|
+
return (e = t.info) == null ? void 0 : e.length;
|
|
1610
|
+
},
|
|
1611
|
+
get children() {
|
|
1612
|
+
return y(at, {
|
|
1613
|
+
info: !0,
|
|
1614
|
+
get children() {
|
|
1615
|
+
return t.info;
|
|
1616
|
+
}
|
|
1617
|
+
});
|
|
1754
1618
|
}
|
|
1755
|
-
}
|
|
1756
|
-
|
|
1619
|
+
}), y(_, {
|
|
1620
|
+
get when() {
|
|
1621
|
+
var e;
|
|
1622
|
+
return (e = t.warning) == null ? void 0 : e.length;
|
|
1623
|
+
},
|
|
1624
|
+
get children() {
|
|
1625
|
+
return y(at, {
|
|
1626
|
+
warning: !0,
|
|
1627
|
+
get children() {
|
|
1628
|
+
return t.warning;
|
|
1629
|
+
}
|
|
1630
|
+
});
|
|
1631
|
+
}
|
|
1632
|
+
}), y(_, {
|
|
1633
|
+
get when() {
|
|
1634
|
+
var e;
|
|
1635
|
+
return (e = t.error) == null ? void 0 : e.length;
|
|
1636
|
+
},
|
|
1637
|
+
get children() {
|
|
1638
|
+
return y(at, {
|
|
1639
|
+
error: !0,
|
|
1640
|
+
get children() {
|
|
1641
|
+
return t.error;
|
|
1642
|
+
}
|
|
1643
|
+
});
|
|
1644
|
+
}
|
|
1645
|
+
})];
|
|
1757
1646
|
}
|
|
1758
|
-
const
|
|
1759
|
-
function
|
|
1647
|
+
const fi = /* @__PURE__ */ T('<button type="button">'), pi = /* @__PURE__ */ T('<div class="w-full flex box-border gap-2">');
|
|
1648
|
+
function G(t) {
|
|
1760
1649
|
const {
|
|
1761
1650
|
selectPreset: e
|
|
1762
|
-
} =
|
|
1651
|
+
} = B(W);
|
|
1763
1652
|
return (() => {
|
|
1764
|
-
const
|
|
1765
|
-
return
|
|
1766
|
-
const
|
|
1767
|
-
|
|
1768
|
-
}, a = Nt("card-title", t.titleClass);
|
|
1769
|
-
return c !== l._v$ && st(r, l._v$ = c), l._v$2 = Ot(r, s, l._v$2), a !== l._v$3 && st(M, l._v$3 = a), l;
|
|
1653
|
+
const i = fi();
|
|
1654
|
+
return i.$$click = () => !t.disabled && e(t.features), j(i, () => t.title), m((r) => {
|
|
1655
|
+
const o = t.disabled, M = Dt("btn btn-sm", t.class), n = !!t.disabled;
|
|
1656
|
+
return o !== r._v$ && (i.disabled = r._v$ = o), M !== r._v$2 && ot(i, r._v$2 = M), n !== r._v$3 && i.classList.toggle("cursor-not-allowed", r._v$3 = n), r;
|
|
1770
1657
|
}, {
|
|
1771
1658
|
_v$: void 0,
|
|
1772
1659
|
_v$2: void 0,
|
|
1773
1660
|
_v$3: void 0
|
|
1774
|
-
}),
|
|
1661
|
+
}), i;
|
|
1775
1662
|
})();
|
|
1776
1663
|
}
|
|
1777
|
-
function
|
|
1664
|
+
function Ci() {
|
|
1778
1665
|
return (() => {
|
|
1779
|
-
const t =
|
|
1780
|
-
return
|
|
1666
|
+
const t = pi();
|
|
1667
|
+
return j(t, y(G, {
|
|
1781
1668
|
title: "Plain Vike",
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
}
|
|
1788
|
-
}), null), w(t, A(ot, {
|
|
1789
|
-
title: "Frontend only",
|
|
1790
|
-
class: "hover:outline outline-sky-500 outline-1 outline-offset-2",
|
|
1791
|
-
titleClass: "underline decoration-sky-500",
|
|
1792
|
-
features: ["framework", "uikit"],
|
|
1793
|
-
children: "If a backend isn't needed, or a backend already exists"
|
|
1794
|
-
}), null), w(t, A(ot, {
|
|
1669
|
+
features: []
|
|
1670
|
+
}), null), j(t, y(G, {
|
|
1671
|
+
title: "Frontend",
|
|
1672
|
+
features: ["framework:solid", "uikit"]
|
|
1673
|
+
}), null), j(t, y(G, {
|
|
1795
1674
|
title: "Full-stack",
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
}), null),
|
|
1675
|
+
features: ["framework:solid", "rpc", "auth", "db", "uikit", "server"]
|
|
1676
|
+
}), null), j(t, y(G, {
|
|
1677
|
+
title: "Next.js",
|
|
1678
|
+
features: ["framework:react", "auth", "rpc", "server", "hosting:vercel"]
|
|
1679
|
+
}), null), j(t, y(G, {
|
|
1801
1680
|
title: "E-commerce",
|
|
1802
1681
|
features: ["framework"],
|
|
1803
|
-
disabled: !0
|
|
1804
|
-
children: "E-commerce website powered by Shopify or BigCommerce."
|
|
1682
|
+
disabled: !0
|
|
1805
1683
|
}), null), t;
|
|
1806
1684
|
})();
|
|
1807
1685
|
}
|
|
1808
|
-
|
|
1809
|
-
const
|
|
1810
|
-
function
|
|
1686
|
+
Ut(["click"]);
|
|
1687
|
+
const Ei = /* @__PURE__ */ T('<div class="flex flex-col gap-2 leading-6 rounded-md mt-4">'), Si = /* @__PURE__ */ T('<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 px-4"><kbd class="group relative flex-1 justify-start pl-9 tooltip-primary text-left inline-flex tooltip-bottom kbd kbd-sm select-all flex-wrap rounded-md leading-9 gap-2.5" data-tip="Copied to clipboard!"><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"></line></svg></kbd></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 bg-base-100 rounded-md"><span class="text-lg font-bold">Presets</span><div class="divider divider-horizontal mx-1">');
|
|
1688
|
+
function Oi(t) {
|
|
1811
1689
|
const {
|
|
1812
1690
|
featuresValues: e,
|
|
1813
|
-
|
|
1814
|
-
} =
|
|
1691
|
+
rules: i
|
|
1692
|
+
} = B(W), r = Object.keys(It);
|
|
1815
1693
|
function o() {
|
|
1816
1694
|
return r.filter((n) => e()[n]).map((n) => `--${e()[n]}`);
|
|
1817
1695
|
}
|
|
1818
|
-
const M =
|
|
1696
|
+
const M = L(() => ["pnpm", "create", "@batijs/app", ...o(), "my-app"]);
|
|
1819
1697
|
return (() => {
|
|
1820
|
-
const n =
|
|
1821
|
-
|
|
1822
|
-
const
|
|
1823
|
-
return
|
|
1698
|
+
const n = Si(), l = n.firstChild, s = l.nextSibling, u = s.firstChild;
|
|
1699
|
+
u.firstChild;
|
|
1700
|
+
const a = s.nextSibling, c = a.nextSibling, g = c.firstChild;
|
|
1701
|
+
return g.firstChild.nextSibling, j(l, y(di, {})), Wt(ui, u, () => !0), j(u, () => M().join(" "), null), j(n, y(_, {
|
|
1702
|
+
get when() {
|
|
1703
|
+
return i().size > 0;
|
|
1704
|
+
},
|
|
1824
1705
|
get children() {
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1706
|
+
const d = Ei();
|
|
1707
|
+
return j(d, y(hi, {
|
|
1708
|
+
get error() {
|
|
1709
|
+
return i().error;
|
|
1828
1710
|
},
|
|
1829
|
-
get
|
|
1830
|
-
return
|
|
1831
|
-
}
|
|
1832
|
-
}), A(Ut, {
|
|
1833
|
-
get when() {
|
|
1834
|
-
return i() === 1;
|
|
1711
|
+
get warning() {
|
|
1712
|
+
return i().warning;
|
|
1835
1713
|
},
|
|
1836
|
-
get
|
|
1837
|
-
return
|
|
1714
|
+
get info() {
|
|
1715
|
+
return i().info;
|
|
1838
1716
|
}
|
|
1839
|
-
})
|
|
1717
|
+
})), d;
|
|
1840
1718
|
}
|
|
1841
|
-
})),
|
|
1842
|
-
const
|
|
1843
|
-
return
|
|
1719
|
+
}), a), j(g, y(Ci, {}), null), j(c, y(zi, {}), null), m((d) => {
|
|
1720
|
+
const h = t.theme, D = !t.widget;
|
|
1721
|
+
return h !== d._v$ && Q(n, "data-theme", d._v$ = h), D !== d._v$2 && n.classList.toggle("w-4/5", d._v$2 = D), d;
|
|
1844
1722
|
}, {
|
|
1845
1723
|
_v$: void 0,
|
|
1846
1724
|
_v$2: void 0
|
|
1847
1725
|
}), n;
|
|
1848
1726
|
})();
|
|
1849
1727
|
}
|
|
1850
|
-
const Vi = /* @__PURE__ */ Y("<style>");
|
|
1851
|
-
|
|
1852
|
-
|
|
1728
|
+
const vi = `*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}.bati-widget,[data-theme]{background-color:hsl(var(--b1) / var(--tw-bg-opacity, 1));color:hsl(var(--bc) / var(--tw-text-opacity, 1))}html{-webkit-tap-highlight-color:transparent}.bati-widget{color-scheme:light;--pf: 259 94% 44%;--sf: 314 100% 40%;--af: 174 75% 39%;--nf: 214 20% 14%;--in: 198 93% 60%;--su: 158 64% 52%;--wa: 43 96% 56%;--er: 0 91% 71%;--inc: 198 100% 12%;--suc: 158 100% 10%;--wac: 43 100% 11%;--erc: 0 100% 14%;--rounded-box: 1rem;--rounded-btn: .5rem;--rounded-badge: 1.9rem;--animation-btn: .25s;--animation-input: .2s;--btn-text-case: uppercase;--btn-focus-scale: .95;--border-btn: 1px;--tab-border: 1px;--tab-radius: .5rem;--p: 259 94% 51%;--pc: 259 96% 91%;--s: 314 100% 47%;--sc: 314 100% 91%;--a: 174 75% 46%;--ac: 174 75% 11%;--n: 214 20% 21%;--nc: 212 19% 87%;--b1: 0 0% 100%;--b2: 0 0% 95%;--b3: 180 2% 90%;--bc: 215 28% 17%}@media (prefers-color-scheme: dark){.bati-widget{color-scheme:dark;--pf: 262 80% 43%;--sf: 316 70% 43%;--af: 175 70% 34%;--in: 198 93% 60%;--su: 158 64% 52%;--wa: 43 96% 56%;--er: 0 91% 71%;--inc: 198 100% 12%;--suc: 158 100% 10%;--wac: 43 100% 11%;--erc: 0 100% 14%;--rounded-box: 1rem;--rounded-btn: .5rem;--rounded-badge: 1.9rem;--animation-btn: .25s;--animation-input: .2s;--btn-text-case: uppercase;--btn-focus-scale: .95;--border-btn: 1px;--tab-border: 1px;--tab-radius: .5rem;--p: 262 80% 50%;--pc: 0 0% 100%;--s: 316 70% 50%;--sc: 0 0% 100%;--a: 175 70% 41%;--ac: 0 0% 100%;--n: 213 18% 20%;--nf: 212 17% 17%;--nc: 220 13% 69%;--b1: 212 18% 14%;--b2: 213 18% 12%;--b3: 213 18% 10%;--bc: 220 13% 69%}}[data-theme=light]{color-scheme:light;--pf: 259 94% 44%;--sf: 314 100% 40%;--af: 174 75% 39%;--nf: 214 20% 14%;--in: 198 93% 60%;--su: 158 64% 52%;--wa: 43 96% 56%;--er: 0 91% 71%;--inc: 198 100% 12%;--suc: 158 100% 10%;--wac: 43 100% 11%;--erc: 0 100% 14%;--rounded-box: 1rem;--rounded-btn: .5rem;--rounded-badge: 1.9rem;--animation-btn: .25s;--animation-input: .2s;--btn-text-case: uppercase;--btn-focus-scale: .95;--border-btn: 1px;--tab-border: 1px;--tab-radius: .5rem;--p: 259 94% 51%;--pc: 259 96% 91%;--s: 314 100% 47%;--sc: 314 100% 91%;--a: 174 75% 46%;--ac: 174 75% 11%;--n: 214 20% 21%;--nc: 212 19% 87%;--b1: 0 0% 100%;--b2: 0 0% 95%;--b3: 180 2% 90%;--bc: 215 28% 17%}[data-theme=dark]{color-scheme:dark;--pf: 262 80% 43%;--sf: 316 70% 43%;--af: 175 70% 34%;--in: 198 93% 60%;--su: 158 64% 52%;--wa: 43 96% 56%;--er: 0 91% 71%;--inc: 198 100% 12%;--suc: 158 100% 10%;--wac: 43 100% 11%;--erc: 0 100% 14%;--rounded-box: 1rem;--rounded-btn: .5rem;--rounded-badge: 1.9rem;--animation-btn: .25s;--animation-input: .2s;--btn-text-case: uppercase;--btn-focus-scale: .95;--border-btn: 1px;--tab-border: 1px;--tab-radius: .5rem;--p: 262 80% 50%;--pc: 0 0% 100%;--s: 316 70% 50%;--sc: 0 0% 100%;--a: 175 70% 41%;--ac: 0 0% 100%;--n: 213 18% 20%;--nf: 212 17% 17%;--nc: 220 13% 69%;--b1: 212 18% 14%;--b2: 213 18% 12%;--b3: 213 18% 10%;--bc: 220 13% 69%}*,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }@media (hover:hover){.checkbox-success:hover{--tw-border-opacity: 1;border-color:hsl(var(--su) / var(--tw-border-opacity))}.label a:hover{--tw-text-opacity: 1;color:hsl(var(--bc) / var(--tw-text-opacity))}}.btn{display:inline-flex;flex-shrink:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-wrap:wrap;align-items:center;justify-content:center;border-color:transparent;border-color:hsl(var(--b2) / var(--tw-border-opacity));text-align:center;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1);transition-duration:.2s;border-radius:var(--rounded-btn, .5rem);height:3rem;padding-left:1rem;padding-right:1rem;min-height:3rem;font-size:.875rem;line-height:1em;gap:.5rem;font-weight:600;text-decoration-line:none;border-width:var(--border-btn, 1px);animation:button-pop var(--animation-btn, .25s) ease-out;text-transform:var(--btn-text-case, uppercase);--tw-border-opacity: 1;--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));--tw-text-opacity: 1;color:hsl(var(--bc) / var(--tw-text-opacity));outline-color:hsl(var(--bc) / 1)}.btn-disabled,.btn[disabled],.btn:disabled{pointer-events:none}.btn-group>input[type=radio].btn{-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn-group>input[type=radio].btn:before{content:attr(data-title)}.btn:is(input[type=checkbox]),.btn:is(input[type=radio]){width:auto;-webkit-appearance:none;-moz-appearance:none;appearance:none}.btn:is(input[type=checkbox]):after,.btn:is(input[type=radio]):after{--tw-content: attr(aria-label);content:var(--tw-content)}.checkbox{flex-shrink:0;--chkbg: var(--bc);--chkfg: var(--b1);height:1.5rem;width:1.5rem;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-width:1px;border-color:hsl(var(--bc) / var(--tw-border-opacity));--tw-border-opacity: .2;border-radius:var(--rounded-btn, .5rem)}.divider{display:flex;flex-direction:row;align-items:center;align-self:stretch;margin-top:1rem;margin-bottom:1rem;height:1rem;white-space:nowrap}.divider:before,.divider:after{content:"";flex-grow:1;height:.125rem;width:100%}@media (hover: hover){.btm-nav>*.disabled:hover,.btm-nav>*[disabled]:hover{pointer-events:none;--tw-border-opacity: 0;background-color:hsl(var(--n) / var(--tw-bg-opacity));--tw-bg-opacity: .1;color:hsl(var(--bc) / var(--tw-text-opacity));--tw-text-opacity: .2}.btn:hover{--tw-border-opacity: 1;border-color:hsl(var(--b3) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--b3) / var(--tw-bg-opacity))}.btn.glass:hover{--glass-opacity: 25%;--glass-border-opacity: 15%}.btn-disabled:hover,.btn[disabled]:hover,.btn:disabled:hover{--tw-border-opacity: 0;background-color:hsl(var(--n) / var(--tw-bg-opacity));--tw-bg-opacity: .2;color:hsl(var(--bc) / var(--tw-text-opacity));--tw-text-opacity: .2}.btn:is(input[type=checkbox]:checked):hover,.btn:is(input[type=radio]:checked):hover{--tw-border-opacity: 1;border-color:hsl(var(--pf) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--pf) / var(--tw-bg-opacity))}:where(.menu li:not(.menu-title):not(.disabled)>*:not(ul):not(details):not(.menu-title)):not(.active):hover,:where(.menu li:not(.menu-title):not(.disabled)>details>summary:not(.menu-title)):not(.active):hover{cursor:pointer;background-color:hsl(var(--bc) / .1);--tw-text-opacity: 1;color:hsl(var(--bc) / var(--tw-text-opacity));outline:2px solid transparent;outline-offset:2px}}.footer{display:grid;width:100%;grid-auto-flow:row;place-items:start;row-gap:2.5rem;-moz-column-gap:1rem;column-gap:1rem;font-size:.875rem;line-height:1.25rem}.footer>*{display:grid;place-items:start;gap:.5rem}.footer-center{place-items:center;text-align:center}.footer-center>*{place-items:center}@media (min-width: 48rem){.footer{grid-auto-flow:column}.footer-center{grid-auto-flow:row dense}}.form-control{display:flex;flex-direction:column}.label{display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;align-items:center;justify-content:space-between;padding:.5rem .25rem}.input{flex-shrink:1;height:3rem;padding-left:1rem;padding-right:1rem;font-size:1rem;line-height:2;line-height:1.5rem;border-width:1px;border-color:hsl(var(--bc) / var(--tw-border-opacity));--tw-border-opacity: 0;--tw-bg-opacity: 1;background-color:hsl(var(--b1) / var(--tw-bg-opacity));border-radius:var(--rounded-btn, .5rem)}.input-group>.input{isolation:isolate}.input-group>*,.input-group>.input,.input-group>.textarea,.input-group>.select{border-radius:0}.join{display:inline-flex;align-items:stretch;border-radius:var(--rounded-btn, .5rem)}.join :where(.join-item){border-radius:0}.join .join-item:not(:first-child):not(:last-child),.join *:not(:first-child):not(:last-child) .join-item{border-radius:0}.join .join-item:first-child:not(:last-child),.join *:first-child:not(:last-child) .join-item{border-top-right-radius:0;border-bottom-right-radius:0}.join .dropdown .join-item:first-child:not(:last-child),.join *:first-child:not(:last-child) .dropdown .join-item{border-top-right-radius:inherit;border-bottom-right-radius:inherit}.join :where(.join-item:first-child:not(:last-child)),.join :where(*:first-child:not(:last-child) .join-item){border-bottom-left-radius:inherit;border-top-left-radius:inherit}.join .join-item:last-child:not(:first-child),.join *:last-child:not(:first-child) .join-item{border-bottom-left-radius:0;border-top-left-radius:0}.join :where(.join-item:last-child:not(:first-child)),.join :where(*:last-child:not(:first-child) .join-item){border-top-right-radius:inherit;border-bottom-right-radius:inherit}:where(.join *){border-radius:inherit}.kbd{display:inline-flex;align-items:center;justify-content:center;border-width:1px;border-color:hsl(var(--bc) / var(--tw-border-opacity));--tw-border-opacity: .2;--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));padding-left:.5rem;padding-right:.5rem;border-radius:var(--rounded-btn, .5rem);border-bottom-width:2px;min-height:2.2em;min-width:2.2em}.link{cursor:pointer;text-decoration-line:underline}.menu li.disabled{cursor:not-allowed;-webkit-user-select:none;-moz-user-select:none;user-select:none;color:hsl(var(--bc) / .3)}.btm-nav>*.disabled,.btm-nav>*[disabled]{pointer-events:none;--tw-border-opacity: 0;background-color:hsl(var(--n) / var(--tw-bg-opacity));--tw-bg-opacity: .1;color:hsl(var(--bc) / var(--tw-text-opacity));--tw-text-opacity: .2}.btm-nav>* .label{font-size:1rem;line-height:1.5rem}.btn:active:hover,.btn:active:focus{animation:button-pop 0s ease-out;transform:scale(var(--btn-focus-scale, .97))}.btn:focus-visible{outline-style:solid;outline-width:2px;outline-offset:2px}.btn.glass{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow);outline-color:currentColor}.btn.glass.btn-active{--glass-opacity: 25%;--glass-border-opacity: 15%}.btn.btn-disabled,.btn[disabled],.btn:disabled{--tw-border-opacity: 0;background-color:hsl(var(--n) / var(--tw-bg-opacity));--tw-bg-opacity: .2;color:hsl(var(--bc) / var(--tw-text-opacity));--tw-text-opacity: .2}.btn-group>input[type=radio]:checked.btn,.btn-group>.btn-active{--tw-border-opacity: 1;border-color:hsl(var(--p) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--p) / var(--tw-bg-opacity));--tw-text-opacity: 1;color:hsl(var(--pc) / var(--tw-text-opacity))}.btn-group>input[type=radio]:checked.btn:focus-visible,.btn-group>.btn-active:focus-visible{outline-style:solid;outline-width:2px;outline-color:hsl(var(--p) / 1)}.btn:is(input[type=checkbox]:checked),.btn:is(input[type=radio]:checked){--tw-border-opacity: 1;border-color:hsl(var(--p) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--p) / var(--tw-bg-opacity));--tw-text-opacity: 1;color:hsl(var(--pc) / var(--tw-text-opacity))}.btn:is(input[type=checkbox]:checked):focus-visible,.btn:is(input[type=radio]:checked):focus-visible{outline-color:hsl(var(--p) / 1)}@keyframes button-pop{0%{transform:scale(var(--btn-focus-scale, .98))}40%{transform:scale(1.02)}to{transform:scale(1)}}.checkbox:focus-visible{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:hsl(var(--bc) / 1)}.checkbox:checked,.checkbox[checked=true],.checkbox[aria-checked=true]{--tw-bg-opacity: 1;background-color:hsl(var(--bc) / var(--tw-bg-opacity));background-repeat:no-repeat;animation:checkmark var(--animation-input, .2s) ease-out;background-image:linear-gradient(-45deg,transparent 65%,hsl(var(--chkbg)) 65.99%),linear-gradient(45deg,transparent 75%,hsl(var(--chkbg)) 75.99%),linear-gradient(-45deg,hsl(var(--chkbg)) 40%,transparent 40.99%),linear-gradient(45deg,hsl(var(--chkbg)) 30%,hsl(var(--chkfg)) 30.99%,hsl(var(--chkfg)) 40%,transparent 40.99%),linear-gradient(-45deg,hsl(var(--chkfg)) 50%,hsl(var(--chkbg)) 50.99%)}.checkbox:indeterminate{--tw-bg-opacity: 1;background-color:hsl(var(--bc) / var(--tw-bg-opacity));background-repeat:no-repeat;animation:checkmark var(--animation-input, .2s) ease-out;background-image:linear-gradient(90deg,transparent 80%,hsl(var(--chkbg)) 80%),linear-gradient(-90deg,transparent 80%,hsl(var(--chkbg)) 80%),linear-gradient(0deg,hsl(var(--chkbg)) 43%,hsl(var(--chkfg)) 43%,hsl(var(--chkfg)) 57%,hsl(var(--chkbg)) 57%)}.checkbox-success{--chkbg: var(--su);--chkfg: var(--suc);--tw-border-opacity: 1;border-color:hsl(var(--su) / var(--tw-border-opacity))}.checkbox-success:focus-visible{outline-color:hsl(var(--su) / 1)}.checkbox-success:checked,.checkbox-success[checked=true],.checkbox-success[aria-checked=true]{--tw-border-opacity: 1;border-color:hsl(var(--su) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--su) / var(--tw-bg-opacity));--tw-text-opacity: 1;color:hsl(var(--suc) / var(--tw-text-opacity))}.checkbox:disabled{cursor:not-allowed;border-color:transparent;--tw-bg-opacity: 1;background-color:hsl(var(--bc) / var(--tw-bg-opacity));opacity:.2}@keyframes checkmark{0%{background-position-y:5px}50%{background-position-y:-2px}to{background-position-y:0}}[dir=rtl] .checkbox:checked,[dir=rtl] .checkbox[checked=true],[dir=rtl] .checkbox[aria-checked=true]{background-image:linear-gradient(45deg,transparent 65%,hsl(var(--chkbg)) 65.99%),linear-gradient(-45deg,transparent 75%,hsl(var(--chkbg)) 75.99%),linear-gradient(45deg,hsl(var(--chkbg)) 40%,transparent 40.99%),linear-gradient(-45deg,hsl(var(--chkbg)) 30%,hsl(var(--chkfg)) 30.99%,hsl(var(--chkfg)) 40%,transparent 40.99%),linear-gradient(45deg,hsl(var(--chkfg)) 50%,hsl(var(--chkbg)) 50.99%)}.divider:before{background-color:hsl(var(--bc) / var(--tw-bg-opacity));--tw-bg-opacity: .1}.divider:after{background-color:hsl(var(--bc) / var(--tw-bg-opacity));--tw-bg-opacity: .1}.divider:not(:empty){gap:1rem}.input[list]::-webkit-calendar-picker-indicator{line-height:1em}.input:focus{outline-style:solid;outline-width:2px;outline-offset:2px;outline-color:hsl(var(--bc) / .2)}.input-disabled,.input:disabled,.input[disabled]{cursor:not-allowed;--tw-border-opacity: 1;border-color:hsl(var(--b2) / var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));--tw-text-opacity: .2}.input-disabled::-moz-placeholder,.input:disabled::-moz-placeholder,.input[disabled]::-moz-placeholder{color:hsl(var(--bc) / var(--tw-placeholder-opacity));--tw-placeholder-opacity: .2}.input-disabled::placeholder,.input:disabled::placeholder,.input[disabled]::placeholder{color:hsl(var(--bc) / var(--tw-placeholder-opacity));--tw-placeholder-opacity: .2}.join>:where(*:not(:first-child)){margin-top:0;margin-bottom:0;margin-left:-1px}.link:focus{outline:2px solid transparent;outline-offset:2px}.link:focus-visible{outline:2px solid currentColor;outline-offset:2px}.mockup-browser .mockup-browser-toolbar .input{position:relative;margin-left:auto;margin-right:auto;display:block;height:1.75rem;width:24rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity));padding-left:2rem}.mockup-browser .mockup-browser-toolbar .input:before{content:"";position:absolute;top:50%;left:.5rem;aspect-ratio:1 / 1;height:.75rem;--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-radius:9999px;border-width:2px;border-color:currentColor;opacity:.6}.mockup-browser .mockup-browser-toolbar .input:after{content:"";position:absolute;top:50%;left:1.25rem;height:.5rem;--tw-translate-y: 25%;--tw-rotate: -45deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-radius:9999px;border-width:1px;border-color:currentColor;opacity:.6}@keyframes modal-pop{0%{opacity:0}}@keyframes progress-loading{50%{background-position-x:-115%}}@keyframes radiomark{0%{box-shadow:0 0 0 12px hsl(var(--b1)) inset,0 0 0 12px hsl(var(--b1)) inset}50%{box-shadow:0 0 0 3px hsl(var(--b1)) inset,0 0 0 3px hsl(var(--b1)) inset}to{box-shadow:0 0 0 4px hsl(var(--b1)) inset,0 0 0 4px hsl(var(--b1)) inset}}@keyframes rating-pop{0%{transform:translateY(-.125em)}40%{transform:translateY(-.125em)}to{transform:translateY(0)}}@keyframes toast-pop{0%{transform:scale(.9);opacity:0}to{transform:scale(1);opacity:1}}.tooltip.tooltip-primary{--tooltip-color: hsl(var(--p));--tooltip-text-color: hsl(var(--pc))}.tooltip.tooltip-secondary{--tooltip-color: hsl(var(--s));--tooltip-text-color: hsl(var(--sc))}.tooltip.tooltip-accent{--tooltip-color: hsl(var(--a));--tooltip-text-color: hsl(var(--ac))}.tooltip.tooltip-info{--tooltip-color: hsl(var(--in));--tooltip-text-color: hsl(var(--inc))}.tooltip.tooltip-success{--tooltip-color: hsl(var(--su));--tooltip-text-color: hsl(var(--suc))}.tooltip.tooltip-warning{--tooltip-color: hsl(var(--wa));--tooltip-text-color: hsl(var(--wac))}.tooltip.tooltip-error{--tooltip-color: hsl(var(--er));--tooltip-text-color: hsl(var(--erc))}.btn-sm{height:2rem;padding-left:.75rem;padding-right:.75rem;min-height:2rem;font-size:.875rem}.btn-square:where(.btn-sm){height:2rem;width:2rem;padding:0}.btn-circle:where(.btn-sm){height:2rem;width:2rem;border-radius:9999px;padding:0}.divider-horizontal{flex-direction:column}.divider-horizontal:before{height:100%;width:.125rem}.divider-horizontal:after{height:100%;width:.125rem}.join.join-vertical{flex-direction:column}.join.join-vertical .join-item:first-child:not(:last-child),.join.join-vertical *:first-child:not(:last-child) .join-item{border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:inherit;border-top-right-radius:inherit}.join.join-vertical .join-item:last-child:not(:first-child),.join.join-vertical *:last-child:not(:first-child) .join-item{border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.join.join-horizontal{flex-direction:row}.join.join-horizontal .join-item:first-child:not(:last-child),.join.join-horizontal *:first-child:not(:last-child) .join-item{border-bottom-right-radius:0;border-top-right-radius:0;border-bottom-left-radius:inherit;border-top-left-radius:inherit}.join.join-horizontal .join-item:last-child:not(:first-child),.join.join-horizontal *:last-child:not(:first-child) .join-item{border-bottom-left-radius:0;border-top-left-radius:0;border-bottom-right-radius:inherit;border-top-right-radius:inherit}.kbd-sm{padding-left:.25rem;padding-right:.25rem;font-size:.875rem;line-height:1.25rem;min-height:1.6em;min-width:1.6em}.tooltip{position:relative;display:inline-block;--tooltip-offset: calc(100% + 1px + var(--tooltip-tail, 0px))}.tooltip:before{position:absolute;pointer-events:none;z-index:1;content:var(--tw-content);--tw-content: attr(data-tip)}.tooltip:before,.tooltip-top:before{transform:translate(-50%);top:auto;left:50%;right:auto;bottom:var(--tooltip-offset)}.tooltip-bottom:before{transform:translate(-50%);top:var(--tooltip-offset);left:50%;right:auto;bottom:auto}.btn-group .btn:not(:first-child):not(:last-child){border-radius:0}.btn-group .btn:first-child:not(:last-child){margin-top:-0px;margin-left:-1px;border-top-left-radius:var(--rounded-btn, .5rem);border-top-right-radius:0;border-bottom-left-radius:var(--rounded-btn, .5rem);border-bottom-right-radius:0}.btn-group .btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:var(--rounded-btn, .5rem);border-bottom-left-radius:0;border-bottom-right-radius:var(--rounded-btn, .5rem)}.btn-group-horizontal .btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-horizontal .btn:first-child:not(:last-child){margin-top:-0px;margin-left:-1px;border-top-left-radius:var(--rounded-btn, .5rem);border-top-right-radius:0;border-bottom-left-radius:var(--rounded-btn, .5rem);border-bottom-right-radius:0}.btn-group-horizontal .btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:var(--rounded-btn, .5rem);border-bottom-left-radius:0;border-bottom-right-radius:var(--rounded-btn, .5rem)}.btn-group-vertical .btn:first-child:not(:last-child){margin-top:-1px;margin-left:-0px;border-top-left-radius:var(--rounded-btn, .5rem);border-top-right-radius:var(--rounded-btn, .5rem);border-bottom-left-radius:0;border-bottom-right-radius:0}.btn-group-vertical .btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:var(--rounded-btn, .5rem);border-bottom-right-radius:var(--rounded-btn, .5rem)}.divider-horizontal{margin-top:0;margin-bottom:0;margin-left:1rem;margin-right:1rem;height:auto;width:1rem}.join.join-vertical>:where(*:not(:first-child)){margin-left:0;margin-right:0;margin-top:-1px}.join.join-horizontal>:where(*:not(:first-child)){margin-top:0;margin-bottom:0;margin-left:-1px}.tooltip{position:relative;display:inline-block;text-align:center;--tooltip-tail: .1875rem;--tooltip-color: hsl(var(--n));--tooltip-text-color: hsl(var(--nc));--tooltip-tail-offset: calc(100% + .0625rem - var(--tooltip-tail))}.tooltip:before,.tooltip:after{opacity:0;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-delay:.1s;transition-duration:.2s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.tooltip:after{position:absolute;content:"";border-style:solid;border-width:var(--tooltip-tail, 0);width:0;height:0;display:block}.tooltip:before{max-width:20rem;border-radius:.25rem;padding:.25rem .5rem;font-size:.875rem;line-height:1.25rem;background-color:var(--tooltip-color);color:var(--tooltip-text-color);width:-moz-max-content;width:max-content}.tooltip.tooltip-open:before,.tooltip.tooltip-open:after,.tooltip:hover:before,.tooltip:hover:after{opacity:1;transition-delay:75ms}.tooltip:has(:focus-visible):after,.tooltip:has(:focus-visible):before{opacity:1;transition-delay:75ms}.tooltip:not([data-tip]):hover:before,.tooltip:not([data-tip]):hover:after{visibility:hidden;opacity:0}.tooltip:after,.tooltip-top:after{transform:translate(-50%);border-color:var(--tooltip-color) transparent transparent transparent;top:auto;left:50%;right:auto;bottom:var(--tooltip-tail-offset)}.tooltip-bottom:after{transform:translate(-50%);border-color:transparent transparent var(--tooltip-color) transparent;top:var(--tooltip-tail-offset);left:50%;right:auto;bottom:auto}.bati-widget{--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: "⮿"}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.bottom-0{bottom:0}.left-2{left:.5rem}.right-0{right:0}.top-0{top:0}.top-2{top:.5rem}.z-10{z-index:10}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-auto{margin-left:auto;margin-right:auto}.my-2{margin-top:.5rem;margin-bottom:.5rem}.-mt-3{margin-top:-.75rem}.mb-2{margin-bottom:.5rem}.ml-1{margin-left:.25rem}.mt-4{margin-top:1rem}.mt-8{margin-top:2rem}.box-border{box-sizing:border-box}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.h-32{height:8rem}.h-5{height:1.25rem}.max-h-5{max-height:1.25rem}.w-4\\/5{width:80%}.w-full{width:100%}.flex-1{flex:1 1 0%}.cursor-not-allowed{cursor:not-allowed}.select-all{-webkit-user-select:all;-moz-user-select:all;user-select:all}.grid-cols-\\[repeat\\(auto-fit\\,_minmax\\(14rem\\,_1fr\\)\\)\\]{grid-template-columns:repeat(auto-fit,minmax(14rem,1fr))}.grid-rows-3{grid-template-rows:repeat(3,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-center{justify-content:center}.gap-0{gap:0px}.gap-2{gap:.5rem}.gap-2\\.5{gap:.625rem}.gap-4{gap:1rem}.gap-8{gap:2rem}.overflow-auto{overflow:auto}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-xl{border-radius:.75rem}.border-l-2{border-left-width:2px}.border-solid{border-style:solid}.border-base-200{--tw-border-opacity: 1;border-color:hsl(var(--b2) / var(--tw-border-opacity))}.border-error{--tw-border-opacity: 1;border-color:hsl(var(--er) / var(--tw-border-opacity))}.border-info{--tw-border-opacity: 1;border-color:hsl(var(--in) / var(--tw-border-opacity))}.border-primary\\/60{border-color:hsl(var(--p) / .6)}.border-success\\/60{border-color:hsl(var(--su) / .6)}.border-warning{--tw-border-opacity: 1;border-color:hsl(var(--wa) / var(--tw-border-opacity))}.bg-base-100{--tw-bg-opacity: 1;background-color:hsl(var(--b1) / var(--tw-bg-opacity))}.bg-base-200{--tw-bg-opacity: 1;background-color:hsl(var(--b2) / var(--tw-bg-opacity))}.bg-base-300{--tw-bg-opacity: 1;background-color:hsl(var(--b3) / var(--tw-bg-opacity))}.bg-error\\/25{background-color:hsl(var(--er) / .25)}.bg-info\\/25{background-color:hsl(var(--in) / .25)}.bg-warning\\/25{background-color:hsl(var(--wa) / .25)}.fill-base-100{fill:hsl(var(--b1) / 1)}.fill-neutral-800{fill:#262626}.p-2{padding:.5rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-2\\.5{padding-left:.625rem;padding-right:.625rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.pb-16{padding-bottom:4rem}.pb-4{padding-bottom:1rem}.pl-9{padding-left:2.25rem}.text-left{text-align:left}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.text-8xl{font-size:6rem;line-height:1}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-semibold{font-weight:600}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-9{line-height:2.25rem}.tracking-wide{letter-spacing:.025em}.text-base-content{--tw-text-opacity: 1;color:hsl(var(--bc) / var(--tw-text-opacity))}.text-primary{--tw-text-opacity: 1;color:hsl(var(--p) / var(--tw-text-opacity))}.opacity-40{opacity:.4}.opacity-50{opacity:.5}.opacity-70{opacity:.7}.shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-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)}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.group:hover .group-hover\\:scale-110{--tw-scale-x: 1.1;--tw-scale-y: 1.1;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@media (prefers-color-scheme: dark){.dark\\:fill-neutral-200{fill:#e5e5e5}}@media (min-width: 640px){.sm\\:w-auto{width:auto}}
|
|
1729
|
+
`, ki = /* @__PURE__ */ T("<style>");
|
|
1730
|
+
function Yi(t) {
|
|
1731
|
+
return y(ci, {
|
|
1853
1732
|
get children() {
|
|
1854
1733
|
return [(() => {
|
|
1855
|
-
const e =
|
|
1856
|
-
return
|
|
1857
|
-
})(),
|
|
1734
|
+
const e = ki();
|
|
1735
|
+
return j(e, vi), e;
|
|
1736
|
+
})(), L(() => t.children)];
|
|
1858
1737
|
}
|
|
1859
1738
|
});
|
|
1860
1739
|
}
|
|
1861
|
-
function
|
|
1862
|
-
return
|
|
1740
|
+
function Qi(t) {
|
|
1741
|
+
return y(Yi, {
|
|
1863
1742
|
get children() {
|
|
1864
|
-
return
|
|
1743
|
+
return y(Oi, {
|
|
1865
1744
|
widget: !0,
|
|
1866
1745
|
get theme() {
|
|
1867
1746
|
return t.theme;
|
|
@@ -1870,4 +1749,4 @@ function Hi(t) {
|
|
|
1870
1749
|
}
|
|
1871
1750
|
});
|
|
1872
1751
|
}
|
|
1873
|
-
|
|
1752
|
+
Ue("bati-widget", { theme: "" }, Qi);
|