@stencitecnologia/front-kit 0.1.48 → 0.1.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +5 -5
- package/dist/index.es.js +251 -221
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { computed as u, openBlock as l, createElementBlock as
|
|
1
|
+
import { computed as u, openBlock as l, createElementBlock as p, normalizeClass as W, toDisplayString as S, createCommentVNode as v, createBlock as b, unref as h, mergeProps as R, renderSlot as C, createElementVNode as z, createVNode as V, ref as F, onMounted as _, onBeforeUnmount as oo, normalizeStyle as P, watch as so, withCtx as B, createTextVNode as Q, createSlots as Y, Fragment as uo, Teleport as fo, withModifiers as go } from "vue";
|
|
2
2
|
import mo from "primevue/autocomplete";
|
|
3
3
|
import po from "primevue/avatar";
|
|
4
4
|
import { FontAwesomeIcon as bo } from "@fortawesome/vue-fontawesome";
|
|
@@ -40,13 +40,13 @@ const Fo = {
|
|
|
40
40
|
"ui-alert-error": r.variant === "error",
|
|
41
41
|
"ui-alert-info": r.variant === "info"
|
|
42
42
|
}));
|
|
43
|
-
return (n, a) => o.message ? (l(),
|
|
43
|
+
return (n, a) => o.message ? (l(), p("div", {
|
|
44
44
|
key: 0,
|
|
45
|
-
class:
|
|
45
|
+
class: W(["ui-alert", e.value]),
|
|
46
46
|
role: "alert"
|
|
47
|
-
},
|
|
47
|
+
}, S(o.message), 3)) : v("", !0);
|
|
48
48
|
}
|
|
49
|
-
},
|
|
49
|
+
}, gu = {
|
|
50
50
|
__name: "BaseAutoComplete",
|
|
51
51
|
props: {
|
|
52
52
|
modelValue: {
|
|
@@ -88,7 +88,7 @@ const Fo = {
|
|
|
88
88
|
get: () => e.modelValue,
|
|
89
89
|
set: (s) => n("update:modelValue", s)
|
|
90
90
|
}), d = (s) => n("complete", s), i = (s) => n("item-select", s), c = () => n("clear");
|
|
91
|
-
return (s, g) => (l(),
|
|
91
|
+
return (s, g) => (l(), b(h(mo), R({
|
|
92
92
|
modelValue: a.value,
|
|
93
93
|
"onUpdate:modelValue": g[0] || (g[0] = (y) => a.value = y),
|
|
94
94
|
suggestions: o.suggestions,
|
|
@@ -109,7 +109,7 @@ const Fo = {
|
|
|
109
109
|
function Mo(o) {
|
|
110
110
|
return o ? o.trim().split(/\s+/).slice(0, 2).map((r) => r[0].toUpperCase()).join("") : "";
|
|
111
111
|
}
|
|
112
|
-
const
|
|
112
|
+
const mu = {
|
|
113
113
|
__name: "BaseAvatar",
|
|
114
114
|
props: {
|
|
115
115
|
name: {
|
|
@@ -133,13 +133,13 @@ const lu = {
|
|
|
133
133
|
`base-avatar--${r.variant}`,
|
|
134
134
|
`base-avatar--${r.size}`
|
|
135
135
|
]);
|
|
136
|
-
return (a, d) => (l(),
|
|
136
|
+
return (a, d) => (l(), b(h(po), {
|
|
137
137
|
label: e.value,
|
|
138
138
|
shape: "circle",
|
|
139
|
-
class:
|
|
139
|
+
class: W(n.value)
|
|
140
140
|
}, null, 8, ["label", "class"]));
|
|
141
141
|
}
|
|
142
|
-
},
|
|
142
|
+
}, A = {
|
|
143
143
|
__name: "FaIcon",
|
|
144
144
|
props: {
|
|
145
145
|
icon: {
|
|
@@ -148,13 +148,13 @@ const lu = {
|
|
|
148
148
|
}
|
|
149
149
|
},
|
|
150
150
|
setup(o) {
|
|
151
|
-
return (r, e) => (l(),
|
|
151
|
+
return (r, e) => (l(), b(h(bo), R({ icon: o.icon }, r.$attrs), null, 16, ["icon"]));
|
|
152
152
|
}
|
|
153
153
|
}, Oo = ["disabled", "type"], Ao = {
|
|
154
154
|
key: 0,
|
|
155
155
|
class: "loading",
|
|
156
156
|
style: { color: "currentColor" }
|
|
157
|
-
}, Ho = { key: 2 },
|
|
157
|
+
}, Ho = { key: 2 }, L = {
|
|
158
158
|
__name: "BaseButton",
|
|
159
159
|
props: {
|
|
160
160
|
label: {
|
|
@@ -206,17 +206,17 @@ const lu = {
|
|
|
206
206
|
"ui-btn-sm": r.size === "sm"
|
|
207
207
|
}
|
|
208
208
|
]), n = u(() => r.disabled || r.loading);
|
|
209
|
-
return (a, d) => (l(),
|
|
209
|
+
return (a, d) => (l(), p("button", R(a.$attrs, {
|
|
210
210
|
disabled: n.value,
|
|
211
211
|
class: e.value,
|
|
212
212
|
type: o.type
|
|
213
213
|
}), [
|
|
214
|
-
o.loading ? (l(),
|
|
214
|
+
o.loading ? (l(), p("span", Ao)) : o.icon && !o.loading ? (l(), b(A, {
|
|
215
215
|
key: 1,
|
|
216
216
|
icon: o.icon
|
|
217
|
-
}, null, 8, ["icon"])) :
|
|
218
|
-
o.label ? (l(),
|
|
219
|
-
|
|
217
|
+
}, null, 8, ["icon"])) : v("", !0),
|
|
218
|
+
o.label ? (l(), p("span", Ho, S(o.label), 1)) : v("", !0),
|
|
219
|
+
C(a.$slots, "default")
|
|
220
220
|
], 16, Oo));
|
|
221
221
|
}
|
|
222
222
|
}, To = {
|
|
@@ -231,7 +231,7 @@ const lu = {
|
|
|
231
231
|
}, Lo = { class: "ui-card-content" }, Po = {
|
|
232
232
|
key: 1,
|
|
233
233
|
class: "ui-card-footer"
|
|
234
|
-
}, Yo = { class: "ui-card-footer-content" },
|
|
234
|
+
}, Yo = { class: "ui-card-footer-content" }, pu = {
|
|
235
235
|
__name: "BaseCard",
|
|
236
236
|
props: {
|
|
237
237
|
title: {
|
|
@@ -265,28 +265,28 @@ const lu = {
|
|
|
265
265
|
r.className,
|
|
266
266
|
{ "ui-card-has-footer": r.hasFooter }
|
|
267
267
|
]);
|
|
268
|
-
return (a, d) => (l(),
|
|
269
|
-
class:
|
|
268
|
+
return (a, d) => (l(), p("section", {
|
|
269
|
+
class: W(n.value)
|
|
270
270
|
}, [
|
|
271
|
-
e.value ? (l(),
|
|
272
|
-
o.title ? (l(),
|
|
273
|
-
o.subtitle ? (l(),
|
|
274
|
-
])) :
|
|
275
|
-
|
|
276
|
-
|
|
271
|
+
e.value ? (l(), p("header", To, [
|
|
272
|
+
o.title ? (l(), p("div", No, S(o.title), 1)) : v("", !0),
|
|
273
|
+
o.subtitle ? (l(), p("div", jo, S(o.subtitle), 1)) : v("", !0)
|
|
274
|
+
])) : v("", !0),
|
|
275
|
+
z("div", Lo, [
|
|
276
|
+
V(Fo, {
|
|
277
277
|
message: o.alertMessage,
|
|
278
278
|
variant: o.alertVariant
|
|
279
279
|
}, null, 8, ["message", "variant"]),
|
|
280
|
-
|
|
280
|
+
C(a.$slots, "default")
|
|
281
281
|
]),
|
|
282
|
-
o.hasFooter ? (l(),
|
|
283
|
-
|
|
284
|
-
|
|
282
|
+
o.hasFooter ? (l(), p("footer", Po, [
|
|
283
|
+
z("div", Yo, [
|
|
284
|
+
C(a.$slots, "footer")
|
|
285
285
|
])
|
|
286
|
-
])) :
|
|
286
|
+
])) : v("", !0)
|
|
287
287
|
], 2));
|
|
288
288
|
}
|
|
289
|
-
},
|
|
289
|
+
}, bu = {
|
|
290
290
|
__name: "BaseChart",
|
|
291
291
|
props: {
|
|
292
292
|
type: {
|
|
@@ -316,26 +316,26 @@ const lu = {
|
|
|
316
316
|
{ borderColor: "#38bdf8", backgroundColor: "rgba(56, 189, 248, 0.60)" },
|
|
317
317
|
{ borderColor: "#a855f7", backgroundColor: "rgba(168, 85, 247, 0.60)" }
|
|
318
318
|
]), e = o, n = F(null), a = F(!1);
|
|
319
|
-
function d(x,
|
|
320
|
-
const
|
|
321
|
-
for (const w of Object.keys(
|
|
322
|
-
|
|
323
|
-
return
|
|
319
|
+
function d(x, k) {
|
|
320
|
+
const I = { ...x };
|
|
321
|
+
for (const w of Object.keys(k))
|
|
322
|
+
k[w] !== null && typeof k[w] == "object" && !Array.isArray(k[w]) && typeof x[w] == "object" ? I[w] = d(x[w] ?? {}, k[w]) : I[w] = k[w];
|
|
323
|
+
return I;
|
|
324
324
|
}
|
|
325
325
|
const i = u(() => !["pie", "doughnut"].includes(e.type)), c = u(() => e.height ? e.height : i.value ? "300px" : "400px"), s = u(() => {
|
|
326
326
|
if (!e.data?.datasets) return e.data;
|
|
327
|
-
const x = e.data.datasets.map((
|
|
328
|
-
const w = r[
|
|
327
|
+
const x = e.data.datasets.map((k, I) => {
|
|
328
|
+
const w = r[I % r.length];
|
|
329
329
|
return ["pie", "doughnut"].includes(e.type) ? {
|
|
330
|
-
...
|
|
330
|
+
...k,
|
|
331
331
|
backgroundColor: r.map((M) => M.backgroundColor),
|
|
332
332
|
borderColor: r.map((M) => M.borderColor),
|
|
333
333
|
borderWidth: 1.5
|
|
334
334
|
} : {
|
|
335
|
-
...
|
|
336
|
-
backgroundColor:
|
|
337
|
-
borderColor:
|
|
338
|
-
borderWidth:
|
|
335
|
+
...k,
|
|
336
|
+
backgroundColor: k.backgroundColor ?? w.backgroundColor,
|
|
337
|
+
borderColor: k.borderColor ?? w.borderColor,
|
|
338
|
+
borderWidth: k.borderWidth ?? 1.5,
|
|
339
339
|
borderRadius: e.type === "bar" ? 4 : 0
|
|
340
340
|
};
|
|
341
341
|
});
|
|
@@ -377,17 +377,17 @@ const lu = {
|
|
|
377
377
|
a.value = !0;
|
|
378
378
|
}), oo(() => {
|
|
379
379
|
a.value = !1, n.value?.chart && n.value.chart.destroy();
|
|
380
|
-
}), (x,
|
|
380
|
+
}), (x, k) => a.value ? (l(), b(h(ho), {
|
|
381
381
|
key: 0,
|
|
382
382
|
ref_key: "chartRef",
|
|
383
383
|
ref: n,
|
|
384
384
|
type: o.type,
|
|
385
385
|
data: s.value,
|
|
386
386
|
options: y.value,
|
|
387
|
-
style:
|
|
388
|
-
}, null, 8, ["type", "data", "options", "style"])) :
|
|
387
|
+
style: P({ height: c.value, width: "100%" })
|
|
388
|
+
}, null, 8, ["type", "data", "options", "style"])) : v("", !0);
|
|
389
389
|
}
|
|
390
|
-
},
|
|
390
|
+
}, hu = {
|
|
391
391
|
__name: "BaseCheckbox",
|
|
392
392
|
props: {
|
|
393
393
|
modelValue: {
|
|
@@ -421,7 +421,7 @@ const lu = {
|
|
|
421
421
|
get: () => e.modelValue,
|
|
422
422
|
set: (d) => n("update:modelValue", d)
|
|
423
423
|
});
|
|
424
|
-
return (d, i) => (l(),
|
|
424
|
+
return (d, i) => (l(), b(h(vo), R({
|
|
425
425
|
modelValue: a.value,
|
|
426
426
|
"onUpdate:modelValue": i[0] || (i[0] = (c) => a.value = c),
|
|
427
427
|
value: o.value,
|
|
@@ -431,7 +431,7 @@ const lu = {
|
|
|
431
431
|
class: [{ "p-invalid": o.invalid }]
|
|
432
432
|
}, d.$attrs), null, 16, ["modelValue", "value", "input-id", "name", "disabled", "class"]));
|
|
433
433
|
}
|
|
434
|
-
}, Xo = { class: "ui-currency" },
|
|
434
|
+
}, Xo = { class: "ui-currency" }, vu = {
|
|
435
435
|
__name: "BaseCurrency",
|
|
436
436
|
props: {
|
|
437
437
|
modelValue: {
|
|
@@ -475,8 +475,8 @@ const lu = {
|
|
|
475
475
|
const g = d(s.target.value);
|
|
476
476
|
n("update:modelValue", g), s.target.value = a(g);
|
|
477
477
|
};
|
|
478
|
-
return (s, g) => (l(),
|
|
479
|
-
|
|
478
|
+
return (s, g) => (l(), p("div", Xo, [
|
|
479
|
+
V(h(ro), R({
|
|
480
480
|
value: i.value,
|
|
481
481
|
placeholder: o.placeholder,
|
|
482
482
|
disabled: o.disabled,
|
|
@@ -534,7 +534,7 @@ const lu = {
|
|
|
534
534
|
get: () => e.modelValue,
|
|
535
535
|
set: (d) => n("update:modelValue", d)
|
|
536
536
|
});
|
|
537
|
-
return (d, i) => (l(),
|
|
537
|
+
return (d, i) => (l(), b(h(Bo), R({
|
|
538
538
|
modelValue: a.value,
|
|
539
539
|
"onUpdate:modelValue": i[0] || (i[0] = (c) => a.value = c),
|
|
540
540
|
mask: o.mask,
|
|
@@ -549,7 +549,7 @@ const lu = {
|
|
|
549
549
|
]
|
|
550
550
|
}, d.$attrs), null, 16, ["modelValue", "mask", "slot-char", "auto-clear", "disabled", "readonly", "class"]));
|
|
551
551
|
}
|
|
552
|
-
},
|
|
552
|
+
}, ku = {
|
|
553
553
|
__name: "BaseDate",
|
|
554
554
|
props: {
|
|
555
555
|
modelValue: {
|
|
@@ -610,28 +610,28 @@ const lu = {
|
|
|
610
610
|
if (!(t instanceof Date) || Number.isNaN(t.getTime())) return "";
|
|
611
611
|
const f = y(t.getDate()), m = y(t.getMonth() + 1), $ = String(t.getFullYear());
|
|
612
612
|
return `${f}/${m}/${$}`;
|
|
613
|
-
},
|
|
613
|
+
}, k = (t) => {
|
|
614
614
|
if (!t || typeof t != "string") return null;
|
|
615
615
|
const f = t.match(/^(\d{2})\/(\d{2})\/(\d{4})$/);
|
|
616
616
|
if (!f) return null;
|
|
617
617
|
const m = Number(f[1]), $ = Number(f[2]), D = Number(f[3]);
|
|
618
618
|
if ($ < 1 || $ > 12 || m < 1 || m > 31 || D < 1e3 || D > 9999) return null;
|
|
619
|
-
const
|
|
620
|
-
return
|
|
621
|
-
},
|
|
619
|
+
const H = new Date(D, $ - 1, m);
|
|
620
|
+
return H.getFullYear() !== D || H.getMonth() !== $ - 1 || H.getDate() !== m ? null : H;
|
|
621
|
+
}, I = (t) => !(!(t instanceof Date) || Number.isNaN(t.getTime()) || n.minDate && t < n.minDate || n.maxDate && t > n.maxDate), w = (t) => {
|
|
622
622
|
const [f, m] = t || [], $ = f ? x(f) : "", D = m ? x(m) : "";
|
|
623
623
|
return !$ && !D ? "" : $ && !D ? `${$} - ` : `${$} - ${D}`;
|
|
624
624
|
}, X = (t) => {
|
|
625
625
|
if (!t || typeof t != "string") return null;
|
|
626
626
|
const f = t.match(/^(.+?)\s*-\s*(.+?)$/);
|
|
627
627
|
if (!f) return null;
|
|
628
|
-
const m =
|
|
628
|
+
const m = k(f[1].trim()), $ = k(f[2].trim());
|
|
629
629
|
return !m || !$ ? null : [m, $];
|
|
630
630
|
}, M = (t) => /^\d{2}\/\d{2}\/\d{4} - \d{2}\/\d{2}\/\d{4}$/.test((t || "").replace(/_/g, "").trim()), O = (t) => {
|
|
631
631
|
i.value = t, a("update:textValue", t);
|
|
632
|
-
}, T = (t) => {
|
|
633
|
-
O(x(t)), c.value = t;
|
|
634
632
|
}, N = (t) => {
|
|
633
|
+
O(x(t)), c.value = t;
|
|
634
|
+
}, j = (t) => {
|
|
635
635
|
O(w(t)), c.value = t;
|
|
636
636
|
}, q = (t) => {
|
|
637
637
|
if (!Array.isArray(t)) return;
|
|
@@ -654,17 +654,17 @@ const lu = {
|
|
|
654
654
|
c.value = m, q(m);
|
|
655
655
|
return;
|
|
656
656
|
}
|
|
657
|
-
const f =
|
|
657
|
+
const f = k(t);
|
|
658
658
|
f && (c.value = f, a("update:modelValue", f));
|
|
659
659
|
}, to = (t) => {
|
|
660
660
|
if (t) {
|
|
661
661
|
if (g.value) {
|
|
662
662
|
c.value = t;
|
|
663
663
|
const [f, m] = t || [];
|
|
664
|
-
f instanceof Date && m instanceof Date && (
|
|
664
|
+
f instanceof Date && m instanceof Date && (j(t), q(t), d.value && d.value.hide());
|
|
665
665
|
return;
|
|
666
666
|
}
|
|
667
|
-
|
|
667
|
+
N(t), a("update:modelValue", t), d.value && d.value.hide();
|
|
668
668
|
}
|
|
669
669
|
}, lo = () => {
|
|
670
670
|
g.value && G.value && E(), a("blur");
|
|
@@ -672,13 +672,13 @@ const lu = {
|
|
|
672
672
|
d.value && d.value.toggle(t);
|
|
673
673
|
}, co = () => {
|
|
674
674
|
const t = /* @__PURE__ */ new Date(), f = new Date(t.getFullYear(), t.getMonth(), t.getDate());
|
|
675
|
-
if (
|
|
675
|
+
if (I(f)) {
|
|
676
676
|
if (g.value) {
|
|
677
677
|
const m = [f, f];
|
|
678
|
-
|
|
678
|
+
j(m), a("update:modelValue", m);
|
|
679
679
|
return;
|
|
680
680
|
}
|
|
681
|
-
|
|
681
|
+
N(f), a("update:modelValue", f);
|
|
682
682
|
}
|
|
683
683
|
}, U = u({
|
|
684
684
|
get: () => i.value,
|
|
@@ -694,15 +694,15 @@ const lu = {
|
|
|
694
694
|
return;
|
|
695
695
|
}
|
|
696
696
|
if (g.value) {
|
|
697
|
-
Array.isArray(t) && t[0] instanceof Date && t[1] instanceof Date &&
|
|
697
|
+
Array.isArray(t) && t[0] instanceof Date && t[1] instanceof Date && j(t);
|
|
698
698
|
return;
|
|
699
699
|
}
|
|
700
|
-
t instanceof Date &&
|
|
700
|
+
t instanceof Date && N(t);
|
|
701
701
|
},
|
|
702
702
|
{ immediate: !0 }
|
|
703
|
-
), (t, f) => (l(),
|
|
704
|
-
default:
|
|
705
|
-
(l(),
|
|
703
|
+
), (t, f) => (l(), b(h(ko), { class: "ui-inputgroup" }, {
|
|
704
|
+
default: B(() => [
|
|
705
|
+
(l(), b(qo, R({
|
|
706
706
|
key: s.value,
|
|
707
707
|
modelValue: U.value,
|
|
708
708
|
"onUpdate:modelValue": f[0] || (f[0] = (m) => U.value = m),
|
|
@@ -712,11 +712,11 @@ const lu = {
|
|
|
712
712
|
invalid: o.invalid,
|
|
713
713
|
size: o.size
|
|
714
714
|
}, t.$attrs, { onBlur: lo }), null, 16, ["modelValue", "mask", "placeholder", "disabled", "invalid", "size"])),
|
|
715
|
-
|
|
716
|
-
class:
|
|
715
|
+
V(h(yo), {
|
|
716
|
+
class: W(["ui-inputgroup-addon", { "ui-inputgroup-addon--sm": o.size === "sm" }])
|
|
717
717
|
}, {
|
|
718
|
-
default:
|
|
719
|
-
o.showClear ? (l(),
|
|
718
|
+
default: B(() => [
|
|
719
|
+
o.showClear ? (l(), b(L, {
|
|
720
720
|
key: 0,
|
|
721
721
|
type: "button",
|
|
722
722
|
variant: "outline",
|
|
@@ -725,12 +725,12 @@ const lu = {
|
|
|
725
725
|
"aria-label": "Limpar data",
|
|
726
726
|
onClick: E
|
|
727
727
|
}, {
|
|
728
|
-
default:
|
|
728
|
+
default: B(() => [...f[2] || (f[2] = [
|
|
729
729
|
Q(" Limpar ", -1)
|
|
730
730
|
])]),
|
|
731
731
|
_: 1
|
|
732
|
-
}, 8, ["size", "disabled"])) :
|
|
733
|
-
o.showToday ? (l(),
|
|
732
|
+
}, 8, ["size", "disabled"])) : v("", !0),
|
|
733
|
+
o.showToday ? (l(), b(L, {
|
|
734
734
|
key: 1,
|
|
735
735
|
type: "button",
|
|
736
736
|
variant: "outline",
|
|
@@ -739,12 +739,12 @@ const lu = {
|
|
|
739
739
|
"aria-label": "Selecionar hoje",
|
|
740
740
|
onClick: co
|
|
741
741
|
}, {
|
|
742
|
-
default:
|
|
742
|
+
default: B(() => [...f[3] || (f[3] = [
|
|
743
743
|
Q(" Hoje ", -1)
|
|
744
744
|
])]),
|
|
745
745
|
_: 1
|
|
746
|
-
}, 8, ["size", "disabled"])) :
|
|
747
|
-
|
|
746
|
+
}, 8, ["size", "disabled"])) : v("", !0),
|
|
747
|
+
V(L, {
|
|
748
748
|
type: "button",
|
|
749
749
|
variant: "ghost",
|
|
750
750
|
size: o.size,
|
|
@@ -752,24 +752,24 @@ const lu = {
|
|
|
752
752
|
"aria-label": "Abrir calendário",
|
|
753
753
|
onClick: io
|
|
754
754
|
}, {
|
|
755
|
-
default:
|
|
756
|
-
o.calendarIcon ? (l(),
|
|
755
|
+
default: B(() => [
|
|
756
|
+
o.calendarIcon ? (l(), b(A, {
|
|
757
757
|
key: 0,
|
|
758
758
|
class: "text-lg",
|
|
759
759
|
icon: o.calendarIcon
|
|
760
|
-
}, null, 8, ["icon"])) :
|
|
760
|
+
}, null, 8, ["icon"])) : v("", !0)
|
|
761
761
|
]),
|
|
762
762
|
_: 1
|
|
763
763
|
}, 8, ["size", "disabled"])
|
|
764
764
|
]),
|
|
765
765
|
_: 1
|
|
766
766
|
}, 8, ["class"]),
|
|
767
|
-
|
|
767
|
+
V(h(Co), {
|
|
768
768
|
ref_key: "popoverRef",
|
|
769
769
|
ref: d
|
|
770
770
|
}, {
|
|
771
|
-
default:
|
|
772
|
-
|
|
771
|
+
default: B(() => [
|
|
772
|
+
V(h(eo), {
|
|
773
773
|
modelValue: c.value,
|
|
774
774
|
"onUpdate:modelValue": [
|
|
775
775
|
f[1] || (f[1] = (m) => c.value = m),
|
|
@@ -787,7 +787,7 @@ const lu = {
|
|
|
787
787
|
_: 1
|
|
788
788
|
}));
|
|
789
789
|
}
|
|
790
|
-
},
|
|
790
|
+
}, yu = {
|
|
791
791
|
__name: "BaseDatePicker",
|
|
792
792
|
props: {
|
|
793
793
|
modelValue: {
|
|
@@ -816,7 +816,7 @@ const lu = {
|
|
|
816
816
|
get: () => e.modelValue,
|
|
817
817
|
set: (d) => n("update:modelValue", d)
|
|
818
818
|
});
|
|
819
|
-
return (d, i) => (l(),
|
|
819
|
+
return (d, i) => (l(), b(h(eo), R({
|
|
820
820
|
modelValue: a.value,
|
|
821
821
|
"onUpdate:modelValue": i[0] || (i[0] = (c) => a.value = c),
|
|
822
822
|
disabled: o.disabled,
|
|
@@ -827,7 +827,7 @@ const lu = {
|
|
|
827
827
|
]
|
|
828
828
|
}, d.$attrs), null, 16, ["modelValue", "disabled", "class"]));
|
|
829
829
|
}
|
|
830
|
-
},
|
|
830
|
+
}, T = (o, r) => {
|
|
831
831
|
const e = o.__vccOpts || o;
|
|
832
832
|
for (const [n, a] of r)
|
|
833
833
|
e[n] = a;
|
|
@@ -888,49 +888,49 @@ const lu = {
|
|
|
888
888
|
}, i = u(() => ({
|
|
889
889
|
width: `min(92vw, ${d[e.size]})`
|
|
890
890
|
})), c = u(() => !!(e.icon || e.content)), s = () => n("hide"), g = () => n("show");
|
|
891
|
-
return (y, x) => (l(),
|
|
891
|
+
return (y, x) => (l(), b(h(ao), {
|
|
892
892
|
visible: a.value,
|
|
893
|
-
"onUpdate:visible": x[0] || (x[0] = (
|
|
893
|
+
"onUpdate:visible": x[0] || (x[0] = (k) => a.value = k),
|
|
894
894
|
modal: "",
|
|
895
895
|
draggable: !1,
|
|
896
896
|
header: o.header,
|
|
897
897
|
closable: o.closable,
|
|
898
898
|
"dismissable-mask": o.dismissableMask,
|
|
899
899
|
"close-on-escape": o.closeOnEscape,
|
|
900
|
-
style:
|
|
900
|
+
style: P(i.value),
|
|
901
901
|
onHide: s,
|
|
902
902
|
onShow: g
|
|
903
|
-
},
|
|
904
|
-
default:
|
|
905
|
-
c.value && !y.$slots.default ? (l(),
|
|
906
|
-
o.icon ? (l(),
|
|
903
|
+
}, Y({
|
|
904
|
+
default: B(() => [
|
|
905
|
+
c.value && !y.$slots.default ? (l(), p("div", Eo, [
|
|
906
|
+
o.icon ? (l(), b(A, {
|
|
907
907
|
key: 0,
|
|
908
908
|
icon: o.icon,
|
|
909
909
|
class: "ui-dialog-icon"
|
|
910
|
-
}, null, 8, ["icon"])) :
|
|
911
|
-
o.content ? (l(),
|
|
912
|
-
])) :
|
|
913
|
-
|
|
910
|
+
}, null, 8, ["icon"])) : v("", !0),
|
|
911
|
+
o.content ? (l(), p("p", Uo, S(o.content), 1)) : v("", !0)
|
|
912
|
+
])) : v("", !0),
|
|
913
|
+
C(y.$slots, "default", {}, void 0, !0)
|
|
914
914
|
]),
|
|
915
915
|
_: 2
|
|
916
916
|
}, [
|
|
917
917
|
y.$slots.header ? {
|
|
918
918
|
name: "header",
|
|
919
|
-
fn:
|
|
920
|
-
|
|
919
|
+
fn: B(() => [
|
|
920
|
+
C(y.$slots, "header", {}, void 0, !0)
|
|
921
921
|
]),
|
|
922
922
|
key: "0"
|
|
923
923
|
} : void 0,
|
|
924
924
|
y.$slots.footer ? {
|
|
925
925
|
name: "footer",
|
|
926
|
-
fn:
|
|
927
|
-
|
|
926
|
+
fn: B(() => [
|
|
927
|
+
C(y.$slots, "footer", {}, void 0, !0)
|
|
928
928
|
]),
|
|
929
929
|
key: "1"
|
|
930
930
|
} : void 0
|
|
931
931
|
]), 1032, ["visible", "header", "closable", "dismissable-mask", "close-on-escape", "style"]));
|
|
932
932
|
}
|
|
933
|
-
},
|
|
933
|
+
}, Cu = /* @__PURE__ */ T(Go, [["__scopeId", "data-v-d952cadc"]]), Qo = { class: "ui-drawer-content" }, Bu = /* @__PURE__ */ Object.assign({
|
|
934
934
|
inheritAttrs: !1
|
|
935
935
|
}, {
|
|
936
936
|
__name: "BaseDrawer",
|
|
@@ -963,16 +963,16 @@ const lu = {
|
|
|
963
963
|
}, c = (s) => {
|
|
964
964
|
n("update:visible", s);
|
|
965
965
|
};
|
|
966
|
-
return (s, g) => (l(),
|
|
967
|
-
(l(),
|
|
968
|
-
a.value ? (l(),
|
|
966
|
+
return (s, g) => (l(), p(uo, null, [
|
|
967
|
+
(l(), b(fo, { to: "body" }, [
|
|
968
|
+
a.value ? (l(), p("div", {
|
|
969
969
|
key: 0,
|
|
970
970
|
class: "ui-drawer-backdrop",
|
|
971
971
|
role: "presentation",
|
|
972
972
|
onClick: i
|
|
973
|
-
})) :
|
|
973
|
+
})) : v("", !0)
|
|
974
974
|
])),
|
|
975
|
-
|
|
975
|
+
V(h(xo), R(s.$attrs, {
|
|
976
976
|
modal: o.modal,
|
|
977
977
|
dismissable: o.dismissable,
|
|
978
978
|
header: o.title,
|
|
@@ -982,9 +982,9 @@ const lu = {
|
|
|
982
982
|
class: "ui-drawer",
|
|
983
983
|
"onUpdate:visible": c
|
|
984
984
|
}), {
|
|
985
|
-
default:
|
|
986
|
-
|
|
987
|
-
|
|
985
|
+
default: B(() => [
|
|
986
|
+
z("div", Qo, [
|
|
987
|
+
C(s.$slots, "default")
|
|
988
988
|
])
|
|
989
989
|
]),
|
|
990
990
|
_: 3
|
|
@@ -1016,36 +1016,36 @@ const lu = {
|
|
|
1016
1016
|
},
|
|
1017
1017
|
setup(o) {
|
|
1018
1018
|
const r = o, e = u(() => !!r.image), n = u(() => !!r.description);
|
|
1019
|
-
return (a, d) => (l(),
|
|
1020
|
-
|
|
1021
|
-
e.value ? (l(),
|
|
1019
|
+
return (a, d) => (l(), p("div", Ko, [
|
|
1020
|
+
z("div", Jo, [
|
|
1021
|
+
e.value ? (l(), p("img", {
|
|
1022
1022
|
key: 0,
|
|
1023
1023
|
src: o.image,
|
|
1024
1024
|
alt: "",
|
|
1025
1025
|
class: "ui-empty__image"
|
|
1026
|
-
}, null, 8, Zo)) : (l(),
|
|
1026
|
+
}, null, 8, Zo)) : (l(), b(A, {
|
|
1027
1027
|
key: 1,
|
|
1028
1028
|
icon: o.icon,
|
|
1029
1029
|
class: "ui-empty__icon"
|
|
1030
1030
|
}, null, 8, ["icon"]))
|
|
1031
1031
|
]),
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
n.value ? (l(),
|
|
1035
|
-
|
|
1036
|
-
|
|
1032
|
+
z("div", _o, [
|
|
1033
|
+
z("h3", or, S(o.title), 1),
|
|
1034
|
+
n.value ? (l(), p("p", rr, S(o.description), 1)) : v("", !0),
|
|
1035
|
+
z("div", er, [
|
|
1036
|
+
C(a.$slots, "default", {}, void 0, !0)
|
|
1037
1037
|
])
|
|
1038
1038
|
])
|
|
1039
1039
|
]));
|
|
1040
1040
|
}
|
|
1041
|
-
},
|
|
1041
|
+
}, xu = /* @__PURE__ */ T(ar, [["__scopeId", "data-v-91327e2b"]]), nr = { class: "ui-field" }, tr = ["for"], dr = { class: "ui-control" }, lr = {
|
|
1042
1042
|
key: 1,
|
|
1043
1043
|
class: "ui-error",
|
|
1044
1044
|
role: "alert"
|
|
1045
1045
|
}, ir = {
|
|
1046
1046
|
key: 2,
|
|
1047
1047
|
class: "ui-help"
|
|
1048
|
-
},
|
|
1048
|
+
}, $u = {
|
|
1049
1049
|
__name: "BaseField",
|
|
1050
1050
|
props: {
|
|
1051
1051
|
label: {
|
|
@@ -1067,19 +1067,48 @@ const lu = {
|
|
|
1067
1067
|
},
|
|
1068
1068
|
setup(o) {
|
|
1069
1069
|
const r = o, e = u(() => !!r.label), n = u(() => !!r.error), a = u(() => !!r.help);
|
|
1070
|
-
return (d, i) => (l(),
|
|
1071
|
-
e.value ? (l(),
|
|
1070
|
+
return (d, i) => (l(), p("div", nr, [
|
|
1071
|
+
e.value ? (l(), p("label", {
|
|
1072
1072
|
key: 0,
|
|
1073
1073
|
class: "ui-label",
|
|
1074
1074
|
for: o.forId
|
|
1075
|
-
},
|
|
1076
|
-
|
|
1077
|
-
|
|
1075
|
+
}, S(o.label), 9, tr)) : v("", !0),
|
|
1076
|
+
z("div", dr, [
|
|
1077
|
+
C(d.$slots, "default")
|
|
1078
|
+
]),
|
|
1079
|
+
n.value ? (l(), p("small", lr, S(o.error), 1)) : a.value ? (l(), p("small", ir, S(o.help), 1)) : v("", !0)
|
|
1080
|
+
]));
|
|
1081
|
+
}
|
|
1082
|
+
}, cr = { class: "ui-forbidden" }, sr = { class: "ui-forbidden__icon" }, ur = { class: "ui-forbidden__content" }, fr = { class: "ui-forbidden__title" }, gr = { class: "ui-forbidden__description" }, mr = {
|
|
1083
|
+
key: 0,
|
|
1084
|
+
class: "ui-forbidden__actions"
|
|
1085
|
+
}, pr = {
|
|
1086
|
+
__name: "BaseForbidden",
|
|
1087
|
+
props: {
|
|
1088
|
+
title: {
|
|
1089
|
+
type: String,
|
|
1090
|
+
default: "Acesso não autorizado"
|
|
1091
|
+
},
|
|
1092
|
+
description: {
|
|
1093
|
+
type: String,
|
|
1094
|
+
default: "Você não possui os privilégios necessários para realizar essa ação. Entre em contato com o administrador para solicitar o acesso."
|
|
1095
|
+
}
|
|
1096
|
+
},
|
|
1097
|
+
setup(o) {
|
|
1098
|
+
return (r, e) => (l(), p("div", cr, [
|
|
1099
|
+
z("div", sr, [
|
|
1100
|
+
V(A, { icon: ["fal", "user-shield"] })
|
|
1078
1101
|
]),
|
|
1079
|
-
|
|
1102
|
+
z("div", ur, [
|
|
1103
|
+
z("h3", fr, S(o.title), 1),
|
|
1104
|
+
z("p", gr, S(o.description), 1),
|
|
1105
|
+
r.$slots.default ? (l(), p("div", mr, [
|
|
1106
|
+
C(r.$slots, "default", {}, void 0, !0)
|
|
1107
|
+
])) : v("", !0)
|
|
1108
|
+
])
|
|
1080
1109
|
]));
|
|
1081
1110
|
}
|
|
1082
|
-
},
|
|
1111
|
+
}, wu = /* @__PURE__ */ T(pr, [["__scopeId", "data-v-1025847b"]]), Ru = {
|
|
1083
1112
|
__name: "BaseInputText",
|
|
1084
1113
|
props: {
|
|
1085
1114
|
modelValue: {
|
|
@@ -1114,7 +1143,7 @@ const lu = {
|
|
|
1114
1143
|
}), i = F(null);
|
|
1115
1144
|
return r({
|
|
1116
1145
|
focus: () => i.value?.$el?.focus()
|
|
1117
|
-
}), (c, s) => (l(),
|
|
1146
|
+
}), (c, s) => (l(), b(h(ro), R({
|
|
1118
1147
|
ref_key: "inputRef",
|
|
1119
1148
|
ref: i,
|
|
1120
1149
|
modelValue: d.value,
|
|
@@ -1128,7 +1157,7 @@ const lu = {
|
|
|
1128
1157
|
]
|
|
1129
1158
|
}, c.$attrs), null, 16, ["modelValue", "disabled", "readonly", "class"]));
|
|
1130
1159
|
}
|
|
1131
|
-
},
|
|
1160
|
+
}, zu = {
|
|
1132
1161
|
__name: "BaseModal",
|
|
1133
1162
|
props: {
|
|
1134
1163
|
modelValue: {
|
|
@@ -1170,7 +1199,7 @@ const lu = {
|
|
|
1170
1199
|
}, i = u(() => ({
|
|
1171
1200
|
width: `min(92vw, ${d[e.size]})`
|
|
1172
1201
|
})), c = () => n("hide"), s = () => n("show");
|
|
1173
|
-
return (g, y) => (l(),
|
|
1202
|
+
return (g, y) => (l(), b(h(ao), {
|
|
1174
1203
|
visible: a.value,
|
|
1175
1204
|
"onUpdate:visible": y[0] || (y[0] = (x) => a.value = x),
|
|
1176
1205
|
modal: "",
|
|
@@ -1179,32 +1208,32 @@ const lu = {
|
|
|
1179
1208
|
closable: o.closable,
|
|
1180
1209
|
"dismissable-mask": o.dismissableMask,
|
|
1181
1210
|
"close-on-escape": o.closeOnEscape,
|
|
1182
|
-
style:
|
|
1211
|
+
style: P(i.value),
|
|
1183
1212
|
onHide: c,
|
|
1184
1213
|
onShow: s
|
|
1185
|
-
},
|
|
1186
|
-
default:
|
|
1187
|
-
|
|
1214
|
+
}, Y({
|
|
1215
|
+
default: B(() => [
|
|
1216
|
+
C(g.$slots, "default")
|
|
1188
1217
|
]),
|
|
1189
1218
|
_: 2
|
|
1190
1219
|
}, [
|
|
1191
1220
|
g.$slots.header ? {
|
|
1192
1221
|
name: "header",
|
|
1193
|
-
fn:
|
|
1194
|
-
|
|
1222
|
+
fn: B(() => [
|
|
1223
|
+
C(g.$slots, "header")
|
|
1195
1224
|
]),
|
|
1196
1225
|
key: "0"
|
|
1197
1226
|
} : void 0,
|
|
1198
1227
|
g.$slots.footer ? {
|
|
1199
1228
|
name: "footer",
|
|
1200
|
-
fn:
|
|
1201
|
-
|
|
1229
|
+
fn: B(() => [
|
|
1230
|
+
C(g.$slots, "footer")
|
|
1202
1231
|
]),
|
|
1203
1232
|
key: "1"
|
|
1204
1233
|
} : void 0
|
|
1205
1234
|
]), 1032, ["visible", "header", "closable", "dismissable-mask", "close-on-escape", "style"]));
|
|
1206
1235
|
}
|
|
1207
|
-
},
|
|
1236
|
+
}, Su = {
|
|
1208
1237
|
__name: "BaseMultiSelect",
|
|
1209
1238
|
props: {
|
|
1210
1239
|
modelValue: {
|
|
@@ -1257,7 +1286,7 @@ const lu = {
|
|
|
1257
1286
|
get: () => e.modelValue,
|
|
1258
1287
|
set: (d) => n("update:modelValue", d)
|
|
1259
1288
|
});
|
|
1260
|
-
return (d, i) => (l(),
|
|
1289
|
+
return (d, i) => (l(), b(h($o), R({
|
|
1261
1290
|
modelValue: a.value,
|
|
1262
1291
|
"onUpdate:modelValue": i[0] || (i[0] = (c) => a.value = c),
|
|
1263
1292
|
fluid: "",
|
|
@@ -1274,7 +1303,7 @@ const lu = {
|
|
|
1274
1303
|
]
|
|
1275
1304
|
}, d.$attrs), null, 16, ["modelValue", "options", "option-label", "option-value", "placeholder", "disabled", "loading", "filter", "class"]));
|
|
1276
1305
|
}
|
|
1277
|
-
},
|
|
1306
|
+
}, br = {
|
|
1278
1307
|
__name: "BasePanel",
|
|
1279
1308
|
props: {
|
|
1280
1309
|
header: {
|
|
@@ -1300,34 +1329,34 @@ const lu = {
|
|
|
1300
1329
|
"ui-panel": !0,
|
|
1301
1330
|
[`ui-panel--${r.variant}`]: !!r.variant
|
|
1302
1331
|
}));
|
|
1303
|
-
return (n, a) => (l(),
|
|
1332
|
+
return (n, a) => (l(), b(h(wo), {
|
|
1304
1333
|
header: o.header,
|
|
1305
1334
|
toggleable: o.toggleable,
|
|
1306
1335
|
collapsed: o.collapsed,
|
|
1307
|
-
class:
|
|
1308
|
-
},
|
|
1309
|
-
default:
|
|
1310
|
-
|
|
1336
|
+
class: W(e.value)
|
|
1337
|
+
}, Y({
|
|
1338
|
+
default: B(() => [
|
|
1339
|
+
C(n.$slots, "default", {}, void 0, !0)
|
|
1311
1340
|
]),
|
|
1312
1341
|
_: 2
|
|
1313
1342
|
}, [
|
|
1314
1343
|
n.$slots.header ? {
|
|
1315
1344
|
name: "header",
|
|
1316
|
-
fn:
|
|
1317
|
-
|
|
1345
|
+
fn: B(() => [
|
|
1346
|
+
C(n.$slots, "header", {}, void 0, !0)
|
|
1318
1347
|
]),
|
|
1319
1348
|
key: "0"
|
|
1320
1349
|
} : void 0,
|
|
1321
1350
|
n.$slots.icons ? {
|
|
1322
1351
|
name: "icons",
|
|
1323
|
-
fn:
|
|
1324
|
-
|
|
1352
|
+
fn: B(() => [
|
|
1353
|
+
C(n.$slots, "icons", {}, void 0, !0)
|
|
1325
1354
|
]),
|
|
1326
1355
|
key: "1"
|
|
1327
1356
|
} : void 0
|
|
1328
1357
|
]), 1032, ["header", "toggleable", "collapsed", "class"]));
|
|
1329
1358
|
}
|
|
1330
|
-
},
|
|
1359
|
+
}, Du = /* @__PURE__ */ T(br, [["__scopeId", "data-v-cc034b6b"]]), Vu = {
|
|
1331
1360
|
__name: "BaseRadioButton",
|
|
1332
1361
|
props: {
|
|
1333
1362
|
modelValue: {
|
|
@@ -1361,7 +1390,7 @@ const lu = {
|
|
|
1361
1390
|
get: () => e.modelValue,
|
|
1362
1391
|
set: (d) => n("update:modelValue", d)
|
|
1363
1392
|
});
|
|
1364
|
-
return (d, i) => (l(),
|
|
1393
|
+
return (d, i) => (l(), b(h(Ro), R({
|
|
1365
1394
|
modelValue: a.value,
|
|
1366
1395
|
"onUpdate:modelValue": i[0] || (i[0] = (c) => a.value = c),
|
|
1367
1396
|
value: o.value,
|
|
@@ -1371,7 +1400,7 @@ const lu = {
|
|
|
1371
1400
|
class: [{ "p-invalid": o.invalid }]
|
|
1372
1401
|
}, d.$attrs), null, 16, ["modelValue", "value", "name", "input-id", "disabled", "class"]));
|
|
1373
1402
|
}
|
|
1374
|
-
},
|
|
1403
|
+
}, hr = ["href", "target"], Wu = {
|
|
1375
1404
|
__name: "BaseRouterLink",
|
|
1376
1405
|
props: {
|
|
1377
1406
|
to: {
|
|
@@ -1406,32 +1435,32 @@ const lu = {
|
|
|
1406
1435
|
"ui-btn-disabled": e.value
|
|
1407
1436
|
}
|
|
1408
1437
|
]);
|
|
1409
|
-
return (a, d) => o.target === "_blank" ? (l(),
|
|
1438
|
+
return (a, d) => o.target === "_blank" ? (l(), p("a", {
|
|
1410
1439
|
key: 0,
|
|
1411
1440
|
href: typeof o.to == "string" ? o.to : o.to.path,
|
|
1412
|
-
class:
|
|
1441
|
+
class: W(n.value),
|
|
1413
1442
|
target: o.target,
|
|
1414
1443
|
rel: "noopener noreferrer"
|
|
1415
1444
|
}, [
|
|
1416
|
-
|
|
1417
|
-
], 10,
|
|
1445
|
+
C(a.$slots, "default")
|
|
1446
|
+
], 10, hr)) : (l(), b(h(zo), {
|
|
1418
1447
|
key: 1,
|
|
1419
1448
|
to: e.value ? void 0 : o.to,
|
|
1420
|
-
class:
|
|
1449
|
+
class: W(n.value),
|
|
1421
1450
|
"aria-disabled": e.value,
|
|
1422
1451
|
target: o.target,
|
|
1423
1452
|
onClick: d[0] || (d[0] = go((i) => e.value && i.preventDefault(), ["prevent"]))
|
|
1424
1453
|
}, {
|
|
1425
|
-
default:
|
|
1426
|
-
|
|
1454
|
+
default: B(() => [
|
|
1455
|
+
C(a.$slots, "default")
|
|
1427
1456
|
]),
|
|
1428
1457
|
_: 3
|
|
1429
1458
|
}, 8, ["to", "class", "aria-disabled", "target"]));
|
|
1430
1459
|
}
|
|
1431
|
-
},
|
|
1460
|
+
}, vr = { class: "ui-section-divider" }, kr = {
|
|
1432
1461
|
key: 0,
|
|
1433
1462
|
class: "ui-section-divider__label"
|
|
1434
|
-
},
|
|
1463
|
+
}, Iu = {
|
|
1435
1464
|
__name: "BaseSectionDivider",
|
|
1436
1465
|
props: {
|
|
1437
1466
|
label: {
|
|
@@ -1441,12 +1470,12 @@ const lu = {
|
|
|
1441
1470
|
},
|
|
1442
1471
|
setup(o) {
|
|
1443
1472
|
const r = o, e = u(() => !!r.label);
|
|
1444
|
-
return (n, a) => (l(),
|
|
1445
|
-
e.value ? (l(),
|
|
1446
|
-
a[0] || (a[0] =
|
|
1473
|
+
return (n, a) => (l(), p("div", vr, [
|
|
1474
|
+
e.value ? (l(), p("span", kr, S(o.label), 1)) : v("", !0),
|
|
1475
|
+
a[0] || (a[0] = z("div", { class: "ui-section-divider__line" }, null, -1))
|
|
1447
1476
|
]));
|
|
1448
1477
|
}
|
|
1449
|
-
},
|
|
1478
|
+
}, Fu = {
|
|
1450
1479
|
__name: "BaseSelect",
|
|
1451
1480
|
props: {
|
|
1452
1481
|
modelValue: {
|
|
@@ -1502,7 +1531,7 @@ const lu = {
|
|
|
1502
1531
|
e.optionEmpty,
|
|
1503
1532
|
...e.options
|
|
1504
1533
|
] : e.options);
|
|
1505
|
-
return (i, c) => (l(),
|
|
1534
|
+
return (i, c) => (l(), b(h(So), R({
|
|
1506
1535
|
modelValue: a.value,
|
|
1507
1536
|
"onUpdate:modelValue": c[0] || (c[0] = (s) => a.value = s),
|
|
1508
1537
|
options: d.value,
|
|
@@ -1518,7 +1547,7 @@ const lu = {
|
|
|
1518
1547
|
]
|
|
1519
1548
|
}, i.$attrs), null, 16, ["modelValue", "options", "option-label", "option-value", "placeholder", "disabled", "loading", "class"]));
|
|
1520
1549
|
}
|
|
1521
|
-
},
|
|
1550
|
+
}, Mu = {
|
|
1522
1551
|
__name: "BaseSwitch",
|
|
1523
1552
|
props: {
|
|
1524
1553
|
modelValue: {
|
|
@@ -1553,15 +1582,15 @@ const lu = {
|
|
|
1553
1582
|
e.disabled || e.loading || n("update:modelValue", i);
|
|
1554
1583
|
}
|
|
1555
1584
|
}), d = u(() => e.disabled || e.loading);
|
|
1556
|
-
return (i, c) => (l(),
|
|
1585
|
+
return (i, c) => (l(), b(h(Do), {
|
|
1557
1586
|
modelValue: a.value,
|
|
1558
1587
|
"onUpdate:modelValue": c[0] || (c[0] = (s) => a.value = s),
|
|
1559
1588
|
"input-id": o.inputId,
|
|
1560
1589
|
disabled: d.value,
|
|
1561
|
-
class:
|
|
1590
|
+
class: W(["base-switch", { "base-switch--sm": o.size === "sm" }])
|
|
1562
1591
|
}, null, 8, ["modelValue", "input-id", "disabled", "class"]));
|
|
1563
1592
|
}
|
|
1564
|
-
},
|
|
1593
|
+
}, Ou = {
|
|
1565
1594
|
__name: "BaseTextarea",
|
|
1566
1595
|
props: {
|
|
1567
1596
|
modelValue: {
|
|
@@ -1595,7 +1624,7 @@ const lu = {
|
|
|
1595
1624
|
get: () => e.modelValue,
|
|
1596
1625
|
set: (d) => n("update:modelValue", d)
|
|
1597
1626
|
});
|
|
1598
|
-
return (d, i) => (l(),
|
|
1627
|
+
return (d, i) => (l(), b(h(Vo), R({
|
|
1599
1628
|
modelValue: a.value,
|
|
1600
1629
|
"onUpdate:modelValue": i[0] || (i[0] = (c) => a.value = c),
|
|
1601
1630
|
rows: o.rows,
|
|
@@ -1608,7 +1637,7 @@ const lu = {
|
|
|
1608
1637
|
]
|
|
1609
1638
|
}, d.$attrs), null, 16, ["modelValue", "rows", "auto-resize", "disabled", "readonly", "class"]));
|
|
1610
1639
|
}
|
|
1611
|
-
},
|
|
1640
|
+
}, Au = {
|
|
1612
1641
|
mounted(o) {
|
|
1613
1642
|
const r = () => {
|
|
1614
1643
|
typeof o?.focus == "function" && o.focus();
|
|
@@ -1620,7 +1649,7 @@ const lu = {
|
|
|
1620
1649
|
});
|
|
1621
1650
|
}
|
|
1622
1651
|
};
|
|
1623
|
-
var gr = { transitionDuration: "{transition.duration}" }, mr = { borderWidth: "0 0 1px 0", borderColor: "{content.border.color}" }, pr = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{text.color}", activeHoverColor: "{text.color}", padding: "1.125rem", fontWeight: "600", borderRadius: "0", borderWidth: "0", borderColor: "{content.border.color}", background: "{content.background}", hoverBackground: "{content.background}", activeBackground: "{content.background}", activeHoverBackground: "{content.background}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" }, toggleIcon: { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{text.color}", activeHoverColor: "{text.color}" }, first: { topBorderRadius: "{content.border.radius}", borderWidth: "0" }, last: { bottomBorderRadius: "{content.border.radius}", activeBottomBorderRadius: "0" } }, br = { borderWidth: "0", borderColor: "{content.border.color}", background: "{content.background}", color: "{text.color}", padding: "0 1.125rem 1.125rem 1.125rem" }, hr = { root: gr, panel: mr, header: pr, content: br }, vr = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}" }, kr = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, yr = { padding: "{list.padding}", gap: "{list.gap}" }, Cr = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, Br = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, xr = { width: "2.5rem", sm: { width: "2rem" }, lg: { width: "3rem" }, borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, $r = { borderRadius: "{border.radius.sm}" }, wr = { padding: "{list.option.padding}" }, Rr = { light: { chip: { focusBackground: "{surface.200}", focusColor: "{surface.800}" }, dropdown: { background: "{surface.100}", hoverBackground: "{surface.200}", activeBackground: "{surface.300}", color: "{surface.600}", hoverColor: "{surface.700}", activeColor: "{surface.800}" } }, dark: { chip: { focusBackground: "{surface.700}", focusColor: "{surface.0}" }, dropdown: { background: "{surface.800}", hoverBackground: "{surface.700}", activeBackground: "{surface.600}", color: "{surface.300}", hoverColor: "{surface.200}", activeColor: "{surface.100}" } } }, zr = { root: vr, overlay: kr, list: yr, option: Cr, optionGroup: Br, dropdown: xr, chip: $r, emptyMessage: wr, colorScheme: Rr }, Sr = { width: "2rem", height: "2rem", fontSize: "1rem", background: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, Dr = { size: "1rem" }, Vr = { borderColor: "{content.background}", offset: "-0.75rem" }, Wr = { width: "3rem", height: "3rem", fontSize: "1.5rem", icon: { size: "1.5rem" }, group: { offset: "-1rem" } }, Ir = { width: "4rem", height: "4rem", fontSize: "2rem", icon: { size: "2rem" }, group: { offset: "-1.5rem" } }, Fr = { root: Sr, icon: Dr, group: Vr, lg: Wr, xl: Ir }, Mr = { borderRadius: "{border.radius.md}", padding: "0 0.5rem", fontSize: "0.75rem", fontWeight: "700", minWidth: "1.5rem", height: "1.5rem" }, Or = { size: "0.5rem" }, Ar = { fontSize: "0.625rem", minWidth: "1.25rem", height: "1.25rem" }, Hr = { fontSize: "0.875rem", minWidth: "1.75rem", height: "1.75rem" }, Tr = { fontSize: "1rem", minWidth: "2rem", height: "2rem" }, Nr = { light: { primary: { background: "{primary.color}", color: "{primary.contrast.color}" }, secondary: { background: "{surface.100}", color: "{surface.600}" }, success: { background: "{green.500}", color: "{surface.0}" }, info: { background: "{sky.500}", color: "{surface.0}" }, warn: { background: "{orange.500}", color: "{surface.0}" }, danger: { background: "{red.500}", color: "{surface.0}" }, contrast: { background: "{surface.950}", color: "{surface.0}" } }, dark: { primary: { background: "{primary.color}", color: "{primary.contrast.color}" }, secondary: { background: "{surface.800}", color: "{surface.300}" }, success: { background: "{green.400}", color: "{green.950}" }, info: { background: "{sky.400}", color: "{sky.950}" }, warn: { background: "{orange.400}", color: "{orange.950}" }, danger: { background: "{red.400}", color: "{red.950}" }, contrast: { background: "{surface.0}", color: "{surface.950}" } } }, jr = { root: Mr, dot: Or, sm: Ar, lg: Hr, xl: Tr, colorScheme: Nr }, Lr = { borderRadius: { none: "0", xs: "2px", sm: "4px", md: "6px", lg: "8px", xl: "12px" }, emerald: { 50: "#ecfdf5", 100: "#d1fae5", 200: "#a7f3d0", 300: "#6ee7b7", 400: "#34d399", 500: "#10b981", 600: "#059669", 700: "#047857", 800: "#065f46", 900: "#064e3b", 950: "#022c22" }, green: { 50: "#f0fdf4", 100: "#dcfce7", 200: "#bbf7d0", 300: "#86efac", 400: "#4ade80", 500: "#22c55e", 600: "#16a34a", 700: "#15803d", 800: "#166534", 900: "#14532d", 950: "#052e16" }, lime: { 50: "#f7fee7", 100: "#ecfccb", 200: "#d9f99d", 300: "#bef264", 400: "#a3e635", 500: "#84cc16", 600: "#65a30d", 700: "#4d7c0f", 800: "#3f6212", 900: "#365314", 950: "#1a2e05" }, red: { 50: "#fef2f2", 100: "#fee2e2", 200: "#fecaca", 300: "#fca5a5", 400: "#f87171", 500: "#ef4444", 600: "#dc2626", 700: "#b91c1c", 800: "#991b1b", 900: "#7f1d1d", 950: "#450a0a" }, orange: { 50: "#fff7ed", 100: "#ffedd5", 200: "#fed7aa", 300: "#fdba74", 400: "#fb923c", 500: "#f97316", 600: "#ea580c", 700: "#c2410c", 800: "#9a3412", 900: "#7c2d12", 950: "#431407" }, amber: { 50: "#fffbeb", 100: "#fef3c7", 200: "#fde68a", 300: "#fcd34d", 400: "#fbbf24", 500: "#f59e0b", 600: "#d97706", 700: "#b45309", 800: "#92400e", 900: "#78350f", 950: "#451a03" }, yellow: { 50: "#fefce8", 100: "#fef9c3", 200: "#fef08a", 300: "#fde047", 400: "#facc15", 500: "#eab308", 600: "#ca8a04", 700: "#a16207", 800: "#854d0e", 900: "#713f12", 950: "#422006" }, teal: { 50: "#f0fdfa", 100: "#ccfbf1", 200: "#99f6e4", 300: "#5eead4", 400: "#2dd4bf", 500: "#14b8a6", 600: "#0d9488", 700: "#0f766e", 800: "#115e59", 900: "#134e4a", 950: "#042f2e" }, cyan: { 50: "#ecfeff", 100: "#cffafe", 200: "#a5f3fc", 300: "#67e8f9", 400: "#22d3ee", 500: "#06b6d4", 600: "#0891b2", 700: "#0e7490", 800: "#155e75", 900: "#164e63", 950: "#083344" }, sky: { 50: "#f0f9ff", 100: "#e0f2fe", 200: "#bae6fd", 300: "#7dd3fc", 400: "#38bdf8", 500: "#0ea5e9", 600: "#0284c7", 700: "#0369a1", 800: "#075985", 900: "#0c4a6e", 950: "#082f49" }, blue: { 50: "#eff6ff", 100: "#dbeafe", 200: "#bfdbfe", 300: "#93c5fd", 400: "#60a5fa", 500: "#3b82f6", 600: "#2563eb", 700: "#1d4ed8", 800: "#1e40af", 900: "#1e3a8a", 950: "#172554" }, indigo: { 50: "#eef2ff", 100: "#e0e7ff", 200: "#c7d2fe", 300: "#a5b4fc", 400: "#818cf8", 500: "#6366f1", 600: "#4f46e5", 700: "#4338ca", 800: "#3730a3", 900: "#312e81", 950: "#1e1b4b" }, violet: { 50: "#f5f3ff", 100: "#ede9fe", 200: "#ddd6fe", 300: "#c4b5fd", 400: "#a78bfa", 500: "#8b5cf6", 600: "#7c3aed", 700: "#6d28d9", 800: "#5b21b6", 900: "#4c1d95", 950: "#2e1065" }, purple: { 50: "#faf5ff", 100: "#f3e8ff", 200: "#e9d5ff", 300: "#d8b4fe", 400: "#c084fc", 500: "#a855f7", 600: "#9333ea", 700: "#7e22ce", 800: "#6b21a8", 900: "#581c87", 950: "#3b0764" }, fuchsia: { 50: "#fdf4ff", 100: "#fae8ff", 200: "#f5d0fe", 300: "#f0abfc", 400: "#e879f9", 500: "#d946ef", 600: "#c026d3", 700: "#a21caf", 800: "#86198f", 900: "#701a75", 950: "#4a044e" }, pink: { 50: "#fdf2f8", 100: "#fce7f3", 200: "#fbcfe8", 300: "#f9a8d4", 400: "#f472b6", 500: "#ec4899", 600: "#db2777", 700: "#be185d", 800: "#9d174d", 900: "#831843", 950: "#500724" }, rose: { 50: "#fff1f2", 100: "#ffe4e6", 200: "#fecdd3", 300: "#fda4af", 400: "#fb7185", 500: "#f43f5e", 600: "#e11d48", 700: "#be123c", 800: "#9f1239", 900: "#881337", 950: "#4c0519" }, slate: { 50: "#f8fafc", 100: "#f1f5f9", 200: "#e2e8f0", 300: "#cbd5e1", 400: "#94a3b8", 500: "#64748b", 600: "#475569", 700: "#334155", 800: "#1e293b", 900: "#0f172a", 950: "#020617" }, gray: { 50: "#f9fafb", 100: "#f3f4f6", 200: "#e5e7eb", 300: "#d1d5db", 400: "#9ca3af", 500: "#6b7280", 600: "#4b5563", 700: "#374151", 800: "#1f2937", 900: "#111827", 950: "#030712" }, zinc: { 50: "#fafafa", 100: "#f4f4f5", 200: "#e4e4e7", 300: "#d4d4d8", 400: "#a1a1aa", 500: "#71717a", 600: "#52525b", 700: "#3f3f46", 800: "#27272a", 900: "#18181b", 950: "#09090b" }, neutral: { 50: "#fafafa", 100: "#f5f5f5", 200: "#e5e5e5", 300: "#d4d4d4", 400: "#a3a3a3", 500: "#737373", 600: "#525252", 700: "#404040", 800: "#262626", 900: "#171717", 950: "#0a0a0a" }, stone: { 50: "#fafaf9", 100: "#f5f5f4", 200: "#e7e5e4", 300: "#d6d3d1", 400: "#a8a29e", 500: "#78716c", 600: "#57534e", 700: "#44403c", 800: "#292524", 900: "#1c1917", 950: "#0c0a09" } }, Pr = { transitionDuration: "0.2s", focusRing: { width: "1px", style: "solid", color: "{primary.color}", offset: "2px", shadow: "none" }, disabledOpacity: "0.6", iconSize: "1rem", anchorGutter: "2px", primary: { 50: "{emerald.50}", 100: "{emerald.100}", 200: "{emerald.200}", 300: "{emerald.300}", 400: "{emerald.400}", 500: "{emerald.500}", 600: "{emerald.600}", 700: "{emerald.700}", 800: "{emerald.800}", 900: "{emerald.900}", 950: "{emerald.950}" }, formField: { paddingX: "0.75rem", paddingY: "0.5rem", sm: { fontSize: "0.875rem", paddingX: "0.625rem", paddingY: "0.375rem" }, lg: { fontSize: "1.125rem", paddingX: "0.875rem", paddingY: "0.625rem" }, borderRadius: "{border.radius.md}", focusRing: { width: "0", style: "none", color: "transparent", offset: "0", shadow: "none" }, transitionDuration: "{transition.duration}" }, list: { padding: "0.25rem 0.25rem", gap: "2px", header: { padding: "0.5rem 1rem 0.25rem 1rem" }, option: { padding: "0.5rem 0.75rem", borderRadius: "{border.radius.sm}" }, optionGroup: { padding: "0.5rem 0.75rem", fontWeight: "600" } }, content: { borderRadius: "{border.radius.md}" }, mask: { transitionDuration: "0.3s" }, navigation: { list: { padding: "0.25rem 0.25rem", gap: "2px" }, item: { padding: "0.5rem 0.75rem", borderRadius: "{border.radius.sm}", gap: "0.5rem" }, submenuLabel: { padding: "0.5rem 0.75rem", fontWeight: "600" }, submenuIcon: { size: "0.875rem" } }, overlay: { select: { borderRadius: "{border.radius.md}", shadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)" }, popover: { borderRadius: "{border.radius.md}", padding: "0.75rem", shadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)" }, modal: { borderRadius: "{border.radius.xl}", padding: "1.25rem", shadow: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)" }, navigation: { shadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)" } }, colorScheme: { light: { surface: { 0: "#ffffff", 50: "{slate.50}", 100: "{slate.100}", 200: "{slate.200}", 300: "{slate.300}", 400: "{slate.400}", 500: "{slate.500}", 600: "{slate.600}", 700: "{slate.700}", 800: "{slate.800}", 900: "{slate.900}", 950: "{slate.950}" }, primary: { color: "{primary.500}", contrastColor: "#ffffff", hoverColor: "{primary.600}", activeColor: "{primary.700}" }, highlight: { background: "{primary.50}", focusBackground: "{primary.100}", color: "{primary.700}", focusColor: "{primary.800}" }, mask: { background: "rgba(0,0,0,0.4)", color: "{surface.200}" }, formField: { background: "{surface.0}", disabledBackground: "{surface.200}", filledBackground: "{surface.50}", filledHoverBackground: "{surface.50}", filledFocusBackground: "{surface.50}", borderColor: "{surface.300}", hoverBorderColor: "{surface.400}", focusBorderColor: "{primary.color}", invalidBorderColor: "{red.400}", color: "{surface.700}", disabledColor: "{surface.500}", placeholderColor: "{surface.500}", invalidPlaceholderColor: "{red.600}", floatLabelColor: "{surface.500}", floatLabelFocusColor: "{primary.600}", floatLabelActiveColor: "{surface.500}", floatLabelInvalidColor: "{form.field.invalid.placeholder.color}", iconColor: "{surface.400}", shadow: "0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)" }, text: { color: "{surface.700}", hoverColor: "{surface.800}", mutedColor: "{surface.500}", hoverMutedColor: "{surface.600}" }, content: { background: "{surface.0}", hoverBackground: "{surface.100}", borderColor: "{surface.200}", color: "{text.color}", hoverColor: "{text.hover.color}" }, overlay: { select: { background: "{surface.0}", borderColor: "{surface.200}", color: "{text.color}" }, popover: { background: "{surface.0}", borderColor: "{surface.200}", color: "{text.color}" }, modal: { background: "{surface.0}", borderColor: "{surface.200}", color: "{text.color}" } }, list: { option: { focusBackground: "{surface.100}", selectedBackground: "{highlight.background}", selectedFocusBackground: "{highlight.focus.background}", color: "{text.color}", focusColor: "{text.hover.color}", selectedColor: "{highlight.color}", selectedFocusColor: "{highlight.focus.color}", icon: { color: "{surface.400}", focusColor: "{surface.500}" } }, optionGroup: { background: "transparent", color: "{text.muted.color}" } }, navigation: { item: { focusBackground: "{surface.100}", activeBackground: "{surface.100}", color: "{text.color}", focusColor: "{text.hover.color}", activeColor: "{text.hover.color}", icon: { color: "{surface.400}", focusColor: "{surface.500}", activeColor: "{surface.500}" } }, submenuLabel: { background: "transparent", color: "{text.muted.color}" }, submenuIcon: { color: "{surface.400}", focusColor: "{surface.500}", activeColor: "{surface.500}" } } }, dark: { surface: { 0: "#ffffff", 50: "{zinc.50}", 100: "{zinc.100}", 200: "{zinc.200}", 300: "{zinc.300}", 400: "{zinc.400}", 500: "{zinc.500}", 600: "{zinc.600}", 700: "{zinc.700}", 800: "{zinc.800}", 900: "{zinc.900}", 950: "{zinc.950}" }, primary: { color: "{primary.400}", contrastColor: "{surface.900}", hoverColor: "{primary.300}", activeColor: "{primary.200}" }, highlight: { background: "color-mix(in srgb, {primary.400}, transparent 84%)", focusBackground: "color-mix(in srgb, {primary.400}, transparent 76%)", color: "rgba(255,255,255,.87)", focusColor: "rgba(255,255,255,.87)" }, mask: { background: "rgba(0,0,0,0.6)", color: "{surface.200}" }, formField: { background: "{surface.950}", disabledBackground: "{surface.700}", filledBackground: "{surface.800}", filledHoverBackground: "{surface.800}", filledFocusBackground: "{surface.800}", borderColor: "{surface.600}", hoverBorderColor: "{surface.500}", focusBorderColor: "{primary.color}", invalidBorderColor: "{red.300}", color: "{surface.0}", disabledColor: "{surface.400}", placeholderColor: "{surface.400}", invalidPlaceholderColor: "{red.400}", floatLabelColor: "{surface.400}", floatLabelFocusColor: "{primary.color}", floatLabelActiveColor: "{surface.400}", floatLabelInvalidColor: "{form.field.invalid.placeholder.color}", iconColor: "{surface.400}", shadow: "0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)" }, text: { color: "{surface.0}", hoverColor: "{surface.0}", mutedColor: "{surface.400}", hoverMutedColor: "{surface.300}" }, content: { background: "{surface.900}", hoverBackground: "{surface.800}", borderColor: "{surface.700}", color: "{text.color}", hoverColor: "{text.hover.color}" }, overlay: { select: { background: "{surface.900}", borderColor: "{surface.700}", color: "{text.color}" }, popover: { background: "{surface.900}", borderColor: "{surface.700}", color: "{text.color}" }, modal: { background: "{surface.900}", borderColor: "{surface.700}", color: "{text.color}" } }, list: { option: { focusBackground: "{surface.800}", selectedBackground: "{highlight.background}", selectedFocusBackground: "{highlight.focus.background}", color: "{text.color}", focusColor: "{text.hover.color}", selectedColor: "{highlight.color}", selectedFocusColor: "{highlight.focus.color}", icon: { color: "{surface.500}", focusColor: "{surface.400}" } }, optionGroup: { background: "transparent", color: "{text.muted.color}" } }, navigation: { item: { focusBackground: "{surface.800}", activeBackground: "{surface.800}", color: "{text.color}", focusColor: "{text.hover.color}", activeColor: "{text.hover.color}", icon: { color: "{surface.500}", focusColor: "{surface.400}", activeColor: "{surface.400}" } }, submenuLabel: { background: "transparent", color: "{text.muted.color}" }, submenuIcon: { color: "{surface.500}", focusColor: "{surface.400}", activeColor: "{surface.400}" } } } } }, Yr = { primitive: Lr, semantic: Pr }, Xr = { borderRadius: "{content.border.radius}" }, qr = { root: Xr }, Er = { padding: "1rem", background: "{content.background}", gap: "0.5rem", transitionDuration: "{transition.duration}" }, Ur = { color: "{text.muted.color}", hoverColor: "{text.color}", borderRadius: "{content.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", hoverColor: "{navigation.item.icon.focus.color}" }, focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Gr = { color: "{navigation.item.icon.color}" }, Qr = { root: Er, item: Ur, separator: Gr }, Kr = { borderRadius: "{form.field.border.radius}", roundedBorderRadius: "2rem", gap: "0.5rem", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", iconOnlyWidth: "2.5rem", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}", iconOnlyWidth: "2rem" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}", iconOnlyWidth: "3rem" }, label: { fontWeight: "500" }, raisedShadow: "0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12)", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" }, badgeSize: "1rem", transitionDuration: "{form.field.transition.duration}" }, Jr = { light: { root: { primary: { background: "{primary.color}", hoverBackground: "{primary.hover.color}", activeBackground: "{primary.active.color}", borderColor: "{primary.color}", hoverBorderColor: "{primary.hover.color}", activeBorderColor: "{primary.active.color}", color: "{primary.contrast.color}", hoverColor: "{primary.contrast.color}", activeColor: "{primary.contrast.color}", focusRing: { color: "{primary.color}", shadow: "none" } }, secondary: { background: "{surface.100}", hoverBackground: "{surface.200}", activeBackground: "{surface.300}", borderColor: "{surface.100}", hoverBorderColor: "{surface.200}", activeBorderColor: "{surface.300}", color: "{surface.600}", hoverColor: "{surface.700}", activeColor: "{surface.800}", focusRing: { color: "{surface.600}", shadow: "none" } }, info: { background: "{sky.500}", hoverBackground: "{sky.600}", activeBackground: "{sky.700}", borderColor: "{sky.500}", hoverBorderColor: "{sky.600}", activeBorderColor: "{sky.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{sky.500}", shadow: "none" } }, success: { background: "{green.500}", hoverBackground: "{green.600}", activeBackground: "{green.700}", borderColor: "{green.500}", hoverBorderColor: "{green.600}", activeBorderColor: "{green.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{green.500}", shadow: "none" } }, warn: { background: "{orange.500}", hoverBackground: "{orange.600}", activeBackground: "{orange.700}", borderColor: "{orange.500}", hoverBorderColor: "{orange.600}", activeBorderColor: "{orange.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{orange.500}", shadow: "none" } }, help: { background: "{purple.500}", hoverBackground: "{purple.600}", activeBackground: "{purple.700}", borderColor: "{purple.500}", hoverBorderColor: "{purple.600}", activeBorderColor: "{purple.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{purple.500}", shadow: "none" } }, danger: { background: "{red.500}", hoverBackground: "{red.600}", activeBackground: "{red.700}", borderColor: "{red.500}", hoverBorderColor: "{red.600}", activeBorderColor: "{red.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{red.500}", shadow: "none" } }, contrast: { background: "{surface.950}", hoverBackground: "{surface.900}", activeBackground: "{surface.800}", borderColor: "{surface.950}", hoverBorderColor: "{surface.900}", activeBorderColor: "{surface.800}", color: "{surface.0}", hoverColor: "{surface.0}", activeColor: "{surface.0}", focusRing: { color: "{surface.950}", shadow: "none" } } }, outlined: { primary: { hoverBackground: "{primary.50}", activeBackground: "{primary.100}", borderColor: "{primary.200}", color: "{primary.color}" }, secondary: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", borderColor: "{surface.200}", color: "{surface.500}" }, success: { hoverBackground: "{green.50}", activeBackground: "{green.100}", borderColor: "{green.200}", color: "{green.500}" }, info: { hoverBackground: "{sky.50}", activeBackground: "{sky.100}", borderColor: "{sky.200}", color: "{sky.500}" }, warn: { hoverBackground: "{orange.50}", activeBackground: "{orange.100}", borderColor: "{orange.200}", color: "{orange.500}" }, help: { hoverBackground: "{purple.50}", activeBackground: "{purple.100}", borderColor: "{purple.200}", color: "{purple.500}" }, danger: { hoverBackground: "{red.50}", activeBackground: "{red.100}", borderColor: "{red.200}", color: "{red.500}" }, contrast: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", borderColor: "{surface.700}", color: "{surface.950}" }, plain: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", borderColor: "{surface.200}", color: "{surface.700}" } }, text: { primary: { hoverBackground: "{primary.50}", activeBackground: "{primary.100}", color: "{primary.color}" }, secondary: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", color: "{surface.500}" }, success: { hoverBackground: "{green.50}", activeBackground: "{green.100}", color: "{green.500}" }, info: { hoverBackground: "{sky.50}", activeBackground: "{sky.100}", color: "{sky.500}" }, warn: { hoverBackground: "{orange.50}", activeBackground: "{orange.100}", color: "{orange.500}" }, help: { hoverBackground: "{purple.50}", activeBackground: "{purple.100}", color: "{purple.500}" }, danger: { hoverBackground: "{red.50}", activeBackground: "{red.100}", color: "{red.500}" }, contrast: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", color: "{surface.950}" }, plain: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", color: "{surface.700}" } }, link: { color: "{primary.color}", hoverColor: "{primary.color}", activeColor: "{primary.color}" } }, dark: { root: { primary: { background: "{primary.color}", hoverBackground: "{primary.hover.color}", activeBackground: "{primary.active.color}", borderColor: "{primary.color}", hoverBorderColor: "{primary.hover.color}", activeBorderColor: "{primary.active.color}", color: "{primary.contrast.color}", hoverColor: "{primary.contrast.color}", activeColor: "{primary.contrast.color}", focusRing: { color: "{primary.color}", shadow: "none" } }, secondary: { background: "{surface.800}", hoverBackground: "{surface.700}", activeBackground: "{surface.600}", borderColor: "{surface.800}", hoverBorderColor: "{surface.700}", activeBorderColor: "{surface.600}", color: "{surface.300}", hoverColor: "{surface.200}", activeColor: "{surface.100}", focusRing: { color: "{surface.300}", shadow: "none" } }, info: { background: "{sky.400}", hoverBackground: "{sky.300}", activeBackground: "{sky.200}", borderColor: "{sky.400}", hoverBorderColor: "{sky.300}", activeBorderColor: "{sky.200}", color: "{sky.950}", hoverColor: "{sky.950}", activeColor: "{sky.950}", focusRing: { color: "{sky.400}", shadow: "none" } }, success: { background: "{green.400}", hoverBackground: "{green.300}", activeBackground: "{green.200}", borderColor: "{green.400}", hoverBorderColor: "{green.300}", activeBorderColor: "{green.200}", color: "{green.950}", hoverColor: "{green.950}", activeColor: "{green.950}", focusRing: { color: "{green.400}", shadow: "none" } }, warn: { background: "{orange.400}", hoverBackground: "{orange.300}", activeBackground: "{orange.200}", borderColor: "{orange.400}", hoverBorderColor: "{orange.300}", activeBorderColor: "{orange.200}", color: "{orange.950}", hoverColor: "{orange.950}", activeColor: "{orange.950}", focusRing: { color: "{orange.400}", shadow: "none" } }, help: { background: "{purple.400}", hoverBackground: "{purple.300}", activeBackground: "{purple.200}", borderColor: "{purple.400}", hoverBorderColor: "{purple.300}", activeBorderColor: "{purple.200}", color: "{purple.950}", hoverColor: "{purple.950}", activeColor: "{purple.950}", focusRing: { color: "{purple.400}", shadow: "none" } }, danger: { background: "{red.400}", hoverBackground: "{red.300}", activeBackground: "{red.200}", borderColor: "{red.400}", hoverBorderColor: "{red.300}", activeBorderColor: "{red.200}", color: "{red.950}", hoverColor: "{red.950}", activeColor: "{red.950}", focusRing: { color: "{red.400}", shadow: "none" } }, contrast: { background: "{surface.0}", hoverBackground: "{surface.100}", activeBackground: "{surface.200}", borderColor: "{surface.0}", hoverBorderColor: "{surface.100}", activeBorderColor: "{surface.200}", color: "{surface.950}", hoverColor: "{surface.950}", activeColor: "{surface.950}", focusRing: { color: "{surface.0}", shadow: "none" } } }, outlined: { primary: { hoverBackground: "color-mix(in srgb, {primary.color}, transparent 96%)", activeBackground: "color-mix(in srgb, {primary.color}, transparent 84%)", borderColor: "{primary.700}", color: "{primary.color}" }, secondary: { hoverBackground: "rgba(255,255,255,0.04)", activeBackground: "rgba(255,255,255,0.16)", borderColor: "{surface.700}", color: "{surface.400}" }, success: { hoverBackground: "color-mix(in srgb, {green.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {green.400}, transparent 84%)", borderColor: "{green.700}", color: "{green.400}" }, info: { hoverBackground: "color-mix(in srgb, {sky.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {sky.400}, transparent 84%)", borderColor: "{sky.700}", color: "{sky.400}" }, warn: { hoverBackground: "color-mix(in srgb, {orange.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {orange.400}, transparent 84%)", borderColor: "{orange.700}", color: "{orange.400}" }, help: { hoverBackground: "color-mix(in srgb, {purple.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {purple.400}, transparent 84%)", borderColor: "{purple.700}", color: "{purple.400}" }, danger: { hoverBackground: "color-mix(in srgb, {red.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {red.400}, transparent 84%)", borderColor: "{red.700}", color: "{red.400}" }, contrast: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", borderColor: "{surface.500}", color: "{surface.0}" }, plain: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", borderColor: "{surface.600}", color: "{surface.0}" } }, text: { primary: { hoverBackground: "color-mix(in srgb, {primary.color}, transparent 96%)", activeBackground: "color-mix(in srgb, {primary.color}, transparent 84%)", color: "{primary.color}" }, secondary: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", color: "{surface.400}" }, success: { hoverBackground: "color-mix(in srgb, {green.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {green.400}, transparent 84%)", color: "{green.400}" }, info: { hoverBackground: "color-mix(in srgb, {sky.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {sky.400}, transparent 84%)", color: "{sky.400}" }, warn: { hoverBackground: "color-mix(in srgb, {orange.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {orange.400}, transparent 84%)", color: "{orange.400}" }, help: { hoverBackground: "color-mix(in srgb, {purple.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {purple.400}, transparent 84%)", color: "{purple.400}" }, danger: { hoverBackground: "color-mix(in srgb, {red.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {red.400}, transparent 84%)", color: "{red.400}" }, contrast: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", color: "{surface.0}" }, plain: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", color: "{surface.0}" } }, link: { color: "{primary.color}", hoverColor: "{primary.color}", activeColor: "{primary.color}" } } }, Zr = { root: Kr, colorScheme: Jr }, _r = { background: "{content.background}", borderRadius: "{border.radius.xl}", color: "{content.color}", shadow: "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)" }, oe = { padding: "1.25rem", gap: "0.5rem" }, re = { gap: "0.5rem" }, ee = { fontSize: "1.25rem", fontWeight: "500" }, ae = { color: "{text.muted.color}" }, ne = { root: _r, body: oe, caption: re, title: ee, subtitle: ae }, te = { transitionDuration: "{transition.duration}" }, de = { gap: "0.25rem" }, le = { padding: "1rem", gap: "0.5rem" }, ie = { width: "2rem", height: "0.5rem", borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, ce = { light: { indicator: { background: "{surface.200}", hoverBackground: "{surface.300}", activeBackground: "{primary.color}" } }, dark: { indicator: { background: "{surface.700}", hoverBackground: "{surface.600}", activeBackground: "{primary.color}" } } }, se = { root: te, content: de, indicatorList: le, indicator: ie, colorScheme: ce }, ue = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, fe = { width: "2.5rem", color: "{form.field.icon.color}" }, ge = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, me = { padding: "{list.padding}", gap: "{list.gap}", mobileIndent: "1rem" }, pe = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}", icon: { color: "{list.option.icon.color}", focusColor: "{list.option.icon.focus.color}", size: "0.875rem" } }, be = { color: "{form.field.icon.color}" }, he = { root: ue, dropdown: fe, overlay: ge, list: me, option: pe, clearIcon: be }, ve = { borderRadius: "{border.radius.sm}", width: "1.25rem", height: "1.25rem", background: "{form.field.background}", checkedBackground: "{primary.color}", checkedHoverBackground: "{primary.hover.color}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.border.color}", checkedBorderColor: "{primary.color}", checkedHoverBorderColor: "{primary.hover.color}", checkedFocusBorderColor: "{primary.color}", checkedDisabledBorderColor: "{form.field.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", shadow: "{form.field.shadow}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { width: "1rem", height: "1rem" }, lg: { width: "1.5rem", height: "1.5rem" } }, ke = { size: "0.875rem", color: "{form.field.color}", checkedColor: "{primary.contrast.color}", checkedHoverColor: "{primary.contrast.color}", disabledColor: "{form.field.disabled.color}", sm: { size: "0.75rem" }, lg: { size: "1rem" } }, ye = { root: ve, icon: ke }, Ce = { borderRadius: "16px", paddingX: "0.75rem", paddingY: "0.5rem", gap: "0.5rem", transitionDuration: "{transition.duration}" }, Be = { width: "2rem", height: "2rem" }, xe = { size: "1rem" }, $e = { size: "1rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" } }, we = { light: { root: { background: "{surface.100}", color: "{surface.800}" }, icon: { color: "{surface.800}" }, removeIcon: { color: "{surface.800}" } }, dark: { root: { background: "{surface.800}", color: "{surface.0}" }, icon: { color: "{surface.0}" }, removeIcon: { color: "{surface.0}" } } }, Re = { root: Ce, image: Be, icon: xe, removeIcon: $e, colorScheme: we }, ze = { transitionDuration: "{transition.duration}" }, Se = { width: "1.5rem", height: "1.5rem", borderRadius: "{form.field.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, De = { shadow: "{overlay.popover.shadow}", borderRadius: "{overlay.popover.borderRadius}" }, Ve = { light: { panel: { background: "{surface.800}", borderColor: "{surface.900}" }, handle: { color: "{surface.0}" } }, dark: { panel: { background: "{surface.900}", borderColor: "{surface.700}" }, handle: { color: "{surface.0}" } } }, We = { root: ze, preview: Se, panel: De, colorScheme: Ve }, Ie = { size: "2rem", color: "{overlay.modal.color}" }, Fe = { gap: "1rem" }, Me = { icon: Ie, content: Fe }, Oe = { background: "{overlay.popover.background}", borderColor: "{overlay.popover.border.color}", color: "{overlay.popover.color}", borderRadius: "{overlay.popover.border.radius}", shadow: "{overlay.popover.shadow}", gutter: "10px", arrowOffset: "1.25rem" }, Ae = { padding: "{overlay.popover.padding}", gap: "1rem" }, He = { size: "1.5rem", color: "{overlay.popover.color}" }, Te = { gap: "0.5rem", padding: "0 {overlay.popover.padding} {overlay.popover.padding} {overlay.popover.padding}" }, Ne = { root: Oe, content: Ae, icon: He, footer: Te }, je = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, Le = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, Pe = { focusBackground: "{navigation.item.focus.background}", activeBackground: "{navigation.item.active.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", activeColor: "{navigation.item.active.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}", activeColor: "{navigation.item.icon.active.color}" } }, Ye = { mobileIndent: "1rem" }, Xe = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, qe = { borderColor: "{content.border.color}" }, Ee = { root: je, list: Le, item: Pe, submenu: Ye, submenuIcon: Xe, separator: qe }, Ue = `
|
|
1652
|
+
var yr = { transitionDuration: "{transition.duration}" }, Cr = { borderWidth: "0 0 1px 0", borderColor: "{content.border.color}" }, Br = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{text.color}", activeHoverColor: "{text.color}", padding: "1.125rem", fontWeight: "600", borderRadius: "0", borderWidth: "0", borderColor: "{content.border.color}", background: "{content.background}", hoverBackground: "{content.background}", activeBackground: "{content.background}", activeHoverBackground: "{content.background}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" }, toggleIcon: { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{text.color}", activeHoverColor: "{text.color}" }, first: { topBorderRadius: "{content.border.radius}", borderWidth: "0" }, last: { bottomBorderRadius: "{content.border.radius}", activeBottomBorderRadius: "0" } }, xr = { borderWidth: "0", borderColor: "{content.border.color}", background: "{content.background}", color: "{text.color}", padding: "0 1.125rem 1.125rem 1.125rem" }, $r = { root: yr, panel: Cr, header: Br, content: xr }, wr = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}" }, Rr = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, zr = { padding: "{list.padding}", gap: "{list.gap}" }, Sr = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, Dr = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, Vr = { width: "2.5rem", sm: { width: "2rem" }, lg: { width: "3rem" }, borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Wr = { borderRadius: "{border.radius.sm}" }, Ir = { padding: "{list.option.padding}" }, Fr = { light: { chip: { focusBackground: "{surface.200}", focusColor: "{surface.800}" }, dropdown: { background: "{surface.100}", hoverBackground: "{surface.200}", activeBackground: "{surface.300}", color: "{surface.600}", hoverColor: "{surface.700}", activeColor: "{surface.800}" } }, dark: { chip: { focusBackground: "{surface.700}", focusColor: "{surface.0}" }, dropdown: { background: "{surface.800}", hoverBackground: "{surface.700}", activeBackground: "{surface.600}", color: "{surface.300}", hoverColor: "{surface.200}", activeColor: "{surface.100}" } } }, Mr = { root: wr, overlay: Rr, list: zr, option: Sr, optionGroup: Dr, dropdown: Vr, chip: Wr, emptyMessage: Ir, colorScheme: Fr }, Or = { width: "2rem", height: "2rem", fontSize: "1rem", background: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, Ar = { size: "1rem" }, Hr = { borderColor: "{content.background}", offset: "-0.75rem" }, Tr = { width: "3rem", height: "3rem", fontSize: "1.5rem", icon: { size: "1.5rem" }, group: { offset: "-1rem" } }, Nr = { width: "4rem", height: "4rem", fontSize: "2rem", icon: { size: "2rem" }, group: { offset: "-1.5rem" } }, jr = { root: Or, icon: Ar, group: Hr, lg: Tr, xl: Nr }, Lr = { borderRadius: "{border.radius.md}", padding: "0 0.5rem", fontSize: "0.75rem", fontWeight: "700", minWidth: "1.5rem", height: "1.5rem" }, Pr = { size: "0.5rem" }, Yr = { fontSize: "0.625rem", minWidth: "1.25rem", height: "1.25rem" }, Xr = { fontSize: "0.875rem", minWidth: "1.75rem", height: "1.75rem" }, qr = { fontSize: "1rem", minWidth: "2rem", height: "2rem" }, Er = { light: { primary: { background: "{primary.color}", color: "{primary.contrast.color}" }, secondary: { background: "{surface.100}", color: "{surface.600}" }, success: { background: "{green.500}", color: "{surface.0}" }, info: { background: "{sky.500}", color: "{surface.0}" }, warn: { background: "{orange.500}", color: "{surface.0}" }, danger: { background: "{red.500}", color: "{surface.0}" }, contrast: { background: "{surface.950}", color: "{surface.0}" } }, dark: { primary: { background: "{primary.color}", color: "{primary.contrast.color}" }, secondary: { background: "{surface.800}", color: "{surface.300}" }, success: { background: "{green.400}", color: "{green.950}" }, info: { background: "{sky.400}", color: "{sky.950}" }, warn: { background: "{orange.400}", color: "{orange.950}" }, danger: { background: "{red.400}", color: "{red.950}" }, contrast: { background: "{surface.0}", color: "{surface.950}" } } }, Ur = { root: Lr, dot: Pr, sm: Yr, lg: Xr, xl: qr, colorScheme: Er }, Gr = { borderRadius: { none: "0", xs: "2px", sm: "4px", md: "6px", lg: "8px", xl: "12px" }, emerald: { 50: "#ecfdf5", 100: "#d1fae5", 200: "#a7f3d0", 300: "#6ee7b7", 400: "#34d399", 500: "#10b981", 600: "#059669", 700: "#047857", 800: "#065f46", 900: "#064e3b", 950: "#022c22" }, green: { 50: "#f0fdf4", 100: "#dcfce7", 200: "#bbf7d0", 300: "#86efac", 400: "#4ade80", 500: "#22c55e", 600: "#16a34a", 700: "#15803d", 800: "#166534", 900: "#14532d", 950: "#052e16" }, lime: { 50: "#f7fee7", 100: "#ecfccb", 200: "#d9f99d", 300: "#bef264", 400: "#a3e635", 500: "#84cc16", 600: "#65a30d", 700: "#4d7c0f", 800: "#3f6212", 900: "#365314", 950: "#1a2e05" }, red: { 50: "#fef2f2", 100: "#fee2e2", 200: "#fecaca", 300: "#fca5a5", 400: "#f87171", 500: "#ef4444", 600: "#dc2626", 700: "#b91c1c", 800: "#991b1b", 900: "#7f1d1d", 950: "#450a0a" }, orange: { 50: "#fff7ed", 100: "#ffedd5", 200: "#fed7aa", 300: "#fdba74", 400: "#fb923c", 500: "#f97316", 600: "#ea580c", 700: "#c2410c", 800: "#9a3412", 900: "#7c2d12", 950: "#431407" }, amber: { 50: "#fffbeb", 100: "#fef3c7", 200: "#fde68a", 300: "#fcd34d", 400: "#fbbf24", 500: "#f59e0b", 600: "#d97706", 700: "#b45309", 800: "#92400e", 900: "#78350f", 950: "#451a03" }, yellow: { 50: "#fefce8", 100: "#fef9c3", 200: "#fef08a", 300: "#fde047", 400: "#facc15", 500: "#eab308", 600: "#ca8a04", 700: "#a16207", 800: "#854d0e", 900: "#713f12", 950: "#422006" }, teal: { 50: "#f0fdfa", 100: "#ccfbf1", 200: "#99f6e4", 300: "#5eead4", 400: "#2dd4bf", 500: "#14b8a6", 600: "#0d9488", 700: "#0f766e", 800: "#115e59", 900: "#134e4a", 950: "#042f2e" }, cyan: { 50: "#ecfeff", 100: "#cffafe", 200: "#a5f3fc", 300: "#67e8f9", 400: "#22d3ee", 500: "#06b6d4", 600: "#0891b2", 700: "#0e7490", 800: "#155e75", 900: "#164e63", 950: "#083344" }, sky: { 50: "#f0f9ff", 100: "#e0f2fe", 200: "#bae6fd", 300: "#7dd3fc", 400: "#38bdf8", 500: "#0ea5e9", 600: "#0284c7", 700: "#0369a1", 800: "#075985", 900: "#0c4a6e", 950: "#082f49" }, blue: { 50: "#eff6ff", 100: "#dbeafe", 200: "#bfdbfe", 300: "#93c5fd", 400: "#60a5fa", 500: "#3b82f6", 600: "#2563eb", 700: "#1d4ed8", 800: "#1e40af", 900: "#1e3a8a", 950: "#172554" }, indigo: { 50: "#eef2ff", 100: "#e0e7ff", 200: "#c7d2fe", 300: "#a5b4fc", 400: "#818cf8", 500: "#6366f1", 600: "#4f46e5", 700: "#4338ca", 800: "#3730a3", 900: "#312e81", 950: "#1e1b4b" }, violet: { 50: "#f5f3ff", 100: "#ede9fe", 200: "#ddd6fe", 300: "#c4b5fd", 400: "#a78bfa", 500: "#8b5cf6", 600: "#7c3aed", 700: "#6d28d9", 800: "#5b21b6", 900: "#4c1d95", 950: "#2e1065" }, purple: { 50: "#faf5ff", 100: "#f3e8ff", 200: "#e9d5ff", 300: "#d8b4fe", 400: "#c084fc", 500: "#a855f7", 600: "#9333ea", 700: "#7e22ce", 800: "#6b21a8", 900: "#581c87", 950: "#3b0764" }, fuchsia: { 50: "#fdf4ff", 100: "#fae8ff", 200: "#f5d0fe", 300: "#f0abfc", 400: "#e879f9", 500: "#d946ef", 600: "#c026d3", 700: "#a21caf", 800: "#86198f", 900: "#701a75", 950: "#4a044e" }, pink: { 50: "#fdf2f8", 100: "#fce7f3", 200: "#fbcfe8", 300: "#f9a8d4", 400: "#f472b6", 500: "#ec4899", 600: "#db2777", 700: "#be185d", 800: "#9d174d", 900: "#831843", 950: "#500724" }, rose: { 50: "#fff1f2", 100: "#ffe4e6", 200: "#fecdd3", 300: "#fda4af", 400: "#fb7185", 500: "#f43f5e", 600: "#e11d48", 700: "#be123c", 800: "#9f1239", 900: "#881337", 950: "#4c0519" }, slate: { 50: "#f8fafc", 100: "#f1f5f9", 200: "#e2e8f0", 300: "#cbd5e1", 400: "#94a3b8", 500: "#64748b", 600: "#475569", 700: "#334155", 800: "#1e293b", 900: "#0f172a", 950: "#020617" }, gray: { 50: "#f9fafb", 100: "#f3f4f6", 200: "#e5e7eb", 300: "#d1d5db", 400: "#9ca3af", 500: "#6b7280", 600: "#4b5563", 700: "#374151", 800: "#1f2937", 900: "#111827", 950: "#030712" }, zinc: { 50: "#fafafa", 100: "#f4f4f5", 200: "#e4e4e7", 300: "#d4d4d8", 400: "#a1a1aa", 500: "#71717a", 600: "#52525b", 700: "#3f3f46", 800: "#27272a", 900: "#18181b", 950: "#09090b" }, neutral: { 50: "#fafafa", 100: "#f5f5f5", 200: "#e5e5e5", 300: "#d4d4d4", 400: "#a3a3a3", 500: "#737373", 600: "#525252", 700: "#404040", 800: "#262626", 900: "#171717", 950: "#0a0a0a" }, stone: { 50: "#fafaf9", 100: "#f5f5f4", 200: "#e7e5e4", 300: "#d6d3d1", 400: "#a8a29e", 500: "#78716c", 600: "#57534e", 700: "#44403c", 800: "#292524", 900: "#1c1917", 950: "#0c0a09" } }, Qr = { transitionDuration: "0.2s", focusRing: { width: "1px", style: "solid", color: "{primary.color}", offset: "2px", shadow: "none" }, disabledOpacity: "0.6", iconSize: "1rem", anchorGutter: "2px", primary: { 50: "{emerald.50}", 100: "{emerald.100}", 200: "{emerald.200}", 300: "{emerald.300}", 400: "{emerald.400}", 500: "{emerald.500}", 600: "{emerald.600}", 700: "{emerald.700}", 800: "{emerald.800}", 900: "{emerald.900}", 950: "{emerald.950}" }, formField: { paddingX: "0.75rem", paddingY: "0.5rem", sm: { fontSize: "0.875rem", paddingX: "0.625rem", paddingY: "0.375rem" }, lg: { fontSize: "1.125rem", paddingX: "0.875rem", paddingY: "0.625rem" }, borderRadius: "{border.radius.md}", focusRing: { width: "0", style: "none", color: "transparent", offset: "0", shadow: "none" }, transitionDuration: "{transition.duration}" }, list: { padding: "0.25rem 0.25rem", gap: "2px", header: { padding: "0.5rem 1rem 0.25rem 1rem" }, option: { padding: "0.5rem 0.75rem", borderRadius: "{border.radius.sm}" }, optionGroup: { padding: "0.5rem 0.75rem", fontWeight: "600" } }, content: { borderRadius: "{border.radius.md}" }, mask: { transitionDuration: "0.3s" }, navigation: { list: { padding: "0.25rem 0.25rem", gap: "2px" }, item: { padding: "0.5rem 0.75rem", borderRadius: "{border.radius.sm}", gap: "0.5rem" }, submenuLabel: { padding: "0.5rem 0.75rem", fontWeight: "600" }, submenuIcon: { size: "0.875rem" } }, overlay: { select: { borderRadius: "{border.radius.md}", shadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)" }, popover: { borderRadius: "{border.radius.md}", padding: "0.75rem", shadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)" }, modal: { borderRadius: "{border.radius.xl}", padding: "1.25rem", shadow: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1)" }, navigation: { shadow: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1)" } }, colorScheme: { light: { surface: { 0: "#ffffff", 50: "{slate.50}", 100: "{slate.100}", 200: "{slate.200}", 300: "{slate.300}", 400: "{slate.400}", 500: "{slate.500}", 600: "{slate.600}", 700: "{slate.700}", 800: "{slate.800}", 900: "{slate.900}", 950: "{slate.950}" }, primary: { color: "{primary.500}", contrastColor: "#ffffff", hoverColor: "{primary.600}", activeColor: "{primary.700}" }, highlight: { background: "{primary.50}", focusBackground: "{primary.100}", color: "{primary.700}", focusColor: "{primary.800}" }, mask: { background: "rgba(0,0,0,0.4)", color: "{surface.200}" }, formField: { background: "{surface.0}", disabledBackground: "{surface.200}", filledBackground: "{surface.50}", filledHoverBackground: "{surface.50}", filledFocusBackground: "{surface.50}", borderColor: "{surface.300}", hoverBorderColor: "{surface.400}", focusBorderColor: "{primary.color}", invalidBorderColor: "{red.400}", color: "{surface.700}", disabledColor: "{surface.500}", placeholderColor: "{surface.500}", invalidPlaceholderColor: "{red.600}", floatLabelColor: "{surface.500}", floatLabelFocusColor: "{primary.600}", floatLabelActiveColor: "{surface.500}", floatLabelInvalidColor: "{form.field.invalid.placeholder.color}", iconColor: "{surface.400}", shadow: "0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)" }, text: { color: "{surface.700}", hoverColor: "{surface.800}", mutedColor: "{surface.500}", hoverMutedColor: "{surface.600}" }, content: { background: "{surface.0}", hoverBackground: "{surface.100}", borderColor: "{surface.200}", color: "{text.color}", hoverColor: "{text.hover.color}" }, overlay: { select: { background: "{surface.0}", borderColor: "{surface.200}", color: "{text.color}" }, popover: { background: "{surface.0}", borderColor: "{surface.200}", color: "{text.color}" }, modal: { background: "{surface.0}", borderColor: "{surface.200}", color: "{text.color}" } }, list: { option: { focusBackground: "{surface.100}", selectedBackground: "{highlight.background}", selectedFocusBackground: "{highlight.focus.background}", color: "{text.color}", focusColor: "{text.hover.color}", selectedColor: "{highlight.color}", selectedFocusColor: "{highlight.focus.color}", icon: { color: "{surface.400}", focusColor: "{surface.500}" } }, optionGroup: { background: "transparent", color: "{text.muted.color}" } }, navigation: { item: { focusBackground: "{surface.100}", activeBackground: "{surface.100}", color: "{text.color}", focusColor: "{text.hover.color}", activeColor: "{text.hover.color}", icon: { color: "{surface.400}", focusColor: "{surface.500}", activeColor: "{surface.500}" } }, submenuLabel: { background: "transparent", color: "{text.muted.color}" }, submenuIcon: { color: "{surface.400}", focusColor: "{surface.500}", activeColor: "{surface.500}" } } }, dark: { surface: { 0: "#ffffff", 50: "{zinc.50}", 100: "{zinc.100}", 200: "{zinc.200}", 300: "{zinc.300}", 400: "{zinc.400}", 500: "{zinc.500}", 600: "{zinc.600}", 700: "{zinc.700}", 800: "{zinc.800}", 900: "{zinc.900}", 950: "{zinc.950}" }, primary: { color: "{primary.400}", contrastColor: "{surface.900}", hoverColor: "{primary.300}", activeColor: "{primary.200}" }, highlight: { background: "color-mix(in srgb, {primary.400}, transparent 84%)", focusBackground: "color-mix(in srgb, {primary.400}, transparent 76%)", color: "rgba(255,255,255,.87)", focusColor: "rgba(255,255,255,.87)" }, mask: { background: "rgba(0,0,0,0.6)", color: "{surface.200}" }, formField: { background: "{surface.950}", disabledBackground: "{surface.700}", filledBackground: "{surface.800}", filledHoverBackground: "{surface.800}", filledFocusBackground: "{surface.800}", borderColor: "{surface.600}", hoverBorderColor: "{surface.500}", focusBorderColor: "{primary.color}", invalidBorderColor: "{red.300}", color: "{surface.0}", disabledColor: "{surface.400}", placeholderColor: "{surface.400}", invalidPlaceholderColor: "{red.400}", floatLabelColor: "{surface.400}", floatLabelFocusColor: "{primary.color}", floatLabelActiveColor: "{surface.400}", floatLabelInvalidColor: "{form.field.invalid.placeholder.color}", iconColor: "{surface.400}", shadow: "0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgba(18, 18, 23, 0.05)" }, text: { color: "{surface.0}", hoverColor: "{surface.0}", mutedColor: "{surface.400}", hoverMutedColor: "{surface.300}" }, content: { background: "{surface.900}", hoverBackground: "{surface.800}", borderColor: "{surface.700}", color: "{text.color}", hoverColor: "{text.hover.color}" }, overlay: { select: { background: "{surface.900}", borderColor: "{surface.700}", color: "{text.color}" }, popover: { background: "{surface.900}", borderColor: "{surface.700}", color: "{text.color}" }, modal: { background: "{surface.900}", borderColor: "{surface.700}", color: "{text.color}" } }, list: { option: { focusBackground: "{surface.800}", selectedBackground: "{highlight.background}", selectedFocusBackground: "{highlight.focus.background}", color: "{text.color}", focusColor: "{text.hover.color}", selectedColor: "{highlight.color}", selectedFocusColor: "{highlight.focus.color}", icon: { color: "{surface.500}", focusColor: "{surface.400}" } }, optionGroup: { background: "transparent", color: "{text.muted.color}" } }, navigation: { item: { focusBackground: "{surface.800}", activeBackground: "{surface.800}", color: "{text.color}", focusColor: "{text.hover.color}", activeColor: "{text.hover.color}", icon: { color: "{surface.500}", focusColor: "{surface.400}", activeColor: "{surface.400}" } }, submenuLabel: { background: "transparent", color: "{text.muted.color}" }, submenuIcon: { color: "{surface.500}", focusColor: "{surface.400}", activeColor: "{surface.400}" } } } } }, Kr = { primitive: Gr, semantic: Qr }, Jr = { borderRadius: "{content.border.radius}" }, Zr = { root: Jr }, _r = { padding: "1rem", background: "{content.background}", gap: "0.5rem", transitionDuration: "{transition.duration}" }, oe = { color: "{text.muted.color}", hoverColor: "{text.color}", borderRadius: "{content.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", hoverColor: "{navigation.item.icon.focus.color}" }, focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, re = { color: "{navigation.item.icon.color}" }, ee = { root: _r, item: oe, separator: re }, ae = { borderRadius: "{form.field.border.radius}", roundedBorderRadius: "2rem", gap: "0.5rem", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", iconOnlyWidth: "2.5rem", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}", iconOnlyWidth: "2rem" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}", iconOnlyWidth: "3rem" }, label: { fontWeight: "500" }, raisedShadow: "0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12)", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" }, badgeSize: "1rem", transitionDuration: "{form.field.transition.duration}" }, ne = { light: { root: { primary: { background: "{primary.color}", hoverBackground: "{primary.hover.color}", activeBackground: "{primary.active.color}", borderColor: "{primary.color}", hoverBorderColor: "{primary.hover.color}", activeBorderColor: "{primary.active.color}", color: "{primary.contrast.color}", hoverColor: "{primary.contrast.color}", activeColor: "{primary.contrast.color}", focusRing: { color: "{primary.color}", shadow: "none" } }, secondary: { background: "{surface.100}", hoverBackground: "{surface.200}", activeBackground: "{surface.300}", borderColor: "{surface.100}", hoverBorderColor: "{surface.200}", activeBorderColor: "{surface.300}", color: "{surface.600}", hoverColor: "{surface.700}", activeColor: "{surface.800}", focusRing: { color: "{surface.600}", shadow: "none" } }, info: { background: "{sky.500}", hoverBackground: "{sky.600}", activeBackground: "{sky.700}", borderColor: "{sky.500}", hoverBorderColor: "{sky.600}", activeBorderColor: "{sky.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{sky.500}", shadow: "none" } }, success: { background: "{green.500}", hoverBackground: "{green.600}", activeBackground: "{green.700}", borderColor: "{green.500}", hoverBorderColor: "{green.600}", activeBorderColor: "{green.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{green.500}", shadow: "none" } }, warn: { background: "{orange.500}", hoverBackground: "{orange.600}", activeBackground: "{orange.700}", borderColor: "{orange.500}", hoverBorderColor: "{orange.600}", activeBorderColor: "{orange.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{orange.500}", shadow: "none" } }, help: { background: "{purple.500}", hoverBackground: "{purple.600}", activeBackground: "{purple.700}", borderColor: "{purple.500}", hoverBorderColor: "{purple.600}", activeBorderColor: "{purple.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{purple.500}", shadow: "none" } }, danger: { background: "{red.500}", hoverBackground: "{red.600}", activeBackground: "{red.700}", borderColor: "{red.500}", hoverBorderColor: "{red.600}", activeBorderColor: "{red.700}", color: "#ffffff", hoverColor: "#ffffff", activeColor: "#ffffff", focusRing: { color: "{red.500}", shadow: "none" } }, contrast: { background: "{surface.950}", hoverBackground: "{surface.900}", activeBackground: "{surface.800}", borderColor: "{surface.950}", hoverBorderColor: "{surface.900}", activeBorderColor: "{surface.800}", color: "{surface.0}", hoverColor: "{surface.0}", activeColor: "{surface.0}", focusRing: { color: "{surface.950}", shadow: "none" } } }, outlined: { primary: { hoverBackground: "{primary.50}", activeBackground: "{primary.100}", borderColor: "{primary.200}", color: "{primary.color}" }, secondary: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", borderColor: "{surface.200}", color: "{surface.500}" }, success: { hoverBackground: "{green.50}", activeBackground: "{green.100}", borderColor: "{green.200}", color: "{green.500}" }, info: { hoverBackground: "{sky.50}", activeBackground: "{sky.100}", borderColor: "{sky.200}", color: "{sky.500}" }, warn: { hoverBackground: "{orange.50}", activeBackground: "{orange.100}", borderColor: "{orange.200}", color: "{orange.500}" }, help: { hoverBackground: "{purple.50}", activeBackground: "{purple.100}", borderColor: "{purple.200}", color: "{purple.500}" }, danger: { hoverBackground: "{red.50}", activeBackground: "{red.100}", borderColor: "{red.200}", color: "{red.500}" }, contrast: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", borderColor: "{surface.700}", color: "{surface.950}" }, plain: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", borderColor: "{surface.200}", color: "{surface.700}" } }, text: { primary: { hoverBackground: "{primary.50}", activeBackground: "{primary.100}", color: "{primary.color}" }, secondary: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", color: "{surface.500}" }, success: { hoverBackground: "{green.50}", activeBackground: "{green.100}", color: "{green.500}" }, info: { hoverBackground: "{sky.50}", activeBackground: "{sky.100}", color: "{sky.500}" }, warn: { hoverBackground: "{orange.50}", activeBackground: "{orange.100}", color: "{orange.500}" }, help: { hoverBackground: "{purple.50}", activeBackground: "{purple.100}", color: "{purple.500}" }, danger: { hoverBackground: "{red.50}", activeBackground: "{red.100}", color: "{red.500}" }, contrast: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", color: "{surface.950}" }, plain: { hoverBackground: "{surface.50}", activeBackground: "{surface.100}", color: "{surface.700}" } }, link: { color: "{primary.color}", hoverColor: "{primary.color}", activeColor: "{primary.color}" } }, dark: { root: { primary: { background: "{primary.color}", hoverBackground: "{primary.hover.color}", activeBackground: "{primary.active.color}", borderColor: "{primary.color}", hoverBorderColor: "{primary.hover.color}", activeBorderColor: "{primary.active.color}", color: "{primary.contrast.color}", hoverColor: "{primary.contrast.color}", activeColor: "{primary.contrast.color}", focusRing: { color: "{primary.color}", shadow: "none" } }, secondary: { background: "{surface.800}", hoverBackground: "{surface.700}", activeBackground: "{surface.600}", borderColor: "{surface.800}", hoverBorderColor: "{surface.700}", activeBorderColor: "{surface.600}", color: "{surface.300}", hoverColor: "{surface.200}", activeColor: "{surface.100}", focusRing: { color: "{surface.300}", shadow: "none" } }, info: { background: "{sky.400}", hoverBackground: "{sky.300}", activeBackground: "{sky.200}", borderColor: "{sky.400}", hoverBorderColor: "{sky.300}", activeBorderColor: "{sky.200}", color: "{sky.950}", hoverColor: "{sky.950}", activeColor: "{sky.950}", focusRing: { color: "{sky.400}", shadow: "none" } }, success: { background: "{green.400}", hoverBackground: "{green.300}", activeBackground: "{green.200}", borderColor: "{green.400}", hoverBorderColor: "{green.300}", activeBorderColor: "{green.200}", color: "{green.950}", hoverColor: "{green.950}", activeColor: "{green.950}", focusRing: { color: "{green.400}", shadow: "none" } }, warn: { background: "{orange.400}", hoverBackground: "{orange.300}", activeBackground: "{orange.200}", borderColor: "{orange.400}", hoverBorderColor: "{orange.300}", activeBorderColor: "{orange.200}", color: "{orange.950}", hoverColor: "{orange.950}", activeColor: "{orange.950}", focusRing: { color: "{orange.400}", shadow: "none" } }, help: { background: "{purple.400}", hoverBackground: "{purple.300}", activeBackground: "{purple.200}", borderColor: "{purple.400}", hoverBorderColor: "{purple.300}", activeBorderColor: "{purple.200}", color: "{purple.950}", hoverColor: "{purple.950}", activeColor: "{purple.950}", focusRing: { color: "{purple.400}", shadow: "none" } }, danger: { background: "{red.400}", hoverBackground: "{red.300}", activeBackground: "{red.200}", borderColor: "{red.400}", hoverBorderColor: "{red.300}", activeBorderColor: "{red.200}", color: "{red.950}", hoverColor: "{red.950}", activeColor: "{red.950}", focusRing: { color: "{red.400}", shadow: "none" } }, contrast: { background: "{surface.0}", hoverBackground: "{surface.100}", activeBackground: "{surface.200}", borderColor: "{surface.0}", hoverBorderColor: "{surface.100}", activeBorderColor: "{surface.200}", color: "{surface.950}", hoverColor: "{surface.950}", activeColor: "{surface.950}", focusRing: { color: "{surface.0}", shadow: "none" } } }, outlined: { primary: { hoverBackground: "color-mix(in srgb, {primary.color}, transparent 96%)", activeBackground: "color-mix(in srgb, {primary.color}, transparent 84%)", borderColor: "{primary.700}", color: "{primary.color}" }, secondary: { hoverBackground: "rgba(255,255,255,0.04)", activeBackground: "rgba(255,255,255,0.16)", borderColor: "{surface.700}", color: "{surface.400}" }, success: { hoverBackground: "color-mix(in srgb, {green.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {green.400}, transparent 84%)", borderColor: "{green.700}", color: "{green.400}" }, info: { hoverBackground: "color-mix(in srgb, {sky.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {sky.400}, transparent 84%)", borderColor: "{sky.700}", color: "{sky.400}" }, warn: { hoverBackground: "color-mix(in srgb, {orange.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {orange.400}, transparent 84%)", borderColor: "{orange.700}", color: "{orange.400}" }, help: { hoverBackground: "color-mix(in srgb, {purple.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {purple.400}, transparent 84%)", borderColor: "{purple.700}", color: "{purple.400}" }, danger: { hoverBackground: "color-mix(in srgb, {red.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {red.400}, transparent 84%)", borderColor: "{red.700}", color: "{red.400}" }, contrast: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", borderColor: "{surface.500}", color: "{surface.0}" }, plain: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", borderColor: "{surface.600}", color: "{surface.0}" } }, text: { primary: { hoverBackground: "color-mix(in srgb, {primary.color}, transparent 96%)", activeBackground: "color-mix(in srgb, {primary.color}, transparent 84%)", color: "{primary.color}" }, secondary: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", color: "{surface.400}" }, success: { hoverBackground: "color-mix(in srgb, {green.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {green.400}, transparent 84%)", color: "{green.400}" }, info: { hoverBackground: "color-mix(in srgb, {sky.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {sky.400}, transparent 84%)", color: "{sky.400}" }, warn: { hoverBackground: "color-mix(in srgb, {orange.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {orange.400}, transparent 84%)", color: "{orange.400}" }, help: { hoverBackground: "color-mix(in srgb, {purple.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {purple.400}, transparent 84%)", color: "{purple.400}" }, danger: { hoverBackground: "color-mix(in srgb, {red.400}, transparent 96%)", activeBackground: "color-mix(in srgb, {red.400}, transparent 84%)", color: "{red.400}" }, contrast: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", color: "{surface.0}" }, plain: { hoverBackground: "{surface.800}", activeBackground: "{surface.700}", color: "{surface.0}" } }, link: { color: "{primary.color}", hoverColor: "{primary.color}", activeColor: "{primary.color}" } } }, te = { root: ae, colorScheme: ne }, de = { background: "{content.background}", borderRadius: "{border.radius.xl}", color: "{content.color}", shadow: "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1)" }, le = { padding: "1.25rem", gap: "0.5rem" }, ie = { gap: "0.5rem" }, ce = { fontSize: "1.25rem", fontWeight: "500" }, se = { color: "{text.muted.color}" }, ue = { root: de, body: le, caption: ie, title: ce, subtitle: se }, fe = { transitionDuration: "{transition.duration}" }, ge = { gap: "0.25rem" }, me = { padding: "1rem", gap: "0.5rem" }, pe = { width: "2rem", height: "0.5rem", borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, be = { light: { indicator: { background: "{surface.200}", hoverBackground: "{surface.300}", activeBackground: "{primary.color}" } }, dark: { indicator: { background: "{surface.700}", hoverBackground: "{surface.600}", activeBackground: "{primary.color}" } } }, he = { root: fe, content: ge, indicatorList: me, indicator: pe, colorScheme: be }, ve = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, ke = { width: "2.5rem", color: "{form.field.icon.color}" }, ye = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Ce = { padding: "{list.padding}", gap: "{list.gap}", mobileIndent: "1rem" }, Be = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}", icon: { color: "{list.option.icon.color}", focusColor: "{list.option.icon.focus.color}", size: "0.875rem" } }, xe = { color: "{form.field.icon.color}" }, $e = { root: ve, dropdown: ke, overlay: ye, list: Ce, option: Be, clearIcon: xe }, we = { borderRadius: "{border.radius.sm}", width: "1.25rem", height: "1.25rem", background: "{form.field.background}", checkedBackground: "{primary.color}", checkedHoverBackground: "{primary.hover.color}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.border.color}", checkedBorderColor: "{primary.color}", checkedHoverBorderColor: "{primary.hover.color}", checkedFocusBorderColor: "{primary.color}", checkedDisabledBorderColor: "{form.field.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", shadow: "{form.field.shadow}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { width: "1rem", height: "1rem" }, lg: { width: "1.5rem", height: "1.5rem" } }, Re = { size: "0.875rem", color: "{form.field.color}", checkedColor: "{primary.contrast.color}", checkedHoverColor: "{primary.contrast.color}", disabledColor: "{form.field.disabled.color}", sm: { size: "0.75rem" }, lg: { size: "1rem" } }, ze = { root: we, icon: Re }, Se = { borderRadius: "16px", paddingX: "0.75rem", paddingY: "0.5rem", gap: "0.5rem", transitionDuration: "{transition.duration}" }, De = { width: "2rem", height: "2rem" }, Ve = { size: "1rem" }, We = { size: "1rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" } }, Ie = { light: { root: { background: "{surface.100}", color: "{surface.800}" }, icon: { color: "{surface.800}" }, removeIcon: { color: "{surface.800}" } }, dark: { root: { background: "{surface.800}", color: "{surface.0}" }, icon: { color: "{surface.0}" }, removeIcon: { color: "{surface.0}" } } }, Fe = { root: Se, image: De, icon: Ve, removeIcon: We, colorScheme: Ie }, Me = { transitionDuration: "{transition.duration}" }, Oe = { width: "1.5rem", height: "1.5rem", borderRadius: "{form.field.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ae = { shadow: "{overlay.popover.shadow}", borderRadius: "{overlay.popover.borderRadius}" }, He = { light: { panel: { background: "{surface.800}", borderColor: "{surface.900}" }, handle: { color: "{surface.0}" } }, dark: { panel: { background: "{surface.900}", borderColor: "{surface.700}" }, handle: { color: "{surface.0}" } } }, Te = { root: Me, preview: Oe, panel: Ae, colorScheme: He }, Ne = { size: "2rem", color: "{overlay.modal.color}" }, je = { gap: "1rem" }, Le = { icon: Ne, content: je }, Pe = { background: "{overlay.popover.background}", borderColor: "{overlay.popover.border.color}", color: "{overlay.popover.color}", borderRadius: "{overlay.popover.border.radius}", shadow: "{overlay.popover.shadow}", gutter: "10px", arrowOffset: "1.25rem" }, Ye = { padding: "{overlay.popover.padding}", gap: "1rem" }, Xe = { size: "1.5rem", color: "{overlay.popover.color}" }, qe = { gap: "0.5rem", padding: "0 {overlay.popover.padding} {overlay.popover.padding} {overlay.popover.padding}" }, Ee = { root: Pe, content: Ye, icon: Xe, footer: qe }, Ue = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, Ge = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, Qe = { focusBackground: "{navigation.item.focus.background}", activeBackground: "{navigation.item.active.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", activeColor: "{navigation.item.active.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}", activeColor: "{navigation.item.icon.active.color}" } }, Ke = { mobileIndent: "1rem" }, Je = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, Ze = { borderColor: "{content.border.color}" }, _e = { root: Ue, list: Ge, item: Qe, submenu: Ke, submenuIcon: Je, separator: Ze }, oa = `
|
|
1624
1653
|
li.p-autocomplete-option,
|
|
1625
1654
|
div.p-cascadeselect-option-content,
|
|
1626
1655
|
li.p-listbox-option,
|
|
@@ -1644,24 +1673,24 @@ var gr = { transitionDuration: "{transition.duration}" }, mr = { borderWidth: "0
|
|
|
1644
1673
|
.p-treetable thead.p-treetable-thead>tr>th {
|
|
1645
1674
|
transition: none;
|
|
1646
1675
|
}
|
|
1647
|
-
`,
|
|
1676
|
+
`, ra = { transitionDuration: "{transition.duration}" }, ea = { background: "{content.background}", borderColor: "{datatable.border.color}", color: "{content.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem", sm: { padding: "0.375rem 0.5rem" }, lg: { padding: "1rem 1.25rem" } }, aa = { background: "{content.background}", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", borderColor: "{datatable.border.color}", color: "{content.color}", hoverColor: "{content.hover.color}", selectedColor: "{highlight.color}", gap: "0.5rem", padding: "0.75rem 1rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" }, sm: { padding: "0.375rem 0.5rem" }, lg: { padding: "1rem 1.25rem" } }, na = { fontWeight: "600" }, ta = { background: "{content.background}", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", color: "{content.color}", hoverColor: "{content.hover.color}", selectedColor: "{highlight.color}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" } }, da = { borderColor: "{datatable.border.color}", padding: "0.75rem 1rem", sm: { padding: "0.375rem 0.5rem" }, lg: { padding: "1rem 1.25rem" } }, la = { background: "{content.background}", borderColor: "{datatable.border.color}", color: "{content.color}", padding: "0.75rem 1rem", sm: { padding: "0.375rem 0.5rem" }, lg: { padding: "1rem 1.25rem" } }, ia = { fontWeight: "600" }, ca = { background: "{content.background}", borderColor: "{datatable.border.color}", color: "{content.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem", sm: { padding: "0.375rem 0.5rem" }, lg: { padding: "1rem 1.25rem" } }, sa = { color: "{primary.color}" }, ua = { width: "0.5rem" }, fa = { width: "1px", color: "{primary.color}" }, ga = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", size: "0.875rem" }, ma = { size: "2rem" }, pa = { hoverBackground: "{content.hover.background}", selectedHoverBackground: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}", selectedHoverColor: "{primary.color}", size: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, ba = { inlineGap: "0.5rem", overlaySelect: { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, overlayPopover: { background: "{overlay.popover.background}", borderColor: "{overlay.popover.border.color}", borderRadius: "{overlay.popover.border.radius}", color: "{overlay.popover.color}", shadow: "{overlay.popover.shadow}", padding: "{overlay.popover.padding}", gap: "0.5rem" }, rule: { borderColor: "{content.border.color}" }, constraintList: { padding: "{list.padding}", gap: "{list.gap}" }, constraint: { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", separator: { borderColor: "{content.border.color}" }, padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" } }, ha = { borderColor: "{datatable.border.color}", borderWidth: "0 0 1px 0" }, va = { borderColor: "{datatable.border.color}", borderWidth: "0 0 1px 0" }, ka = { light: { root: { borderColor: "{content.border.color}" }, row: { stripedBackground: "{surface.50}" }, bodyCell: { selectedBorderColor: "{primary.100}" } }, dark: { root: { borderColor: "{surface.800}" }, row: { stripedBackground: "{surface.950}" }, bodyCell: { selectedBorderColor: "{primary.900}" } } }, ya = `
|
|
1648
1677
|
.p-datatable-mask.p-overlay-mask {
|
|
1649
1678
|
--px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3));
|
|
1650
1679
|
}
|
|
1651
|
-
`, ma = { root: Ge, header: Qe, headerCell: Ke, columnTitle: Je, row: Ze, bodyCell: _e, footerCell: oa, columnFooter: ra, footer: ea, dropPoint: aa, columnResizer: na, resizeIndicator: ta, sortIcon: da, loadingIcon: la, rowToggleButton: ia, filter: ca, paginatorTop: sa, paginatorBottom: ua, colorScheme: fa, css: ga }, pa = { borderColor: "transparent", borderWidth: "0", borderRadius: "0", padding: "0" }, ba = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem", borderRadius: "0" }, ha = { background: "{content.background}", color: "{content.color}", borderColor: "transparent", borderWidth: "0", padding: "0", borderRadius: "0" }, va = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "1px 0 0 0", padding: "0.75rem 1rem", borderRadius: "0" }, ka = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, ya = { borderColor: "{content.border.color}", borderWidth: "1px 0 0 0" }, Ca = { root: pa, header: ba, content: ha, footer: va, paginatorTop: ka, paginatorBottom: ya }, Ba = { transitionDuration: "{transition.duration}" }, xa = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.popover.shadow}", padding: "{overlay.popover.padding}" }, $a = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", padding: "0 0 0.5rem 0" }, wa = { gap: "0.5rem", fontWeight: "500" }, Ra = { width: "2.5rem", sm: { width: "2rem" }, lg: { width: "3rem" }, borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, za = { color: "{form.field.icon.color}" }, Sa = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, Da = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, Va = { borderColor: "{content.border.color}", gap: "{overlay.popover.padding}" }, Wa = { margin: "0.5rem 0 0 0" }, Ia = { padding: "0.25rem", fontWeight: "500", color: "{content.color}" }, Fa = { hoverBackground: "{content.hover.background}", selectedBackground: "{primary.color}", rangeSelectedBackground: "{highlight.background}", color: "{content.color}", hoverColor: "{content.hover.color}", selectedColor: "{primary.contrast.color}", rangeSelectedColor: "{highlight.color}", width: "2rem", height: "2rem", borderRadius: "50%", padding: "0.25rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ma = { margin: "0.5rem 0 0 0" }, Oa = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, Aa = { margin: "0.5rem 0 0 0" }, Ha = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, Ta = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}" }, Na = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}", gap: "0.5rem", buttonGap: "0.25rem" }, ja = { light: { dropdown: { background: "{surface.100}", hoverBackground: "{surface.200}", activeBackground: "{surface.300}", color: "{surface.600}", hoverColor: "{surface.700}", activeColor: "{surface.800}" }, today: { background: "{surface.200}", color: "{surface.900}" } }, dark: { dropdown: { background: "{surface.800}", hoverBackground: "{surface.700}", activeBackground: "{surface.600}", color: "{surface.300}", hoverColor: "{surface.200}", activeColor: "{surface.100}" }, today: { background: "{surface.700}", color: "{surface.0}" } } }, La = { root: Ba, panel: xa, header: $a, title: wa, dropdown: Ra, inputIcon: za, selectMonth: Sa, selectYear: Da, group: Va, dayView: Wa, weekDay: Ia, date: Fa, monthView: Ma, month: Oa, yearView: Aa, year: Ha, buttonbar: Ta, timePicker: Na, colorScheme: ja }, Pa = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", borderRadius: "{overlay.modal.border.radius}", shadow: "{overlay.modal.shadow}" }, Ya = { padding: "{overlay.modal.padding}", gap: "0.5rem" }, Xa = { fontSize: "1.25rem", fontWeight: "600" }, qa = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, Ea = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}", gap: "0.5rem" }, Ua = { root: Pa, header: Ya, title: Xa, content: qa, footer: Ea }, Ga = { borderColor: "{content.border.color}" }, Qa = { background: "{content.background}", color: "{text.color}" }, Ka = { margin: "1rem 0", padding: "0 1rem", content: { padding: "0 0.5rem" } }, Ja = { margin: "0 1rem", padding: "0.5rem 0", content: { padding: "0.5rem 0" } }, Za = { root: Ga, content: Qa, horizontal: Ka, vertical: Ja }, _a = { background: "rgba(255, 255, 255, 0.1)", borderColor: "rgba(255, 255, 255, 0.2)", padding: "0.5rem", borderRadius: "{border.radius.xl}" }, on = { borderRadius: "{content.border.radius}", padding: "0.5rem", size: "3rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, rn = { root: _a, item: on }, en = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", shadow: "{overlay.modal.shadow}" }, an = { padding: "{overlay.modal.padding}" }, nn = { fontSize: "1.5rem", fontWeight: "600" }, tn = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, dn = { padding: "{overlay.modal.padding}" }, ln = { root: en, header: an, title: nn, content: tn, footer: dn }, cn = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}" }, sn = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, un = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}", padding: "{list.padding}" }, fn = { focusBackground: "{list.option.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, gn = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, mn = { toolbar: cn, toolbarItem: sn, overlay: un, overlayOption: fn, content: gn }, pn = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", padding: "0 1.125rem 1.125rem 1.125rem", transitionDuration: "{transition.duration}" }, bn = { background: "{content.background}", hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", borderRadius: "{content.border.radius}", borderWidth: "1px", borderColor: "transparent", padding: "0.5rem 0.75rem", gap: "0.5rem", fontWeight: "600", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, hn = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}" }, vn = { padding: "0" }, kn = { root: pn, legend: bn, toggleIcon: hn, content: vn }, yn = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", transitionDuration: "{transition.duration}" }, Cn = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "unset", borderWidth: "0", borderRadius: "0", gap: "0.5rem" }, Bn = { highlightBorderColor: "{primary.color}", padding: "0 1.125rem 1.125rem 1.125rem", gap: "1rem" }, xn = { padding: "1rem", gap: "1rem", borderColor: "{content.border.color}", info: { gap: "0.5rem" } }, $n = { gap: "0.5rem" }, wn = { height: "0.25rem" }, Rn = { gap: "0.5rem" }, zn = { root: yn, header: Cn, content: Bn, file: xn, fileList: $n, progressbar: wn, basic: Rn }, Sn = { color: "{form.field.float.label.color}", focusColor: "{form.field.float.label.focus.color}", activeColor: "{form.field.float.label.active.color}", invalidColor: "{form.field.float.label.invalid.color}", transitionDuration: "0.2s", positionX: "{form.field.padding.x}", positionY: "{form.field.padding.y}", fontWeight: "500", active: { fontSize: "0.75rem", fontWeight: "400" } }, Dn = { active: { top: "-1.25rem" } }, Vn = { input: { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, active: { top: "{form.field.padding.y}" } }, Wn = { borderRadius: "{border.radius.xs}", active: { background: "{form.field.background}", padding: "0 0.125rem" } }, In = { root: Sn, over: Dn, in: Vn, on: Wn }, Fn = { borderWidth: "1px", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", transitionDuration: "{transition.duration}" }, Mn = { background: "rgba(255, 255, 255, 0.1)", hoverBackground: "rgba(255, 255, 255, 0.2)", color: "{surface.100}", hoverColor: "{surface.0}", size: "3rem", gutter: "0.5rem", prev: { borderRadius: "50%" }, next: { borderRadius: "50%" }, focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, On = { size: "1.5rem" }, An = { background: "{content.background}", padding: "1rem 0.25rem" }, Hn = { size: "2rem", borderRadius: "{content.border.radius}", gutter: "0.5rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Tn = { size: "1rem" }, Nn = { background: "rgba(0, 0, 0, 0.5)", color: "{surface.100}", padding: "1rem" }, jn = { gap: "0.5rem", padding: "1rem" }, Ln = { width: "1rem", height: "1rem", activeBackground: "{primary.color}", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Pn = { background: "rgba(0, 0, 0, 0.5)" }, Yn = { background: "rgba(255, 255, 255, 0.4)", hoverBackground: "rgba(255, 255, 255, 0.6)", activeBackground: "rgba(255, 255, 255, 0.9)" }, Xn = { size: "3rem", gutter: "0.5rem", background: "rgba(255, 255, 255, 0.1)", hoverBackground: "rgba(255, 255, 255, 0.2)", color: "{surface.50}", hoverColor: "{surface.0}", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, qn = { size: "1.5rem" }, En = { light: { thumbnailNavButton: { hoverBackground: "{surface.100}", color: "{surface.600}", hoverColor: "{surface.700}" }, indicatorButton: { background: "{surface.200}", hoverBackground: "{surface.300}" } }, dark: { thumbnailNavButton: { hoverBackground: "{surface.700}", color: "{surface.400}", hoverColor: "{surface.0}" }, indicatorButton: { background: "{surface.700}", hoverBackground: "{surface.600}" } } }, Un = { root: Fn, navButton: Mn, navIcon: On, thumbnailsContent: An, thumbnailNavButton: Hn, thumbnailNavButtonIcon: Tn, caption: Nn, indicatorList: jn, indicatorButton: Ln, insetIndicatorList: Pn, insetIndicatorButton: Yn, closeButton: Xn, closeButtonIcon: qn, colorScheme: En }, Gn = { color: "{form.field.icon.color}" }, Qn = { icon: Gn }, Kn = { color: "{form.field.float.label.color}", focusColor: "{form.field.float.label.focus.color}", invalidColor: "{form.field.float.label.invalid.color}", transitionDuration: "0.2s", positionX: "{form.field.padding.x}", top: "{form.field.padding.y}", fontSize: "0.75rem", fontWeight: "400" }, Jn = { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, Zn = { root: Kn, input: Jn }, _n = { transitionDuration: "{transition.duration}" }, ot = { icon: { size: "1.5rem" }, mask: { background: "{mask.background}", color: "{mask.color}" } }, rt = { position: { left: "auto", right: "1rem", top: "1rem", bottom: "auto" }, blur: "8px", background: "rgba(255,255,255,0.1)", borderColor: "rgba(255,255,255,0.2)", borderWidth: "1px", borderRadius: "30px", padding: ".5rem", gap: "0.5rem" }, et = { hoverBackground: "rgba(255,255,255,0.1)", color: "{surface.50}", hoverColor: "{surface.0}", size: "3rem", iconSize: "1.5rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, at = { root: _n, preview: ot, toolbar: rt, action: et }, nt = { size: "15px", hoverSize: "30px", background: "rgba(255,255,255,0.3)", hoverBackground: "rgba(255,255,255,0.3)", borderColor: "unset", hoverBorderColor: "unset", borderWidth: "0", borderRadius: "50%", transitionDuration: "{transition.duration}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "rgba(255,255,255,0.3)", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, tt = { handle: nt }, dt = { padding: "{form.field.padding.y} {form.field.padding.x}", borderRadius: "{content.border.radius}", gap: "0.5rem" }, lt = { fontWeight: "500" }, it = { size: "1rem" }, ct = { light: { info: { background: "color-mix(in srgb, {blue.50}, transparent 5%)", borderColor: "{blue.200}", color: "{blue.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)" }, success: { background: "color-mix(in srgb, {green.50}, transparent 5%)", borderColor: "{green.200}", color: "{green.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)" }, warn: { background: "color-mix(in srgb,{yellow.50}, transparent 5%)", borderColor: "{yellow.200}", color: "{yellow.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)" }, error: { background: "color-mix(in srgb, {red.50}, transparent 5%)", borderColor: "{red.200}", color: "{red.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)" }, secondary: { background: "{surface.100}", borderColor: "{surface.200}", color: "{surface.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)" }, contrast: { background: "{surface.900}", borderColor: "{surface.950}", color: "{surface.50}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)" } }, dark: { info: { background: "color-mix(in srgb, {blue.500}, transparent 84%)", borderColor: "color-mix(in srgb, {blue.700}, transparent 64%)", color: "{blue.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)" }, success: { background: "color-mix(in srgb, {green.500}, transparent 84%)", borderColor: "color-mix(in srgb, {green.700}, transparent 64%)", color: "{green.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)" }, warn: { background: "color-mix(in srgb, {yellow.500}, transparent 84%)", borderColor: "color-mix(in srgb, {yellow.700}, transparent 64%)", color: "{yellow.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)" }, error: { background: "color-mix(in srgb, {red.500}, transparent 84%)", borderColor: "color-mix(in srgb, {red.700}, transparent 64%)", color: "{red.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)" }, secondary: { background: "{surface.800}", borderColor: "{surface.700}", color: "{surface.300}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)" }, contrast: { background: "{surface.0}", borderColor: "{surface.100}", color: "{surface.950}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)" } } }, st = { root: dt, text: lt, icon: it, colorScheme: ct }, ut = { padding: "{form.field.padding.y} {form.field.padding.x}", borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, transitionDuration: "{transition.duration}" }, ft = { hoverBackground: "{content.hover.background}", hoverColor: "{content.hover.color}" }, gt = { root: ut, display: ft }, mt = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}" }, pt = { borderRadius: "{border.radius.sm}" }, bt = { light: { chip: { focusBackground: "{surface.200}", color: "{surface.800}" } }, dark: { chip: { focusBackground: "{surface.700}", color: "{surface.0}" } } }, ht = { root: mt, chip: pt, colorScheme: bt }, vt = { background: "{form.field.background}", borderColor: "{form.field.border.color}", color: "{form.field.icon.color}", borderRadius: "{form.field.border.radius}", padding: "0.5rem", minWidth: "2.5rem" }, kt = { addon: vt }, yt = { transitionDuration: "{transition.duration}" }, Ct = { width: "2.5rem", borderRadius: "{form.field.border.radius}", verticalPadding: "{form.field.padding.y}" }, Bt = { light: { button: { background: "transparent", hoverBackground: "{surface.100}", activeBackground: "{surface.200}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", color: "{surface.400}", hoverColor: "{surface.500}", activeColor: "{surface.600}" } }, dark: { button: { background: "transparent", hoverBackground: "{surface.800}", activeBackground: "{surface.700}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", color: "{surface.400}", hoverColor: "{surface.300}", activeColor: "{surface.200}" } } }, xt = { root: yt, button: Ct, colorScheme: Bt }, $t = { gap: "0.5rem" }, wt = { width: "2.5rem", sm: { width: "2rem" }, lg: { width: "3rem" } }, Rt = { root: $t, input: wt }, zt = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, St = { root: zt }, Dt = { transitionDuration: "{transition.duration}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Vt = { background: "{primary.color}" }, Wt = { background: "{content.border.color}" }, It = { color: "{text.muted.color}" }, Ft = { root: Dt, value: Vt, range: Wt, text: It }, Mt = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", borderColor: "{form.field.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", shadow: "{form.field.shadow}", borderRadius: "{form.field.border.radius}", transitionDuration: "{form.field.transition.duration}" }, Ot = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, At = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, Ht = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, Tt = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, Nt = { padding: "{list.option.padding}" }, jt = { light: { option: { stripedBackground: "{surface.50}" } }, dark: { option: { stripedBackground: "{surface.900}" } } }, Lt = { root: Mt, list: Ot, option: At, optionGroup: Ht, checkmark: Tt, emptyMessage: Nt, colorScheme: jt }, Pt = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", gap: "0.5rem", verticalOrientation: { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, horizontalOrientation: { padding: "0.5rem 0.75rem", gap: "0.5rem" }, transitionDuration: "{transition.duration}" }, Yt = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, Xt = { focusBackground: "{navigation.item.focus.background}", activeBackground: "{navigation.item.active.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", activeColor: "{navigation.item.active.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}", activeColor: "{navigation.item.icon.active.color}" } }, qt = { padding: "0", background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", shadow: "{overlay.navigation.shadow}", gap: "0.5rem" }, Et = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, Ut = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, Gt = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, Qt = { borderColor: "{content.border.color}" }, Kt = { borderRadius: "50%", size: "1.75rem", color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", hoverBackground: "{content.hover.background}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Jt = { root: Pt, baseItem: Yt, item: Xt, overlay: qt, submenu: Et, submenuLabel: Ut, submenuIcon: Gt, separator: Qt, mobileButton: Kt }, Zt = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, _t = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, od = { focusBackground: "{navigation.item.focus.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}" } }, rd = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, ed = { borderColor: "{content.border.color}" }, ad = { root: Zt, list: _t, item: od, submenuLabel: rd, separator: ed }, nd = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", gap: "0.5rem", padding: "0.5rem 0.75rem", transitionDuration: "{transition.duration}" }, td = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, dd = { focusBackground: "{navigation.item.focus.background}", activeBackground: "{navigation.item.active.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", activeColor: "{navigation.item.active.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}", activeColor: "{navigation.item.icon.active.color}" } }, ld = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}", background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", mobileIndent: "1rem", icon: { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" } }, id = { borderColor: "{content.border.color}" }, cd = { borderRadius: "50%", size: "1.75rem", color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", hoverBackground: "{content.hover.background}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, sd = { root: nd, baseItem: td, item: dd, submenu: ld, separator: id, mobileButton: cd }, ud = { borderRadius: "{content.border.radius}", borderWidth: "1px", transitionDuration: "{transition.duration}" }, fd = { padding: "0.5rem 0.75rem", gap: "0.5rem", sm: { padding: "0.375rem 0.625rem" }, lg: { padding: "0.625rem 0.875rem" } }, gd = { fontSize: "1rem", fontWeight: "500", sm: { fontSize: "0.875rem" }, lg: { fontSize: "1.125rem" } }, md = { size: "1.125rem", sm: { size: "1rem" }, lg: { size: "1.25rem" } }, pd = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, bd = { size: "1rem", sm: { size: "0.875rem" }, lg: { size: "1.125rem" } }, hd = { root: { borderWidth: "1px" } }, vd = { content: { padding: "0" } }, kd = { light: { info: { background: "color-mix(in srgb, {blue.50}, transparent 5%)", borderColor: "{blue.200}", color: "{blue.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)", closeButton: { hoverBackground: "{blue.100}", focusRing: { color: "{blue.600}", shadow: "none" } }, outlined: { color: "{blue.600}", borderColor: "{blue.600}" }, simple: { color: "{blue.600}" } }, success: { background: "color-mix(in srgb, {green.50}, transparent 5%)", borderColor: "{green.200}", color: "{green.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)", closeButton: { hoverBackground: "{green.100}", focusRing: { color: "{green.600}", shadow: "none" } }, outlined: { color: "{green.600}", borderColor: "{green.600}" }, simple: { color: "{green.600}" } }, warn: { background: "color-mix(in srgb,{yellow.50}, transparent 5%)", borderColor: "{yellow.200}", color: "{yellow.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)", closeButton: { hoverBackground: "{yellow.100}", focusRing: { color: "{yellow.600}", shadow: "none" } }, outlined: { color: "{yellow.600}", borderColor: "{yellow.600}" }, simple: { color: "{yellow.600}" } }, error: { background: "color-mix(in srgb, {red.50}, transparent 5%)", borderColor: "{red.200}", color: "{red.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)", closeButton: { hoverBackground: "{red.100}", focusRing: { color: "{red.600}", shadow: "none" } }, outlined: { color: "{red.600}", borderColor: "{red.600}" }, simple: { color: "{red.600}" } }, secondary: { background: "{surface.100}", borderColor: "{surface.200}", color: "{surface.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)", closeButton: { hoverBackground: "{surface.200}", focusRing: { color: "{surface.600}", shadow: "none" } }, outlined: { color: "{surface.500}", borderColor: "{surface.500}" }, simple: { color: "{surface.500}" } }, contrast: { background: "{surface.900}", borderColor: "{surface.950}", color: "{surface.50}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)", closeButton: { hoverBackground: "{surface.800}", focusRing: { color: "{surface.50}", shadow: "none" } }, outlined: { color: "{surface.950}", borderColor: "{surface.950}" }, simple: { color: "{surface.950}" } } }, dark: { info: { background: "color-mix(in srgb, {blue.500}, transparent 84%)", borderColor: "color-mix(in srgb, {blue.700}, transparent 64%)", color: "{blue.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{blue.500}", shadow: "none" } }, outlined: { color: "{blue.500}", borderColor: "{blue.500}" }, simple: { color: "{blue.500}" } }, success: { background: "color-mix(in srgb, {green.500}, transparent 84%)", borderColor: "color-mix(in srgb, {green.700}, transparent 64%)", color: "{green.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{green.500}", shadow: "none" } }, outlined: { color: "{green.500}", borderColor: "{green.500}" }, simple: { color: "{green.500}" } }, warn: { background: "color-mix(in srgb, {yellow.500}, transparent 84%)", borderColor: "color-mix(in srgb, {yellow.700}, transparent 64%)", color: "{yellow.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{yellow.500}", shadow: "none" } }, outlined: { color: "{yellow.500}", borderColor: "{yellow.500}" }, simple: { color: "{yellow.500}" } }, error: { background: "color-mix(in srgb, {red.500}, transparent 84%)", borderColor: "color-mix(in srgb, {red.700}, transparent 64%)", color: "{red.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{red.500}", shadow: "none" } }, outlined: { color: "{red.500}", borderColor: "{red.500}" }, simple: { color: "{red.500}" } }, secondary: { background: "{surface.800}", borderColor: "{surface.700}", color: "{surface.300}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)", closeButton: { hoverBackground: "{surface.700}", focusRing: { color: "{surface.300}", shadow: "none" } }, outlined: { color: "{surface.400}", borderColor: "{surface.400}" }, simple: { color: "{surface.400}" } }, contrast: { background: "{surface.0}", borderColor: "{surface.100}", color: "{surface.950}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)", closeButton: { hoverBackground: "{surface.100}", focusRing: { color: "{surface.950}", shadow: "none" } }, outlined: { color: "{surface.0}", borderColor: "{surface.0}" }, simple: { color: "{surface.0}" } } } }, yd = { root: ud, content: fd, text: gd, icon: md, closeButton: pd, closeIcon: bd, outlined: hd, simple: vd, colorScheme: kd }, Cd = { borderRadius: "{content.border.radius}", gap: "1rem" }, Bd = { background: "{content.border.color}", size: "0.5rem" }, xd = { gap: "0.5rem" }, $d = { size: "0.5rem" }, wd = { size: "1rem" }, Rd = { verticalGap: "0.5rem", horizontalGap: "1rem" }, zd = { root: Cd, meters: Bd, label: xd, labelMarker: $d, labelIcon: wd, labelList: Rd }, Sd = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, Dd = { width: "2.5rem", color: "{form.field.icon.color}" }, Vd = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Wd = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Id = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}", gap: "0.5rem" }, Fd = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, Md = { color: "{form.field.icon.color}" }, Od = { borderRadius: "{border.radius.sm}" }, Ad = { padding: "{list.option.padding}" }, Hd = { root: Sd, dropdown: Dd, overlay: Vd, list: Wd, option: Id, optionGroup: Fd, chip: Od, clearIcon: Md, emptyMessage: Ad }, Td = { gap: "1.125rem" }, Nd = { gap: "0.5rem" }, jd = { root: Td, controls: Nd }, Ld = { gutter: "0.75rem", transitionDuration: "{transition.duration}" }, Pd = { background: "{content.background}", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", borderColor: "{content.border.color}", color: "{content.color}", selectedColor: "{highlight.color}", hoverColor: "{content.hover.color}", padding: "0.75rem 1rem", toggleablePadding: "0.75rem 1rem 1.25rem 1rem", borderRadius: "{content.border.radius}" }, Yd = { background: "{content.background}", hoverBackground: "{content.hover.background}", borderColor: "{content.border.color}", color: "{text.muted.color}", hoverColor: "{text.color}", size: "1.5rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Xd = { color: "{content.border.color}", borderRadius: "{content.border.radius}", height: "24px" }, qd = { root: Ld, node: Pd, nodeToggleButton: Yd, connector: Xd }, Ed = { outline: { width: "2px", color: "{content.background}" } }, Ud = { root: Ed }, Gd = { padding: "0.5rem 1rem", gap: "0.25rem", borderRadius: "{content.border.radius}", background: "{content.background}", color: "{content.color}", transitionDuration: "{transition.duration}" }, Qd = { background: "transparent", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", selectedColor: "{highlight.color}", width: "2.5rem", height: "2.5rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Kd = { color: "{text.muted.color}" }, Jd = { maxWidth: "2.5rem" }, Zd = { root: Gd, navButton: Qd, currentPageReport: Kd, jumpToPageInput: Jd }, _d = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, ol = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "{content.border.color}", borderWidth: "0", borderRadius: "0" }, rl = { padding: "0.375rem 1.125rem" }, el = { fontWeight: "600" }, al = { padding: "0 1.125rem 1.125rem 1.125rem" }, nl = { padding: "0 1.125rem 1.125rem 1.125rem" }, tl = { root: _d, header: ol, toggleableHeader: rl, title: el, content: al, footer: nl }, dl = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, ll = { background: "{content.background}", borderColor: "{content.border.color}", borderWidth: "1px", color: "{content.color}", padding: "0.25rem 0.25rem", borderRadius: "{content.border.radius}", first: { borderWidth: "1px", topBorderRadius: "{content.border.radius}" }, last: { borderWidth: "1px", bottomBorderRadius: "{content.border.radius}" } }, il = { focusBackground: "{navigation.item.focus.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", gap: "0.5rem", padding: "{navigation.item.padding}", borderRadius: "{content.border.radius}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}" } }, cl = { indent: "1rem" }, sl = { color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}" }, ul = { root: dl, panel: ll, item: il, submenu: cl, submenuIcon: sl }, fl = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: ".75rem" }, gl = { color: "{form.field.icon.color}" }, ml = { background: "{overlay.popover.background}", borderColor: "{overlay.popover.border.color}", borderRadius: "{overlay.popover.border.radius}", color: "{overlay.popover.color}", padding: "{overlay.popover.padding}", shadow: "{overlay.popover.shadow}" }, pl = { gap: "0.5rem" }, bl = { light: { strength: { weakBackground: "{red.500}", mediumBackground: "{amber.500}", strongBackground: "{green.500}" } }, dark: { strength: { weakBackground: "{red.400}", mediumBackground: "{amber.400}", strongBackground: "{green.400}" } } }, hl = { meter: fl, icon: gl, overlay: ml, content: pl, colorScheme: bl }, vl = { gap: "1.125rem" }, kl = { gap: "0.5rem" }, yl = { root: vl, controls: kl }, Cl = { background: "{overlay.popover.background}", borderColor: "{overlay.popover.border.color}", color: "{overlay.popover.color}", borderRadius: "{overlay.popover.border.radius}", shadow: "{overlay.popover.shadow}", gutter: "10px", arrowOffset: "1.25rem" }, Bl = { padding: "{overlay.popover.padding}" }, xl = { root: Cl, content: Bl }, $l = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: "1.25rem" }, wl = { background: "{primary.color}" }, Rl = { color: "{primary.contrast.color}", fontSize: "0.75rem", fontWeight: "600" }, zl = { root: $l, value: wl, label: Rl }, Sl = { light: { root: { colorOne: "{red.500}", colorTwo: "{blue.500}", colorThree: "{green.500}", colorFour: "{yellow.500}" } }, dark: { root: { colorOne: "{red.400}", colorTwo: "{blue.400}", colorThree: "{green.400}", colorFour: "{yellow.400}" } } }, Dl = { colorScheme: Sl }, Vl = { width: "1.25rem", height: "1.25rem", background: "{form.field.background}", checkedBackground: "{primary.color}", checkedHoverBackground: "{primary.hover.color}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.border.color}", checkedBorderColor: "{primary.color}", checkedHoverBorderColor: "{primary.hover.color}", checkedFocusBorderColor: "{primary.color}", checkedDisabledBorderColor: "{form.field.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", shadow: "{form.field.shadow}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { width: "1rem", height: "1rem" }, lg: { width: "1.5rem", height: "1.5rem" } }, Wl = { size: "0.75rem", checkedColor: "{primary.contrast.color}", checkedHoverColor: "{primary.contrast.color}", disabledColor: "{form.field.disabled.color}", sm: { size: "0.5rem" }, lg: { size: "1rem" } }, Il = { root: Vl, icon: Wl }, Fl = { gap: "0.25rem", transitionDuration: "{transition.duration}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ml = { size: "1rem", color: "{text.muted.color}", hoverColor: "{primary.color}", activeColor: "{primary.color}" }, Ol = { root: Fl, icon: Ml }, Al = { light: { root: { background: "rgba(0,0,0,0.1)" } }, dark: { root: { background: "rgba(255,255,255,0.3)" } } }, Hl = { colorScheme: Al }, Tl = { transitionDuration: "{transition.duration}" }, Nl = { size: "9px", borderRadius: "{border.radius.sm}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, jl = { light: { bar: { background: "{surface.100}" } }, dark: { bar: { background: "{surface.800}" } } }, Ll = { root: Tl, bar: Nl, colorScheme: jl }, Pl = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, Yl = { width: "2.5rem", color: "{form.field.icon.color}" }, Xl = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, ql = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, El = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, Ul = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, Gl = { color: "{form.field.icon.color}" }, Ql = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, Kl = { padding: "{list.option.padding}" }, Jl = { root: Pl, dropdown: Yl, overlay: Xl, list: ql, option: El, optionGroup: Ul, clearIcon: Gl, checkmark: Ql, emptyMessage: Kl }, Zl = { borderRadius: "{form.field.border.radius}" }, _l = { light: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } }, dark: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } } }, oi = { root: Zl, colorScheme: _l }, ri = { borderRadius: "{content.border.radius}" }, ei = { light: { root: { background: "{surface.200}", animationBackground: "rgba(255,255,255,0.4)" } }, dark: { root: { background: "rgba(255, 255, 255, 0.06)", animationBackground: "rgba(255, 255, 255, 0.04)" } } }, ai = { root: ri, colorScheme: ei }, ni = { transitionDuration: "{transition.duration}" }, ti = { background: "{content.border.color}", borderRadius: "{content.border.radius}", size: "3px" }, di = { background: "{primary.color}" }, li = { width: "20px", height: "20px", borderRadius: "50%", background: "{content.border.color}", hoverBackground: "{content.border.color}", content: { borderRadius: "50%", hoverBackground: "{content.background}", width: "16px", height: "16px", shadow: "0px 0.5px 0px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.14)" }, focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, ii = { light: { handle: { content: { background: "{surface.0}" } } }, dark: { handle: { content: { background: "{surface.950}" } } } }, ci = { root: ni, track: ti, range: di, handle: li, colorScheme: ii }, si = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, ui = { root: si }, fi = { borderRadius: "{form.field.border.radius}", roundedBorderRadius: "2rem", raisedShadow: "0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12)" }, gi = { root: fi }, mi = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", transitionDuration: "{transition.duration}" }, pi = { background: "{content.border.color}" }, bi = { size: "24px", background: "transparent", borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, hi = { root: mi, gutter: pi, handle: bi }, vi = { transitionDuration: "{transition.duration}" }, ki = { background: "{content.border.color}", activeBackground: "{primary.color}", margin: "0 0 0 1.625rem", size: "2px" }, yi = { padding: "0.5rem", gap: "1rem" }, Ci = { padding: "0", borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, gap: "0.5rem" }, Bi = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, xi = { background: "{content.background}", activeBackground: "{content.background}", borderColor: "{content.border.color}", activeBorderColor: "{content.border.color}", color: "{text.muted.color}", activeColor: "{primary.color}", size: "2rem", fontSize: "1.143rem", fontWeight: "500", borderRadius: "50%", shadow: "0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)" }, $i = { padding: "0.875rem 0.5rem 1.125rem 0.5rem" }, wi = { background: "{content.background}", color: "{content.color}", padding: "0", indent: "1rem" }, Ri = { root: vi, separator: ki, step: yi, stepHeader: Ci, stepTitle: Bi, stepNumber: xi, steppanels: $i, steppanel: wi }, zi = { transitionDuration: "{transition.duration}" }, Si = { background: "{content.border.color}" }, Di = { borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, gap: "0.5rem" }, Vi = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, Wi = { background: "{content.background}", activeBackground: "{content.background}", borderColor: "{content.border.color}", activeBorderColor: "{content.border.color}", color: "{text.muted.color}", activeColor: "{primary.color}", size: "2rem", fontSize: "1.143rem", fontWeight: "500", borderRadius: "50%", shadow: "0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)" }, Ii = { root: zi, separator: Si, itemLink: Di, itemLabel: Vi, itemNumber: Wi }, Fi = { transitionDuration: "{transition.duration}" }, Mi = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, Oi = { background: "transparent", hoverBackground: "transparent", activeBackground: "transparent", borderWidth: "0 0 1px 0", borderColor: "{content.border.color}", hoverBorderColor: "{content.border.color}", activeBorderColor: "{primary.color}", color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}", padding: "1rem 1.125rem", fontWeight: "600", margin: "0 0 -1px 0", gap: "0.5rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ai = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, Hi = { height: "1px", bottom: "-1px", background: "{primary.color}" }, Ti = { root: Fi, tablist: Mi, item: Oi, itemIcon: Ai, activeBar: Hi }, Ni = { transitionDuration: "{transition.duration}" }, ji = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, Li = { background: "transparent", hoverBackground: "transparent", activeBackground: "transparent", borderWidth: "0 0 1px 0", borderColor: "{content.border.color}", hoverBorderColor: "{content.border.color}", activeBorderColor: "{primary.color}", color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}", padding: "1rem 1.125rem", fontWeight: "600", margin: "0 0 -1px 0", gap: "0.5rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" } }, Pi = { background: "{content.background}", color: "{content.color}", padding: "0.875rem 1.125rem 1.125rem 1.125rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "inset {focus.ring.shadow}" } }, Yi = { background: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}", width: "2.5rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" } }, Xi = { height: "1px", bottom: "-1px", background: "{primary.color}" }, qi = { light: { navButton: { shadow: "0px 0px 10px 50px rgba(255, 255, 255, 0.6)" } }, dark: { navButton: { shadow: "0px 0px 10px 50px color-mix(in srgb, {content.background}, transparent 50%)" } } }, Ei = { root: Ni, tablist: ji, tab: Li, tabpanel: Pi, navButton: Yi, activeBar: Xi, colorScheme: qi }, Ui = { transitionDuration: "{transition.duration}" }, Gi = { background: "{content.background}", borderColor: "{content.border.color}" }, Qi = { borderColor: "{content.border.color}", activeBorderColor: "{primary.color}", color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, Ki = { background: "{content.background}", color: "{content.color}" }, Ji = { background: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}" }, Zi = { light: { navButton: { shadow: "0px 0px 10px 50px rgba(255, 255, 255, 0.6)" } }, dark: { navButton: { shadow: "0px 0px 10px 50px color-mix(in srgb, {content.background}, transparent 50%)" } } }, _i = { root: Ui, tabList: Gi, tab: Qi, tabPanel: Ki, navButton: Ji, colorScheme: Zi }, oc = { fontSize: "0.875rem", fontWeight: "700", padding: "0.25rem 0.5rem", gap: "0.25rem", borderRadius: "{content.border.radius}", roundedBorderRadius: "{border.radius.xl}" }, rc = { size: "0.75rem" }, ec = { light: { primary: { background: "{primary.100}", color: "{primary.700}" }, secondary: { background: "{surface.100}", color: "{surface.600}" }, success: { background: "{green.100}", color: "{green.700}" }, info: { background: "{sky.100}", color: "{sky.700}" }, warn: { background: "{orange.100}", color: "{orange.700}" }, danger: { background: "{red.100}", color: "{red.700}" }, contrast: { background: "{surface.950}", color: "{surface.0}" } }, dark: { primary: { background: "color-mix(in srgb, {primary.500}, transparent 84%)", color: "{primary.300}" }, secondary: { background: "{surface.800}", color: "{surface.300}" }, success: { background: "color-mix(in srgb, {green.500}, transparent 84%)", color: "{green.300}" }, info: { background: "color-mix(in srgb, {sky.500}, transparent 84%)", color: "{sky.300}" }, warn: { background: "color-mix(in srgb, {orange.500}, transparent 84%)", color: "{orange.300}" }, danger: { background: "color-mix(in srgb, {red.500}, transparent 84%)", color: "{red.300}" }, contrast: { background: "{surface.0}", color: "{surface.950}" } } }, ac = { root: oc, icon: rc, colorScheme: ec }, nc = { background: "{form.field.background}", borderColor: "{form.field.border.color}", color: "{form.field.color}", height: "18rem", padding: "{form.field.padding.y} {form.field.padding.x}", borderRadius: "{form.field.border.radius}" }, tc = { gap: "0.25rem" }, dc = { margin: "2px 0" }, lc = { root: nc, prompt: tc, commandResponse: dc }, ic = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, cc = { root: ic }, sc = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, uc = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, fc = { focusBackground: "{navigation.item.focus.background}", activeBackground: "{navigation.item.active.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", activeColor: "{navigation.item.active.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}", activeColor: "{navigation.item.icon.active.color}" } }, gc = { mobileIndent: "1rem" }, mc = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, pc = { borderColor: "{content.border.color}" }, bc = { root: sc, list: uc, item: fc, submenu: gc, submenuIcon: mc, separator: pc }, hc = { minHeight: "5rem" }, vc = { eventContent: { padding: "1rem 0" } }, kc = { eventContent: { padding: "0 1rem" } }, yc = { size: "1.125rem", borderRadius: "50%", borderWidth: "2px", background: "{content.background}", borderColor: "{content.border.color}", content: { borderRadius: "50%", size: "0.375rem", background: "{primary.color}", insetShadow: "0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)" } }, Cc = { color: "{content.border.color}", size: "2px" }, Bc = { event: hc, horizontal: vc, vertical: kc, eventMarker: yc, eventConnector: Cc }, xc = { width: "25rem", borderRadius: "{content.border.radius}", borderWidth: "1px", transitionDuration: "{transition.duration}" }, $c = { size: "1.125rem" }, wc = { padding: "{overlay.popover.padding}", gap: "0.5rem" }, Rc = { gap: "0.5rem" }, zc = { fontWeight: "500", fontSize: "1rem" }, Sc = { fontWeight: "500", fontSize: "0.875rem" }, Dc = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, Vc = { size: "1rem" }, Wc = { light: { root: { blur: "1.5px" }, info: { background: "color-mix(in srgb, {blue.50}, transparent 5%)", borderColor: "{blue.200}", color: "{blue.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)", closeButton: { hoverBackground: "{blue.100}", focusRing: { color: "{blue.600}", shadow: "none" } } }, success: { background: "color-mix(in srgb, {green.50}, transparent 5%)", borderColor: "{green.200}", color: "{green.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)", closeButton: { hoverBackground: "{green.100}", focusRing: { color: "{green.600}", shadow: "none" } } }, warn: { background: "color-mix(in srgb,{yellow.50}, transparent 5%)", borderColor: "{yellow.200}", color: "{yellow.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)", closeButton: { hoverBackground: "{yellow.100}", focusRing: { color: "{yellow.600}", shadow: "none" } } }, error: { background: "color-mix(in srgb, {red.50}, transparent 5%)", borderColor: "{red.200}", color: "{red.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)", closeButton: { hoverBackground: "{red.100}", focusRing: { color: "{red.600}", shadow: "none" } } }, secondary: { background: "{surface.100}", borderColor: "{surface.200}", color: "{surface.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)", closeButton: { hoverBackground: "{surface.200}", focusRing: { color: "{surface.600}", shadow: "none" } } }, contrast: { background: "{surface.900}", borderColor: "{surface.950}", color: "{surface.50}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)", closeButton: { hoverBackground: "{surface.800}", focusRing: { color: "{surface.50}", shadow: "none" } } } }, dark: { root: { blur: "10px" }, info: { background: "color-mix(in srgb, {blue.500}, transparent 84%)", borderColor: "color-mix(in srgb, {blue.700}, transparent 64%)", color: "{blue.500}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{blue.500}", shadow: "none" } } }, success: { background: "color-mix(in srgb, {green.500}, transparent 84%)", borderColor: "color-mix(in srgb, {green.700}, transparent 64%)", color: "{green.500}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{green.500}", shadow: "none" } } }, warn: { background: "color-mix(in srgb, {yellow.500}, transparent 84%)", borderColor: "color-mix(in srgb, {yellow.700}, transparent 64%)", color: "{yellow.500}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{yellow.500}", shadow: "none" } } }, error: { background: "color-mix(in srgb, {red.500}, transparent 84%)", borderColor: "color-mix(in srgb, {red.700}, transparent 64%)", color: "{red.500}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{red.500}", shadow: "none" } } }, secondary: { background: "{surface.800}", borderColor: "{surface.700}", color: "{surface.300}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)", closeButton: { hoverBackground: "{surface.700}", focusRing: { color: "{surface.300}", shadow: "none" } } }, contrast: { background: "{surface.0}", borderColor: "{surface.100}", color: "{surface.950}", detailColor: "{surface.950}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)", closeButton: { hoverBackground: "{surface.100}", focusRing: { color: "{surface.950}", shadow: "none" } } } } }, Ic = { root: xc, icon: $c, content: wc, text: Rc, summary: zc, detail: Sc, closeButton: Dc, closeIcon: Vc, colorScheme: Wc }, Fc = { padding: "0.25rem", borderRadius: "{content.border.radius}", gap: "0.5rem", fontWeight: "500", disabledBackground: "{form.field.disabled.background}", disabledBorderColor: "{form.field.disabled.background}", disabledColor: "{form.field.disabled.color}", invalidBorderColor: "{form.field.invalid.border.color}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", padding: "0.25rem" }, lg: { fontSize: "{form.field.lg.font.size}", padding: "0.25rem" } }, Mc = { disabledColor: "{form.field.disabled.color}" }, Oc = { padding: "0.25rem 0.75rem", borderRadius: "{content.border.radius}", checkedShadow: "0px 1px 2px 0px rgba(0, 0, 0, 0.02), 0px 1px 2px 0px rgba(0, 0, 0, 0.04)", sm: { padding: "0.25rem 0.75rem" }, lg: { padding: "0.25rem 0.75rem" } }, Ac = { light: { root: { background: "{surface.100}", checkedBackground: "{surface.100}", hoverBackground: "{surface.100}", borderColor: "{surface.100}", color: "{surface.500}", hoverColor: "{surface.700}", checkedColor: "{surface.900}", checkedBorderColor: "{surface.100}" }, content: { checkedBackground: "{surface.0}" }, icon: { color: "{surface.500}", hoverColor: "{surface.700}", checkedColor: "{surface.900}" } }, dark: { root: { background: "{surface.950}", checkedBackground: "{surface.950}", hoverBackground: "{surface.950}", borderColor: "{surface.950}", color: "{surface.400}", hoverColor: "{surface.300}", checkedColor: "{surface.0}", checkedBorderColor: "{surface.950}" }, content: { checkedBackground: "{surface.800}" }, icon: { color: "{surface.400}", hoverColor: "{surface.300}", checkedColor: "{surface.0}" } } }, Hc = { root: Fc, icon: Mc, content: Oc, colorScheme: Ac }, Tc = { width: "2.5rem", height: "1.5rem", borderRadius: "30px", gap: "0.25rem", shadow: "{form.field.shadow}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, borderWidth: "1px", borderColor: "transparent", hoverBorderColor: "transparent", checkedBorderColor: "transparent", checkedHoverBorderColor: "transparent", invalidBorderColor: "{form.field.invalid.border.color}", transitionDuration: "{form.field.transition.duration}", slideDuration: "0.2s" }, Nc = { borderRadius: "50%", size: "1rem" }, jc = { light: { root: { background: "{surface.300}", disabledBackground: "{form.field.disabled.background}", hoverBackground: "{surface.400}", checkedBackground: "{primary.color}", checkedHoverBackground: "{primary.hover.color}" }, handle: { background: "{surface.0}", disabledBackground: "{form.field.disabled.color}", hoverBackground: "{surface.0}", checkedBackground: "{surface.0}", checkedHoverBackground: "{surface.0}", color: "{text.muted.color}", hoverColor: "{text.color}", checkedColor: "{primary.color}", checkedHoverColor: "{primary.hover.color}" } }, dark: { root: { background: "{surface.700}", disabledBackground: "{surface.600}", hoverBackground: "{surface.600}", checkedBackground: "{primary.color}", checkedHoverBackground: "{primary.hover.color}" }, handle: { background: "{surface.400}", disabledBackground: "{surface.900}", hoverBackground: "{surface.300}", checkedBackground: "{surface.900}", checkedHoverBackground: "{surface.900}", color: "{surface.900}", hoverColor: "{surface.800}", checkedColor: "{primary.color}", checkedHoverColor: "{primary.hover.color}" } } }, Lc = { root: Tc, handle: Nc, colorScheme: jc }, Pc = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", gap: "0.5rem", padding: "0.75rem" }, Yc = { root: Pc }, Xc = { maxWidth: "12.5rem", gutter: "0.25rem", shadow: "{overlay.popover.shadow}", padding: "0.5rem 0.75rem", borderRadius: "{overlay.popover.border.radius}" }, qc = { light: { root: { background: "{surface.700}", color: "{surface.0}" } }, dark: { root: { background: "{surface.700}", color: "{surface.0}" } } }, Ec = { root: Xc, colorScheme: qc }, Uc = { background: "{content.background}", color: "{content.color}", padding: "1rem", gap: "2px", indent: "1rem", transitionDuration: "{transition.duration}" }, Gc = { padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", color: "{text.color}", hoverColor: "{text.hover.color}", selectedColor: "{highlight.color}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" }, gap: "0.25rem" }, Qc = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", selectedColor: "{highlight.color}" }, Kc = { borderRadius: "50%", size: "1.75rem", hoverBackground: "{content.hover.background}", selectedHoverBackground: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", selectedHoverColor: "{primary.color}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Jc = { size: "2rem" }, Zc = { margin: "0 0 0.5rem 0" }, _c = `
|
|
1680
|
+
`, Ca = { root: ra, header: ea, headerCell: aa, columnTitle: na, row: ta, bodyCell: da, footerCell: la, columnFooter: ia, footer: ca, dropPoint: sa, columnResizer: ua, resizeIndicator: fa, sortIcon: ga, loadingIcon: ma, rowToggleButton: pa, filter: ba, paginatorTop: ha, paginatorBottom: va, colorScheme: ka, css: ya }, Ba = { borderColor: "transparent", borderWidth: "0", borderRadius: "0", padding: "0" }, xa = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem", borderRadius: "0" }, $a = { background: "{content.background}", color: "{content.color}", borderColor: "transparent", borderWidth: "0", padding: "0", borderRadius: "0" }, wa = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "1px 0 0 0", padding: "0.75rem 1rem", borderRadius: "0" }, Ra = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, za = { borderColor: "{content.border.color}", borderWidth: "1px 0 0 0" }, Sa = { root: Ba, header: xa, content: $a, footer: wa, paginatorTop: Ra, paginatorBottom: za }, Da = { transitionDuration: "{transition.duration}" }, Va = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.popover.shadow}", padding: "{overlay.popover.padding}" }, Wa = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", padding: "0 0 0.5rem 0" }, Ia = { gap: "0.5rem", fontWeight: "500" }, Fa = { width: "2.5rem", sm: { width: "2rem" }, lg: { width: "3rem" }, borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ma = { color: "{form.field.icon.color}" }, Oa = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, Aa = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, Ha = { borderColor: "{content.border.color}", gap: "{overlay.popover.padding}" }, Ta = { margin: "0.5rem 0 0 0" }, Na = { padding: "0.25rem", fontWeight: "500", color: "{content.color}" }, ja = { hoverBackground: "{content.hover.background}", selectedBackground: "{primary.color}", rangeSelectedBackground: "{highlight.background}", color: "{content.color}", hoverColor: "{content.hover.color}", selectedColor: "{primary.contrast.color}", rangeSelectedColor: "{highlight.color}", width: "2rem", height: "2rem", borderRadius: "50%", padding: "0.25rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, La = { margin: "0.5rem 0 0 0" }, Pa = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, Ya = { margin: "0.5rem 0 0 0" }, Xa = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, qa = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}" }, Ea = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}", gap: "0.5rem", buttonGap: "0.25rem" }, Ua = { light: { dropdown: { background: "{surface.100}", hoverBackground: "{surface.200}", activeBackground: "{surface.300}", color: "{surface.600}", hoverColor: "{surface.700}", activeColor: "{surface.800}" }, today: { background: "{surface.200}", color: "{surface.900}" } }, dark: { dropdown: { background: "{surface.800}", hoverBackground: "{surface.700}", activeBackground: "{surface.600}", color: "{surface.300}", hoverColor: "{surface.200}", activeColor: "{surface.100}" }, today: { background: "{surface.700}", color: "{surface.0}" } } }, Ga = { root: Da, panel: Va, header: Wa, title: Ia, dropdown: Fa, inputIcon: Ma, selectMonth: Oa, selectYear: Aa, group: Ha, dayView: Ta, weekDay: Na, date: ja, monthView: La, month: Pa, yearView: Ya, year: Xa, buttonbar: qa, timePicker: Ea, colorScheme: Ua }, Qa = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", borderRadius: "{overlay.modal.border.radius}", shadow: "{overlay.modal.shadow}" }, Ka = { padding: "{overlay.modal.padding}", gap: "0.5rem" }, Ja = { fontSize: "1.25rem", fontWeight: "600" }, Za = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, _a = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}", gap: "0.5rem" }, on = { root: Qa, header: Ka, title: Ja, content: Za, footer: _a }, rn = { borderColor: "{content.border.color}" }, en = { background: "{content.background}", color: "{text.color}" }, an = { margin: "1rem 0", padding: "0 1rem", content: { padding: "0 0.5rem" } }, nn = { margin: "0 1rem", padding: "0.5rem 0", content: { padding: "0.5rem 0" } }, tn = { root: rn, content: en, horizontal: an, vertical: nn }, dn = { background: "rgba(255, 255, 255, 0.1)", borderColor: "rgba(255, 255, 255, 0.2)", padding: "0.5rem", borderRadius: "{border.radius.xl}" }, ln = { borderRadius: "{content.border.radius}", padding: "0.5rem", size: "3rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, cn = { root: dn, item: ln }, sn = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", shadow: "{overlay.modal.shadow}" }, un = { padding: "{overlay.modal.padding}" }, fn = { fontSize: "1.5rem", fontWeight: "600" }, gn = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, mn = { padding: "{overlay.modal.padding}" }, pn = { root: sn, header: un, title: fn, content: gn, footer: mn }, bn = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}" }, hn = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, vn = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}", padding: "{list.padding}" }, kn = { focusBackground: "{list.option.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, yn = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, Cn = { toolbar: bn, toolbarItem: hn, overlay: vn, overlayOption: kn, content: yn }, Bn = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", padding: "0 1.125rem 1.125rem 1.125rem", transitionDuration: "{transition.duration}" }, xn = { background: "{content.background}", hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", borderRadius: "{content.border.radius}", borderWidth: "1px", borderColor: "transparent", padding: "0.5rem 0.75rem", gap: "0.5rem", fontWeight: "600", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, $n = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}" }, wn = { padding: "0" }, Rn = { root: Bn, legend: xn, toggleIcon: $n, content: wn }, zn = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", transitionDuration: "{transition.duration}" }, Sn = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "unset", borderWidth: "0", borderRadius: "0", gap: "0.5rem" }, Dn = { highlightBorderColor: "{primary.color}", padding: "0 1.125rem 1.125rem 1.125rem", gap: "1rem" }, Vn = { padding: "1rem", gap: "1rem", borderColor: "{content.border.color}", info: { gap: "0.5rem" } }, Wn = { gap: "0.5rem" }, In = { height: "0.25rem" }, Fn = { gap: "0.5rem" }, Mn = { root: zn, header: Sn, content: Dn, file: Vn, fileList: Wn, progressbar: In, basic: Fn }, On = { color: "{form.field.float.label.color}", focusColor: "{form.field.float.label.focus.color}", activeColor: "{form.field.float.label.active.color}", invalidColor: "{form.field.float.label.invalid.color}", transitionDuration: "0.2s", positionX: "{form.field.padding.x}", positionY: "{form.field.padding.y}", fontWeight: "500", active: { fontSize: "0.75rem", fontWeight: "400" } }, An = { active: { top: "-1.25rem" } }, Hn = { input: { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, active: { top: "{form.field.padding.y}" } }, Tn = { borderRadius: "{border.radius.xs}", active: { background: "{form.field.background}", padding: "0 0.125rem" } }, Nn = { root: On, over: An, in: Hn, on: Tn }, jn = { borderWidth: "1px", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", transitionDuration: "{transition.duration}" }, Ln = { background: "rgba(255, 255, 255, 0.1)", hoverBackground: "rgba(255, 255, 255, 0.2)", color: "{surface.100}", hoverColor: "{surface.0}", size: "3rem", gutter: "0.5rem", prev: { borderRadius: "50%" }, next: { borderRadius: "50%" }, focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Pn = { size: "1.5rem" }, Yn = { background: "{content.background}", padding: "1rem 0.25rem" }, Xn = { size: "2rem", borderRadius: "{content.border.radius}", gutter: "0.5rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, qn = { size: "1rem" }, En = { background: "rgba(0, 0, 0, 0.5)", color: "{surface.100}", padding: "1rem" }, Un = { gap: "0.5rem", padding: "1rem" }, Gn = { width: "1rem", height: "1rem", activeBackground: "{primary.color}", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Qn = { background: "rgba(0, 0, 0, 0.5)" }, Kn = { background: "rgba(255, 255, 255, 0.4)", hoverBackground: "rgba(255, 255, 255, 0.6)", activeBackground: "rgba(255, 255, 255, 0.9)" }, Jn = { size: "3rem", gutter: "0.5rem", background: "rgba(255, 255, 255, 0.1)", hoverBackground: "rgba(255, 255, 255, 0.2)", color: "{surface.50}", hoverColor: "{surface.0}", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Zn = { size: "1.5rem" }, _n = { light: { thumbnailNavButton: { hoverBackground: "{surface.100}", color: "{surface.600}", hoverColor: "{surface.700}" }, indicatorButton: { background: "{surface.200}", hoverBackground: "{surface.300}" } }, dark: { thumbnailNavButton: { hoverBackground: "{surface.700}", color: "{surface.400}", hoverColor: "{surface.0}" }, indicatorButton: { background: "{surface.700}", hoverBackground: "{surface.600}" } } }, ot = { root: jn, navButton: Ln, navIcon: Pn, thumbnailsContent: Yn, thumbnailNavButton: Xn, thumbnailNavButtonIcon: qn, caption: En, indicatorList: Un, indicatorButton: Gn, insetIndicatorList: Qn, insetIndicatorButton: Kn, closeButton: Jn, closeButtonIcon: Zn, colorScheme: _n }, rt = { color: "{form.field.icon.color}" }, et = { icon: rt }, at = { color: "{form.field.float.label.color}", focusColor: "{form.field.float.label.focus.color}", invalidColor: "{form.field.float.label.invalid.color}", transitionDuration: "0.2s", positionX: "{form.field.padding.x}", top: "{form.field.padding.y}", fontSize: "0.75rem", fontWeight: "400" }, nt = { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, tt = { root: at, input: nt }, dt = { transitionDuration: "{transition.duration}" }, lt = { icon: { size: "1.5rem" }, mask: { background: "{mask.background}", color: "{mask.color}" } }, it = { position: { left: "auto", right: "1rem", top: "1rem", bottom: "auto" }, blur: "8px", background: "rgba(255,255,255,0.1)", borderColor: "rgba(255,255,255,0.2)", borderWidth: "1px", borderRadius: "30px", padding: ".5rem", gap: "0.5rem" }, ct = { hoverBackground: "rgba(255,255,255,0.1)", color: "{surface.50}", hoverColor: "{surface.0}", size: "3rem", iconSize: "1.5rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, st = { root: dt, preview: lt, toolbar: it, action: ct }, ut = { size: "15px", hoverSize: "30px", background: "rgba(255,255,255,0.3)", hoverBackground: "rgba(255,255,255,0.3)", borderColor: "unset", hoverBorderColor: "unset", borderWidth: "0", borderRadius: "50%", transitionDuration: "{transition.duration}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "rgba(255,255,255,0.3)", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, ft = { handle: ut }, gt = { padding: "{form.field.padding.y} {form.field.padding.x}", borderRadius: "{content.border.radius}", gap: "0.5rem" }, mt = { fontWeight: "500" }, pt = { size: "1rem" }, bt = { light: { info: { background: "color-mix(in srgb, {blue.50}, transparent 5%)", borderColor: "{blue.200}", color: "{blue.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)" }, success: { background: "color-mix(in srgb, {green.50}, transparent 5%)", borderColor: "{green.200}", color: "{green.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)" }, warn: { background: "color-mix(in srgb,{yellow.50}, transparent 5%)", borderColor: "{yellow.200}", color: "{yellow.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)" }, error: { background: "color-mix(in srgb, {red.50}, transparent 5%)", borderColor: "{red.200}", color: "{red.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)" }, secondary: { background: "{surface.100}", borderColor: "{surface.200}", color: "{surface.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)" }, contrast: { background: "{surface.900}", borderColor: "{surface.950}", color: "{surface.50}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)" } }, dark: { info: { background: "color-mix(in srgb, {blue.500}, transparent 84%)", borderColor: "color-mix(in srgb, {blue.700}, transparent 64%)", color: "{blue.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)" }, success: { background: "color-mix(in srgb, {green.500}, transparent 84%)", borderColor: "color-mix(in srgb, {green.700}, transparent 64%)", color: "{green.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)" }, warn: { background: "color-mix(in srgb, {yellow.500}, transparent 84%)", borderColor: "color-mix(in srgb, {yellow.700}, transparent 64%)", color: "{yellow.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)" }, error: { background: "color-mix(in srgb, {red.500}, transparent 84%)", borderColor: "color-mix(in srgb, {red.700}, transparent 64%)", color: "{red.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)" }, secondary: { background: "{surface.800}", borderColor: "{surface.700}", color: "{surface.300}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)" }, contrast: { background: "{surface.0}", borderColor: "{surface.100}", color: "{surface.950}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)" } } }, ht = { root: gt, text: mt, icon: pt, colorScheme: bt }, vt = { padding: "{form.field.padding.y} {form.field.padding.x}", borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, transitionDuration: "{transition.duration}" }, kt = { hoverBackground: "{content.hover.background}", hoverColor: "{content.hover.color}" }, yt = { root: vt, display: kt }, Ct = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}" }, Bt = { borderRadius: "{border.radius.sm}" }, xt = { light: { chip: { focusBackground: "{surface.200}", color: "{surface.800}" } }, dark: { chip: { focusBackground: "{surface.700}", color: "{surface.0}" } } }, $t = { root: Ct, chip: Bt, colorScheme: xt }, wt = { background: "{form.field.background}", borderColor: "{form.field.border.color}", color: "{form.field.icon.color}", borderRadius: "{form.field.border.radius}", padding: "0.5rem", minWidth: "2.5rem" }, Rt = { addon: wt }, zt = { transitionDuration: "{transition.duration}" }, St = { width: "2.5rem", borderRadius: "{form.field.border.radius}", verticalPadding: "{form.field.padding.y}" }, Dt = { light: { button: { background: "transparent", hoverBackground: "{surface.100}", activeBackground: "{surface.200}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", color: "{surface.400}", hoverColor: "{surface.500}", activeColor: "{surface.600}" } }, dark: { button: { background: "transparent", hoverBackground: "{surface.800}", activeBackground: "{surface.700}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.border.color}", activeBorderColor: "{form.field.border.color}", color: "{surface.400}", hoverColor: "{surface.300}", activeColor: "{surface.200}" } } }, Vt = { root: zt, button: St, colorScheme: Dt }, Wt = { gap: "0.5rem" }, It = { width: "2.5rem", sm: { width: "2rem" }, lg: { width: "3rem" } }, Ft = { root: Wt, input: It }, Mt = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, Ot = { root: Mt }, At = { transitionDuration: "{transition.duration}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ht = { background: "{primary.color}" }, Tt = { background: "{content.border.color}" }, Nt = { color: "{text.muted.color}" }, jt = { root: At, value: Ht, range: Tt, text: Nt }, Lt = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", borderColor: "{form.field.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", shadow: "{form.field.shadow}", borderRadius: "{form.field.border.radius}", transitionDuration: "{form.field.transition.duration}" }, Pt = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Yt = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, Xt = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, qt = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, Et = { padding: "{list.option.padding}" }, Ut = { light: { option: { stripedBackground: "{surface.50}" } }, dark: { option: { stripedBackground: "{surface.900}" } } }, Gt = { root: Lt, list: Pt, option: Yt, optionGroup: Xt, checkmark: qt, emptyMessage: Et, colorScheme: Ut }, Qt = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", gap: "0.5rem", verticalOrientation: { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, horizontalOrientation: { padding: "0.5rem 0.75rem", gap: "0.5rem" }, transitionDuration: "{transition.duration}" }, Kt = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, Jt = { focusBackground: "{navigation.item.focus.background}", activeBackground: "{navigation.item.active.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", activeColor: "{navigation.item.active.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}", activeColor: "{navigation.item.icon.active.color}" } }, Zt = { padding: "0", background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", shadow: "{overlay.navigation.shadow}", gap: "0.5rem" }, _t = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, od = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, rd = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, ed = { borderColor: "{content.border.color}" }, ad = { borderRadius: "50%", size: "1.75rem", color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", hoverBackground: "{content.hover.background}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, nd = { root: Qt, baseItem: Kt, item: Jt, overlay: Zt, submenu: _t, submenuLabel: od, submenuIcon: rd, separator: ed, mobileButton: ad }, td = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, dd = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, ld = { focusBackground: "{navigation.item.focus.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}" } }, id = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, cd = { borderColor: "{content.border.color}" }, sd = { root: td, list: dd, item: ld, submenuLabel: id, separator: cd }, ud = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", gap: "0.5rem", padding: "0.5rem 0.75rem", transitionDuration: "{transition.duration}" }, fd = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, gd = { focusBackground: "{navigation.item.focus.background}", activeBackground: "{navigation.item.active.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", activeColor: "{navigation.item.active.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}", activeColor: "{navigation.item.icon.active.color}" } }, md = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}", background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", mobileIndent: "1rem", icon: { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" } }, pd = { borderColor: "{content.border.color}" }, bd = { borderRadius: "50%", size: "1.75rem", color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", hoverBackground: "{content.hover.background}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, hd = { root: ud, baseItem: fd, item: gd, submenu: md, separator: pd, mobileButton: bd }, vd = { borderRadius: "{content.border.radius}", borderWidth: "1px", transitionDuration: "{transition.duration}" }, kd = { padding: "0.5rem 0.75rem", gap: "0.5rem", sm: { padding: "0.375rem 0.625rem" }, lg: { padding: "0.625rem 0.875rem" } }, yd = { fontSize: "1rem", fontWeight: "500", sm: { fontSize: "0.875rem" }, lg: { fontSize: "1.125rem" } }, Cd = { size: "1.125rem", sm: { size: "1rem" }, lg: { size: "1.25rem" } }, Bd = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, xd = { size: "1rem", sm: { size: "0.875rem" }, lg: { size: "1.125rem" } }, $d = { root: { borderWidth: "1px" } }, wd = { content: { padding: "0" } }, Rd = { light: { info: { background: "color-mix(in srgb, {blue.50}, transparent 5%)", borderColor: "{blue.200}", color: "{blue.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)", closeButton: { hoverBackground: "{blue.100}", focusRing: { color: "{blue.600}", shadow: "none" } }, outlined: { color: "{blue.600}", borderColor: "{blue.600}" }, simple: { color: "{blue.600}" } }, success: { background: "color-mix(in srgb, {green.50}, transparent 5%)", borderColor: "{green.200}", color: "{green.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)", closeButton: { hoverBackground: "{green.100}", focusRing: { color: "{green.600}", shadow: "none" } }, outlined: { color: "{green.600}", borderColor: "{green.600}" }, simple: { color: "{green.600}" } }, warn: { background: "color-mix(in srgb,{yellow.50}, transparent 5%)", borderColor: "{yellow.200}", color: "{yellow.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)", closeButton: { hoverBackground: "{yellow.100}", focusRing: { color: "{yellow.600}", shadow: "none" } }, outlined: { color: "{yellow.600}", borderColor: "{yellow.600}" }, simple: { color: "{yellow.600}" } }, error: { background: "color-mix(in srgb, {red.50}, transparent 5%)", borderColor: "{red.200}", color: "{red.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)", closeButton: { hoverBackground: "{red.100}", focusRing: { color: "{red.600}", shadow: "none" } }, outlined: { color: "{red.600}", borderColor: "{red.600}" }, simple: { color: "{red.600}" } }, secondary: { background: "{surface.100}", borderColor: "{surface.200}", color: "{surface.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)", closeButton: { hoverBackground: "{surface.200}", focusRing: { color: "{surface.600}", shadow: "none" } }, outlined: { color: "{surface.500}", borderColor: "{surface.500}" }, simple: { color: "{surface.500}" } }, contrast: { background: "{surface.900}", borderColor: "{surface.950}", color: "{surface.50}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)", closeButton: { hoverBackground: "{surface.800}", focusRing: { color: "{surface.50}", shadow: "none" } }, outlined: { color: "{surface.950}", borderColor: "{surface.950}" }, simple: { color: "{surface.950}" } } }, dark: { info: { background: "color-mix(in srgb, {blue.500}, transparent 84%)", borderColor: "color-mix(in srgb, {blue.700}, transparent 64%)", color: "{blue.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{blue.500}", shadow: "none" } }, outlined: { color: "{blue.500}", borderColor: "{blue.500}" }, simple: { color: "{blue.500}" } }, success: { background: "color-mix(in srgb, {green.500}, transparent 84%)", borderColor: "color-mix(in srgb, {green.700}, transparent 64%)", color: "{green.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{green.500}", shadow: "none" } }, outlined: { color: "{green.500}", borderColor: "{green.500}" }, simple: { color: "{green.500}" } }, warn: { background: "color-mix(in srgb, {yellow.500}, transparent 84%)", borderColor: "color-mix(in srgb, {yellow.700}, transparent 64%)", color: "{yellow.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{yellow.500}", shadow: "none" } }, outlined: { color: "{yellow.500}", borderColor: "{yellow.500}" }, simple: { color: "{yellow.500}" } }, error: { background: "color-mix(in srgb, {red.500}, transparent 84%)", borderColor: "color-mix(in srgb, {red.700}, transparent 64%)", color: "{red.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{red.500}", shadow: "none" } }, outlined: { color: "{red.500}", borderColor: "{red.500}" }, simple: { color: "{red.500}" } }, secondary: { background: "{surface.800}", borderColor: "{surface.700}", color: "{surface.300}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)", closeButton: { hoverBackground: "{surface.700}", focusRing: { color: "{surface.300}", shadow: "none" } }, outlined: { color: "{surface.400}", borderColor: "{surface.400}" }, simple: { color: "{surface.400}" } }, contrast: { background: "{surface.0}", borderColor: "{surface.100}", color: "{surface.950}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)", closeButton: { hoverBackground: "{surface.100}", focusRing: { color: "{surface.950}", shadow: "none" } }, outlined: { color: "{surface.0}", borderColor: "{surface.0}" }, simple: { color: "{surface.0}" } } } }, zd = { root: vd, content: kd, text: yd, icon: Cd, closeButton: Bd, closeIcon: xd, outlined: $d, simple: wd, colorScheme: Rd }, Sd = { borderRadius: "{content.border.radius}", gap: "1rem" }, Dd = { background: "{content.border.color}", size: "0.5rem" }, Vd = { gap: "0.5rem" }, Wd = { size: "0.5rem" }, Id = { size: "1rem" }, Fd = { verticalGap: "0.5rem", horizontalGap: "1rem" }, Md = { root: Sd, meters: Dd, label: Vd, labelMarker: Wd, labelIcon: Id, labelList: Fd }, Od = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, Ad = { width: "2.5rem", color: "{form.field.icon.color}" }, Hd = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Td = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Nd = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}", gap: "0.5rem" }, jd = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, Ld = { color: "{form.field.icon.color}" }, Pd = { borderRadius: "{border.radius.sm}" }, Yd = { padding: "{list.option.padding}" }, Xd = { root: Od, dropdown: Ad, overlay: Hd, list: Td, option: Nd, optionGroup: jd, chip: Pd, clearIcon: Ld, emptyMessage: Yd }, qd = { gap: "1.125rem" }, Ed = { gap: "0.5rem" }, Ud = { root: qd, controls: Ed }, Gd = { gutter: "0.75rem", transitionDuration: "{transition.duration}" }, Qd = { background: "{content.background}", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", borderColor: "{content.border.color}", color: "{content.color}", selectedColor: "{highlight.color}", hoverColor: "{content.hover.color}", padding: "0.75rem 1rem", toggleablePadding: "0.75rem 1rem 1.25rem 1rem", borderRadius: "{content.border.radius}" }, Kd = { background: "{content.background}", hoverBackground: "{content.hover.background}", borderColor: "{content.border.color}", color: "{text.muted.color}", hoverColor: "{text.color}", size: "1.5rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Jd = { color: "{content.border.color}", borderRadius: "{content.border.radius}", height: "24px" }, Zd = { root: Gd, node: Qd, nodeToggleButton: Kd, connector: Jd }, _d = { outline: { width: "2px", color: "{content.background}" } }, ol = { root: _d }, rl = { padding: "0.5rem 1rem", gap: "0.25rem", borderRadius: "{content.border.radius}", background: "{content.background}", color: "{content.color}", transitionDuration: "{transition.duration}" }, el = { background: "transparent", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", selectedColor: "{highlight.color}", width: "2.5rem", height: "2.5rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, al = { color: "{text.muted.color}" }, nl = { maxWidth: "2.5rem" }, tl = { root: rl, navButton: el, currentPageReport: al, jumpToPageInput: nl }, dl = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, ll = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "{content.border.color}", borderWidth: "0", borderRadius: "0" }, il = { padding: "0.375rem 1.125rem" }, cl = { fontWeight: "600" }, sl = { padding: "0 1.125rem 1.125rem 1.125rem" }, ul = { padding: "0 1.125rem 1.125rem 1.125rem" }, fl = { root: dl, header: ll, toggleableHeader: il, title: cl, content: sl, footer: ul }, gl = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, ml = { background: "{content.background}", borderColor: "{content.border.color}", borderWidth: "1px", color: "{content.color}", padding: "0.25rem 0.25rem", borderRadius: "{content.border.radius}", first: { borderWidth: "1px", topBorderRadius: "{content.border.radius}" }, last: { borderWidth: "1px", bottomBorderRadius: "{content.border.radius}" } }, pl = { focusBackground: "{navigation.item.focus.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", gap: "0.5rem", padding: "{navigation.item.padding}", borderRadius: "{content.border.radius}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}" } }, bl = { indent: "1rem" }, hl = { color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}" }, vl = { root: gl, panel: ml, item: pl, submenu: bl, submenuIcon: hl }, kl = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: ".75rem" }, yl = { color: "{form.field.icon.color}" }, Cl = { background: "{overlay.popover.background}", borderColor: "{overlay.popover.border.color}", borderRadius: "{overlay.popover.border.radius}", color: "{overlay.popover.color}", padding: "{overlay.popover.padding}", shadow: "{overlay.popover.shadow}" }, Bl = { gap: "0.5rem" }, xl = { light: { strength: { weakBackground: "{red.500}", mediumBackground: "{amber.500}", strongBackground: "{green.500}" } }, dark: { strength: { weakBackground: "{red.400}", mediumBackground: "{amber.400}", strongBackground: "{green.400}" } } }, $l = { meter: kl, icon: yl, overlay: Cl, content: Bl, colorScheme: xl }, wl = { gap: "1.125rem" }, Rl = { gap: "0.5rem" }, zl = { root: wl, controls: Rl }, Sl = { background: "{overlay.popover.background}", borderColor: "{overlay.popover.border.color}", color: "{overlay.popover.color}", borderRadius: "{overlay.popover.border.radius}", shadow: "{overlay.popover.shadow}", gutter: "10px", arrowOffset: "1.25rem" }, Dl = { padding: "{overlay.popover.padding}" }, Vl = { root: Sl, content: Dl }, Wl = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: "1.25rem" }, Il = { background: "{primary.color}" }, Fl = { color: "{primary.contrast.color}", fontSize: "0.75rem", fontWeight: "600" }, Ml = { root: Wl, value: Il, label: Fl }, Ol = { light: { root: { colorOne: "{red.500}", colorTwo: "{blue.500}", colorThree: "{green.500}", colorFour: "{yellow.500}" } }, dark: { root: { colorOne: "{red.400}", colorTwo: "{blue.400}", colorThree: "{green.400}", colorFour: "{yellow.400}" } } }, Al = { colorScheme: Ol }, Hl = { width: "1.25rem", height: "1.25rem", background: "{form.field.background}", checkedBackground: "{primary.color}", checkedHoverBackground: "{primary.hover.color}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.border.color}", checkedBorderColor: "{primary.color}", checkedHoverBorderColor: "{primary.hover.color}", checkedFocusBorderColor: "{primary.color}", checkedDisabledBorderColor: "{form.field.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", shadow: "{form.field.shadow}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { width: "1rem", height: "1rem" }, lg: { width: "1.5rem", height: "1.5rem" } }, Tl = { size: "0.75rem", checkedColor: "{primary.contrast.color}", checkedHoverColor: "{primary.contrast.color}", disabledColor: "{form.field.disabled.color}", sm: { size: "0.5rem" }, lg: { size: "1rem" } }, Nl = { root: Hl, icon: Tl }, jl = { gap: "0.25rem", transitionDuration: "{transition.duration}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ll = { size: "1rem", color: "{text.muted.color}", hoverColor: "{primary.color}", activeColor: "{primary.color}" }, Pl = { root: jl, icon: Ll }, Yl = { light: { root: { background: "rgba(0,0,0,0.1)" } }, dark: { root: { background: "rgba(255,255,255,0.3)" } } }, Xl = { colorScheme: Yl }, ql = { transitionDuration: "{transition.duration}" }, El = { size: "9px", borderRadius: "{border.radius.sm}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ul = { light: { bar: { background: "{surface.100}" } }, dark: { bar: { background: "{surface.800}" } } }, Gl = { root: ql, bar: El, colorScheme: Ul }, Ql = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, Kl = { width: "2.5rem", color: "{form.field.icon.color}" }, Jl = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Zl = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, _l = { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, oi = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, ri = { color: "{form.field.icon.color}" }, ei = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, ai = { padding: "{list.option.padding}" }, ni = { root: Ql, dropdown: Kl, overlay: Jl, list: Zl, option: _l, optionGroup: oi, clearIcon: ri, checkmark: ei, emptyMessage: ai }, ti = { borderRadius: "{form.field.border.radius}" }, di = { light: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } }, dark: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } } }, li = { root: ti, colorScheme: di }, ii = { borderRadius: "{content.border.radius}" }, ci = { light: { root: { background: "{surface.200}", animationBackground: "rgba(255,255,255,0.4)" } }, dark: { root: { background: "rgba(255, 255, 255, 0.06)", animationBackground: "rgba(255, 255, 255, 0.04)" } } }, si = { root: ii, colorScheme: ci }, ui = { transitionDuration: "{transition.duration}" }, fi = { background: "{content.border.color}", borderRadius: "{content.border.radius}", size: "3px" }, gi = { background: "{primary.color}" }, mi = { width: "20px", height: "20px", borderRadius: "50%", background: "{content.border.color}", hoverBackground: "{content.border.color}", content: { borderRadius: "50%", hoverBackground: "{content.background}", width: "16px", height: "16px", shadow: "0px 0.5px 0px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.14)" }, focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, pi = { light: { handle: { content: { background: "{surface.0}" } } }, dark: { handle: { content: { background: "{surface.950}" } } } }, bi = { root: ui, track: fi, range: gi, handle: mi, colorScheme: pi }, hi = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, vi = { root: hi }, ki = { borderRadius: "{form.field.border.radius}", roundedBorderRadius: "2rem", raisedShadow: "0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12)" }, yi = { root: ki }, Ci = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", transitionDuration: "{transition.duration}" }, Bi = { background: "{content.border.color}" }, xi = { size: "24px", background: "transparent", borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, $i = { root: Ci, gutter: Bi, handle: xi }, wi = { transitionDuration: "{transition.duration}" }, Ri = { background: "{content.border.color}", activeBackground: "{primary.color}", margin: "0 0 0 1.625rem", size: "2px" }, zi = { padding: "0.5rem", gap: "1rem" }, Si = { padding: "0", borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, gap: "0.5rem" }, Di = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, Vi = { background: "{content.background}", activeBackground: "{content.background}", borderColor: "{content.border.color}", activeBorderColor: "{content.border.color}", color: "{text.muted.color}", activeColor: "{primary.color}", size: "2rem", fontSize: "1.143rem", fontWeight: "500", borderRadius: "50%", shadow: "0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)" }, Wi = { padding: "0.875rem 0.5rem 1.125rem 0.5rem" }, Ii = { background: "{content.background}", color: "{content.color}", padding: "0", indent: "1rem" }, Fi = { root: wi, separator: Ri, step: zi, stepHeader: Si, stepTitle: Di, stepNumber: Vi, steppanels: Wi, steppanel: Ii }, Mi = { transitionDuration: "{transition.duration}" }, Oi = { background: "{content.border.color}" }, Ai = { borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, gap: "0.5rem" }, Hi = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, Ti = { background: "{content.background}", activeBackground: "{content.background}", borderColor: "{content.border.color}", activeBorderColor: "{content.border.color}", color: "{text.muted.color}", activeColor: "{primary.color}", size: "2rem", fontSize: "1.143rem", fontWeight: "500", borderRadius: "50%", shadow: "0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)" }, Ni = { root: Mi, separator: Oi, itemLink: Ai, itemLabel: Hi, itemNumber: Ti }, ji = { transitionDuration: "{transition.duration}" }, Li = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, Pi = { background: "transparent", hoverBackground: "transparent", activeBackground: "transparent", borderWidth: "0 0 1px 0", borderColor: "{content.border.color}", hoverBorderColor: "{content.border.color}", activeBorderColor: "{primary.color}", color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}", padding: "1rem 1.125rem", fontWeight: "600", margin: "0 0 -1px 0", gap: "0.5rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Yi = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, Xi = { height: "1px", bottom: "-1px", background: "{primary.color}" }, qi = { root: ji, tablist: Li, item: Pi, itemIcon: Yi, activeBar: Xi }, Ei = { transitionDuration: "{transition.duration}" }, Ui = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, Gi = { background: "transparent", hoverBackground: "transparent", activeBackground: "transparent", borderWidth: "0 0 1px 0", borderColor: "{content.border.color}", hoverBorderColor: "{content.border.color}", activeBorderColor: "{primary.color}", color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}", padding: "1rem 1.125rem", fontWeight: "600", margin: "0 0 -1px 0", gap: "0.5rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" } }, Qi = { background: "{content.background}", color: "{content.color}", padding: "0.875rem 1.125rem 1.125rem 1.125rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "inset {focus.ring.shadow}" } }, Ki = { background: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}", width: "2.5rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" } }, Ji = { height: "1px", bottom: "-1px", background: "{primary.color}" }, Zi = { light: { navButton: { shadow: "0px 0px 10px 50px rgba(255, 255, 255, 0.6)" } }, dark: { navButton: { shadow: "0px 0px 10px 50px color-mix(in srgb, {content.background}, transparent 50%)" } } }, _i = { root: Ei, tablist: Ui, tab: Gi, tabpanel: Qi, navButton: Ki, activeBar: Ji, colorScheme: Zi }, oc = { transitionDuration: "{transition.duration}" }, rc = { background: "{content.background}", borderColor: "{content.border.color}" }, ec = { borderColor: "{content.border.color}", activeBorderColor: "{primary.color}", color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, ac = { background: "{content.background}", color: "{content.color}" }, nc = { background: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}" }, tc = { light: { navButton: { shadow: "0px 0px 10px 50px rgba(255, 255, 255, 0.6)" } }, dark: { navButton: { shadow: "0px 0px 10px 50px color-mix(in srgb, {content.background}, transparent 50%)" } } }, dc = { root: oc, tabList: rc, tab: ec, tabPanel: ac, navButton: nc, colorScheme: tc }, lc = { fontSize: "0.875rem", fontWeight: "700", padding: "0.25rem 0.5rem", gap: "0.25rem", borderRadius: "{content.border.radius}", roundedBorderRadius: "{border.radius.xl}" }, ic = { size: "0.75rem" }, cc = { light: { primary: { background: "{primary.100}", color: "{primary.700}" }, secondary: { background: "{surface.100}", color: "{surface.600}" }, success: { background: "{green.100}", color: "{green.700}" }, info: { background: "{sky.100}", color: "{sky.700}" }, warn: { background: "{orange.100}", color: "{orange.700}" }, danger: { background: "{red.100}", color: "{red.700}" }, contrast: { background: "{surface.950}", color: "{surface.0}" } }, dark: { primary: { background: "color-mix(in srgb, {primary.500}, transparent 84%)", color: "{primary.300}" }, secondary: { background: "{surface.800}", color: "{surface.300}" }, success: { background: "color-mix(in srgb, {green.500}, transparent 84%)", color: "{green.300}" }, info: { background: "color-mix(in srgb, {sky.500}, transparent 84%)", color: "{sky.300}" }, warn: { background: "color-mix(in srgb, {orange.500}, transparent 84%)", color: "{orange.300}" }, danger: { background: "color-mix(in srgb, {red.500}, transparent 84%)", color: "{red.300}" }, contrast: { background: "{surface.0}", color: "{surface.950}" } } }, sc = { root: lc, icon: ic, colorScheme: cc }, uc = { background: "{form.field.background}", borderColor: "{form.field.border.color}", color: "{form.field.color}", height: "18rem", padding: "{form.field.padding.y} {form.field.padding.x}", borderRadius: "{form.field.border.radius}" }, fc = { gap: "0.25rem" }, gc = { margin: "2px 0" }, mc = { root: uc, prompt: fc, commandResponse: gc }, pc = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, bc = { root: pc }, hc = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, vc = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, kc = { focusBackground: "{navigation.item.focus.background}", activeBackground: "{navigation.item.active.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", activeColor: "{navigation.item.active.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}", activeColor: "{navigation.item.icon.active.color}" } }, yc = { mobileIndent: "1rem" }, Cc = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, Bc = { borderColor: "{content.border.color}" }, xc = { root: hc, list: vc, item: kc, submenu: yc, submenuIcon: Cc, separator: Bc }, $c = { minHeight: "5rem" }, wc = { eventContent: { padding: "1rem 0" } }, Rc = { eventContent: { padding: "0 1rem" } }, zc = { size: "1.125rem", borderRadius: "50%", borderWidth: "2px", background: "{content.background}", borderColor: "{content.border.color}", content: { borderRadius: "50%", size: "0.375rem", background: "{primary.color}", insetShadow: "0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12)" } }, Sc = { color: "{content.border.color}", size: "2px" }, Dc = { event: $c, horizontal: wc, vertical: Rc, eventMarker: zc, eventConnector: Sc }, Vc = { width: "25rem", borderRadius: "{content.border.radius}", borderWidth: "1px", transitionDuration: "{transition.duration}" }, Wc = { size: "1.125rem" }, Ic = { padding: "{overlay.popover.padding}", gap: "0.5rem" }, Fc = { gap: "0.5rem" }, Mc = { fontWeight: "500", fontSize: "1rem" }, Oc = { fontWeight: "500", fontSize: "0.875rem" }, Ac = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, Hc = { size: "1rem" }, Tc = { light: { root: { blur: "1.5px" }, info: { background: "color-mix(in srgb, {blue.50}, transparent 5%)", borderColor: "{blue.200}", color: "{blue.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)", closeButton: { hoverBackground: "{blue.100}", focusRing: { color: "{blue.600}", shadow: "none" } } }, success: { background: "color-mix(in srgb, {green.50}, transparent 5%)", borderColor: "{green.200}", color: "{green.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)", closeButton: { hoverBackground: "{green.100}", focusRing: { color: "{green.600}", shadow: "none" } } }, warn: { background: "color-mix(in srgb,{yellow.50}, transparent 5%)", borderColor: "{yellow.200}", color: "{yellow.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)", closeButton: { hoverBackground: "{yellow.100}", focusRing: { color: "{yellow.600}", shadow: "none" } } }, error: { background: "color-mix(in srgb, {red.50}, transparent 5%)", borderColor: "{red.200}", color: "{red.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)", closeButton: { hoverBackground: "{red.100}", focusRing: { color: "{red.600}", shadow: "none" } } }, secondary: { background: "{surface.100}", borderColor: "{surface.200}", color: "{surface.600}", detailColor: "{surface.700}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)", closeButton: { hoverBackground: "{surface.200}", focusRing: { color: "{surface.600}", shadow: "none" } } }, contrast: { background: "{surface.900}", borderColor: "{surface.950}", color: "{surface.50}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)", closeButton: { hoverBackground: "{surface.800}", focusRing: { color: "{surface.50}", shadow: "none" } } } }, dark: { root: { blur: "10px" }, info: { background: "color-mix(in srgb, {blue.500}, transparent 84%)", borderColor: "color-mix(in srgb, {blue.700}, transparent 64%)", color: "{blue.500}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{blue.500}", shadow: "none" } } }, success: { background: "color-mix(in srgb, {green.500}, transparent 84%)", borderColor: "color-mix(in srgb, {green.700}, transparent 64%)", color: "{green.500}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{green.500}", shadow: "none" } } }, warn: { background: "color-mix(in srgb, {yellow.500}, transparent 84%)", borderColor: "color-mix(in srgb, {yellow.700}, transparent 64%)", color: "{yellow.500}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{yellow.500}", shadow: "none" } } }, error: { background: "color-mix(in srgb, {red.500}, transparent 84%)", borderColor: "color-mix(in srgb, {red.700}, transparent 64%)", color: "{red.500}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)", closeButton: { hoverBackground: "rgba(255, 255, 255, 0.05)", focusRing: { color: "{red.500}", shadow: "none" } } }, secondary: { background: "{surface.800}", borderColor: "{surface.700}", color: "{surface.300}", detailColor: "{surface.0}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)", closeButton: { hoverBackground: "{surface.700}", focusRing: { color: "{surface.300}", shadow: "none" } } }, contrast: { background: "{surface.0}", borderColor: "{surface.100}", color: "{surface.950}", detailColor: "{surface.950}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)", closeButton: { hoverBackground: "{surface.100}", focusRing: { color: "{surface.950}", shadow: "none" } } } } }, Nc = { root: Vc, icon: Wc, content: Ic, text: Fc, summary: Mc, detail: Oc, closeButton: Ac, closeIcon: Hc, colorScheme: Tc }, jc = { padding: "0.25rem", borderRadius: "{content.border.radius}", gap: "0.5rem", fontWeight: "500", disabledBackground: "{form.field.disabled.background}", disabledBorderColor: "{form.field.disabled.background}", disabledColor: "{form.field.disabled.color}", invalidBorderColor: "{form.field.invalid.border.color}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", padding: "0.25rem" }, lg: { fontSize: "{form.field.lg.font.size}", padding: "0.25rem" } }, Lc = { disabledColor: "{form.field.disabled.color}" }, Pc = { padding: "0.25rem 0.75rem", borderRadius: "{content.border.radius}", checkedShadow: "0px 1px 2px 0px rgba(0, 0, 0, 0.02), 0px 1px 2px 0px rgba(0, 0, 0, 0.04)", sm: { padding: "0.25rem 0.75rem" }, lg: { padding: "0.25rem 0.75rem" } }, Yc = { light: { root: { background: "{surface.100}", checkedBackground: "{surface.100}", hoverBackground: "{surface.100}", borderColor: "{surface.100}", color: "{surface.500}", hoverColor: "{surface.700}", checkedColor: "{surface.900}", checkedBorderColor: "{surface.100}" }, content: { checkedBackground: "{surface.0}" }, icon: { color: "{surface.500}", hoverColor: "{surface.700}", checkedColor: "{surface.900}" } }, dark: { root: { background: "{surface.950}", checkedBackground: "{surface.950}", hoverBackground: "{surface.950}", borderColor: "{surface.950}", color: "{surface.400}", hoverColor: "{surface.300}", checkedColor: "{surface.0}", checkedBorderColor: "{surface.950}" }, content: { checkedBackground: "{surface.800}" }, icon: { color: "{surface.400}", hoverColor: "{surface.300}", checkedColor: "{surface.0}" } } }, Xc = { root: jc, icon: Lc, content: Pc, colorScheme: Yc }, qc = { width: "2.5rem", height: "1.5rem", borderRadius: "30px", gap: "0.25rem", shadow: "{form.field.shadow}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" }, borderWidth: "1px", borderColor: "transparent", hoverBorderColor: "transparent", checkedBorderColor: "transparent", checkedHoverBorderColor: "transparent", invalidBorderColor: "{form.field.invalid.border.color}", transitionDuration: "{form.field.transition.duration}", slideDuration: "0.2s" }, Ec = { borderRadius: "50%", size: "1rem" }, Uc = { light: { root: { background: "{surface.300}", disabledBackground: "{form.field.disabled.background}", hoverBackground: "{surface.400}", checkedBackground: "{primary.color}", checkedHoverBackground: "{primary.hover.color}" }, handle: { background: "{surface.0}", disabledBackground: "{form.field.disabled.color}", hoverBackground: "{surface.0}", checkedBackground: "{surface.0}", checkedHoverBackground: "{surface.0}", color: "{text.muted.color}", hoverColor: "{text.color}", checkedColor: "{primary.color}", checkedHoverColor: "{primary.hover.color}" } }, dark: { root: { background: "{surface.700}", disabledBackground: "{surface.600}", hoverBackground: "{surface.600}", checkedBackground: "{primary.color}", checkedHoverBackground: "{primary.hover.color}" }, handle: { background: "{surface.400}", disabledBackground: "{surface.900}", hoverBackground: "{surface.300}", checkedBackground: "{surface.900}", checkedHoverBackground: "{surface.900}", color: "{surface.900}", hoverColor: "{surface.800}", checkedColor: "{primary.color}", checkedHoverColor: "{primary.hover.color}" } } }, Gc = { root: qc, handle: Ec, colorScheme: Uc }, Qc = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", gap: "0.5rem", padding: "0.75rem" }, Kc = { root: Qc }, Jc = { maxWidth: "12.5rem", gutter: "0.25rem", shadow: "{overlay.popover.shadow}", padding: "0.5rem 0.75rem", borderRadius: "{overlay.popover.border.radius}" }, Zc = { light: { root: { background: "{surface.700}", color: "{surface.0}" } }, dark: { root: { background: "{surface.700}", color: "{surface.0}" } } }, _c = { root: Jc, colorScheme: Zc }, os = { background: "{content.background}", color: "{content.color}", padding: "1rem", gap: "2px", indent: "1rem", transitionDuration: "{transition.duration}" }, rs = { padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", color: "{text.color}", hoverColor: "{text.hover.color}", selectedColor: "{highlight.color}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" }, gap: "0.25rem" }, es = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", selectedColor: "{highlight.color}" }, as = { borderRadius: "50%", size: "1.75rem", hoverBackground: "{content.hover.background}", selectedHoverBackground: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", selectedHoverColor: "{primary.color}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, ns = { size: "2rem" }, ts = { margin: "0 0 0.5rem 0" }, ds = `
|
|
1652
1681
|
.p-tree-mask.p-overlay-mask {
|
|
1653
1682
|
--px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3));
|
|
1654
1683
|
}
|
|
1655
|
-
`,
|
|
1684
|
+
`, ls = { root: os, node: rs, nodeIcon: es, nodeToggleButton: as, loadingIcon: ns, filter: ts, css: ds }, is = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledHoverBackground: "{form.field.filled.hover.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", invalidPlaceholderColor: "{form.field.invalid.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}", sm: { fontSize: "{form.field.sm.font.size}", paddingX: "{form.field.sm.padding.x}", paddingY: "{form.field.sm.padding.y}" }, lg: { fontSize: "{form.field.lg.font.size}", paddingX: "{form.field.lg.padding.x}", paddingY: "{form.field.lg.padding.y}" } }, cs = { width: "2.5rem", color: "{form.field.icon.color}" }, ss = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, us = { padding: "{list.padding}" }, fs = { padding: "{list.option.padding}" }, gs = { borderRadius: "{border.radius.sm}" }, ms = { color: "{form.field.icon.color}" }, ps = { root: is, dropdown: cs, overlay: ss, tree: us, emptyMessage: fs, chip: gs, clearIcon: ms }, bs = { transitionDuration: "{transition.duration}" }, hs = { background: "{content.background}", borderColor: "{treetable.border.color}", color: "{content.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem" }, vs = { background: "{content.background}", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", borderColor: "{treetable.border.color}", color: "{content.color}", hoverColor: "{content.hover.color}", selectedColor: "{highlight.color}", gap: "0.5rem", padding: "0.75rem 1rem", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" } }, ks = { fontWeight: "600" }, ys = { background: "{content.background}", hoverBackground: "{content.hover.background}", selectedBackground: "{highlight.background}", color: "{content.color}", hoverColor: "{content.hover.color}", selectedColor: "{highlight.color}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "-1px", shadow: "{focus.ring.shadow}" } }, Cs = { borderColor: "{treetable.border.color}", padding: "0.75rem 1rem", gap: "0.5rem" }, Bs = { background: "{content.background}", borderColor: "{treetable.border.color}", color: "{content.color}", padding: "0.75rem 1rem" }, xs = { fontWeight: "600" }, $s = { background: "{content.background}", borderColor: "{treetable.border.color}", color: "{content.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem" }, ws = { width: "0.5rem" }, Rs = { width: "1px", color: "{primary.color}" }, zs = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", size: "0.875rem" }, Ss = { size: "2rem" }, Ds = { hoverBackground: "{content.hover.background}", selectedHoverBackground: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}", selectedHoverColor: "{primary.color}", size: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Vs = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, Ws = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, Is = { light: { root: { borderColor: "{content.border.color}" }, bodyCell: { selectedBorderColor: "{primary.100}" } }, dark: { root: { borderColor: "{surface.800}" }, bodyCell: { selectedBorderColor: "{primary.900}" } } }, Fs = `
|
|
1656
1685
|
.p-treetable-mask.p-overlay-mask {
|
|
1657
1686
|
--px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3));
|
|
1658
1687
|
}
|
|
1659
|
-
`,
|
|
1660
|
-
for (var e in r || (r = {}))
|
|
1661
|
-
if (K) for (var e of K(r))
|
|
1688
|
+
`, Ms = { root: bs, header: hs, headerCell: vs, columnTitle: ks, row: ys, bodyCell: Cs, footerCell: Bs, columnFooter: xs, footer: $s, columnResizer: ws, resizeIndicator: Rs, sortIcon: zs, loadingIcon: Ss, nodeToggleButton: Ds, paginatorTop: Vs, paginatorBottom: Ws, colorScheme: Is, css: Fs }, Os = { mask: { background: "{content.background}", color: "{text.muted.color}" }, icon: { size: "2rem" } }, As = { loader: Os }, Hs = Object.defineProperty, Ts = Object.defineProperties, Ns = Object.getOwnPropertyDescriptors, K = Object.getOwnPropertySymbols, js = Object.prototype.hasOwnProperty, Ls = Object.prototype.propertyIsEnumerable, J = (o, r, e) => r in o ? Hs(o, r, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[r] = e, Z, Ps = (Z = ((o, r) => {
|
|
1689
|
+
for (var e in r || (r = {})) js.call(r, e) && J(o, e, r[e]);
|
|
1690
|
+
if (K) for (var e of K(r)) Ls.call(r, e) && J(o, e, r[e]);
|
|
1662
1691
|
return o;
|
|
1663
|
-
})({},
|
|
1664
|
-
const
|
|
1692
|
+
})({}, Kr), Ts(Z, Ns({ components: { accordion: $r, autocomplete: Mr, avatar: jr, badge: Ur, blockui: Zr, breadcrumb: ee, button: te, card: ue, carousel: he, cascadeselect: $e, checkbox: ze, chip: Fe, colorpicker: Te, confirmdialog: Le, confirmpopup: Ee, contextmenu: _e, datatable: Ca, dataview: Sa, datepicker: Ga, dialog: on, divider: tn, dock: cn, drawer: pn, editor: Cn, fieldset: Rn, fileupload: Mn, floatlabel: Nn, galleria: ot, iconfield: et, iftalabel: tt, image: st, imagecompare: ft, inlinemessage: ht, inplace: yt, inputchips: $t, inputgroup: Rt, inputnumber: Vt, inputotp: Ft, inputtext: Ot, knob: jt, listbox: Gt, megamenu: nd, menu: sd, menubar: hd, message: zd, metergroup: Md, multiselect: Xd, orderlist: Ud, organizationchart: Zd, overlaybadge: ol, paginator: tl, panel: fl, panelmenu: vl, password: $l, picklist: zl, popover: Vl, progressbar: Ml, progressspinner: Al, radiobutton: Nl, rating: Pl, ripple: Xl, scrollpanel: Gl, select: ni, selectbutton: li, skeleton: si, slider: bi, speeddial: vi, splitbutton: yi, splitter: $i, stepper: Fi, steps: Ni, tabmenu: qi, tabs: _i, tabview: dc, tag: sc, terminal: mc, textarea: bc, tieredmenu: xc, timeline: Dc, toast: Nc, togglebutton: Xc, toggleswitch: Gc, toolbar: Kc, tooltip: _c, tree: ls, treeselect: ps, treetable: Ms, virtualscroller: As }, css: oa })));
|
|
1693
|
+
const Ys = {
|
|
1665
1694
|
startsWith: "Começa com",
|
|
1666
1695
|
contains: "Contém",
|
|
1667
1696
|
notContains: "Não contém",
|
|
@@ -1726,12 +1755,12 @@ const As = {
|
|
|
1726
1755
|
firstDayOfWeek: 1,
|
|
1727
1756
|
dateFormat: "dd/mm/yy"
|
|
1728
1757
|
};
|
|
1729
|
-
function
|
|
1758
|
+
function Hu(o) {
|
|
1730
1759
|
o.use(Wo, {
|
|
1731
|
-
locale:
|
|
1760
|
+
locale: Ys,
|
|
1732
1761
|
ripple: !0,
|
|
1733
1762
|
theme: {
|
|
1734
|
-
preset:
|
|
1763
|
+
preset: Ps,
|
|
1735
1764
|
options: {
|
|
1736
1765
|
darkModeSelector: "none",
|
|
1737
1766
|
cssLayer: {
|
|
@@ -1742,7 +1771,7 @@ function Du(o) {
|
|
|
1742
1771
|
}
|
|
1743
1772
|
});
|
|
1744
1773
|
}
|
|
1745
|
-
function
|
|
1774
|
+
function Tu() {
|
|
1746
1775
|
const o = Io();
|
|
1747
1776
|
return { success: (n, a = "Sucesso") => {
|
|
1748
1777
|
o.add({
|
|
@@ -1760,7 +1789,7 @@ function Vu() {
|
|
|
1760
1789
|
});
|
|
1761
1790
|
} };
|
|
1762
1791
|
}
|
|
1763
|
-
function
|
|
1792
|
+
function Nu(o, r) {
|
|
1764
1793
|
function e(n) {
|
|
1765
1794
|
o.value && (o.value.contains(n.target) || r(n));
|
|
1766
1795
|
}
|
|
@@ -1772,33 +1801,34 @@ function Wu(o, r) {
|
|
|
1772
1801
|
}
|
|
1773
1802
|
export {
|
|
1774
1803
|
Fo as BaseAlert,
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1804
|
+
gu as BaseAutoComplete,
|
|
1805
|
+
mu as BaseAvatar,
|
|
1806
|
+
L as BaseButton,
|
|
1807
|
+
pu as BaseCard,
|
|
1808
|
+
bu as BaseChart,
|
|
1809
|
+
hu as BaseCheckbox,
|
|
1810
|
+
vu as BaseCurrency,
|
|
1811
|
+
ku as BaseDate,
|
|
1812
|
+
yu as BaseDatePicker,
|
|
1813
|
+
Cu as BaseDialog,
|
|
1814
|
+
Bu as BaseDrawer,
|
|
1815
|
+
xu as BaseEmpty,
|
|
1816
|
+
$u as BaseField,
|
|
1817
|
+
wu as BaseForbidden,
|
|
1788
1818
|
qo as BaseInputMask,
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1819
|
+
Ru as BaseInputText,
|
|
1820
|
+
zu as BaseModal,
|
|
1821
|
+
Su as BaseMultiSelect,
|
|
1822
|
+
Du as BasePanel,
|
|
1823
|
+
Vu as BaseRadioButton,
|
|
1824
|
+
Wu as BaseRouterLink,
|
|
1825
|
+
Iu as BaseSectionDivider,
|
|
1826
|
+
Fu as BaseSelect,
|
|
1827
|
+
Mu as BaseSwitch,
|
|
1828
|
+
Ou as BaseTextarea,
|
|
1829
|
+
A as FaIcon,
|
|
1830
|
+
Hu as setupPrimeVue,
|
|
1831
|
+
Tu as useAppToast,
|
|
1832
|
+
Nu as useClickOutside,
|
|
1833
|
+
Au as vFocus
|
|
1804
1834
|
};
|