@db-ux/v-core-components 4.12.0 → 4.13.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/dist/db-ux.es.js
CHANGED
|
@@ -343,11 +343,15 @@ var x = () => {
|
|
|
343
343
|
"data-no-text",
|
|
344
344
|
"name",
|
|
345
345
|
"form",
|
|
346
|
-
"value"
|
|
346
|
+
"value",
|
|
347
|
+
"command",
|
|
348
|
+
"commandfor"
|
|
347
349
|
], Le = /* @__PURE__ */ s({
|
|
348
350
|
name: "DBButton",
|
|
349
351
|
__name: "button",
|
|
350
352
|
props: {
|
|
353
|
+
command: { default: void 0 },
|
|
354
|
+
commandfor: { default: void 0 },
|
|
351
355
|
disabled: {
|
|
352
356
|
type: [Boolean, String],
|
|
353
357
|
default: void 0
|
|
@@ -398,7 +402,7 @@ var x = () => {
|
|
|
398
402
|
setup(t) {
|
|
399
403
|
let i = t, o = p(null);
|
|
400
404
|
function s() {
|
|
401
|
-
return i.type ? i.type : i.onClick ? "button" : "submit";
|
|
405
|
+
return i.type ? i.type : i.onClick || i.commandfor ? "button" : "submit";
|
|
402
406
|
}
|
|
403
407
|
function l(e) {
|
|
404
408
|
i.onClick && i.onClick(e);
|
|
@@ -422,6 +426,8 @@ var x = () => {
|
|
|
422
426
|
name: t.name,
|
|
423
427
|
form: t.form,
|
|
424
428
|
value: t.value,
|
|
429
|
+
command: t.command,
|
|
430
|
+
commandfor: t.commandfor,
|
|
425
431
|
onClick: d[0] ||= async (e) => l(e)
|
|
426
432
|
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(u.$slots, "default")], 10, Ie));
|
|
427
433
|
}
|
|
@@ -886,9 +892,19 @@ var x = () => {
|
|
|
886
892
|
vx: i ? "right" : "left"
|
|
887
893
|
}, e.dataset.outsideVx = a.vx) : delete e.dataset.outsideVx, a;
|
|
888
894
|
}, at = (e, t, n) => {
|
|
889
|
-
if (!e || !t
|
|
890
|
-
let
|
|
891
|
-
|
|
895
|
+
if (!e || !t) return;
|
|
896
|
+
let r = e.dataset.width === "full", i = e.dataset.width === "auto";
|
|
897
|
+
if (e.style.inlineSize = "", e.style.minInlineSize = "", getComputedStyle(e).zIndex === "9999") return;
|
|
898
|
+
let { top: a, bottom: o, childHeight: s, childWidth: c, width: l, right: u, left: d, correctedPlacement: f, innerWidth: p } = ot(e, t, n), m = l;
|
|
899
|
+
if (i) {
|
|
900
|
+
let t = parseFloat(getComputedStyle(e).maxInlineSize);
|
|
901
|
+
!isNaN(t) && t > 0 && (m = Math.min(l, t));
|
|
902
|
+
}
|
|
903
|
+
r ? e.style.inlineSize = `${l}px` : i && (e.style.minInlineSize = `${m}px`);
|
|
904
|
+
let h = c;
|
|
905
|
+
i ? h = Math.max(c, m) : r && (h = l);
|
|
906
|
+
let g = f;
|
|
907
|
+
i && (g === "top" || g === "bottom" || g === "top-start" || g === "bottom-start") && d + h > p && (g = g.startsWith("top") ? "top-end" : "bottom-end"), g === "top" || g === "bottom" || g === "top-start" || g === "bottom-start" ? e.style.insetInlineStart = `${d}px` : (g === "top-end" || g === "bottom-end") && (e.style.insetInlineStart = `${Math.max(u - h, 0)}px`), g?.startsWith("top") ? e.style.insetBlockStart = `${a - s}px` : g?.startsWith("bottom") && (e.style.insetBlockStart = `${o}px`), e.style.position = "fixed";
|
|
892
908
|
}, ot = (e, t, n) => {
|
|
893
909
|
if (!e || !t) return {
|
|
894
910
|
top: 0,
|
|
@@ -1009,7 +1025,7 @@ var x = () => {
|
|
|
1009
1025
|
"checked",
|
|
1010
1026
|
"disabled",
|
|
1011
1027
|
"value"
|
|
1012
|
-
], gt = { key: 1 },
|
|
1028
|
+
], gt = { class: "db-custom-select-list-item-label" }, _t = { key: 1 }, vt = /* @__PURE__ */ s({
|
|
1013
1029
|
name: "DBCustomSelectListItem",
|
|
1014
1030
|
__name: "custom-select-list-item",
|
|
1015
1031
|
props: {
|
|
@@ -1075,32 +1091,28 @@ var x = () => {
|
|
|
1075
1091
|
"db-radio": t.type !== "checkbox" && !t.isGroupTitle
|
|
1076
1092
|
})),
|
|
1077
1093
|
"data-divider": _(k)(u.value, "hasDivider")
|
|
1078
|
-
}, [t.isGroupTitle ? (f(), r("span",
|
|
1094
|
+
}, [t.isGroupTitle ? (f(), r("span", _t, g(t.groupTitle), 1)) : (f(), r("label", {
|
|
1079
1095
|
key: 0,
|
|
1080
1096
|
"data-icon": t.type !== "checkbox" && t.icon ? t.icon : void 0,
|
|
1081
1097
|
"data-show-icon": _(k)(t.showIcon, "showIcon"),
|
|
1082
1098
|
"data-icon-trailing": v()
|
|
1083
|
-
}, [
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
}, null, 40, ht),
|
|
1095
|
-
t.label ? (f(), r(e, { key: 0 }, [a(g(t.label), 1)], 64)) : n("", !0),
|
|
1096
|
-
h(o.$slots, "default")
|
|
1097
|
-
], 8, mt))], 10, pt));
|
|
1099
|
+
}, [i("input", {
|
|
1100
|
+
class: "db-custom-select-list-item-checkbox",
|
|
1101
|
+
"data-disable-focus": "true",
|
|
1102
|
+
type: t.type,
|
|
1103
|
+
name: t.name,
|
|
1104
|
+
form: t.name,
|
|
1105
|
+
checked: _(A)(t.checked, "checked"),
|
|
1106
|
+
disabled: _(A)(t.disabled, "disabled"),
|
|
1107
|
+
value: t.value,
|
|
1108
|
+
onChange: s[0] ||= async (e) => m(e)
|
|
1109
|
+
}, null, 40, ht), i("span", gt, [t.label ? (f(), r(e, { key: 0 }, [a(g(t.label), 1)], 64)) : n("", !0), h(o.$slots, "default")])], 8, mt))], 10, pt));
|
|
1098
1110
|
}
|
|
1099
|
-
}),
|
|
1111
|
+
}), yt = [
|
|
1100
1112
|
"role",
|
|
1101
1113
|
"aria-label",
|
|
1102
1114
|
"id"
|
|
1103
|
-
],
|
|
1115
|
+
], bt = /* @__PURE__ */ s({
|
|
1104
1116
|
name: "DBCustomSelectList",
|
|
1105
1117
|
__name: "custom-select-list",
|
|
1106
1118
|
props: {
|
|
@@ -1125,9 +1137,9 @@ var x = () => {
|
|
|
1125
1137
|
ref: n,
|
|
1126
1138
|
id: e.id ?? e.propOverrides?.id,
|
|
1127
1139
|
class: c(_(C)("db-custom-select-list", t.class))
|
|
1128
|
-
}, [i("ul", null, [h(a.$slots, "default")])], 10,
|
|
1140
|
+
}, [i("ul", null, [h(a.$slots, "default")])], 10, yt));
|
|
1129
1141
|
}
|
|
1130
|
-
}),
|
|
1142
|
+
}), xt = [
|
|
1131
1143
|
"data-variant",
|
|
1132
1144
|
"data-hide-label",
|
|
1133
1145
|
"data-show-icon",
|
|
@@ -1135,10 +1147,10 @@ var x = () => {
|
|
|
1135
1147
|
"data-icon-trailing",
|
|
1136
1148
|
"data-hide-asterisk",
|
|
1137
1149
|
"data-show-icon-trailing"
|
|
1138
|
-
],
|
|
1150
|
+
], St = ["for"], Ct = /* @__PURE__ */ "aria-invalid.data-custom-validity.data-field-sizing.id.name.type.multiple.accept.placeholder.disabled.required.step.value.maxLength.minLength.max.min.readOnly.form.pattern.size.autoComplete.autoFocus.enterKeyHint.inputMode.list.aria-describedby.role".split("."), wt = ["id"], Tt = ["value"], Et = {
|
|
1139
1151
|
"data-visually-hidden": "true",
|
|
1140
1152
|
role: "status"
|
|
1141
|
-
},
|
|
1153
|
+
}, Dt = /* @__PURE__ */ s({
|
|
1142
1154
|
name: "DBInput",
|
|
1143
1155
|
__name: "input",
|
|
1144
1156
|
props: {
|
|
@@ -1337,7 +1349,7 @@ var x = () => {
|
|
|
1337
1349
|
"data-hide-asterisk": _(F)(s.showRequiredAsterisk),
|
|
1338
1350
|
"data-show-icon-trailing": _(k)(s.showIconTrailing, "showIconTrailing")
|
|
1339
1351
|
}, [
|
|
1340
|
-
i("label", { for: P.value }, g(s.label ?? _("LABEL SHOULD BE SET")), 9,
|
|
1352
|
+
i("label", { for: P.value }, g(s.label ?? _("LABEL SHOULD BE SET")), 9, St),
|
|
1341
1353
|
i("input", {
|
|
1342
1354
|
"aria-invalid": s.validation === "invalid",
|
|
1343
1355
|
"data-custom-validity": s.validation,
|
|
@@ -1380,14 +1392,14 @@ var x = () => {
|
|
|
1380
1392
|
"month",
|
|
1381
1393
|
"color"
|
|
1382
1394
|
].includes(s.type ?? "") && _(D)() ? "textbox" : void 0
|
|
1383
|
-
}, null, 40,
|
|
1395
|
+
}, null, 40, Ct),
|
|
1384
1396
|
s.dataList ? (f(), r("datalist", {
|
|
1385
1397
|
key: 0,
|
|
1386
1398
|
id: V.value
|
|
1387
1399
|
}, [(f(!0), r(e, null, m(oe(), (e) => (f(), r("option", {
|
|
1388
1400
|
key: V.value + "-option-" + e.value,
|
|
1389
1401
|
value: e.value
|
|
1390
|
-
}, g(e.label), 9,
|
|
1402
|
+
}, g(e.label), 9, Tt))), 128))], 8, wt)) : n("", !0),
|
|
1391
1403
|
h(l.$slots, "default"),
|
|
1392
1404
|
_(I)(s.message, s.showMessage) ? (f(), t($, {
|
|
1393
1405
|
key: 1,
|
|
@@ -1419,10 +1431,10 @@ var x = () => {
|
|
|
1419
1431
|
default: b(() => [a(g(B.value), 1)]),
|
|
1420
1432
|
_: 1
|
|
1421
1433
|
}, 8, ["id", "size"]),
|
|
1422
|
-
i("span",
|
|
1423
|
-
], 10,
|
|
1434
|
+
i("span", Et, g(W.value), 1)
|
|
1435
|
+
], 10, xt));
|
|
1424
1436
|
}
|
|
1425
|
-
}),
|
|
1437
|
+
}), Ot = [
|
|
1426
1438
|
"id",
|
|
1427
1439
|
"data-emphasis",
|
|
1428
1440
|
"data-wrap",
|
|
@@ -1431,7 +1443,7 @@ var x = () => {
|
|
|
1431
1443
|
"data-width",
|
|
1432
1444
|
"data-show-arrow",
|
|
1433
1445
|
"data-placement"
|
|
1434
|
-
],
|
|
1446
|
+
], kt = /* @__PURE__ */ s({
|
|
1435
1447
|
name: "DBTooltip",
|
|
1436
1448
|
__name: "tooltip",
|
|
1437
1449
|
props: {
|
|
@@ -1573,9 +1585,9 @@ var x = () => {
|
|
|
1573
1585
|
"data-show-arrow": _(k)(t.showArrow ?? !0, "showArrow"),
|
|
1574
1586
|
"data-placement": t.placement,
|
|
1575
1587
|
onClick: l[0] ||= async (e) => D(e)
|
|
1576
|
-
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(i.$slots, "default")], 10,
|
|
1588
|
+
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(i.$slots, "default")], 10, Ot));
|
|
1577
1589
|
}
|
|
1578
|
-
}),
|
|
1590
|
+
}), At = [
|
|
1579
1591
|
"id",
|
|
1580
1592
|
"data-semantic",
|
|
1581
1593
|
"data-emphasis",
|
|
@@ -1584,7 +1596,7 @@ var x = () => {
|
|
|
1584
1596
|
"data-show-icon",
|
|
1585
1597
|
"data-no-text",
|
|
1586
1598
|
"data-overflow"
|
|
1587
|
-
],
|
|
1599
|
+
], jt = /* @__PURE__ */ s({
|
|
1588
1600
|
name: "DBTag",
|
|
1589
1601
|
__name: "tag",
|
|
1590
1602
|
props: {
|
|
@@ -1657,13 +1669,13 @@ var x = () => {
|
|
|
1657
1669
|
"data-variant": "ghost",
|
|
1658
1670
|
type: "button",
|
|
1659
1671
|
onClick: p[0] ||= async (e) => l(e)
|
|
1660
|
-
}, [o(
|
|
1672
|
+
}, [o(kt, { variant: "label" }, {
|
|
1661
1673
|
default: b(() => [a(g(u()), 1)]),
|
|
1662
1674
|
_: 1
|
|
1663
1675
|
})])) : n("", !0)
|
|
1664
|
-
], 10,
|
|
1676
|
+
], 10, At));
|
|
1665
1677
|
}
|
|
1666
|
-
}),
|
|
1678
|
+
}), Mt = [
|
|
1667
1679
|
"id",
|
|
1668
1680
|
"aria-invalid",
|
|
1669
1681
|
"data-custom-validity",
|
|
@@ -1676,7 +1688,7 @@ var x = () => {
|
|
|
1676
1688
|
"data-hide-label",
|
|
1677
1689
|
"data-icon",
|
|
1678
1690
|
"data-show-icon"
|
|
1679
|
-
],
|
|
1691
|
+
], Nt = ["id"], Pt = [
|
|
1680
1692
|
"id",
|
|
1681
1693
|
"form",
|
|
1682
1694
|
"name",
|
|
@@ -1684,18 +1696,18 @@ var x = () => {
|
|
|
1684
1696
|
"multiple",
|
|
1685
1697
|
"disabled",
|
|
1686
1698
|
"required"
|
|
1687
|
-
],
|
|
1699
|
+
], Ft = ["disabled", "value"], It = ["open"], Lt = [
|
|
1688
1700
|
"id",
|
|
1689
1701
|
"aria-disabled",
|
|
1690
1702
|
"tabIndex",
|
|
1691
1703
|
"aria-labelledby"
|
|
1692
|
-
],
|
|
1704
|
+
], Rt = ["data-visually-hidden", "id"], zt = {
|
|
1693
1705
|
key: 0,
|
|
1694
1706
|
"data-visually-hidden": "true"
|
|
1695
|
-
},
|
|
1707
|
+
}, Bt = { key: 1 }, Vt = { key: 0 }, Ht = { key: 0 }, Ut = { class: "db-checkbox db-custom-select-list-item" }, Wt = ["form", "checked"], Gt = ["id"], Kt = {
|
|
1696
1708
|
"data-visually-hidden": "true",
|
|
1697
1709
|
role: "status"
|
|
1698
|
-
},
|
|
1710
|
+
}, qt = /* @__PURE__ */ s({
|
|
1699
1711
|
name: "DBCustomSelect",
|
|
1700
1712
|
__name: "custom-select",
|
|
1701
1713
|
props: {
|
|
@@ -1913,7 +1925,7 @@ var x = () => {
|
|
|
1913
1925
|
immediate: !0,
|
|
1914
1926
|
flush: "post"
|
|
1915
1927
|
}), y(() => [w.options], () => {
|
|
1916
|
-
ue.value = w.options, le.value = w.options?.filter((e) => !e.isGroupTitle).length ?? 0;
|
|
1928
|
+
ue.value = w.options, le.value = w.options?.filter((e) => !e.isGroupTitle).length ?? 0, X.value?.open && Fe();
|
|
1917
1929
|
}, {
|
|
1918
1930
|
immediate: !0,
|
|
1919
1931
|
flush: "post"
|
|
@@ -2130,7 +2142,7 @@ var x = () => {
|
|
|
2130
2142
|
let n = e;
|
|
2131
2143
|
n.stopPropagation(), w.onSearch && w.onSearch(n), t = n.target.value, ve.value = t;
|
|
2132
2144
|
}
|
|
2133
|
-
!w.options || !t || t.length === 0 ? ue.value = w.options : w.searchFilter ? ue.value = w.options.filter((e) => w.searchFilter(e, t)) : ue.value = w.options.filter((e) => !e.isGroupTitle && je(e).toLowerCase().includes(t.toLowerCase()));
|
|
2145
|
+
!w.options || !t || t.length === 0 ? ue.value = w.options : w.searchFilter ? ue.value = w.options.filter((e) => w.searchFilter(e, t)) : ue.value = w.options.filter((e) => !e.isGroupTitle && je(e).toLowerCase().includes(t.toLowerCase())), X.value?.open && Fe();
|
|
2134
2146
|
}
|
|
2135
2147
|
function Je(e) {
|
|
2136
2148
|
e.stopPropagation(), Ve([]), Ye();
|
|
@@ -2180,7 +2192,7 @@ var x = () => {
|
|
|
2180
2192
|
key: t,
|
|
2181
2193
|
disabled: e.disabled,
|
|
2182
2194
|
value: e.value
|
|
2183
|
-
}, g(je(e)), 9,
|
|
2195
|
+
}, g(je(e)), 9, Ft))), 128)) : n("", !0)], 40, Pt)], 8, Nt),
|
|
2184
2196
|
i("details", {
|
|
2185
2197
|
ref_key: "detailsRef",
|
|
2186
2198
|
ref: X,
|
|
@@ -2197,7 +2209,7 @@ var x = () => {
|
|
|
2197
2209
|
key: 0,
|
|
2198
2210
|
"data-visually-hidden": _(k)(s.selectedType === "tag", "selectedType"),
|
|
2199
2211
|
id: te.value
|
|
2200
|
-
}, [s.selectedPrefix ? (f(), r("span",
|
|
2212
|
+
}, [s.selectedPrefix ? (f(), r("span", zt, g(s.selectedPrefix), 1)) : n("", !0), a(" " + g(G.value), 1)], 8, Rt)) : n("", !0), s.selectedType === "tag" ? (f(), r("div", Bt, [(f(!0), r(e, null, m(K.value, (e, n) => (f(), t(jt, {
|
|
2201
2213
|
key: n,
|
|
2202
2214
|
emphasis: "strong",
|
|
2203
2215
|
behavior: "removable",
|
|
@@ -2206,9 +2218,9 @@ var x = () => {
|
|
|
2206
2218
|
}, {
|
|
2207
2219
|
default: b(() => [a(g(je(e)), 1)]),
|
|
2208
2220
|
_: 2
|
|
2209
|
-
}, 1032, ["removeButton", "onRemove"]))), 128))])) : n("", !0)], 8,
|
|
2221
|
+
}, 1032, ["removeButton", "onRemove"]))), 128))])) : n("", !0)], 8, Lt), o(ft, { width: s.dropdownWidth }, {
|
|
2210
2222
|
default: b(() => [
|
|
2211
|
-
ie.value ? (f(), r("div",
|
|
2223
|
+
ie.value ? (f(), r("div", Vt, [o(Dt, {
|
|
2212
2224
|
type: "search",
|
|
2213
2225
|
ref_key: "searchInputRef",
|
|
2214
2226
|
ref: Ce,
|
|
@@ -2241,7 +2253,7 @@ var x = () => {
|
|
|
2241
2253
|
"id",
|
|
2242
2254
|
"icon",
|
|
2243
2255
|
"semantic"
|
|
2244
|
-
])) : (f(), r(e, { key: 2 }, [re.value ? (f(), r("div",
|
|
2256
|
+
])) : (f(), r(e, { key: 2 }, [re.value ? (f(), r("div", Ht, [i("div", Ut, [i("label", null, [i("input", {
|
|
2245
2257
|
type: "checkbox",
|
|
2246
2258
|
value: "select-all",
|
|
2247
2259
|
ref_key: "selectAllRef",
|
|
@@ -2249,11 +2261,11 @@ var x = () => {
|
|
|
2249
2261
|
form: T.value,
|
|
2250
2262
|
checked: ye.value,
|
|
2251
2263
|
onChange: u[1] ||= async (e) => Ue(e)
|
|
2252
|
-
}, null, 40,
|
|
2264
|
+
}, null, 40, Wt), a(g(Ae()), 1)])])])) : n("", !0), o(bt, {
|
|
2253
2265
|
multiple: _(A)(s.multiple, "multiple"),
|
|
2254
2266
|
label: s.listLabel ?? s.label ?? _("LABEL SHOULD BE SET")
|
|
2255
2267
|
}, {
|
|
2256
|
-
default: b(() => [(f(!0), r(e, null, m(ue.value, (i, o) => (f(), t(
|
|
2268
|
+
default: b(() => [(f(!0), r(e, null, m(ue.value, (i, o) => (f(), t(vt, {
|
|
2257
2269
|
key: o,
|
|
2258
2270
|
type: s.multiple ? "checkbox" : "radio",
|
|
2259
2271
|
showDivider: i.showDivider,
|
|
@@ -2300,7 +2312,7 @@ var x = () => {
|
|
|
2300
2312
|
])])
|
|
2301
2313
|
]),
|
|
2302
2314
|
_: 1
|
|
2303
|
-
}, 8, ["width"])], 64)) : n("", !0)], 40,
|
|
2315
|
+
}, 8, ["width"])], 64)) : n("", !0)], 40, It),
|
|
2304
2316
|
(s.showClearSelection ?? !0) && Y.value?.length ? (f(), t(Le, {
|
|
2305
2317
|
key: 0,
|
|
2306
2318
|
icon: "cross",
|
|
@@ -2312,7 +2324,7 @@ var x = () => {
|
|
|
2312
2324
|
disabled: _(A)(s.disabled, "disabled"),
|
|
2313
2325
|
onClick: (e) => Je(e)
|
|
2314
2326
|
}, {
|
|
2315
|
-
default: b(() => [a(g(s.clearSelectionText), 1), o(
|
|
2327
|
+
default: b(() => [a(g(s.clearSelectionText), 1), o(kt, { placement: "top" }, {
|
|
2316
2328
|
default: b(() => [a(g(s.clearSelectionText), 1)]),
|
|
2317
2329
|
_: 1
|
|
2318
2330
|
})]),
|
|
@@ -2327,7 +2339,7 @@ var x = () => {
|
|
|
2327
2339
|
class: "db-custom-select-placeholder",
|
|
2328
2340
|
"aria-hidden": "true",
|
|
2329
2341
|
id: B.value
|
|
2330
|
-
}, g(s.placeholder ?? s.label), 9,
|
|
2342
|
+
}, g(s.placeholder ?? s.label), 9, Gt),
|
|
2331
2343
|
_(I)(s.message, s.showMessage) ? (f(), t($, {
|
|
2332
2344
|
key: 1,
|
|
2333
2345
|
size: "small",
|
|
@@ -2354,14 +2366,14 @@ var x = () => {
|
|
|
2354
2366
|
default: b(() => [a(g(N.value), 1)]),
|
|
2355
2367
|
_: 1
|
|
2356
2368
|
}, 8, ["id"]),
|
|
2357
|
-
i("span",
|
|
2358
|
-
], 10,
|
|
2369
|
+
i("span", Kt, g(ne.value), 1)
|
|
2370
|
+
], 10, Mt));
|
|
2359
2371
|
}
|
|
2360
|
-
}),
|
|
2372
|
+
}), Jt = [
|
|
2361
2373
|
"fixed",
|
|
2362
2374
|
"auto",
|
|
2363
2375
|
"full"
|
|
2364
|
-
],
|
|
2376
|
+
], Yt = ["id"], Xt = /* @__PURE__ */ s({
|
|
2365
2377
|
name: "DBCustomSelectFormField",
|
|
2366
2378
|
__name: "custom-select-form-field",
|
|
2367
2379
|
props: {
|
|
@@ -2379,19 +2391,19 @@ var x = () => {
|
|
|
2379
2391
|
ref: n,
|
|
2380
2392
|
id: e.id ?? e.propOverrides?.id,
|
|
2381
2393
|
class: c(_(C)("db-custom-select-form-field", t.class))
|
|
2382
|
-
}, [h(i.$slots, "default")], 10,
|
|
2394
|
+
}, [h(i.$slots, "default")], 10, Yt));
|
|
2383
2395
|
}
|
|
2384
|
-
}),
|
|
2396
|
+
}), Zt = ["checkbox", "radio"], Qt = [
|
|
2385
2397
|
"amount",
|
|
2386
2398
|
"text",
|
|
2387
2399
|
"tag"
|
|
2388
|
-
],
|
|
2400
|
+
], $t = [
|
|
2389
2401
|
"id",
|
|
2390
2402
|
"data-margin",
|
|
2391
2403
|
"data-variant",
|
|
2392
2404
|
"data-emphasis",
|
|
2393
2405
|
"data-width"
|
|
2394
|
-
],
|
|
2406
|
+
], en = /* @__PURE__ */ s({
|
|
2395
2407
|
name: "DBDivider",
|
|
2396
2408
|
__name: "divider",
|
|
2397
2409
|
props: {
|
|
@@ -2417,20 +2429,20 @@ var x = () => {
|
|
|
2417
2429
|
"data-emphasis": e.emphasis,
|
|
2418
2430
|
"data-width": e.width,
|
|
2419
2431
|
class: c(_(C)("db-divider", t.class))
|
|
2420
|
-
}, null, 10,
|
|
2432
|
+
}, null, 10, $t));
|
|
2421
2433
|
}
|
|
2422
|
-
}),
|
|
2434
|
+
}), tn = ["none", "_"], nn = ["horizontal", "vertical"], rn = [
|
|
2423
2435
|
"id",
|
|
2424
2436
|
"data-position",
|
|
2425
2437
|
"data-backdrop",
|
|
2426
2438
|
"data-direction",
|
|
2427
2439
|
"data-variant"
|
|
2428
|
-
],
|
|
2440
|
+
], an = [
|
|
2429
2441
|
"data-spacing",
|
|
2430
2442
|
"data-width",
|
|
2431
2443
|
"data-direction",
|
|
2432
2444
|
"data-rounded"
|
|
2433
|
-
],
|
|
2445
|
+
], on = { class: "db-drawer-header" }, sn = { class: "db-drawer-header-text" }, cn = { class: "db-drawer-content" }, ln = /* @__PURE__ */ s({
|
|
2434
2446
|
name: "DBDrawer",
|
|
2435
2447
|
__name: "drawer",
|
|
2436
2448
|
props: {
|
|
@@ -2464,85 +2476,92 @@ var x = () => {
|
|
|
2464
2476
|
spacing: { default: void 0 }
|
|
2465
2477
|
},
|
|
2466
2478
|
setup(e) {
|
|
2467
|
-
let t = e, n = p(!1), s = p(
|
|
2479
|
+
let t = e, n = p(!1), s = p(!1), l = p(null), d = p(null);
|
|
2468
2480
|
u(() => {
|
|
2469
|
-
|
|
2481
|
+
S(), n.value = !0;
|
|
2470
2482
|
}), y(() => [t.open], () => {
|
|
2471
|
-
|
|
2483
|
+
S();
|
|
2472
2484
|
}, {
|
|
2473
2485
|
immediate: !0,
|
|
2474
2486
|
flush: "post"
|
|
2475
2487
|
}), y(() => [
|
|
2476
|
-
|
|
2488
|
+
l.value,
|
|
2477
2489
|
n.value,
|
|
2478
2490
|
t.position
|
|
2479
2491
|
], () => {
|
|
2480
|
-
if (
|
|
2481
|
-
let e =
|
|
2492
|
+
if (l.value && n.value && t.position === "absolute") {
|
|
2493
|
+
let e = l.value.parentElement;
|
|
2482
2494
|
e && (e.style.position = "relative");
|
|
2483
2495
|
}
|
|
2484
2496
|
}, {
|
|
2485
2497
|
immediate: !0,
|
|
2486
2498
|
flush: "post"
|
|
2487
2499
|
});
|
|
2488
|
-
function d(e, n) {
|
|
2489
|
-
e && (z(e) ? e.key === "Escape" && (e.preventDefault(), t.onClose && t.onClose(e)) : (n && (e.stopPropagation(), t.onClose && t.onClose(e)), e.target?.nodeName === "DIALOG" && e.type === "click" && t.backdrop !== "none" && t.onClose && t.onClose(e)));
|
|
2490
|
-
}
|
|
2491
2500
|
function m() {
|
|
2492
|
-
|
|
2501
|
+
return t.position === "absolute" || t.backdrop === "none" || t.variant === "inside";
|
|
2502
|
+
}
|
|
2503
|
+
function v(e) {
|
|
2504
|
+
s.value = e?.target?.nodeName === "DIALOG";
|
|
2505
|
+
}
|
|
2506
|
+
function x(e, n) {
|
|
2507
|
+
e && (z(e) ? e.key === "Escape" && (e.preventDefault(), t.onClose && t.onClose(e)) : (n && (e.stopPropagation(), t.onClose && t.onClose(e)), e.target?.nodeName === "DIALOG" && e.type === "click" && t.backdrop !== "none" && s.value && t.onClose && t.onClose(e), s.value = !1));
|
|
2508
|
+
}
|
|
2509
|
+
function S() {
|
|
2510
|
+
if (l.value) {
|
|
2493
2511
|
let e = A(t.open, "open");
|
|
2494
|
-
e && !
|
|
2495
|
-
|
|
2496
|
-
}, 1)), !e &&
|
|
2497
|
-
|
|
2512
|
+
e && !l.value.open && (d.value && d.value.removeAttribute("data-transition"), m() ? l.value.show() : (l.value.setAttribute("closedby", "any"), l.value.showModal()), O(() => {
|
|
2513
|
+
d.value && (d.value.dataset.transition = "open");
|
|
2514
|
+
}, 1)), !e && l.value.open && (d.value && (d.value.dataset.transition = "close"), O(() => {
|
|
2515
|
+
l.value?.close();
|
|
2498
2516
|
}, 401));
|
|
2499
2517
|
}
|
|
2500
2518
|
}
|
|
2501
|
-
return (n,
|
|
2519
|
+
return (n, s) => (f(), r("dialog", {
|
|
2502
2520
|
class: "db-drawer",
|
|
2503
2521
|
id: e.id ?? e.propOverrides?.id,
|
|
2504
2522
|
ref_key: "_ref",
|
|
2505
|
-
ref:
|
|
2506
|
-
onClick:
|
|
2507
|
-
|
|
2523
|
+
ref: l,
|
|
2524
|
+
onClick: s[0] ||= async (e) => x(e),
|
|
2525
|
+
onMousedown: s[1] ||= async (e) => v(e),
|
|
2526
|
+
onKeydown: s[2] ||= async (e) => x(e),
|
|
2508
2527
|
"data-position": e.position,
|
|
2509
2528
|
"data-backdrop": e.backdrop,
|
|
2510
2529
|
"data-direction": e.direction,
|
|
2511
2530
|
"data-variant": e.variant
|
|
2512
2531
|
}, [i("article", {
|
|
2513
2532
|
ref_key: "dialogContainerRef",
|
|
2514
|
-
ref:
|
|
2533
|
+
ref: d,
|
|
2515
2534
|
class: c(_(C)("db-drawer-container", t.class)),
|
|
2516
2535
|
"data-spacing": e.spacing,
|
|
2517
2536
|
"data-width": e.width,
|
|
2518
2537
|
"data-direction": e.direction,
|
|
2519
2538
|
"data-rounded": _(k)(e.rounded, "rounded")
|
|
2520
|
-
}, [i("header",
|
|
2539
|
+
}, [i("header", on, [i("div", sn, [h(n.$slots, "drawer-header")]), o(Le, {
|
|
2521
2540
|
class: "button-close-drawer",
|
|
2522
2541
|
icon: "cross",
|
|
2523
2542
|
variant: "ghost",
|
|
2524
2543
|
id: e.closeButtonId,
|
|
2525
2544
|
noText: !0,
|
|
2526
|
-
onClick: (e) =>
|
|
2545
|
+
onClick: (e) => x(e, !0)
|
|
2527
2546
|
}, {
|
|
2528
2547
|
default: b(() => [a(g(e.closeButtonText ?? _("Close")), 1)]),
|
|
2529
2548
|
_: 1
|
|
2530
|
-
}, 8, ["id", "onClick"])]), i("div",
|
|
2549
|
+
}, 8, ["id", "onClick"])]), i("div", cn, [h(n.$slots, "default")])], 10, an)], 40, rn));
|
|
2531
2550
|
}
|
|
2532
|
-
}),
|
|
2551
|
+
}), un = [
|
|
2533
2552
|
"none",
|
|
2534
2553
|
"strong",
|
|
2535
2554
|
"weak",
|
|
2536
2555
|
"invisible"
|
|
2537
|
-
],
|
|
2556
|
+
], dn = [
|
|
2538
2557
|
"left",
|
|
2539
2558
|
"right",
|
|
2540
2559
|
"up",
|
|
2541
2560
|
"down"
|
|
2542
|
-
],
|
|
2561
|
+
], fn = ["modal", "inside"], pn = ["fixed", "absolute"], mn = (e) => {
|
|
2543
2562
|
let { target: t } = e;
|
|
2544
2563
|
return !!(!t?.classList?.contains("db-navigation-item-expand-button") && t?.parentElement?.classList.contains("db-navigation-item"));
|
|
2545
|
-
},
|
|
2564
|
+
}, hn = class {
|
|
2546
2565
|
element;
|
|
2547
2566
|
subNavigation;
|
|
2548
2567
|
parentSubNavigation = null;
|
|
@@ -2610,11 +2629,11 @@ var x = () => {
|
|
|
2610
2629
|
let t = this.hasMouseEnteredSubNavigation(), n = this.getTriangleCoordinates(t ? "fill-gap" : "safe-triangle");
|
|
2611
2630
|
n && (this.element.style.setProperty("--db-navigation-item-clip-path", `polygon(${n.lb}, ${n.lt}, ${n.rt}, ${n.rb})`), t && (this.triangleData = void 0));
|
|
2612
2631
|
}
|
|
2613
|
-
},
|
|
2632
|
+
}, gn = [
|
|
2614
2633
|
"id",
|
|
2615
2634
|
"data-width",
|
|
2616
2635
|
"data-on-forcing-mobile"
|
|
2617
|
-
],
|
|
2636
|
+
], _n = { class: "db-header-meta-navigation" }, vn = { class: "db-header-navigation-bar" }, yn = { class: "db-header-brand-container" }, bn = { class: "db-header-navigation-container" }, xn = { class: "db-header-navigation" }, Sn = { class: "db-header-primary-action" }, Cn = { class: "db-header-action-container" }, wn = { class: "db-header-burger-menu-container" }, Tn = { class: "db-header-secondary-action" }, En = { class: "db-header-drawer-navigation" }, Dn = { class: "db-header-meta-navigation" }, On = { class: "db-header-secondary-action" }, kn = /* @__PURE__ */ s({
|
|
2618
2637
|
name: "DBHeader",
|
|
2619
2638
|
__name: "header",
|
|
2620
2639
|
props: {
|
|
@@ -2665,7 +2684,7 @@ var x = () => {
|
|
|
2665
2684
|
t.onToggle && t.onToggle(n);
|
|
2666
2685
|
}
|
|
2667
2686
|
function m(e) {
|
|
2668
|
-
|
|
2687
|
+
mn(e) && d();
|
|
2669
2688
|
}
|
|
2670
2689
|
return (n, u) => (f(), r("header", {
|
|
2671
2690
|
ref_key: "_ref",
|
|
@@ -2675,11 +2694,11 @@ var x = () => {
|
|
|
2675
2694
|
"data-width": e.width,
|
|
2676
2695
|
"data-on-forcing-mobile": e.forceMobile && !s.value
|
|
2677
2696
|
}, [
|
|
2678
|
-
i("div",
|
|
2679
|
-
i("div",
|
|
2680
|
-
i("div",
|
|
2681
|
-
i("div",
|
|
2682
|
-
i("div",
|
|
2697
|
+
i("div", _n, [h(n.$slots, "meta-navigation")]),
|
|
2698
|
+
i("div", vn, [
|
|
2699
|
+
i("div", yn, [h(n.$slots, "brand")]),
|
|
2700
|
+
i("div", bn, [i("div", xn, [h(n.$slots, "default")]), i("div", Sn, [h(n.$slots, "primary-action")])]),
|
|
2701
|
+
i("div", Cn, [i("div", wn, [o(Le, {
|
|
2683
2702
|
icon: "menu",
|
|
2684
2703
|
variant: "ghost",
|
|
2685
2704
|
noText: !0,
|
|
@@ -2687,9 +2706,9 @@ var x = () => {
|
|
|
2687
2706
|
}, {
|
|
2688
2707
|
default: b(() => [a(g(e.burgerMenuLabel ?? _("BurgerMenu")), 1)]),
|
|
2689
2708
|
_: 1
|
|
2690
|
-
}, 8, ["onClick"])]), i("div",
|
|
2709
|
+
}, 8, ["onClick"])]), i("div", Tn, [h(n.$slots, "secondary-action")])])
|
|
2691
2710
|
]),
|
|
2692
|
-
o(
|
|
2711
|
+
o(ln, {
|
|
2693
2712
|
class: "db-header-drawer",
|
|
2694
2713
|
spacing: "small",
|
|
2695
2714
|
rounded: !0,
|
|
@@ -2698,10 +2717,10 @@ var x = () => {
|
|
|
2698
2717
|
open: _(A)(e.drawerOpen),
|
|
2699
2718
|
onClose: (e) => d()
|
|
2700
2719
|
}, {
|
|
2701
|
-
default: b(() => [i("div",
|
|
2720
|
+
default: b(() => [i("div", En, [i("div", {
|
|
2702
2721
|
class: "db-header-navigation",
|
|
2703
2722
|
onClick: u[0] ||= async (e) => m(e)
|
|
2704
|
-
}, [h(n.$slots, "default")]), i("div",
|
|
2723
|
+
}, [h(n.$slots, "default")]), i("div", Dn, [h(n.$slots, "meta-navigation")])]), i("div", On, [h(n.$slots, "secondary-action")])]),
|
|
2705
2724
|
_: 3
|
|
2706
2725
|
}, 8, [
|
|
2707
2726
|
"closeButtonId",
|
|
@@ -2709,14 +2728,14 @@ var x = () => {
|
|
|
2709
2728
|
"open",
|
|
2710
2729
|
"onClose"
|
|
2711
2730
|
])
|
|
2712
|
-
], 10,
|
|
2731
|
+
], 10, gn));
|
|
2713
2732
|
}
|
|
2714
|
-
}),
|
|
2733
|
+
}), An = [
|
|
2715
2734
|
"id",
|
|
2716
2735
|
"data-icon",
|
|
2717
2736
|
"data-icon-weight",
|
|
2718
2737
|
"data-icon-variant"
|
|
2719
|
-
],
|
|
2738
|
+
], jn = /* @__PURE__ */ s({
|
|
2720
2739
|
name: "DBIcon",
|
|
2721
2740
|
__name: "icon",
|
|
2722
2741
|
props: {
|
|
@@ -2742,16 +2761,16 @@ var x = () => {
|
|
|
2742
2761
|
"data-icon": t.icon,
|
|
2743
2762
|
"data-icon-weight": t.weight,
|
|
2744
2763
|
"data-icon-variant": t.variant
|
|
2745
|
-
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(s.$slots, "default")], 10,
|
|
2764
|
+
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(s.$slots, "default")], 10, An));
|
|
2746
2765
|
}
|
|
2747
|
-
}),
|
|
2766
|
+
}), Mn = [
|
|
2748
2767
|
"16",
|
|
2749
2768
|
"20",
|
|
2750
2769
|
"24",
|
|
2751
2770
|
"32",
|
|
2752
2771
|
"48",
|
|
2753
2772
|
"64"
|
|
2754
|
-
],
|
|
2773
|
+
], Nn = [
|
|
2755
2774
|
"color",
|
|
2756
2775
|
"date",
|
|
2757
2776
|
"datetime-local",
|
|
@@ -2768,7 +2787,7 @@ var x = () => {
|
|
|
2768
2787
|
"time",
|
|
2769
2788
|
"url",
|
|
2770
2789
|
"week"
|
|
2771
|
-
],
|
|
2790
|
+
], Pn = [
|
|
2772
2791
|
"id",
|
|
2773
2792
|
"href",
|
|
2774
2793
|
"target",
|
|
@@ -2783,7 +2802,7 @@ var x = () => {
|
|
|
2783
2802
|
"data-variant",
|
|
2784
2803
|
"data-content",
|
|
2785
2804
|
"data-wrap"
|
|
2786
|
-
],
|
|
2805
|
+
], Fn = /* @__PURE__ */ s({
|
|
2787
2806
|
name: "DBLink",
|
|
2788
2807
|
__name: "link",
|
|
2789
2808
|
props: {
|
|
@@ -2846,13 +2865,13 @@ var x = () => {
|
|
|
2846
2865
|
"data-content": t.content || "internal",
|
|
2847
2866
|
"data-wrap": _(k)(t.wrap, "wrap"),
|
|
2848
2867
|
onClick: u[0] ||= async (e) => s(e)
|
|
2849
|
-
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(l.$slots, "default")], 10,
|
|
2868
|
+
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : n("", !0), h(l.$slots, "default")], 10, Pn));
|
|
2850
2869
|
}
|
|
2851
|
-
}),
|
|
2870
|
+
}), In = [
|
|
2852
2871
|
"adaptive",
|
|
2853
2872
|
"brand",
|
|
2854
2873
|
"inline"
|
|
2855
|
-
],
|
|
2874
|
+
], Ln = ["medium", "small"], Rn = ["external", "internal"], zn = ["id"], Bn = /* @__PURE__ */ s({
|
|
2856
2875
|
name: "DBNavigation",
|
|
2857
2876
|
__name: "navigation",
|
|
2858
2877
|
props: {
|
|
@@ -2870,9 +2889,9 @@ var x = () => {
|
|
|
2870
2889
|
ref: n,
|
|
2871
2890
|
id: e.id ?? e.propOverrides?.id,
|
|
2872
2891
|
class: c(_(C)("db-navigation", t.class))
|
|
2873
|
-
}, [i("menu", null, [h(a.$slots, "default")])], 10,
|
|
2892
|
+
}, [i("menu", null, [h(a.$slots, "default")])], 10, zn));
|
|
2874
2893
|
}
|
|
2875
|
-
}),
|
|
2894
|
+
}), Vn = [
|
|
2876
2895
|
"id",
|
|
2877
2896
|
"data-width",
|
|
2878
2897
|
"data-icon",
|
|
@@ -2880,20 +2899,20 @@ var x = () => {
|
|
|
2880
2899
|
"data-active",
|
|
2881
2900
|
"data-wrap",
|
|
2882
2901
|
"aria-disabled"
|
|
2883
|
-
],
|
|
2902
|
+
], Hn = [
|
|
2884
2903
|
"id",
|
|
2885
2904
|
"aria-haspopup",
|
|
2886
2905
|
"aria-expanded",
|
|
2887
2906
|
"aria-controls",
|
|
2888
2907
|
"disabled"
|
|
2889
|
-
],
|
|
2908
|
+
], Un = [
|
|
2890
2909
|
"id",
|
|
2891
2910
|
"aria-labelledby",
|
|
2892
2911
|
"data-force-close"
|
|
2893
|
-
],
|
|
2912
|
+
], Wn = {
|
|
2894
2913
|
key: 0,
|
|
2895
2914
|
class: "db-mobile-navigation-back"
|
|
2896
|
-
},
|
|
2915
|
+
}, Gn = /* @__PURE__ */ s({
|
|
2897
2916
|
name: "DBNavigationItem",
|
|
2898
2917
|
__name: "navigation-item",
|
|
2899
2918
|
props: {
|
|
@@ -2953,7 +2972,7 @@ var x = () => {
|
|
|
2953
2972
|
}), y(() => [d.value, j.value], () => {
|
|
2954
2973
|
if (d.value && j.value) {
|
|
2955
2974
|
let e = j.value.querySelector("menu");
|
|
2956
|
-
e && (e.children?.length > 0 ? (m.value = !0, T.value ||= new
|
|
2975
|
+
e && (e.children?.length > 0 ? (m.value = !0, T.value ||= new hn(j.value, e)) : x.value = !1);
|
|
2957
2976
|
}
|
|
2958
2977
|
}, {
|
|
2959
2978
|
immediate: !0,
|
|
@@ -2992,13 +3011,13 @@ var x = () => {
|
|
|
2992
3011
|
"aria-controls": E.value,
|
|
2993
3012
|
disabled: _(A)(t.disabled, "disabled"),
|
|
2994
3013
|
onClick: u[0] ||= async (e) => N(e)
|
|
2995
|
-
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : h(s.$slots, "default", { key: 1 })], 8,
|
|
3014
|
+
}, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : h(s.$slots, "default", { key: 1 })], 8, Hn), i("menu", {
|
|
2996
3015
|
class: "db-sub-navigation",
|
|
2997
3016
|
id: E.value,
|
|
2998
3017
|
"aria-labelledby": D.value,
|
|
2999
3018
|
"data-force-close": w.value,
|
|
3000
3019
|
onClick: u[1] ||= async (e) => M(e)
|
|
3001
|
-
}, [m.value ? (f(), r("div",
|
|
3020
|
+
}, [m.value ? (f(), r("div", Wn, [o(Le, {
|
|
3002
3021
|
icon: "arrow_left",
|
|
3003
3022
|
variant: "ghost",
|
|
3004
3023
|
id: t.backButtonId,
|
|
@@ -3006,9 +3025,9 @@ var x = () => {
|
|
|
3006
3025
|
}, {
|
|
3007
3026
|
default: b(() => [a(g(t.backButtonText ?? _("Back")), 1)]),
|
|
3008
3027
|
_: 1
|
|
3009
|
-
}, 8, ["id", "onClick"])])) : n("", !0), h(s.$slots, "sub-navigation")], 8,
|
|
3028
|
+
}, 8, ["id", "onClick"])])) : n("", !0), h(s.$slots, "sub-navigation")], 8, Un)], 64)) : (f(), r(e, { key: 1 }, [t.text ? (f(), r(e, { key: 0 }, [a(g(t.text), 1)], 64)) : h(s.$slots, "default", { key: 1 })], 64))], 42, Vn));
|
|
3010
3029
|
}
|
|
3011
|
-
}),
|
|
3030
|
+
}), Kn = [
|
|
3012
3031
|
"id",
|
|
3013
3032
|
"role",
|
|
3014
3033
|
"aria-live",
|
|
@@ -3017,10 +3036,10 @@ var x = () => {
|
|
|
3017
3036
|
"data-icon",
|
|
3018
3037
|
"data-show-icon",
|
|
3019
3038
|
"data-link-variant"
|
|
3020
|
-
],
|
|
3039
|
+
], qn = {
|
|
3021
3040
|
key: 0,
|
|
3022
3041
|
"data-area": "head"
|
|
3023
|
-
},
|
|
3042
|
+
}, Jn = { "data-area": "content" }, Yn = ["dateTime"], Xn = /* @__PURE__ */ s({
|
|
3024
3043
|
name: "DBNotification",
|
|
3025
3044
|
__name: "notification",
|
|
3026
3045
|
props: {
|
|
@@ -3089,13 +3108,13 @@ var x = () => {
|
|
|
3089
3108
|
"data-link-variant": o.linkVariant
|
|
3090
3109
|
}, [
|
|
3091
3110
|
h(d.$slots, "image"),
|
|
3092
|
-
_(I)(o.headline, o.showHeadline) ? (f(), r("header",
|
|
3093
|
-
i("div",
|
|
3111
|
+
_(I)(o.headline, o.showHeadline) ? (f(), r("header", qn, g(o.headline), 1)) : n("", !0),
|
|
3112
|
+
i("div", Jn, [o.text ? (f(), r(e, { key: 0 }, [a(g(o.text), 1)], 64)) : n("", !0), h(d.$slots, "default")]),
|
|
3094
3113
|
_(I)(o.timestamp, o.showTimestamp) ? (f(), r("time", {
|
|
3095
3114
|
key: 1,
|
|
3096
3115
|
"data-area": "timestamp",
|
|
3097
3116
|
dateTime: o.timestampDatetime
|
|
3098
|
-
}, g(o.timestamp), 9,
|
|
3117
|
+
}, g(o.timestamp), 9, Yn)) : n("", !0),
|
|
3099
3118
|
h(d.$slots, "link"),
|
|
3100
3119
|
_(A)(o.closeable, "closeable") ? (f(), t(Le, {
|
|
3101
3120
|
key: 2,
|
|
@@ -3109,22 +3128,22 @@ var x = () => {
|
|
|
3109
3128
|
default: b(() => [a(g(o.closeButtonText ?? _("Close")), 1)]),
|
|
3110
3129
|
_: 1
|
|
3111
3130
|
}, 8, ["id", "onClick"])) : n("", !0)
|
|
3112
|
-
], 10,
|
|
3131
|
+
], 10, Kn));
|
|
3113
3132
|
}
|
|
3114
|
-
}),
|
|
3133
|
+
}), Zn = [
|
|
3115
3134
|
"docked",
|
|
3116
3135
|
"standalone",
|
|
3117
3136
|
"overlay"
|
|
3118
|
-
],
|
|
3137
|
+
], Qn = ["block", "inline"], $n = [
|
|
3119
3138
|
"assertive",
|
|
3120
3139
|
"polite",
|
|
3121
3140
|
"off"
|
|
3122
|
-
],
|
|
3141
|
+
], er = [
|
|
3123
3142
|
"id",
|
|
3124
3143
|
"data-variant",
|
|
3125
3144
|
"data-fade-in",
|
|
3126
3145
|
"data-fonts-loaded"
|
|
3127
|
-
],
|
|
3146
|
+
], tr = /* @__PURE__ */ s({
|
|
3128
3147
|
name: "DBPage",
|
|
3129
3148
|
__name: "page",
|
|
3130
3149
|
props: {
|
|
@@ -3164,9 +3183,9 @@ var x = () => {
|
|
|
3164
3183
|
h(o.$slots, "header"),
|
|
3165
3184
|
i("main", { class: c(_(C)("db-main", e.mainClass)) }, [h(o.$slots, "default")], 2),
|
|
3166
3185
|
h(o.$slots, "footer")
|
|
3167
|
-
], 10,
|
|
3186
|
+
], 10, er));
|
|
3168
3187
|
}
|
|
3169
|
-
}),
|
|
3188
|
+
}), nr = ["auto", "fixed"], rr = ["hidden", "auto"], ir = ["id"], ar = [
|
|
3170
3189
|
"data-spacing",
|
|
3171
3190
|
"data-gap",
|
|
3172
3191
|
"data-animation",
|
|
@@ -3174,7 +3193,7 @@ var x = () => {
|
|
|
3174
3193
|
"data-delay",
|
|
3175
3194
|
"data-width",
|
|
3176
3195
|
"data-placement"
|
|
3177
|
-
],
|
|
3196
|
+
], or = /* @__PURE__ */ s({
|
|
3178
3197
|
name: "DBPopover",
|
|
3179
3198
|
__name: "popover",
|
|
3180
3199
|
props: {
|
|
@@ -3281,14 +3300,14 @@ var x = () => {
|
|
|
3281
3300
|
"data-delay": e.delay,
|
|
3282
3301
|
"data-width": e.width,
|
|
3283
3302
|
"data-placement": e.placement
|
|
3284
|
-
}, [h(n.$slots, "default")], 8,
|
|
3303
|
+
}, [h(n.$slots, "default")], 8, ar)], 10, ir));
|
|
3285
3304
|
}
|
|
3286
|
-
}),
|
|
3305
|
+
}), sr = [
|
|
3287
3306
|
"data-size",
|
|
3288
3307
|
"data-hide-label",
|
|
3289
3308
|
"data-hide-asterisk",
|
|
3290
3309
|
"for"
|
|
3291
|
-
],
|
|
3310
|
+
], cr = [
|
|
3292
3311
|
"aria-invalid",
|
|
3293
3312
|
"data-custom-validity",
|
|
3294
3313
|
"id",
|
|
@@ -3297,7 +3316,7 @@ var x = () => {
|
|
|
3297
3316
|
"disabled",
|
|
3298
3317
|
"value",
|
|
3299
3318
|
"required"
|
|
3300
|
-
],
|
|
3319
|
+
], lr = /* @__PURE__ */ s({
|
|
3301
3320
|
name: "DBRadio",
|
|
3302
3321
|
__name: "radio",
|
|
3303
3322
|
props: {
|
|
@@ -3438,16 +3457,16 @@ var x = () => {
|
|
|
3438
3457
|
onChange: s[1] ||= async (e) => E(e),
|
|
3439
3458
|
onBlur: s[2] ||= async (e) => D(e),
|
|
3440
3459
|
onFocus: s[3] ||= async (e) => k(e)
|
|
3441
|
-
}, null, 40,
|
|
3460
|
+
}, null, 40, cr),
|
|
3442
3461
|
t.label ? (f(), r(e, { key: 0 }, [a(g(t.label), 1)], 64)) : n("", !0),
|
|
3443
3462
|
h(o.$slots, "default")
|
|
3444
|
-
], 10,
|
|
3463
|
+
], 10, sr));
|
|
3445
3464
|
}
|
|
3446
|
-
}),
|
|
3465
|
+
}), ur = [
|
|
3447
3466
|
"id",
|
|
3448
3467
|
"data-spacing",
|
|
3449
3468
|
"data-width"
|
|
3450
|
-
],
|
|
3469
|
+
], dr = /* @__PURE__ */ s({
|
|
3451
3470
|
name: "DBSection",
|
|
3452
3471
|
__name: "section",
|
|
3453
3472
|
props: {
|
|
@@ -3469,15 +3488,15 @@ var x = () => {
|
|
|
3469
3488
|
class: c(_(C)("db-section", t.class)),
|
|
3470
3489
|
"data-spacing": e.spacing || "medium",
|
|
3471
3490
|
"data-width": e.width
|
|
3472
|
-
}, [h(i.$slots, "default")], 10,
|
|
3491
|
+
}, [h(i.$slots, "default")], 10, ur));
|
|
3473
3492
|
}
|
|
3474
|
-
}),
|
|
3493
|
+
}), fr = [
|
|
3475
3494
|
"data-variant",
|
|
3476
3495
|
"data-hide-label",
|
|
3477
3496
|
"data-hide-asterisk",
|
|
3478
3497
|
"data-icon",
|
|
3479
3498
|
"data-show-icon"
|
|
3480
|
-
],
|
|
3499
|
+
], pr = ["for"], mr = [
|
|
3481
3500
|
"aria-invalid",
|
|
3482
3501
|
"data-custom-validity",
|
|
3483
3502
|
"required",
|
|
@@ -3489,18 +3508,18 @@ var x = () => {
|
|
|
3489
3508
|
"autocomplete",
|
|
3490
3509
|
"multiple",
|
|
3491
3510
|
"aria-describedby"
|
|
3492
|
-
],
|
|
3511
|
+
], hr = ["data-show-empty-option"], gr = ["label"], _r = [
|
|
3493
3512
|
"value",
|
|
3494
3513
|
"selected",
|
|
3495
3514
|
"disabled"
|
|
3496
|
-
],
|
|
3515
|
+
], vr = [
|
|
3497
3516
|
"value",
|
|
3498
3517
|
"disabled",
|
|
3499
3518
|
"selected"
|
|
3500
|
-
],
|
|
3519
|
+
], yr = ["id"], br = {
|
|
3501
3520
|
"data-visually-hidden": "true",
|
|
3502
3521
|
role: "status"
|
|
3503
|
-
},
|
|
3522
|
+
}, xr = /* @__PURE__ */ s({
|
|
3504
3523
|
name: "DBSelect",
|
|
3505
3524
|
__name: "select",
|
|
3506
3525
|
props: {
|
|
@@ -3670,7 +3689,7 @@ var x = () => {
|
|
|
3670
3689
|
"data-icon": s.icon,
|
|
3671
3690
|
"data-show-icon": _(k)(s.showIcon, "showIcon")
|
|
3672
3691
|
}, [
|
|
3673
|
-
i("label", { for: T.value }, g(s.label ?? _("LABEL SHOULD BE SET")), 9,
|
|
3692
|
+
i("label", { for: T.value }, g(s.label ?? _("LABEL SHOULD BE SET")), 9, pr),
|
|
3674
3693
|
i("select", {
|
|
3675
3694
|
"aria-invalid": s.validation === "invalid",
|
|
3676
3695
|
"data-custom-validity": s.validation,
|
|
@@ -3695,7 +3714,7 @@ var x = () => {
|
|
|
3695
3714
|
class: "placeholder",
|
|
3696
3715
|
value: "",
|
|
3697
3716
|
"data-show-empty-option": _(k)(ie(), "showEmptyOption")
|
|
3698
|
-
}, null, 8,
|
|
3717
|
+
}, null, 8, hr)) : 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", {
|
|
3699
3718
|
key: 0,
|
|
3700
3719
|
label: re(t)
|
|
3701
3720
|
}, [(f(!0), r(e, null, m(t.options, (e, t) => (f(), r("option", {
|
|
@@ -3703,17 +3722,17 @@ var x = () => {
|
|
|
3703
3722
|
value: e.value,
|
|
3704
3723
|
selected: e.selected,
|
|
3705
3724
|
disabled: e.disabled
|
|
3706
|
-
}, g(re(e)), 9,
|
|
3725
|
+
}, g(re(e)), 9, _r))), 128))], 8, gr)) : (f(), r("option", {
|
|
3707
3726
|
key: 1,
|
|
3708
3727
|
value: t.value,
|
|
3709
3728
|
disabled: t.disabled,
|
|
3710
3729
|
selected: t.selected
|
|
3711
|
-
}, g(re(t)), 9,
|
|
3730
|
+
}, g(re(t)), 9, vr))], 64))), 128)) : h(l.$slots, "default", { key: 2 })], 40, mr),
|
|
3712
3731
|
s.placeholder ? (f(), r("span", {
|
|
3713
3732
|
key: 0,
|
|
3714
3733
|
class: "db-select-placeholder",
|
|
3715
3734
|
id: P.value
|
|
3716
|
-
}, g(s.placeholder), 9,
|
|
3735
|
+
}, g(s.placeholder), 9, yr)) : n("", !0),
|
|
3717
3736
|
_(I)(s.message, s.showMessage) ? (f(), t($, {
|
|
3718
3737
|
key: 1,
|
|
3719
3738
|
size: "small",
|
|
@@ -3740,10 +3759,10 @@ var x = () => {
|
|
|
3740
3759
|
default: b(() => [a(g(N.value), 1)]),
|
|
3741
3760
|
_: 1
|
|
3742
3761
|
}, 8, ["id"]),
|
|
3743
|
-
i("span",
|
|
3744
|
-
], 10,
|
|
3762
|
+
i("span", br, g(B.value), 1)
|
|
3763
|
+
], 10, fr));
|
|
3745
3764
|
}
|
|
3746
|
-
}),
|
|
3765
|
+
}), Sr = [
|
|
3747
3766
|
"id",
|
|
3748
3767
|
"data-gap",
|
|
3749
3768
|
"data-variant",
|
|
@@ -3751,7 +3770,7 @@ var x = () => {
|
|
|
3751
3770
|
"data-alignment",
|
|
3752
3771
|
"data-justify-content",
|
|
3753
3772
|
"data-wrap"
|
|
3754
|
-
],
|
|
3773
|
+
], Cr = /* @__PURE__ */ s({
|
|
3755
3774
|
name: "DBStack",
|
|
3756
3775
|
__name: "stack",
|
|
3757
3776
|
props: {
|
|
@@ -3784,26 +3803,26 @@ var x = () => {
|
|
|
3784
3803
|
"data-alignment": e.alignment,
|
|
3785
3804
|
"data-justify-content": e.justifyContent,
|
|
3786
3805
|
"data-wrap": _(k)(e.wrap, "wrap")
|
|
3787
|
-
}, [h(i.$slots, "default")], 10,
|
|
3806
|
+
}, [h(i.$slots, "default")], 10, Sr));
|
|
3788
3807
|
}
|
|
3789
|
-
}),
|
|
3808
|
+
}), wr = ["simple", "divider"], Tr = ["row", "column"], Er = [
|
|
3790
3809
|
"stretch",
|
|
3791
3810
|
"start",
|
|
3792
3811
|
"end",
|
|
3793
3812
|
"center"
|
|
3794
|
-
],
|
|
3813
|
+
], Dr = [
|
|
3795
3814
|
"space-between",
|
|
3796
3815
|
"start",
|
|
3797
3816
|
"end",
|
|
3798
3817
|
"center"
|
|
3799
|
-
],
|
|
3818
|
+
], Or = [
|
|
3800
3819
|
"data-visual-aid",
|
|
3801
3820
|
"data-size",
|
|
3802
3821
|
"data-hide-label",
|
|
3803
3822
|
"data-variant",
|
|
3804
3823
|
"data-hide-asterisk",
|
|
3805
3824
|
"data-custom-validity"
|
|
3806
|
-
],
|
|
3825
|
+
], kr = ["for"], Ar = [
|
|
3807
3826
|
"id",
|
|
3808
3827
|
"checked",
|
|
3809
3828
|
"value",
|
|
@@ -3814,10 +3833,10 @@ var x = () => {
|
|
|
3814
3833
|
"required",
|
|
3815
3834
|
"data-aid-icon",
|
|
3816
3835
|
"data-aid-icon-trailing"
|
|
3817
|
-
],
|
|
3836
|
+
], jr = {
|
|
3818
3837
|
"data-visually-hidden": "true",
|
|
3819
3838
|
role: "status"
|
|
3820
|
-
},
|
|
3839
|
+
}, Mr = /* @__PURE__ */ s({
|
|
3821
3840
|
name: "DBSwitch",
|
|
3822
3841
|
__name: "switch",
|
|
3823
3842
|
props: {
|
|
@@ -3999,10 +4018,10 @@ var x = () => {
|
|
|
3999
4018
|
onBlur: u[1] ||= async (e) => H(e),
|
|
4000
4019
|
onFocus: u[2] ||= async (e) => U(e),
|
|
4001
4020
|
onKeydown: u[3] ||= async (e) => W(e)
|
|
4002
|
-
}, null, 40,
|
|
4021
|
+
}, null, 40, Ar),
|
|
4003
4022
|
s.label ? (f(), r(e, { key: 0 }, [a(g(s.label), 1)], 64)) : n("", !0),
|
|
4004
4023
|
h(l.$slots, "default")
|
|
4005
|
-
], 8,
|
|
4024
|
+
], 8, kr),
|
|
4006
4025
|
_(I)(s.message, s.showMessage) ? (f(), t($, {
|
|
4007
4026
|
key: 0,
|
|
4008
4027
|
size: "small",
|
|
@@ -4030,23 +4049,23 @@ var x = () => {
|
|
|
4030
4049
|
default: b(() => [a(g(M.value), 1)]),
|
|
4031
4050
|
_: 1
|
|
4032
4051
|
}, 8, ["id"]),
|
|
4033
|
-
i("span",
|
|
4034
|
-
], 10,
|
|
4052
|
+
i("span", jr, g(P.value), 1)
|
|
4053
|
+
], 10, Or));
|
|
4035
4054
|
}
|
|
4036
|
-
}),
|
|
4055
|
+
}), Nr = [
|
|
4037
4056
|
"for",
|
|
4038
4057
|
"data-icon",
|
|
4039
4058
|
"data-icon-trailing",
|
|
4040
4059
|
"data-show-icon",
|
|
4041
4060
|
"data-show-icon-trailing",
|
|
4042
4061
|
"data-no-text"
|
|
4043
|
-
],
|
|
4062
|
+
], Pr = [
|
|
4044
4063
|
"disabled",
|
|
4045
4064
|
"aria-selected",
|
|
4046
4065
|
"checked",
|
|
4047
4066
|
"name",
|
|
4048
4067
|
"id"
|
|
4049
|
-
],
|
|
4068
|
+
], Fr = /* @__PURE__ */ s({
|
|
4050
4069
|
name: "DBTabItem",
|
|
4051
4070
|
__name: "tab-item",
|
|
4052
4071
|
props: {
|
|
@@ -4145,12 +4164,12 @@ var x = () => {
|
|
|
4145
4164
|
name: v.value,
|
|
4146
4165
|
id: t.id ?? t.propOverrides?.id,
|
|
4147
4166
|
onInput: s[0] ||= async (e) => E(e)
|
|
4148
|
-
}, null, 40,
|
|
4167
|
+
}, null, 40, Pr),
|
|
4149
4168
|
t.label ? (f(), r(e, { key: 0 }, [a(g(t.label), 1)], 64)) : n("", !0),
|
|
4150
4169
|
h(o.$slots, "default")
|
|
4151
|
-
], 8,
|
|
4170
|
+
], 8, Nr)], 2));
|
|
4152
4171
|
}
|
|
4153
|
-
}),
|
|
4172
|
+
}), Ir = ["id"], Lr = { role: "tablist" }, Rr = /* @__PURE__ */ s({
|
|
4154
4173
|
name: "DBTabList",
|
|
4155
4174
|
__name: "tab-list",
|
|
4156
4175
|
props: {
|
|
@@ -4168,9 +4187,9 @@ var x = () => {
|
|
|
4168
4187
|
ref: n,
|
|
4169
4188
|
id: e.id ?? e.propOverrides?.id,
|
|
4170
4189
|
class: c(_(C)("db-tab-list", t.class))
|
|
4171
|
-
}, [i("ul",
|
|
4190
|
+
}, [i("ul", Lr, [h(a.$slots, "default")])], 10, Ir));
|
|
4172
4191
|
}
|
|
4173
|
-
}),
|
|
4192
|
+
}), zr = ["id"], Br = /* @__PURE__ */ s({
|
|
4174
4193
|
name: "DBTabPanel",
|
|
4175
4194
|
__name: "tab-panel",
|
|
4176
4195
|
props: {
|
|
@@ -4190,16 +4209,16 @@ var x = () => {
|
|
|
4190
4209
|
ref: o,
|
|
4191
4210
|
class: c(_(C)("db-tab-panel", i.class)),
|
|
4192
4211
|
id: t.id ?? t.propOverrides?.id
|
|
4193
|
-
}, [t.content ? (f(), r(e, { key: 0 }, [a(g(t.content), 1)], 64)) : n("", !0), h(s.$slots, "default")], 10,
|
|
4212
|
+
}, [t.content ? (f(), r(e, { key: 0 }, [a(g(t.content), 1)], 64)) : n("", !0), h(s.$slots, "default")], 10, zr));
|
|
4194
4213
|
}
|
|
4195
|
-
}),
|
|
4214
|
+
}), Vr = [
|
|
4196
4215
|
"id",
|
|
4197
4216
|
"data-horizontal-alignment",
|
|
4198
4217
|
"data-vertical-alignment",
|
|
4199
4218
|
"colSpan",
|
|
4200
4219
|
"rowSpan",
|
|
4201
4220
|
"headers"
|
|
4202
|
-
],
|
|
4221
|
+
], Hr = /* @__PURE__ */ s({
|
|
4203
4222
|
name: "DBTableDataCell",
|
|
4204
4223
|
__name: "table-data-cell",
|
|
4205
4224
|
props: {
|
|
@@ -4229,9 +4248,9 @@ var x = () => {
|
|
|
4229
4248
|
colSpan: _(j)(e.colSpan, e.colspan),
|
|
4230
4249
|
rowSpan: _(j)(e.rowSpan, e.rowspan),
|
|
4231
4250
|
headers: e.headers
|
|
4232
|
-
}, [h(i.$slots, "default")], 10,
|
|
4251
|
+
}, [h(i.$slots, "default")], 10, Vr));
|
|
4233
4252
|
}
|
|
4234
|
-
}),
|
|
4253
|
+
}), Ur = [
|
|
4235
4254
|
"id",
|
|
4236
4255
|
"data-horizontal-alignment",
|
|
4237
4256
|
"data-vertical-alignment",
|
|
@@ -4241,7 +4260,7 @@ var x = () => {
|
|
|
4241
4260
|
"rowSpan",
|
|
4242
4261
|
"headers",
|
|
4243
4262
|
"abbr"
|
|
4244
|
-
],
|
|
4263
|
+
], Wr = /* @__PURE__ */ s({
|
|
4245
4264
|
name: "DBTableHeaderCell",
|
|
4246
4265
|
__name: "table-header-cell",
|
|
4247
4266
|
props: {
|
|
@@ -4280,13 +4299,13 @@ var x = () => {
|
|
|
4280
4299
|
rowSpan: _(j)(e.rowSpan, e.rowspan),
|
|
4281
4300
|
headers: e.headers,
|
|
4282
4301
|
abbr: e.abbr
|
|
4283
|
-
}, [h(i.$slots, "default")], 10,
|
|
4302
|
+
}, [h(i.$slots, "default")], 10, Ur));
|
|
4284
4303
|
}
|
|
4285
|
-
}),
|
|
4304
|
+
}), Gr = [
|
|
4286
4305
|
"id",
|
|
4287
4306
|
"data-interactive",
|
|
4288
4307
|
"data-sub-header-emphasis"
|
|
4289
|
-
],
|
|
4308
|
+
], Kr = /* @__PURE__ */ s({
|
|
4290
4309
|
name: "DBTableRow",
|
|
4291
4310
|
__name: "table-row",
|
|
4292
4311
|
props: {
|
|
@@ -4315,7 +4334,7 @@ var x = () => {
|
|
|
4315
4334
|
class: c(_(C)("db-table-row", o.class)),
|
|
4316
4335
|
"data-interactive": _(k)(n.interactive),
|
|
4317
4336
|
"data-sub-header-emphasis": n.subHeaderEmphasis
|
|
4318
|
-
}, [n.cells ? (f(!0), r(e, { key: 0 }, m(n.cells, (o, s) => (f(), r(e, { key: s }, [o.headerCell ? (f(), t(
|
|
4337
|
+
}, [n.cells ? (f(!0), r(e, { key: 0 }, m(n.cells, (o, s) => (f(), r(e, { key: s }, [o.headerCell ? (f(), t(Wr, {
|
|
4319
4338
|
key: `${o.id ?? n.id ?? _(i)}-table-row-header-cell-${s}`,
|
|
4320
4339
|
id: o.id,
|
|
4321
4340
|
abbr: l(o)?.abbr,
|
|
@@ -4330,7 +4349,7 @@ var x = () => {
|
|
|
4330
4349
|
rowSpan: o.rowSpan,
|
|
4331
4350
|
rowspan: o.rowspan
|
|
4332
4351
|
}, {
|
|
4333
|
-
default: b(() => [o.link ? (f(), t(
|
|
4352
|
+
default: b(() => [o.link ? (f(), t(Fn, {
|
|
4334
4353
|
key: 0,
|
|
4335
4354
|
content: o.link?.content,
|
|
4336
4355
|
size: o.link?.size,
|
|
@@ -4383,7 +4402,7 @@ var x = () => {
|
|
|
4383
4402
|
"colspan",
|
|
4384
4403
|
"rowSpan",
|
|
4385
4404
|
"rowspan"
|
|
4386
|
-
])) : (f(), t(
|
|
4405
|
+
])) : (f(), t(Hr, {
|
|
4387
4406
|
key: `${o.id ?? n.id ?? _(i)}-table-row-data-cell-${s}`,
|
|
4388
4407
|
id: o.id,
|
|
4389
4408
|
className: o.className ?? o.class,
|
|
@@ -4395,7 +4414,7 @@ var x = () => {
|
|
|
4395
4414
|
rowSpan: o.rowSpan,
|
|
4396
4415
|
rowspan: o.rowspan
|
|
4397
4416
|
}, {
|
|
4398
|
-
default: b(() => [o.link ? (f(), t(
|
|
4417
|
+
default: b(() => [o.link ? (f(), t(Fn, {
|
|
4399
4418
|
key: 0,
|
|
4400
4419
|
content: o.link?.content,
|
|
4401
4420
|
size: o.link?.size,
|
|
@@ -4445,9 +4464,9 @@ var x = () => {
|
|
|
4445
4464
|
"colspan",
|
|
4446
4465
|
"rowSpan",
|
|
4447
4466
|
"rowspan"
|
|
4448
|
-
]))], 64))), 128)) : h(u.$slots, "default", { key: 1 })], 10,
|
|
4467
|
+
]))], 64))), 128)) : h(u.$slots, "default", { key: 1 })], 10, Gr));
|
|
4449
4468
|
}
|
|
4450
|
-
}),
|
|
4469
|
+
}), qr = ["id"], Jr = /* @__PURE__ */ s({
|
|
4451
4470
|
name: "DBTableBody",
|
|
4452
4471
|
__name: "table-body",
|
|
4453
4472
|
props: {
|
|
@@ -4466,7 +4485,7 @@ var x = () => {
|
|
|
4466
4485
|
ref: o,
|
|
4467
4486
|
id: n.id,
|
|
4468
4487
|
class: c(_(C)("db-table-body", a.class))
|
|
4469
|
-
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(
|
|
4488
|
+
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(Kr, {
|
|
4470
4489
|
key: `${e.id ?? n.id ?? _(i)}-table-body-row-${r}`,
|
|
4471
4490
|
cells: e.cells,
|
|
4472
4491
|
className: e.className ?? e.class,
|
|
@@ -4477,9 +4496,9 @@ var x = () => {
|
|
|
4477
4496
|
"className",
|
|
4478
4497
|
"interactive",
|
|
4479
4498
|
"id"
|
|
4480
|
-
]))), 128)) : h(s.$slots, "default", { key: 1 })], 10,
|
|
4499
|
+
]))), 128)) : h(s.$slots, "default", { key: 1 })], 10, qr));
|
|
4481
4500
|
}
|
|
4482
|
-
}),
|
|
4501
|
+
}), Yr = ["id"], Xr = /* @__PURE__ */ s({
|
|
4483
4502
|
name: "DBTableFooter",
|
|
4484
4503
|
__name: "table-footer",
|
|
4485
4504
|
props: {
|
|
@@ -4498,7 +4517,7 @@ var x = () => {
|
|
|
4498
4517
|
ref: o,
|
|
4499
4518
|
id: n.id,
|
|
4500
4519
|
class: c(_(C)("db-table-footer", a.class))
|
|
4501
|
-
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(
|
|
4520
|
+
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(Kr, {
|
|
4502
4521
|
key: `${e.id ?? n.id ?? _(i)}-table-footer-row-${r}`,
|
|
4503
4522
|
cells: e.cells,
|
|
4504
4523
|
className: e.className ?? e.class,
|
|
@@ -4509,9 +4528,9 @@ var x = () => {
|
|
|
4509
4528
|
"className",
|
|
4510
4529
|
"interactive",
|
|
4511
4530
|
"id"
|
|
4512
|
-
]))), 128)) : h(s.$slots, "default", { key: 1 })], 10,
|
|
4531
|
+
]))), 128)) : h(s.$slots, "default", { key: 1 })], 10, Yr));
|
|
4513
4532
|
}
|
|
4514
|
-
}),
|
|
4533
|
+
}), Zr = ["id"], Qr = /* @__PURE__ */ s({
|
|
4515
4534
|
name: "DBTableHead",
|
|
4516
4535
|
__name: "table-head",
|
|
4517
4536
|
props: {
|
|
@@ -4536,7 +4555,7 @@ var x = () => {
|
|
|
4536
4555
|
ref: o,
|
|
4537
4556
|
id: n.id,
|
|
4538
4557
|
class: c(_(C)("db-table-head", a.class))
|
|
4539
|
-
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(
|
|
4558
|
+
}, [n.rows ? (f(!0), r(e, { key: 0 }, m(n.rows, (e, r) => (f(), t(Kr, {
|
|
4540
4559
|
key: `${e.id ?? n.id ?? _(i)}-table-head-row-${r}`,
|
|
4541
4560
|
cells: s(e.cells),
|
|
4542
4561
|
className: e.className ?? e.class,
|
|
@@ -4549,9 +4568,9 @@ var x = () => {
|
|
|
4549
4568
|
"subHeaderEmphasis",
|
|
4550
4569
|
"interactive",
|
|
4551
4570
|
"id"
|
|
4552
|
-
]))), 128)) : h(l.$slots, "default", { key: 1 })], 10,
|
|
4571
|
+
]))), 128)) : h(l.$slots, "default", { key: 1 })], 10, Zr));
|
|
4553
4572
|
}
|
|
4554
|
-
}),
|
|
4573
|
+
}), $r = [
|
|
4555
4574
|
"data-width",
|
|
4556
4575
|
"data-size",
|
|
4557
4576
|
"data-divider",
|
|
@@ -4559,7 +4578,7 @@ var x = () => {
|
|
|
4559
4578
|
"data-mobile-variant",
|
|
4560
4579
|
"data-show-caption",
|
|
4561
4580
|
"data-sticky-header"
|
|
4562
|
-
],
|
|
4581
|
+
], ei = ["id"], ti = { key: 0 }, ni = /* @__PURE__ */ s({
|
|
4563
4582
|
name: "DBTable",
|
|
4564
4583
|
__name: "table",
|
|
4565
4584
|
props: {
|
|
@@ -4646,22 +4665,22 @@ var x = () => {
|
|
|
4646
4665
|
ref_key: "_ref",
|
|
4647
4666
|
ref: d,
|
|
4648
4667
|
id: a.id
|
|
4649
|
-
}, [a.captionPlain ? (f(), r("caption",
|
|
4650
|
-
s.value?.header ? (f(), t(
|
|
4668
|
+
}, [a.captionPlain ? (f(), r("caption", ti, g(a.captionPlain), 1)) : h(p.$slots, "caption", { key: 1 }), s.value ? (f(), r(e, { key: 2 }, [
|
|
4669
|
+
s.value?.header ? (f(), t(Qr, {
|
|
4651
4670
|
key: 0,
|
|
4652
4671
|
rows: s.value?.header
|
|
4653
4672
|
}, null, 8, ["rows"])) : n("", !0),
|
|
4654
|
-
s.value?.body ? (f(), t(
|
|
4673
|
+
s.value?.body ? (f(), t(Jr, {
|
|
4655
4674
|
key: 1,
|
|
4656
4675
|
rows: s.value?.body
|
|
4657
4676
|
}, null, 8, ["rows"])) : n("", !0),
|
|
4658
|
-
s.value?.footer ? (f(), t(
|
|
4677
|
+
s.value?.footer ? (f(), t(Xr, {
|
|
4659
4678
|
key: 2,
|
|
4660
4679
|
rows: s.value?.footer
|
|
4661
4680
|
}, null, 8, ["rows"])) : n("", !0)
|
|
4662
|
-
], 64)) : h(p.$slots, "default", { key: 3 })], 8,
|
|
4681
|
+
], 64)) : h(p.$slots, "default", { key: 3 })], 8, ei)], 14, $r));
|
|
4663
4682
|
}
|
|
4664
|
-
}),
|
|
4683
|
+
}), ri = ["id"], ii = /* @__PURE__ */ s({
|
|
4665
4684
|
name: "DBTableCaption",
|
|
4666
4685
|
__name: "table-caption",
|
|
4667
4686
|
props: {
|
|
@@ -4679,48 +4698,48 @@ var x = () => {
|
|
|
4679
4698
|
ref: n,
|
|
4680
4699
|
id: e.id,
|
|
4681
4700
|
class: c(_(C)("db-table-caption", t.class))
|
|
4682
|
-
}, [h(i.$slots, "default")], 10,
|
|
4701
|
+
}, [h(i.$slots, "default")], 10, ri));
|
|
4683
4702
|
}
|
|
4684
|
-
}),
|
|
4703
|
+
}), ai = [
|
|
4685
4704
|
"row",
|
|
4686
4705
|
"col",
|
|
4687
4706
|
"rowgroup",
|
|
4688
4707
|
"colgroup"
|
|
4689
|
-
],
|
|
4708
|
+
], oi = [
|
|
4690
4709
|
"none",
|
|
4691
4710
|
"weak",
|
|
4692
4711
|
"strong"
|
|
4693
|
-
],
|
|
4712
|
+
], si = [
|
|
4694
4713
|
"x-small",
|
|
4695
4714
|
"small",
|
|
4696
4715
|
"medium",
|
|
4697
4716
|
"large"
|
|
4698
|
-
],
|
|
4717
|
+
], ci = [
|
|
4699
4718
|
"flat",
|
|
4700
4719
|
"zebra",
|
|
4701
4720
|
"spaced"
|
|
4702
|
-
],
|
|
4721
|
+
], li = [
|
|
4703
4722
|
"none",
|
|
4704
4723
|
"both",
|
|
4705
4724
|
"horizontal",
|
|
4706
4725
|
"vertical"
|
|
4707
|
-
],
|
|
4726
|
+
], ui = ["table", "list"], di = [
|
|
4708
4727
|
"none",
|
|
4709
4728
|
"both",
|
|
4710
4729
|
"horizontal",
|
|
4711
4730
|
"vertical"
|
|
4712
|
-
],
|
|
4731
|
+
], fi = [
|
|
4713
4732
|
"auto",
|
|
4714
4733
|
"1fr",
|
|
4715
4734
|
"min-content",
|
|
4716
4735
|
"max-content"
|
|
4717
|
-
],
|
|
4736
|
+
], pi = [
|
|
4718
4737
|
"id",
|
|
4719
4738
|
"data-orientation",
|
|
4720
4739
|
"data-scroll-behavior",
|
|
4721
4740
|
"data-alignment",
|
|
4722
4741
|
"data-width"
|
|
4723
|
-
],
|
|
4742
|
+
], mi = /* @__PURE__ */ s({
|
|
4724
4743
|
name: "DBTabs",
|
|
4725
4744
|
__name: "tabs",
|
|
4726
4745
|
props: {
|
|
@@ -4871,8 +4890,8 @@ var x = () => {
|
|
|
4871
4890
|
default: b(() => [...u[2] ||= [a(" Scroll left ", -1)]]),
|
|
4872
4891
|
_: 1
|
|
4873
4892
|
}, 8, ["onClick"])) : n("", !0),
|
|
4874
|
-
i.tabs ? (f(), r(e, { key: 1 }, [o(
|
|
4875
|
-
default: b(() => [(f(!0), r(e, null, m(k(), (e, n) => (f(), t(
|
|
4893
|
+
i.tabs ? (f(), r(e, { key: 1 }, [o(Rr, null, {
|
|
4894
|
+
default: b(() => [(f(!0), r(e, null, m(k(), (e, n) => (f(), t(Fr, {
|
|
4876
4895
|
key: i.name + "tab-item" + n,
|
|
4877
4896
|
active: e.active,
|
|
4878
4897
|
label: e.label,
|
|
@@ -4887,7 +4906,7 @@ var x = () => {
|
|
|
4887
4906
|
"noText"
|
|
4888
4907
|
]))), 128))]),
|
|
4889
4908
|
_: 1
|
|
4890
|
-
}), (f(!0), r(e, null, m(k(), (e, n) => (f(), t(
|
|
4909
|
+
}), (f(!0), r(e, null, m(k(), (e, n) => (f(), t(Br, {
|
|
4891
4910
|
key: i.name + "tab-panel" + n,
|
|
4892
4911
|
content: e.content
|
|
4893
4912
|
}, {
|
|
@@ -4907,13 +4926,13 @@ var x = () => {
|
|
|
4907
4926
|
_: 1
|
|
4908
4927
|
}, 8, ["onClick"])) : n("", !0),
|
|
4909
4928
|
h(s.$slots, "default")
|
|
4910
|
-
], 42,
|
|
4929
|
+
], 42, pi));
|
|
4911
4930
|
}
|
|
4912
|
-
}),
|
|
4931
|
+
}), hi = ["scrollbar", "arrows"], gi = ["auto", "manually"], _i = ["static", "removable"], vi = [
|
|
4913
4932
|
"data-variant",
|
|
4914
4933
|
"data-hide-asterisk",
|
|
4915
4934
|
"data-hide-label"
|
|
4916
|
-
],
|
|
4935
|
+
], yi = ["for"], bi = [
|
|
4917
4936
|
"aria-invalid",
|
|
4918
4937
|
"data-custom-validity",
|
|
4919
4938
|
"data-field-sizing",
|
|
@@ -4935,10 +4954,10 @@ var x = () => {
|
|
|
4935
4954
|
"placeholder",
|
|
4936
4955
|
"rows",
|
|
4937
4956
|
"cols"
|
|
4938
|
-
],
|
|
4957
|
+
], xi = {
|
|
4939
4958
|
"data-visually-hidden": "true",
|
|
4940
4959
|
role: "status"
|
|
4941
|
-
},
|
|
4960
|
+
}, Si = /* @__PURE__ */ s({
|
|
4942
4961
|
name: "DBTextarea",
|
|
4943
4962
|
__name: "textarea",
|
|
4944
4963
|
props: {
|
|
@@ -5102,7 +5121,7 @@ var x = () => {
|
|
|
5102
5121
|
"data-hide-asterisk": _(F)(e.showRequiredAsterisk),
|
|
5103
5122
|
"data-hide-label": _(F)(e.showLabel)
|
|
5104
5123
|
}, [
|
|
5105
|
-
i("label", { for: x.value }, g(e.label ?? _("LABEL SHOULD BE SET")), 9,
|
|
5124
|
+
i("label", { for: x.value }, g(e.label ?? _("LABEL SHOULD BE SET")), 9, yi),
|
|
5106
5125
|
i("textarea", {
|
|
5107
5126
|
"aria-invalid": e.validation === "invalid",
|
|
5108
5127
|
"data-custom-validity": e.validation,
|
|
@@ -5131,7 +5150,7 @@ var x = () => {
|
|
|
5131
5150
|
placeholder: e.placeholder ?? _(" "),
|
|
5132
5151
|
rows: _(j)(e.rows, _(4)),
|
|
5133
5152
|
cols: _(j)(e.cols)
|
|
5134
|
-
}, g(e.value), 41,
|
|
5153
|
+
}, g(e.value), 41, bi),
|
|
5135
5154
|
_(I)(e.message, e.showMessage) ? (f(), t($, {
|
|
5136
5155
|
key: 0,
|
|
5137
5156
|
size: "small",
|
|
@@ -5158,50 +5177,50 @@ var x = () => {
|
|
|
5158
5177
|
default: b(() => [a(g(D.value), 1)]),
|
|
5159
5178
|
_: 1
|
|
5160
5179
|
}, 8, ["id"]),
|
|
5161
|
-
i("span",
|
|
5162
|
-
], 10,
|
|
5180
|
+
i("span", xi, g(N.value), 1)
|
|
5181
|
+
], 10, vi));
|
|
5163
5182
|
}
|
|
5164
|
-
}),
|
|
5183
|
+
}), Ci = [
|
|
5165
5184
|
"none",
|
|
5166
5185
|
"both",
|
|
5167
5186
|
"horizontal",
|
|
5168
5187
|
"vertical"
|
|
5169
|
-
],
|
|
5188
|
+
], wi = [
|
|
5170
5189
|
"hard",
|
|
5171
5190
|
"soft",
|
|
5172
5191
|
"off"
|
|
5173
|
-
],
|
|
5192
|
+
], Ti = ["description", "label"], Ei = [
|
|
5174
5193
|
"adaptive",
|
|
5175
5194
|
"neutral",
|
|
5176
5195
|
"critical",
|
|
5177
5196
|
"informational",
|
|
5178
5197
|
"warning",
|
|
5179
5198
|
"successful"
|
|
5180
|
-
],
|
|
5199
|
+
], Di = [
|
|
5181
5200
|
"medium",
|
|
5182
5201
|
"small",
|
|
5183
5202
|
"large",
|
|
5184
5203
|
"none"
|
|
5185
|
-
],
|
|
5204
|
+
], Oi = [
|
|
5186
5205
|
"medium",
|
|
5187
5206
|
"small",
|
|
5188
5207
|
"large",
|
|
5189
5208
|
"none"
|
|
5190
|
-
],
|
|
5209
|
+
], ki = [
|
|
5191
5210
|
"left",
|
|
5192
5211
|
"right",
|
|
5193
5212
|
"left-start",
|
|
5194
5213
|
"left-end",
|
|
5195
5214
|
"right-start",
|
|
5196
5215
|
"right-end"
|
|
5197
|
-
],
|
|
5216
|
+
], Ai = [
|
|
5198
5217
|
"top",
|
|
5199
5218
|
"bottom",
|
|
5200
5219
|
"top-start",
|
|
5201
5220
|
"top-end",
|
|
5202
5221
|
"bottom-start",
|
|
5203
5222
|
"bottom-end"
|
|
5204
|
-
],
|
|
5223
|
+
], ji = [...ki, ...Ai], Mi = [
|
|
5205
5224
|
"none",
|
|
5206
5225
|
"3x-large",
|
|
5207
5226
|
"2x-large",
|
|
@@ -5212,25 +5231,25 @@ var x = () => {
|
|
|
5212
5231
|
"x-small",
|
|
5213
5232
|
"2x-small",
|
|
5214
5233
|
"3x-small"
|
|
5215
|
-
],
|
|
5234
|
+
], Ni = ["horizontal", "vertical"], Pi = ["full", "auto"], Fi = [
|
|
5216
5235
|
"full",
|
|
5217
5236
|
"medium",
|
|
5218
5237
|
"large",
|
|
5219
5238
|
"small"
|
|
5220
|
-
],
|
|
5239
|
+
], Ii = [
|
|
5221
5240
|
"none",
|
|
5222
5241
|
"slow",
|
|
5223
5242
|
"fast"
|
|
5224
|
-
],
|
|
5243
|
+
], Li = ["auto", "fixed"], Ri = ["small", "medium"], zi = ["weak", "strong"], Bi = [
|
|
5225
5244
|
"invalid",
|
|
5226
5245
|
"valid",
|
|
5227
5246
|
"no-validation"
|
|
5228
|
-
],
|
|
5247
|
+
], Vi = ["fixed", "content"], Hi = ["above", "floating"], Ui = ["leading", "trailing"], Wi = /* @__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("."), Gi = [
|
|
5229
5248
|
"_self",
|
|
5230
5249
|
"_blank",
|
|
5231
5250
|
"_parent",
|
|
5232
5251
|
"_top"
|
|
5233
|
-
],
|
|
5252
|
+
], Ki = [
|
|
5234
5253
|
"no-referrer",
|
|
5235
5254
|
"no-referrer-when-downgrade",
|
|
5236
5255
|
"origin",
|
|
@@ -5239,10 +5258,10 @@ var x = () => {
|
|
|
5239
5258
|
"strict-origin",
|
|
5240
5259
|
"strict-origin-when-cross-origin",
|
|
5241
5260
|
"unsafe-url"
|
|
5242
|
-
],
|
|
5261
|
+
], qi = [
|
|
5243
5262
|
"start",
|
|
5244
5263
|
"center",
|
|
5245
5264
|
"end"
|
|
5246
5265
|
];
|
|
5247
5266
|
//#endregion
|
|
5248
|
-
export { te as AccordionBehaviorList, G as AccordionVariantList,
|
|
5267
|
+
export { te as AccordionBehaviorList, G as AccordionVariantList, qi as AlignmentList, Wi as AutoCompleteList, Ne as BadgePlacementList, ze as ButtonTypeList, Re as ButtonVariantList, Z as COLOR, Se as COLORS, Ce as COLORS_SIMPLE, ye as COLOR_CONST, X as COLOR_SIMPLE, He as CardBehaviorList, Ue as CardElevationLevelList, Jt as CustomSelectDropdownWidthList, Zt as CustomSelectListItemTypeList, ee as DBAccordion, U as DBAccordionItem, Me as DBBadge, Fe as DBBrand, Le as DBButton, Ve as DBCard, Qe as DBCheckbox, et as DBCustomButton, qt as DBCustomSelect, ft as DBCustomSelectDropdown, Xt as DBCustomSelectFormField, bt as DBCustomSelectList, vt as DBCustomSelectListItem, en as DBDivider, ln as DBDrawer, kn as DBHeader, jn as DBIcon, $ as DBInfotext, Dt as DBInput, Fn as DBLink, Bn as DBNavigation, Gn as DBNavigationItem, Xn as DBNotification, tr as DBPage, or as DBPopover, lr as DBRadio, dr as DBSection, xr as DBSelect, Cr as DBStack, Mr as DBSwitch, Fr as DBTabItem, Rr as DBTabList, Br as DBTabPanel, ni as DBTable, Jr as DBTableBody, ii as DBTableCaption, fi as DBTableColumnsSizeList, Hr as DBTableDataCell, li as DBTableDividerList, Xr as DBTableFooter, Qr as DBTableHead, Wr as DBTableHeaderCell, ai as DBTableHeaderCellScopeList, ui as DBTableMobileVariantList, Kr as DBTableRow, si as DBTableRowSizeList, oi as DBTableRowSubHeaderEmphasisList, di as DBTableStickyHeaderList, ci as DBTableVariantList, mi as DBTabs, jt as DBTag, Si as DBTextarea, kt as DBTooltip, ke as DB_UX_LOCAL_STORAGE_FRAMEWORK, Ae as DB_UX_LOCAL_STORAGE_MODE, fe as DEFAULT_BACK, me as DEFAULT_BURGER_MENU, _e as DEFAULT_CLOSE_BUTTON, le as DEFAULT_DATALIST_ID_SUFFIX, he as DEFAULT_ICON, ne as DEFAULT_ID, ue as DEFAULT_INVALID_MESSAGE, se as DEFAULT_INVALID_MESSAGE_ID_SUFFIX, K as DEFAULT_LABEL, ae as DEFAULT_LABEL_ID_SUFFIX, ie as DEFAULT_MESSAGE, q as DEFAULT_MESSAGE_ID_SUFFIX, re as DEFAULT_PLACEHOLDER, ce as DEFAULT_PLACEHOLDER_ID_SUFFIX, de as DEFAULT_REMOVE, ge as DEFAULT_ROWS, pe as DEFAULT_SELECTED, oe as DEFAULT_SELECT_ID_SUFFIX, Y as DEFAULT_VALID_MESSAGE, J as DEFAULT_VALID_MESSAGE_ID_SUFFIX, Ee as DEFAULT_VIEWPORT, xe as DENSITIES, be as DENSITY, ve as DENSITY_CONST, De as DESKTOP_VIEWPORT, tn as DividerMarginList, nn as DividerVariantList, tt as DocumentClickListener, nt as DocumentScrollListener, un as DrawerBackdropList, dn as DrawerDirectionList, pn as DrawerPositionList, fn as DrawerVariantList, zi as EmphasisList, Vi as FieldSizingList, Mi as GapSpacingList, Mn as IconWeightList, Nn as InputTypeList, Ui as LabelVariantHorizontalList, Hi as LabelVariantList, Rn as LinkContentList, Ki as LinkReferrerPolicyList, Ln as LinkSizeList, Gi as LinkTargetList, In as LinkVariantList, Oi as MarginList, Fi as MaxWidthList, hn as NavigationItemSafeTriangle, $n as NotificationAriaLiveList, Qn as NotificationLinkVariantList, Zn as NotificationVariantList, Ni as OrientationList, rr as PageDocumentOverflowList, nr as PageVariantList, ki as PlacementHorizontalList, ji as PlacementList, Ai as PlacementVerticalList, Ii as PopoverDelayList, Li as PopoverWidthList, we as SEMANTIC, Te as SEMANTICS, Qt as SelectedTypeList, Ei as SemanticList, Ri as SizeList, Di as SpacingList, Er as StackAlignmentList, Tr as StackDirectionList, Dr as StackJustifyContentList, wr as StackVariantList, Oe as TESTING_VIEWPORTS, hi as TabsBehaviorList, gi as TabsInitialSelectedModeList, _i as TagBehaviorList, Ci as TextareaResizeList, wi as TextareaWrapList, Ti as TooltipVariantList, Bi as ValidationList, Pi as WidthList, S as addAttributeToChildren, C as cls, O as delay, A as getBoolean, k as getBooleanAsString, ot as getFloatingProps, F as getHideProp, N as getInputValue, B as getNotificationRole, j as getNumber, R as getOptionKey, L as getSearchInput, M as getStep, it as handleDataOutside, at as handleFixedDropdown, ut as handleFixedPopover, E as hasVoiceOver, w as isArrayOfStrings, mn as isEventTargetNavigationItem, D as isIOSSafari, z as isKeyboardEvent, I as stringPropVisible, x as uuid };
|