comand-component-library 4.2.33 → 4.2.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,29 +12,29 @@ const $e = /^[a-z0-9]+(-[a-z0-9]+)*$/, wt = (e, t, n, s = "") => {
|
|
12
12
|
if (i.length > 3 || !i.length)
|
13
13
|
return null;
|
14
14
|
if (i.length > 1) {
|
15
|
-
const
|
15
|
+
const c = i.pop(), u = i.pop(), g = {
|
16
16
|
provider: i.length > 0 ? i[0] : s,
|
17
|
-
prefix:
|
18
|
-
name:
|
17
|
+
prefix: u,
|
18
|
+
name: c
|
19
19
|
};
|
20
20
|
return t && !ft(g) ? null : g;
|
21
21
|
}
|
22
22
|
const l = i[0], d = l.split("-");
|
23
23
|
if (d.length > 1) {
|
24
|
-
const
|
24
|
+
const c = {
|
25
25
|
provider: s,
|
26
26
|
prefix: d.shift(),
|
27
27
|
name: d.join("-")
|
28
28
|
};
|
29
|
-
return t && !ft(
|
29
|
+
return t && !ft(c) ? null : c;
|
30
30
|
}
|
31
31
|
if (n && s === "") {
|
32
|
-
const
|
32
|
+
const c = {
|
33
33
|
provider: s,
|
34
34
|
prefix: "",
|
35
35
|
name: l
|
36
36
|
};
|
37
|
-
return t && !ft(
|
37
|
+
return t && !ft(c, n) ? null : c;
|
38
38
|
}
|
39
39
|
return null;
|
40
40
|
}, ft = (e, t) => e ? !!((e.provider === "" || e.provider.match($e)) && (t && e.prefix === "" || e.prefix.match($e)) && e.name.match($e)) : !1, gi = Object.freeze(
|
@@ -75,8 +75,8 @@ function Jl(e, t) {
|
|
75
75
|
return i[d] = [];
|
76
76
|
if (!(d in i)) {
|
77
77
|
i[d] = null;
|
78
|
-
const
|
79
|
-
|
78
|
+
const c = s[d] && s[d].parent, u = c && l(c);
|
79
|
+
u && (i[d] = [c].concat(u));
|
80
80
|
}
|
81
81
|
return i[d];
|
82
82
|
}
|
@@ -85,9 +85,9 @@ function Jl(e, t) {
|
|
85
85
|
function Zl(e, t, n) {
|
86
86
|
const s = e.icons, i = e.aliases || {};
|
87
87
|
let l = {};
|
88
|
-
function d(
|
88
|
+
function d(c) {
|
89
89
|
l = Dn(
|
90
|
-
s[
|
90
|
+
s[c] || i[c],
|
91
91
|
l
|
92
92
|
);
|
93
93
|
}
|
@@ -229,8 +229,8 @@ function Fn(e, t, n) {
|
|
229
229
|
let l = s.shift(), d = io.test(l);
|
230
230
|
for (; ; ) {
|
231
231
|
if (d) {
|
232
|
-
const
|
233
|
-
isNaN(
|
232
|
+
const c = parseFloat(l);
|
233
|
+
isNaN(c) ? i.push(l) : i.push(Math.ceil(c * t * n) / n);
|
234
234
|
} else
|
235
235
|
i.push(l);
|
236
236
|
if (l = s.shift(), l === void 0)
|
@@ -260,11 +260,11 @@ function lo(e, t) {
|
|
260
260
|
), O.push("scale(-1 1)"), i.top = i.left = 0) : M && (O.push(
|
261
261
|
"translate(" + (0 - i.left).toString() + " " + (i.height + i.top).toString() + ")"
|
262
262
|
), O.push("scale(1 -1)"), i.top = i.left = 0);
|
263
|
-
let
|
263
|
+
let E;
|
264
264
|
switch (B < 0 && (B -= Math.floor(B / 4) * 4), B = B % 4, B) {
|
265
265
|
case 1:
|
266
|
-
|
267
|
-
"rotate(90 " +
|
266
|
+
E = i.height / 2 + i.top, O.unshift(
|
267
|
+
"rotate(90 " + E.toString() + " " + E.toString() + ")"
|
268
268
|
);
|
269
269
|
break;
|
270
270
|
case 2:
|
@@ -273,20 +273,20 @@ function lo(e, t) {
|
|
273
273
|
);
|
274
274
|
break;
|
275
275
|
case 3:
|
276
|
-
|
277
|
-
"rotate(-90 " +
|
276
|
+
E = i.width / 2 + i.left, O.unshift(
|
277
|
+
"rotate(-90 " + E.toString() + " " + E.toString() + ")"
|
278
278
|
);
|
279
279
|
break;
|
280
280
|
}
|
281
|
-
B % 2 === 1 && (i.left !== i.top && (
|
281
|
+
B % 2 === 1 && (i.left !== i.top && (E = i.left, i.left = i.top, i.top = E), i.width !== i.height && (E = i.width, i.width = i.height, i.height = E)), O.length && (l = '<g transform="' + O.join(" ") + '">' + l + "</g>");
|
282
282
|
});
|
283
|
-
const d = s.width,
|
283
|
+
const d = s.width, c = s.height, u = i.width, g = i.height;
|
284
284
|
let f, h;
|
285
|
-
return d === null ? (h =
|
285
|
+
return d === null ? (h = c === null ? "1em" : c === "auto" ? g : c, f = Fn(h, u / g)) : (f = d === "auto" ? u : d, h = c === null ? Fn(f, g / u) : c === "auto" ? g : c), {
|
286
286
|
attributes: {
|
287
287
|
width: f.toString(),
|
288
288
|
height: h.toString(),
|
289
|
-
viewBox: i.left.toString() + " " + i.top.toString() + " " +
|
289
|
+
viewBox: i.left.toString() + " " + i.top.toString() + " " + u.toString() + " " + g.toString()
|
290
290
|
},
|
291
291
|
body: l
|
292
292
|
};
|
@@ -382,14 +382,14 @@ const ho = (e, t, n) => {
|
|
382
382
|
provider: e,
|
383
383
|
prefix: t,
|
384
384
|
icons: []
|
385
|
-
},
|
386
|
-
return n.forEach((
|
387
|
-
|
385
|
+
}, c = 0;
|
386
|
+
return n.forEach((u, g) => {
|
387
|
+
c += u.length + 1, c >= i && g > 0 && (s.push(d), d = {
|
388
388
|
type: l,
|
389
389
|
provider: e,
|
390
390
|
prefix: t,
|
391
391
|
icons: []
|
392
|
-
},
|
392
|
+
}, c = u.length), d.icons.push(u);
|
393
393
|
}), s.push(d), s;
|
394
394
|
};
|
395
395
|
function go(e) {
|
@@ -408,10 +408,10 @@ const yo = (e, t, n) => {
|
|
408
408
|
let s = go(t.provider);
|
409
409
|
switch (t.type) {
|
410
410
|
case "icons": {
|
411
|
-
const l = t.prefix,
|
412
|
-
icons:
|
411
|
+
const l = t.prefix, c = t.icons.join(","), u = new URLSearchParams({
|
412
|
+
icons: c
|
413
413
|
});
|
414
|
-
s += l + ".json?" +
|
414
|
+
s += l + ".json?" + u.toString();
|
415
415
|
break;
|
416
416
|
}
|
417
417
|
case "custom": {
|
@@ -466,13 +466,13 @@ function xo(e) {
|
|
466
466
|
if (s.name === i.name && s.prefix === i.prefix && s.provider === i.provider)
|
467
467
|
return;
|
468
468
|
s = i;
|
469
|
-
const l = i.provider, d = i.prefix,
|
469
|
+
const l = i.provider, d = i.prefix, c = i.name, u = n[l] || (n[l] = /* @__PURE__ */ Object.create(null)), g = u[d] || (u[d] = Ee(l, d));
|
470
470
|
let f;
|
471
|
-
|
471
|
+
c in g.icons ? f = t.loaded : d === "" || g.missing.has(c) ? f = t.missing : f = t.pending;
|
472
472
|
const h = {
|
473
473
|
provider: l,
|
474
474
|
prefix: d,
|
475
|
-
name:
|
475
|
+
name: c
|
476
476
|
};
|
477
477
|
f.push(h);
|
478
478
|
}), t;
|
@@ -492,11 +492,11 @@ function Co(e) {
|
|
492
492
|
let n = !1;
|
493
493
|
const s = e.provider, i = e.prefix;
|
494
494
|
t.forEach((l) => {
|
495
|
-
const d = l.icons,
|
496
|
-
d.pending = d.pending.filter((
|
497
|
-
if (
|
495
|
+
const d = l.icons, c = d.pending.length;
|
496
|
+
d.pending = d.pending.filter((u) => {
|
497
|
+
if (u.prefix !== i)
|
498
498
|
return !0;
|
499
|
-
const g =
|
499
|
+
const g = u.name;
|
500
500
|
if (e.icons[g])
|
501
501
|
d.loaded.push({
|
502
502
|
provider: s,
|
@@ -512,7 +512,7 @@ function Co(e) {
|
|
512
512
|
else
|
513
513
|
return n = !0, !0;
|
514
514
|
return !1;
|
515
|
-
}), d.pending.length !==
|
515
|
+
}), d.pending.length !== c && (n || wi([e], l.id), l.callback(
|
516
516
|
d.loaded.slice(0),
|
517
517
|
d.missing.slice(0),
|
518
518
|
d.pending.slice(0),
|
@@ -563,14 +563,14 @@ function So(e, t, n, s) {
|
|
563
563
|
d = d.concat(V);
|
564
564
|
} else
|
565
565
|
d = e.resources.slice(l).concat(e.resources.slice(0, l));
|
566
|
-
const
|
567
|
-
let
|
566
|
+
const c = Date.now();
|
567
|
+
let u = "pending", g = 0, f, h = null, v = [], b = [];
|
568
568
|
typeof s == "function" && b.push(s);
|
569
569
|
function O() {
|
570
570
|
h && (clearTimeout(h), h = null);
|
571
571
|
}
|
572
572
|
function T() {
|
573
|
-
|
573
|
+
u === "pending" && (u = "aborted"), O(), v.forEach((V) => {
|
574
574
|
V.status === "pending" && (V.status = "aborted");
|
575
575
|
}), v = [];
|
576
576
|
}
|
@@ -579,17 +579,17 @@ function So(e, t, n, s) {
|
|
579
579
|
}
|
580
580
|
function B() {
|
581
581
|
return {
|
582
|
-
startTime:
|
582
|
+
startTime: c,
|
583
583
|
payload: t,
|
584
|
-
status:
|
584
|
+
status: u,
|
585
585
|
queriesSent: g,
|
586
586
|
queriesPending: v.length,
|
587
587
|
subscribe: M,
|
588
588
|
abort: T
|
589
589
|
};
|
590
590
|
}
|
591
|
-
function
|
592
|
-
|
591
|
+
function E() {
|
592
|
+
u = "failed", b.forEach((V) => {
|
593
593
|
V(void 0, f);
|
594
594
|
});
|
595
595
|
}
|
@@ -600,7 +600,7 @@ function So(e, t, n, s) {
|
|
600
600
|
}
|
601
601
|
function U(V, R, Y) {
|
602
602
|
const Q = R !== "success";
|
603
|
-
switch (v = v.filter((X) => X !== V),
|
603
|
+
switch (v = v.filter((X) => X !== V), u) {
|
604
604
|
case "pending":
|
605
605
|
break;
|
606
606
|
case "failed":
|
@@ -611,34 +611,34 @@ function So(e, t, n, s) {
|
|
611
611
|
return;
|
612
612
|
}
|
613
613
|
if (R === "abort") {
|
614
|
-
f = Y,
|
614
|
+
f = Y, E();
|
615
615
|
return;
|
616
616
|
}
|
617
617
|
if (Q) {
|
618
|
-
f = Y, v.length || (d.length ? W() :
|
618
|
+
f = Y, v.length || (d.length ? W() : E());
|
619
619
|
return;
|
620
620
|
}
|
621
621
|
if (O(), D(), !e.random) {
|
622
622
|
const X = e.resources.indexOf(V.resource);
|
623
623
|
X !== -1 && X !== e.index && (e.index = X);
|
624
624
|
}
|
625
|
-
|
625
|
+
u = "completed", b.forEach((X) => {
|
626
626
|
X(Y);
|
627
627
|
});
|
628
628
|
}
|
629
629
|
function W() {
|
630
|
-
if (
|
630
|
+
if (u !== "pending")
|
631
631
|
return;
|
632
632
|
O();
|
633
633
|
const V = d.shift();
|
634
634
|
if (V === void 0) {
|
635
635
|
if (v.length) {
|
636
636
|
h = setTimeout(() => {
|
637
|
-
O(),
|
637
|
+
O(), u === "pending" && (D(), E());
|
638
638
|
}, e.timeout);
|
639
639
|
return;
|
640
640
|
}
|
641
|
-
|
641
|
+
E();
|
642
642
|
return;
|
643
643
|
}
|
644
644
|
const R = {
|
@@ -659,27 +659,27 @@ function Ti(e) {
|
|
659
659
|
};
|
660
660
|
let n = [];
|
661
661
|
function s() {
|
662
|
-
n = n.filter((
|
662
|
+
n = n.filter((c) => c().status === "pending");
|
663
663
|
}
|
664
|
-
function i(
|
664
|
+
function i(c, u, g) {
|
665
665
|
const f = So(
|
666
666
|
t,
|
667
|
-
u,
|
668
667
|
c,
|
668
|
+
u,
|
669
669
|
(h, v) => {
|
670
670
|
s(), g && g(h, v);
|
671
671
|
}
|
672
672
|
);
|
673
673
|
return n.push(f), f;
|
674
674
|
}
|
675
|
-
function l(
|
676
|
-
return n.find((
|
675
|
+
function l(c) {
|
676
|
+
return n.find((u) => c(u)) || null;
|
677
677
|
}
|
678
678
|
return {
|
679
679
|
query: i,
|
680
680
|
find: l,
|
681
|
-
setIndex: (
|
682
|
-
t.index =
|
681
|
+
setIndex: (c) => {
|
682
|
+
t.index = c;
|
683
683
|
},
|
684
684
|
getIndex: () => t.index,
|
685
685
|
cleanup: s
|
@@ -714,8 +714,8 @@ function Oo(e, t, n) {
|
|
714
714
|
const l = cn(e);
|
715
715
|
if (l) {
|
716
716
|
s = Ti(l);
|
717
|
-
const d = e.resources ? e.resources[0] : "",
|
718
|
-
|
717
|
+
const d = e.resources ? e.resources[0] : "", c = Yt(d);
|
718
|
+
c && (i = c.send);
|
719
719
|
}
|
720
720
|
}
|
721
721
|
return !s || !i ? (n(void 0, 424), An) : s.query(t, i, n)().abort;
|
@@ -773,28 +773,28 @@ function Ii(e, t) {
|
|
773
773
|
const s = Jt(n, En);
|
774
774
|
if (s !== Pn) {
|
775
775
|
if (s) {
|
776
|
-
const
|
777
|
-
for (let
|
778
|
-
Hn(n, tt +
|
776
|
+
const c = Qt(n);
|
777
|
+
for (let u = 0; u < c; u++)
|
778
|
+
Hn(n, tt + u.toString());
|
779
779
|
}
|
780
780
|
fn(n, En, Pn), Zt(n, 0);
|
781
781
|
return;
|
782
782
|
}
|
783
|
-
const i = Math.floor(Date.now() / _i) - Lo, l = (
|
784
|
-
const
|
783
|
+
const i = Math.floor(Date.now() / _i) - Lo, l = (c) => {
|
784
|
+
const u = tt + c.toString(), g = Jt(n, u);
|
785
785
|
if (typeof g == "string") {
|
786
786
|
try {
|
787
787
|
const f = JSON.parse(g);
|
788
|
-
if (typeof f == "object" && typeof f.cached == "number" && f.cached > i && typeof f.provider == "string" && typeof f.data == "object" && typeof f.data.prefix == "string" && t(f,
|
788
|
+
if (typeof f == "object" && typeof f.cached == "number" && f.cached > i && typeof f.provider == "string" && typeof f.data == "object" && typeof f.data.prefix == "string" && t(f, c))
|
789
789
|
return !0;
|
790
790
|
} catch {
|
791
791
|
}
|
792
|
-
Hn(n,
|
792
|
+
Hn(n, u);
|
793
793
|
}
|
794
794
|
};
|
795
795
|
let d = Qt(n);
|
796
|
-
for (let
|
797
|
-
l(
|
796
|
+
for (let c = d - 1; c >= 0; c--)
|
797
|
+
l(c) || (c === d - 1 ? (d--, Zt(n, d)) : Oi[e].add(c));
|
798
798
|
}
|
799
799
|
function Bi() {
|
800
800
|
if (!hn) {
|
@@ -836,7 +836,7 @@ function Do(e, t) {
|
|
836
836
|
l.delete(d = Array.from(l).shift());
|
837
837
|
else if (d = Qt(i), !Zt(i, d + 1))
|
838
838
|
return;
|
839
|
-
const
|
839
|
+
const c = {
|
840
840
|
cached: Math.floor(Date.now() / _i),
|
841
841
|
provider: e.provider,
|
842
842
|
data: t
|
@@ -844,7 +844,7 @@ function Do(e, t) {
|
|
844
844
|
return fn(
|
845
845
|
i,
|
846
846
|
tt + d.toString(),
|
847
|
-
JSON.stringify(
|
847
|
+
JSON.stringify(c)
|
848
848
|
);
|
849
849
|
}
|
850
850
|
t.lastModified && !Bo(e, t.lastModified) || Object.keys(t.icons).length && (t.not_found && (t = Object.assign({}, t), delete t.not_found), n("local") || n("session"));
|
@@ -864,26 +864,26 @@ function Fo(e, t) {
|
|
864
864
|
let l;
|
865
865
|
if (!i || !(l = Yt(n)))
|
866
866
|
return;
|
867
|
-
l.prepare(n, s, i).forEach((
|
868
|
-
Oo(n,
|
869
|
-
if (typeof
|
867
|
+
l.prepare(n, s, i).forEach((c) => {
|
868
|
+
Oo(n, c, (u, g) => {
|
869
|
+
if (typeof u != "object") {
|
870
870
|
if (g !== 404)
|
871
871
|
return;
|
872
|
-
|
872
|
+
c.icons.forEach((f) => {
|
873
873
|
e.missing.add(f);
|
874
874
|
});
|
875
875
|
} else
|
876
876
|
try {
|
877
877
|
const f = un(
|
878
878
|
e,
|
879
|
-
|
879
|
+
u
|
880
880
|
);
|
881
881
|
if (!f.length)
|
882
882
|
return;
|
883
883
|
const h = e.pendingIcons;
|
884
884
|
h && f.forEach((v) => {
|
885
885
|
h.delete(v);
|
886
|
-
}), Do(e,
|
886
|
+
}), Do(e, u);
|
887
887
|
} catch (f) {
|
888
888
|
console.error(f);
|
889
889
|
}
|
@@ -895,33 +895,33 @@ function Fo(e, t) {
|
|
895
895
|
const Vo = (e, t) => {
|
896
896
|
const n = wo(e, !0, xi()), s = xo(n);
|
897
897
|
if (!s.pending.length) {
|
898
|
-
let
|
898
|
+
let u = !0;
|
899
899
|
return t && setTimeout(() => {
|
900
|
-
|
900
|
+
u && t(
|
901
901
|
s.loaded,
|
902
902
|
s.missing,
|
903
903
|
s.pending,
|
904
904
|
qn
|
905
905
|
);
|
906
906
|
}), () => {
|
907
|
-
|
907
|
+
u = !1;
|
908
908
|
};
|
909
909
|
}
|
910
910
|
const i = /* @__PURE__ */ Object.create(null), l = [];
|
911
|
-
let d,
|
912
|
-
return s.pending.forEach((
|
913
|
-
const { provider: g, prefix: f } =
|
914
|
-
if (f ===
|
911
|
+
let d, c;
|
912
|
+
return s.pending.forEach((u) => {
|
913
|
+
const { provider: g, prefix: f } = u;
|
914
|
+
if (f === c && g === d)
|
915
915
|
return;
|
916
|
-
d = g,
|
916
|
+
d = g, c = f, l.push(Ee(g, f));
|
917
917
|
const h = i[g] || (i[g] = /* @__PURE__ */ Object.create(null));
|
918
918
|
h[f] || (h[f] = []);
|
919
|
-
}), s.pending.forEach((
|
920
|
-
const { provider: g, prefix: f, name: h } =
|
919
|
+
}), s.pending.forEach((u) => {
|
920
|
+
const { provider: g, prefix: f, name: h } = u, v = Ee(g, f), b = v.pendingIcons || (v.pendingIcons = /* @__PURE__ */ new Set());
|
921
921
|
b.has(h) || (b.add(h), i[g][f].push(h));
|
922
|
-
}), l.forEach((
|
923
|
-
const { provider: g, prefix: f } =
|
924
|
-
i[g][f].length && Fo(
|
922
|
+
}), l.forEach((u) => {
|
923
|
+
const { provider: g, prefix: f } = u;
|
924
|
+
i[g][f].length && Fo(u, i[g][f]);
|
925
925
|
}), t ? ko(t, s, l) : qn;
|
926
926
|
};
|
927
927
|
function Ao(e, t) {
|
@@ -1022,7 +1022,7 @@ function Un(e) {
|
|
1022
1022
|
return e + (e.match(/^[-0-9.]+$/) ? "px" : "");
|
1023
1023
|
}
|
1024
1024
|
const zn = (e, t) => {
|
1025
|
-
const n = Ao(Rn, t), s = { ...No }, i = t.mode || "svg", l = {}, d = t.style,
|
1025
|
+
const n = Ao(Rn, t), s = { ...No }, i = t.mode || "svg", l = {}, d = t.style, c = typeof d == "object" && !(d instanceof Array) ? d : {};
|
1026
1026
|
for (let T in t) {
|
1027
1027
|
const M = t[T];
|
1028
1028
|
if (M !== void 0)
|
@@ -1056,14 +1056,14 @@ const zn = (e, t) => {
|
|
1056
1056
|
}
|
1057
1057
|
}
|
1058
1058
|
}
|
1059
|
-
const
|
1059
|
+
const u = lo(e, n), g = u.attributes;
|
1060
1060
|
if (n.inline && (l.verticalAlign = "-0.125em"), i === "svg") {
|
1061
1061
|
s.style = {
|
1062
1062
|
...l,
|
1063
|
-
...
|
1063
|
+
...c
|
1064
1064
|
}, Object.assign(s, g);
|
1065
1065
|
let T = 0, M = t.id;
|
1066
|
-
return typeof M == "string" && (M = M.replace(/-/g, "_")), s.innerHTML = ro(
|
1066
|
+
return typeof M == "string" && (M = M.replace(/-/g, "_")), s.innerHTML = ro(u.body, M ? () => M + "ID" + T++ : "iconifyVue"), Bn("svg", s);
|
1067
1067
|
}
|
1068
1068
|
const { body: f, width: h, height: v } = e, b = i === "mask" || (i === "bg" ? !1 : f.indexOf("currentColor") !== -1), O = qo(f, {
|
1069
1069
|
...g,
|
@@ -1077,7 +1077,7 @@ const zn = (e, t) => {
|
|
1077
1077
|
height: Un(g.height),
|
1078
1078
|
...Uo,
|
1079
1079
|
...b ? Xt : Di,
|
1080
|
-
...
|
1080
|
+
...c
|
1081
1081
|
}, Bn("span", s);
|
1082
1082
|
};
|
1083
1083
|
xi(!0);
|
@@ -1453,7 +1453,7 @@ function fa(e, t, n, s, i, l) {
|
|
1453
1453
|
o("a", {
|
1454
1454
|
class: x(["icon-hexagon button confirm", { disabled: !i.addHandlerProvider && !n.itemProvider && !n.allowAddComponent }]),
|
1455
1455
|
href: "#",
|
1456
|
-
onClick: t[0] || (t[0] = S((
|
1456
|
+
onClick: t[0] || (t[0] = S((c) => l.addEntry(c), ["prevent"])),
|
1457
1457
|
title: l.isOuterComponent ? "Add new component" : "Add new item/entry"
|
1458
1458
|
}, [
|
1459
1459
|
p(d, {
|
@@ -1465,7 +1465,7 @@ function fa(e, t, n, s, i, l) {
|
|
1465
1465
|
o("a", {
|
1466
1466
|
class: x(["icon-hexagon button primary", { disabled: l.editing || !l.hasSettings }]),
|
1467
1467
|
href: l.editing ? null : "#",
|
1468
|
-
onClick: t[1] || (t[1] = S((...
|
1468
|
+
onClick: t[1] || (t[1] = S((...c) => l.editSettings && l.editSettings(...c), ["prevent"])),
|
1469
1469
|
title: "Edit settings of this component"
|
1470
1470
|
}, [
|
1471
1471
|
p(d, {
|
@@ -1477,7 +1477,7 @@ function fa(e, t, n, s, i, l) {
|
|
1477
1477
|
o("a", {
|
1478
1478
|
class: "icon-hexagon button-delete",
|
1479
1479
|
href: "#",
|
1480
|
-
onClick: t[2] || (t[2] = S((...
|
1480
|
+
onClick: t[2] || (t[2] = S((...c) => l.deleteComponent && l.deleteComponent(...c), ["prevent"])),
|
1481
1481
|
title: "Delete this component (and its content)"
|
1482
1482
|
}, [
|
1483
1483
|
p(d, { iconClass: "icon-trash" })
|
@@ -1487,7 +1487,7 @@ function fa(e, t, n, s, i, l) {
|
|
1487
1487
|
o("a", {
|
1488
1488
|
class: x(["icon-hexagon button-cancel", { disabled: !l.editing }]),
|
1489
1489
|
href: "#",
|
1490
|
-
onClick: t[3] || (t[3] = S((...
|
1490
|
+
onClick: t[3] || (t[3] = S((...c) => l.cancelComponent && l.cancelComponent(...c), ["prevent"])),
|
1491
1491
|
title: "Cancel editing (changes will not be saved)"
|
1492
1492
|
}, [
|
1493
1493
|
p(d, { iconClass: "icon-cancel" })
|
@@ -1498,7 +1498,7 @@ function fa(e, t, n, s, i, l) {
|
|
1498
1498
|
key: 0,
|
1499
1499
|
class: "icon-hexagon button-save",
|
1500
1500
|
href: "#",
|
1501
|
-
onClick: t[4] || (t[4] = S((...
|
1501
|
+
onClick: t[4] || (t[4] = S((...c) => l.saveComponent && l.saveComponent(...c), ["prevent"])),
|
1502
1502
|
title: "Save changes of this component"
|
1503
1503
|
}, [
|
1504
1504
|
p(d, { iconClass: "icon-check" })
|
@@ -1506,7 +1506,7 @@ function fa(e, t, n, s, i, l) {
|
|
1506
1506
|
key: 1,
|
1507
1507
|
class: x(["icon-hexagon button", { disabled: l.editModeContext.settings.isEditing(i.componentIdentifier) }]),
|
1508
1508
|
href: "#",
|
1509
|
-
onClick: t[5] || (t[5] = S((...
|
1509
|
+
onClick: t[5] || (t[5] = S((...c) => l.editComponent && l.editComponent(...c), ["prevent"])),
|
1510
1510
|
title: "Edit content of this component"
|
1511
1511
|
}, [
|
1512
1512
|
p(d, { iconClass: "icon-edit" })
|
@@ -1520,14 +1520,14 @@ function fa(e, t, n, s, i, l) {
|
|
1520
1520
|
$(o("ul", {
|
1521
1521
|
class: "flex-container flex-none action-buttons",
|
1522
1522
|
"data-component": n.componentName,
|
1523
|
-
onMouseenter: t[12] || (t[12] = (...
|
1524
|
-
onMouseleave: t[13] || (t[13] = (...
|
1523
|
+
onMouseenter: t[12] || (t[12] = (...c) => l.addHighlightRelatedComponent && l.addHighlightRelatedComponent(...c)),
|
1524
|
+
onMouseleave: t[13] || (t[13] = (...c) => l.removeHighlightRelatedComponent && l.removeHighlightRelatedComponent(...c))
|
1525
1525
|
}, [
|
1526
1526
|
o("li", null, [
|
1527
1527
|
o("a", {
|
1528
1528
|
class: x(["icon-hexagon use-icon-as-background button confirm", { disabled: !i.addHandlerProvider && !n.itemProvider && !n.allowAddComponent }]),
|
1529
1529
|
href: "#",
|
1530
|
-
onClick: t[6] || (t[6] = S((...
|
1530
|
+
onClick: t[6] || (t[6] = S((...c) => l.addEntry && l.addEntry(...c), ["prevent"])),
|
1531
1531
|
title: l.isOuterComponent ? "Add new component" : "Add new item/entry"
|
1532
1532
|
}, [
|
1533
1533
|
p(d, {
|
@@ -1539,7 +1539,7 @@ function fa(e, t, n, s, i, l) {
|
|
1539
1539
|
o("a", {
|
1540
1540
|
class: x(["icon-hexagon use-icon-as-background button primary", { disabled: l.editing || !l.hasSettings }]),
|
1541
1541
|
href: l.editing ? null : "#",
|
1542
|
-
onClick: t[7] || (t[7] = S((...
|
1542
|
+
onClick: t[7] || (t[7] = S((...c) => l.editSettings && l.editSettings(...c), ["prevent"])),
|
1543
1543
|
title: "Edit settings for " + n.componentName
|
1544
1544
|
}, [
|
1545
1545
|
p(d, {
|
@@ -1551,7 +1551,7 @@ function fa(e, t, n, s, i, l) {
|
|
1551
1551
|
o("a", {
|
1552
1552
|
class: x(["icon-hexagon use-icon-as-background button button-delete", { disabled: l.editing || !n.allowDeleteComponent }]),
|
1553
1553
|
href: "#",
|
1554
|
-
onClick: t[8] || (t[8] = S((...
|
1554
|
+
onClick: t[8] || (t[8] = S((...c) => l.deleteComponent && l.deleteComponent(...c), ["prevent"])),
|
1555
1555
|
title: "Delete " + n.componentName + " (and its content)"
|
1556
1556
|
}, [
|
1557
1557
|
p(d, { iconClass: "icon-trash" })
|
@@ -1561,7 +1561,7 @@ function fa(e, t, n, s, i, l) {
|
|
1561
1561
|
o("a", {
|
1562
1562
|
class: x(["icon-hexagon use-icon-as-background button cancel", { disabled: !l.editing }]),
|
1563
1563
|
href: "#",
|
1564
|
-
onClick: t[9] || (t[9] = S((...
|
1564
|
+
onClick: t[9] || (t[9] = S((...c) => l.cancelComponent && l.cancelComponent(...c), ["prevent"])),
|
1565
1565
|
title: "Cancel editing (changes will not be saved)"
|
1566
1566
|
}, [
|
1567
1567
|
p(d, { iconClass: "icon-cancel" })
|
@@ -1572,7 +1572,7 @@ function fa(e, t, n, s, i, l) {
|
|
1572
1572
|
key: 0,
|
1573
1573
|
class: "icon-hexagon use-icon-as-background button confirm",
|
1574
1574
|
href: "#",
|
1575
|
-
onClick: t[10] || (t[10] = S((...
|
1575
|
+
onClick: t[10] || (t[10] = S((...c) => l.saveComponent && l.saveComponent(...c), ["prevent"])),
|
1576
1576
|
title: "Save changes of " + n.componentName
|
1577
1577
|
}, [
|
1578
1578
|
p(d, { iconClass: "icon-check" })
|
@@ -1580,7 +1580,7 @@ function fa(e, t, n, s, i, l) {
|
|
1580
1580
|
key: 1,
|
1581
1581
|
class: x(["icon-hexagon use-icon-as-background button confirm", { disabled: l.editModeContext.settings.isEditing(i.componentIdentifier) }]),
|
1582
1582
|
href: "#",
|
1583
|
-
onClick: t[11] || (t[11] = S((...
|
1583
|
+
onClick: t[11] || (t[11] = S((...c) => l.editComponent && l.editComponent(...c), ["prevent"])),
|
1584
1584
|
title: "Edit content for " + n.componentName
|
1585
1585
|
}, [
|
1586
1586
|
p(d, { iconClass: "icon-edit" })
|
@@ -1732,7 +1732,7 @@ const qe = /* @__PURE__ */ F(Xo, [["render", fa]]), se = {
|
|
1732
1732
|
}, ga = { class: "pre-headline-text-wrapper" }, ya = ["innerHTML"], ba = ["innerHTML"], xa = { key: 1 }, Ca = ["innerHTML"], va = { key: 2 }, ka = { class: "pre-headline-text" };
|
1733
1733
|
function wa(e, t, n, s, i, l) {
|
1734
1734
|
var g;
|
1735
|
-
const d = K,
|
1735
|
+
const d = K, c = te, u = qe;
|
1736
1736
|
return !e.editModeContext || e.settingsContext || e.mainSidebarContext || n.headlineText ? (a(), r("div", {
|
1737
1737
|
key: 0,
|
1738
1738
|
class: x(["cmd-headline", { "has-pre-headline-text": n.preHeadlineText, "has-icon": (g = n.cmdIcon) == null ? void 0 : g.iconClass }, l.headlineTextAlign])
|
@@ -1768,7 +1768,7 @@ function wa(e, t, n, s, i, l) {
|
|
1768
1768
|
]),
|
1769
1769
|
_: 3
|
1770
1770
|
}))
|
1771
|
-
], 2)) : (a(), k(
|
1771
|
+
], 2)) : (a(), k(u, {
|
1772
1772
|
key: 1,
|
1773
1773
|
ref: "editComponentWrapper",
|
1774
1774
|
class: "edit-items",
|
@@ -1780,7 +1780,7 @@ function wa(e, t, n, s, i, l) {
|
|
1780
1780
|
allowDeleteComponent: !!n.headlineText
|
1781
1781
|
}, {
|
1782
1782
|
default: w((f) => [
|
1783
|
-
f.editing ? (a(), k(
|
1783
|
+
f.editing ? (a(), k(c, {
|
1784
1784
|
key: 0,
|
1785
1785
|
element: "input",
|
1786
1786
|
type: "text",
|
@@ -1965,7 +1965,7 @@ const J = /* @__PURE__ */ F(ha, [["render", wa]]), Ta = {
|
|
1965
1965
|
class: "headline-wrapper"
|
1966
1966
|
}, _a = ["title"];
|
1967
1967
|
function Oa(e, t, n, s, i, l) {
|
1968
|
-
const d = J,
|
1968
|
+
const d = J, c = K;
|
1969
1969
|
return i.tooltipVisibility ? (a(), r("div", {
|
1970
1970
|
key: 0,
|
1971
1971
|
class: x(["cmd-tooltip", n.validationStatus]),
|
@@ -1976,10 +1976,10 @@ function Oa(e, t, n, s, i, l) {
|
|
1976
1976
|
n.iconClose.show && n.toggleVisibilityByClick ? (a(), r("a", {
|
1977
1977
|
key: 1,
|
1978
1978
|
href: "#",
|
1979
|
-
onClick: t[0] || (t[0] = S((...
|
1979
|
+
onClick: t[0] || (t[0] = S((...u) => l.hideTooltip && l.hideTooltip(...u), ["prevent"])),
|
1980
1980
|
title: n.iconClose.tooltip
|
1981
1981
|
}, [
|
1982
|
-
p(
|
1982
|
+
p(c, {
|
1983
1983
|
iconClass: n.iconClose.iconClass,
|
1984
1984
|
type: n.iconClose.iconType
|
1985
1985
|
}, null, 8, ["iconClass", "type"])
|
@@ -2139,8 +2139,8 @@ const Mi = /* @__PURE__ */ F(Ta, [["render", Oa]]), me = {
|
|
2139
2139
|
}
|
2140
2140
|
}, Ba = { class: "cmd-list-of-requirements" }, Da = ["href", "target"], Ma = { key: 1 };
|
2141
2141
|
function Fa(e, t, n, s, i, l) {
|
2142
|
-
var
|
2143
|
-
const d = J,
|
2142
|
+
var u, g, f;
|
2143
|
+
const d = J, c = K;
|
2144
2144
|
return a(), r("div", Ba, [
|
2145
2145
|
n.showHeadline ? (a(), k(d, {
|
2146
2146
|
key: 0,
|
@@ -2164,7 +2164,7 @@ function Fa(e, t, n, s, i, l) {
|
|
2164
2164
|
o("dd", {
|
2165
2165
|
class: x(h.valid(n.inputModelValue, n.inputAttributes) ? "success" : "error")
|
2166
2166
|
}, [
|
2167
|
-
p(
|
2167
|
+
p(c, {
|
2168
2168
|
"aria-live": "assertive",
|
2169
2169
|
iconClass: h.valid(n.inputModelValue, n.inputAttributes) ? n.iconSuccess.iconClass : n.iconError.iconClass,
|
2170
2170
|
type: h.valid(n.inputModelValue, n.inputAttributes) ? n.iconSuccess.iconType : n.iconError.iconType,
|
@@ -2182,7 +2182,7 @@ function Fa(e, t, n, s, i, l) {
|
|
2182
2182
|
onClick: t[0] || (t[0] = S(() => {
|
2183
2183
|
}, ["prevent"]))
|
2184
2184
|
}, [
|
2185
|
-
(
|
2185
|
+
(u = n.helplink.icon) != null && u.iconClass ? (a(), k(c, {
|
2186
2186
|
key: 0,
|
2187
2187
|
class: x((g = n.helplink.icon) == null ? void 0 : g.iconClass),
|
2188
2188
|
title: (f = n.helplink.icon) == null ? void 0 : f.tooltip
|
@@ -2253,8 +2253,8 @@ const Va = /* @__PURE__ */ F(Ia, [["render", Fa]]), Aa = {
|
|
2253
2253
|
}
|
2254
2254
|
};
|
2255
2255
|
function Pa(e, t, n, s, i, l) {
|
2256
|
-
const d = Va,
|
2257
|
-
return a(), k(
|
2256
|
+
const d = Va, c = Mi;
|
2257
|
+
return a(), k(c, {
|
2258
2258
|
ref: "tooltip",
|
2259
2259
|
class: x(["cmd-tooltip-for-form-elements box", n.validationStatus]),
|
2260
2260
|
relatedId: n.relatedId,
|
@@ -3067,6 +3067,9 @@ const xn = {
|
|
3067
3067
|
}
|
3068
3068
|
},
|
3069
3069
|
methods: {
|
3070
|
+
deleteInput() {
|
3071
|
+
this.setFocus(), $emit("update:modelValue", "");
|
3072
|
+
},
|
3070
3073
|
getInitialLetters(e) {
|
3071
3074
|
const t = {};
|
3072
3075
|
e.sort((n, s) => n.text.toLowerCase().localeCompare(s.text.toLowerCase()));
|
@@ -3160,8 +3163,8 @@ const xn = {
|
|
3160
3163
|
class: "search-field-wrapper flex-container no-gap"
|
3161
3164
|
}, bs = ["id", "maxlength", "value"], xs = ["title"], Cs = ["title"], vs = { key: 1 };
|
3162
3165
|
function ks(e, t, n, s, i, l) {
|
3163
|
-
var
|
3164
|
-
const d = K,
|
3166
|
+
var u, g, f, h, v, b, O, T, M, B, E, D, U, W, V, R, Y, Q, X, le, ne, ie, re, pe;
|
3167
|
+
const d = K, c = gn;
|
3165
3168
|
return n.element === "input" || n.element === "select" || n.element === "textarea" ? (a(), r("label", {
|
3166
3169
|
key: 0,
|
3167
3170
|
class: x([
|
@@ -3204,7 +3207,7 @@ function ks(e, t, n, s, i, l) {
|
|
3204
3207
|
}, [
|
3205
3208
|
p(d, { iconClass: e.getStatusIconClass }, null, 8, ["iconClass"])
|
3206
3209
|
], 8, Ja)) : m("", !0),
|
3207
|
-
e.useCustomTooltip && (e.validationStatus === "" || e.validationStatus === "error") ? (a(), k(
|
3210
|
+
e.useCustomTooltip && (e.validationStatus === "" || e.validationStatus === "error") ? (a(), k(c, {
|
3208
3211
|
key: 1,
|
3209
3212
|
ref: "tooltip",
|
3210
3213
|
validationStatus: e.validationStatus,
|
@@ -3224,12 +3227,12 @@ function ks(e, t, n, s, i, l) {
|
|
3224
3227
|
key: 1,
|
3225
3228
|
id: e.htmlId,
|
3226
3229
|
class: n.inputClass,
|
3227
|
-
onFocus: t[1] || (t[1] = (
|
3228
|
-
onBlur: t[2] || (t[2] = (...
|
3229
|
-
onInput: t[3] || (t[3] = (...
|
3230
|
-
onMouseover: t[4] || (t[4] = (...
|
3231
|
-
onKeyup: t[5] || (t[5] = (...
|
3232
|
-
onChange: t[6] || (t[6] = (
|
3230
|
+
onFocus: t[1] || (t[1] = (P) => e.tooltip = !0),
|
3231
|
+
onBlur: t[2] || (t[2] = (...P) => l.onBlur && l.onBlur(...P)),
|
3232
|
+
onInput: t[3] || (t[3] = (...P) => l.onInput && l.onInput(...P)),
|
3233
|
+
onMouseover: t[4] || (t[4] = (...P) => l.datalistFocus && l.datalistFocus(...P)),
|
3234
|
+
onKeyup: t[5] || (t[5] = (...P) => e.checkForCapsLock && e.checkForCapsLock(...P)),
|
3235
|
+
onChange: t[6] || (t[6] = (P) => e.$emit("change", P)),
|
3233
3236
|
autocomplete: l.autocomplete,
|
3234
3237
|
list: n.datalist ? n.datalist.id : null,
|
3235
3238
|
value: n.modelValue,
|
@@ -3241,9 +3244,9 @@ function ks(e, t, n, s, i, l) {
|
|
3241
3244
|
key: 2,
|
3242
3245
|
href: "#",
|
3243
3246
|
class: "place-inside",
|
3244
|
-
onMousedown: t[7] || (t[7] = S((...
|
3245
|
-
onMouseup: t[8] || (t[8] = S((...
|
3246
|
-
onMouseleave: t[9] || (t[9] = S((...
|
3247
|
+
onMousedown: t[7] || (t[7] = S((...P) => l.showPassword && l.showPassword(...P), ["prevent"])),
|
3248
|
+
onMouseup: t[8] || (t[8] = S((...P) => l.hidePassword && l.hidePassword(...P), ["prevent"])),
|
3249
|
+
onMouseleave: t[9] || (t[9] = S((...P) => l.hidePassword && l.hidePassword(...P), ["prevent"])),
|
3247
3250
|
onClick: t[10] || (t[10] = S(() => {
|
3248
3251
|
}, ["prevent"])),
|
3249
3252
|
title: n.iconPasswordVisible.tooltip
|
@@ -3257,16 +3260,16 @@ function ks(e, t, n, s, i, l) {
|
|
3257
3260
|
key: 2,
|
3258
3261
|
id: n.datalist.id
|
3259
3262
|
}, [
|
3260
|
-
(a(!0), r(_, null, q(n.datalist.options, (
|
3263
|
+
(a(!0), r(_, null, q(n.datalist.options, (P, Z) => (a(), r("option", {
|
3261
3264
|
key: Z,
|
3262
|
-
value:
|
3265
|
+
value: P
|
3263
3266
|
}, null, 8, es))), 128))
|
3264
3267
|
], 8, $a)) : n.element === "input" && (e.$attrs.type === "checkbox" || e.$attrs.type === "radio") ? (a(), r(_, { key: 3 }, [
|
3265
3268
|
n.onLabel && n.offLabel ? n.onLabel && n.offLabel ? (a(), r(_, { key: 1 }, [
|
3266
3269
|
o("span", ls, [
|
3267
3270
|
o("input", I(l.elementAttributes, {
|
3268
|
-
onChange: t[13] || (t[13] = (...
|
3269
|
-
onBlur: t[14] || (t[14] = (...
|
3271
|
+
onChange: t[13] || (t[13] = (...P) => l.onChange && l.onChange(...P)),
|
3272
|
+
onBlur: t[14] || (t[14] = (...P) => l.onBlur && l.onBlur(...P)),
|
3270
3273
|
checked: l.isChecked,
|
3271
3274
|
value: n.inputValue,
|
3272
3275
|
class: { inputClass: n.inputClass, validationStatus: e.validationStatus },
|
@@ -3286,8 +3289,8 @@ function ks(e, t, n, s, i, l) {
|
|
3286
3289
|
], 2)) : m("", !0)
|
3287
3290
|
], 64)) : A(e.$slots, "default", { key: 2 }) : (a(), r(_, { key: 0 }, [
|
3288
3291
|
o("input", I(l.elementAttributes, {
|
3289
|
-
onChange: t[11] || (t[11] = (...
|
3290
|
-
onBlur: t[12] || (t[12] = (...
|
3292
|
+
onChange: t[11] || (t[11] = (...P) => l.onChange && l.onChange(...P)),
|
3293
|
+
onBlur: t[12] || (t[12] = (...P) => l.onBlur && l.onBlur(...P)),
|
3291
3294
|
checked: l.isChecked,
|
3292
3295
|
value: n.inputValue,
|
3293
3296
|
class: [n.inputClass, e.validationStatus, l.toggleSwitchIconClass, { "replace-input-type": n.replaceInputType }],
|
@@ -3311,31 +3314,31 @@ function ks(e, t, n, s, i, l) {
|
|
3311
3314
|
], 64)) : m("", !0),
|
3312
3315
|
n.element === "select" ? (a(), r("select", I({ key: 4 }, l.elementAttributes, {
|
3313
3316
|
id: e.htmlId,
|
3314
|
-
onBlur: t[15] || (t[15] = (...
|
3315
|
-
onChange: t[16] || (t[16] = (
|
3317
|
+
onBlur: t[15] || (t[15] = (...P) => l.onBlur && l.onBlur(...P)),
|
3318
|
+
onChange: t[16] || (t[16] = (P) => e.$emit("update:modelValue", P.target.value))
|
3316
3319
|
}), [
|
3317
|
-
n.groupSelectOptionsByInitialLetters ? (a(!0), r(_, { key: 1 }, q(l.initialLetters, (
|
3320
|
+
n.groupSelectOptionsByInitialLetters ? (a(!0), r(_, { key: 1 }, q(l.initialLetters, (P, Z) => (a(), r("optgroup", {
|
3318
3321
|
label: Z,
|
3319
3322
|
key: Z
|
3320
3323
|
}, [
|
3321
|
-
(a(!0), r(_, null, q(
|
3324
|
+
(a(!0), r(_, null, q(P, (de, fe) => (a(), r("option", {
|
3322
3325
|
key: fe,
|
3323
3326
|
value: de.value,
|
3324
3327
|
selected: de.value === n.modelValue
|
3325
3328
|
}, y(de.text), 9, ps))), 128))
|
3326
|
-
], 8, ms))), 128)) : (a(!0), r(_, { key: 0 }, q(n.selectOptions, (
|
3329
|
+
], 8, ms))), 128)) : (a(!0), r(_, { key: 0 }, q(n.selectOptions, (P, Z) => (a(), r("option", {
|
3327
3330
|
key: Z,
|
3328
|
-
value:
|
3329
|
-
selected:
|
3330
|
-
}, y(
|
3331
|
+
value: P.value,
|
3332
|
+
selected: P.value === n.modelValue
|
3333
|
+
}, y(P.text), 9, cs))), 128))
|
3331
3334
|
], 16, us)) : m("", !0),
|
3332
3335
|
n.element === "textarea" ? (a(), r("textarea", I({ key: 5 }, l.elementAttributes, {
|
3333
3336
|
id: e.htmlId,
|
3334
3337
|
value: n.modelValue,
|
3335
3338
|
maxlength: l.getMaxLength(),
|
3336
|
-
onInput: t[17] || (t[17] = (...
|
3337
|
-
onFocus: t[18] || (t[18] = (
|
3338
|
-
onBlur: t[19] || (t[19] = (...
|
3339
|
+
onInput: t[17] || (t[17] = (...P) => l.onInput && l.onInput(...P)),
|
3340
|
+
onFocus: t[18] || (t[18] = (P) => e.tooltip = !0),
|
3341
|
+
onBlur: t[19] || (t[19] = (...P) => l.onBlur && l.onBlur(...P))
|
3339
3342
|
}), null, 16, fs)) : m("", !0),
|
3340
3343
|
n.element === "textarea" && n.showCharactersTextarea ? (a(), r("span", hs, [
|
3341
3344
|
n.textCharactersLeft ? (a(), r("span", gs, y(n.textCharactersLeft), 1)) : m("", !0),
|
@@ -3350,7 +3353,7 @@ function ks(e, t, n, s, i, l) {
|
|
3350
3353
|
}, null, 8, ["iconClass"])) : m("", !0),
|
3351
3354
|
o("input", I(l.elementAttributes, {
|
3352
3355
|
id: e.htmlId,
|
3353
|
-
onInput: t[20] || (t[20] = (...
|
3356
|
+
onInput: t[20] || (t[20] = (...P) => l.onInput && l.onInput(...P)),
|
3354
3357
|
maxlength: l.getMaxLength(),
|
3355
3358
|
value: n.modelValue
|
3356
3359
|
}), null, 16, bs),
|
@@ -3359,16 +3362,16 @@ function ks(e, t, n, s, i, l) {
|
|
3359
3362
|
href: "#",
|
3360
3363
|
class: x(["button flex-none", { disabled: e.$attrs.disabled }]),
|
3361
3364
|
title: n.iconSearch.tooltip,
|
3362
|
-
onClick: t[21] || (t[21] = S((...
|
3365
|
+
onClick: t[21] || (t[21] = S((...P) => l.executeSearch && l.executeSearch(...P), ["prevent"]))
|
3363
3366
|
}, [
|
3364
3367
|
p(d, {
|
3365
3368
|
iconClass: n.iconSearch.iconClass
|
3366
3369
|
}, null, 8, ["iconClass"])
|
3367
3370
|
], 10, xs)) : m("", !0),
|
3368
|
-
(
|
3371
|
+
(u = n.iconDelete) != null && u.show && !e.$attrs.disabled ? (a(), r("a", {
|
3369
3372
|
key: 2,
|
3370
3373
|
href: "#",
|
3371
|
-
onClick: t[22] || (t[22] = S((
|
3374
|
+
onClick: t[22] || (t[22] = S((...P) => l.deleteInput && l.deleteInput(...P), ["prevent"])),
|
3372
3375
|
title: (g = n.iconDelete) == null ? void 0 : g.tooltip
|
3373
3376
|
}, [
|
3374
3377
|
p(d, {
|
@@ -3381,11 +3384,11 @@ function ks(e, t, n, s, i, l) {
|
|
3381
3384
|
key: 1,
|
3382
3385
|
class: "button"
|
3383
3386
|
}, l.buttonAttrs, {
|
3384
|
-
onClick: t[23] || (t[23] = (...
|
3387
|
+
onClick: t[23] || (t[23] = (...P) => l.submit && l.submit(...P))
|
3385
3388
|
}), [
|
3386
3389
|
(b = (v = n.nativeButton) == null ? void 0 : v.icon) != null && b.show && (((T = (O = n.nativeButton) == null ? void 0 : O.icon) == null ? void 0 : T.position) === "before" || !((B = (M = n.nativeButton) == null ? void 0 : M.icon) != null && B.position)) ? (a(), k(d, {
|
3387
3390
|
key: 0,
|
3388
|
-
iconClass: (D = (
|
3391
|
+
iconClass: (D = (E = n.nativeButton) == null ? void 0 : E.icon) == null ? void 0 : D.iconClass,
|
3389
3392
|
type: (W = (U = n.nativeButton) == null ? void 0 : U.icon) == null ? void 0 : W.iconType
|
3390
3393
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
3391
3394
|
(V = n.nativeButton) != null && V.icon && ((R = n.nativeButton) != null && R.text) ? (a(), r("span", vs, y(n.nativeButton.text), 1)) : (a(), r(_, { key: 2 }, [
|
@@ -3528,7 +3531,7 @@ const te = /* @__PURE__ */ F(Wa, [["render", ks]]), ws = {
|
|
3528
3531
|
class: "country-name"
|
3529
3532
|
};
|
3530
3533
|
function qs(e, t, n, s, i, l) {
|
3531
|
-
const d = K,
|
3534
|
+
const d = K, c = te;
|
3532
3535
|
return a(), r(_, null, [
|
3533
3536
|
o("dt", {
|
3534
3537
|
class: x(["cmd-address-data-item", { address: n.addressEntry.name === "address" }]),
|
@@ -3546,7 +3549,7 @@ function qs(e, t, n, s, i, l) {
|
|
3546
3549
|
key: 0,
|
3547
3550
|
class: x(l.vCardClass(n.addressEntry))
|
3548
3551
|
}, [
|
3549
|
-
e.editing ? (a(), k(
|
3552
|
+
e.editing ? (a(), k(c, {
|
3550
3553
|
key: 1,
|
3551
3554
|
element: "input",
|
3552
3555
|
type: l.inputType(n.addressEntry),
|
@@ -3555,7 +3558,7 @@ function qs(e, t, n, s, i, l) {
|
|
3555
3558
|
labelText: n.addressEntry.labelText,
|
3556
3559
|
placeholder: n.addressEntry.labelText,
|
3557
3560
|
modelValue: i.editableAddressEntry,
|
3558
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
3561
|
+
"onUpdate:modelValue": t[0] || (t[0] = (u) => i.editableAddressEntry = u)
|
3559
3562
|
}, null, 8, ["type", "labelText", "placeholder", "modelValue"])) : (a(), r(_, { key: 0 }, [
|
3560
3563
|
n.addressEntry.href ? (a(), r("a", {
|
3561
3564
|
key: 0,
|
@@ -3599,7 +3602,7 @@ function qs(e, t, n, s, i, l) {
|
|
3599
3602
|
n.addressEntry.country ? (a(), r("span", Vs, y(n.addressEntry.country), 1)) : m("", !0)
|
3600
3603
|
], 8, Is)) : (a(), r(_, { key: 1 }, [
|
3601
3604
|
e.editing ? (a(), r(_, { key: 1 }, [
|
3602
|
-
p(
|
3605
|
+
p(c, {
|
3603
3606
|
element: "input",
|
3604
3607
|
type: "text",
|
3605
3608
|
class: "edit-mode",
|
@@ -3607,12 +3610,12 @@ function qs(e, t, n, s, i, l) {
|
|
3607
3610
|
labelText: n.addressEntry.labelText,
|
3608
3611
|
placeholder: n.addressEntry.labelText,
|
3609
3612
|
modelValue: i.editableAddressEntry.streetNo,
|
3610
|
-
"onUpdate:modelValue": t[1] || (t[1] = (
|
3613
|
+
"onUpdate:modelValue": t[1] || (t[1] = (u) => i.editableAddressEntry.streetNo = u)
|
3611
3614
|
}, null, 8, ["labelText", "placeholder", "modelValue"]),
|
3612
3615
|
o("div", {
|
3613
3616
|
class: x([n.showCityBeforeZip ? "city-zip" : "zip-city", "input-wrapper"])
|
3614
3617
|
}, [
|
3615
|
-
p(
|
3618
|
+
p(c, {
|
3616
3619
|
element: "input",
|
3617
3620
|
type: "text",
|
3618
3621
|
class: "edit-mode",
|
@@ -3620,9 +3623,9 @@ function qs(e, t, n, s, i, l) {
|
|
3620
3623
|
labelText: n.addressEntry.labelText,
|
3621
3624
|
placeholder: n.addressEntry.labelText,
|
3622
3625
|
modelValue: i.editableAddressEntry.zip,
|
3623
|
-
"onUpdate:modelValue": t[2] || (t[2] = (
|
3626
|
+
"onUpdate:modelValue": t[2] || (t[2] = (u) => i.editableAddressEntry.zip = u)
|
3624
3627
|
}, null, 8, ["labelText", "placeholder", "modelValue"]),
|
3625
|
-
p(
|
3628
|
+
p(c, {
|
3626
3629
|
element: "input",
|
3627
3630
|
type: "text",
|
3628
3631
|
class: "edit-mode",
|
@@ -3630,10 +3633,10 @@ function qs(e, t, n, s, i, l) {
|
|
3630
3633
|
labelText: n.addressEntry.labelText,
|
3631
3634
|
placeholder: n.addressEntry.labelText,
|
3632
3635
|
modelValue: i.editableAddressEntry.city,
|
3633
|
-
"onUpdate:modelValue": t[3] || (t[3] = (
|
3636
|
+
"onUpdate:modelValue": t[3] || (t[3] = (u) => i.editableAddressEntry.city = u)
|
3634
3637
|
}, null, 8, ["labelText", "placeholder", "modelValue"])
|
3635
3638
|
], 2),
|
3636
|
-
p(
|
3639
|
+
p(c, {
|
3637
3640
|
element: "input",
|
3638
3641
|
type: "text",
|
3639
3642
|
class: "edit-mode",
|
@@ -3641,16 +3644,16 @@ function qs(e, t, n, s, i, l) {
|
|
3641
3644
|
labelText: n.addressEntry.labelText,
|
3642
3645
|
placeholder: n.addressEntry.labelText,
|
3643
3646
|
modelValue: i.editableAddressEntry.miscInfo,
|
3644
|
-
"onUpdate:modelValue": t[4] || (t[4] = (
|
3647
|
+
"onUpdate:modelValue": t[4] || (t[4] = (u) => i.editableAddressEntry.miscInfo = u)
|
3645
3648
|
}, null, 8, ["labelText", "placeholder", "modelValue"]),
|
3646
|
-
p(
|
3649
|
+
p(c, {
|
3647
3650
|
element: "select",
|
3648
3651
|
class: "edit-mode",
|
3649
3652
|
"show-label": !1,
|
3650
3653
|
labelText: n.addressEntry.labelText,
|
3651
3654
|
selectOptions: [{ text: "Germany", value: "de" }, { text: "United Kingdom", value: "uk" }],
|
3652
3655
|
modelValue: i.editableAddressEntry.country,
|
3653
|
-
"onUpdate:modelValue": t[5] || (t[5] = (
|
3656
|
+
"onUpdate:modelValue": t[5] || (t[5] = (u) => i.editableAddressEntry.country = u)
|
3654
3657
|
}, null, 8, ["labelText", "modelValue"])
|
3655
3658
|
], 64)) : (a(), r(_, { key: 0 }, [
|
3656
3659
|
n.addressEntry.streetNo ? (a(), r(_, { key: 0 }, [
|
@@ -3815,7 +3818,7 @@ const Rs = /* @__PURE__ */ F(ws, [["render", qs]]), js = {
|
|
3815
3818
|
};
|
3816
3819
|
function nr(e, t, n, s, i, l) {
|
3817
3820
|
var f;
|
3818
|
-
const d = J,
|
3821
|
+
const d = J, c = Rs, u = qe, g = K;
|
3819
3822
|
return a(), r("div", Ns, [
|
3820
3823
|
n.useSlot ? A(e.$slots, "default", { key: 0 }) : (a(), r(_, { key: 1 }, [
|
3821
3824
|
(f = n.cmdHeadline) != null && f.headlineText || e.editModeContext ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
@@ -3831,7 +3834,7 @@ function nr(e, t, n, s, i, l) {
|
|
3831
3834
|
o("span", { class: "icon-plus" }, null, -1),
|
3832
3835
|
o("span", null, "Add new entry", -1)
|
3833
3836
|
]))) : m("", !0),
|
3834
|
-
(a(!0), r(_, null, q(n.addressData, (h, v) => (a(), k(
|
3837
|
+
(a(!0), r(_, null, q(n.addressData, (h, v) => (a(), k(u, {
|
3835
3838
|
key: "x" + v,
|
3836
3839
|
class: "edit-items",
|
3837
3840
|
showComponentName: !1,
|
@@ -3842,7 +3845,7 @@ function nr(e, t, n, s, i, l) {
|
|
3842
3845
|
}, {
|
3843
3846
|
default: w(() => [
|
3844
3847
|
o("dl", null, [
|
3845
|
-
p(
|
3848
|
+
p(c, {
|
3846
3849
|
addressEntry: h,
|
3847
3850
|
showLabelIcons: n.showLabelIcons,
|
3848
3851
|
showLabelTexts: n.showLabelTexts
|
@@ -3852,7 +3855,7 @@ function nr(e, t, n, s, i, l) {
|
|
3852
3855
|
_: 2
|
3853
3856
|
}, 1032, ["componentProps", "componentPath"]))), 128))
|
3854
3857
|
], 64)) : (a(), r("dl", zs, [
|
3855
|
-
(a(!0), r(_, null, q(n.addressData, (h, v) => (a(), k(
|
3858
|
+
(a(!0), r(_, null, q(n.addressData, (h, v) => (a(), k(c, {
|
3856
3859
|
key: v,
|
3857
3860
|
addressEntry: h,
|
3858
3861
|
showLabelIcons: n.showLabelIcons,
|
@@ -4041,7 +4044,7 @@ function or(e, t, n, s, i, l) {
|
|
4041
4044
|
href: "#",
|
4042
4045
|
role: "button",
|
4043
4046
|
title: n.cmdIcon.tooltip,
|
4044
|
-
onClick: t[0] || (t[0] = S((...
|
4047
|
+
onClick: t[0] || (t[0] = S((...c) => l.onBackToTop && l.onBackToTop(...c), ["prevent"]))
|
4045
4048
|
}, [
|
4046
4049
|
p(d, {
|
4047
4050
|
iconClass: n.cmdIcon.iconClass,
|
@@ -4116,26 +4119,26 @@ const ar = /* @__PURE__ */ F(ir, [["render", or]]), sr = {
|
|
4116
4119
|
}
|
4117
4120
|
}, rr = { class: "cmd-bank-account-data" }, dr = { key: 0 }, ur = ["onClick", "title"], cr = { key: 1 };
|
4118
4121
|
function mr(e, t, n, s, i, l) {
|
4119
|
-
const d = J,
|
4122
|
+
const d = J, c = K;
|
4120
4123
|
return a(), r("div", rr, [
|
4121
4124
|
n.useSlot ? A(e.$slots, "default", { key: 0 }) : (a(), r(_, { key: 1 }, [
|
4122
4125
|
n.cmdHeadline ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
4123
4126
|
o("dl", null, [
|
4124
|
-
(a(!0), r(_, null, q(n.accountData, (
|
4125
|
-
o("dt", null, y(
|
4126
|
-
n.allowCopyByClick &&
|
4127
|
-
o("span", null, y(
|
4127
|
+
(a(!0), r(_, null, q(n.accountData, (u, g) => (a(), r(_, { key: g }, [
|
4128
|
+
o("dt", null, y(u.text), 1),
|
4129
|
+
n.allowCopyByClick && u.allowCopy ? (a(), r("dd", dr, [
|
4130
|
+
o("span", null, y(u.value), 1),
|
4128
4131
|
o("a", {
|
4129
4132
|
href: "#",
|
4130
|
-
onClick: S((f) => l.copyToClipboard(
|
4133
|
+
onClick: S((f) => l.copyToClipboard(u.value), ["prevent"]),
|
4131
4134
|
title: n.cmdIcon.tooltip
|
4132
4135
|
}, [
|
4133
|
-
p(
|
4136
|
+
p(c, {
|
4134
4137
|
iconClass: n.cmdIcon.iconClass,
|
4135
4138
|
type: n.cmdIcon.iconType
|
4136
4139
|
}, null, 8, ["iconClass", "type"])
|
4137
4140
|
], 8, ur)
|
4138
|
-
])) : (a(), r("dd", { key: g }, y(
|
4141
|
+
])) : (a(), r("dd", { key: g }, y(u.value), 1))
|
4139
4142
|
], 64))), 128))
|
4140
4143
|
]),
|
4141
4144
|
n.additionalInformation ? (a(), r("p", cr, y(n.additionalInformation), 1)) : m("", !0)
|
@@ -4243,7 +4246,7 @@ const pr = /* @__PURE__ */ F(sr, [["render", mr]]), fr = {
|
|
4243
4246
|
}
|
4244
4247
|
}, hr = ["role", "aria-labelledby"], gr = ["title"];
|
4245
4248
|
function yr(e, t, n, s, i, l) {
|
4246
|
-
const d = K,
|
4249
|
+
const d = K, c = J;
|
4247
4250
|
return a(), k(Pe, {
|
4248
4251
|
name: n.useTransition ? "fade" : null
|
4249
4252
|
}, {
|
@@ -4258,7 +4261,7 @@ function yr(e, t, n, s, i, l) {
|
|
4258
4261
|
key: 0,
|
4259
4262
|
href: "#",
|
4260
4263
|
class: "close-button",
|
4261
|
-
onClick: t[0] || (t[0] = S((...
|
4264
|
+
onClick: t[0] || (t[0] = S((...u) => l.hideSystemMessage && l.hideSystemMessage(...u), ["prevent"])),
|
4262
4265
|
title: n.iconClose.tooltip
|
4263
4266
|
}, [
|
4264
4267
|
p(d, {
|
@@ -4267,7 +4270,7 @@ function yr(e, t, n, s, i, l) {
|
|
4267
4270
|
}, null, 8, ["iconClass", "type"])
|
4268
4271
|
], 8, gr)) : m("", !0),
|
4269
4272
|
A(e.$slots, "default", {}, () => [
|
4270
|
-
p(
|
4273
|
+
p(c, {
|
4271
4274
|
class: "message-headline",
|
4272
4275
|
cmdIcon: l.headlineIcon,
|
4273
4276
|
headlineText: n.systemMessage,
|
@@ -4461,12 +4464,12 @@ const Ne = /* @__PURE__ */ F(fr, [["render", yr]]), br = {
|
|
4461
4464
|
class: "mandatory-text"
|
4462
4465
|
}, Lr = { key: 1 }, Ir = ["type"], Br = { key: 1 };
|
4463
4466
|
function Dr(e, t, n, s, i, l) {
|
4464
|
-
const d = Ne,
|
4467
|
+
const d = Ne, c = te;
|
4465
4468
|
return a(), r("form", {
|
4466
4469
|
class: x(["cmd-form", { error: i.errorOccurred }]),
|
4467
4470
|
action: n.formAction,
|
4468
4471
|
"data-use-validation": n.useValidation,
|
4469
|
-
onSubmit: t[2] || (t[2] = (...
|
4472
|
+
onSubmit: t[2] || (t[2] = (...u) => l.onSubmit && l.onSubmit(...u)),
|
4470
4473
|
novalidate: n.novalidate,
|
4471
4474
|
method: n.formMethod
|
4472
4475
|
}, [
|
@@ -4480,26 +4483,26 @@ function Dr(e, t, n, s, i, l) {
|
|
4480
4483
|
validationStatus: i.systemMessage.validationStatus,
|
4481
4484
|
systemMessage: i.systemMessage.message
|
4482
4485
|
}, null, 8, ["validationStatus", "systemMessage"])) : m("", !0),
|
4483
|
-
n.useSlot ? A(e.$slots, "default", { key: 1 }) : (a(!0), r(_, { key: 2 }, q(n.formElements, (
|
4486
|
+
n.useSlot ? A(e.$slots, "default", { key: 1 }) : (a(!0), r(_, { key: 2 }, q(n.formElements, (u, g) => (a(), k(c, {
|
4484
4487
|
key: g,
|
4485
|
-
element:
|
4486
|
-
type:
|
4487
|
-
name:
|
4488
|
-
class: x(
|
4489
|
-
id:
|
4490
|
-
modelValue: i.formValues[
|
4491
|
-
"onUpdate:modelValue": (f) => i.formValues[
|
4492
|
-
inputValue:
|
4493
|
-
fieldIconClass:
|
4494
|
-
selectOptions:
|
4495
|
-
labelText:
|
4496
|
-
placeholder:
|
4497
|
-
required:
|
4498
|
-
disabled:
|
4499
|
-
autocomplete:
|
4500
|
-
minlength:
|
4501
|
-
maxlength:
|
4502
|
-
nativeButton:
|
4488
|
+
element: u.element || "input",
|
4489
|
+
type: u.type || "text",
|
4490
|
+
name: u.name,
|
4491
|
+
class: x(u.htmlClass),
|
4492
|
+
id: u.id || l.createHtmlId(),
|
4493
|
+
modelValue: i.formValues[u.name],
|
4494
|
+
"onUpdate:modelValue": (f) => i.formValues[u.name] = f,
|
4495
|
+
inputValue: u.inputValue,
|
4496
|
+
fieldIconClass: u.innerIconClass,
|
4497
|
+
selectOptions: u.selectOptions,
|
4498
|
+
labelText: u.labelText,
|
4499
|
+
placeholder: u.placeholder,
|
4500
|
+
required: u.required,
|
4501
|
+
disabled: u.disabled,
|
4502
|
+
autocomplete: u.autocomplete,
|
4503
|
+
minlength: u.minlength,
|
4504
|
+
maxlength: u.maxlength,
|
4505
|
+
nativeButton: u.nativeButton
|
4503
4506
|
}, null, 8, ["element", "type", "name", "class", "id", "modelValue", "onUpdate:modelValue", "inputValue", "fieldIconClass", "selectOptions", "labelText", "placeholder", "required", "disabled", "autocomplete", "minlength", "maxlength", "nativeButton"]))), 128)),
|
4504
4507
|
l.submitButtonOptions && (l.submitButtonOptions.position === "insideFieldset" || l.submitButtonOptions.position === null) ? (a(), r("div", vr, [
|
4505
4508
|
n.mandatoryText ? (a(), r("small", kr, [
|
@@ -4510,7 +4513,7 @@ function Dr(e, t, n, s, i, l) {
|
|
4510
4513
|
key: 1,
|
4511
4514
|
class: x(["button", { "stretch-on-small-devices": l.cancelButtonOptions.stretchOnSmallDevices, disabled: l.cancelButtonOptions.disabled, cancel: l.cancelButtonOptions.useDefaultStyling }]),
|
4512
4515
|
type: "button",
|
4513
|
-
onClick: t[0] || (t[0] = (...
|
4516
|
+
onClick: t[0] || (t[0] = (...u) => l.cancelFormSubmit && l.cancelFormSubmit(...u))
|
4514
4517
|
}, [
|
4515
4518
|
l.cancelButtonOptions.iconClass ? (a(), r("span", {
|
4516
4519
|
key: 0,
|
@@ -4539,7 +4542,7 @@ function Dr(e, t, n, s, i, l) {
|
|
4539
4542
|
key: 1,
|
4540
4543
|
class: x(["button", { "stretch-on-small-devices": l.cancelButtonOptions.stretchOnSmallDevices, disabled: l.cancelButtonOptions.disabled, cancel: l.cancelButtonOptions.useDefaultStyling }]),
|
4541
4544
|
type: "button",
|
4542
|
-
onClick: t[1] || (t[1] = (...
|
4545
|
+
onClick: t[1] || (t[1] = (...u) => l.cancelFormSubmit && l.cancelFormSubmit(...u))
|
4543
4546
|
}, [
|
4544
4547
|
l.cancelButtonOptions.iconClass ? (a(), r("span", {
|
4545
4548
|
key: 0,
|
@@ -4870,9 +4873,9 @@ const Fr = {
|
|
4870
4873
|
}
|
4871
4874
|
}, Vr = ["innerHTML"], Ar = ["src", "alt", "title"], Pr = ["src", "alt", "title"], Er = ["innerHTML"], Hr = ["innerHTML"], qr = ["src", "alt", "title", "loading"], Rr = ["innerHTML"], jr = ["src", "alt", "title", "loading"];
|
4872
4875
|
function Nr(e, t, n, s, i, l) {
|
4873
|
-
var
|
4874
|
-
const d = te,
|
4875
|
-
return e.editModeContext ? (a(), k(
|
4876
|
+
var u, g, f, h, v, b, O, T, M, B, E, D, U, W, V;
|
4877
|
+
const d = te, c = qe;
|
4878
|
+
return e.editModeContext ? (a(), k(c, {
|
4876
4879
|
key: 0,
|
4877
4880
|
ref: "editComponentWrapper",
|
4878
4881
|
class: "edit-items",
|
@@ -4882,10 +4885,10 @@ function Nr(e, t, n, s, i, l) {
|
|
4882
4885
|
componentProps: { image: n.image, figcaption: n.figcaption },
|
4883
4886
|
componentPath: l.imageComponentPath,
|
4884
4887
|
allowDeleteComponent: !!l.imageSource,
|
4885
|
-
itemProvider: ((
|
4888
|
+
itemProvider: ((u = e.editModeConfig) == null ? void 0 : u.allowAddItem) !== !1 ? l.itemProvider : null
|
4886
4889
|
}, {
|
4887
4890
|
default: w((R) => {
|
4888
|
-
var Y, Q, X, le, ne, ie, re, pe,
|
4891
|
+
var Y, Q, X, le, ne, ie, re, pe, P, Z, de, fe;
|
4889
4892
|
return [
|
4890
4893
|
o("figure", {
|
4891
4894
|
class: x(["cmd-image flex-container no-gap vertical", l.textAlign])
|
@@ -4935,7 +4938,7 @@ function Nr(e, t, n, s, i, l) {
|
|
4935
4938
|
alt: (re = n.image) == null ? void 0 : re.alt,
|
4936
4939
|
title: (pe = n.image) == null ? void 0 : pe.tooltip
|
4937
4940
|
}, null, 8, Pr)) : m("", !0),
|
4938
|
-
(
|
4941
|
+
(P = n.figcaption) != null && P.show && ((Z = n.figcaption) == null ? void 0 : Z.position) !== "top" ? (a(), r(_, { key: 3 }, [
|
4939
4942
|
R.editing ? (a(), k(d, {
|
4940
4943
|
key: 0,
|
4941
4944
|
element: "input",
|
@@ -4980,7 +4983,7 @@ function Nr(e, t, n, s, i, l) {
|
|
4980
4983
|
loading: ((T = n.image) == null ? void 0 : T.lazyLoading) !== !1 ? "lazy" : null,
|
4981
4984
|
onLoad: t[4] || (t[4] = (...R) => l.onImageLoaded && l.onImageLoaded(...R))
|
4982
4985
|
}, null, 40, qr),
|
4983
|
-
((M = n.figcaption) == null ? void 0 : M.position) !== "top" && ((B = n.figcaption) != null && B.text) && ((
|
4986
|
+
((M = n.figcaption) == null ? void 0 : M.position) !== "top" && ((B = n.figcaption) != null && B.text) && ((E = n.figcaption) != null && E.show) ? (a(), r("figcaption", {
|
4984
4987
|
key: 1,
|
4985
4988
|
innerHTML: (D = n.figcaption) == null ? void 0 : D.text
|
4986
4989
|
}, null, 8, Rr)) : m("", !0)
|
@@ -5034,7 +5037,7 @@ const xe = /* @__PURE__ */ F(Fr, [["render", Nr]]), Ur = {
|
|
5034
5037
|
},
|
5035
5038
|
computed: {
|
5036
5039
|
slideButtonsDefault() {
|
5037
|
-
var e, t, n, s, i, l, d,
|
5040
|
+
var e, t, n, s, i, l, d, c;
|
5038
5041
|
return {
|
5039
5042
|
left: {
|
5040
5043
|
iconClass: ((t = (e = this.slideButtons) == null ? void 0 : e.left) == null ? void 0 : t.iconClass) || "icon-chevron-one-stripe-left",
|
@@ -5049,7 +5052,7 @@ const xe = /* @__PURE__ */ F(Fr, [["render", Nr]]), Ur = {
|
|
5049
5052
|
tooltip: this.getMessage("slide_buttons.tooltip.up") || "Previous"
|
5050
5053
|
},
|
5051
5054
|
down: {
|
5052
|
-
iconClass: ((
|
5055
|
+
iconClass: ((c = (d = this.slideButtons) == null ? void 0 : d.down) == null ? void 0 : c.iconClass) || "icon-chevron-one-stripe-down",
|
5053
5056
|
tooltip: this.getMessage("slide_buttons.tooltip.down") || "Next"
|
5054
5057
|
}
|
5055
5058
|
};
|
@@ -5319,7 +5322,7 @@ const Lt = /* @__PURE__ */ F(zr, [["render", Gr]]), Kr = {
|
|
5319
5322
|
}, Jr = ["href", "onClick", "title", "target"], Zr = { key: 1 }, Qr = { key: 1 }, Xr = { key: 0 };
|
5320
5323
|
function $r(e, t, n, s, i, l) {
|
5321
5324
|
var f;
|
5322
|
-
const d = J,
|
5325
|
+
const d = J, c = Lt, u = xe, g = K;
|
5323
5326
|
return a(), r("div", {
|
5324
5327
|
class: x([
|
5325
5328
|
"cmd-thumbnail-scroller",
|
@@ -5336,7 +5339,7 @@ function $r(e, t, n, s, i, l) {
|
|
5336
5339
|
o("div", {
|
5337
5340
|
class: x(["inner-thumbnail-wrapper", { box: n.styleAsBox }])
|
5338
5341
|
}, [
|
5339
|
-
i.showSlidebuttons ? (a(), k(
|
5342
|
+
i.showSlidebuttons ? (a(), k(c, {
|
5340
5343
|
key: 0,
|
5341
5344
|
onClick: S(l.showPrevItem, ["prevent"]),
|
5342
5345
|
slideButtonType: "left"
|
@@ -5347,7 +5350,7 @@ function $r(e, t, n, s, i, l) {
|
|
5347
5350
|
}, {
|
5348
5351
|
default: w(() => [
|
5349
5352
|
(a(!0), r(_, null, q(i.items, (h, v) => (a(), r("li", { key: v }, [
|
5350
|
-
e.editModeContext ? n.contentType === "image" ? (a(), k(
|
5353
|
+
e.editModeContext ? n.contentType === "image" ? (a(), k(u, {
|
5351
5354
|
key: 1,
|
5352
5355
|
image: h.image,
|
5353
5356
|
figcaption: h.figcaption,
|
@@ -5368,7 +5371,7 @@ function $r(e, t, n, s, i, l) {
|
|
5368
5371
|
title: l.tooltip,
|
5369
5372
|
target: n.executeOnClick === "url" ? "_blank" : null
|
5370
5373
|
}, [
|
5371
|
-
n.contentType === "image" ? (a(), k(
|
5374
|
+
n.contentType === "image" ? (a(), k(u, {
|
5372
5375
|
key: 0,
|
5373
5376
|
image: h.image,
|
5374
5377
|
figcaption: h.figcaption
|
@@ -5395,7 +5398,7 @@ function $r(e, t, n, s, i, l) {
|
|
5395
5398
|
]),
|
5396
5399
|
_: 1
|
5397
5400
|
}),
|
5398
|
-
i.showSlidebuttons ? (a(), k(
|
5401
|
+
i.showSlidebuttons ? (a(), k(c, {
|
5399
5402
|
key: 1,
|
5400
5403
|
onClick: S(l.showNextItem, ["prevent"]),
|
5401
5404
|
slideButtons: n.cmdSlideButtons.next
|
@@ -5546,7 +5549,7 @@ const Pi = /* @__PURE__ */ F(Yr, [["render", $r]]), ve = (e) => {
|
|
5546
5549
|
},
|
5547
5550
|
computed: {
|
5548
5551
|
fancyBoxOptionsProperties() {
|
5549
|
-
var e, t, n, s, i, l, d,
|
5552
|
+
var e, t, n, s, i, l, d, c, u;
|
5550
5553
|
return {
|
5551
5554
|
closeIcon: {
|
5552
5555
|
show: !0,
|
@@ -5583,7 +5586,7 @@ const Pi = /* @__PURE__ */ F(Yr, [["render", $r]]), ve = (e) => {
|
|
5583
5586
|
buttonText: "Confirm",
|
5584
5587
|
tooltip: "Confirm",
|
5585
5588
|
buttonType: "primary",
|
5586
|
-
...(
|
5589
|
+
...(u = (c = this.fancyBoxOptions) == null ? void 0 : c.submitButtons) == null ? void 0 : u.confirm
|
5587
5590
|
}
|
5588
5591
|
}
|
5589
5592
|
};
|
@@ -5708,8 +5711,8 @@ const td = Ei, nd = ["aria-label"], id = { class: "flex-container" }, ld = {
|
|
5708
5711
|
class: "flex-container flex-none"
|
5709
5712
|
}, fd = ["title"], hd = { key: 1 }, gd = ["title"], yd = { key: 1 };
|
5710
5713
|
function bd(e, t, n, s, i, l) {
|
5711
|
-
var h, v, b, O, T, M, B,
|
5712
|
-
const d = J,
|
5714
|
+
var h, v, b, O, T, M, B, E, D, U, W, V, R, Y, Q, X, le, ne, ie, re, pe, P, Z, de, fe, oe, Le, Ie, Be, De, Me;
|
5715
|
+
const d = J, c = K, u = xe, g = Lt, f = Pi;
|
5713
5716
|
return a(), r("dialog", {
|
5714
5717
|
ref: "dialog",
|
5715
5718
|
class: x(["cmd-fancybox", { "show-overlay": e.showOverlay, image: e.fancyBoxImageUrl || e.fancyBoxGallery, "image-gallery": e.fancyBoxGallery }]),
|
@@ -5726,19 +5729,19 @@ function bd(e, t, n, s, i, l) {
|
|
5726
5729
|
title: (T = e.fancyBoxOptionsProperties.printButtons.color) == null ? void 0 : T.tooltip,
|
5727
5730
|
onClick: t[0] || (t[0] = S((ue) => e.printPage("color"), ["prevent"]))
|
5728
5731
|
}, [
|
5729
|
-
p(
|
5732
|
+
p(c, {
|
5730
5733
|
iconClass: (M = e.fancyBoxOptionsProperties.printButtons.color) == null ? void 0 : M.iconClass,
|
5731
5734
|
type: (B = e.fancyBoxOptionsProperties.printButtons.color) == null ? void 0 : B.iconType
|
5732
5735
|
}, null, 8, ["iconClass", "type"])
|
5733
5736
|
], 8, od)) : m("", !0),
|
5734
|
-
e.showPrintButtons && ((
|
5737
|
+
e.showPrintButtons && ((E = e.fancyBoxOptionsProperties.printButtons) != null && E.grayscale) ? (a(), r("a", {
|
5735
5738
|
key: 1,
|
5736
5739
|
href: "#",
|
5737
5740
|
class: "button print-grayscale",
|
5738
5741
|
title: (D = e.fancyBoxOptionsProperties.printButtons.grayscale) == null ? void 0 : D.tooltip,
|
5739
5742
|
onClick: t[1] || (t[1] = S((ue) => e.printPage("grayscale"), ["prevent"]))
|
5740
5743
|
}, [
|
5741
|
-
p(
|
5744
|
+
p(c, {
|
5742
5745
|
iconClass: (U = e.fancyBoxOptionsProperties.printButtons.grayscale) == null ? void 0 : U.iconClass,
|
5743
5746
|
type: (W = e.fancyBoxOptionsProperties.printButtons.grayscale) == null ? void 0 : W.iconType
|
5744
5747
|
}, null, 8, ["iconClass", "type"])
|
@@ -5752,7 +5755,7 @@ function bd(e, t, n, s, i, l) {
|
|
5752
5755
|
ref: "close-dialog",
|
5753
5756
|
onClick: t[2] || (t[2] = S((...ue) => e.close && e.close(...ue), ["prevent"]))
|
5754
5757
|
}, [
|
5755
|
-
p(
|
5758
|
+
p(c, {
|
5756
5759
|
iconClass: (Y = e.fancyBoxOptionsProperties.closeIcon) == null ? void 0 : Y.iconClass,
|
5757
5760
|
type: (Q = e.fancyBoxOptionsProperties.closeIcon) == null ? void 0 : Q.iconType
|
5758
5761
|
}, null, 8, ["iconClass", "type"])
|
@@ -5763,7 +5766,7 @@ function bd(e, t, n, s, i, l) {
|
|
5763
5766
|
class: x(["outer-content-wrapper", { grayscale: e.printInGrayscale }])
|
5764
5767
|
}, [
|
5765
5768
|
e.fancyBoxImageUrl || (X = e.cmdImage) != null && X.image ? (a(), r("div", rd, [
|
5766
|
-
p(
|
5769
|
+
p(u, {
|
5767
5770
|
image: e.largeSingleImage,
|
5768
5771
|
figcaption: (le = e.cmdImage) == null ? void 0 : le.figcaption
|
5769
5772
|
}, null, 8, ["image", "figcaption"])
|
@@ -5776,7 +5779,7 @@ function bd(e, t, n, s, i, l) {
|
|
5776
5779
|
onClick: S(e.showPrevItem, ["prevent"]),
|
5777
5780
|
slideButtonType: "left"
|
5778
5781
|
}, null, 8, ["onClick"]),
|
5779
|
-
p(
|
5782
|
+
p(u, {
|
5780
5783
|
image: e.largeGalleryImage,
|
5781
5784
|
figcaption: e.fancyBoxGallery[e.index].figcaption
|
5782
5785
|
}, null, 8, ["image", "figcaption"]),
|
@@ -5793,10 +5796,10 @@ function bd(e, t, n, s, i, l) {
|
|
5793
5796
|
onClick: t[3] || (t[3] = (...ue) => e.cancel && e.cancel(...ue)),
|
5794
5797
|
title: (ie = e.fancyBoxOptionsProperties.submitButtons.cancel) == null ? void 0 : ie.tooltip
|
5795
5798
|
}, [
|
5796
|
-
(re = e.fancyBoxOptionsProperties.submitButtons.cancel) != null && re.iconClass ? (a(), k(
|
5799
|
+
(re = e.fancyBoxOptionsProperties.submitButtons.cancel) != null && re.iconClass ? (a(), k(c, {
|
5797
5800
|
key: 0,
|
5798
5801
|
iconClass: (pe = e.fancyBoxOptionsProperties.submitButtons.cancel) == null ? void 0 : pe.iconClass,
|
5799
|
-
type: (
|
5802
|
+
type: (P = e.fancyBoxOptionsProperties.submitButtons.cancel) == null ? void 0 : P.iconType
|
5800
5803
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
5801
5804
|
(Z = e.fancyBoxOptionsProperties.submitButtons.cancel) != null && Z.buttonText ? (a(), r("span", hd, y((de = e.fancyBoxOptionsProperties.submitButtons.cancel) == null ? void 0 : de.buttonText), 1)) : m("", !0)
|
5802
5805
|
], 8, fd)) : m("", !0),
|
@@ -5805,7 +5808,7 @@ function bd(e, t, n, s, i, l) {
|
|
5805
5808
|
onClick: t[4] || (t[4] = (...ue) => e.confirm && e.confirm(...ue)),
|
5806
5809
|
title: (oe = e.fancyBoxOptionsProperties.submitButtons.cancel) == null ? void 0 : oe.tooltip
|
5807
5810
|
}, [
|
5808
|
-
(Le = e.fancyBoxOptionsProperties.submitButtons.confirm) != null && Le.iconClass ? (a(), k(
|
5811
|
+
(Le = e.fancyBoxOptionsProperties.submitButtons.confirm) != null && Le.iconClass ? (a(), k(c, {
|
5809
5812
|
key: 0,
|
5810
5813
|
iconClass: (Ie = e.fancyBoxOptionsProperties.submitButtons.confirm) == null ? void 0 : Ie.iconClass,
|
5811
5814
|
type: (Be = e.fancyBoxOptionsProperties.submitButtons.confirm) == null ? void 0 : Be.iconType
|
@@ -6127,10 +6130,10 @@ const xd = /* @__PURE__ */ F(td, [["render", bd]]), Cd = {
|
|
6127
6130
|
class: "flex-container"
|
6128
6131
|
}, _d = ["innerHTML"];
|
6129
6132
|
function Od(e, t, n, s, i, l) {
|
6130
|
-
const d = J,
|
6133
|
+
const d = J, c = te, u = Ai;
|
6131
6134
|
return a(), r("div", vd, [
|
6132
6135
|
n.cmdHeadline ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
6133
|
-
p(
|
6136
|
+
p(u, I({
|
6134
6137
|
onSubmit: l.onSubmit,
|
6135
6138
|
class: { "send-success": i.sendSuccessfully },
|
6136
6139
|
novalidate: "novalidate"
|
@@ -6141,10 +6144,10 @@ function Od(e, t, n, s, i, l) {
|
|
6141
6144
|
ref: "form"
|
6142
6145
|
}), {
|
6143
6146
|
default: w(() => {
|
6144
|
-
var g, f, h, v, b, O, T, M, B,
|
6147
|
+
var g, f, h, v, b, O, T, M, B, E, D, U, W, V, R, Y, Q, X, le, ne, ie, re, pe, P, Z, de, fe, oe, Le, Ie, Be, De, Me, ue, at, Ge, st, rt, dt, ut, ct;
|
6145
6148
|
return [
|
6146
6149
|
n.configuration.salutation ? (a(), r("div", kd, [
|
6147
|
-
p(
|
6150
|
+
p(c, {
|
6148
6151
|
element: "input",
|
6149
6152
|
type: "radio",
|
6150
6153
|
labelText: e.getMessage("basic_form.labeltext.salutation_male"),
|
@@ -6155,7 +6158,7 @@ function Od(e, t, n, s, i, l) {
|
|
6155
6158
|
"onUpdate:modelValue": t[0] || (t[0] = (G) => i.formData.salutation.value = G),
|
6156
6159
|
i18n: e.i18n
|
6157
6160
|
}, null, 8, ["labelText", "name", "replaceInputType", "modelValue", "i18n"]),
|
6158
|
-
p(
|
6161
|
+
p(c, {
|
6159
6162
|
element: "input",
|
6160
6163
|
type: "radio",
|
6161
6164
|
labelText: e.getMessage("basic_form.labeltext.salutation_female"),
|
@@ -6169,7 +6172,7 @@ function Od(e, t, n, s, i, l) {
|
|
6169
6172
|
])) : m("", !0),
|
6170
6173
|
A(e.$slots, "top"),
|
6171
6174
|
n.configuration.lastName || n.configuration.firstName ? (a(), r("div", wd, [
|
6172
|
-
n.configuration.lastName ? (a(), k(
|
6175
|
+
n.configuration.lastName ? (a(), k(c, {
|
6173
6176
|
key: 0,
|
6174
6177
|
element: "input",
|
6175
6178
|
type: ((b = n.configuration.lastName) == null ? void 0 : b.type) || "text",
|
@@ -6184,7 +6187,7 @@ function Od(e, t, n, s, i, l) {
|
|
6184
6187
|
i18n: e.i18n,
|
6185
6188
|
showStatusIcon: !1
|
6186
6189
|
}, null, 8, ["type", "labelText", "required", "name", "placeholder", "modelValue", "status", "i18n"])) : m("", !0),
|
6187
|
-
n.configuration.firstName ? (a(), k(
|
6190
|
+
n.configuration.firstName ? (a(), k(c, {
|
6188
6191
|
key: 1,
|
6189
6192
|
element: "input",
|
6190
6193
|
type: ((M = n.configuration.firstName) == null ? void 0 : M.type) || "text",
|
@@ -6192,7 +6195,7 @@ function Od(e, t, n, s, i, l) {
|
|
6192
6195
|
labelText: e.getMessage("basic_form.labeltext.first_name"),
|
6193
6196
|
placeholder: e.getMessage("basic_form.placeholder.first_name"),
|
6194
6197
|
required: (B = n.configuration.firstName) == null ? void 0 : B.required,
|
6195
|
-
name: (
|
6198
|
+
name: (E = n.configuration.firstName) == null ? void 0 : E.name,
|
6196
6199
|
modelValue: i.formData.firstName.value,
|
6197
6200
|
"onUpdate:modelValue": t[3] || (t[3] = (G) => i.formData.firstName.value = G),
|
6198
6201
|
status: i.formData.firstName.error ? "error" : "",
|
@@ -6200,7 +6203,7 @@ function Od(e, t, n, s, i, l) {
|
|
6200
6203
|
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0)
|
6201
6204
|
])) : m("", !0),
|
6202
6205
|
n.configuration.email || n.configuration.phone ? (a(), r("div", Td, [
|
6203
|
-
n.configuration.email ? (a(), k(
|
6206
|
+
n.configuration.email ? (a(), k(c, {
|
6204
6207
|
key: 0,
|
6205
6208
|
element: "input",
|
6206
6209
|
type: ((D = n.configuration.email) == null ? void 0 : D.type) || "email",
|
@@ -6215,7 +6218,7 @@ function Od(e, t, n, s, i, l) {
|
|
6215
6218
|
i18n: e.i18n,
|
6216
6219
|
showStatusIcon: !1
|
6217
6220
|
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0),
|
6218
|
-
n.configuration.phone ? (a(), k(
|
6221
|
+
n.configuration.phone ? (a(), k(c, {
|
6219
6222
|
key: 1,
|
6220
6223
|
element: "input",
|
6221
6224
|
type: ((V = n.configuration.phone) == null ? void 0 : V.type) || "tel",
|
@@ -6231,7 +6234,7 @@ function Od(e, t, n, s, i, l) {
|
|
6231
6234
|
}, null, 8, ["type", "labelText", "placeholder", "modelValue", "required", "name", "status", "i18n"])) : m("", !0)
|
6232
6235
|
])) : m("", !0),
|
6233
6236
|
n.configuration.streetNo || n.configuration.streetNo || n.configuration.zip && n.configuration.city ? (a(), r("div", Sd, [
|
6234
|
-
n.configuration.country ? (a(), k(
|
6237
|
+
n.configuration.country ? (a(), k(c, {
|
6235
6238
|
key: 0,
|
6236
6239
|
element: "select",
|
6237
6240
|
labelText: e.getMessage("basic_form.labeltext.country"),
|
@@ -6246,7 +6249,7 @@ function Od(e, t, n, s, i, l) {
|
|
6246
6249
|
status: i.formData.country.error ? "error" : "",
|
6247
6250
|
i18n: e.i18n
|
6248
6251
|
}, null, 8, ["labelText", "selectOptions", "required", "name", "modelValue", "status", "i18n", "onUpdate:modelValue"])) : m("", !0),
|
6249
|
-
n.configuration.streetNo ? (a(), k(
|
6252
|
+
n.configuration.streetNo ? (a(), k(c, {
|
6250
6253
|
key: 1,
|
6251
6254
|
element: "input",
|
6252
6255
|
type: ((ne = n.configuration.streetNo) == null ? void 0 : ne.type) || "text",
|
@@ -6259,13 +6262,13 @@ function Od(e, t, n, s, i, l) {
|
|
6259
6262
|
status: i.formData.streetNo.error ? "error" : "",
|
6260
6263
|
i18n: e.i18n
|
6261
6264
|
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0),
|
6262
|
-
n.configuration.pobox ? (a(), k(
|
6265
|
+
n.configuration.pobox ? (a(), k(c, {
|
6263
6266
|
key: 2,
|
6264
6267
|
element: "input",
|
6265
6268
|
type: ((pe = n.configuration.pobox) == null ? void 0 : pe.type) || "text",
|
6266
6269
|
labelText: e.getMessage("basic_form.labeltext.pobox"),
|
6267
6270
|
placeholder: e.getMessage("basic_form.placeholder.pobox"),
|
6268
|
-
required: (
|
6271
|
+
required: (P = n.configuration.pobox) == null ? void 0 : P.required,
|
6269
6272
|
name: (Z = n.configuration.pobox) == null ? void 0 : Z.name,
|
6270
6273
|
modelValue: i.formData.pobox.value,
|
6271
6274
|
"onUpdate:modelValue": t[8] || (t[8] = (G) => i.formData.pobox.value = G),
|
@@ -6275,7 +6278,7 @@ function Od(e, t, n, s, i, l) {
|
|
6275
6278
|
o("div", {
|
6276
6279
|
class: x(["input-wrapper", i.cityBeforeZip ? "order-city-zip" : "order-zip-city"])
|
6277
6280
|
}, [
|
6278
|
-
n.configuration.zip ? (a(), k(
|
6281
|
+
n.configuration.zip ? (a(), k(c, {
|
6279
6282
|
key: 0,
|
6280
6283
|
element: "input",
|
6281
6284
|
class: "input-zip",
|
@@ -6289,7 +6292,7 @@ function Od(e, t, n, s, i, l) {
|
|
6289
6292
|
status: i.formData.zip.error ? "error" : "",
|
6290
6293
|
i18n: e.i18n
|
6291
6294
|
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0),
|
6292
|
-
n.configuration.city ? (a(), k(
|
6295
|
+
n.configuration.city ? (a(), k(c, {
|
6293
6296
|
key: 1,
|
6294
6297
|
element: "input",
|
6295
6298
|
type: ((Le = n.configuration.city) == null ? void 0 : Le.type) || "text",
|
@@ -6303,7 +6306,7 @@ function Od(e, t, n, s, i, l) {
|
|
6303
6306
|
i18n: e.i18n
|
6304
6307
|
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0)
|
6305
6308
|
], 2),
|
6306
|
-
n.configuration.additionalAddressInfo ? (a(), k(
|
6309
|
+
n.configuration.additionalAddressInfo ? (a(), k(c, {
|
6307
6310
|
key: 3,
|
6308
6311
|
element: "input",
|
6309
6312
|
type: ((De = n.configuration.additionalAddressInfo) == null ? void 0 : De.type) || "text",
|
@@ -6317,7 +6320,7 @@ function Od(e, t, n, s, i, l) {
|
|
6317
6320
|
i18n: e.i18n
|
6318
6321
|
}, null, 8, ["type", "labelText", "placeholder", "required", "name", "modelValue", "status", "i18n"])) : m("", !0)
|
6319
6322
|
])) : m("", !0),
|
6320
|
-
n.configuration.userMessage ? (a(), k(
|
6323
|
+
n.configuration.userMessage ? (a(), k(c, {
|
6321
6324
|
key: 4,
|
6322
6325
|
element: ((at = n.configuration.userMessage) == null ? void 0 : at.element) || "textarea",
|
6323
6326
|
labelText: e.getMessage("basic_form.labeltext.user_message"),
|
@@ -6333,7 +6336,7 @@ function Od(e, t, n, s, i, l) {
|
|
6333
6336
|
showStatusIcon: !1
|
6334
6337
|
}, null, 8, ["element", "labelText", "placeholder", "required", "name", "textCharactersLeft", "maxlength", "modelValue", "status", "i18n"])) : m("", !0),
|
6335
6338
|
A(e.$slots, "bottom"),
|
6336
|
-
n.configuration.acceptPrivacy ? (a(), k(
|
6339
|
+
n.configuration.acceptPrivacy ? (a(), k(c, {
|
6337
6340
|
key: 5,
|
6338
6341
|
element: "input",
|
6339
6342
|
type: "checkbox",
|
@@ -6386,9 +6389,9 @@ const Hi = /* @__PURE__ */ F(Cd, [["render", Od]]), Ld = {
|
|
6386
6389
|
}
|
6387
6390
|
}, Id = ["src", "alt"], Bd = ["title"], Dd = { key: 2 }, Md = ["title"], Fd = ["src", "alt"];
|
6388
6391
|
function Vd(e, t, n, s, i, l) {
|
6389
|
-
var d,
|
6392
|
+
var d, c, u, g, f, h, v, b, O, T, M, B, E, D, U, W, V, R, Y, Q, X, le;
|
6390
6393
|
return a(), r(_, null, [
|
6391
|
-
(d = n.image) != null && d.src && (((
|
6394
|
+
(d = n.image) != null && d.src && (((c = n.image) == null ? void 0 : c.position) === "left" || ((u = n.image) == null ? void 0 : u.position) === "top" || !((g = n.image) != null && g.position)) ? (a(), r("img", {
|
6392
6395
|
key: 0,
|
6393
6396
|
src: (f = n.image) == null ? void 0 : f.src,
|
6394
6397
|
alt: (h = n.image) == null ? void 0 : h.alt
|
@@ -6399,7 +6402,7 @@ function Vd(e, t, n, s, i, l) {
|
|
6399
6402
|
title: (B = n.icon) == null ? void 0 : B.tooltip
|
6400
6403
|
}, null, 10, Bd)) : m("", !0),
|
6401
6404
|
n.text ? (a(), r("span", Dd, y(n.text), 1)) : m("", !0),
|
6402
|
-
(
|
6405
|
+
(E = n.icon) != null && E.iconClass && (((D = n.icon) == null ? void 0 : D.position) === "right" || ((U = n.icon) == null ? void 0 : U.position) === "bottom") ? (a(), r("span", {
|
6403
6406
|
key: 3,
|
6404
6407
|
class: x((W = n.icon) == null ? void 0 : W.iconClass),
|
6405
6408
|
title: (V = n.icon) == null ? void 0 : V.tooltip
|
@@ -6504,15 +6507,15 @@ const Ad = /* @__PURE__ */ F(Ld, [["render", Vd]]), Pd = {
|
|
6504
6507
|
}
|
6505
6508
|
}, Ed = ["href", "target", "title"], Hd = ["title"];
|
6506
6509
|
function qd(e, t, n, s, i, l) {
|
6507
|
-
var
|
6508
|
-
const d = Ad,
|
6510
|
+
var u, g, f;
|
6511
|
+
const d = Ad, c = we("router-link");
|
6509
6512
|
return n.linkType === "href" ? (a(), r("a", {
|
6510
6513
|
key: 0,
|
6511
6514
|
href: n.path,
|
6512
6515
|
target: n.target,
|
6513
6516
|
class: x(["cmd-link", { button: n.styleAsButton, primary: n.primaryButton, box: n.styleAsBox, fancybox: n.fancybox }]),
|
6514
6517
|
onClick: t[0] || (t[0] = S((h) => l.emitClick(h, "href"), ["prevent"])),
|
6515
|
-
title: (
|
6518
|
+
title: (u = n.icon) == null ? void 0 : u.tooltip
|
6516
6519
|
}, [
|
6517
6520
|
p(d, {
|
6518
6521
|
text: n.text,
|
@@ -6524,7 +6527,7 @@ function qd(e, t, n, s, i, l) {
|
|
6524
6527
|
]),
|
6525
6528
|
_: 3
|
6526
6529
|
}, 8, ["text", "icon", "image"])
|
6527
|
-
], 10, Ed)) : n.linkType === "router" ? (a(), k(
|
6530
|
+
], 10, Ed)) : n.linkType === "router" ? (a(), k(c, {
|
6528
6531
|
key: 1,
|
6529
6532
|
to: n.path,
|
6530
6533
|
class: x(["cmd-link", { button: n.styleAsButton, primary: n.primaryButton, box: n.styleAsBox, fancybox: n.fancybox }]),
|
@@ -6603,10 +6606,10 @@ const Re = /* @__PURE__ */ F(Pd, [["render", qd]]), Rd = {
|
|
6603
6606
|
class: "input-wrapper"
|
6604
6607
|
};
|
6605
6608
|
function zd(e, t, n, s, i, l) {
|
6606
|
-
var g, f, h, v, b, O, T, M, B,
|
6607
|
-
const d = Re,
|
6609
|
+
var g, f, h, v, b, O, T, M, B, E, D, U, W;
|
6610
|
+
const d = Re, c = we("CmdListOfLinksItem", !0), u = te;
|
6608
6611
|
return e.editing ? (a(), r("div", Ud, [
|
6609
|
-
p(
|
6612
|
+
p(u, {
|
6610
6613
|
element: "input",
|
6611
6614
|
type: "text",
|
6612
6615
|
labelText: "Linktext",
|
@@ -6626,11 +6629,11 @@ function zd(e, t, n, s, i, l) {
|
|
6626
6629
|
tooltip: (T = n.link) == null ? void 0 : T.tooltip,
|
6627
6630
|
styleAsButton: (M = n.link) == null ? void 0 : M.styleAsButton,
|
6628
6631
|
primaryButton: (B = n.link) == null ? void 0 : B.primaryButton,
|
6629
|
-
styleAsBox: (
|
6632
|
+
styleAsBox: (E = n.link) == null ? void 0 : E.styleAsBox,
|
6630
6633
|
onClick: t[0] || (t[0] = (V) => l.emitClick(V, n.link))
|
6631
6634
|
}, null, 8, ["linkType", "text", "path", "target", "icon", "fancybox", "tooltip", "styleAsButton", "primaryButton", "styleAsBox"]),
|
6632
6635
|
(U = (D = n.link) == null ? void 0 : D.children) != null && U.length ? (a(), r("ul", Nd, [
|
6633
|
-
(a(!0), r(_, null, q((W = n.link) == null ? void 0 : W.children, (V, R) => (a(), k(
|
6636
|
+
(a(!0), r(_, null, q((W = n.link) == null ? void 0 : W.children, (V, R) => (a(), k(c, {
|
6634
6637
|
key: R,
|
6635
6638
|
link: V
|
6636
6639
|
}, null, 8, ["link"]))), 128))
|
@@ -6782,7 +6785,7 @@ const Wd = /* @__PURE__ */ F(Rd, [["render", zd]]), Gd = {
|
|
6782
6785
|
}, Kd = { key: 1 }, Yd = ["href"], Jd = { class: "tag" };
|
6783
6786
|
function Zd(e, t, n, s, i, l) {
|
6784
6787
|
var f;
|
6785
|
-
const d = J,
|
6788
|
+
const d = J, c = Wd, u = qe, g = xe;
|
6786
6789
|
return a(), r("div", {
|
6787
6790
|
class: x([
|
6788
6791
|
"cmd-list",
|
@@ -6801,7 +6804,7 @@ function Zd(e, t, n, s, i, l) {
|
|
6801
6804
|
}, [
|
6802
6805
|
n.listType === "links" ? (a(), r(_, { key: 0 }, [
|
6803
6806
|
e.editModeContext ? (a(), r("li", Kd, [
|
6804
|
-
(a(!0), r(_, null, q(e.links, (h, v) => (a(), k(
|
6807
|
+
(a(!0), r(_, null, q(e.links, (h, v) => (a(), k(u, {
|
6805
6808
|
key: "x" + v,
|
6806
6809
|
class: "edit-items",
|
6807
6810
|
showComponentName: !1,
|
@@ -6813,7 +6816,7 @@ function Zd(e, t, n, s, i, l) {
|
|
6813
6816
|
itemProvider: l.itemProvider
|
6814
6817
|
}, {
|
6815
6818
|
default: w(() => [
|
6816
|
-
p(
|
6819
|
+
p(c, {
|
6817
6820
|
class: x({ active: n.sectionAnchors && n.activeSection === v }),
|
6818
6821
|
link: h
|
6819
6822
|
}, null, 8, ["class", "link"])
|
@@ -6829,7 +6832,7 @@ function Zd(e, t, n, s, i, l) {
|
|
6829
6832
|
o("span", { class: "icon-plus" }, null, -1),
|
6830
6833
|
o("span", null, "Add new entry", -1)
|
6831
6834
|
]))) : m("", !0)
|
6832
|
-
])) : (a(!0), r(_, { key: 0 }, q(n.items, (h, v) => (a(), k(
|
6835
|
+
])) : (a(!0), r(_, { key: 0 }, q(n.items, (h, v) => (a(), k(c, {
|
6833
6836
|
key: v,
|
6834
6837
|
class: x({ active: n.sectionAnchors && n.activeSection === v }),
|
6835
6838
|
link: h,
|
@@ -7231,8 +7234,8 @@ const $d = ["title"], eu = {
|
|
7231
7234
|
class: "box-footer"
|
7232
7235
|
};
|
7233
7236
|
function Fu(e, t, n, s, i, l) {
|
7234
|
-
var h, v, b, O, T, M, B,
|
7235
|
-
const d = J,
|
7237
|
+
var h, v, b, O, T, M, B, E, D, U, W;
|
7238
|
+
const d = J, c = K, u = xe, g = Re, f = Cn;
|
7236
7239
|
return n.boxType === "content" ? (a(), r("div", {
|
7237
7240
|
key: 0,
|
7238
7241
|
ref: "cmdBox",
|
@@ -7255,7 +7258,7 @@ function Fu(e, t, n, s, i, l) {
|
|
7255
7258
|
onClick: t[0] || (t[0] = S((...V) => l.toggleContentVisibility && l.toggleContentVisibility(...V), ["prevent"]))
|
7256
7259
|
}, [
|
7257
7260
|
(h = n.useSlots) != null && h.includes("header") ? A(e.$slots, "header", { key: 0 }) : (v = n.cmdHeadline) != null && v.headlineText && n.headlinePosition === "header" ? (a(), k(d, j(I({ key: 1 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
7258
|
-
p(
|
7261
|
+
p(c, {
|
7259
7262
|
iconClass: i.open ? n.iconOpen.iconClass : n.iconClosed.iconClass,
|
7260
7263
|
type: i.open ? n.iconOpen.iconType : n.iconClosed.iconType
|
7261
7264
|
}, null, 8, ["iconClass", "type"])
|
@@ -7281,7 +7284,7 @@ function Fu(e, t, n, s, i, l) {
|
|
7281
7284
|
return [
|
7282
7285
|
(V = n.cmdHeadline) != null && V.headlineText && n.headlinePosition === "body" ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
7283
7286
|
n.cmdIcon !== void 0 ? (a(), r("div", tu, [
|
7284
|
-
p(
|
7287
|
+
p(c, {
|
7285
7288
|
iconClass: n.cmdIcon.iconClass,
|
7286
7289
|
type: n.cmdIcon.type
|
7287
7290
|
}, null, 8, ["iconClass", "type"])
|
@@ -7311,13 +7314,13 @@ function Fu(e, t, n, s, i, l) {
|
|
7311
7314
|
key: 1,
|
7312
7315
|
class: x(["inner-box-body-wrapper", { "allow-scroll": n.allowContentToScroll }])
|
7313
7316
|
}, [
|
7314
|
-
n.cmdImage ? (a(), k(
|
7315
|
-
(
|
7317
|
+
n.cmdImage ? (a(), k(u, j(I({ key: 0 }, n.cmdImage)), null, 16)) : m("", !0),
|
7318
|
+
(E = n.cmdHeadline) != null && E.headlineText && n.headlinePosition === "body" || n.textBody ? (a(), r("div", {
|
7316
7319
|
key: 1,
|
7317
7320
|
class: x({ "box-body-padding": n.useBoxBodyPadding, "allow-scroll": n.allowContentToScroll })
|
7318
7321
|
}, [
|
7319
7322
|
n.cmdIcon !== void 0 ? (a(), r("div", iu, [
|
7320
|
-
p(
|
7323
|
+
p(c, j(Ve(n.cmdIcon)), null, 16)
|
7321
7324
|
])) : m("", !0),
|
7322
7325
|
(D = n.cmdHeadline) != null && D.headlineText && n.headlinePosition === "body" ? (a(), k(d, j(I({ key: 1 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
7323
7326
|
n.textBody ? (a(), r("p", {
|
@@ -7619,17 +7622,17 @@ const Vu = { class: "cmd-box-wrapper" }, Au = {
|
|
7619
7622
|
class: "options-wrapper"
|
7620
7623
|
}, Eu = ["title"];
|
7621
7624
|
function Hu(e, t, n, s, i, l) {
|
7622
|
-
const d = J,
|
7625
|
+
const d = J, c = K;
|
7623
7626
|
return a(), r("div", Vu, [
|
7624
7627
|
n.cmdHeadline.headlineText || n.allowUserToToggleOrientation ? (a(), r("div", Au, [
|
7625
7628
|
n.cmdHeadline.headlineText ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
7626
7629
|
n.allowUserToToggleOrientation ? (a(), r("div", Pu, [
|
7627
7630
|
o("a", {
|
7628
7631
|
href: "#",
|
7629
|
-
onClick: t[0] || (t[0] = S((...
|
7632
|
+
onClick: t[0] || (t[0] = S((...u) => l.toggleOrientation && l.toggleOrientation(...u), ["prevent"])),
|
7630
7633
|
title: i.rowView ? n.iconRowView.tooltip : n.iconGridView.tooltip
|
7631
7634
|
}, [
|
7632
|
-
p(
|
7635
|
+
p(c, {
|
7633
7636
|
iconClass: i.rowView ? n.iconGridView.iconClass : n.iconRowView.iconClass,
|
7634
7637
|
type: i.rowView ? n.iconGridView.iconType : n.iconRowView.iconType
|
7635
7638
|
}, null, 8, ["iconClass", "type"])
|
@@ -7652,7 +7655,7 @@ function Hu(e, t, n, s, i, l) {
|
|
7652
7655
|
boxToggled: l.boxToggled,
|
7653
7656
|
boxIsOpen: l.boxIsOpen,
|
7654
7657
|
rowView: i.rowView,
|
7655
|
-
onToggleCollapse: t[1] || (t[1] = (...
|
7658
|
+
onToggleCollapse: t[1] || (t[1] = (...u) => l.boxIsToggled && l.boxIsToggled(...u))
|
7656
7659
|
})
|
7657
7660
|
], 2)
|
7658
7661
|
]);
|
@@ -7699,40 +7702,40 @@ const qu = {
|
|
7699
7702
|
class: "separator"
|
7700
7703
|
};
|
7701
7704
|
function Yu(e, t, n, s, i, l) {
|
7702
|
-
const d = K,
|
7705
|
+
const d = K, c = we("router-link");
|
7703
7706
|
return a(), r("ul", Ru, [
|
7704
7707
|
n.breadcrumbLabel ? (a(), r("li", ju, y(n.breadcrumbLabel), 1)) : m("", !0),
|
7705
|
-
(a(!0), r(_, null, q(n.breadcrumbLinks || [], (
|
7706
|
-
|
7708
|
+
(a(!0), r(_, null, q(n.breadcrumbLinks || [], (u, g) => (a(), r("li", { key: g }, [
|
7709
|
+
u.type === "href" ? (a(), r("a", {
|
7707
7710
|
key: 0,
|
7708
|
-
href:
|
7711
|
+
href: u.path
|
7709
7712
|
}, [
|
7710
|
-
|
7713
|
+
u.iconClass ? (a(), k(d, {
|
7711
7714
|
key: 0,
|
7712
|
-
iconClass:
|
7713
|
-
type:
|
7715
|
+
iconClass: u.iconClass,
|
7716
|
+
type: u.iconType
|
7714
7717
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
7715
|
-
|
7716
|
-
], 8, Nu)) :
|
7718
|
+
u.text ? (a(), r("span", Uu, y(u.text), 1)) : m("", !0)
|
7719
|
+
], 8, Nu)) : u.type === "router" ? (a(), k(c, {
|
7717
7720
|
key: 1,
|
7718
|
-
to: l.getRoute(
|
7721
|
+
to: l.getRoute(u)
|
7719
7722
|
}, {
|
7720
7723
|
default: w(() => [
|
7721
|
-
|
7724
|
+
u.iconClass ? (a(), k(d, {
|
7722
7725
|
key: 0,
|
7723
|
-
iconClass:
|
7724
|
-
type:
|
7726
|
+
iconClass: u.iconClass,
|
7727
|
+
type: u.iconType
|
7725
7728
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
7726
|
-
|
7729
|
+
u.text ? (a(), r("span", zu, y(u.text), 1)) : m("", !0)
|
7727
7730
|
]),
|
7728
7731
|
_: 2
|
7729
7732
|
}, 1032, ["to"])) : (a(), r("span", Wu, [
|
7730
|
-
|
7733
|
+
u.iconClass ? (a(), k(d, {
|
7731
7734
|
key: 0,
|
7732
|
-
iconClass:
|
7733
|
-
type:
|
7735
|
+
iconClass: u.iconClass,
|
7736
|
+
type: u.iconType
|
7734
7737
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
7735
|
-
|
7738
|
+
u.text ? (a(), r("span", Gu, y(u.text), 1)) : m("", !0)
|
7736
7739
|
])),
|
7737
7740
|
g < n.breadcrumbLinks.length - 1 ? (a(), r("span", Ku, y(n.breadcrumbSeparator), 1)) : m("", !0)
|
7738
7741
|
]))), 128))
|
@@ -7820,10 +7823,10 @@ const Ri = /* @__PURE__ */ F(qu, [["render", Yu]]), Ju = {
|
|
7820
7823
|
}
|
7821
7824
|
}, Zu = { class: "cmd-company-logo company-logo" }, Qu = ["href", "title"];
|
7822
7825
|
function Xu(e, t, n, s, i, l) {
|
7823
|
-
var
|
7824
|
-
const d = xe,
|
7826
|
+
var u, g, f, h, v, b;
|
7827
|
+
const d = xe, c = we("router-link");
|
7825
7828
|
return a(), r("div", Zu, [
|
7826
|
-
((
|
7829
|
+
((u = n.link) == null ? void 0 : u.type) === "router" ? (a(), k(c, {
|
7827
7830
|
key: 0,
|
7828
7831
|
to: (g = n.link) == null ? void 0 : g.path,
|
7829
7832
|
title: (f = n.link) == null ? void 0 : f.tooltip
|
@@ -8095,12 +8098,12 @@ const lc = /* @__PURE__ */ F($u, [["render", ic]]), oc = {
|
|
8095
8098
|
var s, i, l, d;
|
8096
8099
|
const e = [], t = (i = (s = this.cookieOptions) == null ? void 0 : s.required) == null ? void 0 : i.cookies;
|
8097
8100
|
if (t)
|
8098
|
-
for (let
|
8099
|
-
e.push(t[
|
8101
|
+
for (let c = 0; c < t.length; c++)
|
8102
|
+
e.push(t[c].value);
|
8100
8103
|
const n = (d = (l = this.cookieOptions) == null ? void 0 : l.optional) == null ? void 0 : d.cookies;
|
8101
8104
|
if (n)
|
8102
|
-
for (let
|
8103
|
-
e.push(n[
|
8105
|
+
for (let c = 0; c < n.length; c++)
|
8106
|
+
e.push(n[c].value);
|
8104
8107
|
this.$emit("close-cookie-disclaimer", e);
|
8105
8108
|
},
|
8106
8109
|
openDataPrivacy(e) {
|
@@ -8119,14 +8122,14 @@ const lc = /* @__PURE__ */ F($u, [["render", ic]]), oc = {
|
|
8119
8122
|
class: "flex-container vertical"
|
8120
8123
|
}, gc = ["onClick", "title"], yc = { class: "collapsible-box-body" }, bc = { key: 0 }, xc = { key: 1 }, Cc = ["href", "target"], vc = ["innerHTML"], kc = { class: "button-wrapper align-center" };
|
8121
8124
|
function wc(e, t, n, s, i, l) {
|
8122
|
-
const d = J,
|
8125
|
+
const d = J, c = te;
|
8123
8126
|
return a(), k(Pe, { name: "fade" }, {
|
8124
8127
|
default: w(() => {
|
8125
|
-
var
|
8128
|
+
var u, g, f;
|
8126
8129
|
return [
|
8127
8130
|
o("div", sc, [
|
8128
8131
|
n.useSlot ? A(e.$slots, "default", { key: 0 }) : (a(), r("div", rc, [
|
8129
|
-
(
|
8132
|
+
(u = n.cmdHeadlineCookieDisclaimer) != null && u.show && ((g = n.cmdHeadlineCookieDisclaimer) != null && g.headlineText) && ((f = n.cmdHeadlineCookieDisclaimer) != null && f.headlineLevel) ? (a(), k(d, {
|
8130
8133
|
key: 0,
|
8131
8134
|
headlineText: n.cmdHeadlineCookieDisclaimer.headlineText,
|
8132
8135
|
headlineLevel: n.cmdHeadlineCookieDisclaimer.headlineLevel
|
@@ -8147,7 +8150,7 @@ function wc(e, t, n, s, i, l) {
|
|
8147
8150
|
o("header", {
|
8148
8151
|
class: x({ open: l.boxIsOpen(b.id) })
|
8149
8152
|
}, [
|
8150
|
-
p(
|
8153
|
+
p(c, {
|
8151
8154
|
element: "input",
|
8152
8155
|
type: "checkbox",
|
8153
8156
|
modelValue: l.acceptedCookies,
|
@@ -8198,7 +8201,7 @@ function wc(e, t, n, s, i, l) {
|
|
8198
8201
|
o("header", {
|
8199
8202
|
class: x({ open: l.boxIsOpen(b.id) })
|
8200
8203
|
}, [
|
8201
|
-
p(
|
8204
|
+
p(c, {
|
8202
8205
|
element: "input",
|
8203
8206
|
type: "checkbox",
|
8204
8207
|
modelValue: l.acceptedCookies,
|
@@ -8570,7 +8573,7 @@ const Lc = /* @__PURE__ */ F(Sc, [["render", Oc]]), Ic = {
|
|
8570
8573
|
};
|
8571
8574
|
function Qc(e, t, n, s, i, l) {
|
8572
8575
|
var g, f, h, v;
|
8573
|
-
const d = K,
|
8576
|
+
const d = K, c = gn, u = we("router-link");
|
8574
8577
|
return a(), r("div", {
|
8575
8578
|
class: x([
|
8576
8579
|
i.validationStatus,
|
@@ -8604,7 +8607,7 @@ function Qc(e, t, n, s, i, l) {
|
|
8604
8607
|
}, [
|
8605
8608
|
p(d, { iconClass: e.getStatusIconClass }, null, 8, ["iconClass"])
|
8606
8609
|
], 8, Ac)) : m("", !0),
|
8607
|
-
e.useCustomTooltip && (i.validationStatus === "" || i.validationStatus === "error") ? (a(), k(
|
8610
|
+
e.useCustomTooltip && (i.validationStatus === "" || i.validationStatus === "error") ? (a(), k(c, {
|
8608
8611
|
key: 1,
|
8609
8612
|
ref: "tooltip",
|
8610
8613
|
validationStatus: i.validationStatus,
|
@@ -8668,7 +8671,7 @@ function Qc(e, t, n, s, i, l) {
|
|
8668
8671
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
8669
8672
|
b.text ? (a(), r("span", Uc, y(b.text), 1)) : m("", !0)
|
8670
8673
|
], 10, Nc)) : m("", !0),
|
8671
|
-
n.optionLinkType === "router" ? (a(), k(
|
8674
|
+
n.optionLinkType === "router" ? (a(), k(u, {
|
8672
8675
|
key: 1,
|
8673
8676
|
to: "#",
|
8674
8677
|
onClick: S((T) => l.selectOption(b.value), ["prevent"]),
|
@@ -8863,7 +8866,7 @@ function rm(e, t, n, s, i, l) {
|
|
8863
8866
|
i.options.length > 1 ? (a(), r("li", om, [
|
8864
8867
|
o("a", {
|
8865
8868
|
href: "#",
|
8866
|
-
onClick: t[0] || (t[0] = S((...
|
8869
|
+
onClick: t[0] || (t[0] = S((...c) => l.deleteAllFilters && l.deleteAllFilters(...c), ["prevent"]))
|
8867
8870
|
}, [
|
8868
8871
|
n.linkDeleteAllFilters.icon && n.linkDeleteAllFilters.icon.show ? (a(), k(d, {
|
8869
8872
|
key: 0,
|
@@ -8873,13 +8876,13 @@ function rm(e, t, n, s, i, l) {
|
|
8873
8876
|
n.linkDeleteAllFilters.text ? (a(), r("span", am, y(n.linkDeleteAllFilters.text), 1)) : m("", !0)
|
8874
8877
|
])
|
8875
8878
|
])) : m("", !0),
|
8876
|
-
(a(!0), r(_, null, q(i.options, (
|
8879
|
+
(a(!0), r(_, null, q(i.options, (c, u) => (a(), r("li", { key: u }, [
|
8877
8880
|
o("a", {
|
8878
8881
|
href: "#",
|
8879
|
-
onClick: S((g) => l.deleteClickedFilter(
|
8882
|
+
onClick: S((g) => l.deleteClickedFilter(u), ["prevent"]),
|
8880
8883
|
title: n.deleteFilterIcon.tooltip
|
8881
8884
|
}, [
|
8882
|
-
o("span", null, y(n.selectedOptionsName(
|
8885
|
+
o("span", null, y(n.selectedOptionsName(c)), 1),
|
8883
8886
|
p(d, {
|
8884
8887
|
iconClass: n.deleteFilterIcon.iconClass,
|
8885
8888
|
type: n.deleteFilterIcon.iconType
|
@@ -8975,7 +8978,7 @@ const cm = {
|
|
8975
8978
|
}
|
8976
8979
|
}, mm = { class: "cmd-google-maps responsive-wrapper" }, pm = ["src"];
|
8977
8980
|
function fm(e, t, n, s, i, l) {
|
8978
|
-
const d = J,
|
8981
|
+
const d = J, c = Ne;
|
8979
8982
|
return a(), r("div", mm, [
|
8980
8983
|
n.cmdHeadline ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
8981
8984
|
i.cookiesAccepted ? (a(), r("iframe", {
|
@@ -8983,7 +8986,7 @@ function fm(e, t, n, s, i, l) {
|
|
8983
8986
|
src: l.locateAddress,
|
8984
8987
|
loading: "lazy",
|
8985
8988
|
referrerpolicy: "no-referrer-when-downgrade"
|
8986
|
-
}, null, 8, pm)) : (a(), k(
|
8989
|
+
}, null, 8, pm)) : (a(), k(c, {
|
8987
8990
|
key: 1,
|
8988
8991
|
validationStatus: "warning"
|
8989
8992
|
}, {
|
@@ -8991,7 +8994,7 @@ function fm(e, t, n, s, i, l) {
|
|
8991
8994
|
o("p", null, y(e.getMessage("google_maps.system_message.accept_terms")), 1),
|
8992
8995
|
o("a", {
|
8993
8996
|
href: "#",
|
8994
|
-
onClick: t[0] || (t[0] = S((...
|
8997
|
+
onClick: t[0] || (t[0] = S((...u) => l.acceptCookies && l.acceptCookies(...u), ["prevent"]))
|
8995
8998
|
}, y(e.getMessage("google_maps.button_text.accept_required_cookies")), 1)
|
8996
8999
|
]),
|
8997
9000
|
_: 1
|
@@ -9092,11 +9095,11 @@ const Gi = /* @__PURE__ */ F(cm, [["render", fm]]), hm = {
|
|
9092
9095
|
}
|
9093
9096
|
}, gm = { class: "grid-container-create-columns cmd-image-gallery" }, ym = ["onClick", "title"];
|
9094
9097
|
function bm(e, t, n, s, i, l) {
|
9095
|
-
var
|
9096
|
-
const d = J,
|
9098
|
+
var u;
|
9099
|
+
const d = J, c = xe;
|
9097
9100
|
return a(), r("div", gm, [
|
9098
|
-
(
|
9099
|
-
e.editModeContext ? n.images.length ? (a(!0), r(_, { key: 2 }, q(n.images, (g, f) => (a(), k(
|
9101
|
+
(u = n.cmdHeadline) != null && u.headlineText || e.editModeContext ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
9102
|
+
e.editModeContext ? n.images.length ? (a(!0), r(_, { key: 2 }, q(n.images, (g, f) => (a(), k(c, {
|
9100
9103
|
key: f,
|
9101
9104
|
class: "image-wrapper",
|
9102
9105
|
image: g.image,
|
@@ -9119,7 +9122,7 @@ function bm(e, t, n, s, i, l) {
|
|
9119
9122
|
onClick: S((h) => l.showFancyBox(f), ["prevent"]),
|
9120
9123
|
title: l.getMessage("image_gallery.tooltip.open_large_image")
|
9121
9124
|
}, [
|
9122
|
-
p(
|
9125
|
+
p(c, {
|
9123
9126
|
image: g.image,
|
9124
9127
|
figcaption: l.figcaption(g)
|
9125
9128
|
}, null, 8, ["image", "figcaption"])
|
@@ -9127,7 +9130,7 @@ function bm(e, t, n, s, i, l) {
|
|
9127
9130
|
key: `i${f}`,
|
9128
9131
|
class: "image-wrapper"
|
9129
9132
|
}, [
|
9130
|
-
p(
|
9133
|
+
p(c, {
|
9131
9134
|
image: g.image,
|
9132
9135
|
figcaption: l.figcaption(g)
|
9133
9136
|
}, null, 8, ["image", "figcaption"])
|
@@ -9174,7 +9177,7 @@ const xm = /* @__PURE__ */ F(hm, [["render", bm]]), Cm = {
|
|
9174
9177
|
}
|
9175
9178
|
};
|
9176
9179
|
function Zn(e, t) {
|
9177
|
-
const n = e.$el.querySelector(".zoom-container"), s = n.querySelector("img"), i = e.$el.querySelector(".zoom-overlay"), l = t.target.getBoundingClientRect().width, d = t.target.getBoundingClientRect().height,
|
9180
|
+
const n = e.$el.querySelector(".zoom-container"), s = n.querySelector("img"), i = e.$el.querySelector(".zoom-overlay"), l = t.target.getBoundingClientRect().width, d = t.target.getBoundingClientRect().height, c = s.getBoundingClientRect().width, u = s.getBoundingClientRect().height, g = t.pageX - t.target.getBoundingClientRect().x - window.scrollX, f = t.pageY - t.target.getBoundingClientRect().y - window.scrollY, h = Math.min(l, n.getBoundingClientRect().width / c * l), v = Math.min(d, n.getBoundingClientRect().height / u * d), b = Qn(g - h / 2, 0, l - h), O = Qn(f - v / 2, 0, d - v), T = -(b * (c / l)), M = -(O * (u / d));
|
9178
9181
|
i.style.left = `${b}px`, i.style.top = `${O}px`, i.style.width = `${h}px`, i.style.height = `${v}px`, i.style.display = "block", s.style.marginLeft = `${T}px`, s.style.marginTop = `${M}px`;
|
9179
9182
|
}
|
9180
9183
|
function Qn(e, t, n) {
|
@@ -9425,7 +9428,7 @@ const Sm = /* @__PURE__ */ F(Cm, [["render", Tm]]), _m = {
|
|
9425
9428
|
class: "flex-container flex-none"
|
9426
9429
|
};
|
9427
9430
|
function Pm(e, t, n, s, i, l) {
|
9428
|
-
const d = K,
|
9431
|
+
const d = K, c = gn;
|
9429
9432
|
return a(), r("div", {
|
9430
9433
|
class: x([
|
9431
9434
|
"cmd-input-group label",
|
@@ -9457,7 +9460,7 @@ function Pm(e, t, n, s, i, l) {
|
|
9457
9460
|
}, [
|
9458
9461
|
p(d, { iconClass: e.getStatusIconClass }, null, 8, ["iconClass"])
|
9459
9462
|
], 8, Dm)) : m("", !0),
|
9460
|
-
e.useCustomTooltip && (e.validationStatus === "" || e.validationStatus === "error") ? (a(), k(
|
9463
|
+
e.useCustomTooltip && (e.validationStatus === "" || e.validationStatus === "error") ? (a(), k(c, {
|
9461
9464
|
key: 1,
|
9462
9465
|
ref: "tooltip",
|
9463
9466
|
showRequirements: e.showRequirements,
|
@@ -9479,28 +9482,28 @@ function Pm(e, t, n, s, i, l) {
|
|
9479
9482
|
key: 0,
|
9480
9483
|
class: x(["flex-container", { vertical: n.orientation === "vertical", "flex-none": !n.stretchHorizontally, "no-gap": n.multipleSwitch }])
|
9481
9484
|
}, [
|
9482
|
-
(a(!0), r(_, null, q(n.inputElements, (
|
9485
|
+
(a(!0), r(_, null, q(n.inputElements, (u, g) => (a(), r("label", {
|
9483
9486
|
key: g,
|
9484
|
-
for:
|
9487
|
+
for: u.id,
|
9485
9488
|
class: x({ "toggle-switch": n.toggleSwitches, colored: n.colored })
|
9486
9489
|
}, [
|
9487
9490
|
$(o("input", {
|
9488
9491
|
type: n.inputTypes,
|
9489
|
-
id:
|
9490
|
-
name:
|
9491
|
-
value:
|
9492
|
+
id: u.id,
|
9493
|
+
name: u.name,
|
9494
|
+
value: u.value,
|
9492
9495
|
"onUpdate:modelValue": t[1] || (t[1] = (f) => l.inputValue = f),
|
9493
|
-
disabled:
|
9496
|
+
disabled: u.disabled,
|
9494
9497
|
class: x({ "replace-input-type": n.replaceInputType })
|
9495
9498
|
}, null, 10, Fm), [
|
9496
9499
|
[Rl, l.inputValue]
|
9497
9500
|
]),
|
9498
|
-
n.multipleSwitch &&
|
9501
|
+
n.multipleSwitch && u.iconClass ? (a(), k(d, {
|
9499
9502
|
key: 0,
|
9500
|
-
iconClass:
|
9501
|
-
type:
|
9503
|
+
iconClass: u.iconClass,
|
9504
|
+
type: u.iconType
|
9502
9505
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
9503
|
-
|
9506
|
+
u.labelText ? (a(), r("span", Vm, y(u.labelText), 1)) : m("", !0)
|
9504
9507
|
], 10, Mm))), 128))
|
9505
9508
|
], 2))
|
9506
9509
|
], 10, Om);
|
@@ -9879,8 +9882,8 @@ const Ki = /* @__PURE__ */ F(_m, [["render", Pm]]), Em = {
|
|
9879
9882
|
class: "flex-container reset-flex no-wrap-on-small-devices justify-content-space-around"
|
9880
9883
|
}, Gm = { key: 1 }, Km = ["type", "disabled"], Ym = { key: 1 }, Jm = { class: "cmd-login-form flex-container" }, Zm = { class: "option-wrapper flex-container" }, Qm = ["type", "disabled"], Xm = { key: 1 };
|
9881
9884
|
function $m(e, t, n, s, i, l) {
|
9882
|
-
var f, h, v, b, O, T, M, B,
|
9883
|
-
const d = J,
|
9885
|
+
var f, h, v, b, O, T, M, B, E;
|
9886
|
+
const d = J, c = K, u = te, g = Re;
|
9884
9887
|
return a(), r(_, null, [
|
9885
9888
|
$(o("fieldset", Hm, [
|
9886
9889
|
o("legend", {
|
@@ -9910,7 +9913,7 @@ function $m(e, t, n, s, i, l) {
|
|
9910
9913
|
}, l.buttonLoginWithYourDataDefaultOptions, {
|
9911
9914
|
onClick: t[1] || (t[1] = S((D) => i.showLogin = !0, ["prevent"]))
|
9912
9915
|
}), [
|
9913
|
-
(f = l.buttonLoginWithYourDataDefaultOptions.icon) != null && f.iconClass ? (a(), k(
|
9916
|
+
(f = l.buttonLoginWithYourDataDefaultOptions.icon) != null && f.iconClass ? (a(), k(c, {
|
9914
9917
|
key: 0,
|
9915
9918
|
iconClass: l.buttonLoginWithYourDataDefaultOptions.icon.iconClass,
|
9916
9919
|
type: l.buttonLoginWithYourDataDefaultOptions.icon.iconType,
|
@@ -9921,7 +9924,7 @@ function $m(e, t, n, s, i, l) {
|
|
9921
9924
|
$(o("div", {
|
9922
9925
|
class: x(["login-fields flex-container", { vertical: n.orientation === "vertical" }])
|
9923
9926
|
}, [
|
9924
|
-
p(
|
9927
|
+
p(u, I({
|
9925
9928
|
element: "input",
|
9926
9929
|
type: "text",
|
9927
9930
|
ref: "username",
|
@@ -9930,7 +9933,7 @@ function $m(e, t, n, s, i, l) {
|
|
9930
9933
|
}, l.cmdFormElementUsernameOptions, {
|
9931
9934
|
onValidationStatusChange: t[3] || (t[3] = (D) => l.checkValidationStatus(D, "username"))
|
9932
9935
|
}), null, 16, ["modelValue"]),
|
9933
|
-
p(
|
9936
|
+
p(u, I({
|
9934
9937
|
element: "input",
|
9935
9938
|
type: "password",
|
9936
9939
|
modelValue: l.password,
|
@@ -9949,7 +9952,7 @@ function $m(e, t, n, s, i, l) {
|
|
9949
9952
|
href: "#",
|
9950
9953
|
onClick: t[6] || (t[6] = S((...D) => l.toggleSendLoginView && l.toggleSendLoginView(...D), ["prevent"]))
|
9951
9954
|
}, [
|
9952
|
-
(h = n.linkForgotPassword.icon) != null && h.show && ((v = n.linkForgotPassword.icon) != null && v.iconClass) ? (a(), k(
|
9955
|
+
(h = n.linkForgotPassword.icon) != null && h.show && ((v = n.linkForgotPassword.icon) != null && v.iconClass) ? (a(), k(c, {
|
9953
9956
|
key: 0,
|
9954
9957
|
iconClass: n.linkForgotPassword.icon.iconClass,
|
9955
9958
|
type: n.linkForgotPassword.icon.iconType,
|
@@ -9977,7 +9980,7 @@ function $m(e, t, n, s, i, l) {
|
|
9977
9980
|
onClick: t[7] || (t[7] = (...D) => l.onClick && l.onClick(...D)),
|
9978
9981
|
disabled: l.buttonLoginDisabled
|
9979
9982
|
}), [
|
9980
|
-
l.buttonLoginDefaultOptions.icon.iconClass ? (a(), k(
|
9983
|
+
l.buttonLoginDefaultOptions.icon.iconClass ? (a(), k(c, {
|
9981
9984
|
key: 0,
|
9982
9985
|
iconClass: l.buttonLoginDefaultOptions.icon.iconClass,
|
9983
9986
|
type: l.buttonLoginDefaultOptions.icon.iconType,
|
@@ -9994,7 +9997,7 @@ function $m(e, t, n, s, i, l) {
|
|
9994
9997
|
class: x({ hidden: !n.legendForgotLoginForm.show, "align-left": n.legendForgotLoginForm.align === "left" })
|
9995
9998
|
}, y(n.legendForgotLoginForm.text), 3),
|
9996
9999
|
n.cmdHeadlineSendLoginForm ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadlineSendLoginForm)), null, 16)) : m("", !0),
|
9997
|
-
p(
|
10000
|
+
p(u, I({
|
9998
10001
|
ref: "sendPassword",
|
9999
10002
|
element: "input",
|
10000
10003
|
type: "email",
|
@@ -10008,7 +10011,7 @@ function $m(e, t, n, s, i, l) {
|
|
10008
10011
|
href: "#",
|
10009
10012
|
onClick: t[10] || (t[10] = S((...D) => l.toggleSendLoginView && l.toggleSendLoginView(...D), ["prevent"]))
|
10010
10013
|
}, [
|
10011
|
-
n.linkBackToLogin.icon && n.linkBackToLogin.icon.show && n.linkBackToLogin.icon.iconClass ? (a(), k(
|
10014
|
+
n.linkBackToLogin.icon && n.linkBackToLogin.icon.show && n.linkBackToLogin.icon.iconClass ? (a(), k(c, {
|
10012
10015
|
key: 0,
|
10013
10016
|
iconClass: n.linkBackToLogin.icon.iconClass,
|
10014
10017
|
type: n.linkBackToLogin.icon.iconType,
|
@@ -10021,10 +10024,10 @@ function $m(e, t, n, s, i, l) {
|
|
10021
10024
|
class: ["button stretch-on-small-devices", { primary: l.buttonSendLoginOptions.primary }],
|
10022
10025
|
disabled: l.buttonSendLoginDisabled
|
10023
10026
|
}), [
|
10024
|
-
(M = l.buttonSendLoginOptions.icon) != null && M.iconClass ? (a(), k(
|
10027
|
+
(M = l.buttonSendLoginOptions.icon) != null && M.iconClass ? (a(), k(c, {
|
10025
10028
|
key: 0,
|
10026
10029
|
iconClass: (B = l.buttonSendLoginOptions.icon) == null ? void 0 : B.iconClass,
|
10027
|
-
title: (
|
10030
|
+
title: (E = l.buttonSendLoginOptions.icon) == null ? void 0 : E.tooltip
|
10028
10031
|
}, null, 8, ["iconClass", "title"])) : m("", !0),
|
10029
10032
|
l.buttonSendLoginOptions.text ? (a(), r("span", Xm, y(l.buttonSendLoginOptions.text), 1)) : m("", !0)
|
10030
10033
|
], 16, Qm)) : m("", !0)
|
@@ -10175,7 +10178,7 @@ const ep = /* @__PURE__ */ F(Em, [["render", $m]]), tp = {
|
|
10175
10178
|
class: "close-nav"
|
10176
10179
|
}, ip = ["href", "title", "target", "onClick"], lp = { key: 1 }, op = { key: 1 }, ap = ["aria-expanded"], sp = ["href", "title", "target", "onClick"], rp = { key: 1 }, dp = { key: 1 }, up = ["aria-expanded"], cp = ["href", "title", "target", "onClick"], mp = { key: 1 }, pp = { key: 1 };
|
10177
10180
|
function fp(e, t, n, s, i, l) {
|
10178
|
-
const d = K,
|
10181
|
+
const d = K, c = we("router-link");
|
10179
10182
|
return a(), r("div", {
|
10180
10183
|
class: x([
|
10181
10184
|
"cmd-main-navigation main-navigation-wrapper",
|
@@ -10197,7 +10200,7 @@ function fp(e, t, n, s, i, l) {
|
|
10197
10200
|
href: "#",
|
10198
10201
|
id: "close-offcanvas",
|
10199
10202
|
role: "button",
|
10200
|
-
onClick: t[0] || (t[0] = S((...
|
10203
|
+
onClick: t[0] || (t[0] = S((...u) => l.closeOffcanvasNavigation && l.closeOffcanvasNavigation(...u), ["prevent"]))
|
10201
10204
|
}, [
|
10202
10205
|
n.closeOffcanvas.iconClass ? (a(), k(d, {
|
10203
10206
|
key: 0,
|
@@ -10209,57 +10212,57 @@ function fp(e, t, n, s, i, l) {
|
|
10209
10212
|
}, y(n.closeOffcanvas.text), 3)
|
10210
10213
|
])
|
10211
10214
|
])) : m("", !0),
|
10212
|
-
(a(!0), r(_, null, q(n.navigationEntries, (
|
10215
|
+
(a(!0), r(_, null, q(n.navigationEntries, (u, g) => {
|
10213
10216
|
var f, h, v;
|
10214
10217
|
return a(), r("li", {
|
10215
10218
|
key: g,
|
10216
|
-
class: x({ active:
|
10219
|
+
class: x({ active: u.active, open: i.openEntry === g, "has-subentries": (f = u == null ? void 0 : u.subentries) == null ? void 0 : f.length })
|
10217
10220
|
}, [
|
10218
|
-
|
10221
|
+
u.type === "href" ? (a(), r("a", {
|
10219
10222
|
key: 0,
|
10220
|
-
href:
|
10221
|
-
title:
|
10222
|
-
target:
|
10223
|
-
onClick: (b) => l.executeLink(b,
|
10223
|
+
href: u.path,
|
10224
|
+
title: u.tooltip,
|
10225
|
+
target: u.target,
|
10226
|
+
onClick: (b) => l.executeLink(b, u, g),
|
10224
10227
|
onMouseover: t[1] || (t[1] = (b) => l.closeAllSubentries()),
|
10225
10228
|
onFocus: t[2] || (t[2] = (b) => l.closeAllSubentries())
|
10226
10229
|
}, [
|
10227
|
-
|
10230
|
+
u.iconClass ? (a(), k(d, {
|
10228
10231
|
key: 0,
|
10229
|
-
iconClass:
|
10230
|
-
type:
|
10232
|
+
iconClass: u.iconClass,
|
10233
|
+
type: u.iconType
|
10231
10234
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
10232
|
-
|
10233
|
-
(h =
|
10235
|
+
u.text ? (a(), r("span", lp, y(u.text), 1)) : m("", !0),
|
10236
|
+
(h = u == null ? void 0 : u.subentries) != null && h.length ? (a(), r("span", {
|
10234
10237
|
key: 2,
|
10235
10238
|
class: x(["subentry-icon", n.subentriesIconClass])
|
10236
10239
|
}, null, 2)) : m("", !0)
|
10237
10240
|
], 40, ip)) : m("", !0),
|
10238
|
-
|
10241
|
+
u.type === "router" ? (a(), k(c, {
|
10239
10242
|
key: 1,
|
10240
|
-
to: l.getRoute(
|
10241
|
-
title:
|
10243
|
+
to: l.getRoute(u),
|
10244
|
+
title: u.tooltip,
|
10242
10245
|
onClick: l.closeOffcanvasNavigation
|
10243
10246
|
}, {
|
10244
10247
|
default: w(() => [
|
10245
|
-
|
10248
|
+
u.iconClass ? (a(), k(d, {
|
10246
10249
|
key: 0,
|
10247
|
-
iconClass:
|
10248
|
-
type:
|
10250
|
+
iconClass: u.iconClass,
|
10251
|
+
type: u.iconType
|
10249
10252
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
10250
|
-
|
10251
|
-
|
10253
|
+
u.text ? (a(), r("span", op, y(u.text), 1)) : m("", !0),
|
10254
|
+
u.subentries && u.subentries.length > 0 ? (a(), r("span", {
|
10252
10255
|
key: 2,
|
10253
10256
|
class: x(["subentry-icon", n.subentriesIconClass])
|
10254
10257
|
}, null, 2)) : m("", !0)
|
10255
10258
|
]),
|
10256
10259
|
_: 2
|
10257
10260
|
}, 1032, ["to", "title", "onClick"])) : m("", !0),
|
10258
|
-
(v =
|
10261
|
+
(v = u == null ? void 0 : u.subentries) != null && v.length ? (a(), r("ul", {
|
10259
10262
|
key: 2,
|
10260
10263
|
"aria-expanded": i.openEntry ? "true" : "false"
|
10261
10264
|
}, [
|
10262
|
-
(a(!0), r(_, null, q(
|
10265
|
+
(a(!0), r(_, null, q(u.subentries, (b, O) => {
|
10263
10266
|
var T, M;
|
10264
10267
|
return a(), r("li", {
|
10265
10268
|
key: O,
|
@@ -10285,7 +10288,7 @@ function fp(e, t, n, s, i, l) {
|
|
10285
10288
|
class: x(["subentry-icon", n.subentriesIconClass])
|
10286
10289
|
}, null, 2)) : m("", !0)
|
10287
10290
|
], 40, sp)) : m("", !0),
|
10288
|
-
b.type === "router" ? (a(), k(
|
10291
|
+
b.type === "router" ? (a(), k(c, {
|
10289
10292
|
key: 1,
|
10290
10293
|
to: l.getRoute(b),
|
10291
10294
|
title: b.tooltip,
|
@@ -10309,7 +10312,7 @@ function fp(e, t, n, s, i, l) {
|
|
10309
10312
|
key: 2,
|
10310
10313
|
"aria-expanded": i.openSubentry ? "true" : "false"
|
10311
10314
|
}, [
|
10312
|
-
(a(!0), r(_, null, q(b.subentries, (B,
|
10315
|
+
(a(!0), r(_, null, q(b.subentries, (B, E) => (a(), r("li", { key: E }, [
|
10313
10316
|
B.type === "href" ? (a(), r("a", {
|
10314
10317
|
key: 0,
|
10315
10318
|
href: B.path,
|
@@ -10328,7 +10331,7 @@ function fp(e, t, n, s, i, l) {
|
|
10328
10331
|
class: x(["subentry-icon", n.subentriesIconClass])
|
10329
10332
|
}, null, 2)) : m("", !0)
|
10330
10333
|
], 8, cp)) : m("", !0),
|
10331
|
-
B.type === "router" ? (a(), k(
|
10334
|
+
B.type === "router" ? (a(), k(c, {
|
10332
10335
|
key: 1,
|
10333
10336
|
to: l.getRoute(B),
|
10334
10337
|
target: B.target,
|
@@ -10362,7 +10365,7 @@ function fp(e, t, n, s, i, l) {
|
|
10362
10365
|
href: "#",
|
10363
10366
|
class: "button",
|
10364
10367
|
id: "toggle-offcanvas",
|
10365
|
-
onClick: t[5] || (t[5] = S((...
|
10368
|
+
onClick: t[5] || (t[5] = S((...u) => l.toggleOffcanvasNavigation && l.toggleOffcanvasNavigation(...u), ["prevent"]))
|
10366
10369
|
}, [
|
10367
10370
|
p(d, {
|
10368
10371
|
iconClass: n.buttonOffcanvas.iconClass,
|
@@ -10425,6 +10428,10 @@ const Yi = /* @__PURE__ */ F(tp, [["render", fp]]), hp = {
|
|
10425
10428
|
}
|
10426
10429
|
},
|
10427
10430
|
methods: {
|
10431
|
+
activeLinkClass(e, t) {
|
10432
|
+
if (this.activeLink === t)
|
10433
|
+
return e === "router" ? "router-link-exact-active" : "active";
|
10434
|
+
},
|
10428
10435
|
clickedStep(e, t) {
|
10429
10436
|
this.activeLink = t, this.$emit("click", { event: e, index: t, stepPath: this.multisteps[t].path });
|
10430
10437
|
},
|
@@ -10437,31 +10444,31 @@ const Yi = /* @__PURE__ */ F(tp, [["render", fp]]), hp = {
|
|
10437
10444
|
class: "number"
|
10438
10445
|
}, yp = { key: 2 };
|
10439
10446
|
function bp(e, t, n, s, i, l) {
|
10440
|
-
const d = K,
|
10447
|
+
const d = K, c = Re;
|
10441
10448
|
return a(), r("ol", {
|
10442
10449
|
class: x(["cmd-multistep-form-progress-bar", { "use-gap": n.useGap, "full-width": n.fullWidth }])
|
10443
10450
|
}, [
|
10444
|
-
(a(!0), r(_, null, q(n.multisteps, (
|
10451
|
+
(a(!0), r(_, null, q(n.multisteps, (u, g) => (a(), r("li", {
|
10445
10452
|
key: g,
|
10446
10453
|
class: x({ active: i.activeLink === g })
|
10447
10454
|
}, [
|
10448
|
-
p(
|
10449
|
-
linkType:
|
10450
|
-
class: x(["stretch-on-small-devices",
|
10455
|
+
p(c, {
|
10456
|
+
linkType: u.linkType,
|
10457
|
+
class: x(["stretch-on-small-devices", l.activeLinkClass(u.linkTyp, g)]),
|
10451
10458
|
styleAsButton: n.usePrimaryButtons,
|
10452
10459
|
primaryButton: n.usePrimaryButtons,
|
10453
|
-
path:
|
10454
|
-
title:
|
10460
|
+
path: u.path,
|
10461
|
+
title: u.tooltip,
|
10455
10462
|
onClick: (f) => l.clickedStep(f, g)
|
10456
10463
|
}, {
|
10457
10464
|
default: w(() => [
|
10458
10465
|
n.showStepNumber ? (a(), r("span", gp, y(g + 1), 1)) : m("", !0),
|
10459
|
-
|
10466
|
+
u.iconClass ? (a(), k(d, {
|
10460
10467
|
key: 1,
|
10461
|
-
iconClass:
|
10462
|
-
type:
|
10468
|
+
iconClass: u.iconClass,
|
10469
|
+
type: u.iconType
|
10463
10470
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
10464
|
-
|
10471
|
+
u.text ? (a(), r("span", yp, y(u.text), 1)) : m("", !0)
|
10465
10472
|
]),
|
10466
10473
|
_: 2
|
10467
10474
|
}, 1032, ["linkType", "class", "styleAsButton", "primaryButton", "path", "title", "onClick"]),
|
@@ -10623,7 +10630,7 @@ const xp = /* @__PURE__ */ F(hp, [["render", bp]]), Cp = {
|
|
10623
10630
|
}
|
10624
10631
|
}, vp = { class: "cmd-newsletter-subscription flex-container" }, kp = { class: "button-wrapper" };
|
10625
10632
|
function wp(e, t, n, s, i, l) {
|
10626
|
-
const d = Ki,
|
10633
|
+
const d = Ki, c = te;
|
10627
10634
|
return a(), r("fieldset", vp, [
|
10628
10635
|
o("legend", {
|
10629
10636
|
class: x({ hidden: !n.legend.show, "align-left": n.legend.align === "left" })
|
@@ -10634,9 +10641,9 @@ function wp(e, t, n, s, i, l) {
|
|
10634
10641
|
showLabel: n.cmdInputGroup.showLabel,
|
10635
10642
|
inputElements: n.cmdInputGroup.inputElements,
|
10636
10643
|
modelValue: l.subscription,
|
10637
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
10644
|
+
"onUpdate:modelValue": t[0] || (t[0] = (u) => l.subscription = u)
|
10638
10645
|
}, null, 8, ["labelText", "showLabel", "inputElements", "modelValue"]),
|
10639
|
-
p(
|
10646
|
+
p(c, {
|
10640
10647
|
element: "input",
|
10641
10648
|
type: "email",
|
10642
10649
|
placeholder: n.cmdFormElementEmail.placeholder,
|
@@ -10645,11 +10652,11 @@ function wp(e, t, n, s, i, l) {
|
|
10645
10652
|
required: n.cmdFormElementEmail.required,
|
10646
10653
|
useCustomTooltip: n.cmdFormElementEmail.useCustomTooltip,
|
10647
10654
|
modelValue: l.email,
|
10648
|
-
"onUpdate:modelValue": t[1] || (t[1] = (
|
10655
|
+
"onUpdate:modelValue": t[1] || (t[1] = (u) => l.email = u),
|
10649
10656
|
onValidationStatusChange: l.checkValidationStatus
|
10650
10657
|
}, null, 8, ["placeholder", "labelText", "required", "useCustomTooltip", "modelValue", "onValidationStatusChange"]),
|
10651
10658
|
o("div", kp, [
|
10652
|
-
p(
|
10659
|
+
p(c, {
|
10653
10660
|
element: "button",
|
10654
10661
|
type: n.buttonType,
|
10655
10662
|
disabled: i.buttonDisabled,
|
@@ -10662,15 +10669,15 @@ function wp(e, t, n, s, i, l) {
|
|
10662
10669
|
}
|
10663
10670
|
const Tp = /* @__PURE__ */ F(Cp, [["render", wp]]);
|
10664
10671
|
function Xn(e, t, n, s = !0, i = !0) {
|
10665
|
-
function l(d,
|
10666
|
-
return
|
10672
|
+
function l(d, c) {
|
10673
|
+
return c && d < 10 ? "0" + d : d;
|
10667
10674
|
}
|
10668
|
-
return (d,
|
10675
|
+
return (d, c) => {
|
10669
10676
|
if (n) {
|
10670
|
-
let
|
10671
|
-
return
|
10677
|
+
let u = d, g = t;
|
10678
|
+
return u > 12 && (i || (u -= 12), g = n), l(u, s) + e + l(c, !0) + g;
|
10672
10679
|
}
|
10673
|
-
return l(d, s) + e + l(
|
10680
|
+
return l(d, s) + e + l(c, !0) + t;
|
10674
10681
|
};
|
10675
10682
|
}
|
10676
10683
|
const Sp = {
|
@@ -10786,7 +10793,7 @@ function Pp(e, t, n, s, i, l) {
|
|
10786
10793
|
labelText: "Text for weekday",
|
10787
10794
|
placeholder: "Text for weekday",
|
10788
10795
|
modelValue: i.editableDay.day,
|
10789
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
10796
|
+
"onUpdate:modelValue": t[0] || (t[0] = (c) => i.editableDay.day = c)
|
10790
10797
|
}, null, 8, ["modelValue"])
|
10791
10798
|
]),
|
10792
10799
|
o("dd", Ip, [
|
@@ -10800,7 +10807,7 @@ function Pp(e, t, n, s, i, l) {
|
|
10800
10807
|
labelText: "Text for 'closed'",
|
10801
10808
|
placeholder: "Text for 'closed'",
|
10802
10809
|
modelValue: i.editableDay.amDisplayText,
|
10803
|
-
"onUpdate:modelValue": t[1] || (t[1] = (
|
10810
|
+
"onUpdate:modelValue": t[1] || (t[1] = (c) => i.editableDay.amDisplayText = c)
|
10804
10811
|
}, null, 8, ["modelValue"])) : m("", !0),
|
10805
10812
|
i.editableDay.amClosed ? m("", !0) : (a(), r("div", Dp, [
|
10806
10813
|
p(d, {
|
@@ -10811,7 +10818,7 @@ function Pp(e, t, n, s, i, l) {
|
|
10811
10818
|
labelText: "Text for AM from",
|
10812
10819
|
placeholder: "Text for AM from",
|
10813
10820
|
modelValue: i.editableDay.amFrom,
|
10814
|
-
"onUpdate:modelValue": t[2] || (t[2] = (
|
10821
|
+
"onUpdate:modelValue": t[2] || (t[2] = (c) => i.editableDay.amFrom = c)
|
10815
10822
|
}, null, 8, ["modelValue"]),
|
10816
10823
|
p(d, {
|
10817
10824
|
element: "input",
|
@@ -10822,12 +10829,12 @@ function Pp(e, t, n, s, i, l) {
|
|
10822
10829
|
labelText: "Text for AM till",
|
10823
10830
|
placeholder: "Text for AM till",
|
10824
10831
|
modelValue: i.editableDay.amTill,
|
10825
|
-
"onUpdate:modelValue": t[3] || (t[3] = (
|
10832
|
+
"onUpdate:modelValue": t[3] || (t[3] = (c) => i.editableDay.amTill = c)
|
10826
10833
|
}, null, 8, ["min", "modelValue"])
|
10827
10834
|
])),
|
10828
10835
|
o("a", {
|
10829
10836
|
href: "#",
|
10830
|
-
onClick: t[4] || (t[4] = S((
|
10837
|
+
onClick: t[4] || (t[4] = S((c) => l.toggleClosedStatus("am"), ["prevent"])),
|
10831
10838
|
title: i.editableDay.amClosed ? "Set to open" : "Set to closed",
|
10832
10839
|
class: x(i.editableDay.amClosed ? "icon-clock" : "icon-blocked")
|
10833
10840
|
}, null, 10, Mp)
|
@@ -10842,7 +10849,7 @@ function Pp(e, t, n, s, i, l) {
|
|
10842
10849
|
labelText: "Text for 'closed'",
|
10843
10850
|
placeholder: "Text for 'closed'",
|
10844
10851
|
modelValue: i.editableDay.pmDisplayText,
|
10845
|
-
"onUpdate:modelValue": t[5] || (t[5] = (
|
10852
|
+
"onUpdate:modelValue": t[5] || (t[5] = (c) => i.editableDay.pmDisplayText = c)
|
10846
10853
|
}, null, 8, ["modelValue"])) : m("", !0),
|
10847
10854
|
i.editableDay.pmClosed ? m("", !0) : (a(), r("div", Vp, [
|
10848
10855
|
p(d, {
|
@@ -10853,7 +10860,7 @@ function Pp(e, t, n, s, i, l) {
|
|
10853
10860
|
labelText: "Text for PM from",
|
10854
10861
|
placeholder: "Text for PM from",
|
10855
10862
|
modelValue: i.editableDay.pmFrom,
|
10856
|
-
"onUpdate:modelValue": t[6] || (t[6] = (
|
10863
|
+
"onUpdate:modelValue": t[6] || (t[6] = (c) => i.editableDay.pmFrom = c)
|
10857
10864
|
}, null, 8, ["modelValue"]),
|
10858
10865
|
p(d, {
|
10859
10866
|
element: "input",
|
@@ -10864,12 +10871,12 @@ function Pp(e, t, n, s, i, l) {
|
|
10864
10871
|
labelText: "Text for PM till",
|
10865
10872
|
placeholder: "Text for PM till",
|
10866
10873
|
modelValue: i.editableDay.pmTill,
|
10867
|
-
"onUpdate:modelValue": t[7] || (t[7] = (
|
10874
|
+
"onUpdate:modelValue": t[7] || (t[7] = (c) => i.editableDay.pmTill = c)
|
10868
10875
|
}, null, 8, ["min", "modelValue"])
|
10869
10876
|
])),
|
10870
10877
|
o("a", {
|
10871
10878
|
href: "#",
|
10872
|
-
onClick: t[8] || (t[8] = S((
|
10879
|
+
onClick: t[8] || (t[8] = S((c) => l.toggleClosedStatus("pm"), ["prevent"])),
|
10873
10880
|
title: i.editableDay.pmClosed ? "Set to open" : "Set to closed",
|
10874
10881
|
class: x(i.editableDay.pmClosed ? "icon-clock" : "icon-blocked")
|
10875
10882
|
}, null, 10, Ap)
|
@@ -11149,7 +11156,7 @@ const Rp = {
|
|
11149
11156
|
return ae(this, {
|
11150
11157
|
update(i, l) {
|
11151
11158
|
i.textOpen = e, i.textClosed = t, i.textHolidays = n, i.textMiscInfo = s;
|
11152
|
-
const d = l == null ? void 0 : l.find((
|
11159
|
+
const d = l == null ? void 0 : l.find((c) => c.name === "CmdHeadline");
|
11153
11160
|
d && (i.cmdHeadline = i.cmdHeadline || {}, d.update(i.cmdHeadline));
|
11154
11161
|
}
|
11155
11162
|
});
|
@@ -11164,11 +11171,11 @@ const Rp = {
|
|
11164
11171
|
};
|
11165
11172
|
function Jp(e, t, n, s, i, l) {
|
11166
11173
|
var h, v;
|
11167
|
-
const d = J,
|
11174
|
+
const d = J, c = Re, u = te, g = Ep, f = qe;
|
11168
11175
|
return a(), r("div", jp, [
|
11169
11176
|
(h = n.cmdHeadline) != null && h.headlineText || e.editModeContext ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
11170
11177
|
!e.editing && n.showOpenStatus ? (a(), r(_, { key: 1 }, [
|
11171
|
-
(v = n.cmdLink) != null && v.path ? (a(), k(
|
11178
|
+
(v = n.cmdLink) != null && v.path ? (a(), k(c, I({
|
11172
11179
|
key: 0,
|
11173
11180
|
linkType: n.cmdLink.type || "href"
|
11174
11181
|
}, n.cmdLink, {
|
@@ -11183,7 +11190,7 @@ function Jp(e, t, n, s, i, l) {
|
|
11183
11190
|
class: x({ closed: l.isClosed })
|
11184
11191
|
}, y(l.textOpenClosed), 3))
|
11185
11192
|
], 64)) : e.editing ? (a(), r("div", Np, [
|
11186
|
-
p(
|
11193
|
+
p(u, {
|
11187
11194
|
element: "input",
|
11188
11195
|
type: "text",
|
11189
11196
|
showLabel: !1,
|
@@ -11192,7 +11199,7 @@ function Jp(e, t, n, s, i, l) {
|
|
11192
11199
|
modelValue: l.textOpenModel,
|
11193
11200
|
"onUpdate:modelValue": t[0] || (t[0] = (b) => l.textOpenModel = b)
|
11194
11201
|
}, null, 8, ["modelValue"]),
|
11195
|
-
p(
|
11202
|
+
p(u, {
|
11196
11203
|
element: "input",
|
11197
11204
|
type: "text",
|
11198
11205
|
showLabel: !1,
|
@@ -11251,7 +11258,7 @@ function Jp(e, t, n, s, i, l) {
|
|
11251
11258
|
n.textMiscInfo ? (a(), r("p", Kp, y(n.textMiscInfo), 1)) : m("", !0)
|
11252
11259
|
])) : m("", !0),
|
11253
11260
|
e.editing ? (a(), r("div", Yp, [
|
11254
|
-
p(
|
11261
|
+
p(u, {
|
11255
11262
|
element: "input",
|
11256
11263
|
type: "text",
|
11257
11264
|
showLabel: !1,
|
@@ -11260,7 +11267,7 @@ function Jp(e, t, n, s, i, l) {
|
|
11260
11267
|
modelValue: l.textHolidaysModel,
|
11261
11268
|
"onUpdate:modelValue": t[3] || (t[3] = (b) => l.textHolidaysModel = b)
|
11262
11269
|
}, null, 8, ["modelValue"]),
|
11263
|
-
p(
|
11270
|
+
p(u, {
|
11264
11271
|
element: "input",
|
11265
11272
|
type: "text",
|
11266
11273
|
showLabel: !1,
|
@@ -11390,7 +11397,7 @@ function rf(e, t, n, s, i, l) {
|
|
11390
11397
|
o("a", {
|
11391
11398
|
href: l.getPreviousHref,
|
11392
11399
|
class: x(["page-change", { disabled: i.currentPage === 1, button: n.linkType === "button" }]),
|
11393
|
-
onClick: t[0] || (t[0] = S((...
|
11400
|
+
onClick: t[0] || (t[0] = S((...c) => l.previousPage && l.previousPage(...c), ["prevent"])),
|
11394
11401
|
title: n.prevLink.showText ? null : n.prevLink.text
|
11395
11402
|
}, [
|
11396
11403
|
p(d, {
|
@@ -11401,22 +11408,22 @@ function rf(e, t, n, s, i, l) {
|
|
11401
11408
|
], 10, ef),
|
11402
11409
|
o("div", nf, [
|
11403
11410
|
o("div", lf, [
|
11404
|
-
(a(!0), r(_, null, q(n.pages, (
|
11405
|
-
href: l.getHref(
|
11406
|
-
class: x({ disabled: i.currentPage ===
|
11407
|
-
title: i.currentPage !==
|
11408
|
-
key:
|
11409
|
-
onClick: S((g) => l.showPage(
|
11411
|
+
(a(!0), r(_, null, q(n.pages, (c, u) => (a(), r("a", {
|
11412
|
+
href: l.getHref(c),
|
11413
|
+
class: x({ disabled: i.currentPage === u + 1, button: n.linkType === "button", hidden: !n.showPageNumbers }),
|
11414
|
+
title: i.currentPage !== u + 1 ? e.getMessage("pagination.tooltip.go_to_page", u + 1) : e.getMessage("pagination.tooltip.not_possible"),
|
11415
|
+
key: u,
|
11416
|
+
onClick: S((g) => l.showPage(c), ["stop", "prevent"]),
|
11410
11417
|
"aria-live": "polite"
|
11411
11418
|
}, [
|
11412
|
-
o("span", null, y(
|
11419
|
+
o("span", null, y(u + 1), 1)
|
11413
11420
|
], 10, of))), 128))
|
11414
11421
|
])
|
11415
11422
|
]),
|
11416
11423
|
o("a", {
|
11417
11424
|
href: l.getNextHref,
|
11418
11425
|
class: x(["page-change", { disabled: i.currentPage === l.numberOfPages, button: n.linkType === "button" }]),
|
11419
|
-
onClick: t[1] || (t[1] = S((...
|
11426
|
+
onClick: t[1] || (t[1] = S((...c) => l.nextPage && l.nextPage(...c), ["prevent"])),
|
11420
11427
|
title: n.nextLink.showText ? null : n.nextLink.text
|
11421
11428
|
}, [
|
11422
11429
|
n.nextLink.showText ? (a(), r("span", sf, y(n.nextLink.text), 1)) : m("", !0),
|
@@ -11534,7 +11541,7 @@ function ff(e, t, n, s, i, l) {
|
|
11534
11541
|
key: n.network.path,
|
11535
11542
|
class: x(["button", n.network.buttonClass, { disabled: n.userMustAcceptDataPrivacy && !n.dataPrivacyAccepted }, "text-align-" + n.buttonTextAlign]),
|
11536
11543
|
href: l.getUrl(n.network),
|
11537
|
-
onClick: t[0] || (t[0] = (...
|
11544
|
+
onClick: t[0] || (t[0] = (...c) => l.preventOnDisabled && l.preventOnDisabled(...c)),
|
11538
11545
|
target: "_blank",
|
11539
11546
|
title: l.tooltip(n.network.tooltip)
|
11540
11547
|
}, [
|
@@ -11710,12 +11717,12 @@ const hf = /* @__PURE__ */ F(uf, [["render", ff]]), gf = {
|
|
11710
11717
|
};
|
11711
11718
|
function yf(e, t, n, s, i, l) {
|
11712
11719
|
var f, h;
|
11713
|
-
const d = J,
|
11720
|
+
const d = J, c = te, u = hf, g = qe;
|
11714
11721
|
return a(), r("div", {
|
11715
11722
|
class: x(["cmd-social-networks", { stretch: n.stretchButtons }, l.alignment])
|
11716
11723
|
}, [
|
11717
11724
|
(f = n.cmdHeadline) != null && f.headlineText || (h = e.editModeContext) != null && h.editing ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline || {})), null, 16)) : m("", !0),
|
11718
|
-
n.userMustAcceptDataPrivacy ? (a(), k(
|
11725
|
+
n.userMustAcceptDataPrivacy ? (a(), k(c, I({
|
11719
11726
|
key: 1,
|
11720
11727
|
element: "input",
|
11721
11728
|
type: "checkbox"
|
@@ -11736,7 +11743,7 @@ function yf(e, t, n, s, i, l) {
|
|
11736
11743
|
showComponentName: !1
|
11737
11744
|
}, {
|
11738
11745
|
default: w(() => [
|
11739
|
-
p(
|
11746
|
+
p(u, {
|
11740
11747
|
network: v,
|
11741
11748
|
userMustAcceptDataPrivacy: n.userMustAcceptDataPrivacy,
|
11742
11749
|
buttonTextAlign: n.buttonTextAlign,
|
@@ -11745,7 +11752,7 @@ function yf(e, t, n, s, i, l) {
|
|
11745
11752
|
]),
|
11746
11753
|
_: 2
|
11747
11754
|
}, 1032, ["componentProps", "componentPath"]))), 128)) : (a(), r(_, { key: 0 }, [
|
11748
|
-
(a(!0), r(_, null, q(l.validNetworks, (v, b) => (a(), k(
|
11755
|
+
(a(!0), r(_, null, q(l.validNetworks, (v, b) => (a(), k(u, {
|
11749
11756
|
key: b,
|
11750
11757
|
network: v,
|
11751
11758
|
userMustAcceptDataPrivacy: n.userMustAcceptDataPrivacy,
|
@@ -11855,7 +11862,7 @@ const Ji = /* @__PURE__ */ F(gf, [["render", yf]]), bf = {
|
|
11855
11862
|
}
|
11856
11863
|
}, xf = { class: "button-wrapper" }, Cf = ["title"], vf = { key: 1 };
|
11857
11864
|
function kf(e, t, n, s, i, l) {
|
11858
|
-
var
|
11865
|
+
var c, u, g, f;
|
11859
11866
|
const d = Ji;
|
11860
11867
|
return a(), r("footer", {
|
11861
11868
|
class: x(["cmd-page-footer flex-container", { "small-buttons": n.useSmallButtons }])
|
@@ -11868,11 +11875,11 @@ function kf(e, t, n, s, i, l) {
|
|
11868
11875
|
}, 16)) : m("", !0),
|
11869
11876
|
o("div", xf, [
|
11870
11877
|
A(e.$slots, "default"),
|
11871
|
-
(
|
11878
|
+
(c = l.buttonPrintViewOptions) != null && c.show ? (a(), r("button", {
|
11872
11879
|
key: 0,
|
11873
11880
|
class: x(["button", { primary: l.buttonPrintViewOptions.primary }]),
|
11874
11881
|
id: "print-view-button",
|
11875
|
-
title: l.buttonPrintViewOptions.text ? (
|
11882
|
+
title: l.buttonPrintViewOptions.text ? (u = l.buttonPrintViewOptions.icon) == null ? void 0 : u.tooltip : null,
|
11876
11883
|
onClick: t[0] || (t[0] = (...h) => l.showFancyBox && l.showFancyBox(...h))
|
11877
11884
|
}, [
|
11878
11885
|
(g = l.buttonPrintViewOptions.icon) != null && g.show ? (a(), r("span", {
|
@@ -11910,11 +11917,11 @@ const wf = /* @__PURE__ */ F(bf, [["render", kf]]), Tf = {
|
|
11910
11917
|
class: "headline-wrapper flex-container vertical"
|
11911
11918
|
};
|
11912
11919
|
function Of(e, t, n, s, i, l) {
|
11913
|
-
const d = Ri,
|
11920
|
+
const d = Ri, c = J;
|
11914
11921
|
return n.cmdBreadcrumbs || n.cmdHeadline || e.$slots.default ? (a(), r("header", Sf, [
|
11915
11922
|
n.cmdBreadcrumbs || n.cmdHeadline ? (a(), r("div", _f, [
|
11916
11923
|
n.cmdBreadcrumbs ? (a(), k(d, j(I({ key: 0 }, n.cmdBreadcrumbs)), null, 16)) : m("", !0),
|
11917
|
-
n.cmdHeadline.headlineText ? (a(), k(
|
11924
|
+
n.cmdHeadline.headlineText ? (a(), k(c, j(I({ key: 1 }, n.cmdHeadline)), null, 16)) : m("", !0)
|
11918
11925
|
])) : m("", !0),
|
11919
11926
|
e.$slots.default ? A(e.$slots, "default", { key: 1 }) : m("", !0)
|
11920
11927
|
])) : m("", !0);
|
@@ -12054,13 +12061,13 @@ const Af = /* @__PURE__ */ F(If, [["render", Vf]]), Pf = {
|
|
12054
12061
|
class: "closed-slot-wrapper"
|
12055
12062
|
}, Rf = ["title"];
|
12056
12063
|
function jf(e, t, n, s, i, l) {
|
12057
|
-
var
|
12064
|
+
var c;
|
12058
12065
|
const d = J;
|
12059
12066
|
return a(), r("aside", {
|
12060
12067
|
class: x(["cmd-sidebar", l.wrapperClass, { box: n.styledAsBox, "collapse-to-right": !n.collapseToLeft }])
|
12061
12068
|
}, [
|
12062
12069
|
o("div", Ef, [
|
12063
|
-
(
|
12070
|
+
(c = n.cmdHeadline) != null && c.headlineText && i.open ? (a(), k(d, I({ key: 0 }, n.cmdHeadline, {
|
12064
12071
|
headlineLevel: n.cmdHeadline.headlineLevel || 3,
|
12065
12072
|
class: "sidebar-main-headline"
|
12066
12073
|
}), null, 16, ["headlineLevel"])) : m("", !0),
|
@@ -12074,7 +12081,7 @@ function jf(e, t, n, s, i, l) {
|
|
12074
12081
|
key: 0,
|
12075
12082
|
href: "#",
|
12076
12083
|
title: i.open ? "Collapse sidebar" : "Expand sidebar",
|
12077
|
-
onClick: t[0] || (t[0] = S((...
|
12084
|
+
onClick: t[0] || (t[0] = S((...u) => l.toggleSidebar && l.toggleSidebar(...u), ["prevent"]))
|
12078
12085
|
}, [
|
12079
12086
|
o("span", {
|
12080
12087
|
class: x(l.iconClassOpenCollapse)
|
@@ -12210,8 +12217,8 @@ const Gf = /* @__PURE__ */ F(Uf, [["render", Wf]]), Kf = {
|
|
12210
12217
|
class: "top-header"
|
12211
12218
|
};
|
12212
12219
|
function Jf(e, t, n, s, i, l) {
|
12213
|
-
var
|
12214
|
-
const d = ji,
|
12220
|
+
var u, g, f, h, v, b, O, T, M;
|
12221
|
+
const d = ji, c = Yi;
|
12215
12222
|
return a(), r("div", {
|
12216
12223
|
ref: "site-header",
|
12217
12224
|
class: x([
|
@@ -12219,7 +12226,7 @@ function Jf(e, t, n, s, i, l) {
|
|
12219
12226
|
{
|
12220
12227
|
sticky: n.sticky,
|
12221
12228
|
"navigation-inline": n.navigationInline,
|
12222
|
-
"off-canvas-right": ((
|
12229
|
+
"off-canvas-right": ((u = n.cmdMainNavigation) == null ? void 0 : u.offcanvasPosition) === "right"
|
12223
12230
|
}
|
12224
12231
|
]),
|
12225
12232
|
role: "banner"
|
@@ -12240,13 +12247,13 @@ function Jf(e, t, n, s, i, l) {
|
|
12240
12247
|
], 64)) : m("", !0),
|
12241
12248
|
n.cmdCompanyLogo || (v = (h = n.cmdMainNavigation) == null ? void 0 : h.navigationEntries) != null && v.length ? (a(), r(_, { key: 1 }, [
|
12242
12249
|
n.cmdCompanyLogo ? (a(), k(d, I({ key: 0 }, n.cmdCompanyLogo, { onImageLoaded: l.onImageLoaded }), null, 16, ["onImageLoaded"])) : m("", !0),
|
12243
|
-
(O = (b = n.cmdMainNavigation) == null ? void 0 : b.navigationEntries) != null && O.length && n.navigationInline ? (a(), k(
|
12250
|
+
(O = (b = n.cmdMainNavigation) == null ? void 0 : b.navigationEntries) != null && O.length && n.navigationInline ? (a(), k(c, I({ key: 1 }, n.cmdMainNavigation, {
|
12244
12251
|
closeOffcanvas: n.closeOffcanvas,
|
12245
12252
|
onOffcanvas: l.emitOffcanvasStatus
|
12246
12253
|
}), null, 16, ["closeOffcanvas", "onOffcanvas"])) : m("", !0)
|
12247
12254
|
], 64)) : m("", !0)
|
12248
12255
|
], 2),
|
12249
|
-
(M = (T = n.cmdMainNavigation) == null ? void 0 : T.navigationEntries) != null && M.length && !n.navigationInline ? (a(), k(
|
12256
|
+
(M = (T = n.cmdMainNavigation) == null ? void 0 : T.navigationEntries) != null && M.length && !n.navigationInline ? (a(), k(c, I({ key: 1 }, n.cmdMainNavigation, {
|
12250
12257
|
closeOffcanvas: n.closeOffcanvas,
|
12251
12258
|
onOffcanvas: l.emitOffcanvasStatus
|
12252
12259
|
}), null, 16, ["closeOffcanvas", "onOffcanvas"])) : m("", !0)
|
@@ -12531,8 +12538,8 @@ const Zf = /* @__PURE__ */ F(Kf, [["render", Jf]]), Qf = {
|
|
12531
12538
|
"aria-expanded": "true"
|
12532
12539
|
};
|
12533
12540
|
function oh(e, t, n, s, i, l) {
|
12534
|
-
var h, v, b, O, T, M, B,
|
12535
|
-
const d = J,
|
12541
|
+
var h, v, b, O, T, M, B, E;
|
12542
|
+
const d = J, c = te, u = K, g = Ni, f = Ui;
|
12536
12543
|
return a(), r(_, null, [
|
12537
12544
|
o("fieldset", $f, [
|
12538
12545
|
o("legend", {
|
@@ -12540,7 +12547,7 @@ function oh(e, t, n, s, i, l) {
|
|
12540
12547
|
}, y(n.legend.text), 3),
|
12541
12548
|
n.cmdHeadline ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
12542
12549
|
o("div", eh, [
|
12543
|
-
p(
|
12550
|
+
p(c, {
|
12544
12551
|
element: "input",
|
12545
12552
|
type: n.cmdFormElementInput1.type,
|
12546
12553
|
"show-label": n.cmdFormElementInput1.showLabel,
|
@@ -12552,7 +12559,7 @@ function oh(e, t, n, s, i, l) {
|
|
12552
12559
|
"onUpdate:modelValue": t[0] || (t[0] = (D) => l.searchValue1 = D)
|
12553
12560
|
}, null, 8, ["type", "show-label", "labelText", "placeholder", "required", "showSearchButton", "modelValue"]),
|
12554
12561
|
o("div", th, [
|
12555
|
-
n.cmdFormElementInput2.show ? (a(), k(
|
12562
|
+
n.cmdFormElementInput2.show ? (a(), k(c, {
|
12556
12563
|
key: 0,
|
12557
12564
|
element: "input",
|
12558
12565
|
type: n.cmdFormElementInput2.type,
|
@@ -12563,7 +12570,7 @@ function oh(e, t, n, s, i, l) {
|
|
12563
12570
|
modelValue: l.searchValue2,
|
12564
12571
|
"onUpdate:modelValue": t[1] || (t[1] = (D) => l.searchValue2 = D)
|
12565
12572
|
}, null, 8, ["type", "show-label", "labelText", "placeholder", "required", "modelValue"])) : m("", !0),
|
12566
|
-
l.cmdFormElementRadiusOptions.show ? (a(), k(
|
12573
|
+
l.cmdFormElementRadiusOptions.show ? (a(), k(c, I({
|
12567
12574
|
key: 1,
|
12568
12575
|
element: "select",
|
12569
12576
|
class: "flex-none",
|
@@ -12571,7 +12578,7 @@ function oh(e, t, n, s, i, l) {
|
|
12571
12578
|
"onUpdate:modelValue": t[2] || (t[2] = (D) => l.radius = D)
|
12572
12579
|
}, l.cmdFormElementRadiusOptions), null, 16, ["modelValue"])) : m("", !0)
|
12573
12580
|
]),
|
12574
|
-
p(
|
12581
|
+
p(c, {
|
12575
12582
|
element: "button",
|
12576
12583
|
class: "stretch-on-small-devices",
|
12577
12584
|
nativeButton: n.cmdFormElementSearchButton,
|
@@ -12586,9 +12593,9 @@ function oh(e, t, n, s, i, l) {
|
|
12586
12593
|
href: "#",
|
12587
12594
|
onClick: t[3] || (t[3] = S((D) => i.showFilters = !i.showFilters, ["prevent"]))
|
12588
12595
|
}, [
|
12589
|
-
p(
|
12596
|
+
p(u, {
|
12590
12597
|
iconClass: i.showFilters ? (v = (h = n.cmdIcon) == null ? void 0 : h.showFilters) == null ? void 0 : v.iconClass : (O = (b = n.cmdIcon) == null ? void 0 : b.hideFilters) == null ? void 0 : O.iconClass,
|
12591
|
-
type: i.showFilters ? (M = (T = n.cmdIcon) == null ? void 0 : T.showFilters) == null ? void 0 : M.iconType : (
|
12598
|
+
type: i.showFilters ? (M = (T = n.cmdIcon) == null ? void 0 : T.showFilters) == null ? void 0 : M.iconType : (E = (B = n.cmdIcon) == null ? void 0 : B.hideFilters) == null ? void 0 : E.iconType
|
12592
12599
|
}, null, 8, ["iconClass", "type"]),
|
12593
12600
|
i.showFilters ? (a(), r("span", nh, y(e.getMessage("site_search.hide_filter_options")), 1)) : (a(), r("span", ih, y(e.getMessage("site_search.show_filter_options")), 1))
|
12594
12601
|
]),
|
@@ -12809,14 +12816,14 @@ const ah = /* @__PURE__ */ F(Xf, [["render", oh]]), sh = {
|
|
12809
12816
|
class: "item-counter"
|
12810
12817
|
};
|
12811
12818
|
function mh(e, t, n, s, i, l) {
|
12812
|
-
const d = Lt,
|
12819
|
+
const d = Lt, c = xe;
|
12813
12820
|
return a(), r("div", {
|
12814
12821
|
class: x(["cmd-slideshow", { "full-width": i.fullWidth }])
|
12815
12822
|
}, [
|
12816
12823
|
o("div", {
|
12817
12824
|
class: "inner-slideshow-wrapper",
|
12818
|
-
onMouseenter: t[1] || (t[1] = (
|
12819
|
-
onMouseleave: t[2] || (t[2] = (
|
12825
|
+
onMouseenter: t[1] || (t[1] = (u) => i.pause = !0),
|
12826
|
+
onMouseleave: t[2] || (t[2] = (u) => i.pause = !1)
|
12820
12827
|
}, [
|
12821
12828
|
n.showSlideButtons ? (a(), k(d, I({
|
12822
12829
|
key: 0,
|
@@ -12826,7 +12833,7 @@ function mh(e, t, n, s, i, l) {
|
|
12826
12833
|
}, l.tooltipForSlidebuttons), null, 16, ["onClick", "class"])) : m("", !0),
|
12827
12834
|
p(dn, { name: "fade" }, {
|
12828
12835
|
default: w(() => {
|
12829
|
-
var
|
12836
|
+
var u, g, f, h, v, b, O, T, M, B, E, D;
|
12830
12837
|
return [
|
12831
12838
|
l.currentItem ? (a(), r(_, { key: 0 }, [
|
12832
12839
|
n.useSlot ? (a(), r("div", {
|
@@ -12836,23 +12843,23 @@ function mh(e, t, n, s, i, l) {
|
|
12836
12843
|
}, [
|
12837
12844
|
A(e.$slots, "item" + i.currentSlotItem)
|
12838
12845
|
], 4)) : (a(), r(_, { key: 0 }, [
|
12839
|
-
e.editModeContext ? n.slideshowItems.length ? (a(), k(
|
12846
|
+
e.editModeContext ? n.slideshowItems.length ? (a(), k(c, {
|
12840
12847
|
key: 1,
|
12841
|
-
image: (
|
12848
|
+
image: (E = l.currentItem) == null ? void 0 : E.image,
|
12842
12849
|
figcaption: (D = l.currentItem) == null ? void 0 : D.figcaption,
|
12843
12850
|
componentPath: ["props", "slideshowItems", i.index],
|
12844
12851
|
editModeConfig: l.imageStructure()
|
12845
12852
|
}, null, 8, ["image", "figcaption", "componentPath", "editModeConfig"])) : m("", !0) : (a(), r(_, { key: 0 }, [
|
12846
|
-
(g = (
|
12853
|
+
(g = (u = l.currentItem) == null ? void 0 : u.link) != null && g.href ? (a(), r("a", {
|
12847
12854
|
key: 0,
|
12848
12855
|
href: (h = (f = l.currentItem) == null ? void 0 : f.link) == null ? void 0 : h.href,
|
12849
12856
|
title: (b = (v = l.currentItem) == null ? void 0 : v.link) == null ? void 0 : b.tooltip
|
12850
12857
|
}, [
|
12851
|
-
p(
|
12858
|
+
p(c, {
|
12852
12859
|
image: (O = l.currentItem) == null ? void 0 : O.image,
|
12853
12860
|
figcaption: (T = l.currentItem) == null ? void 0 : T.figcaption
|
12854
12861
|
}, null, 8, ["image", "figcaption"])
|
12855
|
-
], 8, rh)) : (a(), k(
|
12862
|
+
], 8, rh)) : (a(), k(c, {
|
12856
12863
|
key: 1,
|
12857
12864
|
image: (M = l.currentItem) == null ? void 0 : M.image,
|
12858
12865
|
figcaption: (B = l.currentItem) == null ? void 0 : B.figcaption
|
@@ -12878,7 +12885,7 @@ function mh(e, t, n, s, i, l) {
|
|
12878
12885
|
class: { disabled: i.slideshowItemEditing }
|
12879
12886
|
}, l.tooltipForSlidebuttons), null, 16, ["onClick", "class"])) : m("", !0),
|
12880
12887
|
n.showQuickLinkIcons ? (a(), r("ol", dh, [
|
12881
|
-
(a(!0), r(_, null, q(n.slideshowItems, (
|
12888
|
+
(a(!0), r(_, null, q(n.slideshowItems, (u, g) => (a(), r("li", {
|
12882
12889
|
key: g,
|
12883
12890
|
class: x({ active: g === i.index })
|
12884
12891
|
}, [
|
@@ -12988,7 +12995,7 @@ const ph = /* @__PURE__ */ F(sh, [["render", mh]]), fh = {
|
|
12988
12995
|
class: "list-of-recommendations no-list-items"
|
12989
12996
|
};
|
12990
12997
|
function gh(e, t, n, s, i, l) {
|
12991
|
-
const d = te,
|
12998
|
+
const d = te, c = Re;
|
12992
12999
|
return a(), r("div", {
|
12993
13000
|
class: x(["cmd-smart-search", { open: i.showListOfRecommendations, "open-list-to-top": n.openListToTop }])
|
12994
13001
|
}, [
|
@@ -12998,14 +13005,14 @@ function gh(e, t, n, s, i, l) {
|
|
12998
13005
|
}, l.cmdFormElementOptions, {
|
12999
13006
|
modelValue: i.searchTerm,
|
13000
13007
|
"onUpdate:modelValue": [
|
13001
|
-
t[0] || (t[0] = (
|
13008
|
+
t[0] || (t[0] = (u) => i.searchTerm = u),
|
13002
13009
|
l.showRecommendations
|
13003
13010
|
]
|
13004
13011
|
}), null, 16, ["modelValue", "onUpdate:modelValue"]),
|
13005
13012
|
i.showListOfRecommendations ? (a(), r("ul", hh, [
|
13006
|
-
(a(!0), r(_, null, q(l.filteredListOfRecommendations, (
|
13007
|
-
p(
|
13008
|
-
onClick: (f) => l.optionSelected(
|
13013
|
+
(a(!0), r(_, null, q(l.filteredListOfRecommendations, (u, g) => (a(), r("li", { key: g }, [
|
13014
|
+
p(c, I({ ref_for: !0 }, l.linkItem(u), {
|
13015
|
+
onClick: (f) => l.optionSelected(u)
|
13009
13016
|
}), {
|
13010
13017
|
default: w(() => [
|
13011
13018
|
A(e.$slots, "default")
|
@@ -13066,29 +13073,29 @@ function wh(e, t, n, s, i, l) {
|
|
13066
13073
|
const d = we("router-link");
|
13067
13074
|
return a(), r("div", xh, [
|
13068
13075
|
o("ul", null, [
|
13069
|
-
(a(!0), r(_, null, q(n.languages, (
|
13070
|
-
|
13076
|
+
(a(!0), r(_, null, q(n.languages, (c, u) => (a(), r("li", { key: u }, [
|
13077
|
+
c.link.type === "href" ? (a(), r("a", {
|
13071
13078
|
key: 0,
|
13072
|
-
href:
|
13073
|
-
class: x(["flag",
|
13074
|
-
title:
|
13075
|
-
onClick: S((g) => l.changeLanguage(
|
13079
|
+
href: c.link.path,
|
13080
|
+
class: x(["flag", c.iso2, { active: l.activeLanguage(c.iso2) }]),
|
13081
|
+
title: c.tooltip,
|
13082
|
+
onClick: S((g) => l.changeLanguage(c.iso2, g), ["prevent"])
|
13076
13083
|
}, [
|
13077
13084
|
o("img", {
|
13078
|
-
src: l.pathFlag(
|
13079
|
-
alt:
|
13085
|
+
src: l.pathFlag(c.iso2),
|
13086
|
+
alt: c.name
|
13080
13087
|
}, null, 8, vh)
|
13081
13088
|
], 10, Ch)) : (a(), k(d, {
|
13082
13089
|
key: 1,
|
13083
|
-
to: l.getRoute(
|
13084
|
-
class: x(["flag",
|
13085
|
-
title:
|
13086
|
-
onClick: S((g) => l.changeLanguage(
|
13090
|
+
to: l.getRoute(c),
|
13091
|
+
class: x(["flag", c.iso2]),
|
13092
|
+
title: c.tooltip,
|
13093
|
+
onClick: S((g) => l.changeLanguage(c.iso2, g), ["prevent"])
|
13087
13094
|
}, {
|
13088
13095
|
default: w(() => [
|
13089
13096
|
o("img", {
|
13090
|
-
src: l.pathFlag(
|
13091
|
-
alt:
|
13097
|
+
src: l.pathFlag(c.iso2),
|
13098
|
+
alt: c.name
|
13092
13099
|
}, null, 8, kh)
|
13093
13100
|
]),
|
13094
13101
|
_: 2
|
@@ -13256,7 +13263,7 @@ const Th = /* @__PURE__ */ F(bh, [["render", wh]]), Sh = {
|
|
13256
13263
|
"aria-expanded": "true"
|
13257
13264
|
}, Fh = ["innerHTML"];
|
13258
13265
|
function Vh(e, t, n, s, i, l) {
|
13259
|
-
const d = K,
|
13266
|
+
const d = K, c = Lt;
|
13260
13267
|
return a(), r("div", {
|
13261
13268
|
class: x(["cmd-table-wrapper", { collapsed: !i.showTableData, "full-width": i.fullWidth, "has-caption": l.hasCaption, "has-overflow": i.hasOverflow }])
|
13262
13269
|
}, [
|
@@ -13265,7 +13272,7 @@ function Vh(e, t, n, s, i, l) {
|
|
13265
13272
|
key: 0,
|
13266
13273
|
class: "button",
|
13267
13274
|
href: "#",
|
13268
|
-
onClick: t[0] || (t[0] = S((
|
13275
|
+
onClick: t[0] || (t[0] = S((u) => i.fullWidth = !i.fullWidth, ["prevent"])),
|
13269
13276
|
title: n.iconToggleWidth.tooltip
|
13270
13277
|
}, [
|
13271
13278
|
p(d, {
|
@@ -13277,7 +13284,7 @@ function Vh(e, t, n, s, i, l) {
|
|
13277
13284
|
key: 1,
|
13278
13285
|
class: "button",
|
13279
13286
|
href: "#",
|
13280
|
-
onClick: t[1] || (t[1] = S((
|
13287
|
+
onClick: t[1] || (t[1] = S((u) => i.showTableData = !i.showTableData, ["prevent"])),
|
13281
13288
|
title: i.showTableData ? n.iconCollapse.tooltip : n.iconExpand.tooltip
|
13282
13289
|
}, [
|
13283
13290
|
p(d, {
|
@@ -13289,9 +13296,9 @@ function Vh(e, t, n, s, i, l) {
|
|
13289
13296
|
o("div", {
|
13290
13297
|
class: "inner-wrapper",
|
13291
13298
|
ref: "innerWrapper",
|
13292
|
-
onScroll: t[2] || (t[2] = (...
|
13299
|
+
onScroll: t[2] || (t[2] = (...u) => l.updatePosition && l.updatePosition(...u))
|
13293
13300
|
}, [
|
13294
|
-
n.showSlideButtons ? (a(), k(
|
13301
|
+
n.showSlideButtons ? (a(), k(c, {
|
13295
13302
|
key: 0,
|
13296
13303
|
onClick: S(l.scrollLeft, ["prevent"]),
|
13297
13304
|
slideButtonType: "left"
|
@@ -13301,9 +13308,9 @@ function Vh(e, t, n, s, i, l) {
|
|
13301
13308
|
class: x({ "full-width": i.fullWidth })
|
13302
13309
|
}, [
|
13303
13310
|
A(e.$slots, "table-caption", {}, () => {
|
13304
|
-
var
|
13311
|
+
var u, g, f, h;
|
13305
13312
|
return [
|
13306
|
-
(
|
13313
|
+
(u = n.tableData.caption) != null && u.text || (g = n.caption) != null && g.text ? (a(), r("caption", {
|
13307
13314
|
key: 0,
|
13308
13315
|
class: x({ hidden: l.hideCaption })
|
13309
13316
|
}, y(((f = n.caption) == null ? void 0 : f.text) || ((h = n.tableData.caption) == null ? void 0 : h.text)), 3)) : m("", !0)
|
@@ -13312,9 +13319,9 @@ function Vh(e, t, n, s, i, l) {
|
|
13312
13319
|
A(e.$slots, "table-head", {}, () => [
|
13313
13320
|
o("thead", null, [
|
13314
13321
|
o("tr", null, [
|
13315
|
-
(a(!0), r(_, null, q(n.tableData.thead, (
|
13322
|
+
(a(!0), r(_, null, q(n.tableData.thead, (u, g) => (a(), r("th", {
|
13316
13323
|
key: g,
|
13317
|
-
innerHTML:
|
13324
|
+
innerHTML: u
|
13318
13325
|
}, null, 8, Ih))), 128))
|
13319
13326
|
])
|
13320
13327
|
])
|
@@ -13325,11 +13332,11 @@ function Vh(e, t, n, s, i, l) {
|
|
13325
13332
|
default: w(() => [
|
13326
13333
|
A(e.$slots, "table-body", {}, () => [
|
13327
13334
|
$(o("tbody", Bh, [
|
13328
|
-
(a(!0), r(_, null, q(n.tableData.tbody, (
|
13335
|
+
(a(!0), r(_, null, q(n.tableData.tbody, (u, g) => (a(), r("tr", {
|
13329
13336
|
class: x({ active: n.tableData.rowIndexHighlighted === g }),
|
13330
13337
|
key: g
|
13331
13338
|
}, [
|
13332
|
-
(a(!0), r(_, null, q(
|
13339
|
+
(a(!0), r(_, null, q(u, (f, h) => (a(), r("td", {
|
13333
13340
|
class: x({ active: n.tableData.columnIndexHighlighted === h }),
|
13334
13341
|
key: h,
|
13335
13342
|
innerHTML: f
|
@@ -13349,10 +13356,10 @@ function Vh(e, t, n, s, i, l) {
|
|
13349
13356
|
A(e.$slots, "table-foot", {}, () => [
|
13350
13357
|
n.tableData.tfoot && n.tableData.tfoot.length && i.showTableData ? (a(), r("tfoot", Mh, [
|
13351
13358
|
o("tr", null, [
|
13352
|
-
(a(!0), r(_, null, q(n.tableData.tfoot, (
|
13359
|
+
(a(!0), r(_, null, q(n.tableData.tfoot, (u, g) => (a(), r("td", {
|
13353
13360
|
class: x({ active: n.tableData.columnIndexHighlighted === g }),
|
13354
13361
|
key: g,
|
13355
|
-
innerHTML:
|
13362
|
+
innerHTML: u
|
13356
13363
|
}, null, 10, Fh))), 128))
|
13357
13364
|
])
|
13358
13365
|
])) : m("", !0)
|
@@ -13361,7 +13368,7 @@ function Vh(e, t, n, s, i, l) {
|
|
13361
13368
|
_: 3
|
13362
13369
|
}, 8, ["name"])
|
13363
13370
|
], 2),
|
13364
|
-
n.showSlideButtons ? (a(), k(
|
13371
|
+
n.showSlideButtons ? (a(), k(c, {
|
13365
13372
|
key: 1,
|
13366
13373
|
onClick: S(l.scrollRight, ["prevent"])
|
13367
13374
|
}, null, 8, ["onClick"])) : m("", !0)
|
@@ -13456,13 +13463,13 @@ const jh = {
|
|
13456
13463
|
"aria-live": "assertive"
|
13457
13464
|
}, Gh = ["innerHTML"];
|
13458
13465
|
function Kh(e, t, n, s, i, l) {
|
13459
|
-
const d = K,
|
13466
|
+
const d = K, c = J;
|
13460
13467
|
return a(), r("div", Nh, [
|
13461
13468
|
o("ul", {
|
13462
13469
|
class: x({ "stretch-tabs": n.stretchTabs }),
|
13463
13470
|
role: "tablist"
|
13464
13471
|
}, [
|
13465
|
-
(a(!0), r(_, null, q(n.tabs, (
|
13472
|
+
(a(!0), r(_, null, q(n.tabs, (u, g) => (a(), r("li", {
|
13466
13473
|
class: x({ active: i.showTab === g }),
|
13467
13474
|
key: g,
|
13468
13475
|
role: "tab"
|
@@ -13470,27 +13477,27 @@ function Kh(e, t, n, s, i, l) {
|
|
13470
13477
|
o("a", {
|
13471
13478
|
href: "#",
|
13472
13479
|
onClick: S((f) => l.setActiveTab(g), ["prevent"]),
|
13473
|
-
title:
|
13480
|
+
title: u.text ? void 0 : u.tooltip
|
13474
13481
|
}, [
|
13475
|
-
|
13482
|
+
u.iconClass ? (a(), k(d, {
|
13476
13483
|
key: 0,
|
13477
|
-
iconClass:
|
13478
|
-
type:
|
13484
|
+
iconClass: u.iconClass,
|
13485
|
+
type: u.iconType
|
13479
13486
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
13480
|
-
|
13487
|
+
u.text ? (a(), r("span", zh, y(u.text), 1)) : m("", !0)
|
13481
13488
|
], 8, Uh)
|
13482
13489
|
], 2))), 128))
|
13483
13490
|
], 2),
|
13484
|
-
n.useSlot ? (a(!0), r(_, { key: 0 }, q(n.tabs.length, (
|
13485
|
-
key:
|
13491
|
+
n.useSlot ? (a(!0), r(_, { key: 0 }, q(n.tabs.length, (u) => $((a(), r("div", {
|
13492
|
+
key: u,
|
13486
13493
|
"aria-live": "assertive",
|
13487
|
-
class: x(["tab-content-" + (
|
13494
|
+
class: x(["tab-content-" + (u - 1), { "no-padding": !n.useDefaultPadding }])
|
13488
13495
|
}, [
|
13489
|
-
A(e.$slots, "tab-content-" + (
|
13496
|
+
A(e.$slots, "tab-content-" + (u - 1))
|
13490
13497
|
], 2)), [
|
13491
|
-
[ye, i.showTab ===
|
13498
|
+
[ye, i.showTab === u - 1]
|
13492
13499
|
])), 128)) : (a(), r("div", Wh, [
|
13493
|
-
n.cmdHeadline ? (a(), k(
|
13500
|
+
n.cmdHeadline ? (a(), k(c, I({ key: 0 }, n.cmdHeadline, {
|
13494
13501
|
headlineText: n.tabs[i.showTab].headlineText,
|
13495
13502
|
headlineLevel: n.tabs[i.showTab].headlineLevel
|
13496
13503
|
}), null, 16, ["headlineText", "headlineLevel"])) : m("", !0),
|
@@ -13621,12 +13628,12 @@ const Zi = /* @__PURE__ */ F(jh, [["render", Kh]]), Yh = {
|
|
13621
13628
|
}, Jh = ["innerHTML"], Zh = ["innerHTML"];
|
13622
13629
|
function Qh(e, t, n, s, i, l) {
|
13623
13630
|
var g, f, h, v;
|
13624
|
-
const d = J,
|
13631
|
+
const d = J, c = xe, u = qe;
|
13625
13632
|
return a(), r("div", {
|
13626
13633
|
class: x(["cmd-text-image-block flex-container", n.orientation])
|
13627
13634
|
}, [
|
13628
13635
|
((g = n.cmdHeadline) != null && g.headlineText || e.editModeContext) && n.headlinePosition === "aboveImage" && n.orientation === "vertical" ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadline)), null, 16)) : m("", !0),
|
13629
|
-
n.cmdImage ? (a(), k(
|
13636
|
+
n.cmdImage ? (a(), k(c, {
|
13630
13637
|
key: 1,
|
13631
13638
|
image: (f = n.cmdImage) == null ? void 0 : f.image,
|
13632
13639
|
figcaption: (h = n.cmdImage) == null ? void 0 : h.figcaption,
|
@@ -13643,7 +13650,7 @@ function Qh(e, t, n, s, i, l) {
|
|
13643
13650
|
}, null, 8, Jh)) : m("", !0),
|
13644
13651
|
A(e.$slots, "default")
|
13645
13652
|
], 2)),
|
13646
|
-
e.editModeContext ? (a(), k(
|
13653
|
+
e.editModeContext ? (a(), k(u, {
|
13647
13654
|
key: 3,
|
13648
13655
|
ref: "editComponentWrapper",
|
13649
13656
|
class: "edit-items",
|
@@ -13834,33 +13841,33 @@ const Xh = /* @__PURE__ */ F(Yh, [["render", Qh]]), $h = {
|
|
13834
13841
|
}
|
13835
13842
|
}, eg = { key: 0 };
|
13836
13843
|
function tg(e, t, n, s, i, l) {
|
13837
|
-
const d = K,
|
13844
|
+
const d = K, c = te;
|
13838
13845
|
return a(), r("div", {
|
13839
13846
|
class: x(["cmd-toggle-dark-mode", { "styled-layout": n.useStyledLayout, "dark-mode": i.darkMode }])
|
13840
13847
|
}, [
|
13841
13848
|
e.editing ? (a(), r(_, { key: 1 }, [
|
13842
|
-
p(
|
13849
|
+
p(c, {
|
13843
13850
|
element: "input",
|
13844
13851
|
type: "text",
|
13845
13852
|
labelText: "Label for Light Mode",
|
13846
13853
|
placeholder: "Label for Light Mode",
|
13847
13854
|
modelValue: l.labelTextLightModeModel,
|
13848
|
-
"onUpdate:modelValue": t[2] || (t[2] = (
|
13855
|
+
"onUpdate:modelValue": t[2] || (t[2] = (u) => l.labelTextLightModeModel = u)
|
13849
13856
|
}, null, 8, ["modelValue"]),
|
13850
|
-
p(
|
13857
|
+
p(c, {
|
13851
13858
|
element: "input",
|
13852
13859
|
type: "text",
|
13853
13860
|
labelText: "Label for Dark Mode",
|
13854
13861
|
placeholder: "Label for Dark Mode",
|
13855
13862
|
modelValue: l.labelTextDarkModeModel,
|
13856
|
-
"onUpdate:modelValue": t[3] || (t[3] = (
|
13863
|
+
"onUpdate:modelValue": t[3] || (t[3] = (u) => l.labelTextDarkModeModel = u)
|
13857
13864
|
}, null, 8, ["modelValue"])
|
13858
13865
|
], 64)) : (a(), r(_, { key: 0 }, [
|
13859
13866
|
n.styledAsButton ? (a(), r("a", {
|
13860
13867
|
key: 0,
|
13861
13868
|
href: "#",
|
13862
13869
|
class: x(["button", { "dark-mode": i.darkMode }]),
|
13863
|
-
onClick: t[0] || (t[0] = S((...
|
13870
|
+
onClick: t[0] || (t[0] = S((...u) => l.toggleColorScheme && l.toggleColorScheme(...u), ["prevent"]))
|
13864
13871
|
}, [
|
13865
13872
|
n.showLabel ? (a(), r("span", eg, y(l.labelText), 1)) : m("", !0),
|
13866
13873
|
p(d, {
|
@@ -13868,7 +13875,7 @@ function tg(e, t, n, s, i, l) {
|
|
13868
13875
|
type: l.iconType,
|
13869
13876
|
tooltip: n.showLabel ? "" : l.labelText
|
13870
13877
|
}, null, 8, ["iconClass", "type", "tooltip"])
|
13871
|
-
], 2)) : (a(), k(
|
13878
|
+
], 2)) : (a(), k(c, {
|
13872
13879
|
key: 1,
|
13873
13880
|
element: "input",
|
13874
13881
|
type: "checkbox",
|
@@ -13876,7 +13883,7 @@ function tg(e, t, n, s, i, l) {
|
|
13876
13883
|
showLabel: n.showLabel,
|
13877
13884
|
modelValue: i.darkMode,
|
13878
13885
|
"onUpdate:modelValue": [
|
13879
|
-
t[1] || (t[1] = (
|
13886
|
+
t[1] || (t[1] = (u) => i.darkMode = u),
|
13880
13887
|
l.setColorScheme
|
13881
13888
|
],
|
13882
13889
|
"toggle-switch": !0,
|
@@ -13974,9 +13981,9 @@ function lt(e, t, { allOwnKeys: n = !1 } = {}) {
|
|
13974
13981
|
t.call(null, e[s], s, e);
|
13975
13982
|
else {
|
13976
13983
|
const l = n ? Object.getOwnPropertyNames(e) : Object.keys(e), d = l.length;
|
13977
|
-
let
|
13984
|
+
let c;
|
13978
13985
|
for (s = 0; s < d; s++)
|
13979
|
-
|
13986
|
+
c = l[s], t.call(null, e[c], c, e);
|
13980
13987
|
}
|
13981
13988
|
}
|
13982
13989
|
function el(e, t) {
|
@@ -14006,11 +14013,11 @@ const vg = (e, t, n, { allOwnKeys: s } = {}) => (lt(t, (i, l) => {
|
|
14006
14013
|
}), n && Object.assign(e.prototype, n);
|
14007
14014
|
}, Tg = (e, t, n, s) => {
|
14008
14015
|
let i, l, d;
|
14009
|
-
const
|
14016
|
+
const c = {};
|
14010
14017
|
if (t = t || {}, e == null) return t;
|
14011
14018
|
do {
|
14012
14019
|
for (i = Object.getOwnPropertyNames(e), l = i.length; l-- > 0; )
|
14013
|
-
d = i[l], (!s || s(d, e, t)) && !
|
14020
|
+
d = i[l], (!s || s(d, e, t)) && !c[d] && (t[d] = e[d], c[d] = !0);
|
14014
14021
|
e = n !== !1 && Tn(e);
|
14015
14022
|
} while (e && (!n || n(e, t)) && e !== Object.prototype);
|
14016
14023
|
return t;
|
@@ -14096,9 +14103,9 @@ const qg = (e) => {
|
|
14096
14103
|
if (!("toJSON" in s)) {
|
14097
14104
|
t[i] = s;
|
14098
14105
|
const l = ze(s) ? [] : {};
|
14099
|
-
return lt(s, (d,
|
14100
|
-
const
|
14101
|
-
!it(
|
14106
|
+
return lt(s, (d, c) => {
|
14107
|
+
const u = n(d, i + 1);
|
14108
|
+
!it(u) && (l[c] = u);
|
14102
14109
|
}), t[i] = void 0, l;
|
14103
14110
|
}
|
14104
14111
|
}
|
@@ -14209,9 +14216,9 @@ Object.defineProperties(N, al);
|
|
14209
14216
|
Object.defineProperty(ol, "isAxiosError", { value: !0 });
|
14210
14217
|
N.from = (e, t, n, s, i, l) => {
|
14211
14218
|
const d = Object.create(ol);
|
14212
|
-
return L.toFlatObject(e, d, function(
|
14213
|
-
return
|
14214
|
-
}, (
|
14219
|
+
return L.toFlatObject(e, d, function(u) {
|
14220
|
+
return u !== Error.prototype;
|
14221
|
+
}, (c) => c !== "isAxiosError"), N.call(d, e.message, t, n, s, i), d.cause = e, d.name = e.name, l && Object.assign(d, l), d;
|
14215
14222
|
};
|
14216
14223
|
const Ng = null;
|
14217
14224
|
function tn(e) {
|
@@ -14241,16 +14248,16 @@ function Mt(e, t, n) {
|
|
14241
14248
|
}, !1, function(T, M) {
|
14242
14249
|
return !L.isUndefined(M[T]);
|
14243
14250
|
});
|
14244
|
-
const s = n.metaTokens, i = n.visitor || f, l = n.dots, d = n.indexes,
|
14251
|
+
const s = n.metaTokens, i = n.visitor || f, l = n.dots, d = n.indexes, u = (n.Blob || typeof Blob < "u" && Blob) && L.isSpecCompliantForm(t);
|
14245
14252
|
if (!L.isFunction(i))
|
14246
14253
|
throw new TypeError("visitor must be a function");
|
14247
14254
|
function g(O) {
|
14248
14255
|
if (O === null) return "";
|
14249
14256
|
if (L.isDate(O))
|
14250
14257
|
return O.toISOString();
|
14251
|
-
if (!
|
14258
|
+
if (!u && L.isBlob(O))
|
14252
14259
|
throw new N("Blob is not supported. Use a Buffer instead.");
|
14253
|
-
return L.isArrayBuffer(O) || L.isTypedArray(O) ?
|
14260
|
+
return L.isArrayBuffer(O) || L.isTypedArray(O) ? u && typeof Blob == "function" ? new Blob([O]) : Buffer.from(O) : O;
|
14254
14261
|
}
|
14255
14262
|
function f(O, T, M) {
|
14256
14263
|
let B = O;
|
@@ -14277,14 +14284,14 @@ function Mt(e, t, n) {
|
|
14277
14284
|
if (!L.isUndefined(O)) {
|
14278
14285
|
if (h.indexOf(O) !== -1)
|
14279
14286
|
throw Error("Circular reference detected in " + T.join("."));
|
14280
|
-
h.push(O), L.forEach(O, function(B,
|
14287
|
+
h.push(O), L.forEach(O, function(B, E) {
|
14281
14288
|
(!(L.isUndefined(B) || B === null) && i.call(
|
14282
14289
|
t,
|
14283
14290
|
B,
|
14284
|
-
L.isString(
|
14291
|
+
L.isString(E) ? E.trim() : E,
|
14285
14292
|
T,
|
14286
14293
|
v
|
14287
|
-
)) === !0 && b(B, T ? T.concat(
|
14294
|
+
)) === !0 && b(B, T ? T.concat(E) : [E]);
|
14288
14295
|
}), h.pop();
|
14289
14296
|
}
|
14290
14297
|
}
|
@@ -14435,8 +14442,8 @@ function cl(e) {
|
|
14435
14442
|
function t(n, s, i, l) {
|
14436
14443
|
let d = n[l++];
|
14437
14444
|
if (d === "__proto__") return !0;
|
14438
|
-
const
|
14439
|
-
return d = !d && L.isArray(i) ? i.length : d,
|
14445
|
+
const c = Number.isFinite(+d), u = l >= n.length;
|
14446
|
+
return d = !d && L.isArray(i) ? i.length : d, u ? (L.hasOwnProp(i, d) ? i[d] = [i[d], s] : i[d] = s, !c) : ((!i[d] || !L.isObject(i[d])) && (i[d] = []), t(n, s, i[d], l) && L.isArray(i[d]) && (i[d] = ny(i[d])), !c);
|
14440
14447
|
}
|
14441
14448
|
if (L.isFormData(e) && L.isFunction(e.entries)) {
|
14442
14449
|
const n = {};
|
@@ -14469,15 +14476,15 @@ const ot = {
|
|
14469
14476
|
return t.buffer;
|
14470
14477
|
if (L.isURLSearchParams(t))
|
14471
14478
|
return n.setContentType("application/x-www-form-urlencoded;charset=utf-8", !1), t.toString();
|
14472
|
-
let
|
14479
|
+
let c;
|
14473
14480
|
if (l) {
|
14474
14481
|
if (s.indexOf("application/x-www-form-urlencoded") > -1)
|
14475
14482
|
return ey(t, this.formSerializer).toString();
|
14476
|
-
if ((
|
14477
|
-
const
|
14483
|
+
if ((c = L.isFileList(t)) || s.indexOf("multipart/form-data") > -1) {
|
14484
|
+
const u = this.env && this.env.FormData;
|
14478
14485
|
return Mt(
|
14479
|
-
|
14480
|
-
|
14486
|
+
c ? { "files[]": t } : t,
|
14487
|
+
u && new u(),
|
14481
14488
|
this.formSerializer
|
14482
14489
|
);
|
14483
14490
|
}
|
@@ -14492,9 +14499,9 @@ const ot = {
|
|
14492
14499
|
const d = !(n && n.silentJSONParsing) && i;
|
14493
14500
|
try {
|
14494
14501
|
return JSON.parse(t);
|
14495
|
-
} catch (
|
14502
|
+
} catch (c) {
|
14496
14503
|
if (d)
|
14497
|
-
throw
|
14504
|
+
throw c.name === "SyntaxError" ? N.from(c, N.ERR_BAD_RESPONSE, this, null, this.response) : c;
|
14498
14505
|
}
|
14499
14506
|
}
|
14500
14507
|
return t;
|
@@ -14595,21 +14602,21 @@ class ce {
|
|
14595
14602
|
}
|
14596
14603
|
set(t, n, s) {
|
14597
14604
|
const i = this;
|
14598
|
-
function l(
|
14599
|
-
const f = Qe(
|
14605
|
+
function l(c, u, g) {
|
14606
|
+
const f = Qe(u);
|
14600
14607
|
if (!f)
|
14601
14608
|
throw new Error("header name must be a non-empty string");
|
14602
14609
|
const h = L.findKey(i, f);
|
14603
|
-
(!h || i[h] === void 0 || g === !0 || g === void 0 && i[h] !== !1) && (i[h ||
|
14610
|
+
(!h || i[h] === void 0 || g === !0 || g === void 0 && i[h] !== !1) && (i[h || u] = bt(c));
|
14604
14611
|
}
|
14605
|
-
const d = (
|
14612
|
+
const d = (c, u) => L.forEach(c, (g, f) => l(g, f, u));
|
14606
14613
|
if (L.isPlainObject(t) || t instanceof this.constructor)
|
14607
14614
|
d(t, n);
|
14608
14615
|
else if (L.isString(t) && (t = t.trim()) && !sy(t))
|
14609
14616
|
d(oy(t), n);
|
14610
14617
|
else if (L.isHeaders(t))
|
14611
|
-
for (const [
|
14612
|
-
l(
|
14618
|
+
for (const [c, u] of t.entries())
|
14619
|
+
l(u, c, s);
|
14613
14620
|
else
|
14614
14621
|
t != null && l(n, t, s);
|
14615
14622
|
return this;
|
@@ -14643,8 +14650,8 @@ class ce {
|
|
14643
14650
|
let i = !1;
|
14644
14651
|
function l(d) {
|
14645
14652
|
if (d = Qe(d), d) {
|
14646
|
-
const
|
14647
|
-
|
14653
|
+
const c = L.findKey(s, d);
|
14654
|
+
c && (!n || jt(s, s[c], c, n)) && (delete s[c], i = !0);
|
14648
14655
|
}
|
14649
14656
|
}
|
14650
14657
|
return L.isArray(t) ? t.forEach(l) : l(t), i;
|
@@ -14666,8 +14673,8 @@ class ce {
|
|
14666
14673
|
n[d] = bt(i), delete n[l];
|
14667
14674
|
return;
|
14668
14675
|
}
|
14669
|
-
const
|
14670
|
-
|
14676
|
+
const c = t ? ry(l) : String(l).trim();
|
14677
|
+
c !== l && delete n[l], n[c] = bt(i), s[c] = !0;
|
14671
14678
|
}), this;
|
14672
14679
|
}
|
14673
14680
|
concat(...t) {
|
@@ -14701,8 +14708,8 @@ class ce {
|
|
14701
14708
|
accessors: {}
|
14702
14709
|
}).accessors, i = this.prototype;
|
14703
14710
|
function l(d) {
|
14704
|
-
const
|
14705
|
-
s[
|
14711
|
+
const c = Qe(d);
|
14712
|
+
s[c] || (dy(i, d), s[c] = !0);
|
14706
14713
|
}
|
14707
14714
|
return L.isArray(t) ? t.forEach(l) : l(t), this;
|
14708
14715
|
}
|
@@ -14721,8 +14728,8 @@ L.freezeMethods(ce);
|
|
14721
14728
|
function Nt(e, t) {
|
14722
14729
|
const n = this || ot, s = t || n, i = ce.from(s.headers);
|
14723
14730
|
let l = s.data;
|
14724
|
-
return L.forEach(e, function(
|
14725
|
-
l =
|
14731
|
+
return L.forEach(e, function(c) {
|
14732
|
+
l = c.call(n, l, i.normalize(), t ? t.status : void 0);
|
14726
14733
|
}), i.normalize(), l;
|
14727
14734
|
}
|
14728
14735
|
function ml(e) {
|
@@ -14752,9 +14759,9 @@ function cy(e, t) {
|
|
14752
14759
|
e = e || 10;
|
14753
14760
|
const n = new Array(e), s = new Array(e);
|
14754
14761
|
let i = 0, l = 0, d;
|
14755
|
-
return t = t !== void 0 ? t : 1e3, function(
|
14762
|
+
return t = t !== void 0 ? t : 1e3, function(u) {
|
14756
14763
|
const g = Date.now(), f = s[l];
|
14757
|
-
d || (d = g), n[i] =
|
14764
|
+
d || (d = g), n[i] = u, s[i] = g;
|
14758
14765
|
let h = l, v = 0;
|
14759
14766
|
for (; h !== i; )
|
14760
14767
|
v += n[h++], h = h % e;
|
@@ -14769,27 +14776,27 @@ function my(e, t) {
|
|
14769
14776
|
const s = 1e3 / t;
|
14770
14777
|
let i = null;
|
14771
14778
|
return function() {
|
14772
|
-
const d = this === !0,
|
14773
|
-
if (d ||
|
14774
|
-
return i && (clearTimeout(i), i = null), n =
|
14775
|
-
i || (i = setTimeout(() => (i = null, n = Date.now(), e.apply(null, arguments)), s - (
|
14779
|
+
const d = this === !0, c = Date.now();
|
14780
|
+
if (d || c - n > s)
|
14781
|
+
return i && (clearTimeout(i), i = null), n = c, e.apply(null, arguments);
|
14782
|
+
i || (i = setTimeout(() => (i = null, n = Date.now(), e.apply(null, arguments)), s - (c - n)));
|
14776
14783
|
};
|
14777
14784
|
}
|
14778
14785
|
const vt = (e, t, n = 3) => {
|
14779
14786
|
let s = 0;
|
14780
14787
|
const i = cy(50, 250);
|
14781
14788
|
return my((l) => {
|
14782
|
-
const d = l.loaded,
|
14789
|
+
const d = l.loaded, c = l.lengthComputable ? l.total : void 0, u = d - s, g = i(u), f = d <= c;
|
14783
14790
|
s = d;
|
14784
14791
|
const h = {
|
14785
14792
|
loaded: d,
|
14786
|
-
total:
|
14787
|
-
progress:
|
14788
|
-
bytes:
|
14793
|
+
total: c,
|
14794
|
+
progress: c ? d / c : void 0,
|
14795
|
+
bytes: u,
|
14789
14796
|
rate: g || void 0,
|
14790
|
-
estimated: g &&
|
14797
|
+
estimated: g && c && f ? (c - d) / g : void 0,
|
14791
14798
|
event: l,
|
14792
|
-
lengthComputable:
|
14799
|
+
lengthComputable: c != null
|
14793
14800
|
};
|
14794
14801
|
h[t ? "download" : "upload"] = !0, e(h);
|
14795
14802
|
}, n);
|
@@ -14813,8 +14820,8 @@ const vt = (e, t, n = 3) => {
|
|
14813
14820
|
};
|
14814
14821
|
}
|
14815
14822
|
return s = i(window.location.href), function(d) {
|
14816
|
-
const
|
14817
|
-
return
|
14823
|
+
const c = L.isString(d) ? i(d) : d;
|
14824
|
+
return c.protocol === s.protocol && c.host === s.host;
|
14818
14825
|
};
|
14819
14826
|
}()
|
14820
14827
|
) : (
|
@@ -14883,13 +14890,13 @@ function He(e, t) {
|
|
14883
14890
|
return s(void 0, g);
|
14884
14891
|
} else return s(void 0, f);
|
14885
14892
|
}
|
14886
|
-
function
|
14893
|
+
function c(g, f, h) {
|
14887
14894
|
if (h in t)
|
14888
14895
|
return s(g, f);
|
14889
14896
|
if (h in e)
|
14890
14897
|
return s(void 0, g);
|
14891
14898
|
}
|
14892
|
-
const
|
14899
|
+
const u = {
|
14893
14900
|
url: l,
|
14894
14901
|
method: l,
|
14895
14902
|
data: l,
|
@@ -14917,27 +14924,27 @@ function He(e, t) {
|
|
14917
14924
|
cancelToken: d,
|
14918
14925
|
socketPath: d,
|
14919
14926
|
responseEncoding: d,
|
14920
|
-
validateStatus:
|
14927
|
+
validateStatus: c,
|
14921
14928
|
headers: (g, f) => i(oi(g), oi(f), !0)
|
14922
14929
|
};
|
14923
14930
|
return L.forEach(Object.keys(Object.assign({}, e, t)), function(f) {
|
14924
|
-
const h =
|
14925
|
-
L.isUndefined(v) && h !==
|
14931
|
+
const h = u[f] || i, v = h(e[f], t[f], f);
|
14932
|
+
L.isUndefined(v) && h !== c || (n[f] = v);
|
14926
14933
|
}), n;
|
14927
14934
|
}
|
14928
14935
|
const hl = (e) => {
|
14929
14936
|
const t = He({}, e);
|
14930
|
-
let { data: n, withXSRFToken: s, xsrfHeaderName: i, xsrfCookieName: l, headers: d, auth:
|
14931
|
-
t.headers = d = ce.from(d), t.url = dl(fl(t.baseURL, t.url), e.params, e.paramsSerializer),
|
14937
|
+
let { data: n, withXSRFToken: s, xsrfHeaderName: i, xsrfCookieName: l, headers: d, auth: c } = t;
|
14938
|
+
t.headers = d = ce.from(d), t.url = dl(fl(t.baseURL, t.url), e.params, e.paramsSerializer), c && d.set(
|
14932
14939
|
"Authorization",
|
14933
|
-
"Basic " + btoa((
|
14940
|
+
"Basic " + btoa((c.username || "") + ":" + (c.password ? unescape(encodeURIComponent(c.password)) : ""))
|
14934
14941
|
);
|
14935
|
-
let
|
14942
|
+
let u;
|
14936
14943
|
if (L.isFormData(n)) {
|
14937
14944
|
if (be.hasStandardBrowserEnv || be.hasStandardBrowserWebWorkerEnv)
|
14938
14945
|
d.setContentType(void 0);
|
14939
|
-
else if ((
|
14940
|
-
const [g, ...f] =
|
14946
|
+
else if ((u = d.getContentType()) !== !1) {
|
14947
|
+
const [g, ...f] = u ? u.split(";").map((h) => h.trim()).filter(Boolean) : [];
|
14941
14948
|
d.setContentType([g || "multipart/form-data", ...f].join("; "));
|
14942
14949
|
}
|
14943
14950
|
}
|
@@ -14951,9 +14958,9 @@ const hl = (e) => {
|
|
14951
14958
|
const i = hl(e);
|
14952
14959
|
let l = i.data;
|
14953
14960
|
const d = ce.from(i.headers).normalize();
|
14954
|
-
let { responseType:
|
14961
|
+
let { responseType: c } = i, u;
|
14955
14962
|
function g() {
|
14956
|
-
i.cancelToken && i.cancelToken.unsubscribe(
|
14963
|
+
i.cancelToken && i.cancelToken.unsubscribe(u), i.signal && i.signal.removeEventListener("abort", u);
|
14957
14964
|
}
|
14958
14965
|
let f = new XMLHttpRequest();
|
14959
14966
|
f.open(i.method.toUpperCase(), i.url, !0), f.timeout = i.timeout;
|
@@ -14963,7 +14970,7 @@ const hl = (e) => {
|
|
14963
14970
|
const b = ce.from(
|
14964
14971
|
"getAllResponseHeaders" in f && f.getAllResponseHeaders()
|
14965
14972
|
), T = {
|
14966
|
-
data: !
|
14973
|
+
data: !c || c === "text" || c === "json" ? f.responseText : f.response,
|
14967
14974
|
status: f.status,
|
14968
14975
|
statusText: f.statusText,
|
14969
14976
|
headers: b,
|
@@ -14993,9 +15000,9 @@ const hl = (e) => {
|
|
14993
15000
|
)), f = null;
|
14994
15001
|
}, l === void 0 && d.setContentType(null), "setRequestHeader" in f && L.forEach(d.toJSON(), function(O, T) {
|
14995
15002
|
f.setRequestHeader(T, O);
|
14996
|
-
}), L.isUndefined(i.withCredentials) || (f.withCredentials = !!i.withCredentials),
|
15003
|
+
}), L.isUndefined(i.withCredentials) || (f.withCredentials = !!i.withCredentials), c && c !== "json" && (f.responseType = i.responseType), typeof i.onDownloadProgress == "function" && f.addEventListener("progress", vt(i.onDownloadProgress, !0)), typeof i.onUploadProgress == "function" && f.upload && f.upload.addEventListener("progress", vt(i.onUploadProgress)), (i.cancelToken || i.signal) && (u = (b) => {
|
14997
15004
|
f && (s(!b || b.type ? new We(null, e, f) : b), f.abort(), f = null);
|
14998
|
-
}, i.cancelToken && i.cancelToken.subscribe(
|
15005
|
+
}, i.cancelToken && i.cancelToken.subscribe(u), i.signal && (i.signal.aborted ? u() : i.signal.addEventListener("abort", u)));
|
14999
15006
|
const v = uy(i.url);
|
15000
15007
|
if (v && be.protocols.indexOf(v) === -1) {
|
15001
15008
|
s(new N("Unsupported protocol " + v + ":", N.ERR_BAD_REQUEST, e));
|
@@ -15005,10 +15012,10 @@ const hl = (e) => {
|
|
15005
15012
|
});
|
15006
15013
|
}, xy = (e, t) => {
|
15007
15014
|
let n = new AbortController(), s;
|
15008
|
-
const i = function(
|
15015
|
+
const i = function(u) {
|
15009
15016
|
if (!s) {
|
15010
15017
|
s = !0, d();
|
15011
|
-
const g =
|
15018
|
+
const g = u instanceof Error ? u : this.reason;
|
15012
15019
|
n.abort(g instanceof N ? g : new We(g instanceof Error ? g.message : g));
|
15013
15020
|
}
|
15014
15021
|
};
|
@@ -15016,13 +15023,13 @@ const hl = (e) => {
|
|
15016
15023
|
i(new N(`timeout ${t} of ms exceeded`, N.ETIMEDOUT));
|
15017
15024
|
}, t);
|
15018
15025
|
const d = () => {
|
15019
|
-
e && (l && clearTimeout(l), l = null, e.forEach((
|
15020
|
-
|
15026
|
+
e && (l && clearTimeout(l), l = null, e.forEach((u) => {
|
15027
|
+
u && (u.removeEventListener ? u.removeEventListener("abort", i) : u.unsubscribe(i));
|
15021
15028
|
}), e = null);
|
15022
15029
|
};
|
15023
|
-
e.forEach((
|
15024
|
-
const { signal:
|
15025
|
-
return
|
15030
|
+
e.forEach((u) => u && u.addEventListener && u.addEventListener("abort", i));
|
15031
|
+
const { signal: c } = n;
|
15032
|
+
return c.unsubscribe = d, [c, () => {
|
15026
15033
|
l && clearTimeout(l), l = null;
|
15027
15034
|
}];
|
15028
15035
|
}, Cy = function* (e, t) {
|
@@ -15042,17 +15049,17 @@ const hl = (e) => {
|
|
15042
15049
|
let d = 0;
|
15043
15050
|
return new ReadableStream({
|
15044
15051
|
type: "bytes",
|
15045
|
-
async pull(
|
15046
|
-
const { done:
|
15047
|
-
if (
|
15048
|
-
|
15052
|
+
async pull(c) {
|
15053
|
+
const { done: u, value: g } = await l.next();
|
15054
|
+
if (u) {
|
15055
|
+
c.close(), s();
|
15049
15056
|
return;
|
15050
15057
|
}
|
15051
15058
|
let f = g.byteLength;
|
15052
|
-
n && n(d += f),
|
15059
|
+
n && n(d += f), c.enqueue(new Uint8Array(g));
|
15053
15060
|
},
|
15054
|
-
cancel(
|
15055
|
-
return s(
|
15061
|
+
cancel(c) {
|
15062
|
+
return s(c), l.return();
|
15056
15063
|
}
|
15057
15064
|
}, {
|
15058
15065
|
highWaterMark: 2
|
@@ -15111,8 +15118,8 @@ const wy = async (e) => {
|
|
15111
15118
|
signal: i,
|
15112
15119
|
cancelToken: l,
|
15113
15120
|
timeout: d,
|
15114
|
-
onDownloadProgress:
|
15115
|
-
onUploadProgress:
|
15121
|
+
onDownloadProgress: c,
|
15122
|
+
onUploadProgress: u,
|
15116
15123
|
responseType: g,
|
15117
15124
|
headers: f,
|
15118
15125
|
withCredentials: h = "same-origin",
|
@@ -15125,17 +15132,17 @@ const wy = async (e) => {
|
|
15125
15132
|
b && b.unsubscribe();
|
15126
15133
|
}), T = !0;
|
15127
15134
|
};
|
15128
|
-
let
|
15135
|
+
let E;
|
15129
15136
|
try {
|
15130
|
-
if (
|
15137
|
+
if (u && ky && n !== "get" && n !== "head" && (E = await Ty(f, s)) !== 0) {
|
15131
15138
|
let V = new Request(t, {
|
15132
15139
|
method: "POST",
|
15133
15140
|
body: s,
|
15134
15141
|
duplex: "half"
|
15135
15142
|
}), R;
|
15136
15143
|
L.isFormData(s) && (R = V.headers.get("content-type")) && f.setContentType(R), V.body && (s = ai(V.body, ri, si(
|
15137
|
-
|
15138
|
-
vt(
|
15144
|
+
E,
|
15145
|
+
vt(u)
|
15139
15146
|
), null, nn));
|
15140
15147
|
}
|
15141
15148
|
L.isString(h) || (h = h ? "cors" : "omit"), M = new Request(t, {
|
@@ -15149,16 +15156,16 @@ const wy = async (e) => {
|
|
15149
15156
|
});
|
15150
15157
|
let D = await fetch(M);
|
15151
15158
|
const U = ln && (g === "stream" || g === "response");
|
15152
|
-
if (ln && (
|
15159
|
+
if (ln && (c || U)) {
|
15153
15160
|
const V = {};
|
15154
15161
|
["status", "statusText", "headers"].forEach((Y) => {
|
15155
15162
|
V[Y] = D[Y];
|
15156
15163
|
});
|
15157
15164
|
const R = L.toFiniteNumber(D.headers.get("content-length"));
|
15158
15165
|
D = new Response(
|
15159
|
-
ai(D.body, ri,
|
15166
|
+
ai(D.body, ri, c && si(
|
15160
15167
|
R,
|
15161
|
-
vt(
|
15168
|
+
vt(c, !0)
|
15162
15169
|
), U && B, nn),
|
15163
15170
|
V
|
15164
15171
|
);
|
@@ -15214,7 +15221,7 @@ const di = (e) => `- ${e}`, _y = (e) => L.isFunction(e) || e === null || e === !
|
|
15214
15221
|
}
|
15215
15222
|
if (!s) {
|
15216
15223
|
const l = Object.entries(i).map(
|
15217
|
-
([
|
15224
|
+
([c, u]) => `adapter ${c} ` + (u === !1 ? "is not supported by the environment" : "is not available in the build")
|
15218
15225
|
);
|
15219
15226
|
let d = t ? l.length > 1 ? `since :
|
15220
15227
|
` + l.map(di).join(`
|
@@ -15261,7 +15268,7 @@ On.transitional = function(t, n, s) {
|
|
15261
15268
|
function i(l, d) {
|
15262
15269
|
return "[Axios v" + bl + "] Transitional option '" + l + "'" + d + (s ? ". " + s : "");
|
15263
15270
|
}
|
15264
|
-
return (l, d,
|
15271
|
+
return (l, d, c) => {
|
15265
15272
|
if (t === !1)
|
15266
15273
|
throw new N(
|
15267
15274
|
i(d, " has been removed" + (n ? " in " + n : "")),
|
@@ -15272,7 +15279,7 @@ On.transitional = function(t, n, s) {
|
|
15272
15279
|
d,
|
15273
15280
|
" has been deprecated since v" + n + " and will be removed in the near future"
|
15274
15281
|
)
|
15275
|
-
)), t ? t(l, d,
|
15282
|
+
)), t ? t(l, d, c) : !0;
|
15276
15283
|
};
|
15277
15284
|
};
|
15278
15285
|
function Oy(e, t, n) {
|
@@ -15283,9 +15290,9 @@ function Oy(e, t, n) {
|
|
15283
15290
|
for (; i-- > 0; ) {
|
15284
15291
|
const l = s[i], d = t[l];
|
15285
15292
|
if (d) {
|
15286
|
-
const
|
15287
|
-
if (
|
15288
|
-
throw new N("option " + l + " must be " +
|
15293
|
+
const c = e[l], u = c === void 0 || d(c, l, e);
|
15294
|
+
if (u !== !0)
|
15295
|
+
throw new N("option " + l + " must be " + u, N.ERR_BAD_OPTION_VALUE);
|
15289
15296
|
continue;
|
15290
15297
|
}
|
15291
15298
|
if (n !== !0)
|
@@ -15351,26 +15358,26 @@ class Ae {
|
|
15351
15358
|
delete l[O];
|
15352
15359
|
}
|
15353
15360
|
), n.headers = ce.concat(d, l);
|
15354
|
-
const
|
15355
|
-
let
|
15361
|
+
const c = [];
|
15362
|
+
let u = !0;
|
15356
15363
|
this.interceptors.request.forEach(function(T) {
|
15357
|
-
typeof T.runWhen == "function" && T.runWhen(n) === !1 || (
|
15364
|
+
typeof T.runWhen == "function" && T.runWhen(n) === !1 || (u = u && T.synchronous, c.unshift(T.fulfilled, T.rejected));
|
15358
15365
|
});
|
15359
15366
|
const g = [];
|
15360
15367
|
this.interceptors.response.forEach(function(T) {
|
15361
15368
|
g.push(T.fulfilled, T.rejected);
|
15362
15369
|
});
|
15363
15370
|
let f, h = 0, v;
|
15364
|
-
if (!
|
15371
|
+
if (!u) {
|
15365
15372
|
const O = [ui.bind(this), void 0];
|
15366
|
-
for (O.unshift.apply(O,
|
15373
|
+
for (O.unshift.apply(O, c), O.push.apply(O, g), v = O.length, f = Promise.resolve(n); h < v; )
|
15367
15374
|
f = f.then(O[h++], O[h++]);
|
15368
15375
|
return f;
|
15369
15376
|
}
|
15370
|
-
v =
|
15377
|
+
v = c.length;
|
15371
15378
|
let b = n;
|
15372
15379
|
for (h = 0; h < v; ) {
|
15373
|
-
const O =
|
15380
|
+
const O = c[h++], T = c[h++];
|
15374
15381
|
try {
|
15375
15382
|
b = O(b);
|
15376
15383
|
} catch (M) {
|
@@ -15404,8 +15411,8 @@ L.forEach(["delete", "get", "head", "options"], function(t) {
|
|
15404
15411
|
});
|
15405
15412
|
L.forEach(["post", "put", "patch"], function(t) {
|
15406
15413
|
function n(s) {
|
15407
|
-
return function(l, d,
|
15408
|
-
return this.request(He(
|
15414
|
+
return function(l, d, c) {
|
15415
|
+
return this.request(He(c || {}, {
|
15409
15416
|
method: t,
|
15410
15417
|
headers: s ? {
|
15411
15418
|
"Content-Type": "multipart/form-data"
|
@@ -15434,14 +15441,14 @@ class Ln {
|
|
15434
15441
|
s._listeners = null;
|
15435
15442
|
}), this.promise.then = (i) => {
|
15436
15443
|
let l;
|
15437
|
-
const d = new Promise((
|
15438
|
-
s.subscribe(
|
15444
|
+
const d = new Promise((c) => {
|
15445
|
+
s.subscribe(c), l = c;
|
15439
15446
|
}).then(i);
|
15440
15447
|
return d.cancel = function() {
|
15441
15448
|
s.unsubscribe(l);
|
15442
15449
|
}, d;
|
15443
|
-
}, t(function(l, d,
|
15444
|
-
s.reason || (s.reason = new We(l, d,
|
15450
|
+
}, t(function(l, d, c) {
|
15451
|
+
s.reason || (s.reason = new We(l, d, c), n(s.reason));
|
15445
15452
|
});
|
15446
15453
|
}
|
15447
15454
|
/**
|
@@ -16143,7 +16150,7 @@ const By = {
|
|
16143
16150
|
class: "progressbar"
|
16144
16151
|
}, lb = ["value", "title"];
|
16145
16152
|
function ob(e, t, n, s, i, l) {
|
16146
|
-
const d = J,
|
16153
|
+
const d = J, c = Ne, u = K, g = te;
|
16147
16154
|
return a(), r(_, null, [
|
16148
16155
|
n.advancedMode ? (a(), r("fieldset", {
|
16149
16156
|
key: 0,
|
@@ -16153,7 +16160,7 @@ function ob(e, t, n, s, i, l) {
|
|
16153
16160
|
class: x({ hidden: !n.legend.show, "align-left": n.legend.align === "left" })
|
16154
16161
|
}, y(n.legend.text), 3),
|
16155
16162
|
n.cmdHeadlineFieldset ? (a(), k(d, j(I({ key: 0 }, n.cmdHeadlineFieldset)), null, 16)) : m("", !0),
|
16156
|
-
l.systemMessageStatus && l.allSystemMessages.length ? (a(), k(
|
16163
|
+
l.systemMessageStatus && l.allSystemMessages.length ? (a(), k(c, {
|
16157
16164
|
key: 1,
|
16158
16165
|
iconClose: { show: !1 },
|
16159
16166
|
validationStatus: l.systemMessageStatus,
|
@@ -16184,7 +16191,7 @@ function ob(e, t, n, s, i, l) {
|
|
16184
16191
|
title: e.getMessage("upload_form.labeltext.remove_all_files_from_list"),
|
16185
16192
|
onClick: t[0] || (t[0] = S((...f) => l.cancelUpload && l.cancelUpload(...f), ["prevent"]))
|
16186
16193
|
}, [
|
16187
|
-
p(
|
16194
|
+
p(u, j(Ve(n.iconDelete)), null, 16)
|
16188
16195
|
], 8, Py),
|
16189
16196
|
o("span", null, [
|
16190
16197
|
H(y(i.listOfFiles.length) + " ", 1),
|
@@ -16229,7 +16236,7 @@ function ob(e, t, n, s, i, l) {
|
|
16229
16236
|
title: e.getMessage("upload_form.labeltext.remove_file_from_list", f.file.name),
|
16230
16237
|
onClick: S((v) => l.removeFile(h), ["prevent"])
|
16231
16238
|
}, [
|
16232
|
-
p(
|
16239
|
+
p(u, I({ ref_for: !0 }, n.iconDelete), null, 16)
|
16233
16240
|
], 8, jy),
|
16234
16241
|
o("span", {
|
16235
16242
|
class: x([
|
@@ -16304,7 +16311,7 @@ function ob(e, t, n, s, i, l) {
|
|
16304
16311
|
onClick: t[2] || (t[2] = S((f) => i.showListOfFileExtensions = !i.showListOfFileExtensions, ["prevent"])),
|
16305
16312
|
title: e.getMessage("upload_form.tooltip.toggle_list_of_allowed_file_types")
|
16306
16313
|
}, [
|
16307
|
-
p(
|
16314
|
+
p(u, {
|
16308
16315
|
iconClass: i.showListOfFileExtensions ? n.iconInvisible.iconClass : n.iconVisible.iconClass,
|
16309
16316
|
type: i.showListOfFileExtensions ? n.iconInvisible.iconType : n.iconVisible.iconType
|
16310
16317
|
}, null, 8, ["iconClass", "type"])
|
@@ -16332,7 +16339,7 @@ function ob(e, t, n, s, i, l) {
|
|
16332
16339
|
disabled: i.uploadInitiated,
|
16333
16340
|
onClick: t[3] || (t[3] = (f) => l.selectFiles())
|
16334
16341
|
}, [
|
16335
|
-
p(
|
16342
|
+
p(u, {
|
16336
16343
|
iconClass: n.iconFileUpload.iconClass,
|
16337
16344
|
type: n.iconFileUpload.iconType
|
16338
16345
|
}, null, 8, ["iconClass", "type"]),
|
@@ -16378,14 +16385,14 @@ function ob(e, t, n, s, i, l) {
|
|
16378
16385
|
disabled: i.listOfFiles.length === 0 || n.maxTotalUploadSize > 0 && l.totalSize > n.maxTotalUploadSize || i.uploadInitiated,
|
16379
16386
|
onClick: t[5] || (t[5] = (...f) => l.uploadFiles && l.uploadFiles(...f))
|
16380
16387
|
}, [
|
16381
|
-
p(
|
16388
|
+
p(u, j(Ve(n.iconUpload)), null, 16),
|
16382
16389
|
i.listOfFiles.length === 1 || !n.allowMultipleFileUploads ? (a(), r("span", tb, y(e.getMessage("upload_form.buttontext.upload_file")), 1)) : (a(), r("span", nb, y(e.getMessage("upload_form.buttontext.upload_files")), 1))
|
16383
16390
|
], 10, eb),
|
16384
16391
|
o("button", {
|
16385
16392
|
class: x(["button", { disabled: i.listOfFiles.length === 0 }]),
|
16386
16393
|
onClick: t[6] || (t[6] = (...f) => l.cancel && l.cancel(...f))
|
16387
16394
|
}, [
|
16388
|
-
p(
|
16395
|
+
p(u, j(Ve(n.iconCancel)), null, 16),
|
16389
16396
|
o("span", null, y(e.getMessage("upload_form.buttontext.cancel")), 1)
|
16390
16397
|
], 2)
|
16391
16398
|
])
|
@@ -16406,20 +16413,20 @@ function ob(e, t, n, s, i, l) {
|
|
16406
16413
|
A(e.$slots, "default", {}, () => [
|
16407
16414
|
n.enableDragAndDrop ? (a(), r(_, { key: 1 }, [
|
16408
16415
|
o("span", null, y(e.getMessage("upload_form.drag_and_drop_file_here")), 1),
|
16409
|
-
p(
|
16416
|
+
p(u, {
|
16410
16417
|
iconClass: n.iconDragAndDrop.iconClass,
|
16411
16418
|
type: n.iconDragAndDrop.iconType
|
16412
16419
|
}, null, 8, ["iconClass", "type"])
|
16413
16420
|
], 64)) : (a(), r(_, { key: 0 }, [
|
16414
16421
|
l.fileTypeImage ? (a(), r(_, { key: 0 }, [
|
16415
16422
|
o("span", null, y(e.getMessage("upload_form.select_image")), 1),
|
16416
|
-
p(
|
16423
|
+
p(u, {
|
16417
16424
|
iconClass: n.iconImage.iconClass,
|
16418
16425
|
type: n.iconImage.iconType
|
16419
16426
|
}, null, 8, ["iconClass", "type"])
|
16420
16427
|
], 64)) : (a(), r(_, { key: 1 }, [
|
16421
16428
|
o("span", null, y(e.getMessage("upload_form.select_file")), 1),
|
16422
|
-
p(
|
16429
|
+
p(u, {
|
16423
16430
|
iconClass: n.iconFileUpload.iconClass,
|
16424
16431
|
type: n.iconFileUpload.iconType
|
16425
16432
|
}, null, 8, ["iconClass", "type"])
|
@@ -16668,8 +16675,8 @@ const Cl = /* @__PURE__ */ F(sb, [["render", ub]]), cb = {
|
|
16668
16675
|
}
|
16669
16676
|
};
|
16670
16677
|
function mb(e, t, n, s, i, l) {
|
16671
|
-
const d = te,
|
16672
|
-
return a(), k(
|
16678
|
+
const d = te, c = kn;
|
16679
|
+
return a(), k(c, {
|
16673
16680
|
"use-slots": ["body"],
|
16674
16681
|
collapsible: !0,
|
16675
16682
|
cmdHeadline: { headlineText: l.readableName(n.componentName), headlineLevel: 4, cmdIcon: { iconClass: "icon-settings-template" } },
|
@@ -16677,17 +16684,17 @@ function mb(e, t, n, s, i, l) {
|
|
16677
16684
|
boxBodyClass: "settings-body"
|
16678
16685
|
}, {
|
16679
16686
|
body: w(() => [
|
16680
|
-
(a(!0), r(_, null, q(l.filteredProps, (
|
16681
|
-
key:
|
16682
|
-
element: l.formElement(
|
16683
|
-
type: l.formType(
|
16684
|
-
labelText: l.readableName(
|
16685
|
-
placeholder: l.readableName(
|
16686
|
-
toggleSwitch:
|
16687
|
+
(a(!0), r(_, null, q(l.filteredProps, (u) => (a(), k(d, {
|
16688
|
+
key: u.name,
|
16689
|
+
element: l.formElement(u),
|
16690
|
+
type: l.formType(u),
|
16691
|
+
labelText: l.readableName(u.name),
|
16692
|
+
placeholder: l.readableName(u.name),
|
16693
|
+
toggleSwitch: u.toggleSwitch,
|
16687
16694
|
colored: !0,
|
16688
|
-
selectOptions: l.selectOptions(
|
16689
|
-
modelValue:
|
16690
|
-
"onUpdate:modelValue": (g) => l.onUpdateProperty(
|
16695
|
+
selectOptions: l.selectOptions(u),
|
16696
|
+
modelValue: u.value,
|
16697
|
+
"onUpdate:modelValue": (g) => l.onUpdateProperty(u.name, g)
|
16691
16698
|
}, null, 8, ["element", "type", "labelText", "placeholder", "toggleSwitch", "selectOptions", "modelValue", "onUpdate:modelValue"]))), 128))
|
16692
16699
|
]),
|
16693
16700
|
_: 1
|
@@ -16703,12 +16710,12 @@ const pb = /* @__PURE__ */ F(cb, [["render", mb]]), fb = {
|
|
16703
16710
|
}
|
16704
16711
|
}, hb = { class: "cmd-page-multiple-box-wrapper flex-container vertical" };
|
16705
16712
|
function gb(e, t, n, s, i, l) {
|
16706
|
-
const d = kn,
|
16713
|
+
const d = kn, c = qi;
|
16707
16714
|
return a(), r("div", hb, [
|
16708
|
-
(a(!0), r(_, null, q(n.segments, (
|
16709
|
-
p(
|
16715
|
+
(a(!0), r(_, null, q(n.segments, (u, g) => (a(), r(_, { key: g }, [
|
16716
|
+
p(c, I({ ref_for: !0 }, u), {
|
16710
16717
|
default: w((f) => [
|
16711
|
-
(a(!0), r(_, null, q(
|
16718
|
+
(a(!0), r(_, null, q(u.boxes, (h, v) => (a(), k(d, I({
|
16712
16719
|
"use-slots": ["box-body"],
|
16713
16720
|
key: v,
|
16714
16721
|
ref_for: !0
|
@@ -16739,12 +16746,12 @@ const yb = /* @__PURE__ */ F(fb, [["render", gb]]), bb = {
|
|
16739
16746
|
function Cb(e, t, n, s, i, l) {
|
16740
16747
|
const d = Cn;
|
16741
16748
|
return a(), r("div", xb, [
|
16742
|
-
(a(!0), r(_, null, q(n.segments, (
|
16749
|
+
(a(!0), r(_, null, q(n.segments, (c, u) => (a(), r(_, { key: u }, [
|
16743
16750
|
p(d, {
|
16744
|
-
links:
|
16745
|
-
orientation:
|
16746
|
-
largeIcons:
|
16747
|
-
cmdHeadline:
|
16751
|
+
links: c.links,
|
16752
|
+
orientation: c.orientation,
|
16753
|
+
largeIcons: c.largeIcons,
|
16754
|
+
cmdHeadline: c.headline
|
16748
16755
|
}, null, 8, ["links", "orientation", "largeIcons", "cmdHeadline"]),
|
16749
16756
|
A(e.$slots, "multiple-lists-of-links-slot-${index}")
|
16750
16757
|
], 64))), 128))
|
@@ -16788,12 +16795,12 @@ const vb = /* @__PURE__ */ F(bb, [["render", Cb]]), kb = {
|
|
16788
16795
|
class: "flex-container"
|
16789
16796
|
}, Tb = { class: "flex-container vertical" };
|
16790
16797
|
function Sb(e, t, n, s, i, l) {
|
16791
|
-
const d = Hi,
|
16798
|
+
const d = Hi, c = Vi, u = Gi;
|
16792
16799
|
return l.contactFormOnly ? (a(), k(d, j(I({ key: 0 }, e.basicForm)), null, 16)) : (a(), r("div", wb, [
|
16793
16800
|
p(d, j(Ve(e.basicForm)), null, 16),
|
16794
16801
|
o("div", Tb, [
|
16795
|
-
n.cmdAddressData ? (a(), k(
|
16796
|
-
n.cmdGoogleMaps ? (a(), k(
|
16802
|
+
n.cmdAddressData ? (a(), k(c, j(I({ key: 0 }, n.cmdAddressData)), null, 16)) : m("", !0),
|
16803
|
+
n.cmdGoogleMaps ? (a(), k(u, j(I({ key: 1 }, n.cmdGoogleMaps)), null, 16)) : m("", !0),
|
16797
16804
|
A(e.$slots, "additional-info")
|
16798
16805
|
])
|
16799
16806
|
]));
|
@@ -17358,9 +17365,9 @@ const _b = /* @__PURE__ */ F(kb, [["render", Sb]]), vl = [
|
|
17358
17365
|
}
|
17359
17366
|
};
|
17360
17367
|
function Mb(e, t, n, s, i, l) {
|
17361
|
-
const d = _b,
|
17368
|
+
const d = _b, c = Cl, u = vb, g = yb;
|
17362
17369
|
return a(), r(_, null, [
|
17363
|
-
p(
|
17370
|
+
p(c, null, {
|
17364
17371
|
default: w(() => [
|
17365
17372
|
t[1] || (t[1] = o("h2", {
|
17366
17373
|
class: "headline-demopage",
|
@@ -17381,7 +17388,7 @@ function Mb(e, t, n, s, i, l) {
|
|
17381
17388
|
]),
|
17382
17389
|
_: 1
|
17383
17390
|
}),
|
17384
|
-
p(
|
17391
|
+
p(c, null, {
|
17385
17392
|
default: w(() => [
|
17386
17393
|
t[2] || (t[2] = o("h2", {
|
17387
17394
|
class: "headline-demopage",
|
@@ -17390,14 +17397,14 @@ function Mb(e, t, n, s, i, l) {
|
|
17390
17397
|
o("span", null, "Multiple Lists of links")
|
17391
17398
|
], -1)),
|
17392
17399
|
t[3] || (t[3] = o("h3", { id: "section-multiple-lists-of-links-downloads" }, "Downloads", -1)),
|
17393
|
-
p(
|
17400
|
+
p(u, { segments: i.listOfDownloadsData }, null, 8, ["segments"]),
|
17394
17401
|
t[4] || (t[4] = o("hr", null, null, -1)),
|
17395
17402
|
t[5] || (t[5] = o("h3", { id: "section-multiple-lists-of-links-sitemap" }, "SiteMap", -1)),
|
17396
|
-
p(
|
17403
|
+
p(u, { segments: i.listOfSiteLinksData }, null, 8, ["segments"])
|
17397
17404
|
]),
|
17398
17405
|
_: 1
|
17399
17406
|
}),
|
17400
|
-
p(
|
17407
|
+
p(c, null, {
|
17401
17408
|
default: w(() => [
|
17402
17409
|
t[6] || (t[6] = o("h2", {
|
17403
17410
|
class: "headline-demopage",
|
@@ -17439,25 +17446,25 @@ function wl(e, t = "dmy", n = ".") {
|
|
17439
17446
|
const s = new Date(e);
|
17440
17447
|
isNaN(s) && console.error("function 'formatDate()' received an invalid date as parameter. Provide date in format 'YYYY-MM-DD'");
|
17441
17448
|
const i = s.getFullYear(), l = String(s.getMonth() + 1).padStart(2, "0"), d = String(s.getDate()).padStart(2, "0");
|
17442
|
-
let
|
17449
|
+
let c = "";
|
17443
17450
|
switch (t) {
|
17444
17451
|
case "dmy":
|
17445
|
-
|
17452
|
+
c = `${d}${n}${l}${n}${i}`;
|
17446
17453
|
break;
|
17447
17454
|
case "mdy":
|
17448
|
-
|
17455
|
+
c = `${l}${n}${d}${n}${i}`;
|
17449
17456
|
break;
|
17450
17457
|
default:
|
17451
|
-
|
17458
|
+
c = `${i}${n}${l}${n}${d}`;
|
17452
17459
|
}
|
17453
|
-
return
|
17460
|
+
return c;
|
17454
17461
|
}
|
17455
17462
|
function Vb(e = "00:00", t = 24, n = "h") {
|
17456
17463
|
const [s, i] = e.split(":");
|
17457
17464
|
let l = parseInt(s, 10), d = "";
|
17458
17465
|
if (t = t.toString(), t === "12") {
|
17459
|
-
const
|
17460
|
-
return l = l % 12 || 12, d = `${l}:${i} ${
|
17466
|
+
const c = l >= 12 ? "pm" : "am";
|
17467
|
+
return l = l % 12 || 12, d = `${l}:${i} ${c}`, d;
|
17461
17468
|
} else {
|
17462
17469
|
if (t === "24")
|
17463
17470
|
return d = `${l.toString().padStart(2, "0")}:${i}`, n && (d += " " + n), d;
|
@@ -17567,32 +17574,32 @@ const Ab = {
|
|
17567
17574
|
}
|
17568
17575
|
}, Pb = ["title"], Eb = { class: "flex-none" }, Hb = { class: "flex-container" }, qb = { class: "sender-receiver-wrapper flex-container no-wrap-on-small-devices align-items-center flex-none" }, Rb = { class: "contact-full-name" }, jb = ["onClick"], Nb = { class: "flex-container received-and-options-wrapper no-wrap-on-small-devices" }, Ub = { class: "no-list-items date-time-wrapper" }, zb = { class: "flex-container no-wrap-on-small-devices" }, Wb = ["datetime"], Gb = ["datetime"], Kb = { class: "options-wrapper flex-container no-wrap-on-small-devices flex-none" }, Yb = ["onClick"], Jb = ["onClick", "title"], Zb = ["onClick", "title"], Qb = { key: 0 };
|
17569
17576
|
function Xb(e, t, n, s, i, l) {
|
17570
|
-
const d = xe,
|
17571
|
-
return n.mails.length ? (a(!0), r(_, { key: 0 }, q(n.mails, (
|
17577
|
+
const d = xe, c = Ne;
|
17578
|
+
return n.mails.length ? (a(!0), r(_, { key: 0 }, q(n.mails, (u, g) => {
|
17572
17579
|
var f;
|
17573
17580
|
return a(), r(_, { key: g }, [
|
17574
17581
|
o("div", {
|
17575
|
-
class: x(["cmd-mail-tool-entry flex-container box", { unread: !i.mailIsRead.has(
|
17582
|
+
class: x(["cmd-mail-tool-entry flex-container box", { unread: !i.mailIsRead.has(u.id) }]),
|
17576
17583
|
title: e.getMessage("mail_tool_entry.tooltip.read_this_mail")
|
17577
17584
|
}, [
|
17578
17585
|
o("dl", Eb, [
|
17579
17586
|
o("dt", Hb, y(n.boxType === "inbox" ? e.getMessage("mail_tool_entry.description_label.from") : e.getMessage("mail_tool_entry.description_label.to")), 1),
|
17580
17587
|
o("dd", qb, [
|
17581
|
-
(f =
|
17588
|
+
(f = u.cmdImage) != null && f.src ? (a(), k(d, {
|
17582
17589
|
key: 0,
|
17583
|
-
src:
|
17584
|
-
alt:
|
17585
|
-
title:
|
17590
|
+
src: u.cmdImage.src,
|
17591
|
+
alt: u.cmdImage.alt,
|
17592
|
+
title: u.cmdImage.title || u.contactFullName,
|
17586
17593
|
useFigureTag: !1
|
17587
17594
|
}, null, 8, ["src", "alt", "title"])) : m("", !0),
|
17588
|
-
o("span", Rb, y(
|
17595
|
+
o("span", Rb, y(u.contactFullName), 1)
|
17589
17596
|
]),
|
17590
17597
|
o("dt", null, y(e.getMessage("mail_tool_entry.description_label.subject")), 1),
|
17591
17598
|
o("dd", null, [
|
17592
17599
|
o("a", {
|
17593
17600
|
href: "#",
|
17594
|
-
onClick: S((h) => l.readMail(
|
17595
|
-
}, y(
|
17601
|
+
onClick: S((h) => l.readMail(u.id), ["prevent"])
|
17602
|
+
}, y(u.subject), 9, jb)
|
17596
17603
|
])
|
17597
17604
|
]),
|
17598
17605
|
o("div", Nb, [
|
@@ -17600,47 +17607,47 @@ function Xb(e, t, n, s, i, l) {
|
|
17600
17607
|
o("dt", null, y(e.getMessage("mail_tool_entry.description_label.received")), 1),
|
17601
17608
|
o("dd", zb, [
|
17602
17609
|
o("time", {
|
17603
|
-
datetime:
|
17604
|
-
}, y(l.mailFormatDate(
|
17610
|
+
datetime: u.isoDate
|
17611
|
+
}, y(l.mailFormatDate(u.isoDate)), 9, Wb),
|
17605
17612
|
o("time", {
|
17606
|
-
datetime:
|
17607
|
-
}, y(l.mailFormatTime(
|
17613
|
+
datetime: u.time
|
17614
|
+
}, y(l.mailFormatTime(u.time)), 9, Gb)
|
17608
17615
|
])
|
17609
17616
|
]),
|
17610
17617
|
o("div", Kb, [
|
17611
17618
|
o("a", {
|
17612
17619
|
href: "#",
|
17613
|
-
onClick: S((h) => l.deleteMail(
|
17620
|
+
onClick: S((h) => l.deleteMail(u.id), ["prevent"]),
|
17614
17621
|
title: "Delete this mail"
|
17615
17622
|
}, t[0] || (t[0] = [
|
17616
17623
|
o("span", { class: "icon-delete" }, null, -1)
|
17617
17624
|
]), 8, Yb),
|
17618
17625
|
o("a", {
|
17619
17626
|
href: "#",
|
17620
|
-
onClick: S((h) => l.toggleReadStatus(
|
17621
|
-
title: i.mailIsRead.has(
|
17627
|
+
onClick: S((h) => l.toggleReadStatus(u.id), ["prevent"]),
|
17628
|
+
title: i.mailIsRead.has(u.id) ? "Set status to unread" : "Set status to read"
|
17622
17629
|
}, [
|
17623
17630
|
o("span", {
|
17624
|
-
class: x(i.mailIsRead.has(
|
17631
|
+
class: x(i.mailIsRead.has(u.id) ? "icon-visible" : "icon-not-visible")
|
17625
17632
|
}, null, 2)
|
17626
17633
|
], 8, Jb),
|
17627
17634
|
o("a", {
|
17628
17635
|
href: "#",
|
17629
|
-
onClick: S((h) => l.toggleExpandMail(
|
17630
|
-
title: i.expandMail.has(
|
17636
|
+
onClick: S((h) => l.toggleExpandMail(u.id), ["prevent"]),
|
17637
|
+
title: i.expandMail.has(u.id) ? "Collapse mail content" : "Expand mail content"
|
17631
17638
|
}, [
|
17632
17639
|
o("span", {
|
17633
|
-
class: x(i.expandMail.has(
|
17640
|
+
class: x(i.expandMail.has(u.id) ? "icon-chevron-one-stripe-up" : "icon-chevron-one-stripe-down")
|
17634
17641
|
}, null, 2)
|
17635
17642
|
], 8, Zb)
|
17636
17643
|
])
|
17637
17644
|
])
|
17638
17645
|
], 10, Pb),
|
17639
|
-
i.expandMail.has(
|
17640
|
-
o("header", null, " mailId: " + y(
|
17646
|
+
i.expandMail.has(u.id) ? (a(), r("div", Qb, [
|
17647
|
+
o("header", null, " mailId: " + y(u.id), 1)
|
17641
17648
|
])) : m("", !0)
|
17642
17649
|
], 64);
|
17643
|
-
}), 128)) : (a(), k(
|
17650
|
+
}), 128)) : (a(), k(c, j(I({ key: 1 }, n.cmdSystemMessage)), null, 16));
|
17644
17651
|
}
|
17645
17652
|
const $b = /* @__PURE__ */ F(Ab, [["render", Xb]]), ex = {
|
17646
17653
|
name: "CmdMailToolFilter",
|
@@ -17763,7 +17770,7 @@ const $b = /* @__PURE__ */ F(Ab, [["render", Xb]]), ex = {
|
|
17763
17770
|
}
|
17764
17771
|
}, tx = { class: "cmd-mail-tool-filter" }, nx = { class: "flex-container align-items-center" }, ix = { class: "flex-container reset-flex" }, lx = { class: "flex-container sort-wrapper" }, ox = ["title"], ax = { key: 0 }, sx = ["title"], rx = { key: 0 };
|
17765
17772
|
function dx(e, t, n, s, i, l) {
|
17766
|
-
const d = J,
|
17773
|
+
const d = J, c = te;
|
17767
17774
|
return a(), r("div", tx, [
|
17768
17775
|
l.headlineText ? (a(), k(d, {
|
17769
17776
|
key: 0,
|
@@ -17771,7 +17778,7 @@ function dx(e, t, n, s, i, l) {
|
|
17771
17778
|
headlineLevel: l.headlineLevel
|
17772
17779
|
}, null, 8, ["headlineText", "headlineLevel"])) : m("", !0),
|
17773
17780
|
o("div", nx, [
|
17774
|
-
p(
|
17781
|
+
p(c, {
|
17775
17782
|
element: "input",
|
17776
17783
|
type: "search",
|
17777
17784
|
placeholder: "Search " + n.boxType,
|
@@ -17780,27 +17787,27 @@ function dx(e, t, n, s, i, l) {
|
|
17780
17787
|
labelText: "Search " + n.boxType,
|
17781
17788
|
showLabel: !1,
|
17782
17789
|
modelValue: i.searchFilterText,
|
17783
|
-
"onUpdate:modelValue": t[0] || (t[0] = (
|
17790
|
+
"onUpdate:modelValue": t[0] || (t[0] = (u) => i.searchFilterText = u)
|
17784
17791
|
}, null, 8, ["placeholder", "id", "labelText", "modelValue"]),
|
17785
17792
|
o("div", ix, [
|
17786
|
-
p(
|
17793
|
+
p(c, {
|
17787
17794
|
element: "input",
|
17788
17795
|
type: "checkbox",
|
17789
17796
|
name: "search-filters",
|
17790
17797
|
id: "search-subject",
|
17791
17798
|
labelText: "Search subjects",
|
17792
17799
|
modelValue: i.searchFilterOptions,
|
17793
|
-
"onUpdate:modelValue": t[1] || (t[1] = (
|
17800
|
+
"onUpdate:modelValue": t[1] || (t[1] = (u) => i.searchFilterOptions = u),
|
17794
17801
|
inputValue: "subjects"
|
17795
17802
|
}, null, 8, ["modelValue"]),
|
17796
|
-
p(
|
17803
|
+
p(c, {
|
17797
17804
|
element: "input",
|
17798
17805
|
type: "checkbox",
|
17799
17806
|
name: "search-filters",
|
17800
17807
|
id: "search-" + l.senderReceiver,
|
17801
17808
|
labelText: "Search " + l.senderReceiver,
|
17802
17809
|
modelValue: i.searchFilterOptions,
|
17803
|
-
"onUpdate:modelValue": t[2] || (t[2] = (
|
17810
|
+
"onUpdate:modelValue": t[2] || (t[2] = (u) => i.searchFilterOptions = u),
|
17804
17811
|
inputValue: l.senderReceiver
|
17805
17812
|
}, null, 8, ["id", "labelText", "modelValue", "inputValue"])
|
17806
17813
|
])
|
@@ -17809,7 +17816,7 @@ function dx(e, t, n, s, i, l) {
|
|
17809
17816
|
i.sortOrderAsc ? (a(), r("a", {
|
17810
17817
|
key: 0,
|
17811
17818
|
href: "#",
|
17812
|
-
onClick: t[3] || (t[3] = S((
|
17819
|
+
onClick: t[3] || (t[3] = S((u) => l.sortByDate("asc"), ["prevent"])),
|
17813
17820
|
title: n.linkSortAscending.title
|
17814
17821
|
}, [
|
17815
17822
|
n.linkSortAscending.text ? (a(), r("span", ax, y(n.linkSortAscending.text), 1)) : m("", !0),
|
@@ -17820,7 +17827,7 @@ function dx(e, t, n, s, i, l) {
|
|
17820
17827
|
], 8, ox)) : (a(), r("a", {
|
17821
17828
|
key: 1,
|
17822
17829
|
href: "#",
|
17823
|
-
onClick: t[4] || (t[4] = S((
|
17830
|
+
onClick: t[4] || (t[4] = S((u) => l.sortByDate("desc"), ["prevent"])),
|
17824
17831
|
title: n.linkSortDescending.title
|
17825
17832
|
}, [
|
17826
17833
|
n.linkSortDescending.text ? (a(), r("span", rx, y(n.linkSortDescending.text), 1)) : m("", !0),
|
@@ -17924,26 +17931,26 @@ const ux = /* @__PURE__ */ F(ex, [["render", dx]]), cx = {
|
|
17924
17931
|
computed: {
|
17925
17932
|
filteredMailsInbox() {
|
17926
17933
|
return this.searchFilters.searchFilterText === "" ? this.mailsInbox : this.searchFilters.searchFilterOptions.length ? this.mailsInbox.filter((e) => {
|
17927
|
-
var s, i, l, d,
|
17934
|
+
var s, i, l, d, c, u, g, f;
|
17928
17935
|
let t = !1, n = !1;
|
17929
|
-
return (i = (s = this.searchFilters) == null ? void 0 : s.searchFilterOptions) != null && i.includes("senders") && (t = e.contactFullName.toLowerCase().includes((d = (l = this.searchFilters) == null ? void 0 : l.searchFilterText) == null ? void 0 : d.toLowerCase())), (
|
17936
|
+
return (i = (s = this.searchFilters) == null ? void 0 : s.searchFilterOptions) != null && i.includes("senders") && (t = e.contactFullName.toLowerCase().includes((d = (l = this.searchFilters) == null ? void 0 : l.searchFilterText) == null ? void 0 : d.toLowerCase())), (u = (c = this.searchFilters) == null ? void 0 : c.searchFilterOptions) != null && u.includes("subjects") && (n = e.subject.toLowerCase().includes((f = (g = this.searchFilters) == null ? void 0 : g.searchFilterText) == null ? void 0 : f.toLowerCase())), t || n;
|
17930
17937
|
}) : [];
|
17931
17938
|
}
|
17932
17939
|
}
|
17933
17940
|
};
|
17934
17941
|
function mx(e, t, n, s, i, l) {
|
17935
|
-
const d = ux,
|
17936
|
-
return a(), k(
|
17942
|
+
const d = ux, c = $b, u = Zi;
|
17943
|
+
return a(), k(u, I({ class: "cmd-mail-tool" }, n.cmdTabs), {
|
17937
17944
|
"tab-content-0": w(() => [
|
17938
17945
|
p(d, I(n.cmdMailToolFilterInbox, {
|
17939
17946
|
modelValue: i.searchFilters,
|
17940
17947
|
"onUpdate:modelValue": t[0] || (t[0] = (g) => i.searchFilters = g)
|
17941
17948
|
}), null, 16, ["modelValue"]),
|
17942
|
-
p(
|
17949
|
+
p(c, { mails: l.filteredMailsInbox }, null, 8, ["mails"])
|
17943
17950
|
]),
|
17944
17951
|
"tab-content-1": w(() => [
|
17945
17952
|
p(d, I(n.cmdMailToolFilterOutbox, { boxType: "outbox" }), null, 16),
|
17946
|
-
p(
|
17953
|
+
p(c, {
|
17947
17954
|
boxType: "outbox",
|
17948
17955
|
mails: n.mailsOutbox
|
17949
17956
|
}, null, 8, ["mails"])
|
@@ -20460,7 +20467,7 @@ const px = /* @__PURE__ */ F(cx, [["render", mx]]), fx = [
|
|
20460
20467
|
text: "Zimbabwe",
|
20461
20468
|
value: "zw"
|
20462
20469
|
}
|
20463
|
-
], _C = "comand-component-library", OC = "4.2.
|
20470
|
+
], _C = "comand-component-library", OC = "4.2.34", LC = "GPL-3.0-only", IC = "CoManD-UI", BC = "module", DC = {
|
20464
20471
|
prepublishOnly: "npm run build-lib",
|
20465
20472
|
dev: "vite",
|
20466
20473
|
build: "vite build",
|
@@ -21926,20 +21933,20 @@ const px = /* @__PURE__ */ F(cx, [["render", mx]]), fx = [
|
|
21926
21933
|
id: "content"
|
21927
21934
|
};
|
21928
21935
|
function gv(e, t, n, s, i, l) {
|
21929
|
-
const d = kn,
|
21936
|
+
const d = kn, c = qi, u = Nf, g = Cn, f = ji, h = Zf, v = Cl, b = Vi, O = Ui, T = te, M = yh, B = Ni, E = Af, D = Ki, U = Ai, W = ar, V = pr, R = Hi, Y = Ri, Q = lc, X = nm, le = Gi, ne = J, ie = K, re = xe, pe = xm, P = Sm, Z = Re, de = ep, fe = px, oe = Yi, Le = we("router-view"), Ie = xp, Be = Tp, De = Zp, Me = wf, ue = Lf, at = df, Ge = Gf, st = ah, rt = ph, dt = Ji, ut = Th, ct = Ne, G = Ah, _l = Zi, Vt = Xh, Ol = Pi, Ll = ng, At = Mi, Il = ab, Bl = kl, Dl = Lc, Ml = Tc, Fl = xd, Vl = pb, Al = Nl("fancybox");
|
21930
21937
|
return $((a(), r("div", {
|
21931
21938
|
class: "page-wrapper",
|
21932
21939
|
id: l.templateId
|
21933
21940
|
}, [
|
21934
21941
|
t[292] || (t[292] = o("a", { id: "anchor-back-to-top" }, null, -1)),
|
21935
|
-
i.showLeftSidebar ? (a(), k(
|
21942
|
+
i.showLeftSidebar ? (a(), k(u, {
|
21936
21943
|
key: 0,
|
21937
21944
|
cmdHeadline: { headlineText: "Site Settings", headlineLevel: 3, textAlign: "center" },
|
21938
21945
|
openSidebar: i.openLeftSidebar,
|
21939
21946
|
onToggleSidebar: l.setOpenStatusLeftSidebar
|
21940
21947
|
}, {
|
21941
21948
|
open: w(() => [
|
21942
|
-
p(
|
21949
|
+
p(c, {
|
21943
21950
|
boxesPerRow: [1],
|
21944
21951
|
allowMultipleExpandedBoxes: !1,
|
21945
21952
|
allowUserToToggleOrientation: !1,
|
@@ -22559,7 +22566,7 @@ function gv(e, t, n, s, i, l) {
|
|
22559
22566
|
]),
|
22560
22567
|
t[164] || (t[164] = o("hr", null, null, -1)),
|
22561
22568
|
t[165] || (t[165] = o("h2", null, "Progress Bar [native]", -1)),
|
22562
|
-
p(
|
22569
|
+
p(E, {
|
22563
22570
|
labelText: "Progress Bar (with optional output):",
|
22564
22571
|
id: "progress-bar2",
|
22565
22572
|
max: "100"
|
@@ -23091,7 +23098,7 @@ function gv(e, t, n, s, i, l) {
|
|
23091
23098
|
])),
|
23092
23099
|
_: 1
|
23093
23100
|
}, 16),
|
23094
|
-
p(
|
23101
|
+
p(c, {
|
23095
23102
|
useFlexbox: !0,
|
23096
23103
|
cmdHeadline: { headlineText: "Boxes in BoxWrapper with flexbox", headlineLevel: 3 },
|
23097
23104
|
useGap: !0
|
@@ -23105,7 +23112,7 @@ function gv(e, t, n, s, i, l) {
|
|
23105
23112
|
]),
|
23106
23113
|
_: 1
|
23107
23114
|
}),
|
23108
|
-
p(
|
23115
|
+
p(c, {
|
23109
23116
|
"use-gap": !0,
|
23110
23117
|
cmdHeadline: { headlineText: "Different examples of content-boxes (in BoxWrapper)", headlineLevel: 3 }
|
23111
23118
|
}, {
|
@@ -23299,7 +23306,7 @@ function gv(e, t, n, s, i, l) {
|
|
23299
23306
|
]))), 128))
|
23300
23307
|
]),
|
23301
23308
|
t[205] || (t[205] = o("h3", null, "User boxes", -1)),
|
23302
|
-
p(
|
23309
|
+
p(c, {
|
23303
23310
|
boxesPerRow: [5, 2, 1],
|
23304
23311
|
useRowViewAsDefault: !0,
|
23305
23312
|
useGap: !0
|
@@ -23324,7 +23331,7 @@ function gv(e, t, n, s, i, l) {
|
|
23324
23331
|
onClick: t[76] || (t[76] = S((C) => l.openSettingsSidebar("CmdBoxWrapper"), ["prevent"]))
|
23325
23332
|
})
|
23326
23333
|
]),
|
23327
|
-
p(
|
23334
|
+
p(c, {
|
23328
23335
|
ref: "CmdBoxWrapper",
|
23329
23336
|
boxesPerRow: [5, 2, 1],
|
23330
23337
|
openBoxesByDefault: [2],
|
@@ -23752,7 +23759,7 @@ function gv(e, t, n, s, i, l) {
|
|
23752
23759
|
class: "headline-demopage",
|
23753
23760
|
id: "section-image-zoom"
|
23754
23761
|
}, " Image-Zoom ", -1)),
|
23755
|
-
p(
|
23762
|
+
p(P, {
|
23756
23763
|
imageSmall: i.imageZoomData.imageSmall,
|
23757
23764
|
imageLarge: i.imageZoomData.imageLarge
|
23758
23765
|
}, null, 8, ["imageSmall", "imageLarge"])
|
@@ -24517,7 +24524,7 @@ function gv(e, t, n, s, i, l) {
|
|
24517
24524
|
]),
|
24518
24525
|
_: 1
|
24519
24526
|
}, 8, ["show"]),
|
24520
|
-
i.showSettingsSidebar ? (a(), k(
|
24527
|
+
i.showSettingsSidebar ? (a(), k(u, {
|
24521
24528
|
key: 3,
|
24522
24529
|
id: "component-settings",
|
24523
24530
|
cmdHeadline: { headlineText: "Component Settings", headlineLevel: 3, textAlign: "center" },
|