comand-component-library 4.1.54 → 4.1.55
Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
|
|
1
1
|
var Io = Object.defineProperty;
|
2
2
|
var Bo = (e, n, t) => n in e ? Io(e, n, { enumerable: !0, configurable: !0, writable: !0, value: t }) : e[n] = t;
|
3
3
|
var Ge = (e, n, t) => Bo(e, typeof n != "symbol" ? n + "" : n, t);
|
4
|
-
import { defineComponent as ri, h as Tn, resolveComponent as _e, openBlock as l, createBlock as w, normalizeClass as _, createElementBlock as r, getCurrentInstance as Fo, resolveDynamicComponent as Me, withModifiers as T, withCtx as k, withDirectives as X, createElementVNode as a, createVNode as h, createCommentVNode as m, vShow as be, Fragment as S, toDisplayString as y, renderSlot as H, normalizeProps as R, mergeProps as I, createTextVNode as E, renderList as q, Transition as
|
4
|
+
import { defineComponent as ri, h as Tn, resolveComponent as _e, openBlock as l, createBlock as w, normalizeClass as _, createElementBlock as r, getCurrentInstance as Fo, resolveDynamicComponent as Me, withModifiers as T, withCtx as k, withDirectives as X, createElementVNode as a, createVNode as h, createCommentVNode as m, vShow as be, Fragment as S, toDisplayString as y, renderSlot as H, normalizeProps as R, mergeProps as I, createTextVNode as E, renderList as q, Transition as Ve, toHandlers as Rt, TransitionGroup as ln, createApp as Do, normalizeStyle as ft, guardReactiveProps as xe, useCssVars as di, vModelDynamic as Mo, vModelText as Nt, resolveDirective as Po, vModelSelect as Vo, vModelRadio as Dt, onMounted as Ao, onUnmounted as Eo, reactive as Ho, onBeforeUpdate as qo } from "vue";
|
5
5
|
const Ye = /^[a-z0-9]+(-[a-z0-9]+)*$/, xt = (e, n, t, s = "") => {
|
6
6
|
const i = e.split(":");
|
7
7
|
if (e.slice(0, 1) === "@") {
|
@@ -555,12 +555,12 @@ function gl(e, n, t, s) {
|
|
555
555
|
const i = e.resources.length, o = e.random ? Math.floor(Math.random() * i) : e.index;
|
556
556
|
let d;
|
557
557
|
if (e.random) {
|
558
|
-
let
|
559
|
-
for (d = [];
|
560
|
-
const N = Math.floor(Math.random() *
|
561
|
-
d.push(
|
558
|
+
let V = e.resources.slice(0);
|
559
|
+
for (d = []; V.length > 1; ) {
|
560
|
+
const N = Math.floor(Math.random() * V.length);
|
561
|
+
d.push(V[N]), V = V.slice(0, N).concat(V.slice(N + 1));
|
562
562
|
}
|
563
|
-
d = d.concat(
|
563
|
+
d = d.concat(V);
|
564
564
|
} else
|
565
565
|
d = e.resources.slice(o).concat(e.resources.slice(0, o));
|
566
566
|
const c = Date.now();
|
@@ -570,12 +570,12 @@ function gl(e, n, t, s) {
|
|
570
570
|
f && (clearTimeout(f), f = null);
|
571
571
|
}
|
572
572
|
function v() {
|
573
|
-
u === "pending" && (u = "aborted"), L(), C.forEach((
|
574
|
-
|
573
|
+
u === "pending" && (u = "aborted"), L(), C.forEach((V) => {
|
574
|
+
V.status === "pending" && (V.status = "aborted");
|
575
575
|
}), C = [];
|
576
576
|
}
|
577
|
-
function B(
|
578
|
-
N && (b = []), typeof
|
577
|
+
function B(V, N) {
|
578
|
+
N && (b = []), typeof V == "function" && b.push(V);
|
579
579
|
}
|
580
580
|
function F() {
|
581
581
|
return {
|
@@ -589,18 +589,18 @@ function gl(e, n, t, s) {
|
|
589
589
|
};
|
590
590
|
}
|
591
591
|
function D() {
|
592
|
-
u = "failed", b.forEach((
|
593
|
-
|
592
|
+
u = "failed", b.forEach((V) => {
|
593
|
+
V(void 0, p);
|
594
594
|
});
|
595
595
|
}
|
596
596
|
function M() {
|
597
|
-
C.forEach((
|
598
|
-
|
597
|
+
C.forEach((V) => {
|
598
|
+
V.status === "pending" && (V.status = "aborted");
|
599
599
|
}), C = [];
|
600
600
|
}
|
601
|
-
function G(
|
601
|
+
function G(V, N, J) {
|
602
602
|
const $ = N !== "success";
|
603
|
-
switch (C = C.filter((Z) => Z !==
|
603
|
+
switch (C = C.filter((Z) => Z !== V), u) {
|
604
604
|
case "pending":
|
605
605
|
break;
|
606
606
|
case "failed":
|
@@ -619,7 +619,7 @@ function gl(e, n, t, s) {
|
|
619
619
|
return;
|
620
620
|
}
|
621
621
|
if (L(), M(), !e.random) {
|
622
|
-
const Z = e.resources.indexOf(
|
622
|
+
const Z = e.resources.indexOf(V.resource);
|
623
623
|
Z !== -1 && Z !== e.index && (e.index = Z);
|
624
624
|
}
|
625
625
|
u = "completed", b.forEach((Z) => {
|
@@ -630,8 +630,8 @@ function gl(e, n, t, s) {
|
|
630
630
|
if (u !== "pending")
|
631
631
|
return;
|
632
632
|
L();
|
633
|
-
const
|
634
|
-
if (
|
633
|
+
const V = d.shift();
|
634
|
+
if (V === void 0) {
|
635
635
|
if (C.length) {
|
636
636
|
f = setTimeout(() => {
|
637
637
|
L(), u === "pending" && (M(), D());
|
@@ -643,12 +643,12 @@ function gl(e, n, t, s) {
|
|
643
643
|
}
|
644
644
|
const N = {
|
645
645
|
status: "pending",
|
646
|
-
resource:
|
646
|
+
resource: V,
|
647
647
|
callback: (J, $) => {
|
648
648
|
G(N, J, $);
|
649
649
|
}
|
650
650
|
};
|
651
|
-
C.push(N), g++, f = setTimeout(j, e.rotate), t(
|
651
|
+
C.push(N), g++, f = setTimeout(j, e.rotate), t(V, n, N.callback);
|
652
652
|
}
|
653
653
|
return setTimeout(j), F;
|
654
654
|
}
|
@@ -687,9 +687,9 @@ function bi(e) {
|
|
687
687
|
}
|
688
688
|
function Bn() {
|
689
689
|
}
|
690
|
-
const
|
690
|
+
const Pt = /* @__PURE__ */ Object.create(null);
|
691
691
|
function yl(e) {
|
692
|
-
if (!
|
692
|
+
if (!Pt[e]) {
|
693
693
|
const n = dn(e);
|
694
694
|
if (!n)
|
695
695
|
return;
|
@@ -697,9 +697,9 @@ function yl(e) {
|
|
697
697
|
config: n,
|
698
698
|
redundancy: t
|
699
699
|
};
|
700
|
-
|
700
|
+
Pt[e] = s;
|
701
701
|
}
|
702
|
-
return
|
702
|
+
return Pt[e];
|
703
703
|
}
|
704
704
|
function bl(e, n, t) {
|
705
705
|
let s, i;
|
@@ -849,7 +849,7 @@ function wl(e, n) {
|
|
849
849
|
}
|
850
850
|
n.lastModified && !Cl(e, n.lastModified) || Object.keys(n.icons).length && (n.not_found && (n = Object.assign({}, n), delete n.not_found), t("local") || t("session"));
|
851
851
|
}
|
852
|
-
function
|
852
|
+
function Pn() {
|
853
853
|
}
|
854
854
|
function kl(e) {
|
855
855
|
e.iconsLoaderFlag || (e.iconsLoaderFlag = !0, setTimeout(() => {
|
@@ -901,7 +901,7 @@ const Tl = (e, n) => {
|
|
901
901
|
s.loaded,
|
902
902
|
s.missing,
|
903
903
|
s.pending,
|
904
|
-
|
904
|
+
Pn
|
905
905
|
);
|
906
906
|
}), () => {
|
907
907
|
u = !1;
|
@@ -922,7 +922,7 @@ const Tl = (e, n) => {
|
|
922
922
|
}), o.forEach((u) => {
|
923
923
|
const { provider: g, prefix: p } = u;
|
924
924
|
i[g][p].length && vl(u, i[g][p]);
|
925
|
-
}), n ? hl(n, s, o) :
|
925
|
+
}), n ? hl(n, s, o) : Pn;
|
926
926
|
};
|
927
927
|
function Sl(e, n) {
|
928
928
|
const t = {
|
@@ -985,7 +985,7 @@ function Fl(e) {
|
|
985
985
|
function Dl(e) {
|
986
986
|
return 'url("data:image/svg+xml,' + Fl(e) + '")';
|
987
987
|
}
|
988
|
-
const
|
988
|
+
const Vn = {
|
989
989
|
...gi,
|
990
990
|
inline: !1
|
991
991
|
}, Ml = {
|
@@ -993,7 +993,7 @@ const Pn = {
|
|
993
993
|
"xmlns:xlink": "http://www.w3.org/1999/xlink",
|
994
994
|
"aria-hidden": !0,
|
995
995
|
role: "img"
|
996
|
-
},
|
996
|
+
}, Pl = {
|
997
997
|
display: "inline-block"
|
998
998
|
}, Jt = {
|
999
999
|
backgroundColor: "currentColor"
|
@@ -1022,7 +1022,7 @@ function Hn(e) {
|
|
1022
1022
|
return e + (e.match(/^[-0-9.]+$/) ? "px" : "");
|
1023
1023
|
}
|
1024
1024
|
const qn = (e, n) => {
|
1025
|
-
const t = Sl(
|
1025
|
+
const t = Sl(Vn, n), s = { ...Ml }, i = n.mode || "svg", o = {}, d = n.style, c = typeof d == "object" && !(d instanceof Array) ? d : {};
|
1026
1026
|
for (let v in n) {
|
1027
1027
|
const B = n[v];
|
1028
1028
|
if (B !== void 0)
|
@@ -1052,7 +1052,7 @@ const qn = (e, n) => {
|
|
1052
1052
|
break;
|
1053
1053
|
default: {
|
1054
1054
|
const F = mt[v];
|
1055
|
-
F ? (B === !0 || B === "true" || B === 1) && (t[F] = !0) :
|
1055
|
+
F ? (B === !0 || B === "true" || B === 1) && (t[F] = !0) : Vn[v] === void 0 && (s[v] = B);
|
1056
1056
|
}
|
1057
1057
|
}
|
1058
1058
|
}
|
@@ -1075,7 +1075,7 @@ const qn = (e, n) => {
|
|
1075
1075
|
"--svg": Dl(L),
|
1076
1076
|
width: Hn(g.width),
|
1077
1077
|
height: Hn(g.height),
|
1078
|
-
...
|
1078
|
+
...Pl,
|
1079
1079
|
...b ? Jt : Ti,
|
1080
1080
|
...c
|
1081
1081
|
}, Tn("span", s);
|
@@ -1114,7 +1114,7 @@ if (typeof document < "u" && typeof window < "u") {
|
|
1114
1114
|
}
|
1115
1115
|
}
|
1116
1116
|
}
|
1117
|
-
const
|
1117
|
+
const Vl = {
|
1118
1118
|
..._t,
|
1119
1119
|
body: ""
|
1120
1120
|
}, Al = ri({
|
@@ -1166,7 +1166,7 @@ const Pl = {
|
|
1166
1166
|
this.counter;
|
1167
1167
|
const e = this.$attrs, n = this.iconMounted ? this.getIcon(e.icon, e.onLoad) : null;
|
1168
1168
|
if (!n)
|
1169
|
-
return qn(
|
1169
|
+
return qn(Vl, e);
|
1170
1170
|
let t = e;
|
1171
1171
|
return n.classes && (t = {
|
1172
1172
|
...e,
|
@@ -1176,7 +1176,7 @@ const Pl = {
|
|
1176
1176
|
...n.data
|
1177
1177
|
}, t);
|
1178
1178
|
}
|
1179
|
-
}),
|
1179
|
+
}), P = (e, n) => {
|
1180
1180
|
const t = e.__vccOpts || e;
|
1181
1181
|
for (const [s, i] of n)
|
1182
1182
|
t[s] = i;
|
@@ -1240,7 +1240,7 @@ function ql(e, n, t, s, i, o) {
|
|
1240
1240
|
title: t.tooltip
|
1241
1241
|
}, null, 10, Hl));
|
1242
1242
|
}
|
1243
|
-
const
|
1243
|
+
const K = /* @__PURE__ */ P(El, [["render", ql]]);
|
1244
1244
|
function Se(e, n) {
|
1245
1245
|
return wt(e, "EditComponentWrapper", n);
|
1246
1246
|
}
|
@@ -1430,7 +1430,7 @@ const zl = {
|
|
1430
1430
|
class: "component-name"
|
1431
1431
|
}, Ql = ["data-component"], Xl = ["title"], $l = ["href", "title"], es = ["title"], ts = { key: 0 }, ns = { key: 1 }, is = ["title"], os = ["title"];
|
1432
1432
|
function ls(e, n, t, s, i, o) {
|
1433
|
-
const d =
|
1433
|
+
const d = K;
|
1434
1434
|
return l(), w(Me(t.componentTag || "div"), {
|
1435
1435
|
class: _(["edit-component-wrapper", { active: o.active }]),
|
1436
1436
|
tabindex: "0",
|
@@ -1591,7 +1591,7 @@ function ls(e, n, t, s, i, o) {
|
|
1591
1591
|
_: 3
|
1592
1592
|
}, 8, ["class", "onClick", "title", "data-identifier"]);
|
1593
1593
|
}
|
1594
|
-
const He = /* @__PURE__ */
|
1594
|
+
const He = /* @__PURE__ */ P(jl, [["render", ls]]), le = {
|
1595
1595
|
inject: {
|
1596
1596
|
editModeContext: {
|
1597
1597
|
default: null
|
@@ -1731,7 +1731,7 @@ const He = /* @__PURE__ */ V(jl, [["render", ls]]), le = {
|
|
1731
1731
|
];
|
1732
1732
|
function ys(e, n, t, s, i, o) {
|
1733
1733
|
var g;
|
1734
|
-
const d =
|
1734
|
+
const d = K, c = te, u = He;
|
1735
1735
|
return !e.editModeContext || e.settingsContext || e.mainSidebarContext || t.headlineText ? (l(), r("div", {
|
1736
1736
|
key: 0,
|
1737
1737
|
class: _(["cmd-headline", { "has-pre-headline-text": t.preHeadlineText, "has-icon": (g = t.cmdIcon) == null ? void 0 : g.iconClass }, o.headlineTextAlign])
|
@@ -1820,7 +1820,7 @@ function ys(e, n, t, s, i, o) {
|
|
1820
1820
|
_: 3
|
1821
1821
|
}, 8, ["componentProps", "componentPath", "allowDeleteComponent"]));
|
1822
1822
|
}
|
1823
|
-
const Y = /* @__PURE__ */
|
1823
|
+
const Y = /* @__PURE__ */ P(ss, [["render", ys]]), bs = {
|
1824
1824
|
name: "CmdTooltip",
|
1825
1825
|
data() {
|
1826
1826
|
return {
|
@@ -1949,7 +1949,7 @@ const Y = /* @__PURE__ */ V(ss, [["render", ys]]), bs = {
|
|
1949
1949
|
class: "headline-wrapper"
|
1950
1950
|
}, _s = ["title"];
|
1951
1951
|
function Cs(e, n, t, s, i, o) {
|
1952
|
-
const d = Y, c =
|
1952
|
+
const d = Y, c = K;
|
1953
1953
|
return i.tooltipVisibility ? (l(), r("div", {
|
1954
1954
|
key: 0,
|
1955
1955
|
class: _(["cmd-tooltip", t.validationStatus]),
|
@@ -1974,7 +1974,7 @@ function Cs(e, n, t, s, i, o) {
|
|
1974
1974
|
])
|
1975
1975
|
], 2)) : m("", !0);
|
1976
1976
|
}
|
1977
|
-
const Si = /* @__PURE__ */
|
1977
|
+
const Si = /* @__PURE__ */ P(bs, [["render", Cs]]), me = {
|
1978
1978
|
props: {
|
1979
1979
|
/**
|
1980
1980
|
* Message properties for internationalization.
|
@@ -2124,7 +2124,7 @@ const Si = /* @__PURE__ */ V(bs, [["render", Cs]]), me = {
|
|
2124
2124
|
}, vs = { class: "cmd-list-of-requirements" }, Ts = /* @__PURE__ */ a("br", null, null, -1), Ss = /* @__PURE__ */ a("hr", null, null, -1), Os = ["href", "target"], Ls = { key: 1 };
|
2125
2125
|
function Is(e, n, t, s, i, o) {
|
2126
2126
|
var u, g, p;
|
2127
|
-
const d = Y, c =
|
2127
|
+
const d = Y, c = K;
|
2128
2128
|
return l(), r("div", vs, [
|
2129
2129
|
t.showHeadline ? (l(), w(d, {
|
2130
2130
|
key: 0,
|
@@ -2176,7 +2176,7 @@ function Is(e, n, t, s, i, o) {
|
|
2176
2176
|
], 64)) : m("", !0)
|
2177
2177
|
]);
|
2178
2178
|
}
|
2179
|
-
const Bs = /* @__PURE__ */
|
2179
|
+
const Bs = /* @__PURE__ */ P(ks, [["render", Is]]), Fs = {
|
2180
2180
|
name: "CmdTooltipForFormElements",
|
2181
2181
|
props: {
|
2182
2182
|
/**
|
@@ -2243,7 +2243,7 @@ function Ds(e, n, t, s, i, o) {
|
|
2243
2243
|
_: 1
|
2244
2244
|
}, 8, ["class", "relatedId"]);
|
2245
2245
|
}
|
2246
|
-
const mn = /* @__PURE__ */
|
2246
|
+
const mn = /* @__PURE__ */ P(Fs, [["render", Ds]]), hn = {
|
2247
2247
|
data() {
|
2248
2248
|
return {
|
2249
2249
|
defaultMessageProperties: {
|
@@ -2494,7 +2494,7 @@ const mn = /* @__PURE__ */ V(Fs, [["render", Ds]]), hn = {
|
|
2494
2494
|
}
|
2495
2495
|
}
|
2496
2496
|
};
|
2497
|
-
function
|
2497
|
+
function Ps(e = "special character - replace with getMessage") {
|
2498
2498
|
return {
|
2499
2499
|
message: e,
|
2500
2500
|
valid(n) {
|
@@ -2502,7 +2502,7 @@ function Vs(e = "special character - replace with getMessage") {
|
|
2502
2502
|
}
|
2503
2503
|
};
|
2504
2504
|
}
|
2505
|
-
function
|
2505
|
+
function Vs(e = "Field contains numbers") {
|
2506
2506
|
return {
|
2507
2507
|
message: e,
|
2508
2508
|
// short for message: message
|
@@ -2566,10 +2566,10 @@ const kt = {
|
|
2566
2566
|
return e.map((n) => n.replace(/\s/g, "")).join("");
|
2567
2567
|
}
|
2568
2568
|
}
|
2569
|
-
},
|
2569
|
+
}, Vt = {};
|
2570
2570
|
function qs(e = "defaultSequence") {
|
2571
|
-
const n =
|
2572
|
-
return
|
2571
|
+
const n = Vt[e] || 0;
|
2572
|
+
return Vt[e] = n + 1, Vt[e];
|
2573
2573
|
}
|
2574
2574
|
const fn = {
|
2575
2575
|
data() {
|
@@ -3108,8 +3108,8 @@ const fn = {
|
|
3108
3108
|
class: "search-field-wrapper flex-container no-gap"
|
3109
3109
|
}, ma = ["id", "maxlength", "value"], ha = ["title"], pa = ["title"], fa = { key: 1 };
|
3110
3110
|
function ga(e, n, t, s, i, o) {
|
3111
|
-
var u, g, p, f, C, b, L, v, B, F, D, M, G, j,
|
3112
|
-
const d =
|
3111
|
+
var u, g, p, f, C, b, L, v, B, F, D, M, G, j, V, N, J, $, Z, ee, se, ce, ue, ne;
|
3112
|
+
const d = K, c = mn;
|
3113
3113
|
return t.element === "input" || t.element === "select" || t.element === "textarea" ? (l(), r("label", {
|
3114
3114
|
key: 0,
|
3115
3115
|
class: _([
|
@@ -3324,7 +3324,7 @@ function ga(e, n, t, s, i, o) {
|
|
3324
3324
|
iconClass: (M = (D = t.nativeButton) == null ? void 0 : D.icon) == null ? void 0 : M.iconClass,
|
3325
3325
|
type: (j = (G = t.nativeButton) == null ? void 0 : G.icon) == null ? void 0 : j.iconType
|
3326
3326
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
3327
|
-
(
|
3327
|
+
(V = t.nativeButton) != null && V.icon && ((N = t.nativeButton) != null && N.text) ? (l(), r("span", fa, y(t.nativeButton.text), 1)) : (l(), r(S, { key: 2 }, [
|
3328
3328
|
E(y(t.nativeButton.text), 1)
|
3329
3329
|
], 64)),
|
3330
3330
|
($ = (J = t.nativeButton) == null ? void 0 : J.icon) != null && $.show && ((ee = (Z = t.nativeButton) == null ? void 0 : Z.icon) == null ? void 0 : ee.position) === "after" ? (l(), w(d, {
|
@@ -3334,7 +3334,7 @@ function ga(e, n, t, s, i, o) {
|
|
3334
3334
|
}, null, 8, ["iconClass", "type"])) : m("", !0)
|
3335
3335
|
], 16)) : m("", !0);
|
3336
3336
|
}
|
3337
|
-
const te = /* @__PURE__ */
|
3337
|
+
const te = /* @__PURE__ */ P(Ns, [["render", ga]]), ya = {
|
3338
3338
|
name: "CmdAddressDataItem",
|
3339
3339
|
mixins: [le],
|
3340
3340
|
data() {
|
@@ -3456,15 +3456,15 @@ const te = /* @__PURE__ */ V(Ns, [["render", ga]]), ya = {
|
|
3456
3456
|
}, Fa = { class: "street-address" }, Da = /* @__PURE__ */ a("br", null, null, -1), Ma = {
|
3457
3457
|
key: 0,
|
3458
3458
|
class: "postal-code"
|
3459
|
-
},
|
3459
|
+
}, Pa = {
|
3460
3460
|
key: 1,
|
3461
3461
|
class: "locality"
|
3462
|
-
},
|
3462
|
+
}, Va = /* @__PURE__ */ a("br", null, null, -1), Aa = /* @__PURE__ */ a("br", null, null, -1), Ea = {
|
3463
3463
|
key: 3,
|
3464
3464
|
class: "country-name"
|
3465
3465
|
};
|
3466
3466
|
function Ha(e, n, t, s, i, o) {
|
3467
|
-
const d =
|
3467
|
+
const d = K, c = te;
|
3468
3468
|
return l(), r(S, null, [
|
3469
3469
|
a("dt", {
|
3470
3470
|
class: _(["cmd-address-data-item", { address: t.addressEntry.name === "address" }]),
|
@@ -3598,14 +3598,14 @@ function Ha(e, n, t, s, i, o) {
|
|
3598
3598
|
class: _(t.showCityBeforeZip ? "city-zip" : "zip-city")
|
3599
3599
|
}, [
|
3600
3600
|
t.addressEntry.zip ? (l(), r("span", Ma, y(t.addressEntry.zip), 1)) : m("", !0),
|
3601
|
-
t.addressEntry.city ? (l(), r("span",
|
3601
|
+
t.addressEntry.city ? (l(), r("span", Pa, [
|
3602
3602
|
E(y(t.addressEntry.city), 1),
|
3603
3603
|
t.addressEntry.state ? (l(), r(S, { key: 0 }, [
|
3604
3604
|
E(" " + y(t.addressEntry.state), 1)
|
3605
3605
|
], 64)) : m("", !0)
|
3606
3606
|
])) : m("", !0)
|
3607
3607
|
], 2)) : m("", !0),
|
3608
|
-
|
3608
|
+
Va,
|
3609
3609
|
t.addressEntry.miscInfo ? (l(), r(S, { key: 2 }, [
|
3610
3610
|
a("span", null, y(t.addressEntry.miscInfo), 1),
|
3611
3611
|
Aa
|
@@ -3616,7 +3616,7 @@ function Ha(e, n, t, s, i, o) {
|
|
3616
3616
|
])) : m("", !0)
|
3617
3617
|
], 64);
|
3618
3618
|
}
|
3619
|
-
const qa = /* @__PURE__ */
|
3619
|
+
const qa = /* @__PURE__ */ P(ya, [["render", Ha]]), Ra = {
|
3620
3620
|
name: "CmdAddressData",
|
3621
3621
|
mixins: [le],
|
3622
3622
|
props: {
|
@@ -3743,7 +3743,7 @@ const qa = /* @__PURE__ */ V(ya, [["render", Ha]]), Ra = {
|
|
3743
3743
|
};
|
3744
3744
|
function mr(e, n, t, s, i, o) {
|
3745
3745
|
var p;
|
3746
|
-
const d = Y, c = qa, u = He, g =
|
3746
|
+
const d = Y, c = qa, u = He, g = K;
|
3747
3747
|
return l(), r("div", Na, [
|
3748
3748
|
t.useSlot ? H(e.$slots, "default", { key: 0 }) : (l(), r(S, { key: 1 }, [
|
3749
3749
|
(p = t.cmdHeadline) != null && p.headlineText || e.editModeContext ? (l(), w(d, R(I({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
@@ -3891,7 +3891,7 @@ function mr(e, n, t, s, i, o) {
|
|
3891
3891
|
], 64))
|
3892
3892
|
]);
|
3893
3893
|
}
|
3894
|
-
const Li = /* @__PURE__ */
|
3894
|
+
const Li = /* @__PURE__ */ P(Ra, [["render", mr]]), hr = {
|
3895
3895
|
name: "CmdBackToTopButton",
|
3896
3896
|
data() {
|
3897
3897
|
var e;
|
@@ -3955,8 +3955,8 @@ const Li = /* @__PURE__ */ V(Ra, [["render", mr]]), hr = {
|
|
3955
3955
|
}
|
3956
3956
|
}, pr = ["title"];
|
3957
3957
|
function fr(e, n, t, s, i, o) {
|
3958
|
-
const d =
|
3959
|
-
return l(), w(
|
3958
|
+
const d = K;
|
3959
|
+
return l(), w(Ve, { name: "fade" }, {
|
3960
3960
|
default: k(() => [
|
3961
3961
|
o.show ? (l(), r("a", {
|
3962
3962
|
key: 0,
|
@@ -3976,7 +3976,7 @@ function fr(e, n, t, s, i, o) {
|
|
3976
3976
|
_: 1
|
3977
3977
|
});
|
3978
3978
|
}
|
3979
|
-
const gr = /* @__PURE__ */
|
3979
|
+
const gr = /* @__PURE__ */ P(hr, [["render", fr]]), yr = {
|
3980
3980
|
name: "CmdBankAccountData",
|
3981
3981
|
props: {
|
3982
3982
|
/**
|
@@ -4040,7 +4040,7 @@ const gr = /* @__PURE__ */ V(hr, [["render", fr]]), yr = {
|
|
4040
4040
|
}
|
4041
4041
|
}, br = { class: "cmd-bank-account-data" }, xr = { key: 0 }, _r = ["onClick", "title"], Cr = { key: 1 };
|
4042
4042
|
function wr(e, n, t, s, i, o) {
|
4043
|
-
const d = Y, c =
|
4043
|
+
const d = Y, c = K;
|
4044
4044
|
return l(), r("div", br, [
|
4045
4045
|
t.useSlot ? H(e.$slots, "default", { key: 0 }) : (l(), r(S, { key: 1 }, [
|
4046
4046
|
t.cmdHeadline ? (l(), w(d, R(I({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
@@ -4066,7 +4066,7 @@ function wr(e, n, t, s, i, o) {
|
|
4066
4066
|
], 64))
|
4067
4067
|
]);
|
4068
4068
|
}
|
4069
|
-
const kr = /* @__PURE__ */
|
4069
|
+
const kr = /* @__PURE__ */ P(yr, [["render", wr]]), vr = {
|
4070
4070
|
name: "CmdSystemMessage",
|
4071
4071
|
mixins: [kt],
|
4072
4072
|
data() {
|
@@ -4162,8 +4162,8 @@ const kr = /* @__PURE__ */ V(yr, [["render", wr]]), vr = {
|
|
4162
4162
|
}
|
4163
4163
|
}, Tr = ["role", "aria-labelledby"], Sr = ["title"];
|
4164
4164
|
function Or(e, n, t, s, i, o) {
|
4165
|
-
const d =
|
4166
|
-
return l(), w(
|
4165
|
+
const d = K, c = Y;
|
4166
|
+
return l(), w(Ve, {
|
4167
4167
|
name: t.useTransition ? "fade" : null
|
4168
4168
|
}, {
|
4169
4169
|
default: k(() => [
|
@@ -4199,7 +4199,7 @@ function Or(e, n, t, s, i, o) {
|
|
4199
4199
|
_: 3
|
4200
4200
|
}, 8, ["name"]);
|
4201
4201
|
}
|
4202
|
-
const et = /* @__PURE__ */
|
4202
|
+
const et = /* @__PURE__ */ P(vr, [["render", Or]]), Lr = {
|
4203
4203
|
name: "CmdForm",
|
4204
4204
|
components: { CmdSystemMessage: et },
|
4205
4205
|
emits: ["submit"],
|
@@ -4339,7 +4339,7 @@ const et = /* @__PURE__ */ V(vr, [["render", Or]]), Lr = {
|
|
4339
4339
|
}, Ir = ["action", "data-use-validation", "novalidate", "method"], Br = { class: "flex-container" }, Fr = ["type"], Dr = { key: 1 }, Mr = {
|
4340
4340
|
key: 0,
|
4341
4341
|
class: "button-wrapper"
|
4342
|
-
},
|
4342
|
+
}, Pr = ["type"], Vr = { key: 1 };
|
4343
4343
|
function Ar(e, n, t, s, i, o) {
|
4344
4344
|
const d = et, c = te;
|
4345
4345
|
return l(), r("form", {
|
@@ -4402,14 +4402,14 @@ function Ar(e, n, t, s, i, o) {
|
|
4402
4402
|
key: 0,
|
4403
4403
|
class: _(o.submitButtonOptions.iconClass)
|
4404
4404
|
}, null, 2)) : m("", !0),
|
4405
|
-
o.submitButtonOptions.text ? (l(), r("span",
|
4406
|
-
], 10,
|
4405
|
+
o.submitButtonOptions.text ? (l(), r("span", Vr, y(o.submitButtonOptions.text), 1)) : m("", !0)
|
4406
|
+
], 10, Pr)
|
4407
4407
|
])) : m("", !0),
|
4408
4408
|
H(e.$slots, "button-row")
|
4409
4409
|
], 64)) : H(e.$slots, "default", { key: 1 })
|
4410
4410
|
], 42, Ir);
|
4411
4411
|
}
|
4412
|
-
const Ii = /* @__PURE__ */
|
4412
|
+
const Ii = /* @__PURE__ */ P(Lr, [["render", Ar]]), Er = {
|
4413
4413
|
data() {
|
4414
4414
|
return {
|
4415
4415
|
defaultMessageProperties: {
|
@@ -4450,19 +4450,8 @@ const Ii = /* @__PURE__ */ V(Lr, [["render", Ar]]), Er = {
|
|
4450
4450
|
this.label = n;
|
4451
4451
|
}
|
4452
4452
|
validate(n) {
|
4453
|
-
|
4454
|
-
|
4455
|
-
Te.PATTERN_SURNAME,
|
4456
|
-
this.label("form_error_invalid_surname")
|
4457
|
-
)[n.email.error, n.email.errorMessage] = this.validateRequired(
|
4458
|
-
n.email.value,
|
4459
|
-
Te.PATTERN_EMAIL,
|
4460
|
-
this.label("form_error_invalid_email")
|
4461
|
-
)[n.userMessage.error, n.userMessage.errorMessage] = this.validateRequired(
|
4462
|
-
n.userMessage.value,
|
4463
|
-
Te.PATTERN_MESSAGE,
|
4464
|
-
this.label("form_error_invalid_message")
|
4465
|
-
), n.acceptPrivacy.error = !1, n.error = n.lastName.error || n.email.error || n.userMessage.error, n;
|
4453
|
+
const t = this.validateRequired(n.lastName.value, Te.PATTERN_SURNAME, this.label("form_error_invalid_surname")), s = this.validateRequired(n.email.value, Te.PATTERN_EMAIL, this.label("form_error_invalid_email")), i = this.validateRequired(n.userMessage.value, Te.PATTERN_MESSAGE, this.label("form_error_invalid_message"));
|
4454
|
+
return n.lastName.error = t[0], n.lastName.errorMessage = t[1], n.email.error = s[0], n.email.errorMessage = s[1], n.userMessage.error = i[0], n.userMessage.errorMessage = i[1], console.log("validate", n.email), n.acceptPrivacy.error = !1, n.error = n.lastName.error || n.email.error || n.userMessage.error, n;
|
4466
4455
|
}
|
4467
4456
|
validatePrivacy(n) {
|
4468
4457
|
return n.acceptPrivacy.error = !n.acceptPrivacy.value, n.acceptPrivacy.errorMessage = n.acceptPrivacy.error ? this.label("form_error_missing_privacy_consent") : "", n.error = n.error || n.acceptPrivacy.error, n;
|
@@ -4746,12 +4735,12 @@ function Qr(e, n, t, s, i, o) {
|
|
4746
4735
|
itemProvider: ((u = e.editModeConfig) == null ? void 0 : u.allowAddItem) !== !1 ? o.itemProvider : null
|
4747
4736
|
}, {
|
4748
4737
|
default: k((j) => {
|
4749
|
-
var
|
4738
|
+
var V, N, J, $, Z, ee, se, ce, ue, ne, A, ae;
|
4750
4739
|
return [
|
4751
4740
|
a("figure", {
|
4752
4741
|
class: _(["cmd-image flex-container no-gap vertical", o.textAlign])
|
4753
4742
|
}, [
|
4754
|
-
(
|
4743
|
+
(V = t.figcaption) != null && V.show && ((N = t.figcaption) == null ? void 0 : N.position) === "top" ? (l(), r(S, { key: 0 }, [
|
4755
4744
|
j.editing ? (l(), w(d, {
|
4756
4745
|
key: 0,
|
4757
4746
|
element: "input",
|
@@ -4849,7 +4838,7 @@ function Qr(e, n, t, s, i, o) {
|
|
4849
4838
|
onLoad: n[5] || (n[5] = (...j) => o.onImageLoaded && o.onImageLoaded(...j))
|
4850
4839
|
}, null, 40, Zr));
|
4851
4840
|
}
|
4852
|
-
const Ce = /* @__PURE__ */
|
4841
|
+
const Ce = /* @__PURE__ */ P(Hr, [["render", Qr]]), Xr = {
|
4853
4842
|
data() {
|
4854
4843
|
return {
|
4855
4844
|
defaultMessageProperties: {
|
@@ -4915,7 +4904,7 @@ const Ce = /* @__PURE__ */ V(Hr, [["render", Qr]]), Xr = {
|
|
4915
4904
|
}
|
4916
4905
|
}, ed = ["title"];
|
4917
4906
|
function td(e, n, t, s, i, o) {
|
4918
|
-
const d =
|
4907
|
+
const d = K;
|
4919
4908
|
return l(), r("a", {
|
4920
4909
|
href: "#",
|
4921
4910
|
onClick: n[0] || (n[0] = T(() => {
|
@@ -4929,7 +4918,7 @@ function td(e, n, t, s, i, o) {
|
|
4929
4918
|
}, null, 8, ["type", "iconClass"])
|
4930
4919
|
], 10, ed);
|
4931
4920
|
}
|
4932
|
-
const vt = /* @__PURE__ */
|
4921
|
+
const vt = /* @__PURE__ */ P($r, [["render", td]]), nd = {
|
4933
4922
|
data() {
|
4934
4923
|
return {
|
4935
4924
|
defaultMessageProperties: {
|
@@ -5170,7 +5159,7 @@ const vt = /* @__PURE__ */ V($r, [["render", td]]), nd = {
|
|
5170
5159
|
];
|
5171
5160
|
function md(e, n, t, s, i, o) {
|
5172
5161
|
var p;
|
5173
|
-
const d = Y, c = vt, u = Ce, g =
|
5162
|
+
const d = Y, c = vt, u = Ce, g = K;
|
5174
5163
|
return l(), r("div", {
|
5175
5164
|
class: _([
|
5176
5165
|
"cmd-thumbnail-scroller",
|
@@ -5249,7 +5238,7 @@ function md(e, n, t, s, i, o) {
|
|
5249
5238
|
])
|
5250
5239
|
], 2);
|
5251
5240
|
}
|
5252
|
-
const Bi = /* @__PURE__ */
|
5241
|
+
const Bi = /* @__PURE__ */ P(id, [["render", md]]), ye = (e) => {
|
5253
5242
|
const n = document.createElement("div");
|
5254
5243
|
document.querySelector("body").appendChild(n), Do(Fi, {
|
5255
5244
|
...e,
|
@@ -5554,8 +5543,8 @@ const pd = Fi, fd = ["aria-label"], gd = { class: "flex-container" }, yd = {
|
|
5554
5543
|
class: "flex-container no-flex"
|
5555
5544
|
}, Od = ["title"], Ld = { key: 1 }, Id = ["title"], Bd = { key: 1 };
|
5556
5545
|
function Fd(e, n, t, s, i, o) {
|
5557
|
-
var f, C, b, L, v, B, F, D, M, G, j,
|
5558
|
-
const d = Y, c =
|
5546
|
+
var f, C, b, L, v, B, F, D, M, G, j, V, N, J, $, Z, ee, se, ce, ue, ne, A, ae, ie, Le, Ie, we, Be, Fe, De, ke;
|
5547
|
+
const d = Y, c = K, u = Ce, g = vt, p = Bi;
|
5559
5548
|
return l(), r("dialog", {
|
5560
5549
|
ref: "dialog",
|
5561
5550
|
class: _(["cmd-fancybox", { "show-overlay": e.showOverlay, image: e.fancyBoxImageUrl || e.fancyBoxGallery, "image-gallery": e.fancyBoxGallery }]),
|
@@ -5589,7 +5578,7 @@ function Fd(e, n, t, s, i, o) {
|
|
5589
5578
|
type: (j = e.fancyBoxOptionsProperties.printButtons.grayscale) == null ? void 0 : j.iconType
|
5590
5579
|
}, null, 8, ["iconClass", "type"])
|
5591
5580
|
], 8, xd)) : m("", !0),
|
5592
|
-
(
|
5581
|
+
(V = e.fancyBoxOptionsProperties.closeIcon) != null && V.show ? (l(), r("a", {
|
5593
5582
|
key: 2,
|
5594
5583
|
href: "#",
|
5595
5584
|
class: "button",
|
@@ -5668,7 +5657,7 @@ function Fd(e, n, t, s, i, o) {
|
|
5668
5657
|
}, null, 8, ["thumbnailScrollerItems", "onClick", "activeItemIndex"])) : m("", !0)
|
5669
5658
|
], 42, fd);
|
5670
5659
|
}
|
5671
|
-
const Dd = /* @__PURE__ */
|
5660
|
+
const Dd = /* @__PURE__ */ P(pd, [["render", Fd]]), Md = {
|
5672
5661
|
emits: ["submit"],
|
5673
5662
|
mixins: [
|
5674
5663
|
me,
|
@@ -5681,6 +5670,7 @@ const Dd = /* @__PURE__ */ V(pd, [["render", Fd]]), Md = {
|
|
5681
5670
|
},
|
5682
5671
|
data() {
|
5683
5672
|
return {
|
5673
|
+
sendSuccessfully: !1,
|
5684
5674
|
validator: new Yt((e) => e),
|
5685
5675
|
formData: {
|
5686
5676
|
salutation: { value: this.configuration.salutation.default },
|
@@ -5878,6 +5868,16 @@ const Dd = /* @__PURE__ */ V(pd, [["render", Fd]]), Md = {
|
|
5878
5868
|
}
|
5879
5869
|
},
|
5880
5870
|
methods: {
|
5871
|
+
onSuccess() {
|
5872
|
+
this.sendSuccessfully = !0;
|
5873
|
+
try {
|
5874
|
+
this.formData.error = !1;
|
5875
|
+
for (let e in this.formData)
|
5876
|
+
this.formData[e].error && (this.formData[e].error = !1), typeof this.formData[e].value == "string" ? e === "salutation" ? this.formData[e].value = this.configuration.salutation.default : this.formData[e].value = "" : e === "acceptPrivacy" && (this.formData[e].value = !1);
|
5877
|
+
} catch (e) {
|
5878
|
+
console.error(e);
|
5879
|
+
}
|
5880
|
+
},
|
5881
5881
|
onSubmit(e) {
|
5882
5882
|
if (this.onValidate(), this.formData = Object.assign({}, this.validator.validatePrivacy(this.formData)), this.formData.error || this.useNativeSubmit) {
|
5883
5883
|
this.formData.error && e.originalEvent.preventDefault();
|
@@ -5896,7 +5896,7 @@ const Dd = /* @__PURE__ */ V(pd, [["render", Fd]]), Md = {
|
|
5896
5896
|
n.set(this.configuration[t[i]].name, this.formData[t[i]].value);
|
5897
5897
|
fetch(this.formAction, { method: ((s = this.cmdForm) == null ? void 0 : s.formMethod) || "POST", body: n }).then((i) => {
|
5898
5898
|
if (i.ok) {
|
5899
|
-
this.$refs.form.showMessage("success", this.getMessage("basic_form.system_message.success.message_sent_successfully"));
|
5899
|
+
this.sendSuccessfully = !0, this.$refs.form.showMessage("success", this.getMessage("basic_form.system_message.success.message_sent_successfully"));
|
5900
5900
|
try {
|
5901
5901
|
this.formData.error = !1;
|
5902
5902
|
for (let o in this.formData)
|
@@ -5905,7 +5905,7 @@ const Dd = /* @__PURE__ */ V(pd, [["render", Fd]]), Md = {
|
|
5905
5905
|
console.error(o);
|
5906
5906
|
}
|
5907
5907
|
} else
|
5908
|
-
this.$refs.form.showMessage("error", this.getMessage("basic_form.system_message.error.message_could_not_be_sent"));
|
5908
|
+
this.sendSuccessfully = !1, this.$refs.form.showMessage("error", this.getMessage("basic_form.system_message.error.message_could_not_be_sent"));
|
5909
5909
|
}).catch((i) => {
|
5910
5910
|
this.$refs.form.showMessage("error", this.getMessage("basic_form.system_message.error.message_could_not_be_sent")), console.error(i);
|
5911
5911
|
});
|
@@ -5928,7 +5928,7 @@ const Dd = /* @__PURE__ */ V(pd, [["render", Fd]]), Md = {
|
|
5928
5928
|
this.cityBeforeZip = this.showCityBeforeZip;
|
5929
5929
|
}
|
5930
5930
|
}
|
5931
|
-
},
|
5931
|
+
}, Pd = { class: "cmd-pages-basic-form" }, Vd = {
|
5932
5932
|
key: 0,
|
5933
5933
|
class: "flex-container no-flex row-for-small order-male-female"
|
5934
5934
|
}, Ad = {
|
@@ -5943,10 +5943,11 @@ const Dd = /* @__PURE__ */ V(pd, [["render", Fd]]), Md = {
|
|
5943
5943
|
}, qd = ["innerHTML"];
|
5944
5944
|
function Rd(e, n, t, s, i, o) {
|
5945
5945
|
const d = Y, c = te, u = Ii;
|
5946
|
-
return l(), r("div",
|
5946
|
+
return l(), r("div", Pd, [
|
5947
5947
|
t.cmdHeadline ? (l(), w(d, R(I({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
5948
5948
|
h(u, I({
|
5949
5949
|
onSubmit: o.onSubmit,
|
5950
|
+
class: { "send-success": i.sendSuccessfully },
|
5950
5951
|
novalidate: "novalidate"
|
5951
5952
|
}, t.cmdForm, {
|
5952
5953
|
legend: t.legend,
|
@@ -5955,9 +5956,9 @@ function Rd(e, n, t, s, i, o) {
|
|
5955
5956
|
ref: "form"
|
5956
5957
|
}), {
|
5957
5958
|
default: k(() => {
|
5958
|
-
var g, p, f, C, b, L, v, B, F, D, M, G, j,
|
5959
|
+
var g, p, f, C, b, L, v, B, F, D, M, G, j, V, N, J, $, Z, ee, se, ce, ue, ne, A, ae, ie, Le, Ie, we, Be, Fe, De, ke, re, it, ot, lt, st, ze, at, qe;
|
5959
5960
|
return [
|
5960
|
-
t.configuration.salutation ? (l(), r("div",
|
5961
|
+
t.configuration.salutation ? (l(), r("div", Vd, [
|
5961
5962
|
h(c, {
|
5962
5963
|
element: "input",
|
5963
5964
|
type: "radio",
|
@@ -5966,10 +5967,9 @@ function Rd(e, n, t, s, i, o) {
|
|
5966
5967
|
inputValue: "m",
|
5967
5968
|
replaceInputType: (p = t.configuration.salutation) == null ? void 0 : p.replaceInputType,
|
5968
5969
|
modelValue: i.formData.salutation.value,
|
5969
|
-
"onUpdate:modelValue": n[0] || (n[0] = (
|
5970
|
-
i18n: e.i18n
|
5971
|
-
|
5972
|
-
}, null, 8, ["labelText", "name", "replaceInputType", "modelValue", "i18n", "onValidate"]),
|
5970
|
+
"onUpdate:modelValue": n[0] || (n[0] = (W) => i.formData.salutation.value = W),
|
5971
|
+
i18n: e.i18n
|
5972
|
+
}, null, 8, ["labelText", "name", "replaceInputType", "modelValue", "i18n"]),
|
5973
5973
|
h(c, {
|
5974
5974
|
element: "input",
|
5975
5975
|
type: "radio",
|
@@ -5978,10 +5978,9 @@ function Rd(e, n, t, s, i, o) {
|
|
5978
5978
|
inputValue: "f",
|
5979
5979
|
replaceInputType: (C = t.configuration.salutation) == null ? void 0 : C.replaceInputType,
|
5980
5980
|
modelValue: i.formData.salutation.value,
|
5981
|
-
"onUpdate:modelValue": n[1] || (n[1] = (
|
5982
|
-
i18n: e.i18n
|
5983
|
-
|
5984
|
-
}, null, 8, ["labelText", "name", "replaceInputType", "modelValue", "i18n", "onValidate"])
|
5981
|
+
"onUpdate:modelValue": n[1] || (n[1] = (W) => i.formData.salutation.value = W),
|
5982
|
+
i18n: e.i18n
|
5983
|
+
}, null, 8, ["labelText", "name", "replaceInputType", "modelValue", "i18n"])
|
5985
5984
|
])) : m("", !0),
|
5986
5985
|
H(e.$slots, "top"),
|
5987
5986
|
t.configuration.lastName || t.configuration.firstName ? (l(), r("div", Ad, [
|
@@ -5995,11 +5994,11 @@ function Rd(e, n, t, s, i, o) {
|
|
5995
5994
|
name: (v = t.configuration.lastName) == null ? void 0 : v.name,
|
5996
5995
|
placeholder: e.getMessage("basic_form.placeholder.last_name"),
|
5997
5996
|
modelValue: i.formData.lastName.value,
|
5998
|
-
"onUpdate:modelValue": n[2] || (n[2] = (
|
5997
|
+
"onUpdate:modelValue": n[2] || (n[2] = (W) => i.formData.lastName.value = W),
|
5999
5998
|
status: i.formData.lastName.error ? "error" : "",
|
6000
5999
|
i18n: e.i18n,
|
6001
|
-
|
6002
|
-
}, null, 8, ["type", "labelText", "required", "name", "placeholder", "modelValue", "status", "i18n"
|
6000
|
+
showStatusIcon: !1
|
6001
|
+
}, null, 8, ["type", "labelText", "required", "name", "placeholder", "modelValue", "status", "i18n"])) : m("", !0),
|
6003
6002
|
t.configuration.firstName ? (l(), w(c, {
|
6004
6003
|
key: 1,
|
6005
6004
|
element: "input",
|
@@ -6010,11 +6009,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6010
6009
|
required: (F = t.configuration.firstName) == null ? void 0 : F.required,
|
6011
6010
|
name: (D = t.configuration.firstName) == null ? void 0 : D.name,
|
6012
6011
|
modelValue: i.formData.firstName.value,
|
6013
|
-
"onUpdate:modelValue": n[3] || (n[3] = (
|
6012
|
+
"onUpdate:modelValue": n[3] || (n[3] = (W) => i.formData.firstName.value = W),
|
6014
6013
|
status: i.formData.firstName.error ? "error" : "",
|
6015
|
-
i18n: e.i18n
|
6016
|
-
|
6017
|
-
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n", "onValidate"])) : m("", !0)
|
6014
|
+
i18n: e.i18n
|
6015
|
+
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0)
|
6018
6016
|
])) : m("", !0),
|
6019
6017
|
t.configuration.email || t.configuration.phone ? (l(), r("div", Ed, [
|
6020
6018
|
t.configuration.email ? (l(), w(c, {
|
@@ -6027,26 +6025,25 @@ function Rd(e, n, t, s, i, o) {
|
|
6027
6025
|
required: (G = t.configuration.email) == null ? void 0 : G.required,
|
6028
6026
|
name: (j = t.configuration.email) == null ? void 0 : j.name,
|
6029
6027
|
modelValue: i.formData.email.value,
|
6030
|
-
"onUpdate:modelValue": n[4] || (n[4] = (
|
6028
|
+
"onUpdate:modelValue": n[4] || (n[4] = (W) => i.formData.email.value = W),
|
6031
6029
|
status: i.formData.email.error ? "error" : "",
|
6032
6030
|
i18n: e.i18n,
|
6033
|
-
|
6034
|
-
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"
|
6031
|
+
showStatusIcon: !1
|
6032
|
+
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0),
|
6035
6033
|
t.configuration.phone ? (l(), w(c, {
|
6036
6034
|
key: 1,
|
6037
6035
|
element: "input",
|
6038
|
-
type: ((
|
6036
|
+
type: ((V = t.configuration.phone) == null ? void 0 : V.type) || "tel",
|
6039
6037
|
iconClass: "icon-phone",
|
6040
6038
|
labelText: e.getMessage("basic_form.labeltext.phone"),
|
6041
6039
|
placeholder: e.getMessage("basic_form.placeholder.phone"),
|
6042
6040
|
modelValue: i.formData.phone.value,
|
6043
|
-
"onUpdate:modelValue": n[5] || (n[5] = (
|
6041
|
+
"onUpdate:modelValue": n[5] || (n[5] = (W) => i.formData.phone.value = W),
|
6044
6042
|
required: (N = t.configuration.phone) == null ? void 0 : N.required,
|
6045
6043
|
name: (J = t.configuration.phone) == null ? void 0 : J.name,
|
6046
6044
|
status: i.formData.phone.error ? "error" : "",
|
6047
|
-
i18n: e.i18n
|
6048
|
-
|
6049
|
-
}, null, 8, ["type", "labelText", "placeholder", "modelValue", "required", "name", "status", "i18n", "onValidate"])) : m("", !0)
|
6045
|
+
i18n: e.i18n
|
6046
|
+
}, null, 8, ["type", "labelText", "placeholder", "modelValue", "required", "name", "status", "i18n"])) : m("", !0)
|
6050
6047
|
])) : m("", !0),
|
6051
6048
|
t.configuration.streetNo || t.configuration.streetNo || t.configuration.zip && t.configuration.city ? (l(), r("div", Hd, [
|
6052
6049
|
t.configuration.country ? (l(), w(c, {
|
@@ -6058,13 +6055,12 @@ function Rd(e, n, t, s, i, o) {
|
|
6058
6055
|
name: (ee = t.configuration.country) == null ? void 0 : ee.name,
|
6059
6056
|
modelValue: i.formData.country.value,
|
6060
6057
|
"onUpdate:modelValue": [
|
6061
|
-
n[6] || (n[6] = (
|
6058
|
+
n[6] || (n[6] = (W) => i.formData.country.value = W),
|
6062
6059
|
o.onCountrySelect
|
6063
6060
|
],
|
6064
6061
|
status: i.formData.country.error ? "error" : "",
|
6065
|
-
i18n: e.i18n
|
6066
|
-
|
6067
|
-
}, null, 8, ["labelText", "selectOptions", "required", "name", "modelValue", "status", "i18n", "onValidate", "onUpdate:modelValue"])) : m("", !0),
|
6062
|
+
i18n: e.i18n
|
6063
|
+
}, null, 8, ["labelText", "selectOptions", "required", "name", "modelValue", "status", "i18n", "onUpdate:modelValue"])) : m("", !0),
|
6068
6064
|
t.configuration.streetNo ? (l(), w(c, {
|
6069
6065
|
key: 1,
|
6070
6066
|
element: "input",
|
@@ -6074,11 +6070,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6074
6070
|
required: (ce = t.configuration.streetNo) == null ? void 0 : ce.required,
|
6075
6071
|
name: (ue = t.configuration.streetNo) == null ? void 0 : ue.name,
|
6076
6072
|
modelValue: i.formData.streetNo.value,
|
6077
|
-
"onUpdate:modelValue": n[7] || (n[7] = (
|
6073
|
+
"onUpdate:modelValue": n[7] || (n[7] = (W) => i.formData.streetNo.value = W),
|
6078
6074
|
status: i.formData.streetNo.error ? "error" : "",
|
6079
|
-
i18n: e.i18n
|
6080
|
-
|
6081
|
-
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n", "onValidate"])) : m("", !0),
|
6075
|
+
i18n: e.i18n
|
6076
|
+
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0),
|
6082
6077
|
t.configuration.pobox ? (l(), w(c, {
|
6083
6078
|
key: 2,
|
6084
6079
|
element: "input",
|
@@ -6088,11 +6083,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6088
6083
|
required: (A = t.configuration.pobox) == null ? void 0 : A.required,
|
6089
6084
|
name: (ae = t.configuration.pobox) == null ? void 0 : ae.name,
|
6090
6085
|
modelValue: i.formData.pobox.value,
|
6091
|
-
"onUpdate:modelValue": n[8] || (n[8] = (
|
6086
|
+
"onUpdate:modelValue": n[8] || (n[8] = (W) => i.formData.pobox.value = W),
|
6092
6087
|
status: i.formData.pobox.error ? "error" : "",
|
6093
|
-
i18n: e.i18n
|
6094
|
-
|
6095
|
-
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n", "onValidate"])) : m("", !0),
|
6088
|
+
i18n: e.i18n
|
6089
|
+
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0),
|
6096
6090
|
a("div", {
|
6097
6091
|
class: _(["input-wrapper", i.cityBeforeZip ? "order-city-zip" : "order-zip-city"])
|
6098
6092
|
}, [
|
@@ -6106,11 +6100,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6106
6100
|
required: (Le = t.configuration.zip) == null ? void 0 : Le.required,
|
6107
6101
|
name: (Ie = t.configuration.zip) == null ? void 0 : Ie.name,
|
6108
6102
|
modelValue: i.formData.zip.value,
|
6109
|
-
"onUpdate:modelValue": n[9] || (n[9] = (
|
6103
|
+
"onUpdate:modelValue": n[9] || (n[9] = (W) => i.formData.zip.value = W),
|
6110
6104
|
status: i.formData.zip.error ? "error" : "",
|
6111
|
-
i18n: e.i18n
|
6112
|
-
|
6113
|
-
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n", "onValidate"])) : m("", !0),
|
6105
|
+
i18n: e.i18n
|
6106
|
+
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0),
|
6114
6107
|
t.configuration.city ? (l(), w(c, {
|
6115
6108
|
key: 1,
|
6116
6109
|
element: "input",
|
@@ -6120,11 +6113,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6120
6113
|
required: (Be = t.configuration.city) == null ? void 0 : Be.required,
|
6121
6114
|
name: (Fe = t.configuration.city) == null ? void 0 : Fe.name,
|
6122
6115
|
modelValue: i.formData.city.value,
|
6123
|
-
"onUpdate:modelValue": n[10] || (n[10] = (
|
6116
|
+
"onUpdate:modelValue": n[10] || (n[10] = (W) => i.formData.city.value = W),
|
6124
6117
|
status: i.formData.city.error ? "error" : "",
|
6125
|
-
i18n: e.i18n
|
6126
|
-
|
6127
|
-
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n", "onValidate"])) : m("", !0)
|
6118
|
+
i18n: e.i18n
|
6119
|
+
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0)
|
6128
6120
|
], 2),
|
6129
6121
|
t.configuration.additionalAddressInfo ? (l(), w(c, {
|
6130
6122
|
key: 3,
|
@@ -6135,11 +6127,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6135
6127
|
required: (ke = t.configuration.additionalAddressInfo) == null ? void 0 : ke.required,
|
6136
6128
|
name: (re = t.configuration.additionalAddressInfo) == null ? void 0 : re.name,
|
6137
6129
|
modelValue: i.formData.additionalAddressInfo.value,
|
6138
|
-
"onUpdate:modelValue": n[11] || (n[11] = (
|
6130
|
+
"onUpdate:modelValue": n[11] || (n[11] = (W) => i.formData.additionalAddressInfo.value = W),
|
6139
6131
|
status: i.formData.additionalAddressInfo.error ? "error" : "",
|
6140
|
-
i18n: e.i18n
|
6141
|
-
|
6142
|
-
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n", "onValidate"])) : m("", !0)
|
6132
|
+
i18n: e.i18n
|
6133
|
+
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0)
|
6143
6134
|
])) : m("", !0),
|
6144
6135
|
t.configuration.userMessage ? (l(), w(c, {
|
6145
6136
|
key: 4,
|
@@ -6151,11 +6142,11 @@ function Rd(e, n, t, s, i, o) {
|
|
6151
6142
|
textCharactersLeft: e.getMessage("basic_form.text.characters_left"),
|
6152
6143
|
maxlength: (st = t.configuration.userMessage) == null ? void 0 : st.maxLength,
|
6153
6144
|
modelValue: i.formData.userMessage.value,
|
6154
|
-
"onUpdate:modelValue": n[12] || (n[12] = (
|
6145
|
+
"onUpdate:modelValue": n[12] || (n[12] = (W) => i.formData.userMessage.value = W),
|
6155
6146
|
status: i.formData.userMessage.error ? "error" : "",
|
6156
6147
|
i18n: e.i18n,
|
6157
|
-
|
6158
|
-
}, null, 8, ["element", "labelText", "placeholder", "required", "name", "textCharactersLeft", "maxlength", "modelValue", "status", "i18n"
|
6148
|
+
showStatusIcon: !1
|
6149
|
+
}, null, 8, ["element", "labelText", "placeholder", "required", "name", "textCharactersLeft", "maxlength", "modelValue", "status", "i18n"])) : m("", !0),
|
6159
6150
|
H(e.$slots, "bottom"),
|
6160
6151
|
t.configuration.acceptPrivacy ? (l(), w(c, {
|
6161
6152
|
key: 5,
|
@@ -6165,10 +6156,9 @@ function Rd(e, n, t, s, i, o) {
|
|
6165
6156
|
name: (at = t.configuration.acceptPrivacy) == null ? void 0 : at.name,
|
6166
6157
|
replaceInputType: (qe = t.configuration.acceptPrivacy) == null ? void 0 : qe.replaceInputType,
|
6167
6158
|
modelValue: i.formData.acceptPrivacy.value,
|
6168
|
-
"onUpdate:modelValue": n[13] || (n[13] = (
|
6159
|
+
"onUpdate:modelValue": n[13] || (n[13] = (W) => i.formData.acceptPrivacy.value = W),
|
6169
6160
|
status: i.formData.acceptPrivacy.error ? "error" : "",
|
6170
|
-
i18n: e.i18n
|
6171
|
-
onValidate: o.onValidate
|
6161
|
+
i18n: e.i18n
|
6172
6162
|
}, {
|
6173
6163
|
labeltext: k(() => [
|
6174
6164
|
a("span", {
|
@@ -6177,14 +6167,19 @@ function Rd(e, n, t, s, i, o) {
|
|
6177
6167
|
}, null, 8, qd)
|
6178
6168
|
]),
|
6179
6169
|
_: 1
|
6180
|
-
}, 8, ["required", "name", "replaceInputType", "modelValue", "status", "i18n"
|
6170
|
+
}, 8, ["required", "name", "replaceInputType", "modelValue", "status", "i18n"])) : m("", !0),
|
6171
|
+
a("button", {
|
6172
|
+
class: "button",
|
6173
|
+
type: "button",
|
6174
|
+
onClick: n[14] || (n[14] = (...W) => o.onSuccess && o.onSuccess(...W))
|
6175
|
+
}, "On Success")
|
6181
6176
|
];
|
6182
6177
|
}),
|
6183
6178
|
_: 3
|
6184
|
-
}, 16, ["onSubmit", "legend", "submitButton", "formAction"])
|
6179
|
+
}, 16, ["onSubmit", "class", "legend", "submitButton", "formAction"])
|
6185
6180
|
]);
|
6186
6181
|
}
|
6187
|
-
const Di = /* @__PURE__ */
|
6182
|
+
const Di = /* @__PURE__ */ P(Md, [["render", Rd]]), Nd = {
|
6188
6183
|
name: "CmdInnerLink",
|
6189
6184
|
props: {
|
6190
6185
|
/**
|
@@ -6219,7 +6214,7 @@ function Gd(e, n, t, s, i, o) {
|
|
6219
6214
|
H(e.$slots, "default")
|
6220
6215
|
], 64);
|
6221
6216
|
}
|
6222
|
-
const Wd = /* @__PURE__ */
|
6217
|
+
const Wd = /* @__PURE__ */ P(Nd, [["render", Gd]]), Kd = {
|
6223
6218
|
name: "CmdLink",
|
6224
6219
|
emits: ["click"],
|
6225
6220
|
props: {
|
@@ -6363,7 +6358,7 @@ function Zd(e, n, t, s, i, o) {
|
|
6363
6358
|
}, 8, ["text", "icon"])
|
6364
6359
|
], 10, Yd)) : m("", !0);
|
6365
6360
|
}
|
6366
|
-
const Re = /* @__PURE__ */
|
6361
|
+
const Re = /* @__PURE__ */ P(Kd, [["render", Zd]]), Qd = {
|
6367
6362
|
name: "CmdListOfLinksItem",
|
6368
6363
|
inheritAttrs: !1,
|
6369
6364
|
mixins: [le],
|
@@ -6410,7 +6405,7 @@ function tc(e, n, t, s, i, o) {
|
|
6410
6405
|
showLabel: !1,
|
6411
6406
|
placeholder: "Linktext",
|
6412
6407
|
modelValue: i.editableText,
|
6413
|
-
"onUpdate:modelValue": n[0] || (n[0] = (
|
6408
|
+
"onUpdate:modelValue": n[0] || (n[0] = (V) => i.editableText = V)
|
6414
6409
|
}, null, 8, ["modelValue"])
|
6415
6410
|
])) : (l(), r("li", Xd, [
|
6416
6411
|
h(d, {
|
@@ -6426,14 +6421,14 @@ function tc(e, n, t, s, i, o) {
|
|
6426
6421
|
styleAsBox: (D = t.link) == null ? void 0 : D.styleAsBox
|
6427
6422
|
}, null, 8, ["linkType", "text", "path", "target", "icon", "fancybox", "tooltip", "styleAsButton", "primaryButton", "styleAsBox"]),
|
6428
6423
|
(G = (M = t.link) == null ? void 0 : M.children) != null && G.length ? (l(), r("ul", $d, [
|
6429
|
-
(l(!0), r(S, null, q((j = t.link) == null ? void 0 : j.children, (
|
6424
|
+
(l(!0), r(S, null, q((j = t.link) == null ? void 0 : j.children, (V, N) => (l(), w(c, {
|
6430
6425
|
key: N,
|
6431
|
-
link:
|
6426
|
+
link: V
|
6432
6427
|
}, null, 8, ["link"]))), 128))
|
6433
6428
|
])) : m("", !0)
|
6434
6429
|
]));
|
6435
6430
|
}
|
6436
|
-
const nc = /* @__PURE__ */
|
6431
|
+
const nc = /* @__PURE__ */ P(Qd, [["render", tc]]), ic = {
|
6437
6432
|
name: "CmdListOfLinks",
|
6438
6433
|
emits: ["click"],
|
6439
6434
|
mixins: [le],
|
@@ -6617,7 +6612,7 @@ function rc(e, n, t, s, i, o) {
|
|
6617
6612
|
], 2)
|
6618
6613
|
], 2);
|
6619
6614
|
}
|
6620
|
-
const gn = /* @__PURE__ */
|
6615
|
+
const gn = /* @__PURE__ */ P(ic, [["render", rc]]), dc = {
|
6621
6616
|
data() {
|
6622
6617
|
return {
|
6623
6618
|
defaultMessageProperties: {
|
@@ -6975,10 +6970,10 @@ const uc = ["title"], mc = {
|
|
6975
6970
|
}, Lc = ["title"], Ic = { key: 2 }, Bc = { class: "box-header flex-container vertical" }, Fc = { key: 0 }, Dc = ["src", "alt"], Mc = {
|
6976
6971
|
key: 0,
|
6977
6972
|
class: "user-name"
|
6978
|
-
},
|
6973
|
+
}, Pc = {
|
6979
6974
|
key: 0,
|
6980
6975
|
class: "user-age"
|
6981
|
-
},
|
6976
|
+
}, Vc = { key: 1 }, Ac = ["title"], Ec = {
|
6982
6977
|
key: 0,
|
6983
6978
|
class: "user-name"
|
6984
6979
|
}, Hc = { class: "box-body" }, qc = {
|
@@ -6996,7 +6991,7 @@ const uc = ["title"], mc = {
|
|
6996
6991
|
};
|
6997
6992
|
function Gc(e, n, t, s, i, o) {
|
6998
6993
|
var f, C, b, L, v, B, F, D, M, G, j;
|
6999
|
-
const d = Y, c =
|
6994
|
+
const d = Y, c = K, u = Ce, g = Re, p = gn;
|
7000
6995
|
return t.boxType === "content" ? (l(), r("div", {
|
7001
6996
|
key: 0,
|
7002
6997
|
ref: "cmdBox",
|
@@ -7016,7 +7011,7 @@ function Gc(e, n, t, s, i, o) {
|
|
7016
7011
|
href: "#",
|
7017
7012
|
class: "box-header",
|
7018
7013
|
title: i.open ? t.iconOpen.tooltip : t.iconClosed.tooltip,
|
7019
|
-
onClick: n[0] || (n[0] = T((...
|
7014
|
+
onClick: n[0] || (n[0] = T((...V) => o.toggleContentVisibility && o.toggleContentVisibility(...V), ["prevent"]))
|
7020
7015
|
}, [
|
7021
7016
|
(f = t.useSlots) != null && f.includes("header") ? H(e.$slots, "header", { key: 0 }) : (C = t.cmdHeadline) != null && C.headlineText && t.headlinePosition === "header" ? (l(), w(d, R(I({ key: 1 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
7022
7017
|
h(c, {
|
@@ -7041,9 +7036,9 @@ function Gc(e, n, t, s, i, o) {
|
|
7041
7036
|
style: ft(t.allowContentToScroll ? "max-height: " + i.calculatedBodyHeight : null)
|
7042
7037
|
}, [
|
7043
7038
|
H(e.$slots, "body", {}, () => {
|
7044
|
-
var
|
7039
|
+
var V;
|
7045
7040
|
return [
|
7046
|
-
(
|
7041
|
+
(V = t.cmdHeadline) != null && V.headlineText && t.headlinePosition === "body" ? (l(), w(d, R(I({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
7047
7042
|
t.cmdIcon !== void 0 ? (l(), r("div", hc, [
|
7048
7043
|
h(c, {
|
7049
7044
|
iconClass: t.cmdIcon.iconClass,
|
@@ -7103,7 +7098,7 @@ function Gc(e, n, t, s, i, o) {
|
|
7103
7098
|
key: 1,
|
7104
7099
|
class: _(["cmd-box box product", { "stretch-vertically": t.stretchVertically, "stretch-horizontally": t.stretchHorizontally, "row-view": t.rowView }]),
|
7105
7100
|
href: "#",
|
7106
|
-
onClick: n[2] || (n[2] = T((
|
7101
|
+
onClick: n[2] || (n[2] = T((V) => o.clickOnProduct(t.product), ["prevent"]))
|
7107
7102
|
}, [
|
7108
7103
|
a("div", xc, [
|
7109
7104
|
t.product.image !== void 0 ? (l(), r("figure", _c, [
|
@@ -7150,9 +7145,9 @@ function Gc(e, n, t, s, i, o) {
|
|
7150
7145
|
}, null, 8, Dc),
|
7151
7146
|
t.rowView ? m("", !0) : (l(), r("figcaption", Mc, [
|
7152
7147
|
E(y(t.user.name), 1),
|
7153
|
-
t.user.age ? (l(), r("span",
|
7148
|
+
t.user.age ? (l(), r("span", Pc, " (" + y(t.user.age) + ")", 1)) : m("", !0)
|
7154
7149
|
]))
|
7155
|
-
])) : (l(), r("div",
|
7150
|
+
])) : (l(), r("div", Vc, [
|
7156
7151
|
a("span", {
|
7157
7152
|
class: _(t.defaultProfileIconClass),
|
7158
7153
|
title: t.user.name
|
@@ -7167,7 +7162,7 @@ function Gc(e, n, t, s, i, o) {
|
|
7167
7162
|
t.user.description ? (l(), r("p", Uc, y(t.user.description), 1)) : m("", !0)
|
7168
7163
|
]),
|
7169
7164
|
t.user.tags && t.user.tags.length ? (l(), r("ul", jc, [
|
7170
|
-
(l(!0), r(S, null, q(t.user.tags, (
|
7165
|
+
(l(!0), r(S, null, q(t.user.tags, (V, N) => (l(), r("li", { key: N }, y(V), 1))), 128))
|
7171
7166
|
])) : m("", !0),
|
7172
7167
|
t.user.links && t.user.links.length ? (l(), r("div", zc, [
|
7173
7168
|
h(p, {
|
@@ -7178,7 +7173,7 @@ function Gc(e, n, t, s, i, o) {
|
|
7178
7173
|
])) : m("", !0)
|
7179
7174
|
], 2)) : m("", !0);
|
7180
7175
|
}
|
7181
|
-
const bn = /* @__PURE__ */
|
7176
|
+
const bn = /* @__PURE__ */ P(yn, [["render", Gc]]), xn = {
|
7182
7177
|
name: "CmdBoxWrapper",
|
7183
7178
|
data() {
|
7184
7179
|
return {
|
@@ -7383,7 +7378,7 @@ const Wc = { class: "cmd-box-wrapper" }, Kc = {
|
|
7383
7378
|
class: "options-wrapper"
|
7384
7379
|
}, Yc = ["title"];
|
7385
7380
|
function Zc(e, n, t, s, i, o) {
|
7386
|
-
const d = Y, c =
|
7381
|
+
const d = Y, c = K;
|
7387
7382
|
return l(), r("div", Wc, [
|
7388
7383
|
t.cmdHeadline.headlineText || t.allowUserToToggleOrientation ? (l(), r("div", Kc, [
|
7389
7384
|
t.cmdHeadline.headlineText ? (l(), w(d, R(I({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
@@ -7421,7 +7416,7 @@ function Zc(e, n, t, s, i, o) {
|
|
7421
7416
|
], 2)
|
7422
7417
|
]);
|
7423
7418
|
}
|
7424
|
-
const Mi = /* @__PURE__ */
|
7419
|
+
const Mi = /* @__PURE__ */ P(xn, [["render", Zc]]);
|
7425
7420
|
function Ne(e) {
|
7426
7421
|
return e.path ? e.path : ((e.route == null || typeof e.route != "object" || !e.route.path && !e.route.name) && console.error("Error in router configuration. Expected object with 'path' or 'name', got", e.route), e.route);
|
7427
7422
|
}
|
@@ -7463,7 +7458,7 @@ const Qc = {
|
|
7463
7458
|
class: "separator"
|
7464
7459
|
};
|
7465
7460
|
function su(e, n, t, s, i, o) {
|
7466
|
-
const d =
|
7461
|
+
const d = K, c = _e("router-link");
|
7467
7462
|
return l(), r("ul", Xc, [
|
7468
7463
|
t.breadcrumbLabel ? (l(), r("li", $c, y(t.breadcrumbLabel), 1)) : m("", !0),
|
7469
7464
|
(l(!0), r(S, null, q(t.breadcrumbLinks || [], (u, g) => (l(), r("li", { key: g }, [
|
@@ -7502,7 +7497,7 @@ function su(e, n, t, s, i, o) {
|
|
7502
7497
|
]))), 128))
|
7503
7498
|
]);
|
7504
7499
|
}
|
7505
|
-
const
|
7500
|
+
const Pi = /* @__PURE__ */ P(Qc, [["render", su]]), au = {
|
7506
7501
|
name: "CmdCompanyLogo",
|
7507
7502
|
data() {
|
7508
7503
|
return {
|
@@ -7615,7 +7610,7 @@ function cu(e, n, t, s, i, o) {
|
|
7615
7610
|
}, null, 8, ["image", "onImageLoaded"]))
|
7616
7611
|
]);
|
7617
7612
|
}
|
7618
|
-
const
|
7613
|
+
const Vi = /* @__PURE__ */ P(au, [["render", cu]]), uu = {
|
7619
7614
|
name: "CmdContainer",
|
7620
7615
|
props: {
|
7621
7616
|
/**
|
@@ -7729,7 +7724,7 @@ function fu(e, n, t, s, i, o) {
|
|
7729
7724
|
}, null, 8, pu)) : m("", !0)
|
7730
7725
|
]);
|
7731
7726
|
}
|
7732
|
-
const gu = /* @__PURE__ */
|
7727
|
+
const gu = /* @__PURE__ */ P(uu, [["render", fu]]), yu = {
|
7733
7728
|
data() {
|
7734
7729
|
return {
|
7735
7730
|
defaultMessageProperties: {
|
@@ -7881,10 +7876,10 @@ const gu = /* @__PURE__ */ V(uu, [["render", fu]]), yu = {
|
|
7881
7876
|
}, wu = ["onClick", "title"], ku = { class: "collapsible-box-body" }, vu = { key: 0 }, Tu = { key: 1 }, Su = ["href", "target"], Ou = /* @__PURE__ */ a("hr", null, null, -1), Lu = {
|
7882
7877
|
key: 1,
|
7883
7878
|
class: "flex-container vertical"
|
7884
|
-
}, Iu = ["onClick", "title"], Bu = { class: "collapsible-box-body" }, Fu = { key: 0 }, Du = { key: 1 }, Mu = ["href", "target"],
|
7879
|
+
}, Iu = ["onClick", "title"], Bu = { class: "collapsible-box-body" }, Fu = { key: 0 }, Du = { key: 1 }, Mu = ["href", "target"], Pu = ["innerHTML"], Vu = { class: "button-wrapper align-center" };
|
7885
7880
|
function Au(e, n, t, s, i, o) {
|
7886
7881
|
const d = Y, c = te;
|
7887
|
-
return l(), w(
|
7882
|
+
return l(), w(Ve, { name: "fade" }, {
|
7888
7883
|
default: k(() => {
|
7889
7884
|
var u, g, p;
|
7890
7885
|
return [
|
@@ -8005,8 +8000,8 @@ function Au(e, n, t, s, i, o) {
|
|
8005
8000
|
key: 1,
|
8006
8001
|
class: "privacy-text",
|
8007
8002
|
innerHTML: e.getMessage("cookie_disclaimer.text.data_privacy")
|
8008
|
-
}, null, 8,
|
8009
|
-
a("div",
|
8003
|
+
}, null, 8, Pu)) : m("", !0),
|
8004
|
+
a("div", Vu, [
|
8010
8005
|
a("button", {
|
8011
8006
|
type: "button",
|
8012
8007
|
onClick: n[4] || (n[4] = (...f) => o.acceptCurrentCookies && o.acceptCurrentCookies(...f))
|
@@ -8028,7 +8023,7 @@ function Au(e, n, t, s, i, o) {
|
|
8028
8023
|
_: 3
|
8029
8024
|
});
|
8030
8025
|
}
|
8031
|
-
const Eu = /* @__PURE__ */
|
8026
|
+
const Eu = /* @__PURE__ */ P(bu, [["render", Au]]), Hu = {
|
8032
8027
|
name: "CmdCopyrightWrapper"
|
8033
8028
|
}, qu = {
|
8034
8029
|
class: "cmd-copyright-information",
|
@@ -8044,7 +8039,7 @@ const Eu = /* @__PURE__ */ V(bu, [["render", Au]]), Hu = {
|
|
8044
8039
|
function Uu(e, n, t, s, i, o) {
|
8045
8040
|
return l(), r("div", qu, Nu);
|
8046
8041
|
}
|
8047
|
-
const ju = /* @__PURE__ */
|
8042
|
+
const ju = /* @__PURE__ */ P(Hu, [["render", Uu]]), zu = {
|
8048
8043
|
data() {
|
8049
8044
|
return {
|
8050
8045
|
defaultMessageProperties: {
|
@@ -8334,7 +8329,7 @@ const ju = /* @__PURE__ */ V(Hu, [["render", Uu]]), zu = {
|
|
8334
8329
|
};
|
8335
8330
|
function mm(e, n, t, s, i, o) {
|
8336
8331
|
var g, p, f, C;
|
8337
|
-
const d =
|
8332
|
+
const d = K, c = mn, u = _e("router-link");
|
8338
8333
|
return l(), r("div", {
|
8339
8334
|
class: _([
|
8340
8335
|
i.validationStatus,
|
@@ -8515,7 +8510,7 @@ function mm(e, n, t, s, i, o) {
|
|
8515
8510
|
], 42, Qu)
|
8516
8511
|
], 10, Wu);
|
8517
8512
|
}
|
8518
|
-
const Ai = /* @__PURE__ */
|
8513
|
+
const Ai = /* @__PURE__ */ P(Gu, [["render", mm]]), hm = {
|
8519
8514
|
name: "CmdFormFilters",
|
8520
8515
|
data() {
|
8521
8516
|
return {
|
@@ -8596,7 +8591,7 @@ const Ai = /* @__PURE__ */ V(Gu, [["render", mm]]), hm = {
|
|
8596
8591
|
class: "cmd-form-filters"
|
8597
8592
|
}, fm = { key: 0 }, gm = { key: 1 }, ym = ["onClick", "title"];
|
8598
8593
|
function bm(e, n, t, s, i, o) {
|
8599
|
-
const d =
|
8594
|
+
const d = K;
|
8600
8595
|
return i.options.length ? (l(), r("ul", pm, [
|
8601
8596
|
i.options.length > 1 ? (l(), r("li", fm, [
|
8602
8597
|
a("a", {
|
@@ -8626,7 +8621,7 @@ function bm(e, n, t, s, i, o) {
|
|
8626
8621
|
]))), 128))
|
8627
8622
|
])) : m("", !0);
|
8628
8623
|
}
|
8629
|
-
const Ei = /* @__PURE__ */
|
8624
|
+
const Ei = /* @__PURE__ */ P(hm, [["render", bm]]), xm = {
|
8630
8625
|
data() {
|
8631
8626
|
return {
|
8632
8627
|
defaultMessageProperties: {
|
@@ -8726,7 +8721,7 @@ function vm(e, n, t, s, i, o) {
|
|
8726
8721
|
}))
|
8727
8722
|
]);
|
8728
8723
|
}
|
8729
|
-
const Ri = /* @__PURE__ */
|
8724
|
+
const Ri = /* @__PURE__ */ P(Cm, [["render", vm]]), Tm = {
|
8730
8725
|
name: "CmdImageGallery",
|
8731
8726
|
mixins: [le],
|
8732
8727
|
props: {
|
@@ -8863,7 +8858,7 @@ function Fm(e, n, t, s, i, o) {
|
|
8863
8858
|
], 64))
|
8864
8859
|
]);
|
8865
8860
|
}
|
8866
|
-
const Dm = /* @__PURE__ */
|
8861
|
+
const Dm = /* @__PURE__ */ P(Tm, [["render", Fm]]), Mm = {
|
8867
8862
|
name: "CmdImageZoom",
|
8868
8863
|
props: {
|
8869
8864
|
/**
|
@@ -8908,10 +8903,10 @@ function Gn(e, n) {
|
|
8908
8903
|
function Wn(e, n, t) {
|
8909
8904
|
return e < n ? n : e > t ? t : e;
|
8910
8905
|
}
|
8911
|
-
const
|
8906
|
+
const Pm = { class: "cmd-image-zoom flex-container" }, Vm = ["title"], Am = { class: "zoom-container" }, Em = /* @__PURE__ */ a("div", { class: "zoom-overlay" }, null, -1);
|
8912
8907
|
function Hm(e, n, t, s, i, o) {
|
8913
8908
|
const d = Ce;
|
8914
|
-
return l(), r("div",
|
8909
|
+
return l(), r("div", Pm, [
|
8915
8910
|
a("a", {
|
8916
8911
|
href: "#",
|
8917
8912
|
class: "no-flex thumbnails-imagezoom",
|
@@ -8923,14 +8918,14 @@ function Hm(e, n, t, s, i, o) {
|
|
8923
8918
|
onMousemove: o.onMouseMove,
|
8924
8919
|
onMouseout: o.onMouseOut
|
8925
8920
|
}), null, 16, ["onMouseover", "onMousemove", "onMouseout"])
|
8926
|
-
], 8,
|
8921
|
+
], 8, Vm),
|
8927
8922
|
a("div", Am, [
|
8928
8923
|
h(d, I(t.imageLarge, { useFigureTag: !1 }), null, 16)
|
8929
8924
|
]),
|
8930
8925
|
Em
|
8931
8926
|
]);
|
8932
8927
|
}
|
8933
|
-
const qm = /* @__PURE__ */
|
8928
|
+
const qm = /* @__PURE__ */ P(Mm, [["render", Hm]]), Rm = {
|
8934
8929
|
mixins: [
|
8935
8930
|
hn,
|
8936
8931
|
pn,
|
@@ -9128,7 +9123,7 @@ const qm = /* @__PURE__ */ V(Mm, [["render", Hm]]), Rm = {
|
|
9128
9123
|
class: "flex-container no-flex"
|
9129
9124
|
};
|
9130
9125
|
function Zm(e, n, t, s, i, o) {
|
9131
|
-
const d =
|
9126
|
+
const d = K, c = mn;
|
9132
9127
|
return l(), r("div", {
|
9133
9128
|
class: _([
|
9134
9129
|
"cmd-input-group label",
|
@@ -9208,7 +9203,7 @@ function Zm(e, n, t, s, i, o) {
|
|
9208
9203
|
], 2))
|
9209
9204
|
], 10, Nm);
|
9210
9205
|
}
|
9211
|
-
const Ni = /* @__PURE__ */
|
9206
|
+
const Ni = /* @__PURE__ */ P(Rm, [["render", Zm]]), Qm = {
|
9212
9207
|
name: "CmdLoginForm",
|
9213
9208
|
data() {
|
9214
9209
|
return {
|
@@ -9494,7 +9489,7 @@ const Ni = /* @__PURE__ */ V(Rm, [["render", Zm]]), Qm = {
|
|
9494
9489
|
}, Xm = { class: "cmd-login-form flex-container" }, $m = { class: "option-wrapper flex-container" }, eh = { key: 1 }, th = ["type", "disabled"], nh = { key: 1 }, ih = { class: "cmd-login-form flex-container" }, oh = { class: "option-wrapper flex-container" }, lh = { key: 1 }, sh = ["type", "disabled"], ah = { key: 1 };
|
9495
9490
|
function rh(e, n, t, s, i, o) {
|
9496
9491
|
var p, f, C, b, L, v, B, F;
|
9497
|
-
const d = Y, c = te, u =
|
9492
|
+
const d = Y, c = te, u = K, g = Re;
|
9498
9493
|
return l(), r(S, null, [
|
9499
9494
|
X(a("fieldset", Xm, [
|
9500
9495
|
a("legend", {
|
@@ -9616,7 +9611,7 @@ function rh(e, n, t, s, i, o) {
|
|
9616
9611
|
])
|
9617
9612
|
], 64);
|
9618
9613
|
}
|
9619
|
-
const dh = /* @__PURE__ */
|
9614
|
+
const dh = /* @__PURE__ */ P(Qm, [["render", rh]]), ch = {
|
9620
9615
|
name: "CmdMainNavigation",
|
9621
9616
|
data() {
|
9622
9617
|
return {
|
@@ -9757,7 +9752,7 @@ const dh = /* @__PURE__ */ V(Qm, [["render", rh]]), ch = {
|
|
9757
9752
|
class: "close-nav"
|
9758
9753
|
}, mh = ["href", "title", "target", "onClick"], hh = { key: 1 }, ph = { key: 1 }, fh = ["aria-expanded"], gh = ["href", "title", "target", "onClick"], yh = { key: 1 }, bh = { key: 1 }, xh = ["aria-expanded"], _h = ["href", "title", "target", "onClick"], Ch = { key: 1 }, wh = { key: 1 };
|
9759
9754
|
function kh(e, n, t, s, i, o) {
|
9760
|
-
const d =
|
9755
|
+
const d = K, c = _e("router-link");
|
9761
9756
|
return l(), r("div", {
|
9762
9757
|
class: _([
|
9763
9758
|
"cmd-main-navigation main-navigation-wrapper",
|
@@ -9956,7 +9951,7 @@ function kh(e, n, t, s, i, o) {
|
|
9956
9951
|
])) : m("", !0)
|
9957
9952
|
], 2);
|
9958
9953
|
}
|
9959
|
-
const Ui = /* @__PURE__ */
|
9954
|
+
const Ui = /* @__PURE__ */ P(ch, [["render", kh]]), vh = {
|
9960
9955
|
name: "CmdMultistepFormProgressBar",
|
9961
9956
|
data() {
|
9962
9957
|
return {
|
@@ -10005,7 +10000,7 @@ const Ui = /* @__PURE__ */ V(ch, [["render", kh]]), vh = {
|
|
10005
10000
|
class: "number"
|
10006
10001
|
}, Sh = { key: 2 };
|
10007
10002
|
function Oh(e, n, t, s, i, o) {
|
10008
|
-
const d =
|
10003
|
+
const d = K, c = Re;
|
10009
10004
|
return l(), r("ol", {
|
10010
10005
|
class: _(["cmd-multistep-form-progress-bar", { "use-gap": t.useGap }])
|
10011
10006
|
}, [
|
@@ -10036,7 +10031,7 @@ function Oh(e, n, t, s, i, o) {
|
|
10036
10031
|
], 2))), 128))
|
10037
10032
|
], 2);
|
10038
10033
|
}
|
10039
|
-
const Lh = /* @__PURE__ */
|
10034
|
+
const Lh = /* @__PURE__ */ P(vh, [["render", Oh]]), Ih = {
|
10040
10035
|
name: "CmdNewsletterSubscription",
|
10041
10036
|
emits: ["button-click"],
|
10042
10037
|
data() {
|
@@ -10223,7 +10218,7 @@ function Dh(e, n, t, s, i, o) {
|
|
10223
10218
|
])
|
10224
10219
|
]);
|
10225
10220
|
}
|
10226
|
-
const Mh = /* @__PURE__ */
|
10221
|
+
const Mh = /* @__PURE__ */ P(Ih, [["render", Dh]]);
|
10227
10222
|
function Kn(e, n, t, s = !0, i = !0) {
|
10228
10223
|
function o(d, c) {
|
10229
10224
|
return c && d < 10 ? "0" + d : d;
|
@@ -10236,7 +10231,7 @@ function Kn(e, n, t, s = !0, i = !0) {
|
|
10236
10231
|
return o(d, s) + e + o(c, !0) + n;
|
10237
10232
|
};
|
10238
10233
|
}
|
10239
|
-
const
|
10234
|
+
const Ph = {
|
10240
10235
|
name: "CmdOpeningHoursItem",
|
10241
10236
|
mixins: [le],
|
10242
10237
|
data() {
|
@@ -10324,7 +10319,7 @@ const Vh = {
|
|
10324
10319
|
deep: !0
|
10325
10320
|
}
|
10326
10321
|
}
|
10327
|
-
},
|
10322
|
+
}, Vh = { class: "cmd-opening-hours-item" }, Ah = {
|
10328
10323
|
key: 0,
|
10329
10324
|
class: "am"
|
10330
10325
|
}, Eh = {
|
@@ -10439,7 +10434,7 @@ function Gh(e, n, t, s, i, o) {
|
|
10439
10434
|
])
|
10440
10435
|
])
|
10441
10436
|
], 64)) : (l(), r(S, { key: 0 }, [
|
10442
|
-
a("dt",
|
10437
|
+
a("dt", Vh, y(t.day.day), 1),
|
10443
10438
|
a("dd", null, [
|
10444
10439
|
t.day.am ? (l(), r("span", Ah, [
|
10445
10440
|
t.day.am.displayText ? (l(), r(S, { key: 0 }, [
|
@@ -10458,7 +10453,7 @@ function Gh(e, n, t, s, i, o) {
|
|
10458
10453
|
])
|
10459
10454
|
], 64));
|
10460
10455
|
}
|
10461
|
-
const Wh = /* @__PURE__ */
|
10456
|
+
const Wh = /* @__PURE__ */ P(Ph, [["render", Gh]]);
|
10462
10457
|
function Kh(e) {
|
10463
10458
|
return (n, t) => {
|
10464
10459
|
const s = /* @__PURE__ */ new Date();
|
@@ -10835,7 +10830,7 @@ function ap(e, n, t, s, i, o) {
|
|
10835
10830
|
])) : m("", !0)
|
10836
10831
|
]);
|
10837
10832
|
}
|
10838
|
-
const rp = /* @__PURE__ */
|
10833
|
+
const rp = /* @__PURE__ */ P(Yh, [["render", ap]]), dp = {
|
10839
10834
|
data() {
|
10840
10835
|
return {
|
10841
10836
|
defaultMessageProperties: {
|
@@ -10948,7 +10943,7 @@ const rp = /* @__PURE__ */ V(Yh, [["render", ap]]), dp = {
|
|
10948
10943
|
}
|
10949
10944
|
}, up = { class: "cmd-pagination" }, mp = ["href", "title"], hp = { key: 0 }, pp = { class: "page-index" }, fp = { class: "flex-container" }, gp = ["href", "title", "onClick"], yp = ["href", "title"], bp = { key: 0 };
|
10950
10945
|
function xp(e, n, t, s, i, o) {
|
10951
|
-
const d =
|
10946
|
+
const d = K;
|
10952
10947
|
return l(), r("div", up, [
|
10953
10948
|
a("a", {
|
10954
10949
|
href: o.getPreviousHref,
|
@@ -10990,7 +10985,7 @@ function xp(e, n, t, s, i, o) {
|
|
10990
10985
|
], 10, yp)
|
10991
10986
|
]);
|
10992
10987
|
}
|
10993
|
-
const _p = /* @__PURE__ */
|
10988
|
+
const _p = /* @__PURE__ */ P(cp, [["render", xp]]), Cp = {
|
10994
10989
|
name: "CmdSocialNetworksItem",
|
10995
10990
|
data() {
|
10996
10991
|
return {
|
@@ -11091,7 +11086,7 @@ const _p = /* @__PURE__ */ V(cp, [["render", xp]]), Cp = {
|
|
11091
11086
|
}
|
11092
11087
|
}, wp = { class: "cmd-social-networks-item" }, kp = ["id", "href", "title"], vp = { key: 1 };
|
11093
11088
|
function Tp(e, n, t, s, i, o) {
|
11094
|
-
const d =
|
11089
|
+
const d = K;
|
11095
11090
|
return l(), r("li", wp, [
|
11096
11091
|
(l(), r("a", {
|
11097
11092
|
key: t.network.path,
|
@@ -11111,7 +11106,7 @@ function Tp(e, n, t, s, i, o) {
|
|
11111
11106
|
], 10, kp))
|
11112
11107
|
]);
|
11113
11108
|
}
|
11114
|
-
const Sp = /* @__PURE__ */
|
11109
|
+
const Sp = /* @__PURE__ */ P(Cp, [["render", Tp]]), Op = {
|
11115
11110
|
name: "CmdSocialNetworks",
|
11116
11111
|
mixins: [le],
|
11117
11112
|
data() {
|
@@ -11330,7 +11325,7 @@ function Bp(e, n, t, s, i, o) {
|
|
11330
11325
|
}, Ip))
|
11331
11326
|
], 2);
|
11332
11327
|
}
|
11333
|
-
const ji = /* @__PURE__ */
|
11328
|
+
const ji = /* @__PURE__ */ P(Op, [["render", Bp]]), Fp = {
|
11334
11329
|
name: "CmdPageFooter",
|
11335
11330
|
props: {
|
11336
11331
|
/**
|
@@ -11417,8 +11412,8 @@ const ji = /* @__PURE__ */ V(Op, [["render", Bp]]), Fp = {
|
|
11417
11412
|
});
|
11418
11413
|
}
|
11419
11414
|
}
|
11420
|
-
}, Dp = { class: "button-wrapper" }, Mp = ["title"],
|
11421
|
-
function
|
11415
|
+
}, Dp = { class: "button-wrapper" }, Mp = ["title"], Pp = { key: 1 };
|
11416
|
+
function Vp(e, n, t, s, i, o) {
|
11422
11417
|
var c, u, g, p;
|
11423
11418
|
const d = ji;
|
11424
11419
|
return l(), r("footer", {
|
@@ -11443,12 +11438,12 @@ function Pp(e, n, t, s, i, o) {
|
|
11443
11438
|
key: 0,
|
11444
11439
|
class: _((p = o.buttonPrintViewOptions.icon) == null ? void 0 : p.iconClass)
|
11445
11440
|
}, null, 2)) : m("", !0),
|
11446
|
-
o.buttonPrintViewOptions.text ? (l(), r("span",
|
11441
|
+
o.buttonPrintViewOptions.text ? (l(), r("span", Pp, y(o.buttonPrintViewOptions.text), 1)) : m("", !0)
|
11447
11442
|
], 10, Mp)) : m("", !0)
|
11448
11443
|
])
|
11449
11444
|
], 2);
|
11450
11445
|
}
|
11451
|
-
const Ap = /* @__PURE__ */
|
11446
|
+
const Ap = /* @__PURE__ */ P(Fp, [["render", Vp]]), Ep = {
|
11452
11447
|
name: "CmdPageHeader",
|
11453
11448
|
props: {
|
11454
11449
|
/**
|
@@ -11474,7 +11469,7 @@ const Ap = /* @__PURE__ */ V(Fp, [["render", Pp]]), Ep = {
|
|
11474
11469
|
class: "headline-wrapper flex-container vertical"
|
11475
11470
|
};
|
11476
11471
|
function Rp(e, n, t, s, i, o) {
|
11477
|
-
const d =
|
11472
|
+
const d = Pi, c = Y;
|
11478
11473
|
return t.cmdBreadcrumbs || t.cmdHeadline || e.$slots.default ? (l(), r("header", Hp, [
|
11479
11474
|
t.cmdBreadcrumbs || t.cmdHeadline ? (l(), r("div", qp, [
|
11480
11475
|
t.cmdBreadcrumbs ? (l(), w(d, R(I({ key: 0 }, t.cmdBreadcrumbs)), null, 16)) : m("", !0),
|
@@ -11483,7 +11478,7 @@ function Rp(e, n, t, s, i, o) {
|
|
11483
11478
|
e.$slots.default ? H(e.$slots, "default", { key: 1 }) : m("", !0)
|
11484
11479
|
])) : m("", !0);
|
11485
11480
|
}
|
11486
|
-
const Np = /* @__PURE__ */
|
11481
|
+
const Np = /* @__PURE__ */ P(Ep, [["render", Rp]]), Up = {
|
11487
11482
|
name: "CmdProgressBar",
|
11488
11483
|
inheritAttrs: !1,
|
11489
11484
|
data() {
|
@@ -11543,7 +11538,7 @@ function Kp(e, n, t, s, i, o) {
|
|
11543
11538
|
])
|
11544
11539
|
], 8, jp);
|
11545
11540
|
}
|
11546
|
-
const Jp = /* @__PURE__ */
|
11541
|
+
const Jp = /* @__PURE__ */ P(Up, [["render", Kp]]), Yp = {
|
11547
11542
|
name: "CmdSidebar",
|
11548
11543
|
data() {
|
11549
11544
|
return {
|
@@ -11646,7 +11641,7 @@ function ef(e, n, t, s, i, o) {
|
|
11646
11641
|
], 8, $p)) : m("", !0)
|
11647
11642
|
], 2);
|
11648
11643
|
}
|
11649
|
-
const tf = /* @__PURE__ */
|
11644
|
+
const tf = /* @__PURE__ */ P(Yp, [["render", ef]]), nf = {
|
11650
11645
|
name: "CmdSiteFooter",
|
11651
11646
|
props: {
|
11652
11647
|
/**
|
@@ -11672,7 +11667,7 @@ function lf(e, n, t, s, i, o) {
|
|
11672
11667
|
], 2)
|
11673
11668
|
]);
|
11674
11669
|
}
|
11675
|
-
const sf = /* @__PURE__ */
|
11670
|
+
const sf = /* @__PURE__ */ P(nf, [["render", lf]]), af = {
|
11676
11671
|
name: "CmdSiteHeader",
|
11677
11672
|
emits: ["offcanvas"],
|
11678
11673
|
data() {
|
@@ -11775,7 +11770,7 @@ const sf = /* @__PURE__ */ V(nf, [["render", lf]]), af = {
|
|
11775
11770
|
};
|
11776
11771
|
function df(e, n, t, s, i, o) {
|
11777
11772
|
var u, g, p, f, C, b, L, v, B;
|
11778
|
-
const d =
|
11773
|
+
const d = Vi, c = Ui;
|
11779
11774
|
return l(), r("div", {
|
11780
11775
|
ref: "site-header",
|
11781
11776
|
class: _([
|
@@ -11816,7 +11811,7 @@ function df(e, n, t, s, i, o) {
|
|
11816
11811
|
}), null, 16, ["closeOffcanvas", "onOffcanvas"])) : m("", !0)
|
11817
11812
|
], 2);
|
11818
11813
|
}
|
11819
|
-
const cf = /* @__PURE__ */
|
11814
|
+
const cf = /* @__PURE__ */ P(af, [["render", df]]), uf = {
|
11820
11815
|
data() {
|
11821
11816
|
return {
|
11822
11817
|
defaultMessageProperties: {
|
@@ -12095,7 +12090,7 @@ const cf = /* @__PURE__ */ V(af, [["render", df]]), uf = {
|
|
12095
12090
|
};
|
12096
12091
|
function xf(e, n, t, s, i, o) {
|
12097
12092
|
var f, C, b, L, v, B, F, D;
|
12098
|
-
const d = Y, c = te, u =
|
12093
|
+
const d = Y, c = te, u = K, g = Ai, p = Ei;
|
12099
12094
|
return l(), r(S, null, [
|
12100
12095
|
a("fieldset", hf, [
|
12101
12096
|
a("legend", {
|
@@ -12155,9 +12150,9 @@ function xf(e, n, t, s, i, o) {
|
|
12155
12150
|
}, null, 8, ["iconClass", "type"]),
|
12156
12151
|
i.showFilters ? (l(), r("span", gf, y(e.getMessage("site_search.hide_filter_options")), 1)) : (l(), r("span", yf, y(e.getMessage("site_search.show_filter_options")), 1))
|
12157
12152
|
]),
|
12158
|
-
h(
|
12153
|
+
h(Ve, { name: "fade" }, {
|
12159
12154
|
default: k(() => {
|
12160
|
-
var M, G, j,
|
12155
|
+
var M, G, j, V, N;
|
12161
12156
|
return [
|
12162
12157
|
i.showFilters && ((M = t.cmdFakeSelect) != null && M.selectData.length) ? (l(), r("div", bf, [
|
12163
12158
|
h(g, {
|
@@ -12166,7 +12161,7 @@ function xf(e, n, t, s, i, o) {
|
|
12166
12161
|
modelValue: o.searchFilters,
|
12167
12162
|
"onUpdate:modelValue": n[4] || (n[4] = (J) => o.searchFilters = J),
|
12168
12163
|
defaultOptionName: (j = t.cmdFakeSelect) == null ? void 0 : j.defaultOptionName,
|
12169
|
-
type: (
|
12164
|
+
type: (V = t.cmdFakeSelect) == null ? void 0 : V.type,
|
12170
12165
|
labelText: (N = t.cmdFakeSelect) == null ? void 0 : N.labelText
|
12171
12166
|
}, null, 8, ["selectData", "modelValue", "defaultOptionName", "type", "labelText"])
|
12172
12167
|
])) : m("", !0)
|
@@ -12184,7 +12179,7 @@ function xf(e, n, t, s, i, o) {
|
|
12184
12179
|
}, null, 8, ["modelValue", "selectedOptionsName"])) : m("", !0)
|
12185
12180
|
], 64);
|
12186
12181
|
}
|
12187
|
-
const _f = /* @__PURE__ */
|
12182
|
+
const _f = /* @__PURE__ */ P(mf, [["render", xf]]), Cf = {
|
12188
12183
|
name: "CmdSlideshow",
|
12189
12184
|
mixins: [le],
|
12190
12185
|
data() {
|
@@ -12458,16 +12453,16 @@ function If(e, n, t, s, i, o) {
|
|
12458
12453
|
], 32)
|
12459
12454
|
], 2);
|
12460
12455
|
}
|
12461
|
-
const Bf = /* @__PURE__ */
|
12456
|
+
const Bf = /* @__PURE__ */ P(Cf, [["render", If]]), Ff = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2016.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='850.394px'%20height='566.929px'%20viewBox='0%200%20850.394%20566.929'%20enable-background='new%200%200%20850.394%20566.929'%20xml:space='preserve'%3e%3cg%20id='it'%3e%3cg%3e%3crect%20fill='%23078E46'%20width='283.465'%20height='566.929'/%3e%3crect%20x='283.465'%20fill='%23FBFDFF'%20width='283.465'%20height='566.929'/%3e%3crect%20x='566.93'%20fill='%23D3242C'%20width='283.465'%20height='566.929'/%3e%3c/g%3e%3c/g%3e%3cg%20id='de'%3e%3cg%3e%3cdesc%3eFlag%20of%20Germany%3c/desc%3e%3crect%20id='black_stripe'%20x='0.901'%20fill='%23010202'%20width='849.492'%20height='566.929'/%3e%3crect%20id='red_stripe'%20x='0.901'%20y='188.977'%20fill='%23DD0B15'%20width='849.492'%20height='377.953'/%3e%3crect%20id='gold_stripe'%20x='0.901'%20y='377.953'%20fill='%23FFCE05'%20width='849.492'%20height='188.976'/%3e%3c/g%3e%3c/g%3e%3cg%20id='fr'%20display='none'%3e%3cg%20display='inline'%3e%3crect%20x='0.901'%20fill='%23CF1327'%20width='849.492'%20height='566.929'/%3e%3crect%20x='0.901'%20fill='%23FFFFFF'%20width='566.328'%20height='566.929'/%3e%3crect%20x='0.901'%20fill='%231D2C4E'%20width='283.164'%20height='566.929'/%3e%3c/g%3e%3c/g%3e%3cg%20id='ru'%20display='none'%3e%3cg%20display='inline'%3e%3crect%20fill='%23FFFFFF'%20width='850.395'%20height='283.465'/%3e%3crect%20y='283.465'%20fill='%23D52D1E'%20width='850.395'%20height='283.464'/%3e%3crect%20y='188.977'%20fill='%231E4295'%20width='850.395'%20height='188.977'/%3e%3c/g%3e%3c/g%3e%3cg%20id='cn'%20display='none'%3e%3cg%20display='inline'%3e%3crect%20x='0.901'%20fill='%23DF2B14'%20width='849.493'%20height='566.929'/%3e%3cg%20transform='translate(5,5)%20scale(3)'%3e%3cpath%20id='s'%20fill='%23FFDE08'%20d='M142.483,56.693l49.932,153.838L61.692,115.454h161.583L92.551,210.531L142.483,56.693z'/%3e%3c/g%3e%3cg%20transform='translate(10,2)%20rotate(23.036243)'%3e%3cpath%20id='s_1_'%20fill='%23FFDE08'%20d='M295.146,30.607l-4.728,53.71l-27.711-46.234l49.566,21.099l-52.488,12.096L295.146,30.607z'/%3e%3c/g%3e%3cg%20transform='translate(12,4)%20rotate(45.869898)'%3e%3cpath%20id='s_2_'%20fill='%23FFDE08'%20d='M361.022,93.648l-25.178,47.665l-7.617-53.376l37.503,38.701l-53.064-9.243L361.022,93.648z'/%3e%3c/g%3e%3cg%20transform='translate(12,7)%20rotate(69.945396)'%3e%3cpath%20id='s_3_'%20fill='%23FFDE08'%20d='M367.298,188.705l-42.412,33.236l14.797-51.844l18.47,50.649l-44.682-30.108L367.298,188.705z'%20/%3e%3c/g%3e%3cg%20transform='translate(10,9)%20rotate(20.659808)'%3e%3cpath%20id='s_4_'%20fill='%23FFDE08'%20d='M294.056,228.595l-2.5,53.86l-29.603-45.045l50.397,19.024l-51.942,14.264L294.056,228.595z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3cg%20id='uk'%20display='none'%3e%3cg%20display='inline'%3e%3crect%20y='0.002'%20fill='%23FFFFFF'%20width='850.16'%20height='566.865'/%3e%3cpolygon%20fill='%23CF172C'%20points='382.569,0%20382.569,226.625%200,226.625%200,339.948%20382.569,339.948%20382.569,566.863%20467.592,566.863%20467.592,339.948%20850.16,339.948%20850.16,226.625%20467.592,226.625%20467.592,0%20'/%3e%3cpolygon%20fill='%2325346C'%20points='495.946,0%20495.946,183.497%20771.202,0%20'/%3e%3cpolygon%20fill='%2325346C'%20points='495.946,566.863%20771.202,566.863%20495.946,383.368%20'/%3e%3cpolygon%20fill='%2325346C'%20points='78.96,566.863%20354.214,566.863%20354.214,383.368%20'/%3e%3cpolygon%20fill='%2325346C'%20points='78.96,0%20354.214,183.497%20354.214,0%20'/%3e%3cpolygon%20fill='%2325346C'%20points='0.003,188.95%20204.392,188.95%200.003,52.699%20'/%3e%3cpolygon%20fill='%2325346C'%20points='645.768,188.95%20850.16,188.95%20850.16,52.699%20'/%3e%3cpolygon%20fill='%2325346C'%20points='645.768,377.913%20850.16,514.171%20850.16,377.913%20'/%3e%3cpolygon%20fill='%2325346C'%20points='0,377.913%200,514.171%20204.392,377.913%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='802.938,0%20520.004,188.95%20567.223,188.95%20850.605,0%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='330.156,377.909%20282.937,377.909%200,566.852%2047.219,566.852%20330.602,377.909%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='0,0%200,31.692%20236.091,189.098%20283.311,189.098%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='566.696,377.832%20850.008,566.929%20850.01,535.239%20613.92,377.832%20'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e", Df = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
12462
12457
|
__proto__: null,
|
12463
12458
|
default: Ff
|
12464
|
-
}, Symbol.toStringTag, { value: "Module" })), Mf = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2016.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='850.394px'%20height='566.929px'%20viewBox='0%200%20850.394%20566.929'%20enable-background='new%200%200%20850.394%20566.929'%20xml:space='preserve'%3e%3cg%20id='it'%3e%3cg%3e%3crect%20fill='%23078E46'%20width='283.465'%20height='566.929'/%3e%3crect%20x='283.465'%20fill='%23FBFDFF'%20width='283.465'%20height='566.929'/%3e%3crect%20x='566.93'%20fill='%23D3242C'%20width='283.465'%20height='566.929'/%3e%3c/g%3e%3c/g%3e%3cg%20id='de'%3e%3cg%3e%3cdesc%3eFlag%20of%20Germany%3c/desc%3e%3crect%20id='black_stripe'%20x='0.901'%20fill='%23010202'%20width='849.492'%20height='566.929'/%3e%3crect%20id='red_stripe'%20x='0.901'%20y='188.977'%20fill='%23DD0B15'%20width='849.492'%20height='377.953'/%3e%3crect%20id='gold_stripe'%20x='0.901'%20y='377.953'%20fill='%23FFCE05'%20width='849.492'%20height='188.976'/%3e%3c/g%3e%3c/g%3e%3cg%20id='fr'%3e%3cg%3e%3crect%20x='0.901'%20fill='%23CF1327'%20width='849.492'%20height='566.929'/%3e%3crect%20x='0.901'%20fill='%23FFFFFF'%20width='566.328'%20height='566.929'/%3e%3crect%20x='0.901'%20fill='%231D2C4E'%20width='283.164'%20height='566.929'/%3e%3c/g%3e%3c/g%3e%3cg%20id='ru'%3e%3cg%3e%3crect%20fill='%23FFFFFF'%20width='850.395'%20height='283.465'/%3e%3crect%20y='283.465'%20fill='%23D52D1E'%20width='850.395'%20height='283.464'/%3e%3crect%20y='188.977'%20fill='%231E4295'%20width='850.395'%20height='188.977'/%3e%3c/g%3e%3c/g%3e%3cg%20id='cn'%3e%3cg%3e%3crect%20x='0.901'%20fill='%23DF2B14'%20width='849.493'%20height='566.929'/%3e%3cg%20transform='translate(5,5)%20scale(3)'%3e%3cpath%20id='s'%20fill='%23FFDE08'%20d='M142.483,56.693l49.932,153.838L61.692,115.454h161.583L92.551,210.531L142.483,56.693z'/%3e%3c/g%3e%3cg%20transform='translate(10,2)%20rotate(23.036243)'%3e%3cpath%20id='s_1_'%20fill='%23FFDE08'%20d='M295.146,30.607l-4.728,53.71l-27.711-46.234l49.566,21.099l-52.488,12.096L295.146,30.607z'/%3e%3c/g%3e%3cg%20transform='translate(12,4)%20rotate(45.869898)'%3e%3cpath%20id='s_2_'%20fill='%23FFDE08'%20d='M361.022,93.648l-25.178,47.665l-7.617-53.376l37.503,38.701l-53.064-9.243L361.022,93.648z'/%3e%3c/g%3e%3cg%20transform='translate(12,7)%20rotate(69.945396)'%3e%3cpath%20id='s_3_'%20fill='%23FFDE08'%20d='M367.298,188.705l-42.412,33.236l14.797-51.844l18.47,50.649l-44.682-30.108L367.298,188.705z'%20/%3e%3c/g%3e%3cg%20transform='translate(10,9)%20rotate(20.659808)'%3e%3cpath%20id='s_4_'%20fill='%23FFDE08'%20d='M294.056,228.595l-2.5,53.86l-29.603-45.045l50.397,19.024l-51.942,14.264L294.056,228.595z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3cg%20id='uk'%3e%3cg%3e%3crect%20y='0.002'%20fill='%23FFFFFF'%20width='850.16'%20height='566.865'/%3e%3cpolygon%20fill='%23CF172C'%20points='382.569,0%20382.569,226.625%200,226.625%200,339.948%20382.569,339.948%20382.569,566.863%20467.592,566.863%20467.592,339.948%20850.16,339.948%20850.16,226.625%20467.592,226.625%20467.592,0%20'/%3e%3cpolygon%20fill='%2325346C'%20points='495.946,0%20495.946,183.497%20771.202,0%20'/%3e%3cpolygon%20fill='%2325346C'%20points='495.946,566.863%20771.202,566.863%20495.946,383.368%20'/%3e%3cpolygon%20fill='%2325346C'%20points='78.96,566.863%20354.214,566.863%20354.214,383.368%20'/%3e%3cpolygon%20fill='%2325346C'%20points='78.96,0%20354.214,183.497%20354.214,0%20'/%3e%3cpolygon%20fill='%2325346C'%20points='0.003,188.95%20204.392,188.95%200.003,52.699%20'/%3e%3cpolygon%20fill='%2325346C'%20points='645.768,188.95%20850.16,188.95%20850.16,52.699%20'/%3e%3cpolygon%20fill='%2325346C'%20points='645.768,377.913%20850.16,514.171%20850.16,377.913%20'/%3e%3cpolygon%20fill='%2325346C'%20points='0,377.913%200,514.171%20204.392,377.913%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='802.938,0%20520.004,188.95%20567.223,188.95%20850.605,0%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='330.156,377.909%20282.937,377.909%200,566.852%2047.219,566.852%20330.602,377.909%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='0,0%200,31.692%20236.091,189.098%20283.311,189.098%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='566.696,377.832%20850.008,566.929%20850.01,535.239%20613.92,377.832%20'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e",
|
12459
|
+
}, Symbol.toStringTag, { value: "Module" })), Mf = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2016.0.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3c!DOCTYPE%20svg%20PUBLIC%20'-//W3C//DTD%20SVG%201.1//EN'%20'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20width='850.394px'%20height='566.929px'%20viewBox='0%200%20850.394%20566.929'%20enable-background='new%200%200%20850.394%20566.929'%20xml:space='preserve'%3e%3cg%20id='it'%3e%3cg%3e%3crect%20fill='%23078E46'%20width='283.465'%20height='566.929'/%3e%3crect%20x='283.465'%20fill='%23FBFDFF'%20width='283.465'%20height='566.929'/%3e%3crect%20x='566.93'%20fill='%23D3242C'%20width='283.465'%20height='566.929'/%3e%3c/g%3e%3c/g%3e%3cg%20id='de'%3e%3cg%3e%3cdesc%3eFlag%20of%20Germany%3c/desc%3e%3crect%20id='black_stripe'%20x='0.901'%20fill='%23010202'%20width='849.492'%20height='566.929'/%3e%3crect%20id='red_stripe'%20x='0.901'%20y='188.977'%20fill='%23DD0B15'%20width='849.492'%20height='377.953'/%3e%3crect%20id='gold_stripe'%20x='0.901'%20y='377.953'%20fill='%23FFCE05'%20width='849.492'%20height='188.976'/%3e%3c/g%3e%3c/g%3e%3cg%20id='fr'%3e%3cg%3e%3crect%20x='0.901'%20fill='%23CF1327'%20width='849.492'%20height='566.929'/%3e%3crect%20x='0.901'%20fill='%23FFFFFF'%20width='566.328'%20height='566.929'/%3e%3crect%20x='0.901'%20fill='%231D2C4E'%20width='283.164'%20height='566.929'/%3e%3c/g%3e%3c/g%3e%3cg%20id='ru'%3e%3cg%3e%3crect%20fill='%23FFFFFF'%20width='850.395'%20height='283.465'/%3e%3crect%20y='283.465'%20fill='%23D52D1E'%20width='850.395'%20height='283.464'/%3e%3crect%20y='188.977'%20fill='%231E4295'%20width='850.395'%20height='188.977'/%3e%3c/g%3e%3c/g%3e%3cg%20id='cn'%3e%3cg%3e%3crect%20x='0.901'%20fill='%23DF2B14'%20width='849.493'%20height='566.929'/%3e%3cg%20transform='translate(5,5)%20scale(3)'%3e%3cpath%20id='s'%20fill='%23FFDE08'%20d='M142.483,56.693l49.932,153.838L61.692,115.454h161.583L92.551,210.531L142.483,56.693z'/%3e%3c/g%3e%3cg%20transform='translate(10,2)%20rotate(23.036243)'%3e%3cpath%20id='s_1_'%20fill='%23FFDE08'%20d='M295.146,30.607l-4.728,53.71l-27.711-46.234l49.566,21.099l-52.488,12.096L295.146,30.607z'/%3e%3c/g%3e%3cg%20transform='translate(12,4)%20rotate(45.869898)'%3e%3cpath%20id='s_2_'%20fill='%23FFDE08'%20d='M361.022,93.648l-25.178,47.665l-7.617-53.376l37.503,38.701l-53.064-9.243L361.022,93.648z'/%3e%3c/g%3e%3cg%20transform='translate(12,7)%20rotate(69.945396)'%3e%3cpath%20id='s_3_'%20fill='%23FFDE08'%20d='M367.298,188.705l-42.412,33.236l14.797-51.844l18.47,50.649l-44.682-30.108L367.298,188.705z'%20/%3e%3c/g%3e%3cg%20transform='translate(10,9)%20rotate(20.659808)'%3e%3cpath%20id='s_4_'%20fill='%23FFDE08'%20d='M294.056,228.595l-2.5,53.86l-29.603-45.045l50.397,19.024l-51.942,14.264L294.056,228.595z'/%3e%3c/g%3e%3c/g%3e%3c/g%3e%3cg%20id='uk'%3e%3cg%3e%3crect%20y='0.002'%20fill='%23FFFFFF'%20width='850.16'%20height='566.865'/%3e%3cpolygon%20fill='%23CF172C'%20points='382.569,0%20382.569,226.625%200,226.625%200,339.948%20382.569,339.948%20382.569,566.863%20467.592,566.863%20467.592,339.948%20850.16,339.948%20850.16,226.625%20467.592,226.625%20467.592,0%20'/%3e%3cpolygon%20fill='%2325346C'%20points='495.946,0%20495.946,183.497%20771.202,0%20'/%3e%3cpolygon%20fill='%2325346C'%20points='495.946,566.863%20771.202,566.863%20495.946,383.368%20'/%3e%3cpolygon%20fill='%2325346C'%20points='78.96,566.863%20354.214,566.863%20354.214,383.368%20'/%3e%3cpolygon%20fill='%2325346C'%20points='78.96,0%20354.214,183.497%20354.214,0%20'/%3e%3cpolygon%20fill='%2325346C'%20points='0.003,188.95%20204.392,188.95%200.003,52.699%20'/%3e%3cpolygon%20fill='%2325346C'%20points='645.768,188.95%20850.16,188.95%20850.16,52.699%20'/%3e%3cpolygon%20fill='%2325346C'%20points='645.768,377.913%20850.16,514.171%20850.16,377.913%20'/%3e%3cpolygon%20fill='%2325346C'%20points='0,377.913%200,514.171%20204.392,377.913%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='802.938,0%20520.004,188.95%20567.223,188.95%20850.605,0%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='330.156,377.909%20282.937,377.909%200,566.852%2047.219,566.852%20330.602,377.909%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='0,0%200,31.692%20236.091,189.098%20283.311,189.098%20'/%3e%3cpolygon%20fill='%23CF172C'%20points='566.696,377.832%20850.008,566.929%20850.01,535.239%20613.92,377.832%20'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e", Pf = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
12465
12460
|
__proto__: null,
|
12466
12461
|
default: Mf
|
12467
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
12462
|
+
}, Symbol.toStringTag, { value: "Module" })), Vf = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
12468
12463
|
__proto__: null,
|
12469
12464
|
de: Df,
|
12470
|
-
en:
|
12465
|
+
en: Pf
|
12471
12466
|
}, Symbol.toStringTag, { value: "Module" })), zi = [
|
12472
12467
|
{
|
12473
12468
|
name: "company",
|
@@ -13947,14 +13942,14 @@ const Bf = /* @__PURE__ */ V(Cf, [["render", If]]), Ff = "data:image/svg+xml,%3c
|
|
13947
13942
|
"Table foot 13",
|
13948
13943
|
"Table foot 14",
|
13949
13944
|
"Table foot 15"
|
13950
|
-
],
|
13945
|
+
], Pg = {
|
13951
13946
|
caption: Lg,
|
13952
13947
|
rowIndexHighlighted: Ig,
|
13953
13948
|
columnIndexHighlighted: Bg,
|
13954
13949
|
thead: Fg,
|
13955
13950
|
tbody: Dg,
|
13956
13951
|
tfoot: Mg
|
13957
|
-
},
|
13952
|
+
}, Vg = {
|
13958
13953
|
show: !0,
|
13959
13954
|
text: "This is a caption for a small table"
|
13960
13955
|
}, Ag = [
|
@@ -14029,7 +14024,7 @@ const Bf = /* @__PURE__ */ V(Cf, [["render", If]]), Ff = "data:image/svg+xml,%3c
|
|
14029
14024
|
"Table foot 6",
|
14030
14025
|
"Table foot 7"
|
14031
14026
|
], qg = {
|
14032
|
-
caption:
|
14027
|
+
caption: Vg,
|
14033
14028
|
thead: Ag,
|
14034
14029
|
tbody: Eg,
|
14035
14030
|
tfoot: Hg
|
@@ -14733,7 +14728,7 @@ const Bf = /* @__PURE__ */ V(Cf, [["render", If]]), Ff = "data:image/svg+xml,%3c
|
|
14733
14728
|
this.imageSources = [], this.languages.forEach(
|
14734
14729
|
async (e) => {
|
14735
14730
|
const n = e.iso2;
|
14736
|
-
this.imageSources.push(
|
14731
|
+
this.imageSources.push(Vf[n].default);
|
14737
14732
|
}
|
14738
14733
|
);
|
14739
14734
|
},
|
@@ -14777,7 +14772,7 @@ function Xg(e, n, t, s, i, o) {
|
|
14777
14772
|
])
|
14778
14773
|
]);
|
14779
14774
|
}
|
14780
|
-
const $g = /* @__PURE__ */
|
14775
|
+
const $g = /* @__PURE__ */ P(Kg, [["render", Xg]]), ey = {
|
14781
14776
|
name: "CmdTable",
|
14782
14777
|
data() {
|
14783
14778
|
return {
|
@@ -14937,7 +14932,7 @@ const $g = /* @__PURE__ */ V(Kg, [["render", Xg]]), ey = {
|
|
14937
14932
|
};
|
14938
14933
|
function sy(e, n, t, s, i, o) {
|
14939
14934
|
var u, g, p, f;
|
14940
|
-
const d =
|
14935
|
+
const d = K, c = vt;
|
14941
14936
|
return l(), r("div", {
|
14942
14937
|
class: _(["cmd-table-wrapper", { collapsed: !i.showTableData, "full-width": i.fullWidth, "has-caption": o.hasCaption, "has-overflow": i.hasOverflow }])
|
14943
14938
|
}, [
|
@@ -14990,7 +14985,7 @@ function sy(e, n, t, s, i, o) {
|
|
14990
14985
|
(l(!0), r(S, null, q(t.tableData.thead, (C, b) => (l(), r("th", { key: b }, y(C), 1))), 128))
|
14991
14986
|
])
|
14992
14987
|
]),
|
14993
|
-
h(
|
14988
|
+
h(Ve, {
|
14994
14989
|
name: t.useTransition ? "fade" : null
|
14995
14990
|
}, {
|
14996
14991
|
default: k(() => [
|
@@ -15010,7 +15005,7 @@ function sy(e, n, t, s, i, o) {
|
|
15010
15005
|
]),
|
15011
15006
|
_: 1
|
15012
15007
|
}, 8, ["name"]),
|
15013
|
-
h(
|
15008
|
+
h(Ve, {
|
15014
15009
|
name: t.useTransition ? "fade" : null
|
15015
15010
|
}, {
|
15016
15011
|
default: k(() => [
|
@@ -15033,7 +15028,7 @@ function sy(e, n, t, s, i, o) {
|
|
15033
15028
|
], 544)
|
15034
15029
|
], 2);
|
15035
15030
|
}
|
15036
|
-
const ay = /* @__PURE__ */
|
15031
|
+
const ay = /* @__PURE__ */ P(ey, [["render", sy]]);
|
15037
15032
|
pi(og);
|
15038
15033
|
const ry = {
|
15039
15034
|
name: "CmdTabs",
|
@@ -15102,7 +15097,7 @@ const ry = {
|
|
15102
15097
|
"aria-live": "assertive"
|
15103
15098
|
}, hy = ["innerHTML"];
|
15104
15099
|
function py(e, n, t, s, i, o) {
|
15105
|
-
const d =
|
15100
|
+
const d = K, c = Y;
|
15106
15101
|
return l(), r("div", dy, [
|
15107
15102
|
a("ul", {
|
15108
15103
|
class: _({ "stretch-tabs": t.stretchTabs }),
|
@@ -15147,7 +15142,7 @@ function py(e, n, t, s, i, o) {
|
|
15147
15142
|
]))
|
15148
15143
|
]);
|
15149
15144
|
}
|
15150
|
-
const fy = /* @__PURE__ */
|
15145
|
+
const fy = /* @__PURE__ */ P(ry, [["render", py]]), gy = {
|
15151
15146
|
name: "CmdTextImageBlock",
|
15152
15147
|
mixins: [le],
|
15153
15148
|
data() {
|
@@ -15324,7 +15319,7 @@ function wy(e, n, t, s, i, o) {
|
|
15324
15319
|
}, 8, ["componentProps", "componentPath", "allowDeleteComponent"])) : m("", !0)
|
15325
15320
|
], 2);
|
15326
15321
|
}
|
15327
|
-
const ky = /* @__PURE__ */
|
15322
|
+
const ky = /* @__PURE__ */ P(gy, [["render", wy]]), vy = {
|
15328
15323
|
name: "ToggleDarkMode",
|
15329
15324
|
mixins: [
|
15330
15325
|
le
|
@@ -15479,7 +15474,7 @@ const ky = /* @__PURE__ */ V(gy, [["render", wy]]), vy = {
|
|
15479
15474
|
}
|
15480
15475
|
}, Ty = { key: 0 };
|
15481
15476
|
function Sy(e, n, t, s, i, o) {
|
15482
|
-
const d =
|
15477
|
+
const d = K, c = te;
|
15483
15478
|
return l(), r("div", {
|
15484
15479
|
class: _(["cmd-toggle-dark-mode", { "styled-layout": t.useStyledLayout, "dark-mode": i.darkMode }])
|
15485
15480
|
}, [
|
@@ -15530,7 +15525,7 @@ function Sy(e, n, t, s, i, o) {
|
|
15530
15525
|
], 64))
|
15531
15526
|
], 2);
|
15532
15527
|
}
|
15533
|
-
const Oy = /* @__PURE__ */
|
15528
|
+
const Oy = /* @__PURE__ */ P(vy, [["render", Sy]]), Ly = {
|
15534
15529
|
data() {
|
15535
15530
|
return {
|
15536
15531
|
defaultMessageProperties: {
|
@@ -15605,7 +15600,7 @@ const Dy = St("string"), he = St("function"), Yi = St("number"), Ot = (e) => e !
|
|
15605
15600
|
return !1;
|
15606
15601
|
const n = _n(e);
|
15607
15602
|
return (n === null || n === Object.prototype || Object.getPrototypeOf(n) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
|
15608
|
-
},
|
15603
|
+
}, Py = ge("Date"), Vy = ge("File"), Ay = ge("Blob"), Ey = ge("FileList"), Hy = (e) => Ot(e) && he(e.pipe), qy = (e) => {
|
15609
15604
|
let n;
|
15610
15605
|
return e && (typeof FormData == "function" && e instanceof FormData || he(e.append) && ((n = Tt(e)) === "formdata" || // detect form-data instance
|
15611
15606
|
n === "object" && he(e.toString) && e.toString() === "[object FormData]"));
|
@@ -15766,8 +15761,8 @@ const cb = (e) => {
|
|
15766
15761
|
isResponse: jy,
|
15767
15762
|
isHeaders: zy,
|
15768
15763
|
isUndefined: $e,
|
15769
|
-
isDate:
|
15770
|
-
isFile:
|
15764
|
+
isDate: Py,
|
15765
|
+
isFile: Vy,
|
15771
15766
|
isBlob: Ay,
|
15772
15767
|
isRegExp: ib,
|
15773
15768
|
isFunction: he,
|
@@ -16223,7 +16218,7 @@ function Et(e, n, t, s, i) {
|
|
16223
16218
|
function Mb(e) {
|
16224
16219
|
return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (n, t, s) => t.toUpperCase() + s);
|
16225
16220
|
}
|
16226
|
-
function
|
16221
|
+
function Pb(e, n) {
|
16227
16222
|
const t = O.toCamelCase(" " + n);
|
16228
16223
|
["get", "set", "has"].forEach((s) => {
|
16229
16224
|
Object.defineProperty(e, s + t, {
|
@@ -16347,7 +16342,7 @@ class de {
|
|
16347
16342
|
}).accessors, i = this.prototype;
|
16348
16343
|
function o(d) {
|
16349
16344
|
const c = Ke(d);
|
16350
|
-
s[c] || (
|
16345
|
+
s[c] || (Pb(i, d), s[c] = !0);
|
16351
16346
|
}
|
16352
16347
|
return O.isArray(n) ? n.forEach(o) : o(n), this;
|
16353
16348
|
}
|
@@ -16389,7 +16384,7 @@ function co(e, n, t) {
|
|
16389
16384
|
t
|
16390
16385
|
));
|
16391
16386
|
}
|
16392
|
-
function
|
16387
|
+
function Vb(e) {
|
16393
16388
|
const n = /^([-+\w]{1,25})(:?\/\/|:)/.exec(e);
|
16394
16389
|
return n && n[1] || "";
|
16395
16390
|
}
|
@@ -16641,7 +16636,7 @@ const mo = (e) => {
|
|
16641
16636
|
}), O.isUndefined(i.withCredentials) || (p.withCredentials = !!i.withCredentials), c && c !== "json" && (p.responseType = i.responseType), typeof i.onDownloadProgress == "function" && p.addEventListener("progress", yt(i.onDownloadProgress, !0)), typeof i.onUploadProgress == "function" && p.upload && p.upload.addEventListener("progress", yt(i.onUploadProgress)), (i.cancelToken || i.signal) && (u = (b) => {
|
16642
16637
|
p && (s(!b || b.type ? new je(null, e, p) : b), p.abort(), p = null);
|
16643
16638
|
}, i.cancelToken && i.cancelToken.subscribe(u), i.signal && (i.signal.aborted ? u() : i.signal.addEventListener("abort", u)));
|
16644
|
-
const C =
|
16639
|
+
const C = Vb(i.url);
|
16645
16640
|
if (C && fe.protocols.indexOf(C) === -1) {
|
16646
16641
|
s(new U("Unsupported protocol " + C + ":", U.ERR_BAD_REQUEST, e));
|
16647
16642
|
return;
|
@@ -16773,12 +16768,12 @@ const Jb = async (e) => {
|
|
16773
16768
|
let D;
|
16774
16769
|
try {
|
16775
16770
|
if (u && Kb && t !== "get" && t !== "head" && (D = await Yb(p, s)) !== 0) {
|
16776
|
-
let
|
16771
|
+
let V = new Request(n, {
|
16777
16772
|
method: "POST",
|
16778
16773
|
body: s,
|
16779
16774
|
duplex: "half"
|
16780
16775
|
}), N;
|
16781
|
-
O.isFormData(s) && (N =
|
16776
|
+
O.isFormData(s) && (N = V.headers.get("content-type")) && p.setContentType(N), V.body && (s = ni(V.body, oi, ii(
|
16782
16777
|
D,
|
16783
16778
|
yt(u)
|
16784
16779
|
), null, Xt));
|
@@ -16795,9 +16790,9 @@ const Jb = async (e) => {
|
|
16795
16790
|
let M = await fetch(B);
|
16796
16791
|
const G = $t && (g === "stream" || g === "response");
|
16797
16792
|
if ($t && (c || G)) {
|
16798
|
-
const
|
16793
|
+
const V = {};
|
16799
16794
|
["status", "statusText", "headers"].forEach((J) => {
|
16800
|
-
|
16795
|
+
V[J] = M[J];
|
16801
16796
|
});
|
16802
16797
|
const N = O.toFiniteNumber(M.headers.get("content-length"));
|
16803
16798
|
M = new Response(
|
@@ -16805,13 +16800,13 @@ const Jb = async (e) => {
|
|
16805
16800
|
N,
|
16806
16801
|
yt(c, !0)
|
16807
16802
|
), G && F, Xt),
|
16808
|
-
|
16803
|
+
V
|
16809
16804
|
);
|
16810
16805
|
}
|
16811
16806
|
g = g || "text";
|
16812
16807
|
let j = await bt[O.findKey(bt, g) || "text"](M, e);
|
16813
|
-
return !G && F(), L && L(), await new Promise((
|
16814
|
-
co(
|
16808
|
+
return !G && F(), L && L(), await new Promise((V, N) => {
|
16809
|
+
co(V, N, {
|
16815
16810
|
data: j,
|
16816
16811
|
headers: de.from(M.headers),
|
16817
16812
|
status: M.status,
|
@@ -16941,7 +16936,7 @@ const tn = {
|
|
16941
16936
|
assertOptions: Xb,
|
16942
16937
|
validators: kn
|
16943
16938
|
}, ve = tn.validators;
|
16944
|
-
class
|
16939
|
+
class Pe {
|
16945
16940
|
constructor(n) {
|
16946
16941
|
this.defaults = n, this.interceptors = {
|
16947
16942
|
request: new $n(),
|
@@ -17039,7 +17034,7 @@ class Ve {
|
|
17039
17034
|
}
|
17040
17035
|
}
|
17041
17036
|
O.forEach(["delete", "get", "head", "options"], function(n) {
|
17042
|
-
|
17037
|
+
Pe.prototype[n] = function(t, s) {
|
17043
17038
|
return this.request(Ee(s || {}, {
|
17044
17039
|
method: n,
|
17045
17040
|
url: t,
|
@@ -17060,7 +17055,7 @@ O.forEach(["post", "put", "patch"], function(n) {
|
|
17060
17055
|
}));
|
17061
17056
|
};
|
17062
17057
|
}
|
17063
|
-
|
17058
|
+
Pe.prototype[n] = t(), Pe.prototype[n + "Form"] = t(!0);
|
17064
17059
|
});
|
17065
17060
|
class vn {
|
17066
17061
|
constructor(n) {
|
@@ -17206,13 +17201,13 @@ Object.entries(nn).forEach(([e, n]) => {
|
|
17206
17201
|
nn[n] = e;
|
17207
17202
|
});
|
17208
17203
|
function go(e) {
|
17209
|
-
const n = new
|
17210
|
-
return O.extend(t,
|
17204
|
+
const n = new Pe(e), t = Ki(Pe.prototype.request, n);
|
17205
|
+
return O.extend(t, Pe.prototype, n, { allOwnKeys: !0 }), O.extend(t, n, null, { allOwnKeys: !0 }), t.create = function(i) {
|
17211
17206
|
return go(Ee(e, i));
|
17212
17207
|
}, t;
|
17213
17208
|
}
|
17214
17209
|
const Q = go(nt);
|
17215
|
-
Q.Axios =
|
17210
|
+
Q.Axios = Pe;
|
17216
17211
|
Q.CanceledError = je;
|
17217
17212
|
Q.CancelToken = vn;
|
17218
17213
|
Q.isCancel = ro;
|
@@ -17788,7 +17783,7 @@ const tx = {
|
|
17788
17783
|
class: "progressbar"
|
17789
17784
|
}, Fx = ["value", "title"];
|
17790
17785
|
function Dx(e, n, t, s, i, o) {
|
17791
|
-
const d = Y, c = et, u =
|
17786
|
+
const d = Y, c = et, u = K, g = te;
|
17792
17787
|
return l(), r(S, null, [
|
17793
17788
|
t.advancedMode ? (l(), r("fieldset", {
|
17794
17789
|
key: 0,
|
@@ -17954,7 +17949,7 @@ function Dx(e, n, t, s, i, o) {
|
|
17954
17949
|
type: i.showListOfFileExtensions ? t.iconInvisible.iconType : t.iconVisible.iconType
|
17955
17950
|
}, null, 8, ["iconClass", "type"])
|
17956
17951
|
], 8, _x),
|
17957
|
-
h(
|
17952
|
+
h(Ve, {
|
17958
17953
|
name: t.useTransition ? "fade" : null
|
17959
17954
|
}, {
|
17960
17955
|
default: k(() => [
|
@@ -18085,7 +18080,7 @@ function Dx(e, n, t, s, i, o) {
|
|
18085
18080
|
}, null, 8, ["labelText", "disabled", "multiple", "onChange"])
|
18086
18081
|
], 64);
|
18087
18082
|
}
|
18088
|
-
const Mx = /* @__PURE__ */
|
18083
|
+
const Mx = /* @__PURE__ */ P(tx, [["render", Dx]]), Px = {
|
18089
18084
|
name: "CmdWidthLimitationWrapper",
|
18090
18085
|
props: {
|
18091
18086
|
/**
|
@@ -18191,7 +18186,7 @@ const Mx = /* @__PURE__ */ V(tx, [["render", Dx]]), Vx = {
|
|
18191
18186
|
return e.length === 1 && typeof e[0].type == "symbol" && Array.isArray(e[0].children) ? e[0].children.length === 1 : e.length === 1;
|
18192
18187
|
}
|
18193
18188
|
}
|
18194
|
-
},
|
18189
|
+
}, Vx = ["id"], Ax = ["id"];
|
18195
18190
|
function Ex(e, n, t, s, i, o) {
|
18196
18191
|
const d = Y;
|
18197
18192
|
return l(), r("div", {
|
@@ -18210,7 +18205,7 @@ function Ex(e, n, t, s, i, o) {
|
|
18210
18205
|
}, [
|
18211
18206
|
H(e.$slots, "default")
|
18212
18207
|
], 2))
|
18213
|
-
], 10,
|
18208
|
+
], 10, Vx)) : (l(), r(S, { key: 1 }, [
|
18214
18209
|
t.anchorId ? (l(), r("a", {
|
18215
18210
|
key: 0,
|
18216
18211
|
id: t.anchorId
|
@@ -18219,7 +18214,7 @@ function Ex(e, n, t, s, i, o) {
|
|
18219
18214
|
], 64))
|
18220
18215
|
], 2);
|
18221
18216
|
}
|
18222
|
-
const yo = /* @__PURE__ */
|
18217
|
+
const yo = /* @__PURE__ */ P(Px, [["render", Ex]]), Hx = {
|
18223
18218
|
name: "ComponentSettings",
|
18224
18219
|
data() {
|
18225
18220
|
return {
|
@@ -18338,7 +18333,7 @@ function qx(e, n, t, s, i, o) {
|
|
18338
18333
|
_: 1
|
18339
18334
|
}, 8, ["cmdHeadline"]);
|
18340
18335
|
}
|
18341
|
-
const Rx = /* @__PURE__ */
|
18336
|
+
const Rx = /* @__PURE__ */ P(Hx, [["render", qx]]), Nx = {
|
18342
18337
|
name: "MultipleBoxWrapper",
|
18343
18338
|
props: {
|
18344
18339
|
segments: {
|
@@ -18371,7 +18366,7 @@ function jx(e, n, t, s, i, o) {
|
|
18371
18366
|
], 64))), 128))
|
18372
18367
|
]);
|
18373
18368
|
}
|
18374
|
-
const zx = /* @__PURE__ */
|
18369
|
+
const zx = /* @__PURE__ */ P(Nx, [["render", jx]]), Gx = {
|
18375
18370
|
name: "MultipleListsOfLinks",
|
18376
18371
|
props: {
|
18377
18372
|
segments: {
|
@@ -18394,7 +18389,7 @@ function Kx(e, n, t, s, i, o) {
|
|
18394
18389
|
], 64))), 128))
|
18395
18390
|
]);
|
18396
18391
|
}
|
18397
|
-
const Jx = /* @__PURE__ */
|
18392
|
+
const Jx = /* @__PURE__ */ P(Gx, [["render", Kx]]), Yx = {
|
18398
18393
|
name: "ContactInformation",
|
18399
18394
|
props: {
|
18400
18395
|
/**
|
@@ -18442,7 +18437,7 @@ function Xx(e, n, t, s, i, o) {
|
|
18442
18437
|
])
|
18443
18438
|
]));
|
18444
18439
|
}
|
18445
|
-
const $x = /* @__PURE__ */
|
18440
|
+
const $x = /* @__PURE__ */ P(Yx, [["render", Xx]]), e1 = {
|
18446
18441
|
name: "PageOverview",
|
18447
18442
|
data() {
|
18448
18443
|
return {
|
@@ -18453,28 +18448,28 @@ const $x = /* @__PURE__ */ V(Yx, [["render", Xx]]), e_ = {
|
|
18453
18448
|
listOfSiteLinksData: Wg
|
18454
18449
|
};
|
18455
18450
|
}
|
18456
|
-
},
|
18451
|
+
}, t1 = /* @__PURE__ */ a("h2", {
|
18457
18452
|
class: "headline-demopage",
|
18458
18453
|
id: "section-contact-information"
|
18459
18454
|
}, [
|
18460
18455
|
/* @__PURE__ */ a("span", null, "Contact Information")
|
18461
|
-
], -1),
|
18456
|
+
], -1), n1 = /* @__PURE__ */ a("h2", {
|
18462
18457
|
class: "headline-demopage",
|
18463
18458
|
id: "section-multiple-lists-of-links-downloads"
|
18464
18459
|
}, [
|
18465
18460
|
/* @__PURE__ */ a("span", null, "Multiple Lists of links")
|
18466
|
-
], -1),
|
18461
|
+
], -1), i1 = /* @__PURE__ */ a("h3", { id: "section-multiple-lists-of-links-downloads" }, "Downloads", -1), o1 = /* @__PURE__ */ a("hr", null, null, -1), l1 = /* @__PURE__ */ a("h3", { id: "section-multiple-lists-of-links-sitemap" }, "SiteMap", -1), s1 = /* @__PURE__ */ a("h2", {
|
18467
18462
|
class: "headline-demopage",
|
18468
18463
|
id: "section-multiple-box-wrapper"
|
18469
18464
|
}, [
|
18470
18465
|
/* @__PURE__ */ a("span", null, "Multiple Box Wrapper")
|
18471
|
-
], -1),
|
18472
|
-
function
|
18466
|
+
], -1), a1 = /* @__PURE__ */ a("h3", { id: "section-multiple-box-wrapper-faqs" }, "FAQs", -1), r1 = /* @__PURE__ */ a("hr", null, null, -1), d1 = /* @__PURE__ */ a("h3", { id: "section-multiple-box-wrapper-team-overview" }, "Team Overview", -1);
|
18467
|
+
function c1(e, n, t, s, i, o) {
|
18473
18468
|
const d = $x, c = yo, u = Jx, g = zx;
|
18474
18469
|
return l(), r(S, null, [
|
18475
18470
|
h(c, null, {
|
18476
18471
|
default: k(() => [
|
18477
|
-
|
18472
|
+
t1,
|
18478
18473
|
h(d, {
|
18479
18474
|
cmdBasicForm: e.basicForm,
|
18480
18475
|
cmdAddressData: {},
|
@@ -18490,44 +18485,44 @@ function c_(e, n, t, s, i, o) {
|
|
18490
18485
|
}),
|
18491
18486
|
h(c, null, {
|
18492
18487
|
default: k(() => [
|
18493
|
-
|
18494
|
-
|
18488
|
+
n1,
|
18489
|
+
i1,
|
18495
18490
|
h(u, { segments: i.listOfDownloadsData }, null, 8, ["segments"]),
|
18496
|
-
|
18497
|
-
|
18491
|
+
o1,
|
18492
|
+
l1,
|
18498
18493
|
h(u, { segments: i.listOfSiteLinksData }, null, 8, ["segments"])
|
18499
18494
|
]),
|
18500
18495
|
_: 1
|
18501
18496
|
}),
|
18502
18497
|
h(c, null, {
|
18503
18498
|
default: k(() => [
|
18504
|
-
|
18505
|
-
|
18499
|
+
s1,
|
18500
|
+
a1,
|
18506
18501
|
h(g, { segments: i.faqsData }, null, 8, ["segments"]),
|
18507
|
-
|
18508
|
-
|
18502
|
+
r1,
|
18503
|
+
d1,
|
18509
18504
|
h(g, { segments: i.boxesTeamOverviewData }, null, 8, ["segments"])
|
18510
18505
|
]),
|
18511
18506
|
_: 1
|
18512
18507
|
})
|
18513
18508
|
], 64);
|
18514
18509
|
}
|
18515
|
-
const bo = /* @__PURE__ */
|
18510
|
+
const bo = /* @__PURE__ */ P(e1, [["render", c1]]), u1 = "comand-component-library", m1 = "4.1.55", h1 = "GPL-3.0-only", p1 = "CoManD-UI", f1 = "module", g1 = {
|
18516
18511
|
prepublishOnly: "npm run build-lib",
|
18517
18512
|
dev: "vite",
|
18518
18513
|
build: "vite build",
|
18519
18514
|
"build-lib": "vite build && gulp",
|
18520
18515
|
preview: "vite preview"
|
18521
|
-
},
|
18516
|
+
}, y1 = [
|
18522
18517
|
"dist",
|
18523
18518
|
"src"
|
18524
|
-
],
|
18519
|
+
], b1 = {
|
18525
18520
|
".": "./dist/comand-component-library.js",
|
18526
18521
|
"./css.js": "./src/css.js",
|
18527
18522
|
"./style.css": "./dist/style.css",
|
18528
18523
|
"./variables.scss": "./src/assets/styles/variables.scss",
|
18529
18524
|
"./export-data.js": "./src/assets/data/export-data.js"
|
18530
|
-
},
|
18525
|
+
}, x1 = {
|
18531
18526
|
"clickout-event": "^1.1.2",
|
18532
18527
|
"comand-frontend-framework": "^4.1.11",
|
18533
18528
|
"comand-ui-iconfonts": "^1.0.14",
|
@@ -18536,7 +18531,7 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
18536
18531
|
vue: "^3.2.31",
|
18537
18532
|
"vue-router": "^4.0.12",
|
18538
18533
|
vuex: "^4.0.2"
|
18539
|
-
},
|
18534
|
+
}, _1 = {
|
18540
18535
|
"@iconify/vue": "^4.0.0",
|
18541
18536
|
"@vitejs/plugin-vue": "^5.1.1",
|
18542
18537
|
"@vue/test-utils": "^2.0.0-0",
|
@@ -18546,19 +18541,19 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
18546
18541
|
"unplugin-vue-components": "^0.24.0",
|
18547
18542
|
vite: "^5.4.11",
|
18548
18543
|
"vue-jest": "^5.0.0-0"
|
18549
|
-
},
|
18550
|
-
name:
|
18551
|
-
version:
|
18552
|
-
license:
|
18553
|
-
author:
|
18544
|
+
}, C1 = {
|
18545
|
+
name: u1,
|
18546
|
+
version: m1,
|
18547
|
+
license: h1,
|
18548
|
+
author: p1,
|
18554
18549
|
private: !1,
|
18555
|
-
type:
|
18556
|
-
scripts:
|
18557
|
-
files:
|
18558
|
-
exports:
|
18559
|
-
dependencies:
|
18560
|
-
devDependencies:
|
18561
|
-
},
|
18550
|
+
type: f1,
|
18551
|
+
scripts: g1,
|
18552
|
+
files: y1,
|
18553
|
+
exports: b1,
|
18554
|
+
dependencies: x1,
|
18555
|
+
devDependencies: _1
|
18556
|
+
}, w1 = {
|
18562
18557
|
data() {
|
18563
18558
|
return {
|
18564
18559
|
cmdAddressDataSettingsData: {
|
@@ -19423,9 +19418,9 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19423
19418
|
}
|
19424
19419
|
};
|
19425
19420
|
}
|
19426
|
-
}, xo = "/media/images/content-images/landscape-medium.jpg",
|
19421
|
+
}, xo = "/media/images/content-images/landscape-medium.jpg", k1 = "/media/images/demo-images/small/landscape-01.jpg", v1 = "/media/images/demo-images/small/landscape-02.jpg", T1 = "/media/images/demo-images/small/landscape-03.jpg", S1 = {
|
19427
19422
|
name: "App",
|
19428
|
-
mixins: [
|
19423
|
+
mixins: [w1],
|
19429
19424
|
components: {
|
19430
19425
|
PageOverview: bo
|
19431
19426
|
},
|
@@ -19550,9 +19545,9 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19550
19545
|
},
|
19551
19546
|
customRequirements: [
|
19552
19547
|
Es(),
|
19553
|
-
Ps(),
|
19554
|
-
As(),
|
19555
19548
|
Vs(),
|
19549
|
+
As(),
|
19550
|
+
Ps(),
|
19556
19551
|
Hs()
|
19557
19552
|
],
|
19558
19553
|
openLeftSidebar: !0,
|
@@ -19585,11 +19580,11 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19585
19580
|
slideshowData: vg,
|
19586
19581
|
socialNetworksData: Og,
|
19587
19582
|
tableDataSmall: qg,
|
19588
|
-
tableDataLarge:
|
19583
|
+
tableDataLarge: Pg,
|
19589
19584
|
tabsData: Rg,
|
19590
19585
|
thumbnailScrollerImagesData: Ng,
|
19591
19586
|
thumbnailScrollerTextData: Ug,
|
19592
|
-
packageJson:
|
19587
|
+
packageJson: C1
|
19593
19588
|
};
|
19594
19589
|
},
|
19595
19590
|
computed: {
|
@@ -19787,39 +19782,39 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19787
19782
|
});
|
19788
19783
|
}
|
19789
19784
|
}
|
19790
|
-
},
|
19791
|
-
|
19792
|
-
|
19793
|
-
|
19794
|
-
|
19795
|
-
|
19796
|
-
],
|
19797
|
-
|
19798
|
-
],
|
19799
|
-
|
19800
|
-
],
|
19801
|
-
|
19802
|
-
],
|
19803
|
-
|
19804
|
-
],
|
19785
|
+
}, O1 = ["id"], L1 = /* @__PURE__ */ a("a", { id: "anchor-back-to-top" }, null, -1), I1 = { for: "select-template" }, B1 = /* @__PURE__ */ a("span", null, "Select template", -1), F1 = /* @__PURE__ */ a("option", { value: "blank" }, "Blank/Unstyled", -1), D1 = /* @__PURE__ */ a("option", { value: "business" }, "Business", -1), M1 = /* @__PURE__ */ a("option", { value: "casual" }, "Casual", -1), P1 = /* @__PURE__ */ a("option", { value: "dating" }, "Dating", -1), V1 = /* @__PURE__ */ a("option", { value: "influencer" }, "Influencer", -1), A1 = [
|
19786
|
+
F1,
|
19787
|
+
D1,
|
19788
|
+
M1,
|
19789
|
+
P1,
|
19790
|
+
V1
|
19791
|
+
], E1 = /* @__PURE__ */ a("span", null, "Color Scheme", -1), H1 = { class: "input-wrapper" }, q1 = { for: "default-color-scheme" }, R1 = /* @__PURE__ */ a("span", { class: "label-text" }, "Color-Scheme by Browser/OS", -1), N1 = { for: "light-mode" }, U1 = /* @__PURE__ */ a("span", { class: "label-text" }, "Light Mode", -1), j1 = { for: "dark-mode" }, z1 = /* @__PURE__ */ a("span", { class: "label-text" }, "Dark Mode", -1), G1 = ["href", "onClick"], W1 = { class: "box-footer comand-versions" }, K1 = /* @__PURE__ */ a("dt", null, "Frontend-Framework Version:", -1), J1 = /* @__PURE__ */ a("dt", null, "Component-Library Version:", -1), Y1 = { class: "closed-sidebar" }, Z1 = /* @__PURE__ */ a("span", { class: "icon-settings-template" }, null, -1), Q1 = [
|
19792
|
+
Z1
|
19793
|
+
], X1 = /* @__PURE__ */ a("span", { class: "icon-settings-component" }, null, -1), $1 = [
|
19794
|
+
X1
|
19795
|
+
], e_ = /* @__PURE__ */ a("span", { class: "icon-file-settings" }, null, -1), t_ = [
|
19796
|
+
e_
|
19797
|
+
], n_ = /* @__PURE__ */ a("span", null, "Hide sidebar", -1), i_ = [
|
19798
|
+
n_
|
19799
|
+
], o_ = {
|
19805
19800
|
key: 1,
|
19806
19801
|
id: "content"
|
19807
|
-
},
|
19802
|
+
}, l_ = /* @__PURE__ */ a("h1", { class: "headline-demopage" }, "Components Overview", -1), s_ = {
|
19808
19803
|
class: "headline-demopage",
|
19809
19804
|
id: "section-address-data"
|
19810
|
-
},
|
19805
|
+
}, a_ = /* @__PURE__ */ a("span", null, "Address Data", -1), r_ = { class: "flex-container" }, d_ = /* @__PURE__ */ a("h2", {
|
19811
19806
|
class: "headline-demopage",
|
19812
19807
|
id: "section-advanced-form-elements"
|
19813
|
-
}, "Advanced Form Elements", -1),
|
19808
|
+
}, "Advanced Form Elements", -1), c_ = /* @__PURE__ */ a("h3", null, [
|
19814
19809
|
/* @__PURE__ */ a("span", null, "Form elements status:")
|
19815
|
-
], -1),
|
19810
|
+
], -1), u_ = { class: "flex-container" }, m_ = { class: "list-status" }, h_ = { class: "error" }, p_ = { class: "flex-container" }, f_ = /* @__PURE__ */ a("legend", null, "Legend", -1), g_ = { class: "headline-demopage" }, y_ = /* @__PURE__ */ a("span", null, "Form Element-Component", -1), b_ = { class: "flex-container" }, x_ = { class: "flex-container" }, __ = /* @__PURE__ */ a("h2", null, "Inputfields in Columns", -1), C_ = { class: "flex-container" }, w_ = /* @__PURE__ */ a("span", { innerHTML: "Label with <a href='#'>Link</a> given by slot" }, null, -1), k_ = { class: "flex-container" }, v_ = /* @__PURE__ */ a("hr", null, null, -1), T_ = { class: "headline-demopage" }, S_ = /* @__PURE__ */ a("span", null, "Fake Selects", -1), O_ = { class: "flex-container" }, L_ = /* @__PURE__ */ a("hr", null, null, -1), I_ = /* @__PURE__ */ a("h2", null, "Progress Bar [native]", -1), B_ = /* @__PURE__ */ a("h2", null, "Slider [native]", -1), F_ = /* @__PURE__ */ a("span", { class: "label-text" }, "Single-Slider (with in- and output):", -1), D_ = { class: "flex-container no-flex" }, M_ = {
|
19816
19811
|
class: "inline",
|
19817
19812
|
for: "range-value"
|
19818
|
-
},
|
19813
|
+
}, P_ = /* @__PURE__ */ a("span", { class: "label-text" }, [
|
19819
19814
|
/* @__PURE__ */ a("span", null, "Range Value:")
|
19820
|
-
], -1),
|
19815
|
+
], -1), V_ = ["disabled"], A_ = { for: "range-slider" }, E_ = /* @__PURE__ */ a("span", { class: "label-text hidden" }, [
|
19821
19816
|
/* @__PURE__ */ a("span", null, "Range Value")
|
19822
|
-
], -1),
|
19817
|
+
], -1), H_ = ["disabled"], q_ = /* @__PURE__ */ a("hr", null, null, -1), R_ = /* @__PURE__ */ a("h2", null, "Toggle-Switches", -1), N_ = /* @__PURE__ */ a("h3", null, "Switches without switch-labels", -1), U_ = /* @__PURE__ */ a("h3", null, "Switches with switch-labels", -1), j_ = /* @__PURE__ */ a("br", null, null, -1), z_ = /* @__PURE__ */ a("br", null, null, -1), G_ = /* @__PURE__ */ a("h2", null, "Checkboxes and Radiobuttons", -1), W_ = /* @__PURE__ */ a("h3", null, "Checkboxes [native]", -1), K_ = { class: "label inline" }, J_ = /* @__PURE__ */ a("span", { class: "label-text" }, "Label for native checkboxes:", -1), Y_ = { class: "flex-container no-flex" }, Z_ = /* @__PURE__ */ a("a", { href: "#" }, "link", -1), Q_ = /* @__PURE__ */ a("h3", null, "Checkboxes (replaced)", -1), X_ = { class: "label inline" }, $_ = /* @__PURE__ */ a("span", { class: "label-text" }, "Label for Replaced Input-Type-Checkbox:", -1), eC = { class: "flex-container no-flex" }, tC = /* @__PURE__ */ a("h3", null, "Radiobuttons [native]", -1), nC = { class: "label inline" }, iC = /* @__PURE__ */ a("span", { class: "label-text" }, "Label for native radiobuttons:", -1), oC = { class: "flex-container no-flex" }, lC = /* @__PURE__ */ a("h3", null, "Radiobuttons (replaced)", -1), sC = { class: "label inline" }, aC = /* @__PURE__ */ a("span", { class: "label-text" }, "Label for Replaced Input-Type-Radio:", -1), rC = { class: "flex-container no-flex" }, dC = {
|
19823
19818
|
class: "headline-demopage",
|
19824
19819
|
id: "section-input-group"
|
19825
19820
|
}, cC = /* @__PURE__ */ a("dt", null, "Selected value:", -1), uC = /* @__PURE__ */ a("h3", null, "Input Groups with Checkboxes/Radiobuttons (toggle-switches)", -1), mC = /* @__PURE__ */ a("dt", null, "Selected value(s):", -1), hC = /* @__PURE__ */ a("dt", null, "Selected value(s):", -1), pC = /* @__PURE__ */ a("dt", null, "Selected value(s):", -1), fC = /* @__PURE__ */ a("dt", null, "Selected value(s):", -1), gC = { class: "flex-container" }, yC = /* @__PURE__ */ a("small", null, "(values will not be submitted with the form!)", -1), bC = { class: "button-wrapper no-flex" }, xC = ["disabled"], _C = /* @__PURE__ */ a("span", { class: "icon-check" }, null, -1), CC = /* @__PURE__ */ a("span", null, "Native submit-button", -1), wC = [
|
@@ -19831,9 +19826,9 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19831
19826
|
}, vC = /* @__PURE__ */ a("span", null, "Bank Account Data", -1), TC = {
|
19832
19827
|
class: "headline-demopage",
|
19833
19828
|
id: "section-basic-form"
|
19834
|
-
}, SC = /* @__PURE__ */ a("span", null, "Basic Form", -1), OC = /* @__PURE__ */ a("dt", null, "originalEvent", -1), LC = /* @__PURE__ */ a("dt", null, "formdata", -1), IC = /* @__PURE__ */ a("h2", { class: "headline-demopage" }, "Boxes", -1), BC = { class: "headline-demopage" }, FC = /* @__PURE__ */ a("span", null, "Default Box", -1), DC = /* @__PURE__ */ a("h4", null, " Texts given by slots ", -1), MC = /* @__PURE__ */ a("p", null, " This content with paragraphs inside is placed inside the box-body. ", -1),
|
19829
|
+
}, SC = /* @__PURE__ */ a("span", null, "Basic Form", -1), OC = /* @__PURE__ */ a("dt", null, "originalEvent", -1), LC = /* @__PURE__ */ a("dt", null, "formdata", -1), IC = /* @__PURE__ */ a("h2", { class: "headline-demopage" }, "Boxes", -1), BC = { class: "headline-demopage" }, FC = /* @__PURE__ */ a("span", null, "Default Box", -1), DC = /* @__PURE__ */ a("h4", null, " Texts given by slots ", -1), MC = /* @__PURE__ */ a("p", null, " This content with paragraphs inside is placed inside the box-body. ", -1), PC = /* @__PURE__ */ a("p", null, [
|
19835
19830
|
/* @__PURE__ */ a("strong", null, "Header, Content/Body and Footer of this box are given by slots.")
|
19836
|
-
], -1),
|
19831
|
+
], -1), VC = /* @__PURE__ */ a("p", null, "Additionally 'allowContentToScroll' is active, which enables (as far as a max-height is defined) the content of this box to scroll", -1), AC = /* @__PURE__ */ a("p", null, " Footer content ", -1), EC = /* @__PURE__ */ a("h4", null, " Texts given by slots ", -1), HC = /* @__PURE__ */ a("p", null, " This content with paragraphs inside is placed inside the box-body. ", -1), qC = /* @__PURE__ */ a("p", null, [
|
19837
19832
|
/* @__PURE__ */ a("strong", null, "Header, Content/Body and Footer of this box are given by slots.")
|
19838
19833
|
], -1), RC = /* @__PURE__ */ a("p", null, "Additionally 'allowContentToScroll' is active, which enables (as far as a max-height is defined) the content of this box to scroll", -1), NC = /* @__PURE__ */ a("p", null, " Footer content ", -1), UC = /* @__PURE__ */ a("h4", null, " Box with inputs ", -1), jC = /* @__PURE__ */ a("p", null, " footer content ", -1), zC = /* @__PURE__ */ a("h4", null, " Box with links ", -1), GC = { class: "navigation" }, WC = /* @__PURE__ */ a("p", null, " footer content ", -1), KC = /* @__PURE__ */ a("h4", null, " Collapsible box with image ", -1), JC = /* @__PURE__ */ a("img", {
|
19839
19834
|
src: xo,
|
@@ -19867,27 +19862,27 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19867
19862
|
class: "headline-demopage",
|
19868
19863
|
id: "section-fancybox"
|
19869
19864
|
}, "Fancybox", -1), kw = /* @__PURE__ */ a("h3", null, "FancyBox with text", -1), vw = /* @__PURE__ */ a("h3", null, "FancyBox with large image given by url", -1), Tw = /* @__PURE__ */ a("img", {
|
19870
|
-
src:
|
19865
|
+
src: k1,
|
19871
19866
|
alt: "Alternative text"
|
19872
19867
|
}, null, -1), Sw = [
|
19873
19868
|
Tw
|
19874
19869
|
], Ow = /* @__PURE__ */ a("h3", null, "FancyBox with large image given by property", -1), Lw = /* @__PURE__ */ a("img", {
|
19875
|
-
src:
|
19870
|
+
src: v1,
|
19876
19871
|
alt: "Alternative text"
|
19877
19872
|
}, null, -1), Iw = [
|
19878
19873
|
Lw
|
19879
19874
|
], Bw = /* @__PURE__ */ a("h3", null, "FancyBox with image as object give by property", -1), Fw = /* @__PURE__ */ a("img", {
|
19880
|
-
src:
|
19875
|
+
src: T1,
|
19881
19876
|
alt: "Alternative text"
|
19882
19877
|
}, null, -1), Dw = [
|
19883
19878
|
Fw
|
19884
19879
|
], Mw = /* @__PURE__ */ a("h2", {
|
19885
19880
|
class: "headline-demopage",
|
19886
19881
|
id: "section-google-maps"
|
19887
|
-
}, "Google Maps™", -1),
|
19882
|
+
}, "Google Maps™", -1), Pw = {
|
19888
19883
|
class: "headline-demopage",
|
19889
19884
|
id: "section-headlines"
|
19890
|
-
},
|
19885
|
+
}, Vw = /* @__PURE__ */ a("span", null, "Headlines", -1), Aw = /* @__PURE__ */ a("br", null, null, -1), Ew = /* @__PURE__ */ a("h2", {
|
19891
19886
|
class: "headline-demopage",
|
19892
19887
|
id: "section-icons"
|
19893
19888
|
}, "Icons", -1), Hw = /* @__PURE__ */ a("span", null, "Icon from local iconfont", -1), qw = /* @__PURE__ */ a("span", null, "Icon from iconify-api (icomoon-font)", -1), Rw = /* @__PURE__ */ a("span", null, "Icon from iconify-api (bootstrap-font)", -1), Nw = /* @__PURE__ */ a("span", null, "Icon from iconify-api (material-design-font)", -1), Uw = /* @__PURE__ */ a("span", null, "Icon from iconify-api (font-awesome-solid-font)", -1), jw = {
|
@@ -19971,7 +19966,7 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19971
19966
|
], -1), Mk = {
|
19972
19967
|
class: "headline-demopage",
|
19973
19968
|
id: "section-tables"
|
19974
|
-
},
|
19969
|
+
}, Pk = /* @__PURE__ */ a("span", null, "Tables", -1), Vk = /* @__PURE__ */ a("h3", null, "Table as wide as its content (with caption)", -1), Ak = /* @__PURE__ */ a("h3", null, "Table as wide as possible", -1), Ek = {
|
19975
19970
|
class: "headline-demopage",
|
19976
19971
|
id: "section-tabs"
|
19977
19972
|
}, Hk = /* @__PURE__ */ a("span", null, "Tabs", -1), qk = /* @__PURE__ */ a("h4", null, "Tab 1 headline", -1), Rk = /* @__PURE__ */ a("p", null, "Slot-Content Tab 1", -1), Nk = /* @__PURE__ */ a("h4", null, "Tab 2 headline", -1), Uk = /* @__PURE__ */ a("p", null, "Slot-Content Tab 2", -1), jk = /* @__PURE__ */ a("h4", null, "Tab 3 headline", -1), zk = /* @__PURE__ */ a("p", null, "Slot-Content Tab 3", -1), Gk = {
|
@@ -19997,12 +19992,12 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19997
19992
|
id: "content"
|
19998
19993
|
}, uv = /* @__PURE__ */ a("h1", { class: "headline-demopage" }, "Page Overview", -1);
|
19999
19994
|
function mv(e, n, t, s, i, o) {
|
20000
|
-
const d = bn, c = Mi, u = tf, g = gn, p =
|
19995
|
+
const d = bn, c = Mi, u = tf, g = gn, p = Vi, f = cf, C = yo, b = Li, L = Ei, v = te, B = Ai, F = Jp, D = Ni, M = Ii, G = gr, j = kr, V = Di, N = Pi, J = gu, $ = Ri, Z = Y, ee = K, se = Ce, ce = Dm, ue = qm, ne = Re, A = dh, ae = Ui, ie = _e("router-view"), Le = Lh, Ie = Mh, we = rp, Be = Ap, Fe = Np, De = _p, ke = sf, re = _f, it = Bf, ot = ji, lt = $g, st = et, ze = ay, at = fy, qe = ky, W = Bi, Co = Oy, Bt = Si, wo = Mx, ko = bo, vo = ju, To = Eu, So = Dd, Oo = Rx, Lo = Po("fancybox");
|
20001
19996
|
return X((l(), r("div", {
|
20002
19997
|
class: "page-wrapper",
|
20003
19998
|
id: o.templateId
|
20004
19999
|
}, [
|
20005
|
-
|
20000
|
+
L1,
|
20006
20001
|
i.showLeftSidebar ? (l(), w(u, {
|
20007
20002
|
key: 0,
|
20008
20003
|
cmdHeadline: { headlineText: "Site Settings", headlineLevel: 3, textAlign: "center" },
|
@@ -20026,19 +20021,19 @@ function mv(e, n, t, s, i, o) {
|
|
20026
20021
|
onToggleCollapse: (z) => x.boxToggled(0, z)
|
20027
20022
|
}, {
|
20028
20023
|
body: k(() => [
|
20029
|
-
a("label",
|
20030
|
-
|
20024
|
+
a("label", I1, [
|
20025
|
+
B1,
|
20031
20026
|
X(a("select", {
|
20032
20027
|
id: "select-template",
|
20033
20028
|
"onUpdate:modelValue": n[0] || (n[0] = (z) => i.selectedTemplate = z)
|
20034
|
-
},
|
20035
|
-
[
|
20029
|
+
}, A1, 512), [
|
20030
|
+
[Vo, i.selectedTemplate]
|
20036
20031
|
])
|
20037
20032
|
]),
|
20038
20033
|
a("div", null, [
|
20039
|
-
|
20040
|
-
a("div",
|
20041
|
-
a("label",
|
20034
|
+
E1,
|
20035
|
+
a("div", H1, [
|
20036
|
+
a("label", q1, [
|
20042
20037
|
X(a("input", {
|
20043
20038
|
type: "radio",
|
20044
20039
|
id: "default-color-scheme",
|
@@ -20048,9 +20043,9 @@ function mv(e, n, t, s, i, o) {
|
|
20048
20043
|
}, null, 512), [
|
20049
20044
|
[Dt, i.colorScheme]
|
20050
20045
|
]),
|
20051
|
-
|
20046
|
+
R1
|
20052
20047
|
]),
|
20053
|
-
a("label",
|
20048
|
+
a("label", N1, [
|
20054
20049
|
X(a("input", {
|
20055
20050
|
type: "radio",
|
20056
20051
|
id: "light-mode",
|
@@ -20060,9 +20055,9 @@ function mv(e, n, t, s, i, o) {
|
|
20060
20055
|
}, null, 512), [
|
20061
20056
|
[Dt, i.colorScheme]
|
20062
20057
|
]),
|
20063
|
-
|
20058
|
+
U1
|
20064
20059
|
]),
|
20065
|
-
a("label",
|
20060
|
+
a("label", j1, [
|
20066
20061
|
X(a("input", {
|
20067
20062
|
type: "radio",
|
20068
20063
|
id: "dark-mode",
|
@@ -20072,7 +20067,7 @@ function mv(e, n, t, s, i, o) {
|
|
20072
20067
|
}, null, 512), [
|
20073
20068
|
[Dt, i.colorScheme]
|
20074
20069
|
]),
|
20075
|
-
|
20070
|
+
z1
|
20076
20071
|
])
|
20077
20072
|
])
|
20078
20073
|
])
|
@@ -20097,7 +20092,7 @@ function mv(e, n, t, s, i, o) {
|
|
20097
20092
|
href: o.sectionName(z),
|
20098
20093
|
onClick: (yv) => o.updateSettingsSidebar(o.componentNameWithPrefix(z)),
|
20099
20094
|
title: "Go to component"
|
20100
|
-
}, y(o.readableComponentName(z)), 9,
|
20095
|
+
}, y(o.readableComponentName(z)), 9, G1)
|
20101
20096
|
], 2))), 128))
|
20102
20097
|
])
|
20103
20098
|
]),
|
@@ -20159,37 +20154,37 @@ function mv(e, n, t, s, i, o) {
|
|
20159
20154
|
]),
|
20160
20155
|
_: 1
|
20161
20156
|
}, 8, ["openBoxesByDefault"]),
|
20162
|
-
a("dl",
|
20163
|
-
|
20157
|
+
a("dl", W1, [
|
20158
|
+
K1,
|
20164
20159
|
a("dd", null, y(i.packageJson.dependencies["comand-frontend-framework"].replace("^", "")), 1),
|
20165
|
-
|
20160
|
+
J1,
|
20166
20161
|
a("dd", null, y(i.packageJson.version), 1)
|
20167
20162
|
])
|
20168
20163
|
]),
|
20169
20164
|
closed: k(() => [
|
20170
|
-
a("div",
|
20165
|
+
a("div", Y1, [
|
20171
20166
|
a("a", {
|
20172
20167
|
href: "#",
|
20173
20168
|
class: "button primary",
|
20174
20169
|
title: "Open Template Selection",
|
20175
20170
|
onClick: n[9] || (n[9] = T((x) => o.openBox(0), ["prevent"]))
|
20176
|
-
},
|
20171
|
+
}, Q1),
|
20177
20172
|
a("a", {
|
20178
20173
|
href: "#",
|
20179
20174
|
class: "button primary",
|
20180
20175
|
title: "Open Components Overview",
|
20181
20176
|
onClick: n[10] || (n[10] = T((x) => o.openBox(1), ["prevent"]))
|
20182
|
-
}, $
|
20177
|
+
}, $1),
|
20183
20178
|
a("a", {
|
20184
20179
|
href: "#",
|
20185
20180
|
class: "button primary",
|
20186
20181
|
title: "Open Page-Templates",
|
20187
20182
|
onClick: n[11] || (n[11] = T((x) => o.openBox(2), ["prevent"]))
|
20188
|
-
},
|
20183
|
+
}, t_),
|
20189
20184
|
a("a", {
|
20190
20185
|
href: "#",
|
20191
20186
|
onClick: n[12] || (n[12] = T((x) => i.showLeftSidebar = !1, ["prevent"]))
|
20192
|
-
},
|
20187
|
+
}, i_)
|
20193
20188
|
])
|
20194
20189
|
]),
|
20195
20190
|
_: 1
|
@@ -20207,17 +20202,17 @@ function mv(e, n, t, s, i, o) {
|
|
20207
20202
|
]),
|
20208
20203
|
_: 1
|
20209
20204
|
}),
|
20210
|
-
i.componentView ? (l(), r("main",
|
20205
|
+
i.componentView ? (l(), r("main", o_, [
|
20211
20206
|
h(C, null, {
|
20212
20207
|
default: k(() => [
|
20213
|
-
|
20208
|
+
l_
|
20214
20209
|
]),
|
20215
20210
|
_: 1
|
20216
20211
|
}),
|
20217
20212
|
h(C, null, {
|
20218
20213
|
default: k(() => [
|
20219
|
-
a("h2",
|
20220
|
-
|
20214
|
+
a("h2", s_, [
|
20215
|
+
a_,
|
20221
20216
|
a("a", {
|
20222
20217
|
href: "#",
|
20223
20218
|
class: "button small icon-cog",
|
@@ -20225,7 +20220,7 @@ function mv(e, n, t, s, i, o) {
|
|
20225
20220
|
onClick: n[13] || (n[13] = T((x) => o.openSettingsSidebar("CmdAddressData"), ["prevent"]))
|
20226
20221
|
})
|
20227
20222
|
]),
|
20228
|
-
a("div",
|
20223
|
+
a("div", r_, [
|
20229
20224
|
h(b, I({
|
20230
20225
|
ref: "CmdAddressData",
|
20231
20226
|
addressData: i.addressData
|
@@ -20236,10 +20231,10 @@ function mv(e, n, t, s, i, o) {
|
|
20236
20231
|
}),
|
20237
20232
|
h(C, null, {
|
20238
20233
|
default: k(() => [
|
20239
|
-
|
20240
|
-
|
20241
|
-
a("div",
|
20242
|
-
a("ul",
|
20234
|
+
d_,
|
20235
|
+
c_,
|
20236
|
+
a("div", u_, [
|
20237
|
+
a("ul", m_, [
|
20243
20238
|
a("li", null, [
|
20244
20239
|
a("a", {
|
20245
20240
|
href: "#",
|
@@ -20248,7 +20243,7 @@ function mv(e, n, t, s, i, o) {
|
|
20248
20243
|
id: "status-default"
|
20249
20244
|
}, " Default ", 2)
|
20250
20245
|
]),
|
20251
|
-
a("li",
|
20246
|
+
a("li", h_, [
|
20252
20247
|
a("a", {
|
20253
20248
|
href: "#",
|
20254
20249
|
onClick: n[15] || (n[15] = T((x) => o.setStatus("error", !1), ["prevent"])),
|
@@ -20301,10 +20296,10 @@ function mv(e, n, t, s, i, o) {
|
|
20301
20296
|
novalidate: "novalidate"
|
20302
20297
|
}, {
|
20303
20298
|
default: k(() => [
|
20304
|
-
a("fieldset",
|
20305
|
-
|
20306
|
-
a("h2",
|
20307
|
-
|
20299
|
+
a("fieldset", p_, [
|
20300
|
+
f_,
|
20301
|
+
a("h2", g_, [
|
20302
|
+
y_,
|
20308
20303
|
a("a", {
|
20309
20304
|
href: "#",
|
20310
20305
|
class: "button small icon-cog",
|
@@ -20316,7 +20311,7 @@ function mv(e, n, t, s, i, o) {
|
|
20316
20311
|
status: i.validationStatus,
|
20317
20312
|
disabled: i.disabledStatus
|
20318
20313
|
}), null, 16, ["status", "disabled"]),
|
20319
|
-
a("div",
|
20314
|
+
a("div", b_, [
|
20320
20315
|
h(v, {
|
20321
20316
|
labelText: "Input for datalist:",
|
20322
20317
|
element: "input",
|
@@ -20328,7 +20323,7 @@ function mv(e, n, t, s, i, o) {
|
|
20328
20323
|
tooltipText: "This is a tooltip"
|
20329
20324
|
}, null, 8, ["status", "disabled", "datalist"])
|
20330
20325
|
]),
|
20331
|
-
a("div",
|
20326
|
+
a("div", x_, [
|
20332
20327
|
h(v, I({
|
20333
20328
|
labelText: "Input (type search (without search-button)):",
|
20334
20329
|
element: "input",
|
@@ -20350,8 +20345,8 @@ function mv(e, n, t, s, i, o) {
|
|
20350
20345
|
tooltipText: "This is a tooltip"
|
20351
20346
|
}, { useCustomTooltip: !1 }), null, 16, ["status", "disabled"])
|
20352
20347
|
]),
|
20353
|
-
|
20354
|
-
a("div",
|
20348
|
+
__,
|
20349
|
+
a("div", C_, [
|
20355
20350
|
h(v, {
|
20356
20351
|
element: "input",
|
20357
20352
|
type: "text",
|
@@ -20365,7 +20360,7 @@ function mv(e, n, t, s, i, o) {
|
|
20365
20360
|
disabled: i.disabledStatus
|
20366
20361
|
}, {
|
20367
20362
|
labeltext: k(() => [
|
20368
|
-
|
20363
|
+
w_
|
20369
20364
|
]),
|
20370
20365
|
_: 1
|
20371
20366
|
}, 8, ["modelValue", "status", "disabled"]),
|
@@ -20397,7 +20392,7 @@ function mv(e, n, t, s, i, o) {
|
|
20397
20392
|
disabled: i.disabledStatus
|
20398
20393
|
}, null, 8, ["modelValue", "status", "disabled"])
|
20399
20394
|
]),
|
20400
|
-
a("div",
|
20395
|
+
a("div", k_, [
|
20401
20396
|
h(v, {
|
20402
20397
|
labelText: "Label for emailfield (with icon):",
|
20403
20398
|
element: "input",
|
@@ -20508,9 +20503,9 @@ function mv(e, n, t, s, i, o) {
|
|
20508
20503
|
status: i.validationStatus,
|
20509
20504
|
disabled: i.disabledStatus
|
20510
20505
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
20511
|
-
|
20512
|
-
a("h3",
|
20513
|
-
|
20506
|
+
v_,
|
20507
|
+
a("h3", T_, [
|
20508
|
+
S_,
|
20514
20509
|
a("a", {
|
20515
20510
|
href: "#",
|
20516
20511
|
class: "button small icon-cog",
|
@@ -20518,7 +20513,7 @@ function mv(e, n, t, s, i, o) {
|
|
20518
20513
|
onClick: n[33] || (n[33] = T((x) => o.openSettingsSidebar("CmdFakeSelect"), ["prevent"]))
|
20519
20514
|
})
|
20520
20515
|
]),
|
20521
|
-
a("div",
|
20516
|
+
a("div", O_, [
|
20522
20517
|
h(B, I({ ref: "CmdFakeSelect" }, e.cmdFakeSelectSettingsData, {
|
20523
20518
|
selectData: i.fakeSelectOptionsData,
|
20524
20519
|
modelValue: i.fakeSelectDefault,
|
@@ -20570,21 +20565,21 @@ function mv(e, n, t, s, i, o) {
|
|
20570
20565
|
type: "color"
|
20571
20566
|
}, null, 8, ["status", "disabled", "selectData", "modelValue"])
|
20572
20567
|
]),
|
20573
|
-
|
20574
|
-
|
20568
|
+
L_,
|
20569
|
+
I_,
|
20575
20570
|
h(F, {
|
20576
20571
|
labelText: "Progress Bar (with optional output):",
|
20577
20572
|
id: "progress-bar2",
|
20578
20573
|
max: "100"
|
20579
20574
|
}),
|
20580
|
-
|
20575
|
+
B_,
|
20581
20576
|
a("div", {
|
20582
20577
|
class: _(["label", i.validationStatus])
|
20583
20578
|
}, [
|
20584
|
-
|
20585
|
-
a("span",
|
20586
|
-
a("label",
|
20587
|
-
|
20579
|
+
F_,
|
20580
|
+
a("span", D_, [
|
20581
|
+
a("label", M_, [
|
20582
|
+
P_,
|
20588
20583
|
X(a("input", {
|
20589
20584
|
type: "number",
|
20590
20585
|
class: _(i.validationStatus),
|
@@ -20593,12 +20588,12 @@ function mv(e, n, t, s, i, o) {
|
|
20593
20588
|
min: "0",
|
20594
20589
|
max: "100",
|
20595
20590
|
id: "range-value"
|
20596
|
-
}, null, 10,
|
20591
|
+
}, null, 10, V_), [
|
20597
20592
|
[Nt, i.rangeValue]
|
20598
20593
|
])
|
20599
20594
|
]),
|
20600
|
-
a("label",
|
20601
|
-
|
20595
|
+
a("label", A_, [
|
20596
|
+
E_,
|
20602
20597
|
X(a("input", {
|
20603
20598
|
type: "range",
|
20604
20599
|
class: "range-slider",
|
@@ -20607,15 +20602,15 @@ function mv(e, n, t, s, i, o) {
|
|
20607
20602
|
disabled: i.disabledStatus,
|
20608
20603
|
min: "0",
|
20609
20604
|
max: "100"
|
20610
|
-
}, null, 8,
|
20605
|
+
}, null, 8, H_), [
|
20611
20606
|
[Nt, i.rangeValue]
|
20612
20607
|
])
|
20613
20608
|
])
|
20614
20609
|
])
|
20615
20610
|
], 2),
|
20616
|
-
|
20617
|
-
|
20618
|
-
|
20611
|
+
q_,
|
20612
|
+
R_,
|
20613
|
+
N_,
|
20619
20614
|
h(v, {
|
20620
20615
|
element: "input",
|
20621
20616
|
type: "checkbox",
|
@@ -20640,7 +20635,7 @@ function mv(e, n, t, s, i, o) {
|
|
20640
20635
|
status: i.validationStatus,
|
20641
20636
|
disabled: i.disabledStatus
|
20642
20637
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
20643
|
-
|
20638
|
+
U_,
|
20644
20639
|
h(v, {
|
20645
20640
|
element: "input",
|
20646
20641
|
type: "checkbox",
|
@@ -20715,16 +20710,16 @@ function mv(e, n, t, s, i, o) {
|
|
20715
20710
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
20716
20711
|
a("p", null, [
|
20717
20712
|
E(" checkbox (required) with boolean: " + y(i.checkboxRequiredValue), 1),
|
20718
|
-
|
20713
|
+
j_,
|
20719
20714
|
E(" checkbox with boolean: " + y(i.checkboxValue), 1),
|
20720
|
-
|
20715
|
+
z_,
|
20721
20716
|
E(" checkboxes with values: " + y(i.checkboxValues), 1)
|
20722
20717
|
]),
|
20723
|
-
|
20724
|
-
|
20725
|
-
a("div",
|
20726
|
-
|
20727
|
-
a("div",
|
20718
|
+
G_,
|
20719
|
+
W_,
|
20720
|
+
a("div", K_, [
|
20721
|
+
J_,
|
20722
|
+
a("div", Y_, [
|
20728
20723
|
h(v, {
|
20729
20724
|
element: "input",
|
20730
20725
|
labelText: "Label for checkbox with boolean",
|
@@ -20769,16 +20764,16 @@ function mv(e, n, t, s, i, o) {
|
|
20769
20764
|
}, {
|
20770
20765
|
labeltext: k(() => [
|
20771
20766
|
E(" Labeltext with "),
|
20772
|
-
|
20767
|
+
Z_,
|
20773
20768
|
E(" given by slot ")
|
20774
20769
|
]),
|
20775
20770
|
_: 1
|
20776
20771
|
}, 8, ["modelValue", "status", "disabled"])
|
20777
20772
|
])
|
20778
20773
|
]),
|
20779
|
-
|
20780
|
-
a("div",
|
20781
|
-
$
|
20774
|
+
Q_,
|
20775
|
+
a("div", X_, [
|
20776
|
+
$_,
|
20782
20777
|
a("div", eC, [
|
20783
20778
|
h(v, {
|
20784
20779
|
element: "input",
|
@@ -21042,10 +21037,9 @@ function mv(e, n, t, s, i, o) {
|
|
21042
21037
|
onClick: n[67] || (n[67] = T((x) => o.openSettingsSidebar("CmdBasicForm"), ["prevent"]))
|
21043
21038
|
})
|
21044
21039
|
]),
|
21045
|
-
h(
|
21040
|
+
h(V, {
|
21046
21041
|
ref: "CmdBasicForm",
|
21047
|
-
|
21048
|
-
onSubmit: o.sendBasicForm,
|
21042
|
+
cmdForm: { useValidation: !0 },
|
21049
21043
|
userMessage: {
|
21050
21044
|
required: !1,
|
21051
21045
|
element: "textarea",
|
@@ -21054,7 +21048,7 @@ function mv(e, n, t, s, i, o) {
|
|
21054
21048
|
submitButton: {
|
21055
21049
|
text: "Send request"
|
21056
21050
|
}
|
21057
|
-
}, null,
|
21051
|
+
}, null, 512),
|
21058
21052
|
a("dl", null, [
|
21059
21053
|
OC,
|
21060
21054
|
a("dd", null, y(i.basicFormData.originalEvent), 1),
|
@@ -21087,8 +21081,8 @@ function mv(e, n, t, s, i, o) {
|
|
21087
21081
|
]),
|
21088
21082
|
body: k(() => [
|
21089
21083
|
MC,
|
21090
|
-
|
21091
|
-
|
21084
|
+
PC,
|
21085
|
+
VC
|
21092
21086
|
]),
|
21093
21087
|
footer: k(() => [
|
21094
21088
|
AC
|
@@ -21545,8 +21539,8 @@ function mv(e, n, t, s, i, o) {
|
|
21545
21539
|
}),
|
21546
21540
|
h(C, null, {
|
21547
21541
|
default: k(() => [
|
21548
|
-
a("h2",
|
21549
|
-
|
21542
|
+
a("h2", Pw, [
|
21543
|
+
Vw,
|
21550
21544
|
a("a", {
|
21551
21545
|
href: "#",
|
21552
21546
|
class: "button small icon-cog",
|
@@ -22048,7 +22042,7 @@ function mv(e, n, t, s, i, o) {
|
|
22048
22042
|
h(C, null, {
|
22049
22043
|
default: k(() => [
|
22050
22044
|
a("h2", Mk, [
|
22051
|
-
|
22045
|
+
Pk,
|
22052
22046
|
a("a", {
|
22053
22047
|
href: "#",
|
22054
22048
|
class: "button small icon-cog",
|
@@ -22056,7 +22050,7 @@ function mv(e, n, t, s, i, o) {
|
|
22056
22050
|
onClick: n[110] || (n[110] = T((x) => o.openSettingsSidebar("CmdTable"), ["prevent"]))
|
22057
22051
|
})
|
22058
22052
|
]),
|
22059
|
-
|
22053
|
+
Vk,
|
22060
22054
|
h(ze, I({ ref: "CmdTable" }, e.cmdTableSettingsData, { "table-data": i.tableDataLarge }), null, 16, ["table-data"]),
|
22061
22055
|
Ak,
|
22062
22056
|
h(ze, {
|
@@ -22163,7 +22157,7 @@ function mv(e, n, t, s, i, o) {
|
|
22163
22157
|
})
|
22164
22158
|
]),
|
22165
22159
|
a("div", Zk, [
|
22166
|
-
h(
|
22160
|
+
h(W, I({ ref: "CmdThumbnailScroller" }, e.cmdThumbnailScrollerSettingsData, { thumbnailScrollerItems: o.thumbnailScrollerData }), null, 16, ["thumbnailScrollerItems"])
|
22167
22161
|
])
|
22168
22162
|
]),
|
22169
22163
|
_: 1
|
@@ -22341,11 +22335,11 @@ function mv(e, n, t, s, i, o) {
|
|
22341
22335
|
]),
|
22342
22336
|
_: 1
|
22343
22337
|
}, 8, ["openSidebar", "onToggleSidebar"])) : m("", !0)
|
22344
|
-
], 8,
|
22338
|
+
], 8, O1)), [
|
22345
22339
|
[Lo]
|
22346
22340
|
]);
|
22347
22341
|
}
|
22348
|
-
const _v = /* @__PURE__ */
|
22342
|
+
const _v = /* @__PURE__ */ P(S1, [["render", mv]]), Cv = {
|
22349
22343
|
// el = real dom-element
|
22350
22344
|
mounted(e) {
|
22351
22345
|
if (e.tagName === "INPUT" || e.tagName === "SELECT" || e.tagName === "TEXTAREA" || e.tagName === "A")
|
@@ -22457,8 +22451,8 @@ export {
|
|
22457
22451
|
Di as CmdBasicForm,
|
22458
22452
|
bn as CmdBox,
|
22459
22453
|
Mi as CmdBoxWrapper,
|
22460
|
-
|
22461
|
-
|
22454
|
+
Pi as CmdBreadcrumbs,
|
22455
|
+
Vi as CmdCompanyLogo,
|
22462
22456
|
gu as CmdContainer,
|
22463
22457
|
Eu as CmdCookieDisclaimer,
|
22464
22458
|
ju as CmdCopyrightInformation,
|
@@ -22469,7 +22463,7 @@ export {
|
|
22469
22463
|
Ei as CmdFormFilters,
|
22470
22464
|
Ri as CmdGoogleMaps,
|
22471
22465
|
Y as CmdHeadline,
|
22472
|
-
|
22466
|
+
K as CmdIcon,
|
22473
22467
|
Ce as CmdImage,
|
22474
22468
|
Dm as CmdImageGallery,
|
22475
22469
|
qm as CmdImageZoom,
|