@codemonster-ru/vueforge 0.76.0 → 0.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +629 -593
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/inline.test.d.ts +1 -0
- package/dist/package/components/inline.vue.d.ts +33 -0
- package/dist/package/config/theme-core.d.ts +7 -0
- package/dist/package/themes/default/components/inline.d.ts +7 -0
- package/dist/package/themes/default/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.ts.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as oe, ref as N, computed as p, watch as ie, resolveComponent as nt, openBlock as v, createElementBlock as g, normalizeClass as Z, renderSlot as
|
|
1
|
+
import { defineComponent as oe, ref as N, computed as p, watch as ie, resolveComponent as nt, openBlock as v, createElementBlock as g, normalizeClass as Z, renderSlot as j, Fragment as ue, createTextVNode as fe, toDisplayString as G, createBlock as pe, withCtx as _e, createCommentVNode as Q, resolveDynamicComponent as Ye, normalizeStyle as ye, createElementVNode as x, renderList as me, withKeys as ce, withModifiers as re, unref as We, createVNode as Ge, inject as Xe, provide as Qe, nextTick as ze, onBeforeUnmount as ke, withDirectives as Ce, vShow as $e, onMounted as Le, useSlots as Ue, Teleport as Ve, reactive as Dt, createSlots as bt, useAttrs as Rt, mergeProps as st, Transition as Mt, normalizeProps as Pt, guardReactiveProps as Ot } from "vue";
|
|
2
2
|
import { useRoute as Et, useRouter as At } from "vue-router";
|
|
3
3
|
import { CmIcon as Ne } from "@codemonster-ru/vueiconify";
|
|
4
4
|
const Ht = ["href", "aria-disabled", "tabindex"], it = /* @__PURE__ */ oe({
|
|
@@ -39,7 +39,7 @@ const Ht = ["href", "aria-disabled", "tabindex"], it = /* @__PURE__ */ oe({
|
|
|
39
39
|
tabindex: l.disabled ? -1 : void 0,
|
|
40
40
|
onClick: y
|
|
41
41
|
}, [
|
|
42
|
-
l.$slots.default ?
|
|
42
|
+
l.$slots.default ? j(l.$slots, "default", { key: 0 }) : (v(), g(ue, { key: 1 }, [
|
|
43
43
|
fe(G(l.label), 1)
|
|
44
44
|
], 64))
|
|
45
45
|
], 10, Ht)) : (v(), pe(_, {
|
|
@@ -55,7 +55,7 @@ const Ht = ["href", "aria-disabled", "tabindex"], it = /* @__PURE__ */ oe({
|
|
|
55
55
|
onClick: y
|
|
56
56
|
}, {
|
|
57
57
|
default: _e(() => [
|
|
58
|
-
l.$slots.default ?
|
|
58
|
+
l.$slots.default ? j(l.$slots, "default", { key: 0 }) : (v(), g(ue, { key: 1 }, [
|
|
59
59
|
fe(G(l.label), 1)
|
|
60
60
|
], 64))
|
|
61
61
|
]),
|
|
@@ -71,10 +71,10 @@ const Ht = ["href", "aria-disabled", "tabindex"], it = /* @__PURE__ */ oe({
|
|
|
71
71
|
}, Kt = {}, Nt = { class: "vf-card" }, Gt = {
|
|
72
72
|
key: 0,
|
|
73
73
|
class: "vf-card__default"
|
|
74
|
-
},
|
|
74
|
+
}, jt = {
|
|
75
75
|
key: 1,
|
|
76
76
|
class: "vf-card__header"
|
|
77
|
-
},
|
|
77
|
+
}, Yt = {
|
|
78
78
|
key: 2,
|
|
79
79
|
class: "vf-card__body"
|
|
80
80
|
}, Xt = {
|
|
@@ -84,20 +84,20 @@ const Ht = ["href", "aria-disabled", "tabindex"], it = /* @__PURE__ */ oe({
|
|
|
84
84
|
function Ut(s, o) {
|
|
85
85
|
return v(), g("div", Nt, [
|
|
86
86
|
s.$slots.default ? (v(), g("div", Gt, [
|
|
87
|
-
|
|
87
|
+
j(s.$slots, "default")
|
|
88
88
|
])) : Q("", !0),
|
|
89
|
-
s.$slots.header ? (v(), g("div",
|
|
90
|
-
|
|
89
|
+
s.$slots.header ? (v(), g("div", jt, [
|
|
90
|
+
j(s.$slots, "header")
|
|
91
91
|
])) : Q("", !0),
|
|
92
|
-
s.$slots.body ? (v(), g("div",
|
|
93
|
-
|
|
92
|
+
s.$slots.body ? (v(), g("div", Yt, [
|
|
93
|
+
j(s.$slots, "body")
|
|
94
94
|
])) : Q("", !0),
|
|
95
95
|
s.$slots.footer ? (v(), g("div", Xt, [
|
|
96
|
-
|
|
96
|
+
j(s.$slots, "footer")
|
|
97
97
|
])) : Q("", !0)
|
|
98
98
|
]);
|
|
99
99
|
}
|
|
100
|
-
const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]),
|
|
100
|
+
const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), qu = /* @__PURE__ */ oe({
|
|
101
101
|
name: "VfContainer",
|
|
102
102
|
__name: "container",
|
|
103
103
|
props: {
|
|
@@ -111,17 +111,17 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
111
111
|
const t = {};
|
|
112
112
|
return o.maxWidth && (t["--vf-container-max-width-override"] = o.maxWidth), o.paddingX && (t["--vf-container-padding-x-override"] = o.paddingX), t;
|
|
113
113
|
});
|
|
114
|
-
return (t, i) => (v(), pe(
|
|
114
|
+
return (t, i) => (v(), pe(Ye(t.as), {
|
|
115
115
|
class: Z(a.value),
|
|
116
116
|
style: ye(e.value)
|
|
117
117
|
}, {
|
|
118
118
|
default: _e(() => [
|
|
119
|
-
|
|
119
|
+
j(t.$slots, "default")
|
|
120
120
|
]),
|
|
121
121
|
_: 3
|
|
122
122
|
}, 8, ["class", "style"]));
|
|
123
123
|
}
|
|
124
|
-
}),
|
|
124
|
+
}), Qu = /* @__PURE__ */ oe({
|
|
125
125
|
name: "VfSection",
|
|
126
126
|
__name: "section",
|
|
127
127
|
props: {
|
|
@@ -135,17 +135,17 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
135
135
|
const t = {};
|
|
136
136
|
return o.paddingY && (t["--vf-section-padding-y-override"] = o.paddingY), t;
|
|
137
137
|
});
|
|
138
|
-
return (t, i) => (v(), pe(
|
|
138
|
+
return (t, i) => (v(), pe(Ye(t.as), {
|
|
139
139
|
class: Z(a.value),
|
|
140
140
|
style: ye(e.value)
|
|
141
141
|
}, {
|
|
142
142
|
default: _e(() => [
|
|
143
|
-
|
|
143
|
+
j(t.$slots, "default")
|
|
144
144
|
]),
|
|
145
145
|
_: 3
|
|
146
146
|
}, 8, ["class", "style"]));
|
|
147
147
|
}
|
|
148
|
-
}),
|
|
148
|
+
}), Zu = /* @__PURE__ */ oe({
|
|
149
149
|
name: "VfGrid",
|
|
150
150
|
__name: "grid",
|
|
151
151
|
props: {
|
|
@@ -180,17 +180,17 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
180
180
|
}
|
|
181
181
|
return t;
|
|
182
182
|
});
|
|
183
|
-
return (t, i) => (v(), pe(
|
|
183
|
+
return (t, i) => (v(), pe(Ye(t.as), {
|
|
184
184
|
class: "vf-grid",
|
|
185
185
|
style: ye(e.value)
|
|
186
186
|
}, {
|
|
187
187
|
default: _e(() => [
|
|
188
|
-
|
|
188
|
+
j(t.$slots, "default")
|
|
189
189
|
]),
|
|
190
190
|
_: 3
|
|
191
191
|
}, 8, ["style"]));
|
|
192
192
|
}
|
|
193
|
-
}),
|
|
193
|
+
}), Ju = /* @__PURE__ */ oe({
|
|
194
194
|
name: "VfGridItem",
|
|
195
195
|
__name: "grid-item",
|
|
196
196
|
props: {
|
|
@@ -217,17 +217,17 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
217
217
|
}
|
|
218
218
|
return t;
|
|
219
219
|
});
|
|
220
|
-
return (t, i) => (v(), pe(
|
|
220
|
+
return (t, i) => (v(), pe(Ye(t.as), {
|
|
221
221
|
class: "vf-grid-item",
|
|
222
222
|
style: ye(e.value)
|
|
223
223
|
}, {
|
|
224
224
|
default: _e(() => [
|
|
225
|
-
|
|
225
|
+
j(t.$slots, "default")
|
|
226
226
|
]),
|
|
227
227
|
_: 3
|
|
228
228
|
}, 8, ["style"]));
|
|
229
229
|
}
|
|
230
|
-
}),
|
|
230
|
+
}), ec = /* @__PURE__ */ oe({
|
|
231
231
|
name: "VfStack",
|
|
232
232
|
__name: "stack",
|
|
233
233
|
props: {
|
|
@@ -246,12 +246,41 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
246
246
|
};
|
|
247
247
|
return o.gap && (e["--vf-stack-gap-override"] = o.gap), e;
|
|
248
248
|
});
|
|
249
|
-
return (e, t) => (v(), pe(
|
|
249
|
+
return (e, t) => (v(), pe(Ye(e.as), {
|
|
250
250
|
class: "vf-stack",
|
|
251
251
|
style: ye(a.value)
|
|
252
252
|
}, {
|
|
253
253
|
default: _e(() => [
|
|
254
|
-
|
|
254
|
+
j(e.$slots, "default")
|
|
255
|
+
]),
|
|
256
|
+
_: 3
|
|
257
|
+
}, 8, ["style"]));
|
|
258
|
+
}
|
|
259
|
+
}), tc = /* @__PURE__ */ oe({
|
|
260
|
+
name: "VfInline",
|
|
261
|
+
__name: "inline",
|
|
262
|
+
props: {
|
|
263
|
+
as: { default: "div" },
|
|
264
|
+
gap: { default: "" },
|
|
265
|
+
align: { default: "center" },
|
|
266
|
+
justify: { default: "start" },
|
|
267
|
+
wrap: { default: "wrap" }
|
|
268
|
+
},
|
|
269
|
+
setup(s) {
|
|
270
|
+
const o = s, a = p(() => {
|
|
271
|
+
const e = {
|
|
272
|
+
"--vf-inline-align-items-override": o.align,
|
|
273
|
+
"--vf-inline-justify-content-override": o.justify,
|
|
274
|
+
"--vf-inline-wrap-override": o.wrap
|
|
275
|
+
};
|
|
276
|
+
return o.gap && (e["--vf-inline-gap-override"] = o.gap), e;
|
|
277
|
+
});
|
|
278
|
+
return (e, t) => (v(), pe(Ye(e.as), {
|
|
279
|
+
class: "vf-inline",
|
|
280
|
+
style: ye(a.value)
|
|
281
|
+
}, {
|
|
282
|
+
default: _e(() => [
|
|
283
|
+
j(e.$slots, "default")
|
|
255
284
|
]),
|
|
256
285
|
_: 3
|
|
257
286
|
}, 8, ["style"]));
|
|
@@ -304,7 +333,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
304
333
|
class: "vf-menu__item",
|
|
305
334
|
role: "none"
|
|
306
335
|
}, [
|
|
307
|
-
c.$slots[i(y, l)] ?
|
|
336
|
+
c.$slots[i(y, l)] ? j(c.$slots, i(y, l), {
|
|
308
337
|
key: 0,
|
|
309
338
|
item: { ...y, class: "vf-menu__link" }
|
|
310
339
|
}) : y.separator ? (v(), g("hr", Zt)) : y.items && y.items.length ? (v(), g(ue, { key: 2 }, [
|
|
@@ -380,7 +409,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
380
409
|
disabled: { type: Boolean, default: !1 }
|
|
381
410
|
},
|
|
382
411
|
setup(s) {
|
|
383
|
-
const o = s, a =
|
|
412
|
+
const o = s, a = Xe(dt, null), e = ["button", "submit", "reset"], t = (m) => !!m && e.includes(m), i = p(() => o.as ? o.as === "button" : !(o.to || o.href || o.url || o.type && !t(o.type))), n = p(() => t(o.type) ? o.type : "button"), d = p(() => o.as === "link" ? o.to ? "router-link" : "a" : o.type && !t(o.type) ? o.type === "router-link" && o.to ? "router-link" : "a" : o.to ? "router-link" : "a"), r = p(() => {
|
|
384
413
|
const m = o.size ?? (a == null ? void 0 : a.value.size) ?? "normal", y = o.variant ?? (a == null ? void 0 : a.value.variant), l = o.severity ?? (a == null ? void 0 : a.value.severity) ?? "primary", k = o.loading || o.disabled || (a == null ? void 0 : a.value.disabled);
|
|
385
414
|
let _ = ["vf-button", `vf-button_${l}`];
|
|
386
415
|
return ["top", "bottom"].includes(o.iconPos) && _.push("vf-button_vertical"), y === "text" && _.push("vf-button_text"), y === "outlined" && _.push("vf-button_outlined"), ["small", "large"].indexOf(m) > -1 && _.push(`vf-button_${m}`), k && _.push("vf-button_disabled"), o.rounded && _.push("vf-button_rounded"), _;
|
|
@@ -406,7 +435,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
406
435
|
key: 2,
|
|
407
436
|
class: Z(f.value)
|
|
408
437
|
}, [
|
|
409
|
-
|
|
438
|
+
j(m.$slots, "default")
|
|
410
439
|
], 2)) : m.label ? (v(), g("span", {
|
|
411
440
|
key: 3,
|
|
412
441
|
class: Z(f.value)
|
|
@@ -429,7 +458,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
429
458
|
key: 1,
|
|
430
459
|
class: Z(f.value)
|
|
431
460
|
}, [
|
|
432
|
-
|
|
461
|
+
j(m.$slots, "default")
|
|
433
462
|
], 2)) : m.label ? (v(), g("span", {
|
|
434
463
|
key: 2,
|
|
435
464
|
class: Z(f.value)
|
|
@@ -438,7 +467,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
438
467
|
_: 3
|
|
439
468
|
}, 8, ["to", "href", "as", "class", "disabled"]));
|
|
440
469
|
}
|
|
441
|
-
}), ta = ["aria-disabled"],
|
|
470
|
+
}), ta = ["aria-disabled"], ac = /* @__PURE__ */ oe({
|
|
442
471
|
name: "VfButtonGroup",
|
|
443
472
|
__name: "button-group",
|
|
444
473
|
props: {
|
|
@@ -466,7 +495,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
466
495
|
role: "group",
|
|
467
496
|
"aria-disabled": t.disabled ? "true" : void 0
|
|
468
497
|
}, [
|
|
469
|
-
|
|
498
|
+
j(t.$slots, "default")
|
|
470
499
|
], 10, ta));
|
|
471
500
|
}
|
|
472
501
|
}), aa = {
|
|
@@ -475,7 +504,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
475
504
|
}, oa = ["type", "value", "placeholder", "disabled", "readonly"], ra = {
|
|
476
505
|
key: 1,
|
|
477
506
|
class: "vf-input__suffix"
|
|
478
|
-
},
|
|
507
|
+
}, oc = /* @__PURE__ */ oe({
|
|
479
508
|
__name: "input",
|
|
480
509
|
props: {
|
|
481
510
|
modelValue: { default: "" },
|
|
@@ -499,7 +528,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
499
528
|
class: Z(t.value)
|
|
500
529
|
}, [
|
|
501
530
|
u.$slots.prefix ? (v(), g("span", aa, [
|
|
502
|
-
|
|
531
|
+
j(u.$slots, "prefix")
|
|
503
532
|
])) : Q("", !0),
|
|
504
533
|
x("input", {
|
|
505
534
|
class: "vf-input__control",
|
|
@@ -514,11 +543,11 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
514
543
|
onBlur: r
|
|
515
544
|
}, null, 40, oa),
|
|
516
545
|
u.$slots.suffix ? (v(), g("span", ra, [
|
|
517
|
-
|
|
546
|
+
j(u.$slots, "suffix")
|
|
518
547
|
])) : Q("", !0)
|
|
519
548
|
], 2));
|
|
520
549
|
}
|
|
521
|
-
}), la = ["aria-disabled"],
|
|
550
|
+
}), la = ["aria-disabled"], rc = /* @__PURE__ */ oe({
|
|
522
551
|
__name: "input-group",
|
|
523
552
|
props: {
|
|
524
553
|
size: { default: "normal" },
|
|
@@ -535,23 +564,23 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
535
564
|
role: "group",
|
|
536
565
|
"aria-disabled": e.disabled ? "true" : void 0
|
|
537
566
|
}, [
|
|
538
|
-
|
|
567
|
+
j(e.$slots, "default")
|
|
539
568
|
], 10, la));
|
|
540
569
|
}
|
|
541
|
-
}),
|
|
570
|
+
}), lc = /* @__PURE__ */ oe({
|
|
542
571
|
__name: "input-addon",
|
|
543
572
|
props: {
|
|
544
573
|
as: { default: "span" }
|
|
545
574
|
},
|
|
546
575
|
setup(s) {
|
|
547
|
-
return (o, a) => (v(), pe(
|
|
576
|
+
return (o, a) => (v(), pe(Ye(o.as), { class: "vf-input-group__addon" }, {
|
|
548
577
|
default: _e(() => [
|
|
549
|
-
|
|
578
|
+
j(o.$slots, "default")
|
|
550
579
|
]),
|
|
551
580
|
_: 3
|
|
552
581
|
}));
|
|
553
582
|
}
|
|
554
|
-
}), na = ["type", "value", "placeholder", "disabled", "readonly", "onKeydown"], sa = { class: "vf-inline-edit__actions" }, ia = ["disabled"], da = ["disabled"], ua = ["disabled"],
|
|
583
|
+
}), na = ["type", "value", "placeholder", "disabled", "readonly", "onKeydown"], sa = { class: "vf-inline-edit__actions" }, ia = ["disabled"], da = ["disabled"], ua = ["disabled"], nc = /* @__PURE__ */ oe({
|
|
555
584
|
__name: "inline-edit",
|
|
556
585
|
props: {
|
|
557
586
|
modelValue: { default: null },
|
|
@@ -653,7 +682,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
653
682
|
key: 0,
|
|
654
683
|
class: "vf-search-input__spinner",
|
|
655
684
|
"aria-hidden": "true"
|
|
656
|
-
}, fa = ["disabled"],
|
|
685
|
+
}, fa = ["disabled"], sc = /* @__PURE__ */ oe({
|
|
657
686
|
__name: "search-input",
|
|
658
687
|
props: {
|
|
659
688
|
modelValue: { default: "" },
|
|
@@ -743,7 +772,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
743
772
|
}, ga = ["disabled", "onClick"], ba = { class: "vf-mention-input__option-trigger" }, ha = {
|
|
744
773
|
key: 2,
|
|
745
774
|
class: "vf-mention-input__empty"
|
|
746
|
-
},
|
|
775
|
+
}, ic = /* @__PURE__ */ oe({
|
|
747
776
|
__name: "mention-input",
|
|
748
777
|
props: {
|
|
749
778
|
modelValue: { default: "" },
|
|
@@ -860,8 +889,8 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
860
889
|
text: E,
|
|
861
890
|
range: [q.start, q.end]
|
|
862
891
|
}), _(), requestAnimationFrame(() => {
|
|
863
|
-
var T,
|
|
864
|
-
(T = n.value) == null || T.focus(), (
|
|
892
|
+
var T, Y;
|
|
893
|
+
(T = n.value) == null || T.focus(), (Y = n.value) == null || Y.setSelectionRange(H, H);
|
|
865
894
|
});
|
|
866
895
|
}, D = () => {
|
|
867
896
|
if (!d.value)
|
|
@@ -954,7 +983,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
954
983
|
}, za = { class: "vf-password-input__strength-track" }, Sa = { class: "vf-password-input__strength-label" }, Ba = {
|
|
955
984
|
key: 1,
|
|
956
985
|
class: "vf-password-input__caps-lock"
|
|
957
|
-
},
|
|
986
|
+
}, dc = /* @__PURE__ */ oe({
|
|
958
987
|
__name: "password-input",
|
|
959
988
|
props: {
|
|
960
989
|
modelValue: { default: "" },
|
|
@@ -1006,7 +1035,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1006
1035
|
}, [
|
|
1007
1036
|
x("div", ya, [
|
|
1008
1037
|
B.$slots.prefix ? (v(), g("span", _a, [
|
|
1009
|
-
|
|
1038
|
+
j(B.$slots, "prefix")
|
|
1010
1039
|
])) : Q("", !0),
|
|
1011
1040
|
x("input", {
|
|
1012
1041
|
class: "vf-password-input__control",
|
|
@@ -1033,7 +1062,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1033
1062
|
onClick: _
|
|
1034
1063
|
}, G(t.value ? B.hideText : B.revealText), 9, Ca)) : Q("", !0),
|
|
1035
1064
|
B.$slots.suffix ? (v(), g("span", $a, [
|
|
1036
|
-
|
|
1065
|
+
j(B.$slots, "suffix")
|
|
1037
1066
|
])) : Q("", !0)
|
|
1038
1067
|
]),
|
|
1039
1068
|
B.showStrength && B.modelValue ? (v(), g("div", wa, [
|
|
@@ -1048,7 +1077,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1048
1077
|
B.showCapsLockHint && i.value && !B.disabled ? (v(), g("p", Ba, G(B.capsLockHint), 1)) : Q("", !0)
|
|
1049
1078
|
], 2));
|
|
1050
1079
|
}
|
|
1051
|
-
}), xa = ["aria-label"], Va = ["type", "pattern", "placeholder", "value", "disabled", "readonly", "autocomplete", "onInput", "onKeydown"],
|
|
1080
|
+
}), xa = ["aria-label"], Va = ["type", "pattern", "placeholder", "value", "disabled", "readonly", "autocomplete", "onInput", "onKeydown"], uc = /* @__PURE__ */ oe({
|
|
1052
1081
|
__name: "otp-input",
|
|
1053
1082
|
props: {
|
|
1054
1083
|
modelValue: { default: "" },
|
|
@@ -1167,7 +1196,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1167
1196
|
}, Ma = ["value"], Pa = { class: "vf-color-picker__alpha-value" }, Oa = { class: "vf-color-picker__row" }, Ea = ["placeholder", "value"], Aa = {
|
|
1168
1197
|
key: 1,
|
|
1169
1198
|
class: "vf-color-picker__presets"
|
|
1170
|
-
}, Ha = ["onClick"],
|
|
1199
|
+
}, Ha = ["onClick"], cc = /* @__PURE__ */ oe({
|
|
1171
1200
|
__name: "color-picker",
|
|
1172
1201
|
props: {
|
|
1173
1202
|
modelValue: { default: "#3b82f6" },
|
|
@@ -1196,7 +1225,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1196
1225
|
const F = z.trim().match(/^rgba?\((.*)\)$/i);
|
|
1197
1226
|
if (!F)
|
|
1198
1227
|
return null;
|
|
1199
|
-
const A = F[1].split(",").map((
|
|
1228
|
+
const A = F[1].split(",").map((Y) => Y.trim());
|
|
1200
1229
|
if (A.length !== 3 && A.length !== 4)
|
|
1201
1230
|
return null;
|
|
1202
1231
|
const q = Number(A[0]), L = Number(A[1]), W = Number(A[2]), b = A.length === 4 ? Number(A[3]) : 1;
|
|
@@ -1206,18 +1235,18 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1206
1235
|
return { r: E, g: K, b: H, a: T, valid: !0, preview: `rgba(${E}, ${K}, ${H}, ${T})` };
|
|
1207
1236
|
}, m = (z, F, A) => {
|
|
1208
1237
|
const q = (z % 360 + 360) % 360, L = r(F, 0, 100) / 100, W = r(A, 0, 100) / 100, b = (1 - Math.abs(2 * W - 1)) * L, E = b * (1 - Math.abs(q / 60 % 2 - 1)), K = W - b / 2;
|
|
1209
|
-
let H = 0, T = 0,
|
|
1210
|
-
return q < 60 ? (H = b, T = E) : q < 120 ? (H = E, T = b) : q < 180 ? (T = b,
|
|
1238
|
+
let H = 0, T = 0, Y = 0;
|
|
1239
|
+
return q < 60 ? (H = b, T = E) : q < 120 ? (H = E, T = b) : q < 180 ? (T = b, Y = E) : q < 240 ? (T = E, Y = b) : q < 300 ? (H = E, Y = b) : (H = b, Y = E), {
|
|
1211
1240
|
r: Math.round((H + K) * 255),
|
|
1212
1241
|
g: Math.round((T + K) * 255),
|
|
1213
|
-
b: Math.round((
|
|
1242
|
+
b: Math.round((Y + K) * 255)
|
|
1214
1243
|
};
|
|
1215
1244
|
}, y = (z, F, A) => {
|
|
1216
1245
|
const q = z / 255, L = F / 255, W = A / 255, b = Math.max(q, L, W), E = Math.min(q, L, W), K = b - E;
|
|
1217
1246
|
let H = 0;
|
|
1218
1247
|
K !== 0 && (b === q ? H = (L - W) / K % 6 : b === L ? H = (W - q) / K + 2 : H = (q - L) / K + 4, H *= 60), H < 0 && (H += 360);
|
|
1219
|
-
const T = (b + E) / 2,
|
|
1220
|
-
return { h: Math.round(H), s: Math.round(
|
|
1248
|
+
const T = (b + E) / 2, Y = K === 0 ? 0 : K / (1 - Math.abs(2 * T - 1));
|
|
1249
|
+
return { h: Math.round(H), s: Math.round(Y * 100), l: Math.round(T * 100) };
|
|
1221
1250
|
}, l = (z) => {
|
|
1222
1251
|
const F = z.trim().match(/^hsla?\((.*)\)$/i);
|
|
1223
1252
|
if (!F)
|
|
@@ -1364,7 +1393,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1364
1393
|
}, Ka = ["value", "placeholder", "disabled", "readonly"], Na = {
|
|
1365
1394
|
key: 1,
|
|
1366
1395
|
class: "vf-masked-input__suffix"
|
|
1367
|
-
},
|
|
1396
|
+
}, vc = /* @__PURE__ */ oe({
|
|
1368
1397
|
__name: "masked-input",
|
|
1369
1398
|
props: {
|
|
1370
1399
|
modelValue: { default: "" },
|
|
@@ -1443,7 +1472,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1443
1472
|
class: Z(_.value)
|
|
1444
1473
|
}, [
|
|
1445
1474
|
C.$slots.prefix ? (v(), g("span", Wa, [
|
|
1446
|
-
|
|
1475
|
+
j(C.$slots, "prefix")
|
|
1447
1476
|
])) : Q("", !0),
|
|
1448
1477
|
x("input", {
|
|
1449
1478
|
ref: "control",
|
|
@@ -1459,20 +1488,20 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1459
1488
|
onBlur: h
|
|
1460
1489
|
}, null, 40, Ka),
|
|
1461
1490
|
C.$slots.suffix ? (v(), g("span", Na, [
|
|
1462
|
-
|
|
1491
|
+
j(C.$slots, "suffix")
|
|
1463
1492
|
])) : Q("", !0)
|
|
1464
1493
|
], 2));
|
|
1465
1494
|
}
|
|
1466
1495
|
}), Ga = {
|
|
1467
1496
|
key: 0,
|
|
1468
1497
|
class: "vf-number-input__prefix"
|
|
1469
|
-
},
|
|
1498
|
+
}, ja = ["value", "min", "max", "step", "placeholder", "disabled", "readonly", "aria-label"], Ya = {
|
|
1470
1499
|
key: 1,
|
|
1471
1500
|
class: "vf-number-input__controls"
|
|
1472
1501
|
}, Xa = ["disabled"], Ua = ["disabled"], qa = {
|
|
1473
1502
|
key: 2,
|
|
1474
1503
|
class: "vf-number-input__suffix"
|
|
1475
|
-
},
|
|
1504
|
+
}, fc = /* @__PURE__ */ oe({
|
|
1476
1505
|
__name: "number-input",
|
|
1477
1506
|
props: {
|
|
1478
1507
|
modelValue: { default: null },
|
|
@@ -1521,7 +1550,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1521
1550
|
class: Z(f.value)
|
|
1522
1551
|
}, [
|
|
1523
1552
|
S.$slots.prefix ? (v(), g("span", Ga, [
|
|
1524
|
-
|
|
1553
|
+
j(S.$slots, "prefix")
|
|
1525
1554
|
])) : Q("", !0),
|
|
1526
1555
|
x("input", {
|
|
1527
1556
|
class: "vf-number-input__control",
|
|
@@ -1538,8 +1567,8 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1538
1567
|
onChange: y,
|
|
1539
1568
|
onFocus: l,
|
|
1540
1569
|
onBlur: k
|
|
1541
|
-
}, null, 40,
|
|
1542
|
-
S.controls ? (v(), g("div",
|
|
1570
|
+
}, null, 40, ja),
|
|
1571
|
+
S.controls ? (v(), g("div", Ya, [
|
|
1543
1572
|
x("button", {
|
|
1544
1573
|
class: "vf-number-input__step",
|
|
1545
1574
|
type: "button",
|
|
@@ -1556,11 +1585,11 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1556
1585
|
}, " - ", 8, Ua)
|
|
1557
1586
|
])) : Q("", !0),
|
|
1558
1587
|
S.$slots.suffix ? (v(), g("span", qa, [
|
|
1559
|
-
|
|
1588
|
+
j(S.$slots, "suffix")
|
|
1560
1589
|
])) : Q("", !0)
|
|
1561
1590
|
], 2));
|
|
1562
1591
|
}
|
|
1563
|
-
}), Qa = ["id", "aria-label", "aria-labelledby", "novalidate"],
|
|
1592
|
+
}), Qa = ["id", "aria-label", "aria-labelledby", "novalidate"], pc = /* @__PURE__ */ oe({
|
|
1564
1593
|
__name: "form",
|
|
1565
1594
|
props: {
|
|
1566
1595
|
modelValue: { default: void 0 },
|
|
@@ -1764,7 +1793,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1764
1793
|
onChange: $,
|
|
1765
1794
|
onFocusout: V
|
|
1766
1795
|
}, [
|
|
1767
|
-
|
|
1796
|
+
j(b.$slots, "default", {
|
|
1768
1797
|
values: n.value,
|
|
1769
1798
|
errors: r.value,
|
|
1770
1799
|
touched: d.value,
|
|
@@ -1784,7 +1813,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1784
1813
|
key: 0,
|
|
1785
1814
|
class: "vf-form-field__required",
|
|
1786
1815
|
"aria-hidden": "true"
|
|
1787
|
-
}, eo = { class: "vf-form-field__control" }, to = ["id"], ao = ["id"],
|
|
1816
|
+
}, eo = { class: "vf-form-field__control" }, to = ["id"], ao = ["id"], mc = /* @__PURE__ */ oe({
|
|
1788
1817
|
__name: "form-field",
|
|
1789
1818
|
props: {
|
|
1790
1819
|
id: { default: void 0 },
|
|
@@ -1796,7 +1825,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1796
1825
|
size: { default: "normal" }
|
|
1797
1826
|
},
|
|
1798
1827
|
setup(s) {
|
|
1799
|
-
const o = s, a =
|
|
1828
|
+
const o = s, a = Ue(), e = `vf-form-field-${Math.random().toString(36).slice(2, 10)}`, t = p(() => o.id || e), i = p(() => `${t.value}-hint`), n = p(() => `${t.value}-error`), d = p(() => !!o.label || !!a.label), r = p(() => !!o.hint || !!a.hint), u = p(() => !!o.error || !!a.error), c = p(() => {
|
|
1800
1829
|
const m = [];
|
|
1801
1830
|
return r.value && m.push(i.value), u.value && m.push(n.value), m.length ? m.join(" ") : void 0;
|
|
1802
1831
|
}), f = p(() => {
|
|
@@ -1811,13 +1840,13 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1811
1840
|
class: "vf-form-field__label",
|
|
1812
1841
|
for: t.value
|
|
1813
1842
|
}, [
|
|
1814
|
-
|
|
1843
|
+
j(m.$slots, "label", {}, () => [
|
|
1815
1844
|
fe(G(m.label), 1)
|
|
1816
1845
|
]),
|
|
1817
1846
|
m.required ? (v(), g("span", Ja, "*")) : Q("", !0)
|
|
1818
1847
|
], 8, Za)) : Q("", !0),
|
|
1819
1848
|
x("div", eo, [
|
|
1820
|
-
|
|
1849
|
+
j(m.$slots, "default", {
|
|
1821
1850
|
id: t.value,
|
|
1822
1851
|
describedBy: c.value,
|
|
1823
1852
|
invalid: u.value,
|
|
@@ -1829,7 +1858,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1829
1858
|
id: i.value,
|
|
1830
1859
|
class: "vf-form-field__hint"
|
|
1831
1860
|
}, [
|
|
1832
|
-
|
|
1861
|
+
j(m.$slots, "hint", {}, () => [
|
|
1833
1862
|
fe(G(m.hint), 1)
|
|
1834
1863
|
])
|
|
1835
1864
|
], 8, to)) : Q("", !0),
|
|
@@ -1839,13 +1868,13 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1839
1868
|
class: "vf-form-field__error",
|
|
1840
1869
|
role: "alert"
|
|
1841
1870
|
}, [
|
|
1842
|
-
|
|
1871
|
+
j(m.$slots, "error", {}, () => [
|
|
1843
1872
|
fe(G(m.error), 1)
|
|
1844
1873
|
])
|
|
1845
1874
|
], 8, ao)) : Q("", !0)
|
|
1846
1875
|
], 2));
|
|
1847
1876
|
}
|
|
1848
|
-
}), oo = ["value", "placeholder", "disabled", "readonly", "rows"],
|
|
1877
|
+
}), oo = ["value", "placeholder", "disabled", "readonly", "rows"], gc = /* @__PURE__ */ oe({
|
|
1849
1878
|
__name: "textarea",
|
|
1850
1879
|
props: {
|
|
1851
1880
|
modelValue: { default: "" },
|
|
@@ -1882,7 +1911,7 @@ const qt = /* @__PURE__ */ Wt(Kt, [["render", Ut]]), Uu = /* @__PURE__ */ oe({
|
|
|
1882
1911
|
}, null, 40, oo)
|
|
1883
1912
|
], 2));
|
|
1884
1913
|
}
|
|
1885
|
-
}), ro = ["aria-label"], lo = ["data-action", "disabled", "onClick"], no = ["value", "placeholder", "disabled", "readonly", "rows", "aria-label"],
|
|
1914
|
+
}), ro = ["aria-label"], lo = ["data-action", "disabled", "onClick"], no = ["value", "placeholder", "disabled", "readonly", "rows", "aria-label"], bc = /* @__PURE__ */ oe({
|
|
1886
1915
|
__name: "rich-text-editor",
|
|
1887
1916
|
props: {
|
|
1888
1917
|
modelValue: { default: "" },
|
|
@@ -2027,7 +2056,7 @@ ${C}
|
|
|
2027
2056
|
}, vo = {
|
|
2028
2057
|
key: 1,
|
|
2029
2058
|
class: "vf-file-upload__list"
|
|
2030
|
-
}, fo = { class: "vf-file-upload__name" }, po = { class: "vf-file-upload__size" }, mo = ["aria-label", "onClick"], go = ["disabled"],
|
|
2059
|
+
}, fo = { class: "vf-file-upload__name" }, po = { class: "vf-file-upload__size" }, mo = ["aria-label", "onClick"], go = ["disabled"], hc = /* @__PURE__ */ oe({
|
|
2031
2060
|
__name: "file-upload",
|
|
2032
2061
|
props: {
|
|
2033
2062
|
modelValue: { default: null },
|
|
@@ -2210,10 +2239,10 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2210
2239
|
width: e.width,
|
|
2211
2240
|
height: e.height
|
|
2212
2241
|
};
|
|
2213
|
-
},
|
|
2242
|
+
}, je = (s, o) => {
|
|
2214
2243
|
var a;
|
|
2215
2244
|
return (a = s.middleware) == null ? void 0 : a.find((e) => e.name === o);
|
|
2216
|
-
}, yt = (s, o) => !!
|
|
2245
|
+
}, yt = (s, o) => !!je(s, o), yo = (s) => {
|
|
2217
2246
|
const o = Ee(s);
|
|
2218
2247
|
let a = "";
|
|
2219
2248
|
return o !== null && ((o.dataset.scrollTop === void 0 || o.scrollTop === +o.dataset.scrollTop) && (o.dataset.scrollTop = "0"), (o.dataset.scrollLeft === void 0 || o.scrollLeft === +o.dataset.scrollLeft) && (o.dataset.scrollLeft = "0"), o.scrollTop > +o.dataset.scrollTop ? a = "bottom" : o.scrollTop < +o.dataset.scrollTop ? a = "top" : o.scrollLeft > +o.dataset.scrollLeft ? a = "right" : o.scrollLeft < +o.dataset.scrollLeft && (a = "left"), o.dataset.scrollTop = o.scrollTop <= 0 ? "0" : o.scrollTop.toString(), o.dataset.scrollLeft = o.scrollLeft <= 0 ? "0" : o.scrollLeft.toString()), a;
|
|
@@ -2264,7 +2293,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2264
2293
|
reference: i,
|
|
2265
2294
|
scrollDirection: n
|
|
2266
2295
|
}) => {
|
|
2267
|
-
const d = at(i, e, t, s), r =
|
|
2296
|
+
const d = at(i, e, t, s), r = je(s, "offset");
|
|
2268
2297
|
if (r) {
|
|
2269
2298
|
const u = r.fn({
|
|
2270
2299
|
x: d.x,
|
|
@@ -2350,7 +2379,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2350
2379
|
const V = Je($), w = M[V];
|
|
2351
2380
|
w > C && (C = w, h = V);
|
|
2352
2381
|
});
|
|
2353
|
-
const I = Ro(h, d, y), O = at(r, n, I, m), P =
|
|
2382
|
+
const I = Ro(h, d, y), O = at(r, n, I, m), P = je(m, "offset");
|
|
2354
2383
|
if (P) {
|
|
2355
2384
|
const $ = P.fn({
|
|
2356
2385
|
x: O.x,
|
|
@@ -2373,7 +2402,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2373
2402
|
var i, n, d;
|
|
2374
2403
|
let r = 0;
|
|
2375
2404
|
e.startsWith("right") ? r = -s : e.startsWith("left") && (r = s);
|
|
2376
|
-
const u =
|
|
2405
|
+
const u = je(o, "arrow"), c = je(o, "shift");
|
|
2377
2406
|
if (u) {
|
|
2378
2407
|
const f = ((i = u.params) == null ? void 0 : i.arrow).getBoundingClientRect();
|
|
2379
2408
|
e.startsWith("right") ? r -= f.width / 2 : e.startsWith("left") && (r += f.width / 2);
|
|
@@ -2389,7 +2418,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2389
2418
|
var i, n, d;
|
|
2390
2419
|
let r = 0;
|
|
2391
2420
|
e.startsWith("top") ? r = s : e.startsWith("bottom") && (r = -s);
|
|
2392
|
-
const u =
|
|
2421
|
+
const u = je(o, "arrow"), c = je(o, "shift");
|
|
2393
2422
|
if (u) {
|
|
2394
2423
|
const f = ((i = u.params) == null ? void 0 : i.arrow).getBoundingClientRect();
|
|
2395
2424
|
e.startsWith("top") ? r += f.height / 2 : e.startsWith("bottom") && (r -= f.height / 2);
|
|
@@ -2446,8 +2475,8 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2446
2475
|
}
|
|
2447
2476
|
const V = Ee(n);
|
|
2448
2477
|
if (V !== null) {
|
|
2449
|
-
const w = Fe(r, n, e), R = w.left, D = w.left + w.width, z = w.top, F = w.top + w.height, A = V.scrollLeft + P, q = et(V) - n.clientWidth - P, L = q < A ? A : q, W = V.scrollTop + $, b = tt(V) - n.clientHeight - $, E = b < W ? W : b, K = V.scrollLeft, H = et(V), T = V.scrollTop,
|
|
2450
|
-
D <= K ? C = A : R >= H && (C = L), F <= T ? I = W : z >=
|
|
2478
|
+
const w = Fe(r, n, e), R = w.left, D = w.left + w.width, z = w.top, F = w.top + w.height, A = V.scrollLeft + P, q = et(V) - n.clientWidth - P, L = q < A ? A : q, W = V.scrollTop + $, b = tt(V) - n.clientHeight - $, E = b < W ? W : b, K = V.scrollLeft, H = et(V), T = V.scrollTop, Y = tt(V);
|
|
2479
|
+
D <= K ? C = A : R >= H && (C = L), F <= T ? I = W : z >= Y && (I = E), I < W ? I = W : I > E && (I = E), C < A ? C = A : C > L && (C = L);
|
|
2451
2480
|
}
|
|
2452
2481
|
if (l ? (c.x = o + (C - S), c.y = a + (I - h)) : (c.x = C, c.y = I), V !== null) {
|
|
2453
2482
|
const w = V.scrollLeft + P, R = et(V) - n.clientWidth - P, D = V.scrollTop + $, z = tt(V) - n.clientHeight - $, F = l ? w + B : w, A = l ? R + B : R, q = l ? D + M : D, L = l ? z + M : z;
|
|
@@ -2649,7 +2678,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2649
2678
|
});
|
|
2650
2679
|
d.x = _.x, d.y = _.y, d.placement = _.placement, k.name === "arrow" && (_.baseX = _.x, _.baseY = _.y, _.x = _.arrowX ?? _.x, _.y = _.arrowY ?? _.y), d.middlewareData[k.name] = _;
|
|
2651
2680
|
});
|
|
2652
|
-
const m = at(s, o, d.placement, a), y =
|
|
2681
|
+
const m = at(s, o, d.placement, a), y = je(a, "offset"), l = y ? (i = y.params) == null ? void 0 : i.value : 0;
|
|
2653
2682
|
if (Number.isFinite(d.x) || (d.x = m.x), !Number.isFinite(d.y))
|
|
2654
2683
|
if (Ke(a, o)) {
|
|
2655
2684
|
const k = s.getBoundingClientRect(), _ = o.getBoundingClientRect().height;
|
|
@@ -2657,7 +2686,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2657
2686
|
} else
|
|
2658
2687
|
d.y = m.y;
|
|
2659
2688
|
e(d);
|
|
2660
|
-
}), Po = ["disabled", "aria-expanded", "onKeydown"], Oo = ["data-placement"], Eo = ["disabled", "aria-selected", "onClick"],
|
|
2689
|
+
}), Po = ["disabled", "aria-expanded", "onKeydown"], Oo = ["data-placement"], Eo = ["disabled", "aria-selected", "onClick"], yc = /* @__PURE__ */ oe({
|
|
2661
2690
|
__name: "select",
|
|
2662
2691
|
props: {
|
|
2663
2692
|
modelValue: { default: void 0 },
|
|
@@ -2804,7 +2833,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2804
2833
|
}, No = ["id", "disabled", "aria-selected", "onClick"], Go = {
|
|
2805
2834
|
key: 2,
|
|
2806
2835
|
class: "vf-autocomplete__empty"
|
|
2807
|
-
},
|
|
2836
|
+
}, _c = /* @__PURE__ */ oe({
|
|
2808
2837
|
__name: "autocomplete",
|
|
2809
2838
|
props: {
|
|
2810
2839
|
modelValue: { default: void 0 },
|
|
@@ -2917,13 +2946,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
2917
2946
|
await K();
|
|
2918
2947
|
}, T = De(b, () => {
|
|
2919
2948
|
H();
|
|
2920
|
-
}),
|
|
2949
|
+
}), Y = () => {
|
|
2921
2950
|
H();
|
|
2922
2951
|
};
|
|
2923
|
-
document.addEventListener("scroll",
|
|
2952
|
+
document.addEventListener("scroll", Y, !0), window.addEventListener("resize", Y, !1), l = {
|
|
2924
2953
|
update: H,
|
|
2925
2954
|
destroy: () => {
|
|
2926
|
-
T(), document.removeEventListener("scroll",
|
|
2955
|
+
T(), document.removeEventListener("scroll", Y, !0), window.removeEventListener("resize", Y, !1);
|
|
2927
2956
|
}
|
|
2928
2957
|
}, l.update();
|
|
2929
2958
|
};
|
|
@@ -3025,13 +3054,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3025
3054
|
]))
|
|
3026
3055
|
], 2));
|
|
3027
3056
|
}
|
|
3028
|
-
}),
|
|
3057
|
+
}), jo = ["value", "placeholder", "disabled", "readonly", "aria-expanded", "aria-activedescendant", "onKeydown"], Yo = ["disabled"], Xo = ["data-placement"], Uo = {
|
|
3029
3058
|
key: 0,
|
|
3030
3059
|
class: "vf-combobox__loading"
|
|
3031
3060
|
}, qo = ["id", "disabled", "aria-selected", "onClick"], Qo = {
|
|
3032
3061
|
key: 2,
|
|
3033
3062
|
class: "vf-combobox__empty"
|
|
3034
|
-
},
|
|
3063
|
+
}, kc = /* @__PURE__ */ oe({
|
|
3035
3064
|
__name: "combobox",
|
|
3036
3065
|
props: {
|
|
3037
3066
|
modelValue: { default: void 0 },
|
|
@@ -3128,7 +3157,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3128
3157
|
return;
|
|
3129
3158
|
}
|
|
3130
3159
|
R(-1);
|
|
3131
|
-
},
|
|
3160
|
+
}, Y = () => {
|
|
3132
3161
|
if (!r.value) {
|
|
3133
3162
|
D();
|
|
3134
3163
|
return;
|
|
@@ -3231,11 +3260,11 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3231
3260
|
onKeydown: [
|
|
3232
3261
|
ce(re(H, ["prevent"]), ["down"]),
|
|
3233
3262
|
ce(re(T, ["prevent"]), ["up"]),
|
|
3234
|
-
ce(re(
|
|
3263
|
+
ce(re(Y, ["prevent"]), ["enter"]),
|
|
3235
3264
|
ce(re(z, ["prevent"]), ["esc"]),
|
|
3236
3265
|
ce(z, ["tab"])
|
|
3237
3266
|
]
|
|
3238
|
-
}, null, 40,
|
|
3267
|
+
}, null, 40, jo),
|
|
3239
3268
|
U.clearable && u.value.length > 0 && !U.disabled && !U.readonly ? (v(), g("button", {
|
|
3240
3269
|
key: 0,
|
|
3241
3270
|
class: "vf-combobox__clear",
|
|
@@ -3254,7 +3283,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3254
3283
|
onMousedown: X[1] || (X[1] = re(() => {
|
|
3255
3284
|
}, ["prevent"])),
|
|
3256
3285
|
onClick: F
|
|
3257
|
-
}, " ▾ ", 40,
|
|
3286
|
+
}, " ▾ ", 40, Yo),
|
|
3258
3287
|
(v(), pe(Ve, { to: "body" }, [
|
|
3259
3288
|
Ce(x("div", {
|
|
3260
3289
|
id: y,
|
|
@@ -3299,7 +3328,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3299
3328
|
}, nr = {
|
|
3300
3329
|
key: 3,
|
|
3301
3330
|
class: "vf-multiselect__empty"
|
|
3302
|
-
},
|
|
3331
|
+
}, Cc = /* @__PURE__ */ oe({
|
|
3303
3332
|
__name: "multi-select",
|
|
3304
3333
|
props: {
|
|
3305
3334
|
modelValue: { default: () => [] },
|
|
@@ -3331,7 +3360,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3331
3360
|
if (!t.filter)
|
|
3332
3361
|
return _.value;
|
|
3333
3362
|
const T = c.value.trim().toLowerCase();
|
|
3334
|
-
return T ? _.value.filter((
|
|
3363
|
+
return T ? _.value.filter((Y) => Y.label.toLowerCase().includes(T)) : _.value;
|
|
3335
3364
|
}), S = p(() => _.value.filter((T) => B.value.includes(T.value))), h = p(() => S.value.length === 0 ? t.placeholder : S.value.map((T) => T.label).join(", ")), C = p(() => {
|
|
3336
3365
|
const T = ["vf-multiselect", `vf-multiselect_${t.variant}`, u.value ? "vf-multiselect_open" : ""];
|
|
3337
3366
|
return t.size !== "normal" && T.push(`vf-multiselect_${t.size}`), t.disabled && T.push("vf-multiselect_disabled"), T.filter(Boolean);
|
|
@@ -3340,7 +3369,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3340
3369
|
}, V = (T) => {
|
|
3341
3370
|
if (!(T.disabled || t.readonly)) {
|
|
3342
3371
|
if (P(T)) {
|
|
3343
|
-
$(B.value.filter((
|
|
3372
|
+
$(B.value.filter((Y) => Y !== T.value));
|
|
3344
3373
|
return;
|
|
3345
3374
|
}
|
|
3346
3375
|
$([...B.value, T.value]);
|
|
@@ -3348,15 +3377,15 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3348
3377
|
}, w = () => {
|
|
3349
3378
|
t.readonly || $([]);
|
|
3350
3379
|
}, R = (T) => {
|
|
3351
|
-
const
|
|
3352
|
-
if (!
|
|
3380
|
+
const Y = M.value;
|
|
3381
|
+
if (!Y.length) {
|
|
3353
3382
|
f.value = -1;
|
|
3354
3383
|
return;
|
|
3355
3384
|
}
|
|
3356
3385
|
let ee = f.value;
|
|
3357
|
-
(ee < 0 || ee >=
|
|
3358
|
-
for (let le = 0; le <
|
|
3359
|
-
if (ee = (ee + T +
|
|
3386
|
+
(ee < 0 || ee >= Y.length) && (ee = T > 0 ? -1 : Y.length);
|
|
3387
|
+
for (let le = 0; le < Y.length; le += 1)
|
|
3388
|
+
if (ee = (ee + T + Y.length) % Y.length, !Y[ee].disabled) {
|
|
3360
3389
|
f.value = ee;
|
|
3361
3390
|
return;
|
|
3362
3391
|
}
|
|
@@ -3392,28 +3421,28 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3392
3421
|
const T = M.value[f.value];
|
|
3393
3422
|
T && !T.disabled && V(T);
|
|
3394
3423
|
}, W = (T) => {
|
|
3395
|
-
const
|
|
3396
|
-
c.value =
|
|
3424
|
+
const Y = T.target;
|
|
3425
|
+
c.value = Y.value, e("search", Y.value), f.value = O();
|
|
3397
3426
|
}, b = (T) => e("focus", T), E = (T) => e("blur", T), K = (T) => {
|
|
3398
3427
|
var ee;
|
|
3399
3428
|
if (!u.value || !i.value)
|
|
3400
3429
|
return;
|
|
3401
|
-
const
|
|
3402
|
-
i.value.contains(
|
|
3430
|
+
const Y = T.target;
|
|
3431
|
+
i.value.contains(Y) || (ee = d.value) != null && ee.contains(Y) || z();
|
|
3403
3432
|
}, H = () => {
|
|
3404
3433
|
if (!n.value || !d.value)
|
|
3405
3434
|
return;
|
|
3406
|
-
const T = n.value,
|
|
3435
|
+
const T = n.value, Y = d.value, ee = async () => {
|
|
3407
3436
|
const {
|
|
3408
3437
|
x: ae,
|
|
3409
3438
|
y: ne,
|
|
3410
3439
|
placement: ge
|
|
3411
|
-
} = await Re(T,
|
|
3440
|
+
} = await Re(T, Y, {
|
|
3412
3441
|
placement: m.value,
|
|
3413
3442
|
strategy: "fixed",
|
|
3414
3443
|
middleware: [Ie(2), Te({ placements: ["bottom", "top"] })]
|
|
3415
3444
|
});
|
|
3416
|
-
y.value = ge ?? m.value,
|
|
3445
|
+
y.value = ge ?? m.value, Y.style.minWidth = `${T.getBoundingClientRect().width}px`, Y.style.left = `${ae}px`, Y.style.top = `${ne}px`;
|
|
3417
3446
|
}, le = async () => {
|
|
3418
3447
|
await ee();
|
|
3419
3448
|
}, U = De(T, () => {
|
|
@@ -3446,7 +3475,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3446
3475
|
document.addEventListener("click", K);
|
|
3447
3476
|
}), ke(() => {
|
|
3448
3477
|
document.removeEventListener("click", K), k == null || k.destroy(), k = null;
|
|
3449
|
-
}), (T,
|
|
3478
|
+
}), (T, Y) => (v(), g("div", {
|
|
3450
3479
|
ref_key: "root",
|
|
3451
3480
|
ref: i,
|
|
3452
3481
|
class: Z(C.value)
|
|
@@ -3473,7 +3502,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3473
3502
|
x("span", {
|
|
3474
3503
|
class: Z(["vf-multiselect__label", { "vf-multiselect__label_placeholder": B.value.length === 0 }])
|
|
3475
3504
|
}, G(h.value), 3),
|
|
3476
|
-
|
|
3505
|
+
Y[0] || (Y[0] = x("span", {
|
|
3477
3506
|
class: "vf-multiselect__chevron",
|
|
3478
3507
|
"aria-hidden": "true"
|
|
3479
3508
|
}, "▾", -1))
|
|
@@ -3541,7 +3570,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3541
3570
|
}, pr = ["id", "disabled", "onClick"], mr = {
|
|
3542
3571
|
key: 2,
|
|
3543
3572
|
class: "vf-tag-input__empty"
|
|
3544
|
-
},
|
|
3573
|
+
}, $c = /* @__PURE__ */ oe({
|
|
3545
3574
|
__name: "tag-input",
|
|
3546
3575
|
props: {
|
|
3547
3576
|
modelValue: { default: () => [] },
|
|
@@ -3641,7 +3670,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3641
3670
|
e("focus", J), L();
|
|
3642
3671
|
}, T = (J) => {
|
|
3643
3672
|
e("blur", J);
|
|
3644
|
-
},
|
|
3673
|
+
}, Y = () => {
|
|
3645
3674
|
if (!u.value) {
|
|
3646
3675
|
L();
|
|
3647
3676
|
return;
|
|
@@ -3758,7 +3787,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3758
3787
|
onFocus: H,
|
|
3759
3788
|
onBlur: T,
|
|
3760
3789
|
onKeydown: [
|
|
3761
|
-
ce(re(
|
|
3790
|
+
ce(re(Y, ["prevent"]), ["down"]),
|
|
3762
3791
|
ce(re(ee, ["prevent"]), ["up"]),
|
|
3763
3792
|
ce(re(le, ["prevent"]), ["enter"]),
|
|
3764
3793
|
ce(re(W, ["prevent"]), ["esc"]),
|
|
@@ -3820,7 +3849,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3820
3849
|
}, kr = {
|
|
3821
3850
|
class: "vf-datepicker__days",
|
|
3822
3851
|
role: "grid"
|
|
3823
|
-
}, Cr = ["disabled", "data-date", "onClick"],
|
|
3852
|
+
}, Cr = ["disabled", "data-date", "onClick"], wc = /* @__PURE__ */ oe({
|
|
3824
3853
|
__name: "datepicker",
|
|
3825
3854
|
props: {
|
|
3826
3855
|
modelValue: { default: void 0 },
|
|
@@ -3847,13 +3876,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3847
3876
|
year: "numeric",
|
|
3848
3877
|
month: "long"
|
|
3849
3878
|
})), S = p(() => {
|
|
3850
|
-
const T = new Intl.DateTimeFormat(t.locale, { weekday: "short" }),
|
|
3879
|
+
const T = new Intl.DateTimeFormat(t.locale, { weekday: "short" }), Y = new Date(2026, 0, 4);
|
|
3851
3880
|
return Array.from({ length: 7 }, (ee, le) => {
|
|
3852
|
-
const U = (le + t.firstDayOfWeek) % 7, X = new Date(
|
|
3853
|
-
return X.setDate(
|
|
3881
|
+
const U = (le + t.firstDayOfWeek) % 7, X = new Date(Y);
|
|
3882
|
+
return X.setDate(Y.getDate() + U), T.format(X);
|
|
3854
3883
|
});
|
|
3855
3884
|
}), h = p(() => {
|
|
3856
|
-
const T = E(m.value, t.firstDayOfWeek),
|
|
3885
|
+
const T = E(m.value, t.firstDayOfWeek), Y = l.value ? K(l.value) : null, ee = K(/* @__PURE__ */ new Date());
|
|
3857
3886
|
return Array.from({ length: 42 }, (le, U) => {
|
|
3858
3887
|
const X = b(T, U), ae = K(X);
|
|
3859
3888
|
return {
|
|
@@ -3863,7 +3892,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3863
3892
|
day: X.getDate(),
|
|
3864
3893
|
inCurrentMonth: X.getMonth() === m.value.getMonth(),
|
|
3865
3894
|
isDisabled: H(X, k.value, _.value),
|
|
3866
|
-
isSelected:
|
|
3895
|
+
isSelected: Y === ae,
|
|
3867
3896
|
isToday: ae === ee
|
|
3868
3897
|
};
|
|
3869
3898
|
});
|
|
@@ -3887,28 +3916,28 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3887
3916
|
}, D = (T) => {
|
|
3888
3917
|
if (t.readonly || H(T, k.value, _.value))
|
|
3889
3918
|
return;
|
|
3890
|
-
const
|
|
3891
|
-
e("update:modelValue",
|
|
3919
|
+
const Y = K(T);
|
|
3920
|
+
e("update:modelValue", Y), e("change", Y), $();
|
|
3892
3921
|
}, z = (T) => {
|
|
3893
3922
|
var ee;
|
|
3894
3923
|
if (!r.value || !i.value)
|
|
3895
3924
|
return;
|
|
3896
|
-
const
|
|
3897
|
-
i.value.contains(
|
|
3925
|
+
const Y = T.target;
|
|
3926
|
+
i.value.contains(Y) || (ee = d.value) != null && ee.contains(Y) || $();
|
|
3898
3927
|
}, F = () => {
|
|
3899
3928
|
if (!n.value || !d.value)
|
|
3900
3929
|
return;
|
|
3901
|
-
const T = n.value,
|
|
3930
|
+
const T = n.value, Y = d.value, ee = async () => {
|
|
3902
3931
|
const {
|
|
3903
3932
|
x: ae,
|
|
3904
3933
|
y: ne,
|
|
3905
3934
|
placement: ge
|
|
3906
|
-
} = await Re(T,
|
|
3935
|
+
} = await Re(T, Y, {
|
|
3907
3936
|
placement: u.value,
|
|
3908
3937
|
strategy: "fixed",
|
|
3909
3938
|
middleware: [Ie(2), Te({ placements: ["bottom", "top"] })]
|
|
3910
3939
|
});
|
|
3911
|
-
c.value = ge ?? u.value,
|
|
3940
|
+
c.value = ge ?? u.value, Y.style.left = `${ae}px`, Y.style.top = `${ne}px`;
|
|
3912
3941
|
}, le = async () => {
|
|
3913
3942
|
await ee();
|
|
3914
3943
|
}, U = De(T, () => {
|
|
@@ -3926,8 +3955,8 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3926
3955
|
ie(
|
|
3927
3956
|
() => t.modelValue,
|
|
3928
3957
|
(T) => {
|
|
3929
|
-
const
|
|
3930
|
-
|
|
3958
|
+
const Y = A(T);
|
|
3959
|
+
Y && (m.value = L(Y));
|
|
3931
3960
|
},
|
|
3932
3961
|
{ immediate: !0 }
|
|
3933
3962
|
), ie(
|
|
@@ -3949,10 +3978,10 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3949
3978
|
function A(T) {
|
|
3950
3979
|
if (!T)
|
|
3951
3980
|
return null;
|
|
3952
|
-
const
|
|
3953
|
-
if (!
|
|
3981
|
+
const Y = T.match(/^(\d{4})-(\d{2})-(\d{2})$/);
|
|
3982
|
+
if (!Y)
|
|
3954
3983
|
return null;
|
|
3955
|
-
const ee = Number(
|
|
3984
|
+
const ee = Number(Y[1]), le = Number(Y[2]) - 1, U = Number(Y[3]), X = new Date(ee, le, U);
|
|
3956
3985
|
return X.getFullYear() !== ee || X.getMonth() !== le || X.getDate() !== U ? null : q(X);
|
|
3957
3986
|
}
|
|
3958
3987
|
function q(T) {
|
|
@@ -3961,25 +3990,25 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
3961
3990
|
function L(T) {
|
|
3962
3991
|
return new Date(T.getFullYear(), T.getMonth(), 1);
|
|
3963
3992
|
}
|
|
3964
|
-
function W(T,
|
|
3965
|
-
return new Date(T.getFullYear(), T.getMonth() +
|
|
3993
|
+
function W(T, Y) {
|
|
3994
|
+
return new Date(T.getFullYear(), T.getMonth() + Y, 1);
|
|
3966
3995
|
}
|
|
3967
|
-
function b(T,
|
|
3968
|
-
return new Date(T.getFullYear(), T.getMonth(), T.getDate() +
|
|
3996
|
+
function b(T, Y) {
|
|
3997
|
+
return new Date(T.getFullYear(), T.getMonth(), T.getDate() + Y);
|
|
3969
3998
|
}
|
|
3970
|
-
function E(T,
|
|
3971
|
-
const ee = L(T), U = (ee.getDay() -
|
|
3999
|
+
function E(T, Y) {
|
|
4000
|
+
const ee = L(T), U = (ee.getDay() - Y + 7) % 7;
|
|
3972
4001
|
return b(ee, -U);
|
|
3973
4002
|
}
|
|
3974
4003
|
function K(T) {
|
|
3975
|
-
const
|
|
3976
|
-
return `${
|
|
4004
|
+
const Y = T.getFullYear(), ee = `${T.getMonth() + 1}`.padStart(2, "0"), le = `${T.getDate()}`.padStart(2, "0");
|
|
4005
|
+
return `${Y}-${ee}-${le}`;
|
|
3977
4006
|
}
|
|
3978
|
-
function H(T,
|
|
4007
|
+
function H(T, Y, ee) {
|
|
3979
4008
|
const le = q(T).getTime();
|
|
3980
|
-
return !!(
|
|
4009
|
+
return !!(Y && le < Y.getTime() || ee && le > ee.getTime());
|
|
3981
4010
|
}
|
|
3982
|
-
return (T,
|
|
4011
|
+
return (T, Y) => (v(), g("div", {
|
|
3983
4012
|
ref_key: "root",
|
|
3984
4013
|
ref: i,
|
|
3985
4014
|
class: Z(C.value)
|
|
@@ -4005,7 +4034,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4005
4034
|
x("span", {
|
|
4006
4035
|
class: Z(["vf-datepicker__label", { "vf-datepicker__label_placeholder": !l.value }])
|
|
4007
4036
|
}, G(B.value || T.placeholder), 3),
|
|
4008
|
-
|
|
4037
|
+
Y[0] || (Y[0] = x("span", {
|
|
4009
4038
|
class: "vf-datepicker__chevron",
|
|
4010
4039
|
"aria-hidden": "true"
|
|
4011
4040
|
}, "▾", -1))
|
|
@@ -4067,7 +4096,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4067
4096
|
}, xr = {
|
|
4068
4097
|
class: "vf-daterangepicker__days",
|
|
4069
4098
|
role: "grid"
|
|
4070
|
-
}, Vr = ["disabled", "data-date", "onClick"],
|
|
4099
|
+
}, Vr = ["disabled", "data-date", "onClick"], zc = /* @__PURE__ */ oe({
|
|
4071
4100
|
__name: "date-range-picker",
|
|
4072
4101
|
props: {
|
|
4073
4102
|
modelValue: { default: null },
|
|
@@ -4110,7 +4139,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4110
4139
|
}), O = p(() => {
|
|
4111
4140
|
const X = ee(m.value, t.firstDayOfWeek), ae = le(/* @__PURE__ */ new Date()), ne = B.value ? K(B.value).getTime() : null, ge = M.value ? K(M.value).getTime() : null, J = B.value ? le(B.value) : null, ve = M.value ? le(M.value) : null;
|
|
4112
4141
|
return Array.from({ length: 42 }, (be, we) => {
|
|
4113
|
-
const Se =
|
|
4142
|
+
const Se = Y(X, we), te = le(Se), se = K(Se).getTime(), de = ne !== null && ge !== null ? se >= ne && se <= ge : !1, he = J === te, Be = ve === te;
|
|
4114
4143
|
return {
|
|
4115
4144
|
key: `${te}-${we}`,
|
|
4116
4145
|
iso: te,
|
|
@@ -4240,12 +4269,12 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4240
4269
|
function T(X, ae) {
|
|
4241
4270
|
return new Date(X.getFullYear(), X.getMonth() + ae, 1);
|
|
4242
4271
|
}
|
|
4243
|
-
function
|
|
4272
|
+
function Y(X, ae) {
|
|
4244
4273
|
return new Date(X.getFullYear(), X.getMonth(), X.getDate() + ae);
|
|
4245
4274
|
}
|
|
4246
4275
|
function ee(X, ae) {
|
|
4247
4276
|
const ne = H(X), J = (ne.getDay() - ae + 7) % 7;
|
|
4248
|
-
return
|
|
4277
|
+
return Y(ne, -J);
|
|
4249
4278
|
}
|
|
4250
4279
|
function le(X) {
|
|
4251
4280
|
const ae = X.getFullYear(), ne = `${X.getMonth() + 1}`.padStart(2, "0"), ge = `${X.getDate()}`.padStart(2, "0");
|
|
@@ -4340,7 +4369,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4340
4369
|
]))
|
|
4341
4370
|
], 2));
|
|
4342
4371
|
}
|
|
4343
|
-
}), Lr = ["disabled", "aria-expanded", "onKeydown"], Fr = ["data-placement"], Tr = ["data-time", "disabled", "aria-selected", "onClick"],
|
|
4372
|
+
}), Lr = ["disabled", "aria-expanded", "onKeydown"], Fr = ["data-placement"], Tr = ["data-time", "disabled", "aria-selected", "onClick"], Sc = /* @__PURE__ */ oe({
|
|
4344
4373
|
__name: "timepicker",
|
|
4345
4374
|
props: {
|
|
4346
4375
|
modelValue: { default: void 0 },
|
|
@@ -4405,7 +4434,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4405
4434
|
const L = n.value, W = d.value, b = async () => {
|
|
4406
4435
|
const {
|
|
4407
4436
|
x: T,
|
|
4408
|
-
y:
|
|
4437
|
+
y: Y,
|
|
4409
4438
|
placement: ee
|
|
4410
4439
|
} = await Re(L, W, {
|
|
4411
4440
|
placement: u.value,
|
|
@@ -4414,7 +4443,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4414
4443
|
});
|
|
4415
4444
|
c.value = ee ?? u.value;
|
|
4416
4445
|
const le = L.getBoundingClientRect().width;
|
|
4417
|
-
W.style.minWidth = `${le}px`, W.style.width = `${le}px`, W.style.left = `${T}px`, W.style.top = `${
|
|
4446
|
+
W.style.minWidth = `${le}px`, W.style.width = `${le}px`, W.style.left = `${T}px`, W.style.top = `${Y}px`;
|
|
4418
4447
|
}, E = async () => {
|
|
4419
4448
|
await b();
|
|
4420
4449
|
}, K = De(L, () => {
|
|
@@ -4538,7 +4567,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4538
4567
|
}, Ar = ["disabled", "data-date", "onClick"], Hr = {
|
|
4539
4568
|
class: "vf-datetimepicker__times",
|
|
4540
4569
|
role: "listbox"
|
|
4541
|
-
}, Wr = ["data-time", "disabled", "aria-selected", "onClick"],
|
|
4570
|
+
}, Wr = ["data-time", "disabled", "aria-selected", "onClick"], Bc = /* @__PURE__ */ oe({
|
|
4542
4571
|
__name: "datetimepicker",
|
|
4543
4572
|
props: {
|
|
4544
4573
|
modelValue: { default: void 0 },
|
|
@@ -4715,7 +4744,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4715
4744
|
const de = Number(se[1]), he = Number(se[2]) - 1, Be = Number(se[3]), xe = new Date(de, he, Be);
|
|
4716
4745
|
return xe.getFullYear() !== de || xe.getMonth() !== he || xe.getDate() !== Be ? null : le(xe);
|
|
4717
4746
|
}
|
|
4718
|
-
function
|
|
4747
|
+
function Y(te) {
|
|
4719
4748
|
if (!te)
|
|
4720
4749
|
return null;
|
|
4721
4750
|
const se = te.match(/^(\d{2}):(\d{2})$/);
|
|
@@ -4730,7 +4759,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4730
4759
|
const se = te.match(/^(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2})$/);
|
|
4731
4760
|
if (!se)
|
|
4732
4761
|
return null;
|
|
4733
|
-
const de = T(se[1]), he =
|
|
4762
|
+
const de = T(se[1]), he = Y(se[2]);
|
|
4734
4763
|
return !de || he === null ? null : { date: de, minutes: he };
|
|
4735
4764
|
}
|
|
4736
4765
|
function le(te) {
|
|
@@ -4873,13 +4902,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4873
4902
|
]))
|
|
4874
4903
|
], 2));
|
|
4875
4904
|
}
|
|
4876
|
-
}), Kr = { class: "vf-calendar__header" }, Nr = ["disabled"], Gr = { class: "vf-calendar__month-label" },
|
|
4905
|
+
}), Kr = { class: "vf-calendar__header" }, Nr = ["disabled"], Gr = { class: "vf-calendar__month-label" }, jr = ["disabled"], Yr = {
|
|
4877
4906
|
class: "vf-calendar__weekdays",
|
|
4878
4907
|
role: "row"
|
|
4879
4908
|
}, Xr = {
|
|
4880
4909
|
class: "vf-calendar__days",
|
|
4881
4910
|
role: "grid"
|
|
4882
|
-
}, Ur = ["disabled", "data-date", "onClick"],
|
|
4911
|
+
}, Ur = ["disabled", "data-date", "onClick"], xc = /* @__PURE__ */ oe({
|
|
4883
4912
|
__name: "calendar",
|
|
4884
4913
|
props: {
|
|
4885
4914
|
modelValue: { default: void 0 },
|
|
@@ -4990,9 +5019,9 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
4990
5019
|
"aria-label": "Next month",
|
|
4991
5020
|
disabled: O.disabled,
|
|
4992
5021
|
onClick: y
|
|
4993
|
-
}, " › ", 8,
|
|
5022
|
+
}, " › ", 8, jr)
|
|
4994
5023
|
]),
|
|
4995
|
-
x("div",
|
|
5024
|
+
x("div", Yr, [
|
|
4996
5025
|
(v(!0), g(ue, null, me(u.value, ($) => (v(), g("span", {
|
|
4997
5026
|
key: $,
|
|
4998
5027
|
class: "vf-calendar__weekday"
|
|
@@ -5014,7 +5043,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5014
5043
|
])
|
|
5015
5044
|
], 2));
|
|
5016
5045
|
}
|
|
5017
|
-
}), qr = ["disabled"], Qr = ["disabled", "aria-current", "aria-label", "onClick"], Zr = ["disabled"],
|
|
5046
|
+
}), qr = ["disabled"], Qr = ["disabled", "aria-current", "aria-label", "onClick"], Zr = ["disabled"], Vc = /* @__PURE__ */ oe({
|
|
5018
5047
|
__name: "pagination",
|
|
5019
5048
|
props: {
|
|
5020
5049
|
modelValue: { default: 1 },
|
|
@@ -5108,7 +5137,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5108
5137
|
}), Jr = ["checked", "disabled"], el = {
|
|
5109
5138
|
key: 0,
|
|
5110
5139
|
class: "vf-checkbox__label"
|
|
5111
|
-
},
|
|
5140
|
+
}, Lc = /* @__PURE__ */ oe({
|
|
5112
5141
|
__name: "checkbox",
|
|
5113
5142
|
props: {
|
|
5114
5143
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -5137,13 +5166,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5137
5166
|
}, null, 40, Jr),
|
|
5138
5167
|
d[0] || (d[0] = x("span", { class: "vf-checkbox__box" }, null, -1)),
|
|
5139
5168
|
n.label || n.$slots.default ? (v(), g("span", el, [
|
|
5140
|
-
|
|
5169
|
+
j(n.$slots, "default", {}, () => [
|
|
5141
5170
|
fe(G(n.label), 1)
|
|
5142
5171
|
])
|
|
5143
5172
|
])) : Q("", !0)
|
|
5144
5173
|
], 2));
|
|
5145
5174
|
}
|
|
5146
|
-
}), $t = Symbol("VueForgeRadioGroup"), tl = ["aria-disabled", "aria-label", "aria-labelledby"],
|
|
5175
|
+
}), $t = Symbol("VueForgeRadioGroup"), tl = ["aria-disabled", "aria-label", "aria-labelledby"], Fc = /* @__PURE__ */ oe({
|
|
5147
5176
|
__name: "radio-group",
|
|
5148
5177
|
props: {
|
|
5149
5178
|
modelValue: { type: [String, Number, Boolean, null], default: void 0 },
|
|
@@ -5175,13 +5204,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5175
5204
|
"aria-label": d.ariaLabel || void 0,
|
|
5176
5205
|
"aria-labelledby": d.ariaLabelledby || void 0
|
|
5177
5206
|
}, [
|
|
5178
|
-
|
|
5207
|
+
j(d.$slots, "default")
|
|
5179
5208
|
], 10, tl));
|
|
5180
5209
|
}
|
|
5181
5210
|
}), al = ["name", "value", "checked", "disabled"], ol = {
|
|
5182
5211
|
key: 0,
|
|
5183
5212
|
class: "vf-radio__label"
|
|
5184
|
-
},
|
|
5213
|
+
}, Tc = /* @__PURE__ */ oe({
|
|
5185
5214
|
__name: "radio-button",
|
|
5186
5215
|
props: {
|
|
5187
5216
|
modelValue: { type: [String, Number, Boolean, null], default: void 0 },
|
|
@@ -5193,7 +5222,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5193
5222
|
},
|
|
5194
5223
|
emits: ["update:modelValue", "change"],
|
|
5195
5224
|
setup(s, { emit: o }) {
|
|
5196
|
-
const a = o, e = s, t =
|
|
5225
|
+
const a = o, e = s, t = Xe($t, null), i = p(() => t ? t.modelValue.value : e.modelValue), n = p(() => t ? t.name.value : e.name), d = p(() => t ? t.variant.value : e.variant), r = p(() => (t ? t.disabled.value : !1) || e.disabled), u = p(() => i.value === e.value), c = p(() => {
|
|
5197
5226
|
const m = ["vf-radio", `vf-radio_${d.value}`];
|
|
5198
5227
|
return r.value && m.push("vf-radio_disabled"), m;
|
|
5199
5228
|
}), f = (m) => {
|
|
@@ -5213,13 +5242,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5213
5242
|
}, null, 40, al),
|
|
5214
5243
|
y[0] || (y[0] = x("span", { class: "vf-radio__circle" }, null, -1)),
|
|
5215
5244
|
m.label || m.$slots.default ? (v(), g("span", ol, [
|
|
5216
|
-
|
|
5245
|
+
j(m.$slots, "default", {}, () => [
|
|
5217
5246
|
fe(G(m.label), 1)
|
|
5218
5247
|
])
|
|
5219
5248
|
])) : Q("", !0)
|
|
5220
5249
|
], 2));
|
|
5221
5250
|
}
|
|
5222
|
-
}), rl = ["aria-label", "aria-labelledby"], ll = ["aria-checked", "disabled", "onClick", "onKeydown"],
|
|
5251
|
+
}), rl = ["aria-label", "aria-labelledby"], ll = ["aria-checked", "disabled", "onClick", "onKeydown"], Ic = /* @__PURE__ */ oe({
|
|
5223
5252
|
__name: "segmented-control",
|
|
5224
5253
|
props: {
|
|
5225
5254
|
modelValue: { default: void 0 },
|
|
@@ -5281,7 +5310,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5281
5310
|
}, G(_.label), 43, ll))), 128))
|
|
5282
5311
|
], 10, rl));
|
|
5283
5312
|
}
|
|
5284
|
-
}), ut = Symbol("VueForgeTabs"), nl = ["aria-orientation", "aria-label", "aria-labelledby"], sl = { class: "vf-tabs__panels" },
|
|
5313
|
+
}), ut = Symbol("VueForgeTabs"), nl = ["aria-orientation", "aria-label", "aria-labelledby"], sl = { class: "vf-tabs__panels" }, Dc = /* @__PURE__ */ oe({
|
|
5285
5314
|
__name: "tabs",
|
|
5286
5315
|
props: {
|
|
5287
5316
|
modelValue: { default: void 0 },
|
|
@@ -5333,14 +5362,14 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5333
5362
|
"aria-labelledby": l.ariaLabelledby || void 0,
|
|
5334
5363
|
onKeydown: f
|
|
5335
5364
|
}, [
|
|
5336
|
-
|
|
5365
|
+
j(l.$slots, "tabs")
|
|
5337
5366
|
], 40, nl),
|
|
5338
5367
|
x("div", sl, [
|
|
5339
|
-
|
|
5368
|
+
j(l.$slots, "panels")
|
|
5340
5369
|
])
|
|
5341
5370
|
], 2));
|
|
5342
5371
|
}
|
|
5343
|
-
}), il = ["id", "aria-selected", "aria-controls", "disabled", "tabindex"],
|
|
5372
|
+
}), il = ["id", "aria-selected", "aria-controls", "disabled", "tabindex"], Rc = /* @__PURE__ */ oe({
|
|
5344
5373
|
__name: "tab",
|
|
5345
5374
|
props: {
|
|
5346
5375
|
value: {},
|
|
@@ -5349,7 +5378,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5349
5378
|
},
|
|
5350
5379
|
emits: ["change"],
|
|
5351
5380
|
setup(s, { emit: o }) {
|
|
5352
|
-
const a = o, e = s, t =
|
|
5381
|
+
const a = o, e = s, t = Xe(ut, null), i = p(() => (t == null ? void 0 : t.activeValue.value) === e.value), n = p(() => ((t == null ? void 0 : t.disabled.value) ?? !1) || e.disabled), d = p(() => t ? t.getTabId(e.value) : void 0), r = p(() => t ? t.getPanelId(e.value) : void 0), u = p(() => n.value ? -1 : i.value ? 0 : -1), c = (f) => {
|
|
5353
5382
|
!t || n.value || (t.onChange(e.value, f), a("change", e.value, f));
|
|
5354
5383
|
};
|
|
5355
5384
|
return (f, m) => (v(), g("button", {
|
|
@@ -5363,18 +5392,18 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5363
5392
|
tabindex: u.value,
|
|
5364
5393
|
onClick: c
|
|
5365
5394
|
}, [
|
|
5366
|
-
|
|
5395
|
+
j(f.$slots, "default", {}, () => [
|
|
5367
5396
|
fe(G(f.label), 1)
|
|
5368
5397
|
])
|
|
5369
5398
|
], 10, il));
|
|
5370
5399
|
}
|
|
5371
|
-
}), dl = ["id", "aria-labelledby"],
|
|
5400
|
+
}), dl = ["id", "aria-labelledby"], Mc = /* @__PURE__ */ oe({
|
|
5372
5401
|
__name: "tab-panel",
|
|
5373
5402
|
props: {
|
|
5374
5403
|
value: {}
|
|
5375
5404
|
},
|
|
5376
5405
|
setup(s) {
|
|
5377
|
-
const o = s, a =
|
|
5406
|
+
const o = s, a = Xe(ut, null), e = p(() => (a == null ? void 0 : a.activeValue.value) === o.value), t = p(() => a ? a.getTabId(o.value) : void 0), i = p(() => a ? a.getPanelId(o.value) : void 0);
|
|
5378
5407
|
return (n, d) => Ce((v(), g("div", {
|
|
5379
5408
|
id: i.value,
|
|
5380
5409
|
class: "vf-tab-panel",
|
|
@@ -5382,12 +5411,12 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5382
5411
|
tabindex: "0",
|
|
5383
5412
|
"aria-labelledby": t.value
|
|
5384
5413
|
}, [
|
|
5385
|
-
|
|
5414
|
+
j(n.$slots, "default")
|
|
5386
5415
|
], 8, dl)), [
|
|
5387
5416
|
[$e, e.value]
|
|
5388
5417
|
]);
|
|
5389
5418
|
}
|
|
5390
|
-
}), wt = Symbol("VueForgeAccordion"), ul = ["aria-label", "aria-labelledby"],
|
|
5419
|
+
}), wt = Symbol("VueForgeAccordion"), ul = ["aria-label", "aria-labelledby"], Pc = /* @__PURE__ */ oe({
|
|
5391
5420
|
__name: "accordion",
|
|
5392
5421
|
props: {
|
|
5393
5422
|
modelValue: { default: void 0 },
|
|
@@ -5429,10 +5458,10 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5429
5458
|
"aria-label": f.ariaLabel || void 0,
|
|
5430
5459
|
"aria-labelledby": f.ariaLabelledby || void 0
|
|
5431
5460
|
}, [
|
|
5432
|
-
|
|
5461
|
+
j(f.$slots, "default")
|
|
5433
5462
|
], 10, ul));
|
|
5434
5463
|
}
|
|
5435
|
-
}), cl = ["id", "disabled", "aria-expanded", "aria-controls"], vl = { class: "vf-accordion__title" }, fl = ["id", "aria-labelledby", "aria-hidden"], pl = { class: "vf-accordion__panel-inner" },
|
|
5464
|
+
}), cl = ["id", "disabled", "aria-expanded", "aria-controls"], vl = { class: "vf-accordion__title" }, fl = ["id", "aria-labelledby", "aria-hidden"], pl = { class: "vf-accordion__panel-inner" }, Oc = /* @__PURE__ */ oe({
|
|
5436
5465
|
__name: "accordion-item",
|
|
5437
5466
|
props: {
|
|
5438
5467
|
value: {},
|
|
@@ -5441,7 +5470,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5441
5470
|
unmount: { type: Boolean, default: !1 }
|
|
5442
5471
|
},
|
|
5443
5472
|
setup(s) {
|
|
5444
|
-
const o = s, a =
|
|
5473
|
+
const o = s, a = Xe(wt, null), e = p(() => {
|
|
5445
5474
|
if (!a)
|
|
5446
5475
|
return !1;
|
|
5447
5476
|
const c = a.modelValue.value;
|
|
@@ -5465,7 +5494,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5465
5494
|
onClick: u
|
|
5466
5495
|
}, [
|
|
5467
5496
|
x("span", vl, [
|
|
5468
|
-
|
|
5497
|
+
j(c.$slots, "title", {}, () => [
|
|
5469
5498
|
fe(G(c.title), 1)
|
|
5470
5499
|
])
|
|
5471
5500
|
]),
|
|
@@ -5483,7 +5512,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5483
5512
|
"aria-hidden": e.value ? void 0 : "true"
|
|
5484
5513
|
}, [
|
|
5485
5514
|
x("div", pl, [
|
|
5486
|
-
|
|
5515
|
+
j(c.$slots, "default")
|
|
5487
5516
|
])
|
|
5488
5517
|
], 10, fl)) : Q("", !0)
|
|
5489
5518
|
], 2));
|
|
@@ -5494,7 +5523,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5494
5523
|
}, hl = {
|
|
5495
5524
|
key: 1,
|
|
5496
5525
|
class: "vf-toast__message"
|
|
5497
|
-
},
|
|
5526
|
+
}, Ec = /* @__PURE__ */ oe({
|
|
5498
5527
|
__name: "toast",
|
|
5499
5528
|
props: {
|
|
5500
5529
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -5534,7 +5563,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5534
5563
|
x("div", gl, [
|
|
5535
5564
|
r.title ? (v(), g("div", bl, G(r.title), 1)) : Q("", !0),
|
|
5536
5565
|
r.message || r.$slots.default ? (v(), g("div", hl, [
|
|
5537
|
-
|
|
5566
|
+
j(r.$slots, "default", {}, () => [
|
|
5538
5567
|
fe(G(r.message), 1)
|
|
5539
5568
|
])
|
|
5540
5569
|
])) : Q("", !0)
|
|
@@ -5545,7 +5574,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5545
5574
|
type: "button",
|
|
5546
5575
|
onClick: d
|
|
5547
5576
|
}, [
|
|
5548
|
-
|
|
5577
|
+
j(r.$slots, "close", {}, () => [
|
|
5549
5578
|
u[0] || (u[0] = fe("×"))
|
|
5550
5579
|
])
|
|
5551
5580
|
])) : Q("", !0)
|
|
@@ -5553,7 +5582,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5553
5582
|
[$e, r.modelValue]
|
|
5554
5583
|
]);
|
|
5555
5584
|
}
|
|
5556
|
-
}),
|
|
5585
|
+
}), Ac = /* @__PURE__ */ oe({
|
|
5557
5586
|
__name: "toast-container",
|
|
5558
5587
|
props: {
|
|
5559
5588
|
position: { default: "top-right" }
|
|
@@ -5566,7 +5595,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5566
5595
|
role: "region",
|
|
5567
5596
|
"aria-live": "polite"
|
|
5568
5597
|
}, [
|
|
5569
|
-
|
|
5598
|
+
j(e.$slots, "default")
|
|
5570
5599
|
], 2)
|
|
5571
5600
|
]));
|
|
5572
5601
|
}
|
|
@@ -5583,7 +5612,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5583
5612
|
}, wl = {
|
|
5584
5613
|
key: 1,
|
|
5585
5614
|
class: "vf-alert__actions"
|
|
5586
|
-
},
|
|
5615
|
+
}, Hc = /* @__PURE__ */ oe({
|
|
5587
5616
|
__name: "alert",
|
|
5588
5617
|
props: {
|
|
5589
5618
|
modelValue: { type: Boolean },
|
|
@@ -5612,24 +5641,24 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5612
5641
|
"data-severity": r.severity
|
|
5613
5642
|
}, [
|
|
5614
5643
|
r.$slots.icon || r.icon ? (v(), g("div", _l, [
|
|
5615
|
-
|
|
5644
|
+
j(r.$slots, "icon", {}, () => [
|
|
5616
5645
|
fe(G(r.icon), 1)
|
|
5617
5646
|
])
|
|
5618
5647
|
])) : Q("", !0),
|
|
5619
5648
|
x("div", kl, [
|
|
5620
5649
|
r.title || r.$slots.title ? (v(), g("div", Cl, [
|
|
5621
|
-
|
|
5650
|
+
j(r.$slots, "title", {}, () => [
|
|
5622
5651
|
fe(G(r.title), 1)
|
|
5623
5652
|
])
|
|
5624
5653
|
])) : Q("", !0),
|
|
5625
5654
|
r.message || r.$slots.default ? (v(), g("div", $l, [
|
|
5626
|
-
|
|
5655
|
+
j(r.$slots, "default", {}, () => [
|
|
5627
5656
|
fe(G(r.message), 1)
|
|
5628
5657
|
])
|
|
5629
5658
|
])) : Q("", !0)
|
|
5630
5659
|
]),
|
|
5631
5660
|
r.$slots.actions ? (v(), g("div", wl, [
|
|
5632
|
-
|
|
5661
|
+
j(r.$slots, "actions")
|
|
5633
5662
|
])) : Q("", !0),
|
|
5634
5663
|
r.closable ? (v(), g("button", {
|
|
5635
5664
|
key: 2,
|
|
@@ -5638,7 +5667,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5638
5667
|
"aria-label": "Close",
|
|
5639
5668
|
onClick: d
|
|
5640
5669
|
}, [
|
|
5641
|
-
|
|
5670
|
+
j(r.$slots, "close", {}, () => [
|
|
5642
5671
|
u[0] || (u[0] = fe("×"))
|
|
5643
5672
|
])
|
|
5644
5673
|
])) : Q("", !0)
|
|
@@ -5659,7 +5688,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5659
5688
|
}, Vl = {
|
|
5660
5689
|
key: 1,
|
|
5661
5690
|
class: "vf-empty-state__actions"
|
|
5662
|
-
},
|
|
5691
|
+
}, Wc = /* @__PURE__ */ oe({
|
|
5663
5692
|
__name: "empty-state",
|
|
5664
5693
|
props: {
|
|
5665
5694
|
title: { default: "" },
|
|
@@ -5679,31 +5708,31 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5679
5708
|
"aria-live": "polite"
|
|
5680
5709
|
}, [
|
|
5681
5710
|
e.$slots.icon || e.icon ? (v(), g("div", zl, [
|
|
5682
|
-
|
|
5711
|
+
j(e.$slots, "icon", {}, () => [
|
|
5683
5712
|
fe(G(e.icon), 1)
|
|
5684
5713
|
])
|
|
5685
5714
|
])) : Q("", !0),
|
|
5686
5715
|
x("div", Sl, [
|
|
5687
5716
|
e.title || e.$slots.title ? (v(), g("div", Bl, [
|
|
5688
|
-
|
|
5717
|
+
j(e.$slots, "title", {}, () => [
|
|
5689
5718
|
fe(G(e.title), 1)
|
|
5690
5719
|
])
|
|
5691
5720
|
])) : Q("", !0),
|
|
5692
5721
|
e.description || e.$slots.default ? (v(), g("div", xl, [
|
|
5693
|
-
|
|
5722
|
+
j(e.$slots, "default", {}, () => [
|
|
5694
5723
|
fe(G(e.description), 1)
|
|
5695
5724
|
])
|
|
5696
5725
|
])) : Q("", !0)
|
|
5697
5726
|
]),
|
|
5698
5727
|
e.$slots.actions ? (v(), g("div", Vl, [
|
|
5699
|
-
|
|
5728
|
+
j(e.$slots, "actions")
|
|
5700
5729
|
])) : Q("", !0)
|
|
5701
5730
|
], 2));
|
|
5702
5731
|
}
|
|
5703
5732
|
}), Ll = ["checked", "disabled"], Fl = {
|
|
5704
5733
|
key: 0,
|
|
5705
5734
|
class: "vf-switch__label"
|
|
5706
|
-
},
|
|
5735
|
+
}, Kc = /* @__PURE__ */ oe({
|
|
5707
5736
|
__name: "switch",
|
|
5708
5737
|
props: {
|
|
5709
5738
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -5733,13 +5762,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5733
5762
|
x("span", { class: "vf-switch__thumb" })
|
|
5734
5763
|
], -1)),
|
|
5735
5764
|
n.label || n.$slots.default ? (v(), g("span", Fl, [
|
|
5736
|
-
|
|
5765
|
+
j(n.$slots, "default", {}, () => [
|
|
5737
5766
|
fe(G(n.label), 1)
|
|
5738
5767
|
])
|
|
5739
5768
|
])) : Q("", !0)
|
|
5740
5769
|
], 2));
|
|
5741
5770
|
}
|
|
5742
|
-
}), Tl = { class: "vf-popover" }, Il = ["aria-expanded", "onKeydown"],
|
|
5771
|
+
}), Tl = { class: "vf-popover" }, Il = ["aria-expanded", "onKeydown"], Nc = /* @__PURE__ */ oe({
|
|
5743
5772
|
__name: "popover",
|
|
5744
5773
|
emits: ["click", "onClick"],
|
|
5745
5774
|
setup(s, { expose: o, emit: a }) {
|
|
@@ -5762,7 +5791,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5762
5791
|
ce(re(c, ["prevent"]), ["space"])
|
|
5763
5792
|
]
|
|
5764
5793
|
}, [
|
|
5765
|
-
|
|
5794
|
+
j(f.$slots, "button")
|
|
5766
5795
|
], 40, Il),
|
|
5767
5796
|
Ce(Ge(qt, {
|
|
5768
5797
|
id: n,
|
|
@@ -5776,31 +5805,31 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5776
5805
|
f.$slots.default ? {
|
|
5777
5806
|
name: "default",
|
|
5778
5807
|
fn: _e(() => [
|
|
5779
|
-
|
|
5808
|
+
j(f.$slots, "default")
|
|
5780
5809
|
]),
|
|
5781
5810
|
key: "0"
|
|
5782
5811
|
} : void 0,
|
|
5783
5812
|
f.$slots.header || f.$slots.popoverHeader ? {
|
|
5784
5813
|
name: "header",
|
|
5785
5814
|
fn: _e(() => [
|
|
5786
|
-
|
|
5787
|
-
f.$slots.header ? Q("", !0) :
|
|
5815
|
+
j(f.$slots, "header"),
|
|
5816
|
+
f.$slots.header ? Q("", !0) : j(f.$slots, "popoverHeader", { key: 0 })
|
|
5788
5817
|
]),
|
|
5789
5818
|
key: "1"
|
|
5790
5819
|
} : void 0,
|
|
5791
5820
|
f.$slots.body || f.$slots.popoverBody ? {
|
|
5792
5821
|
name: "body",
|
|
5793
5822
|
fn: _e(() => [
|
|
5794
|
-
|
|
5795
|
-
f.$slots.body ? Q("", !0) :
|
|
5823
|
+
j(f.$slots, "body"),
|
|
5824
|
+
f.$slots.body ? Q("", !0) : j(f.$slots, "popoverBody", { key: 0 })
|
|
5796
5825
|
]),
|
|
5797
5826
|
key: "2"
|
|
5798
5827
|
} : void 0,
|
|
5799
5828
|
f.$slots.footer || f.$slots.popoverFooter ? {
|
|
5800
5829
|
name: "footer",
|
|
5801
5830
|
fn: _e(() => [
|
|
5802
|
-
|
|
5803
|
-
f.$slots.footer ? Q("", !0) :
|
|
5831
|
+
j(f.$slots, "footer"),
|
|
5832
|
+
f.$slots.footer ? Q("", !0) : j(f.$slots, "popoverFooter", { key: 0 })
|
|
5804
5833
|
]),
|
|
5805
5834
|
key: "3"
|
|
5806
5835
|
} : void 0
|
|
@@ -5834,7 +5863,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5834
5863
|
setup(s, { expose: o, emit: a }) {
|
|
5835
5864
|
const e = a, t = s;
|
|
5836
5865
|
let i = 0, n = 0, d = "", r = null;
|
|
5837
|
-
const u = N(null), c = Rt(), f =
|
|
5866
|
+
const u = N(null), c = Rt(), f = Ue(), m = `vf-modal-title-${++i}`, y = `vf-modal-body-${i}`, l = p(() => !!t.title || !!f.header), k = p(() => !!f.body || !!f.default), _ = p(() => {
|
|
5838
5867
|
const V = ["vf-modal"];
|
|
5839
5868
|
return t.size !== "md" && V.push(`vf-modal_${t.size}`), V;
|
|
5840
5869
|
}), B = () => e("update:modelValue", !0), M = () => {
|
|
@@ -5900,12 +5929,12 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5900
5929
|
id: m,
|
|
5901
5930
|
class: "vf-modal__header-content"
|
|
5902
5931
|
}, [
|
|
5903
|
-
|
|
5932
|
+
j(V.$slots, "header", {}, () => [
|
|
5904
5933
|
V.title ? (v(), g("h3", Ml, G(V.title), 1)) : Q("", !0)
|
|
5905
5934
|
])
|
|
5906
5935
|
])
|
|
5907
5936
|
])) : Q("", !0),
|
|
5908
|
-
V.showClose ?
|
|
5937
|
+
V.showClose ? j(V.$slots, "close", {
|
|
5909
5938
|
key: 1,
|
|
5910
5939
|
close: M
|
|
5911
5940
|
}, () => [
|
|
@@ -5921,11 +5950,11 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5921
5950
|
id: y,
|
|
5922
5951
|
class: "vf-modal__body"
|
|
5923
5952
|
}, [
|
|
5924
|
-
|
|
5925
|
-
V.$slots.body ? Q("", !0) :
|
|
5953
|
+
j(V.$slots, "body"),
|
|
5954
|
+
V.$slots.body ? Q("", !0) : j(V.$slots, "default", { key: 0 })
|
|
5926
5955
|
])) : Q("", !0),
|
|
5927
5956
|
V.$slots.footer ? (v(), g("div", Pl, [
|
|
5928
|
-
|
|
5957
|
+
j(V.$slots, "footer")
|
|
5929
5958
|
])) : Q("", !0)
|
|
5930
5959
|
], 40, Dl)
|
|
5931
5960
|
], 16), [
|
|
@@ -5933,7 +5962,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5933
5962
|
])
|
|
5934
5963
|
]));
|
|
5935
5964
|
}
|
|
5936
|
-
}), El = { class: "vf-confirm-dialog__message" }, Al = { class: "vf-confirm-dialog__actions" },
|
|
5965
|
+
}), El = { class: "vf-confirm-dialog__message" }, Al = { class: "vf-confirm-dialog__actions" }, Gc = /* @__PURE__ */ oe({
|
|
5937
5966
|
__name: "confirm-dialog",
|
|
5938
5967
|
props: {
|
|
5939
5968
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -5996,14 +6025,14 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
5996
6025
|
}, {
|
|
5997
6026
|
body: _e(() => [
|
|
5998
6027
|
x("div", El, [
|
|
5999
|
-
|
|
6028
|
+
j(m.$slots, "default", {}, () => [
|
|
6000
6029
|
fe(G(m.message), 1)
|
|
6001
6030
|
])
|
|
6002
6031
|
])
|
|
6003
6032
|
]),
|
|
6004
6033
|
footer: _e(() => [
|
|
6005
6034
|
x("div", Al, [
|
|
6006
|
-
|
|
6035
|
+
j(m.$slots, "actions", {
|
|
6007
6036
|
confirm: f,
|
|
6008
6037
|
cancel: c
|
|
6009
6038
|
}, () => [
|
|
@@ -6037,7 +6066,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6037
6066
|
}, Nl = {
|
|
6038
6067
|
key: 3,
|
|
6039
6068
|
class: "vf-drawer__footer"
|
|
6040
|
-
},
|
|
6069
|
+
}, jc = /* @__PURE__ */ oe({
|
|
6041
6070
|
__name: "drawer",
|
|
6042
6071
|
props: {
|
|
6043
6072
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -6054,7 +6083,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6054
6083
|
setup(s, { expose: o, emit: a }) {
|
|
6055
6084
|
const e = a, t = s;
|
|
6056
6085
|
let i = 0, n = 0, d = "", r = null;
|
|
6057
|
-
const u = N(null), c =
|
|
6086
|
+
const u = N(null), c = Ue(), f = `vf-drawer-title-${++i}`, m = `vf-drawer-body-${i}`, y = p(() => !!t.title || !!c.header), l = p(() => !!c.body || !!c.default), k = p(() => {
|
|
6058
6087
|
switch (t.position) {
|
|
6059
6088
|
case "left":
|
|
6060
6089
|
return "translate3d(-100%, 0, 0)";
|
|
@@ -6142,12 +6171,12 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6142
6171
|
id: f,
|
|
6143
6172
|
class: "vf-drawer__header-content"
|
|
6144
6173
|
}, [
|
|
6145
|
-
|
|
6174
|
+
j(w.$slots, "header", {}, () => [
|
|
6146
6175
|
w.title ? (v(), g("h3", Kl, G(w.title), 1)) : Q("", !0)
|
|
6147
6176
|
])
|
|
6148
6177
|
])
|
|
6149
6178
|
])) : Q("", !0),
|
|
6150
|
-
w.showClose ?
|
|
6179
|
+
w.showClose ? j(w.$slots, "close", {
|
|
6151
6180
|
key: 1,
|
|
6152
6181
|
close: S
|
|
6153
6182
|
}, () => [
|
|
@@ -6163,11 +6192,11 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6163
6192
|
id: m,
|
|
6164
6193
|
class: "vf-drawer__body"
|
|
6165
6194
|
}, [
|
|
6166
|
-
|
|
6167
|
-
w.$slots.body ? Q("", !0) :
|
|
6195
|
+
j(w.$slots, "body"),
|
|
6196
|
+
w.$slots.body ? Q("", !0) : j(w.$slots, "default", { key: 0 })
|
|
6168
6197
|
])) : Q("", !0),
|
|
6169
6198
|
w.$slots.footer ? (v(), g("div", Nl, [
|
|
6170
|
-
|
|
6199
|
+
j(w.$slots, "footer")
|
|
6171
6200
|
])) : Q("", !0)
|
|
6172
6201
|
], 40, Hl)
|
|
6173
6202
|
], 6), [
|
|
@@ -6178,7 +6207,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6178
6207
|
})
|
|
6179
6208
|
]));
|
|
6180
6209
|
}
|
|
6181
|
-
}), Gl = ["aria-expanded", "aria-disabled", "onKeydown"],
|
|
6210
|
+
}), Gl = ["aria-expanded", "aria-disabled", "onKeydown"], jl = ["data-placement"], Yl = /* @__PURE__ */ oe({
|
|
6182
6211
|
name: "VfDropdown",
|
|
6183
6212
|
__name: "dropdown",
|
|
6184
6213
|
props: {
|
|
@@ -6305,7 +6334,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6305
6334
|
ce(re(S, ["prevent"]), ["space"])
|
|
6306
6335
|
]
|
|
6307
6336
|
}, [
|
|
6308
|
-
|
|
6337
|
+
j($.$slots, "trigger")
|
|
6309
6338
|
], 40, Gl),
|
|
6310
6339
|
(v(), pe(Ve, { to: "body" }, [
|
|
6311
6340
|
Ce(x("div", {
|
|
@@ -6317,19 +6346,19 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6317
6346
|
"data-placement": f.value,
|
|
6318
6347
|
onClick: h
|
|
6319
6348
|
}, [
|
|
6320
|
-
|
|
6349
|
+
j($.$slots, "default", {}, () => [
|
|
6321
6350
|
t.items.length ? (v(), pe(ht, {
|
|
6322
6351
|
key: 0,
|
|
6323
6352
|
items: t.items
|
|
6324
6353
|
}, null, 8, ["items"])) : Q("", !0)
|
|
6325
6354
|
])
|
|
6326
|
-
], 8,
|
|
6355
|
+
], 8, jl), [
|
|
6327
6356
|
[$e, u.value]
|
|
6328
6357
|
])
|
|
6329
6358
|
]))
|
|
6330
6359
|
], 2));
|
|
6331
6360
|
}
|
|
6332
|
-
}),
|
|
6361
|
+
}), Yc = /* @__PURE__ */ oe({
|
|
6333
6362
|
name: "VfSplitButton",
|
|
6334
6363
|
__name: "split-button",
|
|
6335
6364
|
props: {
|
|
@@ -6352,7 +6381,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6352
6381
|
},
|
|
6353
6382
|
emits: ["click", "update:modelValue", "open", "close", "select"],
|
|
6354
6383
|
setup(s, { expose: o, emit: a }) {
|
|
6355
|
-
const e = s, t = a, i =
|
|
6384
|
+
const e = s, t = a, i = Xe(dt, null), n = N(null), d = p(() => e.size ?? (i == null ? void 0 : i.value.size) ?? "normal"), r = p(() => e.variant ?? (i == null ? void 0 : i.value.variant)), u = p(() => e.severity ?? (i == null ? void 0 : i.value.severity) ?? "primary"), c = p(() => e.disabled || (i == null ? void 0 : i.value.disabled) === !0), f = p(() => {
|
|
6356
6385
|
const l = ["vf-splitbutton"];
|
|
6357
6386
|
return (c.value || e.loading) && l.push("vf-splitbutton_disabled"), (d.value === "small" || d.value === "large") && l.push(`vf-splitbutton_${d.value}`), l;
|
|
6358
6387
|
}), m = (l) => {
|
|
@@ -6395,7 +6424,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6395
6424
|
onClick: m
|
|
6396
6425
|
}, {
|
|
6397
6426
|
default: _e(() => [
|
|
6398
|
-
|
|
6427
|
+
j(l.$slots, "default")
|
|
6399
6428
|
]),
|
|
6400
6429
|
_: 3
|
|
6401
6430
|
}, 8, ["label", "icon", "type", "size", "variant", "severity", "loading", "disabled"])) : (v(), pe(Ze, {
|
|
@@ -6411,7 +6440,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6411
6440
|
disabled: c.value,
|
|
6412
6441
|
onClick: m
|
|
6413
6442
|
}, null, 8, ["label", "icon", "type", "size", "variant", "severity", "loading", "disabled"])),
|
|
6414
|
-
Ge(
|
|
6443
|
+
Ge(Yl, {
|
|
6415
6444
|
ref_key: "dropdown",
|
|
6416
6445
|
ref: n,
|
|
6417
6446
|
class: "vf-splitbutton__dropdown",
|
|
@@ -6444,14 +6473,14 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6444
6473
|
l.$slots.menu ? {
|
|
6445
6474
|
name: "default",
|
|
6446
6475
|
fn: _e(() => [
|
|
6447
|
-
|
|
6476
|
+
j(l.$slots, "menu")
|
|
6448
6477
|
]),
|
|
6449
6478
|
key: "0"
|
|
6450
6479
|
} : void 0
|
|
6451
6480
|
]), 1032, ["model-value", "items", "placement", "offset", "disabled", "close-on-select", "close-on-esc", "match-trigger-width"])
|
|
6452
6481
|
], 2));
|
|
6453
6482
|
}
|
|
6454
|
-
}),
|
|
6483
|
+
}), Xc = /* @__PURE__ */ oe({
|
|
6455
6484
|
name: "VfContextMenu",
|
|
6456
6485
|
__name: "context-menu",
|
|
6457
6486
|
props: {
|
|
@@ -6531,7 +6560,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6531
6560
|
onContextmenu: re(M, ["prevent"]),
|
|
6532
6561
|
onKeydown: S
|
|
6533
6562
|
}, [
|
|
6534
|
-
|
|
6563
|
+
j(P.$slots, "default")
|
|
6535
6564
|
], 34),
|
|
6536
6565
|
(v(), pe(Ve, { to: "body" }, [
|
|
6537
6566
|
Ce(x("div", {
|
|
@@ -6543,7 +6572,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6543
6572
|
style: ye(u.value),
|
|
6544
6573
|
onClick: h
|
|
6545
6574
|
}, [
|
|
6546
|
-
|
|
6575
|
+
j(P.$slots, "menu", {}, () => [
|
|
6547
6576
|
t.items.length ? (v(), pe(ht, {
|
|
6548
6577
|
key: 0,
|
|
6549
6578
|
items: t.items
|
|
@@ -6573,7 +6602,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6573
6602
|
}, nn = {
|
|
6574
6603
|
key: 1,
|
|
6575
6604
|
class: "vf-command-palette__empty"
|
|
6576
|
-
},
|
|
6605
|
+
}, Uc = /* @__PURE__ */ oe({
|
|
6577
6606
|
name: "VfCommandPalette",
|
|
6578
6607
|
__name: "command-palette",
|
|
6579
6608
|
props: {
|
|
@@ -6777,7 +6806,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6777
6806
|
}, Bn = ["onClick"], xn = {
|
|
6778
6807
|
key: 1,
|
|
6779
6808
|
class: "vf-notification-center__empty"
|
|
6780
|
-
},
|
|
6809
|
+
}, qc = /* @__PURE__ */ oe({
|
|
6781
6810
|
__name: "notification-center",
|
|
6782
6811
|
props: {
|
|
6783
6812
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -6897,7 +6926,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6897
6926
|
class: Z(["vf-notification-center__item", { "is-unread": !h.read }]),
|
|
6898
6927
|
"data-severity": h.severity || "neutral"
|
|
6899
6928
|
}, [
|
|
6900
|
-
|
|
6929
|
+
j(M.$slots, "item", {
|
|
6901
6930
|
item: h,
|
|
6902
6931
|
index: C,
|
|
6903
6932
|
toggleRead: () => k(h.id)
|
|
@@ -6922,7 +6951,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6922
6951
|
}, G(h.read ? M.unreadLabel : M.readLabel), 9, Bn)
|
|
6923
6952
|
], 10, _n))), 128))
|
|
6924
6953
|
])) : (v(), g("p", xn, [
|
|
6925
|
-
|
|
6954
|
+
j(M.$slots, "empty", {}, () => [
|
|
6926
6955
|
fe(G(M.emptyText), 1)
|
|
6927
6956
|
])
|
|
6928
6957
|
]))
|
|
@@ -6936,7 +6965,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6936
6965
|
}), Vn = ["aria-hidden"], Ln = ["aria-label"], Fn = { class: "vf-app-shell__header" }, Tn = ["aria-label"], In = { class: "vf-app-shell__header-content" }, Dn = ["aria-label"], Rn = {
|
|
6937
6966
|
key: 1,
|
|
6938
6967
|
class: "vf-app-shell__footer"
|
|
6939
|
-
},
|
|
6968
|
+
}, Qc = /* @__PURE__ */ oe({
|
|
6940
6969
|
__name: "app-shell",
|
|
6941
6970
|
props: {
|
|
6942
6971
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -6954,7 +6983,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
6954
6983
|
},
|
|
6955
6984
|
emits: ["update:modelValue", "sidebar-toggle", "breakpoint-change"],
|
|
6956
6985
|
setup(s, { emit: o }) {
|
|
6957
|
-
const a = o, e = s, t =
|
|
6986
|
+
const a = o, e = s, t = Ue(), i = p(() => !!t.footer), n = N(!!e.modelValue), d = N(!1), r = N(!1), u = p(() => ({
|
|
6958
6987
|
"--vf-app-shell-sidebar-width-prop": e.sidebarWidth,
|
|
6959
6988
|
"--vf-app-shell-sidebar-collapsed-width-prop": e.sidebarCollapsedWidth
|
|
6960
6989
|
})), c = () => {
|
|
@@ -7000,7 +7029,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7000
7029
|
class: "vf-app-shell__sidebar",
|
|
7001
7030
|
"aria-hidden": d.value && !r.value ? "true" : "false"
|
|
7002
7031
|
}, [
|
|
7003
|
-
|
|
7032
|
+
j(k.$slots, "sidebar", {
|
|
7004
7033
|
mobile: d.value,
|
|
7005
7034
|
collapsed: n.value
|
|
7006
7035
|
})
|
|
@@ -7021,7 +7050,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7021
7050
|
onClick: m
|
|
7022
7051
|
}, G(k.toggleIcon), 9, Tn)) : Q("", !0),
|
|
7023
7052
|
x("div", In, [
|
|
7024
|
-
|
|
7053
|
+
j(k.$slots, "header", {
|
|
7025
7054
|
mobile: d.value,
|
|
7026
7055
|
collapsed: n.value,
|
|
7027
7056
|
mobileSidebarOpen: r.value,
|
|
@@ -7033,20 +7062,20 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7033
7062
|
class: "vf-app-shell__main",
|
|
7034
7063
|
"aria-label": k.mainAriaLabel
|
|
7035
7064
|
}, [
|
|
7036
|
-
|
|
7065
|
+
j(k.$slots, "default")
|
|
7037
7066
|
], 8, Dn),
|
|
7038
7067
|
i.value ? (v(), g("footer", Rn, [
|
|
7039
|
-
|
|
7068
|
+
j(k.$slots, "footer", {
|
|
7040
7069
|
mobile: d.value,
|
|
7041
7070
|
collapsed: n.value
|
|
7042
7071
|
})
|
|
7043
7072
|
])) : Q("", !0)
|
|
7044
7073
|
], 6));
|
|
7045
7074
|
}
|
|
7046
|
-
}), Mn = ["aria-label"], Pn = { class: "vf-kanban-board__columns" }, On = ["data-column-id"], En = { class: "vf-kanban-board__column-header" }, An = { class: "vf-kanban-board__column-title" }, Hn = { class: "vf-kanban-board__column-count" }, Wn = ["onDrop"], Kn = ["onClick", "onDragstart", "onDrop"], Nn = { class: "vf-kanban-board__card" }, Gn = { class: "vf-kanban-board__card-title" },
|
|
7075
|
+
}), Mn = ["aria-label"], Pn = { class: "vf-kanban-board__columns" }, On = ["data-column-id"], En = { class: "vf-kanban-board__column-header" }, An = { class: "vf-kanban-board__column-title" }, Hn = { class: "vf-kanban-board__column-count" }, Wn = ["onDrop"], Kn = ["onClick", "onDragstart", "onDrop"], Nn = { class: "vf-kanban-board__card" }, Gn = { class: "vf-kanban-board__card-title" }, jn = {
|
|
7047
7076
|
key: 0,
|
|
7048
7077
|
class: "vf-kanban-board__card-description"
|
|
7049
|
-
},
|
|
7078
|
+
}, Yn = {
|
|
7050
7079
|
key: 1,
|
|
7051
7080
|
class: "vf-kanban-board__tags"
|
|
7052
7081
|
}, Xn = {
|
|
@@ -7055,7 +7084,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7055
7084
|
}, Un = {
|
|
7056
7085
|
key: 0,
|
|
7057
7086
|
class: "vf-kanban-board__empty"
|
|
7058
|
-
}, qn = { class: "vf-kanban-board__column-footer" },
|
|
7087
|
+
}, qn = { class: "vf-kanban-board__column-footer" }, Zc = /* @__PURE__ */ oe({
|
|
7059
7088
|
__name: "kanban-board",
|
|
7060
7089
|
props: {
|
|
7061
7090
|
columns: { default: () => [] },
|
|
@@ -7121,7 +7150,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7121
7150
|
"data-column-id": String(S.id)
|
|
7122
7151
|
}, [
|
|
7123
7152
|
x("header", En, [
|
|
7124
|
-
|
|
7153
|
+
j(B.$slots, "column-header", {
|
|
7125
7154
|
column: S,
|
|
7126
7155
|
items: u(S.id)
|
|
7127
7156
|
}, () => [
|
|
@@ -7151,7 +7180,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7151
7180
|
}, ["prevent"])),
|
|
7152
7181
|
onDrop: re((I) => k(S.id, C, I), ["prevent", "stop"])
|
|
7153
7182
|
}, [
|
|
7154
|
-
|
|
7183
|
+
j(B.$slots, "card", {
|
|
7155
7184
|
item: h,
|
|
7156
7185
|
column: S,
|
|
7157
7186
|
index: C
|
|
@@ -7160,8 +7189,8 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7160
7189
|
return [
|
|
7161
7190
|
x("div", Nn, [
|
|
7162
7191
|
x("p", Gn, G(h.title), 1),
|
|
7163
|
-
h.description ? (v(), g("p",
|
|
7164
|
-
(I = h.tags) != null && I.length ? (v(), g("div",
|
|
7192
|
+
h.description ? (v(), g("p", jn, G(h.description), 1)) : Q("", !0),
|
|
7193
|
+
(I = h.tags) != null && I.length ? (v(), g("div", Yn, [
|
|
7165
7194
|
(v(!0), g(ue, null, me(h.tags, (O) => (v(), g("span", {
|
|
7166
7195
|
key: O,
|
|
7167
7196
|
class: "vf-kanban-board__tag"
|
|
@@ -7173,13 +7202,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7173
7202
|
})
|
|
7174
7203
|
], 42, Kn))), 128)),
|
|
7175
7204
|
u(S.id).length ? Q("", !0) : (v(), g("li", Un, [
|
|
7176
|
-
|
|
7205
|
+
j(B.$slots, "empty-column", { column: S }, () => [
|
|
7177
7206
|
fe(G(B.emptyColumnText), 1)
|
|
7178
7207
|
])
|
|
7179
7208
|
]))
|
|
7180
7209
|
], 40, Wn),
|
|
7181
7210
|
x("footer", qn, [
|
|
7182
|
-
|
|
7211
|
+
j(B.$slots, "column-footer", {
|
|
7183
7212
|
column: S,
|
|
7184
7213
|
items: u(S.id)
|
|
7185
7214
|
})
|
|
@@ -7192,7 +7221,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7192
7221
|
key: 0,
|
|
7193
7222
|
class: "vf-tooltip__arrow",
|
|
7194
7223
|
"aria-hidden": "true"
|
|
7195
|
-
},
|
|
7224
|
+
}, Jc = /* @__PURE__ */ oe({
|
|
7196
7225
|
__name: "tooltip",
|
|
7197
7226
|
props: {
|
|
7198
7227
|
text: { default: "" },
|
|
@@ -7262,7 +7291,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7262
7291
|
onFocus: u,
|
|
7263
7292
|
onBlur: c
|
|
7264
7293
|
}, [
|
|
7265
|
-
|
|
7294
|
+
j(y.$slots, "default")
|
|
7266
7295
|
], 544),
|
|
7267
7296
|
(v(), pe(Ve, { to: "body" }, [
|
|
7268
7297
|
Ce(x("div", {
|
|
@@ -7274,7 +7303,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7274
7303
|
"data-placement": n.value
|
|
7275
7304
|
}, [
|
|
7276
7305
|
x("span", Zn, [
|
|
7277
|
-
|
|
7306
|
+
j(y.$slots, "content", {}, () => [
|
|
7278
7307
|
fe(G(y.text), 1)
|
|
7279
7308
|
])
|
|
7280
7309
|
]),
|
|
@@ -7297,7 +7326,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7297
7326
|
}, rs = {
|
|
7298
7327
|
key: 2,
|
|
7299
7328
|
class: "vf-tour__progress"
|
|
7300
|
-
}, ls = { class: "vf-tour__actions" }, ns = ["disabled"],
|
|
7329
|
+
}, ls = { class: "vf-tour__actions" }, ns = ["disabled"], ev = /* @__PURE__ */ oe({
|
|
7301
7330
|
__name: "tour",
|
|
7302
7331
|
props: {
|
|
7303
7332
|
modelValue: { type: Boolean, default: !1 },
|
|
@@ -7436,7 +7465,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7436
7465
|
"data-placement": n.value
|
|
7437
7466
|
}, [
|
|
7438
7467
|
(z = f.value) != null && z.title || R.$slots.title ? (v(), g("div", as, [
|
|
7439
|
-
|
|
7468
|
+
j(R.$slots, "title", {
|
|
7440
7469
|
step: f.value,
|
|
7441
7470
|
index: i.value
|
|
7442
7471
|
}, () => {
|
|
@@ -7447,7 +7476,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7447
7476
|
})
|
|
7448
7477
|
])) : Q("", !0),
|
|
7449
7478
|
(F = f.value) != null && F.content || R.$slots.default ? (v(), g("div", os, [
|
|
7450
|
-
|
|
7479
|
+
j(R.$slots, "default", {
|
|
7451
7480
|
step: f.value,
|
|
7452
7481
|
index: i.value
|
|
7453
7482
|
}, () => {
|
|
@@ -7459,7 +7488,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7459
7488
|
])) : Q("", !0),
|
|
7460
7489
|
R.showProgress ? (v(), g("div", rs, G(i.value + 1) + " / " + G(c.value), 1)) : Q("", !0),
|
|
7461
7490
|
x("div", ls, [
|
|
7462
|
-
|
|
7491
|
+
j(R.$slots, "actions", {
|
|
7463
7492
|
step: f.value,
|
|
7464
7493
|
index: i.value,
|
|
7465
7494
|
isFirst: m.value,
|
|
@@ -7494,7 +7523,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7494
7523
|
]);
|
|
7495
7524
|
};
|
|
7496
7525
|
}
|
|
7497
|
-
}),
|
|
7526
|
+
}), tv = /* @__PURE__ */ oe({
|
|
7498
7527
|
__name: "skeleton",
|
|
7499
7528
|
props: {
|
|
7500
7529
|
width: { default: "" },
|
|
@@ -7532,7 +7561,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7532
7561
|
}, cs = {
|
|
7533
7562
|
key: 2,
|
|
7534
7563
|
class: "vf-progress__label"
|
|
7535
|
-
},
|
|
7564
|
+
}, av = /* @__PURE__ */ oe({
|
|
7536
7565
|
__name: "progress",
|
|
7537
7566
|
props: {
|
|
7538
7567
|
value: { default: null },
|
|
@@ -7544,7 +7573,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7544
7573
|
ariaLabel: { default: "" }
|
|
7545
7574
|
},
|
|
7546
7575
|
setup(s) {
|
|
7547
|
-
const o = s, a =
|
|
7576
|
+
const o = s, a = Ue(), e = (y) => Math.min(100, Math.max(0, y)), t = p(() => o.value === void 0 || o.value === null || Number.isNaN(o.value)), i = p(() => t.value ? 0 : e(Number(o.value))), n = p(() => t.value ? void 0 : i.value), d = p(() => !!a.default), r = p(() => o.label ? o.label : o.showValue && !t.value ? `${Math.round(i.value)}%` : ""), u = p(() => {
|
|
7548
7577
|
const y = ["vf-progress", `vf-progress_${o.variant}`, `vf-progress_size-${o.size}`];
|
|
7549
7578
|
return t.value && y.push("vf-progress_indeterminate"), y;
|
|
7550
7579
|
}), c = p(() => {
|
|
@@ -7594,13 +7623,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7594
7623
|
]))
|
|
7595
7624
|
])),
|
|
7596
7625
|
r.value || d.value ? (v(), g("span", cs, [
|
|
7597
|
-
|
|
7626
|
+
j(y.$slots, "default", {}, () => [
|
|
7598
7627
|
fe(G(r.value), 1)
|
|
7599
7628
|
])
|
|
7600
7629
|
])) : Q("", !0)
|
|
7601
7630
|
], 10, ss));
|
|
7602
7631
|
}
|
|
7603
|
-
}), vs = ["data-variant", "data-severity", "aria-label"],
|
|
7632
|
+
}), vs = ["data-variant", "data-severity", "aria-label"], ov = /* @__PURE__ */ oe({
|
|
7604
7633
|
__name: "badge",
|
|
7605
7634
|
props: {
|
|
7606
7635
|
label: { default: "" },
|
|
@@ -7618,7 +7647,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7618
7647
|
role: "status",
|
|
7619
7648
|
"aria-label": e.ariaLabel || void 0
|
|
7620
7649
|
}, [
|
|
7621
|
-
|
|
7650
|
+
j(e.$slots, "default", {}, () => [
|
|
7622
7651
|
fe(G(e.label), 1)
|
|
7623
7652
|
])
|
|
7624
7653
|
], 10, vs));
|
|
@@ -7626,7 +7655,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7626
7655
|
}), fs = ["data-variant", "data-severity", "aria-label"], ps = {
|
|
7627
7656
|
key: 0,
|
|
7628
7657
|
class: "vf-chip__icon"
|
|
7629
|
-
}, ms = { class: "vf-chip__label" }, gs = ["disabled", "aria-label"],
|
|
7658
|
+
}, ms = { class: "vf-chip__label" }, gs = ["disabled", "aria-label"], rv = /* @__PURE__ */ oe({
|
|
7630
7659
|
__name: "chip",
|
|
7631
7660
|
props: {
|
|
7632
7661
|
label: { default: "" },
|
|
@@ -7655,12 +7684,12 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7655
7684
|
"aria-label": n.ariaLabel || void 0
|
|
7656
7685
|
}, [
|
|
7657
7686
|
n.$slots.icon || n.icon ? (v(), g("span", ps, [
|
|
7658
|
-
|
|
7687
|
+
j(n.$slots, "icon", {}, () => [
|
|
7659
7688
|
Ge(We(Ne), { icon: n.icon }, null, 8, ["icon"])
|
|
7660
7689
|
])
|
|
7661
7690
|
])) : Q("", !0),
|
|
7662
7691
|
x("span", ms, [
|
|
7663
|
-
|
|
7692
|
+
j(n.$slots, "default", {}, () => [
|
|
7664
7693
|
fe(G(n.label), 1)
|
|
7665
7694
|
])
|
|
7666
7695
|
]),
|
|
@@ -7672,7 +7701,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7672
7701
|
"aria-label": n.closeLabel || "Remove",
|
|
7673
7702
|
onClick: i
|
|
7674
7703
|
}, [
|
|
7675
|
-
|
|
7704
|
+
j(n.$slots, "close", {}, () => [
|
|
7676
7705
|
d[0] || (d[0] = fe("×"))
|
|
7677
7706
|
])
|
|
7678
7707
|
], 8, gs)) : Q("", !0)
|
|
@@ -7681,7 +7710,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7681
7710
|
}), bs = ["aria-label", "aria-labelledby"], hs = ["disabled", "data-value", "onClick"], ys = { class: "vf-filter-chips__label" }, _s = {
|
|
7682
7711
|
key: 0,
|
|
7683
7712
|
class: "vf-filter-chips__count"
|
|
7684
|
-
}, ks = ["disabled", "aria-label"],
|
|
7713
|
+
}, ks = ["disabled", "aria-label"], lv = /* @__PURE__ */ oe({
|
|
7685
7714
|
__name: "filter-chips",
|
|
7686
7715
|
props: {
|
|
7687
7716
|
modelValue: { default: null },
|
|
@@ -7759,7 +7788,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7759
7788
|
}), Cs = ["data-status", "aria-label"], $s = { class: "vf-avatar__content" }, ws = ["src", "alt"], zs = {
|
|
7760
7789
|
key: 1,
|
|
7761
7790
|
class: "vf-avatar__initials"
|
|
7762
|
-
}, Ss = ["data-status"],
|
|
7791
|
+
}, Ss = ["data-status"], nv = /* @__PURE__ */ oe({
|
|
7763
7792
|
__name: "avatar",
|
|
7764
7793
|
props: {
|
|
7765
7794
|
src: { default: "" },
|
|
@@ -7796,7 +7825,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7796
7825
|
"aria-label": n.value
|
|
7797
7826
|
}, [
|
|
7798
7827
|
x("div", $s, [
|
|
7799
|
-
|
|
7828
|
+
j(u.$slots, "default", {}, () => [
|
|
7800
7829
|
i.value ? (v(), g("img", {
|
|
7801
7830
|
key: 0,
|
|
7802
7831
|
class: "vf-avatar__image",
|
|
@@ -7817,7 +7846,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7817
7846
|
}), Bs = ["aria-label", "data-severity"], xs = {
|
|
7818
7847
|
key: 0,
|
|
7819
7848
|
class: "vf-spinner__label"
|
|
7820
|
-
},
|
|
7849
|
+
}, sv = /* @__PURE__ */ oe({
|
|
7821
7850
|
name: "VfSpinner",
|
|
7822
7851
|
__name: "spinner",
|
|
7823
7852
|
props: {
|
|
@@ -7828,7 +7857,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7828
7857
|
ariaLabel: { default: "Loading" }
|
|
7829
7858
|
},
|
|
7830
7859
|
setup(s) {
|
|
7831
|
-
const o = s, a =
|
|
7860
|
+
const o = s, a = Ue(), e = p(() => !!a.default), t = p(() => o.label || ""), i = p(() => ["vf-spinner", `vf-spinner_${o.variant}`, `vf-spinner_size-${o.size}`]);
|
|
7832
7861
|
return (n, d) => (v(), g("div", {
|
|
7833
7862
|
class: Z(i.value),
|
|
7834
7863
|
role: "status",
|
|
@@ -7840,7 +7869,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7840
7869
|
"aria-hidden": "true"
|
|
7841
7870
|
}, null, -1)),
|
|
7842
7871
|
t.value || e.value ? (v(), g("span", xs, [
|
|
7843
|
-
|
|
7872
|
+
j(n.$slots, "default", {}, () => [
|
|
7844
7873
|
fe(G(t.value), 1)
|
|
7845
7874
|
])
|
|
7846
7875
|
])) : Q("", !0)
|
|
@@ -7858,7 +7887,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7858
7887
|
}, Os = ["colspan"], Es = {
|
|
7859
7888
|
key: 1,
|
|
7860
7889
|
class: "vf-datatable__row vf-datatable__row_state"
|
|
7861
|
-
}, As = ["colspan"], Hs = ["onClick"],
|
|
7890
|
+
}, As = ["colspan"], Hs = ["onClick"], iv = /* @__PURE__ */ oe({
|
|
7862
7891
|
__name: "data-table",
|
|
7863
7892
|
props: {
|
|
7864
7893
|
rows: { default: () => [] },
|
|
@@ -7957,7 +7986,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7957
7986
|
onClick: (R) => _(w)
|
|
7958
7987
|
}, [
|
|
7959
7988
|
x("span", Ds, [
|
|
7960
|
-
$.$slots[`header-${w.field}`] ?
|
|
7989
|
+
$.$slots[`header-${w.field}`] ? j($.$slots, `header-${w.field}`, {
|
|
7961
7990
|
key: 0,
|
|
7962
7991
|
column: w
|
|
7963
7992
|
}) : (v(), g(ue, { key: 1 }, [
|
|
@@ -7968,7 +7997,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7968
7997
|
class: Z(["vf-datatable__sort-icon", M(w)])
|
|
7969
7998
|
}, G(B(w)), 3)
|
|
7970
7999
|
], 8, Is)) : (v(), g("span", Rs, [
|
|
7971
|
-
$.$slots[`header-${w.field}`] ?
|
|
8000
|
+
$.$slots[`header-${w.field}`] ? j($.$slots, `header-${w.field}`, {
|
|
7972
8001
|
key: 0,
|
|
7973
8002
|
column: w
|
|
7974
8003
|
}) : (v(), g(ue, { key: 1 }, [
|
|
@@ -7984,7 +8013,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7984
8013
|
class: "vf-datatable__cell vf-datatable__cell_state",
|
|
7985
8014
|
colspan: r.value
|
|
7986
8015
|
}, [
|
|
7987
|
-
|
|
8016
|
+
j($.$slots, "loading", {}, () => [
|
|
7988
8017
|
fe(G($.loadingText), 1)
|
|
7989
8018
|
])
|
|
7990
8019
|
], 8, Os)
|
|
@@ -7998,7 +8027,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
7998
8027
|
class: Z(["vf-datatable__cell", I(D)]),
|
|
7999
8028
|
style: ye(O(D))
|
|
8000
8029
|
}, [
|
|
8001
|
-
$.$slots[`cell-${D.field}`] ?
|
|
8030
|
+
$.$slots[`cell-${D.field}`] ? j($.$slots, `cell-${D.field}`, {
|
|
8002
8031
|
key: 0,
|
|
8003
8032
|
row: w,
|
|
8004
8033
|
column: D,
|
|
@@ -8013,7 +8042,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8013
8042
|
class: "vf-datatable__cell vf-datatable__cell_state",
|
|
8014
8043
|
colspan: r.value
|
|
8015
8044
|
}, [
|
|
8016
|
-
|
|
8045
|
+
j($.$slots, "empty", {}, () => [
|
|
8017
8046
|
fe(G($.emptyText), 1)
|
|
8018
8047
|
])
|
|
8019
8048
|
], 8, As)
|
|
@@ -8025,13 +8054,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8025
8054
|
}), Ws = { class: "vf-slider__control" }, Ks = ["min", "max", "step", "value", "disabled", "aria-label"], Ns = ["min", "max", "step", "value", "disabled", "aria-label"], Gs = {
|
|
8026
8055
|
key: 0,
|
|
8027
8056
|
class: "vf-slider__marks"
|
|
8028
|
-
},
|
|
8057
|
+
}, js = {
|
|
8029
8058
|
key: 0,
|
|
8030
8059
|
class: "vf-slider__mark-label"
|
|
8031
|
-
},
|
|
8060
|
+
}, Ys = {
|
|
8032
8061
|
key: 1,
|
|
8033
8062
|
class: "vf-slider__value"
|
|
8034
|
-
},
|
|
8063
|
+
}, dv = /* @__PURE__ */ oe({
|
|
8035
8064
|
name: "VfSlider",
|
|
8036
8065
|
__name: "slider",
|
|
8037
8066
|
props: {
|
|
@@ -8055,8 +8084,8 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8055
8084
|
const W = L.toString();
|
|
8056
8085
|
return W.includes(".") ? W.split(".")[1].length : 0;
|
|
8057
8086
|
}, u = (L) => Math.min(n.value, Math.max(i.value, L)), c = (L) => {
|
|
8058
|
-
const W = Number(L), b = i.value, E = Number.isFinite(W) ? W : b, K = u(E), H = d.value, T = r(H),
|
|
8059
|
-
return Number.parseFloat(
|
|
8087
|
+
const W = Number(L), b = i.value, E = Number.isFinite(W) ? W : b, K = u(E), H = d.value, T = r(H), Y = Math.round((K - i.value) / H) * H + i.value;
|
|
8088
|
+
return Number.parseFloat(Y.toFixed(T));
|
|
8060
8089
|
}, f = p(() => {
|
|
8061
8090
|
if (!t.value) {
|
|
8062
8091
|
const E = c(e.modelValue ?? i.value);
|
|
@@ -8158,13 +8187,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8158
8187
|
class: "vf-slider__mark",
|
|
8159
8188
|
style: ye(z(b.value))
|
|
8160
8189
|
}, [
|
|
8161
|
-
b.label ? (v(), g("span",
|
|
8190
|
+
b.label ? (v(), g("span", js, G(b.label), 1)) : Q("", !0)
|
|
8162
8191
|
], 4))), 128))
|
|
8163
8192
|
])) : Q("", !0),
|
|
8164
|
-
L.showValue ? (v(), g("div",
|
|
8193
|
+
L.showValue ? (v(), g("div", Ys, G(F.value), 1)) : Q("", !0)
|
|
8165
8194
|
], 6));
|
|
8166
8195
|
}
|
|
8167
|
-
}), zt = Symbol("VueForgeSplitter"), Xs = ["aria-orientation", "aria-valuenow", "onMousedown", "onKeydown"],
|
|
8196
|
+
}), zt = Symbol("VueForgeSplitter"), Xs = ["aria-orientation", "aria-valuenow", "onMousedown", "onKeydown"], uv = /* @__PURE__ */ oe({
|
|
8168
8197
|
__name: "splitter",
|
|
8169
8198
|
props: {
|
|
8170
8199
|
modelValue: { default: () => [] },
|
|
@@ -8183,14 +8212,14 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8183
8212
|
}, y = (L) => {
|
|
8184
8213
|
if (!L.length)
|
|
8185
8214
|
return [];
|
|
8186
|
-
const W = L.reduce((T,
|
|
8215
|
+
const W = L.reduce((T, Y) => T + Y, 0);
|
|
8187
8216
|
if (W <= 0) {
|
|
8188
8217
|
const T = 100 / L.length;
|
|
8189
8218
|
return L.map(
|
|
8190
|
-
(
|
|
8219
|
+
(Y, ee) => ee === L.length - 1 ? m(100 - T * (L.length - 1)) : T
|
|
8191
8220
|
);
|
|
8192
8221
|
}
|
|
8193
|
-
const E = L.map((T) => T / W * 100).map((T) => m(T)), K = m(100 - E.reduce((T,
|
|
8222
|
+
const E = L.map((T) => T / W * 100).map((T) => m(T)), K = m(100 - E.reduce((T, Y) => T + Y, 0)), H = E.length - 1;
|
|
8194
8223
|
return E[H] = m(E[H] + K), E;
|
|
8195
8224
|
}, l = (L, W) => {
|
|
8196
8225
|
if (!L.length)
|
|
@@ -8220,18 +8249,18 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8220
8249
|
for (let U = 0; U < K.length; ++U)
|
|
8221
8250
|
K[U] += le;
|
|
8222
8251
|
}
|
|
8223
|
-
const T = K.map((ee) => m(ee)),
|
|
8224
|
-
return T[T.length - 1] = m(T[T.length - 1] +
|
|
8252
|
+
const T = K.map((ee) => m(ee)), Y = m(100 - T.reduce((ee, le) => ee + le, 0));
|
|
8253
|
+
return T[T.length - 1] = m(T[T.length - 1] + Y), T;
|
|
8225
8254
|
}, k = (L) => {
|
|
8226
8255
|
if (!L)
|
|
8227
8256
|
return [];
|
|
8228
8257
|
const W = a.modelValue;
|
|
8229
8258
|
if (W.length === L && W.every(c))
|
|
8230
8259
|
return y(W);
|
|
8231
|
-
const b = n.value.map((
|
|
8260
|
+
const b = n.value.map((Y) => Y.size), E = b.filter(c);
|
|
8232
8261
|
if (!E.length)
|
|
8233
8262
|
return y(Array.from({ length: L }, () => 1));
|
|
8234
|
-
const K = E.reduce((
|
|
8263
|
+
const K = E.reduce((Y, ee) => Y + ee, 0), H = b.length - E.length, T = b.map((Y) => c(Y) ? Y : 0);
|
|
8235
8264
|
if (K < 100 && H > 0) {
|
|
8236
8265
|
const ee = (100 - K) / H;
|
|
8237
8266
|
for (let le = 0; le < T.length; ++le)
|
|
@@ -8277,7 +8306,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8277
8306
|
const E = [...d.value];
|
|
8278
8307
|
if (!E[L] || !E[L + 1])
|
|
8279
8308
|
return;
|
|
8280
|
-
const K = _(), H = E[L] + E[L + 1], T = K[L] ?? 0,
|
|
8309
|
+
const K = _(), H = E[L] + E[L + 1], T = K[L] ?? 0, Y = K[L + 1] ?? 0, ee = f(E[L] + W, T, H - Y), le = H - ee;
|
|
8281
8310
|
E[L] = m(ee), E[L + 1] = m(le);
|
|
8282
8311
|
const U = l(y(E), K);
|
|
8283
8312
|
d.value = U, b && e("update:modelValue", [...U]);
|
|
@@ -8301,11 +8330,11 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8301
8330
|
const b = a.direction === "horizontal", E = b ? "ArrowLeft" : "ArrowUp", K = b ? "ArrowRight" : "ArrowDown";
|
|
8302
8331
|
if ([E, K, "Home", "End"].includes(L.key)) {
|
|
8303
8332
|
if (L.preventDefault(), L.key === "Home") {
|
|
8304
|
-
const H = _(), T = d.value[W] ?? 0,
|
|
8305
|
-
$(W,
|
|
8333
|
+
const H = _(), T = d.value[W] ?? 0, Y = H[W] ?? 0;
|
|
8334
|
+
$(W, Y - T);
|
|
8306
8335
|
} else if (L.key === "End") {
|
|
8307
|
-
const H = _(), T = (d.value[W] ?? 0) + (d.value[W + 1] ?? 0),
|
|
8308
|
-
$(W, ee -
|
|
8336
|
+
const H = _(), T = (d.value[W] ?? 0) + (d.value[W + 1] ?? 0), Y = d.value[W] ?? 0, ee = T - (H[W + 1] ?? 0);
|
|
8337
|
+
$(W, ee - Y);
|
|
8309
8338
|
} else {
|
|
8310
8339
|
const H = L.shiftKey ? 5 : 2, T = L.key === K ? H : -H;
|
|
8311
8340
|
$(W, T);
|
|
@@ -8347,7 +8376,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8347
8376
|
ref: i,
|
|
8348
8377
|
class: Z(M.value)
|
|
8349
8378
|
}, [
|
|
8350
|
-
|
|
8379
|
+
j(L.$slots, "default"),
|
|
8351
8380
|
(v(!0), g(ue, null, me(S.value, (b, E) => (v(), g("div", {
|
|
8352
8381
|
key: `gutter-${E}`,
|
|
8353
8382
|
class: Z(["vf-splitter__gutter", { "is-dragging": r.value === E }]),
|
|
@@ -8363,14 +8392,14 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8363
8392
|
]), 46, Xs))), 128))
|
|
8364
8393
|
], 2));
|
|
8365
8394
|
}
|
|
8366
|
-
}),
|
|
8395
|
+
}), cv = /* @__PURE__ */ oe({
|
|
8367
8396
|
__name: "splitter-panel",
|
|
8368
8397
|
props: {
|
|
8369
8398
|
size: { default: void 0 },
|
|
8370
8399
|
minSize: { default: void 0 }
|
|
8371
8400
|
},
|
|
8372
8401
|
setup(s) {
|
|
8373
|
-
const o = s, a =
|
|
8402
|
+
const o = s, a = Xe(zt, null);
|
|
8374
8403
|
if (!a)
|
|
8375
8404
|
throw new Error("SplitterPanel must be used inside Splitter");
|
|
8376
8405
|
const e = a.registerPanel({
|
|
@@ -8389,7 +8418,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8389
8418
|
class: Z(t.value),
|
|
8390
8419
|
style: ye(i.value)
|
|
8391
8420
|
}, [
|
|
8392
|
-
|
|
8421
|
+
j(n.$slots, "default")
|
|
8393
8422
|
], 6));
|
|
8394
8423
|
}
|
|
8395
8424
|
}), Us = ["aria-label", "aria-labelledby"], qs = { class: "vf-stepper__list" }, Qs = { class: "vf-stepper__indicator-wrap" }, Zs = { class: "vf-stepper__indicator" }, Js = {
|
|
@@ -8402,7 +8431,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8402
8431
|
}, ai = {
|
|
8403
8432
|
key: 1,
|
|
8404
8433
|
class: "vf-stepper__description"
|
|
8405
|
-
},
|
|
8434
|
+
}, vv = /* @__PURE__ */ oe({
|
|
8406
8435
|
name: "VfStepper",
|
|
8407
8436
|
__name: "stepper",
|
|
8408
8437
|
props: {
|
|
@@ -8446,7 +8475,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8446
8475
|
key: S(I, O),
|
|
8447
8476
|
class: Z(["vf-stepper__item", l(I, O)])
|
|
8448
8477
|
}, [
|
|
8449
|
-
(v(), pe(
|
|
8478
|
+
(v(), pe(Ye(k(I)), {
|
|
8450
8479
|
class: "vf-stepper__button",
|
|
8451
8480
|
type: _(I),
|
|
8452
8481
|
disabled: B(I),
|
|
@@ -8457,7 +8486,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8457
8486
|
default: _e(() => [
|
|
8458
8487
|
x("span", Qs, [
|
|
8459
8488
|
x("span", Zs, [
|
|
8460
|
-
|
|
8489
|
+
j(h.$slots, "indicator", {
|
|
8461
8490
|
step: I,
|
|
8462
8491
|
index: O,
|
|
8463
8492
|
status: r(I, O),
|
|
@@ -8472,7 +8501,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8472
8501
|
O < t.value.length - 1 ? (v(), g("span", Js)) : Q("", !0)
|
|
8473
8502
|
]),
|
|
8474
8503
|
x("span", ei, [
|
|
8475
|
-
|
|
8504
|
+
j(h.$slots, "step", {
|
|
8476
8505
|
step: I,
|
|
8477
8506
|
index: O,
|
|
8478
8507
|
status: r(I, O),
|
|
@@ -8498,7 +8527,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8498
8527
|
}, li = { class: "vf-wizard__list" }, ni = ["id", "aria-selected", "aria-controls", "disabled", "onClick"], si = { class: "vf-wizard__indicator" }, ii = { class: "vf-wizard__meta" }, di = { class: "vf-wizard__title" }, ui = {
|
|
8499
8528
|
key: 0,
|
|
8500
8529
|
class: "vf-wizard__description"
|
|
8501
|
-
}, ci = { class: "vf-wizard__content" }, vi = { class: "vf-wizard__footer" }, fi = ["disabled"],
|
|
8530
|
+
}, ci = { class: "vf-wizard__content" }, vi = { class: "vf-wizard__footer" }, fi = ["disabled"], fv = /* @__PURE__ */ oe({
|
|
8502
8531
|
__name: "wizard",
|
|
8503
8532
|
props: {
|
|
8504
8533
|
modelValue: { default: void 0 },
|
|
@@ -8613,7 +8642,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8613
8642
|
onClick: (L) => D(q)
|
|
8614
8643
|
}, [
|
|
8615
8644
|
x("span", si, [
|
|
8616
|
-
|
|
8645
|
+
j(z.$slots, "indicator", {
|
|
8617
8646
|
step: A,
|
|
8618
8647
|
index: q
|
|
8619
8648
|
}, () => [
|
|
@@ -8629,10 +8658,10 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8629
8658
|
])
|
|
8630
8659
|
]),
|
|
8631
8660
|
x("div", ci, [
|
|
8632
|
-
|
|
8661
|
+
j(z.$slots, "default")
|
|
8633
8662
|
]),
|
|
8634
8663
|
x("div", vi, [
|
|
8635
|
-
|
|
8664
|
+
j(z.$slots, "actions", {
|
|
8636
8665
|
step: c.value,
|
|
8637
8666
|
index: u.value,
|
|
8638
8667
|
isFirst: f.value,
|
|
@@ -8656,13 +8685,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8656
8685
|
])
|
|
8657
8686
|
], 10, oi));
|
|
8658
8687
|
}
|
|
8659
|
-
}), pi = ["id", "aria-labelledby", "aria-hidden"],
|
|
8688
|
+
}), pi = ["id", "aria-labelledby", "aria-hidden"], pv = /* @__PURE__ */ oe({
|
|
8660
8689
|
__name: "wizard-step",
|
|
8661
8690
|
props: {
|
|
8662
8691
|
value: {}
|
|
8663
8692
|
},
|
|
8664
8693
|
setup(s) {
|
|
8665
|
-
const o = s, a =
|
|
8694
|
+
const o = s, a = Xe(St, null);
|
|
8666
8695
|
if (!a)
|
|
8667
8696
|
throw new Error("WizardStep must be used inside Wizard");
|
|
8668
8697
|
const e = p(() => a.isActive(o.value)), t = p(() => a.getPanelId(o.value)), i = p(() => a.getStepId(o.value));
|
|
@@ -8673,7 +8702,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8673
8702
|
"aria-labelledby": i.value,
|
|
8674
8703
|
"aria-hidden": e.value ? "false" : "true"
|
|
8675
8704
|
}, [
|
|
8676
|
-
|
|
8705
|
+
j(n.$slots, "default")
|
|
8677
8706
|
], 8, pi)), [
|
|
8678
8707
|
[$e, e.value]
|
|
8679
8708
|
]);
|
|
@@ -8694,7 +8723,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8694
8723
|
}, zi = {
|
|
8695
8724
|
key: 2,
|
|
8696
8725
|
class: "vf-timeline__description"
|
|
8697
|
-
},
|
|
8726
|
+
}, mv = /* @__PURE__ */ oe({
|
|
8698
8727
|
name: "VfTimeline",
|
|
8699
8728
|
__name: "timeline",
|
|
8700
8729
|
props: {
|
|
@@ -8719,7 +8748,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8719
8748
|
}, [
|
|
8720
8749
|
x("div", hi, [
|
|
8721
8750
|
x("span", yi, [
|
|
8722
|
-
|
|
8751
|
+
j(i.$slots, "marker", {
|
|
8723
8752
|
item: d,
|
|
8724
8753
|
index: r
|
|
8725
8754
|
}, () => [
|
|
@@ -8732,7 +8761,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8732
8761
|
r < a.value.length - 1 ? (v(), g("span", ki)) : Q("", !0)
|
|
8733
8762
|
]),
|
|
8734
8763
|
x("div", Ci, [
|
|
8735
|
-
|
|
8764
|
+
j(i.$slots, "item", {
|
|
8736
8765
|
item: d,
|
|
8737
8766
|
index: r
|
|
8738
8767
|
}, () => [
|
|
@@ -8745,7 +8774,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8745
8774
|
])
|
|
8746
8775
|
], 10, mi));
|
|
8747
8776
|
}
|
|
8748
|
-
}), Si = ["aria-label", "aria-readonly", "aria-disabled"], Bi = ["aria-checked", "aria-label", "tabindex", "disabled", "onClick", "onKeydown"], xi = { class: "vf-rating__icon vf-rating__icon_empty" }, Vi = { class: "vf-rating__icon_inner" },
|
|
8777
|
+
}), Si = ["aria-label", "aria-readonly", "aria-disabled"], Bi = ["aria-checked", "aria-label", "tabindex", "disabled", "onClick", "onKeydown"], xi = { class: "vf-rating__icon vf-rating__icon_empty" }, Vi = { class: "vf-rating__icon_inner" }, gv = /* @__PURE__ */ oe({
|
|
8749
8778
|
__name: "rating",
|
|
8750
8779
|
props: {
|
|
8751
8780
|
modelValue: { default: 0 },
|
|
@@ -8868,7 +8897,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8868
8897
|
onKeydown: (z) => h(D, z)
|
|
8869
8898
|
}, [
|
|
8870
8899
|
x("span", xi, [
|
|
8871
|
-
|
|
8900
|
+
j(w.$slots, "icon", {}, () => [
|
|
8872
8901
|
R[0] || (R[0] = x("svg", {
|
|
8873
8902
|
viewBox: "0 0 24 24",
|
|
8874
8903
|
"aria-hidden": "true",
|
|
@@ -8886,7 +8915,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
8886
8915
|
style: ye({ width: O(D) })
|
|
8887
8916
|
}, [
|
|
8888
8917
|
x("span", Vi, [
|
|
8889
|
-
|
|
8918
|
+
j(w.$slots, "active-icon", {}, () => [
|
|
8890
8919
|
R[1] || (R[1] = x("svg", {
|
|
8891
8920
|
viewBox: "0 0 24 24",
|
|
8892
8921
|
"aria-hidden": "true",
|
|
@@ -9025,7 +9054,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9025
9054
|
onClick: re(y, ["stop"])
|
|
9026
9055
|
}, G(i.value ? "-" : "+"), 11, Ti)) : (v(), g("span", Ii)),
|
|
9027
9056
|
x("span", Di, [
|
|
9028
|
-
|
|
9057
|
+
j(l.$slots, "label", {
|
|
9029
9058
|
node: l.node,
|
|
9030
9059
|
level: l.level,
|
|
9031
9060
|
selected: t.value,
|
|
@@ -9053,7 +9082,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9053
9082
|
"on-toggle": l.onToggle
|
|
9054
9083
|
}, {
|
|
9055
9084
|
label: _e((M) => [
|
|
9056
|
-
|
|
9085
|
+
j(l.$slots, "label", st({ ref_for: !0 }, M))
|
|
9057
9086
|
]),
|
|
9058
9087
|
_: 2
|
|
9059
9088
|
}, 1032, ["node", "level", "size", "variant", "disabled", "expand-on-click", "selectable", "is-selected", "is-expanded", "is-disabled", "on-select", "on-toggle"]))), 128))
|
|
@@ -9123,7 +9152,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9123
9152
|
"on-toggle": y
|
|
9124
9153
|
}, {
|
|
9125
9154
|
label: _e((B) => [
|
|
9126
|
-
|
|
9155
|
+
j(l.$slots, "label", st({ ref_for: !0 }, B))
|
|
9127
9156
|
]),
|
|
9128
9157
|
_: 2
|
|
9129
9158
|
}, 1032, ["node", "size", "variant", "disabled", "expand-on-click", "selectable"]))), 128))
|
|
@@ -9139,7 +9168,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9139
9168
|
}, Gi = {
|
|
9140
9169
|
key: 3,
|
|
9141
9170
|
class: "vf-treeselect__empty"
|
|
9142
|
-
},
|
|
9171
|
+
}, bv = /* @__PURE__ */ oe({
|
|
9143
9172
|
__name: "tree-select",
|
|
9144
9173
|
props: {
|
|
9145
9174
|
items: { default: () => [] },
|
|
@@ -9175,13 +9204,13 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9175
9204
|
const e = o, t = s, i = N(null), n = N(null), d = N(null), r = N(null), u = N(!1), c = N(""), f = N("bottom"), m = N("bottom"), y = `vf-treeselect-panel-${++a}`;
|
|
9176
9205
|
let l = null;
|
|
9177
9206
|
const k = (H) => Array.isArray(H) ? H : H == null ? [] : [H], _ = (H) => {
|
|
9178
|
-
const T = [],
|
|
9207
|
+
const T = [], Y = (ee) => {
|
|
9179
9208
|
ee.forEach((le) => {
|
|
9180
9209
|
var U;
|
|
9181
|
-
T.push(le), (U = le.children) != null && U.length &&
|
|
9210
|
+
T.push(le), (U = le.children) != null && U.length && Y(le.children);
|
|
9182
9211
|
});
|
|
9183
9212
|
};
|
|
9184
|
-
return
|
|
9213
|
+
return Y(H), T;
|
|
9185
9214
|
}, B = p(() => k(t.modelValue)), M = p(() => B.value.length > 0), S = p(() => {
|
|
9186
9215
|
const H = /* @__PURE__ */ new Map();
|
|
9187
9216
|
return _(t.items).forEach((T) => {
|
|
@@ -9193,15 +9222,15 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9193
9222
|
}), C = (H, T) => H.label.toLowerCase().includes(T), I = (H, T) => {
|
|
9194
9223
|
if (!T)
|
|
9195
9224
|
return H;
|
|
9196
|
-
const
|
|
9225
|
+
const Y = [];
|
|
9197
9226
|
return H.forEach((ee) => {
|
|
9198
9227
|
var U;
|
|
9199
9228
|
const le = (U = ee.children) != null && U.length ? I(ee.children, T) : [];
|
|
9200
|
-
(C(ee, T) || le.length) &&
|
|
9229
|
+
(C(ee, T) || le.length) && Y.push({
|
|
9201
9230
|
...ee,
|
|
9202
9231
|
children: le
|
|
9203
9232
|
});
|
|
9204
|
-
}),
|
|
9233
|
+
}), Y;
|
|
9205
9234
|
}, O = p(() => {
|
|
9206
9235
|
if (!t.filter)
|
|
9207
9236
|
return t.items;
|
|
@@ -9223,12 +9252,12 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9223
9252
|
V();
|
|
9224
9253
|
}, R = (H) => {
|
|
9225
9254
|
t.readonly || (e("update:modelValue", H), t.multiple || $());
|
|
9226
|
-
}, D = (H, T,
|
|
9227
|
-
t.readonly || e("change", H, T,
|
|
9255
|
+
}, D = (H, T, Y) => {
|
|
9256
|
+
t.readonly || e("change", H, T, Y);
|
|
9228
9257
|
}, z = (H) => {
|
|
9229
9258
|
e("update:expandedKeys", H);
|
|
9230
|
-
}, F = (H, T,
|
|
9231
|
-
e("toggle", H, T,
|
|
9259
|
+
}, F = (H, T, Y, ee) => {
|
|
9260
|
+
e("toggle", H, T, Y, ee);
|
|
9232
9261
|
}, A = (H, T) => {
|
|
9233
9262
|
e("nodeClick", H, T);
|
|
9234
9263
|
}, q = () => {
|
|
@@ -9240,15 +9269,15 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9240
9269
|
const T = H.target;
|
|
9241
9270
|
c.value = T.value, e("search", T.value);
|
|
9242
9271
|
}, W = (H) => e("focus", H), b = (H) => e("blur", H), E = (H) => {
|
|
9243
|
-
var
|
|
9272
|
+
var Y;
|
|
9244
9273
|
if (!u.value || !i.value)
|
|
9245
9274
|
return;
|
|
9246
9275
|
const T = H.target;
|
|
9247
|
-
i.value.contains(T) || (
|
|
9276
|
+
i.value.contains(T) || (Y = d.value) != null && Y.contains(T) || $();
|
|
9248
9277
|
}, K = () => {
|
|
9249
9278
|
if (!n.value || !d.value)
|
|
9250
9279
|
return;
|
|
9251
|
-
const H = n.value, T = d.value,
|
|
9280
|
+
const H = n.value, T = d.value, Y = async () => {
|
|
9252
9281
|
const {
|
|
9253
9282
|
x: X,
|
|
9254
9283
|
y: ae,
|
|
@@ -9260,7 +9289,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9260
9289
|
});
|
|
9261
9290
|
m.value = ne ?? f.value, T.style.minWidth = `${H.getBoundingClientRect().width}px`, T.style.left = `${X}px`, T.style.top = `${ae}px`;
|
|
9262
9291
|
}, ee = async () => {
|
|
9263
|
-
await
|
|
9292
|
+
await Y();
|
|
9264
9293
|
}, le = De(H, () => {
|
|
9265
9294
|
ee();
|
|
9266
9295
|
}), U = () => {
|
|
@@ -9365,8 +9394,8 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9365
9394
|
onToggle: F,
|
|
9366
9395
|
onNodeClick: A
|
|
9367
9396
|
}, {
|
|
9368
|
-
label: _e((
|
|
9369
|
-
|
|
9397
|
+
label: _e((Y) => [
|
|
9398
|
+
j(H.$slots, "label", Pt(Ot(Y)))
|
|
9370
9399
|
]),
|
|
9371
9400
|
_: 3
|
|
9372
9401
|
}, 8, ["items", "model-value", "expanded-keys", "multiple", "selectable", "expand-on-click", "disabled", "size", "variant"])) : (v(), g("div", Gi, G(H.emptyText), 1))
|
|
@@ -9376,7 +9405,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9376
9405
|
]))
|
|
9377
9406
|
], 2));
|
|
9378
9407
|
}
|
|
9379
|
-
}),
|
|
9408
|
+
}), ji = ["aria-label"], Yi = { class: "vf-breadcrumbs__list" }, Xi = {
|
|
9380
9409
|
key: 0,
|
|
9381
9410
|
class: "vf-breadcrumbs__current",
|
|
9382
9411
|
"aria-current": "page"
|
|
@@ -9384,7 +9413,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9384
9413
|
key: 0,
|
|
9385
9414
|
class: "vf-breadcrumbs__separator",
|
|
9386
9415
|
"aria-hidden": "true"
|
|
9387
|
-
},
|
|
9416
|
+
}, hv = /* @__PURE__ */ oe({
|
|
9388
9417
|
name: "VfBreadcrumbs",
|
|
9389
9418
|
__name: "breadcrumbs",
|
|
9390
9419
|
props: {
|
|
@@ -9398,14 +9427,14 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9398
9427
|
class: "vf-breadcrumbs",
|
|
9399
9428
|
"aria-label": n.ariaLabel
|
|
9400
9429
|
}, [
|
|
9401
|
-
x("ol",
|
|
9430
|
+
x("ol", Yi, [
|
|
9402
9431
|
(v(!0), g(ue, null, me(a.value, (r, u) => (v(), g(ue, {
|
|
9403
9432
|
key: i(r, u)
|
|
9404
9433
|
}, [
|
|
9405
9434
|
x("li", {
|
|
9406
9435
|
class: Z(["vf-breadcrumbs__item", { "is-current": t(r, u), "is-disabled": r.disabled }])
|
|
9407
9436
|
}, [
|
|
9408
|
-
|
|
9437
|
+
j(n.$slots, "item", {
|
|
9409
9438
|
item: r,
|
|
9410
9439
|
index: u,
|
|
9411
9440
|
isLast: u === a.value.length - 1,
|
|
@@ -9426,18 +9455,18 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9426
9455
|
])
|
|
9427
9456
|
], 2),
|
|
9428
9457
|
u < a.value.length - 1 ? (v(), g("li", Ui, [
|
|
9429
|
-
|
|
9458
|
+
j(n.$slots, "separator", { separator: n.separator }, () => [
|
|
9430
9459
|
fe(G(n.separator), 1)
|
|
9431
9460
|
])
|
|
9432
9461
|
])) : Q("", !0)
|
|
9433
9462
|
], 64))), 128))
|
|
9434
9463
|
])
|
|
9435
|
-
], 8,
|
|
9464
|
+
], 8, ji));
|
|
9436
9465
|
}
|
|
9437
9466
|
}), qi = ["aria-orientation", "aria-label"], Qi = {
|
|
9438
9467
|
key: 0,
|
|
9439
9468
|
class: "vf-divider__label"
|
|
9440
|
-
},
|
|
9469
|
+
}, yv = /* @__PURE__ */ oe({
|
|
9441
9470
|
name: "VfDivider",
|
|
9442
9471
|
__name: "divider",
|
|
9443
9472
|
props: {
|
|
@@ -9448,7 +9477,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9448
9477
|
ariaLabel: { default: "Divider" }
|
|
9449
9478
|
},
|
|
9450
9479
|
setup(s) {
|
|
9451
|
-
const o = s, a =
|
|
9480
|
+
const o = s, a = Ue(), e = p(() => o.orientation === "horizontal" && (!!o.label || !!a.default)), t = p(() => {
|
|
9452
9481
|
const i = ["vf-divider", `vf-divider_${o.orientation}`, `vf-divider_${o.variant}`];
|
|
9453
9482
|
return o.inset && i.push("vf-divider_inset"), e.value && i.push("vf-divider_with-label"), i;
|
|
9454
9483
|
});
|
|
@@ -9459,7 +9488,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9459
9488
|
"aria-label": i.ariaLabel
|
|
9460
9489
|
}, [
|
|
9461
9490
|
e.value ? (v(), g("span", Qi, [
|
|
9462
|
-
|
|
9491
|
+
j(i.$slots, "default", {}, () => [
|
|
9463
9492
|
fe(G(i.label), 1)
|
|
9464
9493
|
])
|
|
9465
9494
|
])) : Q("", !0)
|
|
@@ -9483,7 +9512,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9483
9512
|
}, ld = {
|
|
9484
9513
|
key: 0,
|
|
9485
9514
|
class: "vf-page-header__actions"
|
|
9486
|
-
},
|
|
9515
|
+
}, _v = /* @__PURE__ */ oe({
|
|
9487
9516
|
name: "VfPageHeader",
|
|
9488
9517
|
__name: "page-header",
|
|
9489
9518
|
props: {
|
|
@@ -9493,7 +9522,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9493
9522
|
divider: { type: Boolean, default: !1 }
|
|
9494
9523
|
},
|
|
9495
9524
|
setup(s) {
|
|
9496
|
-
const o = s, a =
|
|
9525
|
+
const o = s, a = Ue(), e = p(() => !!o.title || !!a.title), t = p(() => !!o.subtitle || !!a.subtitle), i = p(() => {
|
|
9497
9526
|
const n = ["vf-page-header"];
|
|
9498
9527
|
return o.size !== "normal" && n.push(`vf-page-header_${o.size}`), o.divider && n.push("vf-page-header_divider"), n;
|
|
9499
9528
|
});
|
|
@@ -9501,29 +9530,29 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9501
9530
|
class: Z(i.value)
|
|
9502
9531
|
}, [
|
|
9503
9532
|
n.$slots.breadcrumbs ? (v(), g("div", Zi, [
|
|
9504
|
-
|
|
9533
|
+
j(n.$slots, "breadcrumbs")
|
|
9505
9534
|
])) : Q("", !0),
|
|
9506
9535
|
x("div", Ji, [
|
|
9507
9536
|
x("div", ed, [
|
|
9508
9537
|
e.value ? (v(), g("h1", td, [
|
|
9509
|
-
|
|
9538
|
+
j(n.$slots, "title", {}, () => [
|
|
9510
9539
|
fe(G(n.title), 1)
|
|
9511
9540
|
])
|
|
9512
9541
|
])) : Q("", !0),
|
|
9513
9542
|
t.value ? (v(), g("p", ad, [
|
|
9514
|
-
|
|
9543
|
+
j(n.$slots, "subtitle", {}, () => [
|
|
9515
9544
|
fe(G(n.subtitle), 1)
|
|
9516
9545
|
])
|
|
9517
9546
|
])) : Q("", !0),
|
|
9518
9547
|
n.$slots.meta ? (v(), g("div", od, [
|
|
9519
|
-
|
|
9548
|
+
j(n.$slots, "meta")
|
|
9520
9549
|
])) : Q("", !0),
|
|
9521
9550
|
n.$slots.default ? (v(), g("div", rd, [
|
|
9522
|
-
|
|
9551
|
+
j(n.$slots, "default")
|
|
9523
9552
|
])) : Q("", !0)
|
|
9524
9553
|
]),
|
|
9525
9554
|
n.$slots.actions ? (v(), g("div", ld, [
|
|
9526
|
-
|
|
9555
|
+
j(n.$slots, "actions")
|
|
9527
9556
|
])) : Q("", !0)
|
|
9528
9557
|
])
|
|
9529
9558
|
], 2));
|
|
@@ -9534,7 +9563,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9534
9563
|
}, id = {
|
|
9535
9564
|
key: 2,
|
|
9536
9565
|
class: "vf-virtual-scroller__content vf-virtual-scroller__content_static"
|
|
9537
|
-
},
|
|
9566
|
+
}, kv = /* @__PURE__ */ oe({
|
|
9538
9567
|
name: "VfVirtualScroller",
|
|
9539
9568
|
__name: "virtual-scroller",
|
|
9540
9569
|
props: {
|
|
@@ -9626,7 +9655,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9626
9655
|
style: ye(P.value),
|
|
9627
9656
|
role: "listitem"
|
|
9628
9657
|
}, [
|
|
9629
|
-
|
|
9658
|
+
j(D.$slots, "default", {
|
|
9630
9659
|
item: F.item,
|
|
9631
9660
|
index: F.index
|
|
9632
9661
|
}, () => [
|
|
@@ -9641,7 +9670,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9641
9670
|
style: ye(P.value),
|
|
9642
9671
|
role: "listitem"
|
|
9643
9672
|
}, [
|
|
9644
|
-
|
|
9673
|
+
j(D.$slots, "default", {
|
|
9645
9674
|
item: F,
|
|
9646
9675
|
index: A
|
|
9647
9676
|
}, () => [
|
|
@@ -9649,7 +9678,7 @@ const ho = (s, o) => s.strategy ? s.strategy : bo(o) ? "fixed" : "absolute", Ke
|
|
|
9649
9678
|
])
|
|
9650
9679
|
], 4))), 128))
|
|
9651
9680
|
])) : (v(), g("div", sd, [
|
|
9652
|
-
|
|
9681
|
+
j(D.$slots, "empty", {}, () => [
|
|
9653
9682
|
fe(G(D.emptyText), 1)
|
|
9654
9683
|
])
|
|
9655
9684
|
]))
|
|
@@ -9799,7 +9828,7 @@ const xt = (s) => {
|
|
|
9799
9828
|
return;
|
|
9800
9829
|
const a = vt(o.preset, o.overrides), { selector: e, darkSelector: t } = kd(o);
|
|
9801
9830
|
He = { ...o }, Cd(a, e, t, o.strict);
|
|
9802
|
-
},
|
|
9831
|
+
}, Cv = (s) => {
|
|
9803
9832
|
if (!He)
|
|
9804
9833
|
return;
|
|
9805
9834
|
const o = s.overrides === void 0 ? He.overrides : vt(He.overrides ?? {}, s.overrides ?? {}), a = {
|
|
@@ -9809,7 +9838,7 @@ const xt = (s) => {
|
|
|
9809
9838
|
darkSelector: s.darkSelector ?? He.darkSelector
|
|
9810
9839
|
};
|
|
9811
9840
|
xt(a);
|
|
9812
|
-
},
|
|
9841
|
+
}, $v = () => He ? { ...He } : null, wv = {
|
|
9813
9842
|
install(s, o = {}) {
|
|
9814
9843
|
o.theme && xt(o.theme);
|
|
9815
9844
|
}
|
|
@@ -10060,6 +10089,11 @@ const xt = (s) => {
|
|
|
10060
10089
|
justifyContent: "flex-start",
|
|
10061
10090
|
wrap: "nowrap"
|
|
10062
10091
|
}, Ld = {
|
|
10092
|
+
gap: "0.75rem",
|
|
10093
|
+
alignItems: "center",
|
|
10094
|
+
justifyContent: "flex-start",
|
|
10095
|
+
wrap: "wrap"
|
|
10096
|
+
}, Fd = {
|
|
10063
10097
|
gap: "0.5rem",
|
|
10064
10098
|
fontSize: "var(--vf-typography-font-size)",
|
|
10065
10099
|
padding: "var(--vf-controls-padding-y) var(--vf-controls-padding-x)",
|
|
@@ -10080,7 +10114,7 @@ const xt = (s) => {
|
|
|
10080
10114
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
10081
10115
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10082
10116
|
}
|
|
10083
|
-
},
|
|
10117
|
+
}, Td = {
|
|
10084
10118
|
gap: "0",
|
|
10085
10119
|
borderRadius: "var(--vf-radii-md)",
|
|
10086
10120
|
addonPadding: "0 var(--vf-controls-padding-x)",
|
|
@@ -10098,7 +10132,7 @@ const xt = (s) => {
|
|
|
10098
10132
|
addonPadding: "0 var(--vf-sizes-lg-padding-x)",
|
|
10099
10133
|
addonFontSize: "var(--vf-sizes-lg-font-size)"
|
|
10100
10134
|
}
|
|
10101
|
-
},
|
|
10135
|
+
}, Id = {
|
|
10102
10136
|
gap: "0.5rem",
|
|
10103
10137
|
fontSize: "var(--vf-typography-font-size)",
|
|
10104
10138
|
padding: "var(--vf-controls-padding-y) var(--vf-controls-padding-x)",
|
|
@@ -10131,7 +10165,7 @@ const xt = (s) => {
|
|
|
10131
10165
|
fontSize: "var(--vf-sizes-lg-font-size)",
|
|
10132
10166
|
buttonPadding: "0.26rem 0.62rem"
|
|
10133
10167
|
}
|
|
10134
|
-
},
|
|
10168
|
+
}, Dd = {
|
|
10135
10169
|
gap: "0.5rem",
|
|
10136
10170
|
fontSize: "var(--vf-typography-font-size)",
|
|
10137
10171
|
padding: "var(--vf-controls-padding-y) var(--vf-controls-padding-x)",
|
|
@@ -10164,7 +10198,7 @@ const xt = (s) => {
|
|
|
10164
10198
|
iconSize: "0.9rem",
|
|
10165
10199
|
clearSize: "1.25rem"
|
|
10166
10200
|
}
|
|
10167
|
-
},
|
|
10201
|
+
}, Rd = {
|
|
10168
10202
|
minWidth: "14rem",
|
|
10169
10203
|
fontSize: "var(--vf-typography-font-size)",
|
|
10170
10204
|
padding: "var(--vf-controls-padding-y) var(--vf-controls-padding-x)",
|
|
@@ -10199,7 +10233,7 @@ const xt = (s) => {
|
|
|
10199
10233
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
10200
10234
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10201
10235
|
}
|
|
10202
|
-
},
|
|
10236
|
+
}, Md = {
|
|
10203
10237
|
gap: "0.5rem",
|
|
10204
10238
|
fontSize: "var(--vf-typography-font-size)",
|
|
10205
10239
|
padding: "var(--vf-controls-padding-y) var(--vf-controls-padding-x)",
|
|
@@ -10233,7 +10267,7 @@ const xt = (s) => {
|
|
|
10233
10267
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
10234
10268
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10235
10269
|
}
|
|
10236
|
-
},
|
|
10270
|
+
}, Pd = {
|
|
10237
10271
|
gap: "0.5rem",
|
|
10238
10272
|
fontSize: "var(--vf-typography-font-size)",
|
|
10239
10273
|
cellSize: "2.25rem",
|
|
@@ -10257,7 +10291,7 @@ const xt = (s) => {
|
|
|
10257
10291
|
padding: "0.35rem",
|
|
10258
10292
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10259
10293
|
}
|
|
10260
|
-
},
|
|
10294
|
+
}, Od = {
|
|
10261
10295
|
minWidth: "12rem",
|
|
10262
10296
|
gap: "0.5rem",
|
|
10263
10297
|
fontSize: "var(--vf-typography-font-size)",
|
|
@@ -10295,7 +10329,7 @@ const xt = (s) => {
|
|
|
10295
10329
|
swatchSize: "1.15rem",
|
|
10296
10330
|
presetSize: "1.5rem"
|
|
10297
10331
|
}
|
|
10298
|
-
},
|
|
10332
|
+
}, Ed = {
|
|
10299
10333
|
gap: "0.5rem",
|
|
10300
10334
|
fontSize: "var(--vf-typography-font-size)",
|
|
10301
10335
|
padding: "var(--vf-controls-padding-y) var(--vf-controls-padding-x)",
|
|
@@ -10316,7 +10350,7 @@ const xt = (s) => {
|
|
|
10316
10350
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
10317
10351
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10318
10352
|
}
|
|
10319
|
-
},
|
|
10353
|
+
}, Ad = {
|
|
10320
10354
|
gap: "0.5rem",
|
|
10321
10355
|
fontSize: "var(--vf-typography-font-size)",
|
|
10322
10356
|
padding: "var(--vf-controls-padding-y) var(--vf-controls-padding-x)",
|
|
@@ -10349,11 +10383,11 @@ const xt = (s) => {
|
|
|
10349
10383
|
controlWidth: "1.75rem",
|
|
10350
10384
|
controlFontSize: "0.8rem"
|
|
10351
10385
|
}
|
|
10352
|
-
},
|
|
10386
|
+
}, Hd = {
|
|
10353
10387
|
gap: "0.75rem",
|
|
10354
10388
|
textColor: "var(--vf-text-color)",
|
|
10355
10389
|
disabledOpacity: "var(--vf-states-disabled-opacity)"
|
|
10356
|
-
},
|
|
10390
|
+
}, Wd = {
|
|
10357
10391
|
gap: "0.375rem",
|
|
10358
10392
|
textColor: "var(--vf-text-color)",
|
|
10359
10393
|
labelFontSize: "0.875rem",
|
|
@@ -10375,7 +10409,7 @@ const xt = (s) => {
|
|
|
10375
10409
|
labelFontSize: "0.9375rem",
|
|
10376
10410
|
hintFontSize: "0.875rem"
|
|
10377
10411
|
}
|
|
10378
|
-
},
|
|
10412
|
+
}, Kd = {
|
|
10379
10413
|
gap: "0.5rem",
|
|
10380
10414
|
fontSize: "var(--vf-typography-font-size)",
|
|
10381
10415
|
padding: "var(--vf-controls-padding-y) var(--vf-controls-padding-x)",
|
|
@@ -10398,7 +10432,7 @@ const xt = (s) => {
|
|
|
10398
10432
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
10399
10433
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10400
10434
|
}
|
|
10401
|
-
},
|
|
10435
|
+
}, Nd = {
|
|
10402
10436
|
gap: "0.5rem",
|
|
10403
10437
|
fontSize: "var(--vf-typography-font-size)",
|
|
10404
10438
|
padding: "var(--vf-controls-padding-y) var(--vf-controls-padding-x)",
|
|
@@ -10438,7 +10472,7 @@ const xt = (s) => {
|
|
|
10438
10472
|
fontSize: "var(--vf-sizes-lg-font-size)",
|
|
10439
10473
|
toolbarButtonPadding: "0.3rem 0.55rem"
|
|
10440
10474
|
}
|
|
10441
|
-
},
|
|
10475
|
+
}, Gd = {
|
|
10442
10476
|
minHeight: "2.75rem",
|
|
10443
10477
|
fontSize: "var(--vf-typography-font-size)",
|
|
10444
10478
|
gap: "0.75rem",
|
|
@@ -10479,7 +10513,7 @@ const xt = (s) => {
|
|
|
10479
10513
|
fontSize: "var(--vf-sizes-lg-font-size)",
|
|
10480
10514
|
buttonPadding: "0.45rem 0.9rem"
|
|
10481
10515
|
}
|
|
10482
|
-
},
|
|
10516
|
+
}, jd = {
|
|
10483
10517
|
hoverColor: "var(--vf-blue)",
|
|
10484
10518
|
activeColor: "var(--vf-blue)"
|
|
10485
10519
|
}, Yd = {
|
|
@@ -10490,7 +10524,7 @@ const xt = (s) => {
|
|
|
10490
10524
|
activeColor: "var(--vf-text-color)",
|
|
10491
10525
|
separatorColor: "var(--vf-divider-color)",
|
|
10492
10526
|
disabledOpacity: "var(--vf-states-disabled-opacity)"
|
|
10493
|
-
},
|
|
10527
|
+
}, Xd = {
|
|
10494
10528
|
color: "var(--vf-border-color)",
|
|
10495
10529
|
textColor: "var(--vf-secondary-text-color)",
|
|
10496
10530
|
thickness: "1px",
|
|
@@ -10499,7 +10533,7 @@ const xt = (s) => {
|
|
|
10499
10533
|
inset: "1rem",
|
|
10500
10534
|
labelPadding: "0 0.4rem",
|
|
10501
10535
|
labelFontSize: "0.875rem"
|
|
10502
|
-
},
|
|
10536
|
+
}, Ud = {
|
|
10503
10537
|
gap: "0.5rem",
|
|
10504
10538
|
contentGap: "0.35rem",
|
|
10505
10539
|
breadcrumbGap: "0.25rem",
|
|
@@ -10526,7 +10560,7 @@ const xt = (s) => {
|
|
|
10526
10560
|
titleFontSize: "2rem",
|
|
10527
10561
|
subtitleFontSize: "1.05rem"
|
|
10528
10562
|
}
|
|
10529
|
-
},
|
|
10563
|
+
}, qd = {
|
|
10530
10564
|
iconGap: "6px",
|
|
10531
10565
|
submenuOffset: "12px",
|
|
10532
10566
|
separatorThickness: "1px",
|
|
@@ -10546,7 +10580,7 @@ const xt = (s) => {
|
|
|
10546
10580
|
marginBottom: "0.5rem",
|
|
10547
10581
|
marginLeft: "0.5rem"
|
|
10548
10582
|
}
|
|
10549
|
-
},
|
|
10583
|
+
}, Qd = {
|
|
10550
10584
|
width: "90vw",
|
|
10551
10585
|
maxWidth: "520px",
|
|
10552
10586
|
maxHeight: "80vh",
|
|
@@ -10573,13 +10607,13 @@ const xt = (s) => {
|
|
|
10573
10607
|
closeColor: "var(--vf-text-color)",
|
|
10574
10608
|
closeFontSize: "1.25rem",
|
|
10575
10609
|
closeHoverBackgroundColor: "rgba(0, 0, 0, 0.06)"
|
|
10576
|
-
},
|
|
10610
|
+
}, Zd = {
|
|
10577
10611
|
maxWidth: "420px",
|
|
10578
10612
|
messageColor: "var(--vf-secondary-text-color)",
|
|
10579
10613
|
messageFontSize: "0.95rem",
|
|
10580
10614
|
messageLineHeight: "1.5",
|
|
10581
10615
|
actionsGap: "0.5rem"
|
|
10582
|
-
},
|
|
10616
|
+
}, Jd = {
|
|
10583
10617
|
width: "320px",
|
|
10584
10618
|
widthSm: "260px",
|
|
10585
10619
|
widthLg: "420px",
|
|
@@ -10605,9 +10639,9 @@ const xt = (s) => {
|
|
|
10605
10639
|
closeColor: "var(--vf-text-color)",
|
|
10606
10640
|
closeFontSize: "1.25rem",
|
|
10607
10641
|
closeHoverBackgroundColor: "rgba(0, 0, 0, 0.06)"
|
|
10608
|
-
}, Jd = {
|
|
10609
|
-
backgroundColor: "var(--vf-bg-color)"
|
|
10610
10642
|
}, eu = {
|
|
10643
|
+
backgroundColor: "var(--vf-bg-color)"
|
|
10644
|
+
}, tu = {
|
|
10611
10645
|
panelPadding: "0.25rem",
|
|
10612
10646
|
panelBorderRadius: "8px",
|
|
10613
10647
|
panelBorderColor: "var(--vf-border-color)",
|
|
@@ -10616,7 +10650,7 @@ const xt = (s) => {
|
|
|
10616
10650
|
zIndex: "50",
|
|
10617
10651
|
disabledOpacity: "var(--vf-states-disabled-opacity)",
|
|
10618
10652
|
itemPadding: "0.25rem 0.5rem"
|
|
10619
|
-
},
|
|
10653
|
+
}, au = {
|
|
10620
10654
|
borderRadius: "var(--vf-button-border-radius)",
|
|
10621
10655
|
toggleMinWidth: "2.25rem",
|
|
10622
10656
|
togglePaddingX: "0.55rem",
|
|
@@ -10628,7 +10662,7 @@ const xt = (s) => {
|
|
|
10628
10662
|
large: {
|
|
10629
10663
|
toggleMinWidth: "2.5rem"
|
|
10630
10664
|
}
|
|
10631
|
-
},
|
|
10665
|
+
}, ou = {
|
|
10632
10666
|
minWidth: "11rem",
|
|
10633
10667
|
panelPadding: "0.25rem",
|
|
10634
10668
|
panelBorderRadius: "8px",
|
|
@@ -10638,7 +10672,7 @@ const xt = (s) => {
|
|
|
10638
10672
|
zIndex: "60",
|
|
10639
10673
|
disabledOpacity: "var(--vf-states-disabled-opacity)",
|
|
10640
10674
|
itemPadding: "0.25rem 0.5rem"
|
|
10641
|
-
},
|
|
10675
|
+
}, ru = {
|
|
10642
10676
|
width: "92vw",
|
|
10643
10677
|
maxWidth: "640px",
|
|
10644
10678
|
maxHeight: "70vh",
|
|
@@ -10681,7 +10715,7 @@ const xt = (s) => {
|
|
|
10681
10715
|
shortcutFontSize: "0.75rem",
|
|
10682
10716
|
emptyPadding: "1rem 0.5rem",
|
|
10683
10717
|
emptyColor: "var(--vf-secondary-text-color)"
|
|
10684
|
-
},
|
|
10718
|
+
}, lu = {
|
|
10685
10719
|
zIndex: "125",
|
|
10686
10720
|
overlayBackgroundColor: "rgba(0, 0, 0, 0.35)",
|
|
10687
10721
|
top: "1rem",
|
|
@@ -10722,7 +10756,7 @@ const xt = (s) => {
|
|
|
10722
10756
|
itemMetaColor: "var(--vf-secondary-text-color)",
|
|
10723
10757
|
emptyPadding: "1rem",
|
|
10724
10758
|
emptyColor: "var(--vf-secondary-text-color)"
|
|
10725
|
-
},
|
|
10759
|
+
}, nu = {
|
|
10726
10760
|
gap: "0",
|
|
10727
10761
|
backgroundColor: "var(--vf-bg-color)",
|
|
10728
10762
|
textColor: "var(--vf-text-color)",
|
|
@@ -10745,7 +10779,7 @@ const xt = (s) => {
|
|
|
10745
10779
|
toggleHoverBackgroundColor: "rgba(var(--vf-gray-600-rgb), 0.16)",
|
|
10746
10780
|
overlayBackgroundColor: "rgba(0, 0, 0, 0.34)",
|
|
10747
10781
|
zIndex: "110"
|
|
10748
|
-
},
|
|
10782
|
+
}, su = {
|
|
10749
10783
|
gap: "0.5rem",
|
|
10750
10784
|
columnMinWidth: "17rem",
|
|
10751
10785
|
columnGap: "0.75rem",
|
|
@@ -10784,7 +10818,7 @@ const xt = (s) => {
|
|
|
10784
10818
|
columnFooterPadding: "0.6rem 0.75rem",
|
|
10785
10819
|
columnFooterBorderColor: "var(--vf-border-color)",
|
|
10786
10820
|
dragOpacity: "0.6"
|
|
10787
|
-
},
|
|
10821
|
+
}, iu = {
|
|
10788
10822
|
minWidth: "12rem",
|
|
10789
10823
|
fontSize: "var(--vf-typography-font-size)",
|
|
10790
10824
|
controlGap: "0.75rem",
|
|
@@ -10817,7 +10851,7 @@ const xt = (s) => {
|
|
|
10817
10851
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
10818
10852
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10819
10853
|
}
|
|
10820
|
-
},
|
|
10854
|
+
}, du = {
|
|
10821
10855
|
minWidth: "12rem",
|
|
10822
10856
|
fontSize: "var(--vf-typography-font-size)",
|
|
10823
10857
|
controlGap: "0.5rem",
|
|
@@ -10856,7 +10890,7 @@ const xt = (s) => {
|
|
|
10856
10890
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
10857
10891
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10858
10892
|
}
|
|
10859
|
-
},
|
|
10893
|
+
}, uu = {
|
|
10860
10894
|
minWidth: "12rem",
|
|
10861
10895
|
fontSize: "var(--vf-typography-font-size)",
|
|
10862
10896
|
controlGap: "0.5rem",
|
|
@@ -10898,7 +10932,7 @@ const xt = (s) => {
|
|
|
10898
10932
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
10899
10933
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10900
10934
|
}
|
|
10901
|
-
},
|
|
10935
|
+
}, cu = {
|
|
10902
10936
|
minWidth: "12rem",
|
|
10903
10937
|
fontSize: "var(--vf-typography-font-size)",
|
|
10904
10938
|
controlGap: "0.5rem",
|
|
@@ -10943,7 +10977,7 @@ const xt = (s) => {
|
|
|
10943
10977
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
10944
10978
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
10945
10979
|
}
|
|
10946
|
-
},
|
|
10980
|
+
}, vu = {
|
|
10947
10981
|
minWidth: "12rem",
|
|
10948
10982
|
minHeight: "var(--vf-controls-height)",
|
|
10949
10983
|
fontSize: "var(--vf-typography-font-size)",
|
|
@@ -10998,7 +11032,7 @@ const xt = (s) => {
|
|
|
10998
11032
|
chipPadding: "0.25rem 0.55rem",
|
|
10999
11033
|
chipFontSize: "0.9em"
|
|
11000
11034
|
}
|
|
11001
|
-
},
|
|
11035
|
+
}, fu = {
|
|
11002
11036
|
minWidth: "12rem",
|
|
11003
11037
|
fontSize: "var(--vf-typography-font-size)",
|
|
11004
11038
|
controlGap: "0.75rem",
|
|
@@ -11048,7 +11082,7 @@ const xt = (s) => {
|
|
|
11048
11082
|
fontSize: "var(--vf-sizes-lg-font-size)",
|
|
11049
11083
|
daySize: "2.2rem"
|
|
11050
11084
|
}
|
|
11051
|
-
},
|
|
11085
|
+
}, pu = {
|
|
11052
11086
|
minWidth: "14rem",
|
|
11053
11087
|
fontSize: "var(--vf-typography-font-size)",
|
|
11054
11088
|
controlGap: "0.75rem",
|
|
@@ -11100,7 +11134,7 @@ const xt = (s) => {
|
|
|
11100
11134
|
fontSize: "var(--vf-sizes-lg-font-size)",
|
|
11101
11135
|
daySize: "2.2rem"
|
|
11102
11136
|
}
|
|
11103
|
-
},
|
|
11137
|
+
}, mu = {
|
|
11104
11138
|
minWidth: "10rem",
|
|
11105
11139
|
fontSize: "var(--vf-typography-font-size)",
|
|
11106
11140
|
controlGap: "0.75rem",
|
|
@@ -11134,7 +11168,7 @@ const xt = (s) => {
|
|
|
11134
11168
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
11135
11169
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
11136
11170
|
}
|
|
11137
|
-
},
|
|
11171
|
+
}, gu = {
|
|
11138
11172
|
minWidth: "14rem",
|
|
11139
11173
|
fontSize: "var(--vf-typography-font-size)",
|
|
11140
11174
|
controlGap: "0.75rem",
|
|
@@ -11195,7 +11229,7 @@ const xt = (s) => {
|
|
|
11195
11229
|
fontSize: "var(--vf-sizes-lg-font-size)",
|
|
11196
11230
|
daySize: "2.2rem"
|
|
11197
11231
|
}
|
|
11198
|
-
},
|
|
11232
|
+
}, bu = {
|
|
11199
11233
|
width: "100%",
|
|
11200
11234
|
fontSize: "var(--vf-typography-font-size)",
|
|
11201
11235
|
padding: "0.5rem",
|
|
@@ -11233,7 +11267,7 @@ const xt = (s) => {
|
|
|
11233
11267
|
fontSize: "var(--vf-sizes-lg-font-size)",
|
|
11234
11268
|
daySize: "2.2rem"
|
|
11235
11269
|
}
|
|
11236
|
-
},
|
|
11270
|
+
}, hu = {
|
|
11237
11271
|
gap: "0.4rem",
|
|
11238
11272
|
itemMinWidth: "2rem",
|
|
11239
11273
|
fontSize: "var(--vf-typography-font-size)",
|
|
@@ -11258,7 +11292,7 @@ const xt = (s) => {
|
|
|
11258
11292
|
fontSize: "var(--vf-sizes-lg-font-size)",
|
|
11259
11293
|
padding: "0.45rem 0.8rem"
|
|
11260
11294
|
}
|
|
11261
|
-
},
|
|
11295
|
+
}, yu = {
|
|
11262
11296
|
size: "1rem",
|
|
11263
11297
|
gap: "0.5rem",
|
|
11264
11298
|
borderRadius: "var(--vf-radii-sm)",
|
|
@@ -11270,7 +11304,7 @@ const xt = (s) => {
|
|
|
11270
11304
|
checkColor: "#ffffff",
|
|
11271
11305
|
textColor: "var(--vf-text-color)",
|
|
11272
11306
|
disabledOpacity: "var(--vf-states-disabled-opacity)"
|
|
11273
|
-
},
|
|
11307
|
+
}, _u = {
|
|
11274
11308
|
size: "1rem",
|
|
11275
11309
|
dotSize: "0.45rem",
|
|
11276
11310
|
gap: "0.5rem",
|
|
@@ -11284,7 +11318,7 @@ const xt = (s) => {
|
|
|
11284
11318
|
dotColor: "#ffffff",
|
|
11285
11319
|
textColor: "var(--vf-text-color)",
|
|
11286
11320
|
disabledOpacity: "var(--vf-states-disabled-opacity)"
|
|
11287
|
-
},
|
|
11321
|
+
}, ku = {
|
|
11288
11322
|
width: "2.25rem",
|
|
11289
11323
|
height: "1.25rem",
|
|
11290
11324
|
thumbSize: "1rem",
|
|
@@ -11296,7 +11330,7 @@ const xt = (s) => {
|
|
|
11296
11330
|
thumbColor: "#ffffff",
|
|
11297
11331
|
textColor: "var(--vf-text-color)",
|
|
11298
11332
|
disabledOpacity: "var(--vf-states-disabled-opacity)"
|
|
11299
|
-
},
|
|
11333
|
+
}, Cu = {
|
|
11300
11334
|
fontSize: "0.95rem",
|
|
11301
11335
|
padding: "0.16rem",
|
|
11302
11336
|
gap: "0.16rem",
|
|
@@ -11322,7 +11356,7 @@ const xt = (s) => {
|
|
|
11322
11356
|
padding: "0.2rem",
|
|
11323
11357
|
segmentPadding: "0.42rem 0.78rem"
|
|
11324
11358
|
}
|
|
11325
|
-
},
|
|
11359
|
+
}, $u = {
|
|
11326
11360
|
gap: "0.75rem",
|
|
11327
11361
|
listGap: "0.5rem",
|
|
11328
11362
|
listBorderWidth: "1px",
|
|
@@ -11343,7 +11377,7 @@ const xt = (s) => {
|
|
|
11343
11377
|
panelBackgroundColor: "transparent",
|
|
11344
11378
|
panelTextColor: "var(--vf-text-color)",
|
|
11345
11379
|
disabledOpacity: "var(--vf-states-disabled-opacity)"
|
|
11346
|
-
},
|
|
11380
|
+
}, wu = {
|
|
11347
11381
|
gap: "0.75rem",
|
|
11348
11382
|
borderRadius: "var(--vf-radii-md)",
|
|
11349
11383
|
borderColor: "var(--vf-border-color)",
|
|
@@ -11374,7 +11408,7 @@ const xt = (s) => {
|
|
|
11374
11408
|
headerFontSize: "1rem",
|
|
11375
11409
|
contentPadding: "0.9rem 1.1rem"
|
|
11376
11410
|
}
|
|
11377
|
-
},
|
|
11411
|
+
}, zu = {
|
|
11378
11412
|
padding: "0.35rem 0.6rem",
|
|
11379
11413
|
borderRadius: "8px",
|
|
11380
11414
|
backgroundColor: "rgba(0, 0, 0, 0.8)",
|
|
@@ -11385,7 +11419,7 @@ const xt = (s) => {
|
|
|
11385
11419
|
zIndex: "120",
|
|
11386
11420
|
maxWidth: "240px",
|
|
11387
11421
|
arrowSize: "8px"
|
|
11388
|
-
},
|
|
11422
|
+
}, Su = {
|
|
11389
11423
|
zIndex: "120",
|
|
11390
11424
|
overlayBackgroundColor: "rgba(0, 0, 0, 0.45)",
|
|
11391
11425
|
width: "22rem",
|
|
@@ -11423,7 +11457,7 @@ const xt = (s) => {
|
|
|
11423
11457
|
spotlightBorderWidth: "2px",
|
|
11424
11458
|
spotlightBorderColor: "rgba(var(--vf-blue-600-rgb), 0.55)",
|
|
11425
11459
|
disabledOpacity: "var(--vf-states-disabled-opacity)"
|
|
11426
|
-
},
|
|
11460
|
+
}, Bu = {
|
|
11427
11461
|
width: "100%",
|
|
11428
11462
|
height: "1rem",
|
|
11429
11463
|
lineHeight: "0.9rem",
|
|
@@ -11431,7 +11465,7 @@ const xt = (s) => {
|
|
|
11431
11465
|
backgroundColor: "var(--vf-gutter-color)",
|
|
11432
11466
|
shimmerColor: "var(--vf-bg-color)",
|
|
11433
11467
|
animationDuration: "2s"
|
|
11434
|
-
},
|
|
11468
|
+
}, xu = {
|
|
11435
11469
|
borderColor: "var(--vf-border-color)",
|
|
11436
11470
|
borderRadius: "var(--vf-radii-md)",
|
|
11437
11471
|
backgroundColor: "var(--vf-bg-color)",
|
|
@@ -11462,7 +11496,7 @@ const xt = (s) => {
|
|
|
11462
11496
|
fontSize: "var(--vf-sizes-lg-font-size)",
|
|
11463
11497
|
cellPadding: "0.75rem 0.9rem"
|
|
11464
11498
|
}
|
|
11465
|
-
},
|
|
11499
|
+
}, Vu = {
|
|
11466
11500
|
gap: "0.75rem",
|
|
11467
11501
|
padding: "0.75rem 0.9rem",
|
|
11468
11502
|
borderRadius: "var(--vf-radii-md)",
|
|
@@ -11501,7 +11535,7 @@ const xt = (s) => {
|
|
|
11501
11535
|
borderColor: "rgba(var(--vf-red-600-rgb), 0.45)",
|
|
11502
11536
|
textColor: "var(--vf-text-color)"
|
|
11503
11537
|
}
|
|
11504
|
-
},
|
|
11538
|
+
}, Lu = {
|
|
11505
11539
|
gap: "0.75rem",
|
|
11506
11540
|
padding: "0.75rem 0.9rem",
|
|
11507
11541
|
borderRadius: "var(--vf-radii-md)",
|
|
@@ -11539,7 +11573,7 @@ const xt = (s) => {
|
|
|
11539
11573
|
borderColor: "rgba(var(--vf-red-600-rgb), 0.45)",
|
|
11540
11574
|
textColor: "var(--vf-text-color)"
|
|
11541
11575
|
}
|
|
11542
|
-
},
|
|
11576
|
+
}, Fu = {
|
|
11543
11577
|
gap: "0.75rem",
|
|
11544
11578
|
bodyGap: "0.35rem",
|
|
11545
11579
|
padding: "1.25rem",
|
|
@@ -11570,7 +11604,7 @@ const xt = (s) => {
|
|
|
11570
11604
|
titleFontSize: "1.125rem",
|
|
11571
11605
|
descriptionFontSize: "1rem"
|
|
11572
11606
|
}
|
|
11573
|
-
},
|
|
11607
|
+
}, Tu = {
|
|
11574
11608
|
width: "100%",
|
|
11575
11609
|
height: "0.5rem",
|
|
11576
11610
|
borderRadius: "999px",
|
|
@@ -11606,7 +11640,7 @@ const xt = (s) => {
|
|
|
11606
11640
|
circularSize: "3.25rem",
|
|
11607
11641
|
circularThickness: "7"
|
|
11608
11642
|
}
|
|
11609
|
-
},
|
|
11643
|
+
}, Iu = {
|
|
11610
11644
|
fontSize: "0.75rem",
|
|
11611
11645
|
lineHeight: "1",
|
|
11612
11646
|
paddingX: "0.5rem",
|
|
@@ -11671,7 +11705,7 @@ const xt = (s) => {
|
|
|
11671
11705
|
paddingX: "0.65rem",
|
|
11672
11706
|
paddingY: "0.3rem"
|
|
11673
11707
|
}
|
|
11674
|
-
},
|
|
11708
|
+
}, Du = {
|
|
11675
11709
|
fontSize: "0.8125rem",
|
|
11676
11710
|
lineHeight: "1",
|
|
11677
11711
|
paddingX: "0.55rem",
|
|
@@ -11743,7 +11777,7 @@ const xt = (s) => {
|
|
|
11743
11777
|
paddingX: "0.7rem",
|
|
11744
11778
|
paddingY: "0.28rem"
|
|
11745
11779
|
}
|
|
11746
|
-
},
|
|
11780
|
+
}, Ru = {
|
|
11747
11781
|
fontSize: "0.8125rem",
|
|
11748
11782
|
gap: "0.35rem",
|
|
11749
11783
|
chipGap: "0.3rem",
|
|
@@ -11775,7 +11809,7 @@ const xt = (s) => {
|
|
|
11775
11809
|
fontSize: "0.95rem",
|
|
11776
11810
|
chipPadding: "0.38rem 0.72rem"
|
|
11777
11811
|
}
|
|
11778
|
-
},
|
|
11812
|
+
}, Mu = {
|
|
11779
11813
|
size: "2.5rem",
|
|
11780
11814
|
fontSize: "0.9rem",
|
|
11781
11815
|
fontWeight: "600",
|
|
@@ -11801,7 +11835,7 @@ const xt = (s) => {
|
|
|
11801
11835
|
fontSize: "1rem",
|
|
11802
11836
|
statusSize: "0.75rem"
|
|
11803
11837
|
}
|
|
11804
|
-
},
|
|
11838
|
+
}, Pu = {
|
|
11805
11839
|
size: "1.5rem",
|
|
11806
11840
|
thickness: "2px",
|
|
11807
11841
|
color: "var(--vf-blue-600)",
|
|
@@ -11836,7 +11870,7 @@ const xt = (s) => {
|
|
|
11836
11870
|
thickness: "3px",
|
|
11837
11871
|
labelFontSize: "1rem"
|
|
11838
11872
|
}
|
|
11839
|
-
},
|
|
11873
|
+
}, Ou = {
|
|
11840
11874
|
width: "100%",
|
|
11841
11875
|
gap: "0.5rem",
|
|
11842
11876
|
textColor: "var(--vf-text-color)",
|
|
@@ -11868,7 +11902,7 @@ const xt = (s) => {
|
|
|
11868
11902
|
thumbSize: "1.25rem",
|
|
11869
11903
|
valueFontSize: "1rem"
|
|
11870
11904
|
}
|
|
11871
|
-
},
|
|
11905
|
+
}, Eu = {
|
|
11872
11906
|
borderColor: "var(--vf-border-color)",
|
|
11873
11907
|
borderRadius: "var(--vf-radii-md)",
|
|
11874
11908
|
panelBackgroundColor: "var(--vf-controls-background-color)",
|
|
@@ -11878,7 +11912,7 @@ const xt = (s) => {
|
|
|
11878
11912
|
handleColor: "var(--vf-border-color)",
|
|
11879
11913
|
gutterActiveBackgroundColor: "rgba(var(--vf-blue-600-rgb), 0.12)",
|
|
11880
11914
|
disabledOpacity: "var(--vf-states-disabled-opacity)"
|
|
11881
|
-
},
|
|
11915
|
+
}, Au = {
|
|
11882
11916
|
gap: "1rem",
|
|
11883
11917
|
itemGap: "0.75rem",
|
|
11884
11918
|
lineThickness: "2px",
|
|
@@ -11921,7 +11955,7 @@ const xt = (s) => {
|
|
|
11921
11955
|
lineLength: "1.75rem",
|
|
11922
11956
|
itemGap: "1rem"
|
|
11923
11957
|
}
|
|
11924
|
-
},
|
|
11958
|
+
}, Hu = {
|
|
11925
11959
|
gap: "1rem",
|
|
11926
11960
|
borderColor: "var(--vf-border-color)",
|
|
11927
11961
|
headerPaddingBottom: "0.75rem",
|
|
@@ -11959,7 +11993,7 @@ const xt = (s) => {
|
|
|
11959
11993
|
secondaryButtonTextColor: "var(--vf-text-color)",
|
|
11960
11994
|
secondaryButtonHoverBackgroundColor: "rgba(var(--vf-gray-600-rgb), 0.12)",
|
|
11961
11995
|
disabledOpacity: "var(--vf-states-disabled-opacity)"
|
|
11962
|
-
},
|
|
11996
|
+
}, Wu = {
|
|
11963
11997
|
gap: "1rem",
|
|
11964
11998
|
itemGap: "0.75rem",
|
|
11965
11999
|
markerSize: "1.75rem",
|
|
@@ -12023,7 +12057,7 @@ const xt = (s) => {
|
|
|
12023
12057
|
titleFontSize: "1.125rem",
|
|
12024
12058
|
descriptionFontSize: "1rem"
|
|
12025
12059
|
}
|
|
12026
|
-
},
|
|
12060
|
+
}, Ku = {
|
|
12027
12061
|
gap: "0.25rem",
|
|
12028
12062
|
size: "1.1rem",
|
|
12029
12063
|
color: "var(--vf-gutter-color)",
|
|
@@ -12038,7 +12072,7 @@ const xt = (s) => {
|
|
|
12038
12072
|
large: {
|
|
12039
12073
|
size: "1.35rem"
|
|
12040
12074
|
}
|
|
12041
|
-
},
|
|
12075
|
+
}, Nu = {
|
|
12042
12076
|
gap: "0.3rem",
|
|
12043
12077
|
indent: "1rem",
|
|
12044
12078
|
rowGap: "0.5rem",
|
|
@@ -12072,7 +12106,7 @@ const xt = (s) => {
|
|
|
12072
12106
|
rowFontSize: "1rem",
|
|
12073
12107
|
toggleSize: "1.1rem"
|
|
12074
12108
|
}
|
|
12075
|
-
},
|
|
12109
|
+
}, Gu = {
|
|
12076
12110
|
minWidth: "14rem",
|
|
12077
12111
|
fontSize: "var(--vf-typography-font-size)",
|
|
12078
12112
|
controlGap: "0.75rem",
|
|
@@ -12111,7 +12145,7 @@ const xt = (s) => {
|
|
|
12111
12145
|
padding: "var(--vf-sizes-lg-padding-y) var(--vf-sizes-lg-padding-x)",
|
|
12112
12146
|
fontSize: "var(--vf-sizes-lg-font-size)"
|
|
12113
12147
|
}
|
|
12114
|
-
},
|
|
12148
|
+
}, ju = {
|
|
12115
12149
|
fontSize: "var(--vf-typography-font-size)",
|
|
12116
12150
|
borderColor: "var(--vf-border-color)",
|
|
12117
12151
|
borderRadius: "var(--vf-radii-md)",
|
|
@@ -12122,7 +12156,7 @@ const xt = (s) => {
|
|
|
12122
12156
|
itemBorderColor: "var(--vf-border-color)",
|
|
12123
12157
|
emptyPadding: "0.75rem",
|
|
12124
12158
|
emptyColor: "var(--vf-secondary-text-color)"
|
|
12125
|
-
},
|
|
12159
|
+
}, zv = {
|
|
12126
12160
|
...gt,
|
|
12127
12161
|
components: {
|
|
12128
12162
|
base: gt,
|
|
@@ -12133,168 +12167,170 @@ const xt = (s) => {
|
|
|
12133
12167
|
grid: Bd,
|
|
12134
12168
|
section: xd,
|
|
12135
12169
|
stack: Vd,
|
|
12136
|
-
|
|
12137
|
-
|
|
12138
|
-
|
|
12139
|
-
|
|
12140
|
-
|
|
12141
|
-
|
|
12142
|
-
|
|
12143
|
-
|
|
12144
|
-
|
|
12145
|
-
|
|
12146
|
-
|
|
12147
|
-
|
|
12148
|
-
|
|
12149
|
-
|
|
12150
|
-
|
|
12151
|
-
|
|
12170
|
+
inline: Ld,
|
|
12171
|
+
input: Fd,
|
|
12172
|
+
inputGroup: Td,
|
|
12173
|
+
inlineEdit: Id,
|
|
12174
|
+
searchInput: Dd,
|
|
12175
|
+
mentionInput: Rd,
|
|
12176
|
+
passwordInput: Md,
|
|
12177
|
+
otpInput: Pd,
|
|
12178
|
+
colorPicker: Od,
|
|
12179
|
+
maskedInput: Ed,
|
|
12180
|
+
numberInput: Ad,
|
|
12181
|
+
form: Hd,
|
|
12182
|
+
formField: Wd,
|
|
12183
|
+
textarea: Kd,
|
|
12184
|
+
richTextEditor: Nd,
|
|
12185
|
+
fileUpload: Gd,
|
|
12186
|
+
link: jd,
|
|
12152
12187
|
breadcrumbs: Yd,
|
|
12153
|
-
divider:
|
|
12154
|
-
pageHeader:
|
|
12155
|
-
menu:
|
|
12156
|
-
modal:
|
|
12157
|
-
confirmDialog:
|
|
12158
|
-
drawer:
|
|
12159
|
-
popover:
|
|
12160
|
-
dropdown:
|
|
12161
|
-
splitbutton:
|
|
12162
|
-
contextMenu:
|
|
12163
|
-
commandPalette:
|
|
12164
|
-
notificationCenter:
|
|
12165
|
-
appShell:
|
|
12166
|
-
kanbanBoard:
|
|
12167
|
-
select:
|
|
12168
|
-
autocomplete:
|
|
12169
|
-
combobox:
|
|
12170
|
-
multiselect:
|
|
12171
|
-
taginput:
|
|
12172
|
-
datepicker:
|
|
12173
|
-
daterangepicker:
|
|
12174
|
-
timepicker:
|
|
12175
|
-
datetimepicker:
|
|
12176
|
-
calendar:
|
|
12177
|
-
pagination:
|
|
12178
|
-
checkbox:
|
|
12179
|
-
radio:
|
|
12180
|
-
switch:
|
|
12181
|
-
segmentedControl:
|
|
12182
|
-
tabs:
|
|
12183
|
-
accordion:
|
|
12184
|
-
tooltip:
|
|
12185
|
-
tour:
|
|
12186
|
-
skeleton:
|
|
12187
|
-
datatable:
|
|
12188
|
-
toast:
|
|
12189
|
-
alert:
|
|
12190
|
-
emptyState:
|
|
12191
|
-
progress:
|
|
12192
|
-
badge:
|
|
12193
|
-
chip:
|
|
12194
|
-
filterChips:
|
|
12195
|
-
avatar:
|
|
12196
|
-
spinner:
|
|
12197
|
-
slider:
|
|
12198
|
-
splitter:
|
|
12199
|
-
stepper:
|
|
12200
|
-
wizard:
|
|
12201
|
-
timeline:
|
|
12202
|
-
rating:
|
|
12203
|
-
tree:
|
|
12204
|
-
treeselect:
|
|
12205
|
-
virtualScroller:
|
|
12188
|
+
divider: Xd,
|
|
12189
|
+
pageHeader: Ud,
|
|
12190
|
+
menu: qd,
|
|
12191
|
+
modal: Qd,
|
|
12192
|
+
confirmDialog: Zd,
|
|
12193
|
+
drawer: Jd,
|
|
12194
|
+
popover: eu,
|
|
12195
|
+
dropdown: tu,
|
|
12196
|
+
splitbutton: au,
|
|
12197
|
+
contextMenu: ou,
|
|
12198
|
+
commandPalette: ru,
|
|
12199
|
+
notificationCenter: lu,
|
|
12200
|
+
appShell: nu,
|
|
12201
|
+
kanbanBoard: su,
|
|
12202
|
+
select: iu,
|
|
12203
|
+
autocomplete: du,
|
|
12204
|
+
combobox: uu,
|
|
12205
|
+
multiselect: cu,
|
|
12206
|
+
taginput: vu,
|
|
12207
|
+
datepicker: fu,
|
|
12208
|
+
daterangepicker: pu,
|
|
12209
|
+
timepicker: mu,
|
|
12210
|
+
datetimepicker: gu,
|
|
12211
|
+
calendar: bu,
|
|
12212
|
+
pagination: hu,
|
|
12213
|
+
checkbox: yu,
|
|
12214
|
+
radio: _u,
|
|
12215
|
+
switch: ku,
|
|
12216
|
+
segmentedControl: Cu,
|
|
12217
|
+
tabs: $u,
|
|
12218
|
+
accordion: wu,
|
|
12219
|
+
tooltip: zu,
|
|
12220
|
+
tour: Su,
|
|
12221
|
+
skeleton: Bu,
|
|
12222
|
+
datatable: xu,
|
|
12223
|
+
toast: Vu,
|
|
12224
|
+
alert: Lu,
|
|
12225
|
+
emptyState: Fu,
|
|
12226
|
+
progress: Tu,
|
|
12227
|
+
badge: Iu,
|
|
12228
|
+
chip: Du,
|
|
12229
|
+
filterChips: Ru,
|
|
12230
|
+
avatar: Mu,
|
|
12231
|
+
spinner: Pu,
|
|
12232
|
+
slider: Ou,
|
|
12233
|
+
splitter: Eu,
|
|
12234
|
+
stepper: Au,
|
|
12235
|
+
wizard: Hu,
|
|
12236
|
+
timeline: Wu,
|
|
12237
|
+
rating: Ku,
|
|
12238
|
+
tree: Nu,
|
|
12239
|
+
treeselect: Gu,
|
|
12240
|
+
virtualScroller: ju
|
|
12206
12241
|
}
|
|
12207
12242
|
};
|
|
12208
12243
|
export {
|
|
12209
|
-
|
|
12210
|
-
|
|
12211
|
-
|
|
12212
|
-
|
|
12213
|
-
|
|
12214
|
-
|
|
12215
|
-
|
|
12216
|
-
|
|
12244
|
+
Pc as Accordion,
|
|
12245
|
+
Oc as AccordionItem,
|
|
12246
|
+
Hc as Alert,
|
|
12247
|
+
Qc as AppShell,
|
|
12248
|
+
_c as Autocomplete,
|
|
12249
|
+
nv as Avatar,
|
|
12250
|
+
ov as Badge,
|
|
12251
|
+
hv as Breadcrumbs,
|
|
12217
12252
|
Ze as Button,
|
|
12218
|
-
|
|
12219
|
-
|
|
12253
|
+
ac as ButtonGroup,
|
|
12254
|
+
xc as Calendar,
|
|
12220
12255
|
qt as Card,
|
|
12221
|
-
|
|
12222
|
-
|
|
12223
|
-
|
|
12224
|
-
|
|
12225
|
-
|
|
12226
|
-
|
|
12227
|
-
|
|
12228
|
-
|
|
12229
|
-
|
|
12230
|
-
|
|
12231
|
-
|
|
12232
|
-
|
|
12233
|
-
|
|
12234
|
-
|
|
12235
|
-
|
|
12236
|
-
|
|
12237
|
-
|
|
12238
|
-
|
|
12239
|
-
|
|
12240
|
-
|
|
12241
|
-
|
|
12242
|
-
|
|
12243
|
-
|
|
12244
|
-
|
|
12245
|
-
|
|
12246
|
-
oc as
|
|
12247
|
-
|
|
12248
|
-
|
|
12256
|
+
Lc as Checkbox,
|
|
12257
|
+
rv as Chip,
|
|
12258
|
+
cc as ColorPicker,
|
|
12259
|
+
kc as Combobox,
|
|
12260
|
+
Uc as CommandPalette,
|
|
12261
|
+
Gc as ConfirmDialog,
|
|
12262
|
+
qu as Container,
|
|
12263
|
+
Xc as ContextMenu,
|
|
12264
|
+
iv as DataTable,
|
|
12265
|
+
wc as DatePicker,
|
|
12266
|
+
zc as DateRangePicker,
|
|
12267
|
+
Bc as DateTimePicker,
|
|
12268
|
+
zv as DefaultTheme,
|
|
12269
|
+
yv as Divider,
|
|
12270
|
+
jc as Drawer,
|
|
12271
|
+
Yl as Dropdown,
|
|
12272
|
+
Wc as EmptyState,
|
|
12273
|
+
hc as FileUpload,
|
|
12274
|
+
lv as FilterChips,
|
|
12275
|
+
pc as Form,
|
|
12276
|
+
mc as FormField,
|
|
12277
|
+
Zu as Grid,
|
|
12278
|
+
Ju as GridItem,
|
|
12279
|
+
tc as Inline,
|
|
12280
|
+
nc as InlineEdit,
|
|
12281
|
+
oc as Input,
|
|
12282
|
+
lc as InputAddon,
|
|
12283
|
+
rc as InputGroup,
|
|
12284
|
+
Zc as KanbanBoard,
|
|
12249
12285
|
it as Link,
|
|
12250
|
-
|
|
12251
|
-
|
|
12286
|
+
vc as MaskedInput,
|
|
12287
|
+
ic as MentionInput,
|
|
12252
12288
|
ht as Menu,
|
|
12253
12289
|
Ol as Modal,
|
|
12254
|
-
|
|
12255
|
-
|
|
12256
|
-
|
|
12257
|
-
|
|
12258
|
-
|
|
12259
|
-
|
|
12260
|
-
|
|
12261
|
-
|
|
12262
|
-
|
|
12263
|
-
|
|
12264
|
-
|
|
12265
|
-
|
|
12266
|
-
|
|
12267
|
-
|
|
12268
|
-
|
|
12269
|
-
|
|
12270
|
-
|
|
12271
|
-
|
|
12272
|
-
|
|
12273
|
-
|
|
12274
|
-
|
|
12275
|
-
|
|
12276
|
-
|
|
12277
|
-
|
|
12278
|
-
|
|
12279
|
-
|
|
12280
|
-
|
|
12281
|
-
|
|
12282
|
-
|
|
12283
|
-
|
|
12284
|
-
|
|
12285
|
-
|
|
12286
|
-
|
|
12287
|
-
|
|
12288
|
-
|
|
12289
|
-
|
|
12290
|
-
|
|
12290
|
+
Cc as MultiSelect,
|
|
12291
|
+
qc as NotificationCenter,
|
|
12292
|
+
fc as NumberInput,
|
|
12293
|
+
uc as OtpInput,
|
|
12294
|
+
_v as PageHeader,
|
|
12295
|
+
Vc as Pagination,
|
|
12296
|
+
dc as PasswordInput,
|
|
12297
|
+
Nc as Popover,
|
|
12298
|
+
av as Progress,
|
|
12299
|
+
Tc as RadioButton,
|
|
12300
|
+
Fc as RadioGroup,
|
|
12301
|
+
gv as Rating,
|
|
12302
|
+
bc as RichTextEditor,
|
|
12303
|
+
sc as SearchInput,
|
|
12304
|
+
Qu as Section,
|
|
12305
|
+
Ic as SegmentedControl,
|
|
12306
|
+
yc as Select,
|
|
12307
|
+
tv as Skeleton,
|
|
12308
|
+
dv as Slider,
|
|
12309
|
+
sv as Spinner,
|
|
12310
|
+
Yc as SplitButton,
|
|
12311
|
+
uv as Splitter,
|
|
12312
|
+
cv as SplitterPanel,
|
|
12313
|
+
ec as Stack,
|
|
12314
|
+
vv as Stepper,
|
|
12315
|
+
Kc as Switch,
|
|
12316
|
+
Rc as Tab,
|
|
12317
|
+
Mc as TabPanel,
|
|
12318
|
+
Dc as Tabs,
|
|
12319
|
+
$c as TagInput,
|
|
12320
|
+
gc as Textarea,
|
|
12321
|
+
Sc as TimePicker,
|
|
12322
|
+
mv as Timeline,
|
|
12323
|
+
Ec as Toast,
|
|
12324
|
+
Ac as ToastContainer,
|
|
12325
|
+
Jc as Tooltip,
|
|
12326
|
+
ev as Tour,
|
|
12291
12327
|
Ei as Tree,
|
|
12292
|
-
|
|
12293
|
-
|
|
12294
|
-
|
|
12295
|
-
|
|
12296
|
-
|
|
12297
|
-
|
|
12328
|
+
bv as TreeSelect,
|
|
12329
|
+
kv as VirtualScroller,
|
|
12330
|
+
wv as VueForge,
|
|
12331
|
+
fv as Wizard,
|
|
12332
|
+
pv as WizardStep,
|
|
12333
|
+
$v as getTheme,
|
|
12298
12334
|
xt as setTheme,
|
|
12299
|
-
|
|
12335
|
+
Cv as updateTheme
|
|
12300
12336
|
};
|