comand-component-library 4.1.53 → 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", {
|
@@ -4358,8 +4358,8 @@ function Ar(e, n, t, s, i, o) {
|
|
4358
4358
|
i.systemMessage.show && i.systemMessage.message ? (l(), w(d, {
|
4359
4359
|
key: 0,
|
4360
4360
|
validationStatus: i.systemMessage.validationStatus,
|
4361
|
-
|
4362
|
-
}, null, 8, ["validationStatus", "
|
4361
|
+
systemMessage: i.systemMessage.message
|
4362
|
+
}, null, 8, ["validationStatus", "systemMessage"])) : m("", !0),
|
4363
4363
|
t.useSlot ? H(e.$slots, "default", { key: 1 }) : (l(!0), r(S, { key: 2 }, q(t.formElements, (u, g) => (l(), w(c, {
|
4364
4364
|
key: g,
|
4365
4365
|
element: u.element || "input",
|
@@ -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,18 +5868,27 @@ 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();
|
5884
5884
|
return;
|
5885
5885
|
}
|
5886
|
-
e.originalEvent.preventDefault(),
|
5887
|
-
|
5888
|
-
})
|
5886
|
+
e.originalEvent.preventDefault(), this.reCaptchaWebsiteKey && window.grecaptcha ? grecaptcha.ready(() => {
|
5887
|
+
grecaptcha.execute(this.reCaptchaWebsiteKey, { action: "submit" }).then((n) => this.submitForm(n)).catch((n) => console.log("recaptcha error", n));
|
5888
|
+
}) : this.submitForm();
|
5889
5889
|
},
|
5890
5890
|
submitForm(e) {
|
5891
5891
|
var s;
|
5892
|
-
console.log("submitForm", e);
|
5893
5892
|
const n = new FormData();
|
5894
5893
|
e && n.set("recaptchaToken", e);
|
5895
5894
|
const t = Object.keys(this.configuration);
|
@@ -5897,11 +5896,16 @@ const Dd = /* @__PURE__ */ V(pd, [["render", Fd]]), Md = {
|
|
5897
5896
|
n.set(this.configuration[t[i]].name, this.formData[t[i]].value);
|
5898
5897
|
fetch(this.formAction, { method: ((s = this.cmdForm) == null ? void 0 : s.formMethod) || "POST", body: n }).then((i) => {
|
5899
5898
|
if (i.ok) {
|
5900
|
-
this.$refs.form.showMessage("success", this.getMessage("basic_form.system_message.success.message_sent_successfully"));
|
5901
|
-
|
5902
|
-
|
5899
|
+
this.sendSuccessfully = !0, this.$refs.form.showMessage("success", this.getMessage("basic_form.system_message.success.message_sent_successfully"));
|
5900
|
+
try {
|
5901
|
+
this.formData.error = !1;
|
5902
|
+
for (let o in this.formData)
|
5903
|
+
this.formData[o].error && (this.formData[o].error = !1), typeof this.formData[o].value == "string" ? o === "salutation" ? this.formData[o].value = this.configuration.salutation.default : this.formData[o].value = "" : o === "acceptPrivacy" && (this.formData[o].value = !1);
|
5904
|
+
} catch (o) {
|
5905
|
+
console.error(o);
|
5906
|
+
}
|
5903
5907
|
} else
|
5904
|
-
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"));
|
5905
5909
|
}).catch((i) => {
|
5906
5910
|
this.$refs.form.showMessage("error", this.getMessage("basic_form.system_message.error.message_could_not_be_sent")), console.error(i);
|
5907
5911
|
});
|
@@ -5924,7 +5928,7 @@ const Dd = /* @__PURE__ */ V(pd, [["render", Fd]]), Md = {
|
|
5924
5928
|
this.cityBeforeZip = this.showCityBeforeZip;
|
5925
5929
|
}
|
5926
5930
|
}
|
5927
|
-
},
|
5931
|
+
}, Pd = { class: "cmd-pages-basic-form" }, Vd = {
|
5928
5932
|
key: 0,
|
5929
5933
|
class: "flex-container no-flex row-for-small order-male-female"
|
5930
5934
|
}, Ad = {
|
@@ -5939,10 +5943,11 @@ const Dd = /* @__PURE__ */ V(pd, [["render", Fd]]), Md = {
|
|
5939
5943
|
}, qd = ["innerHTML"];
|
5940
5944
|
function Rd(e, n, t, s, i, o) {
|
5941
5945
|
const d = Y, c = te, u = Ii;
|
5942
|
-
return l(), r("div",
|
5946
|
+
return l(), r("div", Pd, [
|
5943
5947
|
t.cmdHeadline ? (l(), w(d, R(I({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
5944
5948
|
h(u, I({
|
5945
5949
|
onSubmit: o.onSubmit,
|
5950
|
+
class: { "send-success": i.sendSuccessfully },
|
5946
5951
|
novalidate: "novalidate"
|
5947
5952
|
}, t.cmdForm, {
|
5948
5953
|
legend: t.legend,
|
@@ -5951,9 +5956,9 @@ function Rd(e, n, t, s, i, o) {
|
|
5951
5956
|
ref: "form"
|
5952
5957
|
}), {
|
5953
5958
|
default: k(() => {
|
5954
|
-
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;
|
5955
5960
|
return [
|
5956
|
-
t.configuration.salutation ? (l(), r("div",
|
5961
|
+
t.configuration.salutation ? (l(), r("div", Vd, [
|
5957
5962
|
h(c, {
|
5958
5963
|
element: "input",
|
5959
5964
|
type: "radio",
|
@@ -5962,10 +5967,9 @@ function Rd(e, n, t, s, i, o) {
|
|
5962
5967
|
inputValue: "m",
|
5963
5968
|
replaceInputType: (p = t.configuration.salutation) == null ? void 0 : p.replaceInputType,
|
5964
5969
|
modelValue: i.formData.salutation.value,
|
5965
|
-
"onUpdate:modelValue": n[0] || (n[0] = (
|
5966
|
-
i18n: e.i18n
|
5967
|
-
|
5968
|
-
}, 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"]),
|
5969
5973
|
h(c, {
|
5970
5974
|
element: "input",
|
5971
5975
|
type: "radio",
|
@@ -5974,10 +5978,9 @@ function Rd(e, n, t, s, i, o) {
|
|
5974
5978
|
inputValue: "f",
|
5975
5979
|
replaceInputType: (C = t.configuration.salutation) == null ? void 0 : C.replaceInputType,
|
5976
5980
|
modelValue: i.formData.salutation.value,
|
5977
|
-
"onUpdate:modelValue": n[1] || (n[1] = (
|
5978
|
-
i18n: e.i18n
|
5979
|
-
|
5980
|
-
}, 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"])
|
5981
5984
|
])) : m("", !0),
|
5982
5985
|
H(e.$slots, "top"),
|
5983
5986
|
t.configuration.lastName || t.configuration.firstName ? (l(), r("div", Ad, [
|
@@ -5991,11 +5994,11 @@ function Rd(e, n, t, s, i, o) {
|
|
5991
5994
|
name: (v = t.configuration.lastName) == null ? void 0 : v.name,
|
5992
5995
|
placeholder: e.getMessage("basic_form.placeholder.last_name"),
|
5993
5996
|
modelValue: i.formData.lastName.value,
|
5994
|
-
"onUpdate:modelValue": n[2] || (n[2] = (
|
5997
|
+
"onUpdate:modelValue": n[2] || (n[2] = (W) => i.formData.lastName.value = W),
|
5995
5998
|
status: i.formData.lastName.error ? "error" : "",
|
5996
5999
|
i18n: e.i18n,
|
5997
|
-
|
5998
|
-
}, 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),
|
5999
6002
|
t.configuration.firstName ? (l(), w(c, {
|
6000
6003
|
key: 1,
|
6001
6004
|
element: "input",
|
@@ -6006,11 +6009,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6006
6009
|
required: (F = t.configuration.firstName) == null ? void 0 : F.required,
|
6007
6010
|
name: (D = t.configuration.firstName) == null ? void 0 : D.name,
|
6008
6011
|
modelValue: i.formData.firstName.value,
|
6009
|
-
"onUpdate:modelValue": n[3] || (n[3] = (
|
6012
|
+
"onUpdate:modelValue": n[3] || (n[3] = (W) => i.formData.firstName.value = W),
|
6010
6013
|
status: i.formData.firstName.error ? "error" : "",
|
6011
|
-
i18n: e.i18n
|
6012
|
-
|
6013
|
-
}, 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)
|
6014
6016
|
])) : m("", !0),
|
6015
6017
|
t.configuration.email || t.configuration.phone ? (l(), r("div", Ed, [
|
6016
6018
|
t.configuration.email ? (l(), w(c, {
|
@@ -6023,26 +6025,25 @@ function Rd(e, n, t, s, i, o) {
|
|
6023
6025
|
required: (G = t.configuration.email) == null ? void 0 : G.required,
|
6024
6026
|
name: (j = t.configuration.email) == null ? void 0 : j.name,
|
6025
6027
|
modelValue: i.formData.email.value,
|
6026
|
-
"onUpdate:modelValue": n[4] || (n[4] = (
|
6028
|
+
"onUpdate:modelValue": n[4] || (n[4] = (W) => i.formData.email.value = W),
|
6027
6029
|
status: i.formData.email.error ? "error" : "",
|
6028
6030
|
i18n: e.i18n,
|
6029
|
-
|
6030
|
-
}, 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),
|
6031
6033
|
t.configuration.phone ? (l(), w(c, {
|
6032
6034
|
key: 1,
|
6033
6035
|
element: "input",
|
6034
|
-
type: ((
|
6036
|
+
type: ((V = t.configuration.phone) == null ? void 0 : V.type) || "tel",
|
6035
6037
|
iconClass: "icon-phone",
|
6036
6038
|
labelText: e.getMessage("basic_form.labeltext.phone"),
|
6037
6039
|
placeholder: e.getMessage("basic_form.placeholder.phone"),
|
6038
6040
|
modelValue: i.formData.phone.value,
|
6039
|
-
"onUpdate:modelValue": n[5] || (n[5] = (
|
6041
|
+
"onUpdate:modelValue": n[5] || (n[5] = (W) => i.formData.phone.value = W),
|
6040
6042
|
required: (N = t.configuration.phone) == null ? void 0 : N.required,
|
6041
6043
|
name: (J = t.configuration.phone) == null ? void 0 : J.name,
|
6042
6044
|
status: i.formData.phone.error ? "error" : "",
|
6043
|
-
i18n: e.i18n
|
6044
|
-
|
6045
|
-
}, 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)
|
6046
6047
|
])) : m("", !0),
|
6047
6048
|
t.configuration.streetNo || t.configuration.streetNo || t.configuration.zip && t.configuration.city ? (l(), r("div", Hd, [
|
6048
6049
|
t.configuration.country ? (l(), w(c, {
|
@@ -6054,13 +6055,12 @@ function Rd(e, n, t, s, i, o) {
|
|
6054
6055
|
name: (ee = t.configuration.country) == null ? void 0 : ee.name,
|
6055
6056
|
modelValue: i.formData.country.value,
|
6056
6057
|
"onUpdate:modelValue": [
|
6057
|
-
n[6] || (n[6] = (
|
6058
|
+
n[6] || (n[6] = (W) => i.formData.country.value = W),
|
6058
6059
|
o.onCountrySelect
|
6059
6060
|
],
|
6060
6061
|
status: i.formData.country.error ? "error" : "",
|
6061
|
-
i18n: e.i18n
|
6062
|
-
|
6063
|
-
}, 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),
|
6064
6064
|
t.configuration.streetNo ? (l(), w(c, {
|
6065
6065
|
key: 1,
|
6066
6066
|
element: "input",
|
@@ -6070,11 +6070,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6070
6070
|
required: (ce = t.configuration.streetNo) == null ? void 0 : ce.required,
|
6071
6071
|
name: (ue = t.configuration.streetNo) == null ? void 0 : ue.name,
|
6072
6072
|
modelValue: i.formData.streetNo.value,
|
6073
|
-
"onUpdate:modelValue": n[7] || (n[7] = (
|
6073
|
+
"onUpdate:modelValue": n[7] || (n[7] = (W) => i.formData.streetNo.value = W),
|
6074
6074
|
status: i.formData.streetNo.error ? "error" : "",
|
6075
|
-
i18n: e.i18n
|
6076
|
-
|
6077
|
-
}, 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),
|
6078
6077
|
t.configuration.pobox ? (l(), w(c, {
|
6079
6078
|
key: 2,
|
6080
6079
|
element: "input",
|
@@ -6084,11 +6083,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6084
6083
|
required: (A = t.configuration.pobox) == null ? void 0 : A.required,
|
6085
6084
|
name: (ae = t.configuration.pobox) == null ? void 0 : ae.name,
|
6086
6085
|
modelValue: i.formData.pobox.value,
|
6087
|
-
"onUpdate:modelValue": n[8] || (n[8] = (
|
6086
|
+
"onUpdate:modelValue": n[8] || (n[8] = (W) => i.formData.pobox.value = W),
|
6088
6087
|
status: i.formData.pobox.error ? "error" : "",
|
6089
|
-
i18n: e.i18n
|
6090
|
-
|
6091
|
-
}, 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),
|
6092
6090
|
a("div", {
|
6093
6091
|
class: _(["input-wrapper", i.cityBeforeZip ? "order-city-zip" : "order-zip-city"])
|
6094
6092
|
}, [
|
@@ -6102,11 +6100,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6102
6100
|
required: (Le = t.configuration.zip) == null ? void 0 : Le.required,
|
6103
6101
|
name: (Ie = t.configuration.zip) == null ? void 0 : Ie.name,
|
6104
6102
|
modelValue: i.formData.zip.value,
|
6105
|
-
"onUpdate:modelValue": n[9] || (n[9] = (
|
6103
|
+
"onUpdate:modelValue": n[9] || (n[9] = (W) => i.formData.zip.value = W),
|
6106
6104
|
status: i.formData.zip.error ? "error" : "",
|
6107
|
-
i18n: e.i18n
|
6108
|
-
|
6109
|
-
}, 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),
|
6110
6107
|
t.configuration.city ? (l(), w(c, {
|
6111
6108
|
key: 1,
|
6112
6109
|
element: "input",
|
@@ -6116,11 +6113,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6116
6113
|
required: (Be = t.configuration.city) == null ? void 0 : Be.required,
|
6117
6114
|
name: (Fe = t.configuration.city) == null ? void 0 : Fe.name,
|
6118
6115
|
modelValue: i.formData.city.value,
|
6119
|
-
"onUpdate:modelValue": n[10] || (n[10] = (
|
6116
|
+
"onUpdate:modelValue": n[10] || (n[10] = (W) => i.formData.city.value = W),
|
6120
6117
|
status: i.formData.city.error ? "error" : "",
|
6121
|
-
i18n: e.i18n
|
6122
|
-
|
6123
|
-
}, 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)
|
6124
6120
|
], 2),
|
6125
6121
|
t.configuration.additionalAddressInfo ? (l(), w(c, {
|
6126
6122
|
key: 3,
|
@@ -6131,11 +6127,10 @@ function Rd(e, n, t, s, i, o) {
|
|
6131
6127
|
required: (ke = t.configuration.additionalAddressInfo) == null ? void 0 : ke.required,
|
6132
6128
|
name: (re = t.configuration.additionalAddressInfo) == null ? void 0 : re.name,
|
6133
6129
|
modelValue: i.formData.additionalAddressInfo.value,
|
6134
|
-
"onUpdate:modelValue": n[11] || (n[11] = (
|
6130
|
+
"onUpdate:modelValue": n[11] || (n[11] = (W) => i.formData.additionalAddressInfo.value = W),
|
6135
6131
|
status: i.formData.additionalAddressInfo.error ? "error" : "",
|
6136
|
-
i18n: e.i18n
|
6137
|
-
|
6138
|
-
}, 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)
|
6139
6134
|
])) : m("", !0),
|
6140
6135
|
t.configuration.userMessage ? (l(), w(c, {
|
6141
6136
|
key: 4,
|
@@ -6147,11 +6142,11 @@ function Rd(e, n, t, s, i, o) {
|
|
6147
6142
|
textCharactersLeft: e.getMessage("basic_form.text.characters_left"),
|
6148
6143
|
maxlength: (st = t.configuration.userMessage) == null ? void 0 : st.maxLength,
|
6149
6144
|
modelValue: i.formData.userMessage.value,
|
6150
|
-
"onUpdate:modelValue": n[12] || (n[12] = (
|
6145
|
+
"onUpdate:modelValue": n[12] || (n[12] = (W) => i.formData.userMessage.value = W),
|
6151
6146
|
status: i.formData.userMessage.error ? "error" : "",
|
6152
6147
|
i18n: e.i18n,
|
6153
|
-
|
6154
|
-
}, 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),
|
6155
6150
|
H(e.$slots, "bottom"),
|
6156
6151
|
t.configuration.acceptPrivacy ? (l(), w(c, {
|
6157
6152
|
key: 5,
|
@@ -6161,10 +6156,9 @@ function Rd(e, n, t, s, i, o) {
|
|
6161
6156
|
name: (at = t.configuration.acceptPrivacy) == null ? void 0 : at.name,
|
6162
6157
|
replaceInputType: (qe = t.configuration.acceptPrivacy) == null ? void 0 : qe.replaceInputType,
|
6163
6158
|
modelValue: i.formData.acceptPrivacy.value,
|
6164
|
-
"onUpdate:modelValue": n[13] || (n[13] = (
|
6159
|
+
"onUpdate:modelValue": n[13] || (n[13] = (W) => i.formData.acceptPrivacy.value = W),
|
6165
6160
|
status: i.formData.acceptPrivacy.error ? "error" : "",
|
6166
|
-
i18n: e.i18n
|
6167
|
-
onValidate: o.onValidate
|
6161
|
+
i18n: e.i18n
|
6168
6162
|
}, {
|
6169
6163
|
labeltext: k(() => [
|
6170
6164
|
a("span", {
|
@@ -6173,14 +6167,19 @@ function Rd(e, n, t, s, i, o) {
|
|
6173
6167
|
}, null, 8, qd)
|
6174
6168
|
]),
|
6175
6169
|
_: 1
|
6176
|
-
}, 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")
|
6177
6176
|
];
|
6178
6177
|
}),
|
6179
6178
|
_: 3
|
6180
|
-
}, 16, ["onSubmit", "legend", "submitButton", "formAction"])
|
6179
|
+
}, 16, ["onSubmit", "class", "legend", "submitButton", "formAction"])
|
6181
6180
|
]);
|
6182
6181
|
}
|
6183
|
-
const Di = /* @__PURE__ */
|
6182
|
+
const Di = /* @__PURE__ */ P(Md, [["render", Rd]]), Nd = {
|
6184
6183
|
name: "CmdInnerLink",
|
6185
6184
|
props: {
|
6186
6185
|
/**
|
@@ -6215,7 +6214,7 @@ function Gd(e, n, t, s, i, o) {
|
|
6215
6214
|
H(e.$slots, "default")
|
6216
6215
|
], 64);
|
6217
6216
|
}
|
6218
|
-
const Wd = /* @__PURE__ */
|
6217
|
+
const Wd = /* @__PURE__ */ P(Nd, [["render", Gd]]), Kd = {
|
6219
6218
|
name: "CmdLink",
|
6220
6219
|
emits: ["click"],
|
6221
6220
|
props: {
|
@@ -6359,7 +6358,7 @@ function Zd(e, n, t, s, i, o) {
|
|
6359
6358
|
}, 8, ["text", "icon"])
|
6360
6359
|
], 10, Yd)) : m("", !0);
|
6361
6360
|
}
|
6362
|
-
const Re = /* @__PURE__ */
|
6361
|
+
const Re = /* @__PURE__ */ P(Kd, [["render", Zd]]), Qd = {
|
6363
6362
|
name: "CmdListOfLinksItem",
|
6364
6363
|
inheritAttrs: !1,
|
6365
6364
|
mixins: [le],
|
@@ -6406,7 +6405,7 @@ function tc(e, n, t, s, i, o) {
|
|
6406
6405
|
showLabel: !1,
|
6407
6406
|
placeholder: "Linktext",
|
6408
6407
|
modelValue: i.editableText,
|
6409
|
-
"onUpdate:modelValue": n[0] || (n[0] = (
|
6408
|
+
"onUpdate:modelValue": n[0] || (n[0] = (V) => i.editableText = V)
|
6410
6409
|
}, null, 8, ["modelValue"])
|
6411
6410
|
])) : (l(), r("li", Xd, [
|
6412
6411
|
h(d, {
|
@@ -6422,14 +6421,14 @@ function tc(e, n, t, s, i, o) {
|
|
6422
6421
|
styleAsBox: (D = t.link) == null ? void 0 : D.styleAsBox
|
6423
6422
|
}, null, 8, ["linkType", "text", "path", "target", "icon", "fancybox", "tooltip", "styleAsButton", "primaryButton", "styleAsBox"]),
|
6424
6423
|
(G = (M = t.link) == null ? void 0 : M.children) != null && G.length ? (l(), r("ul", $d, [
|
6425
|
-
(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, {
|
6426
6425
|
key: N,
|
6427
|
-
link:
|
6426
|
+
link: V
|
6428
6427
|
}, null, 8, ["link"]))), 128))
|
6429
6428
|
])) : m("", !0)
|
6430
6429
|
]));
|
6431
6430
|
}
|
6432
|
-
const nc = /* @__PURE__ */
|
6431
|
+
const nc = /* @__PURE__ */ P(Qd, [["render", tc]]), ic = {
|
6433
6432
|
name: "CmdListOfLinks",
|
6434
6433
|
emits: ["click"],
|
6435
6434
|
mixins: [le],
|
@@ -6613,7 +6612,7 @@ function rc(e, n, t, s, i, o) {
|
|
6613
6612
|
], 2)
|
6614
6613
|
], 2);
|
6615
6614
|
}
|
6616
|
-
const gn = /* @__PURE__ */
|
6615
|
+
const gn = /* @__PURE__ */ P(ic, [["render", rc]]), dc = {
|
6617
6616
|
data() {
|
6618
6617
|
return {
|
6619
6618
|
defaultMessageProperties: {
|
@@ -6971,10 +6970,10 @@ const uc = ["title"], mc = {
|
|
6971
6970
|
}, Lc = ["title"], Ic = { key: 2 }, Bc = { class: "box-header flex-container vertical" }, Fc = { key: 0 }, Dc = ["src", "alt"], Mc = {
|
6972
6971
|
key: 0,
|
6973
6972
|
class: "user-name"
|
6974
|
-
},
|
6973
|
+
}, Pc = {
|
6975
6974
|
key: 0,
|
6976
6975
|
class: "user-age"
|
6977
|
-
},
|
6976
|
+
}, Vc = { key: 1 }, Ac = ["title"], Ec = {
|
6978
6977
|
key: 0,
|
6979
6978
|
class: "user-name"
|
6980
6979
|
}, Hc = { class: "box-body" }, qc = {
|
@@ -6992,7 +6991,7 @@ const uc = ["title"], mc = {
|
|
6992
6991
|
};
|
6993
6992
|
function Gc(e, n, t, s, i, o) {
|
6994
6993
|
var f, C, b, L, v, B, F, D, M, G, j;
|
6995
|
-
const d = Y, c =
|
6994
|
+
const d = Y, c = K, u = Ce, g = Re, p = gn;
|
6996
6995
|
return t.boxType === "content" ? (l(), r("div", {
|
6997
6996
|
key: 0,
|
6998
6997
|
ref: "cmdBox",
|
@@ -7012,7 +7011,7 @@ function Gc(e, n, t, s, i, o) {
|
|
7012
7011
|
href: "#",
|
7013
7012
|
class: "box-header",
|
7014
7013
|
title: i.open ? t.iconOpen.tooltip : t.iconClosed.tooltip,
|
7015
|
-
onClick: n[0] || (n[0] = T((...
|
7014
|
+
onClick: n[0] || (n[0] = T((...V) => o.toggleContentVisibility && o.toggleContentVisibility(...V), ["prevent"]))
|
7016
7015
|
}, [
|
7017
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),
|
7018
7017
|
h(c, {
|
@@ -7037,9 +7036,9 @@ function Gc(e, n, t, s, i, o) {
|
|
7037
7036
|
style: ft(t.allowContentToScroll ? "max-height: " + i.calculatedBodyHeight : null)
|
7038
7037
|
}, [
|
7039
7038
|
H(e.$slots, "body", {}, () => {
|
7040
|
-
var
|
7039
|
+
var V;
|
7041
7040
|
return [
|
7042
|
-
(
|
7041
|
+
(V = t.cmdHeadline) != null && V.headlineText && t.headlinePosition === "body" ? (l(), w(d, R(I({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
7043
7042
|
t.cmdIcon !== void 0 ? (l(), r("div", hc, [
|
7044
7043
|
h(c, {
|
7045
7044
|
iconClass: t.cmdIcon.iconClass,
|
@@ -7099,7 +7098,7 @@ function Gc(e, n, t, s, i, o) {
|
|
7099
7098
|
key: 1,
|
7100
7099
|
class: _(["cmd-box box product", { "stretch-vertically": t.stretchVertically, "stretch-horizontally": t.stretchHorizontally, "row-view": t.rowView }]),
|
7101
7100
|
href: "#",
|
7102
|
-
onClick: n[2] || (n[2] = T((
|
7101
|
+
onClick: n[2] || (n[2] = T((V) => o.clickOnProduct(t.product), ["prevent"]))
|
7103
7102
|
}, [
|
7104
7103
|
a("div", xc, [
|
7105
7104
|
t.product.image !== void 0 ? (l(), r("figure", _c, [
|
@@ -7146,9 +7145,9 @@ function Gc(e, n, t, s, i, o) {
|
|
7146
7145
|
}, null, 8, Dc),
|
7147
7146
|
t.rowView ? m("", !0) : (l(), r("figcaption", Mc, [
|
7148
7147
|
E(y(t.user.name), 1),
|
7149
|
-
t.user.age ? (l(), r("span",
|
7148
|
+
t.user.age ? (l(), r("span", Pc, " (" + y(t.user.age) + ")", 1)) : m("", !0)
|
7150
7149
|
]))
|
7151
|
-
])) : (l(), r("div",
|
7150
|
+
])) : (l(), r("div", Vc, [
|
7152
7151
|
a("span", {
|
7153
7152
|
class: _(t.defaultProfileIconClass),
|
7154
7153
|
title: t.user.name
|
@@ -7163,7 +7162,7 @@ function Gc(e, n, t, s, i, o) {
|
|
7163
7162
|
t.user.description ? (l(), r("p", Uc, y(t.user.description), 1)) : m("", !0)
|
7164
7163
|
]),
|
7165
7164
|
t.user.tags && t.user.tags.length ? (l(), r("ul", jc, [
|
7166
|
-
(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))
|
7167
7166
|
])) : m("", !0),
|
7168
7167
|
t.user.links && t.user.links.length ? (l(), r("div", zc, [
|
7169
7168
|
h(p, {
|
@@ -7174,7 +7173,7 @@ function Gc(e, n, t, s, i, o) {
|
|
7174
7173
|
])) : m("", !0)
|
7175
7174
|
], 2)) : m("", !0);
|
7176
7175
|
}
|
7177
|
-
const bn = /* @__PURE__ */
|
7176
|
+
const bn = /* @__PURE__ */ P(yn, [["render", Gc]]), xn = {
|
7178
7177
|
name: "CmdBoxWrapper",
|
7179
7178
|
data() {
|
7180
7179
|
return {
|
@@ -7379,7 +7378,7 @@ const Wc = { class: "cmd-box-wrapper" }, Kc = {
|
|
7379
7378
|
class: "options-wrapper"
|
7380
7379
|
}, Yc = ["title"];
|
7381
7380
|
function Zc(e, n, t, s, i, o) {
|
7382
|
-
const d = Y, c =
|
7381
|
+
const d = Y, c = K;
|
7383
7382
|
return l(), r("div", Wc, [
|
7384
7383
|
t.cmdHeadline.headlineText || t.allowUserToToggleOrientation ? (l(), r("div", Kc, [
|
7385
7384
|
t.cmdHeadline.headlineText ? (l(), w(d, R(I({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
@@ -7417,7 +7416,7 @@ function Zc(e, n, t, s, i, o) {
|
|
7417
7416
|
], 2)
|
7418
7417
|
]);
|
7419
7418
|
}
|
7420
|
-
const Mi = /* @__PURE__ */
|
7419
|
+
const Mi = /* @__PURE__ */ P(xn, [["render", Zc]]);
|
7421
7420
|
function Ne(e) {
|
7422
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);
|
7423
7422
|
}
|
@@ -7459,7 +7458,7 @@ const Qc = {
|
|
7459
7458
|
class: "separator"
|
7460
7459
|
};
|
7461
7460
|
function su(e, n, t, s, i, o) {
|
7462
|
-
const d =
|
7461
|
+
const d = K, c = _e("router-link");
|
7463
7462
|
return l(), r("ul", Xc, [
|
7464
7463
|
t.breadcrumbLabel ? (l(), r("li", $c, y(t.breadcrumbLabel), 1)) : m("", !0),
|
7465
7464
|
(l(!0), r(S, null, q(t.breadcrumbLinks || [], (u, g) => (l(), r("li", { key: g }, [
|
@@ -7498,7 +7497,7 @@ function su(e, n, t, s, i, o) {
|
|
7498
7497
|
]))), 128))
|
7499
7498
|
]);
|
7500
7499
|
}
|
7501
|
-
const
|
7500
|
+
const Pi = /* @__PURE__ */ P(Qc, [["render", su]]), au = {
|
7502
7501
|
name: "CmdCompanyLogo",
|
7503
7502
|
data() {
|
7504
7503
|
return {
|
@@ -7611,7 +7610,7 @@ function cu(e, n, t, s, i, o) {
|
|
7611
7610
|
}, null, 8, ["image", "onImageLoaded"]))
|
7612
7611
|
]);
|
7613
7612
|
}
|
7614
|
-
const
|
7613
|
+
const Vi = /* @__PURE__ */ P(au, [["render", cu]]), uu = {
|
7615
7614
|
name: "CmdContainer",
|
7616
7615
|
props: {
|
7617
7616
|
/**
|
@@ -7725,7 +7724,7 @@ function fu(e, n, t, s, i, o) {
|
|
7725
7724
|
}, null, 8, pu)) : m("", !0)
|
7726
7725
|
]);
|
7727
7726
|
}
|
7728
|
-
const gu = /* @__PURE__ */
|
7727
|
+
const gu = /* @__PURE__ */ P(uu, [["render", fu]]), yu = {
|
7729
7728
|
data() {
|
7730
7729
|
return {
|
7731
7730
|
defaultMessageProperties: {
|
@@ -7877,10 +7876,10 @@ const gu = /* @__PURE__ */ V(uu, [["render", fu]]), yu = {
|
|
7877
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 = {
|
7878
7877
|
key: 1,
|
7879
7878
|
class: "flex-container vertical"
|
7880
|
-
}, 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" };
|
7881
7880
|
function Au(e, n, t, s, i, o) {
|
7882
7881
|
const d = Y, c = te;
|
7883
|
-
return l(), w(
|
7882
|
+
return l(), w(Ve, { name: "fade" }, {
|
7884
7883
|
default: k(() => {
|
7885
7884
|
var u, g, p;
|
7886
7885
|
return [
|
@@ -8001,8 +8000,8 @@ function Au(e, n, t, s, i, o) {
|
|
8001
8000
|
key: 1,
|
8002
8001
|
class: "privacy-text",
|
8003
8002
|
innerHTML: e.getMessage("cookie_disclaimer.text.data_privacy")
|
8004
|
-
}, null, 8,
|
8005
|
-
a("div",
|
8003
|
+
}, null, 8, Pu)) : m("", !0),
|
8004
|
+
a("div", Vu, [
|
8006
8005
|
a("button", {
|
8007
8006
|
type: "button",
|
8008
8007
|
onClick: n[4] || (n[4] = (...f) => o.acceptCurrentCookies && o.acceptCurrentCookies(...f))
|
@@ -8024,7 +8023,7 @@ function Au(e, n, t, s, i, o) {
|
|
8024
8023
|
_: 3
|
8025
8024
|
});
|
8026
8025
|
}
|
8027
|
-
const Eu = /* @__PURE__ */
|
8026
|
+
const Eu = /* @__PURE__ */ P(bu, [["render", Au]]), Hu = {
|
8028
8027
|
name: "CmdCopyrightWrapper"
|
8029
8028
|
}, qu = {
|
8030
8029
|
class: "cmd-copyright-information",
|
@@ -8040,7 +8039,7 @@ const Eu = /* @__PURE__ */ V(bu, [["render", Au]]), Hu = {
|
|
8040
8039
|
function Uu(e, n, t, s, i, o) {
|
8041
8040
|
return l(), r("div", qu, Nu);
|
8042
8041
|
}
|
8043
|
-
const ju = /* @__PURE__ */
|
8042
|
+
const ju = /* @__PURE__ */ P(Hu, [["render", Uu]]), zu = {
|
8044
8043
|
data() {
|
8045
8044
|
return {
|
8046
8045
|
defaultMessageProperties: {
|
@@ -8330,7 +8329,7 @@ const ju = /* @__PURE__ */ V(Hu, [["render", Uu]]), zu = {
|
|
8330
8329
|
};
|
8331
8330
|
function mm(e, n, t, s, i, o) {
|
8332
8331
|
var g, p, f, C;
|
8333
|
-
const d =
|
8332
|
+
const d = K, c = mn, u = _e("router-link");
|
8334
8333
|
return l(), r("div", {
|
8335
8334
|
class: _([
|
8336
8335
|
i.validationStatus,
|
@@ -8511,7 +8510,7 @@ function mm(e, n, t, s, i, o) {
|
|
8511
8510
|
], 42, Qu)
|
8512
8511
|
], 10, Wu);
|
8513
8512
|
}
|
8514
|
-
const Ai = /* @__PURE__ */
|
8513
|
+
const Ai = /* @__PURE__ */ P(Gu, [["render", mm]]), hm = {
|
8515
8514
|
name: "CmdFormFilters",
|
8516
8515
|
data() {
|
8517
8516
|
return {
|
@@ -8592,7 +8591,7 @@ const Ai = /* @__PURE__ */ V(Gu, [["render", mm]]), hm = {
|
|
8592
8591
|
class: "cmd-form-filters"
|
8593
8592
|
}, fm = { key: 0 }, gm = { key: 1 }, ym = ["onClick", "title"];
|
8594
8593
|
function bm(e, n, t, s, i, o) {
|
8595
|
-
const d =
|
8594
|
+
const d = K;
|
8596
8595
|
return i.options.length ? (l(), r("ul", pm, [
|
8597
8596
|
i.options.length > 1 ? (l(), r("li", fm, [
|
8598
8597
|
a("a", {
|
@@ -8622,7 +8621,7 @@ function bm(e, n, t, s, i, o) {
|
|
8622
8621
|
]))), 128))
|
8623
8622
|
])) : m("", !0);
|
8624
8623
|
}
|
8625
|
-
const Ei = /* @__PURE__ */
|
8624
|
+
const Ei = /* @__PURE__ */ P(hm, [["render", bm]]), xm = {
|
8626
8625
|
data() {
|
8627
8626
|
return {
|
8628
8627
|
defaultMessageProperties: {
|
@@ -8722,7 +8721,7 @@ function vm(e, n, t, s, i, o) {
|
|
8722
8721
|
}))
|
8723
8722
|
]);
|
8724
8723
|
}
|
8725
|
-
const Ri = /* @__PURE__ */
|
8724
|
+
const Ri = /* @__PURE__ */ P(Cm, [["render", vm]]), Tm = {
|
8726
8725
|
name: "CmdImageGallery",
|
8727
8726
|
mixins: [le],
|
8728
8727
|
props: {
|
@@ -8859,7 +8858,7 @@ function Fm(e, n, t, s, i, o) {
|
|
8859
8858
|
], 64))
|
8860
8859
|
]);
|
8861
8860
|
}
|
8862
|
-
const Dm = /* @__PURE__ */
|
8861
|
+
const Dm = /* @__PURE__ */ P(Tm, [["render", Fm]]), Mm = {
|
8863
8862
|
name: "CmdImageZoom",
|
8864
8863
|
props: {
|
8865
8864
|
/**
|
@@ -8904,10 +8903,10 @@ function Gn(e, n) {
|
|
8904
8903
|
function Wn(e, n, t) {
|
8905
8904
|
return e < n ? n : e > t ? t : e;
|
8906
8905
|
}
|
8907
|
-
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);
|
8908
8907
|
function Hm(e, n, t, s, i, o) {
|
8909
8908
|
const d = Ce;
|
8910
|
-
return l(), r("div",
|
8909
|
+
return l(), r("div", Pm, [
|
8911
8910
|
a("a", {
|
8912
8911
|
href: "#",
|
8913
8912
|
class: "no-flex thumbnails-imagezoom",
|
@@ -8919,14 +8918,14 @@ function Hm(e, n, t, s, i, o) {
|
|
8919
8918
|
onMousemove: o.onMouseMove,
|
8920
8919
|
onMouseout: o.onMouseOut
|
8921
8920
|
}), null, 16, ["onMouseover", "onMousemove", "onMouseout"])
|
8922
|
-
], 8,
|
8921
|
+
], 8, Vm),
|
8923
8922
|
a("div", Am, [
|
8924
8923
|
h(d, I(t.imageLarge, { useFigureTag: !1 }), null, 16)
|
8925
8924
|
]),
|
8926
8925
|
Em
|
8927
8926
|
]);
|
8928
8927
|
}
|
8929
|
-
const qm = /* @__PURE__ */
|
8928
|
+
const qm = /* @__PURE__ */ P(Mm, [["render", Hm]]), Rm = {
|
8930
8929
|
mixins: [
|
8931
8930
|
hn,
|
8932
8931
|
pn,
|
@@ -9124,7 +9123,7 @@ const qm = /* @__PURE__ */ V(Mm, [["render", Hm]]), Rm = {
|
|
9124
9123
|
class: "flex-container no-flex"
|
9125
9124
|
};
|
9126
9125
|
function Zm(e, n, t, s, i, o) {
|
9127
|
-
const d =
|
9126
|
+
const d = K, c = mn;
|
9128
9127
|
return l(), r("div", {
|
9129
9128
|
class: _([
|
9130
9129
|
"cmd-input-group label",
|
@@ -9204,7 +9203,7 @@ function Zm(e, n, t, s, i, o) {
|
|
9204
9203
|
], 2))
|
9205
9204
|
], 10, Nm);
|
9206
9205
|
}
|
9207
|
-
const Ni = /* @__PURE__ */
|
9206
|
+
const Ni = /* @__PURE__ */ P(Rm, [["render", Zm]]), Qm = {
|
9208
9207
|
name: "CmdLoginForm",
|
9209
9208
|
data() {
|
9210
9209
|
return {
|
@@ -9490,7 +9489,7 @@ const Ni = /* @__PURE__ */ V(Rm, [["render", Zm]]), Qm = {
|
|
9490
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 };
|
9491
9490
|
function rh(e, n, t, s, i, o) {
|
9492
9491
|
var p, f, C, b, L, v, B, F;
|
9493
|
-
const d = Y, c = te, u =
|
9492
|
+
const d = Y, c = te, u = K, g = Re;
|
9494
9493
|
return l(), r(S, null, [
|
9495
9494
|
X(a("fieldset", Xm, [
|
9496
9495
|
a("legend", {
|
@@ -9612,7 +9611,7 @@ function rh(e, n, t, s, i, o) {
|
|
9612
9611
|
])
|
9613
9612
|
], 64);
|
9614
9613
|
}
|
9615
|
-
const dh = /* @__PURE__ */
|
9614
|
+
const dh = /* @__PURE__ */ P(Qm, [["render", rh]]), ch = {
|
9616
9615
|
name: "CmdMainNavigation",
|
9617
9616
|
data() {
|
9618
9617
|
return {
|
@@ -9753,7 +9752,7 @@ const dh = /* @__PURE__ */ V(Qm, [["render", rh]]), ch = {
|
|
9753
9752
|
class: "close-nav"
|
9754
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 };
|
9755
9754
|
function kh(e, n, t, s, i, o) {
|
9756
|
-
const d =
|
9755
|
+
const d = K, c = _e("router-link");
|
9757
9756
|
return l(), r("div", {
|
9758
9757
|
class: _([
|
9759
9758
|
"cmd-main-navigation main-navigation-wrapper",
|
@@ -9952,7 +9951,7 @@ function kh(e, n, t, s, i, o) {
|
|
9952
9951
|
])) : m("", !0)
|
9953
9952
|
], 2);
|
9954
9953
|
}
|
9955
|
-
const Ui = /* @__PURE__ */
|
9954
|
+
const Ui = /* @__PURE__ */ P(ch, [["render", kh]]), vh = {
|
9956
9955
|
name: "CmdMultistepFormProgressBar",
|
9957
9956
|
data() {
|
9958
9957
|
return {
|
@@ -10001,7 +10000,7 @@ const Ui = /* @__PURE__ */ V(ch, [["render", kh]]), vh = {
|
|
10001
10000
|
class: "number"
|
10002
10001
|
}, Sh = { key: 2 };
|
10003
10002
|
function Oh(e, n, t, s, i, o) {
|
10004
|
-
const d =
|
10003
|
+
const d = K, c = Re;
|
10005
10004
|
return l(), r("ol", {
|
10006
10005
|
class: _(["cmd-multistep-form-progress-bar", { "use-gap": t.useGap }])
|
10007
10006
|
}, [
|
@@ -10032,7 +10031,7 @@ function Oh(e, n, t, s, i, o) {
|
|
10032
10031
|
], 2))), 128))
|
10033
10032
|
], 2);
|
10034
10033
|
}
|
10035
|
-
const Lh = /* @__PURE__ */
|
10034
|
+
const Lh = /* @__PURE__ */ P(vh, [["render", Oh]]), Ih = {
|
10036
10035
|
name: "CmdNewsletterSubscription",
|
10037
10036
|
emits: ["button-click"],
|
10038
10037
|
data() {
|
@@ -10219,7 +10218,7 @@ function Dh(e, n, t, s, i, o) {
|
|
10219
10218
|
])
|
10220
10219
|
]);
|
10221
10220
|
}
|
10222
|
-
const Mh = /* @__PURE__ */
|
10221
|
+
const Mh = /* @__PURE__ */ P(Ih, [["render", Dh]]);
|
10223
10222
|
function Kn(e, n, t, s = !0, i = !0) {
|
10224
10223
|
function o(d, c) {
|
10225
10224
|
return c && d < 10 ? "0" + d : d;
|
@@ -10232,7 +10231,7 @@ function Kn(e, n, t, s = !0, i = !0) {
|
|
10232
10231
|
return o(d, s) + e + o(c, !0) + n;
|
10233
10232
|
};
|
10234
10233
|
}
|
10235
|
-
const
|
10234
|
+
const Ph = {
|
10236
10235
|
name: "CmdOpeningHoursItem",
|
10237
10236
|
mixins: [le],
|
10238
10237
|
data() {
|
@@ -10320,7 +10319,7 @@ const Vh = {
|
|
10320
10319
|
deep: !0
|
10321
10320
|
}
|
10322
10321
|
}
|
10323
|
-
},
|
10322
|
+
}, Vh = { class: "cmd-opening-hours-item" }, Ah = {
|
10324
10323
|
key: 0,
|
10325
10324
|
class: "am"
|
10326
10325
|
}, Eh = {
|
@@ -10435,7 +10434,7 @@ function Gh(e, n, t, s, i, o) {
|
|
10435
10434
|
])
|
10436
10435
|
])
|
10437
10436
|
], 64)) : (l(), r(S, { key: 0 }, [
|
10438
|
-
a("dt",
|
10437
|
+
a("dt", Vh, y(t.day.day), 1),
|
10439
10438
|
a("dd", null, [
|
10440
10439
|
t.day.am ? (l(), r("span", Ah, [
|
10441
10440
|
t.day.am.displayText ? (l(), r(S, { key: 0 }, [
|
@@ -10454,7 +10453,7 @@ function Gh(e, n, t, s, i, o) {
|
|
10454
10453
|
])
|
10455
10454
|
], 64));
|
10456
10455
|
}
|
10457
|
-
const Wh = /* @__PURE__ */
|
10456
|
+
const Wh = /* @__PURE__ */ P(Ph, [["render", Gh]]);
|
10458
10457
|
function Kh(e) {
|
10459
10458
|
return (n, t) => {
|
10460
10459
|
const s = /* @__PURE__ */ new Date();
|
@@ -10831,7 +10830,7 @@ function ap(e, n, t, s, i, o) {
|
|
10831
10830
|
])) : m("", !0)
|
10832
10831
|
]);
|
10833
10832
|
}
|
10834
|
-
const rp = /* @__PURE__ */
|
10833
|
+
const rp = /* @__PURE__ */ P(Yh, [["render", ap]]), dp = {
|
10835
10834
|
data() {
|
10836
10835
|
return {
|
10837
10836
|
defaultMessageProperties: {
|
@@ -10944,7 +10943,7 @@ const rp = /* @__PURE__ */ V(Yh, [["render", ap]]), dp = {
|
|
10944
10943
|
}
|
10945
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 };
|
10946
10945
|
function xp(e, n, t, s, i, o) {
|
10947
|
-
const d =
|
10946
|
+
const d = K;
|
10948
10947
|
return l(), r("div", up, [
|
10949
10948
|
a("a", {
|
10950
10949
|
href: o.getPreviousHref,
|
@@ -10986,7 +10985,7 @@ function xp(e, n, t, s, i, o) {
|
|
10986
10985
|
], 10, yp)
|
10987
10986
|
]);
|
10988
10987
|
}
|
10989
|
-
const _p = /* @__PURE__ */
|
10988
|
+
const _p = /* @__PURE__ */ P(cp, [["render", xp]]), Cp = {
|
10990
10989
|
name: "CmdSocialNetworksItem",
|
10991
10990
|
data() {
|
10992
10991
|
return {
|
@@ -11087,7 +11086,7 @@ const _p = /* @__PURE__ */ V(cp, [["render", xp]]), Cp = {
|
|
11087
11086
|
}
|
11088
11087
|
}, wp = { class: "cmd-social-networks-item" }, kp = ["id", "href", "title"], vp = { key: 1 };
|
11089
11088
|
function Tp(e, n, t, s, i, o) {
|
11090
|
-
const d =
|
11089
|
+
const d = K;
|
11091
11090
|
return l(), r("li", wp, [
|
11092
11091
|
(l(), r("a", {
|
11093
11092
|
key: t.network.path,
|
@@ -11107,7 +11106,7 @@ function Tp(e, n, t, s, i, o) {
|
|
11107
11106
|
], 10, kp))
|
11108
11107
|
]);
|
11109
11108
|
}
|
11110
|
-
const Sp = /* @__PURE__ */
|
11109
|
+
const Sp = /* @__PURE__ */ P(Cp, [["render", Tp]]), Op = {
|
11111
11110
|
name: "CmdSocialNetworks",
|
11112
11111
|
mixins: [le],
|
11113
11112
|
data() {
|
@@ -11326,7 +11325,7 @@ function Bp(e, n, t, s, i, o) {
|
|
11326
11325
|
}, Ip))
|
11327
11326
|
], 2);
|
11328
11327
|
}
|
11329
|
-
const ji = /* @__PURE__ */
|
11328
|
+
const ji = /* @__PURE__ */ P(Op, [["render", Bp]]), Fp = {
|
11330
11329
|
name: "CmdPageFooter",
|
11331
11330
|
props: {
|
11332
11331
|
/**
|
@@ -11413,8 +11412,8 @@ const ji = /* @__PURE__ */ V(Op, [["render", Bp]]), Fp = {
|
|
11413
11412
|
});
|
11414
11413
|
}
|
11415
11414
|
}
|
11416
|
-
}, Dp = { class: "button-wrapper" }, Mp = ["title"],
|
11417
|
-
function
|
11415
|
+
}, Dp = { class: "button-wrapper" }, Mp = ["title"], Pp = { key: 1 };
|
11416
|
+
function Vp(e, n, t, s, i, o) {
|
11418
11417
|
var c, u, g, p;
|
11419
11418
|
const d = ji;
|
11420
11419
|
return l(), r("footer", {
|
@@ -11439,12 +11438,12 @@ function Pp(e, n, t, s, i, o) {
|
|
11439
11438
|
key: 0,
|
11440
11439
|
class: _((p = o.buttonPrintViewOptions.icon) == null ? void 0 : p.iconClass)
|
11441
11440
|
}, null, 2)) : m("", !0),
|
11442
|
-
o.buttonPrintViewOptions.text ? (l(), r("span",
|
11441
|
+
o.buttonPrintViewOptions.text ? (l(), r("span", Pp, y(o.buttonPrintViewOptions.text), 1)) : m("", !0)
|
11443
11442
|
], 10, Mp)) : m("", !0)
|
11444
11443
|
])
|
11445
11444
|
], 2);
|
11446
11445
|
}
|
11447
|
-
const Ap = /* @__PURE__ */
|
11446
|
+
const Ap = /* @__PURE__ */ P(Fp, [["render", Vp]]), Ep = {
|
11448
11447
|
name: "CmdPageHeader",
|
11449
11448
|
props: {
|
11450
11449
|
/**
|
@@ -11470,7 +11469,7 @@ const Ap = /* @__PURE__ */ V(Fp, [["render", Pp]]), Ep = {
|
|
11470
11469
|
class: "headline-wrapper flex-container vertical"
|
11471
11470
|
};
|
11472
11471
|
function Rp(e, n, t, s, i, o) {
|
11473
|
-
const d =
|
11472
|
+
const d = Pi, c = Y;
|
11474
11473
|
return t.cmdBreadcrumbs || t.cmdHeadline || e.$slots.default ? (l(), r("header", Hp, [
|
11475
11474
|
t.cmdBreadcrumbs || t.cmdHeadline ? (l(), r("div", qp, [
|
11476
11475
|
t.cmdBreadcrumbs ? (l(), w(d, R(I({ key: 0 }, t.cmdBreadcrumbs)), null, 16)) : m("", !0),
|
@@ -11479,7 +11478,7 @@ function Rp(e, n, t, s, i, o) {
|
|
11479
11478
|
e.$slots.default ? H(e.$slots, "default", { key: 1 }) : m("", !0)
|
11480
11479
|
])) : m("", !0);
|
11481
11480
|
}
|
11482
|
-
const Np = /* @__PURE__ */
|
11481
|
+
const Np = /* @__PURE__ */ P(Ep, [["render", Rp]]), Up = {
|
11483
11482
|
name: "CmdProgressBar",
|
11484
11483
|
inheritAttrs: !1,
|
11485
11484
|
data() {
|
@@ -11539,7 +11538,7 @@ function Kp(e, n, t, s, i, o) {
|
|
11539
11538
|
])
|
11540
11539
|
], 8, jp);
|
11541
11540
|
}
|
11542
|
-
const Jp = /* @__PURE__ */
|
11541
|
+
const Jp = /* @__PURE__ */ P(Up, [["render", Kp]]), Yp = {
|
11543
11542
|
name: "CmdSidebar",
|
11544
11543
|
data() {
|
11545
11544
|
return {
|
@@ -11642,7 +11641,7 @@ function ef(e, n, t, s, i, o) {
|
|
11642
11641
|
], 8, $p)) : m("", !0)
|
11643
11642
|
], 2);
|
11644
11643
|
}
|
11645
|
-
const tf = /* @__PURE__ */
|
11644
|
+
const tf = /* @__PURE__ */ P(Yp, [["render", ef]]), nf = {
|
11646
11645
|
name: "CmdSiteFooter",
|
11647
11646
|
props: {
|
11648
11647
|
/**
|
@@ -11668,7 +11667,7 @@ function lf(e, n, t, s, i, o) {
|
|
11668
11667
|
], 2)
|
11669
11668
|
]);
|
11670
11669
|
}
|
11671
|
-
const sf = /* @__PURE__ */
|
11670
|
+
const sf = /* @__PURE__ */ P(nf, [["render", lf]]), af = {
|
11672
11671
|
name: "CmdSiteHeader",
|
11673
11672
|
emits: ["offcanvas"],
|
11674
11673
|
data() {
|
@@ -11771,7 +11770,7 @@ const sf = /* @__PURE__ */ V(nf, [["render", lf]]), af = {
|
|
11771
11770
|
};
|
11772
11771
|
function df(e, n, t, s, i, o) {
|
11773
11772
|
var u, g, p, f, C, b, L, v, B;
|
11774
|
-
const d =
|
11773
|
+
const d = Vi, c = Ui;
|
11775
11774
|
return l(), r("div", {
|
11776
11775
|
ref: "site-header",
|
11777
11776
|
class: _([
|
@@ -11812,7 +11811,7 @@ function df(e, n, t, s, i, o) {
|
|
11812
11811
|
}), null, 16, ["closeOffcanvas", "onOffcanvas"])) : m("", !0)
|
11813
11812
|
], 2);
|
11814
11813
|
}
|
11815
|
-
const cf = /* @__PURE__ */
|
11814
|
+
const cf = /* @__PURE__ */ P(af, [["render", df]]), uf = {
|
11816
11815
|
data() {
|
11817
11816
|
return {
|
11818
11817
|
defaultMessageProperties: {
|
@@ -12091,7 +12090,7 @@ const cf = /* @__PURE__ */ V(af, [["render", df]]), uf = {
|
|
12091
12090
|
};
|
12092
12091
|
function xf(e, n, t, s, i, o) {
|
12093
12092
|
var f, C, b, L, v, B, F, D;
|
12094
|
-
const d = Y, c = te, u =
|
12093
|
+
const d = Y, c = te, u = K, g = Ai, p = Ei;
|
12095
12094
|
return l(), r(S, null, [
|
12096
12095
|
a("fieldset", hf, [
|
12097
12096
|
a("legend", {
|
@@ -12151,9 +12150,9 @@ function xf(e, n, t, s, i, o) {
|
|
12151
12150
|
}, null, 8, ["iconClass", "type"]),
|
12152
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))
|
12153
12152
|
]),
|
12154
|
-
h(
|
12153
|
+
h(Ve, { name: "fade" }, {
|
12155
12154
|
default: k(() => {
|
12156
|
-
var M, G, j,
|
12155
|
+
var M, G, j, V, N;
|
12157
12156
|
return [
|
12158
12157
|
i.showFilters && ((M = t.cmdFakeSelect) != null && M.selectData.length) ? (l(), r("div", bf, [
|
12159
12158
|
h(g, {
|
@@ -12162,7 +12161,7 @@ function xf(e, n, t, s, i, o) {
|
|
12162
12161
|
modelValue: o.searchFilters,
|
12163
12162
|
"onUpdate:modelValue": n[4] || (n[4] = (J) => o.searchFilters = J),
|
12164
12163
|
defaultOptionName: (j = t.cmdFakeSelect) == null ? void 0 : j.defaultOptionName,
|
12165
|
-
type: (
|
12164
|
+
type: (V = t.cmdFakeSelect) == null ? void 0 : V.type,
|
12166
12165
|
labelText: (N = t.cmdFakeSelect) == null ? void 0 : N.labelText
|
12167
12166
|
}, null, 8, ["selectData", "modelValue", "defaultOptionName", "type", "labelText"])
|
12168
12167
|
])) : m("", !0)
|
@@ -12180,7 +12179,7 @@ function xf(e, n, t, s, i, o) {
|
|
12180
12179
|
}, null, 8, ["modelValue", "selectedOptionsName"])) : m("", !0)
|
12181
12180
|
], 64);
|
12182
12181
|
}
|
12183
|
-
const _f = /* @__PURE__ */
|
12182
|
+
const _f = /* @__PURE__ */ P(mf, [["render", xf]]), Cf = {
|
12184
12183
|
name: "CmdSlideshow",
|
12185
12184
|
mixins: [le],
|
12186
12185
|
data() {
|
@@ -12454,16 +12453,16 @@ function If(e, n, t, s, i, o) {
|
|
12454
12453
|
], 32)
|
12455
12454
|
], 2);
|
12456
12455
|
}
|
12457
|
-
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({
|
12458
12457
|
__proto__: null,
|
12459
12458
|
default: Ff
|
12460
|
-
}, 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({
|
12461
12460
|
__proto__: null,
|
12462
12461
|
default: Mf
|
12463
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
12462
|
+
}, Symbol.toStringTag, { value: "Module" })), Vf = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
12464
12463
|
__proto__: null,
|
12465
12464
|
de: Df,
|
12466
|
-
en:
|
12465
|
+
en: Pf
|
12467
12466
|
}, Symbol.toStringTag, { value: "Module" })), zi = [
|
12468
12467
|
{
|
12469
12468
|
name: "company",
|
@@ -13943,14 +13942,14 @@ const Bf = /* @__PURE__ */ V(Cf, [["render", If]]), Ff = "data:image/svg+xml,%3c
|
|
13943
13942
|
"Table foot 13",
|
13944
13943
|
"Table foot 14",
|
13945
13944
|
"Table foot 15"
|
13946
|
-
],
|
13945
|
+
], Pg = {
|
13947
13946
|
caption: Lg,
|
13948
13947
|
rowIndexHighlighted: Ig,
|
13949
13948
|
columnIndexHighlighted: Bg,
|
13950
13949
|
thead: Fg,
|
13951
13950
|
tbody: Dg,
|
13952
13951
|
tfoot: Mg
|
13953
|
-
},
|
13952
|
+
}, Vg = {
|
13954
13953
|
show: !0,
|
13955
13954
|
text: "This is a caption for a small table"
|
13956
13955
|
}, Ag = [
|
@@ -14025,7 +14024,7 @@ const Bf = /* @__PURE__ */ V(Cf, [["render", If]]), Ff = "data:image/svg+xml,%3c
|
|
14025
14024
|
"Table foot 6",
|
14026
14025
|
"Table foot 7"
|
14027
14026
|
], qg = {
|
14028
|
-
caption:
|
14027
|
+
caption: Vg,
|
14029
14028
|
thead: Ag,
|
14030
14029
|
tbody: Eg,
|
14031
14030
|
tfoot: Hg
|
@@ -14729,7 +14728,7 @@ const Bf = /* @__PURE__ */ V(Cf, [["render", If]]), Ff = "data:image/svg+xml,%3c
|
|
14729
14728
|
this.imageSources = [], this.languages.forEach(
|
14730
14729
|
async (e) => {
|
14731
14730
|
const n = e.iso2;
|
14732
|
-
this.imageSources.push(
|
14731
|
+
this.imageSources.push(Vf[n].default);
|
14733
14732
|
}
|
14734
14733
|
);
|
14735
14734
|
},
|
@@ -14773,7 +14772,7 @@ function Xg(e, n, t, s, i, o) {
|
|
14773
14772
|
])
|
14774
14773
|
]);
|
14775
14774
|
}
|
14776
|
-
const $g = /* @__PURE__ */
|
14775
|
+
const $g = /* @__PURE__ */ P(Kg, [["render", Xg]]), ey = {
|
14777
14776
|
name: "CmdTable",
|
14778
14777
|
data() {
|
14779
14778
|
return {
|
@@ -14933,7 +14932,7 @@ const $g = /* @__PURE__ */ V(Kg, [["render", Xg]]), ey = {
|
|
14933
14932
|
};
|
14934
14933
|
function sy(e, n, t, s, i, o) {
|
14935
14934
|
var u, g, p, f;
|
14936
|
-
const d =
|
14935
|
+
const d = K, c = vt;
|
14937
14936
|
return l(), r("div", {
|
14938
14937
|
class: _(["cmd-table-wrapper", { collapsed: !i.showTableData, "full-width": i.fullWidth, "has-caption": o.hasCaption, "has-overflow": i.hasOverflow }])
|
14939
14938
|
}, [
|
@@ -14986,7 +14985,7 @@ function sy(e, n, t, s, i, o) {
|
|
14986
14985
|
(l(!0), r(S, null, q(t.tableData.thead, (C, b) => (l(), r("th", { key: b }, y(C), 1))), 128))
|
14987
14986
|
])
|
14988
14987
|
]),
|
14989
|
-
h(
|
14988
|
+
h(Ve, {
|
14990
14989
|
name: t.useTransition ? "fade" : null
|
14991
14990
|
}, {
|
14992
14991
|
default: k(() => [
|
@@ -15006,7 +15005,7 @@ function sy(e, n, t, s, i, o) {
|
|
15006
15005
|
]),
|
15007
15006
|
_: 1
|
15008
15007
|
}, 8, ["name"]),
|
15009
|
-
h(
|
15008
|
+
h(Ve, {
|
15010
15009
|
name: t.useTransition ? "fade" : null
|
15011
15010
|
}, {
|
15012
15011
|
default: k(() => [
|
@@ -15029,7 +15028,7 @@ function sy(e, n, t, s, i, o) {
|
|
15029
15028
|
], 544)
|
15030
15029
|
], 2);
|
15031
15030
|
}
|
15032
|
-
const ay = /* @__PURE__ */
|
15031
|
+
const ay = /* @__PURE__ */ P(ey, [["render", sy]]);
|
15033
15032
|
pi(og);
|
15034
15033
|
const ry = {
|
15035
15034
|
name: "CmdTabs",
|
@@ -15098,7 +15097,7 @@ const ry = {
|
|
15098
15097
|
"aria-live": "assertive"
|
15099
15098
|
}, hy = ["innerHTML"];
|
15100
15099
|
function py(e, n, t, s, i, o) {
|
15101
|
-
const d =
|
15100
|
+
const d = K, c = Y;
|
15102
15101
|
return l(), r("div", dy, [
|
15103
15102
|
a("ul", {
|
15104
15103
|
class: _({ "stretch-tabs": t.stretchTabs }),
|
@@ -15143,7 +15142,7 @@ function py(e, n, t, s, i, o) {
|
|
15143
15142
|
]))
|
15144
15143
|
]);
|
15145
15144
|
}
|
15146
|
-
const fy = /* @__PURE__ */
|
15145
|
+
const fy = /* @__PURE__ */ P(ry, [["render", py]]), gy = {
|
15147
15146
|
name: "CmdTextImageBlock",
|
15148
15147
|
mixins: [le],
|
15149
15148
|
data() {
|
@@ -15320,7 +15319,7 @@ function wy(e, n, t, s, i, o) {
|
|
15320
15319
|
}, 8, ["componentProps", "componentPath", "allowDeleteComponent"])) : m("", !0)
|
15321
15320
|
], 2);
|
15322
15321
|
}
|
15323
|
-
const ky = /* @__PURE__ */
|
15322
|
+
const ky = /* @__PURE__ */ P(gy, [["render", wy]]), vy = {
|
15324
15323
|
name: "ToggleDarkMode",
|
15325
15324
|
mixins: [
|
15326
15325
|
le
|
@@ -15475,7 +15474,7 @@ const ky = /* @__PURE__ */ V(gy, [["render", wy]]), vy = {
|
|
15475
15474
|
}
|
15476
15475
|
}, Ty = { key: 0 };
|
15477
15476
|
function Sy(e, n, t, s, i, o) {
|
15478
|
-
const d =
|
15477
|
+
const d = K, c = te;
|
15479
15478
|
return l(), r("div", {
|
15480
15479
|
class: _(["cmd-toggle-dark-mode", { "styled-layout": t.useStyledLayout, "dark-mode": i.darkMode }])
|
15481
15480
|
}, [
|
@@ -15526,7 +15525,7 @@ function Sy(e, n, t, s, i, o) {
|
|
15526
15525
|
], 64))
|
15527
15526
|
], 2);
|
15528
15527
|
}
|
15529
|
-
const Oy = /* @__PURE__ */
|
15528
|
+
const Oy = /* @__PURE__ */ P(vy, [["render", Sy]]), Ly = {
|
15530
15529
|
data() {
|
15531
15530
|
return {
|
15532
15531
|
defaultMessageProperties: {
|
@@ -15601,7 +15600,7 @@ const Dy = St("string"), he = St("function"), Yi = St("number"), Ot = (e) => e !
|
|
15601
15600
|
return !1;
|
15602
15601
|
const n = _n(e);
|
15603
15602
|
return (n === null || n === Object.prototype || Object.getPrototypeOf(n) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
|
15604
|
-
},
|
15603
|
+
}, Py = ge("Date"), Vy = ge("File"), Ay = ge("Blob"), Ey = ge("FileList"), Hy = (e) => Ot(e) && he(e.pipe), qy = (e) => {
|
15605
15604
|
let n;
|
15606
15605
|
return e && (typeof FormData == "function" && e instanceof FormData || he(e.append) && ((n = Tt(e)) === "formdata" || // detect form-data instance
|
15607
15606
|
n === "object" && he(e.toString) && e.toString() === "[object FormData]"));
|
@@ -15762,8 +15761,8 @@ const cb = (e) => {
|
|
15762
15761
|
isResponse: jy,
|
15763
15762
|
isHeaders: zy,
|
15764
15763
|
isUndefined: $e,
|
15765
|
-
isDate:
|
15766
|
-
isFile:
|
15764
|
+
isDate: Py,
|
15765
|
+
isFile: Vy,
|
15767
15766
|
isBlob: Ay,
|
15768
15767
|
isRegExp: ib,
|
15769
15768
|
isFunction: he,
|
@@ -16219,7 +16218,7 @@ function Et(e, n, t, s, i) {
|
|
16219
16218
|
function Mb(e) {
|
16220
16219
|
return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g, (n, t, s) => t.toUpperCase() + s);
|
16221
16220
|
}
|
16222
|
-
function
|
16221
|
+
function Pb(e, n) {
|
16223
16222
|
const t = O.toCamelCase(" " + n);
|
16224
16223
|
["get", "set", "has"].forEach((s) => {
|
16225
16224
|
Object.defineProperty(e, s + t, {
|
@@ -16343,7 +16342,7 @@ class de {
|
|
16343
16342
|
}).accessors, i = this.prototype;
|
16344
16343
|
function o(d) {
|
16345
16344
|
const c = Ke(d);
|
16346
|
-
s[c] || (
|
16345
|
+
s[c] || (Pb(i, d), s[c] = !0);
|
16347
16346
|
}
|
16348
16347
|
return O.isArray(n) ? n.forEach(o) : o(n), this;
|
16349
16348
|
}
|
@@ -16385,7 +16384,7 @@ function co(e, n, t) {
|
|
16385
16384
|
t
|
16386
16385
|
));
|
16387
16386
|
}
|
16388
|
-
function
|
16387
|
+
function Vb(e) {
|
16389
16388
|
const n = /^([-+\w]{1,25})(:?\/\/|:)/.exec(e);
|
16390
16389
|
return n && n[1] || "";
|
16391
16390
|
}
|
@@ -16637,7 +16636,7 @@ const mo = (e) => {
|
|
16637
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) => {
|
16638
16637
|
p && (s(!b || b.type ? new je(null, e, p) : b), p.abort(), p = null);
|
16639
16638
|
}, i.cancelToken && i.cancelToken.subscribe(u), i.signal && (i.signal.aborted ? u() : i.signal.addEventListener("abort", u)));
|
16640
|
-
const C =
|
16639
|
+
const C = Vb(i.url);
|
16641
16640
|
if (C && fe.protocols.indexOf(C) === -1) {
|
16642
16641
|
s(new U("Unsupported protocol " + C + ":", U.ERR_BAD_REQUEST, e));
|
16643
16642
|
return;
|
@@ -16769,12 +16768,12 @@ const Jb = async (e) => {
|
|
16769
16768
|
let D;
|
16770
16769
|
try {
|
16771
16770
|
if (u && Kb && t !== "get" && t !== "head" && (D = await Yb(p, s)) !== 0) {
|
16772
|
-
let
|
16771
|
+
let V = new Request(n, {
|
16773
16772
|
method: "POST",
|
16774
16773
|
body: s,
|
16775
16774
|
duplex: "half"
|
16776
16775
|
}), N;
|
16777
|
-
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(
|
16778
16777
|
D,
|
16779
16778
|
yt(u)
|
16780
16779
|
), null, Xt));
|
@@ -16791,9 +16790,9 @@ const Jb = async (e) => {
|
|
16791
16790
|
let M = await fetch(B);
|
16792
16791
|
const G = $t && (g === "stream" || g === "response");
|
16793
16792
|
if ($t && (c || G)) {
|
16794
|
-
const
|
16793
|
+
const V = {};
|
16795
16794
|
["status", "statusText", "headers"].forEach((J) => {
|
16796
|
-
|
16795
|
+
V[J] = M[J];
|
16797
16796
|
});
|
16798
16797
|
const N = O.toFiniteNumber(M.headers.get("content-length"));
|
16799
16798
|
M = new Response(
|
@@ -16801,13 +16800,13 @@ const Jb = async (e) => {
|
|
16801
16800
|
N,
|
16802
16801
|
yt(c, !0)
|
16803
16802
|
), G && F, Xt),
|
16804
|
-
|
16803
|
+
V
|
16805
16804
|
);
|
16806
16805
|
}
|
16807
16806
|
g = g || "text";
|
16808
16807
|
let j = await bt[O.findKey(bt, g) || "text"](M, e);
|
16809
|
-
return !G && F(), L && L(), await new Promise((
|
16810
|
-
co(
|
16808
|
+
return !G && F(), L && L(), await new Promise((V, N) => {
|
16809
|
+
co(V, N, {
|
16811
16810
|
data: j,
|
16812
16811
|
headers: de.from(M.headers),
|
16813
16812
|
status: M.status,
|
@@ -16937,7 +16936,7 @@ const tn = {
|
|
16937
16936
|
assertOptions: Xb,
|
16938
16937
|
validators: kn
|
16939
16938
|
}, ve = tn.validators;
|
16940
|
-
class
|
16939
|
+
class Pe {
|
16941
16940
|
constructor(n) {
|
16942
16941
|
this.defaults = n, this.interceptors = {
|
16943
16942
|
request: new $n(),
|
@@ -17035,7 +17034,7 @@ class Ve {
|
|
17035
17034
|
}
|
17036
17035
|
}
|
17037
17036
|
O.forEach(["delete", "get", "head", "options"], function(n) {
|
17038
|
-
|
17037
|
+
Pe.prototype[n] = function(t, s) {
|
17039
17038
|
return this.request(Ee(s || {}, {
|
17040
17039
|
method: n,
|
17041
17040
|
url: t,
|
@@ -17056,7 +17055,7 @@ O.forEach(["post", "put", "patch"], function(n) {
|
|
17056
17055
|
}));
|
17057
17056
|
};
|
17058
17057
|
}
|
17059
|
-
|
17058
|
+
Pe.prototype[n] = t(), Pe.prototype[n + "Form"] = t(!0);
|
17060
17059
|
});
|
17061
17060
|
class vn {
|
17062
17061
|
constructor(n) {
|
@@ -17202,13 +17201,13 @@ Object.entries(nn).forEach(([e, n]) => {
|
|
17202
17201
|
nn[n] = e;
|
17203
17202
|
});
|
17204
17203
|
function go(e) {
|
17205
|
-
const n = new
|
17206
|
-
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) {
|
17207
17206
|
return go(Ee(e, i));
|
17208
17207
|
}, t;
|
17209
17208
|
}
|
17210
17209
|
const Q = go(nt);
|
17211
|
-
Q.Axios =
|
17210
|
+
Q.Axios = Pe;
|
17212
17211
|
Q.CanceledError = je;
|
17213
17212
|
Q.CancelToken = vn;
|
17214
17213
|
Q.isCancel = ro;
|
@@ -17784,7 +17783,7 @@ const tx = {
|
|
17784
17783
|
class: "progressbar"
|
17785
17784
|
}, Fx = ["value", "title"];
|
17786
17785
|
function Dx(e, n, t, s, i, o) {
|
17787
|
-
const d = Y, c = et, u =
|
17786
|
+
const d = Y, c = et, u = K, g = te;
|
17788
17787
|
return l(), r(S, null, [
|
17789
17788
|
t.advancedMode ? (l(), r("fieldset", {
|
17790
17789
|
key: 0,
|
@@ -17950,7 +17949,7 @@ function Dx(e, n, t, s, i, o) {
|
|
17950
17949
|
type: i.showListOfFileExtensions ? t.iconInvisible.iconType : t.iconVisible.iconType
|
17951
17950
|
}, null, 8, ["iconClass", "type"])
|
17952
17951
|
], 8, _x),
|
17953
|
-
h(
|
17952
|
+
h(Ve, {
|
17954
17953
|
name: t.useTransition ? "fade" : null
|
17955
17954
|
}, {
|
17956
17955
|
default: k(() => [
|
@@ -18081,7 +18080,7 @@ function Dx(e, n, t, s, i, o) {
|
|
18081
18080
|
}, null, 8, ["labelText", "disabled", "multiple", "onChange"])
|
18082
18081
|
], 64);
|
18083
18082
|
}
|
18084
|
-
const Mx = /* @__PURE__ */
|
18083
|
+
const Mx = /* @__PURE__ */ P(tx, [["render", Dx]]), Px = {
|
18085
18084
|
name: "CmdWidthLimitationWrapper",
|
18086
18085
|
props: {
|
18087
18086
|
/**
|
@@ -18187,7 +18186,7 @@ const Mx = /* @__PURE__ */ V(tx, [["render", Dx]]), Vx = {
|
|
18187
18186
|
return e.length === 1 && typeof e[0].type == "symbol" && Array.isArray(e[0].children) ? e[0].children.length === 1 : e.length === 1;
|
18188
18187
|
}
|
18189
18188
|
}
|
18190
|
-
},
|
18189
|
+
}, Vx = ["id"], Ax = ["id"];
|
18191
18190
|
function Ex(e, n, t, s, i, o) {
|
18192
18191
|
const d = Y;
|
18193
18192
|
return l(), r("div", {
|
@@ -18206,7 +18205,7 @@ function Ex(e, n, t, s, i, o) {
|
|
18206
18205
|
}, [
|
18207
18206
|
H(e.$slots, "default")
|
18208
18207
|
], 2))
|
18209
|
-
], 10,
|
18208
|
+
], 10, Vx)) : (l(), r(S, { key: 1 }, [
|
18210
18209
|
t.anchorId ? (l(), r("a", {
|
18211
18210
|
key: 0,
|
18212
18211
|
id: t.anchorId
|
@@ -18215,7 +18214,7 @@ function Ex(e, n, t, s, i, o) {
|
|
18215
18214
|
], 64))
|
18216
18215
|
], 2);
|
18217
18216
|
}
|
18218
|
-
const yo = /* @__PURE__ */
|
18217
|
+
const yo = /* @__PURE__ */ P(Px, [["render", Ex]]), Hx = {
|
18219
18218
|
name: "ComponentSettings",
|
18220
18219
|
data() {
|
18221
18220
|
return {
|
@@ -18334,7 +18333,7 @@ function qx(e, n, t, s, i, o) {
|
|
18334
18333
|
_: 1
|
18335
18334
|
}, 8, ["cmdHeadline"]);
|
18336
18335
|
}
|
18337
|
-
const Rx = /* @__PURE__ */
|
18336
|
+
const Rx = /* @__PURE__ */ P(Hx, [["render", qx]]), Nx = {
|
18338
18337
|
name: "MultipleBoxWrapper",
|
18339
18338
|
props: {
|
18340
18339
|
segments: {
|
@@ -18367,7 +18366,7 @@ function jx(e, n, t, s, i, o) {
|
|
18367
18366
|
], 64))), 128))
|
18368
18367
|
]);
|
18369
18368
|
}
|
18370
|
-
const zx = /* @__PURE__ */
|
18369
|
+
const zx = /* @__PURE__ */ P(Nx, [["render", jx]]), Gx = {
|
18371
18370
|
name: "MultipleListsOfLinks",
|
18372
18371
|
props: {
|
18373
18372
|
segments: {
|
@@ -18390,7 +18389,7 @@ function Kx(e, n, t, s, i, o) {
|
|
18390
18389
|
], 64))), 128))
|
18391
18390
|
]);
|
18392
18391
|
}
|
18393
|
-
const Jx = /* @__PURE__ */
|
18392
|
+
const Jx = /* @__PURE__ */ P(Gx, [["render", Kx]]), Yx = {
|
18394
18393
|
name: "ContactInformation",
|
18395
18394
|
props: {
|
18396
18395
|
/**
|
@@ -18438,7 +18437,7 @@ function Xx(e, n, t, s, i, o) {
|
|
18438
18437
|
])
|
18439
18438
|
]));
|
18440
18439
|
}
|
18441
|
-
const $x = /* @__PURE__ */
|
18440
|
+
const $x = /* @__PURE__ */ P(Yx, [["render", Xx]]), e1 = {
|
18442
18441
|
name: "PageOverview",
|
18443
18442
|
data() {
|
18444
18443
|
return {
|
@@ -18449,28 +18448,28 @@ const $x = /* @__PURE__ */ V(Yx, [["render", Xx]]), e_ = {
|
|
18449
18448
|
listOfSiteLinksData: Wg
|
18450
18449
|
};
|
18451
18450
|
}
|
18452
|
-
},
|
18451
|
+
}, t1 = /* @__PURE__ */ a("h2", {
|
18453
18452
|
class: "headline-demopage",
|
18454
18453
|
id: "section-contact-information"
|
18455
18454
|
}, [
|
18456
18455
|
/* @__PURE__ */ a("span", null, "Contact Information")
|
18457
|
-
], -1),
|
18456
|
+
], -1), n1 = /* @__PURE__ */ a("h2", {
|
18458
18457
|
class: "headline-demopage",
|
18459
18458
|
id: "section-multiple-lists-of-links-downloads"
|
18460
18459
|
}, [
|
18461
18460
|
/* @__PURE__ */ a("span", null, "Multiple Lists of links")
|
18462
|
-
], -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", {
|
18463
18462
|
class: "headline-demopage",
|
18464
18463
|
id: "section-multiple-box-wrapper"
|
18465
18464
|
}, [
|
18466
18465
|
/* @__PURE__ */ a("span", null, "Multiple Box Wrapper")
|
18467
|
-
], -1),
|
18468
|
-
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) {
|
18469
18468
|
const d = $x, c = yo, u = Jx, g = zx;
|
18470
18469
|
return l(), r(S, null, [
|
18471
18470
|
h(c, null, {
|
18472
18471
|
default: k(() => [
|
18473
|
-
|
18472
|
+
t1,
|
18474
18473
|
h(d, {
|
18475
18474
|
cmdBasicForm: e.basicForm,
|
18476
18475
|
cmdAddressData: {},
|
@@ -18486,44 +18485,44 @@ function c_(e, n, t, s, i, o) {
|
|
18486
18485
|
}),
|
18487
18486
|
h(c, null, {
|
18488
18487
|
default: k(() => [
|
18489
|
-
|
18490
|
-
|
18488
|
+
n1,
|
18489
|
+
i1,
|
18491
18490
|
h(u, { segments: i.listOfDownloadsData }, null, 8, ["segments"]),
|
18492
|
-
|
18493
|
-
|
18491
|
+
o1,
|
18492
|
+
l1,
|
18494
18493
|
h(u, { segments: i.listOfSiteLinksData }, null, 8, ["segments"])
|
18495
18494
|
]),
|
18496
18495
|
_: 1
|
18497
18496
|
}),
|
18498
18497
|
h(c, null, {
|
18499
18498
|
default: k(() => [
|
18500
|
-
|
18501
|
-
|
18499
|
+
s1,
|
18500
|
+
a1,
|
18502
18501
|
h(g, { segments: i.faqsData }, null, 8, ["segments"]),
|
18503
|
-
|
18504
|
-
|
18502
|
+
r1,
|
18503
|
+
d1,
|
18505
18504
|
h(g, { segments: i.boxesTeamOverviewData }, null, 8, ["segments"])
|
18506
18505
|
]),
|
18507
18506
|
_: 1
|
18508
18507
|
})
|
18509
18508
|
], 64);
|
18510
18509
|
}
|
18511
|
-
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 = {
|
18512
18511
|
prepublishOnly: "npm run build-lib",
|
18513
18512
|
dev: "vite",
|
18514
18513
|
build: "vite build",
|
18515
18514
|
"build-lib": "vite build && gulp",
|
18516
18515
|
preview: "vite preview"
|
18517
|
-
},
|
18516
|
+
}, y1 = [
|
18518
18517
|
"dist",
|
18519
18518
|
"src"
|
18520
|
-
],
|
18519
|
+
], b1 = {
|
18521
18520
|
".": "./dist/comand-component-library.js",
|
18522
18521
|
"./css.js": "./src/css.js",
|
18523
18522
|
"./style.css": "./dist/style.css",
|
18524
18523
|
"./variables.scss": "./src/assets/styles/variables.scss",
|
18525
18524
|
"./export-data.js": "./src/assets/data/export-data.js"
|
18526
|
-
},
|
18525
|
+
}, x1 = {
|
18527
18526
|
"clickout-event": "^1.1.2",
|
18528
18527
|
"comand-frontend-framework": "^4.1.11",
|
18529
18528
|
"comand-ui-iconfonts": "^1.0.14",
|
@@ -18532,7 +18531,7 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
18532
18531
|
vue: "^3.2.31",
|
18533
18532
|
"vue-router": "^4.0.12",
|
18534
18533
|
vuex: "^4.0.2"
|
18535
|
-
},
|
18534
|
+
}, _1 = {
|
18536
18535
|
"@iconify/vue": "^4.0.0",
|
18537
18536
|
"@vitejs/plugin-vue": "^5.1.1",
|
18538
18537
|
"@vue/test-utils": "^2.0.0-0",
|
@@ -18542,19 +18541,19 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
18542
18541
|
"unplugin-vue-components": "^0.24.0",
|
18543
18542
|
vite: "^5.4.11",
|
18544
18543
|
"vue-jest": "^5.0.0-0"
|
18545
|
-
},
|
18546
|
-
name:
|
18547
|
-
version:
|
18548
|
-
license:
|
18549
|
-
author:
|
18544
|
+
}, C1 = {
|
18545
|
+
name: u1,
|
18546
|
+
version: m1,
|
18547
|
+
license: h1,
|
18548
|
+
author: p1,
|
18550
18549
|
private: !1,
|
18551
|
-
type:
|
18552
|
-
scripts:
|
18553
|
-
files:
|
18554
|
-
exports:
|
18555
|
-
dependencies:
|
18556
|
-
devDependencies:
|
18557
|
-
},
|
18550
|
+
type: f1,
|
18551
|
+
scripts: g1,
|
18552
|
+
files: y1,
|
18553
|
+
exports: b1,
|
18554
|
+
dependencies: x1,
|
18555
|
+
devDependencies: _1
|
18556
|
+
}, w1 = {
|
18558
18557
|
data() {
|
18559
18558
|
return {
|
18560
18559
|
cmdAddressDataSettingsData: {
|
@@ -19419,9 +19418,9 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19419
19418
|
}
|
19420
19419
|
};
|
19421
19420
|
}
|
19422
|
-
}, 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 = {
|
19423
19422
|
name: "App",
|
19424
|
-
mixins: [
|
19423
|
+
mixins: [w1],
|
19425
19424
|
components: {
|
19426
19425
|
PageOverview: bo
|
19427
19426
|
},
|
@@ -19546,9 +19545,9 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19546
19545
|
},
|
19547
19546
|
customRequirements: [
|
19548
19547
|
Es(),
|
19549
|
-
Ps(),
|
19550
|
-
As(),
|
19551
19548
|
Vs(),
|
19549
|
+
As(),
|
19550
|
+
Ps(),
|
19552
19551
|
Hs()
|
19553
19552
|
],
|
19554
19553
|
openLeftSidebar: !0,
|
@@ -19581,11 +19580,11 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19581
19580
|
slideshowData: vg,
|
19582
19581
|
socialNetworksData: Og,
|
19583
19582
|
tableDataSmall: qg,
|
19584
|
-
tableDataLarge:
|
19583
|
+
tableDataLarge: Pg,
|
19585
19584
|
tabsData: Rg,
|
19586
19585
|
thumbnailScrollerImagesData: Ng,
|
19587
19586
|
thumbnailScrollerTextData: Ug,
|
19588
|
-
packageJson:
|
19587
|
+
packageJson: C1
|
19589
19588
|
};
|
19590
19589
|
},
|
19591
19590
|
computed: {
|
@@ -19783,39 +19782,39 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19783
19782
|
});
|
19784
19783
|
}
|
19785
19784
|
}
|
19786
|
-
},
|
19787
|
-
|
19788
|
-
|
19789
|
-
|
19790
|
-
|
19791
|
-
|
19792
|
-
],
|
19793
|
-
|
19794
|
-
],
|
19795
|
-
|
19796
|
-
],
|
19797
|
-
|
19798
|
-
],
|
19799
|
-
|
19800
|
-
],
|
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_ = {
|
19801
19800
|
key: 1,
|
19802
19801
|
id: "content"
|
19803
|
-
},
|
19802
|
+
}, l_ = /* @__PURE__ */ a("h1", { class: "headline-demopage" }, "Components Overview", -1), s_ = {
|
19804
19803
|
class: "headline-demopage",
|
19805
19804
|
id: "section-address-data"
|
19806
|
-
},
|
19805
|
+
}, a_ = /* @__PURE__ */ a("span", null, "Address Data", -1), r_ = { class: "flex-container" }, d_ = /* @__PURE__ */ a("h2", {
|
19807
19806
|
class: "headline-demopage",
|
19808
19807
|
id: "section-advanced-form-elements"
|
19809
|
-
}, "Advanced Form Elements", -1),
|
19808
|
+
}, "Advanced Form Elements", -1), c_ = /* @__PURE__ */ a("h3", null, [
|
19810
19809
|
/* @__PURE__ */ a("span", null, "Form elements status:")
|
19811
|
-
], -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_ = {
|
19812
19811
|
class: "inline",
|
19813
19812
|
for: "range-value"
|
19814
|
-
},
|
19813
|
+
}, P_ = /* @__PURE__ */ a("span", { class: "label-text" }, [
|
19815
19814
|
/* @__PURE__ */ a("span", null, "Range Value:")
|
19816
|
-
], -1),
|
19815
|
+
], -1), V_ = ["disabled"], A_ = { for: "range-slider" }, E_ = /* @__PURE__ */ a("span", { class: "label-text hidden" }, [
|
19817
19816
|
/* @__PURE__ */ a("span", null, "Range Value")
|
19818
|
-
], -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 = {
|
19819
19818
|
class: "headline-demopage",
|
19820
19819
|
id: "section-input-group"
|
19821
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 = [
|
@@ -19827,9 +19826,9 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19827
19826
|
}, vC = /* @__PURE__ */ a("span", null, "Bank Account Data", -1), TC = {
|
19828
19827
|
class: "headline-demopage",
|
19829
19828
|
id: "section-basic-form"
|
19830
|
-
}, 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, [
|
19831
19830
|
/* @__PURE__ */ a("strong", null, "Header, Content/Body and Footer of this box are given by slots.")
|
19832
|
-
], -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, [
|
19833
19832
|
/* @__PURE__ */ a("strong", null, "Header, Content/Body and Footer of this box are given by slots.")
|
19834
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", {
|
19835
19834
|
src: xo,
|
@@ -19863,27 +19862,27 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19863
19862
|
class: "headline-demopage",
|
19864
19863
|
id: "section-fancybox"
|
19865
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", {
|
19866
|
-
src:
|
19865
|
+
src: k1,
|
19867
19866
|
alt: "Alternative text"
|
19868
19867
|
}, null, -1), Sw = [
|
19869
19868
|
Tw
|
19870
19869
|
], Ow = /* @__PURE__ */ a("h3", null, "FancyBox with large image given by property", -1), Lw = /* @__PURE__ */ a("img", {
|
19871
|
-
src:
|
19870
|
+
src: v1,
|
19872
19871
|
alt: "Alternative text"
|
19873
19872
|
}, null, -1), Iw = [
|
19874
19873
|
Lw
|
19875
19874
|
], Bw = /* @__PURE__ */ a("h3", null, "FancyBox with image as object give by property", -1), Fw = /* @__PURE__ */ a("img", {
|
19876
|
-
src:
|
19875
|
+
src: T1,
|
19877
19876
|
alt: "Alternative text"
|
19878
19877
|
}, null, -1), Dw = [
|
19879
19878
|
Fw
|
19880
19879
|
], Mw = /* @__PURE__ */ a("h2", {
|
19881
19880
|
class: "headline-demopage",
|
19882
19881
|
id: "section-google-maps"
|
19883
|
-
}, "Google Maps™", -1),
|
19882
|
+
}, "Google Maps™", -1), Pw = {
|
19884
19883
|
class: "headline-demopage",
|
19885
19884
|
id: "section-headlines"
|
19886
|
-
},
|
19885
|
+
}, Vw = /* @__PURE__ */ a("span", null, "Headlines", -1), Aw = /* @__PURE__ */ a("br", null, null, -1), Ew = /* @__PURE__ */ a("h2", {
|
19887
19886
|
class: "headline-demopage",
|
19888
19887
|
id: "section-icons"
|
19889
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 = {
|
@@ -19967,7 +19966,7 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19967
19966
|
], -1), Mk = {
|
19968
19967
|
class: "headline-demopage",
|
19969
19968
|
id: "section-tables"
|
19970
|
-
},
|
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 = {
|
19971
19970
|
class: "headline-demopage",
|
19972
19971
|
id: "section-tabs"
|
19973
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 = {
|
@@ -19993,12 +19992,12 @@ const bo = /* @__PURE__ */ V(e_, [["render", c_]]), u_ = "comand-component-libra
|
|
19993
19992
|
id: "content"
|
19994
19993
|
}, uv = /* @__PURE__ */ a("h1", { class: "headline-demopage" }, "Page Overview", -1);
|
19995
19994
|
function mv(e, n, t, s, i, o) {
|
19996
|
-
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");
|
19997
19996
|
return X((l(), r("div", {
|
19998
19997
|
class: "page-wrapper",
|
19999
19998
|
id: o.templateId
|
20000
19999
|
}, [
|
20001
|
-
|
20000
|
+
L1,
|
20002
20001
|
i.showLeftSidebar ? (l(), w(u, {
|
20003
20002
|
key: 0,
|
20004
20003
|
cmdHeadline: { headlineText: "Site Settings", headlineLevel: 3, textAlign: "center" },
|
@@ -20022,19 +20021,19 @@ function mv(e, n, t, s, i, o) {
|
|
20022
20021
|
onToggleCollapse: (z) => x.boxToggled(0, z)
|
20023
20022
|
}, {
|
20024
20023
|
body: k(() => [
|
20025
|
-
a("label",
|
20026
|
-
|
20024
|
+
a("label", I1, [
|
20025
|
+
B1,
|
20027
20026
|
X(a("select", {
|
20028
20027
|
id: "select-template",
|
20029
20028
|
"onUpdate:modelValue": n[0] || (n[0] = (z) => i.selectedTemplate = z)
|
20030
|
-
},
|
20031
|
-
[
|
20029
|
+
}, A1, 512), [
|
20030
|
+
[Vo, i.selectedTemplate]
|
20032
20031
|
])
|
20033
20032
|
]),
|
20034
20033
|
a("div", null, [
|
20035
|
-
|
20036
|
-
a("div",
|
20037
|
-
a("label",
|
20034
|
+
E1,
|
20035
|
+
a("div", H1, [
|
20036
|
+
a("label", q1, [
|
20038
20037
|
X(a("input", {
|
20039
20038
|
type: "radio",
|
20040
20039
|
id: "default-color-scheme",
|
@@ -20044,9 +20043,9 @@ function mv(e, n, t, s, i, o) {
|
|
20044
20043
|
}, null, 512), [
|
20045
20044
|
[Dt, i.colorScheme]
|
20046
20045
|
]),
|
20047
|
-
|
20046
|
+
R1
|
20048
20047
|
]),
|
20049
|
-
a("label",
|
20048
|
+
a("label", N1, [
|
20050
20049
|
X(a("input", {
|
20051
20050
|
type: "radio",
|
20052
20051
|
id: "light-mode",
|
@@ -20056,9 +20055,9 @@ function mv(e, n, t, s, i, o) {
|
|
20056
20055
|
}, null, 512), [
|
20057
20056
|
[Dt, i.colorScheme]
|
20058
20057
|
]),
|
20059
|
-
|
20058
|
+
U1
|
20060
20059
|
]),
|
20061
|
-
a("label",
|
20060
|
+
a("label", j1, [
|
20062
20061
|
X(a("input", {
|
20063
20062
|
type: "radio",
|
20064
20063
|
id: "dark-mode",
|
@@ -20068,7 +20067,7 @@ function mv(e, n, t, s, i, o) {
|
|
20068
20067
|
}, null, 512), [
|
20069
20068
|
[Dt, i.colorScheme]
|
20070
20069
|
]),
|
20071
|
-
|
20070
|
+
z1
|
20072
20071
|
])
|
20073
20072
|
])
|
20074
20073
|
])
|
@@ -20093,7 +20092,7 @@ function mv(e, n, t, s, i, o) {
|
|
20093
20092
|
href: o.sectionName(z),
|
20094
20093
|
onClick: (yv) => o.updateSettingsSidebar(o.componentNameWithPrefix(z)),
|
20095
20094
|
title: "Go to component"
|
20096
|
-
}, y(o.readableComponentName(z)), 9,
|
20095
|
+
}, y(o.readableComponentName(z)), 9, G1)
|
20097
20096
|
], 2))), 128))
|
20098
20097
|
])
|
20099
20098
|
]),
|
@@ -20155,37 +20154,37 @@ function mv(e, n, t, s, i, o) {
|
|
20155
20154
|
]),
|
20156
20155
|
_: 1
|
20157
20156
|
}, 8, ["openBoxesByDefault"]),
|
20158
|
-
a("dl",
|
20159
|
-
|
20157
|
+
a("dl", W1, [
|
20158
|
+
K1,
|
20160
20159
|
a("dd", null, y(i.packageJson.dependencies["comand-frontend-framework"].replace("^", "")), 1),
|
20161
|
-
|
20160
|
+
J1,
|
20162
20161
|
a("dd", null, y(i.packageJson.version), 1)
|
20163
20162
|
])
|
20164
20163
|
]),
|
20165
20164
|
closed: k(() => [
|
20166
|
-
a("div",
|
20165
|
+
a("div", Y1, [
|
20167
20166
|
a("a", {
|
20168
20167
|
href: "#",
|
20169
20168
|
class: "button primary",
|
20170
20169
|
title: "Open Template Selection",
|
20171
20170
|
onClick: n[9] || (n[9] = T((x) => o.openBox(0), ["prevent"]))
|
20172
|
-
},
|
20171
|
+
}, Q1),
|
20173
20172
|
a("a", {
|
20174
20173
|
href: "#",
|
20175
20174
|
class: "button primary",
|
20176
20175
|
title: "Open Components Overview",
|
20177
20176
|
onClick: n[10] || (n[10] = T((x) => o.openBox(1), ["prevent"]))
|
20178
|
-
}, $
|
20177
|
+
}, $1),
|
20179
20178
|
a("a", {
|
20180
20179
|
href: "#",
|
20181
20180
|
class: "button primary",
|
20182
20181
|
title: "Open Page-Templates",
|
20183
20182
|
onClick: n[11] || (n[11] = T((x) => o.openBox(2), ["prevent"]))
|
20184
|
-
},
|
20183
|
+
}, t_),
|
20185
20184
|
a("a", {
|
20186
20185
|
href: "#",
|
20187
20186
|
onClick: n[12] || (n[12] = T((x) => i.showLeftSidebar = !1, ["prevent"]))
|
20188
|
-
},
|
20187
|
+
}, i_)
|
20189
20188
|
])
|
20190
20189
|
]),
|
20191
20190
|
_: 1
|
@@ -20203,17 +20202,17 @@ function mv(e, n, t, s, i, o) {
|
|
20203
20202
|
]),
|
20204
20203
|
_: 1
|
20205
20204
|
}),
|
20206
|
-
i.componentView ? (l(), r("main",
|
20205
|
+
i.componentView ? (l(), r("main", o_, [
|
20207
20206
|
h(C, null, {
|
20208
20207
|
default: k(() => [
|
20209
|
-
|
20208
|
+
l_
|
20210
20209
|
]),
|
20211
20210
|
_: 1
|
20212
20211
|
}),
|
20213
20212
|
h(C, null, {
|
20214
20213
|
default: k(() => [
|
20215
|
-
a("h2",
|
20216
|
-
|
20214
|
+
a("h2", s_, [
|
20215
|
+
a_,
|
20217
20216
|
a("a", {
|
20218
20217
|
href: "#",
|
20219
20218
|
class: "button small icon-cog",
|
@@ -20221,7 +20220,7 @@ function mv(e, n, t, s, i, o) {
|
|
20221
20220
|
onClick: n[13] || (n[13] = T((x) => o.openSettingsSidebar("CmdAddressData"), ["prevent"]))
|
20222
20221
|
})
|
20223
20222
|
]),
|
20224
|
-
a("div",
|
20223
|
+
a("div", r_, [
|
20225
20224
|
h(b, I({
|
20226
20225
|
ref: "CmdAddressData",
|
20227
20226
|
addressData: i.addressData
|
@@ -20232,10 +20231,10 @@ function mv(e, n, t, s, i, o) {
|
|
20232
20231
|
}),
|
20233
20232
|
h(C, null, {
|
20234
20233
|
default: k(() => [
|
20235
|
-
|
20236
|
-
|
20237
|
-
a("div",
|
20238
|
-
a("ul",
|
20234
|
+
d_,
|
20235
|
+
c_,
|
20236
|
+
a("div", u_, [
|
20237
|
+
a("ul", m_, [
|
20239
20238
|
a("li", null, [
|
20240
20239
|
a("a", {
|
20241
20240
|
href: "#",
|
@@ -20244,7 +20243,7 @@ function mv(e, n, t, s, i, o) {
|
|
20244
20243
|
id: "status-default"
|
20245
20244
|
}, " Default ", 2)
|
20246
20245
|
]),
|
20247
|
-
a("li",
|
20246
|
+
a("li", h_, [
|
20248
20247
|
a("a", {
|
20249
20248
|
href: "#",
|
20250
20249
|
onClick: n[15] || (n[15] = T((x) => o.setStatus("error", !1), ["prevent"])),
|
@@ -20297,10 +20296,10 @@ function mv(e, n, t, s, i, o) {
|
|
20297
20296
|
novalidate: "novalidate"
|
20298
20297
|
}, {
|
20299
20298
|
default: k(() => [
|
20300
|
-
a("fieldset",
|
20301
|
-
|
20302
|
-
a("h2",
|
20303
|
-
|
20299
|
+
a("fieldset", p_, [
|
20300
|
+
f_,
|
20301
|
+
a("h2", g_, [
|
20302
|
+
y_,
|
20304
20303
|
a("a", {
|
20305
20304
|
href: "#",
|
20306
20305
|
class: "button small icon-cog",
|
@@ -20312,7 +20311,7 @@ function mv(e, n, t, s, i, o) {
|
|
20312
20311
|
status: i.validationStatus,
|
20313
20312
|
disabled: i.disabledStatus
|
20314
20313
|
}), null, 16, ["status", "disabled"]),
|
20315
|
-
a("div",
|
20314
|
+
a("div", b_, [
|
20316
20315
|
h(v, {
|
20317
20316
|
labelText: "Input for datalist:",
|
20318
20317
|
element: "input",
|
@@ -20324,7 +20323,7 @@ function mv(e, n, t, s, i, o) {
|
|
20324
20323
|
tooltipText: "This is a tooltip"
|
20325
20324
|
}, null, 8, ["status", "disabled", "datalist"])
|
20326
20325
|
]),
|
20327
|
-
a("div",
|
20326
|
+
a("div", x_, [
|
20328
20327
|
h(v, I({
|
20329
20328
|
labelText: "Input (type search (without search-button)):",
|
20330
20329
|
element: "input",
|
@@ -20346,8 +20345,8 @@ function mv(e, n, t, s, i, o) {
|
|
20346
20345
|
tooltipText: "This is a tooltip"
|
20347
20346
|
}, { useCustomTooltip: !1 }), null, 16, ["status", "disabled"])
|
20348
20347
|
]),
|
20349
|
-
|
20350
|
-
a("div",
|
20348
|
+
__,
|
20349
|
+
a("div", C_, [
|
20351
20350
|
h(v, {
|
20352
20351
|
element: "input",
|
20353
20352
|
type: "text",
|
@@ -20361,7 +20360,7 @@ function mv(e, n, t, s, i, o) {
|
|
20361
20360
|
disabled: i.disabledStatus
|
20362
20361
|
}, {
|
20363
20362
|
labeltext: k(() => [
|
20364
|
-
|
20363
|
+
w_
|
20365
20364
|
]),
|
20366
20365
|
_: 1
|
20367
20366
|
}, 8, ["modelValue", "status", "disabled"]),
|
@@ -20393,7 +20392,7 @@ function mv(e, n, t, s, i, o) {
|
|
20393
20392
|
disabled: i.disabledStatus
|
20394
20393
|
}, null, 8, ["modelValue", "status", "disabled"])
|
20395
20394
|
]),
|
20396
|
-
a("div",
|
20395
|
+
a("div", k_, [
|
20397
20396
|
h(v, {
|
20398
20397
|
labelText: "Label for emailfield (with icon):",
|
20399
20398
|
element: "input",
|
@@ -20504,9 +20503,9 @@ function mv(e, n, t, s, i, o) {
|
|
20504
20503
|
status: i.validationStatus,
|
20505
20504
|
disabled: i.disabledStatus
|
20506
20505
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
20507
|
-
|
20508
|
-
a("h3",
|
20509
|
-
|
20506
|
+
v_,
|
20507
|
+
a("h3", T_, [
|
20508
|
+
S_,
|
20510
20509
|
a("a", {
|
20511
20510
|
href: "#",
|
20512
20511
|
class: "button small icon-cog",
|
@@ -20514,7 +20513,7 @@ function mv(e, n, t, s, i, o) {
|
|
20514
20513
|
onClick: n[33] || (n[33] = T((x) => o.openSettingsSidebar("CmdFakeSelect"), ["prevent"]))
|
20515
20514
|
})
|
20516
20515
|
]),
|
20517
|
-
a("div",
|
20516
|
+
a("div", O_, [
|
20518
20517
|
h(B, I({ ref: "CmdFakeSelect" }, e.cmdFakeSelectSettingsData, {
|
20519
20518
|
selectData: i.fakeSelectOptionsData,
|
20520
20519
|
modelValue: i.fakeSelectDefault,
|
@@ -20566,21 +20565,21 @@ function mv(e, n, t, s, i, o) {
|
|
20566
20565
|
type: "color"
|
20567
20566
|
}, null, 8, ["status", "disabled", "selectData", "modelValue"])
|
20568
20567
|
]),
|
20569
|
-
|
20570
|
-
|
20568
|
+
L_,
|
20569
|
+
I_,
|
20571
20570
|
h(F, {
|
20572
20571
|
labelText: "Progress Bar (with optional output):",
|
20573
20572
|
id: "progress-bar2",
|
20574
20573
|
max: "100"
|
20575
20574
|
}),
|
20576
|
-
|
20575
|
+
B_,
|
20577
20576
|
a("div", {
|
20578
20577
|
class: _(["label", i.validationStatus])
|
20579
20578
|
}, [
|
20580
|
-
|
20581
|
-
a("span",
|
20582
|
-
a("label",
|
20583
|
-
|
20579
|
+
F_,
|
20580
|
+
a("span", D_, [
|
20581
|
+
a("label", M_, [
|
20582
|
+
P_,
|
20584
20583
|
X(a("input", {
|
20585
20584
|
type: "number",
|
20586
20585
|
class: _(i.validationStatus),
|
@@ -20589,12 +20588,12 @@ function mv(e, n, t, s, i, o) {
|
|
20589
20588
|
min: "0",
|
20590
20589
|
max: "100",
|
20591
20590
|
id: "range-value"
|
20592
|
-
}, null, 10,
|
20591
|
+
}, null, 10, V_), [
|
20593
20592
|
[Nt, i.rangeValue]
|
20594
20593
|
])
|
20595
20594
|
]),
|
20596
|
-
a("label",
|
20597
|
-
|
20595
|
+
a("label", A_, [
|
20596
|
+
E_,
|
20598
20597
|
X(a("input", {
|
20599
20598
|
type: "range",
|
20600
20599
|
class: "range-slider",
|
@@ -20603,15 +20602,15 @@ function mv(e, n, t, s, i, o) {
|
|
20603
20602
|
disabled: i.disabledStatus,
|
20604
20603
|
min: "0",
|
20605
20604
|
max: "100"
|
20606
|
-
}, null, 8,
|
20605
|
+
}, null, 8, H_), [
|
20607
20606
|
[Nt, i.rangeValue]
|
20608
20607
|
])
|
20609
20608
|
])
|
20610
20609
|
])
|
20611
20610
|
], 2),
|
20612
|
-
|
20613
|
-
|
20614
|
-
|
20611
|
+
q_,
|
20612
|
+
R_,
|
20613
|
+
N_,
|
20615
20614
|
h(v, {
|
20616
20615
|
element: "input",
|
20617
20616
|
type: "checkbox",
|
@@ -20636,7 +20635,7 @@ function mv(e, n, t, s, i, o) {
|
|
20636
20635
|
status: i.validationStatus,
|
20637
20636
|
disabled: i.disabledStatus
|
20638
20637
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
20639
|
-
|
20638
|
+
U_,
|
20640
20639
|
h(v, {
|
20641
20640
|
element: "input",
|
20642
20641
|
type: "checkbox",
|
@@ -20711,16 +20710,16 @@ function mv(e, n, t, s, i, o) {
|
|
20711
20710
|
}, null, 8, ["modelValue", "status", "disabled"]),
|
20712
20711
|
a("p", null, [
|
20713
20712
|
E(" checkbox (required) with boolean: " + y(i.checkboxRequiredValue), 1),
|
20714
|
-
|
20713
|
+
j_,
|
20715
20714
|
E(" checkbox with boolean: " + y(i.checkboxValue), 1),
|
20716
|
-
|
20715
|
+
z_,
|
20717
20716
|
E(" checkboxes with values: " + y(i.checkboxValues), 1)
|
20718
20717
|
]),
|
20719
|
-
|
20720
|
-
|
20721
|
-
a("div",
|
20722
|
-
|
20723
|
-
a("div",
|
20718
|
+
G_,
|
20719
|
+
W_,
|
20720
|
+
a("div", K_, [
|
20721
|
+
J_,
|
20722
|
+
a("div", Y_, [
|
20724
20723
|
h(v, {
|
20725
20724
|
element: "input",
|
20726
20725
|
labelText: "Label for checkbox with boolean",
|
@@ -20765,16 +20764,16 @@ function mv(e, n, t, s, i, o) {
|
|
20765
20764
|
}, {
|
20766
20765
|
labeltext: k(() => [
|
20767
20766
|
E(" Labeltext with "),
|
20768
|
-
|
20767
|
+
Z_,
|
20769
20768
|
E(" given by slot ")
|
20770
20769
|
]),
|
20771
20770
|
_: 1
|
20772
20771
|
}, 8, ["modelValue", "status", "disabled"])
|
20773
20772
|
])
|
20774
20773
|
]),
|
20775
|
-
|
20776
|
-
a("div",
|
20777
|
-
$
|
20774
|
+
Q_,
|
20775
|
+
a("div", X_, [
|
20776
|
+
$_,
|
20778
20777
|
a("div", eC, [
|
20779
20778
|
h(v, {
|
20780
20779
|
element: "input",
|
@@ -21038,10 +21037,9 @@ function mv(e, n, t, s, i, o) {
|
|
21038
21037
|
onClick: n[67] || (n[67] = T((x) => o.openSettingsSidebar("CmdBasicForm"), ["prevent"]))
|
21039
21038
|
})
|
21040
21039
|
]),
|
21041
|
-
h(
|
21040
|
+
h(V, {
|
21042
21041
|
ref: "CmdBasicForm",
|
21043
|
-
|
21044
|
-
onSubmit: o.sendBasicForm,
|
21042
|
+
cmdForm: { useValidation: !0 },
|
21045
21043
|
userMessage: {
|
21046
21044
|
required: !1,
|
21047
21045
|
element: "textarea",
|
@@ -21050,7 +21048,7 @@ function mv(e, n, t, s, i, o) {
|
|
21050
21048
|
submitButton: {
|
21051
21049
|
text: "Send request"
|
21052
21050
|
}
|
21053
|
-
}, null,
|
21051
|
+
}, null, 512),
|
21054
21052
|
a("dl", null, [
|
21055
21053
|
OC,
|
21056
21054
|
a("dd", null, y(i.basicFormData.originalEvent), 1),
|
@@ -21083,8 +21081,8 @@ function mv(e, n, t, s, i, o) {
|
|
21083
21081
|
]),
|
21084
21082
|
body: k(() => [
|
21085
21083
|
MC,
|
21086
|
-
|
21087
|
-
|
21084
|
+
PC,
|
21085
|
+
VC
|
21088
21086
|
]),
|
21089
21087
|
footer: k(() => [
|
21090
21088
|
AC
|
@@ -21541,8 +21539,8 @@ function mv(e, n, t, s, i, o) {
|
|
21541
21539
|
}),
|
21542
21540
|
h(C, null, {
|
21543
21541
|
default: k(() => [
|
21544
|
-
a("h2",
|
21545
|
-
|
21542
|
+
a("h2", Pw, [
|
21543
|
+
Vw,
|
21546
21544
|
a("a", {
|
21547
21545
|
href: "#",
|
21548
21546
|
class: "button small icon-cog",
|
@@ -22044,7 +22042,7 @@ function mv(e, n, t, s, i, o) {
|
|
22044
22042
|
h(C, null, {
|
22045
22043
|
default: k(() => [
|
22046
22044
|
a("h2", Mk, [
|
22047
|
-
|
22045
|
+
Pk,
|
22048
22046
|
a("a", {
|
22049
22047
|
href: "#",
|
22050
22048
|
class: "button small icon-cog",
|
@@ -22052,7 +22050,7 @@ function mv(e, n, t, s, i, o) {
|
|
22052
22050
|
onClick: n[110] || (n[110] = T((x) => o.openSettingsSidebar("CmdTable"), ["prevent"]))
|
22053
22051
|
})
|
22054
22052
|
]),
|
22055
|
-
|
22053
|
+
Vk,
|
22056
22054
|
h(ze, I({ ref: "CmdTable" }, e.cmdTableSettingsData, { "table-data": i.tableDataLarge }), null, 16, ["table-data"]),
|
22057
22055
|
Ak,
|
22058
22056
|
h(ze, {
|
@@ -22159,7 +22157,7 @@ function mv(e, n, t, s, i, o) {
|
|
22159
22157
|
})
|
22160
22158
|
]),
|
22161
22159
|
a("div", Zk, [
|
22162
|
-
h(
|
22160
|
+
h(W, I({ ref: "CmdThumbnailScroller" }, e.cmdThumbnailScrollerSettingsData, { thumbnailScrollerItems: o.thumbnailScrollerData }), null, 16, ["thumbnailScrollerItems"])
|
22163
22161
|
])
|
22164
22162
|
]),
|
22165
22163
|
_: 1
|
@@ -22337,11 +22335,11 @@ function mv(e, n, t, s, i, o) {
|
|
22337
22335
|
]),
|
22338
22336
|
_: 1
|
22339
22337
|
}, 8, ["openSidebar", "onToggleSidebar"])) : m("", !0)
|
22340
|
-
], 8,
|
22338
|
+
], 8, O1)), [
|
22341
22339
|
[Lo]
|
22342
22340
|
]);
|
22343
22341
|
}
|
22344
|
-
const _v = /* @__PURE__ */
|
22342
|
+
const _v = /* @__PURE__ */ P(S1, [["render", mv]]), Cv = {
|
22345
22343
|
// el = real dom-element
|
22346
22344
|
mounted(e) {
|
22347
22345
|
if (e.tagName === "INPUT" || e.tagName === "SELECT" || e.tagName === "TEXTAREA" || e.tagName === "A")
|
@@ -22453,8 +22451,8 @@ export {
|
|
22453
22451
|
Di as CmdBasicForm,
|
22454
22452
|
bn as CmdBox,
|
22455
22453
|
Mi as CmdBoxWrapper,
|
22456
|
-
|
22457
|
-
|
22454
|
+
Pi as CmdBreadcrumbs,
|
22455
|
+
Vi as CmdCompanyLogo,
|
22458
22456
|
gu as CmdContainer,
|
22459
22457
|
Eu as CmdCookieDisclaimer,
|
22460
22458
|
ju as CmdCopyrightInformation,
|
@@ -22465,7 +22463,7 @@ export {
|
|
22465
22463
|
Ei as CmdFormFilters,
|
22466
22464
|
Ri as CmdGoogleMaps,
|
22467
22465
|
Y as CmdHeadline,
|
22468
|
-
|
22466
|
+
K as CmdIcon,
|
22469
22467
|
Ce as CmdImage,
|
22470
22468
|
Dm as CmdImageGallery,
|
22471
22469
|
qm as CmdImageZoom,
|