@stencitecnologia/front-kit 0.1.2

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.
@@ -0,0 +1,1744 @@
1
+ import { computed as x, openBlock as y, createElementBlock as D, normalizeClass as wo, toDisplayString as q, createCommentVNode as F, createBlock as Y, unref as B, mergeProps as J, withCtx as P, renderSlot as to, useSlots as To, createElementVNode as _, createVNode as Z, ref as $o, watch as Ao, createTextVNode as So, Fragment as No, Teleport as Ho, withModifiers as Lo, onMounted as Po, onBeforeUnmount as _o } from "vue";
2
+ import qo from "primevue/button";
3
+ import Io from "primevue/datepicker";
4
+ import Eo from "primevue/inputgroup";
5
+ import Xo from "primevue/inputgroupaddon";
6
+ import Uo from "primevue/popover";
7
+ import Go from "primevue/inputmask";
8
+ import { FontAwesomeIcon as Zo } from "@fortawesome/vue-fontawesome";
9
+ import Jo from "primevue/drawer";
10
+ import Qo from "primevue/inputtext";
11
+ import { RouterLink as Ko } from "vue-router";
12
+ import or from "primevue/select";
13
+ import rr from "primevue/toggleswitch";
14
+ import er from "primevue/config";
15
+ import { useToast as ar } from "primevue/usetoast";
16
+ const nr = {
17
+ __name: "BaseAlert",
18
+ props: {
19
+ message: {
20
+ type: String,
21
+ default: ""
22
+ },
23
+ variant: {
24
+ type: String,
25
+ default: "error"
26
+ }
27
+ },
28
+ setup(o) {
29
+ const r = o, e = x(() => r.variant === "success" ? "ui-alert-success" : "ui-alert-error");
30
+ return (a, n) => o.message ? (y(), D("div", {
31
+ key: 0,
32
+ class: wo(["ui-alert", e.value]),
33
+ role: "alert"
34
+ }, q(o.message), 3)) : F("", !0);
35
+ }
36
+ }, Co = {
37
+ __name: "BaseButton",
38
+ props: {
39
+ label: {
40
+ type: String,
41
+ default: ""
42
+ },
43
+ loading: {
44
+ type: Boolean,
45
+ default: !1
46
+ },
47
+ disabled: {
48
+ type: Boolean,
49
+ default: !1
50
+ },
51
+ variant: {
52
+ type: String,
53
+ default: "primary"
54
+ },
55
+ type: {
56
+ type: String,
57
+ default: "button",
58
+ validator(o) {
59
+ return ["button", "submit", "reset"].includes(o);
60
+ }
61
+ }
62
+ },
63
+ setup(o) {
64
+ const r = o, e = x(() => [
65
+ "ui-btn",
66
+ {
67
+ "ui-btn-primary": r.variant === "primary",
68
+ "ui-btn-secondary": r.variant === "secondary",
69
+ "ui-btn-ghost": r.variant === "ghost",
70
+ "ui-btn-outline": r.variant === "outline"
71
+ }
72
+ ]), a = x(() => r.disabled || r.loading);
73
+ return (n, s) => (y(), Y(B(qo), J(n.$attrs, {
74
+ label: o.label,
75
+ loading: o.loading,
76
+ disabled: a.value,
77
+ class: e.value,
78
+ type: o.type
79
+ }), {
80
+ default: P(() => [
81
+ o.loading ? F("", !0) : to(n.$slots, "default", { key: 0 })
82
+ ]),
83
+ _: 3
84
+ }, 16, ["label", "loading", "disabled", "class", "type"]));
85
+ }
86
+ }, tr = {
87
+ key: 0,
88
+ class: "ui-card-header"
89
+ }, dr = {
90
+ key: 0,
91
+ class: "ui-card-title"
92
+ }, ir = {
93
+ key: 1,
94
+ class: "ui-card-subtitle"
95
+ }, cr = { class: "ui-card-content" }, lr = {
96
+ key: 1,
97
+ class: "ui-card-footer"
98
+ }, sr = { class: "ui-card-footer-content" }, Pu = {
99
+ __name: "BaseCard",
100
+ props: {
101
+ title: {
102
+ type: String,
103
+ default: ""
104
+ },
105
+ subtitle: {
106
+ type: String,
107
+ default: ""
108
+ },
109
+ className: {
110
+ type: String,
111
+ default: ""
112
+ },
113
+ hasFooterActions: {
114
+ type: Boolean,
115
+ default: !1
116
+ },
117
+ alertMessage: {
118
+ type: String,
119
+ default: ""
120
+ },
121
+ alertVariant: {
122
+ type: String,
123
+ default: "error"
124
+ }
125
+ },
126
+ setup(o) {
127
+ const r = o, e = To(), a = x(() => !!(r.title || r.subtitle)), n = x(() => !!e.footer), s = x(() => [
128
+ "ui-card",
129
+ r.className,
130
+ { "ui-card-has-footer": n.value }
131
+ ]);
132
+ return (u, v) => (y(), D("section", {
133
+ class: wo(s.value)
134
+ }, [
135
+ a.value ? (y(), D("header", tr, [
136
+ o.title ? (y(), D("div", dr, q(o.title), 1)) : F("", !0),
137
+ o.subtitle ? (y(), D("div", ir, q(o.subtitle), 1)) : F("", !0)
138
+ ])) : F("", !0),
139
+ _("div", cr, [
140
+ Z(nr, {
141
+ message: o.alertMessage,
142
+ variant: o.alertVariant
143
+ }, null, 8, ["message", "variant"]),
144
+ to(u.$slots, "default")
145
+ ]),
146
+ n.value ? (y(), D("footer", lr, [
147
+ _("div", sr, [
148
+ to(u.$slots, "footer")
149
+ ])
150
+ ])) : F("", !0)
151
+ ], 2));
152
+ }
153
+ }, ur = {
154
+ __name: "BaseInputMask",
155
+ props: {
156
+ modelValue: {
157
+ type: [String, Number, null],
158
+ default: ""
159
+ },
160
+ invalid: {
161
+ type: Boolean,
162
+ default: !1
163
+ },
164
+ disabled: {
165
+ type: Boolean,
166
+ default: !1
167
+ },
168
+ readonly: {
169
+ type: Boolean,
170
+ default: !1
171
+ },
172
+ mask: {
173
+ type: String,
174
+ required: !0
175
+ },
176
+ slotChar: {
177
+ type: String,
178
+ default: "_"
179
+ },
180
+ autoClear: {
181
+ type: Boolean,
182
+ default: !1
183
+ }
184
+ },
185
+ emits: ["update:modelValue"],
186
+ setup(o, { emit: r }) {
187
+ const e = o, a = r, n = x({
188
+ get: () => e.modelValue,
189
+ set: (s) => a("update:modelValue", s)
190
+ });
191
+ return (s, u) => (y(), Y(B(Go), J({
192
+ modelValue: n.value,
193
+ "onUpdate:modelValue": u[0] || (u[0] = (v) => n.value = v),
194
+ mask: o.mask,
195
+ "slot-char": o.slotChar,
196
+ "auto-clear": o.autoClear,
197
+ disabled: o.disabled,
198
+ readonly: o.readonly,
199
+ class: [
200
+ { "p-invalid": o.invalid }
201
+ ]
202
+ }, s.$attrs), null, 16, ["modelValue", "mask", "slot-char", "auto-clear", "disabled", "readonly", "class"]));
203
+ }
204
+ }, jo = {
205
+ __name: "FaIcon",
206
+ props: {
207
+ icon: {
208
+ type: [Array, String, Object],
209
+ required: !0
210
+ }
211
+ },
212
+ setup(o) {
213
+ const r = o, e = x(() => r.icon);
214
+ return (a, n) => (y(), Y(B(Zo), J({ icon: e.value }, a.$attrs), null, 16, ["icon"]));
215
+ }
216
+ }, _u = {
217
+ __name: "BaseDate",
218
+ props: {
219
+ modelValue: {
220
+ type: [Date, Array, null],
221
+ default: null
222
+ },
223
+ invalid: {
224
+ type: Boolean,
225
+ default: !1
226
+ },
227
+ disabled: {
228
+ type: Boolean,
229
+ default: !1
230
+ },
231
+ selectionMode: {
232
+ type: String,
233
+ default: "single"
234
+ },
235
+ minDate: {
236
+ type: Date,
237
+ default: null
238
+ },
239
+ maxDate: {
240
+ type: Date,
241
+ default: null
242
+ },
243
+ placeholder: {
244
+ type: String,
245
+ default: "dd/mm/aaaa"
246
+ },
247
+ mask: {
248
+ type: String,
249
+ default: "99/99/9999"
250
+ },
251
+ showToday: {
252
+ type: Boolean,
253
+ default: !1
254
+ },
255
+ showClear: {
256
+ type: Boolean,
257
+ default: !1
258
+ },
259
+ calendarIcon: {
260
+ type: Array,
261
+ default: null
262
+ }
263
+ },
264
+ emits: ["update:modelValue", "update:textValue"],
265
+ setup(o, { emit: r }) {
266
+ const e = o, a = r, n = $o(null), s = $o(""), u = $o(null), v = x(() => e.selectionMode === "range"), k = (d) => String(d).padStart(2, "0"), $ = (d) => {
267
+ if (!(d instanceof Date) || Number.isNaN(d.getTime())) return "";
268
+ const h = k(d.getDate()), f = k(d.getMonth() + 1), m = String(d.getFullYear());
269
+ return `${h}/${f}/${m}`;
270
+ }, H = (d) => {
271
+ if (!d || typeof d != "string") return null;
272
+ const h = d.match(/^(\d{2})\/(\d{2})\/(\d{4})$/);
273
+ if (!h) return null;
274
+ const f = Number(h[1]), m = Number(h[2]), j = Number(h[3]);
275
+ if (m < 1 || m > 12 || f < 1 || f > 31 || j < 1e3 || j > 9999) return null;
276
+ const eo = new Date(j, m - 1, f);
277
+ return eo.getFullYear() !== j || eo.getMonth() !== m - 1 || eo.getDate() !== f ? null : eo;
278
+ }, R = (d) => !(!(d instanceof Date) || Number.isNaN(d.getTime()) || e.minDate && d < e.minDate || e.maxDate && d > e.maxDate), E = (d) => {
279
+ const [h, f] = d || [], m = h ? $(h) : "", j = f ? $(f) : "";
280
+ return !m && !j ? "" : m && !j ? `${m} - ` : `${m} - ${j}`;
281
+ }, T = (d) => {
282
+ if (!d || typeof d != "string") return null;
283
+ const h = d.match(/^(.+?)\s*-\s*(.+?)$/);
284
+ if (!h) return null;
285
+ const f = H(h[1].trim()), m = H(h[2].trim());
286
+ return !f || !m ? null : [f, m];
287
+ }, z = (d) => {
288
+ s.value = d, a("update:textValue", d);
289
+ }, M = (d) => {
290
+ z($(d)), u.value = d;
291
+ }, K = (d) => {
292
+ z(E(d)), u.value = d;
293
+ }, oo = (d) => {
294
+ if (!Array.isArray(d)) return;
295
+ const [h, f] = d;
296
+ !(h instanceof Date) || !(f instanceof Date) || a("update:modelValue", [h, f]);
297
+ }, ro = () => {
298
+ z(""), u.value = null, a("update:modelValue", null);
299
+ }, lo = (d) => {
300
+ if (z(d), !d) {
301
+ u.value = null, a("update:modelValue", null);
302
+ return;
303
+ }
304
+ if (v.value) {
305
+ const f = T(d);
306
+ if (!f) return;
307
+ u.value = f, oo(f);
308
+ return;
309
+ }
310
+ const h = H(d);
311
+ h && (u.value = h, a("update:modelValue", h));
312
+ }, X = (d) => {
313
+ if (d) {
314
+ if (v.value) {
315
+ u.value = d, K(d), oo(d);
316
+ return;
317
+ }
318
+ M(d), a("update:modelValue", d), n.value && n.value.hide();
319
+ }
320
+ }, A = (d) => {
321
+ n.value && n.value.toggle(d);
322
+ }, O = () => {
323
+ const d = /* @__PURE__ */ new Date(), h = new Date(d.getFullYear(), d.getMonth(), d.getDate());
324
+ if (R(h)) {
325
+ if (v.value) {
326
+ const f = [h, h];
327
+ K(f), a("update:modelValue", f);
328
+ return;
329
+ }
330
+ M(h), a("update:modelValue", h);
331
+ }
332
+ }, U = x({
333
+ get: () => s.value,
334
+ set: (d) => lo(d)
335
+ });
336
+ return Ao(
337
+ () => e.modelValue,
338
+ (d) => {
339
+ if (d === null) {
340
+ (s.value !== "" || u.value !== null) && (z(""), u.value = null);
341
+ return;
342
+ }
343
+ if (v.value) {
344
+ Array.isArray(d) && K(d);
345
+ return;
346
+ }
347
+ d instanceof Date && M(d);
348
+ },
349
+ { immediate: !0 }
350
+ ), (d, h) => (y(), Y(B(Eo), { class: "ui-inputgroup" }, {
351
+ default: P(() => [
352
+ Z(ur, J({
353
+ modelValue: U.value,
354
+ "onUpdate:modelValue": h[0] || (h[0] = (f) => U.value = f),
355
+ mask: v.value ? "" : o.mask,
356
+ placeholder: o.placeholder,
357
+ disabled: o.disabled,
358
+ invalid: o.invalid,
359
+ class: "ui-control"
360
+ }, d.$attrs), null, 16, ["modelValue", "mask", "placeholder", "disabled", "invalid"]),
361
+ Z(B(Xo), { class: "ui-inputgroup-addon" }, {
362
+ default: P(() => [
363
+ o.showClear ? (y(), Y(Co, {
364
+ key: 0,
365
+ type: "button",
366
+ variant: "outline",
367
+ disabled: o.disabled,
368
+ "aria-label": "Limpar data",
369
+ onClick: ro
370
+ }, {
371
+ default: P(() => [...h[2] || (h[2] = [
372
+ So(" Limpar ", -1)
373
+ ])]),
374
+ _: 1
375
+ }, 8, ["disabled"])) : F("", !0),
376
+ o.showToday ? (y(), Y(Co, {
377
+ key: 1,
378
+ type: "button",
379
+ variant: "outline",
380
+ disabled: o.disabled,
381
+ "aria-label": "Selecionar hoje",
382
+ onClick: O
383
+ }, {
384
+ default: P(() => [...h[3] || (h[3] = [
385
+ So(" Hoje ", -1)
386
+ ])]),
387
+ _: 1
388
+ }, 8, ["disabled"])) : F("", !0),
389
+ Z(Co, {
390
+ type: "button",
391
+ variant: "ghost",
392
+ disabled: o.disabled,
393
+ "aria-label": "Abrir calendário",
394
+ onClick: A
395
+ }, {
396
+ default: P(() => [
397
+ Z(jo, {
398
+ class: "text-lg",
399
+ icon: o.calendarIcon
400
+ }, null, 8, ["icon"])
401
+ ]),
402
+ _: 1
403
+ }, 8, ["disabled"])
404
+ ]),
405
+ _: 1
406
+ }),
407
+ Z(B(Uo), {
408
+ ref_key: "popoverRef",
409
+ ref: n
410
+ }, {
411
+ default: P(() => [
412
+ Z(B(Io), {
413
+ modelValue: u.value,
414
+ "onUpdate:modelValue": [
415
+ h[1] || (h[1] = (f) => u.value = f),
416
+ X
417
+ ],
418
+ inline: "",
419
+ "selection-mode": o.selectionMode,
420
+ "min-date": o.minDate,
421
+ "max-date": o.maxDate
422
+ }, null, 8, ["modelValue", "selection-mode", "min-date", "max-date"])
423
+ ]),
424
+ _: 1
425
+ }, 512)
426
+ ]),
427
+ _: 1
428
+ }));
429
+ }
430
+ }, qu = {
431
+ __name: "BaseDatePicker",
432
+ props: {
433
+ modelValue: {
434
+ type: [Date, String, Array, null],
435
+ default: null
436
+ },
437
+ invalid: {
438
+ type: Boolean,
439
+ default: !1
440
+ },
441
+ disabled: {
442
+ type: Boolean,
443
+ default: !1
444
+ }
445
+ },
446
+ emits: ["update:modelValue"],
447
+ setup(o, { emit: r }) {
448
+ const e = o, a = r, n = x({
449
+ get: () => e.modelValue,
450
+ set: (s) => a("update:modelValue", s)
451
+ });
452
+ return (s, u) => (y(), Y(B(Io), J({
453
+ modelValue: n.value,
454
+ "onUpdate:modelValue": u[0] || (u[0] = (v) => n.value = v),
455
+ disabled: o.disabled,
456
+ class: [
457
+ "w-full",
458
+ { "p-invalid": o.invalid }
459
+ ]
460
+ }, s.$attrs), null, 16, ["modelValue", "disabled", "class"]));
461
+ }
462
+ }, fr = { class: "ui-drawer-content" }, Eu = /* @__PURE__ */ Object.assign({
463
+ inheritAttrs: !1
464
+ }, {
465
+ __name: "BaseDrawer",
466
+ props: {
467
+ visible: {
468
+ type: Boolean,
469
+ default: !1
470
+ },
471
+ position: {
472
+ type: String,
473
+ default: "left"
474
+ },
475
+ title: {
476
+ type: String,
477
+ default: "Atenção"
478
+ },
479
+ modal: {
480
+ type: Boolean,
481
+ default: !0
482
+ },
483
+ dismissable: {
484
+ type: Boolean,
485
+ default: !0
486
+ }
487
+ },
488
+ emits: ["update:visible"],
489
+ setup(o, { emit: r }) {
490
+ const e = o, a = r, n = x(() => e.visible), s = () => a("update:visible", !1), u = (k) => {
491
+ k.target === k.currentTarget && s();
492
+ }, v = (k) => {
493
+ a("update:visible", k);
494
+ };
495
+ return (k, $) => (y(), D(No, null, [
496
+ (y(), Y(Ho, { to: "body" }, [
497
+ n.value ? (y(), D("div", {
498
+ key: 0,
499
+ class: "ui-drawer-backdrop",
500
+ role: "presentation",
501
+ onClick: u
502
+ })) : F("", !0)
503
+ ])),
504
+ Z(B(Jo), J(k.$attrs, {
505
+ modal: o.modal,
506
+ dismissable: o.dismissable,
507
+ header: o.title,
508
+ "show-close-icon": !1,
509
+ visible: n.value,
510
+ position: o.position,
511
+ class: "ui-drawer",
512
+ "onUpdate:visible": v
513
+ }), {
514
+ default: P(() => [
515
+ _("div", fr, [
516
+ to(k.$slots, "default")
517
+ ])
518
+ ]),
519
+ _: 3
520
+ }, 16, ["modal", "dismissable", "header", "visible", "position"])
521
+ ], 64));
522
+ }
523
+ }), gr = (o, r) => {
524
+ const e = o.__vccOpts || o;
525
+ for (const [a, n] of r)
526
+ e[a] = n;
527
+ return e;
528
+ }, mr = { class: "ui-empty" }, pr = { class: "ui-empty__media" }, br = ["src"], hr = { class: "ui-empty__content" }, vr = { class: "ui-empty__title" }, kr = {
529
+ key: 0,
530
+ class: "ui-empty__description"
531
+ }, yr = { class: "ui-empty__actions" }, $r = {
532
+ __name: "BaseEmpty",
533
+ props: {
534
+ icon: {
535
+ type: Array,
536
+ default: () => ["fal", "info-circle"]
537
+ },
538
+ image: {
539
+ type: String,
540
+ default: null
541
+ },
542
+ title: {
543
+ type: String,
544
+ default: "Nenhum resultado encontrado"
545
+ },
546
+ description: {
547
+ type: String,
548
+ default: ""
549
+ }
550
+ },
551
+ setup(o) {
552
+ const r = o, e = x(() => !!r.image), a = x(() => !!r.description);
553
+ return (n, s) => (y(), D("div", mr, [
554
+ _("div", pr, [
555
+ e.value ? (y(), D("img", {
556
+ key: 0,
557
+ src: o.image,
558
+ alt: "",
559
+ class: "ui-empty__image"
560
+ }, null, 8, br)) : (y(), Y(jo, {
561
+ key: 1,
562
+ icon: o.icon,
563
+ class: "ui-empty__icon"
564
+ }, null, 8, ["icon"]))
565
+ ]),
566
+ _("div", hr, [
567
+ _("h3", vr, q(o.title), 1),
568
+ a.value ? (y(), D("p", kr, q(o.description), 1)) : F("", !0),
569
+ _("div", yr, [
570
+ to(n.$slots, "default", {}, void 0, !0)
571
+ ])
572
+ ])
573
+ ]));
574
+ }
575
+ }, Xu = /* @__PURE__ */ gr($r, [["__scopeId", "data-v-91327e2b"]]), Cr = { class: "ui-field" }, xr = ["for"], wr = { class: "ui-control" }, Br = {
576
+ key: 1,
577
+ class: "ui-error",
578
+ role: "alert"
579
+ }, Rr = {
580
+ key: 2,
581
+ class: "ui-help"
582
+ }, Uu = {
583
+ __name: "BaseField",
584
+ props: {
585
+ label: {
586
+ type: String,
587
+ default: ""
588
+ },
589
+ forId: {
590
+ type: String,
591
+ default: ""
592
+ },
593
+ error: {
594
+ type: String,
595
+ default: ""
596
+ },
597
+ help: {
598
+ type: String,
599
+ default: ""
600
+ }
601
+ },
602
+ setup(o) {
603
+ const r = o, e = x(() => !!r.label), a = x(() => !!r.error), n = x(() => !!r.help);
604
+ return (s, u) => (y(), D("div", Cr, [
605
+ e.value ? (y(), D("label", {
606
+ key: 0,
607
+ class: "ui-label",
608
+ for: o.forId
609
+ }, q(o.label), 9, xr)) : F("", !0),
610
+ _("div", wr, [
611
+ to(s.$slots, "default")
612
+ ]),
613
+ a.value ? (y(), D("small", Br, q(o.error), 1)) : n.value ? (y(), D("small", Rr, q(o.help), 1)) : F("", !0)
614
+ ]));
615
+ }
616
+ }, Gu = {
617
+ __name: "BaseInputText",
618
+ props: {
619
+ modelValue: {
620
+ type: [String, Number, null],
621
+ default: ""
622
+ },
623
+ invalid: {
624
+ type: Boolean,
625
+ default: !1
626
+ },
627
+ disabled: {
628
+ type: Boolean,
629
+ default: !1
630
+ },
631
+ readonly: {
632
+ type: Boolean,
633
+ default: !1
634
+ }
635
+ },
636
+ emits: ["update:modelValue"],
637
+ setup(o, { emit: r }) {
638
+ const e = o, a = r, n = x({
639
+ get: () => e.modelValue,
640
+ set: (s) => a("update:modelValue", s)
641
+ });
642
+ return (s, u) => (y(), Y(B(Qo), J({
643
+ modelValue: n.value,
644
+ "onUpdate:modelValue": u[0] || (u[0] = (v) => n.value = v),
645
+ disabled: o.disabled,
646
+ readonly: o.readonly,
647
+ class: [
648
+ "w-full",
649
+ { "p-invalid": o.invalid }
650
+ ]
651
+ }, s.$attrs), null, 16, ["modelValue", "disabled", "readonly", "class"]));
652
+ }
653
+ }, Zu = {
654
+ __name: "BaseRouterLink",
655
+ props: {
656
+ to: {
657
+ type: [String, Object],
658
+ default: "/"
659
+ },
660
+ loading: {
661
+ type: Boolean,
662
+ default: !1
663
+ },
664
+ disabled: {
665
+ type: Boolean,
666
+ default: !1
667
+ },
668
+ variant: {
669
+ type: String,
670
+ default: "primary"
671
+ }
672
+ },
673
+ setup(o) {
674
+ const r = o, e = x(() => r.disabled || r.loading), a = x(() => [
675
+ "ui-btn",
676
+ {
677
+ "ui-btn-primary": r.variant === "primary",
678
+ "ui-btn-secondary": r.variant === "secondary",
679
+ "ui-btn-ghost": r.variant === "ghost",
680
+ "ui-btn-outline": r.variant === "outline",
681
+ "ui-btn-disabled": e.value
682
+ }
683
+ ]);
684
+ return (n, s) => (y(), Y(B(Ko), {
685
+ to: e.value ? void 0 : o.to,
686
+ class: wo(a.value),
687
+ "aria-disabled": e.value,
688
+ onClick: s[0] || (s[0] = Lo((u) => e.value && u.preventDefault(), ["prevent"]))
689
+ }, {
690
+ default: P(() => [
691
+ to(n.$slots, "default")
692
+ ]),
693
+ _: 3
694
+ }, 8, ["to", "class", "aria-disabled"]));
695
+ }
696
+ }, Sr = { class: "ui-section-divider" }, Dr = {
697
+ key: 0,
698
+ class: "ui-section-divider__label"
699
+ }, Ju = {
700
+ __name: "BaseSectionDivider",
701
+ props: {
702
+ label: {
703
+ type: String,
704
+ required: !0
705
+ }
706
+ },
707
+ setup(o) {
708
+ const r = o, e = x(() => !!r.label);
709
+ return (a, n) => (y(), D("div", Sr, [
710
+ e.value ? (y(), D("span", Dr, q(o.label), 1)) : F("", !0),
711
+ n[0] || (n[0] = _("div", { class: "ui-section-divider__line" }, null, -1))
712
+ ]));
713
+ }
714
+ }, Qu = {
715
+ __name: "BaseSelect",
716
+ props: {
717
+ modelValue: {
718
+ type: [String, Number, Object, null],
719
+ default: null
720
+ },
721
+ options: {
722
+ type: Array,
723
+ required: !0
724
+ },
725
+ optionLabel: {
726
+ type: String,
727
+ default: "label"
728
+ },
729
+ optionValue: {
730
+ type: String,
731
+ default: null
732
+ },
733
+ placeholder: {
734
+ type: String,
735
+ default: "Selecione"
736
+ },
737
+ disabled: {
738
+ type: Boolean,
739
+ default: !1
740
+ },
741
+ loading: {
742
+ type: Boolean,
743
+ default: !1
744
+ },
745
+ invalid: {
746
+ type: Boolean,
747
+ default: !1
748
+ },
749
+ optionEmpty: {
750
+ type: Object,
751
+ default: null
752
+ }
753
+ },
754
+ emits: ["update:modelValue"],
755
+ setup(o, { emit: r }) {
756
+ const e = o, a = r, n = x({
757
+ get: () => e.modelValue,
758
+ set: (u) => a("update:modelValue", u)
759
+ }), s = x(() => e.optionEmpty ? [
760
+ e.optionEmpty,
761
+ ...e.options
762
+ ] : e.options);
763
+ return (u, v) => (y(), Y(B(or), J({
764
+ modelValue: n.value,
765
+ "onUpdate:modelValue": v[0] || (v[0] = (k) => n.value = k),
766
+ options: s.value,
767
+ "option-label": o.optionLabel,
768
+ "option-value": o.optionValue,
769
+ placeholder: o.placeholder,
770
+ disabled: o.disabled,
771
+ loading: o.loading,
772
+ class: [
773
+ "ui-select w-full",
774
+ { "p-invalid": o.invalid }
775
+ ]
776
+ }, u.$attrs), null, 16, ["modelValue", "options", "option-label", "option-value", "placeholder", "disabled", "loading", "class"]));
777
+ }
778
+ }, Ku = {
779
+ __name: "BaseSwitch",
780
+ props: {
781
+ modelValue: {
782
+ type: Boolean,
783
+ default: !1
784
+ },
785
+ disabled: {
786
+ type: Boolean,
787
+ default: !1
788
+ },
789
+ loading: {
790
+ type: Boolean,
791
+ default: !1
792
+ },
793
+ inputId: {
794
+ type: String,
795
+ default: null
796
+ }
797
+ },
798
+ emits: ["update:modelValue"],
799
+ setup(o, { emit: r }) {
800
+ const e = o, a = r, n = x({
801
+ get: () => e.modelValue,
802
+ set: (u) => {
803
+ e.disabled || e.loading || a("update:modelValue", u);
804
+ }
805
+ }), s = x(() => e.disabled || e.loading);
806
+ return (u, v) => (y(), Y(B(rr), {
807
+ modelValue: n.value,
808
+ "onUpdate:modelValue": v[0] || (v[0] = (k) => n.value = k),
809
+ "input-id": o.inputId,
810
+ disabled: s.value,
811
+ class: "base-switch"
812
+ }, null, 8, ["modelValue", "input-id", "disabled"]));
813
+ }
814
+ }, o0 = {
815
+ mounted(o) {
816
+ const r = () => {
817
+ typeof o?.focus == "function" && o.focus();
818
+ };
819
+ requestAnimationFrame(() => {
820
+ r(), setTimeout(() => {
821
+ document.activeElement !== o && r();
822
+ }, 350);
823
+ });
824
+ }
825
+ };
826
+ var zr = { transitionDuration: "{transition.duration}" }, Mr = { borderWidth: "0 0 1px 0", borderColor: "{content.border.color}" }, Wr = { 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" } }, Vr = { borderWidth: "0", borderColor: "{content.border.color}", background: "{content.background}", color: "{text.color}", padding: "0 1.125rem 1.125rem 1.125rem" }, Or = { root: zr, panel: Mr, header: Wr, content: Vr }, Ir = { 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}" }, jr = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Fr = { padding: "{list.padding}", gap: "{list.gap}" }, Yr = { 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}" }, Tr = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, Ar = { 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}" } }, Nr = { borderRadius: "{border.radius.sm}" }, Hr = { padding: "{list.option.padding}" }, Lr = { 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}" } } }, Pr = { root: Ir, overlay: jr, list: Fr, option: Yr, optionGroup: Tr, dropdown: Ar, chip: Nr, emptyMessage: Hr, colorScheme: Lr }, _r = { width: "2rem", height: "2rem", fontSize: "1rem", background: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, qr = { size: "1rem" }, Er = { borderColor: "{content.background}", offset: "-0.75rem" }, Xr = { width: "3rem", height: "3rem", fontSize: "1.5rem", icon: { size: "1.5rem" }, group: { offset: "-1rem" } }, Ur = { width: "4rem", height: "4rem", fontSize: "2rem", icon: { size: "2rem" }, group: { offset: "-1.5rem" } }, Gr = { root: _r, icon: qr, group: Er, lg: Xr, xl: Ur }, Zr = { borderRadius: "{border.radius.md}", padding: "0 0.5rem", fontSize: "0.75rem", fontWeight: "700", minWidth: "1.5rem", height: "1.5rem" }, Jr = { size: "0.5rem" }, Qr = { fontSize: "0.625rem", minWidth: "1.25rem", height: "1.25rem" }, Kr = { fontSize: "0.875rem", minWidth: "1.75rem", height: "1.75rem" }, oe = { fontSize: "1rem", minWidth: "2rem", height: "2rem" }, re = { 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}" } } }, ee = { root: Zr, dot: Jr, sm: Qr, lg: Kr, xl: oe, colorScheme: re }, ae = { 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" } }, ne = { 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}" } } } } }, te = { primitive: ae, semantic: ne }, de = { borderRadius: "{content.border.radius}" }, ie = { root: de }, ce = { padding: "1rem", background: "{content.background}", gap: "0.5rem", transitionDuration: "{transition.duration}" }, le = { 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}" } }, se = { color: "{navigation.item.icon.color}" }, ue = { root: ce, item: le, separator: se }, fe = { 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}" }, ge = { 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}" } } }, me = { root: fe, colorScheme: ge }, pe = { 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)" }, be = { padding: "1.25rem", gap: "0.5rem" }, he = { gap: "0.5rem" }, ve = { fontSize: "1.25rem", fontWeight: "500" }, ke = { color: "{text.muted.color}" }, ye = { root: pe, body: be, caption: he, title: ve, subtitle: ke }, $e = { transitionDuration: "{transition.duration}" }, Ce = { gap: "0.25rem" }, xe = { padding: "1rem", gap: "0.5rem" }, we = { width: "2rem", height: "0.5rem", borderRadius: "{content.border.radius}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Be = { light: { indicator: { background: "{surface.200}", hoverBackground: "{surface.300}", activeBackground: "{primary.color}" } }, dark: { indicator: { background: "{surface.700}", hoverBackground: "{surface.600}", activeBackground: "{primary.color}" } } }, Re = { root: $e, content: Ce, indicatorList: xe, indicator: we, colorScheme: Be }, Se = { 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}" } }, De = { width: "2.5rem", color: "{form.field.icon.color}" }, ze = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Me = { padding: "{list.padding}", gap: "{list.gap}", mobileIndent: "1rem" }, We = { 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" } }, Ve = { color: "{form.field.icon.color}" }, Oe = { root: Se, dropdown: De, overlay: ze, list: Me, option: We, clearIcon: Ve }, Ie = { 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" } }, je = { 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" } }, Fe = { root: Ie, icon: je }, Ye = { borderRadius: "16px", paddingX: "0.75rem", paddingY: "0.5rem", gap: "0.5rem", transitionDuration: "{transition.duration}" }, Te = { width: "2rem", height: "2rem" }, Ae = { size: "1rem" }, Ne = { 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}" } }, He = { 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}" } } }, Le = { root: Ye, image: Te, icon: Ae, removeIcon: Ne, colorScheme: He }, Pe = { transitionDuration: "{transition.duration}" }, _e = { 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}" } }, qe = { shadow: "{overlay.popover.shadow}", borderRadius: "{overlay.popover.borderRadius}" }, Ee = { light: { panel: { background: "{surface.800}", borderColor: "{surface.900}" }, handle: { color: "{surface.0}" } }, dark: { panel: { background: "{surface.900}", borderColor: "{surface.700}" }, handle: { color: "{surface.0}" } } }, Xe = { root: Pe, preview: _e, panel: qe, colorScheme: Ee }, Ue = { size: "2rem", color: "{overlay.modal.color}" }, Ge = { gap: "1rem" }, Ze = { icon: Ue, content: Ge }, Je = { 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" }, Qe = { padding: "{overlay.popover.padding}", gap: "1rem" }, Ke = { size: "1.5rem", color: "{overlay.popover.color}" }, oa = { gap: "0.5rem", padding: "0 {overlay.popover.padding} {overlay.popover.padding} {overlay.popover.padding}" }, ra = { root: Je, content: Qe, icon: Ke, footer: oa }, ea = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, aa = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, na = { 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}" } }, ta = { mobileIndent: "1rem" }, da = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, ia = { borderColor: "{content.border.color}" }, ca = { root: ea, list: aa, item: na, submenu: ta, submenuIcon: da, separator: ia }, la = `
827
+ li.p-autocomplete-option,
828
+ div.p-cascadeselect-option-content,
829
+ li.p-listbox-option,
830
+ li.p-multiselect-option,
831
+ li.p-select-option,
832
+ li.p-listbox-option,
833
+ div.p-tree-node-content,
834
+ li.p-datatable-filter-constraint,
835
+ .p-datatable .p-datatable-tbody > tr,
836
+ .p-treetable .p-treetable-tbody > tr,
837
+ div.p-menu-item-content,
838
+ div.p-tieredmenu-item-content,
839
+ div.p-contextmenu-item-content,
840
+ div.p-menubar-item-content,
841
+ div.p-megamenu-item-content,
842
+ div.p-panelmenu-header-content,
843
+ div.p-panelmenu-item-content,
844
+ th.p-datatable-header-cell,
845
+ th.p-treetable-header-cell,
846
+ thead.p-datatable-thead > tr > th,
847
+ .p-treetable thead.p-treetable-thead>tr>th {
848
+ transition: none;
849
+ }
850
+ `, sa = { transitionDuration: "{transition.duration}" }, ua = { 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" } }, fa = { 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" } }, ga = { fontWeight: "600" }, ma = { 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}" } }, pa = { borderColor: "{datatable.border.color}", padding: "0.75rem 1rem", sm: { padding: "0.375rem 0.5rem" }, lg: { padding: "1rem 1.25rem" } }, ba = { 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" } }, ha = { fontWeight: "600" }, va = { 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" } }, ka = { color: "{primary.color}" }, ya = { width: "0.5rem" }, $a = { width: "1px", color: "{primary.color}" }, Ca = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", size: "0.875rem" }, xa = { size: "2rem" }, wa = { hoverBackground: "{content.hover.background}", selectedHoverBackground: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}", selectedHoverColor: "{primary.color}", size: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Ba = { inlineGap: "0.5rem", overlaySelect: { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, overlayPopover: { background: "{overlay.popover.background}", borderColor: "{overlay.popover.border.color}", borderRadius: "{overlay.popover.border.radius}", color: "{overlay.popover.color}", shadow: "{overlay.popover.shadow}", padding: "{overlay.popover.padding}", gap: "0.5rem" }, rule: { borderColor: "{content.border.color}" }, constraintList: { padding: "{list.padding}", gap: "{list.gap}" }, constraint: { focusBackground: "{list.option.focus.background}", selectedBackground: "{list.option.selected.background}", selectedFocusBackground: "{list.option.selected.focus.background}", color: "{list.option.color}", focusColor: "{list.option.focus.color}", selectedColor: "{list.option.selected.color}", selectedFocusColor: "{list.option.selected.focus.color}", separator: { borderColor: "{content.border.color}" }, padding: "{list.option.padding}", borderRadius: "{list.option.border.radius}" } }, Ra = { borderColor: "{datatable.border.color}", borderWidth: "0 0 1px 0" }, Sa = { borderColor: "{datatable.border.color}", borderWidth: "0 0 1px 0" }, Da = { 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}" } } }, za = `
851
+ .p-datatable-mask.p-overlay-mask {
852
+ --px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3));
853
+ }
854
+ `, Ma = { root: sa, header: ua, headerCell: fa, columnTitle: ga, row: ma, bodyCell: pa, footerCell: ba, columnFooter: ha, footer: va, dropPoint: ka, columnResizer: ya, resizeIndicator: $a, sortIcon: Ca, loadingIcon: xa, rowToggleButton: wa, filter: Ba, paginatorTop: Ra, paginatorBottom: Sa, colorScheme: Da, css: za }, Wa = { borderColor: "transparent", borderWidth: "0", borderRadius: "0", padding: "0" }, Va = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem", borderRadius: "0" }, Oa = { background: "{content.background}", color: "{content.color}", borderColor: "transparent", borderWidth: "0", padding: "0", borderRadius: "0" }, Ia = { background: "{content.background}", color: "{content.color}", borderColor: "{content.border.color}", borderWidth: "1px 0 0 0", padding: "0.75rem 1rem", borderRadius: "0" }, ja = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, Fa = { borderColor: "{content.border.color}", borderWidth: "1px 0 0 0" }, Ya = { root: Wa, header: Va, content: Oa, footer: Ia, paginatorTop: ja, paginatorBottom: Fa }, Ta = { transitionDuration: "{transition.duration}" }, Aa = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.popover.shadow}", padding: "{overlay.popover.padding}" }, Na = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", padding: "0 0 0.5rem 0" }, Ha = { gap: "0.5rem", fontWeight: "500" }, La = { 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}" } }, Pa = { color: "{form.field.icon.color}" }, _a = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, qa = { hoverBackground: "{content.hover.background}", color: "{content.color}", hoverColor: "{content.hover.color}", padding: "0.25rem 0.5rem", borderRadius: "{content.border.radius}" }, Ea = { borderColor: "{content.border.color}", gap: "{overlay.popover.padding}" }, Xa = { margin: "0.5rem 0 0 0" }, Ua = { padding: "0.25rem", fontWeight: "500", color: "{content.color}" }, Ga = { 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" }, Ja = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, Qa = { margin: "0.5rem 0 0 0" }, Ka = { padding: "0.375rem", borderRadius: "{content.border.radius}" }, on = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}" }, rn = { padding: "0.5rem 0 0 0", borderColor: "{content.border.color}", gap: "0.5rem", buttonGap: "0.25rem" }, en = { 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}" } } }, an = { root: Ta, panel: Aa, header: Na, title: Ha, dropdown: La, inputIcon: Pa, selectMonth: _a, selectYear: qa, group: Ea, dayView: Xa, weekDay: Ua, date: Ga, monthView: Za, month: Ja, yearView: Qa, year: Ka, buttonbar: on, timePicker: rn, colorScheme: en }, nn = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", borderRadius: "{overlay.modal.border.radius}", shadow: "{overlay.modal.shadow}" }, tn = { padding: "{overlay.modal.padding}", gap: "0.5rem" }, dn = { fontSize: "1.25rem", fontWeight: "600" }, cn = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, ln = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}", gap: "0.5rem" }, sn = { root: nn, header: tn, title: dn, content: cn, footer: ln }, un = { borderColor: "{content.border.color}" }, fn = { background: "{content.background}", color: "{text.color}" }, gn = { margin: "1rem 0", padding: "0 1rem", content: { padding: "0 0.5rem" } }, mn = { margin: "0 1rem", padding: "0.5rem 0", content: { padding: "0.5rem 0" } }, pn = { root: un, content: fn, horizontal: gn, vertical: mn }, bn = { background: "rgba(255, 255, 255, 0.1)", borderColor: "rgba(255, 255, 255, 0.2)", padding: "0.5rem", borderRadius: "{border.radius.xl}" }, hn = { 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}" } }, vn = { root: bn, item: hn }, kn = { background: "{overlay.modal.background}", borderColor: "{overlay.modal.border.color}", color: "{overlay.modal.color}", shadow: "{overlay.modal.shadow}" }, yn = { padding: "{overlay.modal.padding}" }, $n = { fontSize: "1.5rem", fontWeight: "600" }, Cn = { padding: "0 {overlay.modal.padding} {overlay.modal.padding} {overlay.modal.padding}" }, xn = { padding: "{overlay.modal.padding}" }, wn = { root: kn, header: yn, title: $n, content: Cn, footer: xn }, Bn = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}" }, Rn = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, Sn = { 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}" }, zn = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, Mn = { toolbar: Bn, toolbarItem: Rn, overlay: Sn, overlayOption: Dn, content: zn }, Wn = { 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}" }, Vn = { 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}" } }, On = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}" }, In = { padding: "0" }, jn = { root: Wn, legend: Vn, toggleIcon: On, content: In }, Fn = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", transitionDuration: "{transition.duration}" }, Yn = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "unset", borderWidth: "0", borderRadius: "0", gap: "0.5rem" }, Tn = { highlightBorderColor: "{primary.color}", padding: "0 1.125rem 1.125rem 1.125rem", gap: "1rem" }, An = { padding: "1rem", gap: "1rem", borderColor: "{content.border.color}", info: { gap: "0.5rem" } }, Nn = { gap: "0.5rem" }, Hn = { height: "0.25rem" }, Ln = { gap: "0.5rem" }, Pn = { root: Fn, header: Yn, content: Tn, file: An, fileList: Nn, progressbar: Hn, basic: Ln }, _n = { 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" } }, qn = { active: { top: "-1.25rem" } }, En = { input: { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, active: { top: "{form.field.padding.y}" } }, Xn = { borderRadius: "{border.radius.xs}", active: { background: "{form.field.background}", padding: "0 0.125rem" } }, Un = { root: _n, over: qn, in: En, on: Xn }, Gn = { 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}" } }, Jn = { size: "1.5rem" }, Qn = { background: "{content.background}", padding: "1rem 0.25rem" }, Kn = { 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}" } }, ot = { size: "1rem" }, rt = { background: "rgba(0, 0, 0, 0.5)", color: "{surface.100}", padding: "1rem" }, et = { gap: "0.5rem", padding: "1rem" }, at = { 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}" } }, nt = { background: "rgba(0, 0, 0, 0.5)" }, tt = { background: "rgba(255, 255, 255, 0.4)", hoverBackground: "rgba(255, 255, 255, 0.6)", activeBackground: "rgba(255, 255, 255, 0.9)" }, dt = { 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}" } }, it = { size: "1.5rem" }, ct = { 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}" } } }, lt = { root: Gn, navButton: Zn, navIcon: Jn, thumbnailsContent: Qn, thumbnailNavButton: Kn, thumbnailNavButtonIcon: ot, caption: rt, indicatorList: et, indicatorButton: at, insetIndicatorList: nt, insetIndicatorButton: tt, closeButton: dt, closeButtonIcon: it, colorScheme: ct }, st = { color: "{form.field.icon.color}" }, ut = { icon: st }, ft = { 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" }, gt = { paddingTop: "1.5rem", paddingBottom: "{form.field.padding.y}" }, mt = { root: ft, input: gt }, pt = { transitionDuration: "{transition.duration}" }, bt = { icon: { size: "1.5rem" }, mask: { background: "{mask.background}", color: "{mask.color}" } }, ht = { 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" }, vt = { 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}" } }, kt = { root: pt, preview: bt, toolbar: ht, action: vt }, yt = { 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}" } }, $t = { handle: yt }, Ct = { padding: "{form.field.padding.y} {form.field.padding.x}", borderRadius: "{content.border.radius}", gap: "0.5rem" }, xt = { fontWeight: "500" }, wt = { size: "1rem" }, Bt = { light: { info: { background: "color-mix(in srgb, {blue.50}, transparent 5%)", borderColor: "{blue.200}", color: "{blue.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)" }, success: { background: "color-mix(in srgb, {green.50}, transparent 5%)", borderColor: "{green.200}", color: "{green.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)" }, warn: { background: "color-mix(in srgb,{yellow.50}, transparent 5%)", borderColor: "{yellow.200}", color: "{yellow.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)" }, error: { background: "color-mix(in srgb, {red.50}, transparent 5%)", borderColor: "{red.200}", color: "{red.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)" }, secondary: { background: "{surface.100}", borderColor: "{surface.200}", color: "{surface.600}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)" }, contrast: { background: "{surface.900}", borderColor: "{surface.950}", color: "{surface.50}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)" } }, dark: { info: { background: "color-mix(in srgb, {blue.500}, transparent 84%)", borderColor: "color-mix(in srgb, {blue.700}, transparent 64%)", color: "{blue.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {blue.500}, transparent 96%)" }, success: { background: "color-mix(in srgb, {green.500}, transparent 84%)", borderColor: "color-mix(in srgb, {green.700}, transparent 64%)", color: "{green.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {green.500}, transparent 96%)" }, warn: { background: "color-mix(in srgb, {yellow.500}, transparent 84%)", borderColor: "color-mix(in srgb, {yellow.700}, transparent 64%)", color: "{yellow.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {yellow.500}, transparent 96%)" }, error: { background: "color-mix(in srgb, {red.500}, transparent 84%)", borderColor: "color-mix(in srgb, {red.700}, transparent 64%)", color: "{red.500}", shadow: "0px 4px 8px 0px color-mix(in srgb, {red.500}, transparent 96%)" }, secondary: { background: "{surface.800}", borderColor: "{surface.700}", color: "{surface.300}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.500}, transparent 96%)" }, contrast: { background: "{surface.0}", borderColor: "{surface.100}", color: "{surface.950}", shadow: "0px 4px 8px 0px color-mix(in srgb, {surface.950}, transparent 96%)" } } }, Rt = { root: Ct, text: xt, icon: wt, colorScheme: Bt }, St = { 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}" }, Dt = { hoverBackground: "{content.hover.background}", hoverColor: "{content.hover.color}" }, zt = { root: St, display: Dt }, Mt = { background: "{form.field.background}", disabledBackground: "{form.field.disabled.background}", filledBackground: "{form.field.filled.background}", filledFocusBackground: "{form.field.filled.focus.background}", borderColor: "{form.field.border.color}", hoverBorderColor: "{form.field.hover.border.color}", focusBorderColor: "{form.field.focus.border.color}", invalidBorderColor: "{form.field.invalid.border.color}", color: "{form.field.color}", disabledColor: "{form.field.disabled.color}", placeholderColor: "{form.field.placeholder.color}", shadow: "{form.field.shadow}", paddingX: "{form.field.padding.x}", paddingY: "{form.field.padding.y}", borderRadius: "{form.field.border.radius}", focusRing: { width: "{form.field.focus.ring.width}", style: "{form.field.focus.ring.style}", color: "{form.field.focus.ring.color}", offset: "{form.field.focus.ring.offset}", shadow: "{form.field.focus.ring.shadow}" }, transitionDuration: "{form.field.transition.duration}" }, Wt = { borderRadius: "{border.radius.sm}" }, Vt = { light: { chip: { focusBackground: "{surface.200}", color: "{surface.800}" } }, dark: { chip: { focusBackground: "{surface.700}", color: "{surface.0}" } } }, Ot = { root: Mt, chip: Wt, colorScheme: Vt }, It = { 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" }, jt = { addon: It }, Ft = { transitionDuration: "{transition.duration}" }, Yt = { width: "2.5rem", borderRadius: "{form.field.border.radius}", verticalPadding: "{form.field.padding.y}" }, Tt = { 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}" } } }, At = { root: Ft, button: Yt, colorScheme: Tt }, Nt = { gap: "0.5rem" }, Ht = { width: "2.5rem", sm: { width: "2rem" }, lg: { width: "3rem" } }, Lt = { root: Nt, input: Ht }, Pt = { 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}" } }, _t = { root: Pt }, qt = { transitionDuration: "{transition.duration}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Et = { background: "{primary.color}" }, Xt = { background: "{content.border.color}" }, Ut = { color: "{text.muted.color}" }, Gt = { root: qt, value: Et, range: Xt, text: Ut }, Zt = { 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}" }, Jt = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Qt = { 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}" }, Kt = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, od = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, rd = { padding: "{list.option.padding}" }, ed = { light: { option: { stripedBackground: "{surface.50}" } }, dark: { option: { stripedBackground: "{surface.900}" } } }, ad = { root: Zt, list: Jt, option: Qt, optionGroup: Kt, checkmark: od, emptyMessage: rd, colorScheme: ed }, nd = { 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}" }, td = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, dd = { focusBackground: "{navigation.item.focus.background}", activeBackground: "{navigation.item.active.background}", color: "{navigation.item.color}", focusColor: "{navigation.item.focus.color}", activeColor: "{navigation.item.active.color}", padding: "{navigation.item.padding}", borderRadius: "{navigation.item.border.radius}", gap: "{navigation.item.gap}", icon: { color: "{navigation.item.icon.color}", focusColor: "{navigation.item.icon.focus.color}", activeColor: "{navigation.item.icon.active.color}" } }, id = { padding: "0", background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", shadow: "{overlay.navigation.shadow}", gap: "0.5rem" }, cd = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, ld = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, sd = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, ud = { borderColor: "{content.border.color}" }, fd = { 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}" } }, gd = { root: nd, baseItem: td, item: dd, overlay: id, submenu: cd, submenuLabel: ld, submenuIcon: sd, separator: ud, mobileButton: fd }, md = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, pd = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, bd = { 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}" } }, hd = { padding: "{navigation.submenu.label.padding}", fontWeight: "{navigation.submenu.label.font.weight}", background: "{navigation.submenu.label.background}", color: "{navigation.submenu.label.color}" }, vd = { borderColor: "{content.border.color}" }, kd = { root: md, list: pd, item: bd, submenuLabel: hd, separator: vd }, yd = { 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}" }, $d = { borderRadius: "{content.border.radius}", padding: "{navigation.item.padding}" }, Cd = { 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}" } }, xd = { 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}" } }, wd = { borderColor: "{content.border.color}" }, Bd = { borderRadius: "50%", size: "1.75rem", color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", hoverBackground: "{content.hover.background}", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", color: "{focus.ring.color}", offset: "{focus.ring.offset}", shadow: "{focus.ring.shadow}" } }, Rd = { root: yd, baseItem: $d, item: Cd, submenu: xd, separator: wd, mobileButton: Bd }, Sd = { 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" } }, zd = { fontSize: "1rem", fontWeight: "500", sm: { fontSize: "0.875rem" }, lg: { fontSize: "1.125rem" } }, Md = { size: "1.125rem", sm: { size: "1rem" }, lg: { size: "1.25rem" } }, Wd = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, Vd = { size: "1rem", sm: { size: "0.875rem" }, lg: { size: "1.125rem" } }, Od = { root: { borderWidth: "1px" } }, Id = { content: { padding: "0" } }, jd = { 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}" } } } }, Fd = { root: Sd, content: Dd, text: zd, icon: Md, closeButton: Wd, closeIcon: Vd, outlined: Od, simple: Id, colorScheme: jd }, Yd = { borderRadius: "{content.border.radius}", gap: "1rem" }, Td = { background: "{content.border.color}", size: "0.5rem" }, Ad = { gap: "0.5rem" }, Nd = { size: "0.5rem" }, Hd = { size: "1rem" }, Ld = { verticalGap: "0.5rem", horizontalGap: "1rem" }, Pd = { root: Yd, meters: Td, label: Ad, labelMarker: Nd, labelIcon: Hd, labelList: Ld }, _d = { 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}" } }, qd = { width: "2.5rem", color: "{form.field.icon.color}" }, Ed = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, Xd = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, Ud = { 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" }, Gd = { 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}" }, Jd = { borderRadius: "{border.radius.sm}" }, Qd = { padding: "{list.option.padding}" }, Kd = { root: _d, dropdown: qd, overlay: Ed, list: Xd, option: Ud, optionGroup: Gd, chip: Jd, clearIcon: Zd, emptyMessage: Qd }, oi = { gap: "1.125rem" }, ri = { gap: "0.5rem" }, ei = { root: oi, controls: ri }, ai = { gutter: "0.75rem", transitionDuration: "{transition.duration}" }, ni = { 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}" }, ti = { 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}" } }, di = { color: "{content.border.color}", borderRadius: "{content.border.radius}", height: "24px" }, ii = { root: ai, node: ni, nodeToggleButton: ti, connector: di }, ci = { outline: { width: "2px", color: "{content.background}" } }, li = { root: ci }, si = { padding: "0.5rem 1rem", gap: "0.25rem", borderRadius: "{content.border.radius}", background: "{content.background}", color: "{content.color}", transitionDuration: "{transition.duration}" }, ui = { 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}" } }, fi = { color: "{text.muted.color}" }, gi = { maxWidth: "2.5rem" }, mi = { root: si, navButton: ui, currentPageReport: fi, jumpToPageInput: gi }, pi = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}" }, bi = { background: "transparent", color: "{text.color}", padding: "1.125rem", borderColor: "{content.border.color}", borderWidth: "0", borderRadius: "0" }, hi = { padding: "0.375rem 1.125rem" }, vi = { fontWeight: "600" }, ki = { padding: "0 1.125rem 1.125rem 1.125rem" }, yi = { padding: "0 1.125rem 1.125rem 1.125rem" }, $i = { root: pi, header: bi, toggleableHeader: hi, title: vi, content: ki, footer: yi }, Ci = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, xi = { 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}" } }, wi = { 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}" } }, Bi = { indent: "1rem" }, Ri = { color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}" }, Si = { root: Ci, panel: xi, item: wi, submenu: Bi, submenuIcon: Ri }, Di = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: ".75rem" }, zi = { color: "{form.field.icon.color}" }, Mi = { 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}" }, Wi = { gap: "0.5rem" }, Vi = { light: { strength: { weakBackground: "{red.500}", mediumBackground: "{amber.500}", strongBackground: "{green.500}" } }, dark: { strength: { weakBackground: "{red.400}", mediumBackground: "{amber.400}", strongBackground: "{green.400}" } } }, Oi = { meter: Di, icon: zi, overlay: Mi, content: Wi, colorScheme: Vi }, Ii = { gap: "1.125rem" }, ji = { gap: "0.5rem" }, Fi = { root: Ii, controls: ji }, Yi = { 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" }, Ti = { padding: "{overlay.popover.padding}" }, Ai = { root: Yi, content: Ti }, Ni = { background: "{content.border.color}", borderRadius: "{content.border.radius}", height: "1.25rem" }, Hi = { background: "{primary.color}" }, Li = { color: "{primary.contrast.color}", fontSize: "0.75rem", fontWeight: "600" }, Pi = { root: Ni, value: Hi, label: Li }, _i = { 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}" } } }, qi = { colorScheme: _i }, Ei = { 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" } }, Xi = { size: "0.75rem", checkedColor: "{primary.contrast.color}", checkedHoverColor: "{primary.contrast.color}", disabledColor: "{form.field.disabled.color}", sm: { size: "0.5rem" }, lg: { size: "1rem" } }, Ui = { root: Ei, icon: Xi }, Gi = { 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}" } }, Zi = { size: "1rem", color: "{text.muted.color}", hoverColor: "{primary.color}", activeColor: "{primary.color}" }, Ji = { root: Gi, icon: Zi }, Qi = { light: { root: { background: "rgba(0,0,0,0.1)" } }, dark: { root: { background: "rgba(255,255,255,0.3)" } } }, Ki = { colorScheme: Qi }, oc = { transitionDuration: "{transition.duration}" }, rc = { 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}" } }, ec = { light: { bar: { background: "{surface.100}" } }, dark: { bar: { background: "{surface.800}" } } }, ac = { root: oc, bar: rc, colorScheme: ec }, nc = { 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}" } }, tc = { width: "2.5rem", color: "{form.field.icon.color}" }, dc = { background: "{overlay.select.background}", borderColor: "{overlay.select.border.color}", borderRadius: "{overlay.select.border.radius}", color: "{overlay.select.color}", shadow: "{overlay.select.shadow}" }, ic = { padding: "{list.padding}", gap: "{list.gap}", header: { padding: "{list.header.padding}" } }, cc = { 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}" }, lc = { background: "{list.option.group.background}", color: "{list.option.group.color}", fontWeight: "{list.option.group.font.weight}", padding: "{list.option.group.padding}" }, sc = { color: "{form.field.icon.color}" }, uc = { color: "{list.option.color}", gutterStart: "-0.375rem", gutterEnd: "0.375rem" }, fc = { padding: "{list.option.padding}" }, gc = { root: nc, dropdown: tc, overlay: dc, list: ic, option: cc, optionGroup: lc, clearIcon: sc, checkmark: uc, emptyMessage: fc }, mc = { borderRadius: "{form.field.border.radius}" }, pc = { light: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } }, dark: { root: { invalidBorderColor: "{form.field.invalid.border.color}" } } }, bc = { root: mc, colorScheme: pc }, hc = { borderRadius: "{content.border.radius}" }, vc = { 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)" } } }, kc = { root: hc, colorScheme: vc }, yc = { transitionDuration: "{transition.duration}" }, $c = { background: "{content.border.color}", borderRadius: "{content.border.radius}", size: "3px" }, Cc = { background: "{primary.color}" }, xc = { 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}" } }, wc = { light: { handle: { content: { background: "{surface.0}" } } }, dark: { handle: { content: { background: "{surface.950}" } } } }, Bc = { root: yc, track: $c, range: Cc, handle: xc, colorScheme: wc }, Rc = { gap: "0.5rem", transitionDuration: "{transition.duration}" }, Sc = { root: Rc }, 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)" }, zc = { root: Dc }, Mc = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", transitionDuration: "{transition.duration}" }, Wc = { background: "{content.border.color}" }, Vc = { 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}" } }, Oc = { root: Mc, gutter: Wc, handle: Vc }, Ic = { transitionDuration: "{transition.duration}" }, jc = { background: "{content.border.color}", activeBackground: "{primary.color}", margin: "0 0 0 1.625rem", size: "2px" }, Fc = { padding: "0.5rem", gap: "1rem" }, Yc = { 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" }, Tc = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, Ac = { 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)" }, Nc = { padding: "0.875rem 0.5rem 1.125rem 0.5rem" }, Hc = { background: "{content.background}", color: "{content.color}", padding: "0", indent: "1rem" }, Lc = { root: Ic, separator: jc, step: Fc, stepHeader: Yc, stepTitle: Tc, stepNumber: Ac, steppanels: Nc, steppanel: Hc }, Pc = { transitionDuration: "{transition.duration}" }, _c = { background: "{content.border.color}" }, qc = { 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" }, Ec = { color: "{text.muted.color}", activeColor: "{primary.color}", fontWeight: "500" }, Xc = { 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)" }, Uc = { root: Pc, separator: _c, itemLink: qc, itemLabel: Ec, itemNumber: Xc }, Gc = { transitionDuration: "{transition.duration}" }, Zc = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, Jc = { 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}" } }, Qc = { color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, Kc = { height: "1px", bottom: "-1px", background: "{primary.color}" }, ol = { root: Gc, tablist: Zc, item: Jc, itemIcon: Qc, activeBar: Kc }, rl = { transitionDuration: "{transition.duration}" }, el = { borderWidth: "0 0 1px 0", background: "{content.background}", borderColor: "{content.border.color}" }, al = { 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}" } }, nl = { 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}" } }, tl = { 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}" } }, dl = { height: "1px", bottom: "-1px", background: "{primary.color}" }, il = { 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%)" } } }, cl = { root: rl, tablist: el, tab: al, tabpanel: nl, navButton: tl, activeBar: dl, colorScheme: il }, ll = { transitionDuration: "{transition.duration}" }, sl = { background: "{content.background}", borderColor: "{content.border.color}" }, ul = { borderColor: "{content.border.color}", activeBorderColor: "{primary.color}", color: "{text.muted.color}", hoverColor: "{text.color}", activeColor: "{primary.color}" }, fl = { background: "{content.background}", color: "{content.color}" }, gl = { background: "{content.background}", color: "{text.muted.color}", hoverColor: "{text.color}" }, ml = { 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%)" } } }, pl = { root: ll, tabList: sl, tab: ul, tabPanel: fl, navButton: gl, colorScheme: ml }, bl = { fontSize: "0.875rem", fontWeight: "700", padding: "0.25rem 0.5rem", gap: "0.25rem", borderRadius: "{content.border.radius}", roundedBorderRadius: "{border.radius.xl}" }, hl = { size: "0.75rem" }, vl = { 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}" } } }, kl = { root: bl, icon: hl, colorScheme: vl }, yl = { 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}" }, $l = { gap: "0.25rem" }, Cl = { margin: "2px 0" }, xl = { root: yl, prompt: $l, commandResponse: Cl }, wl = { 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}" } }, Bl = { root: wl }, Rl = { background: "{content.background}", borderColor: "{content.border.color}", color: "{content.color}", borderRadius: "{content.border.radius}", shadow: "{overlay.navigation.shadow}", transitionDuration: "{transition.duration}" }, Sl = { padding: "{navigation.list.padding}", gap: "{navigation.list.gap}" }, Dl = { 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}" } }, zl = { mobileIndent: "1rem" }, Ml = { size: "{navigation.submenu.icon.size}", color: "{navigation.submenu.icon.color}", focusColor: "{navigation.submenu.icon.focus.color}", activeColor: "{navigation.submenu.icon.active.color}" }, Wl = { borderColor: "{content.border.color}" }, Vl = { root: Rl, list: Sl, item: Dl, submenu: zl, submenuIcon: Ml, separator: Wl }, Ol = { minHeight: "5rem" }, Il = { eventContent: { padding: "1rem 0" } }, jl = { eventContent: { padding: "0 1rem" } }, Fl = { 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)" } }, Yl = { color: "{content.border.color}", size: "2px" }, Tl = { event: Ol, horizontal: Il, vertical: jl, eventMarker: Fl, eventConnector: Yl }, Al = { width: "25rem", borderRadius: "{content.border.radius}", borderWidth: "1px", transitionDuration: "{transition.duration}" }, Nl = { size: "1.125rem" }, Hl = { padding: "{overlay.popover.padding}", gap: "0.5rem" }, Ll = { gap: "0.5rem" }, Pl = { fontWeight: "500", fontSize: "1rem" }, _l = { fontWeight: "500", fontSize: "0.875rem" }, ql = { width: "1.75rem", height: "1.75rem", borderRadius: "50%", focusRing: { width: "{focus.ring.width}", style: "{focus.ring.style}", offset: "{focus.ring.offset}" } }, El = { size: "1rem" }, Xl = { 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" } } } } }, Ul = { root: Al, icon: Nl, content: Hl, text: Ll, summary: Pl, detail: _l, closeButton: ql, closeIcon: El, colorScheme: Xl }, Gl = { 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" } }, Zl = { disabledColor: "{form.field.disabled.color}" }, Jl = { 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" } }, Ql = { 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}" } } }, Kl = { root: Gl, icon: Zl, content: Jl, colorScheme: Ql }, 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" }, rs = { borderRadius: "50%", size: "1rem" }, es = { 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}" } } }, as = { root: os, handle: rs, colorScheme: es }, ns = { background: "{content.background}", borderColor: "{content.border.color}", borderRadius: "{content.border.radius}", color: "{content.color}", gap: "0.5rem", padding: "0.75rem" }, ts = { root: ns }, ds = { maxWidth: "12.5rem", gutter: "0.25rem", shadow: "{overlay.popover.shadow}", padding: "0.5rem 0.75rem", borderRadius: "{overlay.popover.border.radius}" }, is = { light: { root: { background: "{surface.700}", color: "{surface.0}" } }, dark: { root: { background: "{surface.700}", color: "{surface.0}" } } }, cs = { root: ds, colorScheme: is }, ls = { background: "{content.background}", color: "{content.color}", padding: "1rem", gap: "2px", indent: "1rem", transitionDuration: "{transition.duration}" }, ss = { 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" }, us = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", selectedColor: "{highlight.color}" }, fs = { 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}" } }, gs = { size: "2rem" }, ms = { margin: "0 0 0.5rem 0" }, ps = `
855
+ .p-tree-mask.p-overlay-mask {
856
+ --px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3));
857
+ }
858
+ `, bs = { root: ls, node: ss, nodeIcon: us, nodeToggleButton: fs, loadingIcon: gs, filter: ms, css: ps }, hs = { 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}" } }, vs = { 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}" }, ys = { padding: "{list.padding}" }, $s = { padding: "{list.option.padding}" }, Cs = { borderRadius: "{border.radius.sm}" }, xs = { color: "{form.field.icon.color}" }, ws = { root: hs, dropdown: vs, overlay: ks, tree: ys, emptyMessage: $s, chip: Cs, clearIcon: xs }, Bs = { transitionDuration: "{transition.duration}" }, Rs = { background: "{content.background}", borderColor: "{treetable.border.color}", color: "{content.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem" }, Ss = { 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}" } }, Ds = { fontWeight: "600" }, zs = { 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}" } }, Ms = { borderColor: "{treetable.border.color}", padding: "0.75rem 1rem", gap: "0.5rem" }, Ws = { background: "{content.background}", borderColor: "{treetable.border.color}", color: "{content.color}", padding: "0.75rem 1rem" }, Vs = { fontWeight: "600" }, Os = { background: "{content.background}", borderColor: "{treetable.border.color}", color: "{content.color}", borderWidth: "0 0 1px 0", padding: "0.75rem 1rem" }, Is = { width: "0.5rem" }, js = { width: "1px", color: "{primary.color}" }, Fs = { color: "{text.muted.color}", hoverColor: "{text.hover.muted.color}", size: "0.875rem" }, Ys = { size: "2rem" }, Ts = { 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}" } }, As = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, Ns = { borderColor: "{content.border.color}", borderWidth: "0 0 1px 0" }, Hs = { light: { root: { borderColor: "{content.border.color}" }, bodyCell: { selectedBorderColor: "{primary.100}" } }, dark: { root: { borderColor: "{surface.800}" }, bodyCell: { selectedBorderColor: "{primary.900}" } } }, Ls = `
859
+ .p-treetable-mask.p-overlay-mask {
860
+ --px-mask-background: light-dark(rgba(255,255,255,0.5),rgba(0,0,0,0.3));
861
+ }
862
+ `, Ps = { root: Bs, header: Rs, headerCell: Ss, columnTitle: Ds, row: zs, bodyCell: Ms, footerCell: Ws, columnFooter: Vs, footer: Os, columnResizer: Is, resizeIndicator: js, sortIcon: Fs, loadingIcon: Ys, nodeToggleButton: Ts, paginatorTop: As, paginatorBottom: Ns, colorScheme: Hs, css: Ls }, _s = { mask: { background: "{content.background}", color: "{text.muted.color}" }, icon: { size: "2rem" } }, qs = { loader: _s }, Es = Object.defineProperty, Xs = Object.defineProperties, Us = Object.getOwnPropertyDescriptors, Do = Object.getOwnPropertySymbols, Gs = Object.prototype.hasOwnProperty, Zs = Object.prototype.propertyIsEnumerable, zo = (o, r, e) => r in o ? Es(o, r, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[r] = e, Mo, Js = (Mo = ((o, r) => {
863
+ for (var e in r || (r = {})) Gs.call(r, e) && zo(o, e, r[e]);
864
+ if (Do) for (var e of Do(r)) Zs.call(r, e) && zo(o, e, r[e]);
865
+ return o;
866
+ })({}, te), Xs(Mo, Us({ components: { accordion: Or, autocomplete: Pr, avatar: Gr, badge: ee, blockui: ie, breadcrumb: ue, button: me, card: ye, carousel: Re, cascadeselect: Oe, checkbox: Fe, chip: Le, colorpicker: Xe, confirmdialog: Ze, confirmpopup: ra, contextmenu: ca, datatable: Ma, dataview: Ya, datepicker: an, dialog: sn, divider: pn, dock: vn, drawer: wn, editor: Mn, fieldset: jn, fileupload: Pn, floatlabel: Un, galleria: lt, iconfield: ut, iftalabel: mt, image: kt, imagecompare: $t, inlinemessage: Rt, inplace: zt, inputchips: Ot, inputgroup: jt, inputnumber: At, inputotp: Lt, inputtext: _t, knob: Gt, listbox: ad, megamenu: gd, menu: kd, menubar: Rd, message: Fd, metergroup: Pd, multiselect: Kd, orderlist: ei, organizationchart: ii, overlaybadge: li, paginator: mi, panel: $i, panelmenu: Si, password: Oi, picklist: Fi, popover: Ai, progressbar: Pi, progressspinner: qi, radiobutton: Ui, rating: Ji, ripple: Ki, scrollpanel: ac, select: gc, selectbutton: bc, skeleton: kc, slider: Bc, speeddial: Sc, splitbutton: zc, splitter: Oc, stepper: Lc, steps: Uc, tabmenu: ol, tabs: cl, tabview: pl, tag: kl, terminal: xl, textarea: Bl, tieredmenu: Vl, timeline: Tl, toast: Ul, togglebutton: Kl, toggleswitch: as, toolbar: ts, tooltip: cs, tree: bs, treeselect: ws, treetable: Ps, virtualscroller: qs }, css: la })));
867
+ const Qs = {
868
+ startsWith: "Começa com",
869
+ contains: "Contém",
870
+ notContains: "Não contém",
871
+ endsWith: "Termina com",
872
+ equals: "Igual",
873
+ notEquals: "Diferente",
874
+ noFilter: "Sem filtro",
875
+ lt: "Menor que",
876
+ lte: "Menor ou igual a",
877
+ gt: "Maior que",
878
+ gte: "Maior ou igual a",
879
+ dateIs: "Data é",
880
+ dateIsNot: "Data não é",
881
+ dateBefore: "Data antes de",
882
+ dateAfter: "Data depois de",
883
+ clear: "Limpar",
884
+ apply: "Aplicar",
885
+ matchAll: "Corresponder todos",
886
+ matchAny: "Corresponder qualquer",
887
+ addRule: "Adicionar regra",
888
+ removeRule: "Remover regra",
889
+ accept: "Sim",
890
+ reject: "Não",
891
+ choose: "Escolher",
892
+ upload: "Enviar",
893
+ cancel: "Cancelar",
894
+ completed: "Concluído",
895
+ pending: "Pendente",
896
+ dayNames: ["domingo", "segunda", "terça", "quarta", "quinta", "sexta", "sábado"],
897
+ dayNamesShort: ["dom", "seg", "ter", "qua", "qui", "sex", "sáb"],
898
+ dayNamesMin: ["D", "S", "T", "Q", "Q", "S", "S"],
899
+ monthNames: [
900
+ "janeiro",
901
+ "fevereiro",
902
+ "março",
903
+ "abril",
904
+ "maio",
905
+ "junho",
906
+ "julho",
907
+ "agosto",
908
+ "setembro",
909
+ "outubro",
910
+ "novembro",
911
+ "dezembro"
912
+ ],
913
+ monthNamesShort: [
914
+ "jan",
915
+ "fev",
916
+ "mar",
917
+ "abr",
918
+ "mai",
919
+ "jun",
920
+ "jul",
921
+ "ago",
922
+ "set",
923
+ "out",
924
+ "nov",
925
+ "dez"
926
+ ],
927
+ today: "Hoje",
928
+ weekHeader: "Sem",
929
+ firstDayOfWeek: 1,
930
+ dateFormat: "dd/mm/yy"
931
+ };
932
+ function r0(o) {
933
+ o.use(er, {
934
+ locale: Qs,
935
+ ripple: !0,
936
+ theme: {
937
+ preset: Js,
938
+ options: {
939
+ darkModeSelector: "none",
940
+ cssLayer: {
941
+ name: "primevue",
942
+ order: "base, primevue, components, utilities, app"
943
+ }
944
+ }
945
+ }
946
+ });
947
+ }
948
+ function e0() {
949
+ const o = ar();
950
+ return { success: (a, n = "Sucesso") => {
951
+ o.add({
952
+ severity: "success",
953
+ summary: n,
954
+ detail: a || "Registro salvo",
955
+ life: 4e3
956
+ });
957
+ }, error: (a, n = "Erro") => {
958
+ o.add({
959
+ severity: "error",
960
+ summary: n,
961
+ detail: a || "Ocorreu um erro",
962
+ life: 5e3
963
+ });
964
+ } };
965
+ }
966
+ function a0(o, r) {
967
+ function e(a) {
968
+ o.value && (o.value.contains(a.target) || r(a));
969
+ }
970
+ Po(() => {
971
+ document.addEventListener("pointerdown", e);
972
+ }), _o(() => {
973
+ document.removeEventListener("pointerdown", e);
974
+ });
975
+ }
976
+ function Ks(o) {
977
+ return o && o.__esModule && Object.prototype.hasOwnProperty.call(o, "default") ? o.default : o;
978
+ }
979
+ var bo = { exports: {} }, ou = bo.exports, Wo;
980
+ function ru() {
981
+ return Wo || (Wo = 1, (function(o, r) {
982
+ (function(e, a) {
983
+ o.exports = a();
984
+ })(ou, (function() {
985
+ var e = 1e3, a = 6e4, n = 36e5, s = "millisecond", u = "second", v = "minute", k = "hour", $ = "day", H = "week", R = "month", E = "quarter", T = "year", z = "date", M = "Invalid Date", K = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, oo = /\[([^\]]+)]|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, ro = { 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(g) {
986
+ var c = ["th", "st", "nd", "rd"], t = g % 100;
987
+ return "[" + g + (c[(t - 20) % 10] || c[t] || c[0]) + "]";
988
+ } }, lo = function(g, c, t) {
989
+ var l = String(g);
990
+ return !l || l.length >= c ? g : "" + Array(c + 1 - l.length).join(t) + g;
991
+ }, X = { s: lo, z: function(g) {
992
+ var c = -g.utcOffset(), t = Math.abs(c), l = Math.floor(t / 60), i = t % 60;
993
+ return (c <= 0 ? "+" : "-") + lo(l, 2, "0") + ":" + lo(i, 2, "0");
994
+ }, m: function g(c, t) {
995
+ if (c.date() < t.date()) return -g(t, c);
996
+ var l = 12 * (t.year() - c.year()) + (t.month() - c.month()), i = c.clone().add(l, R), p = t - i < 0, b = c.clone().add(l + (p ? -1 : 1), R);
997
+ return +(-(l + (t - i) / (p ? i - b : b - i)) || 0);
998
+ }, a: function(g) {
999
+ return g < 0 ? Math.ceil(g) || 0 : Math.floor(g);
1000
+ }, p: function(g) {
1001
+ return { M: R, y: T, w: H, d: $, D: z, h: k, m: v, s: u, ms: s, Q: E }[g] || String(g || "").toLowerCase().replace(/s$/, "");
1002
+ }, u: function(g) {
1003
+ return g === void 0;
1004
+ } }, A = "en", O = {};
1005
+ O[A] = ro;
1006
+ var U = "$isDayjsObject", d = function(g) {
1007
+ return g instanceof j || !(!g || !g[U]);
1008
+ }, h = function g(c, t, l) {
1009
+ var i;
1010
+ if (!c) return A;
1011
+ if (typeof c == "string") {
1012
+ var p = c.toLowerCase();
1013
+ O[p] && (i = p), t && (O[p] = t, i = p);
1014
+ var b = c.split("-");
1015
+ if (!i && b.length > 1) return g(b[0]);
1016
+ } else {
1017
+ var C = c.name;
1018
+ O[C] = c, i = C;
1019
+ }
1020
+ return !l && i && (A = i), i || !l && A;
1021
+ }, f = function(g, c) {
1022
+ if (d(g)) return g.clone();
1023
+ var t = typeof c == "object" ? c : {};
1024
+ return t.date = g, t.args = arguments, new j(t);
1025
+ }, m = X;
1026
+ m.l = h, m.i = d, m.w = function(g, c) {
1027
+ return f(g, { locale: c.$L, utc: c.$u, x: c.$x, $offset: c.$offset });
1028
+ };
1029
+ var j = (function() {
1030
+ function g(t) {
1031
+ this.$L = h(t.locale, null, !0), this.parse(t), this.$x = this.$x || t.x || {}, this[U] = !0;
1032
+ }
1033
+ var c = g.prototype;
1034
+ return c.parse = function(t) {
1035
+ this.$d = (function(l) {
1036
+ var i = l.date, p = l.utc;
1037
+ if (i === null) return /* @__PURE__ */ new Date(NaN);
1038
+ if (m.u(i)) return /* @__PURE__ */ new Date();
1039
+ if (i instanceof Date) return new Date(i);
1040
+ if (typeof i == "string" && !/Z$/i.test(i)) {
1041
+ var b = i.match(K);
1042
+ if (b) {
1043
+ var C = b[2] - 1 || 0, w = (b[7] || "0").substring(0, 3);
1044
+ return p ? new Date(Date.UTC(b[1], C, b[3] || 1, b[4] || 0, b[5] || 0, b[6] || 0, w)) : new Date(b[1], C, b[3] || 1, b[4] || 0, b[5] || 0, b[6] || 0, w);
1045
+ }
1046
+ }
1047
+ return new Date(i);
1048
+ })(t), this.init();
1049
+ }, c.init = function() {
1050
+ var t = this.$d;
1051
+ this.$y = t.getFullYear(), this.$M = t.getMonth(), this.$D = t.getDate(), this.$W = t.getDay(), this.$H = t.getHours(), this.$m = t.getMinutes(), this.$s = t.getSeconds(), this.$ms = t.getMilliseconds();
1052
+ }, c.$utils = function() {
1053
+ return m;
1054
+ }, c.isValid = function() {
1055
+ return this.$d.toString() !== M;
1056
+ }, c.isSame = function(t, l) {
1057
+ var i = f(t);
1058
+ return this.startOf(l) <= i && i <= this.endOf(l);
1059
+ }, c.isAfter = function(t, l) {
1060
+ return f(t) < this.startOf(l);
1061
+ }, c.isBefore = function(t, l) {
1062
+ return this.endOf(l) < f(t);
1063
+ }, c.$g = function(t, l, i) {
1064
+ return m.u(t) ? this[l] : this.set(i, t);
1065
+ }, c.unix = function() {
1066
+ return Math.floor(this.valueOf() / 1e3);
1067
+ }, c.valueOf = function() {
1068
+ return this.$d.getTime();
1069
+ }, c.startOf = function(t, l) {
1070
+ var i = this, p = !!m.u(l) || l, b = m.p(t), C = function(no, I) {
1071
+ var G = m.w(i.$u ? Date.UTC(i.$y, I, no) : new Date(i.$y, I, no), i);
1072
+ return p ? G : G.endOf($);
1073
+ }, w = function(no, I) {
1074
+ return m.w(i.toDate()[no].apply(i.toDate("s"), (p ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(I)), i);
1075
+ }, S = this.$W, W = this.$M, N = this.$D, so = "set" + (this.$u ? "UTC" : "");
1076
+ switch (b) {
1077
+ case T:
1078
+ return p ? C(1, 0) : C(31, 11);
1079
+ case R:
1080
+ return p ? C(1, W) : C(0, W + 1);
1081
+ case H:
1082
+ var ao = this.$locale().weekStart || 0, uo = (S < ao ? S + 7 : S) - ao;
1083
+ return C(p ? N - uo : N + (6 - uo), W);
1084
+ case $:
1085
+ case z:
1086
+ return w(so + "Hours", 0);
1087
+ case k:
1088
+ return w(so + "Minutes", 1);
1089
+ case v:
1090
+ return w(so + "Seconds", 2);
1091
+ case u:
1092
+ return w(so + "Milliseconds", 3);
1093
+ default:
1094
+ return this.clone();
1095
+ }
1096
+ }, c.endOf = function(t) {
1097
+ return this.startOf(t, !1);
1098
+ }, c.$set = function(t, l) {
1099
+ var i, p = m.p(t), b = "set" + (this.$u ? "UTC" : ""), C = (i = {}, i[$] = b + "Date", i[z] = b + "Date", i[R] = b + "Month", i[T] = b + "FullYear", i[k] = b + "Hours", i[v] = b + "Minutes", i[u] = b + "Seconds", i[s] = b + "Milliseconds", i)[p], w = p === $ ? this.$D + (l - this.$W) : l;
1100
+ if (p === R || p === T) {
1101
+ var S = this.clone().set(z, 1);
1102
+ S.$d[C](w), S.init(), this.$d = S.set(z, Math.min(this.$D, S.daysInMonth())).$d;
1103
+ } else C && this.$d[C](w);
1104
+ return this.init(), this;
1105
+ }, c.set = function(t, l) {
1106
+ return this.clone().$set(t, l);
1107
+ }, c.get = function(t) {
1108
+ return this[m.p(t)]();
1109
+ }, c.add = function(t, l) {
1110
+ var i, p = this;
1111
+ t = Number(t);
1112
+ var b = m.p(l), C = function(W) {
1113
+ var N = f(p);
1114
+ return m.w(N.date(N.date() + Math.round(W * t)), p);
1115
+ };
1116
+ if (b === R) return this.set(R, this.$M + t);
1117
+ if (b === T) return this.set(T, this.$y + t);
1118
+ if (b === $) return C(1);
1119
+ if (b === H) return C(7);
1120
+ var w = (i = {}, i[v] = a, i[k] = n, i[u] = e, i)[b] || 1, S = this.$d.getTime() + t * w;
1121
+ return m.w(S, this);
1122
+ }, c.subtract = function(t, l) {
1123
+ return this.add(-1 * t, l);
1124
+ }, c.format = function(t) {
1125
+ var l = this, i = this.$locale();
1126
+ if (!this.isValid()) return i.invalidDate || M;
1127
+ var p = t || "YYYY-MM-DDTHH:mm:ssZ", b = m.z(this), C = this.$H, w = this.$m, S = this.$M, W = i.weekdays, N = i.months, so = i.meridiem, ao = function(I, G, fo, po) {
1128
+ return I && (I[G] || I(l, p)) || fo[G].slice(0, po);
1129
+ }, uo = function(I) {
1130
+ return m.s(C % 12 || 12, I, "0");
1131
+ }, no = so || function(I, G, fo) {
1132
+ var po = I < 12 ? "AM" : "PM";
1133
+ return fo ? po.toLowerCase() : po;
1134
+ };
1135
+ return p.replace(oo, (function(I, G) {
1136
+ return G || (function(fo) {
1137
+ switch (fo) {
1138
+ case "YY":
1139
+ return String(l.$y).slice(-2);
1140
+ case "YYYY":
1141
+ return m.s(l.$y, 4, "0");
1142
+ case "M":
1143
+ return S + 1;
1144
+ case "MM":
1145
+ return m.s(S + 1, 2, "0");
1146
+ case "MMM":
1147
+ return ao(i.monthsShort, S, N, 3);
1148
+ case "MMMM":
1149
+ return ao(N, S);
1150
+ case "D":
1151
+ return l.$D;
1152
+ case "DD":
1153
+ return m.s(l.$D, 2, "0");
1154
+ case "d":
1155
+ return String(l.$W);
1156
+ case "dd":
1157
+ return ao(i.weekdaysMin, l.$W, W, 2);
1158
+ case "ddd":
1159
+ return ao(i.weekdaysShort, l.$W, W, 3);
1160
+ case "dddd":
1161
+ return W[l.$W];
1162
+ case "H":
1163
+ return String(C);
1164
+ case "HH":
1165
+ return m.s(C, 2, "0");
1166
+ case "h":
1167
+ return uo(1);
1168
+ case "hh":
1169
+ return uo(2);
1170
+ case "a":
1171
+ return no(C, w, !0);
1172
+ case "A":
1173
+ return no(C, w, !1);
1174
+ case "m":
1175
+ return String(w);
1176
+ case "mm":
1177
+ return m.s(w, 2, "0");
1178
+ case "s":
1179
+ return String(l.$s);
1180
+ case "ss":
1181
+ return m.s(l.$s, 2, "0");
1182
+ case "SSS":
1183
+ return m.s(l.$ms, 3, "0");
1184
+ case "Z":
1185
+ return b;
1186
+ }
1187
+ return null;
1188
+ })(I) || b.replace(":", "");
1189
+ }));
1190
+ }, c.utcOffset = function() {
1191
+ return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
1192
+ }, c.diff = function(t, l, i) {
1193
+ var p, b = this, C = m.p(l), w = f(t), S = (w.utcOffset() - this.utcOffset()) * a, W = this - w, N = function() {
1194
+ return m.m(b, w);
1195
+ };
1196
+ switch (C) {
1197
+ case T:
1198
+ p = N() / 12;
1199
+ break;
1200
+ case R:
1201
+ p = N();
1202
+ break;
1203
+ case E:
1204
+ p = N() / 3;
1205
+ break;
1206
+ case H:
1207
+ p = (W - S) / 6048e5;
1208
+ break;
1209
+ case $:
1210
+ p = (W - S) / 864e5;
1211
+ break;
1212
+ case k:
1213
+ p = W / n;
1214
+ break;
1215
+ case v:
1216
+ p = W / a;
1217
+ break;
1218
+ case u:
1219
+ p = W / e;
1220
+ break;
1221
+ default:
1222
+ p = W;
1223
+ }
1224
+ return i ? p : m.a(p);
1225
+ }, c.daysInMonth = function() {
1226
+ return this.endOf(R).$D;
1227
+ }, c.$locale = function() {
1228
+ return O[this.$L];
1229
+ }, c.locale = function(t, l) {
1230
+ if (!t) return this.$L;
1231
+ var i = this.clone(), p = h(t, l, !0);
1232
+ return p && (i.$L = p), i;
1233
+ }, c.clone = function() {
1234
+ return m.w(this.$d, this);
1235
+ }, c.toDate = function() {
1236
+ return new Date(this.valueOf());
1237
+ }, c.toJSON = function() {
1238
+ return this.isValid() ? this.toISOString() : null;
1239
+ }, c.toISOString = function() {
1240
+ return this.$d.toISOString();
1241
+ }, c.toString = function() {
1242
+ return this.$d.toUTCString();
1243
+ }, g;
1244
+ })(), eo = j.prototype;
1245
+ return f.prototype = eo, [["$ms", s], ["$s", u], ["$m", v], ["$H", k], ["$W", $], ["$M", R], ["$y", T], ["$D", z]].forEach((function(g) {
1246
+ eo[g[1]] = function(c) {
1247
+ return this.$g(c, g[0], g[1]);
1248
+ };
1249
+ })), f.extend = function(g, c) {
1250
+ return g.$i || (g(c, j, f), g.$i = !0), f;
1251
+ }, f.locale = h, f.isDayjs = d, f.unix = function(g) {
1252
+ return f(1e3 * g);
1253
+ }, f.en = O[A], f.Ls = O, f.p = {}, f;
1254
+ }));
1255
+ })(bo)), bo.exports;
1256
+ }
1257
+ var eu = ru();
1258
+ const Bo = /* @__PURE__ */ Ks(eu), L = (o) => {
1259
+ if (!o) return null;
1260
+ const r = Bo(o);
1261
+ return r.isValid() ? r : null;
1262
+ };
1263
+ function Vo(o) {
1264
+ const r = L(o);
1265
+ return r ? r.startOf("day").toDate() : null;
1266
+ }
1267
+ function n0() {
1268
+ return Bo().startOf("day").toDate();
1269
+ }
1270
+ function t0(o, r = "YYYY-MM-DD") {
1271
+ const e = L(o);
1272
+ return e ? e.format(r) : "";
1273
+ }
1274
+ function d0(o, r = "YYYY-MM-DD HH:mm:ss") {
1275
+ const e = L(o);
1276
+ return e ? e.format(r) : "";
1277
+ }
1278
+ function i0(o, r = "DD/MM/YYYY") {
1279
+ const e = L(o);
1280
+ return e ? e.format(r) : "";
1281
+ }
1282
+ function c0(o, r = "DD/MM/YYYY HH:mm") {
1283
+ const e = L(o);
1284
+ return e ? e.format(r) : "";
1285
+ }
1286
+ function l0(o, r = "HH:mm") {
1287
+ const e = L(o);
1288
+ return e ? e.format(r) : "";
1289
+ }
1290
+ function s0(o, r = "ddd") {
1291
+ const e = L(o);
1292
+ return e ? e.format(r).toUpperCase() : "";
1293
+ }
1294
+ function u0(o, r = "dddd, DD[ de ]MMMM[ de ]YYYY") {
1295
+ const e = L(o);
1296
+ return e ? e.format(r) : "";
1297
+ }
1298
+ function vo(o) {
1299
+ const r = L(o);
1300
+ return r ? r.toDate() : null;
1301
+ }
1302
+ function ko(o, r, e = "day") {
1303
+ const a = L(o);
1304
+ return !a || typeof r != "number" || Number.isNaN(r) ? null : a.add(r, e).toDate();
1305
+ }
1306
+ function f0(o, r) {
1307
+ return ko(o, r, "day");
1308
+ }
1309
+ function g0(o, r) {
1310
+ return ko(o, r, "month");
1311
+ }
1312
+ function m0(o, r) {
1313
+ return ko(o, r, "year");
1314
+ }
1315
+ function p0(o, r) {
1316
+ return ko(o, r, "minute");
1317
+ }
1318
+ function b0(o) {
1319
+ return o == null ? "" : String(o).toLowerCase().trim().split(/\s+/).map((r) => r.charAt(0).toUpperCase() + r.slice(1)).join(" ");
1320
+ }
1321
+ function io(o) {
1322
+ return o == null ? "" : String(o).replace(/\D/g, "");
1323
+ }
1324
+ function au(o) {
1325
+ const r = io(o);
1326
+ return r.length !== 8 ? o : r.replace(/(\d{5})(\d{3})/, "$1-$2");
1327
+ }
1328
+ function h0(o) {
1329
+ if (o == null) return "";
1330
+ const {
1331
+ postalCode: r,
1332
+ state: e,
1333
+ city: a,
1334
+ neighborhood: n,
1335
+ addressLine1: s,
1336
+ addressLine2: u
1337
+ } = o, v = [s, u].filter(Boolean).join(" "), k = [n, " - ", a, e].filter(Boolean).join(" "), $ = r ? au(r) : null;
1338
+ return [v, " - ", k, " - ", $].filter(Boolean).join(" ").replace(/\s-\s$/, "");
1339
+ }
1340
+ function v0(o) {
1341
+ if (o == null) return "";
1342
+ const { name: r, state: e, record: a } = o;
1343
+ return [r, e, a].filter(Boolean).join(" ");
1344
+ }
1345
+ function k0(o) {
1346
+ const r = io(o);
1347
+ if (!r) return "";
1348
+ const e = r.startsWith("55") && r.length > 11 ? r.slice(2) : r;
1349
+ return e.length === 11 ? e.replace(
1350
+ /(\d{2})(\d{5})(\d{4})/,
1351
+ "($1) $2-$3"
1352
+ ) : e.length === 10 ? e.replace(
1353
+ /(\d{2})(\d{4})(\d{4})/,
1354
+ "($1) $2-$3"
1355
+ ) : o;
1356
+ }
1357
+ const y0 = (o) => {
1358
+ try {
1359
+ return localStorage.getItem(o);
1360
+ } catch {
1361
+ return null;
1362
+ }
1363
+ }, $0 = (o, r) => {
1364
+ try {
1365
+ return localStorage.setItem(o, r), !0;
1366
+ } catch {
1367
+ return !1;
1368
+ }
1369
+ }, C0 = (o) => {
1370
+ try {
1371
+ return localStorage.removeItem(o), !0;
1372
+ } catch {
1373
+ return !1;
1374
+ }
1375
+ };
1376
+ function Oo(o, r) {
1377
+ var e = Object.keys(o);
1378
+ if (Object.getOwnPropertySymbols) {
1379
+ var a = Object.getOwnPropertySymbols(o);
1380
+ r && (a = a.filter(function(n) {
1381
+ return Object.getOwnPropertyDescriptor(o, n).enumerable;
1382
+ })), e.push.apply(e, a);
1383
+ }
1384
+ return e;
1385
+ }
1386
+ function go(o) {
1387
+ for (var r = 1; r < arguments.length; r++) {
1388
+ var e = arguments[r] != null ? arguments[r] : {};
1389
+ r % 2 ? Oo(Object(e), !0).forEach(function(a) {
1390
+ nu(o, a, e[a]);
1391
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(o, Object.getOwnPropertyDescriptors(e)) : Oo(Object(e)).forEach(function(a) {
1392
+ Object.defineProperty(o, a, Object.getOwnPropertyDescriptor(e, a));
1393
+ });
1394
+ }
1395
+ return o;
1396
+ }
1397
+ function nu(o, r, e) {
1398
+ return r in o ? Object.defineProperty(o, r, {
1399
+ value: e,
1400
+ enumerable: !0,
1401
+ configurable: !0,
1402
+ writable: !0
1403
+ }) : o[r] = e, o;
1404
+ }
1405
+ function ho(o) {
1406
+ return typeof o == "function";
1407
+ }
1408
+ function xo(o) {
1409
+ return o !== null && typeof o == "object" && !Array.isArray(o);
1410
+ }
1411
+ function yo(o) {
1412
+ return ho(o.$validator) ? go({}, o) : {
1413
+ $validator: o
1414
+ };
1415
+ }
1416
+ function Fo(o) {
1417
+ return typeof o == "object" ? o.$valid : o;
1418
+ }
1419
+ function Yo(o) {
1420
+ return o.$validator || o;
1421
+ }
1422
+ function tu(o, r) {
1423
+ if (!xo(o)) throw new Error(`[@vuelidate/validators]: First parameter to "withParams" should be an object, provided ${typeof o}`);
1424
+ if (!xo(r) && !ho(r)) throw new Error("[@vuelidate/validators]: Validator must be a function or object with $validator parameter");
1425
+ const e = yo(r);
1426
+ return e.$params = go(go({}, e.$params || {}), o), e;
1427
+ }
1428
+ function du(o, r) {
1429
+ if (!ho(o) && typeof B(o) != "string") throw new Error(`[@vuelidate/validators]: First parameter to "withMessage" should be string or a function returning a string, provided ${typeof o}`);
1430
+ if (!xo(r) && !ho(r)) throw new Error("[@vuelidate/validators]: Validator must be a function or object with $validator parameter");
1431
+ const e = yo(r);
1432
+ return e.$message = o, e;
1433
+ }
1434
+ function iu(o) {
1435
+ let r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : [];
1436
+ const e = yo(o);
1437
+ return go(go({}, e), {}, {
1438
+ $async: !0,
1439
+ $watchTargets: r
1440
+ });
1441
+ }
1442
+ function cu(o) {
1443
+ return {
1444
+ $validator(r) {
1445
+ for (var e = arguments.length, a = new Array(e > 1 ? e - 1 : 0), n = 1; n < e; n++)
1446
+ a[n - 1] = arguments[n];
1447
+ return B(r).reduce((s, u, v) => {
1448
+ const k = Object.entries(u).reduce(($, H) => {
1449
+ let [R, E] = H;
1450
+ const T = o[R] || {}, z = Object.entries(T).reduce((M, K) => {
1451
+ let [oo, ro] = K;
1452
+ const X = Yo(ro).call(this, E, u, v, ...a), A = Fo(X);
1453
+ if (M.$data[oo] = X, M.$data.$invalid = !A || !!M.$data.$invalid, M.$data.$error = M.$data.$invalid, !A) {
1454
+ let O = ro.$message || "";
1455
+ const U = ro.$params || {};
1456
+ typeof O == "function" && (O = O({
1457
+ $pending: !1,
1458
+ $invalid: !A,
1459
+ $params: U,
1460
+ $model: E,
1461
+ $response: X
1462
+ })), M.$errors.push({
1463
+ $property: R,
1464
+ $message: O,
1465
+ $params: U,
1466
+ $response: X,
1467
+ $model: E,
1468
+ $pending: !1,
1469
+ $validator: oo
1470
+ });
1471
+ }
1472
+ return {
1473
+ $valid: M.$valid && A,
1474
+ $data: M.$data,
1475
+ $errors: M.$errors
1476
+ };
1477
+ }, {
1478
+ $valid: !0,
1479
+ $data: {},
1480
+ $errors: []
1481
+ });
1482
+ return $.$data[R] = z.$data, $.$errors[R] = z.$errors, {
1483
+ $valid: $.$valid && z.$valid,
1484
+ $data: $.$data,
1485
+ $errors: $.$errors
1486
+ };
1487
+ }, {
1488
+ $valid: !0,
1489
+ $data: {},
1490
+ $errors: {}
1491
+ });
1492
+ return {
1493
+ $valid: s.$valid && k.$valid,
1494
+ $data: s.$data.concat(k.$data),
1495
+ $errors: s.$errors.concat(k.$errors)
1496
+ };
1497
+ }, {
1498
+ $valid: !0,
1499
+ $data: [],
1500
+ $errors: []
1501
+ });
1502
+ },
1503
+ $message: (r) => {
1504
+ let {
1505
+ $response: e
1506
+ } = r;
1507
+ return e ? e.$errors.map((a) => Object.values(a).map((n) => n.map((s) => s.$message)).reduce((n, s) => n.concat(s), [])) : [];
1508
+ }
1509
+ };
1510
+ }
1511
+ const mo = (o) => {
1512
+ if (o = B(o), Array.isArray(o)) return !!o.length;
1513
+ if (o == null)
1514
+ return !1;
1515
+ if (o === !1)
1516
+ return !0;
1517
+ if (o instanceof Date)
1518
+ return !isNaN(o.getTime());
1519
+ if (typeof o == "object") {
1520
+ for (let r in o) return !0;
1521
+ return !1;
1522
+ }
1523
+ return !!String(o).length;
1524
+ }, Ro = (o) => (o = B(o), Array.isArray(o) ? o.length : typeof o == "object" ? Object.keys(o).length : String(o).length);
1525
+ function Q() {
1526
+ for (var o = arguments.length, r = new Array(o), e = 0; e < o; e++)
1527
+ r[e] = arguments[e];
1528
+ return (a) => (a = B(a), !mo(a) || r.every((n) => (n.lastIndex = 0, n.test(a))));
1529
+ }
1530
+ var V = /* @__PURE__ */ Object.freeze({
1531
+ __proto__: null,
1532
+ forEach: cu,
1533
+ len: Ro,
1534
+ normalizeValidatorObject: yo,
1535
+ regex: Q,
1536
+ req: mo,
1537
+ unwrap: B,
1538
+ unwrapNormalizedValidator: Yo,
1539
+ unwrapValidatorResponse: Fo,
1540
+ withAsync: iu,
1541
+ withMessage: du,
1542
+ withParams: tu
1543
+ });
1544
+ Q(/^[a-zA-Z]*$/);
1545
+ Q(/^[a-zA-Z0-9]*$/);
1546
+ Q(/^\d*(\.\d+)?$/);
1547
+ const lu = /^(?:[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;
1548
+ var su = Q(lu), uu = {
1549
+ $validator: su,
1550
+ $message: "Value is not a valid email address",
1551
+ $params: {
1552
+ type: "email"
1553
+ }
1554
+ };
1555
+ function fu(o) {
1556
+ return (r) => !mo(r) || Ro(r) <= B(o);
1557
+ }
1558
+ function gu(o) {
1559
+ return {
1560
+ $validator: fu(o),
1561
+ $message: (r) => {
1562
+ let {
1563
+ $params: e
1564
+ } = r;
1565
+ return `The maximum length allowed is ${e.max}`;
1566
+ },
1567
+ $params: {
1568
+ max: o,
1569
+ type: "maxLength"
1570
+ }
1571
+ };
1572
+ }
1573
+ function mu(o) {
1574
+ return (r) => !mo(r) || Ro(r) >= B(o);
1575
+ }
1576
+ function pu(o) {
1577
+ return {
1578
+ $validator: mu(o),
1579
+ $message: (r) => {
1580
+ let {
1581
+ $params: e
1582
+ } = r;
1583
+ return `This field should be at least ${e.min} characters long`;
1584
+ },
1585
+ $params: {
1586
+ min: o,
1587
+ type: "minLength"
1588
+ }
1589
+ };
1590
+ }
1591
+ function bu(o) {
1592
+ return typeof o == "string" && (o = o.trim()), mo(o);
1593
+ }
1594
+ var hu = {
1595
+ $validator: bu,
1596
+ $message: "Value is required",
1597
+ $params: {
1598
+ type: "required"
1599
+ }
1600
+ };
1601
+ const vu = /^(?:(?:(?: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;
1602
+ Q(vu);
1603
+ Q(/(^[0-9]*$)|(^-[0-9]+$)/);
1604
+ Q(/^[-]?\d*(\.\d+)?$/);
1605
+ function ku(o, r = /* @__PURE__ */ new Date()) {
1606
+ const e = vo(o);
1607
+ if (!e) return !1;
1608
+ const a = Vo(r);
1609
+ return Vo(e) > a;
1610
+ }
1611
+ function yu(o) {
1612
+ const r = vo(o);
1613
+ return !!r && Bo(r).isValid();
1614
+ }
1615
+ function $u(o) {
1616
+ const r = io(o);
1617
+ if (!r || r.length !== 11 || /^(\d)\1+$/.test(r)) return !1;
1618
+ const e = (s, u) => {
1619
+ let v = 0;
1620
+ for (let $ = 0; $ < s.length; $ += 1)
1621
+ v += Number(s[$]) * (u - $);
1622
+ const k = v % 11;
1623
+ return k < 2 ? 0 : 11 - k;
1624
+ }, a = e(r.slice(0, 9), 10), n = e(r.slice(0, 10), 11);
1625
+ return a === Number(r[9]) && n === Number(r[10]);
1626
+ }
1627
+ function Cu(o) {
1628
+ const r = io(o || "");
1629
+ return r ? r.length === 11 : !0;
1630
+ }
1631
+ function xu(o) {
1632
+ const r = io(o || "");
1633
+ return r ? r.length === 10 : !0;
1634
+ }
1635
+ function wu(o) {
1636
+ if (o == null) return !1;
1637
+ const r = String(o).trim();
1638
+ return r ? /^\d+$/.test(r) : !1;
1639
+ }
1640
+ function Bu(o) {
1641
+ return /^[A-Za-zÀ-ÖØ-öø-ÿ\s'-]+$/u.test(o);
1642
+ }
1643
+ function Ru(o) {
1644
+ return o.endsWith(".") || o.length < 2;
1645
+ }
1646
+ function Su(o) {
1647
+ const r = (o || "").trim();
1648
+ if (!r || !Bu(r)) return !1;
1649
+ const e = r.split(" ").filter(Boolean);
1650
+ if (e.length < 2) return !1;
1651
+ const a = /^[A-Za-zÀ-ÖØ-öø-ÿ]+(?:[-'][A-Za-zÀ-ÖØ-öø-ÿ]+)*$/u;
1652
+ return e.every((n) => {
1653
+ const s = n.replace(/^[-']+|[-']+$/g, "");
1654
+ return !s || Ru(s) ? !1 : a.test(n);
1655
+ });
1656
+ }
1657
+ const co = (o) => (r) => !V.req(r) || o(r), x0 = V.withMessage("Campo obrigatório.", hu), w0 = V.withMessage(
1658
+ "Informe nome e sobrenome.",
1659
+ co(Su)
1660
+ ), B0 = V.withMessage(
1661
+ "Informe apenas números.",
1662
+ co(wu)
1663
+ ), R0 = V.withMessage("E-mail inválido.", (o) => V.req(o) ? uu.$validator(String(o).trim()) : !0), S0 = V.withMessage("CPF inválido.", co($u)), D0 = V.withMessage(
1664
+ "Nº telefone inválido.",
1665
+ co((o) => xu(io(o)))
1666
+ ), z0 = V.withMessage(
1667
+ "Nº celular inválido.",
1668
+ co((o) => Cu(io(o)))
1669
+ ), M0 = V.withMessage(
1670
+ "Data inválida.",
1671
+ co((o) => yu(vo(o)))
1672
+ ), W0 = V.withMessage(
1673
+ "Data não pode ser maior que hoje.",
1674
+ co((o) => !ku(vo(o)))
1675
+ );
1676
+ function V0(o, r) {
1677
+ const e = `Informe no mínimo ${o} caracteres.`;
1678
+ return V.withMessage(
1679
+ r || e,
1680
+ (a) => V.req(a) ? pu(o).$validator(String(a)) : !0
1681
+ );
1682
+ }
1683
+ function O0(o, r) {
1684
+ const e = `Informe no máximo ${o} caracteres.`;
1685
+ return V.withMessage(
1686
+ r || e,
1687
+ (a) => V.req(a) ? gu(o).$validator(String(a)) : !0
1688
+ );
1689
+ }
1690
+ export {
1691
+ nr as BaseAlert,
1692
+ Co as BaseButton,
1693
+ Pu as BaseCard,
1694
+ _u as BaseDate,
1695
+ qu as BaseDatePicker,
1696
+ Eu as BaseDrawer,
1697
+ Xu as BaseEmpty,
1698
+ Uu as BaseField,
1699
+ ur as BaseInputMask,
1700
+ Gu as BaseInputText,
1701
+ Zu as BaseRouterLink,
1702
+ Ju as BaseSectionDivider,
1703
+ Qu as BaseSelect,
1704
+ Ku as BaseSwitch,
1705
+ jo as FaIcon,
1706
+ ko as add,
1707
+ f0 as addDays,
1708
+ p0 as addMinutes,
1709
+ g0 as addMonths,
1710
+ m0 as addYears,
1711
+ h0 as formatAddress,
1712
+ v0 as formatCouncil,
1713
+ i0 as formatDate,
1714
+ c0 as formatDateTime,
1715
+ d0 as formatDateTimeToApi,
1716
+ t0 as formatDateToApi,
1717
+ u0 as formatFullDate,
1718
+ k0 as formatPhone,
1719
+ l0 as formatTime,
1720
+ s0 as formatWeekday,
1721
+ io as onlyNumber,
1722
+ r0 as setupPrimeVue,
1723
+ Vo as startOfDay,
1724
+ y0 as storageGet,
1725
+ C0 as storageRemove,
1726
+ $0 as storageSet,
1727
+ b0 as toCamelCaseWords,
1728
+ vo as toDate,
1729
+ n0 as today,
1730
+ e0 as useAppToast,
1731
+ a0 as useClickOutside,
1732
+ o0 as vFocus,
1733
+ z0 as validCellphone,
1734
+ S0 as validCpf,
1735
+ M0 as validDate,
1736
+ R0 as validEmail,
1737
+ w0 as validFullName,
1738
+ O0 as validMaxLength,
1739
+ V0 as validMinLength,
1740
+ W0 as validNotFutureDate,
1741
+ B0 as validOnlyNumbers,
1742
+ D0 as validPhone,
1743
+ x0 as validRequired
1744
+ };