@stencitecnologia/front-kit 0.1.22 → 0.1.24
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 +364 -352
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { computed as M, openBlock as R, createElementBlock as P, normalizeClass as So, toDisplayString as oo, createCommentVNode as q, createBlock as H, unref as T, mergeProps as Q, withCtx as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { computed as M, openBlock as R, createElementBlock as P, normalizeClass as So, toDisplayString as oo, createCommentVNode as q, createBlock as H, unref as T, mergeProps as Q, withCtx as U, createVNode as so, renderSlot as G, createElementVNode as io, ref as po, onMounted as tr, onBeforeUnmount as ar, normalizeStyle as Io, watch as ur, createTextVNode as Po, createSlots as Ho, Fragment as fr, Teleport as gr, withModifiers as mr } from "vue";
|
|
2
|
+
import pr from "primevue/autocomplete";
|
|
3
|
+
import qo from "primevue/button";
|
|
4
4
|
import { FontAwesomeIcon as br } from "@fortawesome/vue-fontawesome";
|
|
5
5
|
import hr from "primevue/chart";
|
|
6
6
|
import nr from "primevue/inputtext";
|
|
@@ -45,7 +45,7 @@ const Vr = {
|
|
|
45
45
|
role: "alert"
|
|
46
46
|
}, oo(o.message), 3)) : q("", !0);
|
|
47
47
|
}
|
|
48
|
-
},
|
|
48
|
+
}, Kf = {
|
|
49
49
|
__name: "BaseAutoComplete",
|
|
50
50
|
props: {
|
|
51
51
|
modelValue: {
|
|
@@ -80,7 +80,7 @@ const Vr = {
|
|
|
80
80
|
get: () => e.modelValue,
|
|
81
81
|
set: (l) => t("update:modelValue", l)
|
|
82
82
|
}), c = (l) => t("complete", l), i = (l) => t("item-select", l), m = () => t("clear");
|
|
83
|
-
return (l, b) => (R(), H(T(
|
|
83
|
+
return (l, b) => (R(), H(T(pr), Q({
|
|
84
84
|
modelValue: a.value,
|
|
85
85
|
"onUpdate:modelValue": b[0] || (b[0] = ($) => a.value = $),
|
|
86
86
|
suggestions: o.suggestions,
|
|
@@ -107,7 +107,10 @@ const Vr = {
|
|
|
107
107
|
setup(o) {
|
|
108
108
|
return (r, e) => (R(), H(T(br), Q({ icon: o.icon }, r.$attrs), null, 16, ["icon"]));
|
|
109
109
|
}
|
|
110
|
-
}, Or = {
|
|
110
|
+
}, Or = {
|
|
111
|
+
key: 1,
|
|
112
|
+
class: "pi pi-spin pi-spinner"
|
|
113
|
+
}, Lr = { key: 2 }, Fo = {
|
|
111
114
|
__name: "BaseButton",
|
|
112
115
|
props: {
|
|
113
116
|
label: {
|
|
@@ -155,41 +158,50 @@ const Vr = {
|
|
|
155
158
|
"ui-btn-ghost": r.variant === "ghost",
|
|
156
159
|
"ui-btn-outline": r.variant === "outline",
|
|
157
160
|
"ui-btn-error": r.variant === "error",
|
|
161
|
+
"ui-btn-danger": r.variant === "danger",
|
|
158
162
|
"ui-btn-sm": r.size === "sm"
|
|
159
163
|
}
|
|
160
164
|
]), t = M(() => r.disabled || r.loading);
|
|
161
|
-
return (a, c) => (R(), H(T(
|
|
165
|
+
return (a, c) => (R(), H(T(qo), Q(a.$attrs, {
|
|
162
166
|
loading: o.loading,
|
|
163
167
|
disabled: t.value,
|
|
164
168
|
class: e.value,
|
|
165
169
|
type: o.type
|
|
166
170
|
}), {
|
|
167
|
-
default:
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
171
|
+
default: U(() => [
|
|
172
|
+
so(T(qo), Q(a.$attrs, {
|
|
173
|
+
disabled: t.value,
|
|
174
|
+
class: e.value,
|
|
175
|
+
type: o.type
|
|
176
|
+
}), {
|
|
177
|
+
default: U(() => [
|
|
178
|
+
o.icon && !o.loading ? (R(), H(Mo, {
|
|
179
|
+
key: 0,
|
|
180
|
+
icon: o.icon
|
|
181
|
+
}, null, 8, ["icon"])) : q("", !0),
|
|
182
|
+
o.loading ? (R(), P("span", Or)) : q("", !0),
|
|
183
|
+
o.label ? (R(), P("span", Lr, oo(o.label), 1)) : q("", !0),
|
|
184
|
+
G(a.$slots, "default")
|
|
185
|
+
]),
|
|
186
|
+
_: 3
|
|
187
|
+
}, 16, ["disabled", "class", "type"])
|
|
176
188
|
]),
|
|
177
189
|
_: 3
|
|
178
190
|
}, 16, ["loading", "disabled", "class", "type"]));
|
|
179
191
|
}
|
|
180
|
-
},
|
|
192
|
+
}, Tr = {
|
|
181
193
|
key: 0,
|
|
182
194
|
class: "ui-card-header"
|
|
183
|
-
},
|
|
195
|
+
}, Wr = {
|
|
184
196
|
key: 0,
|
|
185
197
|
class: "ui-card-title"
|
|
186
|
-
},
|
|
198
|
+
}, Fr = {
|
|
187
199
|
key: 1,
|
|
188
200
|
class: "ui-card-subtitle"
|
|
189
|
-
},
|
|
201
|
+
}, jr = { class: "ui-card-content" }, Ir = {
|
|
190
202
|
key: 1,
|
|
191
203
|
class: "ui-card-footer"
|
|
192
|
-
},
|
|
204
|
+
}, Hr = { class: "ui-card-footer-content" }, o0 = {
|
|
193
205
|
__name: "BaseCard",
|
|
194
206
|
props: {
|
|
195
207
|
title: {
|
|
@@ -226,25 +238,25 @@ const Vr = {
|
|
|
226
238
|
return (a, c) => (R(), P("section", {
|
|
227
239
|
class: So(t.value)
|
|
228
240
|
}, [
|
|
229
|
-
e.value ? (R(), P("header",
|
|
230
|
-
o.title ? (R(), P("div",
|
|
231
|
-
o.subtitle ? (R(), P("div",
|
|
241
|
+
e.value ? (R(), P("header", Tr, [
|
|
242
|
+
o.title ? (R(), P("div", Wr, oo(o.title), 1)) : q("", !0),
|
|
243
|
+
o.subtitle ? (R(), P("div", Fr, oo(o.subtitle), 1)) : q("", !0)
|
|
232
244
|
])) : q("", !0),
|
|
233
|
-
io("div",
|
|
234
|
-
|
|
245
|
+
io("div", jr, [
|
|
246
|
+
so(Vr, {
|
|
235
247
|
message: o.alertMessage,
|
|
236
248
|
variant: o.alertVariant
|
|
237
249
|
}, null, 8, ["message", "variant"]),
|
|
238
250
|
G(a.$slots, "default")
|
|
239
251
|
]),
|
|
240
|
-
o.hasFooter ? (R(), P("footer",
|
|
241
|
-
io("div",
|
|
252
|
+
o.hasFooter ? (R(), P("footer", Ir, [
|
|
253
|
+
io("div", Hr, [
|
|
242
254
|
G(a.$slots, "footer")
|
|
243
255
|
])
|
|
244
256
|
])) : q("", !0)
|
|
245
257
|
], 2));
|
|
246
258
|
}
|
|
247
|
-
},
|
|
259
|
+
}, r0 = {
|
|
248
260
|
__name: "BaseChart",
|
|
249
261
|
props: {
|
|
250
262
|
type: {
|
|
@@ -345,7 +357,7 @@ const Vr = {
|
|
|
345
357
|
style: Io({ height: m.value, width: "100%" })
|
|
346
358
|
}, null, 8, ["type", "data", "options", "style"])) : q("", !0);
|
|
347
359
|
}
|
|
348
|
-
},
|
|
360
|
+
}, Ar = { class: "ui-currency" }, e0 = {
|
|
349
361
|
__name: "BaseCurrency",
|
|
350
362
|
props: {
|
|
351
363
|
modelValue: {
|
|
@@ -382,8 +394,8 @@ const Vr = {
|
|
|
382
394
|
const b = c(l.target.value);
|
|
383
395
|
t("update:modelValue", b), l.target.value = a(b);
|
|
384
396
|
};
|
|
385
|
-
return (l, b) => (R(), P("div",
|
|
386
|
-
|
|
397
|
+
return (l, b) => (R(), P("div", Ar, [
|
|
398
|
+
so(T(nr), Q({
|
|
387
399
|
value: i.value,
|
|
388
400
|
placeholder: o.placeholder,
|
|
389
401
|
disabled: o.disabled,
|
|
@@ -395,7 +407,7 @@ const Vr = {
|
|
|
395
407
|
}, l.$attrs, { onInput: m }), null, 16, ["value", "placeholder", "disabled", "readonly", "class"])
|
|
396
408
|
]));
|
|
397
409
|
}
|
|
398
|
-
},
|
|
410
|
+
}, Nr = {
|
|
399
411
|
__name: "BaseInputMask",
|
|
400
412
|
props: {
|
|
401
413
|
modelValue: {
|
|
@@ -447,7 +459,7 @@ const Vr = {
|
|
|
447
459
|
]
|
|
448
460
|
}, c.$attrs), null, 16, ["modelValue", "mask", "slot-char", "auto-clear", "disabled", "readonly", "class"]));
|
|
449
461
|
}
|
|
450
|
-
},
|
|
462
|
+
}, t0 = {
|
|
451
463
|
__name: "BaseDate",
|
|
452
464
|
props: {
|
|
453
465
|
modelValue: {
|
|
@@ -558,7 +570,7 @@ const Vr = {
|
|
|
558
570
|
C(u), a("update:modelValue", u), c.value && c.value.hide();
|
|
559
571
|
}
|
|
560
572
|
}, A = () => {
|
|
561
|
-
b.value &&
|
|
573
|
+
b.value && _.value && V(), a("blur");
|
|
562
574
|
}, j = (u) => {
|
|
563
575
|
c.value && c.value.toggle(u);
|
|
564
576
|
}, O = () => {
|
|
@@ -574,10 +586,10 @@ const Vr = {
|
|
|
574
586
|
}, S = M({
|
|
575
587
|
get: () => i.value,
|
|
576
588
|
set: (u) => W(u)
|
|
577
|
-
}),
|
|
589
|
+
}), _ = M(
|
|
578
590
|
() => b.value && !!i.value && !f(i.value)
|
|
579
591
|
);
|
|
580
|
-
return r({ hasPartialInput:
|
|
592
|
+
return r({ hasPartialInput: _ }), ur(
|
|
581
593
|
() => t.modelValue,
|
|
582
594
|
(u) => {
|
|
583
595
|
if (u === null) {
|
|
@@ -592,8 +604,8 @@ const Vr = {
|
|
|
592
604
|
},
|
|
593
605
|
{ immediate: !0 }
|
|
594
606
|
), (u, s) => (R(), H(T(vr), { class: "ui-inputgroup" }, {
|
|
595
|
-
default:
|
|
596
|
-
(R(), H(
|
|
607
|
+
default: U(() => [
|
|
608
|
+
(R(), H(Nr, Q({
|
|
597
609
|
key: l.value,
|
|
598
610
|
modelValue: S.value,
|
|
599
611
|
"onUpdate:modelValue": s[0] || (s[0] = (n) => S.value = n),
|
|
@@ -602,8 +614,8 @@ const Vr = {
|
|
|
602
614
|
disabled: o.disabled,
|
|
603
615
|
invalid: o.invalid
|
|
604
616
|
}, u.$attrs, { onBlur: A }), null, 16, ["modelValue", "mask", "placeholder", "disabled", "invalid"])),
|
|
605
|
-
|
|
606
|
-
default:
|
|
617
|
+
so(T(kr), { class: "ui-inputgroup-addon" }, {
|
|
618
|
+
default: U(() => [
|
|
607
619
|
o.showClear ? (R(), H(Fo, {
|
|
608
620
|
key: 0,
|
|
609
621
|
type: "button",
|
|
@@ -612,7 +624,7 @@ const Vr = {
|
|
|
612
624
|
"aria-label": "Limpar data",
|
|
613
625
|
onClick: V
|
|
614
626
|
}, {
|
|
615
|
-
default:
|
|
627
|
+
default: U(() => [...s[2] || (s[2] = [
|
|
616
628
|
Po(" Limpar ", -1)
|
|
617
629
|
])]),
|
|
618
630
|
_: 1
|
|
@@ -625,19 +637,19 @@ const Vr = {
|
|
|
625
637
|
"aria-label": "Selecionar hoje",
|
|
626
638
|
onClick: O
|
|
627
639
|
}, {
|
|
628
|
-
default:
|
|
640
|
+
default: U(() => [...s[3] || (s[3] = [
|
|
629
641
|
Po(" Hoje ", -1)
|
|
630
642
|
])]),
|
|
631
643
|
_: 1
|
|
632
644
|
}, 8, ["disabled"])) : q("", !0),
|
|
633
|
-
|
|
645
|
+
so(Fo, {
|
|
634
646
|
type: "button",
|
|
635
647
|
variant: "ghost",
|
|
636
648
|
disabled: o.disabled,
|
|
637
649
|
"aria-label": "Abrir calendário",
|
|
638
650
|
onClick: j
|
|
639
651
|
}, {
|
|
640
|
-
default:
|
|
652
|
+
default: U(() => [
|
|
641
653
|
o.calendarIcon ? (R(), H(Mo, {
|
|
642
654
|
key: 0,
|
|
643
655
|
class: "text-lg",
|
|
@@ -649,12 +661,12 @@ const Vr = {
|
|
|
649
661
|
]),
|
|
650
662
|
_: 1
|
|
651
663
|
}),
|
|
652
|
-
|
|
664
|
+
so(T(yr), {
|
|
653
665
|
ref_key: "popoverRef",
|
|
654
666
|
ref: c
|
|
655
667
|
}, {
|
|
656
|
-
default:
|
|
657
|
-
|
|
668
|
+
default: U(() => [
|
|
669
|
+
so(T(ir), {
|
|
658
670
|
modelValue: m.value,
|
|
659
671
|
"onUpdate:modelValue": [
|
|
660
672
|
s[1] || (s[1] = (n) => m.value = n),
|
|
@@ -672,7 +684,7 @@ const Vr = {
|
|
|
672
684
|
_: 1
|
|
673
685
|
}));
|
|
674
686
|
}
|
|
675
|
-
},
|
|
687
|
+
}, a0 = {
|
|
676
688
|
__name: "BaseDatePicker",
|
|
677
689
|
props: {
|
|
678
690
|
modelValue: {
|
|
@@ -709,13 +721,13 @@ const Vr = {
|
|
|
709
721
|
for (const [t, a] of r)
|
|
710
722
|
e[t] = a;
|
|
711
723
|
return e;
|
|
712
|
-
},
|
|
724
|
+
}, Pr = {
|
|
713
725
|
key: 0,
|
|
714
726
|
class: "ui-dialog-body"
|
|
715
|
-
},
|
|
727
|
+
}, qr = {
|
|
716
728
|
key: 1,
|
|
717
729
|
class: "ui-dialog-content"
|
|
718
|
-
},
|
|
730
|
+
}, Er = {
|
|
719
731
|
__name: "BaseDialog",
|
|
720
732
|
props: {
|
|
721
733
|
modelValue: {
|
|
@@ -778,14 +790,14 @@ const Vr = {
|
|
|
778
790
|
onHide: l,
|
|
779
791
|
onShow: b
|
|
780
792
|
}, Ho({
|
|
781
|
-
default:
|
|
782
|
-
m.value && !$.$slots.default ? (R(), P("div",
|
|
793
|
+
default: U(() => [
|
|
794
|
+
m.value && !$.$slots.default ? (R(), P("div", Pr, [
|
|
783
795
|
o.icon ? (R(), H(Mo, {
|
|
784
796
|
key: 0,
|
|
785
797
|
icon: o.icon,
|
|
786
798
|
class: "ui-dialog-icon"
|
|
787
799
|
}, null, 8, ["icon"])) : q("", !0),
|
|
788
|
-
o.content ? (R(), P("p",
|
|
800
|
+
o.content ? (R(), P("p", qr, oo(o.content), 1)) : q("", !0)
|
|
789
801
|
])) : q("", !0),
|
|
790
802
|
G($.$slots, "default", {}, void 0, !0)
|
|
791
803
|
]),
|
|
@@ -793,21 +805,21 @@ const Vr = {
|
|
|
793
805
|
}, [
|
|
794
806
|
$.$slots.header ? {
|
|
795
807
|
name: "header",
|
|
796
|
-
fn:
|
|
808
|
+
fn: U(() => [
|
|
797
809
|
G($.$slots, "header", {}, void 0, !0)
|
|
798
810
|
]),
|
|
799
811
|
key: "0"
|
|
800
812
|
} : void 0,
|
|
801
813
|
$.$slots.footer ? {
|
|
802
814
|
name: "footer",
|
|
803
|
-
fn:
|
|
815
|
+
fn: U(() => [
|
|
804
816
|
G($.$slots, "footer", {}, void 0, !0)
|
|
805
817
|
]),
|
|
806
818
|
key: "1"
|
|
807
819
|
} : void 0
|
|
808
820
|
]), 1032, ["visible", "header", "closable", "dismissable-mask", "close-on-escape", "style"]));
|
|
809
821
|
}
|
|
810
|
-
},
|
|
822
|
+
}, n0 = /* @__PURE__ */ Ao(Er, [["__scopeId", "data-v-d952cadc"]]), Ur = { class: "ui-drawer-content" }, i0 = /* @__PURE__ */ Object.assign({
|
|
811
823
|
inheritAttrs: !1
|
|
812
824
|
}, {
|
|
813
825
|
__name: "BaseDrawer",
|
|
@@ -840,8 +852,8 @@ const Vr = {
|
|
|
840
852
|
}, m = (l) => {
|
|
841
853
|
t("update:visible", l);
|
|
842
854
|
};
|
|
843
|
-
return (l, b) => (R(), P(
|
|
844
|
-
(R(), H(
|
|
855
|
+
return (l, b) => (R(), P(fr, null, [
|
|
856
|
+
(R(), H(gr, { to: "body" }, [
|
|
845
857
|
a.value ? (R(), P("div", {
|
|
846
858
|
key: 0,
|
|
847
859
|
class: "ui-drawer-backdrop",
|
|
@@ -849,7 +861,7 @@ const Vr = {
|
|
|
849
861
|
onClick: i
|
|
850
862
|
})) : q("", !0)
|
|
851
863
|
])),
|
|
852
|
-
|
|
864
|
+
so(T(Cr), Q(l.$attrs, {
|
|
853
865
|
modal: o.modal,
|
|
854
866
|
dismissable: o.dismissable,
|
|
855
867
|
header: o.title,
|
|
@@ -859,8 +871,8 @@ const Vr = {
|
|
|
859
871
|
class: "ui-drawer",
|
|
860
872
|
"onUpdate:visible": m
|
|
861
873
|
}), {
|
|
862
|
-
default:
|
|
863
|
-
io("div",
|
|
874
|
+
default: U(() => [
|
|
875
|
+
io("div", Ur, [
|
|
864
876
|
G(l.$slots, "default")
|
|
865
877
|
])
|
|
866
878
|
]),
|
|
@@ -868,10 +880,10 @@ const Vr = {
|
|
|
868
880
|
}, 16, ["modal", "dismissable", "header", "visible", "position"])
|
|
869
881
|
], 64));
|
|
870
882
|
}
|
|
871
|
-
}),
|
|
883
|
+
}), _r = { class: "ui-empty" }, Xr = { class: "ui-empty__media" }, Zr = ["src"], Gr = { class: "ui-empty__content" }, Jr = { class: "ui-empty__title" }, Qr = {
|
|
872
884
|
key: 0,
|
|
873
885
|
class: "ui-empty__description"
|
|
874
|
-
},
|
|
886
|
+
}, Kr = { class: "ui-empty__actions" }, oe = {
|
|
875
887
|
__name: "BaseEmpty",
|
|
876
888
|
props: {
|
|
877
889
|
icon: {
|
|
@@ -893,36 +905,36 @@ const Vr = {
|
|
|
893
905
|
},
|
|
894
906
|
setup(o) {
|
|
895
907
|
const r = o, e = M(() => !!r.image), t = M(() => !!r.description);
|
|
896
|
-
return (a, c) => (R(), P("div",
|
|
897
|
-
io("div",
|
|
908
|
+
return (a, c) => (R(), P("div", _r, [
|
|
909
|
+
io("div", Xr, [
|
|
898
910
|
e.value ? (R(), P("img", {
|
|
899
911
|
key: 0,
|
|
900
912
|
src: o.image,
|
|
901
913
|
alt: "",
|
|
902
914
|
class: "ui-empty__image"
|
|
903
|
-
}, null, 8,
|
|
915
|
+
}, null, 8, Zr)) : (R(), H(Mo, {
|
|
904
916
|
key: 1,
|
|
905
917
|
icon: o.icon,
|
|
906
918
|
class: "ui-empty__icon"
|
|
907
919
|
}, null, 8, ["icon"]))
|
|
908
920
|
]),
|
|
909
|
-
io("div",
|
|
910
|
-
io("h3",
|
|
911
|
-
t.value ? (R(), P("p",
|
|
912
|
-
io("div",
|
|
921
|
+
io("div", Gr, [
|
|
922
|
+
io("h3", Jr, oo(o.title), 1),
|
|
923
|
+
t.value ? (R(), P("p", Qr, oo(o.description), 1)) : q("", !0),
|
|
924
|
+
io("div", Kr, [
|
|
913
925
|
G(a.$slots, "default", {}, void 0, !0)
|
|
914
926
|
])
|
|
915
927
|
])
|
|
916
928
|
]));
|
|
917
929
|
}
|
|
918
|
-
},
|
|
930
|
+
}, d0 = /* @__PURE__ */ Ao(oe, [["__scopeId", "data-v-91327e2b"]]), re = { class: "ui-field" }, ee = ["for"], te = { class: "ui-control" }, ae = {
|
|
919
931
|
key: 1,
|
|
920
932
|
class: "ui-error",
|
|
921
933
|
role: "alert"
|
|
922
|
-
},
|
|
934
|
+
}, ne = {
|
|
923
935
|
key: 2,
|
|
924
936
|
class: "ui-help"
|
|
925
|
-
},
|
|
937
|
+
}, l0 = {
|
|
926
938
|
__name: "BaseField",
|
|
927
939
|
props: {
|
|
928
940
|
label: {
|
|
@@ -944,19 +956,19 @@ const Vr = {
|
|
|
944
956
|
},
|
|
945
957
|
setup(o) {
|
|
946
958
|
const r = o, e = M(() => !!r.label), t = M(() => !!r.error), a = M(() => !!r.help);
|
|
947
|
-
return (c, i) => (R(), P("div",
|
|
959
|
+
return (c, i) => (R(), P("div", re, [
|
|
948
960
|
e.value ? (R(), P("label", {
|
|
949
961
|
key: 0,
|
|
950
962
|
class: "ui-label",
|
|
951
963
|
for: o.forId
|
|
952
|
-
}, oo(o.label), 9,
|
|
953
|
-
io("div",
|
|
964
|
+
}, oo(o.label), 9, ee)) : q("", !0),
|
|
965
|
+
io("div", te, [
|
|
954
966
|
G(c.$slots, "default")
|
|
955
967
|
]),
|
|
956
|
-
t.value ? (R(), P("small",
|
|
968
|
+
t.value ? (R(), P("small", ae, oo(o.error), 1)) : a.value ? (R(), P("small", ne, oo(o.help), 1)) : q("", !0)
|
|
957
969
|
]));
|
|
958
970
|
}
|
|
959
|
-
},
|
|
971
|
+
}, c0 = {
|
|
960
972
|
__name: "BaseInputText",
|
|
961
973
|
props: {
|
|
962
974
|
modelValue: {
|
|
@@ -993,7 +1005,7 @@ const Vr = {
|
|
|
993
1005
|
]
|
|
994
1006
|
}, c.$attrs), null, 16, ["modelValue", "disabled", "readonly", "class"]));
|
|
995
1007
|
}
|
|
996
|
-
},
|
|
1008
|
+
}, s0 = {
|
|
997
1009
|
__name: "BaseModal",
|
|
998
1010
|
props: {
|
|
999
1011
|
modelValue: {
|
|
@@ -1048,28 +1060,28 @@ const Vr = {
|
|
|
1048
1060
|
onHide: m,
|
|
1049
1061
|
onShow: l
|
|
1050
1062
|
}, Ho({
|
|
1051
|
-
default:
|
|
1063
|
+
default: U(() => [
|
|
1052
1064
|
G(b.$slots, "default")
|
|
1053
1065
|
]),
|
|
1054
1066
|
_: 2
|
|
1055
1067
|
}, [
|
|
1056
1068
|
b.$slots.header ? {
|
|
1057
1069
|
name: "header",
|
|
1058
|
-
fn:
|
|
1070
|
+
fn: U(() => [
|
|
1059
1071
|
G(b.$slots, "header")
|
|
1060
1072
|
]),
|
|
1061
1073
|
key: "0"
|
|
1062
1074
|
} : void 0,
|
|
1063
1075
|
b.$slots.footer ? {
|
|
1064
1076
|
name: "footer",
|
|
1065
|
-
fn:
|
|
1077
|
+
fn: U(() => [
|
|
1066
1078
|
G(b.$slots, "footer")
|
|
1067
1079
|
]),
|
|
1068
1080
|
key: "1"
|
|
1069
1081
|
} : void 0
|
|
1070
1082
|
]), 1032, ["visible", "header", "closable", "dismissable-mask", "close-on-escape", "style"]));
|
|
1071
1083
|
}
|
|
1072
|
-
},
|
|
1084
|
+
}, u0 = {
|
|
1073
1085
|
__name: "BaseMultiSelect",
|
|
1074
1086
|
props: {
|
|
1075
1087
|
modelValue: {
|
|
@@ -1129,7 +1141,7 @@ const Vr = {
|
|
|
1129
1141
|
class: { "p-invalid": o.invalid }
|
|
1130
1142
|
}, c.$attrs), null, 16, ["modelValue", "options", "option-label", "option-value", "placeholder", "disabled", "loading", "filter", "class"]));
|
|
1131
1143
|
}
|
|
1132
|
-
},
|
|
1144
|
+
}, ie = {
|
|
1133
1145
|
__name: "BasePanel",
|
|
1134
1146
|
props: {
|
|
1135
1147
|
header: {
|
|
@@ -1161,28 +1173,28 @@ const Vr = {
|
|
|
1161
1173
|
collapsed: o.collapsed,
|
|
1162
1174
|
class: So(e.value)
|
|
1163
1175
|
}, Ho({
|
|
1164
|
-
default:
|
|
1176
|
+
default: U(() => [
|
|
1165
1177
|
G(t.$slots, "default", {}, void 0, !0)
|
|
1166
1178
|
]),
|
|
1167
1179
|
_: 2
|
|
1168
1180
|
}, [
|
|
1169
1181
|
t.$slots.header ? {
|
|
1170
1182
|
name: "header",
|
|
1171
|
-
fn:
|
|
1183
|
+
fn: U(() => [
|
|
1172
1184
|
G(t.$slots, "header", {}, void 0, !0)
|
|
1173
1185
|
]),
|
|
1174
1186
|
key: "0"
|
|
1175
1187
|
} : void 0,
|
|
1176
1188
|
t.$slots.icons ? {
|
|
1177
1189
|
name: "icons",
|
|
1178
|
-
fn:
|
|
1190
|
+
fn: U(() => [
|
|
1179
1191
|
G(t.$slots, "icons", {}, void 0, !0)
|
|
1180
1192
|
]),
|
|
1181
1193
|
key: "1"
|
|
1182
1194
|
} : void 0
|
|
1183
1195
|
]), 1032, ["header", "toggleable", "collapsed", "class"]));
|
|
1184
1196
|
}
|
|
1185
|
-
},
|
|
1197
|
+
}, f0 = /* @__PURE__ */ Ao(ie, [["__scopeId", "data-v-cc034b6b"]]), g0 = {
|
|
1186
1198
|
__name: "BaseRadioButton",
|
|
1187
1199
|
props: {
|
|
1188
1200
|
modelValue: {
|
|
@@ -1226,7 +1238,7 @@ const Vr = {
|
|
|
1226
1238
|
class: [{ "p-invalid": o.invalid }]
|
|
1227
1239
|
}, c.$attrs), null, 16, ["modelValue", "value", "name", "input-id", "disabled", "class"]));
|
|
1228
1240
|
}
|
|
1229
|
-
},
|
|
1241
|
+
}, m0 = {
|
|
1230
1242
|
__name: "BaseRouterLink",
|
|
1231
1243
|
props: {
|
|
1232
1244
|
to: {
|
|
@@ -1261,18 +1273,18 @@ const Vr = {
|
|
|
1261
1273
|
to: e.value ? void 0 : o.to,
|
|
1262
1274
|
class: So(t.value),
|
|
1263
1275
|
"aria-disabled": e.value,
|
|
1264
|
-
onClick: c[0] || (c[0] =
|
|
1276
|
+
onClick: c[0] || (c[0] = mr((i) => e.value && i.preventDefault(), ["prevent"]))
|
|
1265
1277
|
}, {
|
|
1266
|
-
default:
|
|
1278
|
+
default: U(() => [
|
|
1267
1279
|
G(a.$slots, "default")
|
|
1268
1280
|
]),
|
|
1269
1281
|
_: 3
|
|
1270
1282
|
}, 8, ["to", "class", "aria-disabled"]));
|
|
1271
1283
|
}
|
|
1272
|
-
},
|
|
1284
|
+
}, de = { class: "ui-section-divider" }, le = {
|
|
1273
1285
|
key: 0,
|
|
1274
1286
|
class: "ui-section-divider__label"
|
|
1275
|
-
},
|
|
1287
|
+
}, p0 = {
|
|
1276
1288
|
__name: "BaseSectionDivider",
|
|
1277
1289
|
props: {
|
|
1278
1290
|
label: {
|
|
@@ -1282,12 +1294,12 @@ const Vr = {
|
|
|
1282
1294
|
},
|
|
1283
1295
|
setup(o) {
|
|
1284
1296
|
const r = o, e = M(() => !!r.label);
|
|
1285
|
-
return (t, a) => (R(), P("div",
|
|
1286
|
-
e.value ? (R(), P("span",
|
|
1297
|
+
return (t, a) => (R(), P("div", de, [
|
|
1298
|
+
e.value ? (R(), P("span", le, oo(o.label), 1)) : q("", !0),
|
|
1287
1299
|
a[0] || (a[0] = io("div", { class: "ui-section-divider__line" }, null, -1))
|
|
1288
1300
|
]));
|
|
1289
1301
|
}
|
|
1290
|
-
},
|
|
1302
|
+
}, b0 = {
|
|
1291
1303
|
__name: "BaseSelect",
|
|
1292
1304
|
props: {
|
|
1293
1305
|
modelValue: {
|
|
@@ -1351,7 +1363,7 @@ const Vr = {
|
|
|
1351
1363
|
]
|
|
1352
1364
|
}, i.$attrs), null, 16, ["modelValue", "options", "option-label", "option-value", "placeholder", "disabled", "loading", "class"]));
|
|
1353
1365
|
}
|
|
1354
|
-
},
|
|
1366
|
+
}, h0 = {
|
|
1355
1367
|
__name: "BaseSwitch",
|
|
1356
1368
|
props: {
|
|
1357
1369
|
modelValue: {
|
|
@@ -1387,7 +1399,7 @@ const Vr = {
|
|
|
1387
1399
|
class: "base-switch"
|
|
1388
1400
|
}, null, 8, ["modelValue", "input-id", "disabled"]));
|
|
1389
1401
|
}
|
|
1390
|
-
},
|
|
1402
|
+
}, v0 = {
|
|
1391
1403
|
__name: "BaseTextarea",
|
|
1392
1404
|
props: {
|
|
1393
1405
|
modelValue: {
|
|
@@ -1434,7 +1446,7 @@ const Vr = {
|
|
|
1434
1446
|
]
|
|
1435
1447
|
}, c.$attrs), null, 16, ["modelValue", "rows", "auto-resize", "disabled", "readonly", "class"]));
|
|
1436
1448
|
}
|
|
1437
|
-
},
|
|
1449
|
+
}, k0 = {
|
|
1438
1450
|
mounted(o) {
|
|
1439
1451
|
const r = () => {
|
|
1440
1452
|
typeof o?.focus == "function" && o.focus();
|
|
@@ -1446,7 +1458,7 @@ const Vr = {
|
|
|
1446
1458
|
});
|
|
1447
1459
|
}
|
|
1448
1460
|
};
|
|
1449
|
-
var le = { transitionDuration: "{transition.duration}" }, ce = { borderWidth: "0 0 1px 0", borderColor: "{content.border.color}" }, se = { 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" } }, ue = { borderWidth: "0", borderColor: "{content.border.color}", background: "{content.background}", color: "{text.color}", padding: "0 1.125rem 1.125rem 1.125rem" }, fe = { root: le, panel: ce, header: se, content: ue }, ge = { 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}" }, me = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, pe = { padding: "{list.padding}", gap: "{list.gap}" }, 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}" }, he = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, ve = { 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}" } }, ke = { borderRadius: "{border.radius.sm}" }, ye = { padding: "{list.option.padding}" }, $e = { 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}" } } }, Ce = { root: ge, overlay: me, list: pe, option: be, optionGroup: he, dropdown: ve, chip: ke, emptyMessage: ye, colorScheme: $e }, xe = { width: "2rem", height: "2rem", fontSize: "1rem", background: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, we = { size: "1rem" }, Be = { borderColor: "{content.background}", offset: "-0.75rem" }, Re = { width: "3rem", height: "3rem", fontSize: "1.5rem", icon: { size: "1.5rem" }, group: { offset: "-1rem" } }, De = { width: "4rem", height: "4rem", fontSize: "2rem", icon: { size: "2rem" }, group: { offset: "-1.5rem" } }, Se = { root: xe, icon: we, group: Be, lg: Re, xl: De }, Me = { borderRadius: "{border.radius.md}", padding: "0 0.5rem", fontSize: "0.75rem", fontWeight: "700", minWidth: "1.5rem", height: "1.5rem" }, ze = { size: "0.5rem" }, Ye = { fontSize: "0.625rem", minWidth: "1.25rem", height: "1.25rem" }, Ve = { fontSize: "0.875rem", minWidth: "1.75rem", height: "1.75rem" }, Oe = { fontSize: "1rem", minWidth: "2rem", height: "2rem" }, Le = { 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}" } } }, Te = { root: Me, dot: ze, sm: Ye, lg: Ve, xl: Oe, colorScheme: Le }, We = { 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" } }, Fe = { 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}" } } } } }, je = { primitive: We, semantic: Fe }, Ie = { borderRadius: "{content.border.radius}" }, He = { root: Ie }, Ae = { padding: "1rem", background: "{content.background}", gap: "0.5rem", transitionDuration: "{transition.duration}" }, Ne = { 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}" } }, Pe = { color: "{navigation.item.icon.color}" }, qe = { root: Ae, item: Ne, separator: Pe }, Ee = { 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}" }, Ue = { 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}" } } }, _e = { root: Ee, colorScheme: Ue }, Xe = { 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)" }, Ze = { padding: "1.25rem", gap: "0.5rem" }, Ge = { gap: "0.5rem" }, Je = { fontSize: "1.25rem", fontWeight: "500" }, Qe = { color: "{text.muted.color}" }, Ke = { root: Xe, body: Ze, caption: Ge, title: Je, subtitle: Qe }, ot = { transitionDuration: "{transition.duration}" }, rt = { gap: "0.25rem" }, et = { padding: "1rem", gap: "0.5rem" }, tt = { 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}" } }, at = { light: { indicator: { background: "{surface.200}", hoverBackground: "{surface.300}", activeBackground: "{primary.color}" } }, dark: { indicator: { background: "{surface.700}", hoverBackground: "{surface.600}", activeBackground: "{primary.color}" } } }, nt = { root: ot, content: rt, indicatorList: et, indicator: tt, colorScheme: at }, it = { 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}" } }, dt = { width: "2.5rem", color: "{form.field.icon.color}" }, lt = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, ct = { padding: "{list.padding}", gap: "{list.gap}", mobileIndent: "1rem" }, st = { 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" } }, ut = { color: "{form.field.icon.color}" }, ft = { root: it, dropdown: dt, overlay: lt, list: ct, option: st, clearIcon: ut }, gt = { 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" } }, mt = { 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" } }, pt = { root: gt, icon: mt }, bt = { borderRadius: "16px", paddingX: "0.75rem", paddingY: "0.5rem", gap: "0.5rem", transitionDuration: "{transition.duration}" }, ht = { width: "2rem", height: "2rem" }, vt = { size: "1rem" }, kt = { 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}" } }, yt = { 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}" } } }, $t = { root: bt, image: ht, icon: vt, removeIcon: kt, colorScheme: yt }, Ct = { transitionDuration: "{transition.duration}" }, xt = { 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}" } }, wt = { shadow: "{overlay.popover.shadow}", borderRadius: "{overlay.popover.borderRadius}" }, Bt = { light: { panel: { background: "{surface.800}", borderColor: "{surface.900}" }, handle: { color: "{surface.0}" } }, dark: { panel: { background: "{surface.900}", borderColor: "{surface.700}" }, handle: { color: "{surface.0}" } } }, Rt = { root: Ct, preview: xt, panel: wt, colorScheme: Bt }, Dt = { size: "2rem", color: "{overlay.modal.color}" }, St = { gap: "1rem" }, Mt = { icon: Dt, content: St }, zt = { 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" }, Yt = { padding: "{overlay.popover.padding}", gap: "1rem" }, Vt = { size: "1.5rem", color: "{overlay.popover.color}" }, Ot = { gap: "0.5rem", padding: "0 {overlay.popover.padding} {overlay.popover.padding} {overlay.popover.padding}" }, Lt = { root: zt, content: Yt, icon: Vt, footer: Ot }, Tt = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, Wt = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, Ft = { 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}" } }, jt = { mobileIndent: "1rem" }, It = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, Ht = { borderColor: "{content.border.color}" }, At = { root: Tt, list: Wt, item: Ft, submenu: jt, submenuIcon: It, separator: Ht }, Nt = `
|
|
1461
|
+
var ce = { transitionDuration: "{transition.duration}" }, se = { borderWidth: "0 0 1px 0", borderColor: "{content.border.color}" }, ue = { 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" } }, fe = { borderWidth: "0", borderColor: "{content.border.color}", background: "{content.background}", color: "{text.color}", padding: "0 1.125rem 1.125rem 1.125rem" }, ge = { root: ce, panel: se, header: ue, content: fe }, me = { 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}" }, pe = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, be = { padding: "{list.padding}", gap: "{list.gap}" }, he = { 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}" }, ve = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, ke = { 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}" } }, ye = { borderRadius: "{border.radius.sm}" }, $e = { padding: "{list.option.padding}" }, Ce = { 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}" } } }, xe = { root: me, overlay: pe, list: be, option: he, optionGroup: ve, dropdown: ke, chip: ye, emptyMessage: $e, colorScheme: Ce }, we = { width: "2rem", height: "2rem", fontSize: "1rem", background: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, Be = { size: "1rem" }, Re = { borderColor: "{content.background}", offset: "-0.75rem" }, De = { width: "3rem", height: "3rem", fontSize: "1.5rem", icon: { size: "1.5rem" }, group: { offset: "-1rem" } }, Se = { width: "4rem", height: "4rem", fontSize: "2rem", icon: { size: "2rem" }, group: { offset: "-1.5rem" } }, Me = { root: we, icon: Be, group: Re, lg: De, xl: Se }, ze = { borderRadius: "{border.radius.md}", padding: "0 0.5rem", fontSize: "0.75rem", fontWeight: "700", minWidth: "1.5rem", height: "1.5rem" }, Ye = { size: "0.5rem" }, Ve = { fontSize: "0.625rem", minWidth: "1.25rem", height: "1.25rem" }, Oe = { fontSize: "0.875rem", minWidth: "1.75rem", height: "1.75rem" }, Le = { fontSize: "1rem", minWidth: "2rem", height: "2rem" }, Te = { 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}" } } }, We = { root: ze, dot: Ye, sm: Ve, lg: Oe, xl: Le, colorScheme: Te }, Fe = { 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" } }, je = { 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}" } } } } }, Ie = { primitive: Fe, semantic: je }, He = { borderRadius: "{content.border.radius}" }, Ae = { root: He }, Ne = { padding: "1rem", background: "{content.background}", gap: "0.5rem", transitionDuration: "{transition.duration}" }, Pe = { 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}" } }, qe = { color: "{navigation.item.icon.color}" }, Ee = { root: Ne, item: Pe, separator: qe }, Ue = { 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}" }, _e = { 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}" } } }, Xe = { root: Ue, colorScheme: _e }, Ze = { 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)" }, Ge = { padding: "1.25rem", gap: "0.5rem" }, Je = { gap: "0.5rem" }, Qe = { fontSize: "1.25rem", fontWeight: "500" }, Ke = { color: "{text.muted.color}" }, ot = { root: Ze, body: Ge, caption: Je, title: Qe, subtitle: Ke }, rt = { transitionDuration: "{transition.duration}" }, et = { gap: "0.25rem" }, tt = { padding: "1rem", gap: "0.5rem" }, at = { 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}" } }, nt = { light: { indicator: { background: "{surface.200}", hoverBackground: "{surface.300}", activeBackground: "{primary.color}" } }, dark: { indicator: { background: "{surface.700}", hoverBackground: "{surface.600}", activeBackground: "{primary.color}" } } }, it = { root: rt, content: et, indicatorList: tt, indicator: at, colorScheme: nt }, dt = { 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}" } }, lt = { width: "2.5rem", color: "{form.field.icon.color}" }, ct = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, st = { padding: "{list.padding}", gap: "{list.gap}", mobileIndent: "1rem" }, ut = { 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" } }, ft = { color: "{form.field.icon.color}" }, gt = { root: dt, dropdown: lt, overlay: ct, list: st, option: ut, clearIcon: ft }, mt = { 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" } }, pt = { 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" } }, bt = { root: mt, icon: pt }, ht = { borderRadius: "16px", paddingX: "0.75rem", paddingY: "0.5rem", gap: "0.5rem", transitionDuration: "{transition.duration}" }, vt = { width: "2rem", height: "2rem" }, kt = { size: "1rem" }, yt = { 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}" } }, $t = { 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}" } } }, Ct = { root: ht, image: vt, icon: kt, removeIcon: yt, colorScheme: $t }, xt = { transitionDuration: "{transition.duration}" }, wt = { 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}" } }, Bt = { shadow: "{overlay.popover.shadow}", borderRadius: "{overlay.popover.borderRadius}" }, Rt = { light: { panel: { background: "{surface.800}", borderColor: "{surface.900}" }, handle: { color: "{surface.0}" } }, dark: { panel: { background: "{surface.900}", borderColor: "{surface.700}" }, handle: { color: "{surface.0}" } } }, Dt = { root: xt, preview: wt, panel: Bt, colorScheme: Rt }, St = { size: "2rem", color: "{overlay.modal.color}" }, Mt = { gap: "1rem" }, zt = { icon: St, content: Mt }, Yt = { 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" }, Vt = { padding: "{overlay.popover.padding}", gap: "1rem" }, Ot = { size: "1.5rem", color: "{overlay.popover.color}" }, Lt = { gap: "0.5rem", padding: "0 {overlay.popover.padding} {overlay.popover.padding} {overlay.popover.padding}" }, Tt = { root: Yt, content: Vt, icon: Ot, footer: Lt }, Wt = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, Ft = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, 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}" } }, It = { mobileIndent: "1rem" }, Ht = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, At = { borderColor: "{content.border.color}" }, Nt = { root: Wt, list: Ft, item: jt, submenu: It, submenuIcon: Ht, separator: At }, Pt = `
|
|
1450
1462
|
li.p-autocomplete-option,
|
|
1451
1463
|
div.p-cascadeselect-option-content,
|
|
1452
1464
|
li.p-listbox-option,
|
|
@@ -1470,24 +1482,24 @@ var le = { transitionDuration: "{transition.duration}" }, ce = { borderWidth: "0
|
|
|
1470
1482
|
.p-treetable thead.p-treetable-thead>tr>th {
|
|
1471
1483
|
transition: none;
|
|
1472
1484
|
}
|
|
1473
|
-
`,
|
|
1485
|
+
`, qt = { transitionDuration: "{transition.duration}" }, Et = { 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" } }, Ut = { 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" } }, _t = { fontWeight: "600" }, Xt = { 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}" } }, Zt = { borderColor: "{datatable.border.color}", padding: "0.75rem 1rem", sm: { padding: "0.375rem 0.5rem" }, lg: { padding: "1rem 1.25rem" } }, Gt = { 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" } }, Jt = { fontWeight: "600" }, Qt = { 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" } }, Kt = { color: "{primary.color}" }, oa = { width: "0.5rem" }, ra = { width: "1px", color: "{primary.color}" }, ea = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", size: "0.875rem" }, ta = { size: "2rem" }, aa = { 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}" } }, na = { 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}" } }, ia = { borderColor: "{datatable.border.color}", borderWidth: "0 0 1px 0" }, da = { borderColor: "{datatable.border.color}", borderWidth: "0 0 1px 0" }, la = { 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}" } } }, ca = `
|
|
1474
1486
|
.p-datatable-mask.p-overlay-mask {
|
|
1475
1487
|
--px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3));
|
|
1476
1488
|
}
|
|
1477
|
-
`, ca = { root: Pt, header: qt, headerCell: Et, columnTitle: Ut, row: _t, bodyCell: Xt, footerCell: Zt, columnFooter: Gt, footer: Jt, dropPoint: Qt, columnResizer: Kt, resizeIndicator: oa, sortIcon: ra, loadingIcon: ea, rowToggleButton: ta, filter: aa, paginatorTop: na, paginatorBottom: ia, colorScheme: da, css: la }, sa = { borderColor: "transparent", borderWidth: "0", borderRadius: "0", padding: "0" }, ua = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem", borderRadius: "0" }, fa = { background: "{content.background}", color: "{content.color}", borderColor: "transparent", borderWidth: "0", padding: "0", borderRadius: "0" }, ga = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "1px 0 0 0", padding: "0.75rem 1rem", borderRadius: "0" }, ma = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, pa = { borderColor: "{content.border.color}", borderWidth: "1px 0 0 0" }, ba = { root: sa, header: ua, content: fa, footer: ga, paginatorTop: ma, paginatorBottom: pa }, ha = { 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}" }, ka = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", padding: "0 0 0.5rem 0" }, ya = { gap: "0.5rem", fontWeight: "500" }, $a = { 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}" } }, Ca = { color: "{form.field.icon.color}" }, xa = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, wa = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, Ba = { borderColor: "{content.border.color}", gap: "{overlay.popover.padding}" }, Ra = { margin: "0.5rem 0 0 0" }, Da = { padding: "0.25rem", fontWeight: "500", color: "{content.color}" }, Sa = { 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" }, za = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, Ya = { margin: "0.5rem 0 0 0" }, Va = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, Oa = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}" }, La = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}", gap: "0.5rem", buttonGap: "0.25rem" }, Ta = { 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}" } } }, Wa = { root: ha, panel: va, header: ka, title: ya, dropdown: $a, inputIcon: Ca, selectMonth: xa, selectYear: wa, group: Ba, dayView: Ra, weekDay: Da, date: Sa, monthView: Ma, month: za, yearView: Ya, year: Va, buttonbar: Oa, timePicker: La, colorScheme: Ta }, Fa = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", borderRadius: "{overlay.modal.border.radius}", shadow: "{overlay.modal.shadow}" }, ja = { padding: "{overlay.modal.padding}", gap: "0.5rem" }, Ia = { fontSize: "1.25rem", fontWeight: "600" }, Ha = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, Aa = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}", gap: "0.5rem" }, Na = { root: Fa, header: ja, title: Ia, content: Ha, footer: Aa }, Pa = { borderColor: "{content.border.color}" }, qa = { background: "{content.background}", color: "{text.color}" }, Ea = { margin: "1rem 0", padding: "0 1rem", content: { padding: "0 0.5rem" } }, Ua = { margin: "0 1rem", padding: "0.5rem 0", content: { padding: "0.5rem 0" } }, _a = { root: Pa, content: qa, horizontal: Ea, vertical: Ua }, Xa = { background: "rgba(255, 255, 255, 0.1)", borderColor: "rgba(255, 255, 255, 0.2)", padding: "0.5rem", borderRadius: "{border.radius.xl}" }, Za = { 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}" } }, Ga = { root: Xa, item: Za }, Ja = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", shadow: "{overlay.modal.shadow}" }, Qa = { padding: "{overlay.modal.padding}" }, Ka = { fontSize: "1.5rem", fontWeight: "600" }, on = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, rn = { padding: "{overlay.modal.padding}" }, en = { root: Ja, header: Qa, title: Ka, content: on, footer: rn }, tn = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}" }, an = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, nn = { 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}" }, dn = { focusBackground: "{list.option.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, ln = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, cn = { toolbar: tn, toolbarItem: an, overlay: nn, overlayOption: dn, content: ln }, sn = { 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}" }, un = { 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}" } }, fn = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}" }, gn = { padding: "0" }, mn = { root: sn, legend: un, toggleIcon: fn, content: gn }, pn = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", transitionDuration: "{transition.duration}" }, bn = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "unset", borderWidth: "0", borderRadius: "0", gap: "0.5rem" }, hn = { 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" } }, kn = { gap: "0.5rem" }, yn = { height: "0.25rem" }, $n = { gap: "0.5rem" }, Cn = { root: pn, header: bn, content: hn, file: vn, fileList: kn, progressbar: yn, basic: $n }, xn = { 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" } }, wn = { active: { top: "-1.25rem" } }, Bn = { input: { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, active: { top: "{form.field.padding.y}" } }, Rn = { borderRadius: "{border.radius.xs}", active: { background: "{form.field.background}", padding: "0 0.125rem" } }, Dn = { root: xn, over: wn, in: Bn, on: Rn }, Sn = { 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}" } }, zn = { size: "1.5rem" }, Yn = { background: "{content.background}", padding: "1rem 0.25rem" }, Vn = { 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}" } }, On = { size: "1rem" }, Ln = { background: "rgba(0, 0, 0, 0.5)", color: "{surface.100}", padding: "1rem" }, Tn = { gap: "0.5rem", padding: "1rem" }, Wn = { 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}" } }, Fn = { background: "rgba(0, 0, 0, 0.5)" }, jn = { background: "rgba(255, 255, 255, 0.4)", hoverBackground: "rgba(255, 255, 255, 0.6)", activeBackground: "rgba(255, 255, 255, 0.9)" }, In = { 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}" } }, Hn = { size: "1.5rem" }, An = { 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}" } } }, Nn = { root: Sn, navButton: Mn, navIcon: zn, thumbnailsContent: Yn, thumbnailNavButton: Vn, thumbnailNavButtonIcon: On, caption: Ln, indicatorList: Tn, indicatorButton: Wn, insetIndicatorList: Fn, insetIndicatorButton: jn, closeButton: In, closeButtonIcon: Hn, colorScheme: An }, Pn = { color: "{form.field.icon.color}" }, qn = { icon: Pn }, En = { 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" }, Un = { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, _n = { root: En, input: Un }, Xn = { transitionDuration: "{transition.duration}" }, Zn = { icon: { size: "1.5rem" }, mask: { background: "{mask.background}", color: "{mask.color}" } }, Gn = { 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" }, Jn = { 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}" } }, Qn = { root: Xn, preview: Zn, toolbar: Gn, action: Jn }, Kn = { 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}" } }, oi = { handle: Kn }, ri = { padding: "{form.field.padding.y} {form.field.padding.x}", borderRadius: "{content.border.radius}", gap: "0.5rem" }, ei = { fontWeight: "500" }, ti = { size: "1rem" }, ai = { 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%)" } } }, ni = { root: ri, text: ei, icon: ti, colorScheme: ai }, ii = { 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}" }, di = { hoverBackground: "{content.hover.background}", hoverColor: "{content.hover.color}" }, li = { root: ii, display: di }, ci = { 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}" }, si = { borderRadius: "{border.radius.sm}" }, ui = { light: { chip: { focusBackground: "{surface.200}", color: "{surface.800}" } }, dark: { chip: { focusBackground: "{surface.700}", color: "{surface.0}" } } }, fi = { root: ci, chip: si, colorScheme: ui }, gi = { 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" }, mi = { addon: gi }, pi = { transitionDuration: "{transition.duration}" }, bi = { width: "2.5rem", borderRadius: "{form.field.border.radius}", verticalPadding: "{form.field.padding.y}" }, hi = { 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}" } } }, vi = { root: pi, button: bi, colorScheme: hi }, ki = { gap: "0.5rem" }, yi = { width: "2.5rem", sm: { width: "2rem" }, lg: { width: "3rem" } }, $i = { root: ki, input: yi }, Ci = { 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}" } }, xi = { root: Ci }, wi = { transitionDuration: "{transition.duration}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Bi = { background: "{primary.color}" }, Ri = { background: "{content.border.color}" }, Di = { color: "{text.muted.color}" }, Si = { root: wi, value: Bi, range: Ri, text: Di }, Mi = { 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}" }, zi = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Yi = { 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}" }, Vi = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, Oi = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, Li = { padding: "{list.option.padding}" }, Ti = { light: { option: { stripedBackground: "{surface.50}" } }, dark: { option: { stripedBackground: "{surface.900}" } } }, Wi = { root: Mi, list: zi, option: Yi, optionGroup: Vi, checkmark: Oi, emptyMessage: Li, colorScheme: Ti }, Fi = { 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}" }, ji = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, Ii = { 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}" } }, Hi = { padding: "0", background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", shadow: "{overlay.navigation.shadow}", gap: "0.5rem" }, Ai = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, Ni = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, Pi = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, qi = { borderColor: "{content.border.color}" }, Ei = { 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}" } }, Ui = { root: Fi, baseItem: ji, item: Ii, overlay: Hi, submenu: Ai, submenuLabel: Ni, submenuIcon: Pi, separator: qi, mobileButton: Ei }, _i = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, Xi = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, Zi = { 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}" } }, Gi = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, Ji = { borderColor: "{content.border.color}" }, Qi = { root: _i, list: Xi, item: Zi, submenuLabel: Gi, separator: Ji }, Ki = { 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}" }, od = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, rd = { 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}" } }, ed = { 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}" } }, td = { 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: Ki, baseItem: od, item: rd, submenu: ed, separator: td, mobileButton: ad }, id = { borderRadius: "{content.border.radius}", borderWidth: "1px", transitionDuration: "{transition.duration}" }, dd = { padding: "0.5rem 0.75rem", gap: "0.5rem", sm: { padding: "0.375rem 0.625rem" }, lg: { padding: "0.625rem 0.875rem" } }, ld = { fontSize: "1rem", fontWeight: "500", sm: { fontSize: "0.875rem" }, lg: { fontSize: "1.125rem" } }, cd = { size: "1.125rem", sm: { size: "1rem" }, lg: { size: "1.25rem" } }, sd = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, ud = { size: "1rem", sm: { size: "0.875rem" }, lg: { size: "1.125rem" } }, fd = { root: { borderWidth: "1px" } }, gd = { content: { padding: "0" } }, md = { 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}" } } } }, pd = { root: id, content: dd, text: ld, icon: cd, closeButton: sd, closeIcon: ud, outlined: fd, simple: gd, colorScheme: md }, bd = { borderRadius: "{content.border.radius}", gap: "1rem" }, hd = { background: "{content.border.color}", size: "0.5rem" }, vd = { gap: "0.5rem" }, kd = { size: "0.5rem" }, yd = { size: "1rem" }, $d = { verticalGap: "0.5rem", horizontalGap: "1rem" }, Cd = { root: bd, meters: hd, label: vd, labelMarker: kd, labelIcon: yd, labelList: $d }, xd = { 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}" } }, wd = { width: "2.5rem", color: "{form.field.icon.color}" }, Bd = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Rd = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Dd = { 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" }, Sd = { 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}" }, zd = { borderRadius: "{border.radius.sm}" }, Yd = { padding: "{list.option.padding}" }, Vd = { root: xd, dropdown: wd, overlay: Bd, list: Rd, option: Dd, optionGroup: Sd, chip: zd, clearIcon: Md, emptyMessage: Yd }, Od = { gap: "1.125rem" }, Ld = { gap: "0.5rem" }, Td = { root: Od, controls: Ld }, Wd = { gutter: "0.75rem", transitionDuration: "{transition.duration}" }, Fd = { 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}" }, jd = { 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}" } }, Id = { color: "{content.border.color}", borderRadius: "{content.border.radius}", height: "24px" }, Hd = { root: Wd, node: Fd, nodeToggleButton: jd, connector: Id }, Ad = { outline: { width: "2px", color: "{content.background}" } }, Nd = { root: Ad }, Pd = { 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}" } }, Ed = { color: "{text.muted.color}" }, Ud = { maxWidth: "2.5rem" }, _d = { root: Pd, navButton: qd, currentPageReport: Ed, jumpToPageInput: Ud }, Xd = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, Zd = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "{content.border.color}", borderWidth: "0", borderRadius: "0" }, Gd = { padding: "0.375rem 1.125rem" }, Jd = { fontWeight: "600" }, Qd = { padding: "0 1.125rem 1.125rem 1.125rem" }, Kd = { padding: "0 1.125rem 1.125rem 1.125rem" }, ol = { root: Xd, header: Zd, toggleableHeader: Gd, title: Jd, content: Qd, footer: Kd }, rl = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, el = { 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}" } }, tl = { 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}" } }, al = { indent: "1rem" }, nl = { color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}" }, il = { root: rl, panel: el, item: tl, submenu: al, submenuIcon: nl }, dl = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: ".75rem" }, ll = { 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}" }, sl = { gap: "0.5rem" }, ul = { light: { strength: { weakBackground: "{red.500}", mediumBackground: "{amber.500}", strongBackground: "{green.500}" } }, dark: { strength: { weakBackground: "{red.400}", mediumBackground: "{amber.400}", strongBackground: "{green.400}" } } }, fl = { meter: dl, icon: ll, overlay: cl, content: sl, colorScheme: ul }, gl = { gap: "1.125rem" }, ml = { gap: "0.5rem" }, pl = { root: gl, controls: ml }, bl = { 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" }, hl = { padding: "{overlay.popover.padding}" }, vl = { root: bl, content: hl }, kl = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: "1.25rem" }, yl = { background: "{primary.color}" }, $l = { color: "{primary.contrast.color}", fontSize: "0.75rem", fontWeight: "600" }, Cl = { root: kl, value: yl, label: $l }, xl = { 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}" } } }, wl = { colorScheme: xl }, Bl = { 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" } }, Rl = { size: "0.75rem", checkedColor: "{primary.contrast.color}", checkedHoverColor: "{primary.contrast.color}", disabledColor: "{form.field.disabled.color}", sm: { size: "0.5rem" }, lg: { size: "1rem" } }, Dl = { root: Bl, icon: Rl }, Sl = { 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}" }, zl = { root: Sl, icon: Ml }, Yl = { light: { root: { background: "rgba(0,0,0,0.1)" } }, dark: { root: { background: "rgba(255,255,255,0.3)" } } }, Vl = { colorScheme: Yl }, Ol = { transitionDuration: "{transition.duration}" }, Ll = { 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}" } }, Tl = { light: { bar: { background: "{surface.100}" } }, dark: { bar: { background: "{surface.800}" } } }, Wl = { root: Ol, bar: Ll, colorScheme: Tl }, Fl = { 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}" } }, jl = { width: "2.5rem", color: "{form.field.icon.color}" }, Il = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Hl = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Al = { 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}" }, Nl = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, Pl = { color: "{form.field.icon.color}" }, ql = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, El = { padding: "{list.option.padding}" }, Ul = { root: Fl, dropdown: jl, overlay: Il, list: Hl, option: Al, optionGroup: Nl, clearIcon: Pl, checkmark: ql, emptyMessage: El }, _l = { borderRadius: "{form.field.border.radius}" }, Xl = { light: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } }, dark: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } } }, Zl = { root: _l, colorScheme: Xl }, Gl = { borderRadius: "{content.border.radius}" }, Jl = { 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)" } } }, Ql = { root: Gl, colorScheme: Jl }, Kl = { transitionDuration: "{transition.duration}" }, oc = { background: "{content.border.color}", borderRadius: "{content.border.radius}", size: "3px" }, rc = { background: "{primary.color}" }, ec = { 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}" } }, tc = { light: { handle: { content: { background: "{surface.0}" } } }, dark: { handle: { content: { background: "{surface.950}" } } } }, ac = { root: Kl, track: oc, range: rc, handle: ec, colorScheme: tc }, nc = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, ic = { root: nc }, dc = { 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)" }, lc = { root: dc }, cc = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", transitionDuration: "{transition.duration}" }, sc = { background: "{content.border.color}" }, uc = { 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}" } }, fc = { root: cc, gutter: sc, handle: uc }, gc = { transitionDuration: "{transition.duration}" }, mc = { background: "{content.border.color}", activeBackground: "{primary.color}", margin: "0 0 0 1.625rem", size: "2px" }, pc = { padding: "0.5rem", gap: "1rem" }, bc = { 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" }, hc = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, vc = { 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)" }, kc = { padding: "0.875rem 0.5rem 1.125rem 0.5rem" }, yc = { background: "{content.background}", color: "{content.color}", padding: "0", indent: "1rem" }, $c = { root: gc, separator: mc, step: pc, stepHeader: bc, stepTitle: hc, stepNumber: vc, steppanels: kc, steppanel: yc }, Cc = { transitionDuration: "{transition.duration}" }, xc = { background: "{content.border.color}" }, wc = { 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" }, Bc = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, Rc = { 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)" }, Dc = { root: Cc, separator: xc, itemLink: wc, itemLabel: Bc, itemNumber: Rc }, Sc = { transitionDuration: "{transition.duration}" }, Mc = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, zc = { 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}" } }, Yc = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, Vc = { height: "1px", bottom: "-1px", background: "{primary.color}" }, Oc = { root: Sc, tablist: Mc, item: zc, itemIcon: Yc, activeBar: Vc }, Lc = { transitionDuration: "{transition.duration}" }, Tc = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, Wc = { 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}" } }, Fc = { 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}" } }, jc = { 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}" } }, Ic = { height: "1px", bottom: "-1px", background: "{primary.color}" }, Hc = { 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%)" } } }, Ac = { root: Lc, tablist: Tc, tab: Wc, tabpanel: Fc, navButton: jc, activeBar: Ic, colorScheme: Hc }, Nc = { transitionDuration: "{transition.duration}" }, Pc = { background: "{content.background}", borderColor: "{content.border.color}" }, qc = { borderColor: "{content.border.color}", activeBorderColor: "{primary.color}", color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, Ec = { background: "{content.background}", color: "{content.color}" }, Uc = { background: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}" }, _c = { 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%)" } } }, Xc = { root: Nc, tabList: Pc, tab: qc, tabPanel: Ec, navButton: Uc, colorScheme: _c }, Zc = { fontSize: "0.875rem", fontWeight: "700", padding: "0.25rem 0.5rem", gap: "0.25rem", borderRadius: "{content.border.radius}", roundedBorderRadius: "{border.radius.xl}" }, Gc = { size: "0.75rem" }, Jc = { 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}" } } }, Qc = { root: Zc, icon: Gc, colorScheme: Jc }, Kc = { 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}" }, os = { gap: "0.25rem" }, rs = { margin: "2px 0" }, es = { root: Kc, prompt: os, commandResponse: rs }, ts = { 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}" } }, as = { root: ts }, ns = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, is = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, ds = { 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}" } }, ls = { mobileIndent: "1rem" }, cs = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, ss = { borderColor: "{content.border.color}" }, us = { root: ns, list: is, item: ds, submenu: ls, submenuIcon: cs, separator: ss }, fs = { minHeight: "5rem" }, gs = { eventContent: { padding: "1rem 0" } }, ms = { eventContent: { padding: "0 1rem" } }, ps = { 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)" } }, bs = { color: "{content.border.color}", size: "2px" }, hs = { event: fs, horizontal: gs, vertical: ms, eventMarker: ps, eventConnector: bs }, vs = { width: "25rem", borderRadius: "{content.border.radius}", borderWidth: "1px", transitionDuration: "{transition.duration}" }, ks = { size: "1.125rem" }, ys = { padding: "{overlay.popover.padding}", gap: "0.5rem" }, $s = { gap: "0.5rem" }, Cs = { fontWeight: "500", fontSize: "1rem" }, xs = { fontWeight: "500", fontSize: "0.875rem" }, ws = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, Bs = { size: "1rem" }, Rs = { 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" } } } } }, Ds = { root: vs, icon: ks, content: ys, text: $s, summary: Cs, detail: xs, closeButton: ws, closeIcon: Bs, colorScheme: Rs }, Ss = { 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" } }, Ms = { disabledColor: "{form.field.disabled.color}" }, zs = { 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" } }, Ys = { 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}" } } }, Vs = { root: Ss, icon: Ms, content: zs, colorScheme: Ys }, Os = { 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" }, Ls = { borderRadius: "50%", size: "1rem" }, Ts = { 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}" } } }, Ws = { root: Os, handle: Ls, colorScheme: Ts }, Fs = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", gap: "0.5rem", padding: "0.75rem" }, js = { root: Fs }, Is = { maxWidth: "12.5rem", gutter: "0.25rem", shadow: "{overlay.popover.shadow}", padding: "0.5rem 0.75rem", borderRadius: "{overlay.popover.border.radius}" }, Hs = { light: { root: { background: "{surface.700}", color: "{surface.0}" } }, dark: { root: { background: "{surface.700}", color: "{surface.0}" } } }, As = { root: Is, colorScheme: Hs }, Ns = { background: "{content.background}", color: "{content.color}", padding: "1rem", gap: "2px", indent: "1rem", transitionDuration: "{transition.duration}" }, Ps = { 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" }, qs = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", selectedColor: "{highlight.color}" }, Es = { 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}" } }, Us = { size: "2rem" }, _s = { margin: "0 0 0.5rem 0" }, Xs = `
|
|
1489
|
+
`, sa = { root: qt, header: Et, headerCell: Ut, columnTitle: _t, row: Xt, bodyCell: Zt, footerCell: Gt, columnFooter: Jt, footer: Qt, dropPoint: Kt, columnResizer: oa, resizeIndicator: ra, sortIcon: ea, loadingIcon: ta, rowToggleButton: aa, filter: na, paginatorTop: ia, paginatorBottom: da, colorScheme: la, css: ca }, ua = { borderColor: "transparent", borderWidth: "0", borderRadius: "0", padding: "0" }, fa = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem", borderRadius: "0" }, ga = { background: "{content.background}", color: "{content.color}", borderColor: "transparent", borderWidth: "0", padding: "0", borderRadius: "0" }, ma = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "1px 0 0 0", padding: "0.75rem 1rem", borderRadius: "0" }, pa = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, ba = { borderColor: "{content.border.color}", borderWidth: "1px 0 0 0" }, ha = { root: ua, header: fa, content: ga, footer: ma, paginatorTop: pa, paginatorBottom: ba }, va = { transitionDuration: "{transition.duration}" }, ka = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.popover.shadow}", padding: "{overlay.popover.padding}" }, ya = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", padding: "0 0 0.5rem 0" }, $a = { gap: "0.5rem", fontWeight: "500" }, Ca = { 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}" } }, xa = { color: "{form.field.icon.color}" }, wa = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, Ba = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, Ra = { borderColor: "{content.border.color}", gap: "{overlay.popover.padding}" }, Da = { margin: "0.5rem 0 0 0" }, Sa = { padding: "0.25rem", fontWeight: "500", color: "{content.color}" }, Ma = { 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}" } }, za = { margin: "0.5rem 0 0 0" }, Ya = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, Va = { margin: "0.5rem 0 0 0" }, Oa = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, La = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}" }, Ta = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}", gap: "0.5rem", buttonGap: "0.25rem" }, Wa = { 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}" } } }, Fa = { root: va, panel: ka, header: ya, title: $a, dropdown: Ca, inputIcon: xa, selectMonth: wa, selectYear: Ba, group: Ra, dayView: Da, weekDay: Sa, date: Ma, monthView: za, month: Ya, yearView: Va, year: Oa, buttonbar: La, timePicker: Ta, colorScheme: Wa }, ja = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", borderRadius: "{overlay.modal.border.radius}", shadow: "{overlay.modal.shadow}" }, Ia = { padding: "{overlay.modal.padding}", gap: "0.5rem" }, Ha = { fontSize: "1.25rem", fontWeight: "600" }, Aa = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, Na = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}", gap: "0.5rem" }, Pa = { root: ja, header: Ia, title: Ha, content: Aa, footer: Na }, qa = { borderColor: "{content.border.color}" }, Ea = { background: "{content.background}", color: "{text.color}" }, Ua = { margin: "1rem 0", padding: "0 1rem", content: { padding: "0 0.5rem" } }, _a = { margin: "0 1rem", padding: "0.5rem 0", content: { padding: "0.5rem 0" } }, Xa = { root: qa, content: Ea, horizontal: Ua, vertical: _a }, Za = { background: "rgba(255, 255, 255, 0.1)", borderColor: "rgba(255, 255, 255, 0.2)", padding: "0.5rem", borderRadius: "{border.radius.xl}" }, Ga = { 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}" } }, Ja = { root: Za, item: Ga }, Qa = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", shadow: "{overlay.modal.shadow}" }, Ka = { padding: "{overlay.modal.padding}" }, on = { fontSize: "1.5rem", fontWeight: "600" }, rn = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, en = { padding: "{overlay.modal.padding}" }, tn = { root: Qa, header: Ka, title: on, content: rn, footer: en }, an = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}" }, nn = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, dn = { 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}" }, ln = { focusBackground: "{list.option.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" }, cn = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, sn = { toolbar: an, toolbarItem: nn, overlay: dn, overlayOption: ln, content: cn }, un = { 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}" }, fn = { 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}" } }, gn = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}" }, mn = { padding: "0" }, pn = { root: un, legend: fn, toggleIcon: gn, content: mn }, bn = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", transitionDuration: "{transition.duration}" }, hn = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "unset", borderWidth: "0", borderRadius: "0", gap: "0.5rem" }, vn = { highlightBorderColor: "{primary.color}", padding: "0 1.125rem 1.125rem 1.125rem", gap: "1rem" }, kn = { padding: "1rem", gap: "1rem", borderColor: "{content.border.color}", info: { gap: "0.5rem" } }, yn = { gap: "0.5rem" }, $n = { height: "0.25rem" }, Cn = { gap: "0.5rem" }, xn = { root: bn, header: hn, content: vn, file: kn, fileList: yn, progressbar: $n, basic: Cn }, wn = { 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" } }, Bn = { active: { top: "-1.25rem" } }, Rn = { input: { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, active: { top: "{form.field.padding.y}" } }, Dn = { borderRadius: "{border.radius.xs}", active: { background: "{form.field.background}", padding: "0 0.125rem" } }, Sn = { root: wn, over: Bn, in: Rn, on: Dn }, Mn = { borderWidth: "1px", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", transitionDuration: "{transition.duration}" }, zn = { 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}" } }, Yn = { size: "1.5rem" }, Vn = { background: "{content.background}", padding: "1rem 0.25rem" }, On = { 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}" } }, Ln = { size: "1rem" }, Tn = { background: "rgba(0, 0, 0, 0.5)", color: "{surface.100}", padding: "1rem" }, Wn = { gap: "0.5rem", padding: "1rem" }, Fn = { 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}" } }, jn = { background: "rgba(0, 0, 0, 0.5)" }, In = { background: "rgba(255, 255, 255, 0.4)", hoverBackground: "rgba(255, 255, 255, 0.6)", activeBackground: "rgba(255, 255, 255, 0.9)" }, Hn = { 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}" } }, An = { size: "1.5rem" }, Nn = { 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}" } } }, Pn = { root: Mn, navButton: zn, navIcon: Yn, thumbnailsContent: Vn, thumbnailNavButton: On, thumbnailNavButtonIcon: Ln, caption: Tn, indicatorList: Wn, indicatorButton: Fn, insetIndicatorList: jn, insetIndicatorButton: In, closeButton: Hn, closeButtonIcon: An, colorScheme: Nn }, qn = { color: "{form.field.icon.color}" }, En = { icon: qn }, Un = { 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" }, _n = { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, Xn = { root: Un, input: _n }, Zn = { transitionDuration: "{transition.duration}" }, Gn = { icon: { size: "1.5rem" }, mask: { background: "{mask.background}", color: "{mask.color}" } }, Jn = { 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" }, Qn = { 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}" } }, Kn = { root: Zn, preview: Gn, toolbar: Jn, action: Qn }, oi = { 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}" } }, ri = { handle: oi }, ei = { padding: "{form.field.padding.y} {form.field.padding.x}", borderRadius: "{content.border.radius}", gap: "0.5rem" }, ti = { fontWeight: "500" }, ai = { size: "1rem" }, ni = { 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%)" } } }, ii = { root: ei, text: ti, icon: ai, colorScheme: ni }, di = { 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}" }, li = { hoverBackground: "{content.hover.background}", hoverColor: "{content.hover.color}" }, ci = { root: di, display: li }, si = { 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}" }, ui = { borderRadius: "{border.radius.sm}" }, fi = { light: { chip: { focusBackground: "{surface.200}", color: "{surface.800}" } }, dark: { chip: { focusBackground: "{surface.700}", color: "{surface.0}" } } }, gi = { root: si, chip: ui, colorScheme: fi }, mi = { 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" }, pi = { addon: mi }, bi = { transitionDuration: "{transition.duration}" }, hi = { width: "2.5rem", borderRadius: "{form.field.border.radius}", verticalPadding: "{form.field.padding.y}" }, vi = { 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}" } } }, ki = { root: bi, button: hi, colorScheme: vi }, yi = { gap: "0.5rem" }, $i = { width: "2.5rem", sm: { width: "2rem" }, lg: { width: "3rem" } }, Ci = { root: yi, input: $i }, xi = { 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}" } }, wi = { root: xi }, Bi = { transitionDuration: "{transition.duration}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ri = { background: "{primary.color}" }, Di = { background: "{content.border.color}" }, Si = { color: "{text.muted.color}" }, Mi = { root: Bi, value: Ri, range: Di, text: Si }, zi = { 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}" }, Yi = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Vi = { 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}" }, Li = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, Ti = { padding: "{list.option.padding}" }, Wi = { light: { option: { stripedBackground: "{surface.50}" } }, dark: { option: { stripedBackground: "{surface.900}" } } }, Fi = { root: zi, list: Yi, option: Vi, optionGroup: Oi, checkmark: Li, emptyMessage: Ti, colorScheme: Wi }, ji = { 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}" }, Ii = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, Hi = { 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}" } }, Ai = { padding: "0", background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", shadow: "{overlay.navigation.shadow}", gap: "0.5rem" }, Ni = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, Pi = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, qi = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, Ei = { borderColor: "{content.border.color}" }, Ui = { 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}" } }, _i = { root: ji, baseItem: Ii, item: Hi, overlay: Ai, submenu: Ni, submenuLabel: Pi, submenuIcon: qi, separator: Ei, mobileButton: Ui }, Xi = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, Zi = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, Gi = { 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}" } }, Ji = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, Qi = { borderColor: "{content.border.color}" }, Ki = { root: Xi, list: Zi, item: Gi, submenuLabel: Ji, separator: Qi }, od = { 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}" }, rd = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, ed = { 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}" } }, td = { 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}" } }, ad = { borderColor: "{content.border.color}" }, nd = { 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}" } }, id = { root: od, baseItem: rd, item: ed, submenu: td, separator: ad, mobileButton: nd }, dd = { borderRadius: "{content.border.radius}", borderWidth: "1px", transitionDuration: "{transition.duration}" }, ld = { padding: "0.5rem 0.75rem", gap: "0.5rem", sm: { padding: "0.375rem 0.625rem" }, lg: { padding: "0.625rem 0.875rem" } }, cd = { fontSize: "1rem", fontWeight: "500", sm: { fontSize: "0.875rem" }, lg: { fontSize: "1.125rem" } }, sd = { size: "1.125rem", sm: { size: "1rem" }, lg: { size: "1.25rem" } }, ud = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, fd = { size: "1rem", sm: { size: "0.875rem" }, lg: { size: "1.125rem" } }, gd = { root: { borderWidth: "1px" } }, md = { content: { padding: "0" } }, pd = { 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}" } } } }, bd = { root: dd, content: ld, text: cd, icon: sd, closeButton: ud, closeIcon: fd, outlined: gd, simple: md, colorScheme: pd }, hd = { borderRadius: "{content.border.radius}", gap: "1rem" }, vd = { background: "{content.border.color}", size: "0.5rem" }, kd = { gap: "0.5rem" }, yd = { size: "0.5rem" }, $d = { size: "1rem" }, Cd = { verticalGap: "0.5rem", horizontalGap: "1rem" }, xd = { root: hd, meters: vd, label: kd, labelMarker: yd, labelIcon: $d, labelList: Cd }, wd = { 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}" } }, Bd = { width: "2.5rem", color: "{form.field.icon.color}" }, Rd = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Dd = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Sd = { 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" }, Md = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, zd = { color: "{form.field.icon.color}" }, Yd = { borderRadius: "{border.radius.sm}" }, Vd = { padding: "{list.option.padding}" }, Od = { root: wd, dropdown: Bd, overlay: Rd, list: Dd, option: Sd, optionGroup: Md, chip: Yd, clearIcon: zd, emptyMessage: Vd }, Ld = { gap: "1.125rem" }, Td = { gap: "0.5rem" }, Wd = { root: Ld, controls: Td }, Fd = { gutter: "0.75rem", transitionDuration: "{transition.duration}" }, jd = { 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}" }, Id = { 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}" } }, Hd = { color: "{content.border.color}", borderRadius: "{content.border.radius}", height: "24px" }, Ad = { root: Fd, node: jd, nodeToggleButton: Id, connector: Hd }, Nd = { outline: { width: "2px", color: "{content.background}" } }, Pd = { root: Nd }, qd = { padding: "0.5rem 1rem", gap: "0.25rem", borderRadius: "{content.border.radius}", background: "{content.background}", color: "{content.color}", transitionDuration: "{transition.duration}" }, Ed = { 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}" } }, Ud = { color: "{text.muted.color}" }, _d = { maxWidth: "2.5rem" }, Xd = { root: qd, navButton: Ed, currentPageReport: Ud, jumpToPageInput: _d }, Zd = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, Gd = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "{content.border.color}", borderWidth: "0", borderRadius: "0" }, Jd = { padding: "0.375rem 1.125rem" }, Qd = { fontWeight: "600" }, Kd = { padding: "0 1.125rem 1.125rem 1.125rem" }, ol = { padding: "0 1.125rem 1.125rem 1.125rem" }, rl = { root: Zd, header: Gd, toggleableHeader: Jd, title: Qd, content: Kd, footer: ol }, el = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, tl = { 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}" } }, al = { 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}" } }, nl = { indent: "1rem" }, il = { color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}" }, dl = { root: el, panel: tl, item: al, submenu: nl, submenuIcon: il }, ll = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: ".75rem" }, cl = { color: "{form.field.icon.color}" }, sl = { 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}" }, ul = { gap: "0.5rem" }, fl = { light: { strength: { weakBackground: "{red.500}", mediumBackground: "{amber.500}", strongBackground: "{green.500}" } }, dark: { strength: { weakBackground: "{red.400}", mediumBackground: "{amber.400}", strongBackground: "{green.400}" } } }, gl = { meter: ll, icon: cl, overlay: sl, content: ul, colorScheme: fl }, ml = { gap: "1.125rem" }, pl = { gap: "0.5rem" }, bl = { root: ml, controls: pl }, hl = { 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" }, vl = { padding: "{overlay.popover.padding}" }, kl = { root: hl, content: vl }, yl = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: "1.25rem" }, $l = { background: "{primary.color}" }, Cl = { color: "{primary.contrast.color}", fontSize: "0.75rem", fontWeight: "600" }, xl = { root: yl, value: $l, label: Cl }, wl = { 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}" } } }, Bl = { colorScheme: wl }, Rl = { 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" } }, Dl = { size: "0.75rem", checkedColor: "{primary.contrast.color}", checkedHoverColor: "{primary.contrast.color}", disabledColor: "{form.field.disabled.color}", sm: { size: "0.5rem" }, lg: { size: "1rem" } }, Sl = { root: Rl, icon: Dl }, Ml = { 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}" } }, zl = { size: "1rem", color: "{text.muted.color}", hoverColor: "{primary.color}", activeColor: "{primary.color}" }, Yl = { root: Ml, icon: zl }, Vl = { light: { root: { background: "rgba(0,0,0,0.1)" } }, dark: { root: { background: "rgba(255,255,255,0.3)" } } }, Ol = { colorScheme: Vl }, Ll = { transitionDuration: "{transition.duration}" }, Tl = { 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}" } }, Wl = { light: { bar: { background: "{surface.100}" } }, dark: { bar: { background: "{surface.800}" } } }, Fl = { root: Ll, bar: Tl, colorScheme: Wl }, jl = { 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}" } }, Il = { width: "2.5rem", color: "{form.field.icon.color}" }, Hl = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Al = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Nl = { 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}" }, Pl = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, ql = { color: "{form.field.icon.color}" }, El = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, Ul = { padding: "{list.option.padding}" }, _l = { root: jl, dropdown: Il, overlay: Hl, list: Al, option: Nl, optionGroup: Pl, clearIcon: ql, checkmark: El, emptyMessage: Ul }, Xl = { borderRadius: "{form.field.border.radius}" }, Zl = { light: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } }, dark: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } } }, Gl = { root: Xl, colorScheme: Zl }, Jl = { borderRadius: "{content.border.radius}" }, Ql = { 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)" } } }, Kl = { root: Jl, colorScheme: Ql }, oc = { transitionDuration: "{transition.duration}" }, rc = { background: "{content.border.color}", borderRadius: "{content.border.radius}", size: "3px" }, ec = { background: "{primary.color}" }, tc = { 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}" } }, ac = { light: { handle: { content: { background: "{surface.0}" } } }, dark: { handle: { content: { background: "{surface.950}" } } } }, nc = { root: oc, track: rc, range: ec, handle: tc, colorScheme: ac }, ic = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, dc = { root: ic }, lc = { 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)" }, cc = { root: lc }, sc = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", transitionDuration: "{transition.duration}" }, uc = { background: "{content.border.color}" }, fc = { 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}" } }, gc = { root: sc, gutter: uc, handle: fc }, mc = { transitionDuration: "{transition.duration}" }, pc = { background: "{content.border.color}", activeBackground: "{primary.color}", margin: "0 0 0 1.625rem", size: "2px" }, bc = { padding: "0.5rem", gap: "1rem" }, hc = { 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" }, vc = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, kc = { 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)" }, yc = { padding: "0.875rem 0.5rem 1.125rem 0.5rem" }, $c = { background: "{content.background}", color: "{content.color}", padding: "0", indent: "1rem" }, Cc = { root: mc, separator: pc, step: bc, stepHeader: hc, stepTitle: vc, stepNumber: kc, steppanels: yc, steppanel: $c }, xc = { transitionDuration: "{transition.duration}" }, wc = { background: "{content.border.color}" }, Bc = { 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" }, Rc = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, Dc = { 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)" }, Sc = { root: xc, separator: wc, itemLink: Bc, itemLabel: Rc, itemNumber: Dc }, Mc = { transitionDuration: "{transition.duration}" }, zc = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, Yc = { 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}" } }, Vc = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, Oc = { height: "1px", bottom: "-1px", background: "{primary.color}" }, Lc = { root: Mc, tablist: zc, item: Yc, itemIcon: Vc, activeBar: Oc }, Tc = { transitionDuration: "{transition.duration}" }, Wc = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, Fc = { 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}" } }, jc = { 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}" } }, Ic = { 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}" } }, Hc = { height: "1px", bottom: "-1px", background: "{primary.color}" }, Ac = { 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%)" } } }, Nc = { root: Tc, tablist: Wc, tab: Fc, tabpanel: jc, navButton: Ic, activeBar: Hc, colorScheme: Ac }, Pc = { transitionDuration: "{transition.duration}" }, qc = { 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}" }, Uc = { background: "{content.background}", color: "{content.color}" }, _c = { background: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}" }, Xc = { 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%)" } } }, Zc = { root: Pc, tabList: qc, tab: Ec, tabPanel: Uc, navButton: _c, colorScheme: Xc }, Gc = { fontSize: "0.875rem", fontWeight: "700", padding: "0.25rem 0.5rem", gap: "0.25rem", borderRadius: "{content.border.radius}", roundedBorderRadius: "{border.radius.xl}" }, Jc = { size: "0.75rem" }, Qc = { 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}" } } }, Kc = { root: Gc, icon: Jc, colorScheme: Qc }, os = { 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}" }, rs = { gap: "0.25rem" }, es = { margin: "2px 0" }, ts = { root: os, prompt: rs, commandResponse: es }, as = { 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}" } }, ns = { root: as }, is = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, ds = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, ls = { 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}" } }, cs = { mobileIndent: "1rem" }, ss = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, us = { borderColor: "{content.border.color}" }, fs = { root: is, list: ds, item: ls, submenu: cs, submenuIcon: ss, separator: us }, gs = { minHeight: "5rem" }, ms = { eventContent: { padding: "1rem 0" } }, ps = { eventContent: { padding: "0 1rem" } }, bs = { 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)" } }, hs = { color: "{content.border.color}", size: "2px" }, vs = { event: gs, horizontal: ms, vertical: ps, eventMarker: bs, eventConnector: hs }, ks = { width: "25rem", borderRadius: "{content.border.radius}", borderWidth: "1px", transitionDuration: "{transition.duration}" }, ys = { size: "1.125rem" }, $s = { padding: "{overlay.popover.padding}", gap: "0.5rem" }, Cs = { gap: "0.5rem" }, xs = { fontWeight: "500", fontSize: "1rem" }, ws = { fontWeight: "500", fontSize: "0.875rem" }, Bs = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, Rs = { size: "1rem" }, Ds = { 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" } } } } }, Ss = { root: ks, icon: ys, content: $s, text: Cs, summary: xs, detail: ws, closeButton: Bs, closeIcon: Rs, colorScheme: Ds }, Ms = { 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" } }, zs = { disabledColor: "{form.field.disabled.color}" }, Ys = { 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" } }, Vs = { 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}" } } }, Os = { root: Ms, icon: zs, content: Ys, colorScheme: Vs }, Ls = { 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" }, Ts = { borderRadius: "50%", size: "1rem" }, Ws = { 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}" } } }, Fs = { root: Ls, handle: Ts, colorScheme: Ws }, js = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", gap: "0.5rem", padding: "0.75rem" }, Is = { root: js }, Hs = { maxWidth: "12.5rem", gutter: "0.25rem", shadow: "{overlay.popover.shadow}", padding: "0.5rem 0.75rem", borderRadius: "{overlay.popover.border.radius}" }, As = { light: { root: { background: "{surface.700}", color: "{surface.0}" } }, dark: { root: { background: "{surface.700}", color: "{surface.0}" } } }, Ns = { root: Hs, colorScheme: As }, Ps = { background: "{content.background}", color: "{content.color}", padding: "1rem", gap: "2px", indent: "1rem", transitionDuration: "{transition.duration}" }, qs = { 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}" }, Us = { 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}" } }, _s = { size: "2rem" }, Xs = { margin: "0 0 0.5rem 0" }, Zs = `
|
|
1478
1490
|
.p-tree-mask.p-overlay-mask {
|
|
1479
1491
|
--px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3));
|
|
1480
1492
|
}
|
|
1481
|
-
`,
|
|
1493
|
+
`, Gs = { root: Ps, node: qs, nodeIcon: Es, nodeToggleButton: Us, loadingIcon: _s, filter: Xs, css: Zs }, Js = { 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}" } }, Qs = { width: "2.5rem", color: "{form.field.icon.color}" }, Ks = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, ou = { padding: "{list.padding}" }, ru = { padding: "{list.option.padding}" }, eu = { borderRadius: "{border.radius.sm}" }, tu = { color: "{form.field.icon.color}" }, au = { root: Js, dropdown: Qs, overlay: Ks, tree: ou, emptyMessage: ru, chip: eu, clearIcon: tu }, nu = { transitionDuration: "{transition.duration}" }, iu = { background: "{content.background}", borderColor: "{treetable.border.color}", color: "{content.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem" }, du = { 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}" } }, lu = { fontWeight: "600" }, cu = { 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}" } }, su = { borderColor: "{treetable.border.color}", padding: "0.75rem 1rem", gap: "0.5rem" }, uu = { background: "{content.background}", borderColor: "{treetable.border.color}", color: "{content.color}", padding: "0.75rem 1rem" }, fu = { fontWeight: "600" }, gu = { background: "{content.background}", borderColor: "{treetable.border.color}", color: "{content.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem" }, mu = { width: "0.5rem" }, pu = { width: "1px", color: "{primary.color}" }, bu = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", size: "0.875rem" }, hu = { size: "2rem" }, vu = { 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}" } }, ku = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, yu = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, $u = { light: { root: { borderColor: "{content.border.color}" }, bodyCell: { selectedBorderColor: "{primary.100}" } }, dark: { root: { borderColor: "{surface.800}" }, bodyCell: { selectedBorderColor: "{primary.900}" } } }, Cu = `
|
|
1482
1494
|
.p-treetable-mask.p-overlay-mask {
|
|
1483
1495
|
--px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3));
|
|
1484
1496
|
}
|
|
1485
|
-
`,
|
|
1486
|
-
for (var e in r || (r = {}))
|
|
1487
|
-
if (
|
|
1497
|
+
`, xu = { root: nu, header: iu, headerCell: du, columnTitle: lu, row: cu, bodyCell: su, footerCell: uu, columnFooter: fu, footer: gu, columnResizer: mu, resizeIndicator: pu, sortIcon: bu, loadingIcon: hu, nodeToggleButton: vu, paginatorTop: ku, paginatorBottom: yu, colorScheme: $u, css: Cu }, wu = { mask: { background: "{content.background}", color: "{text.muted.color}" }, icon: { size: "2rem" } }, Bu = { loader: wu }, Ru = Object.defineProperty, Du = Object.defineProperties, Su = Object.getOwnPropertyDescriptors, Eo = Object.getOwnPropertySymbols, Mu = Object.prototype.hasOwnProperty, zu = Object.prototype.propertyIsEnumerable, Uo = (o, r, e) => r in o ? Ru(o, r, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[r] = e, _o, Yu = (_o = ((o, r) => {
|
|
1498
|
+
for (var e in r || (r = {})) Mu.call(r, e) && Uo(o, e, r[e]);
|
|
1499
|
+
if (Eo) for (var e of Eo(r)) zu.call(r, e) && Uo(o, e, r[e]);
|
|
1488
1500
|
return o;
|
|
1489
|
-
})({},
|
|
1490
|
-
const
|
|
1501
|
+
})({}, Ie), Du(_o, Su({ components: { accordion: ge, autocomplete: xe, avatar: Me, badge: We, blockui: Ae, breadcrumb: Ee, button: Xe, card: ot, carousel: it, cascadeselect: gt, checkbox: bt, chip: Ct, colorpicker: Dt, confirmdialog: zt, confirmpopup: Tt, contextmenu: Nt, datatable: sa, dataview: ha, datepicker: Fa, dialog: Pa, divider: Xa, dock: Ja, drawer: tn, editor: sn, fieldset: pn, fileupload: xn, floatlabel: Sn, galleria: Pn, iconfield: En, iftalabel: Xn, image: Kn, imagecompare: ri, inlinemessage: ii, inplace: ci, inputchips: gi, inputgroup: pi, inputnumber: ki, inputotp: Ci, inputtext: wi, knob: Mi, listbox: Fi, megamenu: _i, menu: Ki, menubar: id, message: bd, metergroup: xd, multiselect: Od, orderlist: Wd, organizationchart: Ad, overlaybadge: Pd, paginator: Xd, panel: rl, panelmenu: dl, password: gl, picklist: bl, popover: kl, progressbar: xl, progressspinner: Bl, radiobutton: Sl, rating: Yl, ripple: Ol, scrollpanel: Fl, select: _l, selectbutton: Gl, skeleton: Kl, slider: nc, speeddial: dc, splitbutton: cc, splitter: gc, stepper: Cc, steps: Sc, tabmenu: Lc, tabs: Nc, tabview: Zc, tag: Kc, terminal: ts, textarea: ns, tieredmenu: fs, timeline: vs, toast: Ss, togglebutton: Os, toggleswitch: Fs, toolbar: Is, tooltip: Ns, tree: Gs, treeselect: au, treetable: xu, virtualscroller: Bu }, css: Pt })));
|
|
1502
|
+
const Vu = {
|
|
1491
1503
|
startsWith: "Começa com",
|
|
1492
1504
|
contains: "Contém",
|
|
1493
1505
|
notContains: "Não contém",
|
|
@@ -1552,12 +1564,12 @@ const Yu = {
|
|
|
1552
1564
|
firstDayOfWeek: 1,
|
|
1553
1565
|
dateFormat: "dd/mm/yy"
|
|
1554
1566
|
};
|
|
1555
|
-
function
|
|
1567
|
+
function y0(o) {
|
|
1556
1568
|
o.use(zr, {
|
|
1557
|
-
locale:
|
|
1569
|
+
locale: Vu,
|
|
1558
1570
|
ripple: !0,
|
|
1559
1571
|
theme: {
|
|
1560
|
-
preset:
|
|
1572
|
+
preset: Yu,
|
|
1561
1573
|
options: {
|
|
1562
1574
|
darkModeSelector: "none",
|
|
1563
1575
|
cssLayer: {
|
|
@@ -1568,7 +1580,7 @@ function k0(o) {
|
|
|
1568
1580
|
}
|
|
1569
1581
|
});
|
|
1570
1582
|
}
|
|
1571
|
-
function
|
|
1583
|
+
function $0() {
|
|
1572
1584
|
const o = Yr();
|
|
1573
1585
|
return { success: (t, a = "Sucesso") => {
|
|
1574
1586
|
o.add({
|
|
@@ -1586,7 +1598,7 @@ function y0() {
|
|
|
1586
1598
|
});
|
|
1587
1599
|
} };
|
|
1588
1600
|
}
|
|
1589
|
-
function
|
|
1601
|
+
function C0(o, r) {
|
|
1590
1602
|
function e(t) {
|
|
1591
1603
|
o.value && (o.value.contains(t.target) || r(t));
|
|
1592
1604
|
}
|
|
@@ -1599,12 +1611,12 @@ function $0(o, r) {
|
|
|
1599
1611
|
function vo(o) {
|
|
1600
1612
|
return o && o.__esModule && Object.prototype.hasOwnProperty.call(o, "default") ? o.default : o;
|
|
1601
1613
|
}
|
|
1602
|
-
var $o = { exports: {} },
|
|
1614
|
+
var $o = { exports: {} }, Ou = $o.exports, Xo;
|
|
1603
1615
|
function lr() {
|
|
1604
|
-
return
|
|
1616
|
+
return Xo || (Xo = 1, (function(o, r) {
|
|
1605
1617
|
(function(e, t) {
|
|
1606
1618
|
o.exports = t();
|
|
1607
|
-
})(
|
|
1619
|
+
})(Ou, (function() {
|
|
1608
1620
|
var e = 1e3, t = 6e4, a = 36e5, c = "millisecond", i = "second", m = "minute", l = "hour", b = "day", $ = "week", B = "month", k = "quarter", z = "year", y = "date", p = "Invalid Date", f = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, v = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, C = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(s) {
|
|
1609
1621
|
var n = ["th", "st", "nd", "rd"], d = s % 100;
|
|
1610
1622
|
return "[" + s + (n[(d - 20) % 10] || n[d] || n[0]) + "]";
|
|
@@ -1627,7 +1639,7 @@ function lr() {
|
|
|
1627
1639
|
} }, V = "en", W = {};
|
|
1628
1640
|
W[V] = C;
|
|
1629
1641
|
var F = "$isDayjsObject", A = function(s) {
|
|
1630
|
-
return s instanceof
|
|
1642
|
+
return s instanceof _ || !(!s || !s[F]);
|
|
1631
1643
|
}, j = function s(n, d, h) {
|
|
1632
1644
|
var g;
|
|
1633
1645
|
if (!n) return V;
|
|
@@ -1644,12 +1656,12 @@ function lr() {
|
|
|
1644
1656
|
}, O = function(s, n) {
|
|
1645
1657
|
if (A(s)) return s.clone();
|
|
1646
1658
|
var d = typeof n == "object" ? n : {};
|
|
1647
|
-
return d.date = s, d.args = arguments, new
|
|
1659
|
+
return d.date = s, d.args = arguments, new _(d);
|
|
1648
1660
|
}, S = L;
|
|
1649
1661
|
S.l = j, S.i = A, S.w = function(s, n) {
|
|
1650
1662
|
return O(s, { locale: n.$L, utc: n.$u, x: n.$x, $offset: n.$offset });
|
|
1651
1663
|
};
|
|
1652
|
-
var
|
|
1664
|
+
var _ = (function() {
|
|
1653
1665
|
function s(d) {
|
|
1654
1666
|
this.$L = j(d.locale, null, !0), this.parse(d), this.$x = this.$x || d.x || {}, this[F] = !0;
|
|
1655
1667
|
}
|
|
@@ -1695,15 +1707,15 @@ function lr() {
|
|
|
1695
1707
|
return w ? K : K.endOf(b);
|
|
1696
1708
|
}, I = function(ro, Z) {
|
|
1697
1709
|
return S.w(g.toDate()[ro].apply(g.toDate("s"), (w ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(Z)), g);
|
|
1698
|
-
}, N = this.$W,
|
|
1710
|
+
}, N = this.$W, X = this.$M, J = this.$D, lo = "set" + (this.$u ? "UTC" : "");
|
|
1699
1711
|
switch (D) {
|
|
1700
1712
|
case z:
|
|
1701
1713
|
return w ? Y(1, 0) : Y(31, 11);
|
|
1702
1714
|
case B:
|
|
1703
|
-
return w ? Y(1,
|
|
1715
|
+
return w ? Y(1, X) : Y(0, X + 1);
|
|
1704
1716
|
case $:
|
|
1705
|
-
var ao = this.$locale().weekStart || 0,
|
|
1706
|
-
return Y(w ? J -
|
|
1717
|
+
var ao = this.$locale().weekStart || 0, mo = (N < ao ? N + 7 : N) - ao;
|
|
1718
|
+
return Y(w ? J - mo : J + (6 - mo), X);
|
|
1707
1719
|
case b:
|
|
1708
1720
|
case y:
|
|
1709
1721
|
return I(lo + "Hours", 0);
|
|
@@ -1732,9 +1744,9 @@ function lr() {
|
|
|
1732
1744
|
}, n.add = function(d, h) {
|
|
1733
1745
|
var g, w = this;
|
|
1734
1746
|
d = Number(d);
|
|
1735
|
-
var D = S.p(h), Y = function(
|
|
1747
|
+
var D = S.p(h), Y = function(X) {
|
|
1736
1748
|
var J = O(w);
|
|
1737
|
-
return S.w(J.date(J.date() + Math.round(
|
|
1749
|
+
return S.w(J.date(J.date() + Math.round(X * d)), w);
|
|
1738
1750
|
};
|
|
1739
1751
|
if (D === B) return this.set(B, this.$M + d);
|
|
1740
1752
|
if (D === z) return this.set(z, this.$y + d);
|
|
@@ -1747,9 +1759,9 @@ function lr() {
|
|
|
1747
1759
|
}, n.format = function(d) {
|
|
1748
1760
|
var h = this, g = this.$locale();
|
|
1749
1761
|
if (!this.isValid()) return g.invalidDate || p;
|
|
1750
|
-
var w = d || "YYYY-MM-DDTHH:mm:ssZ", D = S.z(this), Y = this.$H, I = this.$m, N = this.$M,
|
|
1762
|
+
var w = d || "YYYY-MM-DDTHH:mm:ssZ", D = S.z(this), Y = this.$H, I = this.$m, N = this.$M, X = g.weekdays, J = g.months, lo = g.meridiem, ao = function(Z, K, no, co) {
|
|
1751
1763
|
return Z && (Z[K] || Z(h, w)) || no[K].slice(0, co);
|
|
1752
|
-
},
|
|
1764
|
+
}, mo = function(Z) {
|
|
1753
1765
|
return S.s(Y % 12 || 12, Z, "0");
|
|
1754
1766
|
}, ro = lo || function(Z, K, no) {
|
|
1755
1767
|
var co = Z < 12 ? "AM" : "PM";
|
|
@@ -1777,19 +1789,19 @@ function lr() {
|
|
|
1777
1789
|
case "d":
|
|
1778
1790
|
return String(h.$W);
|
|
1779
1791
|
case "dd":
|
|
1780
|
-
return ao(g.weekdaysMin, h.$W,
|
|
1792
|
+
return ao(g.weekdaysMin, h.$W, X, 2);
|
|
1781
1793
|
case "ddd":
|
|
1782
|
-
return ao(g.weekdaysShort, h.$W,
|
|
1794
|
+
return ao(g.weekdaysShort, h.$W, X, 3);
|
|
1783
1795
|
case "dddd":
|
|
1784
|
-
return
|
|
1796
|
+
return X[h.$W];
|
|
1785
1797
|
case "H":
|
|
1786
1798
|
return String(Y);
|
|
1787
1799
|
case "HH":
|
|
1788
1800
|
return S.s(Y, 2, "0");
|
|
1789
1801
|
case "h":
|
|
1790
|
-
return
|
|
1802
|
+
return mo(1);
|
|
1791
1803
|
case "hh":
|
|
1792
|
-
return
|
|
1804
|
+
return mo(2);
|
|
1793
1805
|
case "a":
|
|
1794
1806
|
return ro(Y, I, !0);
|
|
1795
1807
|
case "A":
|
|
@@ -1813,7 +1825,7 @@ function lr() {
|
|
|
1813
1825
|
}, n.utcOffset = function() {
|
|
1814
1826
|
return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
|
|
1815
1827
|
}, n.diff = function(d, h, g) {
|
|
1816
|
-
var w, D = this, Y = S.p(h), I = O(d), N = (I.utcOffset() - this.utcOffset()) * t,
|
|
1828
|
+
var w, D = this, Y = S.p(h), I = O(d), N = (I.utcOffset() - this.utcOffset()) * t, X = this - I, J = function() {
|
|
1817
1829
|
return S.m(D, I);
|
|
1818
1830
|
};
|
|
1819
1831
|
switch (Y) {
|
|
@@ -1827,22 +1839,22 @@ function lr() {
|
|
|
1827
1839
|
w = J() / 3;
|
|
1828
1840
|
break;
|
|
1829
1841
|
case $:
|
|
1830
|
-
w = (
|
|
1842
|
+
w = (X - N) / 6048e5;
|
|
1831
1843
|
break;
|
|
1832
1844
|
case b:
|
|
1833
|
-
w = (
|
|
1845
|
+
w = (X - N) / 864e5;
|
|
1834
1846
|
break;
|
|
1835
1847
|
case l:
|
|
1836
|
-
w =
|
|
1848
|
+
w = X / a;
|
|
1837
1849
|
break;
|
|
1838
1850
|
case m:
|
|
1839
|
-
w =
|
|
1851
|
+
w = X / t;
|
|
1840
1852
|
break;
|
|
1841
1853
|
case i:
|
|
1842
|
-
w =
|
|
1854
|
+
w = X / e;
|
|
1843
1855
|
break;
|
|
1844
1856
|
default:
|
|
1845
|
-
w =
|
|
1857
|
+
w = X;
|
|
1846
1858
|
}
|
|
1847
1859
|
return g ? w : S.a(w);
|
|
1848
1860
|
}, n.daysInMonth = function() {
|
|
@@ -1864,27 +1876,27 @@ function lr() {
|
|
|
1864
1876
|
}, n.toString = function() {
|
|
1865
1877
|
return this.$d.toUTCString();
|
|
1866
1878
|
}, s;
|
|
1867
|
-
})(), u =
|
|
1879
|
+
})(), u = _.prototype;
|
|
1868
1880
|
return O.prototype = u, [["$ms", c], ["$s", i], ["$m", m], ["$H", l], ["$W", b], ["$M", B], ["$y", z], ["$D", y]].forEach((function(s) {
|
|
1869
1881
|
u[s[1]] = function(n) {
|
|
1870
1882
|
return this.$g(n, s[0], s[1]);
|
|
1871
1883
|
};
|
|
1872
1884
|
})), O.extend = function(s, n) {
|
|
1873
|
-
return s.$i || (s(n,
|
|
1885
|
+
return s.$i || (s(n, _, O), s.$i = !0), O;
|
|
1874
1886
|
}, O.locale = j, O.isDayjs = A, O.unix = function(s) {
|
|
1875
1887
|
return O(1e3 * s);
|
|
1876
1888
|
}, O.en = W[V], O.Ls = W, O.p = {}, O;
|
|
1877
1889
|
}));
|
|
1878
1890
|
})($o)), $o.exports;
|
|
1879
1891
|
}
|
|
1880
|
-
var
|
|
1881
|
-
const eo = /* @__PURE__ */ vo(
|
|
1882
|
-
var Co = { exports: {} },
|
|
1883
|
-
function
|
|
1884
|
-
return
|
|
1892
|
+
var Lu = lr();
|
|
1893
|
+
const eo = /* @__PURE__ */ vo(Lu);
|
|
1894
|
+
var Co = { exports: {} }, Tu = Co.exports, Zo;
|
|
1895
|
+
function Wu() {
|
|
1896
|
+
return Zo || (Zo = 1, (function(o, r) {
|
|
1885
1897
|
(function(e, t) {
|
|
1886
1898
|
o.exports = t(lr());
|
|
1887
|
-
})(
|
|
1899
|
+
})(Tu, (function(e) {
|
|
1888
1900
|
function t(i) {
|
|
1889
1901
|
return i && typeof i == "object" && "default" in i ? i : { default: i };
|
|
1890
1902
|
}
|
|
@@ -1895,13 +1907,13 @@ function Tu() {
|
|
|
1895
1907
|
}));
|
|
1896
1908
|
})(Co)), Co.exports;
|
|
1897
1909
|
}
|
|
1898
|
-
|
|
1899
|
-
var xo = { exports: {} },
|
|
1900
|
-
function
|
|
1901
|
-
return
|
|
1910
|
+
Wu();
|
|
1911
|
+
var xo = { exports: {} }, Fu = xo.exports, Go;
|
|
1912
|
+
function ju() {
|
|
1913
|
+
return Go || (Go = 1, (function(o, r) {
|
|
1902
1914
|
(function(e, t) {
|
|
1903
1915
|
o.exports = t();
|
|
1904
|
-
})(
|
|
1916
|
+
})(Fu, (function() {
|
|
1905
1917
|
var e = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" }, t = /(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|Q|YYYY|YY?|ww?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g, a = /\d/, c = /\d\d/, i = /\d\d?/, m = /\d*[^-_:/,()\s\d]+/, l = {}, b = function(f) {
|
|
1906
1918
|
return (f = +f) + (f > 68 ? 1900 : 2e3);
|
|
1907
1919
|
}, $ = function(f) {
|
|
@@ -1957,9 +1969,9 @@ function Fu() {
|
|
|
1957
1969
|
function p(f) {
|
|
1958
1970
|
var v, C;
|
|
1959
1971
|
v = f, C = l && l.formats;
|
|
1960
|
-
for (var x = (f = v.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, (function(O, S,
|
|
1961
|
-
var u =
|
|
1962
|
-
return S || C[
|
|
1972
|
+
for (var x = (f = v.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, (function(O, S, _) {
|
|
1973
|
+
var u = _ && _.toUpperCase();
|
|
1974
|
+
return S || C[_] || e[_] || C[u].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g, (function(s, n, d) {
|
|
1963
1975
|
return n || d.slice(1);
|
|
1964
1976
|
}));
|
|
1965
1977
|
}))).match(t), L = x.length, V = 0; V < L; V += 1) {
|
|
@@ -1967,8 +1979,8 @@ function Fu() {
|
|
|
1967
1979
|
x[V] = j ? { regex: A, parser: j } : W.replace(/^\[|\]$/g, "");
|
|
1968
1980
|
}
|
|
1969
1981
|
return function(O) {
|
|
1970
|
-
for (var S = {},
|
|
1971
|
-
var s = x[
|
|
1982
|
+
for (var S = {}, _ = 0, u = 0; _ < L; _ += 1) {
|
|
1983
|
+
var s = x[_];
|
|
1972
1984
|
if (typeof s == "string") u += s.length;
|
|
1973
1985
|
else {
|
|
1974
1986
|
var n = s.regex, d = s.parser, h = O.slice(u), g = n.exec(h)[0];
|
|
@@ -1992,18 +2004,18 @@ function Fu() {
|
|
|
1992
2004
|
this.$u = F;
|
|
1993
2005
|
var j = A[1];
|
|
1994
2006
|
if (typeof j == "string") {
|
|
1995
|
-
var O = A[2] === !0, S = A[3] === !0,
|
|
2007
|
+
var O = A[2] === !0, S = A[3] === !0, _ = O || S, u = A[2];
|
|
1996
2008
|
S && (u = A[2]), l = this.$locale(), !O && u && (l = C.Ls[u]), this.$d = (function(h, g, w, D) {
|
|
1997
2009
|
try {
|
|
1998
2010
|
if (["x", "X"].indexOf(g) > -1) return new Date((g === "X" ? 1e3 : 1) * h);
|
|
1999
|
-
var Y = p(g)(h), I = Y.year, N = Y.month,
|
|
2011
|
+
var Y = p(g)(h), I = Y.year, N = Y.month, X = Y.day, J = Y.hours, lo = Y.minutes, ao = Y.seconds, mo = Y.milliseconds, ro = Y.zone, Z = Y.week, K = /* @__PURE__ */ new Date(), no = X || (I || N ? 1 : K.getDate()), co = I || K.getFullYear(), ko = 0;
|
|
2000
2012
|
I && !N || (ko = N > 0 ? N - 1 : K.getMonth());
|
|
2001
|
-
var yo, Oo = J || 0, Lo = lo || 0, To = ao || 0, Wo =
|
|
2013
|
+
var yo, Oo = J || 0, Lo = lo || 0, To = ao || 0, Wo = mo || 0;
|
|
2002
2014
|
return ro ? new Date(Date.UTC(co, ko, no, Oo, Lo, To, Wo + 60 * ro.offset * 1e3)) : w ? new Date(Date.UTC(co, ko, no, Oo, Lo, To, Wo)) : (yo = new Date(co, ko, no, Oo, Lo, To, Wo), Z && (yo = D(yo).week(Z).toDate()), yo);
|
|
2003
2015
|
} catch {
|
|
2004
2016
|
return /* @__PURE__ */ new Date("");
|
|
2005
2017
|
}
|
|
2006
|
-
})(W, j, F, C), this.init(), u && u !== !0 && (this.$L = this.locale(u).$L),
|
|
2018
|
+
})(W, j, F, C), this.init(), u && u !== !0 && (this.$L = this.locale(u).$L), _ && W != this.format(j) && (this.$d = /* @__PURE__ */ new Date("")), l = {};
|
|
2007
2019
|
} else if (j instanceof Array) for (var s = j.length, n = 1; n <= s; n += 1) {
|
|
2008
2020
|
A[1] = j[n - 1];
|
|
2009
2021
|
var d = C.apply(this, A);
|
|
@@ -2019,14 +2031,14 @@ function Fu() {
|
|
|
2019
2031
|
}));
|
|
2020
2032
|
})(xo)), xo.exports;
|
|
2021
2033
|
}
|
|
2022
|
-
var
|
|
2023
|
-
const
|
|
2024
|
-
var wo = { exports: {} },
|
|
2025
|
-
function
|
|
2026
|
-
return
|
|
2034
|
+
var Iu = ju();
|
|
2035
|
+
const Hu = /* @__PURE__ */ vo(Iu);
|
|
2036
|
+
var wo = { exports: {} }, Au = wo.exports, Jo;
|
|
2037
|
+
function Nu() {
|
|
2038
|
+
return Jo || (Jo = 1, (function(o, r) {
|
|
2027
2039
|
(function(e, t) {
|
|
2028
2040
|
o.exports = t();
|
|
2029
|
-
})(
|
|
2041
|
+
})(Au, (function() {
|
|
2030
2042
|
var e = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" };
|
|
2031
2043
|
return function(t, a, c) {
|
|
2032
2044
|
var i = a.prototype, m = i.format;
|
|
@@ -2046,14 +2058,14 @@ function Au() {
|
|
|
2046
2058
|
}));
|
|
2047
2059
|
})(wo)), wo.exports;
|
|
2048
2060
|
}
|
|
2049
|
-
var
|
|
2050
|
-
const
|
|
2051
|
-
var Bo = { exports: {} },
|
|
2052
|
-
function
|
|
2053
|
-
return
|
|
2061
|
+
var Pu = Nu();
|
|
2062
|
+
const qu = /* @__PURE__ */ vo(Pu);
|
|
2063
|
+
var Bo = { exports: {} }, Eu = Bo.exports, Qo;
|
|
2064
|
+
function Uu() {
|
|
2065
|
+
return Qo || (Qo = 1, (function(o, r) {
|
|
2054
2066
|
(function(e, t) {
|
|
2055
2067
|
o.exports = t();
|
|
2056
|
-
})(
|
|
2068
|
+
})(Eu, (function() {
|
|
2057
2069
|
var e = "minute", t = /[+-]\d\d(?::?\d\d)?/g, a = /([+-]|\d\d)/g;
|
|
2058
2070
|
return function(c, i, m) {
|
|
2059
2071
|
var l = i.prototype;
|
|
@@ -2123,14 +2135,14 @@ function Eu() {
|
|
|
2123
2135
|
}));
|
|
2124
2136
|
})(Bo)), Bo.exports;
|
|
2125
2137
|
}
|
|
2126
|
-
var
|
|
2127
|
-
const
|
|
2128
|
-
var Ro = { exports: {} },
|
|
2129
|
-
function
|
|
2130
|
-
return
|
|
2138
|
+
var _u = Uu();
|
|
2139
|
+
const Xu = /* @__PURE__ */ vo(_u);
|
|
2140
|
+
var Ro = { exports: {} }, Zu = Ro.exports, Ko;
|
|
2141
|
+
function Gu() {
|
|
2142
|
+
return Ko || (Ko = 1, (function(o, r) {
|
|
2131
2143
|
(function(e, t) {
|
|
2132
2144
|
o.exports = t();
|
|
2133
|
-
})(
|
|
2145
|
+
})(Zu, (function() {
|
|
2134
2146
|
var e = { year: 0, month: 1, day: 2, hour: 3, minute: 4, second: 5 }, t = {};
|
|
2135
2147
|
return function(a, c, i) {
|
|
2136
2148
|
var m, l = function(k, z, y) {
|
|
@@ -2188,14 +2200,14 @@ function Zu() {
|
|
|
2188
2200
|
}));
|
|
2189
2201
|
})(Ro)), Ro.exports;
|
|
2190
2202
|
}
|
|
2191
|
-
var
|
|
2192
|
-
const
|
|
2193
|
-
eo.extend(
|
|
2194
|
-
eo.extend(
|
|
2195
|
-
eo.extend(
|
|
2196
|
-
eo.extend(
|
|
2203
|
+
var Ju = Gu();
|
|
2204
|
+
const Qu = /* @__PURE__ */ vo(Ju);
|
|
2205
|
+
eo.extend(Hu);
|
|
2206
|
+
eo.extend(qu);
|
|
2207
|
+
eo.extend(Xu);
|
|
2208
|
+
eo.extend(Qu);
|
|
2197
2209
|
eo.locale("pt-br");
|
|
2198
|
-
const
|
|
2210
|
+
const Ku = [
|
|
2199
2211
|
"YYYY-MM-DD",
|
|
2200
2212
|
"YYYY-MM-DDTHH:mm:ss",
|
|
2201
2213
|
"YYYY-MM-DDTHH:mm:ssZ",
|
|
@@ -2209,44 +2221,44 @@ const Qu = [
|
|
|
2209
2221
|
return e.isValid() ? e : null;
|
|
2210
2222
|
}
|
|
2211
2223
|
if (typeof o == "string") {
|
|
2212
|
-
const e = eo(o.trim(),
|
|
2224
|
+
const e = eo(o.trim(), Ku, "pt-br", !0);
|
|
2213
2225
|
return e.isValid() ? e : null;
|
|
2214
2226
|
}
|
|
2215
2227
|
const r = eo(o);
|
|
2216
2228
|
return r.isValid() ? r : null;
|
|
2217
2229
|
};
|
|
2218
|
-
function
|
|
2230
|
+
function or(o) {
|
|
2219
2231
|
const r = to(o);
|
|
2220
2232
|
return r ? r.startOf("day").toDate() : null;
|
|
2221
2233
|
}
|
|
2222
|
-
function
|
|
2234
|
+
function x0() {
|
|
2223
2235
|
return eo().startOf("day").toDate();
|
|
2224
2236
|
}
|
|
2225
|
-
function
|
|
2237
|
+
function w0(o, r = "YYYY-MM-DD") {
|
|
2226
2238
|
const e = to(o);
|
|
2227
2239
|
return e ? e.format(r) : "";
|
|
2228
2240
|
}
|
|
2229
|
-
function
|
|
2241
|
+
function B0(o, r = "YYYY-MM-DD HH:mm:ss") {
|
|
2230
2242
|
const e = to(o);
|
|
2231
2243
|
return e ? e.format(r) : "";
|
|
2232
2244
|
}
|
|
2233
|
-
function
|
|
2245
|
+
function R0(o, r = "DD/MM/YYYY") {
|
|
2234
2246
|
const e = to(o);
|
|
2235
2247
|
return e ? e.format(r) : "";
|
|
2236
2248
|
}
|
|
2237
|
-
function
|
|
2249
|
+
function D0(o, r = "DD/MM/YYYY HH:mm") {
|
|
2238
2250
|
const e = to(o);
|
|
2239
2251
|
return e ? e.format(r) : "";
|
|
2240
2252
|
}
|
|
2241
|
-
function
|
|
2253
|
+
function S0(o, r = "HH:mm") {
|
|
2242
2254
|
const e = to(o);
|
|
2243
2255
|
return e ? e.format(r) : "";
|
|
2244
2256
|
}
|
|
2245
|
-
function
|
|
2257
|
+
function M0(o, r = "ddd") {
|
|
2246
2258
|
const e = to(o);
|
|
2247
2259
|
return e ? e.format(r).toUpperCase() : "";
|
|
2248
2260
|
}
|
|
2249
|
-
function
|
|
2261
|
+
function z0(o, r = "dddd, DD[ de ]MMMM[ de ]YYYY") {
|
|
2250
2262
|
const e = to(o);
|
|
2251
2263
|
return e ? e.format(r) : "";
|
|
2252
2264
|
}
|
|
@@ -2258,37 +2270,37 @@ function Yo(o, r, e = "day") {
|
|
|
2258
2270
|
const t = to(o);
|
|
2259
2271
|
return !t || typeof r != "number" || Number.isNaN(r) ? null : t.add(r, e).toDate();
|
|
2260
2272
|
}
|
|
2261
|
-
function
|
|
2273
|
+
function Y0(o, r) {
|
|
2262
2274
|
return Yo(o, r, "day");
|
|
2263
2275
|
}
|
|
2264
|
-
function
|
|
2276
|
+
function V0(o, r) {
|
|
2265
2277
|
return Yo(o, r, "month");
|
|
2266
2278
|
}
|
|
2267
|
-
function
|
|
2279
|
+
function O0(o, r) {
|
|
2268
2280
|
return Yo(o, r, "year");
|
|
2269
2281
|
}
|
|
2270
|
-
function
|
|
2282
|
+
function L0(o, r) {
|
|
2271
2283
|
return Yo(o, r, "minute");
|
|
2272
2284
|
}
|
|
2273
|
-
function
|
|
2285
|
+
function T0(o) {
|
|
2274
2286
|
return o == null ? "" : String(o).toLowerCase().trim().split(/\s+/).map((r) => r.charAt(0).toUpperCase() + r.slice(1)).join(" ");
|
|
2275
2287
|
}
|
|
2276
|
-
function
|
|
2288
|
+
function uo(o) {
|
|
2277
2289
|
return o == null ? "" : String(o).replace(/\D/g, "");
|
|
2278
2290
|
}
|
|
2279
|
-
const
|
|
2291
|
+
const W0 = (o) => {
|
|
2280
2292
|
if (!o) return "-";
|
|
2281
2293
|
const r = o.replace(/\D/g, "");
|
|
2282
2294
|
return r.length === 11 ? r.replace(/(\d{3})(\d{3})(\d{3})(\d{2})/, "$1.$2.$3-$4") : r.length === 14 ? r.replace(/(\d{2})(\d{3})(\d{3})(\d{4})(\d{2})/, "$1.$2.$3/$4-$5") : o;
|
|
2283
|
-
},
|
|
2295
|
+
}, F0 = (o, r = 2) => o == null ? "-" : Number(o).toLocaleString("pt-BR", {
|
|
2284
2296
|
minimumFractionDigits: r,
|
|
2285
2297
|
maximumFractionDigits: r
|
|
2286
2298
|
});
|
|
2287
|
-
function
|
|
2288
|
-
const r =
|
|
2299
|
+
function of(o) {
|
|
2300
|
+
const r = uo(o);
|
|
2289
2301
|
return r.length !== 8 ? o : r.replace(/(\d{5})(\d{3})/, "$1-$2");
|
|
2290
2302
|
}
|
|
2291
|
-
function
|
|
2303
|
+
function j0(o) {
|
|
2292
2304
|
if (o == null) return "";
|
|
2293
2305
|
const {
|
|
2294
2306
|
postalCode: r,
|
|
@@ -2297,16 +2309,16 @@ function F0(o) {
|
|
|
2297
2309
|
neighborhood: a,
|
|
2298
2310
|
addressLine1: c,
|
|
2299
2311
|
addressLine2: i
|
|
2300
|
-
} = o, m = [c, i].filter(Boolean).join(" "), l = [a, " - ", t, e].filter(Boolean).join(" "), b = r ?
|
|
2312
|
+
} = o, m = [c, i].filter(Boolean).join(" "), l = [a, " - ", t, e].filter(Boolean).join(" "), b = r ? of(r) : null;
|
|
2301
2313
|
return [m, " - ", l, " - ", b].filter(Boolean).join(" ").replace(/\s-\s$/, "");
|
|
2302
2314
|
}
|
|
2303
|
-
function
|
|
2315
|
+
function I0(o) {
|
|
2304
2316
|
if (o == null) return "";
|
|
2305
2317
|
const { name: r, state: e, record: t } = o;
|
|
2306
2318
|
return [r, e, t].filter(Boolean).join(" ");
|
|
2307
2319
|
}
|
|
2308
|
-
function
|
|
2309
|
-
const r =
|
|
2320
|
+
function H0(o) {
|
|
2321
|
+
const r = uo(o);
|
|
2310
2322
|
if (!r) return "";
|
|
2311
2323
|
const e = r.startsWith("55") && r.length > 11 ? r.slice(2) : r;
|
|
2312
2324
|
return e.length === 11 ? e.replace(
|
|
@@ -2317,7 +2329,7 @@ function I0(o) {
|
|
|
2317
2329
|
"($1) $2-$3"
|
|
2318
2330
|
) : o;
|
|
2319
2331
|
}
|
|
2320
|
-
function
|
|
2332
|
+
function rr(o, r) {
|
|
2321
2333
|
var e = Object.keys(o);
|
|
2322
2334
|
if (Object.getOwnPropertySymbols) {
|
|
2323
2335
|
var t = Object.getOwnPropertySymbols(o);
|
|
@@ -2330,15 +2342,15 @@ function or(o, r) {
|
|
|
2330
2342
|
function ho(o) {
|
|
2331
2343
|
for (var r = 1; r < arguments.length; r++) {
|
|
2332
2344
|
var e = arguments[r] != null ? arguments[r] : {};
|
|
2333
|
-
r % 2 ?
|
|
2334
|
-
|
|
2335
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(o, Object.getOwnPropertyDescriptors(e)) :
|
|
2345
|
+
r % 2 ? rr(Object(e), !0).forEach(function(t) {
|
|
2346
|
+
rf(o, t, e[t]);
|
|
2347
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(o, Object.getOwnPropertyDescriptors(e)) : rr(Object(e)).forEach(function(t) {
|
|
2336
2348
|
Object.defineProperty(o, t, Object.getOwnPropertyDescriptor(e, t));
|
|
2337
2349
|
});
|
|
2338
2350
|
}
|
|
2339
2351
|
return o;
|
|
2340
2352
|
}
|
|
2341
|
-
function
|
|
2353
|
+
function rf(o, r, e) {
|
|
2342
2354
|
return r in o ? Object.defineProperty(o, r, {
|
|
2343
2355
|
value: e,
|
|
2344
2356
|
enumerable: !0,
|
|
@@ -2363,19 +2375,19 @@ function cr(o) {
|
|
|
2363
2375
|
function sr(o) {
|
|
2364
2376
|
return o.$validator || o;
|
|
2365
2377
|
}
|
|
2366
|
-
function
|
|
2378
|
+
function ef(o, r) {
|
|
2367
2379
|
if (!jo(o)) throw new Error(`[@vuelidate/validators]: First parameter to "withParams" should be an object, provided ${typeof o}`);
|
|
2368
2380
|
if (!jo(r) && !Do(r)) throw new Error("[@vuelidate/validators]: Validator must be a function or object with $validator parameter");
|
|
2369
2381
|
const e = Vo(r);
|
|
2370
2382
|
return e.$params = ho(ho({}, e.$params || {}), o), e;
|
|
2371
2383
|
}
|
|
2372
|
-
function
|
|
2384
|
+
function tf(o, r) {
|
|
2373
2385
|
if (!Do(o) && typeof T(o) != "string") throw new Error(`[@vuelidate/validators]: First parameter to "withMessage" should be string or a function returning a string, provided ${typeof o}`);
|
|
2374
2386
|
if (!jo(r) && !Do(r)) throw new Error("[@vuelidate/validators]: Validator must be a function or object with $validator parameter");
|
|
2375
2387
|
const e = Vo(r);
|
|
2376
2388
|
return e.$message = o, e;
|
|
2377
2389
|
}
|
|
2378
|
-
function
|
|
2390
|
+
function af(o) {
|
|
2379
2391
|
let r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : [];
|
|
2380
2392
|
const e = Vo(o);
|
|
2381
2393
|
return ho(ho({}, e), {}, {
|
|
@@ -2383,7 +2395,7 @@ function tf(o) {
|
|
|
2383
2395
|
$watchTargets: r
|
|
2384
2396
|
});
|
|
2385
2397
|
}
|
|
2386
|
-
function
|
|
2398
|
+
function nf(o) {
|
|
2387
2399
|
return {
|
|
2388
2400
|
$validator(r) {
|
|
2389
2401
|
for (var e = arguments.length, t = new Array(e > 1 ? e - 1 : 0), a = 1; a < e; a++)
|
|
@@ -2466,42 +2478,42 @@ const bo = (o) => {
|
|
|
2466
2478
|
}
|
|
2467
2479
|
return !!String(o).length;
|
|
2468
2480
|
}, No = (o) => (o = T(o), Array.isArray(o) ? o.length : typeof o == "object" ? Object.keys(o).length : String(o).length);
|
|
2469
|
-
function
|
|
2481
|
+
function fo() {
|
|
2470
2482
|
for (var o = arguments.length, r = new Array(o), e = 0; e < o; e++)
|
|
2471
2483
|
r[e] = arguments[e];
|
|
2472
2484
|
return (t) => (t = T(t), !bo(t) || r.every((a) => (a.lastIndex = 0, a.test(t))));
|
|
2473
2485
|
}
|
|
2474
2486
|
var E = /* @__PURE__ */ Object.freeze({
|
|
2475
2487
|
__proto__: null,
|
|
2476
|
-
forEach:
|
|
2488
|
+
forEach: nf,
|
|
2477
2489
|
len: No,
|
|
2478
2490
|
normalizeValidatorObject: Vo,
|
|
2479
|
-
regex:
|
|
2491
|
+
regex: fo,
|
|
2480
2492
|
req: bo,
|
|
2481
2493
|
unwrap: T,
|
|
2482
2494
|
unwrapNormalizedValidator: sr,
|
|
2483
2495
|
unwrapValidatorResponse: cr,
|
|
2484
|
-
withAsync:
|
|
2485
|
-
withMessage:
|
|
2486
|
-
withParams:
|
|
2496
|
+
withAsync: af,
|
|
2497
|
+
withMessage: tf,
|
|
2498
|
+
withParams: ef
|
|
2487
2499
|
});
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
const
|
|
2492
|
-
var
|
|
2493
|
-
$validator:
|
|
2500
|
+
fo(/^[a-zA-Z]*$/);
|
|
2501
|
+
fo(/^[a-zA-Z0-9]*$/);
|
|
2502
|
+
fo(/^\d*(\.\d+)?$/);
|
|
2503
|
+
const df = /^(?:[A-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[A-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9]{2,}(?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])$/i;
|
|
2504
|
+
var lf = fo(df), cf = {
|
|
2505
|
+
$validator: lf,
|
|
2494
2506
|
$message: "Value is not a valid email address",
|
|
2495
2507
|
$params: {
|
|
2496
2508
|
type: "email"
|
|
2497
2509
|
}
|
|
2498
2510
|
};
|
|
2499
|
-
function
|
|
2511
|
+
function sf(o) {
|
|
2500
2512
|
return (r) => !bo(r) || No(r) <= T(o);
|
|
2501
2513
|
}
|
|
2502
|
-
function
|
|
2514
|
+
function uf(o) {
|
|
2503
2515
|
return {
|
|
2504
|
-
$validator:
|
|
2516
|
+
$validator: sf(o),
|
|
2505
2517
|
$message: (r) => {
|
|
2506
2518
|
let {
|
|
2507
2519
|
$params: e
|
|
@@ -2514,12 +2526,12 @@ function sf(o) {
|
|
|
2514
2526
|
}
|
|
2515
2527
|
};
|
|
2516
2528
|
}
|
|
2517
|
-
function
|
|
2529
|
+
function ff(o) {
|
|
2518
2530
|
return (r) => !bo(r) || No(r) >= T(o);
|
|
2519
2531
|
}
|
|
2520
|
-
function
|
|
2532
|
+
function gf(o) {
|
|
2521
2533
|
return {
|
|
2522
|
-
$validator:
|
|
2534
|
+
$validator: ff(o),
|
|
2523
2535
|
$message: (r) => {
|
|
2524
2536
|
let {
|
|
2525
2537
|
$params: e
|
|
@@ -2532,24 +2544,24 @@ function ff(o) {
|
|
|
2532
2544
|
}
|
|
2533
2545
|
};
|
|
2534
2546
|
}
|
|
2535
|
-
function
|
|
2547
|
+
function mf(o) {
|
|
2536
2548
|
return typeof o == "string" && (o = o.trim()), bo(o);
|
|
2537
2549
|
}
|
|
2538
|
-
var
|
|
2539
|
-
$validator:
|
|
2550
|
+
var pf = {
|
|
2551
|
+
$validator: mf,
|
|
2540
2552
|
$message: "Value is required",
|
|
2541
2553
|
$params: {
|
|
2542
2554
|
type: "required"
|
|
2543
2555
|
}
|
|
2544
2556
|
};
|
|
2545
|
-
const
|
|
2546
|
-
|
|
2547
|
-
function
|
|
2557
|
+
const bf = /^(?:(?:(?:https?|ftp):)?\/\/)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z0-9\u00a1-\uffff][a-z0-9\u00a1-\uffff_-]{0,62})?[a-z0-9\u00a1-\uffff]\.)+(?:[a-z\u00a1-\uffff]{2,}\.?))(?::\d{2,5})?(?:[/?#]\S*)?$/i;
|
|
2558
|
+
fo(bf);
|
|
2559
|
+
function hf(o) {
|
|
2548
2560
|
return (r) => !bo(r) || (!/\s/.test(r) || r instanceof Date) && +r >= +T(o);
|
|
2549
2561
|
}
|
|
2550
|
-
function
|
|
2562
|
+
function vf(o) {
|
|
2551
2563
|
return {
|
|
2552
|
-
$validator:
|
|
2564
|
+
$validator: hf(o),
|
|
2553
2565
|
$message: (r) => {
|
|
2554
2566
|
let {
|
|
2555
2567
|
$params: e
|
|
@@ -2562,10 +2574,10 @@ function hf(o) {
|
|
|
2562
2574
|
}
|
|
2563
2575
|
};
|
|
2564
2576
|
}
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
function
|
|
2568
|
-
const r =
|
|
2577
|
+
fo(/(^[0-9]*$)|(^-[0-9]+$)/);
|
|
2578
|
+
fo(/^[-]?\d*(\.\d+)?$/);
|
|
2579
|
+
function kf(o) {
|
|
2580
|
+
const r = uo(o);
|
|
2569
2581
|
if (!r || r.length !== 14 || /^(\d)\1+$/.test(r)) return !1;
|
|
2570
2582
|
const e = (m, l) => {
|
|
2571
2583
|
let b = 0;
|
|
@@ -2576,8 +2588,8 @@ function vf(o) {
|
|
|
2576
2588
|
}, t = [5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2], a = [6, 5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2], c = e(r.slice(0, 12), t), i = e(r.slice(0, 13), a);
|
|
2577
2589
|
return c === Number(r[12]) && i === Number(r[13]);
|
|
2578
2590
|
}
|
|
2579
|
-
function
|
|
2580
|
-
const r =
|
|
2591
|
+
function yf(o) {
|
|
2592
|
+
const r = uo(o);
|
|
2581
2593
|
if (!r || r.length !== 11 || /^(\d)\1+$/.test(r)) return !1;
|
|
2582
2594
|
const e = (c, i) => {
|
|
2583
2595
|
let m = 0;
|
|
@@ -2588,161 +2600,161 @@ function kf(o) {
|
|
|
2588
2600
|
}, t = e(r.slice(0, 9), 10), a = e(r.slice(0, 10), 11);
|
|
2589
2601
|
return t === Number(r[9]) && a === Number(r[10]);
|
|
2590
2602
|
}
|
|
2591
|
-
function
|
|
2603
|
+
function $f(o, r = /* @__PURE__ */ new Date()) {
|
|
2592
2604
|
const e = zo(o);
|
|
2593
2605
|
if (!e) return !1;
|
|
2594
|
-
const t =
|
|
2595
|
-
return
|
|
2606
|
+
const t = or(r);
|
|
2607
|
+
return or(e) > t;
|
|
2596
2608
|
}
|
|
2597
|
-
function
|
|
2609
|
+
function er(o) {
|
|
2598
2610
|
const r = zo(o);
|
|
2599
2611
|
return !!r && eo(r).isValid();
|
|
2600
2612
|
}
|
|
2601
|
-
function
|
|
2613
|
+
function Cf(o) {
|
|
2602
2614
|
if (!Array.isArray(o) || !o[0] || !o[1]) return !1;
|
|
2603
2615
|
const [r, e] = o;
|
|
2604
2616
|
return !(r instanceof Date) || !(e instanceof Date) ? !1 : e >= r;
|
|
2605
2617
|
}
|
|
2606
|
-
function
|
|
2607
|
-
const r =
|
|
2618
|
+
function xf(o) {
|
|
2619
|
+
const r = uo(o || "");
|
|
2608
2620
|
return r ? r.length === 11 : !0;
|
|
2609
2621
|
}
|
|
2610
|
-
function
|
|
2611
|
-
const r =
|
|
2622
|
+
function wf(o) {
|
|
2623
|
+
const r = uo(o || "");
|
|
2612
2624
|
return r ? r.length === 10 : !0;
|
|
2613
2625
|
}
|
|
2614
|
-
function
|
|
2626
|
+
function Bf(o) {
|
|
2615
2627
|
return o.replace(/\D/g, "").length === 8;
|
|
2616
2628
|
}
|
|
2617
|
-
function
|
|
2629
|
+
function Rf(o) {
|
|
2618
2630
|
if (o == null) return !1;
|
|
2619
2631
|
const r = String(o).trim();
|
|
2620
2632
|
return r ? /^\d+$/.test(r) : !1;
|
|
2621
2633
|
}
|
|
2622
|
-
function
|
|
2634
|
+
function Df(o) {
|
|
2623
2635
|
return /^[A-Za-zÀ-ÖØ-öø-ÿ\s'-]+$/u.test(o);
|
|
2624
2636
|
}
|
|
2625
|
-
function
|
|
2637
|
+
function Sf(o) {
|
|
2626
2638
|
return o.endsWith(".") || o.length < 2;
|
|
2627
2639
|
}
|
|
2628
|
-
function
|
|
2640
|
+
function Mf(o) {
|
|
2629
2641
|
const r = (o || "").trim();
|
|
2630
|
-
if (!r || !
|
|
2642
|
+
if (!r || !Df(r)) return !1;
|
|
2631
2643
|
const e = r.split(" ").filter(Boolean);
|
|
2632
2644
|
if (e.length < 2) return !1;
|
|
2633
2645
|
const t = /^[A-Za-zÀ-ÖØ-öø-ÿ]+(?:[-'][A-Za-zÀ-ÖØ-öø-ÿ]+)*$/u;
|
|
2634
2646
|
return e.every((a) => {
|
|
2635
2647
|
const c = a.replace(/^[-']+|[-']+$/g, "");
|
|
2636
|
-
return !c ||
|
|
2648
|
+
return !c || Sf(c) ? !1 : t.test(a);
|
|
2637
2649
|
});
|
|
2638
2650
|
}
|
|
2639
|
-
const
|
|
2651
|
+
const go = (o) => (r) => !E.req(r) || o(r), A0 = E.withMessage("Campo obrigatório.", pf), N0 = E.withMessage("E-mail inválido.", (o) => E.req(o) ? cf.$validator(String(o).trim()) : !0), P0 = E.withMessage(
|
|
2640
2652
|
"Informe nome e sobrenome.",
|
|
2641
|
-
|
|
2642
|
-
), P0 = E.withMessage(
|
|
2643
|
-
"Informe apenas números.",
|
|
2644
|
-
fo(Bf)
|
|
2653
|
+
go(Mf)
|
|
2645
2654
|
), q0 = E.withMessage(
|
|
2655
|
+
"Informe apenas números.",
|
|
2656
|
+
go(Rf)
|
|
2657
|
+
), E0 = E.withMessage(
|
|
2646
2658
|
"CEP inválido.",
|
|
2647
|
-
|
|
2648
|
-
),
|
|
2659
|
+
go(Bf)
|
|
2660
|
+
), U0 = E.withMessage("CNPJ inválido.", go(kf)), _0 = E.withMessage("CPF inválido.", go(yf)), X0 = E.withMessage(
|
|
2649
2661
|
"Nº celular inválido.",
|
|
2650
|
-
|
|
2651
|
-
), X0 = E.withMessage(
|
|
2652
|
-
"Nº telefone inválido.",
|
|
2653
|
-
fo((o) => xf(so(o)))
|
|
2662
|
+
go((o) => xf(uo(o)))
|
|
2654
2663
|
), Z0 = E.withMessage(
|
|
2655
|
-
"
|
|
2656
|
-
(o) =>
|
|
2664
|
+
"Nº telefone inválido.",
|
|
2665
|
+
go((o) => wf(uo(o)))
|
|
2657
2666
|
), G0 = E.withMessage(
|
|
2658
|
-
"Data
|
|
2659
|
-
|
|
2667
|
+
"Data inválida.",
|
|
2668
|
+
(o) => o == null || o === "" ? !0 : o instanceof Date ? er(o) : er(zo(o))
|
|
2660
2669
|
), J0 = E.withMessage(
|
|
2670
|
+
"Data não pode ser maior que hoje.",
|
|
2671
|
+
go((o) => !$f(zo(o)))
|
|
2672
|
+
), Q0 = E.withMessage(
|
|
2661
2673
|
"Intervalo de datas inválido.",
|
|
2662
|
-
(o) => o == null ? !0 :
|
|
2674
|
+
(o) => o == null ? !0 : Cf(o)
|
|
2663
2675
|
);
|
|
2664
|
-
function
|
|
2676
|
+
function K0(o, r) {
|
|
2665
2677
|
return E.withMessage(
|
|
2666
2678
|
r || `Informe no máximo ${o} caracteres.`,
|
|
2667
|
-
(e) => E.req(e) ?
|
|
2679
|
+
(e) => E.req(e) ? uf(o).$validator(String(e)) : !0
|
|
2668
2680
|
);
|
|
2669
2681
|
}
|
|
2670
|
-
function
|
|
2682
|
+
function og(o, r) {
|
|
2671
2683
|
return E.withMessage(
|
|
2672
2684
|
r || `Informe no mínimo ${o} caracteres.`,
|
|
2673
|
-
(e) => E.req(e) ?
|
|
2685
|
+
(e) => E.req(e) ? gf(o).$validator(String(e)) : !0
|
|
2674
2686
|
);
|
|
2675
2687
|
}
|
|
2676
|
-
function
|
|
2688
|
+
function rg(o, r) {
|
|
2677
2689
|
return E.withMessage(
|
|
2678
2690
|
r || `Valor mínimo é ${o}.`,
|
|
2679
|
-
(e) => E.req(e) ?
|
|
2691
|
+
(e) => E.req(e) ? vf(o).$validator(Number(e)) : !0
|
|
2680
2692
|
);
|
|
2681
2693
|
}
|
|
2682
2694
|
export {
|
|
2683
2695
|
Vr as BaseAlert,
|
|
2684
|
-
|
|
2696
|
+
Kf as BaseAutoComplete,
|
|
2685
2697
|
Fo as BaseButton,
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2698
|
+
o0 as BaseCard,
|
|
2699
|
+
r0 as BaseChart,
|
|
2700
|
+
e0 as BaseCurrency,
|
|
2701
|
+
t0 as BaseDate,
|
|
2702
|
+
a0 as BaseDatePicker,
|
|
2703
|
+
n0 as BaseDialog,
|
|
2704
|
+
i0 as BaseDrawer,
|
|
2705
|
+
d0 as BaseEmpty,
|
|
2706
|
+
l0 as BaseField,
|
|
2707
|
+
Nr as BaseInputMask,
|
|
2708
|
+
c0 as BaseInputText,
|
|
2709
|
+
s0 as BaseModal,
|
|
2710
|
+
u0 as BaseMultiSelect,
|
|
2711
|
+
f0 as BasePanel,
|
|
2712
|
+
g0 as BaseRadioButton,
|
|
2713
|
+
m0 as BaseRouterLink,
|
|
2714
|
+
p0 as BaseSectionDivider,
|
|
2715
|
+
b0 as BaseSelect,
|
|
2716
|
+
h0 as BaseSwitch,
|
|
2717
|
+
v0 as BaseTextarea,
|
|
2706
2718
|
Mo as FaIcon,
|
|
2707
2719
|
Yo as add,
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2720
|
+
Y0 as addDays,
|
|
2721
|
+
L0 as addMinutes,
|
|
2722
|
+
V0 as addMonths,
|
|
2723
|
+
O0 as addYears,
|
|
2724
|
+
j0 as formatAddress,
|
|
2725
|
+
I0 as formatCouncil,
|
|
2726
|
+
R0 as formatDate,
|
|
2727
|
+
D0 as formatDateTime,
|
|
2728
|
+
B0 as formatDateTimeToApi,
|
|
2729
|
+
w0 as formatDateToApi,
|
|
2730
|
+
W0 as formatDocument,
|
|
2731
|
+
z0 as formatFullDate,
|
|
2732
|
+
F0 as formatNumber,
|
|
2733
|
+
H0 as formatPhone,
|
|
2734
|
+
S0 as formatTime,
|
|
2735
|
+
M0 as formatWeekday,
|
|
2736
|
+
uo as onlyNumber,
|
|
2737
|
+
y0 as setupPrimeVue,
|
|
2738
|
+
or as startOfDay,
|
|
2739
|
+
T0 as toCamelCaseWords,
|
|
2728
2740
|
zo as toDate,
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2741
|
+
x0 as today,
|
|
2742
|
+
$0 as useAppToast,
|
|
2743
|
+
C0 as useClickOutside,
|
|
2744
|
+
k0 as vFocus,
|
|
2745
|
+
X0 as validCellphone,
|
|
2746
|
+
U0 as validCnpj,
|
|
2747
|
+
_0 as validCpf,
|
|
2748
|
+
G0 as validDate,
|
|
2749
|
+
Q0 as validDateRange,
|
|
2750
|
+
N0 as validEmail,
|
|
2751
|
+
P0 as validFullName,
|
|
2752
|
+
K0 as validMaxLength,
|
|
2753
|
+
og as validMinLength,
|
|
2754
|
+
rg as validMinValue,
|
|
2755
|
+
J0 as validNotFutureDate,
|
|
2756
|
+
q0 as validOnlyNumbers,
|
|
2757
|
+
Z0 as validPhone,
|
|
2758
|
+
E0 as validPostalCode,
|
|
2759
|
+
A0 as validRequired
|
|
2748
2760
|
};
|