beightone.ui-components 0.1.11 → 0.1.12
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/base.d.ts.map +1 -1
- package/dist/beightone.ui-components.js +296 -307
- package/dist/components/atoms/Button/classes.d.ts +1 -1
- package/dist/components/atoms/Button/classes.d.ts.map +1 -1
- package/dist/components/atoms/Button/index.d.ts.map +1 -1
- package/dist/components/atoms/Button/types.d.ts +1 -2
- package/dist/components/atoms/Button/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -17,16 +17,16 @@ let Mt = class {
|
|
|
17
17
|
return this.cssText;
|
|
18
18
|
}
|
|
19
19
|
};
|
|
20
|
-
const
|
|
20
|
+
const pt = (t) => new Mt(typeof t == "string" ? t : t + "", void 0, dt), Tt = (t, e) => {
|
|
21
21
|
if (Me) t.adoptedStyleSheets = e.map((r) => r instanceof CSSStyleSheet ? r : r.styleSheet);
|
|
22
22
|
else for (const r of e) {
|
|
23
|
-
const o = document.createElement("style"),
|
|
24
|
-
|
|
23
|
+
const o = document.createElement("style"), i = be.litNonce;
|
|
24
|
+
i !== void 0 && o.setAttribute("nonce", i), o.textContent = r.cssText, t.appendChild(o);
|
|
25
25
|
}
|
|
26
26
|
}, Ye = Me ? (t) => t : (t) => t instanceof CSSStyleSheet ? ((e) => {
|
|
27
27
|
let r = "";
|
|
28
28
|
for (const o of e.cssRules) r += o.cssText;
|
|
29
|
-
return
|
|
29
|
+
return pt(r);
|
|
30
30
|
})(t) : t;
|
|
31
31
|
const { is: Rt, defineProperty: Ot, getOwnPropertyDescriptor: Nt, getOwnPropertyNames: Ut, getOwnPropertySymbols: It, getPrototypeOf: jt } = Object, ve = globalThis, Je = ve.trustedTypes, Lt = Je ? Je.emptyScript : "", Ht = ve.reactiveElementPolyfillSupport, ee = (t, e) => t, ge = { toAttribute(t, e) {
|
|
32
32
|
switch (e) {
|
|
@@ -67,19 +67,19 @@ let q = class extends HTMLElement {
|
|
|
67
67
|
}
|
|
68
68
|
static createProperty(e, r = Ze) {
|
|
69
69
|
if (r.state && (r.attribute = !1), this._$Ei(), this.prototype.hasOwnProperty(e) && ((r = Object.create(r)).wrapped = !0), this.elementProperties.set(e, r), !r.noAccessor) {
|
|
70
|
-
const o = /* @__PURE__ */ Symbol(),
|
|
71
|
-
|
|
70
|
+
const o = /* @__PURE__ */ Symbol(), i = this.getPropertyDescriptor(e, o, r);
|
|
71
|
+
i !== void 0 && Ot(this.prototype, e, i);
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
static getPropertyDescriptor(e, r, o) {
|
|
75
|
-
const { get:
|
|
75
|
+
const { get: i, set: s } = Nt(this.prototype, e) ?? { get() {
|
|
76
76
|
return this[r];
|
|
77
77
|
}, set(n) {
|
|
78
78
|
this[r] = n;
|
|
79
79
|
} };
|
|
80
|
-
return { get:
|
|
81
|
-
const d =
|
|
82
|
-
|
|
80
|
+
return { get: i, set(n) {
|
|
81
|
+
const d = i?.call(this);
|
|
82
|
+
s?.call(this, n), this.requestUpdate(e, d, o);
|
|
83
83
|
}, configurable: !0, enumerable: !0 };
|
|
84
84
|
}
|
|
85
85
|
static getPropertyOptions(e) {
|
|
@@ -94,17 +94,17 @@ let q = class extends HTMLElement {
|
|
|
94
94
|
if (this.hasOwnProperty(ee("finalized"))) return;
|
|
95
95
|
if (this.finalized = !0, this._$Ei(), this.hasOwnProperty(ee("properties"))) {
|
|
96
96
|
const r = this.properties, o = [...Ut(r), ...It(r)];
|
|
97
|
-
for (const
|
|
97
|
+
for (const i of o) this.createProperty(i, r[i]);
|
|
98
98
|
}
|
|
99
99
|
const e = this[Symbol.metadata];
|
|
100
100
|
if (e !== null) {
|
|
101
101
|
const r = litPropertyMetadata.get(e);
|
|
102
|
-
if (r !== void 0) for (const [o,
|
|
102
|
+
if (r !== void 0) for (const [o, i] of r) this.elementProperties.set(o, i);
|
|
103
103
|
}
|
|
104
104
|
this._$Eh = /* @__PURE__ */ new Map();
|
|
105
105
|
for (const [r, o] of this.elementProperties) {
|
|
106
|
-
const
|
|
107
|
-
|
|
106
|
+
const i = this._$Eu(r, o);
|
|
107
|
+
i !== void 0 && this._$Eh.set(i, r);
|
|
108
108
|
}
|
|
109
109
|
this.elementStyles = this.finalizeStyles(this.styles);
|
|
110
110
|
}
|
|
@@ -112,7 +112,7 @@ let q = class extends HTMLElement {
|
|
|
112
112
|
const r = [];
|
|
113
113
|
if (Array.isArray(e)) {
|
|
114
114
|
const o = new Set(e.flat(1 / 0).reverse());
|
|
115
|
-
for (const
|
|
115
|
+
for (const i of o) r.unshift(Ye(i));
|
|
116
116
|
} else e !== void 0 && r.push(Ye(e));
|
|
117
117
|
return r;
|
|
118
118
|
}
|
|
@@ -153,31 +153,31 @@ let q = class extends HTMLElement {
|
|
|
153
153
|
this._$AK(e, o);
|
|
154
154
|
}
|
|
155
155
|
_$ET(e, r) {
|
|
156
|
-
const o = this.constructor.elementProperties.get(e),
|
|
157
|
-
if (
|
|
158
|
-
const
|
|
159
|
-
this._$Em = e,
|
|
156
|
+
const o = this.constructor.elementProperties.get(e), i = this.constructor._$Eu(e, o);
|
|
157
|
+
if (i !== void 0 && o.reflect === !0) {
|
|
158
|
+
const s = (o.converter?.toAttribute !== void 0 ? o.converter : ge).toAttribute(r, o.type);
|
|
159
|
+
this._$Em = e, s == null ? this.removeAttribute(i) : this.setAttribute(i, s), this._$Em = null;
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
_$AK(e, r) {
|
|
163
|
-
const o = this.constructor,
|
|
164
|
-
if (
|
|
165
|
-
const
|
|
166
|
-
this._$Em =
|
|
167
|
-
const d = n.fromAttribute(r,
|
|
168
|
-
this[
|
|
163
|
+
const o = this.constructor, i = o._$Eh.get(e);
|
|
164
|
+
if (i !== void 0 && this._$Em !== i) {
|
|
165
|
+
const s = o.getPropertyOptions(i), n = typeof s.converter == "function" ? { fromAttribute: s.converter } : s.converter?.fromAttribute !== void 0 ? s.converter : ge;
|
|
166
|
+
this._$Em = i;
|
|
167
|
+
const d = n.fromAttribute(r, s.type);
|
|
168
|
+
this[i] = d ?? this._$Ej?.get(i) ?? d, this._$Em = null;
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
|
-
requestUpdate(e, r, o,
|
|
171
|
+
requestUpdate(e, r, o, i = !1, s) {
|
|
172
172
|
if (e !== void 0) {
|
|
173
173
|
const n = this.constructor;
|
|
174
|
-
if (
|
|
174
|
+
if (i === !1 && (s = this[e]), o ??= n.getPropertyOptions(e), !((o.hasChanged ?? Te)(s, r) || o.useDefault && o.reflect && s === this._$Ej?.get(e) && !this.hasAttribute(n._$Eu(e, o)))) return;
|
|
175
175
|
this.C(e, r, o);
|
|
176
176
|
}
|
|
177
177
|
this.isUpdatePending === !1 && (this._$ES = this._$EP());
|
|
178
178
|
}
|
|
179
|
-
C(e, r, { useDefault: o, reflect:
|
|
180
|
-
o && !(this._$Ej ??= /* @__PURE__ */ new Map()).has(e) && (this._$Ej.set(e, n ?? r ?? this[e]),
|
|
179
|
+
C(e, r, { useDefault: o, reflect: i, wrapped: s }, n) {
|
|
180
|
+
o && !(this._$Ej ??= /* @__PURE__ */ new Map()).has(e) && (this._$Ej.set(e, n ?? r ?? this[e]), s !== !0 || n !== void 0) || (this._$AL.has(e) || (this.hasUpdated || o || (r = void 0), this._$AL.set(e, r)), i === !0 && this._$Em !== e && (this._$Eq ??= /* @__PURE__ */ new Set()).add(e));
|
|
181
181
|
}
|
|
182
182
|
async _$EP() {
|
|
183
183
|
this.isUpdatePending = !0;
|
|
@@ -196,13 +196,13 @@ let q = class extends HTMLElement {
|
|
|
196
196
|
if (!this.isUpdatePending) return;
|
|
197
197
|
if (!this.hasUpdated) {
|
|
198
198
|
if (this.renderRoot ??= this.createRenderRoot(), this._$Ep) {
|
|
199
|
-
for (const [
|
|
199
|
+
for (const [i, s] of this._$Ep) this[i] = s;
|
|
200
200
|
this._$Ep = void 0;
|
|
201
201
|
}
|
|
202
202
|
const o = this.constructor.elementProperties;
|
|
203
|
-
if (o.size > 0) for (const [
|
|
204
|
-
const { wrapped: n } =
|
|
205
|
-
n !== !0 || this._$AL.has(
|
|
203
|
+
if (o.size > 0) for (const [i, s] of o) {
|
|
204
|
+
const { wrapped: n } = s, d = this[i];
|
|
205
|
+
n !== !0 || this._$AL.has(i) || d === void 0 || this.C(i, void 0, s, d);
|
|
206
206
|
}
|
|
207
207
|
}
|
|
208
208
|
let e = !1;
|
|
@@ -240,7 +240,7 @@ let q = class extends HTMLElement {
|
|
|
240
240
|
}
|
|
241
241
|
};
|
|
242
242
|
q.elementStyles = [], q.shadowRootOptions = { mode: "open" }, q[ee("elementProperties")] = /* @__PURE__ */ new Map(), q[ee("finalized")] = /* @__PURE__ */ new Map(), Ht?.({ ReactiveElement: q }), (ve.reactiveElementVersions ??= []).push("2.1.2");
|
|
243
|
-
const Re = globalThis, Ke = (t) => t, fe = Re.trustedTypes, Xe = fe ? fe.createPolicy("lit-html", { createHTML: (t) => t }) : void 0,
|
|
243
|
+
const Re = globalThis, Ke = (t) => t, fe = Re.trustedTypes, Xe = fe ? fe.createPolicy("lit-html", { createHTML: (t) => t }) : void 0, ht = "$lit$", T = `lit$${Math.random().toFixed(9).slice(2)}$`, ut = "?" + T, Dt = `<${ut}>`, H = document, re = () => H.createComment(""), oe = (t) => t === null || typeof t != "object" && typeof t != "function", Oe = Array.isArray, Bt = (t) => Oe(t) || typeof t?.[Symbol.iterator] == "function", Ce = `[
|
|
244
244
|
\f\r]`, X = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, Qe = /-->/g, et = />/g, I = RegExp(`>|${Ce}(?:([^\\s"'>=/]+)(${Ce}*=${Ce}*(?:[^
|
|
245
245
|
\f\r"'\`<>=]|("|')|))|$)`, "g"), tt = /'/g, rt = /"/g, mt = /^(?:script|style|textarea|title)$/i, Gt = (t) => (e, ...r) => ({ _$litType$: t, strings: e, values: r }), Ee = Gt(1), F = /* @__PURE__ */ Symbol.for("lit-noChange"), w = /* @__PURE__ */ Symbol.for("lit-nothing"), ot = /* @__PURE__ */ new WeakMap(), L = H.createTreeWalker(H, 129);
|
|
246
246
|
function bt(t, e) {
|
|
@@ -249,46 +249,46 @@ function bt(t, e) {
|
|
|
249
249
|
}
|
|
250
250
|
const Vt = (t, e) => {
|
|
251
251
|
const r = t.length - 1, o = [];
|
|
252
|
-
let
|
|
252
|
+
let i, s = e === 2 ? "<svg>" : e === 3 ? "<math>" : "", n = X;
|
|
253
253
|
for (let d = 0; d < r; d++) {
|
|
254
254
|
const a = t[d];
|
|
255
255
|
let u, g, b = -1, f = 0;
|
|
256
|
-
for (; f < a.length && (n.lastIndex = f, g = n.exec(a), g !== null); ) f = n.lastIndex, n === X ? g[1] === "!--" ? n = Qe : g[1] !== void 0 ? n = et : g[2] !== void 0 ? (mt.test(g[2]) && (
|
|
256
|
+
for (; f < a.length && (n.lastIndex = f, g = n.exec(a), g !== null); ) f = n.lastIndex, n === X ? g[1] === "!--" ? n = Qe : g[1] !== void 0 ? n = et : g[2] !== void 0 ? (mt.test(g[2]) && (i = RegExp("</" + g[2], "g")), n = I) : g[3] !== void 0 && (n = I) : n === I ? g[0] === ">" ? (n = i ?? X, b = -1) : g[1] === void 0 ? b = -2 : (b = n.lastIndex - g[2].length, u = g[1], n = g[3] === void 0 ? I : g[3] === '"' ? rt : tt) : n === rt || n === tt ? n = I : n === Qe || n === et ? n = X : (n = I, i = void 0);
|
|
257
257
|
const k = n === I && t[d + 1].startsWith("/>") ? " " : "";
|
|
258
|
-
|
|
258
|
+
s += n === X ? a + Dt : b >= 0 ? (o.push(u), a.slice(0, b) + ht + a.slice(b) + T + k) : a + T + (b === -2 ? d : k);
|
|
259
259
|
}
|
|
260
|
-
return [bt(t,
|
|
260
|
+
return [bt(t, s + (t[r] || "<?>") + (e === 2 ? "</svg>" : e === 3 ? "</math>" : "")), o];
|
|
261
261
|
};
|
|
262
|
-
class
|
|
262
|
+
class ie {
|
|
263
263
|
constructor({ strings: e, _$litType$: r }, o) {
|
|
264
|
-
let
|
|
264
|
+
let i;
|
|
265
265
|
this.parts = [];
|
|
266
|
-
let
|
|
266
|
+
let s = 0, n = 0;
|
|
267
267
|
const d = e.length - 1, a = this.parts, [u, g] = Vt(e, r);
|
|
268
|
-
if (this.el =
|
|
268
|
+
if (this.el = ie.createElement(u, o), L.currentNode = this.el.content, r === 2 || r === 3) {
|
|
269
269
|
const b = this.el.content.firstChild;
|
|
270
270
|
b.replaceWith(...b.childNodes);
|
|
271
271
|
}
|
|
272
|
-
for (; (
|
|
273
|
-
if (
|
|
274
|
-
if (
|
|
275
|
-
const f = g[n++], k =
|
|
276
|
-
a.push({ type: 1, index:
|
|
277
|
-
} else b.startsWith(T) && (a.push({ type: 6, index:
|
|
278
|
-
if (mt.test(
|
|
279
|
-
const b =
|
|
272
|
+
for (; (i = L.nextNode()) !== null && a.length < d; ) {
|
|
273
|
+
if (i.nodeType === 1) {
|
|
274
|
+
if (i.hasAttributes()) for (const b of i.getAttributeNames()) if (b.endsWith(ht)) {
|
|
275
|
+
const f = g[n++], k = i.getAttribute(b).split(T), C = /([.?@])?(.*)/.exec(f);
|
|
276
|
+
a.push({ type: 1, index: s, name: C[2], strings: k, ctor: C[1] === "." ? qt : C[1] === "?" ? Ft : C[1] === "@" ? Yt : we }), i.removeAttribute(b);
|
|
277
|
+
} else b.startsWith(T) && (a.push({ type: 6, index: s }), i.removeAttribute(b));
|
|
278
|
+
if (mt.test(i.tagName)) {
|
|
279
|
+
const b = i.textContent.split(T), f = b.length - 1;
|
|
280
280
|
if (f > 0) {
|
|
281
|
-
|
|
282
|
-
for (let k = 0; k < f; k++)
|
|
283
|
-
|
|
281
|
+
i.textContent = fe ? fe.emptyScript : "";
|
|
282
|
+
for (let k = 0; k < f; k++) i.append(b[k], re()), L.nextNode(), a.push({ type: 2, index: ++s });
|
|
283
|
+
i.append(b[f], re());
|
|
284
284
|
}
|
|
285
285
|
}
|
|
286
|
-
} else if (
|
|
286
|
+
} else if (i.nodeType === 8) if (i.data === ut) a.push({ type: 2, index: s });
|
|
287
287
|
else {
|
|
288
288
|
let b = -1;
|
|
289
|
-
for (; (b =
|
|
289
|
+
for (; (b = i.data.indexOf(T, b + 1)) !== -1; ) a.push({ type: 7, index: s }), b += T.length - 1;
|
|
290
290
|
}
|
|
291
|
-
|
|
291
|
+
s++;
|
|
292
292
|
}
|
|
293
293
|
}
|
|
294
294
|
static createElement(e, r) {
|
|
@@ -298,9 +298,9 @@ class se {
|
|
|
298
298
|
}
|
|
299
299
|
function Y(t, e, r = t, o) {
|
|
300
300
|
if (e === F) return e;
|
|
301
|
-
let
|
|
302
|
-
const
|
|
303
|
-
return
|
|
301
|
+
let i = o !== void 0 ? r._$Co?.[o] : r._$Cl;
|
|
302
|
+
const s = oe(e) ? void 0 : e._$litDirective$;
|
|
303
|
+
return i?.constructor !== s && (i?._$AO?.(!1), s === void 0 ? i = void 0 : (i = new s(t), i._$AT(t, r, o)), o !== void 0 ? (r._$Co ??= [])[o] = i : r._$Cl = i), i !== void 0 && (e = Y(t, i._$AS(t, e.values), i, o)), e;
|
|
304
304
|
}
|
|
305
305
|
class Wt {
|
|
306
306
|
constructor(e, r) {
|
|
@@ -313,29 +313,29 @@ class Wt {
|
|
|
313
313
|
return this._$AM._$AU;
|
|
314
314
|
}
|
|
315
315
|
u(e) {
|
|
316
|
-
const { el: { content: r }, parts: o } = this._$AD,
|
|
317
|
-
L.currentNode =
|
|
318
|
-
let
|
|
316
|
+
const { el: { content: r }, parts: o } = this._$AD, i = (e?.creationScope ?? H).importNode(r, !0);
|
|
317
|
+
L.currentNode = i;
|
|
318
|
+
let s = L.nextNode(), n = 0, d = 0, a = o[0];
|
|
319
319
|
for (; a !== void 0; ) {
|
|
320
320
|
if (n === a.index) {
|
|
321
321
|
let u;
|
|
322
|
-
a.type === 2 ? u = new
|
|
322
|
+
a.type === 2 ? u = new se(s, s.nextSibling, this, e) : a.type === 1 ? u = new a.ctor(s, a.name, a.strings, this, e) : a.type === 6 && (u = new Jt(s, this, e)), this._$AV.push(u), a = o[++d];
|
|
323
323
|
}
|
|
324
|
-
n !== a?.index && (
|
|
324
|
+
n !== a?.index && (s = L.nextNode(), n++);
|
|
325
325
|
}
|
|
326
|
-
return L.currentNode = H,
|
|
326
|
+
return L.currentNode = H, i;
|
|
327
327
|
}
|
|
328
328
|
p(e) {
|
|
329
329
|
let r = 0;
|
|
330
330
|
for (const o of this._$AV) o !== void 0 && (o.strings !== void 0 ? (o._$AI(e, o, r), r += o.strings.length - 2) : o._$AI(e[r])), r++;
|
|
331
331
|
}
|
|
332
332
|
}
|
|
333
|
-
class
|
|
333
|
+
class se {
|
|
334
334
|
get _$AU() {
|
|
335
335
|
return this._$AM?._$AU ?? this._$Cv;
|
|
336
336
|
}
|
|
337
|
-
constructor(e, r, o,
|
|
338
|
-
this.type = 2, this._$AH = w, this._$AN = void 0, this._$AA = e, this._$AB = r, this._$AM = o, this.options =
|
|
337
|
+
constructor(e, r, o, i) {
|
|
338
|
+
this.type = 2, this._$AH = w, this._$AN = void 0, this._$AA = e, this._$AB = r, this._$AM = o, this.options = i, this._$Cv = i?.isConnected ?? !0;
|
|
339
339
|
}
|
|
340
340
|
get parentNode() {
|
|
341
341
|
let e = this._$AA.parentNode;
|
|
@@ -361,23 +361,23 @@ class ie {
|
|
|
361
361
|
this._$AH !== w && oe(this._$AH) ? this._$AA.nextSibling.data = e : this.T(H.createTextNode(e)), this._$AH = e;
|
|
362
362
|
}
|
|
363
363
|
$(e) {
|
|
364
|
-
const { values: r, _$litType$: o } = e,
|
|
365
|
-
if (this._$AH?._$AD ===
|
|
364
|
+
const { values: r, _$litType$: o } = e, i = typeof o == "number" ? this._$AC(e) : (o.el === void 0 && (o.el = ie.createElement(bt(o.h, o.h[0]), this.options)), o);
|
|
365
|
+
if (this._$AH?._$AD === i) this._$AH.p(r);
|
|
366
366
|
else {
|
|
367
|
-
const
|
|
368
|
-
|
|
367
|
+
const s = new Wt(i, this), n = s.u(this.options);
|
|
368
|
+
s.p(r), this.T(n), this._$AH = s;
|
|
369
369
|
}
|
|
370
370
|
}
|
|
371
371
|
_$AC(e) {
|
|
372
372
|
let r = ot.get(e.strings);
|
|
373
|
-
return r === void 0 && ot.set(e.strings, r = new
|
|
373
|
+
return r === void 0 && ot.set(e.strings, r = new ie(e)), r;
|
|
374
374
|
}
|
|
375
375
|
k(e) {
|
|
376
376
|
Oe(this._$AH) || (this._$AH = [], this._$AR());
|
|
377
377
|
const r = this._$AH;
|
|
378
|
-
let o,
|
|
379
|
-
for (const
|
|
380
|
-
|
|
378
|
+
let o, i = 0;
|
|
379
|
+
for (const s of e) i === r.length ? r.push(o = new se(this.O(re()), this.O(re()), this, this.options)) : o = r[i], o._$AI(s), i++;
|
|
380
|
+
i < r.length && (this._$AR(o && o._$AB.nextSibling, i), r.length = i);
|
|
381
381
|
}
|
|
382
382
|
_$AR(e = this._$AA.nextSibling, r) {
|
|
383
383
|
for (this._$AP?.(!1, !0, r); e !== this._$AB; ) {
|
|
@@ -396,19 +396,19 @@ class we {
|
|
|
396
396
|
get _$AU() {
|
|
397
397
|
return this._$AM._$AU;
|
|
398
398
|
}
|
|
399
|
-
constructor(e, r, o,
|
|
400
|
-
this.type = 1, this._$AH = w, this._$AN = void 0, this.element = e, this.name = r, this._$AM =
|
|
399
|
+
constructor(e, r, o, i, s) {
|
|
400
|
+
this.type = 1, this._$AH = w, this._$AN = void 0, this.element = e, this.name = r, this._$AM = i, this.options = s, o.length > 2 || o[0] !== "" || o[1] !== "" ? (this._$AH = Array(o.length - 1).fill(new String()), this.strings = o) : this._$AH = w;
|
|
401
401
|
}
|
|
402
|
-
_$AI(e, r = this, o,
|
|
403
|
-
const
|
|
402
|
+
_$AI(e, r = this, o, i) {
|
|
403
|
+
const s = this.strings;
|
|
404
404
|
let n = !1;
|
|
405
|
-
if (
|
|
405
|
+
if (s === void 0) e = Y(this, e, r, 0), n = !oe(e) || e !== this._$AH && e !== F, n && (this._$AH = e);
|
|
406
406
|
else {
|
|
407
407
|
const d = e;
|
|
408
408
|
let a, u;
|
|
409
|
-
for (e =
|
|
409
|
+
for (e = s[0], a = 0; a < s.length - 1; a++) u = Y(this, d[o + a], r, a), u === F && (u = this._$AH[a]), n ||= !oe(u) || u !== this._$AH[a], u === w ? e = w : e !== w && (e += (u ?? "") + s[a + 1]), this._$AH[a] = u;
|
|
410
410
|
}
|
|
411
|
-
n && !
|
|
411
|
+
n && !i && this.j(e);
|
|
412
412
|
}
|
|
413
413
|
j(e) {
|
|
414
414
|
e === w ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, e ?? "");
|
|
@@ -431,13 +431,13 @@ class Ft extends we {
|
|
|
431
431
|
}
|
|
432
432
|
}
|
|
433
433
|
class Yt extends we {
|
|
434
|
-
constructor(e, r, o,
|
|
435
|
-
super(e, r, o,
|
|
434
|
+
constructor(e, r, o, i, s) {
|
|
435
|
+
super(e, r, o, i, s), this.type = 5;
|
|
436
436
|
}
|
|
437
437
|
_$AI(e, r = this) {
|
|
438
438
|
if ((e = Y(this, e, r, 0) ?? w) === F) return;
|
|
439
|
-
const o = this._$AH,
|
|
440
|
-
|
|
439
|
+
const o = this._$AH, i = e === w && o !== w || e.capture !== o.capture || e.once !== o.once || e.passive !== o.passive, s = e !== w && (o === w || i);
|
|
440
|
+
i && this.element.removeEventListener(this.name, this, o), s && this.element.addEventListener(this.name, this, e), this._$AH = e;
|
|
441
441
|
}
|
|
442
442
|
handleEvent(e) {
|
|
443
443
|
typeof this._$AH == "function" ? this._$AH.call(this.options?.host ?? this.element, e) : this._$AH.handleEvent(e);
|
|
@@ -455,15 +455,15 @@ class Jt {
|
|
|
455
455
|
}
|
|
456
456
|
}
|
|
457
457
|
const Zt = Re.litHtmlPolyfillSupport;
|
|
458
|
-
Zt?.(
|
|
458
|
+
Zt?.(ie, se), (Re.litHtmlVersions ??= []).push("3.3.2");
|
|
459
459
|
const Kt = (t, e, r) => {
|
|
460
460
|
const o = r?.renderBefore ?? e;
|
|
461
|
-
let
|
|
462
|
-
if (
|
|
463
|
-
const
|
|
464
|
-
o._$litPart$ =
|
|
461
|
+
let i = o._$litPart$;
|
|
462
|
+
if (i === void 0) {
|
|
463
|
+
const s = r?.renderBefore ?? null;
|
|
464
|
+
o._$litPart$ = i = new se(e.insertBefore(re(), s), s, void 0, r ?? {});
|
|
465
465
|
}
|
|
466
|
-
return
|
|
466
|
+
return i._$AI(t), i;
|
|
467
467
|
};
|
|
468
468
|
const Ne = globalThis;
|
|
469
469
|
class te extends q {
|
|
@@ -498,9 +498,9 @@ const Qt = (t) => (e, r) => {
|
|
|
498
498
|
}) : customElements.define(t, e);
|
|
499
499
|
};
|
|
500
500
|
const er = { attribute: !0, type: String, converter: ge, reflect: !1, hasChanged: Te }, tr = (t = er, e, r) => {
|
|
501
|
-
const { kind: o, metadata:
|
|
502
|
-
let
|
|
503
|
-
if (
|
|
501
|
+
const { kind: o, metadata: i } = r;
|
|
502
|
+
let s = globalThis.litPropertyMetadata.get(i);
|
|
503
|
+
if (s === void 0 && globalThis.litPropertyMetadata.set(i, s = /* @__PURE__ */ new Map()), o === "setter" && ((t = Object.create(t)).wrapped = !0), s.set(r.name, t), o === "accessor") {
|
|
504
504
|
const { name: n } = r;
|
|
505
505
|
return { set(d) {
|
|
506
506
|
const a = e.get.call(this);
|
|
@@ -519,43 +519,43 @@ const er = { attribute: !0, type: String, converter: ge, reflect: !1, hasChanged
|
|
|
519
519
|
throw Error("Unsupported decorator location: " + o);
|
|
520
520
|
};
|
|
521
521
|
function ne(t) {
|
|
522
|
-
return (e, r) => typeof r == "object" ? tr(t, e, r) : ((o,
|
|
523
|
-
const n =
|
|
524
|
-
return
|
|
522
|
+
return (e, r) => typeof r == "object" ? tr(t, e, r) : ((o, i, s) => {
|
|
523
|
+
const n = i.hasOwnProperty(s);
|
|
524
|
+
return i.constructor.createProperty(s, o), n ? Object.getOwnPropertyDescriptor(i, s) : void 0;
|
|
525
525
|
})(t, e, r);
|
|
526
526
|
}
|
|
527
|
-
const rr = `@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--spacing:.25rem;--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height: 1.5 ;--font-weight-medium:500;--font-weight-semibold:600;--radius-md:.375rem;--radius-lg:.5rem;--animate-spin:spin 1s linear infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-brand-primary-300:#ceff84;--color-brand-primary-600:#97df2b;--color-brand-primary-900:#4a7902;--color-brand-secondary-300:#b68bff;--color-brand-secondary-700:#6947a0;--color-universal-green-300:#86efac;--color-universal-green-400:#4ade80;--color-universal-green-700:#15803d;--color-universal-green-800:#166534;--color-universal-neutral-0:#fff;--color-universal-neutral-200:#e5e5e5;--color-universal-neutral-400:#a3a3a3;--color-universal-neutral-500:#737373;--color-universal-neutral-600:#525252;--color-universal-neutral-950:#0a0a0a;--color-universal-red-400:#f87171;--color-universal-red-600:#dc2626;--color-neutral-primary:var(--color-universal-neutral-950);--color-neutral-quartenary:var(--color-universal-neutral-400);--color-neutral-quinary:var(--color-universal-neutral-200)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:where(:root),:root:has(input.theme-controller[value=light]:checked),[data-theme=light]{color-scheme:light;--color-base-100:oklch(100% 0 0);--color-base-200:oklch(98% 0 0);--color-base-300:oklch(95% 0 0);--color-base-content:oklch(21% .006 285.885);--color-primary:oklch(45% .24 277.023);--color-primary-content:oklch(93% .034 272.788);--color-secondary:oklch(65% .241 354.308);--color-secondary-content:oklch(94% .028 342.258);--color-accent:oklch(77% .152 181.912);--color-accent-content:oklch(38% .063 188.416);--color-neutral:oklch(14% .005 285.823);--color-neutral-content:oklch(92% .004 286.32);--color-info:oklch(74% .16 232.661);--color-info-content:oklch(29% .066 243.157);--color-success:oklch(76% .177 163.223);--color-success-content:oklch(37% .077 168.94);--color-warning:oklch(82% .189 84.429);--color-warning-content:oklch(41% .112 45.904);--color-error:oklch(71% .194 13.428);--color-error-content:oklch(27% .105 12.094);--radius-selector:.5rem;--radius-field:.25rem;--radius-box:.5rem;--size-selector:.25rem;--size-field:.25rem;--border:1px;--depth:1;--noise:0}@media(prefers-color-scheme:dark){:root:not([data-theme]){color-scheme:dark;--color-base-100:oklch(25.33% .016 252.42);--color-base-200:oklch(23.26% .014 253.1);--color-base-300:oklch(21.15% .012 254.09);--color-base-content:oklch(97.807% .029 256.847);--color-primary:oklch(58% .233 277.117);--color-primary-content:oklch(96% .018 272.314);--color-secondary:oklch(65% .241 354.308);--color-secondary-content:oklch(94% .028 342.258);--color-accent:oklch(77% .152 181.912);--color-accent-content:oklch(38% .063 188.416);--color-neutral:oklch(14% .005 285.823);--color-neutral-content:oklch(92% .004 286.32);--color-info:oklch(74% .16 232.661);--color-info-content:oklch(29% .066 243.157);--color-success:oklch(76% .177 163.223);--color-success-content:oklch(37% .077 168.94);--color-warning:oklch(82% .189 84.429);--color-warning-content:oklch(41% .112 45.904);--color-error:oklch(71% .194 13.428);--color-error-content:oklch(27% .105 12.094);--radius-selector:.5rem;--radius-field:.25rem;--radius-box:.5rem;--size-selector:.25rem;--size-field:.25rem;--border:1px;--depth:1;--noise:0}}:root:has(input.theme-controller[value=light]:checked),[data-theme=light]{color-scheme:light;--color-base-100:oklch(100% 0 0);--color-base-200:oklch(98% 0 0);--color-base-300:oklch(95% 0 0);--color-base-content:oklch(21% .006 285.885);--color-primary:oklch(45% .24 277.023);--color-primary-content:oklch(93% .034 272.788);--color-secondary:oklch(65% .241 354.308);--color-secondary-content:oklch(94% .028 342.258);--color-accent:oklch(77% .152 181.912);--color-accent-content:oklch(38% .063 188.416);--color-neutral:oklch(14% .005 285.823);--color-neutral-content:oklch(92% .004 286.32);--color-info:oklch(74% .16 232.661);--color-info-content:oklch(29% .066 243.157);--color-success:oklch(76% .177 163.223);--color-success-content:oklch(37% .077 168.94);--color-warning:oklch(82% .189 84.429);--color-warning-content:oklch(41% .112 45.904);--color-error:oklch(71% .194 13.428);--color-error-content:oklch(27% .105 12.094);--radius-selector:.5rem;--radius-field:.25rem;--radius-box:.5rem;--size-selector:.25rem;--size-field:.25rem;--border:1px;--depth:1;--noise:0}:root:has(input.theme-controller[value=dark]:checked),[data-theme=dark]{color-scheme:dark;--color-base-100:oklch(25.33% .016 252.42);--color-base-200:oklch(23.26% .014 253.1);--color-base-300:oklch(21.15% .012 254.09);--color-base-content:oklch(97.807% .029 256.847);--color-primary:oklch(58% .233 277.117);--color-primary-content:oklch(96% .018 272.314);--color-secondary:oklch(65% .241 354.308);--color-secondary-content:oklch(94% .028 342.258);--color-accent:oklch(77% .152 181.912);--color-accent-content:oklch(38% .063 188.416);--color-neutral:oklch(14% .005 285.823);--color-neutral-content:oklch(92% .004 286.32);--color-info:oklch(74% .16 232.661);--color-info-content:oklch(29% .066 243.157);--color-success:oklch(76% .177 163.223);--color-success-content:oklch(37% .077 168.94);--color-warning:oklch(82% .189 84.429);--color-warning-content:oklch(41% .112 45.904);--color-error:oklch(71% .194 13.428);--color-error-content:oklch(27% .105 12.094);--radius-selector:.5rem;--radius-field:.25rem;--radius-box:.5rem;--size-selector:.25rem;--size-field:.25rem;--border:1px;--depth:1;--noise:0}:root{--fx-noise:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.34' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23a)' opacity='0.2'%3E%3C/rect%3E%3C/svg%3E");scrollbar-color:currentColor #0000}@supports (color:color-mix(in lab,red,red)){:root{scrollbar-color:color-mix(in oklch,currentColor 35%,#0000) #0000}}@property --radialprogress{syntax:"<percentage>";inherits:true;initial-value:0%}:root:not(span){overflow:var(--page-overflow)}:root{background:var(--page-scroll-bg,var(--root-bg));--page-scroll-bg-on:linear-gradient(var(--root-bg,#0000), var(--root-bg,#0000)) var(--root-bg,#0000)}@supports (color:color-mix(in lab,red,red)){:root{--page-scroll-bg-on:linear-gradient(var(--root-bg,#0000), var(--root-bg,#0000)) color-mix(in srgb, var(--root-bg,#0000), oklch(0% 0 0) calc(var(--page-has-backdrop,0) * 40%))}}:root{--page-scroll-transition-on:background-color .3s ease-out;transition:var(--page-scroll-transition);scrollbar-gutter:var(--page-scroll-gutter,unset);scrollbar-gutter:if(style(--page-has-scroll: 1): var(--page-scroll-gutter,unset) ; else: unset)}@keyframes set-page-has-scroll{0%,to{--page-has-scroll:1}}:root,[data-theme]{background:var(--page-scroll-bg,var(--root-bg));color:var(--color-base-content)}:where(:root,[data-theme]){--root-bg:var(--color-base-100)}}@layer components;@layer utilities{@layer daisyui.l1.l2.l3{.loading{pointer-events:none;aspect-ratio:1;vertical-align:middle;width:calc(var(--size-selector,.25rem) * 6);background-color:currentColor;display:inline-block;-webkit-mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");-webkit-mask-position:50%;mask-position:50%;-webkit-mask-size:100%;mask-size:100%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.link{cursor:pointer;text-decoration-line:underline}.link:focus{--tw-outline-style:none;outline-style:none}@media(forced-colors:active){.link:focus{outline-offset:2px;outline:2px solid #0000}}.link:focus-visible{outline-offset:2px;outline:2px solid}}.pointer-events-none{pointer-events:none}.relative{position:relative}.static{position:static}.inline-flex{display:inline-flex}.size-9{width:calc(var(--spacing) * 9);height:calc(var(--spacing) * 9)}.size-10{width:calc(var(--spacing) * 10);height:calc(var(--spacing) * 10)}.size-12{width:calc(var(--spacing) * 12);height:calc(var(--spacing) * 12)}.size-14{width:calc(var(--spacing) * 14);height:calc(var(--spacing) * 14)}.h-9{height:calc(var(--spacing) * 9)}.h-10{height:calc(var(--spacing) * 10)}.h-12{height:calc(var(--spacing) * 12)}.h-14{height:calc(var(--spacing) * 14)}.shrink-0{flex-shrink:0}.animate-spin{animation:var(--animate-spin)}.cursor-pointer{cursor:pointer}.cursor-wait{cursor:wait}.items-center{align-items:center}.justify-center{justify-content:center}.gap-1{gap:calc(var(--spacing) * 1)}.gap-2{gap:calc(var(--spacing) * 2)}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-solid{--tw-border-style:solid;border-style:solid}.border-brand-primary-600{border-color:var(--color-brand-primary-600)}.border-brand-primary-900{border-color:var(--color-brand-primary-900)}.border-transparent{border-color:#0000}.bg-brand-primary-600{background-color:var(--color-brand-primary-600)}.bg-transparent{background-color:#0000}.fill-brand-primary-900{fill:var(--color-brand-primary-900)}.fill-neutral-primary{fill:var(--color-neutral-primary)}.stroke-brand-primary-300{stroke:var(--color-brand-primary-300)}.stroke-neutral-primary{stroke:var(--color-neutral-primary)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-5{padding-inline:calc(var(--spacing) * 5)}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.whitespace-nowrap{white-space:nowrap}.text-brand-primary-900{color:var(--color-brand-primary-900)}.text-neutral-primary{color:var(--color-neutral-primary)}.text-transparent{color:#0000}.opacity-25{opacity:.25}.opacity-75{opacity:.75}.opacity-100{opacity:1}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.outline-none{--tw-outline-style:none;outline-style:none}@media(hover:hover){.hover\\:border-brand-primary-300:hover{border-color:var(--color-brand-primary-300)}.hover\\:border-brand-primary-900:hover{border-color:var(--color-brand-primary-900)}.hover\\:bg-brand-primary-300:hover{background-color:var(--color-brand-primary-300)}}.focus-visible\\:ring-\\[4px\\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-brand-primary-300:focus-visible{--tw-ring-color:var(--color-brand-primary-300)}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:border-transparent:disabled{border-color:#0000}.disabled\\:bg-neutral-quinary:disabled{background-color:var(--color-neutral-quinary)}.disabled\\:bg-transparent:disabled{background-color:#0000}.disabled\\:font-semibold:disabled{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.disabled\\:text-neutral-quartenary:disabled{color:var(--color-neutral-quartenary)}.\\[\\&_svg\\]\\:pointer-events-none svg{pointer-events:none}.\\[\\&_svg\\]\\:shrink-0 svg{flex-shrink:0}.\\[\\&_svg\\:not\\(\\[class\\*\\=\\"size-\\"\\]\\)\\]\\:size-4 svg:not([class*=size-]){width:calc(var(--spacing) * 4);height:calc(var(--spacing) * 4)}}@keyframes rating{0%,40%{filter:brightness(1.05)contrast(1.05);scale:1.1}}@keyframes dropdown{0%{opacity:0}}@keyframes radio{0%{padding:5px}50%{padding:3px}}@keyframes toast{0%{opacity:0;scale:.9}to{opacity:1;scale:1}}@keyframes rotator{89.9999%,to{--first-item-position:0 0%}90%,99.9999%{--first-item-position:0 calc(var(--items) * 100%)}to{translate:0 -100%}}@keyframes skeleton{0%{background-position:150%}to{background-position:-50%}}@keyframes menu{0%{opacity:0}}@keyframes progress{50%{background-position-x:-115%}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@keyframes spin{to{transform:rotate(360deg)}}`, je = class je extends te {
|
|
527
|
+
const rr = `@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-border-style:solid;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--spacing:.25rem;--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height: 1.5 ;--font-weight-medium:500;--font-weight-semibold:600;--radius-md:.375rem;--radius-lg:.5rem;--animate-spin:spin 1s linear infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-brand-primary-300:var(--b8-brand-primary-300,#ceff84);--color-brand-primary-600:var(--b8-brand-primary-600,#97df2b);--color-brand-primary-900:var(--b8-brand-primary-900,#4a7902);--color-brand-secondary-300:var(--b8-brand-secondary-300,#b68bff);--color-brand-secondary-700:var(--b8-brand-secondary-700,#6947a0);--color-universal-green-300:var(--b8-universal-green-300,#86efac);--color-universal-green-400:var(--b8-universal-green-400,#4ade80);--color-universal-green-700:var(--b8-universal-green-700,#15803d);--color-universal-green-800:var(--b8-universal-green-800,#166534);--color-universal-neutral-0:var(--b8-universal-neutral-0,#fff);--color-universal-neutral-200:var(--b8-universal-neutral-200,#e5e5e5);--color-universal-neutral-400:var(--b8-universal-neutral-400,#a3a3a3);--color-universal-neutral-500:var(--b8-universal-neutral-500,#737373);--color-universal-neutral-600:var(--b8-universal-neutral-600,#525252);--color-universal-neutral-950:var(--b8-universal-neutral-950,#0a0a0a);--color-universal-red-400:var(--b8-universal-red-400,#f87171);--color-universal-red-600:var(--b8-universal-red-600,#dc2626);--color-neutral-primary:var(--b8-neutral-primary,var(--color-universal-neutral-950));--color-neutral-quartenary:var(--b8-neutral-quartenary,var(--color-universal-neutral-400));--color-neutral-quinary:var(--b8-neutral-quinary,var(--color-universal-neutral-200));--color-brand-primary-bold:var(--b8-brand-primary-bold,var(--color-brand-primary-900));--color-brand-primary-medium:var(--b8-brand-primary-medium,var(--color-brand-primary-600));--color-brand-primary-light:var(--b8-brand-primary-light,var(--color-brand-primary-300))}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:where(:root),:root:has(input.theme-controller[value=light]:checked),[data-theme=light]{color-scheme:light;--color-base-100:oklch(100% 0 0);--color-base-200:oklch(98% 0 0);--color-base-300:oklch(95% 0 0);--color-base-content:oklch(21% .006 285.885);--color-primary:oklch(45% .24 277.023);--color-primary-content:oklch(93% .034 272.788);--color-secondary:oklch(65% .241 354.308);--color-secondary-content:oklch(94% .028 342.258);--color-accent:oklch(77% .152 181.912);--color-accent-content:oklch(38% .063 188.416);--color-neutral:oklch(14% .005 285.823);--color-neutral-content:oklch(92% .004 286.32);--color-info:oklch(74% .16 232.661);--color-info-content:oklch(29% .066 243.157);--color-success:oklch(76% .177 163.223);--color-success-content:oklch(37% .077 168.94);--color-warning:oklch(82% .189 84.429);--color-warning-content:oklch(41% .112 45.904);--color-error:oklch(71% .194 13.428);--color-error-content:oklch(27% .105 12.094);--radius-selector:.5rem;--radius-field:.25rem;--radius-box:.5rem;--size-selector:.25rem;--size-field:.25rem;--border:1px;--depth:1;--noise:0}@media(prefers-color-scheme:dark){:root:not([data-theme]){color-scheme:dark;--color-base-100:oklch(25.33% .016 252.42);--color-base-200:oklch(23.26% .014 253.1);--color-base-300:oklch(21.15% .012 254.09);--color-base-content:oklch(97.807% .029 256.847);--color-primary:oklch(58% .233 277.117);--color-primary-content:oklch(96% .018 272.314);--color-secondary:oklch(65% .241 354.308);--color-secondary-content:oklch(94% .028 342.258);--color-accent:oklch(77% .152 181.912);--color-accent-content:oklch(38% .063 188.416);--color-neutral:oklch(14% .005 285.823);--color-neutral-content:oklch(92% .004 286.32);--color-info:oklch(74% .16 232.661);--color-info-content:oklch(29% .066 243.157);--color-success:oklch(76% .177 163.223);--color-success-content:oklch(37% .077 168.94);--color-warning:oklch(82% .189 84.429);--color-warning-content:oklch(41% .112 45.904);--color-error:oklch(71% .194 13.428);--color-error-content:oklch(27% .105 12.094);--radius-selector:.5rem;--radius-field:.25rem;--radius-box:.5rem;--size-selector:.25rem;--size-field:.25rem;--border:1px;--depth:1;--noise:0}}:root:has(input.theme-controller[value=light]:checked),[data-theme=light]{color-scheme:light;--color-base-100:oklch(100% 0 0);--color-base-200:oklch(98% 0 0);--color-base-300:oklch(95% 0 0);--color-base-content:oklch(21% .006 285.885);--color-primary:oklch(45% .24 277.023);--color-primary-content:oklch(93% .034 272.788);--color-secondary:oklch(65% .241 354.308);--color-secondary-content:oklch(94% .028 342.258);--color-accent:oklch(77% .152 181.912);--color-accent-content:oklch(38% .063 188.416);--color-neutral:oklch(14% .005 285.823);--color-neutral-content:oklch(92% .004 286.32);--color-info:oklch(74% .16 232.661);--color-info-content:oklch(29% .066 243.157);--color-success:oklch(76% .177 163.223);--color-success-content:oklch(37% .077 168.94);--color-warning:oklch(82% .189 84.429);--color-warning-content:oklch(41% .112 45.904);--color-error:oklch(71% .194 13.428);--color-error-content:oklch(27% .105 12.094);--radius-selector:.5rem;--radius-field:.25rem;--radius-box:.5rem;--size-selector:.25rem;--size-field:.25rem;--border:1px;--depth:1;--noise:0}:root:has(input.theme-controller[value=dark]:checked),[data-theme=dark]{color-scheme:dark;--color-base-100:oklch(25.33% .016 252.42);--color-base-200:oklch(23.26% .014 253.1);--color-base-300:oklch(21.15% .012 254.09);--color-base-content:oklch(97.807% .029 256.847);--color-primary:oklch(58% .233 277.117);--color-primary-content:oklch(96% .018 272.314);--color-secondary:oklch(65% .241 354.308);--color-secondary-content:oklch(94% .028 342.258);--color-accent:oklch(77% .152 181.912);--color-accent-content:oklch(38% .063 188.416);--color-neutral:oklch(14% .005 285.823);--color-neutral-content:oklch(92% .004 286.32);--color-info:oklch(74% .16 232.661);--color-info-content:oklch(29% .066 243.157);--color-success:oklch(76% .177 163.223);--color-success-content:oklch(37% .077 168.94);--color-warning:oklch(82% .189 84.429);--color-warning-content:oklch(41% .112 45.904);--color-error:oklch(71% .194 13.428);--color-error-content:oklch(27% .105 12.094);--radius-selector:.5rem;--radius-field:.25rem;--radius-box:.5rem;--size-selector:.25rem;--size-field:.25rem;--border:1px;--depth:1;--noise:0}:root{--fx-noise:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.34' numOctaves='4' stitchTiles='stitch'%3E%3C/feTurbulence%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23a)' opacity='0.2'%3E%3C/rect%3E%3C/svg%3E");scrollbar-color:currentColor #0000}@supports (color:color-mix(in lab,red,red)){:root{scrollbar-color:color-mix(in oklch,currentColor 35%,#0000) #0000}}@property --radialprogress{syntax:"<percentage>";inherits:true;initial-value:0%}:root:not(span){overflow:var(--page-overflow)}:root{background:var(--page-scroll-bg,var(--root-bg));--page-scroll-bg-on:linear-gradient(var(--root-bg,#0000), var(--root-bg,#0000)) var(--root-bg,#0000)}@supports (color:color-mix(in lab,red,red)){:root{--page-scroll-bg-on:linear-gradient(var(--root-bg,#0000), var(--root-bg,#0000)) color-mix(in srgb, var(--root-bg,#0000), oklch(0% 0 0) calc(var(--page-has-backdrop,0) * 40%))}}:root{--page-scroll-transition-on:background-color .3s ease-out;transition:var(--page-scroll-transition);scrollbar-gutter:var(--page-scroll-gutter,unset);scrollbar-gutter:if(style(--page-has-scroll: 1): var(--page-scroll-gutter,unset) ; else: unset)}@keyframes set-page-has-scroll{0%,to{--page-has-scroll:1}}:root,[data-theme]{background:var(--page-scroll-bg,var(--root-bg));color:var(--color-base-content)}:where(:root,[data-theme]){--root-bg:var(--color-base-100)}}@layer components{.btn-primary{background-color:var(--b8-btn-primary-bg,var(--color-brand-primary-medium));border-color:var(--b8-btn-primary-border,var(--color-brand-primary-medium));color:var(--b8-btn-primary-text,var(--color-neutral-primary))}.btn-primary:hover{background-color:var(--b8-btn-primary-hover-bg,var(--color-brand-primary-light));border-color:var(--b8-btn-primary-hover-border,var(--color-brand-primary-bold))}.btn-primary circle{stroke:var(--b8-btn-primary-spinner-circle,var(--color-neutral-primary));opacity:.25}.btn-primary path{fill:var(--b8-btn-primary-spinner-path,var(--color-neutral-primary))}.btn-secondary{background:var(--b8-btn-secondary-bg,transparent);border-color:var(--b8-btn-secondary-border,var(--color-brand-primary-bold));color:var(--b8-btn-secondary-text,var(--color-brand-primary-bold))}.btn-secondary:hover{background:var(--b8-btn-secondary-hover-bg,var(--color-brand-primary-light));border-color:var(--b8-btn-secondary-hover-border,var(--color-brand-primary-bold));color:var(--b8-btn-secondary-hover-text,var(--color-brand-primary-bold))}.btn-secondary circle{stroke:var(--b8-btn-secondary-spinner-circle,var(--color-brand-primary-light));opacity:1}.btn-secondary path{fill:var(--b8-btn-secondary-spinner-path,var(--color-brand-primary-bold))}.btn-tertiary{background:var(--b8-btn-tertiary-bg,transparent);border-color:var(--b8-btn-tertiary-border,transparent);color:var(--b8-btn-tertiary-text,var(--color-brand-primary-bold))}.btn-tertiary:hover{background:var(--b8-btn-tertiary-hover-bg,var(--color-brand-primary-light));border-color:var(--b8-btn-tertiary-hover-border,var(--color-brand-primary-light));color:var(--b8-btn-tertiary-hover-text,var(--color-brand-primary-bold))}.btn-tertiary circle{stroke:var(--b8-btn-tertiary-spinner-circle,var(--color-brand-primary-light));opacity:1}.btn-tertiary path{fill:var(--b8-btn-tertiary-spinner-path,var(--color-brand-primary-bold))}}@layer utilities{@layer daisyui.l1.l2.l3{.loading{pointer-events:none;aspect-ratio:1;vertical-align:middle;width:calc(var(--size-selector,.25rem) * 6);background-color:currentColor;display:inline-block;-webkit-mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg width='24' height='24' stroke='black' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform-origin='center'%3E%3Ccircle cx='12' cy='12' r='9.5' fill='none' stroke-width='3' stroke-linecap='round'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='2s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dasharray' values='0,150;42,150;42,150' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3Canimate attributeName='stroke-dashoffset' values='0;-16;-59' keyTimes='0;0.475;1' dur='1.5s' repeatCount='indefinite'/%3E%3C/circle%3E%3C/g%3E%3C/svg%3E");-webkit-mask-position:50%;mask-position:50%;-webkit-mask-size:100%;mask-size:100%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.link{cursor:pointer;text-decoration-line:underline}.link:focus{--tw-outline-style:none;outline-style:none}@media(forced-colors:active){.link:focus{outline-offset:2px;outline:2px solid #0000}}.link:focus-visible{outline-offset:2px;outline:2px solid}.btn-primary{--btn-color:var(--color-primary);--btn-fg:var(--color-primary-content)}.btn-secondary{--btn-color:var(--color-secondary);--btn-fg:var(--color-secondary-content)}}.pointer-events-none{pointer-events:none}.relative{position:relative}.static{position:static}.inline-flex{display:inline-flex}.size-9{width:calc(var(--spacing) * 9);height:calc(var(--spacing) * 9)}.size-10{width:calc(var(--spacing) * 10);height:calc(var(--spacing) * 10)}.size-12{width:calc(var(--spacing) * 12);height:calc(var(--spacing) * 12)}.size-14{width:calc(var(--spacing) * 14);height:calc(var(--spacing) * 14)}.h-9{height:calc(var(--spacing) * 9)}.h-10{height:calc(var(--spacing) * 10)}.h-12{height:calc(var(--spacing) * 12)}.h-14{height:calc(var(--spacing) * 14)}.shrink-0{flex-shrink:0}.animate-spin{animation:var(--animate-spin)}.cursor-pointer{cursor:pointer}.cursor-wait{cursor:wait}.items-center{align-items:center}.justify-center{justify-content:center}.gap-1{gap:calc(var(--spacing) * 1)}.gap-2{gap:calc(var(--spacing) * 2)}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-solid{--tw-border-style:solid;border-style:solid}.border-transparent{border-color:#0000}.bg-transparent{background-color:#0000}.fill-brand-primary-bold{fill:var(--color-brand-primary-bold)}.fill-neutral-primary{fill:var(--color-neutral-primary)}.stroke-brand-primary-light{stroke:var(--color-brand-primary-light)}.stroke-neutral-primary{stroke:var(--color-neutral-primary)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-5{padding-inline:calc(var(--spacing) * 5)}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.whitespace-nowrap{white-space:nowrap}.text-brand-primary-bold{color:var(--color-brand-primary-bold)}.opacity-25{opacity:.25}.opacity-100{opacity:1}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.outline-none{--tw-outline-style:none;outline-style:none}.focus-visible\\:ring-\\[4px\\]:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\\:ring-brand-primary-light:focus-visible{--tw-ring-color:var(--color-brand-primary-light)}.disabled\\:pointer-events-none:disabled{pointer-events:none}.disabled\\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\\:border-transparent:disabled{border-color:#0000}.disabled\\:bg-neutral-quinary:disabled{background-color:var(--color-neutral-quinary)}.disabled\\:bg-transparent:disabled{background-color:#0000}.disabled\\:font-semibold:disabled{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.disabled\\:text-neutral-quartenary:disabled{color:var(--color-neutral-quartenary)}.\\[\\&_svg\\]\\:pointer-events-none svg{pointer-events:none}.\\[\\&_svg\\]\\:shrink-0 svg{flex-shrink:0}.\\[\\&_svg\\:not\\(\\[class\\*\\=\\"size-\\"\\]\\)\\]\\:size-4 svg:not([class*=size-]){width:calc(var(--spacing) * 4);height:calc(var(--spacing) * 4)}}@keyframes rating{0%,40%{filter:brightness(1.05)contrast(1.05);scale:1.1}}@keyframes dropdown{0%{opacity:0}}@keyframes radio{0%{padding:5px}50%{padding:3px}}@keyframes toast{0%{opacity:0;scale:.9}to{opacity:1;scale:1}}@keyframes rotator{89.9999%,to{--first-item-position:0 0%}90%,99.9999%{--first-item-position:0 calc(var(--items) * 100%)}to{translate:0 -100%}}@keyframes skeleton{0%{background-position:150%}to{background-position:-50%}}@keyframes menu{0%{opacity:0}}@keyframes progress{50%{background-position-x:-115%}}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@keyframes spin{to{transform:rotate(360deg)}}`, je = class je extends te {
|
|
528
528
|
};
|
|
529
|
-
je.styles = [
|
|
529
|
+
je.styles = [pt(rr)];
|
|
530
530
|
let ze = je;
|
|
531
531
|
function gt(t) {
|
|
532
532
|
var e, r, o = "";
|
|
533
533
|
if (typeof t == "string" || typeof t == "number") o += t;
|
|
534
534
|
else if (typeof t == "object") if (Array.isArray(t)) {
|
|
535
|
-
var
|
|
536
|
-
for (e = 0; e <
|
|
535
|
+
var i = t.length;
|
|
536
|
+
for (e = 0; e < i; e++) t[e] && (r = gt(t[e])) && (o && (o += " "), o += r);
|
|
537
537
|
} else for (r in t) t[r] && (o && (o += " "), o += r);
|
|
538
538
|
return o;
|
|
539
539
|
}
|
|
540
540
|
function or() {
|
|
541
|
-
for (var t, e, r = 0, o = "",
|
|
541
|
+
for (var t, e, r = 0, o = "", i = arguments.length; r < i; r++) (t = arguments[r]) && (e = gt(t)) && (o && (o += " "), o += e);
|
|
542
542
|
return o;
|
|
543
543
|
}
|
|
544
|
-
const
|
|
544
|
+
const ir = (t, e) => {
|
|
545
545
|
const r = new Array(t.length + e.length);
|
|
546
546
|
for (let o = 0; o < t.length; o++)
|
|
547
547
|
r[o] = t[o];
|
|
548
548
|
for (let o = 0; o < e.length; o++)
|
|
549
549
|
r[t.length + o] = e[o];
|
|
550
550
|
return r;
|
|
551
|
-
},
|
|
551
|
+
}, sr = (t, e) => ({
|
|
552
552
|
classGroupId: t,
|
|
553
553
|
validator: e
|
|
554
554
|
}), ft = (t = /* @__PURE__ */ new Map(), e = null, r) => ({
|
|
555
555
|
nextPart: t,
|
|
556
556
|
validators: e,
|
|
557
557
|
classGroupId: r
|
|
558
|
-
}), ye = "-",
|
|
558
|
+
}), ye = "-", it = [], nr = "arbitrary..", ar = (t) => {
|
|
559
559
|
const e = cr(t), {
|
|
560
560
|
conflictingClassGroups: r,
|
|
561
561
|
conflictingClassGroupModifiers: o
|
|
@@ -570,17 +570,17 @@ const sr = (t, e) => {
|
|
|
570
570
|
getConflictingClassGroupIds: (n, d) => {
|
|
571
571
|
if (d) {
|
|
572
572
|
const a = o[n], u = r[n];
|
|
573
|
-
return a ? u ?
|
|
573
|
+
return a ? u ? ir(u, a) : a : u || it;
|
|
574
574
|
}
|
|
575
|
-
return r[n] ||
|
|
575
|
+
return r[n] || it;
|
|
576
576
|
}
|
|
577
577
|
};
|
|
578
578
|
}, yt = (t, e, r) => {
|
|
579
579
|
if (t.length - e === 0)
|
|
580
580
|
return r.classGroupId;
|
|
581
|
-
const
|
|
582
|
-
if (
|
|
583
|
-
const u = yt(t, e + 1,
|
|
581
|
+
const i = t[e], s = r.nextPart.get(i);
|
|
582
|
+
if (s) {
|
|
583
|
+
const u = yt(t, e + 1, s);
|
|
584
584
|
if (u) return u;
|
|
585
585
|
}
|
|
586
586
|
const n = r.validators;
|
|
@@ -604,19 +604,19 @@ const sr = (t, e) => {
|
|
|
604
604
|
}, dr = (t, e) => {
|
|
605
605
|
const r = ft();
|
|
606
606
|
for (const o in t) {
|
|
607
|
-
const
|
|
608
|
-
Ue(
|
|
607
|
+
const i = t[o];
|
|
608
|
+
Ue(i, r, o, e);
|
|
609
609
|
}
|
|
610
610
|
return r;
|
|
611
611
|
}, Ue = (t, e, r, o) => {
|
|
612
|
-
const
|
|
613
|
-
for (let
|
|
614
|
-
const n = t[
|
|
615
|
-
|
|
612
|
+
const i = t.length;
|
|
613
|
+
for (let s = 0; s < i; s++) {
|
|
614
|
+
const n = t[s];
|
|
615
|
+
pr(n, e, r, o);
|
|
616
616
|
}
|
|
617
|
-
},
|
|
617
|
+
}, pr = (t, e, r, o) => {
|
|
618
618
|
if (typeof t == "string") {
|
|
619
|
-
|
|
619
|
+
hr(t, e, r);
|
|
620
620
|
return;
|
|
621
621
|
}
|
|
622
622
|
if (typeof t == "function") {
|
|
@@ -624,7 +624,7 @@ const sr = (t, e) => {
|
|
|
624
624
|
return;
|
|
625
625
|
}
|
|
626
626
|
mr(t, e, r, o);
|
|
627
|
-
},
|
|
627
|
+
}, hr = (t, e, r) => {
|
|
628
628
|
const o = t === "" ? e : vt(e, t);
|
|
629
629
|
o.classGroupId = r;
|
|
630
630
|
}, ur = (t, e, r, o) => {
|
|
@@ -632,18 +632,18 @@ const sr = (t, e) => {
|
|
|
632
632
|
Ue(t(o), e, r, o);
|
|
633
633
|
return;
|
|
634
634
|
}
|
|
635
|
-
e.validators === null && (e.validators = []), e.validators.push(
|
|
635
|
+
e.validators === null && (e.validators = []), e.validators.push(sr(r, t));
|
|
636
636
|
}, mr = (t, e, r, o) => {
|
|
637
|
-
const
|
|
638
|
-
for (let n = 0; n <
|
|
639
|
-
const [d, a] =
|
|
637
|
+
const i = Object.entries(t), s = i.length;
|
|
638
|
+
for (let n = 0; n < s; n++) {
|
|
639
|
+
const [d, a] = i[n];
|
|
640
640
|
Ue(a, vt(e, d), r, o);
|
|
641
641
|
}
|
|
642
642
|
}, vt = (t, e) => {
|
|
643
643
|
let r = t;
|
|
644
|
-
const o = e.split(ye),
|
|
645
|
-
for (let
|
|
646
|
-
const n = o[
|
|
644
|
+
const o = e.split(ye), i = o.length;
|
|
645
|
+
for (let s = 0; s < i; s++) {
|
|
646
|
+
const n = o[s];
|
|
647
647
|
let d = r.nextPart.get(n);
|
|
648
648
|
d || (d = ft(), r.nextPart.set(n, d)), r = d;
|
|
649
649
|
}
|
|
@@ -657,41 +657,41 @@ const sr = (t, e) => {
|
|
|
657
657
|
}
|
|
658
658
|
};
|
|
659
659
|
let e = 0, r = /* @__PURE__ */ Object.create(null), o = /* @__PURE__ */ Object.create(null);
|
|
660
|
-
const
|
|
661
|
-
r[
|
|
660
|
+
const i = (s, n) => {
|
|
661
|
+
r[s] = n, e++, e > t && (e = 0, o = r, r = /* @__PURE__ */ Object.create(null));
|
|
662
662
|
};
|
|
663
663
|
return {
|
|
664
|
-
get(
|
|
665
|
-
let n = r[
|
|
664
|
+
get(s) {
|
|
665
|
+
let n = r[s];
|
|
666
666
|
if (n !== void 0)
|
|
667
667
|
return n;
|
|
668
|
-
if ((n = o[
|
|
669
|
-
return s
|
|
668
|
+
if ((n = o[s]) !== void 0)
|
|
669
|
+
return i(s, n), n;
|
|
670
670
|
},
|
|
671
|
-
set(
|
|
672
|
-
|
|
671
|
+
set(s, n) {
|
|
672
|
+
s in r ? r[s] = n : i(s, n);
|
|
673
673
|
}
|
|
674
674
|
};
|
|
675
|
-
}, Pe = "!",
|
|
675
|
+
}, Pe = "!", st = ":", fr = [], nt = (t, e, r, o, i) => ({
|
|
676
676
|
modifiers: t,
|
|
677
677
|
hasImportantModifier: e,
|
|
678
678
|
baseClassName: r,
|
|
679
679
|
maybePostfixModifierPosition: o,
|
|
680
|
-
isExternal:
|
|
680
|
+
isExternal: i
|
|
681
681
|
}), yr = (t) => {
|
|
682
682
|
const {
|
|
683
683
|
prefix: e,
|
|
684
684
|
experimentalParseClassName: r
|
|
685
685
|
} = t;
|
|
686
|
-
let o = (
|
|
687
|
-
const
|
|
686
|
+
let o = (i) => {
|
|
687
|
+
const s = [];
|
|
688
688
|
let n = 0, d = 0, a = 0, u;
|
|
689
|
-
const g =
|
|
689
|
+
const g = i.length;
|
|
690
690
|
for (let E = 0; E < g; E++) {
|
|
691
|
-
const _ =
|
|
691
|
+
const _ = i[E];
|
|
692
692
|
if (n === 0 && d === 0) {
|
|
693
|
-
if (_ ===
|
|
694
|
-
|
|
693
|
+
if (_ === st) {
|
|
694
|
+
s.push(i.slice(a, E)), a = E + 1;
|
|
695
695
|
continue;
|
|
696
696
|
}
|
|
697
697
|
if (_ === "/") {
|
|
@@ -701,7 +701,7 @@ const sr = (t, e) => {
|
|
|
701
701
|
}
|
|
702
702
|
_ === "[" ? n++ : _ === "]" ? n-- : _ === "(" ? d++ : _ === ")" && d--;
|
|
703
703
|
}
|
|
704
|
-
const b =
|
|
704
|
+
const b = s.length === 0 ? i : i.slice(a);
|
|
705
705
|
let f = b, k = !1;
|
|
706
706
|
b.endsWith(Pe) ? (f = b.slice(0, -1), k = !0) : (
|
|
707
707
|
/**
|
|
@@ -711,17 +711,17 @@ const sr = (t, e) => {
|
|
|
711
711
|
b.startsWith(Pe) && (f = b.slice(1), k = !0)
|
|
712
712
|
);
|
|
713
713
|
const C = u && u > a ? u - a : void 0;
|
|
714
|
-
return nt(
|
|
714
|
+
return nt(s, k, f, C);
|
|
715
715
|
};
|
|
716
716
|
if (e) {
|
|
717
|
-
const
|
|
718
|
-
o = (n) => n.startsWith(
|
|
717
|
+
const i = e + st, s = o;
|
|
718
|
+
o = (n) => n.startsWith(i) ? s(n.slice(i.length)) : nt(fr, !1, n, void 0, !0);
|
|
719
719
|
}
|
|
720
720
|
if (r) {
|
|
721
|
-
const
|
|
722
|
-
o = (
|
|
723
|
-
className:
|
|
724
|
-
parseClassName:
|
|
721
|
+
const i = o;
|
|
722
|
+
o = (s) => r({
|
|
723
|
+
className: s,
|
|
724
|
+
parseClassName: i
|
|
725
725
|
});
|
|
726
726
|
}
|
|
727
727
|
return o;
|
|
@@ -731,12 +731,12 @@ const sr = (t, e) => {
|
|
|
731
731
|
e.set(r, 1e6 + o);
|
|
732
732
|
}), (r) => {
|
|
733
733
|
const o = [];
|
|
734
|
-
let
|
|
735
|
-
for (let
|
|
736
|
-
const n = r[
|
|
737
|
-
d || a ? (
|
|
734
|
+
let i = [];
|
|
735
|
+
for (let s = 0; s < r.length; s++) {
|
|
736
|
+
const n = r[s], d = n[0] === "[", a = e.has(n);
|
|
737
|
+
d || a ? (i.length > 0 && (i.sort(), o.push(...i), i = []), o.push(n)) : i.push(n);
|
|
738
738
|
}
|
|
739
|
-
return
|
|
739
|
+
return i.length > 0 && (i.sort(), o.push(...i)), o;
|
|
740
740
|
};
|
|
741
741
|
}, wr = (t) => ({
|
|
742
742
|
cache: gr(t.cacheSize),
|
|
@@ -747,8 +747,8 @@ const sr = (t, e) => {
|
|
|
747
747
|
const {
|
|
748
748
|
parseClassName: r,
|
|
749
749
|
getClassGroupId: o,
|
|
750
|
-
getConflictingClassGroupIds:
|
|
751
|
-
sortModifiers:
|
|
750
|
+
getConflictingClassGroupIds: i,
|
|
751
|
+
sortModifiers: s
|
|
752
752
|
} = e, n = [], d = t.trim().split(kr);
|
|
753
753
|
let a = "";
|
|
754
754
|
for (let u = d.length - 1; u >= 0; u -= 1) {
|
|
@@ -775,11 +775,11 @@ const sr = (t, e) => {
|
|
|
775
775
|
}
|
|
776
776
|
_ = !1;
|
|
777
777
|
}
|
|
778
|
-
const ae = f.length === 0 ? "" : f.length === 1 ? f[0] :
|
|
778
|
+
const ae = f.length === 0 ? "" : f.length === 1 ? f[0] : s(f).join(":"), Z = k ? ae + Pe : ae, G = Z + O;
|
|
779
779
|
if (n.indexOf(G) > -1)
|
|
780
780
|
continue;
|
|
781
781
|
n.push(G);
|
|
782
|
-
const V =
|
|
782
|
+
const V = i(O, _);
|
|
783
783
|
for (let N = 0; N < V.length; ++N) {
|
|
784
784
|
const K = V[N];
|
|
785
785
|
n.push(Z + K);
|
|
@@ -788,10 +788,10 @@ const sr = (t, e) => {
|
|
|
788
788
|
}
|
|
789
789
|
return a;
|
|
790
790
|
}, $r = (...t) => {
|
|
791
|
-
let e = 0, r, o,
|
|
791
|
+
let e = 0, r, o, i = "";
|
|
792
792
|
for (; e < t.length; )
|
|
793
|
-
(r = t[e++]) && (o = wt(r)) && (
|
|
794
|
-
return
|
|
793
|
+
(r = t[e++]) && (o = wt(r)) && (i && (i += " "), i += o);
|
|
794
|
+
return i;
|
|
795
795
|
}, wt = (t) => {
|
|
796
796
|
if (typeof t == "string")
|
|
797
797
|
return t;
|
|
@@ -800,18 +800,18 @@ const sr = (t, e) => {
|
|
|
800
800
|
t[o] && (e = wt(t[o])) && (r && (r += " "), r += e);
|
|
801
801
|
return r;
|
|
802
802
|
}, _r = (t, ...e) => {
|
|
803
|
-
let r, o,
|
|
803
|
+
let r, o, i, s;
|
|
804
804
|
const n = (a) => {
|
|
805
805
|
const u = e.reduce((g, b) => b(g), t());
|
|
806
|
-
return r = wr(u), o = r.cache.get,
|
|
806
|
+
return r = wr(u), o = r.cache.get, i = r.cache.set, s = d, d(a);
|
|
807
807
|
}, d = (a) => {
|
|
808
808
|
const u = o(a);
|
|
809
809
|
if (u)
|
|
810
810
|
return u;
|
|
811
811
|
const g = xr(a, r);
|
|
812
|
-
return
|
|
812
|
+
return i(a, g), g;
|
|
813
813
|
};
|
|
814
|
-
return
|
|
814
|
+
return s = n, (...a) => s($r(...a));
|
|
815
815
|
}, Ar = [], y = (t) => {
|
|
816
816
|
const e = (r) => r[t] || Ar;
|
|
817
817
|
return e.isThemeGetter = !0, e;
|
|
@@ -827,7 +827,7 @@ const sr = (t, e) => {
|
|
|
827
827
|
const o = xt.exec(t);
|
|
828
828
|
return o ? o[1] ? e(o[1]) : r : !1;
|
|
829
829
|
}, _t = (t) => t === "position" || t === "percentage", At = (t) => t === "image" || t === "url", Ct = (t) => t === "length" || t === "size" || t === "bg-size", Et = (t) => t === "length", Vr = (t) => t === "number", St = (t) => t === "family-name", zt = (t) => t === "number" || t === "weight", Pt = (t) => t === "shadow", Wr = () => {
|
|
830
|
-
const t = y("color"), e = y("font"), r = y("text"), o = y("font-weight"),
|
|
830
|
+
const t = y("color"), e = y("font"), r = y("text"), o = y("font-weight"), i = y("tracking"), s = y("leading"), n = y("breakpoint"), d = y("container"), a = y("spacing"), u = y("radius"), g = y("shadow"), b = y("inset-shadow"), f = y("text-shadow"), k = y("drop-shadow"), C = y("blur"), E = y("perspective"), _ = y("aspect"), O = y("ease"), ae = y("animate"), Z = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], G = () => [
|
|
831
831
|
"center",
|
|
832
832
|
"top",
|
|
833
833
|
"bottom",
|
|
@@ -845,9 +845,9 @@ const sr = (t, e) => {
|
|
|
845
845
|
"bottom-left",
|
|
846
846
|
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
847
847
|
"left-bottom"
|
|
848
|
-
], V = () => [...G(), c, l], N = () => ["auto", "hidden", "clip", "visible", "scroll"], K = () => ["auto", "contain", "none"],
|
|
848
|
+
], V = () => [...G(), c, l], N = () => ["auto", "hidden", "clip", "visible", "scroll"], K = () => ["auto", "contain", "none"], p = () => [c, l, a], A = () => [P, "full", "auto", ...p()], Le = () => [M, "none", "subgrid", c, l], He = () => ["auto", {
|
|
849
849
|
span: ["full", M, c, l]
|
|
850
|
-
}, M, c, l], le = () => [M, "auto", c, l], De = () => ["auto", "min", "max", "fr", c, l], ke = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], W = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], S = () => ["auto", ...
|
|
850
|
+
}, M, c, l], le = () => [M, "auto", c, l], De = () => ["auto", "min", "max", "fr", c, l], ke = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], W = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], S = () => ["auto", ...p()], U = () => [P, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...p()], xe = () => [P, "screen", "full", "dvw", "lvw", "svw", "min", "max", "fit", ...p()], $e = () => [P, "screen", "full", "lh", "dvh", "lvh", "svh", "min", "max", "fit", ...p()], h = () => [t, c, l], Be = () => [...G(), ct, lt, {
|
|
851
851
|
position: [c, l]
|
|
852
852
|
}], Ge = () => ["no-repeat", {
|
|
853
853
|
repeat: ["", "x", "y", "space", "round"]
|
|
@@ -868,7 +868,7 @@ const sr = (t, e) => {
|
|
|
868
868
|
C,
|
|
869
869
|
c,
|
|
870
870
|
l
|
|
871
|
-
], de = () => ["none", m, c, l],
|
|
871
|
+
], de = () => ["none", m, c, l], pe = () => ["none", m, c, l], Ae = () => [m, c, l], he = () => [P, "full", ...p()];
|
|
872
872
|
return {
|
|
873
873
|
cacheSize: 500,
|
|
874
874
|
theme: {
|
|
@@ -1150,7 +1150,7 @@ const sr = (t, e) => {
|
|
|
1150
1150
|
* @see https://tailwindcss.com/docs/flex-basis
|
|
1151
1151
|
*/
|
|
1152
1152
|
basis: [{
|
|
1153
|
-
basis: [P, "full", "auto", d, ...
|
|
1153
|
+
basis: [P, "full", "auto", d, ...p()]
|
|
1154
1154
|
}],
|
|
1155
1155
|
/**
|
|
1156
1156
|
* Flex Direction
|
|
@@ -1276,21 +1276,21 @@ const sr = (t, e) => {
|
|
|
1276
1276
|
* @see https://tailwindcss.com/docs/gap
|
|
1277
1277
|
*/
|
|
1278
1278
|
gap: [{
|
|
1279
|
-
gap:
|
|
1279
|
+
gap: p()
|
|
1280
1280
|
}],
|
|
1281
1281
|
/**
|
|
1282
1282
|
* Gap X
|
|
1283
1283
|
* @see https://tailwindcss.com/docs/gap
|
|
1284
1284
|
*/
|
|
1285
1285
|
"gap-x": [{
|
|
1286
|
-
"gap-x":
|
|
1286
|
+
"gap-x": p()
|
|
1287
1287
|
}],
|
|
1288
1288
|
/**
|
|
1289
1289
|
* Gap Y
|
|
1290
1290
|
* @see https://tailwindcss.com/docs/gap
|
|
1291
1291
|
*/
|
|
1292
1292
|
"gap-y": [{
|
|
1293
|
-
"gap-y":
|
|
1293
|
+
"gap-y": p()
|
|
1294
1294
|
}],
|
|
1295
1295
|
/**
|
|
1296
1296
|
* Justify Content
|
|
@@ -1365,77 +1365,77 @@ const sr = (t, e) => {
|
|
|
1365
1365
|
* @see https://tailwindcss.com/docs/padding
|
|
1366
1366
|
*/
|
|
1367
1367
|
p: [{
|
|
1368
|
-
p:
|
|
1368
|
+
p: p()
|
|
1369
1369
|
}],
|
|
1370
1370
|
/**
|
|
1371
1371
|
* Padding Inline
|
|
1372
1372
|
* @see https://tailwindcss.com/docs/padding
|
|
1373
1373
|
*/
|
|
1374
1374
|
px: [{
|
|
1375
|
-
px:
|
|
1375
|
+
px: p()
|
|
1376
1376
|
}],
|
|
1377
1377
|
/**
|
|
1378
1378
|
* Padding Block
|
|
1379
1379
|
* @see https://tailwindcss.com/docs/padding
|
|
1380
1380
|
*/
|
|
1381
1381
|
py: [{
|
|
1382
|
-
py:
|
|
1382
|
+
py: p()
|
|
1383
1383
|
}],
|
|
1384
1384
|
/**
|
|
1385
1385
|
* Padding Inline Start
|
|
1386
1386
|
* @see https://tailwindcss.com/docs/padding
|
|
1387
1387
|
*/
|
|
1388
1388
|
ps: [{
|
|
1389
|
-
ps:
|
|
1389
|
+
ps: p()
|
|
1390
1390
|
}],
|
|
1391
1391
|
/**
|
|
1392
1392
|
* Padding Inline End
|
|
1393
1393
|
* @see https://tailwindcss.com/docs/padding
|
|
1394
1394
|
*/
|
|
1395
1395
|
pe: [{
|
|
1396
|
-
pe:
|
|
1396
|
+
pe: p()
|
|
1397
1397
|
}],
|
|
1398
1398
|
/**
|
|
1399
1399
|
* Padding Block Start
|
|
1400
1400
|
* @see https://tailwindcss.com/docs/padding
|
|
1401
1401
|
*/
|
|
1402
1402
|
pbs: [{
|
|
1403
|
-
pbs:
|
|
1403
|
+
pbs: p()
|
|
1404
1404
|
}],
|
|
1405
1405
|
/**
|
|
1406
1406
|
* Padding Block End
|
|
1407
1407
|
* @see https://tailwindcss.com/docs/padding
|
|
1408
1408
|
*/
|
|
1409
1409
|
pbe: [{
|
|
1410
|
-
pbe:
|
|
1410
|
+
pbe: p()
|
|
1411
1411
|
}],
|
|
1412
1412
|
/**
|
|
1413
1413
|
* Padding Top
|
|
1414
1414
|
* @see https://tailwindcss.com/docs/padding
|
|
1415
1415
|
*/
|
|
1416
1416
|
pt: [{
|
|
1417
|
-
pt:
|
|
1417
|
+
pt: p()
|
|
1418
1418
|
}],
|
|
1419
1419
|
/**
|
|
1420
1420
|
* Padding Right
|
|
1421
1421
|
* @see https://tailwindcss.com/docs/padding
|
|
1422
1422
|
*/
|
|
1423
1423
|
pr: [{
|
|
1424
|
-
pr:
|
|
1424
|
+
pr: p()
|
|
1425
1425
|
}],
|
|
1426
1426
|
/**
|
|
1427
1427
|
* Padding Bottom
|
|
1428
1428
|
* @see https://tailwindcss.com/docs/padding
|
|
1429
1429
|
*/
|
|
1430
1430
|
pb: [{
|
|
1431
|
-
pb:
|
|
1431
|
+
pb: p()
|
|
1432
1432
|
}],
|
|
1433
1433
|
/**
|
|
1434
1434
|
* Padding Left
|
|
1435
1435
|
* @see https://tailwindcss.com/docs/padding
|
|
1436
1436
|
*/
|
|
1437
1437
|
pl: [{
|
|
1438
|
-
pl:
|
|
1438
|
+
pl: p()
|
|
1439
1439
|
}],
|
|
1440
1440
|
/**
|
|
1441
1441
|
* Margin
|
|
@@ -1519,7 +1519,7 @@ const sr = (t, e) => {
|
|
|
1519
1519
|
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
1520
1520
|
*/
|
|
1521
1521
|
"space-x": [{
|
|
1522
|
-
"space-x":
|
|
1522
|
+
"space-x": p()
|
|
1523
1523
|
}],
|
|
1524
1524
|
/**
|
|
1525
1525
|
* Space Between X Reverse
|
|
@@ -1531,7 +1531,7 @@ const sr = (t, e) => {
|
|
|
1531
1531
|
* @see https://tailwindcss.com/docs/margin#adding-space-between-children
|
|
1532
1532
|
*/
|
|
1533
1533
|
"space-y": [{
|
|
1534
|
-
"space-y":
|
|
1534
|
+
"space-y": p()
|
|
1535
1535
|
}],
|
|
1536
1536
|
/**
|
|
1537
1537
|
* Space Between Y Reverse
|
|
@@ -1732,7 +1732,7 @@ const sr = (t, e) => {
|
|
|
1732
1732
|
* @see https://tailwindcss.com/docs/letter-spacing
|
|
1733
1733
|
*/
|
|
1734
1734
|
tracking: [{
|
|
1735
|
-
tracking: [
|
|
1735
|
+
tracking: [i, c, l]
|
|
1736
1736
|
}],
|
|
1737
1737
|
/**
|
|
1738
1738
|
* Line Clamp
|
|
@@ -1748,8 +1748,8 @@ const sr = (t, e) => {
|
|
|
1748
1748
|
leading: [{
|
|
1749
1749
|
leading: [
|
|
1750
1750
|
/** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
|
|
1751
|
-
|
|
1752
|
-
...
|
|
1751
|
+
s,
|
|
1752
|
+
...p()
|
|
1753
1753
|
]
|
|
1754
1754
|
}],
|
|
1755
1755
|
/**
|
|
@@ -1786,14 +1786,14 @@ const sr = (t, e) => {
|
|
|
1786
1786
|
* @see https://v3.tailwindcss.com/docs/placeholder-color
|
|
1787
1787
|
*/
|
|
1788
1788
|
"placeholder-color": [{
|
|
1789
|
-
placeholder:
|
|
1789
|
+
placeholder: h()
|
|
1790
1790
|
}],
|
|
1791
1791
|
/**
|
|
1792
1792
|
* Text Color
|
|
1793
1793
|
* @see https://tailwindcss.com/docs/text-color
|
|
1794
1794
|
*/
|
|
1795
1795
|
"text-color": [{
|
|
1796
|
-
text:
|
|
1796
|
+
text: h()
|
|
1797
1797
|
}],
|
|
1798
1798
|
/**
|
|
1799
1799
|
* Text Decoration
|
|
@@ -1819,7 +1819,7 @@ const sr = (t, e) => {
|
|
|
1819
1819
|
* @see https://tailwindcss.com/docs/text-decoration-color
|
|
1820
1820
|
*/
|
|
1821
1821
|
"text-decoration-color": [{
|
|
1822
|
-
decoration:
|
|
1822
|
+
decoration: h()
|
|
1823
1823
|
}],
|
|
1824
1824
|
/**
|
|
1825
1825
|
* Text Underline Offset
|
|
@@ -1850,7 +1850,7 @@ const sr = (t, e) => {
|
|
|
1850
1850
|
* @see https://tailwindcss.com/docs/text-indent
|
|
1851
1851
|
*/
|
|
1852
1852
|
indent: [{
|
|
1853
|
-
indent:
|
|
1853
|
+
indent: p()
|
|
1854
1854
|
}],
|
|
1855
1855
|
/**
|
|
1856
1856
|
* Vertical Alignment
|
|
@@ -1957,7 +1957,7 @@ const sr = (t, e) => {
|
|
|
1957
1957
|
* @see https://tailwindcss.com/docs/background-color
|
|
1958
1958
|
*/
|
|
1959
1959
|
"bg-color": [{
|
|
1960
|
-
bg:
|
|
1960
|
+
bg: h()
|
|
1961
1961
|
}],
|
|
1962
1962
|
/**
|
|
1963
1963
|
* Gradient Color Stops From Position
|
|
@@ -1985,21 +1985,21 @@ const sr = (t, e) => {
|
|
|
1985
1985
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1986
1986
|
*/
|
|
1987
1987
|
"gradient-from": [{
|
|
1988
|
-
from:
|
|
1988
|
+
from: h()
|
|
1989
1989
|
}],
|
|
1990
1990
|
/**
|
|
1991
1991
|
* Gradient Color Stops Via
|
|
1992
1992
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
1993
1993
|
*/
|
|
1994
1994
|
"gradient-via": [{
|
|
1995
|
-
via:
|
|
1995
|
+
via: h()
|
|
1996
1996
|
}],
|
|
1997
1997
|
/**
|
|
1998
1998
|
* Gradient Color Stops To
|
|
1999
1999
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
2000
2000
|
*/
|
|
2001
2001
|
"gradient-to": [{
|
|
2002
|
-
to:
|
|
2002
|
+
to: h()
|
|
2003
2003
|
}],
|
|
2004
2004
|
// ---------------
|
|
2005
2005
|
// --- Borders ---
|
|
@@ -2229,84 +2229,84 @@ const sr = (t, e) => {
|
|
|
2229
2229
|
* @see https://tailwindcss.com/docs/border-color
|
|
2230
2230
|
*/
|
|
2231
2231
|
"border-color": [{
|
|
2232
|
-
border:
|
|
2232
|
+
border: h()
|
|
2233
2233
|
}],
|
|
2234
2234
|
/**
|
|
2235
2235
|
* Border Color Inline
|
|
2236
2236
|
* @see https://tailwindcss.com/docs/border-color
|
|
2237
2237
|
*/
|
|
2238
2238
|
"border-color-x": [{
|
|
2239
|
-
"border-x":
|
|
2239
|
+
"border-x": h()
|
|
2240
2240
|
}],
|
|
2241
2241
|
/**
|
|
2242
2242
|
* Border Color Block
|
|
2243
2243
|
* @see https://tailwindcss.com/docs/border-color
|
|
2244
2244
|
*/
|
|
2245
2245
|
"border-color-y": [{
|
|
2246
|
-
"border-y":
|
|
2246
|
+
"border-y": h()
|
|
2247
2247
|
}],
|
|
2248
2248
|
/**
|
|
2249
2249
|
* Border Color Inline Start
|
|
2250
2250
|
* @see https://tailwindcss.com/docs/border-color
|
|
2251
2251
|
*/
|
|
2252
2252
|
"border-color-s": [{
|
|
2253
|
-
"border-s":
|
|
2253
|
+
"border-s": h()
|
|
2254
2254
|
}],
|
|
2255
2255
|
/**
|
|
2256
2256
|
* Border Color Inline End
|
|
2257
2257
|
* @see https://tailwindcss.com/docs/border-color
|
|
2258
2258
|
*/
|
|
2259
2259
|
"border-color-e": [{
|
|
2260
|
-
"border-e":
|
|
2260
|
+
"border-e": h()
|
|
2261
2261
|
}],
|
|
2262
2262
|
/**
|
|
2263
2263
|
* Border Color Block Start
|
|
2264
2264
|
* @see https://tailwindcss.com/docs/border-color
|
|
2265
2265
|
*/
|
|
2266
2266
|
"border-color-bs": [{
|
|
2267
|
-
"border-bs":
|
|
2267
|
+
"border-bs": h()
|
|
2268
2268
|
}],
|
|
2269
2269
|
/**
|
|
2270
2270
|
* Border Color Block End
|
|
2271
2271
|
* @see https://tailwindcss.com/docs/border-color
|
|
2272
2272
|
*/
|
|
2273
2273
|
"border-color-be": [{
|
|
2274
|
-
"border-be":
|
|
2274
|
+
"border-be": h()
|
|
2275
2275
|
}],
|
|
2276
2276
|
/**
|
|
2277
2277
|
* Border Color Top
|
|
2278
2278
|
* @see https://tailwindcss.com/docs/border-color
|
|
2279
2279
|
*/
|
|
2280
2280
|
"border-color-t": [{
|
|
2281
|
-
"border-t":
|
|
2281
|
+
"border-t": h()
|
|
2282
2282
|
}],
|
|
2283
2283
|
/**
|
|
2284
2284
|
* Border Color Right
|
|
2285
2285
|
* @see https://tailwindcss.com/docs/border-color
|
|
2286
2286
|
*/
|
|
2287
2287
|
"border-color-r": [{
|
|
2288
|
-
"border-r":
|
|
2288
|
+
"border-r": h()
|
|
2289
2289
|
}],
|
|
2290
2290
|
/**
|
|
2291
2291
|
* Border Color Bottom
|
|
2292
2292
|
* @see https://tailwindcss.com/docs/border-color
|
|
2293
2293
|
*/
|
|
2294
2294
|
"border-color-b": [{
|
|
2295
|
-
"border-b":
|
|
2295
|
+
"border-b": h()
|
|
2296
2296
|
}],
|
|
2297
2297
|
/**
|
|
2298
2298
|
* Border Color Left
|
|
2299
2299
|
* @see https://tailwindcss.com/docs/border-color
|
|
2300
2300
|
*/
|
|
2301
2301
|
"border-color-l": [{
|
|
2302
|
-
"border-l":
|
|
2302
|
+
"border-l": h()
|
|
2303
2303
|
}],
|
|
2304
2304
|
/**
|
|
2305
2305
|
* Divide Color
|
|
2306
2306
|
* @see https://tailwindcss.com/docs/divide-color
|
|
2307
2307
|
*/
|
|
2308
2308
|
"divide-color": [{
|
|
2309
|
-
divide:
|
|
2309
|
+
divide: h()
|
|
2310
2310
|
}],
|
|
2311
2311
|
/**
|
|
2312
2312
|
* Outline Style
|
|
@@ -2334,7 +2334,7 @@ const sr = (t, e) => {
|
|
|
2334
2334
|
* @see https://tailwindcss.com/docs/outline-color
|
|
2335
2335
|
*/
|
|
2336
2336
|
"outline-color": [{
|
|
2337
|
-
outline:
|
|
2337
|
+
outline: h()
|
|
2338
2338
|
}],
|
|
2339
2339
|
// ---------------
|
|
2340
2340
|
// --- Effects ---
|
|
@@ -2358,7 +2358,7 @@ const sr = (t, e) => {
|
|
|
2358
2358
|
* @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color
|
|
2359
2359
|
*/
|
|
2360
2360
|
"shadow-color": [{
|
|
2361
|
-
shadow:
|
|
2361
|
+
shadow: h()
|
|
2362
2362
|
}],
|
|
2363
2363
|
/**
|
|
2364
2364
|
* Inset Box Shadow
|
|
@@ -2372,7 +2372,7 @@ const sr = (t, e) => {
|
|
|
2372
2372
|
* @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color
|
|
2373
2373
|
*/
|
|
2374
2374
|
"inset-shadow-color": [{
|
|
2375
|
-
"inset-shadow":
|
|
2375
|
+
"inset-shadow": h()
|
|
2376
2376
|
}],
|
|
2377
2377
|
/**
|
|
2378
2378
|
* Ring Width
|
|
@@ -2393,7 +2393,7 @@ const sr = (t, e) => {
|
|
|
2393
2393
|
* @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
|
|
2394
2394
|
*/
|
|
2395
2395
|
"ring-color": [{
|
|
2396
|
-
ring:
|
|
2396
|
+
ring: h()
|
|
2397
2397
|
}],
|
|
2398
2398
|
/**
|
|
2399
2399
|
* Ring Offset Width
|
|
@@ -2411,7 +2411,7 @@ const sr = (t, e) => {
|
|
|
2411
2411
|
* @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
|
|
2412
2412
|
*/
|
|
2413
2413
|
"ring-offset-color": [{
|
|
2414
|
-
"ring-offset":
|
|
2414
|
+
"ring-offset": h()
|
|
2415
2415
|
}],
|
|
2416
2416
|
/**
|
|
2417
2417
|
* Inset Ring Width
|
|
@@ -2425,7 +2425,7 @@ const sr = (t, e) => {
|
|
|
2425
2425
|
* @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color
|
|
2426
2426
|
*/
|
|
2427
2427
|
"inset-ring-color": [{
|
|
2428
|
-
"inset-ring":
|
|
2428
|
+
"inset-ring": h()
|
|
2429
2429
|
}],
|
|
2430
2430
|
/**
|
|
2431
2431
|
* Text Shadow
|
|
@@ -2439,7 +2439,7 @@ const sr = (t, e) => {
|
|
|
2439
2439
|
* @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color
|
|
2440
2440
|
*/
|
|
2441
2441
|
"text-shadow-color": [{
|
|
2442
|
-
"text-shadow":
|
|
2442
|
+
"text-shadow": h()
|
|
2443
2443
|
}],
|
|
2444
2444
|
/**
|
|
2445
2445
|
* Opacity
|
|
@@ -2490,10 +2490,10 @@ const sr = (t, e) => {
|
|
|
2490
2490
|
"mask-linear-to": v()
|
|
2491
2491
|
}],
|
|
2492
2492
|
"mask-image-linear-from-color": [{
|
|
2493
|
-
"mask-linear-from":
|
|
2493
|
+
"mask-linear-from": h()
|
|
2494
2494
|
}],
|
|
2495
2495
|
"mask-image-linear-to-color": [{
|
|
2496
|
-
"mask-linear-to":
|
|
2496
|
+
"mask-linear-to": h()
|
|
2497
2497
|
}],
|
|
2498
2498
|
"mask-image-t-from-pos": [{
|
|
2499
2499
|
"mask-t-from": v()
|
|
@@ -2502,10 +2502,10 @@ const sr = (t, e) => {
|
|
|
2502
2502
|
"mask-t-to": v()
|
|
2503
2503
|
}],
|
|
2504
2504
|
"mask-image-t-from-color": [{
|
|
2505
|
-
"mask-t-from":
|
|
2505
|
+
"mask-t-from": h()
|
|
2506
2506
|
}],
|
|
2507
2507
|
"mask-image-t-to-color": [{
|
|
2508
|
-
"mask-t-to":
|
|
2508
|
+
"mask-t-to": h()
|
|
2509
2509
|
}],
|
|
2510
2510
|
"mask-image-r-from-pos": [{
|
|
2511
2511
|
"mask-r-from": v()
|
|
@@ -2514,10 +2514,10 @@ const sr = (t, e) => {
|
|
|
2514
2514
|
"mask-r-to": v()
|
|
2515
2515
|
}],
|
|
2516
2516
|
"mask-image-r-from-color": [{
|
|
2517
|
-
"mask-r-from":
|
|
2517
|
+
"mask-r-from": h()
|
|
2518
2518
|
}],
|
|
2519
2519
|
"mask-image-r-to-color": [{
|
|
2520
|
-
"mask-r-to":
|
|
2520
|
+
"mask-r-to": h()
|
|
2521
2521
|
}],
|
|
2522
2522
|
"mask-image-b-from-pos": [{
|
|
2523
2523
|
"mask-b-from": v()
|
|
@@ -2526,10 +2526,10 @@ const sr = (t, e) => {
|
|
|
2526
2526
|
"mask-b-to": v()
|
|
2527
2527
|
}],
|
|
2528
2528
|
"mask-image-b-from-color": [{
|
|
2529
|
-
"mask-b-from":
|
|
2529
|
+
"mask-b-from": h()
|
|
2530
2530
|
}],
|
|
2531
2531
|
"mask-image-b-to-color": [{
|
|
2532
|
-
"mask-b-to":
|
|
2532
|
+
"mask-b-to": h()
|
|
2533
2533
|
}],
|
|
2534
2534
|
"mask-image-l-from-pos": [{
|
|
2535
2535
|
"mask-l-from": v()
|
|
@@ -2538,10 +2538,10 @@ const sr = (t, e) => {
|
|
|
2538
2538
|
"mask-l-to": v()
|
|
2539
2539
|
}],
|
|
2540
2540
|
"mask-image-l-from-color": [{
|
|
2541
|
-
"mask-l-from":
|
|
2541
|
+
"mask-l-from": h()
|
|
2542
2542
|
}],
|
|
2543
2543
|
"mask-image-l-to-color": [{
|
|
2544
|
-
"mask-l-to":
|
|
2544
|
+
"mask-l-to": h()
|
|
2545
2545
|
}],
|
|
2546
2546
|
"mask-image-x-from-pos": [{
|
|
2547
2547
|
"mask-x-from": v()
|
|
@@ -2550,10 +2550,10 @@ const sr = (t, e) => {
|
|
|
2550
2550
|
"mask-x-to": v()
|
|
2551
2551
|
}],
|
|
2552
2552
|
"mask-image-x-from-color": [{
|
|
2553
|
-
"mask-x-from":
|
|
2553
|
+
"mask-x-from": h()
|
|
2554
2554
|
}],
|
|
2555
2555
|
"mask-image-x-to-color": [{
|
|
2556
|
-
"mask-x-to":
|
|
2556
|
+
"mask-x-to": h()
|
|
2557
2557
|
}],
|
|
2558
2558
|
"mask-image-y-from-pos": [{
|
|
2559
2559
|
"mask-y-from": v()
|
|
@@ -2562,10 +2562,10 @@ const sr = (t, e) => {
|
|
|
2562
2562
|
"mask-y-to": v()
|
|
2563
2563
|
}],
|
|
2564
2564
|
"mask-image-y-from-color": [{
|
|
2565
|
-
"mask-y-from":
|
|
2565
|
+
"mask-y-from": h()
|
|
2566
2566
|
}],
|
|
2567
2567
|
"mask-image-y-to-color": [{
|
|
2568
|
-
"mask-y-to":
|
|
2568
|
+
"mask-y-to": h()
|
|
2569
2569
|
}],
|
|
2570
2570
|
"mask-image-radial": [{
|
|
2571
2571
|
"mask-radial": [c, l]
|
|
@@ -2577,10 +2577,10 @@ const sr = (t, e) => {
|
|
|
2577
2577
|
"mask-radial-to": v()
|
|
2578
2578
|
}],
|
|
2579
2579
|
"mask-image-radial-from-color": [{
|
|
2580
|
-
"mask-radial-from":
|
|
2580
|
+
"mask-radial-from": h()
|
|
2581
2581
|
}],
|
|
2582
2582
|
"mask-image-radial-to-color": [{
|
|
2583
|
-
"mask-radial-to":
|
|
2583
|
+
"mask-radial-to": h()
|
|
2584
2584
|
}],
|
|
2585
2585
|
"mask-image-radial-shape": [{
|
|
2586
2586
|
"mask-radial": ["circle", "ellipse"]
|
|
@@ -2604,10 +2604,10 @@ const sr = (t, e) => {
|
|
|
2604
2604
|
"mask-conic-to": v()
|
|
2605
2605
|
}],
|
|
2606
2606
|
"mask-image-conic-from-color": [{
|
|
2607
|
-
"mask-conic-from":
|
|
2607
|
+
"mask-conic-from": h()
|
|
2608
2608
|
}],
|
|
2609
2609
|
"mask-image-conic-to-color": [{
|
|
2610
|
-
"mask-conic-to":
|
|
2610
|
+
"mask-conic-to": h()
|
|
2611
2611
|
}],
|
|
2612
2612
|
/**
|
|
2613
2613
|
* Mask Mode
|
|
@@ -2714,7 +2714,7 @@ const sr = (t, e) => {
|
|
|
2714
2714
|
* @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color
|
|
2715
2715
|
*/
|
|
2716
2716
|
"drop-shadow-color": [{
|
|
2717
|
-
"drop-shadow":
|
|
2717
|
+
"drop-shadow": h()
|
|
2718
2718
|
}],
|
|
2719
2719
|
/**
|
|
2720
2720
|
* Grayscale
|
|
@@ -2842,21 +2842,21 @@ const sr = (t, e) => {
|
|
|
2842
2842
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
2843
2843
|
*/
|
|
2844
2844
|
"border-spacing": [{
|
|
2845
|
-
"border-spacing":
|
|
2845
|
+
"border-spacing": p()
|
|
2846
2846
|
}],
|
|
2847
2847
|
/**
|
|
2848
2848
|
* Border Spacing X
|
|
2849
2849
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
2850
2850
|
*/
|
|
2851
2851
|
"border-spacing-x": [{
|
|
2852
|
-
"border-spacing-x":
|
|
2852
|
+
"border-spacing-x": p()
|
|
2853
2853
|
}],
|
|
2854
2854
|
/**
|
|
2855
2855
|
* Border Spacing Y
|
|
2856
2856
|
* @see https://tailwindcss.com/docs/border-spacing
|
|
2857
2857
|
*/
|
|
2858
2858
|
"border-spacing-y": [{
|
|
2859
|
-
"border-spacing-y":
|
|
2859
|
+
"border-spacing-y": p()
|
|
2860
2860
|
}],
|
|
2861
2861
|
/**
|
|
2862
2862
|
* Table Layout
|
|
@@ -2974,28 +2974,28 @@ const sr = (t, e) => {
|
|
|
2974
2974
|
* @see https://tailwindcss.com/docs/scale
|
|
2975
2975
|
*/
|
|
2976
2976
|
scale: [{
|
|
2977
|
-
scale:
|
|
2977
|
+
scale: pe()
|
|
2978
2978
|
}],
|
|
2979
2979
|
/**
|
|
2980
2980
|
* Scale X
|
|
2981
2981
|
* @see https://tailwindcss.com/docs/scale
|
|
2982
2982
|
*/
|
|
2983
2983
|
"scale-x": [{
|
|
2984
|
-
"scale-x":
|
|
2984
|
+
"scale-x": pe()
|
|
2985
2985
|
}],
|
|
2986
2986
|
/**
|
|
2987
2987
|
* Scale Y
|
|
2988
2988
|
* @see https://tailwindcss.com/docs/scale
|
|
2989
2989
|
*/
|
|
2990
2990
|
"scale-y": [{
|
|
2991
|
-
"scale-y":
|
|
2991
|
+
"scale-y": pe()
|
|
2992
2992
|
}],
|
|
2993
2993
|
/**
|
|
2994
2994
|
* Scale Z
|
|
2995
2995
|
* @see https://tailwindcss.com/docs/scale
|
|
2996
2996
|
*/
|
|
2997
2997
|
"scale-z": [{
|
|
2998
|
-
"scale-z":
|
|
2998
|
+
"scale-z": pe()
|
|
2999
2999
|
}],
|
|
3000
3000
|
/**
|
|
3001
3001
|
* Scale 3D
|
|
@@ -3049,28 +3049,28 @@ const sr = (t, e) => {
|
|
|
3049
3049
|
* @see https://tailwindcss.com/docs/translate
|
|
3050
3050
|
*/
|
|
3051
3051
|
translate: [{
|
|
3052
|
-
translate:
|
|
3052
|
+
translate: he()
|
|
3053
3053
|
}],
|
|
3054
3054
|
/**
|
|
3055
3055
|
* Translate X
|
|
3056
3056
|
* @see https://tailwindcss.com/docs/translate
|
|
3057
3057
|
*/
|
|
3058
3058
|
"translate-x": [{
|
|
3059
|
-
"translate-x":
|
|
3059
|
+
"translate-x": he()
|
|
3060
3060
|
}],
|
|
3061
3061
|
/**
|
|
3062
3062
|
* Translate Y
|
|
3063
3063
|
* @see https://tailwindcss.com/docs/translate
|
|
3064
3064
|
*/
|
|
3065
3065
|
"translate-y": [{
|
|
3066
|
-
"translate-y":
|
|
3066
|
+
"translate-y": he()
|
|
3067
3067
|
}],
|
|
3068
3068
|
/**
|
|
3069
3069
|
* Translate Z
|
|
3070
3070
|
* @see https://tailwindcss.com/docs/translate
|
|
3071
3071
|
*/
|
|
3072
3072
|
"translate-z": [{
|
|
3073
|
-
"translate-z":
|
|
3073
|
+
"translate-z": he()
|
|
3074
3074
|
}],
|
|
3075
3075
|
/**
|
|
3076
3076
|
* Translate None
|
|
@@ -3085,7 +3085,7 @@ const sr = (t, e) => {
|
|
|
3085
3085
|
* @see https://tailwindcss.com/docs/accent-color
|
|
3086
3086
|
*/
|
|
3087
3087
|
accent: [{
|
|
3088
|
-
accent:
|
|
3088
|
+
accent: h()
|
|
3089
3089
|
}],
|
|
3090
3090
|
/**
|
|
3091
3091
|
* Appearance
|
|
@@ -3099,7 +3099,7 @@ const sr = (t, e) => {
|
|
|
3099
3099
|
* @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
|
|
3100
3100
|
*/
|
|
3101
3101
|
"caret-color": [{
|
|
3102
|
-
caret:
|
|
3102
|
+
caret: h()
|
|
3103
3103
|
}],
|
|
3104
3104
|
/**
|
|
3105
3105
|
* Color Scheme
|
|
@@ -3148,154 +3148,154 @@ const sr = (t, e) => {
|
|
|
3148
3148
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3149
3149
|
*/
|
|
3150
3150
|
"scroll-m": [{
|
|
3151
|
-
"scroll-m":
|
|
3151
|
+
"scroll-m": p()
|
|
3152
3152
|
}],
|
|
3153
3153
|
/**
|
|
3154
3154
|
* Scroll Margin Inline
|
|
3155
3155
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3156
3156
|
*/
|
|
3157
3157
|
"scroll-mx": [{
|
|
3158
|
-
"scroll-mx":
|
|
3158
|
+
"scroll-mx": p()
|
|
3159
3159
|
}],
|
|
3160
3160
|
/**
|
|
3161
3161
|
* Scroll Margin Block
|
|
3162
3162
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3163
3163
|
*/
|
|
3164
3164
|
"scroll-my": [{
|
|
3165
|
-
"scroll-my":
|
|
3165
|
+
"scroll-my": p()
|
|
3166
3166
|
}],
|
|
3167
3167
|
/**
|
|
3168
3168
|
* Scroll Margin Inline Start
|
|
3169
3169
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3170
3170
|
*/
|
|
3171
3171
|
"scroll-ms": [{
|
|
3172
|
-
"scroll-ms":
|
|
3172
|
+
"scroll-ms": p()
|
|
3173
3173
|
}],
|
|
3174
3174
|
/**
|
|
3175
3175
|
* Scroll Margin Inline End
|
|
3176
3176
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3177
3177
|
*/
|
|
3178
3178
|
"scroll-me": [{
|
|
3179
|
-
"scroll-me":
|
|
3179
|
+
"scroll-me": p()
|
|
3180
3180
|
}],
|
|
3181
3181
|
/**
|
|
3182
3182
|
* Scroll Margin Block Start
|
|
3183
3183
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3184
3184
|
*/
|
|
3185
3185
|
"scroll-mbs": [{
|
|
3186
|
-
"scroll-mbs":
|
|
3186
|
+
"scroll-mbs": p()
|
|
3187
3187
|
}],
|
|
3188
3188
|
/**
|
|
3189
3189
|
* Scroll Margin Block End
|
|
3190
3190
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3191
3191
|
*/
|
|
3192
3192
|
"scroll-mbe": [{
|
|
3193
|
-
"scroll-mbe":
|
|
3193
|
+
"scroll-mbe": p()
|
|
3194
3194
|
}],
|
|
3195
3195
|
/**
|
|
3196
3196
|
* Scroll Margin Top
|
|
3197
3197
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3198
3198
|
*/
|
|
3199
3199
|
"scroll-mt": [{
|
|
3200
|
-
"scroll-mt":
|
|
3200
|
+
"scroll-mt": p()
|
|
3201
3201
|
}],
|
|
3202
3202
|
/**
|
|
3203
3203
|
* Scroll Margin Right
|
|
3204
3204
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3205
3205
|
*/
|
|
3206
3206
|
"scroll-mr": [{
|
|
3207
|
-
"scroll-mr":
|
|
3207
|
+
"scroll-mr": p()
|
|
3208
3208
|
}],
|
|
3209
3209
|
/**
|
|
3210
3210
|
* Scroll Margin Bottom
|
|
3211
3211
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3212
3212
|
*/
|
|
3213
3213
|
"scroll-mb": [{
|
|
3214
|
-
"scroll-mb":
|
|
3214
|
+
"scroll-mb": p()
|
|
3215
3215
|
}],
|
|
3216
3216
|
/**
|
|
3217
3217
|
* Scroll Margin Left
|
|
3218
3218
|
* @see https://tailwindcss.com/docs/scroll-margin
|
|
3219
3219
|
*/
|
|
3220
3220
|
"scroll-ml": [{
|
|
3221
|
-
"scroll-ml":
|
|
3221
|
+
"scroll-ml": p()
|
|
3222
3222
|
}],
|
|
3223
3223
|
/**
|
|
3224
3224
|
* Scroll Padding
|
|
3225
3225
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3226
3226
|
*/
|
|
3227
3227
|
"scroll-p": [{
|
|
3228
|
-
"scroll-p":
|
|
3228
|
+
"scroll-p": p()
|
|
3229
3229
|
}],
|
|
3230
3230
|
/**
|
|
3231
3231
|
* Scroll Padding Inline
|
|
3232
3232
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3233
3233
|
*/
|
|
3234
3234
|
"scroll-px": [{
|
|
3235
|
-
"scroll-px":
|
|
3235
|
+
"scroll-px": p()
|
|
3236
3236
|
}],
|
|
3237
3237
|
/**
|
|
3238
3238
|
* Scroll Padding Block
|
|
3239
3239
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3240
3240
|
*/
|
|
3241
3241
|
"scroll-py": [{
|
|
3242
|
-
"scroll-py":
|
|
3242
|
+
"scroll-py": p()
|
|
3243
3243
|
}],
|
|
3244
3244
|
/**
|
|
3245
3245
|
* Scroll Padding Inline Start
|
|
3246
3246
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3247
3247
|
*/
|
|
3248
3248
|
"scroll-ps": [{
|
|
3249
|
-
"scroll-ps":
|
|
3249
|
+
"scroll-ps": p()
|
|
3250
3250
|
}],
|
|
3251
3251
|
/**
|
|
3252
3252
|
* Scroll Padding Inline End
|
|
3253
3253
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3254
3254
|
*/
|
|
3255
3255
|
"scroll-pe": [{
|
|
3256
|
-
"scroll-pe":
|
|
3256
|
+
"scroll-pe": p()
|
|
3257
3257
|
}],
|
|
3258
3258
|
/**
|
|
3259
3259
|
* Scroll Padding Block Start
|
|
3260
3260
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3261
3261
|
*/
|
|
3262
3262
|
"scroll-pbs": [{
|
|
3263
|
-
"scroll-pbs":
|
|
3263
|
+
"scroll-pbs": p()
|
|
3264
3264
|
}],
|
|
3265
3265
|
/**
|
|
3266
3266
|
* Scroll Padding Block End
|
|
3267
3267
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3268
3268
|
*/
|
|
3269
3269
|
"scroll-pbe": [{
|
|
3270
|
-
"scroll-pbe":
|
|
3270
|
+
"scroll-pbe": p()
|
|
3271
3271
|
}],
|
|
3272
3272
|
/**
|
|
3273
3273
|
* Scroll Padding Top
|
|
3274
3274
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3275
3275
|
*/
|
|
3276
3276
|
"scroll-pt": [{
|
|
3277
|
-
"scroll-pt":
|
|
3277
|
+
"scroll-pt": p()
|
|
3278
3278
|
}],
|
|
3279
3279
|
/**
|
|
3280
3280
|
* Scroll Padding Right
|
|
3281
3281
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3282
3282
|
*/
|
|
3283
3283
|
"scroll-pr": [{
|
|
3284
|
-
"scroll-pr":
|
|
3284
|
+
"scroll-pr": p()
|
|
3285
3285
|
}],
|
|
3286
3286
|
/**
|
|
3287
3287
|
* Scroll Padding Bottom
|
|
3288
3288
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3289
3289
|
*/
|
|
3290
3290
|
"scroll-pb": [{
|
|
3291
|
-
"scroll-pb":
|
|
3291
|
+
"scroll-pb": p()
|
|
3292
3292
|
}],
|
|
3293
3293
|
/**
|
|
3294
3294
|
* Scroll Padding Left
|
|
3295
3295
|
* @see https://tailwindcss.com/docs/scroll-padding
|
|
3296
3296
|
*/
|
|
3297
3297
|
"scroll-pl": [{
|
|
3298
|
-
"scroll-pl":
|
|
3298
|
+
"scroll-pl": p()
|
|
3299
3299
|
}],
|
|
3300
3300
|
/**
|
|
3301
3301
|
* Scroll Snap Align
|
|
@@ -3373,7 +3373,7 @@ const sr = (t, e) => {
|
|
|
3373
3373
|
* @see https://tailwindcss.com/docs/fill
|
|
3374
3374
|
*/
|
|
3375
3375
|
fill: [{
|
|
3376
|
-
fill: ["none", ...
|
|
3376
|
+
fill: ["none", ...h()]
|
|
3377
3377
|
}],
|
|
3378
3378
|
/**
|
|
3379
3379
|
* Stroke Width
|
|
@@ -3387,7 +3387,7 @@ const sr = (t, e) => {
|
|
|
3387
3387
|
* @see https://tailwindcss.com/docs/stroke
|
|
3388
3388
|
*/
|
|
3389
3389
|
stroke: [{
|
|
3390
|
-
stroke: ["none", ...
|
|
3390
|
+
stroke: ["none", ...h()]
|
|
3391
3391
|
}],
|
|
3392
3392
|
// ---------------------
|
|
3393
3393
|
// --- Accessibility ---
|
|
@@ -3463,32 +3463,28 @@ const Yr = {
|
|
|
3463
3463
|
primary: {
|
|
3464
3464
|
circle: "stroke-neutral-primary opacity-25",
|
|
3465
3465
|
path: "fill-neutral-primary",
|
|
3466
|
-
|
|
3467
|
-
text: "text-neutral-primary"
|
|
3466
|
+
class: "btn-primary"
|
|
3468
3467
|
},
|
|
3469
3468
|
secondary: {
|
|
3470
|
-
circle: "stroke-brand-primary-
|
|
3471
|
-
path: "fill-brand-primary-
|
|
3472
|
-
|
|
3473
|
-
text: "text-brand-primary-900"
|
|
3469
|
+
circle: "stroke-brand-primary-light opacity-100",
|
|
3470
|
+
path: "fill-brand-primary-bold",
|
|
3471
|
+
class: "btn-secondary"
|
|
3474
3472
|
},
|
|
3475
3473
|
tertiary: {
|
|
3476
|
-
circle: "stroke-brand-primary-
|
|
3477
|
-
path: "fill-brand-primary-
|
|
3478
|
-
|
|
3479
|
-
text: "text-brand-primary-900"
|
|
3474
|
+
circle: "stroke-brand-primary-light opacity-100",
|
|
3475
|
+
path: "fill-brand-primary-bold",
|
|
3476
|
+
class: "btn-tertiary"
|
|
3480
3477
|
},
|
|
3481
3478
|
link: {
|
|
3482
|
-
circle: "stroke-brand-primary-
|
|
3483
|
-
path: "fill-brand-primary-
|
|
3484
|
-
|
|
3485
|
-
text: "text-brand-primary-900"
|
|
3479
|
+
circle: "stroke-brand-primary-light opacity-100",
|
|
3480
|
+
path: "fill-brand-primary-bold",
|
|
3481
|
+
class: "bg-transparent text-brand-primary-bold"
|
|
3486
3482
|
}
|
|
3487
3483
|
}, Jr = {
|
|
3488
|
-
primary: "
|
|
3489
|
-
secondary: "
|
|
3490
|
-
tertiary: "
|
|
3491
|
-
link: "text-brand-primary-
|
|
3484
|
+
primary: "btn-primary",
|
|
3485
|
+
secondary: "btn-secondary",
|
|
3486
|
+
tertiary: "btn-tertiary",
|
|
3487
|
+
link: "text-brand-primary-bold border-transparent disabled:bg-transparent"
|
|
3492
3488
|
}, Zr = {
|
|
3493
3489
|
xs: "h-9 gap-1 rounded-lg px-3 text-sm",
|
|
3494
3490
|
sm: "h-10 rounded-lg gap-2 text-sm px-3",
|
|
@@ -3498,11 +3494,11 @@ const Yr = {
|
|
|
3498
3494
|
"icon-sm": "size-10",
|
|
3499
3495
|
"icon-md": "size-12",
|
|
3500
3496
|
"icon-lg": "size-14"
|
|
3501
|
-
}, Kr = 'inline-flex items-center cursor-pointer justify-center gap-2 whitespace-nowrap rounded-lg text-sm font-medium transition-all border border-
|
|
3497
|
+
}, Kr = 'inline-flex items-center cursor-pointer justify-center gap-2 whitespace-nowrap rounded-lg text-sm font-medium transition-all border border-solid [&_svg]:pointer-events-none [&_svg:not([class*="size-"])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:ring-brand-primary-light focus-visible:ring-[4px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive';
|
|
3502
3498
|
var Xr = Object.defineProperty, Qr = Object.getOwnPropertyDescriptor, J = (t, e, r, o) => {
|
|
3503
|
-
for (var
|
|
3504
|
-
(n = t[
|
|
3505
|
-
return o &&
|
|
3499
|
+
for (var i = o > 1 ? void 0 : o ? Qr(e, r) : e, s = t.length - 1, n; s >= 0; s--)
|
|
3500
|
+
(n = t[s]) && (i = (o ? n(e, r, i) : n(i)) || i);
|
|
3501
|
+
return o && i && Xr(e, r, i), i;
|
|
3506
3502
|
};
|
|
3507
3503
|
let D = class extends ze {
|
|
3508
3504
|
constructor() {
|
|
@@ -3522,11 +3518,11 @@ let D = class extends ze {
|
|
|
3522
3518
|
);
|
|
3523
3519
|
}
|
|
3524
3520
|
render() {
|
|
3525
|
-
const t = Yr[this.variant], e = this.isDisabled && !this.isLoading, r = this.isLoading ? `${t.
|
|
3521
|
+
const t = Yr[this.variant], e = this.isDisabled && !this.isLoading, r = this.isLoading ? `${t.class} cursor-wait` : "", o = Fr(
|
|
3526
3522
|
Kr,
|
|
3527
3523
|
Jr[this.variant],
|
|
3528
3524
|
Zr[this.size],
|
|
3529
|
-
this.isLoading && "relative
|
|
3525
|
+
this.isLoading && "relative pointer-events-none",
|
|
3530
3526
|
e && "disabled:pointer-events-none disabled:cursor-not-allowed disabled:border-transparent disabled:text-neutral-quartenary disabled:font-semibold disabled:bg-neutral-quinary",
|
|
3531
3527
|
r
|
|
3532
3528
|
);
|
|
@@ -3546,15 +3542,8 @@ let D = class extends ze {
|
|
|
3546
3542
|
fill="none"
|
|
3547
3543
|
viewBox="0 0 24 24"
|
|
3548
3544
|
>
|
|
3549
|
-
<circle
|
|
3550
|
-
class="opacity-25 ${t.circle}"
|
|
3551
|
-
cx="12"
|
|
3552
|
-
cy="12"
|
|
3553
|
-
r="10"
|
|
3554
|
-
stroke-width="4"
|
|
3555
|
-
/>
|
|
3545
|
+
<circle cx="12" cy="12" r="10" stroke-width="4" />
|
|
3556
3546
|
<path
|
|
3557
|
-
class="opacity-75 ${t.path}"
|
|
3558
3547
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
3559
3548
|
/>
|
|
3560
3549
|
</svg>
|