comand-component-library 4.2.94 → 4.2.96
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/comand-component-library.js +951 -905
- package/package.json +1 -1
- package/src/ComponentLibrary.vue +12 -2
- package/src/assets/data/multistep-form-wrapper-page-1.json +1 -2
- package/src/components/CmdForm.vue +6 -0
- package/src/components/CmdMultistepFormWrapper.vue +31 -3
- package/src/mixins/CmdMultistepFormWrapper/DefaultMessageProperties.js +9 -0
|
@@ -249,33 +249,33 @@ function lo(e, t) {
|
|
|
249
249
|
height: n.height
|
|
250
250
|
};
|
|
251
251
|
let l = n.body;
|
|
252
|
-
[n, s].forEach((
|
|
253
|
-
const
|
|
254
|
-
let q =
|
|
255
|
-
O ? V ? q += 2 : (
|
|
252
|
+
[n, s].forEach((L) => {
|
|
253
|
+
const I = [], O = L.hFlip, V = L.vFlip;
|
|
254
|
+
let q = L.rotate;
|
|
255
|
+
O ? V ? q += 2 : (I.push(
|
|
256
256
|
"translate(" + (i.width + i.left).toString() + " " + (0 - i.top).toString() + ")"
|
|
257
|
-
),
|
|
257
|
+
), I.push("scale(-1 1)"), i.top = i.left = 0) : V && (I.push(
|
|
258
258
|
"translate(" + (0 - i.left).toString() + " " + (i.height + i.top).toString() + ")"
|
|
259
|
-
),
|
|
259
|
+
), I.push("scale(1 -1)"), i.top = i.left = 0);
|
|
260
260
|
let N;
|
|
261
261
|
switch (q < 0 && (q -= Math.floor(q / 4) * 4), q = q % 4, q) {
|
|
262
262
|
case 1:
|
|
263
|
-
N = i.height / 2 + i.top,
|
|
263
|
+
N = i.height / 2 + i.top, I.unshift(
|
|
264
264
|
"rotate(90 " + N.toString() + " " + N.toString() + ")"
|
|
265
265
|
);
|
|
266
266
|
break;
|
|
267
267
|
case 2:
|
|
268
|
-
|
|
268
|
+
I.unshift(
|
|
269
269
|
"rotate(180 " + (i.width / 2 + i.left).toString() + " " + (i.height / 2 + i.top).toString() + ")"
|
|
270
270
|
);
|
|
271
271
|
break;
|
|
272
272
|
case 3:
|
|
273
|
-
N = i.width / 2 + i.left,
|
|
273
|
+
N = i.width / 2 + i.left, I.unshift(
|
|
274
274
|
"rotate(-90 " + N.toString() + " " + N.toString() + ")"
|
|
275
275
|
);
|
|
276
276
|
break;
|
|
277
277
|
}
|
|
278
|
-
q % 2 === 1 && (i.left !== i.top && (N = i.left, i.left = i.top, i.top = N), i.width !== i.height && (N = i.width, i.width = i.height, i.height = N)),
|
|
278
|
+
q % 2 === 1 && (i.left !== i.top && (N = i.left, i.left = i.top, i.top = N), i.width !== i.height && (N = i.width, i.width = i.height, i.height = N)), I.length && (l = '<g transform="' + I.join(" ") + '">' + l + "</g>");
|
|
279
279
|
});
|
|
280
280
|
const d = s.width, c = s.height, u = i.width, h = i.height;
|
|
281
281
|
let p, b;
|
|
@@ -561,18 +561,18 @@ function So(e, t, n, s) {
|
|
|
561
561
|
} else
|
|
562
562
|
d = e.resources.slice(l).concat(e.resources.slice(0, l));
|
|
563
563
|
const c = Date.now();
|
|
564
|
-
let u = "pending", h = 0, p, b = null, S = [],
|
|
565
|
-
typeof s == "function" &&
|
|
566
|
-
function
|
|
564
|
+
let u = "pending", h = 0, p, b = null, S = [], L = [];
|
|
565
|
+
typeof s == "function" && L.push(s);
|
|
566
|
+
function I() {
|
|
567
567
|
b && (clearTimeout(b), b = null);
|
|
568
568
|
}
|
|
569
569
|
function O() {
|
|
570
|
-
u === "pending" && (u = "aborted"),
|
|
570
|
+
u === "pending" && (u = "aborted"), I(), S.forEach((H) => {
|
|
571
571
|
H.status === "pending" && (H.status = "aborted");
|
|
572
572
|
}), S = [];
|
|
573
573
|
}
|
|
574
574
|
function V(H, W) {
|
|
575
|
-
W && (
|
|
575
|
+
W && (L = []), typeof H == "function" && L.push(H);
|
|
576
576
|
}
|
|
577
577
|
function q() {
|
|
578
578
|
return {
|
|
@@ -586,7 +586,7 @@ function So(e, t, n, s) {
|
|
|
586
586
|
};
|
|
587
587
|
}
|
|
588
588
|
function N() {
|
|
589
|
-
u = "failed",
|
|
589
|
+
u = "failed", L.forEach((H) => {
|
|
590
590
|
H(void 0, p);
|
|
591
591
|
});
|
|
592
592
|
}
|
|
@@ -615,23 +615,23 @@ function So(e, t, n, s) {
|
|
|
615
615
|
p = se, S.length || (d.length ? ge() : N());
|
|
616
616
|
return;
|
|
617
617
|
}
|
|
618
|
-
if (
|
|
618
|
+
if (I(), j(), !e.random) {
|
|
619
619
|
const ee = e.resources.indexOf(H.resource);
|
|
620
620
|
ee !== -1 && ee !== e.index && (e.index = ee);
|
|
621
621
|
}
|
|
622
|
-
u = "completed",
|
|
622
|
+
u = "completed", L.forEach((ee) => {
|
|
623
623
|
ee(se);
|
|
624
624
|
});
|
|
625
625
|
}
|
|
626
626
|
function ge() {
|
|
627
627
|
if (u !== "pending")
|
|
628
628
|
return;
|
|
629
|
-
|
|
629
|
+
I();
|
|
630
630
|
const H = d.shift();
|
|
631
631
|
if (H === void 0) {
|
|
632
632
|
if (S.length) {
|
|
633
633
|
b = setTimeout(() => {
|
|
634
|
-
|
|
634
|
+
I(), u === "pending" && (j(), N());
|
|
635
635
|
}, e.timeout);
|
|
636
636
|
return;
|
|
637
637
|
}
|
|
@@ -914,8 +914,8 @@ const Mo = (e, t) => {
|
|
|
914
914
|
const b = i[h] || (i[h] = /* @__PURE__ */ Object.create(null));
|
|
915
915
|
b[p] || (b[p] = []);
|
|
916
916
|
}), s.pending.forEach((u) => {
|
|
917
|
-
const { provider: h, prefix: p, name: b } = u, S = be(h, p),
|
|
918
|
-
|
|
917
|
+
const { provider: h, prefix: p, name: b } = u, S = be(h, p), L = S.pendingIcons || (S.pendingIcons = /* @__PURE__ */ new Set());
|
|
918
|
+
L.has(b) || (L.add(b), i[h][p].push(b));
|
|
919
919
|
}), l.forEach((u) => {
|
|
920
920
|
const { provider: h, prefix: p } = u;
|
|
921
921
|
i[h][p].length && Po(u, i[h][p]);
|
|
@@ -1068,18 +1068,18 @@ const Tn = (e, t) => {
|
|
|
1068
1068
|
let O = 0, V = t.id;
|
|
1069
1069
|
return typeof V == "string" && (V = V.replace(/-/g, "_")), s.innerHTML = ro(u.body, V ? () => V + "ID" + O++ : "iconifyVue"), un("svg", s);
|
|
1070
1070
|
}
|
|
1071
|
-
const { body: p, width: b, height: S } = e,
|
|
1071
|
+
const { body: p, width: b, height: S } = e, L = i === "mask" || (i === "bg" ? !1 : p.indexOf("currentColor") !== -1), I = qo(p, {
|
|
1072
1072
|
...h,
|
|
1073
1073
|
width: b + "",
|
|
1074
1074
|
height: S + ""
|
|
1075
1075
|
});
|
|
1076
1076
|
return s.style = {
|
|
1077
1077
|
...l,
|
|
1078
|
-
"--svg": jo(
|
|
1078
|
+
"--svg": jo(I),
|
|
1079
1079
|
width: wn(h.width),
|
|
1080
1080
|
height: wn(h.height),
|
|
1081
1081
|
...No,
|
|
1082
|
-
...
|
|
1082
|
+
...L ? Lt : mi,
|
|
1083
1083
|
...c
|
|
1084
1084
|
}, un("span", s);
|
|
1085
1085
|
};
|
|
@@ -2012,7 +2012,7 @@ function _a(e, t, n, s, i, l) {
|
|
|
2012
2012
|
])
|
|
2013
2013
|
], 2)) : m("", !0);
|
|
2014
2014
|
}
|
|
2015
|
-
const pi = /* @__PURE__ */ B(wa, [["render", _a]]),
|
|
2015
|
+
const pi = /* @__PURE__ */ B(wa, [["render", _a]]), Q = {
|
|
2016
2016
|
props: {
|
|
2017
2017
|
/**
|
|
2018
2018
|
* Message properties for internationalization.
|
|
@@ -2071,7 +2071,7 @@ const pi = /* @__PURE__ */ B(wa, [["render", _a]]), X = {
|
|
|
2071
2071
|
}, La = {
|
|
2072
2072
|
name: "CmdListOfRequirements",
|
|
2073
2073
|
mixins: [
|
|
2074
|
-
|
|
2074
|
+
Q,
|
|
2075
2075
|
Oa
|
|
2076
2076
|
],
|
|
2077
2077
|
props: {
|
|
@@ -2321,7 +2321,7 @@ const zt = /* @__PURE__ */ B(Ma, [["render", Va]]), Wt = {
|
|
|
2321
2321
|
};
|
|
2322
2322
|
},
|
|
2323
2323
|
mixins: [
|
|
2324
|
-
|
|
2324
|
+
Q,
|
|
2325
2325
|
Aa
|
|
2326
2326
|
],
|
|
2327
2327
|
props: {
|
|
@@ -2642,7 +2642,7 @@ const Kt = {
|
|
|
2642
2642
|
inheritAttrs: !1,
|
|
2643
2643
|
name: "CmdFormElement",
|
|
2644
2644
|
mixins: [
|
|
2645
|
-
|
|
2645
|
+
Q,
|
|
2646
2646
|
Wt,
|
|
2647
2647
|
Gt,
|
|
2648
2648
|
tt,
|
|
@@ -4510,7 +4510,7 @@ const Yt = /* @__PURE__ */ B(pr, [["render", wr]]), Tr = {
|
|
|
4510
4510
|
name: "CmdFakeSelect",
|
|
4511
4511
|
inheritAttrs: !1,
|
|
4512
4512
|
mixins: [
|
|
4513
|
-
|
|
4513
|
+
Q,
|
|
4514
4514
|
Tr,
|
|
4515
4515
|
Gt,
|
|
4516
4516
|
tt,
|
|
@@ -5402,38 +5402,44 @@ function ud(e, t, n, s, i, l) {
|
|
|
5402
5402
|
class: b.htmlClass
|
|
5403
5403
|
}, { ref_for: !0 }, b, {
|
|
5404
5404
|
modelValue: i.formValues[b.name],
|
|
5405
|
-
"onUpdate:modelValue": (
|
|
5406
|
-
onValidationStatusChange: (
|
|
5405
|
+
"onUpdate:modelValue": (L) => i.formValues[b.name] = L,
|
|
5406
|
+
onValidationStatusChange: (L) => l.formElementHasError(L, b.name)
|
|
5407
5407
|
}), null, 16, ["class", "modelValue", "onUpdate:modelValue", "onValidationStatusChange"])) : m("", !0),
|
|
5408
5408
|
b.component === "CmdFakeSelect" ? (a(), C(h, T({
|
|
5409
5409
|
key: 1,
|
|
5410
5410
|
class: b.htmlClass
|
|
5411
5411
|
}, { ref_for: !0 }, b, {
|
|
5412
5412
|
modelValue: i.formValues[b.name],
|
|
5413
|
-
"onUpdate:modelValue": (
|
|
5413
|
+
"onUpdate:modelValue": (L) => i.formValues[b.name] = L
|
|
5414
5414
|
}), null, 16, ["class", "modelValue", "onUpdate:modelValue"])) : b.component === "CmdInputGroup" ? (a(), C(p, T({
|
|
5415
5415
|
key: 2,
|
|
5416
5416
|
class: b.htmlClass
|
|
5417
5417
|
}, { ref_for: !0 }, b, {
|
|
5418
5418
|
modelValue: i.formValues[b.name],
|
|
5419
|
-
"onUpdate:modelValue": (
|
|
5419
|
+
"onUpdate:modelValue": (L) => i.formValues[b.name] = L
|
|
5420
5420
|
}), null, 16, ["class", "modelValue", "onUpdate:modelValue"])) : b.component === "flexContainer" || b.component === "inputWrapper" ? (a(), r("div", {
|
|
5421
5421
|
key: 3,
|
|
5422
5422
|
class: x(b.component === "flexContainer" ? "flex-container" : "input-wrapper")
|
|
5423
5423
|
}, [
|
|
5424
|
-
(a(!0), r(w, null, P(b.formElements, (
|
|
5425
|
-
!
|
|
5426
|
-
key:
|
|
5427
|
-
class:
|
|
5428
|
-
}, { ref_for: !0 },
|
|
5429
|
-
modelValue: i.formValues[
|
|
5430
|
-
"onUpdate:modelValue": (O) => i.formValues[
|
|
5431
|
-
onValidationStatusChange: (O) => l.formElementHasError(O,
|
|
5432
|
-
}), null, 16, ["class", "modelValue", "onUpdate:modelValue", "onValidationStatusChange"])) :
|
|
5424
|
+
(a(!0), r(w, null, P(b.formElements, (L, I) => (a(), r(w, { key: I }, [
|
|
5425
|
+
!L.component || L.component === "CmdFormElement" ? (a(), C(u, T({
|
|
5426
|
+
key: I,
|
|
5427
|
+
class: L.htmlClass
|
|
5428
|
+
}, { ref_for: !0 }, L, {
|
|
5429
|
+
modelValue: i.formValues[L.name],
|
|
5430
|
+
"onUpdate:modelValue": (O) => i.formValues[L.name] = O,
|
|
5431
|
+
onValidationStatusChange: (O) => l.formElementHasError(O, L.name)
|
|
5432
|
+
}), null, 16, ["class", "modelValue", "onUpdate:modelValue", "onValidationStatusChange"])) : L.component === "CmdFakeSelect" ? (a(), C(h, T({
|
|
5433
5433
|
key: 1,
|
|
5434
|
-
|
|
5435
|
-
|
|
5436
|
-
|
|
5434
|
+
class: L.htmlClass
|
|
5435
|
+
}, { ref_for: !0 }, L, {
|
|
5436
|
+
modelValue: i.formValues[L.name],
|
|
5437
|
+
"onUpdate:modelValue": (O) => i.formValues[L.name] = O
|
|
5438
|
+
}), null, 16, ["class", "modelValue", "onUpdate:modelValue"])) : L.component === "CmdInputGroup" ? (a(), C(p, T({
|
|
5439
|
+
key: 2,
|
|
5440
|
+
modelValue: i.formValues[L.name],
|
|
5441
|
+
"onUpdate:modelValue": (O) => i.formValues[L.name] = O
|
|
5442
|
+
}, { ref_for: !0 }, L), null, 16, ["modelValue", "onUpdate:modelValue"])) : m("", !0)
|
|
5437
5443
|
], 64))), 128))
|
|
5438
5444
|
], 2)) : m("", !0)
|
|
5439
5445
|
], 64))), 128)),
|
|
@@ -5937,7 +5943,7 @@ const oe = /* @__PURE__ */ B(md, [["render", vd]]), kd = {
|
|
|
5937
5943
|
}
|
|
5938
5944
|
}, wd = {
|
|
5939
5945
|
name: "CmdSlideButton",
|
|
5940
|
-
mixins: [
|
|
5946
|
+
mixins: [Q, kd],
|
|
5941
5947
|
props: {
|
|
5942
5948
|
/**
|
|
5943
5949
|
* set slide-button-type
|
|
@@ -6017,7 +6023,7 @@ const nt = /* @__PURE__ */ B(wd, [["render", Sd]]), _d = {
|
|
|
6017
6023
|
name: "CmdThumbnailScroller",
|
|
6018
6024
|
emits: ["click"],
|
|
6019
6025
|
mixins: [
|
|
6020
|
-
|
|
6026
|
+
Q,
|
|
6021
6027
|
_d,
|
|
6022
6028
|
Z
|
|
6023
6029
|
],
|
|
@@ -6756,7 +6762,7 @@ function Qd(e, t, n, s, i, l) {
|
|
|
6756
6762
|
const Xd = /* @__PURE__ */ B(Md, [["render", Qd]]), $d = {
|
|
6757
6763
|
emits: ["submit"],
|
|
6758
6764
|
mixins: [
|
|
6759
|
-
|
|
6765
|
+
Q,
|
|
6760
6766
|
cd
|
|
6761
6767
|
],
|
|
6762
6768
|
inject: {
|
|
@@ -7911,21 +7917,21 @@ function Vu(e, t, n, s, i, l) {
|
|
|
7911
7917
|
default: v(() => [
|
|
7912
7918
|
n.listContentType === "links" ? D(e.$slots, "default", { key: 0 }, () => [
|
|
7913
7919
|
e.editModeContext ? (a(), r("li", Lu, [
|
|
7914
|
-
(a(!0), r(w, null, P(e.links, (
|
|
7915
|
-
key: "x" +
|
|
7920
|
+
(a(!0), r(w, null, P(e.links, (L, I) => (a(), C(u, {
|
|
7921
|
+
key: "x" + I,
|
|
7916
7922
|
class: "edit-items",
|
|
7917
7923
|
showComponentName: !1,
|
|
7918
7924
|
componentTag: "ul",
|
|
7919
7925
|
componentName: "CmdLinkItem",
|
|
7920
|
-
componentProps:
|
|
7926
|
+
componentProps: L,
|
|
7921
7927
|
allowedComponentTypes: [],
|
|
7922
|
-
componentPath: ["props", "links",
|
|
7928
|
+
componentPath: ["props", "links", I],
|
|
7923
7929
|
itemProvider: l.itemProvider
|
|
7924
7930
|
}, {
|
|
7925
7931
|
default: v(() => [
|
|
7926
7932
|
f(c, {
|
|
7927
|
-
class: x({ active: n.sectionAnchors && n.activeSection ===
|
|
7928
|
-
link:
|
|
7933
|
+
class: x({ active: n.sectionAnchors && n.activeSection === I }),
|
|
7934
|
+
link: L
|
|
7929
7935
|
}, null, 8, ["class", "link"])
|
|
7930
7936
|
]),
|
|
7931
7937
|
_: 2
|
|
@@ -7934,66 +7940,66 @@ function Vu(e, t, n, s, i, l) {
|
|
|
7934
7940
|
key: 0,
|
|
7935
7941
|
type: "button",
|
|
7936
7942
|
class: "button confirm small",
|
|
7937
|
-
onClick: t[1] || (t[1] = (...
|
|
7943
|
+
onClick: t[1] || (t[1] = (...L) => l.onAddItem && l.onAddItem(...L))
|
|
7938
7944
|
}, [...t[2] || (t[2] = [
|
|
7939
7945
|
o("span", { class: "icon-plus" }, null, -1),
|
|
7940
7946
|
o("span", null, "Add new entry", -1)
|
|
7941
7947
|
])])) : m("", !0)
|
|
7942
|
-
])) : (a(!0), r(w, { key: 0 }, P(n.items, (
|
|
7943
|
-
key:
|
|
7944
|
-
class: x({ active: n.sectionAnchors && n.activeSection ===
|
|
7945
|
-
link:
|
|
7948
|
+
])) : (a(!0), r(w, { key: 0 }, P(n.items, (L, I) => (a(), C(c, {
|
|
7949
|
+
key: I,
|
|
7950
|
+
class: x({ active: n.sectionAnchors && n.activeSection === I }),
|
|
7951
|
+
link: L,
|
|
7946
7952
|
onClick: t[0] || (t[0] = (O) => l.emitClick(O, e.linkType))
|
|
7947
7953
|
}, null, 8, ["class", "link"]))), 128))
|
|
7948
7954
|
]) : m("", !0),
|
|
7949
7955
|
n.listContentType === "images" ? D(e.$slots, "default", { key: 1 }, () => [
|
|
7950
|
-
(a(!0), r(w, null, P(n.items, (
|
|
7951
|
-
|
|
7956
|
+
(a(!0), r(w, null, P(n.items, (L, I) => (a(), r("li", { key: I }, [
|
|
7957
|
+
L.image.url ? (a(), r("a", {
|
|
7952
7958
|
key: 0,
|
|
7953
|
-
href:
|
|
7959
|
+
href: L.image.url
|
|
7954
7960
|
}, [
|
|
7955
|
-
f(h, T({ ref_for: !0 },
|
|
7961
|
+
f(h, T({ ref_for: !0 }, L), null, 16)
|
|
7956
7962
|
], 8, Iu)) : (a(), C(h, T({
|
|
7957
7963
|
key: 1,
|
|
7958
7964
|
ref_for: !0
|
|
7959
|
-
},
|
|
7965
|
+
}, L), null, 16))
|
|
7960
7966
|
]))), 128))
|
|
7961
7967
|
]) : m("", !0),
|
|
7962
7968
|
n.listContentType === "tags" ? D(e.$slots, "default", { key: 2 }, () => [
|
|
7963
|
-
(a(!0), r(w, null, P(i.listOfTagItems, (
|
|
7969
|
+
(a(!0), r(w, null, P(i.listOfTagItems, (L, I) => (a(), r("li", { key: I }, [
|
|
7964
7970
|
f(p, {
|
|
7965
|
-
tagText:
|
|
7971
|
+
tagText: L,
|
|
7966
7972
|
highlightLevel: n.highlightLevel,
|
|
7967
7973
|
removeTagByClick: n.removeTagByClick,
|
|
7968
|
-
onClick: k((O) => l.removeTag(e.event,
|
|
7974
|
+
onClick: k((O) => l.removeTag(e.event, I), ["prevent"])
|
|
7969
7975
|
}, null, 8, ["tagText", "highlightLevel", "removeTagByClick", "onClick"])
|
|
7970
7976
|
]))), 128))
|
|
7971
7977
|
]) : m("", !0)
|
|
7972
7978
|
]),
|
|
7973
7979
|
_: 3
|
|
7974
7980
|
}, 8, ["class"])) : (a(), r("dl", Bu, [
|
|
7975
|
-
(a(!0), r(w, null, P(n.items, (
|
|
7981
|
+
(a(!0), r(w, null, P(n.items, (L, I) => (a(), r(w, { key: I }, [
|
|
7976
7982
|
n.alignDescriptionTermRight ? m("", !0) : (a(), r("dt", Du, [
|
|
7977
|
-
|
|
7983
|
+
L.descriptionTerm?.cmdIcon?.iconClass ? (a(), C(b, T({
|
|
7978
7984
|
key: 0,
|
|
7979
7985
|
ref_for: !0
|
|
7980
|
-
},
|
|
7981
|
-
|
|
7986
|
+
}, L.descriptionTerm.cmdIcon), null, 16)) : m("", !0),
|
|
7987
|
+
L.descriptionTerm?.text ? (a(), r("span", Fu, g(L.descriptionTerm?.text), 1)) : m("", !0)
|
|
7982
7988
|
])),
|
|
7983
7989
|
o("dd", null, [
|
|
7984
|
-
|
|
7990
|
+
L.descriptionData.cmdLink !== void 0 ? (a(), C(S, T({
|
|
7985
7991
|
key: 0,
|
|
7986
7992
|
ref_for: !0
|
|
7987
|
-
},
|
|
7988
|
-
F(g(
|
|
7993
|
+
}, L.descriptionData.cmdLink), null, 16)) : (a(), r(w, { key: 1 }, [
|
|
7994
|
+
F(g(L.descriptionData.text), 1)
|
|
7989
7995
|
], 64))
|
|
7990
7996
|
]),
|
|
7991
7997
|
n.alignDescriptionTermRight ? (a(), r("dt", Pu, [
|
|
7992
|
-
|
|
7998
|
+
L.descriptionTerm?.cmdIcon?.iconClass ? (a(), C(b, T({
|
|
7993
7999
|
key: 0,
|
|
7994
8000
|
ref_for: !0
|
|
7995
|
-
},
|
|
7996
|
-
|
|
8001
|
+
}, L.descriptionTerm.cmdIcon), null, 16)) : m("", !0),
|
|
8002
|
+
L.descriptionTerm?.text ? (a(), r("span", Mu, g(L.descriptionTerm?.text), 1)) : m("", !0)
|
|
7997
8003
|
])) : m("", !0)
|
|
7998
8004
|
], 64))), 128))
|
|
7999
8005
|
]))
|
|
@@ -8031,7 +8037,7 @@ const Zt = /* @__PURE__ */ B(Ou, [["render", Vu]]), Au = {
|
|
|
8031
8037
|
}, Qt = {
|
|
8032
8038
|
name: "CmdBox",
|
|
8033
8039
|
mixins: [
|
|
8034
|
-
|
|
8040
|
+
Q,
|
|
8035
8041
|
Au,
|
|
8036
8042
|
Eu
|
|
8037
8043
|
],
|
|
@@ -9230,7 +9236,7 @@ const Wc = /* @__PURE__ */ B(Uc, [["render", zc]]), Gc = {
|
|
|
9230
9236
|
}
|
|
9231
9237
|
}, Kc = {
|
|
9232
9238
|
name: "CmdCookieDisclaimer",
|
|
9233
|
-
mixins: [
|
|
9239
|
+
mixins: [Q, Gc],
|
|
9234
9240
|
data() {
|
|
9235
9241
|
return {
|
|
9236
9242
|
showCookieDisclaimer: !0,
|
|
@@ -9691,7 +9697,7 @@ function _i() {
|
|
|
9691
9697
|
const Im = {
|
|
9692
9698
|
name: "CmdGoogleMaps",
|
|
9693
9699
|
mixins: [
|
|
9694
|
-
|
|
9700
|
+
Q,
|
|
9695
9701
|
Om
|
|
9696
9702
|
],
|
|
9697
9703
|
data() {
|
|
@@ -9951,8 +9957,8 @@ const Em = /* @__PURE__ */ B(Pm, [["render", Am]]), Hm = {
|
|
|
9951
9957
|
}
|
|
9952
9958
|
};
|
|
9953
9959
|
function Bn(e, t) {
|
|
9954
|
-
const n = e.$el.querySelector(".zoom-container"), s = n.querySelector("img"), i = e.$el.querySelector(".zoom-overlay"), l = t.target.getBoundingClientRect().width, d = t.target.getBoundingClientRect().height, c = s.getBoundingClientRect().width, u = s.getBoundingClientRect().height, h = t.pageX - t.target.getBoundingClientRect().x - window.scrollX, p = t.pageY - t.target.getBoundingClientRect().y - window.scrollY, b = Math.min(l, n.getBoundingClientRect().width / c * l), S = Math.min(d, n.getBoundingClientRect().height / u * d),
|
|
9955
|
-
i.style.left = `${
|
|
9960
|
+
const n = e.$el.querySelector(".zoom-container"), s = n.querySelector("img"), i = e.$el.querySelector(".zoom-overlay"), l = t.target.getBoundingClientRect().width, d = t.target.getBoundingClientRect().height, c = s.getBoundingClientRect().width, u = s.getBoundingClientRect().height, h = t.pageX - t.target.getBoundingClientRect().x - window.scrollX, p = t.pageY - t.target.getBoundingClientRect().y - window.scrollY, b = Math.min(l, n.getBoundingClientRect().width / c * l), S = Math.min(d, n.getBoundingClientRect().height / u * d), L = Dn(h - b / 2, 0, l - b), I = Dn(p - S / 2, 0, d - S), O = -(L * (c / l)), V = -(I * (u / d));
|
|
9961
|
+
i.style.left = `${L}px`, i.style.top = `${I}px`, i.style.width = `${b}px`, i.style.height = `${S}px`, i.style.display = "block", s.style.marginLeft = `${O}px`, s.style.marginTop = `${V}px`;
|
|
9956
9962
|
}
|
|
9957
9963
|
function Dn(e, t, n) {
|
|
9958
9964
|
return e < t ? t : e > n ? n : e;
|
|
@@ -10773,13 +10779,13 @@ function vp(e, t, n, s, i, l) {
|
|
|
10773
10779
|
key: 2,
|
|
10774
10780
|
"aria-expanded": i.openSubentry ? "true" : "false"
|
|
10775
10781
|
}, [
|
|
10776
|
-
(a(!0), r(w, null, P(p.subentries, (S,
|
|
10782
|
+
(a(!0), r(w, null, P(p.subentries, (S, L) => (a(), r("li", { key: L }, [
|
|
10777
10783
|
S.type === "href" ? (a(), r("a", {
|
|
10778
10784
|
key: 0,
|
|
10779
10785
|
href: S.path,
|
|
10780
10786
|
title: S.tooltip,
|
|
10781
10787
|
target: S.target,
|
|
10782
|
-
onClick: (
|
|
10788
|
+
onClick: (I) => l.executeLink(I, S)
|
|
10783
10789
|
}, [
|
|
10784
10790
|
S.iconClass ? (a(), C(d, {
|
|
10785
10791
|
key: 0,
|
|
@@ -10848,7 +10854,7 @@ const Li = /* @__PURE__ */ B(rp, [["render", vp]]), kp = {
|
|
|
10848
10854
|
}, wp = {
|
|
10849
10855
|
name: "CmdPagination",
|
|
10850
10856
|
mixins: [
|
|
10851
|
-
|
|
10857
|
+
Q,
|
|
10852
10858
|
kp
|
|
10853
10859
|
],
|
|
10854
10860
|
emits: ["click"],
|
|
@@ -11179,7 +11185,19 @@ function Hp(e, t, n, s, i, l) {
|
|
|
11179
11185
|
], 2);
|
|
11180
11186
|
}
|
|
11181
11187
|
const Bi = /* @__PURE__ */ B(Pp, [["render", Hp]]), qp = {
|
|
11188
|
+
data() {
|
|
11189
|
+
return {
|
|
11190
|
+
defaultMessageProperties: {
|
|
11191
|
+
"multistep_form_wrapper.system_message.please_enter_all_required_data_on_the_pages": "Please enter all required data on the pages:"
|
|
11192
|
+
}
|
|
11193
|
+
};
|
|
11194
|
+
}
|
|
11195
|
+
}, Rp = {
|
|
11182
11196
|
name: "CmdMultistepFormWrapper",
|
|
11197
|
+
mixins: [
|
|
11198
|
+
Q,
|
|
11199
|
+
qp
|
|
11200
|
+
],
|
|
11183
11201
|
data() {
|
|
11184
11202
|
return {
|
|
11185
11203
|
currentPage: 1,
|
|
@@ -11189,6 +11207,10 @@ const Bi = /* @__PURE__ */ B(Pp, [["render", Hp]]), qp = {
|
|
|
11189
11207
|
};
|
|
11190
11208
|
},
|
|
11191
11209
|
props: {
|
|
11210
|
+
defaultInputValues: {
|
|
11211
|
+
type: Object,
|
|
11212
|
+
required: !1
|
|
11213
|
+
},
|
|
11192
11214
|
requiredPages: {
|
|
11193
11215
|
type: Array,
|
|
11194
11216
|
default: []
|
|
@@ -11272,7 +11294,7 @@ const Bi = /* @__PURE__ */ B(Pp, [["render", Hp]]), qp = {
|
|
|
11272
11294
|
if (this.validationStatusForSteps.length > 0 || this.inputMade.length === 0)
|
|
11273
11295
|
return !0;
|
|
11274
11296
|
const e = new Set(this.requiredPages), t = new Set(this.inputMade);
|
|
11275
|
-
return
|
|
11297
|
+
return !e.isSubsetOf(t);
|
|
11276
11298
|
},
|
|
11277
11299
|
// check if a page ha
|
|
11278
11300
|
pageHasError() {
|
|
@@ -11330,11 +11352,24 @@ const Bi = /* @__PURE__ */ B(Pp, [["render", Hp]]), qp = {
|
|
|
11330
11352
|
}
|
|
11331
11353
|
};
|
|
11332
11354
|
}
|
|
11355
|
+
},
|
|
11356
|
+
watch: {
|
|
11357
|
+
defaultInputValues: {
|
|
11358
|
+
handler() {
|
|
11359
|
+
if (this.formData = {}, this.defaultInputValues)
|
|
11360
|
+
for (const e in this.defaultInputValues)
|
|
11361
|
+
this.formData[e] = {
|
|
11362
|
+
...this.defaultInputValues[e]
|
|
11363
|
+
};
|
|
11364
|
+
},
|
|
11365
|
+
immediate: !0,
|
|
11366
|
+
deep: !0
|
|
11367
|
+
}
|
|
11333
11368
|
}
|
|
11334
|
-
},
|
|
11335
|
-
function
|
|
11369
|
+
}, jp = { class: "cmd-multistepform-wrapper" }, Up = { class: "multistep-page-last" };
|
|
11370
|
+
function Np(e, t, n, s, i, l) {
|
|
11336
11371
|
const d = Bi, c = ve, u = Ii;
|
|
11337
|
-
return a(), r("div",
|
|
11372
|
+
return a(), r("div", jp, [
|
|
11338
11373
|
D(e.$slots, "progress-bar", {
|
|
11339
11374
|
setCurrentPage: l.setCurrentPage,
|
|
11340
11375
|
numberOfPages: l.numberOfPages
|
|
@@ -11366,13 +11401,13 @@ function Up(e, t, n, s, i, l) {
|
|
|
11366
11401
|
], 2)), [
|
|
11367
11402
|
[$, h === i.currentPage]
|
|
11368
11403
|
])), 128)),
|
|
11369
|
-
z(o("div",
|
|
11404
|
+
z(o("div", Up, [
|
|
11370
11405
|
l.pagesWithError.length ? (a(), C(c, {
|
|
11371
11406
|
key: 0,
|
|
11372
11407
|
validationStatus: "error"
|
|
11373
11408
|
}, {
|
|
11374
11409
|
default: v(() => [
|
|
11375
|
-
o("p", null, "
|
|
11410
|
+
o("p", null, g(e.getMessage("multistep_form_wrapper.system_message.please_enter_all_required_data_on_the_pages")) + " " + g(l.pagesWithError.join(", ")), 1)
|
|
11376
11411
|
]),
|
|
11377
11412
|
_: 1
|
|
11378
11413
|
})) : m("", !0),
|
|
@@ -11402,7 +11437,7 @@ function Up(e, t, n, s, i, l) {
|
|
|
11402
11437
|
])
|
|
11403
11438
|
]);
|
|
11404
11439
|
}
|
|
11405
|
-
const
|
|
11440
|
+
const zp = /* @__PURE__ */ B(Rp, [["render", Np]]), Wp = {
|
|
11406
11441
|
name: "CmdNewsletterSubscription",
|
|
11407
11442
|
emits: ["button-click"],
|
|
11408
11443
|
data() {
|
|
@@ -11551,10 +11586,10 @@ const Np = /* @__PURE__ */ B(qp, [["render", Up]]), zp = {
|
|
|
11551
11586
|
immediate: !0
|
|
11552
11587
|
}
|
|
11553
11588
|
}
|
|
11554
|
-
},
|
|
11555
|
-
function
|
|
11589
|
+
}, Gp = { class: "cmd-newsletter-subscription flex-container" }, Kp = { class: "button-wrapper" };
|
|
11590
|
+
function Yp(e, t, n, s, i, l) {
|
|
11556
11591
|
const d = Yt, c = K;
|
|
11557
|
-
return a(), r("fieldset",
|
|
11592
|
+
return a(), r("fieldset", Gp, [
|
|
11558
11593
|
o("legend", {
|
|
11559
11594
|
class: x({ hidden: !n.legend.show, "align-left": n.legend.align === "left" })
|
|
11560
11595
|
}, g(n.legend.text), 3),
|
|
@@ -11578,7 +11613,7 @@ function Kp(e, t, n, s, i, l) {
|
|
|
11578
11613
|
"onUpdate:modelValue": t[1] || (t[1] = (u) => l.email = u),
|
|
11579
11614
|
onValidationStatusChange: l.checkValidationStatus
|
|
11580
11615
|
}, null, 8, ["placeholder", "labelText", "required", "useCustomTooltip", "modelValue", "onValidationStatusChange"]),
|
|
11581
|
-
o("div",
|
|
11616
|
+
o("div", Kp, [
|
|
11582
11617
|
f(c, {
|
|
11583
11618
|
element: "button",
|
|
11584
11619
|
type: n.buttonType,
|
|
@@ -11590,7 +11625,7 @@ function Kp(e, t, n, s, i, l) {
|
|
|
11590
11625
|
])
|
|
11591
11626
|
]);
|
|
11592
11627
|
}
|
|
11593
|
-
const
|
|
11628
|
+
const Jp = /* @__PURE__ */ B(Wp, [["render", Yp]]);
|
|
11594
11629
|
function Fn(e, t, n, s = !0, i = !0) {
|
|
11595
11630
|
function l(d, c) {
|
|
11596
11631
|
return c && d < 10 ? "0" + d : d;
|
|
@@ -11603,7 +11638,7 @@ function Fn(e, t, n, s = !0, i = !0) {
|
|
|
11603
11638
|
return l(d, s) + e + l(c, !0) + t;
|
|
11604
11639
|
};
|
|
11605
11640
|
}
|
|
11606
|
-
const
|
|
11641
|
+
const Zp = {
|
|
11607
11642
|
name: "CmdOpeningHoursItem",
|
|
11608
11643
|
mixins: [Z],
|
|
11609
11644
|
data() {
|
|
@@ -11691,20 +11726,20 @@ const Jp = {
|
|
|
11691
11726
|
deep: !0
|
|
11692
11727
|
}
|
|
11693
11728
|
}
|
|
11694
|
-
},
|
|
11729
|
+
}, Qp = { class: "cmd-opening-hours-item" }, Xp = {
|
|
11695
11730
|
key: 0,
|
|
11696
11731
|
class: "am"
|
|
11697
|
-
},
|
|
11732
|
+
}, $p = {
|
|
11698
11733
|
key: 1,
|
|
11699
11734
|
class: "pm"
|
|
11700
|
-
},
|
|
11735
|
+
}, ef = { class: "flex-container flex-none" }, tf = { class: "flex-container flex-items-flex-none am-wrapper" }, nf = {
|
|
11701
11736
|
key: 1,
|
|
11702
11737
|
class: "input-wrapper"
|
|
11703
|
-
},
|
|
11738
|
+
}, lf = ["title"], of = { class: "flex-container flex-items-flex-none pm-wrapper" }, af = {
|
|
11704
11739
|
key: 1,
|
|
11705
11740
|
class: "input-wrapper"
|
|
11706
|
-
},
|
|
11707
|
-
function
|
|
11741
|
+
}, sf = ["title"];
|
|
11742
|
+
function rf(e, t, n, s, i, l) {
|
|
11708
11743
|
const d = K;
|
|
11709
11744
|
return e.editing ? (a(), r(w, { key: 1 }, [
|
|
11710
11745
|
o("dt", null, [
|
|
@@ -11719,8 +11754,8 @@ function sf(e, t, n, s, i, l) {
|
|
|
11719
11754
|
"onUpdate:modelValue": t[0] || (t[0] = (c) => i.editableDay.day = c)
|
|
11720
11755
|
}, null, 8, ["modelValue"])
|
|
11721
11756
|
]),
|
|
11722
|
-
o("dd",
|
|
11723
|
-
o("div",
|
|
11757
|
+
o("dd", ef, [
|
|
11758
|
+
o("div", tf, [
|
|
11724
11759
|
i.editableDay.amClosed ? (a(), C(d, {
|
|
11725
11760
|
key: 0,
|
|
11726
11761
|
element: "input",
|
|
@@ -11732,7 +11767,7 @@ function sf(e, t, n, s, i, l) {
|
|
|
11732
11767
|
modelValue: i.editableDay.amDisplayText,
|
|
11733
11768
|
"onUpdate:modelValue": t[1] || (t[1] = (c) => i.editableDay.amDisplayText = c)
|
|
11734
11769
|
}, null, 8, ["modelValue"])) : m("", !0),
|
|
11735
|
-
i.editableDay.amClosed ? m("", !0) : (a(), r("div",
|
|
11770
|
+
i.editableDay.amClosed ? m("", !0) : (a(), r("div", nf, [
|
|
11736
11771
|
f(d, {
|
|
11737
11772
|
element: "input",
|
|
11738
11773
|
type: "time",
|
|
@@ -11760,9 +11795,9 @@ function sf(e, t, n, s, i, l) {
|
|
|
11760
11795
|
onClick: t[4] || (t[4] = k((c) => l.toggleClosedStatus("am"), ["prevent"])),
|
|
11761
11796
|
title: i.editableDay.amClosed ? "Set to open" : "Set to closed",
|
|
11762
11797
|
class: x(i.editableDay.amClosed ? "icon-clock" : "icon-blocked")
|
|
11763
|
-
}, null, 10,
|
|
11798
|
+
}, null, 10, lf)
|
|
11764
11799
|
]),
|
|
11765
|
-
o("div",
|
|
11800
|
+
o("div", of, [
|
|
11766
11801
|
i.editableDay.pmClosed ? (a(), C(d, {
|
|
11767
11802
|
key: 0,
|
|
11768
11803
|
element: "input",
|
|
@@ -11774,7 +11809,7 @@ function sf(e, t, n, s, i, l) {
|
|
|
11774
11809
|
modelValue: i.editableDay.pmDisplayText,
|
|
11775
11810
|
"onUpdate:modelValue": t[5] || (t[5] = (c) => i.editableDay.pmDisplayText = c)
|
|
11776
11811
|
}, null, 8, ["modelValue"])) : m("", !0),
|
|
11777
|
-
i.editableDay.pmClosed ? m("", !0) : (a(), r("div",
|
|
11812
|
+
i.editableDay.pmClosed ? m("", !0) : (a(), r("div", af, [
|
|
11778
11813
|
f(d, {
|
|
11779
11814
|
element: "input",
|
|
11780
11815
|
type: "time",
|
|
@@ -11802,20 +11837,20 @@ function sf(e, t, n, s, i, l) {
|
|
|
11802
11837
|
onClick: t[8] || (t[8] = k((c) => l.toggleClosedStatus("pm"), ["prevent"])),
|
|
11803
11838
|
title: i.editableDay.pmClosed ? "Set to open" : "Set to closed",
|
|
11804
11839
|
class: x(i.editableDay.pmClosed ? "icon-clock" : "icon-blocked")
|
|
11805
|
-
}, null, 10,
|
|
11840
|
+
}, null, 10, sf)
|
|
11806
11841
|
])
|
|
11807
11842
|
])
|
|
11808
11843
|
], 64)) : (a(), r(w, { key: 0 }, [
|
|
11809
|
-
o("dt",
|
|
11844
|
+
o("dt", Qp, g(n.day.day), 1),
|
|
11810
11845
|
o("dd", null, [
|
|
11811
|
-
n.day.am ? (a(), r("span",
|
|
11846
|
+
n.day.am ? (a(), r("span", Xp, [
|
|
11812
11847
|
n.day.am.displayText ? (a(), r(w, { key: 0 }, [
|
|
11813
11848
|
F(g(n.day.am.displayText), 1)
|
|
11814
11849
|
], 64)) : (a(), r(w, { key: 1 }, [
|
|
11815
11850
|
F(g(l.getTime(n.day.am.fromTime, n.abbreviationTextAm)) + " " + g(n.separator) + " " + g(l.getTime(n.day.am.tillTime)), 1)
|
|
11816
11851
|
], 64))
|
|
11817
11852
|
])) : m("", !0),
|
|
11818
|
-
n.day.pm ? (a(), r("span",
|
|
11853
|
+
n.day.pm ? (a(), r("span", $p, [
|
|
11819
11854
|
n.day.pm.displayText ? (a(), r(w, { key: 0 }, [
|
|
11820
11855
|
F(g(n.day.pm.displayText), 1)
|
|
11821
11856
|
], 64)) : (a(), r(w, { key: 1 }, [
|
|
@@ -11825,20 +11860,20 @@ function sf(e, t, n, s, i, l) {
|
|
|
11825
11860
|
])
|
|
11826
11861
|
], 64));
|
|
11827
11862
|
}
|
|
11828
|
-
const
|
|
11829
|
-
function
|
|
11863
|
+
const df = /* @__PURE__ */ B(Zp, [["render", rf]]);
|
|
11864
|
+
function uf(e) {
|
|
11830
11865
|
return (t, n) => {
|
|
11831
11866
|
const s = /* @__PURE__ */ new Date();
|
|
11832
11867
|
return s.setHours(t, n, 0, 0), new Intl.DateTimeFormat(e, { timeStyle: "short" }).format(s);
|
|
11833
11868
|
};
|
|
11834
11869
|
}
|
|
11835
|
-
function
|
|
11870
|
+
function cf(e, t, n, s = !0) {
|
|
11836
11871
|
function i(l, d) {
|
|
11837
11872
|
return d && l < 10 ? "0" + l : l;
|
|
11838
11873
|
}
|
|
11839
11874
|
return (l, d) => i(l, s) + e + i(d, !0) + t;
|
|
11840
11875
|
}
|
|
11841
|
-
const
|
|
11876
|
+
const mf = {
|
|
11842
11877
|
name: "CmdOpeningHours",
|
|
11843
11878
|
mixins: [Z],
|
|
11844
11879
|
data() {
|
|
@@ -12072,7 +12107,7 @@ const cf = {
|
|
|
12072
12107
|
};
|
|
12073
12108
|
},
|
|
12074
12109
|
getTime(e) {
|
|
12075
|
-
return this.timeFormatter ? this.timeFormatter(e.hours, e.mins) :
|
|
12110
|
+
return this.timeFormatter ? this.timeFormatter(e.hours, e.mins) : cf(":", " hrs", "", !1)(e.hours, e.mins);
|
|
12076
12111
|
},
|
|
12077
12112
|
updateHandlerProvider() {
|
|
12078
12113
|
const e = this.textOpenModel, t = this.textClosedModel, n = this.textHolidaysModel, s = this.textMiscInfoModel;
|
|
@@ -12085,16 +12120,16 @@ const cf = {
|
|
|
12085
12120
|
});
|
|
12086
12121
|
}
|
|
12087
12122
|
}
|
|
12088
|
-
},
|
|
12123
|
+
}, pf = { class: "cmd-opening-hours" }, ff = {
|
|
12089
12124
|
key: 2,
|
|
12090
12125
|
class: "flex-container"
|
|
12091
|
-
},
|
|
12126
|
+
}, hf = { key: 3 }, gf = { class: "edit-mode-opening-hours-item" }, yf = { key: 5 }, bf = { key: 0 }, xf = { key: 1 }, Cf = {
|
|
12092
12127
|
key: 6,
|
|
12093
12128
|
class: "flex-container vertical"
|
|
12094
12129
|
};
|
|
12095
|
-
function
|
|
12096
|
-
const d = U, c = he, u = K, h =
|
|
12097
|
-
return a(), r("div",
|
|
12130
|
+
function vf(e, t, n, s, i, l) {
|
|
12131
|
+
const d = U, c = he, u = K, h = df, p = Ce;
|
|
12132
|
+
return a(), r("div", pf, [
|
|
12098
12133
|
n.cmdHeadline?.headlineText || e.editModeContext ? (a(), C(d, A(T({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
|
12099
12134
|
!e.editing && n.showOpenStatus ? (a(), r(w, { key: 1 }, [
|
|
12100
12135
|
n.cmdLink?.path ? (a(), C(c, T({
|
|
@@ -12111,7 +12146,7 @@ function Cf(e, t, n, s, i, l) {
|
|
|
12111
12146
|
key: 1,
|
|
12112
12147
|
class: x({ closed: l.isClosed })
|
|
12113
12148
|
}, g(l.textOpenClosed), 3))
|
|
12114
|
-
], 64)) : e.editing ? (a(), r("div",
|
|
12149
|
+
], 64)) : e.editing ? (a(), r("div", ff, [
|
|
12115
12150
|
f(u, {
|
|
12116
12151
|
element: "input",
|
|
12117
12152
|
type: "text",
|
|
@@ -12151,7 +12186,7 @@ function Cf(e, t, n, s, i, l) {
|
|
|
12151
12186
|
itemProvider: l.itemProvider
|
|
12152
12187
|
}, {
|
|
12153
12188
|
default: v(() => [
|
|
12154
|
-
o("dl",
|
|
12189
|
+
o("dl", gf, [
|
|
12155
12190
|
f(h, {
|
|
12156
12191
|
day: b,
|
|
12157
12192
|
separator: n.separator,
|
|
@@ -12163,7 +12198,7 @@ function Cf(e, t, n, s, i, l) {
|
|
|
12163
12198
|
]),
|
|
12164
12199
|
_: 2
|
|
12165
12200
|
}, 1032, ["componentProps", "componentPath", "itemProvider"]))), 128))
|
|
12166
|
-
], 64)) : (a(), r("dl",
|
|
12201
|
+
], 64)) : (a(), r("dl", hf, [
|
|
12167
12202
|
(a(!0), r(w, null, P(l.openingHoursFormatted, (b, S) => (a(), C(h, {
|
|
12168
12203
|
key: S,
|
|
12169
12204
|
day: b,
|
|
@@ -12173,13 +12208,13 @@ function Cf(e, t, n, s, i, l) {
|
|
|
12173
12208
|
use24HoursFormat: n.use24HoursFormat
|
|
12174
12209
|
}, null, 8, ["day", "separator", "abbreviationTextAm", "abbreviationTextPm", "use24HoursFormat"]))), 128))
|
|
12175
12210
|
])),
|
|
12176
|
-
!e.editing && (n.textHolidays || n.textMiscInfo) ? (a(), r("div",
|
|
12177
|
-
n.textHolidays ? (a(), r("p",
|
|
12211
|
+
!e.editing && (n.textHolidays || n.textMiscInfo) ? (a(), r("div", yf, [
|
|
12212
|
+
n.textHolidays ? (a(), r("p", bf, [
|
|
12178
12213
|
o("strong", null, g(n.textHolidays), 1)
|
|
12179
12214
|
])) : m("", !0),
|
|
12180
|
-
n.textMiscInfo ? (a(), r("p",
|
|
12215
|
+
n.textMiscInfo ? (a(), r("p", xf, g(n.textMiscInfo), 1)) : m("", !0)
|
|
12181
12216
|
])) : m("", !0),
|
|
12182
|
-
e.editing ? (a(), r("div",
|
|
12217
|
+
e.editing ? (a(), r("div", Cf, [
|
|
12183
12218
|
f(u, {
|
|
12184
12219
|
element: "input",
|
|
12185
12220
|
type: "text",
|
|
@@ -12201,7 +12236,7 @@ function Cf(e, t, n, s, i, l) {
|
|
|
12201
12236
|
])) : m("", !0)
|
|
12202
12237
|
]);
|
|
12203
12238
|
}
|
|
12204
|
-
const
|
|
12239
|
+
const kf = /* @__PURE__ */ B(mf, [["render", vf]]), wf = {
|
|
12205
12240
|
name: "CmdSocialNetworksItem",
|
|
12206
12241
|
data() {
|
|
12207
12242
|
return {
|
|
@@ -12300,10 +12335,10 @@ const vf = /* @__PURE__ */ B(cf, [["render", Cf]]), kf = {
|
|
|
12300
12335
|
});
|
|
12301
12336
|
}
|
|
12302
12337
|
}
|
|
12303
|
-
},
|
|
12304
|
-
function
|
|
12338
|
+
}, Tf = { class: "cmd-social-networks-item" }, Sf = ["href", "title"], _f = { key: 1 };
|
|
12339
|
+
function Of(e, t, n, s, i, l) {
|
|
12305
12340
|
const d = R;
|
|
12306
|
-
return a(), r("li",
|
|
12341
|
+
return a(), r("li", Tf, [
|
|
12307
12342
|
(a(), r("a", {
|
|
12308
12343
|
key: n.network.path,
|
|
12309
12344
|
class: x(["button", n.network.buttonClass, { disabled: n.userMustAcceptDataPrivacy && !n.dataPrivacyAccepted }, "text-align-" + n.buttonTextAlign]),
|
|
@@ -12317,11 +12352,11 @@ function _f(e, t, n, s, i, l) {
|
|
|
12317
12352
|
iconClass: n.network.iconClass,
|
|
12318
12353
|
type: n.network.iconType
|
|
12319
12354
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
|
12320
|
-
n.network.linkText ? (a(), r("span",
|
|
12321
|
-
], 10,
|
|
12355
|
+
n.network.linkText ? (a(), r("span", _f, g(n.network.linkText), 1)) : m("", !0)
|
|
12356
|
+
], 10, Sf))
|
|
12322
12357
|
]);
|
|
12323
12358
|
}
|
|
12324
|
-
const
|
|
12359
|
+
const Lf = /* @__PURE__ */ B(wf, [["render", Of]]), If = {
|
|
12325
12360
|
name: "CmdSocialNetworks",
|
|
12326
12361
|
mixins: [Z],
|
|
12327
12362
|
data() {
|
|
@@ -12482,8 +12517,8 @@ const Of = /* @__PURE__ */ B(kf, [["render", _f]]), Lf = {
|
|
|
12482
12517
|
}
|
|
12483
12518
|
}
|
|
12484
12519
|
};
|
|
12485
|
-
function
|
|
12486
|
-
const d = U, c = K, u =
|
|
12520
|
+
function Bf(e, t, n, s, i, l) {
|
|
12521
|
+
const d = U, c = K, u = Lf, h = Ce;
|
|
12487
12522
|
return a(), r("div", {
|
|
12488
12523
|
class: x(["cmd-social-networks", { stretch: n.stretchButtons }, l.alignment])
|
|
12489
12524
|
}, [
|
|
@@ -12539,7 +12574,7 @@ function If(e, t, n, s, i, l) {
|
|
|
12539
12574
|
])]))
|
|
12540
12575
|
], 2);
|
|
12541
12576
|
}
|
|
12542
|
-
const Di = /* @__PURE__ */ B(
|
|
12577
|
+
const Di = /* @__PURE__ */ B(If, [["render", Bf]]), Df = {
|
|
12543
12578
|
name: "CmdPageFooter",
|
|
12544
12579
|
props: {
|
|
12545
12580
|
/**
|
|
@@ -12625,8 +12660,8 @@ const Di = /* @__PURE__ */ B(Lf, [["render", If]]), Bf = {
|
|
|
12625
12660
|
});
|
|
12626
12661
|
}
|
|
12627
12662
|
}
|
|
12628
|
-
},
|
|
12629
|
-
function
|
|
12663
|
+
}, Ff = { class: "button-wrapper" }, Pf = ["title"], Mf = { key: 1 };
|
|
12664
|
+
function Vf(e, t, n, s, i, l) {
|
|
12630
12665
|
const d = Di;
|
|
12631
12666
|
return a(), r("footer", {
|
|
12632
12667
|
class: x(["cmd-page-footer flex-container", { "small-buttons": n.useSmallButtons }])
|
|
@@ -12637,7 +12672,7 @@ function Mf(e, t, n, s, i, l) {
|
|
|
12637
12672
|
]),
|
|
12638
12673
|
_: 3
|
|
12639
12674
|
}, 16)) : m("", !0),
|
|
12640
|
-
o("div",
|
|
12675
|
+
o("div", Ff, [
|
|
12641
12676
|
D(e.$slots, "default"),
|
|
12642
12677
|
l.buttonPrintViewOptions?.show ? (a(), r("button", {
|
|
12643
12678
|
key: 0,
|
|
@@ -12650,12 +12685,12 @@ function Mf(e, t, n, s, i, l) {
|
|
|
12650
12685
|
key: 0,
|
|
12651
12686
|
class: x(l.buttonPrintViewOptions.icon?.iconClass)
|
|
12652
12687
|
}, null, 2)) : m("", !0),
|
|
12653
|
-
l.buttonPrintViewOptions.text ? (a(), r("span",
|
|
12654
|
-
], 10,
|
|
12688
|
+
l.buttonPrintViewOptions.text ? (a(), r("span", Mf, g(l.buttonPrintViewOptions.text), 1)) : m("", !0)
|
|
12689
|
+
], 10, Pf)) : m("", !0)
|
|
12655
12690
|
])
|
|
12656
12691
|
], 2);
|
|
12657
12692
|
}
|
|
12658
|
-
const
|
|
12693
|
+
const Af = /* @__PURE__ */ B(Df, [["render", Vf]]), Ef = {
|
|
12659
12694
|
name: "CmdPageHeader",
|
|
12660
12695
|
props: {
|
|
12661
12696
|
/**
|
|
@@ -12673,24 +12708,24 @@ const Vf = /* @__PURE__ */ B(Bf, [["render", Mf]]), Af = {
|
|
|
12673
12708
|
required: !1
|
|
12674
12709
|
}
|
|
12675
12710
|
}
|
|
12676
|
-
},
|
|
12711
|
+
}, Hf = {
|
|
12677
12712
|
key: 0,
|
|
12678
12713
|
class: "cmd-page-header flex-container"
|
|
12679
|
-
},
|
|
12714
|
+
}, qf = {
|
|
12680
12715
|
key: 0,
|
|
12681
12716
|
class: "headline-wrapper flex-container vertical"
|
|
12682
12717
|
};
|
|
12683
|
-
function
|
|
12718
|
+
function Rf(e, t, n, s, i, l) {
|
|
12684
12719
|
const d = ki, c = U;
|
|
12685
|
-
return n.cmdBreadcrumbs || n.cmdHeadline || e.$slots.default ? (a(), r("header",
|
|
12686
|
-
n.cmdBreadcrumbs || n.cmdHeadline ? (a(), r("div",
|
|
12720
|
+
return n.cmdBreadcrumbs || n.cmdHeadline || e.$slots.default ? (a(), r("header", Hf, [
|
|
12721
|
+
n.cmdBreadcrumbs || n.cmdHeadline ? (a(), r("div", qf, [
|
|
12687
12722
|
n.cmdBreadcrumbs ? (a(), C(d, A(T({ key: 0 }, n.cmdBreadcrumbs)), null, 16)) : m("", !0),
|
|
12688
12723
|
n.cmdHeadline.headlineText ? (a(), C(c, A(T({ key: 1 }, n.cmdHeadline)), null, 16)) : m("", !0)
|
|
12689
12724
|
])) : m("", !0),
|
|
12690
12725
|
e.$slots.default ? D(e.$slots, "default", { key: 1 }) : m("", !0)
|
|
12691
12726
|
])) : m("", !0);
|
|
12692
12727
|
}
|
|
12693
|
-
const
|
|
12728
|
+
const jf = /* @__PURE__ */ B(Ef, [["render", Rf]]), Uf = {
|
|
12694
12729
|
name: "CmdProgressBar",
|
|
12695
12730
|
inheritAttrs: !1,
|
|
12696
12731
|
data() {
|
|
@@ -12732,8 +12767,8 @@ const Rf = /* @__PURE__ */ B(Af, [["render", qf]]), jf = {
|
|
|
12732
12767
|
required: !0
|
|
12733
12768
|
}
|
|
12734
12769
|
}
|
|
12735
|
-
},
|
|
12736
|
-
function
|
|
12770
|
+
}, Nf = ["for"], zf = { class: "progressbar" }, Wf = { key: 0 }, Gf = ["id", "value"];
|
|
12771
|
+
function Kf(e, t, n, s, i, l) {
|
|
12737
12772
|
return a(), r("label", {
|
|
12738
12773
|
class: "cmd-progressbar",
|
|
12739
12774
|
for: n.id
|
|
@@ -12741,16 +12776,16 @@ function Gf(e, t, n, s, i, l) {
|
|
|
12741
12776
|
o("span", {
|
|
12742
12777
|
class: x(["label-text", { hidden: !n.showLabel }])
|
|
12743
12778
|
}, g(n.labelText), 3),
|
|
12744
|
-
o("span",
|
|
12745
|
-
n.showLoadingStatus ? (a(), r("span",
|
|
12779
|
+
o("span", zf, [
|
|
12780
|
+
n.showLoadingStatus ? (a(), r("span", Wf, g(i.loadingStatus) + " %", 1)) : m("", !0),
|
|
12746
12781
|
o("progress", T(e.$attrs, {
|
|
12747
12782
|
id: n.id,
|
|
12748
12783
|
value: i.loadingStatus
|
|
12749
|
-
}), null, 16,
|
|
12784
|
+
}), null, 16, Gf)
|
|
12750
12785
|
])
|
|
12751
|
-
], 8,
|
|
12786
|
+
], 8, Nf);
|
|
12752
12787
|
}
|
|
12753
|
-
const
|
|
12788
|
+
const Yf = /* @__PURE__ */ B(Uf, [["render", Kf]]), Jf = {
|
|
12754
12789
|
name: "CmdSection",
|
|
12755
12790
|
props: {
|
|
12756
12791
|
/**
|
|
@@ -12801,8 +12836,8 @@ const Kf = /* @__PURE__ */ B(jf, [["render", Gf]]), Yf = {
|
|
|
12801
12836
|
};
|
|
12802
12837
|
}
|
|
12803
12838
|
}
|
|
12804
|
-
},
|
|
12805
|
-
function
|
|
12839
|
+
}, Zf = ["innerHTML"];
|
|
12840
|
+
function Qf(e, t, n, s, i, l) {
|
|
12806
12841
|
const d = U;
|
|
12807
12842
|
return a(), r("section", {
|
|
12808
12843
|
class: x(["cmd-section flex-container", { box: n.styleAsBox, vertical: n.orientation === "vertical" }])
|
|
@@ -12811,10 +12846,10 @@ function Zf(e, t, n, s, i, l) {
|
|
|
12811
12846
|
n.content && !n.useSlot ? (a(), r("div", {
|
|
12812
12847
|
key: 1,
|
|
12813
12848
|
innerHTML: n.content
|
|
12814
|
-
}, null, 8,
|
|
12849
|
+
}, null, 8, Zf)) : D(e.$slots, "default", { key: 2 })
|
|
12815
12850
|
], 2);
|
|
12816
12851
|
}
|
|
12817
|
-
const
|
|
12852
|
+
const Xf = /* @__PURE__ */ B(Jf, [["render", Qf]]), $f = {
|
|
12818
12853
|
name: "CmdSidebar",
|
|
12819
12854
|
data() {
|
|
12820
12855
|
return {
|
|
@@ -12881,26 +12916,26 @@ const Qf = /* @__PURE__ */ B(Yf, [["render", Zf]]), Xf = {
|
|
|
12881
12916
|
immediate: !0
|
|
12882
12917
|
}
|
|
12883
12918
|
}
|
|
12884
|
-
},
|
|
12919
|
+
}, eh = { class: "inner-sidebar-wrapper" }, th = {
|
|
12885
12920
|
key: 1,
|
|
12886
12921
|
class: "open-slot-wrapper"
|
|
12887
|
-
},
|
|
12922
|
+
}, nh = {
|
|
12888
12923
|
key: 2,
|
|
12889
12924
|
class: "closed-slot-wrapper"
|
|
12890
|
-
},
|
|
12891
|
-
function
|
|
12925
|
+
}, ih = ["title"];
|
|
12926
|
+
function lh(e, t, n, s, i, l) {
|
|
12892
12927
|
const d = U;
|
|
12893
12928
|
return a(), r("aside", {
|
|
12894
12929
|
class: x(["cmd-sidebar", l.wrapperClass, { box: n.styledAsBox, "collapse-to-right": !n.collapseToLeft }])
|
|
12895
12930
|
}, [
|
|
12896
|
-
o("div",
|
|
12931
|
+
o("div", eh, [
|
|
12897
12932
|
n.cmdHeadline?.headlineText && i.open ? (a(), C(d, T({ key: 0 }, n.cmdHeadline, {
|
|
12898
12933
|
headlineLevel: n.cmdHeadline.headlineLevel || 3,
|
|
12899
12934
|
class: "sidebar-main-headline"
|
|
12900
12935
|
}), null, 16, ["headlineLevel"])) : m("", !0),
|
|
12901
|
-
i.open ? (a(), r("div",
|
|
12936
|
+
i.open ? (a(), r("div", th, [
|
|
12902
12937
|
D(e.$slots, "open", { openBoxStatus: i.open })
|
|
12903
|
-
])) : (a(), r("div",
|
|
12938
|
+
])) : (a(), r("div", nh, [
|
|
12904
12939
|
D(e.$slots, "closed", { openBoxStatus: i.open })
|
|
12905
12940
|
]))
|
|
12906
12941
|
]),
|
|
@@ -12913,10 +12948,10 @@ function ih(e, t, n, s, i, l) {
|
|
|
12913
12948
|
o("span", {
|
|
12914
12949
|
class: x(l.iconClassOpenCollapse)
|
|
12915
12950
|
}, null, 2)
|
|
12916
|
-
], 8,
|
|
12951
|
+
], 8, ih)) : m("", !0)
|
|
12917
12952
|
], 2);
|
|
12918
12953
|
}
|
|
12919
|
-
const
|
|
12954
|
+
const oh = /* @__PURE__ */ B($f, [["render", lh]]), ah = {
|
|
12920
12955
|
name: "CmdSiteFooter",
|
|
12921
12956
|
props: {
|
|
12922
12957
|
/**
|
|
@@ -12932,9 +12967,9 @@ const lh = /* @__PURE__ */ B(Xf, [["render", ih]]), oh = {
|
|
|
12932
12967
|
}
|
|
12933
12968
|
}
|
|
12934
12969
|
}
|
|
12935
|
-
},
|
|
12936
|
-
function
|
|
12937
|
-
return a(), r("div",
|
|
12970
|
+
}, sh = { class: "cmd-site-footer site-footer" };
|
|
12971
|
+
function rh(e, t, n, s, i, l) {
|
|
12972
|
+
return a(), r("div", sh, [
|
|
12938
12973
|
o("footer", {
|
|
12939
12974
|
class: x(["flex-container", { vertical: n.orientation === "vertical" }])
|
|
12940
12975
|
}, [
|
|
@@ -12942,7 +12977,7 @@ function sh(e, t, n, s, i, l) {
|
|
|
12942
12977
|
], 2)
|
|
12943
12978
|
]);
|
|
12944
12979
|
}
|
|
12945
|
-
const
|
|
12980
|
+
const dh = /* @__PURE__ */ B(ah, [["render", rh]]), uh = {
|
|
12946
12981
|
name: "CmdSiteHeader",
|
|
12947
12982
|
emits: ["offcanvas"],
|
|
12948
12983
|
data() {
|
|
@@ -13039,11 +13074,11 @@ const rh = /* @__PURE__ */ B(oh, [["render", sh]]), dh = {
|
|
|
13039
13074
|
e.style.height = this.defaultLogoHeight;
|
|
13040
13075
|
}
|
|
13041
13076
|
}
|
|
13042
|
-
},
|
|
13077
|
+
}, ch = {
|
|
13043
13078
|
key: 0,
|
|
13044
13079
|
class: "top-header"
|
|
13045
13080
|
};
|
|
13046
|
-
function
|
|
13081
|
+
function mh(e, t, n, s, i, l) {
|
|
13047
13082
|
const d = wi, c = Li;
|
|
13048
13083
|
return a(), r("div", {
|
|
13049
13084
|
ref: "site-header",
|
|
@@ -13057,7 +13092,7 @@ function ch(e, t, n, s, i, l) {
|
|
|
13057
13092
|
]),
|
|
13058
13093
|
role: "banner"
|
|
13059
13094
|
}, [
|
|
13060
|
-
e.$slots.topheader ? (a(), r("div",
|
|
13095
|
+
e.$slots.topheader ? (a(), r("div", ch, [
|
|
13061
13096
|
D(e.$slots, "topheader")
|
|
13062
13097
|
])) : m("", !0),
|
|
13063
13098
|
o("header", {
|
|
@@ -13085,7 +13120,7 @@ function ch(e, t, n, s, i, l) {
|
|
|
13085
13120
|
}), null, 16, ["closeOffcanvas", "onOffcanvas"])) : m("", !0)
|
|
13086
13121
|
], 2);
|
|
13087
13122
|
}
|
|
13088
|
-
const
|
|
13123
|
+
const ph = /* @__PURE__ */ B(uh, [["render", mh]]), fh = {
|
|
13089
13124
|
data() {
|
|
13090
13125
|
return {
|
|
13091
13126
|
defaultMessageProperties: {
|
|
@@ -13094,7 +13129,7 @@ const mh = /* @__PURE__ */ B(dh, [["render", ch]]), ph = {
|
|
|
13094
13129
|
}
|
|
13095
13130
|
};
|
|
13096
13131
|
}
|
|
13097
|
-
},
|
|
13132
|
+
}, hh = {
|
|
13098
13133
|
emits: [
|
|
13099
13134
|
"search",
|
|
13100
13135
|
"update:modelValueInput1",
|
|
@@ -13103,7 +13138,7 @@ const mh = /* @__PURE__ */ B(dh, [["render", ch]]), ph = {
|
|
|
13103
13138
|
"update:modelValueSearchFilters"
|
|
13104
13139
|
],
|
|
13105
13140
|
name: "CmdBoxSiteSearch",
|
|
13106
|
-
mixins: [
|
|
13141
|
+
mixins: [Q, fh],
|
|
13107
13142
|
data() {
|
|
13108
13143
|
return {
|
|
13109
13144
|
showFilters: !1
|
|
@@ -13365,21 +13400,21 @@ const mh = /* @__PURE__ */ B(dh, [["render", ch]]), ph = {
|
|
|
13365
13400
|
deep: !0
|
|
13366
13401
|
}
|
|
13367
13402
|
}
|
|
13368
|
-
},
|
|
13403
|
+
}, gh = { class: "cmd-box-site-search flex-container" }, yh = { class: "flex-container align-bottom" }, bh = { class: "input-wrapper align-bottom" }, xh = { key: 0 }, Ch = { key: 1 }, vh = {
|
|
13369
13404
|
key: 0,
|
|
13370
13405
|
class: "flex-container flex-none",
|
|
13371
13406
|
role: "listbox",
|
|
13372
13407
|
"aria-expanded": "true"
|
|
13373
13408
|
};
|
|
13374
|
-
function
|
|
13409
|
+
function kh(e, t, n, s, i, l) {
|
|
13375
13410
|
const d = U, c = K, u = R, h = Jt, p = Ti;
|
|
13376
13411
|
return a(), r(w, null, [
|
|
13377
|
-
o("fieldset",
|
|
13412
|
+
o("fieldset", gh, [
|
|
13378
13413
|
o("legend", {
|
|
13379
13414
|
class: x({ hidden: !n.legend.show, "align-left": n.legend.align === "left" })
|
|
13380
13415
|
}, g(n.legend.text), 3),
|
|
13381
13416
|
n.cmdHeadline ? (a(), C(d, A(T({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
|
13382
|
-
o("div",
|
|
13417
|
+
o("div", yh, [
|
|
13383
13418
|
f(c, {
|
|
13384
13419
|
element: "input",
|
|
13385
13420
|
type: n.cmdFormElementInput1.type,
|
|
@@ -13391,7 +13426,7 @@ function vh(e, t, n, s, i, l) {
|
|
|
13391
13426
|
modelValue: l.searchValue1,
|
|
13392
13427
|
"onUpdate:modelValue": t[0] || (t[0] = (b) => l.searchValue1 = b)
|
|
13393
13428
|
}, null, 8, ["type", "show-label", "labelText", "placeholder", "required", "showSearchButton", "modelValue"]),
|
|
13394
|
-
o("div",
|
|
13429
|
+
o("div", bh, [
|
|
13395
13430
|
n.cmdFormElementInput2.show ? (a(), C(c, {
|
|
13396
13431
|
key: 0,
|
|
13397
13432
|
element: "input",
|
|
@@ -13430,11 +13465,11 @@ function vh(e, t, n, s, i, l) {
|
|
|
13430
13465
|
iconClass: i.showFilters ? n.cmdIcon?.showFilters?.iconClass : n.cmdIcon?.hideFilters?.iconClass,
|
|
13431
13466
|
type: i.showFilters ? n.cmdIcon?.showFilters?.iconType : n.cmdIcon?.hideFilters?.iconType
|
|
13432
13467
|
}, null, 8, ["iconClass", "type"]),
|
|
13433
|
-
i.showFilters ? (a(), r("span",
|
|
13468
|
+
i.showFilters ? (a(), r("span", xh, g(e.getMessage("site_search.hide_filter_options")), 1)) : (a(), r("span", Ch, g(e.getMessage("site_search.show_filter_options")), 1))
|
|
13434
13469
|
]),
|
|
13435
13470
|
f(pe, { name: n.transitionFilters }, {
|
|
13436
13471
|
default: v(() => [
|
|
13437
|
-
i.showFilters && n.cmdFakeSelect?.selectData.length ? (a(), r("div",
|
|
13472
|
+
i.showFilters && n.cmdFakeSelect?.selectData.length ? (a(), r("div", vh, [
|
|
13438
13473
|
f(h, {
|
|
13439
13474
|
role: "option",
|
|
13440
13475
|
selectData: n.cmdFakeSelect?.selectData,
|
|
@@ -13458,7 +13493,7 @@ function vh(e, t, n, s, i, l) {
|
|
|
13458
13493
|
}, null, 8, ["modelValue", "selectedOptionsName"])) : m("", !0)
|
|
13459
13494
|
], 64);
|
|
13460
13495
|
}
|
|
13461
|
-
const
|
|
13496
|
+
const wh = /* @__PURE__ */ B(hh, [["render", kh]]), Th = {
|
|
13462
13497
|
name: "CmdSlideshow",
|
|
13463
13498
|
mixins: [Z],
|
|
13464
13499
|
data() {
|
|
@@ -13649,11 +13684,11 @@ const kh = /* @__PURE__ */ B(fh, [["render", vh]]), wh = {
|
|
|
13649
13684
|
});
|
|
13650
13685
|
}
|
|
13651
13686
|
}
|
|
13652
|
-
},
|
|
13687
|
+
}, Sh = ["href", "title"], _h = { key: 2 }, Oh = ["onClick", "aria-label", "title"], Lh = {
|
|
13653
13688
|
key: 3,
|
|
13654
13689
|
class: "item-counter"
|
|
13655
13690
|
};
|
|
13656
|
-
function
|
|
13691
|
+
function Ih(e, t, n, s, i, l) {
|
|
13657
13692
|
const d = nt, c = oe;
|
|
13658
13693
|
return a(), r("div", {
|
|
13659
13694
|
class: x(["cmd-slideshow", { "full-width": i.fullWidth }])
|
|
@@ -13695,7 +13730,7 @@ function Lh(e, t, n, s, i, l) {
|
|
|
13695
13730
|
image: l.currentItem?.image,
|
|
13696
13731
|
figcaption: l.currentItem?.figcaption
|
|
13697
13732
|
}, null, 8, ["image", "figcaption"])
|
|
13698
|
-
], 8,
|
|
13733
|
+
], 8, Sh)) : (a(), C(c, {
|
|
13699
13734
|
key: 1,
|
|
13700
13735
|
image: l.currentItem?.image,
|
|
13701
13736
|
figcaption: l.currentItem?.figcaption
|
|
@@ -13719,7 +13754,7 @@ function Lh(e, t, n, s, i, l) {
|
|
|
13719
13754
|
onClick: k(l.showNextItem, ["prevent"]),
|
|
13720
13755
|
class: { disabled: i.slideshowItemEditing }
|
|
13721
13756
|
}, l.tooltipForSlidebuttons), null, 16, ["onClick", "class"])) : m("", !0),
|
|
13722
|
-
n.showQuickLinkIcons ? (a(), r("ol",
|
|
13757
|
+
n.showQuickLinkIcons ? (a(), r("ol", _h, [
|
|
13723
13758
|
(a(!0), r(w, null, P(n.slideshowItems, (u, h) => (a(), r("li", {
|
|
13724
13759
|
key: h,
|
|
13725
13760
|
class: x({ active: h === i.index })
|
|
@@ -13730,14 +13765,14 @@ function Lh(e, t, n, s, i, l) {
|
|
|
13730
13765
|
onClick: k((p) => l.showItem(h), ["prevent"]),
|
|
13731
13766
|
"aria-label": i.index,
|
|
13732
13767
|
title: i.slideshowItemEditing ? "Not allowed while editing!" : "Switch to image #" + (h + 1)
|
|
13733
|
-
}, null, 10,
|
|
13768
|
+
}, null, 10, Oh)
|
|
13734
13769
|
], 2))), 128))
|
|
13735
13770
|
])) : m("", !0),
|
|
13736
|
-
n.showCounter ? (a(), r("span",
|
|
13771
|
+
n.showCounter ? (a(), r("span", Lh, g(i.index + 1) + "/" + g(n.slideshowItems.length), 1)) : m("", !0)
|
|
13737
13772
|
], 32)
|
|
13738
13773
|
], 2);
|
|
13739
13774
|
}
|
|
13740
|
-
const
|
|
13775
|
+
const Bh = /* @__PURE__ */ B(Th, [["render", Ih]]), Dh = {
|
|
13741
13776
|
name: "CmdSmartSearch",
|
|
13742
13777
|
data() {
|
|
13743
13778
|
return {
|
|
@@ -13849,11 +13884,11 @@ const Ih = /* @__PURE__ */ B(wh, [["render", Lh]]), Bh = {
|
|
|
13849
13884
|
immediate: !0
|
|
13850
13885
|
}
|
|
13851
13886
|
}
|
|
13852
|
-
},
|
|
13887
|
+
}, Fh = {
|
|
13853
13888
|
key: 0,
|
|
13854
13889
|
class: "list-of-recommendations no-list-items"
|
|
13855
13890
|
};
|
|
13856
|
-
function
|
|
13891
|
+
function Ph(e, t, n, s, i, l) {
|
|
13857
13892
|
const d = K, c = he;
|
|
13858
13893
|
return a(), r("div", {
|
|
13859
13894
|
class: x(["cmd-smart-search", { open: i.showListOfRecommendations, "open-list-to-top": n.openListToTop }])
|
|
@@ -13868,7 +13903,7 @@ function Fh(e, t, n, s, i, l) {
|
|
|
13868
13903
|
l.showRecommendations
|
|
13869
13904
|
]
|
|
13870
13905
|
}), null, 16, ["modelValue", "onUpdate:modelValue"]),
|
|
13871
|
-
i.showListOfRecommendations ? (a(), r("ul",
|
|
13906
|
+
i.showListOfRecommendations ? (a(), r("ul", Fh, [
|
|
13872
13907
|
(a(!0), r(w, null, P(l.filteredListOfRecommendations, (u, h) => (a(), r("li", { key: h }, [
|
|
13873
13908
|
f(c, T({ ref_for: !0 }, l.linkItem(u), {
|
|
13874
13909
|
onClick: (p) => l.optionSelected(u)
|
|
@@ -13882,7 +13917,7 @@ function Fh(e, t, n, s, i, l) {
|
|
|
13882
13917
|
])) : m("", !0)
|
|
13883
13918
|
], 2);
|
|
13884
13919
|
}
|
|
13885
|
-
const
|
|
13920
|
+
const Mh = /* @__PURE__ */ B(Dh, [["render", Ph]]), Vh = {
|
|
13886
13921
|
name: "CmdSwitchLanguage",
|
|
13887
13922
|
emits: ["click"],
|
|
13888
13923
|
data() {
|
|
@@ -13927,10 +13962,10 @@ const Ph = /* @__PURE__ */ B(Bh, [["render", Fh]]), Mh = {
|
|
|
13927
13962
|
this.currentLanguage = e, document.documentElement.lang = e, this.$emit("click", { originalEvent: t, iso2: e });
|
|
13928
13963
|
}
|
|
13929
13964
|
}
|
|
13930
|
-
},
|
|
13931
|
-
function
|
|
13965
|
+
}, Ah = { class: "cmd-switch-language" }, Eh = ["href", "title", "onClick"], Hh = ["src", "alt"], qh = ["src", "alt"];
|
|
13966
|
+
function Rh(e, t, n, s, i, l) {
|
|
13932
13967
|
const d = de("router-link");
|
|
13933
|
-
return a(), r("div",
|
|
13968
|
+
return a(), r("div", Ah, [
|
|
13934
13969
|
o("ul", null, [
|
|
13935
13970
|
(a(!0), r(w, null, P(n.languages, (c, u) => (a(), r("li", { key: u }, [
|
|
13936
13971
|
c.link.type === "href" ? (a(), r("a", {
|
|
@@ -13943,8 +13978,8 @@ function qh(e, t, n, s, i, l) {
|
|
|
13943
13978
|
o("img", {
|
|
13944
13979
|
src: l.pathFlag(c.iso2),
|
|
13945
13980
|
alt: c.name
|
|
13946
|
-
}, null, 8,
|
|
13947
|
-
], 10,
|
|
13981
|
+
}, null, 8, Hh)
|
|
13982
|
+
], 10, Eh)) : (a(), C(d, {
|
|
13948
13983
|
key: 1,
|
|
13949
13984
|
to: l.getRoute(c),
|
|
13950
13985
|
class: x(["flag", c.iso2]),
|
|
@@ -13955,7 +13990,7 @@ function qh(e, t, n, s, i, l) {
|
|
|
13955
13990
|
o("img", {
|
|
13956
13991
|
src: l.pathFlag(c.iso2),
|
|
13957
13992
|
alt: c.name
|
|
13958
|
-
}, null, 8,
|
|
13993
|
+
}, null, 8, qh)
|
|
13959
13994
|
]),
|
|
13960
13995
|
_: 2
|
|
13961
13996
|
}, 1032, ["to", "class", "title", "onClick"]))
|
|
@@ -13963,7 +13998,7 @@ function qh(e, t, n, s, i, l) {
|
|
|
13963
13998
|
])
|
|
13964
13999
|
]);
|
|
13965
14000
|
}
|
|
13966
|
-
const
|
|
14001
|
+
const jh = /* @__PURE__ */ B(Vh, [["render", Rh]]), Uh = {
|
|
13967
14002
|
name: "CmdTable",
|
|
13968
14003
|
data() {
|
|
13969
14004
|
return {
|
|
@@ -14114,19 +14149,19 @@ const Rh = /* @__PURE__ */ B(Mh, [["render", qh]]), jh = {
|
|
|
14114
14149
|
immediate: !0
|
|
14115
14150
|
}
|
|
14116
14151
|
}
|
|
14117
|
-
},
|
|
14152
|
+
}, Nh = {
|
|
14118
14153
|
key: 0,
|
|
14119
14154
|
class: "button-wrapper"
|
|
14120
|
-
},
|
|
14155
|
+
}, zh = ["title"], Wh = ["title"], Gh = ["innerHTML"], Kh = { "aria-expanded": "true" }, Yh = ["innerHTML"], Jh = {
|
|
14121
14156
|
key: 0,
|
|
14122
14157
|
"aria-expanded": "true"
|
|
14123
|
-
},
|
|
14124
|
-
function
|
|
14158
|
+
}, Zh = ["innerHTML"];
|
|
14159
|
+
function Qh(e, t, n, s, i, l) {
|
|
14125
14160
|
const d = R, c = nt;
|
|
14126
14161
|
return a(), r("div", {
|
|
14127
14162
|
class: x(["cmd-table-wrapper", { collapsed: !i.showTableData, "full-width": i.fullWidth, "has-caption": l.hasCaption, "has-overflow": i.hasOverflow }])
|
|
14128
14163
|
}, [
|
|
14129
|
-
n.collapsible || n.userCanToggleWidth ? (a(), r("div",
|
|
14164
|
+
n.collapsible || n.userCanToggleWidth ? (a(), r("div", Nh, [
|
|
14130
14165
|
n.userCanToggleWidth ? (a(), r("a", {
|
|
14131
14166
|
key: 0,
|
|
14132
14167
|
class: "button",
|
|
@@ -14138,7 +14173,7 @@ function Zh(e, t, n, s, i, l) {
|
|
|
14138
14173
|
iconClass: n.iconToggleWidth.iconClass,
|
|
14139
14174
|
type: n.iconToggleWidth.iconType
|
|
14140
14175
|
}, null, 8, ["iconClass", "type"])
|
|
14141
|
-
], 8,
|
|
14176
|
+
], 8, zh)) : m("", !0),
|
|
14142
14177
|
n.collapsible ? (a(), r("a", {
|
|
14143
14178
|
key: 1,
|
|
14144
14179
|
class: "button",
|
|
@@ -14150,7 +14185,7 @@ function Zh(e, t, n, s, i, l) {
|
|
|
14150
14185
|
iconClass: i.showTableData ? n.iconCollapse.iconClass : n.iconExpand.iconClass,
|
|
14151
14186
|
type: i.showTableData ? n.iconCollapse.iconType : n.iconExpand.iconType
|
|
14152
14187
|
}, null, 8, ["iconClass", "type"])
|
|
14153
|
-
], 8,
|
|
14188
|
+
], 8, Wh)) : m("", !0)
|
|
14154
14189
|
])) : m("", !0),
|
|
14155
14190
|
o("div", {
|
|
14156
14191
|
class: "inner-wrapper",
|
|
@@ -14178,14 +14213,14 @@ function Zh(e, t, n, s, i, l) {
|
|
|
14178
14213
|
(a(!0), r(w, null, P(n.tableData.thead, (u, h) => (a(), r("th", {
|
|
14179
14214
|
key: h,
|
|
14180
14215
|
innerHTML: u
|
|
14181
|
-
}, null, 8,
|
|
14216
|
+
}, null, 8, Gh))), 128))
|
|
14182
14217
|
])
|
|
14183
14218
|
])
|
|
14184
14219
|
]),
|
|
14185
14220
|
f(pe, { name: n.transition }, {
|
|
14186
14221
|
default: v(() => [
|
|
14187
14222
|
D(e.$slots, "table-body", {}, () => [
|
|
14188
|
-
z(o("tbody",
|
|
14223
|
+
z(o("tbody", Kh, [
|
|
14189
14224
|
(a(!0), r(w, null, P(n.tableData.tbody, (u, h) => (a(), r("tr", {
|
|
14190
14225
|
class: x({ active: n.tableData.rowIndexHighlighted === h }),
|
|
14191
14226
|
key: h
|
|
@@ -14194,7 +14229,7 @@ function Zh(e, t, n, s, i, l) {
|
|
|
14194
14229
|
class: x({ active: n.tableData.columnIndexHighlighted === b }),
|
|
14195
14230
|
key: b,
|
|
14196
14231
|
innerHTML: p
|
|
14197
|
-
}, null, 10,
|
|
14232
|
+
}, null, 10, Yh))), 128))
|
|
14198
14233
|
], 2))), 128))
|
|
14199
14234
|
], 512), [
|
|
14200
14235
|
[$, i.showTableData]
|
|
@@ -14206,13 +14241,13 @@ function Zh(e, t, n, s, i, l) {
|
|
|
14206
14241
|
f(pe, { name: n.transition }, {
|
|
14207
14242
|
default: v(() => [
|
|
14208
14243
|
D(e.$slots, "table-foot", {}, () => [
|
|
14209
|
-
n.tableData.tfoot && n.tableData.tfoot.length && i.showTableData ? (a(), r("tfoot",
|
|
14244
|
+
n.tableData.tfoot && n.tableData.tfoot.length && i.showTableData ? (a(), r("tfoot", Jh, [
|
|
14210
14245
|
o("tr", null, [
|
|
14211
14246
|
(a(!0), r(w, null, P(n.tableData.tfoot, (u, h) => (a(), r("td", {
|
|
14212
14247
|
class: x({ active: n.tableData.columnIndexHighlighted === h }),
|
|
14213
14248
|
key: h,
|
|
14214
14249
|
innerHTML: u
|
|
14215
|
-
}, null, 10,
|
|
14250
|
+
}, null, 10, Zh))), 128))
|
|
14216
14251
|
])
|
|
14217
14252
|
])) : m("", !0)
|
|
14218
14253
|
])
|
|
@@ -14227,17 +14262,17 @@ function Zh(e, t, n, s, i, l) {
|
|
|
14227
14262
|
], 544)
|
|
14228
14263
|
], 2);
|
|
14229
14264
|
}
|
|
14230
|
-
const
|
|
14265
|
+
const Xh = /* @__PURE__ */ B(Uh, [["render", Qh]]), $h = "cmd", eg = { "3d-cursor": { body: '<path d="M13 4H4v9.01h2V6h7V4z" fill="currentColor"/><path d="M29.49 13.12l-9-5a1 1 0 0 0-1 0l-9 5A1 1 0 0 0 10 14v10a1 1 0 0 0 .52.87l9 5A1 1 0 0 0 20 30a1.05 1.05 0 0 0 .49-.13l9-5A1 1 0 0 0 30 24V14a1 1 0 0 0-.51-.88zM19 27.3l-7-3.89v-7.72l7 3.89zm1-9.45L13.06 14L20 10.14L26.94 14zm8 5.56l-7 3.89v-7.72l7-3.89z" fill="currentColor"/>', hidden: !0 }, building: { body: '<path fill="currentColor" d="M28 2H16a2.002 2.002 0 0 0-2 2v10H4a2.002 2.002 0 0 0-2 2v14h28V4a2.002 2.002 0 0 0-2-2ZM9 28v-7h4v7Zm19 0H15v-8a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v8H4V16h12V4h12Z"/><path fill="currentColor" d="M18 8h2v2h-2zm6 0h2v2h-2zm-6 6h2v2h-2zm6 0h2v2h-2zm-6 6h2v2h-2zm6 0h2v2h-2z"/>' }, linkedin: { body: `<path fill="currentColor" d="M12,12h5.535v2.837h0.078C18.384,13.456,20.27,12,23.078,12C28.92,12,30,15.637,30,20.367V30h-5.77v-8.54
|
|
14231
14266
|
c0-2.037-0.041-4.657-3-4.657c-3.006,0-3.463,2.219-3.463,4.51V30H12V12z"/>
|
|
14232
14267
|
<path fill="currentColor" d="M2,12h6v18H2V12z"/>
|
|
14233
|
-
<path fill="currentColor" d="M8,7c0,1.657-1.343,3-3,3S2,8.657,2,7s1.343-3,3-3S8,5.343,8,7z"/>` } },
|
|
14234
|
-
prefix:
|
|
14235
|
-
icons:
|
|
14236
|
-
width:
|
|
14237
|
-
height:
|
|
14268
|
+
<path fill="currentColor" d="M8,7c0,1.657-1.343,3-3,3S2,8.657,2,7s1.343-3,3-3S8,5.343,8,7z"/>` } }, tg = 32, ng = 32, ig = {
|
|
14269
|
+
prefix: $h,
|
|
14270
|
+
icons: eg,
|
|
14271
|
+
width: tg,
|
|
14272
|
+
height: ng
|
|
14238
14273
|
};
|
|
14239
|
-
ti(
|
|
14240
|
-
const
|
|
14274
|
+
ti(ig);
|
|
14275
|
+
const lg = {
|
|
14241
14276
|
name: "CmdTabs",
|
|
14242
14277
|
data() {
|
|
14243
14278
|
return {
|
|
@@ -14311,11 +14346,11 @@ const ig = {
|
|
|
14311
14346
|
this.showTab = this.defaultActiveTab;
|
|
14312
14347
|
}
|
|
14313
14348
|
}
|
|
14314
|
-
},
|
|
14349
|
+
}, og = ["onClick", "title"], ag = { key: 1 }, sg = {
|
|
14315
14350
|
key: 1,
|
|
14316
14351
|
"aria-live": "assertive"
|
|
14317
|
-
},
|
|
14318
|
-
function
|
|
14352
|
+
}, rg = ["innerHTML"];
|
|
14353
|
+
function dg(e, t, n, s, i, l) {
|
|
14319
14354
|
const d = R, c = U;
|
|
14320
14355
|
return a(), r("div", {
|
|
14321
14356
|
class: x(["cmd-tabs", n.highlightLevel])
|
|
@@ -14340,8 +14375,8 @@ function rg(e, t, n, s, i, l) {
|
|
|
14340
14375
|
iconClass: u.iconClass,
|
|
14341
14376
|
type: u.iconType
|
|
14342
14377
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
|
14343
|
-
u.text ? (a(), r("span",
|
|
14344
|
-
], 10,
|
|
14378
|
+
u.text ? (a(), r("span", ag, g(u.text), 1)) : m("", !0)
|
|
14379
|
+
], 10, og)
|
|
14345
14380
|
], 2))), 128))
|
|
14346
14381
|
], 2),
|
|
14347
14382
|
n.useSlot ? (a(!0), r(w, { key: 0 }, P(n.tabs.length, (u) => z((a(), r("div", {
|
|
@@ -14352,7 +14387,7 @@ function rg(e, t, n, s, i, l) {
|
|
|
14352
14387
|
D(e.$slots, "tab-content-" + (u - 1))
|
|
14353
14388
|
], 2)), [
|
|
14354
14389
|
[$, i.showTab === u - 1]
|
|
14355
|
-
])), 128)) : (a(), r("div",
|
|
14390
|
+
])), 128)) : (a(), r("div", sg, [
|
|
14356
14391
|
n.cmdHeadline ? (a(), C(c, T({ key: 0 }, n.cmdHeadline, {
|
|
14357
14392
|
headlineText: n.tabs[i.showTab].headlineText,
|
|
14358
14393
|
headlineLevel: n.tabs[i.showTab].headlineLevel
|
|
@@ -14360,11 +14395,11 @@ function rg(e, t, n, s, i, l) {
|
|
|
14360
14395
|
o("div", {
|
|
14361
14396
|
innerHTML: n.tabs[i.showTab].htmlContent,
|
|
14362
14397
|
class: x({ "no-padding": !n.useDefaultPadding })
|
|
14363
|
-
}, null, 10,
|
|
14398
|
+
}, null, 10, rg)
|
|
14364
14399
|
]))
|
|
14365
14400
|
], 2);
|
|
14366
14401
|
}
|
|
14367
|
-
const Fi = /* @__PURE__ */ B(
|
|
14402
|
+
const Fi = /* @__PURE__ */ B(lg, [["render", dg]]), ug = {
|
|
14368
14403
|
name: "CmdTextImageBlock",
|
|
14369
14404
|
mixins: [Z],
|
|
14370
14405
|
data() {
|
|
@@ -14481,8 +14516,8 @@ const Fi = /* @__PURE__ */ B(ig, [["render", rg]]), dg = {
|
|
|
14481
14516
|
immediate: !0
|
|
14482
14517
|
}
|
|
14483
14518
|
}
|
|
14484
|
-
},
|
|
14485
|
-
function
|
|
14519
|
+
}, cg = ["innerHTML"], mg = ["innerHTML"];
|
|
14520
|
+
function pg(e, t, n, s, i, l) {
|
|
14486
14521
|
const d = U, c = oe, u = Ce;
|
|
14487
14522
|
return a(), r("div", {
|
|
14488
14523
|
class: x(["cmd-text-image-block flex-container", n.orientation])
|
|
@@ -14502,7 +14537,7 @@ function mg(e, t, n, s, i, l) {
|
|
|
14502
14537
|
n.htmlContent ? (a(), r("div", {
|
|
14503
14538
|
key: 1,
|
|
14504
14539
|
innerHTML: n.htmlContent
|
|
14505
|
-
}, null, 8,
|
|
14540
|
+
}, null, 8, cg)) : m("", !0),
|
|
14506
14541
|
D(e.$slots, "default")
|
|
14507
14542
|
], 2)),
|
|
14508
14543
|
e.editModeContext ? (a(), C(u, {
|
|
@@ -14527,7 +14562,7 @@ function mg(e, t, n, s, i, l) {
|
|
|
14527
14562
|
key: 1,
|
|
14528
14563
|
innerHTML: n.htmlContent,
|
|
14529
14564
|
class: x(l.textAlign)
|
|
14530
|
-
}, null, 10,
|
|
14565
|
+
}, null, 10, mg)) : (a(), r("button", {
|
|
14531
14566
|
key: 2,
|
|
14532
14567
|
type: "button",
|
|
14533
14568
|
class: "button confirm",
|
|
@@ -14541,7 +14576,7 @@ function mg(e, t, n, s, i, l) {
|
|
|
14541
14576
|
}, 8, ["componentProps", "componentPath", "allowDeleteComponent"])) : m("", !0)
|
|
14542
14577
|
], 2);
|
|
14543
14578
|
}
|
|
14544
|
-
const
|
|
14579
|
+
const fg = /* @__PURE__ */ B(ug, [["render", pg]]), hg = {
|
|
14545
14580
|
name: "ToggleDarkMode",
|
|
14546
14581
|
mixins: [
|
|
14547
14582
|
Z
|
|
@@ -14694,8 +14729,8 @@ const pg = /* @__PURE__ */ B(dg, [["render", mg]]), fg = {
|
|
|
14694
14729
|
immediate: !0
|
|
14695
14730
|
}
|
|
14696
14731
|
}
|
|
14697
|
-
},
|
|
14698
|
-
function
|
|
14732
|
+
}, gg = { key: 0 };
|
|
14733
|
+
function yg(e, t, n, s, i, l) {
|
|
14699
14734
|
const d = R, c = K;
|
|
14700
14735
|
return a(), r("div", {
|
|
14701
14736
|
class: x(["cmd-toggle-dark-mode", { "styled-layout": n.useStyledLayout, "dark-mode": i.darkMode }])
|
|
@@ -14724,7 +14759,7 @@ function gg(e, t, n, s, i, l) {
|
|
|
14724
14759
|
class: x(["button", { "dark-mode": i.darkMode }]),
|
|
14725
14760
|
onClick: t[0] || (t[0] = k((...u) => l.toggleColorScheme && l.toggleColorScheme(...u), ["prevent"]))
|
|
14726
14761
|
}, [
|
|
14727
|
-
n.showLabel ? (a(), r("span",
|
|
14762
|
+
n.showLabel ? (a(), r("span", gg, g(l.labelText), 1)) : m("", !0),
|
|
14728
14763
|
f(d, {
|
|
14729
14764
|
iconClass: l.iconClass,
|
|
14730
14765
|
type: l.iconType,
|
|
@@ -14747,7 +14782,7 @@ function gg(e, t, n, s, i, l) {
|
|
|
14747
14782
|
], 64))
|
|
14748
14783
|
], 2);
|
|
14749
14784
|
}
|
|
14750
|
-
const
|
|
14785
|
+
const bg = /* @__PURE__ */ B(hg, [["render", yg]]), xg = {
|
|
14751
14786
|
data() {
|
|
14752
14787
|
return {
|
|
14753
14788
|
defaultMessageProperties: {
|
|
@@ -14805,28 +14840,28 @@ function Pi(e, t) {
|
|
|
14805
14840
|
return e.apply(t, arguments);
|
|
14806
14841
|
};
|
|
14807
14842
|
}
|
|
14808
|
-
const { toString:
|
|
14809
|
-
const n =
|
|
14843
|
+
const { toString: Cg } = Object.prototype, { getPrototypeOf: en } = Object, it = /* @__PURE__ */ ((e) => (t) => {
|
|
14844
|
+
const n = Cg.call(t);
|
|
14810
14845
|
return e[n] || (e[n] = n.slice(8, -1).toLowerCase());
|
|
14811
14846
|
})(/* @__PURE__ */ Object.create(null)), ae = (e) => (e = e.toLowerCase(), (t) => it(t) === e), lt = (e) => (t) => typeof t === e, { isArray: _e } = Array, Ee = lt("undefined");
|
|
14812
|
-
function
|
|
14847
|
+
function vg(e) {
|
|
14813
14848
|
return e !== null && !Ee(e) && e.constructor !== null && !Ee(e.constructor) && ne(e.constructor.isBuffer) && e.constructor.isBuffer(e);
|
|
14814
14849
|
}
|
|
14815
14850
|
const Mi = ae("ArrayBuffer");
|
|
14816
|
-
function
|
|
14851
|
+
function kg(e) {
|
|
14817
14852
|
let t;
|
|
14818
14853
|
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && Mi(e.buffer), t;
|
|
14819
14854
|
}
|
|
14820
|
-
const
|
|
14855
|
+
const wg = lt("string"), ne = lt("function"), Vi = lt("number"), ot = (e) => e !== null && typeof e == "object", Tg = (e) => e === !0 || e === !1, We = (e) => {
|
|
14821
14856
|
if (it(e) !== "object")
|
|
14822
14857
|
return !1;
|
|
14823
14858
|
const t = en(e);
|
|
14824
14859
|
return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
|
|
14825
|
-
},
|
|
14860
|
+
}, Sg = ae("Date"), _g = ae("File"), Og = ae("Blob"), Lg = ae("FileList"), Ig = (e) => ot(e) && ne(e.pipe), Bg = (e) => {
|
|
14826
14861
|
let t;
|
|
14827
14862
|
return e && (typeof FormData == "function" && e instanceof FormData || ne(e.append) && ((t = it(e)) === "formdata" || // detect form-data instance
|
|
14828
14863
|
t === "object" && ne(e.toString) && e.toString() === "[object FormData]"));
|
|
14829
|
-
},
|
|
14864
|
+
}, Dg = ae("URLSearchParams"), [Fg, Pg, Mg, Vg] = ["ReadableStream", "Request", "Response", "Headers"].map(ae), Ag = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
14830
14865
|
function He(e, t, { allOwnKeys: n = !1 } = {}) {
|
|
14831
14866
|
if (e === null || typeof e > "u")
|
|
14832
14867
|
return;
|
|
@@ -14860,13 +14895,13 @@ function It() {
|
|
|
14860
14895
|
arguments[s] && He(arguments[s], n);
|
|
14861
14896
|
return t;
|
|
14862
14897
|
}
|
|
14863
|
-
const
|
|
14898
|
+
const Eg = (e, t, n, { allOwnKeys: s } = {}) => (He(t, (i, l) => {
|
|
14864
14899
|
n && ne(i) ? e[l] = Pi(i, n) : e[l] = i;
|
|
14865
|
-
}, { allOwnKeys: s }), e),
|
|
14900
|
+
}, { allOwnKeys: s }), e), Hg = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), qg = (e, t, n, s) => {
|
|
14866
14901
|
e.prototype = Object.create(t.prototype, s), e.prototype.constructor = e, Object.defineProperty(e, "super", {
|
|
14867
14902
|
value: t.prototype
|
|
14868
14903
|
}), n && Object.assign(e.prototype, n);
|
|
14869
|
-
},
|
|
14904
|
+
}, Rg = (e, t, n, s) => {
|
|
14870
14905
|
let i, l, d;
|
|
14871
14906
|
const c = {};
|
|
14872
14907
|
if (t = t || {}, e == null) return t;
|
|
@@ -14876,11 +14911,11 @@ const Ag = (e, t, n, { allOwnKeys: s } = {}) => (He(t, (i, l) => {
|
|
|
14876
14911
|
e = n !== !1 && en(e);
|
|
14877
14912
|
} while (e && (!n || n(e, t)) && e !== Object.prototype);
|
|
14878
14913
|
return t;
|
|
14879
|
-
},
|
|
14914
|
+
}, jg = (e, t, n) => {
|
|
14880
14915
|
e = String(e), (n === void 0 || n > e.length) && (n = e.length), n -= t.length;
|
|
14881
14916
|
const s = e.indexOf(t, n);
|
|
14882
14917
|
return s !== -1 && s === n;
|
|
14883
|
-
},
|
|
14918
|
+
}, Ug = (e) => {
|
|
14884
14919
|
if (!e) return null;
|
|
14885
14920
|
if (_e(e)) return e;
|
|
14886
14921
|
let t = e.length;
|
|
@@ -14889,31 +14924,31 @@ const Ag = (e, t, n, { allOwnKeys: s } = {}) => (He(t, (i, l) => {
|
|
|
14889
14924
|
for (; t-- > 0; )
|
|
14890
14925
|
n[t] = e[t];
|
|
14891
14926
|
return n;
|
|
14892
|
-
},
|
|
14927
|
+
}, Ng = /* @__PURE__ */ ((e) => (t) => e && t instanceof e)(typeof Uint8Array < "u" && en(Uint8Array)), zg = (e, t) => {
|
|
14893
14928
|
const s = (e && e[Symbol.iterator]).call(e);
|
|
14894
14929
|
let i;
|
|
14895
14930
|
for (; (i = s.next()) && !i.done; ) {
|
|
14896
14931
|
const l = i.value;
|
|
14897
14932
|
t.call(e, l[0], l[1]);
|
|
14898
14933
|
}
|
|
14899
|
-
},
|
|
14934
|
+
}, Wg = (e, t) => {
|
|
14900
14935
|
let n;
|
|
14901
14936
|
const s = [];
|
|
14902
14937
|
for (; (n = e.exec(t)) !== null; )
|
|
14903
14938
|
s.push(n);
|
|
14904
14939
|
return s;
|
|
14905
|
-
},
|
|
14940
|
+
}, Gg = ae("HTMLFormElement"), Kg = (e) => e.toLowerCase().replace(
|
|
14906
14941
|
/[-_\s]([a-z\d])(\w*)/g,
|
|
14907
14942
|
function(n, s, i) {
|
|
14908
14943
|
return s.toUpperCase() + i;
|
|
14909
14944
|
}
|
|
14910
|
-
), Pn = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype),
|
|
14945
|
+
), Pn = (({ hasOwnProperty: e }) => (t, n) => e.call(t, n))(Object.prototype), Yg = ae("RegExp"), qi = (e, t) => {
|
|
14911
14946
|
const n = Object.getOwnPropertyDescriptors(e), s = {};
|
|
14912
14947
|
He(n, (i, l) => {
|
|
14913
14948
|
let d;
|
|
14914
14949
|
(d = t(i, l, e)) !== !1 && (s[l] = d || i);
|
|
14915
14950
|
}), Object.defineProperties(e, s);
|
|
14916
|
-
},
|
|
14951
|
+
}, Jg = (e) => {
|
|
14917
14952
|
qi(e, (t, n) => {
|
|
14918
14953
|
if (ne(e) && ["arguments", "caller", "callee"].indexOf(n) !== -1)
|
|
14919
14954
|
return !1;
|
|
@@ -14928,29 +14963,29 @@ const Ag = (e, t, n, { allOwnKeys: s } = {}) => (He(t, (i, l) => {
|
|
|
14928
14963
|
});
|
|
14929
14964
|
}
|
|
14930
14965
|
});
|
|
14931
|
-
},
|
|
14966
|
+
}, Zg = (e, t) => {
|
|
14932
14967
|
const n = {}, s = (i) => {
|
|
14933
14968
|
i.forEach((l) => {
|
|
14934
14969
|
n[l] = !0;
|
|
14935
14970
|
});
|
|
14936
14971
|
};
|
|
14937
14972
|
return _e(e) ? s(e) : s(String(e).split(t)), n;
|
|
14938
|
-
},
|
|
14939
|
-
},
|
|
14973
|
+
}, Qg = () => {
|
|
14974
|
+
}, Xg = (e, t) => e != null && Number.isFinite(e = +e) ? e : t, gt = "abcdefghijklmnopqrstuvwxyz", Mn = "0123456789", Ri = {
|
|
14940
14975
|
DIGIT: Mn,
|
|
14941
14976
|
ALPHA: gt,
|
|
14942
14977
|
ALPHA_DIGIT: gt + gt.toUpperCase() + Mn
|
|
14943
|
-
},
|
|
14978
|
+
}, $g = (e = 16, t = Ri.ALPHA_DIGIT) => {
|
|
14944
14979
|
let n = "";
|
|
14945
14980
|
const { length: s } = t;
|
|
14946
14981
|
for (; e--; )
|
|
14947
14982
|
n += t[Math.random() * s | 0];
|
|
14948
14983
|
return n;
|
|
14949
14984
|
};
|
|
14950
|
-
function
|
|
14985
|
+
function ey(e) {
|
|
14951
14986
|
return !!(e && ne(e.append) && e[Symbol.toStringTag] === "FormData" && e[Symbol.iterator]);
|
|
14952
14987
|
}
|
|
14953
|
-
const
|
|
14988
|
+
const ty = (e) => {
|
|
14954
14989
|
const t = new Array(10), n = (s, i) => {
|
|
14955
14990
|
if (ot(s)) {
|
|
14956
14991
|
if (t.indexOf(s) >= 0)
|
|
@@ -14967,63 +15002,63 @@ const ey = (e) => {
|
|
|
14967
15002
|
return s;
|
|
14968
15003
|
};
|
|
14969
15004
|
return n(e, 0);
|
|
14970
|
-
},
|
|
15005
|
+
}, ny = ae("AsyncFunction"), iy = (e) => e && (ot(e) || ne(e)) && ne(e.then) && ne(e.catch), _ = {
|
|
14971
15006
|
isArray: _e,
|
|
14972
15007
|
isArrayBuffer: Mi,
|
|
14973
|
-
isBuffer:
|
|
14974
|
-
isFormData:
|
|
14975
|
-
isArrayBufferView:
|
|
14976
|
-
isString:
|
|
15008
|
+
isBuffer: vg,
|
|
15009
|
+
isFormData: Bg,
|
|
15010
|
+
isArrayBufferView: kg,
|
|
15011
|
+
isString: wg,
|
|
14977
15012
|
isNumber: Vi,
|
|
14978
|
-
isBoolean:
|
|
15013
|
+
isBoolean: Tg,
|
|
14979
15014
|
isObject: ot,
|
|
14980
15015
|
isPlainObject: We,
|
|
14981
|
-
isReadableStream:
|
|
14982
|
-
isRequest:
|
|
14983
|
-
isResponse:
|
|
14984
|
-
isHeaders:
|
|
15016
|
+
isReadableStream: Fg,
|
|
15017
|
+
isRequest: Pg,
|
|
15018
|
+
isResponse: Mg,
|
|
15019
|
+
isHeaders: Vg,
|
|
14985
15020
|
isUndefined: Ee,
|
|
14986
|
-
isDate:
|
|
14987
|
-
isFile:
|
|
14988
|
-
isBlob:
|
|
14989
|
-
isRegExp:
|
|
15021
|
+
isDate: Sg,
|
|
15022
|
+
isFile: _g,
|
|
15023
|
+
isBlob: Og,
|
|
15024
|
+
isRegExp: Yg,
|
|
14990
15025
|
isFunction: ne,
|
|
14991
|
-
isStream:
|
|
14992
|
-
isURLSearchParams:
|
|
14993
|
-
isTypedArray:
|
|
14994
|
-
isFileList:
|
|
15026
|
+
isStream: Ig,
|
|
15027
|
+
isURLSearchParams: Dg,
|
|
15028
|
+
isTypedArray: Ng,
|
|
15029
|
+
isFileList: Lg,
|
|
14995
15030
|
forEach: He,
|
|
14996
15031
|
merge: It,
|
|
14997
|
-
extend:
|
|
14998
|
-
trim:
|
|
14999
|
-
stripBOM:
|
|
15000
|
-
inherits:
|
|
15001
|
-
toFlatObject:
|
|
15032
|
+
extend: Eg,
|
|
15033
|
+
trim: Ag,
|
|
15034
|
+
stripBOM: Hg,
|
|
15035
|
+
inherits: qg,
|
|
15036
|
+
toFlatObject: Rg,
|
|
15002
15037
|
kindOf: it,
|
|
15003
15038
|
kindOfTest: ae,
|
|
15004
|
-
endsWith:
|
|
15005
|
-
toArray:
|
|
15006
|
-
forEachEntry:
|
|
15007
|
-
matchAll:
|
|
15008
|
-
isHTMLForm:
|
|
15039
|
+
endsWith: jg,
|
|
15040
|
+
toArray: Ug,
|
|
15041
|
+
forEachEntry: zg,
|
|
15042
|
+
matchAll: Wg,
|
|
15043
|
+
isHTMLForm: Gg,
|
|
15009
15044
|
hasOwnProperty: Pn,
|
|
15010
15045
|
hasOwnProp: Pn,
|
|
15011
15046
|
// an alias to avoid ESLint no-prototype-builtins detection
|
|
15012
15047
|
reduceDescriptors: qi,
|
|
15013
|
-
freezeMethods:
|
|
15014
|
-
toObjectSet:
|
|
15015
|
-
toCamelCase:
|
|
15016
|
-
noop:
|
|
15017
|
-
toFiniteNumber:
|
|
15048
|
+
freezeMethods: Jg,
|
|
15049
|
+
toObjectSet: Zg,
|
|
15050
|
+
toCamelCase: Kg,
|
|
15051
|
+
noop: Qg,
|
|
15052
|
+
toFiniteNumber: Xg,
|
|
15018
15053
|
findKey: Ai,
|
|
15019
15054
|
global: Ei,
|
|
15020
15055
|
isContextDefined: Hi,
|
|
15021
15056
|
ALPHABET: Ri,
|
|
15022
|
-
generateString:
|
|
15023
|
-
isSpecCompliantForm:
|
|
15024
|
-
toJSONObject:
|
|
15025
|
-
isAsyncFn:
|
|
15026
|
-
isThenable:
|
|
15057
|
+
generateString: $g,
|
|
15058
|
+
isSpecCompliantForm: ey,
|
|
15059
|
+
toJSONObject: ty,
|
|
15060
|
+
isAsyncFn: ny,
|
|
15061
|
+
isThenable: iy
|
|
15027
15062
|
};
|
|
15028
15063
|
function E(e, t, n, s, i) {
|
|
15029
15064
|
Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = e, this.name = "AxiosError", t && (this.code = t), n && (this.config = n), s && (this.request = s), i && (this.response = i);
|
|
@@ -15075,7 +15110,7 @@ E.from = (e, t, n, s, i, l) => {
|
|
|
15075
15110
|
return u !== Error.prototype;
|
|
15076
15111
|
}, (c) => c !== "isAxiosError"), E.call(d, e.message, t, n, s, i), d.cause = e, d.name = e.name, l && Object.assign(d, l), d;
|
|
15077
15112
|
};
|
|
15078
|
-
const
|
|
15113
|
+
const ly = null;
|
|
15079
15114
|
function Bt(e) {
|
|
15080
15115
|
return _.isPlainObject(e) || _.isArray(e);
|
|
15081
15116
|
}
|
|
@@ -15087,10 +15122,10 @@ function Vn(e, t, n) {
|
|
|
15087
15122
|
return i = Ni(i), !n && l ? "[" + i + "]" : i;
|
|
15088
15123
|
}).join(n ? "." : "") : t;
|
|
15089
15124
|
}
|
|
15090
|
-
function
|
|
15125
|
+
function oy(e) {
|
|
15091
15126
|
return _.isArray(e) && !e.some(Bt);
|
|
15092
15127
|
}
|
|
15093
|
-
const
|
|
15128
|
+
const ay = _.toFlatObject(_, {}, null, function(t) {
|
|
15094
15129
|
return /^is[A-Z]/.test(t);
|
|
15095
15130
|
});
|
|
15096
15131
|
function at(e, t, n) {
|
|
@@ -15106,20 +15141,20 @@ function at(e, t, n) {
|
|
|
15106
15141
|
const s = n.metaTokens, i = n.visitor || p, l = n.dots, d = n.indexes, u = (n.Blob || typeof Blob < "u" && Blob) && _.isSpecCompliantForm(t);
|
|
15107
15142
|
if (!_.isFunction(i))
|
|
15108
15143
|
throw new TypeError("visitor must be a function");
|
|
15109
|
-
function h(
|
|
15110
|
-
if (
|
|
15111
|
-
if (_.isDate(
|
|
15112
|
-
return
|
|
15113
|
-
if (!u && _.isBlob(
|
|
15144
|
+
function h(I) {
|
|
15145
|
+
if (I === null) return "";
|
|
15146
|
+
if (_.isDate(I))
|
|
15147
|
+
return I.toISOString();
|
|
15148
|
+
if (!u && _.isBlob(I))
|
|
15114
15149
|
throw new E("Blob is not supported. Use a Buffer instead.");
|
|
15115
|
-
return _.isArrayBuffer(
|
|
15150
|
+
return _.isArrayBuffer(I) || _.isTypedArray(I) ? u && typeof Blob == "function" ? new Blob([I]) : Buffer.from(I) : I;
|
|
15116
15151
|
}
|
|
15117
|
-
function p(
|
|
15118
|
-
let q =
|
|
15119
|
-
if (
|
|
15152
|
+
function p(I, O, V) {
|
|
15153
|
+
let q = I;
|
|
15154
|
+
if (I && !V && typeof I == "object") {
|
|
15120
15155
|
if (_.endsWith(O, "{}"))
|
|
15121
|
-
O = s ? O : O.slice(0, -2),
|
|
15122
|
-
else if (_.isArray(
|
|
15156
|
+
O = s ? O : O.slice(0, -2), I = JSON.stringify(I);
|
|
15157
|
+
else if (_.isArray(I) && oy(I) || (_.isFileList(I) || _.endsWith(O, "[]")) && (q = _.toArray(I)))
|
|
15123
15158
|
return O = Ni(O), q.forEach(function(j, Y) {
|
|
15124
15159
|
!(_.isUndefined(j) || j === null) && t.append(
|
|
15125
15160
|
// eslint-disable-next-line no-nested-ternary
|
|
@@ -15128,31 +15163,31 @@ function at(e, t, n) {
|
|
|
15128
15163
|
);
|
|
15129
15164
|
}), !1;
|
|
15130
15165
|
}
|
|
15131
|
-
return Bt(
|
|
15166
|
+
return Bt(I) ? !0 : (t.append(Vn(V, O, l), h(I)), !1);
|
|
15132
15167
|
}
|
|
15133
|
-
const b = [], S = Object.assign(
|
|
15168
|
+
const b = [], S = Object.assign(ay, {
|
|
15134
15169
|
defaultVisitor: p,
|
|
15135
15170
|
convertValue: h,
|
|
15136
15171
|
isVisitable: Bt
|
|
15137
15172
|
});
|
|
15138
|
-
function I
|
|
15139
|
-
if (!_.isUndefined(
|
|
15140
|
-
if (b.indexOf(
|
|
15173
|
+
function L(I, O) {
|
|
15174
|
+
if (!_.isUndefined(I)) {
|
|
15175
|
+
if (b.indexOf(I) !== -1)
|
|
15141
15176
|
throw Error("Circular reference detected in " + O.join("."));
|
|
15142
|
-
b.push(
|
|
15177
|
+
b.push(I), _.forEach(I, function(q, N) {
|
|
15143
15178
|
(!(_.isUndefined(q) || q === null) && i.call(
|
|
15144
15179
|
t,
|
|
15145
15180
|
q,
|
|
15146
15181
|
_.isString(N) ? N.trim() : N,
|
|
15147
15182
|
O,
|
|
15148
15183
|
S
|
|
15149
|
-
)) === !0 &&
|
|
15184
|
+
)) === !0 && L(q, O ? O.concat(N) : [N]);
|
|
15150
15185
|
}), b.pop();
|
|
15151
15186
|
}
|
|
15152
15187
|
}
|
|
15153
15188
|
if (!_.isObject(e))
|
|
15154
15189
|
throw new TypeError("data must be an object");
|
|
15155
|
-
return
|
|
15190
|
+
return L(e), t;
|
|
15156
15191
|
}
|
|
15157
15192
|
function An(e) {
|
|
15158
15193
|
const t = {
|
|
@@ -15183,13 +15218,13 @@ zi.toString = function(t) {
|
|
|
15183
15218
|
return n(i[0]) + "=" + n(i[1]);
|
|
15184
15219
|
}, "").join("&");
|
|
15185
15220
|
};
|
|
15186
|
-
function
|
|
15221
|
+
function sy(e) {
|
|
15187
15222
|
return encodeURIComponent(e).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
|
15188
15223
|
}
|
|
15189
15224
|
function Wi(e, t, n) {
|
|
15190
15225
|
if (!t)
|
|
15191
15226
|
return e;
|
|
15192
|
-
const s = n && n.encode ||
|
|
15227
|
+
const s = n && n.encode || sy, i = n && n.serialize;
|
|
15193
15228
|
let l;
|
|
15194
15229
|
if (i ? l = i(t, n) : l = _.isURLSearchParams(t) ? t.toString() : new tn(t, n).toString(s), l) {
|
|
15195
15230
|
const d = e.indexOf("#");
|
|
@@ -15255,36 +15290,36 @@ const Gi = {
|
|
|
15255
15290
|
silentJSONParsing: !0,
|
|
15256
15291
|
forcedJSONParsing: !0,
|
|
15257
15292
|
clarifyTimeoutError: !1
|
|
15258
|
-
},
|
|
15293
|
+
}, ry = typeof URLSearchParams < "u" ? URLSearchParams : tn, dy = typeof FormData < "u" ? FormData : null, uy = typeof Blob < "u" ? Blob : null, cy = {
|
|
15259
15294
|
isBrowser: !0,
|
|
15260
15295
|
classes: {
|
|
15261
|
-
URLSearchParams:
|
|
15262
|
-
FormData:
|
|
15263
|
-
Blob:
|
|
15296
|
+
URLSearchParams: ry,
|
|
15297
|
+
FormData: dy,
|
|
15298
|
+
Blob: uy
|
|
15264
15299
|
},
|
|
15265
15300
|
protocols: ["http", "https", "file", "blob", "url", "data"]
|
|
15266
|
-
}, nn = typeof window < "u" && typeof document < "u",
|
|
15267
|
-
self instanceof WorkerGlobalScope && typeof self.importScripts == "function",
|
|
15301
|
+
}, nn = typeof window < "u" && typeof document < "u", my = ((e) => nn && ["ReactNative", "NativeScript", "NS"].indexOf(e) < 0)(typeof navigator < "u" && navigator.product), py = typeof WorkerGlobalScope < "u" && // eslint-disable-next-line no-undef
|
|
15302
|
+
self instanceof WorkerGlobalScope && typeof self.importScripts == "function", fy = nn && window.location.href || "http://localhost", hy = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
15268
15303
|
__proto__: null,
|
|
15269
15304
|
hasBrowserEnv: nn,
|
|
15270
|
-
hasStandardBrowserEnv:
|
|
15271
|
-
hasStandardBrowserWebWorkerEnv:
|
|
15272
|
-
origin:
|
|
15305
|
+
hasStandardBrowserEnv: my,
|
|
15306
|
+
hasStandardBrowserWebWorkerEnv: py,
|
|
15307
|
+
origin: fy
|
|
15273
15308
|
}, Symbol.toStringTag, { value: "Module" })), le = {
|
|
15274
|
-
...
|
|
15275
|
-
...
|
|
15309
|
+
...hy,
|
|
15310
|
+
...cy
|
|
15276
15311
|
};
|
|
15277
|
-
function
|
|
15312
|
+
function gy(e, t) {
|
|
15278
15313
|
return at(e, new le.classes.URLSearchParams(), Object.assign({
|
|
15279
15314
|
visitor: function(n, s, i, l) {
|
|
15280
15315
|
return le.isNode && _.isBuffer(n) ? (this.append(s, n.toString("base64")), !1) : l.defaultVisitor.apply(this, arguments);
|
|
15281
15316
|
}
|
|
15282
15317
|
}, t));
|
|
15283
15318
|
}
|
|
15284
|
-
function
|
|
15319
|
+
function yy(e) {
|
|
15285
15320
|
return _.matchAll(/\w+|\[(\w*)]/g, e).map((t) => t[0] === "[]" ? "" : t[1] || t[0]);
|
|
15286
15321
|
}
|
|
15287
|
-
function
|
|
15322
|
+
function by(e) {
|
|
15288
15323
|
const t = {}, n = Object.keys(e);
|
|
15289
15324
|
let s;
|
|
15290
15325
|
const i = n.length;
|
|
@@ -15298,17 +15333,17 @@ function Ki(e) {
|
|
|
15298
15333
|
let d = n[l++];
|
|
15299
15334
|
if (d === "__proto__") return !0;
|
|
15300
15335
|
const c = Number.isFinite(+d), u = l >= n.length;
|
|
15301
|
-
return d = !d && _.isArray(i) ? i.length : d, u ? (_.hasOwnProp(i, d) ? i[d] = [i[d], s] : i[d] = s, !c) : ((!i[d] || !_.isObject(i[d])) && (i[d] = []), t(n, s, i[d], l) && _.isArray(i[d]) && (i[d] =
|
|
15336
|
+
return d = !d && _.isArray(i) ? i.length : d, u ? (_.hasOwnProp(i, d) ? i[d] = [i[d], s] : i[d] = s, !c) : ((!i[d] || !_.isObject(i[d])) && (i[d] = []), t(n, s, i[d], l) && _.isArray(i[d]) && (i[d] = by(i[d])), !c);
|
|
15302
15337
|
}
|
|
15303
15338
|
if (_.isFormData(e) && _.isFunction(e.entries)) {
|
|
15304
15339
|
const n = {};
|
|
15305
15340
|
return _.forEachEntry(e, (s, i) => {
|
|
15306
|
-
t(
|
|
15341
|
+
t(yy(s), i, n, 0);
|
|
15307
15342
|
}), n;
|
|
15308
15343
|
}
|
|
15309
15344
|
return null;
|
|
15310
15345
|
}
|
|
15311
|
-
function
|
|
15346
|
+
function xy(e, t, n) {
|
|
15312
15347
|
if (_.isString(e))
|
|
15313
15348
|
try {
|
|
15314
15349
|
return (t || JSON.parse)(e), _.trim(e);
|
|
@@ -15334,7 +15369,7 @@ const qe = {
|
|
|
15334
15369
|
let c;
|
|
15335
15370
|
if (l) {
|
|
15336
15371
|
if (s.indexOf("application/x-www-form-urlencoded") > -1)
|
|
15337
|
-
return
|
|
15372
|
+
return gy(t, this.formSerializer).toString();
|
|
15338
15373
|
if ((c = _.isFileList(t)) || s.indexOf("multipart/form-data") > -1) {
|
|
15339
15374
|
const u = this.env && this.env.FormData;
|
|
15340
15375
|
return at(
|
|
@@ -15344,7 +15379,7 @@ const qe = {
|
|
|
15344
15379
|
);
|
|
15345
15380
|
}
|
|
15346
15381
|
}
|
|
15347
|
-
return l || i ? (n.setContentType("application/json", !1),
|
|
15382
|
+
return l || i ? (n.setContentType("application/json", !1), xy(t)) : t;
|
|
15348
15383
|
}],
|
|
15349
15384
|
transformResponse: [function(t) {
|
|
15350
15385
|
const n = this.transitional || qe.transitional, s = n && n.forcedJSONParsing, i = this.responseType === "json";
|
|
@@ -15387,7 +15422,7 @@ const qe = {
|
|
|
15387
15422
|
_.forEach(["delete", "get", "head", "post", "put", "patch"], (e) => {
|
|
15388
15423
|
qe.headers[e] = {};
|
|
15389
15424
|
});
|
|
15390
|
-
const
|
|
15425
|
+
const Cy = _.toObjectSet([
|
|
15391
15426
|
"age",
|
|
15392
15427
|
"authorization",
|
|
15393
15428
|
"content-length",
|
|
@@ -15405,12 +15440,12 @@ const xy = _.toObjectSet([
|
|
|
15405
15440
|
"referer",
|
|
15406
15441
|
"retry-after",
|
|
15407
15442
|
"user-agent"
|
|
15408
|
-
]),
|
|
15443
|
+
]), vy = (e) => {
|
|
15409
15444
|
const t = {};
|
|
15410
15445
|
let n, s, i;
|
|
15411
15446
|
return e && e.split(`
|
|
15412
15447
|
`).forEach(function(d) {
|
|
15413
|
-
i = d.indexOf(":"), n = d.substring(0, i).trim().toLowerCase(), s = d.substring(i + 1).trim(), !(!n || t[n] &&
|
|
15448
|
+
i = d.indexOf(":"), n = d.substring(0, i).trim().toLowerCase(), s = d.substring(i + 1).trim(), !(!n || t[n] && Cy[n]) && (n === "set-cookie" ? t[n] ? t[n].push(s) : t[n] = [s] : t[n] = t[n] ? t[n] + ", " + s : s);
|
|
15414
15449
|
}), t;
|
|
15415
15450
|
}, Hn = Symbol("internals");
|
|
15416
15451
|
function Be(e) {
|
|
@@ -15419,14 +15454,14 @@ function Be(e) {
|
|
|
15419
15454
|
function Ge(e) {
|
|
15420
15455
|
return e === !1 || e == null ? e : _.isArray(e) ? e.map(Ge) : String(e);
|
|
15421
15456
|
}
|
|
15422
|
-
function
|
|
15457
|
+
function ky(e) {
|
|
15423
15458
|
const t = /* @__PURE__ */ Object.create(null), n = /([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;
|
|
15424
15459
|
let s;
|
|
15425
15460
|
for (; s = n.exec(e); )
|
|
15426
15461
|
t[s[1]] = s[2];
|
|
15427
15462
|
return t;
|
|
15428
15463
|
}
|
|
15429
|
-
const
|
|
15464
|
+
const wy = (e) => /^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());
|
|
15430
15465
|
function yt(e, t, n, s, i) {
|
|
15431
15466
|
if (_.isFunction(s))
|
|
15432
15467
|
return s.call(this, t, n);
|
|
@@ -15437,10 +15472,10 @@ function yt(e, t, n, s, i) {
|
|
|
15437
15472
|
return s.test(t);
|
|
15438
15473
|
}
|
|
15439
15474
|
}
|
|
15440
|
-
function
|
|
15475
|
+
function Ty(e) {
|
|
15441
15476
|
return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (t, n, s) => n.toUpperCase() + s);
|
|
15442
15477
|
}
|
|
15443
|
-
function
|
|
15478
|
+
function Sy(e, t) {
|
|
15444
15479
|
const n = _.toCamelCase(" " + t);
|
|
15445
15480
|
["get", "set", "has"].forEach((s) => {
|
|
15446
15481
|
Object.defineProperty(e, s + n, {
|
|
@@ -15451,7 +15486,7 @@ function Ty(e, t) {
|
|
|
15451
15486
|
});
|
|
15452
15487
|
});
|
|
15453
15488
|
}
|
|
15454
|
-
let
|
|
15489
|
+
let X = class {
|
|
15455
15490
|
constructor(t) {
|
|
15456
15491
|
t && this.set(t);
|
|
15457
15492
|
}
|
|
@@ -15467,8 +15502,8 @@ let Q = class {
|
|
|
15467
15502
|
const d = (c, u) => _.forEach(c, (h, p) => l(h, p, u));
|
|
15468
15503
|
if (_.isPlainObject(t) || t instanceof this.constructor)
|
|
15469
15504
|
d(t, n);
|
|
15470
|
-
else if (_.isString(t) && (t = t.trim()) && !
|
|
15471
|
-
d(
|
|
15505
|
+
else if (_.isString(t) && (t = t.trim()) && !wy(t))
|
|
15506
|
+
d(vy(t), n);
|
|
15472
15507
|
else if (_.isHeaders(t))
|
|
15473
15508
|
for (const [c, u] of t.entries())
|
|
15474
15509
|
l(u, c, s);
|
|
@@ -15484,7 +15519,7 @@ let Q = class {
|
|
|
15484
15519
|
if (!n)
|
|
15485
15520
|
return i;
|
|
15486
15521
|
if (n === !0)
|
|
15487
|
-
return
|
|
15522
|
+
return ky(i);
|
|
15488
15523
|
if (_.isFunction(n))
|
|
15489
15524
|
return n.call(this, i, s);
|
|
15490
15525
|
if (_.isRegExp(n))
|
|
@@ -15528,7 +15563,7 @@ let Q = class {
|
|
|
15528
15563
|
n[d] = Ge(i), delete n[l];
|
|
15529
15564
|
return;
|
|
15530
15565
|
}
|
|
15531
|
-
const c = t ?
|
|
15566
|
+
const c = t ? Ty(l) : String(l).trim();
|
|
15532
15567
|
c !== l && delete n[l], n[c] = Ge(i), s[c] = !0;
|
|
15533
15568
|
}), this;
|
|
15534
15569
|
}
|
|
@@ -15564,13 +15599,13 @@ let Q = class {
|
|
|
15564
15599
|
}).accessors, i = this.prototype;
|
|
15565
15600
|
function l(d) {
|
|
15566
15601
|
const c = Be(d);
|
|
15567
|
-
s[c] || (
|
|
15602
|
+
s[c] || (Sy(i, d), s[c] = !0);
|
|
15568
15603
|
}
|
|
15569
15604
|
return _.isArray(t) ? t.forEach(l) : l(t), this;
|
|
15570
15605
|
}
|
|
15571
15606
|
};
|
|
15572
|
-
|
|
15573
|
-
_.reduceDescriptors(
|
|
15607
|
+
X.accessor(["Content-Type", "Content-Length", "Accept", "Accept-Encoding", "User-Agent", "Authorization"]);
|
|
15608
|
+
_.reduceDescriptors(X.prototype, ({ value: e }, t) => {
|
|
15574
15609
|
let n = t[0].toUpperCase() + t.slice(1);
|
|
15575
15610
|
return {
|
|
15576
15611
|
get: () => e,
|
|
@@ -15579,9 +15614,9 @@ _.reduceDescriptors(Q.prototype, ({ value: e }, t) => {
|
|
|
15579
15614
|
}
|
|
15580
15615
|
};
|
|
15581
15616
|
});
|
|
15582
|
-
_.freezeMethods(
|
|
15617
|
+
_.freezeMethods(X);
|
|
15583
15618
|
function bt(e, t) {
|
|
15584
|
-
const n = this || qe, s = t || n, i =
|
|
15619
|
+
const n = this || qe, s = t || n, i = X.from(s.headers);
|
|
15585
15620
|
let l = s.data;
|
|
15586
15621
|
return _.forEach(e, function(c) {
|
|
15587
15622
|
l = c.call(n, l, i.normalize(), t ? t.status : void 0);
|
|
@@ -15606,11 +15641,11 @@ function Ji(e, t, n) {
|
|
|
15606
15641
|
n
|
|
15607
15642
|
));
|
|
15608
15643
|
}
|
|
15609
|
-
function
|
|
15644
|
+
function _y(e) {
|
|
15610
15645
|
const t = /^([-+\w]{1,25})(:?\/\/|:)/.exec(e);
|
|
15611
15646
|
return t && t[1] || "";
|
|
15612
15647
|
}
|
|
15613
|
-
function
|
|
15648
|
+
function Oy(e, t) {
|
|
15614
15649
|
e = e || 10;
|
|
15615
15650
|
const n = new Array(e), s = new Array(e);
|
|
15616
15651
|
let i = 0, l = 0, d;
|
|
@@ -15622,11 +15657,11 @@ function _y(e, t) {
|
|
|
15622
15657
|
S += n[b++], b = b % e;
|
|
15623
15658
|
if (i = (i + 1) % e, i === l && (l = (l + 1) % e), h - d < t)
|
|
15624
15659
|
return;
|
|
15625
|
-
const
|
|
15626
|
-
return
|
|
15660
|
+
const L = p && h - p;
|
|
15661
|
+
return L ? Math.round(S * 1e3 / L) : void 0;
|
|
15627
15662
|
};
|
|
15628
15663
|
}
|
|
15629
|
-
function
|
|
15664
|
+
function Ly(e, t) {
|
|
15630
15665
|
let n = 0;
|
|
15631
15666
|
const s = 1e3 / t;
|
|
15632
15667
|
let i = null;
|
|
@@ -15639,8 +15674,8 @@ function Oy(e, t) {
|
|
|
15639
15674
|
}
|
|
15640
15675
|
const Je = (e, t, n = 3) => {
|
|
15641
15676
|
let s = 0;
|
|
15642
|
-
const i =
|
|
15643
|
-
return
|
|
15677
|
+
const i = Oy(50, 250);
|
|
15678
|
+
return Ly((l) => {
|
|
15644
15679
|
const d = l.loaded, c = l.lengthComputable ? l.total : void 0, u = d - s, h = i(u), p = d <= c;
|
|
15645
15680
|
s = d;
|
|
15646
15681
|
const b = {
|
|
@@ -15655,7 +15690,7 @@ const Je = (e, t, n = 3) => {
|
|
|
15655
15690
|
};
|
|
15656
15691
|
b[t ? "download" : "upload"] = !0, e(b);
|
|
15657
15692
|
}, n);
|
|
15658
|
-
},
|
|
15693
|
+
}, Iy = le.hasStandardBrowserEnv ? (
|
|
15659
15694
|
// Standard browser envs have full support of the APIs needed to test
|
|
15660
15695
|
// whether the request URL is of the same origin as current location.
|
|
15661
15696
|
(function() {
|
|
@@ -15686,7 +15721,7 @@ const Je = (e, t, n = 3) => {
|
|
|
15686
15721
|
return !0;
|
|
15687
15722
|
};
|
|
15688
15723
|
})()
|
|
15689
|
-
),
|
|
15724
|
+
), By = le.hasStandardBrowserEnv ? (
|
|
15690
15725
|
// Standard browser envs support document.cookie
|
|
15691
15726
|
{
|
|
15692
15727
|
write(e, t, n, s, i, l) {
|
|
@@ -15713,16 +15748,16 @@ const Je = (e, t, n = 3) => {
|
|
|
15713
15748
|
}
|
|
15714
15749
|
}
|
|
15715
15750
|
);
|
|
15716
|
-
function
|
|
15751
|
+
function Dy(e) {
|
|
15717
15752
|
return /^([a-z][a-z\d+\-.]*:)?\/\//i.test(e);
|
|
15718
15753
|
}
|
|
15719
|
-
function
|
|
15754
|
+
function Fy(e, t) {
|
|
15720
15755
|
return t ? e.replace(/\/?\/$/, "") + "/" + t.replace(/^\/+/, "") : e;
|
|
15721
15756
|
}
|
|
15722
15757
|
function Zi(e, t) {
|
|
15723
|
-
return e && !
|
|
15758
|
+
return e && !Dy(t) ? Fy(e, t) : t;
|
|
15724
15759
|
}
|
|
15725
|
-
const qn = (e) => e instanceof
|
|
15760
|
+
const qn = (e) => e instanceof X ? { ...e } : e;
|
|
15726
15761
|
function xe(e, t) {
|
|
15727
15762
|
t = t || {};
|
|
15728
15763
|
const n = {};
|
|
@@ -15790,7 +15825,7 @@ function xe(e, t) {
|
|
|
15790
15825
|
const Qi = (e) => {
|
|
15791
15826
|
const t = xe({}, e);
|
|
15792
15827
|
let { data: n, withXSRFToken: s, xsrfHeaderName: i, xsrfCookieName: l, headers: d, auth: c } = t;
|
|
15793
|
-
t.headers = d =
|
|
15828
|
+
t.headers = d = X.from(d), t.url = Wi(Zi(t.baseURL, t.url), e.params, e.paramsSerializer), c && d.set(
|
|
15794
15829
|
"Authorization",
|
|
15795
15830
|
"Basic " + btoa((c.username || "") + ":" + (c.password ? unescape(encodeURIComponent(c.password)) : ""))
|
|
15796
15831
|
);
|
|
@@ -15803,16 +15838,16 @@ const Qi = (e) => {
|
|
|
15803
15838
|
d.setContentType([h || "multipart/form-data", ...p].join("; "));
|
|
15804
15839
|
}
|
|
15805
15840
|
}
|
|
15806
|
-
if (le.hasStandardBrowserEnv && (s && _.isFunction(s) && (s = s(t)), s || s !== !1 &&
|
|
15807
|
-
const h = i && l &&
|
|
15841
|
+
if (le.hasStandardBrowserEnv && (s && _.isFunction(s) && (s = s(t)), s || s !== !1 && Iy(t.url))) {
|
|
15842
|
+
const h = i && l && By.read(l);
|
|
15808
15843
|
h && d.set(i, h);
|
|
15809
15844
|
}
|
|
15810
15845
|
return t;
|
|
15811
|
-
},
|
|
15846
|
+
}, Py = typeof XMLHttpRequest < "u", My = Py && function(e) {
|
|
15812
15847
|
return new Promise(function(n, s) {
|
|
15813
15848
|
const i = Qi(e);
|
|
15814
15849
|
let l = i.data;
|
|
15815
|
-
const d =
|
|
15850
|
+
const d = X.from(i.headers).normalize();
|
|
15816
15851
|
let { responseType: c } = i, u;
|
|
15817
15852
|
function h() {
|
|
15818
15853
|
i.cancelToken && i.cancelToken.unsubscribe(u), i.signal && i.signal.removeEventListener("abort", u);
|
|
@@ -15822,13 +15857,13 @@ const Qi = (e) => {
|
|
|
15822
15857
|
function b() {
|
|
15823
15858
|
if (!p)
|
|
15824
15859
|
return;
|
|
15825
|
-
const
|
|
15860
|
+
const L = X.from(
|
|
15826
15861
|
"getAllResponseHeaders" in p && p.getAllResponseHeaders()
|
|
15827
15862
|
), O = {
|
|
15828
15863
|
data: !c || c === "text" || c === "json" ? p.responseText : p.response,
|
|
15829
15864
|
status: p.status,
|
|
15830
15865
|
statusText: p.statusText,
|
|
15831
|
-
headers:
|
|
15866
|
+
headers: L,
|
|
15832
15867
|
config: e,
|
|
15833
15868
|
request: p
|
|
15834
15869
|
};
|
|
@@ -15845,27 +15880,27 @@ const Qi = (e) => {
|
|
|
15845
15880
|
}, p.onerror = function() {
|
|
15846
15881
|
s(new E("Network Error", E.ERR_NETWORK, i, p)), p = null;
|
|
15847
15882
|
}, p.ontimeout = function() {
|
|
15848
|
-
let
|
|
15883
|
+
let I = i.timeout ? "timeout of " + i.timeout + "ms exceeded" : "timeout exceeded";
|
|
15849
15884
|
const O = i.transitional || Gi;
|
|
15850
|
-
i.timeoutErrorMessage && (
|
|
15851
|
-
|
|
15885
|
+
i.timeoutErrorMessage && (I = i.timeoutErrorMessage), s(new E(
|
|
15886
|
+
I,
|
|
15852
15887
|
O.clarifyTimeoutError ? E.ETIMEDOUT : E.ECONNABORTED,
|
|
15853
15888
|
i,
|
|
15854
15889
|
p
|
|
15855
15890
|
)), p = null;
|
|
15856
|
-
}, l === void 0 && d.setContentType(null), "setRequestHeader" in p && _.forEach(d.toJSON(), function(
|
|
15857
|
-
p.setRequestHeader(O,
|
|
15858
|
-
}), _.isUndefined(i.withCredentials) || (p.withCredentials = !!i.withCredentials), c && c !== "json" && (p.responseType = i.responseType), typeof i.onDownloadProgress == "function" && p.addEventListener("progress", Je(i.onDownloadProgress, !0)), typeof i.onUploadProgress == "function" && p.upload && p.upload.addEventListener("progress", Je(i.onUploadProgress)), (i.cancelToken || i.signal) && (u = (
|
|
15859
|
-
p && (s(!
|
|
15891
|
+
}, l === void 0 && d.setContentType(null), "setRequestHeader" in p && _.forEach(d.toJSON(), function(I, O) {
|
|
15892
|
+
p.setRequestHeader(O, I);
|
|
15893
|
+
}), _.isUndefined(i.withCredentials) || (p.withCredentials = !!i.withCredentials), c && c !== "json" && (p.responseType = i.responseType), typeof i.onDownloadProgress == "function" && p.addEventListener("progress", Je(i.onDownloadProgress, !0)), typeof i.onUploadProgress == "function" && p.upload && p.upload.addEventListener("progress", Je(i.onUploadProgress)), (i.cancelToken || i.signal) && (u = (L) => {
|
|
15894
|
+
p && (s(!L || L.type ? new Oe(null, e, p) : L), p.abort(), p = null);
|
|
15860
15895
|
}, i.cancelToken && i.cancelToken.subscribe(u), i.signal && (i.signal.aborted ? u() : i.signal.addEventListener("abort", u)));
|
|
15861
|
-
const S =
|
|
15896
|
+
const S = _y(i.url);
|
|
15862
15897
|
if (S && le.protocols.indexOf(S) === -1) {
|
|
15863
15898
|
s(new E("Unsupported protocol " + S + ":", E.ERR_BAD_REQUEST, e));
|
|
15864
15899
|
return;
|
|
15865
15900
|
}
|
|
15866
15901
|
p.send(l || null);
|
|
15867
15902
|
});
|
|
15868
|
-
},
|
|
15903
|
+
}, Vy = (e, t) => {
|
|
15869
15904
|
let n = new AbortController(), s;
|
|
15870
15905
|
const i = function(u) {
|
|
15871
15906
|
if (!s) {
|
|
@@ -15887,7 +15922,7 @@ const Qi = (e) => {
|
|
|
15887
15922
|
return c.unsubscribe = d, [c, () => {
|
|
15888
15923
|
l && clearTimeout(l), l = null;
|
|
15889
15924
|
}];
|
|
15890
|
-
},
|
|
15925
|
+
}, Ay = function* (e, t) {
|
|
15891
15926
|
let n = e.byteLength;
|
|
15892
15927
|
if (n < t) {
|
|
15893
15928
|
yield e;
|
|
@@ -15896,11 +15931,11 @@ const Qi = (e) => {
|
|
|
15896
15931
|
let s = 0, i;
|
|
15897
15932
|
for (; s < n; )
|
|
15898
15933
|
i = s + t, yield e.slice(s, i), s = i;
|
|
15899
|
-
},
|
|
15934
|
+
}, Ey = async function* (e, t, n) {
|
|
15900
15935
|
for await (const s of e)
|
|
15901
|
-
yield*
|
|
15936
|
+
yield* Ay(ArrayBuffer.isView(s) ? s : await n(String(s)), t);
|
|
15902
15937
|
}, Rn = (e, t, n, s, i) => {
|
|
15903
|
-
const l =
|
|
15938
|
+
const l = Ey(e, t, i);
|
|
15904
15939
|
let d = 0;
|
|
15905
15940
|
return new ReadableStream({
|
|
15906
15941
|
type: "bytes",
|
|
@@ -15926,7 +15961,7 @@ const Qi = (e) => {
|
|
|
15926
15961
|
total: e,
|
|
15927
15962
|
loaded: s
|
|
15928
15963
|
}));
|
|
15929
|
-
}, st = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Xi = st && typeof ReadableStream == "function", Dt = st && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())),
|
|
15964
|
+
}, st = typeof fetch == "function" && typeof Request == "function" && typeof Response == "function", Xi = st && typeof ReadableStream == "function", Dt = st && (typeof TextEncoder == "function" ? /* @__PURE__ */ ((e) => (t) => e.encode(t))(new TextEncoder()) : async (e) => new Uint8Array(await new Response(e).arrayBuffer())), Hy = Xi && (() => {
|
|
15930
15965
|
let e = !1;
|
|
15931
15966
|
const t = new Request(le.origin, {
|
|
15932
15967
|
body: new ReadableStream(),
|
|
@@ -15951,7 +15986,7 @@ st && ((e) => {
|
|
|
15951
15986
|
});
|
|
15952
15987
|
});
|
|
15953
15988
|
})(new Response());
|
|
15954
|
-
const
|
|
15989
|
+
const qy = async (e) => {
|
|
15955
15990
|
if (e == null)
|
|
15956
15991
|
return 0;
|
|
15957
15992
|
if (_.isBlob(e))
|
|
@@ -15962,10 +15997,10 @@ const Hy = async (e) => {
|
|
|
15962
15997
|
return e.byteLength;
|
|
15963
15998
|
if (_.isURLSearchParams(e) && (e = e + ""), _.isString(e))
|
|
15964
15999
|
return (await Dt(e)).byteLength;
|
|
15965
|
-
},
|
|
16000
|
+
}, Ry = async (e, t) => {
|
|
15966
16001
|
const n = _.toFiniteNumber(e.getContentLength());
|
|
15967
|
-
return n ??
|
|
15968
|
-
},
|
|
16002
|
+
return n ?? qy(t);
|
|
16003
|
+
}, jy = st && (async (e) => {
|
|
15969
16004
|
let {
|
|
15970
16005
|
url: t,
|
|
15971
16006
|
method: n,
|
|
@@ -15981,15 +16016,15 @@ const Hy = async (e) => {
|
|
|
15981
16016
|
fetchOptions: S
|
|
15982
16017
|
} = Qi(e);
|
|
15983
16018
|
h = h ? (h + "").toLowerCase() : "text";
|
|
15984
|
-
let [
|
|
16019
|
+
let [L, I] = i || l || d ? Vy([i, l], d) : [], O, V;
|
|
15985
16020
|
const q = () => {
|
|
15986
16021
|
!O && setTimeout(() => {
|
|
15987
|
-
|
|
16022
|
+
L && L.unsubscribe();
|
|
15988
16023
|
}), O = !0;
|
|
15989
16024
|
};
|
|
15990
16025
|
let N;
|
|
15991
16026
|
try {
|
|
15992
|
-
if (u &&
|
|
16027
|
+
if (u && Hy && n !== "get" && n !== "head" && (N = await Ry(p, s)) !== 0) {
|
|
15993
16028
|
let H = new Request(t, {
|
|
15994
16029
|
method: "POST",
|
|
15995
16030
|
body: s,
|
|
@@ -16002,7 +16037,7 @@ const Hy = async (e) => {
|
|
|
16002
16037
|
}
|
|
16003
16038
|
_.isString(b) || (b = b ? "cors" : "omit"), V = new Request(t, {
|
|
16004
16039
|
...S,
|
|
16005
|
-
signal:
|
|
16040
|
+
signal: L,
|
|
16006
16041
|
method: n.toUpperCase(),
|
|
16007
16042
|
headers: p.normalize().toJSON(),
|
|
16008
16043
|
body: s,
|
|
@@ -16027,10 +16062,10 @@ const Hy = async (e) => {
|
|
|
16027
16062
|
}
|
|
16028
16063
|
h = h || "text";
|
|
16029
16064
|
let ge = await Ze[_.findKey(Ze, h) || "text"](j, e);
|
|
16030
|
-
return !Y && q(),
|
|
16065
|
+
return !Y && q(), I && I(), await new Promise((H, W) => {
|
|
16031
16066
|
Ji(H, W, {
|
|
16032
16067
|
data: ge,
|
|
16033
|
-
headers:
|
|
16068
|
+
headers: X.from(j.headers),
|
|
16034
16069
|
status: j.status,
|
|
16035
16070
|
statusText: j.statusText,
|
|
16036
16071
|
config: e,
|
|
@@ -16046,9 +16081,9 @@ const Hy = async (e) => {
|
|
|
16046
16081
|
) : E.from(j, j && j.code, e, V);
|
|
16047
16082
|
}
|
|
16048
16083
|
}), Pt = {
|
|
16049
|
-
http:
|
|
16050
|
-
xhr:
|
|
16051
|
-
fetch:
|
|
16084
|
+
http: ly,
|
|
16085
|
+
xhr: My,
|
|
16086
|
+
fetch: jy
|
|
16052
16087
|
};
|
|
16053
16088
|
_.forEach(Pt, (e, t) => {
|
|
16054
16089
|
if (e) {
|
|
@@ -16059,7 +16094,7 @@ _.forEach(Pt, (e, t) => {
|
|
|
16059
16094
|
Object.defineProperty(e, "adapterName", { value: t });
|
|
16060
16095
|
}
|
|
16061
16096
|
});
|
|
16062
|
-
const Nn = (e) => `- ${e}`,
|
|
16097
|
+
const Nn = (e) => `- ${e}`, Uy = (e) => _.isFunction(e) || e === null || e === !1, $i = {
|
|
16063
16098
|
getAdapter: (e) => {
|
|
16064
16099
|
e = _.isArray(e) ? e : [e];
|
|
16065
16100
|
const { length: t } = e;
|
|
@@ -16068,7 +16103,7 @@ const Nn = (e) => `- ${e}`, jy = (e) => _.isFunction(e) || e === null || e === !
|
|
|
16068
16103
|
for (let l = 0; l < t; l++) {
|
|
16069
16104
|
n = e[l];
|
|
16070
16105
|
let d;
|
|
16071
|
-
if (s = n, !
|
|
16106
|
+
if (s = n, !Uy(n) && (s = Pt[(d = String(n)).toLowerCase()], s === void 0))
|
|
16072
16107
|
throw new E(`Unknown adapter '${d}'`);
|
|
16073
16108
|
if (s)
|
|
16074
16109
|
break;
|
|
@@ -16095,7 +16130,7 @@ function xt(e) {
|
|
|
16095
16130
|
throw new Oe(null, e);
|
|
16096
16131
|
}
|
|
16097
16132
|
function zn(e) {
|
|
16098
|
-
return xt(e), e.headers =
|
|
16133
|
+
return xt(e), e.headers = X.from(e.headers), e.data = bt.call(
|
|
16099
16134
|
e,
|
|
16100
16135
|
e.transformRequest
|
|
16101
16136
|
), ["post", "put", "patch"].indexOf(e.method) !== -1 && e.headers.setContentType("application/x-www-form-urlencoded", !1), $i.getAdapter(e.adapter || qe.adapter)(e).then(function(s) {
|
|
@@ -16103,13 +16138,13 @@ function zn(e) {
|
|
|
16103
16138
|
e,
|
|
16104
16139
|
e.transformResponse,
|
|
16105
16140
|
s
|
|
16106
|
-
), s.headers =
|
|
16141
|
+
), s.headers = X.from(s.headers), s;
|
|
16107
16142
|
}, function(s) {
|
|
16108
16143
|
return Yi(s) || (xt(e), s && s.response && (s.response.data = bt.call(
|
|
16109
16144
|
e,
|
|
16110
16145
|
e.transformResponse,
|
|
16111
16146
|
s.response
|
|
16112
|
-
), s.response.headers =
|
|
16147
|
+
), s.response.headers = X.from(s.response.headers))), Promise.reject(s);
|
|
16113
16148
|
});
|
|
16114
16149
|
}
|
|
16115
16150
|
const el = "1.7.2", ln = {};
|
|
@@ -16137,7 +16172,7 @@ ln.transitional = function(t, n, s) {
|
|
|
16137
16172
|
)), t ? t(l, d, c) : !0;
|
|
16138
16173
|
};
|
|
16139
16174
|
};
|
|
16140
|
-
function
|
|
16175
|
+
function Ny(e, t, n) {
|
|
16141
16176
|
if (typeof e != "object")
|
|
16142
16177
|
throw new E("options must be an object", E.ERR_BAD_OPTION_VALUE);
|
|
16143
16178
|
const s = Object.keys(e);
|
|
@@ -16155,7 +16190,7 @@ function Uy(e, t, n) {
|
|
|
16155
16190
|
}
|
|
16156
16191
|
}
|
|
16157
16192
|
const Mt = {
|
|
16158
|
-
assertOptions:
|
|
16193
|
+
assertOptions: Ny,
|
|
16159
16194
|
validators: ln
|
|
16160
16195
|
}, ue = Mt.validators;
|
|
16161
16196
|
let ye = class {
|
|
@@ -16209,10 +16244,10 @@ let ye = class {
|
|
|
16209
16244
|
);
|
|
16210
16245
|
l && _.forEach(
|
|
16211
16246
|
["delete", "get", "head", "post", "put", "patch", "common"],
|
|
16212
|
-
(
|
|
16213
|
-
delete l[
|
|
16247
|
+
(I) => {
|
|
16248
|
+
delete l[I];
|
|
16214
16249
|
}
|
|
16215
|
-
), n.headers =
|
|
16250
|
+
), n.headers = X.concat(d, l);
|
|
16216
16251
|
const c = [];
|
|
16217
16252
|
let u = !0;
|
|
16218
16253
|
this.interceptors.request.forEach(function(O) {
|
|
@@ -16224,26 +16259,26 @@ let ye = class {
|
|
|
16224
16259
|
});
|
|
16225
16260
|
let p, b = 0, S;
|
|
16226
16261
|
if (!u) {
|
|
16227
|
-
const
|
|
16228
|
-
for (
|
|
16229
|
-
p = p.then(
|
|
16262
|
+
const I = [zn.bind(this), void 0];
|
|
16263
|
+
for (I.unshift.apply(I, c), I.push.apply(I, h), S = I.length, p = Promise.resolve(n); b < S; )
|
|
16264
|
+
p = p.then(I[b++], I[b++]);
|
|
16230
16265
|
return p;
|
|
16231
16266
|
}
|
|
16232
16267
|
S = c.length;
|
|
16233
|
-
let
|
|
16268
|
+
let L = n;
|
|
16234
16269
|
for (b = 0; b < S; ) {
|
|
16235
|
-
const
|
|
16270
|
+
const I = c[b++], O = c[b++];
|
|
16236
16271
|
try {
|
|
16237
|
-
|
|
16272
|
+
L = I(L);
|
|
16238
16273
|
} catch (V) {
|
|
16239
16274
|
O.call(this, V);
|
|
16240
16275
|
break;
|
|
16241
16276
|
}
|
|
16242
16277
|
}
|
|
16243
16278
|
try {
|
|
16244
|
-
p = zn.call(this,
|
|
16245
|
-
} catch (
|
|
16246
|
-
return Promise.reject(
|
|
16279
|
+
p = zn.call(this, L);
|
|
16280
|
+
} catch (I) {
|
|
16281
|
+
return Promise.reject(I);
|
|
16247
16282
|
}
|
|
16248
16283
|
for (b = 0, S = h.length; b < S; )
|
|
16249
16284
|
p = p.then(h[b++], h[b++]);
|
|
@@ -16279,7 +16314,7 @@ _.forEach(["post", "put", "patch"], function(t) {
|
|
|
16279
16314
|
}
|
|
16280
16315
|
ye.prototype[t] = n(), ye.prototype[t + "Form"] = n(!0);
|
|
16281
16316
|
});
|
|
16282
|
-
let
|
|
16317
|
+
let zy = class tl {
|
|
16283
16318
|
constructor(t) {
|
|
16284
16319
|
if (typeof t != "function")
|
|
16285
16320
|
throw new TypeError("executor must be a function.");
|
|
@@ -16346,12 +16381,12 @@ let Ny = class tl {
|
|
|
16346
16381
|
};
|
|
16347
16382
|
}
|
|
16348
16383
|
};
|
|
16349
|
-
function
|
|
16384
|
+
function Wy(e) {
|
|
16350
16385
|
return function(n) {
|
|
16351
16386
|
return e.apply(null, n);
|
|
16352
16387
|
};
|
|
16353
16388
|
}
|
|
16354
|
-
function
|
|
16389
|
+
function Gy(e) {
|
|
16355
16390
|
return _.isObject(e) && e.isAxiosError === !0;
|
|
16356
16391
|
}
|
|
16357
16392
|
const Vt = {
|
|
@@ -16431,7 +16466,7 @@ function nl(e) {
|
|
|
16431
16466
|
const G = nl(qe);
|
|
16432
16467
|
G.Axios = ye;
|
|
16433
16468
|
G.CanceledError = Oe;
|
|
16434
|
-
G.CancelToken =
|
|
16469
|
+
G.CancelToken = zy;
|
|
16435
16470
|
G.isCancel = Yi;
|
|
16436
16471
|
G.VERSION = el;
|
|
16437
16472
|
G.toFormData = at;
|
|
@@ -16440,35 +16475,35 @@ G.Cancel = G.CanceledError;
|
|
|
16440
16475
|
G.all = function(t) {
|
|
16441
16476
|
return Promise.all(t);
|
|
16442
16477
|
};
|
|
16443
|
-
G.spread =
|
|
16444
|
-
G.isAxiosError =
|
|
16478
|
+
G.spread = Wy;
|
|
16479
|
+
G.isAxiosError = Gy;
|
|
16445
16480
|
G.mergeConfig = xe;
|
|
16446
|
-
G.AxiosHeaders =
|
|
16481
|
+
G.AxiosHeaders = X;
|
|
16447
16482
|
G.formToJSON = (e) => Ki(_.isHTMLForm(e) ? new FormData(e) : e);
|
|
16448
16483
|
G.getAdapter = $i.getAdapter;
|
|
16449
16484
|
G.HttpStatusCode = Vt;
|
|
16450
16485
|
G.default = G;
|
|
16451
16486
|
const {
|
|
16452
|
-
Axios:
|
|
16453
|
-
AxiosError:
|
|
16454
|
-
CanceledError:
|
|
16455
|
-
isCancel:
|
|
16456
|
-
CancelToken:
|
|
16457
|
-
VERSION:
|
|
16458
|
-
all:
|
|
16459
|
-
Cancel:
|
|
16460
|
-
isAxiosError:
|
|
16461
|
-
spread:
|
|
16462
|
-
toFormData:
|
|
16463
|
-
AxiosHeaders:
|
|
16464
|
-
HttpStatusCode:
|
|
16465
|
-
formToJSON:
|
|
16466
|
-
getAdapter:
|
|
16467
|
-
mergeConfig:
|
|
16468
|
-
} = G,
|
|
16487
|
+
Axios: bk,
|
|
16488
|
+
AxiosError: xk,
|
|
16489
|
+
CanceledError: Ck,
|
|
16490
|
+
isCancel: vk,
|
|
16491
|
+
CancelToken: kk,
|
|
16492
|
+
VERSION: wk,
|
|
16493
|
+
all: Tk,
|
|
16494
|
+
Cancel: Sk,
|
|
16495
|
+
isAxiosError: _k,
|
|
16496
|
+
spread: Ok,
|
|
16497
|
+
toFormData: Lk,
|
|
16498
|
+
AxiosHeaders: Ik,
|
|
16499
|
+
HttpStatusCode: Bk,
|
|
16500
|
+
formToJSON: Dk,
|
|
16501
|
+
getAdapter: Fk,
|
|
16502
|
+
mergeConfig: Pk
|
|
16503
|
+
} = G, Ky = {
|
|
16469
16504
|
name: "CmdUploadForm",
|
|
16470
16505
|
emits: ["click", "error", "upload-complete", "upload-file-success"],
|
|
16471
|
-
mixins: [
|
|
16506
|
+
mixins: [Q, xg],
|
|
16472
16507
|
data() {
|
|
16473
16508
|
return {
|
|
16474
16509
|
comment: "",
|
|
@@ -17008,29 +17043,29 @@ const {
|
|
|
17008
17043
|
}
|
|
17009
17044
|
}
|
|
17010
17045
|
}
|
|
17011
|
-
},
|
|
17046
|
+
}, Yy = { key: 0 }, Jy = {
|
|
17012
17047
|
key: 1,
|
|
17013
17048
|
class: "flex-container vertical"
|
|
17014
|
-
},
|
|
17049
|
+
}, Zy = {
|
|
17015
17050
|
key: 0,
|
|
17016
17051
|
class: "flex-container vertical list-files-wrapper"
|
|
17017
|
-
},
|
|
17052
|
+
}, Qy = {
|
|
17018
17053
|
key: 0,
|
|
17019
17054
|
class: "list-of-files total-files"
|
|
17020
|
-
},
|
|
17055
|
+
}, Xy = { class: "flex-container flex-items-flex-none" }, $y = ["title"], eb = {
|
|
17021
17056
|
key: 0,
|
|
17022
17057
|
class: "progressbar"
|
|
17023
|
-
},
|
|
17058
|
+
}, tb = ["value", "title"], nb = { class: "flex-container vertical list-files-wrapper" }, ib = { class: "list-of-files" }, lb = ["title", "onClick"], ob = {
|
|
17024
17059
|
key: 0,
|
|
17025
17060
|
class: "progressbar"
|
|
17026
|
-
},
|
|
17061
|
+
}, ab = ["value", "title"], sb = ["title"], rb = { class: "upload-conditions" }, db = { class: "small" }, ub = ["title"], cb = {
|
|
17027
17062
|
key: 0,
|
|
17028
17063
|
class: "list-of-file-extensions"
|
|
17029
|
-
},
|
|
17064
|
+
}, mb = { class: "flex-container vertical no-gap" }, pb = ["disabled"], fb = { key: 0 }, hb = { key: 1 }, gb = { class: "button-wrapper stretch-on-small-devices" }, yb = ["disabled"], bb = { key: 0 }, xb = { key: 1 }, Cb = {
|
|
17030
17065
|
key: 0,
|
|
17031
17066
|
class: "progressbar"
|
|
17032
|
-
},
|
|
17033
|
-
function
|
|
17067
|
+
}, vb = ["value", "title"];
|
|
17068
|
+
function kb(e, t, n, s, i, l) {
|
|
17034
17069
|
const d = U, c = ve, u = R, h = K;
|
|
17035
17070
|
return a(), r(w, null, [
|
|
17036
17071
|
n.advancedMode ? (a(), r("fieldset", {
|
|
@@ -17048,7 +17083,7 @@ function vb(e, t, n, s, i, l) {
|
|
|
17048
17083
|
systemMessage: l.allSystemMessages.length === 1 ? l.allSystemMessages[0] : e.getMessage("upload_form.system_message.the_following_errors_occurred")
|
|
17049
17084
|
}, {
|
|
17050
17085
|
default: v(() => [
|
|
17051
|
-
l.allSystemMessages.length > 1 ? (a(), r("ul",
|
|
17086
|
+
l.allSystemMessages.length > 1 ? (a(), r("ul", Yy, [
|
|
17052
17087
|
(a(!0), r(w, null, P(l.allSystemMessages, (p, b) => (a(), r("li", { key: b }, g(p), 1))), 128))
|
|
17053
17088
|
])) : m("", !0)
|
|
17054
17089
|
]),
|
|
@@ -17057,23 +17092,23 @@ function vb(e, t, n, s, i, l) {
|
|
|
17057
17092
|
o("div", T({
|
|
17058
17093
|
class: ["box flex-container vertical", { "drop-area": n.enableDragAndDrop, "allow-drop": i.allowDrop }]
|
|
17059
17094
|
}, Ct(l.dragAndDropHandler, !0)), [
|
|
17060
|
-
i.listOfFiles.length ? (a(), r("div",
|
|
17061
|
-
n.showTotalUpload && i.listOfFiles.length !== 1 ? (a(), r("div",
|
|
17095
|
+
i.listOfFiles.length ? (a(), r("div", Jy, [
|
|
17096
|
+
n.showTotalUpload && i.listOfFiles.length !== 1 ? (a(), r("div", Zy, [
|
|
17062
17097
|
f(d, T(n.cmdHeadlineSummaryOfAllFiles, { headlineLevel: "4" }), {
|
|
17063
17098
|
default: v(() => [
|
|
17064
17099
|
F(g(e.getMessage("upload_form.headline.summary_of_all_files")), 1)
|
|
17065
17100
|
]),
|
|
17066
17101
|
_: 1
|
|
17067
17102
|
}, 16),
|
|
17068
|
-
n.showTotalUpload && i.listOfFiles.length !== 1 ? (a(), r("ul",
|
|
17069
|
-
o("li",
|
|
17103
|
+
n.showTotalUpload && i.listOfFiles.length !== 1 ? (a(), r("ul", Qy, [
|
|
17104
|
+
o("li", Xy, [
|
|
17070
17105
|
o("a", {
|
|
17071
17106
|
href: "#",
|
|
17072
17107
|
title: e.getMessage("upload_form.labeltext.remove_all_files_from_list"),
|
|
17073
17108
|
onClick: t[0] || (t[0] = k((...p) => l.cancelUpload && l.cancelUpload(...p), ["prevent"]))
|
|
17074
17109
|
}, [
|
|
17075
17110
|
f(u, A(ce(n.iconDelete)), null, 16)
|
|
17076
|
-
], 8,
|
|
17111
|
+
], 8, $y),
|
|
17077
17112
|
o("span", null, [
|
|
17078
17113
|
F(g(i.listOfFiles.length) + " ", 1),
|
|
17079
17114
|
n.allowMultipleFileUploads ? (a(), r(w, { key: 1 }, [
|
|
@@ -17088,26 +17123,26 @@ function vb(e, t, n, s, i, l) {
|
|
|
17088
17123
|
{ error: n.maxTotalUploadSize > 0 && l.totalSize > n.maxTotalUploadSize }
|
|
17089
17124
|
])
|
|
17090
17125
|
}, " (" + g(l.formatSize(l.totalSize)) + ") ", 3),
|
|
17091
|
-
i.uploadInitiated ? (a(), r("span",
|
|
17126
|
+
i.uploadInitiated ? (a(), r("span", eb, [
|
|
17092
17127
|
o("span", null, g(l.getPercentage(l.totalUploadProgress)), 1),
|
|
17093
17128
|
o("progress", {
|
|
17094
17129
|
max: "100",
|
|
17095
17130
|
value: l.totalUploadProgress,
|
|
17096
17131
|
title: l.totalBytesUploaded
|
|
17097
|
-
}, null, 8,
|
|
17132
|
+
}, null, 8, tb)
|
|
17098
17133
|
])) : m("", !0)
|
|
17099
17134
|
])
|
|
17100
17135
|
])) : m("", !0),
|
|
17101
17136
|
t[8] || (t[8] = o("hr", null, null, -1))
|
|
17102
17137
|
])) : m("", !0),
|
|
17103
|
-
o("div",
|
|
17138
|
+
o("div", nb, [
|
|
17104
17139
|
f(d, T(n.cmdHeadlineListOfSelectedFiles, { headlineLevel: "4" }), {
|
|
17105
17140
|
default: v(() => [
|
|
17106
17141
|
F(g(e.getMessage("upload_form.headline.list_of_selected_files")), 1)
|
|
17107
17142
|
]),
|
|
17108
17143
|
_: 1
|
|
17109
17144
|
}, 16),
|
|
17110
|
-
o("ul",
|
|
17145
|
+
o("ul", ib, [
|
|
17111
17146
|
(a(!0), r(w, null, P(i.listOfFiles, (p, b) => (a(), r("li", {
|
|
17112
17147
|
key: b,
|
|
17113
17148
|
class: "flex-container flex-items-flex-none"
|
|
@@ -17118,7 +17153,7 @@ function vb(e, t, n, s, i, l) {
|
|
|
17118
17153
|
onClick: k((S) => l.removeFile(b), ["prevent"])
|
|
17119
17154
|
}, [
|
|
17120
17155
|
f(u, T({ ref_for: !0 }, n.iconDelete), null, 16)
|
|
17121
|
-
], 8,
|
|
17156
|
+
], 8, lb),
|
|
17122
17157
|
o("span", {
|
|
17123
17158
|
class: x([
|
|
17124
17159
|
"text-align-right",
|
|
@@ -17129,13 +17164,13 @@ function vb(e, t, n, s, i, l) {
|
|
|
17129
17164
|
F(g(p.file.name) + " ", 1),
|
|
17130
17165
|
o("small", null, "(" + g(l.formatSize(p.file.size)) + ")", 1)
|
|
17131
17166
|
], 2),
|
|
17132
|
-
i.uploadInitiated && !p.error ? (a(), r("span",
|
|
17167
|
+
i.uploadInitiated && !p.error ? (a(), r("span", ob, [
|
|
17133
17168
|
o("span", null, g(l.getPercentage(p.progress)), 1),
|
|
17134
17169
|
o("progress", {
|
|
17135
17170
|
max: "100",
|
|
17136
17171
|
value: p.progress,
|
|
17137
17172
|
title: l.formatSize(p.uploadedBytes) + "/" + l.formatSize(p.file.size)
|
|
17138
|
-
}, null, 8,
|
|
17173
|
+
}, null, 8, ab)
|
|
17139
17174
|
])) : m("", !0)
|
|
17140
17175
|
]))), 128))
|
|
17141
17176
|
]),
|
|
@@ -17144,7 +17179,7 @@ function vb(e, t, n, s, i, l) {
|
|
|
17144
17179
|
href: "#",
|
|
17145
17180
|
onClick: t[1] || (t[1] = k((...p) => l.cancel && l.cancel(...p), ["prevent"])),
|
|
17146
17181
|
title: e.getMessage("upload_form.all_files_will_be_removed")
|
|
17147
|
-
}, g(e.getMessage("upload_form.reset_upload")), 9,
|
|
17182
|
+
}, g(e.getMessage("upload_form.reset_upload")), 9, sb)) : m("", !0),
|
|
17148
17183
|
t[9] || (t[9] = o("hr", null, null, -1))
|
|
17149
17184
|
])
|
|
17150
17185
|
])) : (a(), r(w, { key: 0 }, [
|
|
@@ -17155,7 +17190,7 @@ function vb(e, t, n, s, i, l) {
|
|
|
17155
17190
|
_: 1
|
|
17156
17191
|
}, 16)) : m("", !0)
|
|
17157
17192
|
], 64)),
|
|
17158
|
-
o("div",
|
|
17193
|
+
o("div", rb, [
|
|
17159
17194
|
n.allowMultipleFileUploads && i.listOfFiles.length ? (a(), C(d, T({ key: 0 }, n.cmdHeadlineSelectAdditionalFiles, { headlineLevel: "4" }), {
|
|
17160
17195
|
default: v(() => [
|
|
17161
17196
|
F(g(e.getMessage("upload_form.headline.select_additional_files")), 1)
|
|
@@ -17168,7 +17203,7 @@ function vb(e, t, n, s, i, l) {
|
|
|
17168
17203
|
]),
|
|
17169
17204
|
_: 1
|
|
17170
17205
|
}, 16)) : m("", !0),
|
|
17171
|
-
o("dl",
|
|
17206
|
+
o("dl", db, [
|
|
17172
17207
|
n.maxTotalUploadSize > 0 ? (a(), r(w, { key: 0 }, [
|
|
17173
17208
|
o("dt", {
|
|
17174
17209
|
class: x({ error: l.totalSize > n.maxTotalUploadSize })
|
|
@@ -17196,10 +17231,10 @@ function vb(e, t, n, s, i, l) {
|
|
|
17196
17231
|
iconClass: i.showListOfFileExtensions ? n.iconInvisible.iconClass : n.iconVisible.iconClass,
|
|
17197
17232
|
type: i.showListOfFileExtensions ? n.iconInvisible.iconType : n.iconVisible.iconType
|
|
17198
17233
|
}, null, 8, ["iconClass", "type"])
|
|
17199
|
-
], 8,
|
|
17234
|
+
], 8, ub),
|
|
17200
17235
|
f(pe, { name: n.transitionListOfFileExtensions }, {
|
|
17201
17236
|
default: v(() => [
|
|
17202
|
-
i.showListOfFileExtensions ? (a(), r("ul",
|
|
17237
|
+
i.showListOfFileExtensions ? (a(), r("ul", cb, [
|
|
17203
17238
|
(a(!0), r(w, null, P(n.allowedFileExtensions, (p, b) => (a(), r("li", {
|
|
17204
17239
|
key: b,
|
|
17205
17240
|
class: x({ error: i.errors.fileType })
|
|
@@ -17211,7 +17246,7 @@ function vb(e, t, n, s, i, l) {
|
|
|
17211
17246
|
])
|
|
17212
17247
|
])
|
|
17213
17248
|
]),
|
|
17214
|
-
o("div",
|
|
17249
|
+
o("div", mb, [
|
|
17215
17250
|
o("button", {
|
|
17216
17251
|
type: "button",
|
|
17217
17252
|
class: x(["button upload primary", { disabled: i.uploadInitiated }]),
|
|
@@ -17222,8 +17257,8 @@ function vb(e, t, n, s, i, l) {
|
|
|
17222
17257
|
iconClass: n.iconFileUpload.iconClass,
|
|
17223
17258
|
type: n.iconFileUpload.iconType
|
|
17224
17259
|
}, null, 8, ["iconClass", "type"]),
|
|
17225
|
-
n.allowMultipleFileUploads ? (a(), r("span",
|
|
17226
|
-
], 10,
|
|
17260
|
+
n.allowMultipleFileUploads ? (a(), r("span", fb, g(e.getMessage("upload_form.labeltext.select_files")), 1)) : (a(), r("span", hb, g(e.getMessage("upload_form.labeltext.select_file")), 1))
|
|
17261
|
+
], 10, pb),
|
|
17227
17262
|
n.enableDragAndDrop ? (a(), r("p", {
|
|
17228
17263
|
key: 0,
|
|
17229
17264
|
class: x(["text-drag-and-drop", { disabled: i.uploadInitiated }])
|
|
@@ -17253,7 +17288,7 @@ function vb(e, t, n, s, i, l) {
|
|
|
17253
17288
|
placeholder: e.getMessage("upload_form.placeholder.comment"),
|
|
17254
17289
|
status: n.commentStatusMessage ? "error" : ""
|
|
17255
17290
|
}, null, 8, ["labelText", "modelValue", "required", "validationMessage", "placeholder", "status"])) : m("", !0),
|
|
17256
|
-
o("div",
|
|
17291
|
+
o("div", gb, [
|
|
17257
17292
|
o("button", {
|
|
17258
17293
|
class: x([
|
|
17259
17294
|
"button primary",
|
|
@@ -17265,8 +17300,8 @@ function vb(e, t, n, s, i, l) {
|
|
|
17265
17300
|
onClick: t[5] || (t[5] = (...p) => l.uploadFiles && l.uploadFiles(...p))
|
|
17266
17301
|
}, [
|
|
17267
17302
|
f(u, A(ce(n.iconUpload)), null, 16),
|
|
17268
|
-
i.listOfFiles.length === 1 || !n.allowMultipleFileUploads ? (a(), r("span",
|
|
17269
|
-
], 10,
|
|
17303
|
+
i.listOfFiles.length === 1 || !n.allowMultipleFileUploads ? (a(), r("span", bb, g(e.getMessage("upload_form.buttontext.upload_file")), 1)) : (a(), r("span", xb, g(e.getMessage("upload_form.buttontext.upload_files")), 1))
|
|
17304
|
+
], 10, yb),
|
|
17270
17305
|
o("button", {
|
|
17271
17306
|
class: x(["button", { disabled: i.listOfFiles.length === 0 }]),
|
|
17272
17307
|
onClick: t[6] || (t[6] = (...p) => l.cancel && l.cancel(...p))
|
|
@@ -17281,13 +17316,13 @@ function vb(e, t, n, s, i, l) {
|
|
|
17281
17316
|
onClick: t[7] || (t[7] = k((...p) => l.selectFiles && l.selectFiles(...p), ["prevent"])),
|
|
17282
17317
|
class: ["cmd-upload-form box", { "drop-area": n.enableDragAndDrop, "allow-drop": i.allowDrop }]
|
|
17283
17318
|
}, Ct(l.dragAndDropHandler, !0)), [
|
|
17284
|
-
i.uploadInitiated ? (a(), r("span",
|
|
17319
|
+
i.uploadInitiated ? (a(), r("span", Cb, [
|
|
17285
17320
|
o("span", null, g(l.getPercentage(l.totalUploadProgress)), 1),
|
|
17286
17321
|
o("progress", {
|
|
17287
17322
|
max: "100",
|
|
17288
17323
|
value: l.totalUploadProgress,
|
|
17289
17324
|
title: l.totalBytesUploaded
|
|
17290
|
-
}, null, 8,
|
|
17325
|
+
}, null, 8, vb)
|
|
17291
17326
|
])) : m("", !0),
|
|
17292
17327
|
D(e.$slots, "default", {}, () => [
|
|
17293
17328
|
n.enableDragAndDrop ? (a(), r(w, { key: 1 }, [
|
|
@@ -17326,7 +17361,7 @@ function vb(e, t, n, s, i, l) {
|
|
|
17326
17361
|
}, null, 8, ["labelText", "disabled", "multiple", "onChange"])
|
|
17327
17362
|
], 64);
|
|
17328
17363
|
}
|
|
17329
|
-
const
|
|
17364
|
+
const wb = /* @__PURE__ */ B(Ky, [["render", kb]]), Tb = {
|
|
17330
17365
|
name: "CmdWidthLimitationWrapper",
|
|
17331
17366
|
props: {
|
|
17332
17367
|
/**
|
|
@@ -17432,8 +17467,8 @@ const kb = /* @__PURE__ */ B(Gy, [["render", vb]]), wb = {
|
|
|
17432
17467
|
return e.length === 1 && typeof e[0].type == "symbol" && Array.isArray(e[0].children) ? e[0].children.length === 1 : e.length === 1;
|
|
17433
17468
|
}
|
|
17434
17469
|
}
|
|
17435
|
-
},
|
|
17436
|
-
function
|
|
17470
|
+
}, Sb = ["id"], _b = ["id"];
|
|
17471
|
+
function Ob(e, t, n, s, i, l) {
|
|
17437
17472
|
const d = U;
|
|
17438
17473
|
return a(), r("div", {
|
|
17439
17474
|
class: x(["cmd-width-limitation-wrapper", { sticky: n.sticky }]),
|
|
@@ -17451,16 +17486,16 @@ function _b(e, t, n, s, i, l) {
|
|
|
17451
17486
|
}, [
|
|
17452
17487
|
D(e.$slots, "default")
|
|
17453
17488
|
], 2))
|
|
17454
|
-
], 10,
|
|
17489
|
+
], 10, Sb)) : (a(), r(w, { key: 1 }, [
|
|
17455
17490
|
n.anchorId ? (a(), r("a", {
|
|
17456
17491
|
key: 0,
|
|
17457
17492
|
id: n.anchorId
|
|
17458
|
-
}, null, 8,
|
|
17493
|
+
}, null, 8, _b)) : m("", !0),
|
|
17459
17494
|
D(e.$slots, "default")
|
|
17460
17495
|
], 64))
|
|
17461
17496
|
], 2);
|
|
17462
17497
|
}
|
|
17463
|
-
const il = /* @__PURE__ */ B(
|
|
17498
|
+
const il = /* @__PURE__ */ B(Tb, [["render", Ob]]), Lb = {
|
|
17464
17499
|
name: "ComponentSettings",
|
|
17465
17500
|
data() {
|
|
17466
17501
|
return {
|
|
@@ -17550,7 +17585,7 @@ const il = /* @__PURE__ */ B(wb, [["render", _b]]), Ob = {
|
|
|
17550
17585
|
}
|
|
17551
17586
|
}
|
|
17552
17587
|
};
|
|
17553
|
-
function
|
|
17588
|
+
function Ib(e, t, n, s, i, l) {
|
|
17554
17589
|
const d = K, c = Xt;
|
|
17555
17590
|
return a(), C(c, {
|
|
17556
17591
|
"use-slots": ["body"],
|
|
@@ -17576,7 +17611,7 @@ function Lb(e, t, n, s, i, l) {
|
|
|
17576
17611
|
_: 1
|
|
17577
17612
|
}, 8, ["cmdHeadline"]);
|
|
17578
17613
|
}
|
|
17579
|
-
const
|
|
17614
|
+
const Bb = /* @__PURE__ */ B(Lb, [["render", Ib]]), Db = {
|
|
17580
17615
|
name: "MultipleBoxWrapper",
|
|
17581
17616
|
props: {
|
|
17582
17617
|
segments: {
|
|
@@ -17584,10 +17619,10 @@ const Ib = /* @__PURE__ */ B(Ob, [["render", Lb]]), Bb = {
|
|
|
17584
17619
|
default: null
|
|
17585
17620
|
}
|
|
17586
17621
|
}
|
|
17587
|
-
},
|
|
17588
|
-
function
|
|
17622
|
+
}, Fb = { class: "cmd-page-multiple-box-wrapper flex-container vertical" };
|
|
17623
|
+
function Pb(e, t, n, s, i, l) {
|
|
17589
17624
|
const d = Xt, c = vi;
|
|
17590
|
-
return a(), r("div",
|
|
17625
|
+
return a(), r("div", Fb, [
|
|
17591
17626
|
(a(!0), r(w, null, P(n.segments, (u, h) => (a(), r(w, { key: h }, [
|
|
17592
17627
|
f(c, T({ ref_for: !0 }, u), {
|
|
17593
17628
|
default: v((p) => [
|
|
@@ -17609,7 +17644,7 @@ function Fb(e, t, n, s, i, l) {
|
|
|
17609
17644
|
], 64))), 128))
|
|
17610
17645
|
]);
|
|
17611
17646
|
}
|
|
17612
|
-
const
|
|
17647
|
+
const Mb = /* @__PURE__ */ B(Db, [["render", Pb]]), Vb = {
|
|
17613
17648
|
name: "MultipleListsOfLinks",
|
|
17614
17649
|
props: {
|
|
17615
17650
|
segments: {
|
|
@@ -17617,10 +17652,10 @@ const Pb = /* @__PURE__ */ B(Bb, [["render", Fb]]), Mb = {
|
|
|
17617
17652
|
default: null
|
|
17618
17653
|
}
|
|
17619
17654
|
}
|
|
17620
|
-
},
|
|
17621
|
-
function
|
|
17655
|
+
}, Ab = { class: "cmd-page-multiple-lists-of-links flex-container vertical" };
|
|
17656
|
+
function Eb(e, t, n, s, i, l) {
|
|
17622
17657
|
const d = Zt;
|
|
17623
|
-
return a(), r("div",
|
|
17658
|
+
return a(), r("div", Ab, [
|
|
17624
17659
|
(a(!0), r(w, null, P(n.segments, (c, u) => (a(), r(w, { key: u }, [
|
|
17625
17660
|
f(d, {
|
|
17626
17661
|
links: c.links,
|
|
@@ -17632,7 +17667,7 @@ function Ab(e, t, n, s, i, l) {
|
|
|
17632
17667
|
], 64))), 128))
|
|
17633
17668
|
]);
|
|
17634
17669
|
}
|
|
17635
|
-
const
|
|
17670
|
+
const Hb = /* @__PURE__ */ B(Vb, [["render", Eb]]), qb = {
|
|
17636
17671
|
name: "ContactInformation",
|
|
17637
17672
|
props: {
|
|
17638
17673
|
/**
|
|
@@ -17665,22 +17700,22 @@ const Eb = /* @__PURE__ */ B(Mb, [["render", Ab]]), Hb = {
|
|
|
17665
17700
|
return !this.$scopedSlots["custom-info"];
|
|
17666
17701
|
}
|
|
17667
17702
|
}
|
|
17668
|
-
},
|
|
17703
|
+
}, Rb = {
|
|
17669
17704
|
key: 1,
|
|
17670
17705
|
class: "flex-container"
|
|
17671
|
-
},
|
|
17672
|
-
function
|
|
17706
|
+
}, jb = { class: "flex-container vertical" };
|
|
17707
|
+
function Ub(e, t, n, s, i, l) {
|
|
17673
17708
|
const d = xi, c = hi, u = Oi;
|
|
17674
|
-
return l.contactFormOnly ? (a(), C(d, A(T({ key: 0 }, e.basicForm)), null, 16)) : (a(), r("div",
|
|
17709
|
+
return l.contactFormOnly ? (a(), C(d, A(T({ key: 0 }, e.basicForm)), null, 16)) : (a(), r("div", Rb, [
|
|
17675
17710
|
f(d, A(ce(e.basicForm)), null, 16),
|
|
17676
|
-
o("div",
|
|
17711
|
+
o("div", jb, [
|
|
17677
17712
|
n.cmdAddressData ? (a(), C(c, A(T({ key: 0 }, n.cmdAddressData)), null, 16)) : m("", !0),
|
|
17678
17713
|
n.cmdGoogleMaps ? (a(), C(u, A(T({ key: 1 }, n.cmdGoogleMaps)), null, 16)) : m("", !0),
|
|
17679
17714
|
D(e.$slots, "additional-info")
|
|
17680
17715
|
])
|
|
17681
17716
|
]));
|
|
17682
17717
|
}
|
|
17683
|
-
const
|
|
17718
|
+
const Nb = /* @__PURE__ */ B(qb, [["render", Ub]]), ll = [
|
|
17684
17719
|
{
|
|
17685
17720
|
name: "company",
|
|
17686
17721
|
iconClass: "icon-company",
|
|
@@ -17746,7 +17781,7 @@ const Ub = /* @__PURE__ */ B(Hb, [["render", jb]]), ll = [
|
|
|
17746
17781
|
data: "Custom data",
|
|
17747
17782
|
labelText: "Custom"
|
|
17748
17783
|
}
|
|
17749
|
-
],
|
|
17784
|
+
], zb = [
|
|
17750
17785
|
{
|
|
17751
17786
|
boxesPerRow: 4,
|
|
17752
17787
|
useRowViewAsDefault: !0,
|
|
@@ -17794,7 +17829,7 @@ const Ub = /* @__PURE__ */ B(Hb, [["render", jb]]), ll = [
|
|
|
17794
17829
|
}
|
|
17795
17830
|
]
|
|
17796
17831
|
}
|
|
17797
|
-
],
|
|
17832
|
+
], Wb = [
|
|
17798
17833
|
{
|
|
17799
17834
|
boxesPerRow: 4,
|
|
17800
17835
|
useRowViewAsDefault: !0,
|
|
@@ -18095,7 +18130,7 @@ const Ub = /* @__PURE__ */ B(Hb, [["render", jb]]), ll = [
|
|
|
18095
18130
|
}
|
|
18096
18131
|
]
|
|
18097
18132
|
}
|
|
18098
|
-
],
|
|
18133
|
+
], Gb = [
|
|
18099
18134
|
{
|
|
18100
18135
|
headline: {
|
|
18101
18136
|
headlineLevel: 4,
|
|
@@ -18150,7 +18185,7 @@ const Ub = /* @__PURE__ */ B(Hb, [["render", jb]]), ll = [
|
|
|
18150
18185
|
}
|
|
18151
18186
|
]
|
|
18152
18187
|
}
|
|
18153
|
-
],
|
|
18188
|
+
], Kb = [
|
|
18154
18189
|
{
|
|
18155
18190
|
headline: {
|
|
18156
18191
|
headlineLevel: 4,
|
|
@@ -18227,20 +18262,20 @@ const Ub = /* @__PURE__ */ B(Hb, [["render", jb]]), ll = [
|
|
|
18227
18262
|
}
|
|
18228
18263
|
]
|
|
18229
18264
|
}
|
|
18230
|
-
],
|
|
18265
|
+
], Yb = {
|
|
18231
18266
|
name: "PageOverview",
|
|
18232
18267
|
data() {
|
|
18233
18268
|
return {
|
|
18234
18269
|
addressData: ll,
|
|
18235
|
-
faqsData:
|
|
18236
|
-
boxesTeamOverviewData:
|
|
18237
|
-
listOfDownloadsData:
|
|
18238
|
-
listOfSiteLinksData:
|
|
18270
|
+
faqsData: zb,
|
|
18271
|
+
boxesTeamOverviewData: Wb,
|
|
18272
|
+
listOfDownloadsData: Gb,
|
|
18273
|
+
listOfSiteLinksData: Kb
|
|
18239
18274
|
};
|
|
18240
18275
|
}
|
|
18241
18276
|
};
|
|
18242
|
-
function
|
|
18243
|
-
const d =
|
|
18277
|
+
function Jb(e, t, n, s, i, l) {
|
|
18278
|
+
const d = Nb, c = il, u = Hb, h = Mb;
|
|
18244
18279
|
return a(), r(w, null, [
|
|
18245
18280
|
f(c, null, {
|
|
18246
18281
|
default: v(() => [
|
|
@@ -18297,7 +18332,7 @@ function Yb(e, t, n, s, i, l) {
|
|
|
18297
18332
|
})
|
|
18298
18333
|
], 64);
|
|
18299
18334
|
}
|
|
18300
|
-
const ol = /* @__PURE__ */ B(
|
|
18335
|
+
const ol = /* @__PURE__ */ B(Yb, [["render", Jb]]), Zb = {
|
|
18301
18336
|
name: "CmdParagraph",
|
|
18302
18337
|
props: {
|
|
18303
18338
|
/**
|
|
@@ -18331,14 +18366,14 @@ const ol = /* @__PURE__ */ B(Kb, [["render", Yb]]), Jb = {
|
|
|
18331
18366
|
}
|
|
18332
18367
|
}
|
|
18333
18368
|
}
|
|
18334
|
-
},
|
|
18335
|
-
function
|
|
18369
|
+
}, Qb = ["innerHTML"];
|
|
18370
|
+
function Xb(e, t, n, s, i, l) {
|
|
18336
18371
|
return a(), r("p", {
|
|
18337
18372
|
class: x(["cmd-paragraph", "text-align-" + n.textAlign, "column-count-" + n.numberOfColumns]),
|
|
18338
18373
|
innerHTML: n.content
|
|
18339
|
-
}, null, 10,
|
|
18374
|
+
}, null, 10, Qb);
|
|
18340
18375
|
}
|
|
18341
|
-
const
|
|
18376
|
+
const $b = /* @__PURE__ */ B(Zb, [["render", Xb]]), ex = {
|
|
18342
18377
|
data() {
|
|
18343
18378
|
return {
|
|
18344
18379
|
defaultMessageProperties: {
|
|
@@ -18351,14 +18386,14 @@ const Xb = /* @__PURE__ */ B(Jb, [["render", Qb]]), $b = {
|
|
|
18351
18386
|
};
|
|
18352
18387
|
}
|
|
18353
18388
|
};
|
|
18354
|
-
function
|
|
18389
|
+
function Mk(e = !1) {
|
|
18355
18390
|
return e ? (/* @__PURE__ */ new Date()).toISOString() : (/* @__PURE__ */ new Date()).toISOString().split("T")[0];
|
|
18356
18391
|
}
|
|
18357
|
-
function
|
|
18392
|
+
function Vk() {
|
|
18358
18393
|
const e = /* @__PURE__ */ new Date(), t = String(e.getHours()).padStart(2, "0"), n = String(e.getMinutes()).padStart(2, "0");
|
|
18359
18394
|
return t + ":" + n;
|
|
18360
18395
|
}
|
|
18361
|
-
function
|
|
18396
|
+
function Ak(e, t = "+", n = 1) {
|
|
18362
18397
|
const s = new Date(e);
|
|
18363
18398
|
if (t === "+")
|
|
18364
18399
|
s.setDate(s.getDate() + n);
|
|
@@ -18368,7 +18403,7 @@ function Vk(e, t = "+", n = 1) {
|
|
|
18368
18403
|
throw new Error("function 'getDate()' received invalid operator as parameter. Use '+' to add or '-' to subtract days.");
|
|
18369
18404
|
return s;
|
|
18370
18405
|
}
|
|
18371
|
-
function
|
|
18406
|
+
function Ek(e, t = "short") {
|
|
18372
18407
|
const n = new Date(e), s = ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], i = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
|
|
18373
18408
|
if (t === "short")
|
|
18374
18409
|
return s[n.getDay()];
|
|
@@ -18393,7 +18428,7 @@ function al(e, t = "dmy", n = ".") {
|
|
|
18393
18428
|
}
|
|
18394
18429
|
return c;
|
|
18395
18430
|
}
|
|
18396
|
-
function
|
|
18431
|
+
function tx(e = "00:00", t = 24, n = "h") {
|
|
18397
18432
|
const [s, i] = e.split(":");
|
|
18398
18433
|
let l = parseInt(s, 10), d = "";
|
|
18399
18434
|
if (t = t.toString(), t === "12") {
|
|
@@ -18405,9 +18440,9 @@ function ex(e = "00:00", t = 24, n = "h") {
|
|
|
18405
18440
|
throw new Error("function 'formatTime()' received invalid format as parameter. Provide format-parameter as 12 or 24.");
|
|
18406
18441
|
}
|
|
18407
18442
|
}
|
|
18408
|
-
const
|
|
18443
|
+
const nx = {
|
|
18409
18444
|
name: "CmdMailToolEntry",
|
|
18410
|
-
mixins: [
|
|
18445
|
+
mixins: [Q, ex],
|
|
18411
18446
|
data() {
|
|
18412
18447
|
return {
|
|
18413
18448
|
expandMail: /* @__PURE__ */ new Set(),
|
|
@@ -18491,7 +18526,7 @@ const tx = {
|
|
|
18491
18526
|
return al(e, this.dateFormat, this.dateSeparator);
|
|
18492
18527
|
},
|
|
18493
18528
|
mailFormatTime(e) {
|
|
18494
|
-
return
|
|
18529
|
+
return tx(e, this.timeFormat);
|
|
18495
18530
|
},
|
|
18496
18531
|
readMail(e) {
|
|
18497
18532
|
this.mailIsRead.add(e), this.expandMail.add(e);
|
|
@@ -18506,17 +18541,17 @@ const tx = {
|
|
|
18506
18541
|
this.expandMail.has(e) ? this.expandMail.delete(e) : this.expandMail.add(e);
|
|
18507
18542
|
}
|
|
18508
18543
|
}
|
|
18509
|
-
},
|
|
18510
|
-
function
|
|
18544
|
+
}, ix = ["title"], lx = { class: "flex-none" }, ox = { class: "flex-container" }, ax = { class: "sender-receiver-wrapper flex-container no-wrap-on-small-devices align-items-center flex-none" }, sx = { class: "contact-full-name" }, rx = ["onClick"], dx = { class: "flex-container received-and-options-wrapper no-wrap-on-small-devices" }, ux = { class: "no-list-items date-time-wrapper" }, cx = { class: "flex-container no-wrap-on-small-devices" }, mx = ["datetime"], px = ["datetime"], fx = { class: "options-wrapper flex-container no-wrap-on-small-devices flex-none" }, hx = ["onClick"], gx = ["onClick", "title"], yx = ["onClick", "title"], bx = { key: 0 };
|
|
18545
|
+
function xx(e, t, n, s, i, l) {
|
|
18511
18546
|
const d = oe, c = ve;
|
|
18512
18547
|
return n.mails.length ? (a(!0), r(w, { key: 0 }, P(n.mails, (u, h) => (a(), r(w, { key: h }, [
|
|
18513
18548
|
o("div", {
|
|
18514
18549
|
class: x(["cmd-mail-tool-entry flex-container box", { unread: !i.mailIsRead.has(u.id) }]),
|
|
18515
18550
|
title: e.getMessage("mail_tool_entry.tooltip.read_this_mail")
|
|
18516
18551
|
}, [
|
|
18517
|
-
o("dl",
|
|
18518
|
-
o("dt",
|
|
18519
|
-
o("dd",
|
|
18552
|
+
o("dl", lx, [
|
|
18553
|
+
o("dt", ox, g(n.boxType === "inbox" ? e.getMessage("mail_tool_entry.description_label.from") : e.getMessage("mail_tool_entry.description_label.to")), 1),
|
|
18554
|
+
o("dd", ax, [
|
|
18520
18555
|
u.cmdImage?.src ? (a(), C(d, {
|
|
18521
18556
|
key: 0,
|
|
18522
18557
|
src: u.cmdImage.src,
|
|
@@ -18524,36 +18559,36 @@ function bx(e, t, n, s, i, l) {
|
|
|
18524
18559
|
title: u.cmdImage.title || u.contactFullName,
|
|
18525
18560
|
useFigureTag: !1
|
|
18526
18561
|
}, null, 8, ["src", "alt", "title"])) : m("", !0),
|
|
18527
|
-
o("span",
|
|
18562
|
+
o("span", sx, g(u.contactFullName), 1)
|
|
18528
18563
|
]),
|
|
18529
18564
|
o("dt", null, g(e.getMessage("mail_tool_entry.description_label.subject")), 1),
|
|
18530
18565
|
o("dd", null, [
|
|
18531
18566
|
o("a", {
|
|
18532
18567
|
href: "#",
|
|
18533
18568
|
onClick: k((p) => l.readMail(u.id), ["prevent"])
|
|
18534
|
-
}, g(u.subject), 9,
|
|
18569
|
+
}, g(u.subject), 9, rx)
|
|
18535
18570
|
])
|
|
18536
18571
|
]),
|
|
18537
|
-
o("div",
|
|
18538
|
-
o("dl",
|
|
18572
|
+
o("div", dx, [
|
|
18573
|
+
o("dl", ux, [
|
|
18539
18574
|
o("dt", null, g(e.getMessage("mail_tool_entry.description_label.received")), 1),
|
|
18540
|
-
o("dd",
|
|
18575
|
+
o("dd", cx, [
|
|
18541
18576
|
o("time", {
|
|
18542
18577
|
datetime: u.isoDate
|
|
18543
|
-
}, g(l.mailFormatDate(u.isoDate)), 9,
|
|
18578
|
+
}, g(l.mailFormatDate(u.isoDate)), 9, mx),
|
|
18544
18579
|
o("time", {
|
|
18545
18580
|
datetime: u.time
|
|
18546
|
-
}, g(l.mailFormatTime(u.time)), 9,
|
|
18581
|
+
}, g(l.mailFormatTime(u.time)), 9, px)
|
|
18547
18582
|
])
|
|
18548
18583
|
]),
|
|
18549
|
-
o("div",
|
|
18584
|
+
o("div", fx, [
|
|
18550
18585
|
o("a", {
|
|
18551
18586
|
href: "#",
|
|
18552
18587
|
onClick: k((p) => l.deleteMail(u.id), ["prevent"]),
|
|
18553
18588
|
title: "Delete this mail"
|
|
18554
18589
|
}, [...t[0] || (t[0] = [
|
|
18555
18590
|
o("span", { class: "icon-delete" }, null, -1)
|
|
18556
|
-
])], 8,
|
|
18591
|
+
])], 8, hx),
|
|
18557
18592
|
o("a", {
|
|
18558
18593
|
href: "#",
|
|
18559
18594
|
onClick: k((p) => l.toggleReadStatus(u.id), ["prevent"]),
|
|
@@ -18562,7 +18597,7 @@ function bx(e, t, n, s, i, l) {
|
|
|
18562
18597
|
o("span", {
|
|
18563
18598
|
class: x(i.mailIsRead.has(u.id) ? "icon-visible" : "icon-not-visible")
|
|
18564
18599
|
}, null, 2)
|
|
18565
|
-
], 8,
|
|
18600
|
+
], 8, gx),
|
|
18566
18601
|
o("a", {
|
|
18567
18602
|
href: "#",
|
|
18568
18603
|
onClick: k((p) => l.toggleExpandMail(u.id), ["prevent"]),
|
|
@@ -18571,16 +18606,16 @@ function bx(e, t, n, s, i, l) {
|
|
|
18571
18606
|
o("span", {
|
|
18572
18607
|
class: x(i.expandMail.has(u.id) ? "icon-chevron-one-stripe-up" : "icon-chevron-one-stripe-down")
|
|
18573
18608
|
}, null, 2)
|
|
18574
|
-
], 8,
|
|
18609
|
+
], 8, yx)
|
|
18575
18610
|
])
|
|
18576
18611
|
])
|
|
18577
|
-
], 10,
|
|
18578
|
-
i.expandMail.has(u.id) ? (a(), r("div",
|
|
18612
|
+
], 10, ix),
|
|
18613
|
+
i.expandMail.has(u.id) ? (a(), r("div", bx, [
|
|
18579
18614
|
o("header", null, " mailId: " + g(u.id), 1)
|
|
18580
18615
|
])) : m("", !0)
|
|
18581
18616
|
], 64))), 128)) : (a(), C(c, A(T({ key: 1 }, n.cmdSystemMessage)), null, 16));
|
|
18582
18617
|
}
|
|
18583
|
-
const
|
|
18618
|
+
const Cx = /* @__PURE__ */ B(nx, [["render", xx]]), vx = {
|
|
18584
18619
|
name: "CmdMailToolFilter",
|
|
18585
18620
|
data() {
|
|
18586
18621
|
return {
|
|
@@ -18696,16 +18731,16 @@ const xx = /* @__PURE__ */ B(tx, [["render", bx]]), Cx = {
|
|
|
18696
18731
|
immediate: !0
|
|
18697
18732
|
}
|
|
18698
18733
|
}
|
|
18699
|
-
},
|
|
18700
|
-
function
|
|
18734
|
+
}, kx = { class: "cmd-mail-tool-filter" }, wx = { class: "flex-container align-items-center" }, Tx = { class: "flex-container reset-flex" }, Sx = { class: "flex-container sort-wrapper" }, _x = ["title"], Ox = { key: 0 }, Lx = ["title"], Ix = { key: 0 };
|
|
18735
|
+
function Bx(e, t, n, s, i, l) {
|
|
18701
18736
|
const d = U, c = K;
|
|
18702
|
-
return a(), r("div",
|
|
18737
|
+
return a(), r("div", kx, [
|
|
18703
18738
|
l.headlineText ? (a(), C(d, {
|
|
18704
18739
|
key: 0,
|
|
18705
18740
|
headlineText: l.headlineText,
|
|
18706
18741
|
headlineLevel: l.headlineLevel
|
|
18707
18742
|
}, null, 8, ["headlineText", "headlineLevel"])) : m("", !0),
|
|
18708
|
-
o("div",
|
|
18743
|
+
o("div", wx, [
|
|
18709
18744
|
f(c, {
|
|
18710
18745
|
element: "input",
|
|
18711
18746
|
type: "search",
|
|
@@ -18717,7 +18752,7 @@ function Ix(e, t, n, s, i, l) {
|
|
|
18717
18752
|
modelValue: i.searchFilterText,
|
|
18718
18753
|
"onUpdate:modelValue": t[0] || (t[0] = (u) => i.searchFilterText = u)
|
|
18719
18754
|
}, null, 8, ["placeholder", "id", "labelText", "modelValue"]),
|
|
18720
|
-
o("div",
|
|
18755
|
+
o("div", Tx, [
|
|
18721
18756
|
f(c, {
|
|
18722
18757
|
element: "input",
|
|
18723
18758
|
type: "checkbox",
|
|
@@ -18740,34 +18775,34 @@ function Ix(e, t, n, s, i, l) {
|
|
|
18740
18775
|
}, null, 8, ["id", "labelText", "modelValue", "inputValue"])
|
|
18741
18776
|
])
|
|
18742
18777
|
]),
|
|
18743
|
-
o("div",
|
|
18778
|
+
o("div", Sx, [
|
|
18744
18779
|
i.sortOrderAsc ? (a(), r("a", {
|
|
18745
18780
|
key: 0,
|
|
18746
18781
|
href: "#",
|
|
18747
18782
|
onClick: t[3] || (t[3] = k((u) => l.sortByDate("asc"), ["prevent"])),
|
|
18748
18783
|
title: n.linkSortAscending.title
|
|
18749
18784
|
}, [
|
|
18750
|
-
n.linkSortAscending.text ? (a(), r("span",
|
|
18785
|
+
n.linkSortAscending.text ? (a(), r("span", Ox, g(n.linkSortAscending.text), 1)) : m("", !0),
|
|
18751
18786
|
n.linkSortAscending.iconClass ? (a(), r("span", {
|
|
18752
18787
|
key: 1,
|
|
18753
18788
|
class: x(n.linkSortAscending.iconClass)
|
|
18754
18789
|
}, null, 2)) : m("", !0)
|
|
18755
|
-
], 8,
|
|
18790
|
+
], 8, _x)) : (a(), r("a", {
|
|
18756
18791
|
key: 1,
|
|
18757
18792
|
href: "#",
|
|
18758
18793
|
onClick: t[4] || (t[4] = k((u) => l.sortByDate("desc"), ["prevent"])),
|
|
18759
18794
|
title: n.linkSortDescending.title
|
|
18760
18795
|
}, [
|
|
18761
|
-
n.linkSortDescending.text ? (a(), r("span",
|
|
18796
|
+
n.linkSortDescending.text ? (a(), r("span", Ix, g(n.linkSortDescending.text), 1)) : m("", !0),
|
|
18762
18797
|
n.linkSortDescending.iconClass ? (a(), r("span", {
|
|
18763
18798
|
key: 1,
|
|
18764
18799
|
class: x(n.linkSortDescending.iconClass)
|
|
18765
18800
|
}, null, 2)) : m("", !0)
|
|
18766
|
-
], 8,
|
|
18801
|
+
], 8, Lx))
|
|
18767
18802
|
])
|
|
18768
18803
|
]);
|
|
18769
18804
|
}
|
|
18770
|
-
const
|
|
18805
|
+
const Dx = /* @__PURE__ */ B(vx, [["render", Bx]]), Fx = {
|
|
18771
18806
|
name: "CmdMailTool",
|
|
18772
18807
|
data() {
|
|
18773
18808
|
return {
|
|
@@ -18865,8 +18900,8 @@ const Bx = /* @__PURE__ */ B(Cx, [["render", Ix]]), Dx = {
|
|
|
18865
18900
|
}
|
|
18866
18901
|
}
|
|
18867
18902
|
};
|
|
18868
|
-
function
|
|
18869
|
-
const d =
|
|
18903
|
+
function Px(e, t, n, s, i, l) {
|
|
18904
|
+
const d = Dx, c = Cx, u = Fi;
|
|
18870
18905
|
return a(), C(u, T({ class: "cmd-mail-tool" }, n.cmdTabs), {
|
|
18871
18906
|
"tab-content-0": v(() => [
|
|
18872
18907
|
f(d, T(n.cmdMailToolFilterInbox, {
|
|
@@ -18885,7 +18920,7 @@ function Fx(e, t, n, s, i, l) {
|
|
|
18885
18920
|
_: 1
|
|
18886
18921
|
}, 16);
|
|
18887
18922
|
}
|
|
18888
|
-
const
|
|
18923
|
+
const Mx = /* @__PURE__ */ B(Fx, [["render", Px]]), Vx = [
|
|
18889
18924
|
{
|
|
18890
18925
|
text: "Account owner:",
|
|
18891
18926
|
value: "Company name",
|
|
@@ -18906,7 +18941,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
18906
18941
|
value: "PBNKDEFF",
|
|
18907
18942
|
allowCopy: !0
|
|
18908
18943
|
}
|
|
18909
|
-
],
|
|
18944
|
+
], Ax = [
|
|
18910
18945
|
{
|
|
18911
18946
|
name: "User name 1",
|
|
18912
18947
|
age: 35,
|
|
@@ -19069,7 +19104,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19069
19104
|
}
|
|
19070
19105
|
]
|
|
19071
19106
|
}
|
|
19072
|
-
],
|
|
19107
|
+
], Ex = [
|
|
19073
19108
|
{
|
|
19074
19109
|
name: "Product name 1",
|
|
19075
19110
|
image: {
|
|
@@ -19133,18 +19168,18 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19133
19168
|
price: 123.49,
|
|
19134
19169
|
description: "short description text"
|
|
19135
19170
|
}
|
|
19136
|
-
],
|
|
19137
|
-
breadcrumbLabel:
|
|
19138
|
-
breadcrumbLinks:
|
|
19139
|
-
},
|
|
19140
|
-
link:
|
|
19141
|
-
pathDefaultLogo:
|
|
19142
|
-
pathDarkmodeLogo:
|
|
19143
|
-
altText:
|
|
19144
|
-
},
|
|
19145
|
-
required:
|
|
19146
|
-
optional:
|
|
19147
|
-
},
|
|
19171
|
+
], Hx = "Page levels:", qx = [{ path: "/", text: "Home", iconClass: "icon-home", type: "href" }, { path: "/subpage", text: "Subpage", type: "href" }, { path: "/subpage/subsubpage", text: "Subsubpage", type: "href" }], Rx = {
|
|
19172
|
+
breadcrumbLabel: Hx,
|
|
19173
|
+
breadcrumbLinks: qx
|
|
19174
|
+
}, jx = { type: "href", path: "./", tooltip: "Tooltip" }, Ux = "/media/images/logos/logo.svg", Nx = "/media/images/logos/logo-darkmode.svg", zx = "Company Logo", Wx = {
|
|
19175
|
+
link: jx,
|
|
19176
|
+
pathDefaultLogo: Ux,
|
|
19177
|
+
pathDarkmodeLogo: Nx,
|
|
19178
|
+
altText: zx
|
|
19179
|
+
}, Gx = { cookies: [{ id: "cookie-sessionid", value: "sessionid", description: "This cookie is required for functionality", labelText: "SessionID", disabled: !0, linkDataPrivacy: { label: "Details for this cookie:", link: "/content/data-privacy-en.html", linkText: "Open data privacy" } }, { id: "cookie-google-recaptcha", value: "google-recaptcha", description: "This cookie prevents bots from sending forms", labelText: "Google reCaptcha™", disabled: !0, linkDataPrivacy: { label: "Details for this cookie:", link: "https://policies.google.com/privacy?hl=en-US", target: "_blank", linkText: "Open data privacy from Google" } }] }, Kx = { cookies: [{ id: "cookie-google-maps", value: "google-maps", description: "This cookie enables the Google Map™", labelText: "Google Maps™", disabled: !1, linkDataPrivacy: { label: "Details for this cookie:", link: "https://policies.google.com/privacy?hl=en-US", target: "_blank", linkText: "Open data privacy from Google" } }, { id: "cookie-google-analytics", value: "google-analytics", description: "This cookie collects anonymous data for statistics and improvements", labelText: "Google Analytics™", linkDataPrivacy: { label: "Details for this cookie:", link: "https://policies.google.com/privacy?hl=en-US", target: "_blank", linkText: "Open data privacy from Google" } }] }, Yx = {
|
|
19180
|
+
required: Gx,
|
|
19181
|
+
optional: Kx
|
|
19182
|
+
}, Jx = [
|
|
19148
19183
|
{
|
|
19149
19184
|
value: "",
|
|
19150
19185
|
text: "Please select..."
|
|
@@ -19169,7 +19204,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19169
19204
|
value: "#000000",
|
|
19170
19205
|
text: "Black"
|
|
19171
19206
|
}
|
|
19172
|
-
],
|
|
19207
|
+
], Zx = [
|
|
19173
19208
|
{
|
|
19174
19209
|
value: "cn",
|
|
19175
19210
|
text: "China"
|
|
@@ -19227,7 +19262,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19227
19262
|
text: "Filter 3",
|
|
19228
19263
|
value: "3"
|
|
19229
19264
|
}
|
|
19230
|
-
],
|
|
19265
|
+
], Qx = [
|
|
19231
19266
|
{
|
|
19232
19267
|
text: "Option 1",
|
|
19233
19268
|
value: 1
|
|
@@ -19241,7 +19276,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19241
19276
|
value: 3,
|
|
19242
19277
|
iconClass: "icon-mail"
|
|
19243
19278
|
}
|
|
19244
|
-
],
|
|
19279
|
+
], Xx = [
|
|
19245
19280
|
{
|
|
19246
19281
|
element: "input",
|
|
19247
19282
|
type: "text",
|
|
@@ -19462,7 +19497,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19462
19497
|
}
|
|
19463
19498
|
]
|
|
19464
19499
|
}
|
|
19465
|
-
],
|
|
19500
|
+
], $x = [
|
|
19466
19501
|
{
|
|
19467
19502
|
image: {
|
|
19468
19503
|
src: "/media/images/demo-images/medium/landscape-01.jpg",
|
|
@@ -19516,10 +19551,10 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19516
19551
|
textAlign: "center"
|
|
19517
19552
|
}
|
|
19518
19553
|
}
|
|
19519
|
-
],
|
|
19520
|
-
imageSmall:
|
|
19521
|
-
imageLarge:
|
|
19522
|
-
},
|
|
19554
|
+
], eC = { image: { src: "/media/images/demo-images/small/landscape-06.jpg", alt: "Alternative text", tooltip: "Tooltip" }, figcaption: { position: "top", text: "Figcaption above image (centered)", textAlign: "center" } }, tC = { image: { src: "/media/images/demo-images/landscape-2x.jpg", alt: "Alternative text", tooltip: "Tooltip" }, figcaption: { position: "top", text: "Figcaption above image (centered)", textAlign: "center" } }, nC = {
|
|
19555
|
+
imageSmall: eC,
|
|
19556
|
+
imageLarge: tC
|
|
19557
|
+
}, iC = [
|
|
19523
19558
|
{
|
|
19524
19559
|
image: {
|
|
19525
19560
|
url: "#",
|
|
@@ -19577,7 +19612,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19577
19612
|
textAlign: "center"
|
|
19578
19613
|
}
|
|
19579
19614
|
}
|
|
19580
|
-
],
|
|
19615
|
+
], lC = [
|
|
19581
19616
|
{
|
|
19582
19617
|
labelText: "Website",
|
|
19583
19618
|
id: "radio-id-1",
|
|
@@ -19599,7 +19634,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19599
19634
|
iconClass: "icon-phone",
|
|
19600
19635
|
value: "phone"
|
|
19601
19636
|
}
|
|
19602
|
-
],
|
|
19637
|
+
], oC = [
|
|
19603
19638
|
{
|
|
19604
19639
|
labelText: "Website",
|
|
19605
19640
|
id: "replaced-radio-id-1",
|
|
@@ -19621,7 +19656,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19621
19656
|
iconClass: "icon-phone",
|
|
19622
19657
|
value: "phone"
|
|
19623
19658
|
}
|
|
19624
|
-
],
|
|
19659
|
+
], aC = [
|
|
19625
19660
|
{
|
|
19626
19661
|
labelText: "Website",
|
|
19627
19662
|
id: "toggle-switch-radio-id-1",
|
|
@@ -19643,7 +19678,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19643
19678
|
iconClass: "icon-phone",
|
|
19644
19679
|
value: "phone"
|
|
19645
19680
|
}
|
|
19646
|
-
],
|
|
19681
|
+
], sC = [
|
|
19647
19682
|
{
|
|
19648
19683
|
icon: {
|
|
19649
19684
|
iconClass: "icon-user-profile",
|
|
@@ -19713,30 +19748,29 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19713
19748
|
target: "_blank",
|
|
19714
19749
|
tooltip: "Open CoManD-Website in new tab"
|
|
19715
19750
|
}
|
|
19716
|
-
],
|
|
19717
|
-
text:
|
|
19718
|
-
icons:
|
|
19719
|
-
},
|
|
19751
|
+
], rC = [{ descriptionTerm: { text: "Description Term #1" }, descriptionData: { text: "Description Data #1" } }, { descriptionTerm: { text: "Description Term #2" }, descriptionData: { text: "Description Data #2" } }, { descriptionTerm: { text: "Description Term #3" }, descriptionData: { text: "Description Data #3" } }], dC = [{ descriptionTerm: { cmdIcon: { show: !0, iconClass: "icon-home", tooltip: "Href with anchor" } }, descriptionData: { cmdLink: { linkType: "href", text: "Description data in link ", path: "#anchor-back-to-top" } } }, { descriptionTerm: { cmdIcon: { show: !0, iconClass: "icon-user-profile", tooltip: "Href with anchor" } }, descriptionData: { text: "Data without link" } }, { descriptionTerm: { cmdIcon: { show: !0, iconClass: "icon-phone", tooltip: "Href with anchor" } }, descriptionData: { cmdLink: { linkType: "href", text: "Description data in link", path: "#anchor-back-to-top" } } }], uC = {
|
|
19752
|
+
text: rC,
|
|
19753
|
+
icons: dC
|
|
19754
|
+
}, cC = [
|
|
19720
19755
|
"Tag 1",
|
|
19721
19756
|
"Tag 2",
|
|
19722
19757
|
"Tag 3"
|
|
19723
|
-
],
|
|
19724
|
-
pathFlags:
|
|
19725
|
-
languages:
|
|
19726
|
-
},
|
|
19727
|
-
inbox:
|
|
19728
|
-
outbox:
|
|
19729
|
-
},
|
|
19730
|
-
withIcon:
|
|
19731
|
-
withoutIcon:
|
|
19732
|
-
router:
|
|
19733
|
-
},
|
|
19758
|
+
], mC = "https://comand-ui.com/samples/images/flags", pC = [{ iso2: "de", name: "Deutsch", tooltip: "Sprache zu deutsch wechseln", link: { type: "href", path: "/" } }, { iso2: "en", name: "English", tooltip: "Switch language to English", link: { type: "href", path: "/" } }, { iso2: "es", name: "Español", tooltip: "cambiar el idioma a español", link: { type: "href", path: "/" } }], fC = {
|
|
19759
|
+
pathFlags: mC,
|
|
19760
|
+
languages: pC
|
|
19761
|
+
}, hC = [{ id: 1, cmdImage: { src: "/media/images/user-images/fake-user-1.jpg", alt: "User image" }, contactFullName: "Name Sender #1", subject: "This is the subject of this mail #1", isoDate: "2025-02-20", time: "19:39" }, { id: 2, cmdImage: { src: "/media/images/user-images/fake-user-2.jpg", alt: "User image" }, contactFullName: "Name Sender #2", subject: "This is the subject of this mail #2", isoDate: "2025-02-20", time: "21:08" }], gC = [{ id: 3, cmdImage: { src: "/media/images/user-images/fake-user-2.jpg", alt: "User image" }, contactFullName: "Name Receiver #1", subject: "This is the subject of this mail #1", isoDate: "2025-02-20", time: "19:41" }, { id: 4, cmdImage: { src: "/media/images/user-images/fake-user-3.jpg", alt: "User image" }, contactFullName: "Name Receiver #2", subject: "This is the subject of this mail #2", isoDate: "2025-02-21", time: "15:55" }], yC = {
|
|
19762
|
+
inbox: hC,
|
|
19763
|
+
outbox: gC
|
|
19764
|
+
}, bC = [{ linkType: "href", path: "#", text: "Contact", tooltip: "This is a tooltip for step 1", iconClass: "icon-address" }, { linkType: "href", path: "#", text: "Settings", iconClass: "icon-configuration" }, { linkType: "href", path: "#", text: "Attachments", iconClass: "icon-attachment" }, { linkType: "href", path: "#", text: "Terms and Conditions", iconClass: "icon-section-sign" }, { linkType: "href", path: "#", text: "Summary", iconClass: "icon-rows" }], xC = [{ linkType: "href", path: "#", text: "Contact", tooltip: "This is a tooltip for step 1" }, { linkType: "href", path: "#", text: "Settings" }, { linkType: "href", path: "#", text: "Attachments" }, { linkType: "href", path: "#", text: "Terms and Conditions" }, { linkType: "href", path: "#", text: "Summary" }], CC = [{ linkType: "router", path: "#", text: "Contact", tooltip: "This is a tooltip for step 1" }, { linkType: "router", path: "#", text: "Settings" }, { linkType: "router", path: "#", text: "Attachments" }, { linkType: "router", path: "#", text: "Terms and Conditions" }, { linkType: "router", path: "#", text: "Summary", disabled: !0 }], vC = {
|
|
19765
|
+
withIcon: bC,
|
|
19766
|
+
withoutIcon: xC,
|
|
19767
|
+
router: CC
|
|
19768
|
+
}, kC = [
|
|
19734
19769
|
{
|
|
19735
19770
|
element: "input",
|
|
19736
19771
|
type: "text",
|
|
19737
19772
|
name: "form-element-text-surname",
|
|
19738
19773
|
htmlClass: "form-element-text-class",
|
|
19739
|
-
value: "",
|
|
19740
19774
|
labelText: "Surname",
|
|
19741
19775
|
placeholder: "Surname",
|
|
19742
19776
|
required: !0,
|
|
@@ -19747,18 +19781,18 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19747
19781
|
type: "text",
|
|
19748
19782
|
name: "form-element-text-first-name",
|
|
19749
19783
|
htmlClass: "form-element-text-class",
|
|
19750
|
-
value: "",
|
|
19784
|
+
value: "Raphael",
|
|
19751
19785
|
labelText: "First Name",
|
|
19752
19786
|
placeholder: "First Name",
|
|
19753
19787
|
required: !0,
|
|
19754
19788
|
disabled: !1
|
|
19755
19789
|
}
|
|
19756
|
-
],
|
|
19757
|
-
offcanvasPosition:
|
|
19758
|
-
stretchMainItems:
|
|
19759
|
-
persistOnMobile:
|
|
19760
|
-
navigationEntries:
|
|
19761
|
-
},
|
|
19790
|
+
], wC = "right", TC = !1, SC = !1, _C = [{ type: "href", text: "href 1", path: "#", iconClass: "icon-home" }, { type: "href", text: "href 2", path: "", subentries: [{ type: "href", text: "href 2.1", path: "", subentries: [{ type: "href", text: "href 2.1.1", path: "#" }, { type: "href", text: "href 2.1.2", path: "#" }, { type: "href", text: "href 2.1.3", path: "#" }] }, { type: "href", text: "href 2.2", path: "#", subentries: [] }] }, { type: "router", text: "router 1", path: "#" }, { type: "router", text: "router 2", path: "#", subentries: [{ type: "router", text: "router 2.1", path: { name: "home" } }, { type: "router", text: "router 2.2", path: { name: "home" } }] }, { type: "href", text: "CoManD-UI", path: "https://www.comand-ui.com", target: "comand-website" }], sl = {
|
|
19791
|
+
offcanvasPosition: wC,
|
|
19792
|
+
stretchMainItems: TC,
|
|
19793
|
+
persistOnMobile: SC,
|
|
19794
|
+
navigationEntries: _C
|
|
19795
|
+
}, OC = [
|
|
19762
19796
|
{
|
|
19763
19797
|
day: "Mondays",
|
|
19764
19798
|
am: {
|
|
@@ -19838,7 +19872,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19838
19872
|
tillTime: "18:00"
|
|
19839
19873
|
}
|
|
19840
19874
|
}
|
|
19841
|
-
],
|
|
19875
|
+
], LC = [
|
|
19842
19876
|
{
|
|
19843
19877
|
text: "Please select",
|
|
19844
19878
|
value: ""
|
|
@@ -19855,7 +19889,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19855
19889
|
text: "Optionname 3",
|
|
19856
19890
|
value: "3"
|
|
19857
19891
|
}
|
|
19858
|
-
],
|
|
19892
|
+
], IC = [
|
|
19859
19893
|
{
|
|
19860
19894
|
image: {
|
|
19861
19895
|
src: {
|
|
@@ -19940,13 +19974,13 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19940
19974
|
target: null
|
|
19941
19975
|
}
|
|
19942
19976
|
}
|
|
19943
|
-
],
|
|
19944
|
-
listOfRecommendations:
|
|
19945
|
-
cmdFormElement:
|
|
19946
|
-
},
|
|
19947
|
-
cmdFormElement:
|
|
19948
|
-
networks:
|
|
19949
|
-
},
|
|
19977
|
+
], BC = [{ id: 1, displayValue: "Option #1", icon: { iconClass: "icon-home" } }, { id: 2, displayValue: "Option #2", icon: { iconClass: "icon-company" } }, { id: 3, displayValue: "Option #3", icon: { iconClass: "icon-globe" } }], DC = { labelText: "Label for inputfield (search) with smart-search:" }, FC = {
|
|
19978
|
+
listOfRecommendations: BC,
|
|
19979
|
+
cmdFormElement: DC
|
|
19980
|
+
}, PC = { toggleSwitch: !0, labelText: "I accept that anonymous data will be send to the platform I share this page on and accept the <a href='/content/fancybox-content.html' class='fancybox'>Data Privacy</a>!", required: !0 }, MC = [{ buttonClass: "social-network-facebook", path: "https://www.facebook.com/sharer/sharer.php?u=", tooltip: "Share this page on facebook", iconClass: "icon-facebook", linkText: "Share" }, { buttonClass: "social-network-x", path: "https://twitter.com/home?status=", tooltip: "Share this page on X", iconClass: "icon-x", linkText: "Share" }, { buttonClass: "social-network-xing", path: "https://www.xing.com/spi/shares/new?sc_p=b7910_cb&url=", tooltip: "Share this page on xing", iconClass: "icon-xing", linkText: "Share" }, { buttonClass: "social-network-linkedin", path: "https://www.linkedin.com/cws/share?url=", tooltip: "Share this page on linkedin", iconClass: "icon-linkedin", linkText: "Share" }, { buttonClass: "social-network-instagram", path: "https://www.instagram.com/", tooltip: "Share this page on instagram", iconClass: "icon-instagram", linkText: "Share" }], VC = {
|
|
19981
|
+
cmdFormElement: PC,
|
|
19982
|
+
networks: MC
|
|
19983
|
+
}, AC = [
|
|
19950
19984
|
{
|
|
19951
19985
|
text: "Tab 1",
|
|
19952
19986
|
headlineText: "Tab 1 Headline",
|
|
@@ -19968,19 +20002,19 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
19968
20002
|
iconClass: "cmd:linkedin",
|
|
19969
20003
|
htmlContent: "<p>Content for Tab 3</p>"
|
|
19970
20004
|
}
|
|
19971
|
-
],
|
|
19972
|
-
caption:
|
|
19973
|
-
thead:
|
|
19974
|
-
tbody:
|
|
19975
|
-
tfoot:
|
|
19976
|
-
},
|
|
19977
|
-
caption:
|
|
19978
|
-
rowIndexHighlighted:
|
|
19979
|
-
columnIndexHighlighted:
|
|
19980
|
-
thead:
|
|
19981
|
-
tbody:
|
|
19982
|
-
tfoot:
|
|
19983
|
-
},
|
|
20005
|
+
], EC = { show: !0, text: "This is a caption for a small table" }, HC = ["Table head 1", "Table head 2", "Table head 3", "Table head 4", "Table head 5", "Table head 6", "Table head 7"], qC = [["Table data 1/1", "Table data 1/2", "Table data 1/3", "Table data 1/4", "Table data 1/5", "Table data 1/6", "Table data 1/7"], ["Table data 2/1", "Table data 2/2", "Table data 2/3", "Table data 2/4", "Table data 2/5", "Table data 2/6", "Table data 2/7"], ["Table data 3/1", "Table data 3/2", "Table data 3/3", "Table data 3/4", "Table data 3/5", "Table data 3/6", "Table data 3/7"], ["Table data 4/1", "Table data 4/2", "Table data 4/3", "Table data 4/4", "Table data 4/5", "Table data 4/6", "Table data 4/7"], ["Table data 5/1", "Table data 5/2", "Table data 5/3", "Table data 5/4", "Table data 5/5", "Table data 5/6", "Table data 5/7"], ["Table data 6/1", "Table data 6/2", "Table data 6/3", "Table data 6/4", "Table data 6/5", "Table data 6/6", "Table data 6/7"]], RC = ["Table foot 1", "Table foot 2", "Table foot 3", "Table foot 4", "Table foot 5", "Table foot 6", "Table foot 7"], jC = {
|
|
20006
|
+
caption: EC,
|
|
20007
|
+
thead: HC,
|
|
20008
|
+
tbody: qC,
|
|
20009
|
+
tfoot: RC
|
|
20010
|
+
}, UC = { show: !1, text: "This is a caption for a large table" }, NC = 3, zC = 4, WC = ["Table head 1", "Table head 2", "Table head 3", "Table head 4", "Table head 5", "Table head 6", "Table head 7", "Table head 8", "Table head 9", "Table head 10", "Table head 11", "Table head 12", "Table head 13", "Table head 15", "Table head 14"], GC = [["Table data 1/1", "Table data 1/2", "Table data 1/3", "Table data 1/4", "Table data 1/5", "Table data 1/6", "Table data 1/7", "Table data 1/8", "Table data 1/9", "Table data 1/10", "Table data 1/11", "Table data 1/12", "Table data 1/13", "Table data 1/14", "Table data 1/15"], ["Table data 2/1", "Table data 2/2", "Table data 2/3", "Table data 2/4", "Table data 2/5", "Table data 2/6", "Table data 2/7", "Table data 2/8", "Table data 2/9", "Table data 2/10", "Table data 2/11", "Table data 2/13", "Table data 2/13", "Table data 2/14", "Table data 2/15"], ["Table data 3/1", "Table data 3/2", "Table data 3/3", "Table data 3/4", "Table data 3/5", "Table data 3/6", "Table data 3/7", "Table data 3/8", "Table data 3/9", "Table data 3/10", "Table data 3/11", "Table data 3/12", "Table data 3/13", "Table data 3/14", "Table data 3/15"], ["Table data 4/1", "Table data 4/2", "Table data 4/3", "Table data 4/4", "Table data 4/5", "Table data 4/6", "Table data 4/7", "Table data 4/8", "Table data 4/9", "Table data 4/10", "Table data 4/11", "Table data 4/12", "Table data 4/13", "Table data 4/14", "Table data 4/15"], ["Table data 5/1", "Table data 5/2", "Table data 5/3", "Table data 5/4", "Table data 5/5", "Table data 5/6", "Table data 5/7", "Table data 5/8", "Table data 5/9", "Table data 5/10", "Table data 5/11", "Table data 5/12", "Table data 5/13", "Table data 5/14", "Table data 5/15"], ["Table data 6/1", "Table data 6/2", "Table data 6/3", "Table data 6/4", "Table data 6/5", "Table data 6/6", "Table data 6/7", "Table data 6/8", "Table data 6/9", "Table data 6/10", "Table data 6/11", "Table data 6/12", "Table data 6/13", "Table data 6/14", "Table data 6/15"]], KC = ["Table foot 1", "Table foot 2", "Table foot 3", "Table foot 4", "Table foot 5", "Table foot 6", "Table foot 7", "Table foot 8", "Table foot 9", "Table foot 10", "Table foot 11", "Table foot 12", "Table foot 13", "Table foot 14", "Table foot 15"], YC = {
|
|
20011
|
+
caption: UC,
|
|
20012
|
+
rowIndexHighlighted: NC,
|
|
20013
|
+
columnIndexHighlighted: zC,
|
|
20014
|
+
thead: WC,
|
|
20015
|
+
tbody: GC,
|
|
20016
|
+
tfoot: KC
|
|
20017
|
+
}, JC = [
|
|
19984
20018
|
{
|
|
19985
20019
|
image: {
|
|
19986
20020
|
url: "#",
|
|
@@ -20094,7 +20128,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
20094
20128
|
textAlign: "center"
|
|
20095
20129
|
}
|
|
20096
20130
|
}
|
|
20097
|
-
],
|
|
20131
|
+
], ZC = [
|
|
20098
20132
|
{
|
|
20099
20133
|
id: 1,
|
|
20100
20134
|
iconClass: "icon-home",
|
|
@@ -20136,7 +20170,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
20136
20170
|
text: "Item 8 with URL",
|
|
20137
20171
|
url: "http://www.comand-cms.com"
|
|
20138
20172
|
}
|
|
20139
|
-
],
|
|
20173
|
+
], QC = [
|
|
20140
20174
|
{
|
|
20141
20175
|
text: "Afghanistan",
|
|
20142
20176
|
value: "af"
|
|
@@ -20917,19 +20951,19 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
20917
20951
|
text: "Zimbabwe",
|
|
20918
20952
|
value: "zw"
|
|
20919
20953
|
}
|
|
20920
|
-
],
|
|
20921
|
-
name:
|
|
20922
|
-
version:
|
|
20923
|
-
license:
|
|
20924
|
-
author:
|
|
20954
|
+
], XC = "comand-component-library", $C = "4.2.96", e1 = "GPL-3.0-only", t1 = "CoManD-UI", n1 = "module", i1 = { prepublishOnly: "npm run build-lib", dev: "vite", build: "vite build", "build-lib": "vite build && gulp", preview: "vite preview" }, l1 = ["dist", "src"], o1 = { ".": "./dist/comand-component-library.js", "./css.js": "./src/css.js", "./comand-component-library.css": "./dist/comand-component-library.css", "./variables.scss": "./src/assets/styles/variables.scss", "./export-example-data.js": "./src/assets/data/export-example-data.js", "./countries.json": "./src/assets/lists-of-data/countries.json", "./currencies.json": "./src/assets/lists-of-data/currencies.json", "./dial-codes.json": "./src/assets/lists-of-data/dial-codes.json", "./us-cities.json": "./src/assets/lists-of-data/us-cities.json" }, a1 = { "clickout-event": "^1.1.2", "comand-frontend-framework": "^4.3.25", "comand-ui-iconfonts": "^1.0.19", "core-js": "^3.20.1", prismjs: "^1.27.0", vue: "^3.5.25", "vue-router": "^4.0.12", vuex: "^4.0.2" }, s1 = { "@iconify/vue": "^4.0.0", "@vitejs/plugin-vue": "^6.0.2", "@vue/test-utils": "^2.0.0-0", axios: "^1.7.2", gulp: "^4.0.2", sass: "^1.54.9", "unplugin-vue-components": "^0.24.0", vite: "^7.2.4", "vue-jest": "^5.0.0-0" }, r1 = {
|
|
20955
|
+
name: XC,
|
|
20956
|
+
version: $C,
|
|
20957
|
+
license: e1,
|
|
20958
|
+
author: t1,
|
|
20925
20959
|
private: !1,
|
|
20926
|
-
type:
|
|
20927
|
-
scripts:
|
|
20928
|
-
files:
|
|
20929
|
-
exports:
|
|
20930
|
-
dependencies:
|
|
20931
|
-
devDependencies:
|
|
20932
|
-
},
|
|
20960
|
+
type: n1,
|
|
20961
|
+
scripts: i1,
|
|
20962
|
+
files: l1,
|
|
20963
|
+
exports: o1,
|
|
20964
|
+
dependencies: a1,
|
|
20965
|
+
devDependencies: s1
|
|
20966
|
+
}, d1 = [
|
|
20933
20967
|
"AddressData",
|
|
20934
20968
|
"AdvancedFormElements",
|
|
20935
20969
|
"BankAccountData",
|
|
@@ -20980,7 +21014,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
20980
21014
|
"Tooltip",
|
|
20981
21015
|
"UploadForm",
|
|
20982
21016
|
"WidthLimitationWrapper"
|
|
20983
|
-
],
|
|
21017
|
+
], u1 = {
|
|
20984
21018
|
data() {
|
|
20985
21019
|
return {
|
|
20986
21020
|
cmdAddressDataSettingsData: {
|
|
@@ -22032,9 +22066,9 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
22032
22066
|
}
|
|
22033
22067
|
};
|
|
22034
22068
|
}
|
|
22035
|
-
}, Kn = "/media/images/content-images/landscape-medium.jpg",
|
|
22069
|
+
}, Kn = "/media/images/content-images/landscape-medium.jpg", c1 = "/media/images/demo-images/small/landscape-01.jpg", m1 = "/media/images/demo-images/small/landscape-02.jpg", p1 = "/media/images/demo-images/small/landscape-03.jpg", f1 = {
|
|
22036
22070
|
name: "App",
|
|
22037
|
-
mixins: [
|
|
22071
|
+
mixins: [u1],
|
|
22038
22072
|
components: {
|
|
22039
22073
|
PageOverview: ol
|
|
22040
22074
|
},
|
|
@@ -22052,7 +22086,7 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
22052
22086
|
selectedLanguage: "none",
|
|
22053
22087
|
fancyBoxCookieDisclaimer: !1,
|
|
22054
22088
|
componentNameForContainer: "CmdHeadline",
|
|
22055
|
-
listOfComponents:
|
|
22089
|
+
listOfComponents: d1,
|
|
22056
22090
|
activeEntry: "CmdAddressData",
|
|
22057
22091
|
basicFormData: {},
|
|
22058
22092
|
cmdCodeOutputSlotContent: "<p>This is text for the slot provided as string to not render the HTML.</p>",
|
|
@@ -22183,44 +22217,52 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
22183
22217
|
linkType: ""
|
|
22184
22218
|
}
|
|
22185
22219
|
},
|
|
22220
|
+
multistepFormDefaultInputValues: {
|
|
22221
|
+
1: {
|
|
22222
|
+
"form-element-text-surname": "Biock"
|
|
22223
|
+
},
|
|
22224
|
+
2: {
|
|
22225
|
+
"page-2-telephone": "12345/67890"
|
|
22226
|
+
}
|
|
22227
|
+
},
|
|
22186
22228
|
// assign data from json files to data-properties
|
|
22187
22229
|
addressData: ll,
|
|
22188
|
-
bankAccountData:
|
|
22189
|
-
boxProductData:
|
|
22190
|
-
boxUserData:
|
|
22191
|
-
breadcrumbsData:
|
|
22192
|
-
companyLogoData:
|
|
22193
|
-
cookieDisclaimerData:
|
|
22194
|
-
fakeSelectColorsData:
|
|
22195
|
-
fakeSelectCountriesData:
|
|
22230
|
+
bankAccountData: Vx,
|
|
22231
|
+
boxProductData: Ex,
|
|
22232
|
+
boxUserData: Ax,
|
|
22233
|
+
breadcrumbsData: Rx,
|
|
22234
|
+
companyLogoData: Wx,
|
|
22235
|
+
cookieDisclaimerData: Yx,
|
|
22236
|
+
fakeSelectColorsData: Jx,
|
|
22237
|
+
fakeSelectCountriesData: Zx,
|
|
22196
22238
|
fakeSelectFilterOptionsData: Gn,
|
|
22197
|
-
fakeSelectOptionsData:
|
|
22198
|
-
formElementsData:
|
|
22199
|
-
imageData:
|
|
22200
|
-
imageZoomData:
|
|
22201
|
-
imageGalleryData:
|
|
22202
|
-
inputGroupReplacedRadiobuttonsData:
|
|
22203
|
-
inputGroupToggleSwitchRadiobuttonsData:
|
|
22204
|
-
switchLanguage:
|
|
22205
|
-
listData:
|
|
22206
|
-
listOfTagsData:
|
|
22207
|
-
descriptionListData:
|
|
22208
|
-
multistepsData:
|
|
22209
|
-
multistepFormWrapperPage1Data:
|
|
22210
|
-
mailToolData:
|
|
22239
|
+
fakeSelectOptionsData: Qx,
|
|
22240
|
+
formElementsData: Xx,
|
|
22241
|
+
imageData: $x,
|
|
22242
|
+
imageZoomData: nC,
|
|
22243
|
+
imageGalleryData: iC,
|
|
22244
|
+
inputGroupReplacedRadiobuttonsData: oC,
|
|
22245
|
+
inputGroupToggleSwitchRadiobuttonsData: aC,
|
|
22246
|
+
switchLanguage: fC,
|
|
22247
|
+
listData: sC,
|
|
22248
|
+
listOfTagsData: cC,
|
|
22249
|
+
descriptionListData: uC,
|
|
22250
|
+
multistepsData: vC,
|
|
22251
|
+
multistepFormWrapperPage1Data: kC,
|
|
22252
|
+
mailToolData: yC,
|
|
22211
22253
|
navigationData: sl,
|
|
22212
|
-
openingHoursData:
|
|
22213
|
-
selectOptionsData:
|
|
22214
|
-
slideshowData:
|
|
22215
|
-
smartSearchData:
|
|
22216
|
-
socialNetworksData:
|
|
22217
|
-
tableDataSmall:
|
|
22218
|
-
tableDataLarge:
|
|
22219
|
-
tabsData:
|
|
22220
|
-
thumbnailScrollerImagesData:
|
|
22221
|
-
thumbnailScrollerTextData:
|
|
22222
|
-
allCountriesData:
|
|
22223
|
-
packageJson:
|
|
22254
|
+
openingHoursData: OC,
|
|
22255
|
+
selectOptionsData: LC,
|
|
22256
|
+
slideshowData: IC,
|
|
22257
|
+
smartSearchData: FC,
|
|
22258
|
+
socialNetworksData: VC,
|
|
22259
|
+
tableDataSmall: jC,
|
|
22260
|
+
tableDataLarge: YC,
|
|
22261
|
+
tabsData: AC,
|
|
22262
|
+
thumbnailScrollerImagesData: JC,
|
|
22263
|
+
thumbnailScrollerTextData: ZC,
|
|
22264
|
+
allCountriesData: QC,
|
|
22265
|
+
packageJson: r1
|
|
22224
22266
|
};
|
|
22225
22267
|
},
|
|
22226
22268
|
mounted() {
|
|
@@ -22327,10 +22369,10 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
22327
22369
|
e.originalEvent.preventDefault(), console.log(e);
|
|
22328
22370
|
},
|
|
22329
22371
|
localizedTime(e) {
|
|
22330
|
-
return (t, n) =>
|
|
22372
|
+
return (t, n) => uf(e)(t, n).toLowerCase();
|
|
22331
22373
|
},
|
|
22332
22374
|
idForReplacedInputsInInputGroup(e) {
|
|
22333
|
-
return
|
|
22375
|
+
return lC.map((t) => ({ ...t, id: e + t.id, name: e + t.name }));
|
|
22334
22376
|
},
|
|
22335
22377
|
closeCookieDisclaimer(e) {
|
|
22336
22378
|
this.fancyBoxCookieDisclaimer = !1, alert(e.join(", "));
|
|
@@ -22450,135 +22492,135 @@ const Px = /* @__PURE__ */ B(Dx, [["render", Fx]]), Mx = [
|
|
|
22450
22492
|
});
|
|
22451
22493
|
}
|
|
22452
22494
|
}
|
|
22453
|
-
},
|
|
22495
|
+
}, h1 = ["id"], g1 = { for: "select-template" }, y1 = { class: "input-wrapper" }, b1 = { for: "default-color-scheme" }, x1 = { for: "light-mode" }, C1 = { for: "dark-mode" }, v1 = ["href", "onClick"], k1 = { class: "box-footer comand-versions" }, w1 = { class: "closed-sidebar" }, T1 = {
|
|
22454
22496
|
key: 1,
|
|
22455
22497
|
id: "content"
|
|
22456
|
-
},
|
|
22498
|
+
}, S1 = {
|
|
22457
22499
|
class: "headline-demopage",
|
|
22458
22500
|
id: "section-address-data"
|
|
22459
|
-
},
|
|
22501
|
+
}, _1 = { class: "flex-container" }, O1 = { class: "flex-container" }, L1 = { class: "list-status" }, I1 = { class: "error" }, B1 = { class: "flex-container" }, D1 = { class: "headline-demopage" }, F1 = { class: "flex-container" }, P1 = { class: "flex-container" }, M1 = { class: "flex-container" }, V1 = { class: "flex-container" }, A1 = { class: "flex-container" }, E1 = { class: "headline-demopage" }, H1 = { class: "flex-container" }, q1 = { class: "flex-container flex-items-flex-none" }, R1 = {
|
|
22460
22502
|
class: "inline",
|
|
22461
22503
|
for: "range-value"
|
|
22462
|
-
},
|
|
22504
|
+
}, j1 = ["disabled"], U1 = { for: "range-slider" }, N1 = ["disabled"], z1 = { class: "label inline" }, W1 = { class: "flex-container flex-items-flex-none" }, G1 = { class: "label inline" }, K1 = { class: "flex-container flex-items-flex-none" }, Y1 = { class: "label inline" }, J1 = { class: "flex-container flex-items-flex-none" }, Z1 = { class: "label inline" }, Q1 = { class: "flex-container flex-items-flex-none" }, X1 = {
|
|
22463
22505
|
class: "headline-demopage",
|
|
22464
22506
|
id: "section-input-group"
|
|
22465
|
-
},
|
|
22507
|
+
}, $1 = { class: "flex-container" }, ev = { class: "button-wrapper flex-none" }, tv = ["disabled"], nv = {
|
|
22466
22508
|
class: "headline-demopage",
|
|
22467
22509
|
id: "section-bank-account-data"
|
|
22468
|
-
},
|
|
22510
|
+
}, iv = {
|
|
22469
22511
|
class: "headline-demopage",
|
|
22470
22512
|
id: "section-basic-form"
|
|
22471
|
-
},
|
|
22513
|
+
}, lv = { class: "headline-demopage" }, ov = { class: "navigation" }, av = {
|
|
22472
22514
|
class: "headline-demopage",
|
|
22473
22515
|
id: "section-breadcrumbs"
|
|
22474
|
-
},
|
|
22516
|
+
}, sv = {
|
|
22475
22517
|
class: "headline-demopage",
|
|
22476
22518
|
id: "section-code-output"
|
|
22477
|
-
},
|
|
22519
|
+
}, rv = {
|
|
22478
22520
|
class: "headline-demopage",
|
|
22479
22521
|
id: "section-company-logo"
|
|
22480
|
-
},
|
|
22522
|
+
}, dv = {
|
|
22481
22523
|
class: "headline-demopage",
|
|
22482
22524
|
id: "section-container"
|
|
22483
|
-
},
|
|
22525
|
+
}, uv = {
|
|
22484
22526
|
class: "headline-demopage",
|
|
22485
22527
|
id: "section-headlines"
|
|
22486
|
-
},
|
|
22528
|
+
}, cv = {
|
|
22487
22529
|
class: "headline-demopage",
|
|
22488
22530
|
id: "section-image"
|
|
22489
|
-
},
|
|
22531
|
+
}, mv = { class: "flex-container" }, pv = {
|
|
22490
22532
|
class: "headline-demopage",
|
|
22491
22533
|
id: "section-image-gallery"
|
|
22492
|
-
},
|
|
22534
|
+
}, fv = {
|
|
22493
22535
|
class: "headline-demopage",
|
|
22494
22536
|
id: "section-link"
|
|
22495
|
-
},
|
|
22537
|
+
}, hv = { class: "output" }, gv = {
|
|
22496
22538
|
class: "headline-demopage",
|
|
22497
22539
|
id: "section-list"
|
|
22498
|
-
},
|
|
22540
|
+
}, yv = { class: "output" }, bv = { class: "flex-container" }, xv = { class: "flex-container" }, Cv = {
|
|
22499
22541
|
class: "headline-demopage",
|
|
22500
22542
|
id: "section-login-form"
|
|
22501
|
-
},
|
|
22543
|
+
}, vv = {
|
|
22502
22544
|
class: "headline-demopage",
|
|
22503
22545
|
id: "section-main-navigation"
|
|
22504
|
-
},
|
|
22546
|
+
}, kv = {
|
|
22505
22547
|
class: "headline-demopage",
|
|
22506
22548
|
id: "section-multistep-form-progress-bar"
|
|
22507
|
-
},
|
|
22549
|
+
}, wv = {
|
|
22508
22550
|
class: "headline-demopage",
|
|
22509
22551
|
id: "section-multistep-form-wrapper"
|
|
22510
|
-
},
|
|
22552
|
+
}, Tv = ["onClick"], Sv = ["onClick"], _v = ["onClick"], Ov = { class: "input-wrapper" }, Lv = { class: "flex-container" }, Iv = ["onClick"], Bv = { key: 0 }, Dv = ["onClick"], Fv = { key: 0 }, Pv = ["onClick"], Mv = { key: 0 }, Vv = { key: 0 }, Av = { key: 0 }, Ev = { class: "button-wrapper reverse justify-content-space-between" }, Hv = {
|
|
22511
22553
|
class: "headline-demopage",
|
|
22512
22554
|
id: "section-newsletter-subscription"
|
|
22513
|
-
},
|
|
22555
|
+
}, qv = {
|
|
22514
22556
|
class: "headline-demopage",
|
|
22515
22557
|
id: "section-opening-hours"
|
|
22516
|
-
},
|
|
22558
|
+
}, Rv = {
|
|
22517
22559
|
class: "headline-demopage",
|
|
22518
22560
|
id: "section-page-footer"
|
|
22519
|
-
},
|
|
22561
|
+
}, jv = {
|
|
22520
22562
|
class: "headline-demopage",
|
|
22521
22563
|
id: "section-page-header"
|
|
22522
|
-
},
|
|
22564
|
+
}, Uv = {
|
|
22523
22565
|
class: "headline-demopage",
|
|
22524
22566
|
id: "section-pagination"
|
|
22525
|
-
},
|
|
22567
|
+
}, Nv = {
|
|
22526
22568
|
class: "headline-demopage",
|
|
22527
22569
|
id: "section-paragraph"
|
|
22528
|
-
},
|
|
22570
|
+
}, zv = {
|
|
22529
22571
|
class: "headline-demopage",
|
|
22530
22572
|
id: "section-section"
|
|
22531
|
-
},
|
|
22573
|
+
}, Wv = {
|
|
22532
22574
|
class: "headline-demopage",
|
|
22533
22575
|
id: "section-site-header"
|
|
22534
|
-
},
|
|
22576
|
+
}, Gv = {
|
|
22535
22577
|
class: "headline-demopage",
|
|
22536
22578
|
id: "section-site-search"
|
|
22537
|
-
},
|
|
22579
|
+
}, Kv = {
|
|
22538
22580
|
class: "headline-demopage",
|
|
22539
22581
|
id: "section-slideshow"
|
|
22540
|
-
},
|
|
22582
|
+
}, Yv = {
|
|
22541
22583
|
class: "headline-demopage",
|
|
22542
22584
|
id: "section-smart-search"
|
|
22543
|
-
},
|
|
22585
|
+
}, Jv = {
|
|
22544
22586
|
class: "headline-demopage",
|
|
22545
22587
|
id: "section-social-networks"
|
|
22546
|
-
},
|
|
22588
|
+
}, Zv = {
|
|
22547
22589
|
class: "headline-demopage",
|
|
22548
22590
|
id: "section-system-message"
|
|
22549
|
-
},
|
|
22591
|
+
}, Qv = {
|
|
22550
22592
|
class: "headline-demopage",
|
|
22551
22593
|
id: "section-tables"
|
|
22552
|
-
},
|
|
22594
|
+
}, Xv = {
|
|
22553
22595
|
class: "headline-demopage",
|
|
22554
22596
|
id: "section-tabs"
|
|
22555
|
-
},
|
|
22597
|
+
}, $v = {
|
|
22556
22598
|
class: "headline-demopage",
|
|
22557
22599
|
id: "section-tag"
|
|
22558
|
-
},
|
|
22600
|
+
}, ek = {
|
|
22559
22601
|
class: "headline-demopage",
|
|
22560
22602
|
id: "section-text-image-block"
|
|
22561
|
-
},
|
|
22603
|
+
}, tk = { class: "flex-container" }, nk = {
|
|
22562
22604
|
class: "headline-demopage",
|
|
22563
22605
|
id: "section-thumbnail-scroller"
|
|
22564
|
-
},
|
|
22606
|
+
}, ik = { class: "inline-size" }, lk = {
|
|
22565
22607
|
class: "headline-demopage",
|
|
22566
22608
|
id: "section-toggle-dark-mode"
|
|
22567
|
-
},
|
|
22609
|
+
}, ok = {
|
|
22568
22610
|
class: "headline-demopage",
|
|
22569
22611
|
id: "section-tooltip"
|
|
22570
|
-
},
|
|
22612
|
+
}, ak = {
|
|
22571
22613
|
class: "headline-demopage",
|
|
22572
22614
|
id: "section-upload-form"
|
|
22573
|
-
},
|
|
22615
|
+
}, sk = {
|
|
22574
22616
|
class: "headline-demopage",
|
|
22575
22617
|
id: "section-width-limitation-wrapper"
|
|
22576
|
-
},
|
|
22618
|
+
}, rk = {
|
|
22577
22619
|
key: 2,
|
|
22578
22620
|
id: "content"
|
|
22579
22621
|
};
|
|
22580
|
-
function
|
|
22581
|
-
const d = Xt, c = vi, u =
|
|
22622
|
+
function dk(e, t, n, s, i, l) {
|
|
22623
|
+
const d = Xt, c = vi, u = oh, h = Zt, p = wi, b = ph, S = il, L = hi, I = Ti, O = K, V = Mh, q = Jt, N = Yf, j = Yt, Y = gi, ge = or, H = mr, W = xi, se = ki, ke = Ec, ee = Wc, dl = Cm, ul = Oi, Re = U, Le = R, on = oe, cl = Em, ml = Nm, te = he, pl = sp, fl = Mx, hl = Li, gl = de("router-view"), an = Bi, rt = ve, sn = zp, yl = Jp, bl = kf, xl = Af, Cl = jf, vl = Ii, kl = $b, dt = Xf, rn = dh, wl = wh, Tl = Bh, Sl = Di, _l = jh, dn = Xh, Ol = Fi, Ll = Ci, ut = fg, Il = yi, Bl = bg, ct = pi, Dl = wb, Fl = ol, Pl = hm, Ml = cm, Vl = Xd, Al = Bb, El = Ul("fancybox");
|
|
22582
22624
|
return z((a(), r("div", {
|
|
22583
22625
|
class: "page-wrapper",
|
|
22584
22626
|
id: l.templateId
|
|
@@ -22607,7 +22649,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22607
22649
|
onToggleCollapse: (M) => y.boxToggled(0, M)
|
|
22608
22650
|
}, {
|
|
22609
22651
|
body: v(() => [
|
|
22610
|
-
o("label",
|
|
22652
|
+
o("label", g1, [
|
|
22611
22653
|
t[135] || (t[135] = o("span", null, "Select template", -1)),
|
|
22612
22654
|
z(o("select", {
|
|
22613
22655
|
id: "select-template",
|
|
@@ -22622,8 +22664,8 @@ function rk(e, t, n, s, i, l) {
|
|
|
22622
22664
|
]),
|
|
22623
22665
|
o("div", null, [
|
|
22624
22666
|
t[139] || (t[139] = o("span", null, "Color Scheme", -1)),
|
|
22625
|
-
o("div",
|
|
22626
|
-
o("label",
|
|
22667
|
+
o("div", y1, [
|
|
22668
|
+
o("label", b1, [
|
|
22627
22669
|
z(o("input", {
|
|
22628
22670
|
type: "radio",
|
|
22629
22671
|
id: "default-color-scheme",
|
|
@@ -22635,7 +22677,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22635
22677
|
]),
|
|
22636
22678
|
t[136] || (t[136] = o("span", { class: "label-text" }, "Color-Scheme by Browser/OS", -1))
|
|
22637
22679
|
]),
|
|
22638
|
-
o("label",
|
|
22680
|
+
o("label", x1, [
|
|
22639
22681
|
z(o("input", {
|
|
22640
22682
|
type: "radio",
|
|
22641
22683
|
id: "light-mode",
|
|
@@ -22647,7 +22689,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22647
22689
|
]),
|
|
22648
22690
|
t[137] || (t[137] = o("span", { class: "label-text" }, "Light Mode", -1))
|
|
22649
22691
|
]),
|
|
22650
|
-
o("label",
|
|
22692
|
+
o("label", C1, [
|
|
22651
22693
|
z(o("input", {
|
|
22652
22694
|
type: "radio",
|
|
22653
22695
|
id: "dark-mode",
|
|
@@ -22680,9 +22722,9 @@ function rk(e, t, n, s, i, l) {
|
|
|
22680
22722
|
}, [
|
|
22681
22723
|
o("a", {
|
|
22682
22724
|
href: l.sectionName(M),
|
|
22683
|
-
onClick: (
|
|
22725
|
+
onClick: (fk) => l.updateSettingsSidebar(l.componentNameWithPrefix(M)),
|
|
22684
22726
|
title: "Go to component"
|
|
22685
|
-
}, g(l.readableComponentName(M)), 9,
|
|
22727
|
+
}, g(l.readableComponentName(M)), 9, v1)
|
|
22686
22728
|
], 2))), 128))
|
|
22687
22729
|
])
|
|
22688
22730
|
]),
|
|
@@ -22744,7 +22786,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22744
22786
|
]),
|
|
22745
22787
|
_: 1
|
|
22746
22788
|
}, 8, ["openBoxesByDefault"]),
|
|
22747
|
-
o("dl",
|
|
22789
|
+
o("dl", k1, [
|
|
22748
22790
|
t[142] || (t[142] = o("dt", null, "Frontend-Framework Version:", -1)),
|
|
22749
22791
|
o("dd", null, g(i.packageJson.dependencies["comand-frontend-framework"].replace("^", "")), 1),
|
|
22750
22792
|
t[143] || (t[143] = o("dt", null, "Component-Library Version:", -1)),
|
|
@@ -22752,7 +22794,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22752
22794
|
])
|
|
22753
22795
|
]),
|
|
22754
22796
|
closed: v(() => [
|
|
22755
|
-
o("div",
|
|
22797
|
+
o("div", w1, [
|
|
22756
22798
|
o("a", {
|
|
22757
22799
|
href: "#",
|
|
22758
22800
|
class: "button primary",
|
|
@@ -22800,7 +22842,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22800
22842
|
]),
|
|
22801
22843
|
_: 1
|
|
22802
22844
|
}),
|
|
22803
|
-
i.componentView ? (a(), r("main",
|
|
22845
|
+
i.componentView ? (a(), r("main", T1, [
|
|
22804
22846
|
f(S, null, {
|
|
22805
22847
|
default: v(() => [...t[148] || (t[148] = [
|
|
22806
22848
|
o("h1", { class: "headline-demopage" }, "Components Overview", -1)
|
|
@@ -22809,7 +22851,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22809
22851
|
}),
|
|
22810
22852
|
f(S, null, {
|
|
22811
22853
|
default: v(() => [
|
|
22812
|
-
o("h2",
|
|
22854
|
+
o("h2", S1, [
|
|
22813
22855
|
t[149] || (t[149] = o("span", null, "Address Data", -1)),
|
|
22814
22856
|
o("a", {
|
|
22815
22857
|
href: "#",
|
|
@@ -22818,8 +22860,8 @@ function rk(e, t, n, s, i, l) {
|
|
|
22818
22860
|
onClick: t[13] || (t[13] = k((y) => l.openSettingsSidebar("CmdAddressData"), ["prevent"]))
|
|
22819
22861
|
})
|
|
22820
22862
|
]),
|
|
22821
|
-
o("div",
|
|
22822
|
-
f(
|
|
22863
|
+
o("div", _1, [
|
|
22864
|
+
f(L, T({
|
|
22823
22865
|
ref: "CmdAddressData",
|
|
22824
22866
|
addressData: i.addressData
|
|
22825
22867
|
}, e.cmdAddressDataSettingsData), null, 16, ["addressData"])
|
|
@@ -22836,8 +22878,8 @@ function rk(e, t, n, s, i, l) {
|
|
|
22836
22878
|
t[183] || (t[183] = o("h3", null, [
|
|
22837
22879
|
o("span", null, "Form elements status:")
|
|
22838
22880
|
], -1)),
|
|
22839
|
-
o("div",
|
|
22840
|
-
o("ul",
|
|
22881
|
+
o("div", O1, [
|
|
22882
|
+
o("ul", L1, [
|
|
22841
22883
|
o("li", null, [
|
|
22842
22884
|
o("a", {
|
|
22843
22885
|
href: "#",
|
|
@@ -22846,7 +22888,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22846
22888
|
id: "status-default"
|
|
22847
22889
|
}, " Default ", 2)
|
|
22848
22890
|
]),
|
|
22849
|
-
o("li",
|
|
22891
|
+
o("li", I1, [
|
|
22850
22892
|
o("a", {
|
|
22851
22893
|
href: "#",
|
|
22852
22894
|
onClick: t[15] || (t[15] = k((y) => l.setStatus("error", !1), ["prevent"])),
|
|
@@ -22888,7 +22930,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22888
22930
|
])
|
|
22889
22931
|
])
|
|
22890
22932
|
]),
|
|
22891
|
-
f(
|
|
22933
|
+
f(I, {
|
|
22892
22934
|
modelValue: i.fakeSelectFilters,
|
|
22893
22935
|
"onUpdate:modelValue": t[20] || (t[20] = (y) => i.fakeSelectFilters = y),
|
|
22894
22936
|
selectedOptionsName: l.getOptionName
|
|
@@ -22899,9 +22941,9 @@ function rk(e, t, n, s, i, l) {
|
|
|
22899
22941
|
novalidate: "novalidate"
|
|
22900
22942
|
}, {
|
|
22901
22943
|
default: v(() => [
|
|
22902
|
-
o("fieldset",
|
|
22944
|
+
o("fieldset", B1, [
|
|
22903
22945
|
t[162] || (t[162] = o("legend", null, "Legend", -1)),
|
|
22904
|
-
o("h2",
|
|
22946
|
+
o("h2", D1, [
|
|
22905
22947
|
t[150] || (t[150] = o("span", null, "Form Element-Component", -1)),
|
|
22906
22948
|
o("a", {
|
|
22907
22949
|
href: "#",
|
|
@@ -22914,7 +22956,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22914
22956
|
status: i.validationStatus,
|
|
22915
22957
|
disabled: i.disabledStatus
|
|
22916
22958
|
}), null, 16, ["status", "disabled"]),
|
|
22917
|
-
o("div",
|
|
22959
|
+
o("div", F1, [
|
|
22918
22960
|
f(O, {
|
|
22919
22961
|
labelText: "Input for datalist:",
|
|
22920
22962
|
element: "input",
|
|
@@ -22926,7 +22968,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22926
22968
|
tooltipText: "This is a tooltip"
|
|
22927
22969
|
}, null, 8, ["status", "disabled", "datalist"])
|
|
22928
22970
|
]),
|
|
22929
|
-
o("div",
|
|
22971
|
+
o("div", P1, [
|
|
22930
22972
|
f(O, T({
|
|
22931
22973
|
labelText: "Input (type search (without search-button)):",
|
|
22932
22974
|
element: "input",
|
|
@@ -22949,7 +22991,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22949
22991
|
}, { useCustomTooltip: !1 }), null, 16, ["status", "disabled"])
|
|
22950
22992
|
]),
|
|
22951
22993
|
t[163] || (t[163] = o("h3", null, "Inputfields in Columns", -1)),
|
|
22952
|
-
o("div",
|
|
22994
|
+
o("div", M1, [
|
|
22953
22995
|
f(O, {
|
|
22954
22996
|
element: "input",
|
|
22955
22997
|
type: "text",
|
|
@@ -22995,7 +23037,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
22995
23037
|
disabled: i.disabledStatus
|
|
22996
23038
|
}, null, 8, ["modelValue", "status", "disabled"])
|
|
22997
23039
|
]),
|
|
22998
|
-
o("div",
|
|
23040
|
+
o("div", V1, [
|
|
22999
23041
|
f(O, {
|
|
23000
23042
|
labelText: "Label for emailfield (with icon):",
|
|
23001
23043
|
element: "input",
|
|
@@ -23085,7 +23127,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23085
23127
|
disabled: i.disabledStatus
|
|
23086
23128
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
|
23087
23129
|
t[164] || (t[164] = o("h3", null, "Searchfields", -1)),
|
|
23088
|
-
o("div",
|
|
23130
|
+
o("div", A1, [
|
|
23089
23131
|
f(O, {
|
|
23090
23132
|
element: "input",
|
|
23091
23133
|
labelText: "Label for inputfield (search) without search-button:",
|
|
@@ -23141,7 +23183,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23141
23183
|
disabled: i.disabledStatus
|
|
23142
23184
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
|
23143
23185
|
t[166] || (t[166] = o("hr", null, null, -1)),
|
|
23144
|
-
o("h3",
|
|
23186
|
+
o("h3", E1, [
|
|
23145
23187
|
t[152] || (t[152] = o("span", null, "Fake Selects", -1)),
|
|
23146
23188
|
o("a", {
|
|
23147
23189
|
href: "#",
|
|
@@ -23150,7 +23192,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23150
23192
|
onClick: t[36] || (t[36] = k((y) => l.openSettingsSidebar("CmdFakeSelect"), ["prevent"]))
|
|
23151
23193
|
})
|
|
23152
23194
|
]),
|
|
23153
|
-
o("div",
|
|
23195
|
+
o("div", H1, [
|
|
23154
23196
|
f(q, T({ ref: "CmdFakeSelect" }, e.cmdFakeSelectSettingsData, {
|
|
23155
23197
|
selectData: i.fakeSelectOptionsData,
|
|
23156
23198
|
modelValue: i.fakeSelectDefault,
|
|
@@ -23227,8 +23269,8 @@ function rk(e, t, n, s, i, l) {
|
|
|
23227
23269
|
class: x(["label", i.validationStatus])
|
|
23228
23270
|
}, [
|
|
23229
23271
|
t[155] || (t[155] = o("span", { class: "label-text" }, "Single-Slider (with in- and output):", -1)),
|
|
23230
|
-
o("span",
|
|
23231
|
-
o("label",
|
|
23272
|
+
o("span", q1, [
|
|
23273
|
+
o("label", R1, [
|
|
23232
23274
|
t[153] || (t[153] = o("span", { class: "label-text" }, [
|
|
23233
23275
|
o("span", null, "Range Value:")
|
|
23234
23276
|
], -1)),
|
|
@@ -23240,11 +23282,11 @@ function rk(e, t, n, s, i, l) {
|
|
|
23240
23282
|
min: "0",
|
|
23241
23283
|
max: "100",
|
|
23242
23284
|
id: "range-value"
|
|
23243
|
-
}, null, 10,
|
|
23285
|
+
}, null, 10, j1), [
|
|
23244
23286
|
[vt, i.rangeValue]
|
|
23245
23287
|
])
|
|
23246
23288
|
]),
|
|
23247
|
-
o("label",
|
|
23289
|
+
o("label", U1, [
|
|
23248
23290
|
t[154] || (t[154] = o("span", { class: "label-text hidden" }, [
|
|
23249
23291
|
o("span", null, "Range Value")
|
|
23250
23292
|
], -1)),
|
|
@@ -23256,7 +23298,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23256
23298
|
disabled: i.disabledStatus,
|
|
23257
23299
|
min: "0",
|
|
23258
23300
|
max: "100"
|
|
23259
|
-
}, null, 8,
|
|
23301
|
+
}, null, 8, N1), [
|
|
23260
23302
|
[vt, i.rangeValue]
|
|
23261
23303
|
])
|
|
23262
23304
|
])
|
|
@@ -23372,9 +23414,9 @@ function rk(e, t, n, s, i, l) {
|
|
|
23372
23414
|
o("output", null, "v-model: " + g(i.switchButtonRadio), 1),
|
|
23373
23415
|
t[174] || (t[174] = o("h2", null, "Checkboxes and Radiobuttons", -1)),
|
|
23374
23416
|
t[175] || (t[175] = o("h3", null, "Checkboxes [native]", -1)),
|
|
23375
|
-
o("div",
|
|
23417
|
+
o("div", z1, [
|
|
23376
23418
|
t[157] || (t[157] = o("span", { class: "label-text" }, "Label for native checkboxes:", -1)),
|
|
23377
|
-
o("div",
|
|
23419
|
+
o("div", W1, [
|
|
23378
23420
|
f(O, {
|
|
23379
23421
|
element: "input",
|
|
23380
23422
|
type: "checkbox",
|
|
@@ -23432,9 +23474,9 @@ function rk(e, t, n, s, i, l) {
|
|
|
23432
23474
|
]),
|
|
23433
23475
|
o("output", null, " v-model: " + g(i.nativeCheckboxValues), 1),
|
|
23434
23476
|
t[176] || (t[176] = o("h3", null, "Checkboxes (replaced)", -1)),
|
|
23435
|
-
o("div",
|
|
23477
|
+
o("div", G1, [
|
|
23436
23478
|
t[158] || (t[158] = o("span", { class: "label-text" }, "Label for Replaced Input-Type-Checkbox:", -1)),
|
|
23437
|
-
o("div",
|
|
23479
|
+
o("div", K1, [
|
|
23438
23480
|
f(O, {
|
|
23439
23481
|
element: "input",
|
|
23440
23482
|
type: "checkbox",
|
|
@@ -23465,9 +23507,9 @@ function rk(e, t, n, s, i, l) {
|
|
|
23465
23507
|
]),
|
|
23466
23508
|
o("output", null, " v-model: " + g(i.replacedCheckboxValue), 1),
|
|
23467
23509
|
t[177] || (t[177] = o("h3", null, "Radiobuttons [native]", -1)),
|
|
23468
|
-
o("div",
|
|
23510
|
+
o("div", Y1, [
|
|
23469
23511
|
t[159] || (t[159] = o("span", { class: "label-text" }, "Label for native radiobuttons:", -1)),
|
|
23470
|
-
o("div",
|
|
23512
|
+
o("div", J1, [
|
|
23471
23513
|
f(O, {
|
|
23472
23514
|
element: "input",
|
|
23473
23515
|
labelText: "Label for native radiobutton",
|
|
@@ -23496,9 +23538,9 @@ function rk(e, t, n, s, i, l) {
|
|
|
23496
23538
|
]),
|
|
23497
23539
|
o("output", null, " v-model: " + g(i.radiobuttonValue), 1),
|
|
23498
23540
|
t[178] || (t[178] = o("h3", null, "Radiobuttons (replaced)", -1)),
|
|
23499
|
-
o("div",
|
|
23541
|
+
o("div", Z1, [
|
|
23500
23542
|
t[160] || (t[160] = o("span", { class: "label-text" }, "Label for Replaced Input-Type-Radio:", -1)),
|
|
23501
|
-
o("div",
|
|
23543
|
+
o("div", Q1, [
|
|
23502
23544
|
f(O, {
|
|
23503
23545
|
element: "input",
|
|
23504
23546
|
labelText: "Label for replaced radiobutton",
|
|
@@ -23528,7 +23570,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23528
23570
|
])
|
|
23529
23571
|
]),
|
|
23530
23572
|
o("output", null, " v-model: " + g(i.radiobuttonValue), 1),
|
|
23531
|
-
o("h3",
|
|
23573
|
+
o("h3", X1, [
|
|
23532
23574
|
t[161] || (t[161] = F(" Input-Group ", -1)),
|
|
23533
23575
|
o("a", {
|
|
23534
23576
|
href: "#",
|
|
@@ -23595,9 +23637,9 @@ function rk(e, t, n, s, i, l) {
|
|
|
23595
23637
|
}, null, 8, ["inputElements", "modelValue", "status", "disabled"]),
|
|
23596
23638
|
o("output", null, "v-model: " + g(i.inputGroupValue4), 1)
|
|
23597
23639
|
]),
|
|
23598
|
-
o("div",
|
|
23640
|
+
o("div", $1, [
|
|
23599
23641
|
t[181] || (t[181] = o("small", null, "(values will not be submitted with the form!)", -1)),
|
|
23600
|
-
o("div",
|
|
23642
|
+
o("div", ev, [
|
|
23601
23643
|
f(O, {
|
|
23602
23644
|
element: "button",
|
|
23603
23645
|
nativeButton: { text: "Submit-button from component" },
|
|
@@ -23613,7 +23655,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23613
23655
|
}, [...t[180] || (t[180] = [
|
|
23614
23656
|
o("span", { class: "icon-check" }, null, -1),
|
|
23615
23657
|
o("span", null, "Native submit-button", -1)
|
|
23616
|
-
])], 8,
|
|
23658
|
+
])], 8, tv)
|
|
23617
23659
|
])
|
|
23618
23660
|
])
|
|
23619
23661
|
]),
|
|
@@ -23628,7 +23670,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23628
23670
|
}),
|
|
23629
23671
|
f(S, null, {
|
|
23630
23672
|
default: v(() => [
|
|
23631
|
-
o("h2",
|
|
23673
|
+
o("h2", nv, [
|
|
23632
23674
|
t[184] || (t[184] = o("span", null, "Bank Account Data", -1)),
|
|
23633
23675
|
o("a", {
|
|
23634
23676
|
href: "#",
|
|
@@ -23643,7 +23685,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23643
23685
|
}),
|
|
23644
23686
|
f(S, null, {
|
|
23645
23687
|
default: v(() => [
|
|
23646
|
-
o("h2",
|
|
23688
|
+
o("h2", iv, [
|
|
23647
23689
|
t[185] || (t[185] = o("span", null, "Basic Form", -1)),
|
|
23648
23690
|
o("a", {
|
|
23649
23691
|
href: "#",
|
|
@@ -23676,7 +23718,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23676
23718
|
f(S, { anchorId: "section-boxes" }, {
|
|
23677
23719
|
default: v(() => [
|
|
23678
23720
|
t[206] || (t[206] = o("h2", { class: "headline-demopage" }, "Boxes", -1)),
|
|
23679
|
-
o("h3",
|
|
23721
|
+
o("h3", lv, [
|
|
23680
23722
|
t[188] || (t[188] = o("span", null, "Default Box", -1)),
|
|
23681
23723
|
o("a", {
|
|
23682
23724
|
href: "#",
|
|
@@ -23797,7 +23839,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23797
23839
|
o("h4", null, " Box with links ", -1)
|
|
23798
23840
|
])]),
|
|
23799
23841
|
body: v(() => [
|
|
23800
|
-
o("ul",
|
|
23842
|
+
o("ul", ov, [
|
|
23801
23843
|
o("li", null, [
|
|
23802
23844
|
o("a", {
|
|
23803
23845
|
href: "#",
|
|
@@ -23976,7 +24018,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23976
24018
|
}),
|
|
23977
24019
|
f(S, { "inner-component": "div" }, {
|
|
23978
24020
|
default: v(() => [
|
|
23979
|
-
o("h2",
|
|
24021
|
+
o("h2", av, [
|
|
23980
24022
|
t[209] || (t[209] = o("span", null, "Breadcrumbs", -1)),
|
|
23981
24023
|
o("a", {
|
|
23982
24024
|
href: "#",
|
|
@@ -23995,7 +24037,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
23995
24037
|
}),
|
|
23996
24038
|
f(S, null, {
|
|
23997
24039
|
default: v(() => [
|
|
23998
|
-
o("h2",
|
|
24040
|
+
o("h2", sv, [
|
|
23999
24041
|
t[210] || (t[210] = o("span", null, "Code Output", -1)),
|
|
24000
24042
|
o("a", {
|
|
24001
24043
|
href: "#",
|
|
@@ -24015,7 +24057,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24015
24057
|
}),
|
|
24016
24058
|
f(S, null, {
|
|
24017
24059
|
default: v(() => [
|
|
24018
|
-
o("h2",
|
|
24060
|
+
o("h2", rv, [
|
|
24019
24061
|
t[211] || (t[211] = o("span", null, "Company Logo", -1)),
|
|
24020
24062
|
o("a", {
|
|
24021
24063
|
href: "#",
|
|
@@ -24033,7 +24075,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24033
24075
|
}),
|
|
24034
24076
|
f(S, null, {
|
|
24035
24077
|
default: v(() => [
|
|
24036
|
-
o("h2",
|
|
24078
|
+
o("h2", dv, [
|
|
24037
24079
|
t[212] || (t[212] = o("span", null, "Containers", -1)),
|
|
24038
24080
|
o("a", {
|
|
24039
24081
|
href: "#",
|
|
@@ -24190,7 +24232,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24190
24232
|
style: { "align-self": "flex-start" }
|
|
24191
24233
|
}, [...t[226] || (t[226] = [
|
|
24192
24234
|
o("img", {
|
|
24193
|
-
src:
|
|
24235
|
+
src: c1,
|
|
24194
24236
|
alt: "Alternative text"
|
|
24195
24237
|
}, null, -1)
|
|
24196
24238
|
])]),
|
|
@@ -24202,7 +24244,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24202
24244
|
style: { "align-self": "flex-start" }
|
|
24203
24245
|
}, [...t[227] || (t[227] = [
|
|
24204
24246
|
o("img", {
|
|
24205
|
-
src:
|
|
24247
|
+
src: m1,
|
|
24206
24248
|
alt: "Alternative text"
|
|
24207
24249
|
}, null, -1)
|
|
24208
24250
|
])]),
|
|
@@ -24218,7 +24260,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24218
24260
|
style: { "align-self": "flex-start" }
|
|
24219
24261
|
}, [...t[228] || (t[228] = [
|
|
24220
24262
|
o("img", {
|
|
24221
|
-
src:
|
|
24263
|
+
src: p1,
|
|
24222
24264
|
alt: "Alternative text"
|
|
24223
24265
|
}, null, -1)
|
|
24224
24266
|
])])
|
|
@@ -24290,7 +24332,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24290
24332
|
}),
|
|
24291
24333
|
f(S, null, {
|
|
24292
24334
|
default: v(() => [
|
|
24293
|
-
o("h2",
|
|
24335
|
+
o("h2", uv, [
|
|
24294
24336
|
t[238] || (t[238] = o("span", null, "Headlines", -1)),
|
|
24295
24337
|
o("a", {
|
|
24296
24338
|
href: "#",
|
|
@@ -24357,7 +24399,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24357
24399
|
}),
|
|
24358
24400
|
f(S, null, {
|
|
24359
24401
|
default: v(() => [
|
|
24360
|
-
o("h2",
|
|
24402
|
+
o("h2", cv, [
|
|
24361
24403
|
t[246] || (t[246] = o("span", null, "Image", -1)),
|
|
24362
24404
|
o("a", {
|
|
24363
24405
|
href: "#",
|
|
@@ -24366,7 +24408,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24366
24408
|
onClick: t[87] || (t[87] = k((y) => l.openSettingsSidebar("CmdImage"), ["prevent"]))
|
|
24367
24409
|
})
|
|
24368
24410
|
]),
|
|
24369
|
-
o("div",
|
|
24411
|
+
o("div", mv, [
|
|
24370
24412
|
f(on, T({
|
|
24371
24413
|
ref: "CmdImage",
|
|
24372
24414
|
image: i.imageData[0].image,
|
|
@@ -24382,7 +24424,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24382
24424
|
}),
|
|
24383
24425
|
f(S, null, {
|
|
24384
24426
|
default: v(() => [
|
|
24385
|
-
o("h2",
|
|
24427
|
+
o("h2", pv, [
|
|
24386
24428
|
t[247] || (t[247] = o("span", null, "Image-Gallery", -1)),
|
|
24387
24429
|
o("a", {
|
|
24388
24430
|
href: "#",
|
|
@@ -24413,7 +24455,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24413
24455
|
}),
|
|
24414
24456
|
f(S, null, {
|
|
24415
24457
|
default: v(() => [
|
|
24416
|
-
o("h2",
|
|
24458
|
+
o("h2", fv, [
|
|
24417
24459
|
t[249] || (t[249] = o("span", null, "Link", -1)),
|
|
24418
24460
|
o("a", {
|
|
24419
24461
|
href: "#",
|
|
@@ -24481,7 +24523,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24481
24523
|
fancybox: !0,
|
|
24482
24524
|
icon: { iconClass: "icon-chevron-one-stripe-right", position: "right", tooltip: "Tooltip for hyperlink" }
|
|
24483
24525
|
})) : m("", !0),
|
|
24484
|
-
o("dl",
|
|
24526
|
+
o("dl", hv, [
|
|
24485
24527
|
t[250] || (t[250] = o("dt", null, "Event:", -1)),
|
|
24486
24528
|
o("dd", null, g(i.outputCmdLink?.event?.originalEvent.originalEvent), 1),
|
|
24487
24529
|
t[251] || (t[251] = o("dt", null, "Target:", -1)),
|
|
@@ -24494,7 +24536,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24494
24536
|
}),
|
|
24495
24537
|
f(S, null, {
|
|
24496
24538
|
default: v(() => [
|
|
24497
|
-
o("h2",
|
|
24539
|
+
o("h2", gv, [
|
|
24498
24540
|
t[253] || (t[253] = o("span", null, "List", -1)),
|
|
24499
24541
|
o("a", {
|
|
24500
24542
|
href: "#",
|
|
@@ -24511,7 +24553,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24511
24553
|
listContentType: "links",
|
|
24512
24554
|
onClick: l.cmdLinkOutput
|
|
24513
24555
|
}), null, 16, ["items", "onClick"]),
|
|
24514
|
-
o("dl",
|
|
24556
|
+
o("dl", yv, [
|
|
24515
24557
|
t[254] || (t[254] = o("dt", null, "Event:", -1)),
|
|
24516
24558
|
o("dd", null, g(i.outputCmdLink?.event?.originalEvent), 1),
|
|
24517
24559
|
t[255] || (t[255] = o("dt", null, "Target:", -1)),
|
|
@@ -24525,7 +24567,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24525
24567
|
orientation: "horizontal",
|
|
24526
24568
|
listContentType: "images"
|
|
24527
24569
|
}, null, 8, ["items"]),
|
|
24528
|
-
o("div",
|
|
24570
|
+
o("div", bv, [
|
|
24529
24571
|
f(h, {
|
|
24530
24572
|
cmdHeadline: { headlineText: "List of tags (default)", headlineLevel: 3 },
|
|
24531
24573
|
items: i.listOfTagsData,
|
|
@@ -24555,7 +24597,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24555
24597
|
}, null, 8, ["items"])
|
|
24556
24598
|
]),
|
|
24557
24599
|
t[257] || (t[257] = o("h3", null, "Description Lists", -1)),
|
|
24558
|
-
o("div",
|
|
24600
|
+
o("div", xv, [
|
|
24559
24601
|
f(h, {
|
|
24560
24602
|
listType: "description",
|
|
24561
24603
|
cmdHeadline: { headlineText: "List with text", headlineLevel: 4 },
|
|
@@ -24578,7 +24620,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24578
24620
|
}),
|
|
24579
24621
|
f(S, null, {
|
|
24580
24622
|
default: v(() => [
|
|
24581
|
-
o("h2",
|
|
24623
|
+
o("h2", Cv, [
|
|
24582
24624
|
t[258] || (t[258] = o("span", null, "Login Form", -1)),
|
|
24583
24625
|
o("a", {
|
|
24584
24626
|
href: "#",
|
|
@@ -24618,7 +24660,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24618
24660
|
}),
|
|
24619
24661
|
f(S, null, {
|
|
24620
24662
|
default: v(() => [
|
|
24621
|
-
o("h2",
|
|
24663
|
+
o("h2", vv, [
|
|
24622
24664
|
t[260] || (t[260] = o("span", null, "Main Navigation", -1)),
|
|
24623
24665
|
o("a", {
|
|
24624
24666
|
href: "#",
|
|
@@ -24634,7 +24676,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24634
24676
|
}),
|
|
24635
24677
|
f(S, null, {
|
|
24636
24678
|
default: v(() => [
|
|
24637
|
-
o("h2",
|
|
24679
|
+
o("h2", kv, [
|
|
24638
24680
|
t[261] || (t[261] = o("span", null, "Multistepform-Progressbar", -1)),
|
|
24639
24681
|
o("a", {
|
|
24640
24682
|
href: "#",
|
|
@@ -24665,7 +24707,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24665
24707
|
}),
|
|
24666
24708
|
f(S, null, {
|
|
24667
24709
|
default: v(() => [
|
|
24668
|
-
o("h2",
|
|
24710
|
+
o("h2", wv, [
|
|
24669
24711
|
t[264] || (t[264] = o("span", null, "Multistepform-Wrapper", -1)),
|
|
24670
24712
|
o("a", {
|
|
24671
24713
|
href: "#",
|
|
@@ -24675,8 +24717,12 @@ function rk(e, t, n, s, i, l) {
|
|
|
24675
24717
|
})
|
|
24676
24718
|
]),
|
|
24677
24719
|
t[278] || (t[278] = o("h3", null, "Data provided by property", -1)),
|
|
24678
|
-
f(sn, {
|
|
24720
|
+
f(sn, {
|
|
24721
|
+
requiredPages: [1, 2],
|
|
24722
|
+
defaultInputValues: i.multistepFormDefaultInputValues
|
|
24723
|
+
}, {
|
|
24679
24724
|
"page-1": v((y) => [
|
|
24725
|
+
F(" multistepFormDefaultInputValues: " + g(i.multistepFormDefaultInputValues) + " ", 1),
|
|
24680
24726
|
t[265] || (t[265] = o("h3", null, "Page 1 - all fields required", -1)),
|
|
24681
24727
|
f(Y, {
|
|
24682
24728
|
formElements: i.multistepFormWrapperPage1Data,
|
|
@@ -24689,12 +24735,12 @@ function rk(e, t, n, s, i, l) {
|
|
|
24689
24735
|
o("a", {
|
|
24690
24736
|
href: "#",
|
|
24691
24737
|
onClick: k((M) => y.setErrorOnPage("This is an error!"), ["prevent"])
|
|
24692
|
-
}, "Set Error", 8,
|
|
24738
|
+
}, "Set Error", 8, Tv),
|
|
24693
24739
|
t[266] || (t[266] = o("br", null, null, -1)),
|
|
24694
24740
|
o("a", {
|
|
24695
24741
|
href: "#",
|
|
24696
24742
|
onClick: k(y.removeErrorOnPage, ["prevent"])
|
|
24697
|
-
}, "Remove Error", 8,
|
|
24743
|
+
}, "Remove Error", 8, Sv)
|
|
24698
24744
|
]),
|
|
24699
24745
|
"page-2": v((y) => [
|
|
24700
24746
|
t[267] || (t[267] = o("h3", null, "Page 2 - 2/2 fields required (in slot)", -1)),
|
|
@@ -24705,7 +24751,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24705
24751
|
default: v(() => [
|
|
24706
24752
|
f(O, {
|
|
24707
24753
|
element: "input",
|
|
24708
|
-
type: "
|
|
24754
|
+
type: "tel",
|
|
24709
24755
|
labelText: "Telephone:",
|
|
24710
24756
|
name: "page-2-telephone",
|
|
24711
24757
|
id: "page-2-telephone",
|
|
@@ -24733,7 +24779,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24733
24779
|
o("a", {
|
|
24734
24780
|
href: "#",
|
|
24735
24781
|
onClick: k((M) => y.setErrorOnPage("This is an error!"), ["prevent"])
|
|
24736
|
-
}, "Set Error", 8,
|
|
24782
|
+
}, "Set Error", 8, _v)
|
|
24737
24783
|
]),
|
|
24738
24784
|
"page-3": v((y) => [
|
|
24739
24785
|
t[268] || (t[268] = o("h3", null, "Page 3 - no fields required", -1)),
|
|
@@ -24755,7 +24801,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24755
24801
|
modelValue: y.formDataForPage.streetNo,
|
|
24756
24802
|
"onUpdate:modelValue": (M) => y.formDataForPage.streetNo = M
|
|
24757
24803
|
}, null, 8, ["modelValue", "onUpdate:modelValue"]),
|
|
24758
|
-
o("div",
|
|
24804
|
+
o("div", Ov, [
|
|
24759
24805
|
f(O, {
|
|
24760
24806
|
element: "input",
|
|
24761
24807
|
type: "number",
|
|
@@ -24815,49 +24861,49 @@ function rk(e, t, n, s, i, l) {
|
|
|
24815
24861
|
], 64))
|
|
24816
24862
|
]),
|
|
24817
24863
|
_: 1
|
|
24818
|
-
}),
|
|
24864
|
+
}, 8, ["defaultInputValues"]),
|
|
24819
24865
|
t[279] || (t[279] = o("h3", null, "Data provided by slot", -1)),
|
|
24820
24866
|
f(sn, null, {
|
|
24821
24867
|
"progress-bar": v((y) => [
|
|
24822
|
-
o("ul",
|
|
24868
|
+
o("ul", Lv, [
|
|
24823
24869
|
(a(!0), r(w, null, P(y.numberOfPages, (M) => (a(), r("li", { key: M }, [
|
|
24824
24870
|
o("a", {
|
|
24825
24871
|
href: "#",
|
|
24826
24872
|
onClick: k((we) => y.setErrorOnPage("This is an error!"), ["prevent"])
|
|
24827
|
-
}, g(M), 9,
|
|
24873
|
+
}, g(M), 9, Iv)
|
|
24828
24874
|
]))), 128))
|
|
24829
24875
|
])
|
|
24830
24876
|
]),
|
|
24831
24877
|
"page-1": v((y) => [
|
|
24832
24878
|
t[273] || (t[273] = F(" Content Page 1 ", -1)),
|
|
24833
|
-
y.hasError ? (a(), r("span",
|
|
24879
|
+
y.hasError ? (a(), r("span", Bv, "Error")) : m("", !0),
|
|
24834
24880
|
o("a", {
|
|
24835
24881
|
href: "#",
|
|
24836
24882
|
onClick: k((M) => y.setErrorOnPage("This is an error!"), ["prevent"])
|
|
24837
|
-
}, "Set Error", 8,
|
|
24883
|
+
}, "Set Error", 8, Dv)
|
|
24838
24884
|
]),
|
|
24839
24885
|
"page-2": v((y) => [
|
|
24840
24886
|
t[274] || (t[274] = F(" Content Page 2 ", -1)),
|
|
24841
|
-
y.hasError ? (a(), r("span",
|
|
24887
|
+
y.hasError ? (a(), r("span", Fv, "Error")) : m("", !0),
|
|
24842
24888
|
o("a", {
|
|
24843
24889
|
href: "#",
|
|
24844
24890
|
onClick: k((M) => y.setErrorOnPage("This is an error!"), ["prevent"])
|
|
24845
|
-
}, "Set Error", 8,
|
|
24891
|
+
}, "Set Error", 8, Pv)
|
|
24846
24892
|
]),
|
|
24847
24893
|
"page-3": v((y) => [
|
|
24848
24894
|
t[275] || (t[275] = F(" Content Page 3 ", -1)),
|
|
24849
|
-
y.hasError ? (a(), r("span",
|
|
24895
|
+
y.hasError ? (a(), r("span", Mv, "Error")) : m("", !0)
|
|
24850
24896
|
]),
|
|
24851
24897
|
"page-4": v((y) => [
|
|
24852
24898
|
t[276] || (t[276] = F(" Content Page 4 ", -1)),
|
|
24853
|
-
y.hasError ? (a(), r("span",
|
|
24899
|
+
y.hasError ? (a(), r("span", Vv, "Error")) : m("", !0)
|
|
24854
24900
|
]),
|
|
24855
24901
|
"page-5": v((y) => [
|
|
24856
24902
|
t[277] || (t[277] = F(" Content Page 5 ", -1)),
|
|
24857
|
-
y.hasError ? (a(), r("span",
|
|
24903
|
+
y.hasError ? (a(), r("span", Av, "Error")) : m("", !0)
|
|
24858
24904
|
]),
|
|
24859
24905
|
pagination: v((y) => [
|
|
24860
|
-
o("div",
|
|
24906
|
+
o("div", Ev, [
|
|
24861
24907
|
f(te, {
|
|
24862
24908
|
linkType: "button",
|
|
24863
24909
|
highlightLevel: "none",
|
|
@@ -24900,7 +24946,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24900
24946
|
}),
|
|
24901
24947
|
f(S, null, {
|
|
24902
24948
|
default: v(() => [
|
|
24903
|
-
o("h2",
|
|
24949
|
+
o("h2", Hv, [
|
|
24904
24950
|
t[280] || (t[280] = o("span", null, "Newsletter Subscription", -1)),
|
|
24905
24951
|
o("a", {
|
|
24906
24952
|
href: "#",
|
|
@@ -24924,7 +24970,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24924
24970
|
}),
|
|
24925
24971
|
f(S, null, {
|
|
24926
24972
|
default: v(() => [
|
|
24927
|
-
o("h2",
|
|
24973
|
+
o("h2", qv, [
|
|
24928
24974
|
t[281] || (t[281] = o("span", null, "Opening Hours", -1)),
|
|
24929
24975
|
o("a", {
|
|
24930
24976
|
href: "#",
|
|
@@ -24943,7 +24989,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24943
24989
|
}),
|
|
24944
24990
|
f(S, null, {
|
|
24945
24991
|
default: v(() => [
|
|
24946
|
-
o("h2",
|
|
24992
|
+
o("h2", Rv, [
|
|
24947
24993
|
t[282] || (t[282] = o("span", null, "Page Footer", -1)),
|
|
24948
24994
|
o("a", {
|
|
24949
24995
|
href: "#",
|
|
@@ -24972,7 +25018,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
24972
25018
|
}),
|
|
24973
25019
|
f(S, null, {
|
|
24974
25020
|
default: v(() => [
|
|
24975
|
-
o("h2",
|
|
25021
|
+
o("h2", jv, [
|
|
24976
25022
|
t[284] || (t[284] = o("span", null, "Page Header", -1)),
|
|
24977
25023
|
o("a", {
|
|
24978
25024
|
href: "#",
|
|
@@ -25002,7 +25048,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25002
25048
|
}),
|
|
25003
25049
|
f(S, null, {
|
|
25004
25050
|
default: v(() => [
|
|
25005
|
-
o("h2",
|
|
25051
|
+
o("h2", Uv, [
|
|
25006
25052
|
t[286] || (t[286] = o("span", null, "Pagination", -1)),
|
|
25007
25053
|
o("a", {
|
|
25008
25054
|
href: "#",
|
|
@@ -25022,7 +25068,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25022
25068
|
}),
|
|
25023
25069
|
f(S, null, {
|
|
25024
25070
|
default: v(() => [
|
|
25025
|
-
o("h2",
|
|
25071
|
+
o("h2", Nv, [
|
|
25026
25072
|
t[287] || (t[287] = o("span", null, "Paragraph", -1)),
|
|
25027
25073
|
o("a", {
|
|
25028
25074
|
href: "#",
|
|
@@ -25037,7 +25083,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25037
25083
|
}),
|
|
25038
25084
|
f(S, null, {
|
|
25039
25085
|
default: v(() => [
|
|
25040
|
-
o("h2",
|
|
25086
|
+
o("h2", zv, [
|
|
25041
25087
|
t[288] || (t[288] = o("span", null, "Section", -1)),
|
|
25042
25088
|
o("a", {
|
|
25043
25089
|
href: "#",
|
|
@@ -25096,7 +25142,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25096
25142
|
}),
|
|
25097
25143
|
f(S, null, {
|
|
25098
25144
|
default: v(() => [
|
|
25099
|
-
o("h2",
|
|
25145
|
+
o("h2", Wv, [
|
|
25100
25146
|
t[295] || (t[295] = o("span", null, "Site Header", -1)),
|
|
25101
25147
|
o("a", {
|
|
25102
25148
|
href: "#",
|
|
@@ -25120,7 +25166,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25120
25166
|
}),
|
|
25121
25167
|
f(S, null, {
|
|
25122
25168
|
default: v(() => [
|
|
25123
|
-
o("h2",
|
|
25169
|
+
o("h2", Gv, [
|
|
25124
25170
|
t[296] || (t[296] = o("span", null, "Site Search", -1)),
|
|
25125
25171
|
o("a", {
|
|
25126
25172
|
href: "#",
|
|
@@ -25146,7 +25192,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25146
25192
|
}),
|
|
25147
25193
|
f(S, null, {
|
|
25148
25194
|
default: v(() => [
|
|
25149
|
-
o("h2",
|
|
25195
|
+
o("h2", Kv, [
|
|
25150
25196
|
t[297] || (t[297] = o("span", null, "Slideshow", -1)),
|
|
25151
25197
|
o("a", {
|
|
25152
25198
|
href: "#",
|
|
@@ -25166,7 +25212,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25166
25212
|
}),
|
|
25167
25213
|
f(S, null, {
|
|
25168
25214
|
default: v(() => [
|
|
25169
|
-
o("h2",
|
|
25215
|
+
o("h2", Yv, [
|
|
25170
25216
|
t[299] || (t[299] = o("span", null, "Smart Search", -1)),
|
|
25171
25217
|
o("a", {
|
|
25172
25218
|
href: "#",
|
|
@@ -25192,7 +25238,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25192
25238
|
}),
|
|
25193
25239
|
f(S, null, {
|
|
25194
25240
|
default: v(() => [
|
|
25195
|
-
o("h2",
|
|
25241
|
+
o("h2", Jv, [
|
|
25196
25242
|
t[300] || (t[300] = o("span", null, "Social Networks", -1)),
|
|
25197
25243
|
o("a", {
|
|
25198
25244
|
href: "#",
|
|
@@ -25222,7 +25268,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25222
25268
|
}),
|
|
25223
25269
|
f(S, null, {
|
|
25224
25270
|
default: v(() => [
|
|
25225
|
-
o("h2",
|
|
25271
|
+
o("h2", Zv, [
|
|
25226
25272
|
t[302] || (t[302] = o("span", null, "System Message", -1)),
|
|
25227
25273
|
o("a", {
|
|
25228
25274
|
href: "#",
|
|
@@ -25246,7 +25292,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25246
25292
|
}),
|
|
25247
25293
|
f(S, null, {
|
|
25248
25294
|
default: v(() => [
|
|
25249
|
-
o("h2",
|
|
25295
|
+
o("h2", Qv, [
|
|
25250
25296
|
t[304] || (t[304] = o("span", null, "Tables", -1)),
|
|
25251
25297
|
o("a", {
|
|
25252
25298
|
href: "#",
|
|
@@ -25269,7 +25315,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25269
25315
|
}),
|
|
25270
25316
|
f(S, null, {
|
|
25271
25317
|
default: v(() => [
|
|
25272
|
-
o("h2",
|
|
25318
|
+
o("h2", Xv, [
|
|
25273
25319
|
t[307] || (t[307] = o("span", null, "Tabs", -1)),
|
|
25274
25320
|
o("a", {
|
|
25275
25321
|
href: "#",
|
|
@@ -25298,7 +25344,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25298
25344
|
}),
|
|
25299
25345
|
f(S, null, {
|
|
25300
25346
|
default: v(() => [
|
|
25301
|
-
o("h2",
|
|
25347
|
+
o("h2", $v, [
|
|
25302
25348
|
t[311] || (t[311] = o("span", null, "Tag", -1)),
|
|
25303
25349
|
o("a", {
|
|
25304
25350
|
href: "#",
|
|
@@ -25313,7 +25359,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25313
25359
|
}),
|
|
25314
25360
|
f(S, null, {
|
|
25315
25361
|
default: v(() => [
|
|
25316
|
-
o("h2",
|
|
25362
|
+
o("h2", ek, [
|
|
25317
25363
|
t[312] || (t[312] = o("span", null, "Text-Image-Block", -1)),
|
|
25318
25364
|
o("a", {
|
|
25319
25365
|
href: "#",
|
|
@@ -25322,7 +25368,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25322
25368
|
onClick: t[124] || (t[124] = k((y) => l.openSettingsSidebar("CmdTextImageBlock"), ["prevent"]))
|
|
25323
25369
|
})
|
|
25324
25370
|
]),
|
|
25325
|
-
o("div",
|
|
25371
|
+
o("div", tk, [
|
|
25326
25372
|
f(ut, {
|
|
25327
25373
|
cmdHeadline: { headlineText: "Text-Image-Block (with html-text)", headlineLevel: 3 },
|
|
25328
25374
|
htmlContent: "<p>This text is given as html-text and show below an optional image.</p>"
|
|
@@ -25367,7 +25413,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25367
25413
|
}),
|
|
25368
25414
|
f(S, null, {
|
|
25369
25415
|
default: v(() => [
|
|
25370
|
-
o("h2",
|
|
25416
|
+
o("h2", nk, [
|
|
25371
25417
|
t[313] || (t[313] = o("span", null, "Thumbnail-Scroller", -1)),
|
|
25372
25418
|
o("a", {
|
|
25373
25419
|
href: "#",
|
|
@@ -25380,7 +25426,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25380
25426
|
o("p", null, " date (DMY): " + g(l.formatDate("2025-01-28", "dmy")), 1),
|
|
25381
25427
|
o("p", null, " date (MDY): " + g(l.formatDate("2025-01-28", "mdy", "/")), 1),
|
|
25382
25428
|
o("p", null, " date (invalid)): " + g(l.formatDate("invalid")), 1),
|
|
25383
|
-
o("div",
|
|
25429
|
+
o("div", ik, [
|
|
25384
25430
|
f(Il, T({ ref: "CmdThumbnailScroller" }, e.cmdThumbnailScrollerSettingsData, { thumbnailScrollerItems: l.thumbnailScrollerData }), null, 16, ["thumbnailScrollerItems"])
|
|
25385
25431
|
])
|
|
25386
25432
|
]),
|
|
@@ -25388,7 +25434,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25388
25434
|
}),
|
|
25389
25435
|
f(S, null, {
|
|
25390
25436
|
default: v(() => [
|
|
25391
|
-
o("h2",
|
|
25437
|
+
o("h2", lk, [
|
|
25392
25438
|
t[314] || (t[314] = o("span", null, "Toggle Dark-Mode", -1)),
|
|
25393
25439
|
o("a", {
|
|
25394
25440
|
href: "#",
|
|
@@ -25403,7 +25449,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25403
25449
|
}),
|
|
25404
25450
|
f(S, null, {
|
|
25405
25451
|
default: v(() => [
|
|
25406
|
-
o("h2",
|
|
25452
|
+
o("h2", ok, [
|
|
25407
25453
|
t[315] || (t[315] = o("span", null, "Tooltip", -1)),
|
|
25408
25454
|
o("a", {
|
|
25409
25455
|
href: "#",
|
|
@@ -25468,7 +25514,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25468
25514
|
}),
|
|
25469
25515
|
f(S, null, {
|
|
25470
25516
|
default: v(() => [
|
|
25471
|
-
o("h2",
|
|
25517
|
+
o("h2", ak, [
|
|
25472
25518
|
t[321] || (t[321] = o("span", null, "Upload-Form", -1)),
|
|
25473
25519
|
o("a", {
|
|
25474
25520
|
href: "#",
|
|
@@ -25483,7 +25529,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25483
25529
|
}),
|
|
25484
25530
|
f(S, null, {
|
|
25485
25531
|
default: v(() => [
|
|
25486
|
-
o("h2",
|
|
25532
|
+
o("h2", sk, [
|
|
25487
25533
|
t[322] || (t[322] = o("span", null, "Width Limitation Wrapper", -1)),
|
|
25488
25534
|
o("a", {
|
|
25489
25535
|
href: "#",
|
|
@@ -25506,7 +25552,7 @@ function rk(e, t, n, s, i, l) {
|
|
|
25506
25552
|
]),
|
|
25507
25553
|
_: 1
|
|
25508
25554
|
})
|
|
25509
|
-
])) : (a(), r("main",
|
|
25555
|
+
])) : (a(), r("main", rk, [
|
|
25510
25556
|
f(S, null, {
|
|
25511
25557
|
default: v(() => [...t[324] || (t[324] = [
|
|
25512
25558
|
o("h1", { class: "headline-demopage" }, "Page Overview", -1)
|
|
@@ -25559,11 +25605,11 @@ function rk(e, t, n, s, i, l) {
|
|
|
25559
25605
|
]),
|
|
25560
25606
|
_: 1
|
|
25561
25607
|
}, 8, ["openSidebar", "onToggleSidebar"])) : m("", !0)
|
|
25562
|
-
], 8,
|
|
25608
|
+
], 8, h1)), [
|
|
25563
25609
|
[El]
|
|
25564
25610
|
]);
|
|
25565
25611
|
}
|
|
25566
|
-
const
|
|
25612
|
+
const Hk = /* @__PURE__ */ B(f1, [["render", dk]]), qk = {
|
|
25567
25613
|
// el = real dom-element
|
|
25568
25614
|
mounted(e) {
|
|
25569
25615
|
if (e.tagName === "INPUT" || e.tagName === "SELECT" || e.tagName === "TEXTAREA" || e.tagName === "A")
|
|
@@ -25573,7 +25619,7 @@ const Ek = /* @__PURE__ */ B(p1, [["render", rk]]), Hk = {
|
|
|
25573
25619
|
t ? t.focus() : console.warn("No input-element for focus-directive on element " + e.tagName + " found!");
|
|
25574
25620
|
}
|
|
25575
25621
|
}
|
|
25576
|
-
},
|
|
25622
|
+
}, Rk = {
|
|
25577
25623
|
// el = real dom-element
|
|
25578
25624
|
// binding.value = value of v-directive
|
|
25579
25625
|
mounted(e, t) {
|
|
@@ -25589,8 +25635,8 @@ function rl(e) {
|
|
|
25589
25635
|
n.preventDefault(), re({ url: e[t].href });
|
|
25590
25636
|
}), e[t].dataset.cmdFancyBoxHandlerRegistered = "true");
|
|
25591
25637
|
}
|
|
25592
|
-
const Yn = new MutationObserver(
|
|
25593
|
-
function
|
|
25638
|
+
const Yn = new MutationObserver(uk);
|
|
25639
|
+
function uk(e) {
|
|
25594
25640
|
const t = [];
|
|
25595
25641
|
for (let n = 0; n < e.length; n++)
|
|
25596
25642
|
if (e[n].type === "attributes")
|
|
@@ -25601,7 +25647,7 @@ function dk(e) {
|
|
|
25601
25647
|
}
|
|
25602
25648
|
t.length > 0 && rl(t);
|
|
25603
25649
|
}
|
|
25604
|
-
const
|
|
25650
|
+
const jk = (e) => {
|
|
25605
25651
|
const t = e.querySelectorAll(".fancybox");
|
|
25606
25652
|
rl(t), Yn?.disconnect(), Yn.observe(e, {
|
|
25607
25653
|
subtree: !0,
|
|
@@ -25613,16 +25659,16 @@ const Rk = (e) => {
|
|
|
25613
25659
|
characterData: !1
|
|
25614
25660
|
});
|
|
25615
25661
|
};
|
|
25616
|
-
function
|
|
25662
|
+
function Uk(e) {
|
|
25617
25663
|
return e ? e.slice(0, 1).toUpperCase() + e.slice(1) : "";
|
|
25618
25664
|
}
|
|
25619
|
-
function
|
|
25665
|
+
function Nk(e) {
|
|
25620
25666
|
return e ? e.charAt(0).toLowerCase() + e.slice(1) : "";
|
|
25621
25667
|
}
|
|
25622
|
-
function
|
|
25668
|
+
function zk(...e) {
|
|
25623
25669
|
return e.filter((t) => typeof t == "string").map((t) => t.trim()).filter((t) => t.length > 0).join(" ");
|
|
25624
25670
|
}
|
|
25625
|
-
function
|
|
25671
|
+
function Wk() {
|
|
25626
25672
|
const e = {};
|
|
25627
25673
|
zl(s);
|
|
25628
25674
|
function t(i = "defaultSequence") {
|
|
@@ -25637,19 +25683,19 @@ function zk() {
|
|
|
25637
25683
|
}
|
|
25638
25684
|
return { nextSequenceValue: t, currentSequenceValue: n, resetSequence: s };
|
|
25639
25685
|
}
|
|
25640
|
-
function
|
|
25686
|
+
function ck(e, t, n) {
|
|
25641
25687
|
Wl(() => e.addEventListener(t, n)), Gl(() => e.removeEventListener(t, n));
|
|
25642
25688
|
}
|
|
25643
25689
|
function At(e) {
|
|
25644
25690
|
return e.offsetParent ? e.offsetTop + At(e.offsetParent) : e.offsetTop;
|
|
25645
25691
|
}
|
|
25646
|
-
function
|
|
25692
|
+
function mk(e) {
|
|
25647
25693
|
return e instanceof NodeList ? Array.from(e) : Array.isArray(e) ? e : [];
|
|
25648
25694
|
}
|
|
25649
|
-
function
|
|
25695
|
+
function pk(e, t) {
|
|
25650
25696
|
if (!t.length) {
|
|
25651
25697
|
const n = e();
|
|
25652
|
-
|
|
25698
|
+
mk(n).map((s, i) => {
|
|
25653
25699
|
const l = {
|
|
25654
25700
|
offsetTop: At(s)
|
|
25655
25701
|
};
|
|
@@ -25657,16 +25703,16 @@ function mk(e, t) {
|
|
|
25657
25703
|
}).forEach((s) => t.push(s));
|
|
25658
25704
|
}
|
|
25659
25705
|
}
|
|
25660
|
-
function
|
|
25706
|
+
function Gk(e, t = 0) {
|
|
25661
25707
|
const n = [], s = Kl({
|
|
25662
25708
|
activeItem: t,
|
|
25663
25709
|
reset() {
|
|
25664
25710
|
this.activeItem = 0, n.length = 0;
|
|
25665
25711
|
}
|
|
25666
25712
|
});
|
|
25667
|
-
return
|
|
25713
|
+
return ck(window, "scroll", () => {
|
|
25668
25714
|
const i = window.scrollY;
|
|
25669
|
-
|
|
25715
|
+
pk(e, n);
|
|
25670
25716
|
for (let l = 0, d = n.length; l < d; l++)
|
|
25671
25717
|
if (i < n[l].offsetTop + n[l].height / 2) {
|
|
25672
25718
|
s.activeItem = l;
|
|
@@ -25705,57 +25751,57 @@ export {
|
|
|
25705
25751
|
sp as CmdLoginForm,
|
|
25706
25752
|
Li as CmdMainNavigation,
|
|
25707
25753
|
Bi as CmdMultistepFormProgressBar,
|
|
25708
|
-
|
|
25709
|
-
|
|
25710
|
-
|
|
25711
|
-
|
|
25712
|
-
|
|
25754
|
+
zp as CmdMultistepFormWrapper,
|
|
25755
|
+
Jp as CmdNewsletterSubscription,
|
|
25756
|
+
kf as CmdOpeningHours,
|
|
25757
|
+
Af as CmdPageFooter,
|
|
25758
|
+
jf as CmdPageHeader,
|
|
25713
25759
|
Ii as CmdPagination,
|
|
25714
|
-
|
|
25715
|
-
|
|
25716
|
-
|
|
25717
|
-
|
|
25718
|
-
|
|
25719
|
-
|
|
25760
|
+
Yf as CmdProgressBar,
|
|
25761
|
+
Xf as CmdSection,
|
|
25762
|
+
oh as CmdSidebar,
|
|
25763
|
+
dh as CmdSiteFooter,
|
|
25764
|
+
ph as CmdSiteHeader,
|
|
25765
|
+
wh as CmdSiteSearch,
|
|
25720
25766
|
nt as CmdSlideButton,
|
|
25721
|
-
|
|
25722
|
-
|
|
25767
|
+
Bh as CmdSlideshow,
|
|
25768
|
+
Mh as CmdSmartSearch,
|
|
25723
25769
|
Di as CmdSocialNetworks,
|
|
25724
|
-
|
|
25770
|
+
jh as CmdSwitchLanguage,
|
|
25725
25771
|
ve as CmdSystemMessage,
|
|
25726
|
-
|
|
25772
|
+
Xh as CmdTable,
|
|
25727
25773
|
Fi as CmdTabs,
|
|
25728
|
-
|
|
25774
|
+
fg as CmdTextImageBlock,
|
|
25729
25775
|
yi as CmdThumbnailScroller,
|
|
25730
|
-
|
|
25776
|
+
bg as CmdToggleDarkMode,
|
|
25731
25777
|
pi as CmdTooltip,
|
|
25732
25778
|
zt as CmdTooltipForFormElements,
|
|
25733
|
-
|
|
25779
|
+
wb as CmdUploadForm,
|
|
25734
25780
|
il as CmdWidthLimitationWrapper,
|
|
25735
|
-
|
|
25736
|
-
|
|
25737
|
-
|
|
25738
|
-
|
|
25739
|
-
|
|
25781
|
+
Hk as ComponentLibrary,
|
|
25782
|
+
Nb as ContactInformation,
|
|
25783
|
+
jk as DirFancybox,
|
|
25784
|
+
qk as DirFocus,
|
|
25785
|
+
Rk as DirTelephone,
|
|
25740
25786
|
Ce as EditComponentWrapper,
|
|
25741
|
-
|
|
25742
|
-
|
|
25743
|
-
|
|
25744
|
-
|
|
25787
|
+
Q as I18n,
|
|
25788
|
+
Mb as MultipleBoxWrapper,
|
|
25789
|
+
Hb as MultipleListsOfLinks,
|
|
25790
|
+
Uk as capitalizeFirstLetter,
|
|
25745
25791
|
fi as createHtmlId,
|
|
25746
25792
|
Ae as createUuid,
|
|
25747
|
-
|
|
25748
|
-
|
|
25793
|
+
Mk as currentDate,
|
|
25794
|
+
Vk as currentTime,
|
|
25749
25795
|
al as formatDate,
|
|
25750
|
-
|
|
25751
|
-
|
|
25796
|
+
tx as formatTime,
|
|
25797
|
+
zk as fullName,
|
|
25752
25798
|
_i as getCookieDisclaimerCookie,
|
|
25753
|
-
|
|
25799
|
+
Ak as getDate,
|
|
25754
25800
|
De as getFileExtension,
|
|
25755
|
-
|
|
25756
|
-
|
|
25801
|
+
Ek as getWeekday,
|
|
25802
|
+
Nk as lowercaseFirstLetter,
|
|
25757
25803
|
re as openFancyBox,
|
|
25758
25804
|
Lm as setCookieDisclaimerCookie,
|
|
25759
|
-
|
|
25760
|
-
|
|
25805
|
+
Gk as useScrollspy,
|
|
25806
|
+
Wk as useSequence
|
|
25761
25807
|
};
|