@db-ux/v-core-components 5.0.4 → 5.1.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/CHANGELOG.md +8 -0
- package/dist/components/custom-select/custom-select.vue.d.ts +2 -0
- package/dist/components/drawer/model.d.ts +0 -1
- package/dist/components/input/input.vue.d.ts +1 -0
- package/dist/components/select/select.vue.d.ts +1 -0
- package/dist/components/textarea/textarea.vue.d.ts +1 -0
- package/dist/db-ux.es.js +223 -206
- package/dist/db-ux.umd.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/shared/model.d.ts +4 -0
- package/dist/utils/allow-discrete-ponyfill.d.ts +62 -0
- package/package.json +3 -3
package/dist/db-ux.es.js
CHANGED
|
@@ -654,6 +654,7 @@ var x = () => {
|
|
|
654
654
|
invalidMessage: { default: void 0 },
|
|
655
655
|
messageIcon: { default: void 0 },
|
|
656
656
|
autocomplete: {},
|
|
657
|
+
autoComplete: {},
|
|
657
658
|
showMessage: {
|
|
658
659
|
type: [Boolean, String],
|
|
659
660
|
default: void 0
|
|
@@ -1337,6 +1338,7 @@ var x = () => {
|
|
|
1337
1338
|
invalidMessage: { default: void 0 },
|
|
1338
1339
|
messageIcon: { default: void 0 },
|
|
1339
1340
|
autocomplete: { default: void 0 },
|
|
1341
|
+
autoComplete: { default: void 0 },
|
|
1340
1342
|
showMessage: {
|
|
1341
1343
|
type: [Boolean, String],
|
|
1342
1344
|
default: void 0
|
|
@@ -1464,7 +1466,7 @@ var x = () => {
|
|
|
1464
1466
|
form: s.form,
|
|
1465
1467
|
pattern: s.pattern,
|
|
1466
1468
|
size: s.size,
|
|
1467
|
-
autoComplete: s.autocomplete,
|
|
1469
|
+
autoComplete: s.autoComplete ?? s.autocomplete,
|
|
1468
1470
|
autoFocus: _(A)(s.autofocus, "autofocus"),
|
|
1469
1471
|
enterKeyHint: s.enterkeyhint,
|
|
1470
1472
|
inputMode: s.inputmode,
|
|
@@ -1795,6 +1797,7 @@ var x = () => {
|
|
|
1795
1797
|
"id",
|
|
1796
1798
|
"form",
|
|
1797
1799
|
"name",
|
|
1800
|
+
"autocomplete",
|
|
1798
1801
|
"data-custom-validity",
|
|
1799
1802
|
"multiple",
|
|
1800
1803
|
"disabled",
|
|
@@ -1843,7 +1846,8 @@ var x = () => {
|
|
|
1843
1846
|
validMessage: { default: void 0 },
|
|
1844
1847
|
invalidMessage: { default: void 0 },
|
|
1845
1848
|
messageIcon: { default: void 0 },
|
|
1846
|
-
autocomplete: {},
|
|
1849
|
+
autocomplete: { default: void 0 },
|
|
1850
|
+
autoComplete: { default: void 0 },
|
|
1847
1851
|
showMessage: {
|
|
1848
1852
|
type: [Boolean, String],
|
|
1849
1853
|
default: void 0
|
|
@@ -2285,6 +2289,7 @@ var x = () => {
|
|
|
2285
2289
|
ref: Q,
|
|
2286
2290
|
form: s.form,
|
|
2287
2291
|
name: s.name,
|
|
2292
|
+
autocomplete: s.autoComplete ?? s.autocomplete,
|
|
2288
2293
|
"data-custom-validity": H.value,
|
|
2289
2294
|
multiple: _(A)(s.multiple, "multiple"),
|
|
2290
2295
|
disabled: _(A)(s.disabled, "disabled"),
|
|
@@ -2533,18 +2538,41 @@ var x = () => {
|
|
|
2533
2538
|
class: c(_(C)("db-divider", t.class))
|
|
2534
2539
|
}, null, 10, ln));
|
|
2535
2540
|
}
|
|
2536
|
-
}), dn = ["none", "_"], fn = ["horizontal", "vertical"], pn =
|
|
2541
|
+
}), dn = ["none", "_"], fn = ["horizontal", "vertical"], pn = 0, mn = (() => {
|
|
2542
|
+
let e;
|
|
2543
|
+
return () => {
|
|
2544
|
+
if (e === void 0) {
|
|
2545
|
+
if (typeof document > "u" || !document.body) return !1;
|
|
2546
|
+
let t = document.createElement("div");
|
|
2547
|
+
t.style.transition = "display 1s allow-discrete", document.body.append(t);
|
|
2548
|
+
let n = getComputedStyle(t);
|
|
2549
|
+
n.display, t.style.display = "none";
|
|
2550
|
+
let r = n.display !== "none", i = CSS.supports("overlay", "auto");
|
|
2551
|
+
e = r && i, t.remove();
|
|
2552
|
+
}
|
|
2553
|
+
return e;
|
|
2554
|
+
};
|
|
2555
|
+
})(), hn = (e) => {
|
|
2556
|
+
if (mn()) {
|
|
2557
|
+
e.close();
|
|
2558
|
+
return;
|
|
2559
|
+
}
|
|
2560
|
+
let t = getComputedStyle(e).getPropertyValue("--db-transition-duration").trim(), n = t.includes("ms") ? parseFloat(t) : parseFloat(t || "0") * 1e3, r = String(++pn);
|
|
2561
|
+
e.dataset.closingAllowDiscretePonyfill = r, O(() => {
|
|
2562
|
+
e.dataset.closingAllowDiscretePonyfill === r && (delete e.dataset.closingAllowDiscretePonyfill, e.close());
|
|
2563
|
+
}, n);
|
|
2564
|
+
}, gn = [
|
|
2537
2565
|
"id",
|
|
2538
2566
|
"data-position",
|
|
2539
2567
|
"data-backdrop",
|
|
2540
2568
|
"data-direction",
|
|
2541
2569
|
"data-variant"
|
|
2542
|
-
],
|
|
2570
|
+
], _n = [
|
|
2543
2571
|
"data-container-size",
|
|
2544
2572
|
"data-show-spacing",
|
|
2545
2573
|
"data-direction",
|
|
2546
2574
|
"data-rounded"
|
|
2547
|
-
],
|
|
2575
|
+
], vn = { class: "db-drawer-content" }, yn = /* @__PURE__ */ s({
|
|
2548
2576
|
name: "DBDrawer",
|
|
2549
2577
|
__name: "drawer",
|
|
2550
2578
|
props: {
|
|
@@ -2580,11 +2608,11 @@ var x = () => {
|
|
|
2580
2608
|
close: {}
|
|
2581
2609
|
},
|
|
2582
2610
|
setup(e) {
|
|
2583
|
-
let t = e, n = p(!1), a = p(!1), o = p(null)
|
|
2611
|
+
let t = e, n = p(!1), a = p(!1), o = p(null);
|
|
2584
2612
|
u(() => {
|
|
2585
|
-
|
|
2613
|
+
m(), n.value = !0;
|
|
2586
2614
|
}), y(() => [t.open], () => {
|
|
2587
|
-
|
|
2615
|
+
m();
|
|
2588
2616
|
}, {
|
|
2589
2617
|
immediate: !0,
|
|
2590
2618
|
flush: "post"
|
|
@@ -2601,35 +2629,23 @@ var x = () => {
|
|
|
2601
2629
|
immediate: !0,
|
|
2602
2630
|
flush: "post"
|
|
2603
2631
|
});
|
|
2604
|
-
function
|
|
2632
|
+
function s() {
|
|
2605
2633
|
return t.position === "absolute" || t.backdrop === "none" || t.variant === "inside";
|
|
2606
2634
|
}
|
|
2607
|
-
function
|
|
2635
|
+
function l(e) {
|
|
2608
2636
|
a.value = e?.target?.nodeName === "DIALOG";
|
|
2609
2637
|
}
|
|
2610
|
-
function
|
|
2638
|
+
function d(e) {
|
|
2611
2639
|
if (e) if (B(e)) e.key === "Escape" && (e.preventDefault(), t.onClose && t.onClose(e));
|
|
2612
2640
|
else {
|
|
2613
2641
|
let n = e.target?.nodeName === "DIALOG" && e.type === "click" && t.backdrop !== "none" && a.value, r = !!e.target?.closest?.("[data-action=\"close\"]");
|
|
2614
2642
|
(n || r) && (r && e.stopPropagation(), t.onClose && t.onClose(e)), a.value = !1;
|
|
2615
2643
|
}
|
|
2616
2644
|
}
|
|
2617
|
-
function
|
|
2645
|
+
function m() {
|
|
2618
2646
|
if (o.value) {
|
|
2619
2647
|
let e = A(t.open, "open");
|
|
2620
|
-
|
|
2621
|
-
s.value && (s.value.dataset.transition = "open");
|
|
2622
|
-
}, 1)), !e && o.value.open) {
|
|
2623
|
-
s.value && (s.value.dataset.transition = "close");
|
|
2624
|
-
let e = 401;
|
|
2625
|
-
if (s.value) {
|
|
2626
|
-
let t = getComputedStyle(s.value).getPropertyValue("--db-drawer-close-delay").trim(), n = parseFloat(t);
|
|
2627
|
-
n > 0 && (e = n * 1e3 + 1);
|
|
2628
|
-
}
|
|
2629
|
-
O(() => {
|
|
2630
|
-
o.value?.close();
|
|
2631
|
-
}, e);
|
|
2632
|
-
}
|
|
2648
|
+
e && !o.value.open && (s() ? o.value.show() : o.value.showModal()), e && o.value.open && delete o.value.dataset.closingAllowDiscretePonyfill, !e && o.value.open && hn(o.value);
|
|
2633
2649
|
}
|
|
2634
2650
|
}
|
|
2635
2651
|
return (n, a) => (f(), r("dialog", {
|
|
@@ -2637,16 +2653,14 @@ var x = () => {
|
|
|
2637
2653
|
id: e.id ?? e.propOverrides?.id,
|
|
2638
2654
|
ref_key: "_ref",
|
|
2639
2655
|
ref: o,
|
|
2640
|
-
onClick: a[0] ||= async (e) =>
|
|
2641
|
-
onMousedown: a[1] ||= async (e) =>
|
|
2642
|
-
onKeydown: a[2] ||= async (e) =>
|
|
2656
|
+
onClick: a[0] ||= async (e) => d(e),
|
|
2657
|
+
onMousedown: a[1] ||= async (e) => l(e),
|
|
2658
|
+
onKeydown: a[2] ||= async (e) => d(e),
|
|
2643
2659
|
"data-position": e.position,
|
|
2644
2660
|
"data-backdrop": e.backdrop,
|
|
2645
2661
|
"data-direction": e.direction,
|
|
2646
2662
|
"data-variant": e.variant
|
|
2647
2663
|
}, [i("article", {
|
|
2648
|
-
ref_key: "dialogContainerRef",
|
|
2649
|
-
ref: s,
|
|
2650
2664
|
class: c(_(C)("db-drawer-container", t.class)),
|
|
2651
2665
|
"data-container-size": e.containerSize,
|
|
2652
2666
|
"data-show-spacing": _(k)(e.showSpacing ?? !0, "showSpacing"),
|
|
@@ -2654,11 +2668,11 @@ var x = () => {
|
|
|
2654
2668
|
"data-rounded": _(k)(e.rounded, "rounded")
|
|
2655
2669
|
}, [
|
|
2656
2670
|
h(n.$slots, "header"),
|
|
2657
|
-
i("div",
|
|
2671
|
+
i("div", vn, [h(n.$slots, "default")]),
|
|
2658
2672
|
h(n.$slots, "footer")
|
|
2659
|
-
], 10,
|
|
2673
|
+
], 10, _n)], 40, gn));
|
|
2660
2674
|
}
|
|
2661
|
-
}),
|
|
2675
|
+
}), bn = ["id"], xn = /* @__PURE__ */ s({
|
|
2662
2676
|
name: "DBDrawerFooter",
|
|
2663
2677
|
__name: "drawer-footer",
|
|
2664
2678
|
props: {
|
|
@@ -2676,9 +2690,9 @@ var x = () => {
|
|
|
2676
2690
|
ref: n,
|
|
2677
2691
|
id: e.id ?? e.propOverrides?.id,
|
|
2678
2692
|
class: c(_(C)("db-drawer-footer", t.class))
|
|
2679
|
-
}, [h(i.$slots, "default")], 10,
|
|
2693
|
+
}, [h(i.$slots, "default")], 10, bn));
|
|
2680
2694
|
}
|
|
2681
|
-
}),
|
|
2695
|
+
}), Sn = ["id"], Cn = ["id"], wn = { key: 0 }, Tn = /* @__PURE__ */ s({
|
|
2682
2696
|
name: "DBDrawerHeader",
|
|
2683
2697
|
__name: "drawer-header",
|
|
2684
2698
|
props: {
|
|
@@ -2722,7 +2736,7 @@ var x = () => {
|
|
|
2722
2736
|
i("header", {
|
|
2723
2737
|
class: "db-drawer-header-container",
|
|
2724
2738
|
id: s.value
|
|
2725
|
-
}, [h(t.$slots, "start-slot"), e.text ? (f(), r("h2",
|
|
2739
|
+
}, [h(t.$slots, "start-slot"), e.text ? (f(), r("h2", wn, g(e.text), 1)) : h(t.$slots, "default", {}, void 0, void 0, 1)], 8, Cn),
|
|
2726
2740
|
h(t.$slots, "end-slot"),
|
|
2727
2741
|
o(Ve, {
|
|
2728
2742
|
"data-action": "close",
|
|
@@ -2738,27 +2752,27 @@ var x = () => {
|
|
|
2738
2752
|
})]),
|
|
2739
2753
|
_: 1
|
|
2740
2754
|
}, 8, ["id"])
|
|
2741
|
-
], 10,
|
|
2755
|
+
], 10, Sn));
|
|
2742
2756
|
}
|
|
2743
|
-
}),
|
|
2757
|
+
}), En = [
|
|
2744
2758
|
"none",
|
|
2745
2759
|
"strong",
|
|
2746
2760
|
"weak",
|
|
2747
2761
|
"invisible"
|
|
2748
|
-
],
|
|
2762
|
+
], Dn = [
|
|
2749
2763
|
"to-left",
|
|
2750
2764
|
"to-right",
|
|
2751
2765
|
"up",
|
|
2752
2766
|
"down"
|
|
2753
|
-
],
|
|
2767
|
+
], On = ["modal", "inside"], kn = ["fixed", "absolute"], An = [
|
|
2754
2768
|
"small",
|
|
2755
2769
|
"medium",
|
|
2756
2770
|
"large",
|
|
2757
2771
|
"full"
|
|
2758
|
-
],
|
|
2772
|
+
], jn = (e) => {
|
|
2759
2773
|
let { target: t } = e;
|
|
2760
2774
|
return !!(!t?.classList?.contains("db-navigation-item-expand-button") && t?.parentElement?.classList.contains("db-navigation-item"));
|
|
2761
|
-
},
|
|
2775
|
+
}, Mn = class {
|
|
2762
2776
|
element;
|
|
2763
2777
|
subNavigation;
|
|
2764
2778
|
parentSubNavigation = null;
|
|
@@ -2826,11 +2840,11 @@ var x = () => {
|
|
|
2826
2840
|
let t = this.hasMouseEnteredSubNavigation(), n = this.getTriangleCoordinates(t ? "fill-gap" : "safe-triangle");
|
|
2827
2841
|
n && (this.element.style.setProperty("--db-navigation-item-clip-path", `polygon(${n.lb}, ${n.lt}, ${n.rt}, ${n.rb})`), t && (this.triangleData = void 0));
|
|
2828
2842
|
}
|
|
2829
|
-
},
|
|
2843
|
+
}, Nn = [
|
|
2830
2844
|
"id",
|
|
2831
2845
|
"data-width",
|
|
2832
2846
|
"data-on-forcing-mobile"
|
|
2833
|
-
],
|
|
2847
|
+
], Pn = { class: "db-header-meta-navigation" }, Fn = { class: "db-header-navigation-bar" }, In = { class: "db-header-brand-container" }, Ln = { class: "db-header-navigation-container" }, Rn = { class: "db-header-navigation" }, zn = { class: "db-header-primary-action" }, Bn = { class: "db-header-action-container" }, Vn = { class: "db-header-burger-menu-container" }, Hn = { class: "db-header-secondary-action" }, Un = { class: "db-header-drawer-navigation" }, Wn = { class: "db-header-meta-navigation" }, Gn = { class: "db-header-secondary-action" }, Kn = /* @__PURE__ */ s({
|
|
2834
2848
|
name: "DBHeader",
|
|
2835
2849
|
__name: "header",
|
|
2836
2850
|
props: {
|
|
@@ -2882,7 +2896,7 @@ var x = () => {
|
|
|
2882
2896
|
t.onToggle && t.onToggle(n);
|
|
2883
2897
|
}
|
|
2884
2898
|
function m(e) {
|
|
2885
|
-
|
|
2899
|
+
jn(e) && d();
|
|
2886
2900
|
}
|
|
2887
2901
|
return (n, u) => (f(), r("header", {
|
|
2888
2902
|
ref_key: "_ref",
|
|
@@ -2892,11 +2906,11 @@ var x = () => {
|
|
|
2892
2906
|
"data-width": e.width,
|
|
2893
2907
|
"data-on-forcing-mobile": e.forceMobile && !s.value
|
|
2894
2908
|
}, [
|
|
2895
|
-
i("div",
|
|
2896
|
-
i("div",
|
|
2897
|
-
i("div",
|
|
2898
|
-
i("div",
|
|
2899
|
-
i("div",
|
|
2909
|
+
i("div", Pn, [h(n.$slots, "meta-navigation")]),
|
|
2910
|
+
i("div", Fn, [
|
|
2911
|
+
i("div", In, [h(n.$slots, "brand")]),
|
|
2912
|
+
i("div", Ln, [i("div", Rn, [h(n.$slots, "default")]), i("div", zn, [h(n.$slots, "primary-action")])]),
|
|
2913
|
+
i("div", Bn, [i("div", Vn, [o(Ve, {
|
|
2900
2914
|
icon: "menu",
|
|
2901
2915
|
variant: "ghost",
|
|
2902
2916
|
noText: !0,
|
|
@@ -2904,14 +2918,14 @@ var x = () => {
|
|
|
2904
2918
|
}, {
|
|
2905
2919
|
default: b(() => [a(g(e.burgerMenuLabel ?? _("Open navigation menu")), 1)]),
|
|
2906
2920
|
_: 1
|
|
2907
|
-
}, 8, ["onClick"])]), i("div",
|
|
2921
|
+
}, 8, ["onClick"])]), i("div", Hn, [h(n.$slots, "secondary-action")])])
|
|
2908
2922
|
]),
|
|
2909
|
-
o(
|
|
2923
|
+
o(yn, {
|
|
2910
2924
|
rounded: !0,
|
|
2911
2925
|
open: _(A)(e.drawerOpen),
|
|
2912
2926
|
onClose: (e) => d()
|
|
2913
2927
|
}, {
|
|
2914
|
-
header: b(() => [o(
|
|
2928
|
+
header: b(() => [o(Tn, {
|
|
2915
2929
|
closeButtonId: e.closeButtonId,
|
|
2916
2930
|
closeButtonText: e.closeButtonText,
|
|
2917
2931
|
text: e.drawerHeaderText
|
|
@@ -2920,24 +2934,24 @@ var x = () => {
|
|
|
2920
2934
|
"closeButtonText",
|
|
2921
2935
|
"text"
|
|
2922
2936
|
])]),
|
|
2923
|
-
footer: b(() => [o(
|
|
2924
|
-
default: b(() => [i("div",
|
|
2937
|
+
footer: b(() => [o(xn, null, {
|
|
2938
|
+
default: b(() => [i("div", Gn, [h(n.$slots, "secondary-action")])]),
|
|
2925
2939
|
_: 3
|
|
2926
2940
|
})]),
|
|
2927
|
-
default: b(() => [i("div",
|
|
2941
|
+
default: b(() => [i("div", Un, [i("div", {
|
|
2928
2942
|
class: "db-header-navigation",
|
|
2929
2943
|
onClick: u[0] ||= async (e) => m(e)
|
|
2930
|
-
}, [h(n.$slots, "default")]), i("div",
|
|
2944
|
+
}, [h(n.$slots, "default")]), i("div", Wn, [h(n.$slots, "meta-navigation")])])]),
|
|
2931
2945
|
_: 3
|
|
2932
2946
|
}, 8, ["open", "onClose"])
|
|
2933
|
-
], 10,
|
|
2947
|
+
], 10, Nn));
|
|
2934
2948
|
}
|
|
2935
|
-
}),
|
|
2949
|
+
}), qn = [
|
|
2936
2950
|
"id",
|
|
2937
2951
|
"data-icon",
|
|
2938
2952
|
"data-icon-weight",
|
|
2939
2953
|
"data-icon-variant"
|
|
2940
|
-
],
|
|
2954
|
+
], Jn = /* @__PURE__ */ s({
|
|
2941
2955
|
name: "DBIcon",
|
|
2942
2956
|
__name: "icon",
|
|
2943
2957
|
props: {
|
|
@@ -2963,16 +2977,16 @@ var x = () => {
|
|
|
2963
2977
|
"data-icon": t.icon,
|
|
2964
2978
|
"data-icon-weight": t.weight,
|
|
2965
2979
|
"data-icon-variant": t.variant
|
|
2966
|
-
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(s.$slots, "default")], 10,
|
|
2980
|
+
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(s.$slots, "default")], 10, qn));
|
|
2967
2981
|
}
|
|
2968
|
-
}),
|
|
2982
|
+
}), Yn = [
|
|
2969
2983
|
"16",
|
|
2970
2984
|
"20",
|
|
2971
2985
|
"24",
|
|
2972
2986
|
"32",
|
|
2973
2987
|
"48",
|
|
2974
2988
|
"64"
|
|
2975
|
-
],
|
|
2989
|
+
], Xn = [
|
|
2976
2990
|
"color",
|
|
2977
2991
|
"date",
|
|
2978
2992
|
"datetime-local",
|
|
@@ -2989,7 +3003,7 @@ var x = () => {
|
|
|
2989
3003
|
"time",
|
|
2990
3004
|
"url",
|
|
2991
3005
|
"week"
|
|
2992
|
-
],
|
|
3006
|
+
], Zn = [
|
|
2993
3007
|
"id",
|
|
2994
3008
|
"href",
|
|
2995
3009
|
"target",
|
|
@@ -3004,7 +3018,7 @@ var x = () => {
|
|
|
3004
3018
|
"data-variant",
|
|
3005
3019
|
"data-content",
|
|
3006
3020
|
"data-wrap"
|
|
3007
|
-
],
|
|
3021
|
+
], Qn = /* @__PURE__ */ s({
|
|
3008
3022
|
name: "DBLink",
|
|
3009
3023
|
__name: "link",
|
|
3010
3024
|
props: {
|
|
@@ -3067,13 +3081,13 @@ var x = () => {
|
|
|
3067
3081
|
"data-content": t.content || "internal",
|
|
3068
3082
|
"data-wrap": _(k)(t.wrap, "wrap"),
|
|
3069
3083
|
onClick: u[0] ||= async (e) => s(e)
|
|
3070
|
-
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(l.$slots, "default")], 10,
|
|
3084
|
+
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(l.$slots, "default")], 10, Zn));
|
|
3071
3085
|
}
|
|
3072
|
-
}),
|
|
3086
|
+
}), $n = [
|
|
3073
3087
|
"adaptive",
|
|
3074
3088
|
"brand",
|
|
3075
3089
|
"inline"
|
|
3076
|
-
],
|
|
3090
|
+
], er = ["medium", "small"], tr = ["external", "internal"], nr = ["id"], rr = /* @__PURE__ */ s({
|
|
3077
3091
|
name: "DBNavigation",
|
|
3078
3092
|
__name: "navigation",
|
|
3079
3093
|
props: {
|
|
@@ -3091,9 +3105,9 @@ var x = () => {
|
|
|
3091
3105
|
ref: n,
|
|
3092
3106
|
id: e.id ?? e.propOverrides?.id,
|
|
3093
3107
|
class: c(_(C)("db-navigation", t.class))
|
|
3094
|
-
}, [i("menu", null, [h(a.$slots, "default")])], 10,
|
|
3108
|
+
}, [i("menu", null, [h(a.$slots, "default")])], 10, nr));
|
|
3095
3109
|
}
|
|
3096
|
-
}),
|
|
3110
|
+
}), ir = [
|
|
3097
3111
|
"id",
|
|
3098
3112
|
"data-width",
|
|
3099
3113
|
"data-icon",
|
|
@@ -3101,20 +3115,20 @@ var x = () => {
|
|
|
3101
3115
|
"data-active",
|
|
3102
3116
|
"data-wrap",
|
|
3103
3117
|
"aria-disabled"
|
|
3104
|
-
],
|
|
3118
|
+
], ar = [
|
|
3105
3119
|
"id",
|
|
3106
3120
|
"aria-haspopup",
|
|
3107
3121
|
"aria-expanded",
|
|
3108
3122
|
"aria-controls",
|
|
3109
3123
|
"disabled"
|
|
3110
|
-
],
|
|
3124
|
+
], or = [
|
|
3111
3125
|
"id",
|
|
3112
3126
|
"aria-labelledby",
|
|
3113
3127
|
"data-force-close"
|
|
3114
|
-
],
|
|
3128
|
+
], sr = {
|
|
3115
3129
|
key: 0,
|
|
3116
3130
|
class: "db-mobile-navigation-back"
|
|
3117
|
-
},
|
|
3131
|
+
}, cr = /* @__PURE__ */ s({
|
|
3118
3132
|
name: "DBNavigationItem",
|
|
3119
3133
|
__name: "navigation-item",
|
|
3120
3134
|
props: {
|
|
@@ -3174,7 +3188,7 @@ var x = () => {
|
|
|
3174
3188
|
}), y(() => [d.value, j.value], () => {
|
|
3175
3189
|
if (d.value && j.value) {
|
|
3176
3190
|
let e = j.value.querySelector("menu");
|
|
3177
|
-
e && (e.children?.length > 0 ? (m.value = !0, T.value ||= new
|
|
3191
|
+
e && (e.children?.length > 0 ? (m.value = !0, T.value ||= new Mn(j.value, e)) : x.value = !1);
|
|
3178
3192
|
}
|
|
3179
3193
|
}, {
|
|
3180
3194
|
immediate: !0,
|
|
@@ -3213,13 +3227,13 @@ var x = () => {
|
|
|
3213
3227
|
"aria-controls": E.value,
|
|
3214
3228
|
disabled: _(A)(t.disabled, "disabled"),
|
|
3215
3229
|
onClick: u[0] ||= async (e) => N(e)
|
|
3216
|
-
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : h(s.$slots, "default", {}, void 0, void 0, 1)], 8,
|
|
3230
|
+
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : h(s.$slots, "default", {}, void 0, void 0, 1)], 8, ar), i("menu", {
|
|
3217
3231
|
class: "db-sub-navigation",
|
|
3218
3232
|
id: E.value,
|
|
3219
3233
|
"aria-labelledby": D.value,
|
|
3220
3234
|
"data-force-close": w.value,
|
|
3221
3235
|
onClick: u[1] ||= async (e) => M(e)
|
|
3222
|
-
}, [m.value ? (f(), r("div",
|
|
3236
|
+
}, [m.value ? (f(), r("div", sr, [o(Ve, {
|
|
3223
3237
|
icon: "arrow_left",
|
|
3224
3238
|
variant: "ghost",
|
|
3225
3239
|
id: t.backButtonId,
|
|
@@ -3227,9 +3241,9 @@ var x = () => {
|
|
|
3227
3241
|
}, {
|
|
3228
3242
|
default: b(() => [a(g(t.backButtonText ?? _("Back")), 1)]),
|
|
3229
3243
|
_: 1
|
|
3230
|
-
}, 8, ["id", "onClick"])])) : n("", !0), h(s.$slots, "sub-navigation")], 8,
|
|
3244
|
+
}, 8, ["id", "onClick"])])) : n("", !0), h(s.$slots, "sub-navigation")], 8, or)], 64)) : (f(), r(e, { key: 1 }, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : h(s.$slots, "default", {}, void 0, void 0, 1)], 64))], 42, ir));
|
|
3231
3245
|
}
|
|
3232
|
-
}),
|
|
3246
|
+
}), lr = [
|
|
3233
3247
|
"id",
|
|
3234
3248
|
"role",
|
|
3235
3249
|
"aria-live",
|
|
@@ -3238,10 +3252,10 @@ var x = () => {
|
|
|
3238
3252
|
"data-icon",
|
|
3239
3253
|
"data-show-icon",
|
|
3240
3254
|
"data-link-variant"
|
|
3241
|
-
],
|
|
3255
|
+
], ur = {
|
|
3242
3256
|
key: 0,
|
|
3243
3257
|
"data-area": "head"
|
|
3244
|
-
},
|
|
3258
|
+
}, dr = { "data-area": "content" }, fr = ["dateTime"], pr = /* @__PURE__ */ s({
|
|
3245
3259
|
name: "DBNotification",
|
|
3246
3260
|
__name: "notification",
|
|
3247
3261
|
props: {
|
|
@@ -3310,13 +3324,13 @@ var x = () => {
|
|
|
3310
3324
|
"data-link-variant": o.linkVariant
|
|
3311
3325
|
}, [
|
|
3312
3326
|
h(d.$slots, "image"),
|
|
3313
|
-
_(I)(o.headline, o.showHeadline) ? (f(), r("header",
|
|
3314
|
-
i("div",
|
|
3327
|
+
_(I)(o.headline, o.showHeadline) ? (f(), r("header", ur, g(o.headline), 1)) : n("", !0),
|
|
3328
|
+
i("div", dr, [o.text ? (f(), r(e, { key: 0 }, [a(g(o.text), 1)], 64)) : n("", !0), h(d.$slots, "default")]),
|
|
3315
3329
|
_(I)(o.timestamp, o.showTimestamp) ? (f(), r("time", {
|
|
3316
3330
|
key: 1,
|
|
3317
3331
|
"data-area": "timestamp",
|
|
3318
3332
|
dateTime: o.timestampDatetime
|
|
3319
|
-
}, g(o.timestamp), 9,
|
|
3333
|
+
}, g(o.timestamp), 9, fr)) : n("", !0),
|
|
3320
3334
|
h(d.$slots, "link"),
|
|
3321
3335
|
_(A)(o.closeable, "closeable") ? (f(), t(Ve, {
|
|
3322
3336
|
key: 2,
|
|
@@ -3330,22 +3344,22 @@ var x = () => {
|
|
|
3330
3344
|
default: b(() => [a(g(o.closeButtonText ?? _("Close")), 1)]),
|
|
3331
3345
|
_: 1
|
|
3332
3346
|
}, 8, ["id", "onClick"])) : n("", !0)
|
|
3333
|
-
], 10,
|
|
3347
|
+
], 10, lr));
|
|
3334
3348
|
}
|
|
3335
|
-
}),
|
|
3349
|
+
}), mr = [
|
|
3336
3350
|
"docked",
|
|
3337
3351
|
"standalone",
|
|
3338
3352
|
"overlay"
|
|
3339
|
-
],
|
|
3353
|
+
], hr = ["block", "inline"], gr = [
|
|
3340
3354
|
"assertive",
|
|
3341
3355
|
"polite",
|
|
3342
3356
|
"off"
|
|
3343
|
-
],
|
|
3357
|
+
], _r = [
|
|
3344
3358
|
"id",
|
|
3345
3359
|
"data-variant",
|
|
3346
3360
|
"data-fade-in",
|
|
3347
3361
|
"data-fonts-loaded"
|
|
3348
|
-
],
|
|
3362
|
+
], vr = /* @__PURE__ */ s({
|
|
3349
3363
|
name: "DBPage",
|
|
3350
3364
|
__name: "page",
|
|
3351
3365
|
props: {
|
|
@@ -3385,9 +3399,9 @@ var x = () => {
|
|
|
3385
3399
|
h(o.$slots, "header"),
|
|
3386
3400
|
i("main", { class: c(_(C)("db-main", e.mainClass)) }, [h(o.$slots, "default")], 2),
|
|
3387
3401
|
h(o.$slots, "footer")
|
|
3388
|
-
], 10,
|
|
3402
|
+
], 10, _r));
|
|
3389
3403
|
}
|
|
3390
|
-
}),
|
|
3404
|
+
}), yr = ["auto", "fixed"], br = ["hidden", "auto"], xr = ["id"], Sr = [
|
|
3391
3405
|
"data-spacing",
|
|
3392
3406
|
"data-gap",
|
|
3393
3407
|
"data-animation",
|
|
@@ -3395,7 +3409,7 @@ var x = () => {
|
|
|
3395
3409
|
"data-delay",
|
|
3396
3410
|
"data-width",
|
|
3397
3411
|
"data-placement"
|
|
3398
|
-
],
|
|
3412
|
+
], Cr = /* @__PURE__ */ s({
|
|
3399
3413
|
name: "DBPopover",
|
|
3400
3414
|
__name: "popover",
|
|
3401
3415
|
props: {
|
|
@@ -3499,14 +3513,14 @@ var x = () => {
|
|
|
3499
3513
|
"data-delay": e.delay,
|
|
3500
3514
|
"data-width": e.width,
|
|
3501
3515
|
"data-placement": e.placement
|
|
3502
|
-
}, [h(n.$slots, "default")], 8,
|
|
3516
|
+
}, [h(n.$slots, "default")], 8, Sr)], 10, xr));
|
|
3503
3517
|
}
|
|
3504
|
-
}),
|
|
3518
|
+
}), wr = [
|
|
3505
3519
|
"data-size",
|
|
3506
3520
|
"data-hide-label",
|
|
3507
3521
|
"data-hide-asterisk",
|
|
3508
3522
|
"for"
|
|
3509
|
-
],
|
|
3523
|
+
], Tr = [
|
|
3510
3524
|
"aria-invalid",
|
|
3511
3525
|
"data-custom-validity",
|
|
3512
3526
|
"id",
|
|
@@ -3515,7 +3529,7 @@ var x = () => {
|
|
|
3515
3529
|
"disabled",
|
|
3516
3530
|
"value",
|
|
3517
3531
|
"required"
|
|
3518
|
-
],
|
|
3532
|
+
], Er = /* @__PURE__ */ s({
|
|
3519
3533
|
name: "DBRadio",
|
|
3520
3534
|
__name: "radio",
|
|
3521
3535
|
props: {
|
|
@@ -3656,16 +3670,16 @@ var x = () => {
|
|
|
3656
3670
|
onChange: s[1] ||= async (e) => E(e),
|
|
3657
3671
|
onBlur: s[2] ||= async (e) => D(e),
|
|
3658
3672
|
onFocus: s[3] ||= async (e) => k(e)
|
|
3659
|
-
}, null, 40,
|
|
3673
|
+
}, null, 40, Tr),
|
|
3660
3674
|
t.label ? (f(), r(e, { key: 0 }, [a(g(t.label), 1)], 64)) : n("", !0),
|
|
3661
3675
|
h(o.$slots, "default")
|
|
3662
|
-
], 10,
|
|
3676
|
+
], 10, wr));
|
|
3663
3677
|
}
|
|
3664
|
-
}),
|
|
3678
|
+
}), Dr = [
|
|
3665
3679
|
"id",
|
|
3666
3680
|
"data-spacing",
|
|
3667
3681
|
"data-width"
|
|
3668
|
-
],
|
|
3682
|
+
], Or = /* @__PURE__ */ s({
|
|
3669
3683
|
name: "DBSection",
|
|
3670
3684
|
__name: "section",
|
|
3671
3685
|
props: {
|
|
@@ -3687,15 +3701,15 @@ var x = () => {
|
|
|
3687
3701
|
class: c(_(C)("db-section", t.class)),
|
|
3688
3702
|
"data-spacing": e.spacing || "medium",
|
|
3689
3703
|
"data-width": e.width
|
|
3690
|
-
}, [h(i.$slots, "default")], 10,
|
|
3704
|
+
}, [h(i.$slots, "default")], 10, Dr));
|
|
3691
3705
|
}
|
|
3692
|
-
}),
|
|
3706
|
+
}), kr = [
|
|
3693
3707
|
"data-variant",
|
|
3694
3708
|
"data-hide-label",
|
|
3695
3709
|
"data-hide-asterisk",
|
|
3696
3710
|
"data-icon",
|
|
3697
3711
|
"data-show-icon"
|
|
3698
|
-
],
|
|
3712
|
+
], Ar = ["for"], jr = [
|
|
3699
3713
|
"aria-invalid",
|
|
3700
3714
|
"data-custom-validity",
|
|
3701
3715
|
"required",
|
|
@@ -3707,18 +3721,18 @@ var x = () => {
|
|
|
3707
3721
|
"autocomplete",
|
|
3708
3722
|
"multiple",
|
|
3709
3723
|
"aria-describedby"
|
|
3710
|
-
],
|
|
3724
|
+
], Mr = ["data-show-empty-option"], Nr = ["label"], Pr = [
|
|
3711
3725
|
"value",
|
|
3712
3726
|
"selected",
|
|
3713
3727
|
"disabled"
|
|
3714
|
-
],
|
|
3728
|
+
], Fr = [
|
|
3715
3729
|
"value",
|
|
3716
3730
|
"disabled",
|
|
3717
3731
|
"selected"
|
|
3718
|
-
],
|
|
3732
|
+
], Ir = ["id"], Lr = {
|
|
3719
3733
|
"data-visually-hidden": "true",
|
|
3720
3734
|
role: "status"
|
|
3721
|
-
},
|
|
3735
|
+
}, Rr = /* @__PURE__ */ s({
|
|
3722
3736
|
name: "DBSelect",
|
|
3723
3737
|
__name: "select",
|
|
3724
3738
|
props: {
|
|
@@ -3786,6 +3800,7 @@ var x = () => {
|
|
|
3786
3800
|
invalidMessage: { default: void 0 },
|
|
3787
3801
|
messageIcon: { default: void 0 },
|
|
3788
3802
|
autocomplete: { default: void 0 },
|
|
3803
|
+
autoComplete: { default: void 0 },
|
|
3789
3804
|
showMessage: {
|
|
3790
3805
|
type: [Boolean, String],
|
|
3791
3806
|
default: void 0
|
|
@@ -3888,7 +3903,7 @@ var x = () => {
|
|
|
3888
3903
|
"data-icon": s.icon,
|
|
3889
3904
|
"data-show-icon": _(k)(s.showIcon, "showIcon")
|
|
3890
3905
|
}, [
|
|
3891
|
-
i("label", { for: T.value }, g(s.label ?? _("LABEL SHOULD BE SET")), 9,
|
|
3906
|
+
i("label", { for: T.value }, g(s.label ?? _("LABEL SHOULD BE SET")), 9, Ar),
|
|
3892
3907
|
i("select", {
|
|
3893
3908
|
"aria-invalid": s.validation === "invalid",
|
|
3894
3909
|
"data-custom-validity": s.validation,
|
|
@@ -3900,7 +3915,7 @@ var x = () => {
|
|
|
3900
3915
|
name: s.name,
|
|
3901
3916
|
size: s.size,
|
|
3902
3917
|
value: s.value ?? R.value ?? "",
|
|
3903
|
-
autocomplete: s.autocomplete,
|
|
3918
|
+
autocomplete: s.autoComplete ?? s.autocomplete,
|
|
3904
3919
|
multiple: s.multiple,
|
|
3905
3920
|
onInput: u[0] ||= async (e) => W(e),
|
|
3906
3921
|
onClick: u[1] ||= async (e) => te(e),
|
|
@@ -3913,7 +3928,7 @@ var x = () => {
|
|
|
3913
3928
|
class: "placeholder",
|
|
3914
3929
|
value: "",
|
|
3915
3930
|
"data-show-empty-option": _(k)(K(), "showEmptyOption")
|
|
3916
|
-
}, null, 8,
|
|
3931
|
+
}, null, 8, Mr)) : n("", !0), s.options?.length ? (f(!0), r(e, { key: 1 }, m(s.options, (t, n) => (f(), r(e, { key: n }, [t.options ? (f(), r("optgroup", {
|
|
3917
3932
|
key: 0,
|
|
3918
3933
|
label: ie(t)
|
|
3919
3934
|
}, [(f(!0), r(e, null, m(t.options, (e, t) => (f(), r("option", {
|
|
@@ -3921,17 +3936,17 @@ var x = () => {
|
|
|
3921
3936
|
value: e.value,
|
|
3922
3937
|
selected: e.selected,
|
|
3923
3938
|
disabled: e.disabled
|
|
3924
|
-
}, g(ie(e)), 9,
|
|
3939
|
+
}, g(ie(e)), 9, Pr))), 128))], 8, Nr)) : (f(), r("option", {
|
|
3925
3940
|
key: 1,
|
|
3926
3941
|
value: t.value,
|
|
3927
3942
|
disabled: t.disabled,
|
|
3928
3943
|
selected: t.selected
|
|
3929
|
-
}, g(ie(t)), 9,
|
|
3944
|
+
}, g(ie(t)), 9, Fr))], 64))), 128)) : h(l.$slots, "default", {}, void 0, void 0, 2)], 40, jr),
|
|
3930
3945
|
s.placeholder ? (f(), r("span", {
|
|
3931
3946
|
key: 0,
|
|
3932
3947
|
class: "db-select-placeholder",
|
|
3933
3948
|
id: P.value
|
|
3934
|
-
}, g(s.placeholder), 9,
|
|
3949
|
+
}, g(s.placeholder), 9, Ir)) : n("", !0),
|
|
3935
3950
|
_(I)(s.message, s.showMessage) ? (f(), t($, {
|
|
3936
3951
|
key: 1,
|
|
3937
3952
|
size: "small",
|
|
@@ -3958,10 +3973,10 @@ var x = () => {
|
|
|
3958
3973
|
default: b(() => [a(g(N.value), 1)]),
|
|
3959
3974
|
_: 1
|
|
3960
3975
|
}, 8, ["id"]),
|
|
3961
|
-
i("span",
|
|
3962
|
-
], 10,
|
|
3976
|
+
i("span", Lr, g(B.value), 1)
|
|
3977
|
+
], 10, kr));
|
|
3963
3978
|
}
|
|
3964
|
-
}),
|
|
3979
|
+
}), zr = [
|
|
3965
3980
|
"id",
|
|
3966
3981
|
"data-gap",
|
|
3967
3982
|
"data-variant",
|
|
@@ -3969,7 +3984,7 @@ var x = () => {
|
|
|
3969
3984
|
"data-alignment",
|
|
3970
3985
|
"data-justify-content",
|
|
3971
3986
|
"data-wrap"
|
|
3972
|
-
],
|
|
3987
|
+
], Br = /* @__PURE__ */ s({
|
|
3973
3988
|
name: "DBStack",
|
|
3974
3989
|
__name: "stack",
|
|
3975
3990
|
props: {
|
|
@@ -4002,26 +4017,26 @@ var x = () => {
|
|
|
4002
4017
|
"data-alignment": e.alignment,
|
|
4003
4018
|
"data-justify-content": e.justifyContent,
|
|
4004
4019
|
"data-wrap": _(k)(e.wrap, "wrap")
|
|
4005
|
-
}, [h(i.$slots, "default")], 10,
|
|
4020
|
+
}, [h(i.$slots, "default")], 10, zr));
|
|
4006
4021
|
}
|
|
4007
|
-
}),
|
|
4022
|
+
}), Vr = ["simple", "divider"], Hr = ["row", "column"], Ur = [
|
|
4008
4023
|
"stretch",
|
|
4009
4024
|
"start",
|
|
4010
4025
|
"end",
|
|
4011
4026
|
"center"
|
|
4012
|
-
],
|
|
4027
|
+
], Wr = [
|
|
4013
4028
|
"space-between",
|
|
4014
4029
|
"start",
|
|
4015
4030
|
"center",
|
|
4016
4031
|
"end"
|
|
4017
|
-
],
|
|
4032
|
+
], Gr = [
|
|
4018
4033
|
"data-visual-aid",
|
|
4019
4034
|
"data-size",
|
|
4020
4035
|
"data-hide-label",
|
|
4021
4036
|
"data-variant",
|
|
4022
4037
|
"data-hide-asterisk",
|
|
4023
4038
|
"data-custom-validity"
|
|
4024
|
-
],
|
|
4039
|
+
], Kr = ["for"], qr = [
|
|
4025
4040
|
"id",
|
|
4026
4041
|
"checked",
|
|
4027
4042
|
"value",
|
|
@@ -4032,10 +4047,10 @@ var x = () => {
|
|
|
4032
4047
|
"required",
|
|
4033
4048
|
"data-aid-icon",
|
|
4034
4049
|
"data-aid-icon-trailing"
|
|
4035
|
-
],
|
|
4050
|
+
], Jr = {
|
|
4036
4051
|
"data-visually-hidden": "true",
|
|
4037
4052
|
role: "status"
|
|
4038
|
-
},
|
|
4053
|
+
}, Yr = /* @__PURE__ */ s({
|
|
4039
4054
|
name: "DBSwitch",
|
|
4040
4055
|
__name: "switch",
|
|
4041
4056
|
props: {
|
|
@@ -4092,6 +4107,7 @@ var x = () => {
|
|
|
4092
4107
|
invalidMessage: { default: void 0 },
|
|
4093
4108
|
messageIcon: { default: void 0 },
|
|
4094
4109
|
autocomplete: {},
|
|
4110
|
+
autoComplete: {},
|
|
4095
4111
|
showMessage: {
|
|
4096
4112
|
type: [Boolean, String],
|
|
4097
4113
|
default: void 0
|
|
@@ -4217,10 +4233,10 @@ var x = () => {
|
|
|
4217
4233
|
onBlur: u[1] ||= async (e) => H(e),
|
|
4218
4234
|
onFocus: u[2] ||= async (e) => ee(e),
|
|
4219
4235
|
onKeydown: u[3] ||= async (e) => U(e)
|
|
4220
|
-
}, null, 40,
|
|
4236
|
+
}, null, 40, qr),
|
|
4221
4237
|
s.label ? (f(), r(e, { key: 0 }, [a(g(s.label), 1)], 64)) : n("", !0),
|
|
4222
4238
|
h(l.$slots, "default")
|
|
4223
|
-
], 8,
|
|
4239
|
+
], 8, Kr),
|
|
4224
4240
|
_(I)(s.message, s.showMessage) ? (f(), t($, {
|
|
4225
4241
|
key: 0,
|
|
4226
4242
|
size: "small",
|
|
@@ -4248,20 +4264,20 @@ var x = () => {
|
|
|
4248
4264
|
default: b(() => [a(g(M.value), 1)]),
|
|
4249
4265
|
_: 1
|
|
4250
4266
|
}, 8, ["id"]),
|
|
4251
|
-
i("span",
|
|
4252
|
-
], 10,
|
|
4267
|
+
i("span", Jr, g(P.value), 1)
|
|
4268
|
+
], 10, Gr));
|
|
4253
4269
|
}
|
|
4254
|
-
}),
|
|
4270
|
+
}), Xr = [
|
|
4255
4271
|
"disabled",
|
|
4256
4272
|
"aria-selected",
|
|
4257
4273
|
"focusgroupstart",
|
|
4258
4274
|
"data-value"
|
|
4259
|
-
],
|
|
4275
|
+
], Zr = [
|
|
4260
4276
|
"data-icon",
|
|
4261
4277
|
"data-show-icon",
|
|
4262
4278
|
"data-icon-trailing",
|
|
4263
4279
|
"data-show-icon-trailing"
|
|
4264
|
-
],
|
|
4280
|
+
], Qr = { class: "db-tab-item-label-end-slot" }, $r = /* @__PURE__ */ s({
|
|
4265
4281
|
name: "DBTabItem",
|
|
4266
4282
|
__name: "tab-item",
|
|
4267
4283
|
props: {
|
|
@@ -4390,19 +4406,19 @@ var x = () => {
|
|
|
4390
4406
|
class: "db-tab-item-label-text",
|
|
4391
4407
|
ref_key: "_labelRef",
|
|
4392
4408
|
ref: D
|
|
4393
|
-
}, [o.label ? (f(), r(e, { key: 0 }, [a(g(o.label), 1)], 64)) : n("", !0), h(l.$slots, "default")], 512), i("span",
|
|
4409
|
+
}, [o.label ? (f(), r(e, { key: 0 }, [a(g(o.label), 1)], 64)) : n("", !0), h(l.$slots, "default")], 512), i("span", Qr, [h(l.$slots, "end-slot")])], 8, Zr), m.value && v.value ? (f(), t(Rt, {
|
|
4394
4410
|
key: 0,
|
|
4395
4411
|
placement: "top"
|
|
4396
4412
|
}, {
|
|
4397
4413
|
default: b(() => [a(g(v.value), 1)]),
|
|
4398
4414
|
_: 1
|
|
4399
|
-
})) : n("", !0)], 10,
|
|
4415
|
+
})) : n("", !0)], 10, Xr));
|
|
4400
4416
|
}
|
|
4401
|
-
}),
|
|
4417
|
+
}), ei = [
|
|
4402
4418
|
"id",
|
|
4403
4419
|
"aria-orientation",
|
|
4404
4420
|
"focusgroup"
|
|
4405
|
-
],
|
|
4421
|
+
], ti = /* @__PURE__ */ s({
|
|
4406
4422
|
name: "DBTabList",
|
|
4407
4423
|
__name: "tab-list",
|
|
4408
4424
|
props: {
|
|
@@ -4426,9 +4442,9 @@ var x = () => {
|
|
|
4426
4442
|
class: c(_(C)("db-tab-list", n.class)),
|
|
4427
4443
|
"aria-orientation": e.orientation ?? "horizontal",
|
|
4428
4444
|
focusgroup: e.orientation === "vertical" ? "tablist block wrap" : "tablist"
|
|
4429
|
-
}, [h(t.$slots, "default")], 10,
|
|
4445
|
+
}, [h(t.$slots, "default")], 10, ei));
|
|
4430
4446
|
}
|
|
4431
|
-
}),
|
|
4447
|
+
}), ni = ["hidden"], ri = /* @__PURE__ */ s({
|
|
4432
4448
|
name: "DBTabPanel",
|
|
4433
4449
|
__name: "tab-panel",
|
|
4434
4450
|
props: {
|
|
@@ -4448,16 +4464,16 @@ var x = () => {
|
|
|
4448
4464
|
class: c(_(C)("db-tab-panel", i.class)),
|
|
4449
4465
|
hidden: t.hidden,
|
|
4450
4466
|
tabIndex: 0
|
|
4451
|
-
}, [t.content ? (f(), r(e, { key: 0 }, [a(g(t.content), 1)], 64)) : n("", !0), h(s.$slots, "default")], 10,
|
|
4467
|
+
}, [t.content ? (f(), r(e, { key: 0 }, [a(g(t.content), 1)], 64)) : n("", !0), h(s.$slots, "default")], 10, ni));
|
|
4452
4468
|
}
|
|
4453
|
-
}),
|
|
4469
|
+
}), ii = [
|
|
4454
4470
|
"id",
|
|
4455
4471
|
"data-horizontal-alignment",
|
|
4456
4472
|
"data-vertical-alignment",
|
|
4457
4473
|
"colSpan",
|
|
4458
4474
|
"rowSpan",
|
|
4459
4475
|
"headers"
|
|
4460
|
-
],
|
|
4476
|
+
], ai = /* @__PURE__ */ s({
|
|
4461
4477
|
name: "DBTableDataCell",
|
|
4462
4478
|
__name: "table-data-cell",
|
|
4463
4479
|
props: {
|
|
@@ -4487,9 +4503,9 @@ var x = () => {
|
|
|
4487
4503
|
colSpan: _(j)(e.colSpan, e.colspan),
|
|
4488
4504
|
rowSpan: _(j)(e.rowSpan, e.rowspan),
|
|
4489
4505
|
headers: e.headers
|
|
4490
|
-
}, [h(i.$slots, "default")], 10,
|
|
4506
|
+
}, [h(i.$slots, "default")], 10, ii));
|
|
4491
4507
|
}
|
|
4492
|
-
}),
|
|
4508
|
+
}), oi = [
|
|
4493
4509
|
"id",
|
|
4494
4510
|
"data-horizontal-alignment",
|
|
4495
4511
|
"data-vertical-alignment",
|
|
@@ -4499,7 +4515,7 @@ var x = () => {
|
|
|
4499
4515
|
"rowSpan",
|
|
4500
4516
|
"headers",
|
|
4501
4517
|
"abbr"
|
|
4502
|
-
],
|
|
4518
|
+
], si = /* @__PURE__ */ s({
|
|
4503
4519
|
name: "DBTableHeaderCell",
|
|
4504
4520
|
__name: "table-header-cell",
|
|
4505
4521
|
props: {
|
|
@@ -4538,13 +4554,13 @@ var x = () => {
|
|
|
4538
4554
|
rowSpan: _(j)(e.rowSpan, e.rowspan),
|
|
4539
4555
|
headers: e.headers,
|
|
4540
4556
|
abbr: e.abbr
|
|
4541
|
-
}, [h(i.$slots, "default")], 10,
|
|
4557
|
+
}, [h(i.$slots, "default")], 10, oi));
|
|
4542
4558
|
}
|
|
4543
|
-
}),
|
|
4559
|
+
}), ci = [
|
|
4544
4560
|
"id",
|
|
4545
4561
|
"data-interactive",
|
|
4546
4562
|
"data-sub-header-emphasis"
|
|
4547
|
-
],
|
|
4563
|
+
], li = /* @__PURE__ */ s({
|
|
4548
4564
|
name: "DBTableRow",
|
|
4549
4565
|
__name: "table-row",
|
|
4550
4566
|
props: {
|
|
@@ -4573,7 +4589,7 @@ var x = () => {
|
|
|
4573
4589
|
class: c(_(C)("db-table-row", o.class)),
|
|
4574
4590
|
"data-interactive": _(k)(n.interactive),
|
|
4575
4591
|
"data-sub-header-emphasis": n.subHeaderEmphasis
|
|
4576
|
-
}, [n.cells ? (f(!0), r(e, { key: 0 }, m(n.cells, (o, s) => (f(), r(e, { key: s }, [o.headerCell ? (f(), t(
|
|
4592
|
+
}, [n.cells ? (f(!0), r(e, { key: 0 }, m(n.cells, (o, s) => (f(), r(e, { key: s }, [o.headerCell ? (f(), t(si, {
|
|
4577
4593
|
key: `${o.id ?? n.id ?? _(i)}-table-row-header-cell-${s}`,
|
|
4578
4594
|
id: o.id,
|
|
4579
4595
|
abbr: l(o)?.abbr,
|
|
@@ -4588,7 +4604,7 @@ var x = () => {
|
|
|
4588
4604
|
rowSpan: o.rowSpan,
|
|
4589
4605
|
rowspan: o.rowspan
|
|
4590
4606
|
}, {
|
|
4591
|
-
default: b(() => [o.link ? (f(), t(
|
|
4607
|
+
default: b(() => [o.link ? (f(), t(Qn, {
|
|
4592
4608
|
key: 0,
|
|
4593
4609
|
content: o.link?.content,
|
|
4594
4610
|
size: o.link?.size,
|
|
@@ -4641,7 +4657,7 @@ var x = () => {
|
|
|
4641
4657
|
"colspan",
|
|
4642
4658
|
"rowSpan",
|
|
4643
4659
|
"rowspan"
|
|
4644
|
-
])) : (f(), t(
|
|
4660
|
+
])) : (f(), t(ai, {
|
|
4645
4661
|
key: `${o.id ?? n.id ?? _(i)}-table-row-data-cell-${s}`,
|
|
4646
4662
|
id: o.id,
|
|
4647
4663
|
className: o.className ?? o.class,
|
|
@@ -4653,7 +4669,7 @@ var x = () => {
|
|
|
4653
4669
|
rowSpan: o.rowSpan,
|
|
4654
4670
|
rowspan: o.rowspan
|
|
4655
4671
|
}, {
|
|
4656
|
-
default: b(() => [o.link ? (f(), t(
|
|
4672
|
+
default: b(() => [o.link ? (f(), t(Qn, {
|
|
4657
4673
|
key: 0,
|
|
4658
4674
|
content: o.link?.content,
|
|
4659
4675
|
size: o.link?.size,
|
|
@@ -4703,9 +4719,9 @@ var x = () => {
|
|
|
4703
4719
|
"colspan",
|
|
4704
4720
|
"rowSpan",
|
|
4705
4721
|
"rowspan"
|
|
4706
|
-
]))], 64))), 128)) : h(u.$slots, "default", {}, void 0, void 0, 1)], 10,
|
|
4722
|
+
]))], 64))), 128)) : h(u.$slots, "default", {}, void 0, void 0, 1)], 10, ci));
|
|
4707
4723
|
}
|
|
4708
|
-
}),
|
|
4724
|
+
}), ui = ["id"], di = /* @__PURE__ */ s({
|
|
4709
4725
|
name: "DBTableBody",
|
|
4710
4726
|
__name: "table-body",
|
|
4711
4727
|
props: {
|
|
@@ -4724,7 +4740,7 @@ var x = () => {
|
|
|
4724
4740
|
ref: o,
|
|
4725
4741
|
id: n.id ?? n.propOverrides?.id,
|
|
4726
4742
|
class: c(_(C)("db-table-body", a.class))
|
|
4727
|
-
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(
|
|
4743
|
+
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(li, {
|
|
4728
4744
|
key: `${e.id ?? n.id ?? _(i)}-table-body-row-${r}`,
|
|
4729
4745
|
cells: e.cells,
|
|
4730
4746
|
className: e.className ?? e.class,
|
|
@@ -4735,9 +4751,9 @@ var x = () => {
|
|
|
4735
4751
|
"className",
|
|
4736
4752
|
"interactive",
|
|
4737
4753
|
"id"
|
|
4738
|
-
]))), 128)) : h(s.$slots, "default", {}, void 0, void 0, 1)], 10,
|
|
4754
|
+
]))), 128)) : h(s.$slots, "default", {}, void 0, void 0, 1)], 10, ui));
|
|
4739
4755
|
}
|
|
4740
|
-
}),
|
|
4756
|
+
}), fi = ["id"], pi = /* @__PURE__ */ s({
|
|
4741
4757
|
name: "DBTableFooter",
|
|
4742
4758
|
__name: "table-footer",
|
|
4743
4759
|
props: {
|
|
@@ -4756,7 +4772,7 @@ var x = () => {
|
|
|
4756
4772
|
ref: o,
|
|
4757
4773
|
id: n.id ?? n.propOverrides?.id,
|
|
4758
4774
|
class: c(_(C)("db-table-footer", a.class))
|
|
4759
|
-
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(
|
|
4775
|
+
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(li, {
|
|
4760
4776
|
key: `${e.id ?? n.id ?? _(i)}-table-footer-row-${r}`,
|
|
4761
4777
|
cells: e.cells,
|
|
4762
4778
|
className: e.className ?? e.class,
|
|
@@ -4767,9 +4783,9 @@ var x = () => {
|
|
|
4767
4783
|
"className",
|
|
4768
4784
|
"interactive",
|
|
4769
4785
|
"id"
|
|
4770
|
-
]))), 128)) : h(s.$slots, "default", {}, void 0, void 0, 1)], 10,
|
|
4786
|
+
]))), 128)) : h(s.$slots, "default", {}, void 0, void 0, 1)], 10, fi));
|
|
4771
4787
|
}
|
|
4772
|
-
}),
|
|
4788
|
+
}), mi = ["id"], hi = /* @__PURE__ */ s({
|
|
4773
4789
|
name: "DBTableHead",
|
|
4774
4790
|
__name: "table-head",
|
|
4775
4791
|
props: {
|
|
@@ -4794,7 +4810,7 @@ var x = () => {
|
|
|
4794
4810
|
ref: o,
|
|
4795
4811
|
id: n.id ?? n.propOverrides?.id,
|
|
4796
4812
|
class: c(_(C)("db-table-head", a.class))
|
|
4797
|
-
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(
|
|
4813
|
+
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(li, {
|
|
4798
4814
|
key: `${e.id ?? n.id ?? _(i)}-table-head-row-${r}`,
|
|
4799
4815
|
cells: s(e.cells),
|
|
4800
4816
|
className: e.className ?? e.class,
|
|
@@ -4807,9 +4823,9 @@ var x = () => {
|
|
|
4807
4823
|
"subHeaderEmphasis",
|
|
4808
4824
|
"interactive",
|
|
4809
4825
|
"id"
|
|
4810
|
-
]))), 128)) : h(l.$slots, "default", {}, void 0, void 0, 1)], 10,
|
|
4826
|
+
]))), 128)) : h(l.$slots, "default", {}, void 0, void 0, 1)], 10, mi));
|
|
4811
4827
|
}
|
|
4812
|
-
}),
|
|
4828
|
+
}), gi = [
|
|
4813
4829
|
"data-width",
|
|
4814
4830
|
"data-size",
|
|
4815
4831
|
"data-divider",
|
|
@@ -4817,7 +4833,7 @@ var x = () => {
|
|
|
4817
4833
|
"data-mobile-variant",
|
|
4818
4834
|
"data-show-caption",
|
|
4819
4835
|
"data-sticky-header"
|
|
4820
|
-
],
|
|
4836
|
+
], _i = ["id"], vi = { key: 0 }, yi = /* @__PURE__ */ s({
|
|
4821
4837
|
name: "DBTable",
|
|
4822
4838
|
__name: "table",
|
|
4823
4839
|
props: {
|
|
@@ -4904,22 +4920,22 @@ var x = () => {
|
|
|
4904
4920
|
ref_key: "_ref",
|
|
4905
4921
|
ref: d,
|
|
4906
4922
|
id: a.id ?? a.propOverrides?.id
|
|
4907
|
-
}, [a.captionPlain ? (f(), r("caption",
|
|
4908
|
-
s.value?.header ? (f(), t(
|
|
4923
|
+
}, [a.captionPlain ? (f(), r("caption", vi, g(a.captionPlain), 1)) : h(p.$slots, "caption", {}, void 0, void 0, 1), s.value ? (f(), r(e, { key: 2 }, [
|
|
4924
|
+
s.value?.header ? (f(), t(hi, {
|
|
4909
4925
|
key: 0,
|
|
4910
4926
|
rows: s.value?.header
|
|
4911
4927
|
}, null, 8, ["rows"])) : n("", !0),
|
|
4912
|
-
s.value?.body ? (f(), t(
|
|
4928
|
+
s.value?.body ? (f(), t(di, {
|
|
4913
4929
|
key: 1,
|
|
4914
4930
|
rows: s.value?.body
|
|
4915
4931
|
}, null, 8, ["rows"])) : n("", !0),
|
|
4916
|
-
s.value?.footer ? (f(), t(
|
|
4932
|
+
s.value?.footer ? (f(), t(pi, {
|
|
4917
4933
|
key: 2,
|
|
4918
4934
|
rows: s.value?.footer
|
|
4919
4935
|
}, null, 8, ["rows"])) : n("", !0)
|
|
4920
|
-
], 64)) : h(p.$slots, "default", {}, void 0, void 0, 3)], 8,
|
|
4936
|
+
], 64)) : h(p.$slots, "default", {}, void 0, void 0, 3)], 8, _i)], 14, gi));
|
|
4921
4937
|
}
|
|
4922
|
-
}),
|
|
4938
|
+
}), bi = ["id"], xi = /* @__PURE__ */ s({
|
|
4923
4939
|
name: "DBTableCaption",
|
|
4924
4940
|
__name: "table-caption",
|
|
4925
4941
|
props: {
|
|
@@ -4937,49 +4953,49 @@ var x = () => {
|
|
|
4937
4953
|
ref: n,
|
|
4938
4954
|
id: e.id ?? e.propOverrides?.id,
|
|
4939
4955
|
class: c(_(C)("db-table-caption", t.class))
|
|
4940
|
-
}, [h(i.$slots, "default")], 10,
|
|
4956
|
+
}, [h(i.$slots, "default")], 10, bi));
|
|
4941
4957
|
}
|
|
4942
|
-
}),
|
|
4958
|
+
}), Si = [
|
|
4943
4959
|
"row",
|
|
4944
4960
|
"col",
|
|
4945
4961
|
"rowgroup",
|
|
4946
4962
|
"colgroup"
|
|
4947
|
-
],
|
|
4963
|
+
], Ci = [
|
|
4948
4964
|
"none",
|
|
4949
4965
|
"weak",
|
|
4950
4966
|
"strong"
|
|
4951
|
-
],
|
|
4967
|
+
], wi = [
|
|
4952
4968
|
"x-small",
|
|
4953
4969
|
"small",
|
|
4954
4970
|
"medium",
|
|
4955
4971
|
"large"
|
|
4956
|
-
],
|
|
4972
|
+
], Ti = [
|
|
4957
4973
|
"flat",
|
|
4958
4974
|
"zebra",
|
|
4959
4975
|
"spaced"
|
|
4960
|
-
],
|
|
4976
|
+
], Ei = [
|
|
4961
4977
|
"none",
|
|
4962
4978
|
"both",
|
|
4963
4979
|
"horizontal",
|
|
4964
4980
|
"vertical"
|
|
4965
|
-
],
|
|
4981
|
+
], Di = ["table", "list"], Oi = [
|
|
4966
4982
|
"none",
|
|
4967
4983
|
"both",
|
|
4968
4984
|
"horizontal",
|
|
4969
4985
|
"vertical"
|
|
4970
|
-
],
|
|
4986
|
+
], ki = [
|
|
4971
4987
|
"auto",
|
|
4972
4988
|
"1fr",
|
|
4973
4989
|
"min-content",
|
|
4974
4990
|
"max-content"
|
|
4975
|
-
],
|
|
4991
|
+
], Ai = [
|
|
4976
4992
|
"id",
|
|
4977
4993
|
"data-orientation",
|
|
4978
4994
|
"data-scroll-behavior",
|
|
4979
4995
|
"data-tab-item-alignment",
|
|
4980
4996
|
"data-tab-item-width",
|
|
4981
4997
|
"data-initial-selected-mode"
|
|
4982
|
-
],
|
|
4998
|
+
], ji = /* @__PURE__ */ s({
|
|
4983
4999
|
name: "DBTabs",
|
|
4984
5000
|
__name: "tabs",
|
|
4985
5001
|
props: {
|
|
@@ -5345,11 +5361,11 @@ var x = () => {
|
|
|
5345
5361
|
default: b(() => [a(g(i.scrollStartLabel), 1)]),
|
|
5346
5362
|
_: 1
|
|
5347
5363
|
}, 8, ["onClick"])) : n("", !0),
|
|
5348
|
-
W().length ? (f(), r(e, { key: 1 }, [o(
|
|
5364
|
+
W().length ? (f(), r(e, { key: 1 }, [o(ti, {
|
|
5349
5365
|
orientation: i.orientation,
|
|
5350
5366
|
"aria-label": i.label
|
|
5351
5367
|
}, {
|
|
5352
|
-
default: b(() => [(f(!0), r(e, null, m(W(), (e, n) => (f(), t(
|
|
5368
|
+
default: b(() => [(f(!0), r(e, null, m(W(), (e, n) => (f(), t($r, {
|
|
5353
5369
|
key: i.label + "tab-item" + n,
|
|
5354
5370
|
"aria-label": e.ariaLabel,
|
|
5355
5371
|
label: e.label,
|
|
@@ -5372,7 +5388,7 @@ var x = () => {
|
|
|
5372
5388
|
"value"
|
|
5373
5389
|
]))), 128))]),
|
|
5374
5390
|
_: 1
|
|
5375
|
-
}, 8, ["orientation", "aria-label"]), (f(!0), r(e, null, m(W(), (e, n) => (f(), t(
|
|
5391
|
+
}, 8, ["orientation", "aria-label"]), (f(!0), r(e, null, m(W(), (e, n) => (f(), t(ri, {
|
|
5376
5392
|
key: i.label + "tab-panel" + n,
|
|
5377
5393
|
content: e.content
|
|
5378
5394
|
}, {
|
|
@@ -5390,13 +5406,13 @@ var x = () => {
|
|
|
5390
5406
|
default: b(() => [a(g(i.scrollEndLabel), 1)]),
|
|
5391
5407
|
_: 1
|
|
5392
5408
|
}, 8, ["onClick"])) : n("", !0)
|
|
5393
|
-
], 42,
|
|
5409
|
+
], 42, Ai));
|
|
5394
5410
|
}
|
|
5395
|
-
}),
|
|
5411
|
+
}), Mi = ["scrollbar", "arrows"], Ni = ["auto", "manually"], Pi = ["static", "removable"], Fi = [
|
|
5396
5412
|
"data-variant",
|
|
5397
5413
|
"data-hide-asterisk",
|
|
5398
5414
|
"data-hide-label"
|
|
5399
|
-
],
|
|
5415
|
+
], Ii = ["for"], Li = [
|
|
5400
5416
|
"aria-invalid",
|
|
5401
5417
|
"data-custom-validity",
|
|
5402
5418
|
"data-field-sizing",
|
|
@@ -5418,10 +5434,10 @@ var x = () => {
|
|
|
5418
5434
|
"placeholder",
|
|
5419
5435
|
"rows",
|
|
5420
5436
|
"cols"
|
|
5421
|
-
],
|
|
5437
|
+
], Ri = {
|
|
5422
5438
|
"data-visually-hidden": "true",
|
|
5423
5439
|
role: "status"
|
|
5424
|
-
},
|
|
5440
|
+
}, zi = /* @__PURE__ */ s({
|
|
5425
5441
|
name: "DBTextarea",
|
|
5426
5442
|
__name: "textarea",
|
|
5427
5443
|
props: {
|
|
@@ -5508,6 +5524,7 @@ var x = () => {
|
|
|
5508
5524
|
invalidMessage: { default: void 0 },
|
|
5509
5525
|
messageIcon: { default: void 0 },
|
|
5510
5526
|
autocomplete: { default: void 0 },
|
|
5527
|
+
autoComplete: { default: void 0 },
|
|
5511
5528
|
showMessage: {
|
|
5512
5529
|
type: [Boolean, String],
|
|
5513
5530
|
default: void 0
|
|
@@ -5585,7 +5602,7 @@ var x = () => {
|
|
|
5585
5602
|
"data-hide-asterisk": _(F)(e.showRequiredAsterisk),
|
|
5586
5603
|
"data-hide-label": _(F)(e.showLabel)
|
|
5587
5604
|
}, [
|
|
5588
|
-
i("label", { for: x.value }, g(e.label ?? _("LABEL SHOULD BE SET")), 9,
|
|
5605
|
+
i("label", { for: x.value }, g(e.label ?? _("LABEL SHOULD BE SET")), 9, Ii),
|
|
5589
5606
|
i("textarea", {
|
|
5590
5607
|
"aria-invalid": e.validation === "invalid",
|
|
5591
5608
|
"data-custom-validity": e.validation,
|
|
@@ -5604,7 +5621,7 @@ var x = () => {
|
|
|
5604
5621
|
name: e.name,
|
|
5605
5622
|
wrap: e.wrap,
|
|
5606
5623
|
spellcheck: e.spellCheck,
|
|
5607
|
-
autocomplete: e.autocomplete,
|
|
5624
|
+
autocomplete: e.autoComplete ?? e.autocomplete,
|
|
5608
5625
|
onInput: l[0] ||= async (e) => B(e),
|
|
5609
5626
|
onChange: l[1] ||= async (e) => V(e),
|
|
5610
5627
|
onBlur: l[2] ||= async (e) => H(e),
|
|
@@ -5614,7 +5631,7 @@ var x = () => {
|
|
|
5614
5631
|
placeholder: e.placeholder ?? _(" "),
|
|
5615
5632
|
rows: _(j)(e.rows, _(4)),
|
|
5616
5633
|
cols: _(j)(e.cols)
|
|
5617
|
-
}, g(e.value), 41,
|
|
5634
|
+
}, g(e.value), 41, Li),
|
|
5618
5635
|
_(I)(e.message, e.showMessage) ? (f(), t($, {
|
|
5619
5636
|
key: 0,
|
|
5620
5637
|
size: "small",
|
|
@@ -5641,50 +5658,50 @@ var x = () => {
|
|
|
5641
5658
|
default: b(() => [a(g(D.value), 1)]),
|
|
5642
5659
|
_: 1
|
|
5643
5660
|
}, 8, ["id"]),
|
|
5644
|
-
i("span",
|
|
5645
|
-
], 10,
|
|
5661
|
+
i("span", Ri, g(N.value), 1)
|
|
5662
|
+
], 10, Fi));
|
|
5646
5663
|
}
|
|
5647
|
-
}),
|
|
5664
|
+
}), Bi = [
|
|
5648
5665
|
"none",
|
|
5649
5666
|
"both",
|
|
5650
5667
|
"horizontal",
|
|
5651
5668
|
"vertical"
|
|
5652
|
-
],
|
|
5669
|
+
], Vi = [
|
|
5653
5670
|
"hard",
|
|
5654
5671
|
"soft",
|
|
5655
5672
|
"off"
|
|
5656
|
-
],
|
|
5673
|
+
], Hi = ["description", "label"], Ui = [
|
|
5657
5674
|
"adaptive",
|
|
5658
5675
|
"neutral",
|
|
5659
5676
|
"critical",
|
|
5660
5677
|
"informational",
|
|
5661
5678
|
"warning",
|
|
5662
5679
|
"successful"
|
|
5663
|
-
],
|
|
5680
|
+
], Wi = [
|
|
5664
5681
|
"medium",
|
|
5665
5682
|
"small",
|
|
5666
5683
|
"large",
|
|
5667
5684
|
"none"
|
|
5668
|
-
],
|
|
5685
|
+
], Gi = [
|
|
5669
5686
|
"medium",
|
|
5670
5687
|
"small",
|
|
5671
5688
|
"large",
|
|
5672
5689
|
"none"
|
|
5673
|
-
],
|
|
5690
|
+
], Ki = [
|
|
5674
5691
|
"left",
|
|
5675
5692
|
"right",
|
|
5676
5693
|
"left-start",
|
|
5677
5694
|
"left-end",
|
|
5678
5695
|
"right-start",
|
|
5679
5696
|
"right-end"
|
|
5680
|
-
],
|
|
5697
|
+
], qi = [
|
|
5681
5698
|
"top",
|
|
5682
5699
|
"bottom",
|
|
5683
5700
|
"top-start",
|
|
5684
5701
|
"top-end",
|
|
5685
5702
|
"bottom-start",
|
|
5686
5703
|
"bottom-end"
|
|
5687
|
-
],
|
|
5704
|
+
], Ji = [...Ki, ...qi], Yi = [
|
|
5688
5705
|
"none",
|
|
5689
5706
|
"3x-large",
|
|
5690
5707
|
"2x-large",
|
|
@@ -5695,25 +5712,25 @@ var x = () => {
|
|
|
5695
5712
|
"x-small",
|
|
5696
5713
|
"2x-small",
|
|
5697
5714
|
"3x-small"
|
|
5698
|
-
],
|
|
5715
|
+
], Xi = ["horizontal", "vertical"], Zi = ["full", "auto"], Qi = [
|
|
5699
5716
|
"full",
|
|
5700
5717
|
"medium",
|
|
5701
5718
|
"large",
|
|
5702
5719
|
"small"
|
|
5703
|
-
],
|
|
5720
|
+
], $i = [
|
|
5704
5721
|
"none",
|
|
5705
5722
|
"slow",
|
|
5706
5723
|
"fast"
|
|
5707
|
-
],
|
|
5724
|
+
], ea = ["auto", "fixed"], ta = ["small", "medium"], na = ["weak", "strong"], ra = [
|
|
5708
5725
|
"invalid",
|
|
5709
5726
|
"valid",
|
|
5710
5727
|
"no-validation"
|
|
5711
|
-
],
|
|
5728
|
+
], ia = ["fixed", "content"], aa = ["above", "floating"], oa = ["leading", "trailing"], sa = /* @__PURE__ */ "off.on.name.honorific-prefix.given-name.additional-name.family-name.honorific-suffix.nickname.email.username.new-password.current-password.one-time-code.organization-title.organization.street-address.shipping.billing.address-line1.address-line2.address-line3.address-level4.address-level3.address-level2.address-level1.country.country-name.postal-code.cc-name.cc-given-name.cc-additional-name.cc-family-name.cc-number.cc-exp.cc-exp-month.cc-exp-year.cc-csc.cc-type.transaction-currency.transaction-amount.language.bday.bday-day.bday-month.bday-year.sex.tel.tel-country-code.tel-national.tel-area-code.tel-local.tel-extension.impp.url.photo.webauthn".split("."), ca = [
|
|
5712
5729
|
"_self",
|
|
5713
5730
|
"_blank",
|
|
5714
5731
|
"_parent",
|
|
5715
5732
|
"_top"
|
|
5716
|
-
],
|
|
5733
|
+
], la = [
|
|
5717
5734
|
"no-referrer",
|
|
5718
5735
|
"no-referrer-when-downgrade",
|
|
5719
5736
|
"origin",
|
|
@@ -5722,10 +5739,10 @@ var x = () => {
|
|
|
5722
5739
|
"strict-origin",
|
|
5723
5740
|
"strict-origin-when-cross-origin",
|
|
5724
5741
|
"unsafe-url"
|
|
5725
|
-
],
|
|
5742
|
+
], ua = [
|
|
5726
5743
|
"start",
|
|
5727
5744
|
"center",
|
|
5728
5745
|
"end"
|
|
5729
5746
|
];
|
|
5730
5747
|
//#endregion
|
|
5731
|
-
export { ie as AccordionBehaviorList, G as AccordionVariantList,
|
|
5748
|
+
export { ie as AccordionBehaviorList, G as AccordionVariantList, ua as AlignmentList, sa as AutoCompleteList, Le as BadgePlacementList, Ue as ButtonTypeList, He as ButtonVariantList, Te as COLOR, Ee as COLORS, De as COLORS_SIMPLE, Q as COLOR_CONST, we as COLOR_SIMPLE, Ke as CardBehaviorList, qe as CardElevationLevelList, rn as CustomSelectDropdownWidthList, sn as CustomSelectListItemTypeList, re as DBAccordion, W as DBAccordionItem, Ie as DBBadge, ze as DBBrand, Ve as DBButton, Ge as DBCard, rt as DBCheckbox, at as DBCustomButton, nn as DBCustomSelect, xt as DBCustomSelectDropdown, on as DBCustomSelectFormField, kt as DBCustomSelectList, Dt as DBCustomSelectListItem, un as DBDivider, yn as DBDrawer, xn as DBDrawerFooter, Tn as DBDrawerHeader, Kn as DBHeader, Jn as DBIcon, $ as DBInfotext, It as DBInput, Qn as DBLink, rr as DBNavigation, cr as DBNavigationItem, pr as DBNotification, vr as DBPage, Cr as DBPopover, Er as DBRadio, Or as DBSection, Rr as DBSelect, Br as DBStack, Yr as DBSwitch, $r as DBTabItem, ti as DBTabList, ri as DBTabPanel, yi as DBTable, di as DBTableBody, xi as DBTableCaption, ki as DBTableColumnsSizeList, ai as DBTableDataCell, Ei as DBTableDividerList, pi as DBTableFooter, hi as DBTableHead, si as DBTableHeaderCell, Si as DBTableHeaderCellScopeList, Di as DBTableMobileVariantList, li as DBTableRow, wi as DBTableRowSizeList, Ci as DBTableRowSubHeaderEmphasisList, Oi as DBTableStickyHeaderList, Ti as DBTableVariantList, ji as DBTabs, Bt as DBTag, zi as DBTextarea, Rt as DBTooltip, Ne as DB_UX_LOCAL_STORAGE_FRAMEWORK, Pe as DB_UX_LOCAL_STORAGE_MODE, me as DEFAULT_BACK, ve as DEFAULT_BURGER_MENU, xe as DEFAULT_CLOSE_BUTTON, ue as DEFAULT_DATALIST_ID_SUFFIX, ye as DEFAULT_ICON, K as DEFAULT_ID, fe as DEFAULT_INVALID_MESSAGE, ce as DEFAULT_INVALID_MESSAGE_ID_SUFFIX, q as DEFAULT_LABEL, ae as DEFAULT_LABEL_ID_SUFFIX, Y as DEFAULT_MESSAGE, X as DEFAULT_MESSAGE_ID_SUFFIX, J as DEFAULT_PLACEHOLDER, le as DEFAULT_PLACEHOLDER_ID_SUFFIX, pe as DEFAULT_REMOVE, be as DEFAULT_ROWS, ge as DEFAULT_SCROLL_LEFT, _e as DEFAULT_SCROLL_RIGHT, he as DEFAULT_SELECTED, oe as DEFAULT_SELECT_ID_SUFFIX, de as DEFAULT_VALID_MESSAGE, se as DEFAULT_VALID_MESSAGE_ID_SUFFIX, Ae as DEFAULT_VIEWPORT, Ce as DENSITIES, Se as DENSITY, Z as DENSITY_CONST, je as DESKTOP_VIEWPORT, dn as DividerMarginList, fn as DividerVariantList, st as DocumentClickListener, ct as DocumentScrollListener, En as DrawerBackdropList, An as DrawerContainerSizeList, Dn as DrawerDirectionList, kn as DrawerPositionList, On as DrawerVariantList, na as EmphasisList, ia as FieldSizingList, Yi as GapSpacingList, Yn as IconWeightList, Xn as InputTypeList, oa as LabelVariantHorizontalList, aa as LabelVariantList, tr as LinkContentList, la as LinkReferrerPolicyList, er as LinkSizeList, ca as LinkTargetList, $n as LinkVariantList, Gi as MarginList, Qi as MaxWidthList, H as NAVIGATION_KEYS, Mn as NavigationItemSafeTriangle, gr as NotificationAriaLiveList, hr as NotificationLinkVariantList, mr as NotificationVariantList, Xi as OrientationList, br as PageDocumentOverflowList, yr as PageVariantList, Ki as PlacementHorizontalList, Ji as PlacementList, qi as PlacementVerticalList, $i as PopoverDelayList, ea as PopoverWidthList, Oe as SEMANTIC, ke as SEMANTICS, cn as SelectedTypeList, Ui as SemanticList, ta as SizeList, Wi as SpacingList, Ur as StackAlignmentList, Hr as StackDirectionList, Wr as StackJustifyContentList, Vr as StackVariantList, Me as TESTING_VIEWPORTS, Mi as TabsBehaviorList, Ni as TabsInitialSelectedModeList, Pi as TagBehaviorList, Bi as TextareaResizeList, Vi as TextareaWrapList, Hi as TooltipVariantList, ra as ValidationList, Zi as WidthList, S as addAttributeToChildren, hn as closeDialogWithTransition, C as cls, O as delay, A as getBoolean, k as getBooleanAsString, ut as getFloatingProps, F as getHideProp, N as getInputValue, V as getNotificationRole, j as getNumber, z as getOptionKey, L as getSearchInput, M as getStep, ht as handleDataOutside, lt as handleFixedDropdown, mt as handleFixedPopover, ee as hasFocusgroupSupport, E as hasVoiceOver, w as isArrayOfStrings, jn as isEventTargetNavigationItem, D as isIOSSafari, B as isKeyboardEvent, I as stringPropVisible, mn as supportsAllowDiscreteDisplayAndOverlayTransition, x as uuid };
|