comand-component-library 3.3.79 → 3.3.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/comand-component-library.js +576 -567
- package/dist/comand-component-library.umd.cjs +4 -4
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/App.vue +22 -10
- package/src/components/CmdSocialNetworks.vue +47 -43
- package/src/components/CmdTabs.vue +16 -4
- package/src/components/CmdThumbnailScroller.vue +3 -3
- package/src/components/CmdTooltip.vue +19 -0
- package/src/components/CmdUploadForm.vue +1 -1
@@ -1593,7 +1593,7 @@ function ul(e, i, t, a, s, n) {
|
|
1593
1593
|
])
|
1594
1594
|
]);
|
1595
1595
|
}
|
1596
|
-
const
|
1596
|
+
const qh = /* @__PURE__ */ L(Is, [["render", ul]]), dl = {
|
1597
1597
|
name: "CmdBackToTopButton",
|
1598
1598
|
data() {
|
1599
1599
|
var e;
|
@@ -1669,7 +1669,7 @@ function hl(e, i, t, a, s, n) {
|
|
1669
1669
|
_: 1
|
1670
1670
|
});
|
1671
1671
|
}
|
1672
|
-
const
|
1672
|
+
const Rh = /* @__PURE__ */ L(dl, [["render", hl]]);
|
1673
1673
|
const fl = {
|
1674
1674
|
name: "CmdBankAccountData",
|
1675
1675
|
props: {
|
@@ -1732,7 +1732,7 @@ function _l(e, i, t, a, s, n) {
|
|
1732
1732
|
t.additionalInformation ? (l(), o("p", Cl, g(t.additionalInformation), 1)) : m("", !0)
|
1733
1733
|
]);
|
1734
1734
|
}
|
1735
|
-
const
|
1735
|
+
const Vh = /* @__PURE__ */ L(fl, [["render", _l]]);
|
1736
1736
|
function oe(e) {
|
1737
1737
|
return e.path ? e.path : ((e.route == null || typeof e.route != "object" || !e.route.path && !e.route.name) && console.error("Error in router configuration. Expected object with 'path' or 'name', got", e.route), e.route);
|
1738
1738
|
}
|
@@ -1755,6 +1755,10 @@ const bl = {
|
|
1755
1755
|
type: String,
|
1756
1756
|
required: !1
|
1757
1757
|
},
|
1758
|
+
delayToShowTooltip: {
|
1759
|
+
type: Number,
|
1760
|
+
default: 0
|
1761
|
+
},
|
1758
1762
|
relatedId: {
|
1759
1763
|
type: String,
|
1760
1764
|
required: !1
|
@@ -1789,6 +1793,11 @@ const bl = {
|
|
1789
1793
|
this.getPointerPosition(e), this.tooltipVisibility = !this.tooltipVisibility;
|
1790
1794
|
},
|
1791
1795
|
showTooltip(e) {
|
1796
|
+
this.delayToShowTooltip > 0 ? setTimeout(() => {
|
1797
|
+
this.toggleVisibility(e);
|
1798
|
+
}, this.delayToShowTooltip) : this.toggleVisibility(e);
|
1799
|
+
},
|
1800
|
+
toggleVisibility(e) {
|
1792
1801
|
this.toggleVisibilityByClick || (this.tooltipVisibility = !0), this.getPointerPosition(e);
|
1793
1802
|
},
|
1794
1803
|
hideTooltipOnEsc(e) {
|
@@ -3272,14 +3281,14 @@ const Mo = {
|
|
3272
3281
|
immediate: !0
|
3273
3282
|
}
|
3274
3283
|
}
|
3275
|
-
}, Oo = ["href", "onClick", "title", "target"],
|
3276
|
-
function
|
3284
|
+
}, Oo = { class: "inner-thumbnail-wrapper" }, Lo = ["href", "onClick", "title", "target"], Do = { key: 1 };
|
3285
|
+
function No(e, i, t, a, s, n) {
|
3277
3286
|
const u = It, d = be, r = z;
|
3278
3287
|
return l(), o("div", {
|
3279
3288
|
class: C(["cmd-thumbnail-scroller", { "gallery-scroller": !t.allowOpenFancyBox, "full-width": t.fullWidth, "large-icons": t.largeIcons }]),
|
3280
3289
|
ref: "thumbnail-scroller"
|
3281
3290
|
}, [
|
3282
|
-
f("div",
|
3291
|
+
f("div", Oo, [
|
3283
3292
|
s.showSlidebuttons ? (l(), _(u, {
|
3284
3293
|
key: 0,
|
3285
3294
|
onClick: S(n.showPrevItem, ["prevent"]),
|
@@ -3310,9 +3319,9 @@ function Do(e, i, t, a, s, n) {
|
|
3310
3319
|
iconClass: c.iconClass,
|
3311
3320
|
type: c.iconType
|
3312
3321
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
3313
|
-
c.text ? (l(), o("span",
|
3322
|
+
c.text ? (l(), o("span", Do, g(c.text), 1)) : m("", !0)
|
3314
3323
|
], 64))
|
3315
|
-
], 8,
|
3324
|
+
], 8, Lo)
|
3316
3325
|
], 2))), 128))
|
3317
3326
|
]),
|
3318
3327
|
_: 1
|
@@ -3325,7 +3334,7 @@ function Do(e, i, t, a, s, n) {
|
|
3325
3334
|
])
|
3326
3335
|
], 2);
|
3327
3336
|
}
|
3328
|
-
const
|
3337
|
+
const jo = /* @__PURE__ */ L(Mo, [["render", No]]);
|
3329
3338
|
const xt = (e) => {
|
3330
3339
|
const i = document.createElement("div");
|
3331
3340
|
document.querySelector("body").appendChild(i), hn(Yi, {
|
@@ -3485,7 +3494,7 @@ const xt = (e) => {
|
|
3485
3494
|
}));
|
3486
3495
|
},
|
3487
3496
|
async loadContent(e) {
|
3488
|
-
(await
|
3497
|
+
(await Bo(e)).startsWith("image/") ? this.fancyBoxImageUrl = e : fetch(e).then((t) => t.text()).then((t) => this.fancyBoxContent = t).catch((t) => console.error(`Error loading ${this.url}: ${t}`));
|
3489
3498
|
},
|
3490
3499
|
showPrevItem() {
|
3491
3500
|
this.index > 0 ? this.index-- : this.index = this.fancyBoxGallery.length - 1;
|
@@ -3521,32 +3530,32 @@ const xt = (e) => {
|
|
3521
3530
|
}
|
3522
3531
|
}
|
3523
3532
|
});
|
3524
|
-
async function
|
3533
|
+
async function Bo(e) {
|
3525
3534
|
const i = await fetch(e, { method: "HEAD" });
|
3526
3535
|
return i.ok ? (i.headers.get("Content-Type") || "").split(";")[0] : "text/html";
|
3527
3536
|
}
|
3528
|
-
const
|
3537
|
+
const Po = Yi, Fo = ["aria-label"], Ao = { class: "flex-container" }, Ho = {
|
3529
3538
|
key: 1,
|
3530
3539
|
class: "button-wrapper no-flex"
|
3531
|
-
},
|
3540
|
+
}, zo = ["title"], qo = ["title"], Ro = ["title"], Vo = {
|
3532
3541
|
key: 0,
|
3533
3542
|
class: "content"
|
3534
|
-
},
|
3543
|
+
}, Eo = ["innerHTML"], Uo = {
|
3535
3544
|
key: 2,
|
3536
3545
|
class: "content"
|
3537
|
-
},
|
3546
|
+
}, Go = {
|
3538
3547
|
key: 3,
|
3539
3548
|
class: "content"
|
3540
|
-
},
|
3549
|
+
}, Qo = {
|
3541
3550
|
key: 4,
|
3542
3551
|
class: "content"
|
3543
|
-
},
|
3552
|
+
}, Wo = {
|
3544
3553
|
key: 0,
|
3545
3554
|
class: "flex-container no-flex"
|
3546
|
-
},
|
3547
|
-
function
|
3555
|
+
}, Zo = ["title"], Jo = { key: 1 }, Yo = ["title"], Ko = { key: 1 };
|
3556
|
+
function Xo(e, i, t, a, s, n) {
|
3548
3557
|
var p, k, y, I, v, T, M, N, V, w, q, D, P, U, G, R, Y, W, ne, te, he, O, ce, Nt, jt, Bt, Pt, Ft, At;
|
3549
|
-
const u = E, d = z, r = be, c = It, h =
|
3558
|
+
const u = E, d = z, r = be, c = It, h = jo;
|
3550
3559
|
return l(), _(fn, { to: "body" }, [
|
3551
3560
|
f("dialog", {
|
3552
3561
|
ref: "dialog",
|
@@ -3554,14 +3563,14 @@ function Ko(e, i, t, a, s, n) {
|
|
3554
3563
|
"aria-label": e.ariaLabelText,
|
3555
3564
|
onCancel: i[5] || (i[5] = (...ie) => e.onDialogCancel && e.onDialogCancel(...ie))
|
3556
3565
|
}, [
|
3557
|
-
f("header",
|
3566
|
+
f("header", Ao, [
|
3558
3567
|
(p = e.cmdHeadline) != null && p.show ? (l(), _(u, {
|
3559
3568
|
key: 0,
|
3560
3569
|
headlineText: (k = e.cmdHeadline) == null ? void 0 : k.headlineText,
|
3561
3570
|
headlineLevel: (y = e.cmdHeadline) == null ? void 0 : y.headlineLevel,
|
3562
3571
|
id: e.htmlId
|
3563
3572
|
}, null, 8, ["headlineText", "headlineLevel", "id"])) : m("", !0),
|
3564
|
-
((I = e.fancyboxOptions.printButtons) == null ? void 0 : I.color) || ((v = e.fancyboxOptions.printButtons) == null ? void 0 : v.grayscale) || e.fancyboxOptions.closeIcon ? (l(), o("div",
|
3573
|
+
((I = e.fancyboxOptions.printButtons) == null ? void 0 : I.color) || ((v = e.fancyboxOptions.printButtons) == null ? void 0 : v.grayscale) || e.fancyboxOptions.closeIcon ? (l(), o("div", Ho, [
|
3565
3574
|
e.showPrintButtons && ((T = e.fancyboxOptions.printButtons) == null ? void 0 : T.color) ? (l(), o("a", {
|
3566
3575
|
key: 0,
|
3567
3576
|
href: "#",
|
@@ -3573,7 +3582,7 @@ function Ko(e, i, t, a, s, n) {
|
|
3573
3582
|
iconClass: (N = e.fancyboxOptions.printButtons.color) == null ? void 0 : N.iconClass,
|
3574
3583
|
type: (V = e.fancyboxOptions.printButtons.color) == null ? void 0 : V.iconType
|
3575
3584
|
}, null, 8, ["iconClass", "type"])
|
3576
|
-
], 8,
|
3585
|
+
], 8, zo)) : m("", !0),
|
3577
3586
|
e.showPrintButtons && ((w = e.fancyboxOptions.printButtons) == null ? void 0 : w.grayscale) ? (l(), o("a", {
|
3578
3587
|
key: 1,
|
3579
3588
|
href: "#",
|
@@ -3585,7 +3594,7 @@ function Ko(e, i, t, a, s, n) {
|
|
3585
3594
|
iconClass: (D = e.fancyboxOptions.printButtons.grayscale) == null ? void 0 : D.iconClass,
|
3586
3595
|
type: (P = e.fancyboxOptions.printButtons.grayscale) == null ? void 0 : P.iconType
|
3587
3596
|
}, null, 8, ["iconClass", "type"])
|
3588
|
-
], 8,
|
3597
|
+
], 8, qo)) : m("", !0),
|
3589
3598
|
e.fancyboxOptions.closeIcon ? (l(), o("a", {
|
3590
3599
|
key: 2,
|
3591
3600
|
href: "#",
|
@@ -3599,13 +3608,13 @@ function Ko(e, i, t, a, s, n) {
|
|
3599
3608
|
iconClass: e.fancyboxOptions.closeIcon.iconClass,
|
3600
3609
|
type: e.fancyboxOptions.closeIcon.iconType
|
3601
3610
|
}, null, 8, ["iconClass", "type"])
|
3602
|
-
], 8,
|
3611
|
+
], 8, Ro)) : m("", !0)
|
3603
3612
|
])) : m("", !0)
|
3604
3613
|
]),
|
3605
3614
|
f("div", {
|
3606
3615
|
class: C(["outer-content-wrapper", { grayscale: e.printInGrayscale }])
|
3607
3616
|
}, [
|
3608
|
-
e.fancyBoxImageUrl || ((U = e.cmdImage) == null ? void 0 : U.image) ? (l(), o("div",
|
3617
|
+
e.fancyBoxImageUrl || ((U = e.cmdImage) == null ? void 0 : U.image) ? (l(), o("div", Vo, [
|
3609
3618
|
x(r, {
|
3610
3619
|
image: e.largeSingleImage,
|
3611
3620
|
figcaption: (G = e.cmdImage) == null ? void 0 : G.figcaption
|
@@ -3614,7 +3623,7 @@ function Ko(e, i, t, a, s, n) {
|
|
3614
3623
|
key: 1,
|
3615
3624
|
class: "content",
|
3616
3625
|
innerHTML: e.fancyBoxContent
|
3617
|
-
}, null, 8,
|
3626
|
+
}, null, 8, Eo)) : e.fancyBoxElements ? (l(), o("div", Uo)) : e.fancyBoxGallery ? (l(), o("div", Go, [
|
3618
3627
|
x(c, {
|
3619
3628
|
onClick: S(e.showPrevItem, ["prevent"]),
|
3620
3629
|
slideButtonType: "prev"
|
@@ -3626,11 +3635,11 @@ function Ko(e, i, t, a, s, n) {
|
|
3626
3635
|
x(c, {
|
3627
3636
|
onClick: S(e.showNextItem, ["prevent"])
|
3628
3637
|
}, null, 8, ["onClick"])
|
3629
|
-
])) : (l(), o("div",
|
3638
|
+
])) : (l(), o("div", Qo, [
|
3630
3639
|
H(e.$slots, "default")
|
3631
3640
|
]))
|
3632
3641
|
], 2),
|
3633
|
-
e.showSubmitButtons && e.fancyboxOptions.submitButtons ? (l(), o("footer",
|
3642
|
+
e.showSubmitButtons && e.fancyboxOptions.submitButtons ? (l(), o("footer", Wo, [
|
3634
3643
|
(R = e.fancyboxOptions.submitButtons) != null && R.cancel ? (l(), o("button", {
|
3635
3644
|
key: 0,
|
3636
3645
|
onClick: i[3] || (i[3] = (...ie) => e.cancel && e.cancel(...ie)),
|
@@ -3641,8 +3650,8 @@ function Ko(e, i, t, a, s, n) {
|
|
3641
3650
|
iconClass: (ne = e.fancyboxOptions.submitButtons.cancel) == null ? void 0 : ne.iconClass,
|
3642
3651
|
type: (te = e.fancyboxOptions.submitButtons.cancel) == null ? void 0 : te.iconType
|
3643
3652
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
3644
|
-
(he = e.fancyboxOptions.submitButtons.cancel) != null && he.buttonText ? (l(), o("span",
|
3645
|
-
], 8,
|
3653
|
+
(he = e.fancyboxOptions.submitButtons.cancel) != null && he.buttonText ? (l(), o("span", Jo, g((O = e.fancyboxOptions.submitButtons.cancel) == null ? void 0 : O.buttonText), 1)) : m("", !0)
|
3654
|
+
], 8, Zo)) : m("", !0),
|
3646
3655
|
(ce = e.fancyboxOptions.submitButtons) != null && ce.confirm ? (l(), o("button", {
|
3647
3656
|
key: 1,
|
3648
3657
|
onClick: i[4] || (i[4] = (...ie) => e.confirm && e.confirm(...ie)),
|
@@ -3653,8 +3662,8 @@ function Ko(e, i, t, a, s, n) {
|
|
3653
3662
|
iconClass: (Bt = e.fancyboxOptions.submitButtons.confirm) == null ? void 0 : Bt.iconClass,
|
3654
3663
|
type: (Pt = e.fancyboxOptions.submitButtons.confirm) == null ? void 0 : Pt.iconType
|
3655
3664
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
3656
|
-
(Ft = e.fancyboxOptions.submitButtons.confirm) != null && Ft.buttonText ? (l(), o("span",
|
3657
|
-
], 8,
|
3665
|
+
(Ft = e.fancyboxOptions.submitButtons.confirm) != null && Ft.buttonText ? (l(), o("span", Ko, g((At = e.fancyboxOptions.submitButtons.confirm) == null ? void 0 : At.buttonText), 1)) : m("", !0)
|
3666
|
+
], 8, Yo)) : m("", !0)
|
3658
3667
|
])) : m("", !0),
|
3659
3668
|
e.fancyBoxGallery ? (l(), _(h, {
|
3660
3669
|
key: 1,
|
@@ -3663,11 +3672,11 @@ function Ko(e, i, t, a, s, n) {
|
|
3663
3672
|
onClick: e.showItem,
|
3664
3673
|
activeItemIndex: e.index
|
3665
3674
|
}, null, 8, ["thumbnailScrollerItems", "onClick", "activeItemIndex"])) : m("", !0)
|
3666
|
-
], 42,
|
3675
|
+
], 42, Fo)
|
3667
3676
|
]);
|
3668
3677
|
}
|
3669
|
-
const
|
3670
|
-
const
|
3678
|
+
const Eh = /* @__PURE__ */ L(Po, [["render", Xo]]);
|
3679
|
+
const $o = {
|
3671
3680
|
name: "CmdListOfLinks",
|
3672
3681
|
emits: ["click"],
|
3673
3682
|
props: {
|
@@ -3725,8 +3734,8 @@ const Xo = {
|
|
3725
3734
|
this.$emit("click", { link: e, originalEvent: i });
|
3726
3735
|
}
|
3727
3736
|
}
|
3728
|
-
},
|
3729
|
-
function
|
3737
|
+
}, ea = ["href", "target", "onClick", "title"], ta = { key: 1 }, ia = { key: 1 };
|
3738
|
+
function na(e, i, t, a, s, n) {
|
3730
3739
|
const u = E, d = z, r = K("router-link");
|
3731
3740
|
return l(), o("div", {
|
3732
3741
|
class: C(["cmd-list-of-links", { box: t.styleAsBox, horizontal: t.orientation === "horizontal", "section-anchors": t.sectionAnchors, "large-icons": t.largeIcons }])
|
@@ -3751,8 +3760,8 @@ function ia(e, i, t, a, s, n) {
|
|
3751
3760
|
iconClass: c.iconClass,
|
3752
3761
|
type: c.iconType
|
3753
3762
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
3754
|
-
c.text ? (l(), o("span",
|
3755
|
-
], 8,
|
3763
|
+
c.text ? (l(), o("span", ta, g(c.text), 1)) : m("", !0)
|
3764
|
+
], 8, ea)) : c.type === "router" ? (l(), _(r, {
|
3756
3765
|
key: 1,
|
3757
3766
|
to: n.getRoute(c),
|
3758
3767
|
title: c.tooltip
|
@@ -3763,7 +3772,7 @@ function ia(e, i, t, a, s, n) {
|
|
3763
3772
|
iconClass: c.iconClass,
|
3764
3773
|
type: c.iconType
|
3765
3774
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
3766
|
-
c.text ? (l(), o("span",
|
3775
|
+
c.text ? (l(), o("span", ia, g(c.text), 1)) : m("", !0)
|
3767
3776
|
]),
|
3768
3777
|
_: 2
|
3769
3778
|
}, 1032, ["to", "title"])) : m("", !0)
|
@@ -3771,7 +3780,7 @@ function ia(e, i, t, a, s, n) {
|
|
3771
3780
|
], 2)
|
3772
3781
|
], 2);
|
3773
3782
|
}
|
3774
|
-
const
|
3783
|
+
const sa = /* @__PURE__ */ L($o, [["render", na]]), la = {
|
3775
3784
|
data() {
|
3776
3785
|
return {
|
3777
3786
|
defaultMessageProperties: {
|
@@ -3782,7 +3791,7 @@ const na = /* @__PURE__ */ L(Xo, [["render", ia]]), sa = {
|
|
3782
3791
|
}
|
3783
3792
|
};
|
3784
3793
|
}
|
3785
|
-
},
|
3794
|
+
}, oa = {
|
3786
3795
|
props: {
|
3787
3796
|
globalCurrency: {
|
3788
3797
|
type: Object,
|
@@ -3799,8 +3808,8 @@ const Tt = {
|
|
3799
3808
|
name: "CmdBox",
|
3800
3809
|
mixins: [
|
3801
3810
|
X,
|
3802
|
-
|
3803
|
-
|
3811
|
+
la,
|
3812
|
+
oa
|
3804
3813
|
],
|
3805
3814
|
emits: ["click", "toggle-collapse"],
|
3806
3815
|
data() {
|
@@ -3935,31 +3944,31 @@ const Tt = {
|
|
3935
3944
|
}));
|
3936
3945
|
}, ii = Tt.setup;
|
3937
3946
|
Tt.setup = ii ? (e, i) => (ti(), ii(e, i)) : ti;
|
3938
|
-
const
|
3947
|
+
const aa = Tt, ra = ["title"], ca = {
|
3939
3948
|
key: 0,
|
3940
3949
|
class: "box-header"
|
3941
|
-
},
|
3950
|
+
}, ua = ["src", "alt"], da = { class: "text-wrapper" }, ma = { key: 1 }, ha = {
|
3942
3951
|
key: 2,
|
3943
3952
|
class: "box-footer"
|
3944
|
-
},
|
3953
|
+
}, fa = { class: "box-header flex-container vertical" }, ga = { key: 0 }, pa = ["src", "alt"], ya = { key: 1 }, Ca = {
|
3945
3954
|
key: 2,
|
3946
3955
|
class: "ribbon-new"
|
3947
|
-
},
|
3956
|
+
}, _a = {
|
3948
3957
|
key: 3,
|
3949
3958
|
class: "ribbon-discount"
|
3950
|
-
},
|
3959
|
+
}, ba = { class: "box-body" }, ka = { key: 0 }, va = {
|
3951
3960
|
key: 1,
|
3952
3961
|
class: "price"
|
3953
|
-
},
|
3962
|
+
}, wa = ["title"], Ia = { key: 2 }, xa = { class: "box-header flex-container vertical" }, Ta = { key: 0 }, Sa = ["src", "alt"], Ma = { key: 0 }, Oa = { key: 1 }, La = ["title"], Da = { key: 0 }, Na = { class: "box-body" }, ja = { key: 0 }, Ba = { key: 1 }, Pa = { key: 2 }, Fa = {
|
3954
3963
|
key: 3,
|
3955
3964
|
class: "description"
|
3956
|
-
},
|
3965
|
+
}, Aa = { class: "tags" }, Ha = {
|
3957
3966
|
key: 0,
|
3958
3967
|
class: "box-footer"
|
3959
3968
|
};
|
3960
|
-
function
|
3969
|
+
function za(e, i, t, a, s, n) {
|
3961
3970
|
var c, h, p, k, y, I, v, T, M;
|
3962
|
-
const u = E, d = z, r =
|
3971
|
+
const u = E, d = z, r = sa;
|
3963
3972
|
return t.boxType === "content" ? (l(), o("div", {
|
3964
3973
|
key: 0,
|
3965
3974
|
class: C([
|
@@ -3985,8 +3994,8 @@ function Ha(e, i, t, a, s, n) {
|
|
3985
3994
|
iconClass: s.open ? t.iconOpen.iconClass : t.iconClosed.iconClass,
|
3986
3995
|
type: s.open ? t.iconOpen.iconType : t.iconClosed.iconType
|
3987
3996
|
}, null, 8, ["iconClass", "type"])
|
3988
|
-
], 8,
|
3989
|
-
((p = t.useSlots) == null ? void 0 : p.includes("header")) || ((k = t.cmdHeadline) == null ? void 0 : k.headlineText) ? (l(), o("div",
|
3997
|
+
], 8, ra)) : (l(), o(b, { key: 1 }, [
|
3998
|
+
((p = t.useSlots) == null ? void 0 : p.includes("header")) || ((k = t.cmdHeadline) == null ? void 0 : k.headlineText) ? (l(), o("div", ca, [
|
3990
3999
|
(y = t.useSlots) != null && y.includes("header") ? H(e.$slots, "header", { key: 0 }) : m("", !0),
|
3991
4000
|
(I = t.cmdHeadline) != null && I.headlineText ? (l(), _(u, Q(F({ key: 1 }, t.cmdHeadline)), null, 16)) : m("", !0)
|
3992
4001
|
])) : m("", !0)
|
@@ -4019,16 +4028,16 @@ function Ha(e, i, t, a, s, n) {
|
|
4019
4028
|
key: 0,
|
4020
4029
|
src: t.image.src,
|
4021
4030
|
alt: t.image.altText
|
4022
|
-
}, null, 8,
|
4023
|
-
f("div",
|
4031
|
+
}, null, 8, ua)) : m("", !0),
|
4032
|
+
f("div", da, [
|
4024
4033
|
((T = t.cmdHeadline) == null ? void 0 : T.headlineText) && t.repeatHeadlineInBoxBody ? (l(), _(u, Q(F({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
4025
|
-
t.textBody ? (l(), o("p",
|
4034
|
+
t.textBody ? (l(), o("p", ma, g(t.textBody), 1)) : m("", !0)
|
4026
4035
|
])
|
4027
4036
|
], 64))
|
4028
4037
|
], 2), [
|
4029
4038
|
[me, s.open]
|
4030
4039
|
]),
|
4031
|
-
(M = t.useSlots) != null && M.includes("footer") ? (l(), o("div",
|
4040
|
+
(M = t.useSlots) != null && M.includes("footer") ? (l(), o("div", ha, [
|
4032
4041
|
H(e.$slots, "footer")
|
4033
4042
|
])) : m("", !0)
|
4034
4043
|
], 2)) : t.boxType === "product" && t.product ? (l(), o("a", {
|
@@ -4037,30 +4046,30 @@ function Ha(e, i, t, a, s, n) {
|
|
4037
4046
|
href: "#",
|
4038
4047
|
onClick: i[2] || (i[2] = S((N) => n.clickOnProduct(t.product), ["prevent"]))
|
4039
4048
|
}, [
|
4040
|
-
f("div",
|
4041
|
-
t.product.image !== void 0 ? (l(), o("figure",
|
4049
|
+
f("div", fa, [
|
4050
|
+
t.product.image !== void 0 ? (l(), o("figure", ga, [
|
4042
4051
|
f("img", {
|
4043
4052
|
src: t.product.image.src,
|
4044
4053
|
alt: t.product.image.alt
|
4045
|
-
}, null, 8,
|
4054
|
+
}, null, 8, pa),
|
4046
4055
|
f("figcaption", null, g(t.product.name), 1)
|
4047
|
-
])) : (l(), o("p",
|
4048
|
-
t.product.new ? (l(), o("div",
|
4056
|
+
])) : (l(), o("p", ya, g(t.product.name), 1)),
|
4057
|
+
t.product.new ? (l(), o("div", Ca, [
|
4049
4058
|
f("span", null, g(e.getMessage("cmdbox.productbox.new")), 1)
|
4050
4059
|
])) : m("", !0),
|
4051
|
-
t.product.discount ? (l(), o("div",
|
4060
|
+
t.product.discount ? (l(), o("div", _a, [
|
4052
4061
|
f("span", null, g(t.product.discount), 1)
|
4053
4062
|
])) : m("", !0)
|
4054
4063
|
]),
|
4055
|
-
f("div",
|
4056
|
-
t.product.articleNumber ? (l(), o("p",
|
4057
|
-
t.product.price ? (l(), o("p",
|
4064
|
+
f("div", ba, [
|
4065
|
+
t.product.articleNumber ? (l(), o("p", ka, g(e.getMessage("cmdbox.productbox.article_no")) + " " + g(t.product.articleNumber), 1)) : m("", !0),
|
4066
|
+
t.product.price ? (l(), o("p", va, [
|
4058
4067
|
f("span", null, g(t.product.price), 1),
|
4059
4068
|
f("span", {
|
4060
4069
|
title: e.globalCurrency.name
|
4061
|
-
}, g(e.globalCurrency.symbol), 9,
|
4070
|
+
}, g(e.globalCurrency.symbol), 9, wa)
|
4062
4071
|
])) : m("", !0),
|
4063
|
-
t.product.description ? (l(), o("p",
|
4072
|
+
t.product.description ? (l(), o("p", Ia, g(t.product.description), 1)) : m("", !0)
|
4064
4073
|
])
|
4065
4074
|
], 2)) : t.boxType === "user" && t.user ? (l(), o("div", {
|
4066
4075
|
key: 2,
|
@@ -4074,34 +4083,34 @@ function Ha(e, i, t, a, s, n) {
|
|
4074
4083
|
}
|
4075
4084
|
])
|
4076
4085
|
}, [
|
4077
|
-
f("div",
|
4078
|
-
t.user.image ? (l(), o("figure",
|
4086
|
+
f("div", xa, [
|
4087
|
+
t.user.image ? (l(), o("figure", Ta, [
|
4079
4088
|
f("img", {
|
4080
4089
|
src: t.user.image.src,
|
4081
4090
|
alt: t.user.image.alt
|
4082
|
-
}, null, 8,
|
4091
|
+
}, null, 8, Sa),
|
4083
4092
|
f("figcaption", null, [
|
4084
4093
|
A(g(t.user.name) + " ", 1),
|
4085
|
-
t.user.age ? (l(), o("span",
|
4094
|
+
t.user.age ? (l(), o("span", Ma, ", " + g(t.user.age), 1)) : m("", !0)
|
4086
4095
|
])
|
4087
|
-
])) : (l(), o("div",
|
4096
|
+
])) : (l(), o("div", Oa, [
|
4088
4097
|
f("span", {
|
4089
4098
|
class: C(t.defaultProfileIconClass),
|
4090
4099
|
title: t.user.name
|
4091
|
-
}, null, 10,
|
4092
|
-
t.rowView ? m("", !0) : (l(), o("p",
|
4100
|
+
}, null, 10, La),
|
4101
|
+
t.rowView ? m("", !0) : (l(), o("p", Da, g(t.user.name), 1))
|
4093
4102
|
]))
|
4094
4103
|
]),
|
4095
|
-
f("div",
|
4096
|
-
t.rowView ? (l(), o("p",
|
4097
|
-
t.user.profession ? (l(), o("p",
|
4098
|
-
t.user.position ? (l(), o("p",
|
4099
|
-
t.user.description ? (l(), o("p",
|
4104
|
+
f("div", Na, [
|
4105
|
+
t.rowView ? (l(), o("p", ja, g(t.user.name), 1)) : m("", !0),
|
4106
|
+
t.user.profession ? (l(), o("p", Ba, g(t.user.profession), 1)) : m("", !0),
|
4107
|
+
t.user.position ? (l(), o("p", Pa, g(t.user.position), 1)) : m("", !0),
|
4108
|
+
t.user.description ? (l(), o("p", Fa, g(t.user.description), 1)) : m("", !0)
|
4100
4109
|
]),
|
4101
|
-
f("ul",
|
4110
|
+
f("ul", Aa, [
|
4102
4111
|
(l(!0), o(b, null, B(t.user.tags, (N, V) => (l(), o("li", { key: V }, g(N), 1))), 128))
|
4103
4112
|
]),
|
4104
|
-
t.user.links ? (l(), o("div",
|
4113
|
+
t.user.links ? (l(), o("div", Ha, [
|
4105
4114
|
x(r, {
|
4106
4115
|
links: t.user.links,
|
4107
4116
|
orientation: "horizontal",
|
@@ -4110,7 +4119,7 @@ function Ha(e, i, t, a, s, n) {
|
|
4110
4119
|
])) : m("", !0)
|
4111
4120
|
], 2)) : m("", !0);
|
4112
4121
|
}
|
4113
|
-
const
|
4122
|
+
const qa = /* @__PURE__ */ L(aa, [["render", za]]);
|
4114
4123
|
const St = {
|
4115
4124
|
name: "CmdBoxWrapper",
|
4116
4125
|
data() {
|
@@ -4229,16 +4238,16 @@ const St = {
|
|
4229
4238
|
}));
|
4230
4239
|
}, si = St.setup;
|
4231
4240
|
St.setup = si ? (e, i) => (ni(), si(e, i)) : ni;
|
4232
|
-
const
|
4241
|
+
const Ra = St, Va = { class: "cmd-box-wrapper" }, Ea = { class: "flex-container headline-wrapper" }, Ua = {
|
4233
4242
|
key: 1,
|
4234
4243
|
class: "options-wrapper"
|
4235
|
-
},
|
4236
|
-
function
|
4244
|
+
}, Ga = ["title"], Qa = ["title"];
|
4245
|
+
function Wa(e, i, t, a, s, n) {
|
4237
4246
|
const u = E, d = z;
|
4238
|
-
return l(), o("div",
|
4239
|
-
f("div",
|
4247
|
+
return l(), o("div", Va, [
|
4248
|
+
f("div", Ea, [
|
4240
4249
|
t.cmdHeadline.headlineText ? (l(), _(u, Q(F({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
4241
|
-
t.allowUserToToggleOrientation || t.allowTogglingCollapsingBoxes ? (l(), o("div",
|
4250
|
+
t.allowUserToToggleOrientation || t.allowTogglingCollapsingBoxes ? (l(), o("div", Ua, [
|
4242
4251
|
t.allowTogglingCollapsingBoxes ? (l(), o("a", {
|
4243
4252
|
key: 0,
|
4244
4253
|
href: "#",
|
@@ -4249,7 +4258,7 @@ function Qa(e, i, t, a, s, n) {
|
|
4249
4258
|
iconClass: s.collapsingBoxesOpen ? t.expandBoxesIcon.iconClass : t.collapseBoxesIcon.iconClass,
|
4250
4259
|
type: s.rowView ? t.iconGridView.iconType : t.iconRowView.iconType
|
4251
4260
|
}, null, 8, ["iconClass", "type"])
|
4252
|
-
], 8,
|
4261
|
+
], 8, Ga)) : m("", !0),
|
4253
4262
|
t.allowUserToToggleOrientation ? (l(), o("a", {
|
4254
4263
|
key: 1,
|
4255
4264
|
href: "#",
|
@@ -4260,7 +4269,7 @@ function Qa(e, i, t, a, s, n) {
|
|
4260
4269
|
iconClass: s.rowView ? t.iconGridView.iconClass : t.iconRowView.iconClass,
|
4261
4270
|
type: s.rowView ? t.iconGridView.iconType : t.iconRowView.iconType
|
4262
4271
|
}, null, 8, ["iconClass", "type"])
|
4263
|
-
], 8,
|
4272
|
+
], 8, Qa)) : m("", !0)
|
4264
4273
|
])) : m("", !0)
|
4265
4274
|
]),
|
4266
4275
|
f("div", {
|
@@ -4275,8 +4284,8 @@ function Qa(e, i, t, a, s, n) {
|
|
4275
4284
|
], 2)
|
4276
4285
|
]);
|
4277
4286
|
}
|
4278
|
-
const
|
4279
|
-
const
|
4287
|
+
const Uh = /* @__PURE__ */ L(Ra, [["render", Wa]]);
|
4288
|
+
const Za = {
|
4280
4289
|
name: "CmdBreadcrumbs",
|
4281
4290
|
props: {
|
4282
4291
|
breadcrumbLabel: {
|
@@ -4297,11 +4306,11 @@ const Wa = {
|
|
4297
4306
|
return oe(e);
|
4298
4307
|
}
|
4299
4308
|
}
|
4300
|
-
},
|
4301
|
-
function
|
4309
|
+
}, Ja = { class: "cmd-breadcrumbs" }, Ya = { key: 0 }, Ka = ["href"], Xa = { key: 1 }, $a = { key: 1 }, er = { key: 2 }, tr = { key: 1 }, ir = { key: 3 };
|
4310
|
+
function nr(e, i, t, a, s, n) {
|
4302
4311
|
const u = z, d = K("router-link");
|
4303
|
-
return l(), o("ul",
|
4304
|
-
t.breadcrumbLabel ? (l(), o("li",
|
4312
|
+
return l(), o("ul", Ja, [
|
4313
|
+
t.breadcrumbLabel ? (l(), o("li", Ya, g(t.breadcrumbLabel), 1)) : m("", !0),
|
4305
4314
|
(l(!0), o(b, null, B(t.breadcrumbLinks || [], (r, c) => (l(), o("li", { key: c }, [
|
4306
4315
|
r.type === "href" ? (l(), o("a", {
|
4307
4316
|
key: 0,
|
@@ -4312,8 +4321,8 @@ function ir(e, i, t, a, s, n) {
|
|
4312
4321
|
iconClass: r.iconClass,
|
4313
4322
|
type: r.iconType
|
4314
4323
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
4315
|
-
r.text ? (l(), o("span",
|
4316
|
-
], 8,
|
4324
|
+
r.text ? (l(), o("span", Xa, g(r.text), 1)) : m("", !0)
|
4325
|
+
], 8, Ka)) : r.type === "router" ? (l(), _(d, {
|
4317
4326
|
key: 1,
|
4318
4327
|
to: n.getRoute(r)
|
4319
4328
|
}, {
|
@@ -4323,23 +4332,23 @@ function ir(e, i, t, a, s, n) {
|
|
4323
4332
|
iconClass: r.iconClass,
|
4324
4333
|
type: r.iconType
|
4325
4334
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
4326
|
-
r.text ? (l(), o("span",
|
4335
|
+
r.text ? (l(), o("span", $a, g(r.text), 1)) : m("", !0)
|
4327
4336
|
]),
|
4328
4337
|
_: 2
|
4329
|
-
}, 1032, ["to"])) : (l(), o("span",
|
4338
|
+
}, 1032, ["to"])) : (l(), o("span", er, [
|
4330
4339
|
r.iconClass ? (l(), _(u, {
|
4331
4340
|
key: 0,
|
4332
4341
|
iconClass: r.iconClass,
|
4333
4342
|
type: r.iconType
|
4334
4343
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
4335
|
-
r.text ? (l(), o("span",
|
4344
|
+
r.text ? (l(), o("span", tr, g(r.text), 1)) : m("", !0)
|
4336
4345
|
])),
|
4337
|
-
c < t.breadcrumbLinks.length - 1 ? (l(), o("span",
|
4346
|
+
c < t.breadcrumbLinks.length - 1 ? (l(), o("span", ir, g(t.breadcrumbSeparator), 1)) : m("", !0)
|
4338
4347
|
]))), 128))
|
4339
4348
|
]);
|
4340
4349
|
}
|
4341
|
-
const
|
4342
|
-
const
|
4350
|
+
const Gh = /* @__PURE__ */ L(Za, [["render", nr]]);
|
4351
|
+
const sr = {
|
4343
4352
|
name: "CmdCompanyLogo",
|
4344
4353
|
data() {
|
4345
4354
|
return {
|
@@ -4401,11 +4410,11 @@ const nr = {
|
|
4401
4410
|
document.querySelector("html").classList.contains("light-mode") ? this.prefersColorScheme = "light" : document.querySelector("html").classList.contains("dark-mode") ? this.prefersColorScheme = "dark" : matchMedia("(prefers-color-scheme: light)").matches ? this.prefersColorScheme = "light" : this.prefersColorScheme = "dark";
|
4402
4411
|
}
|
4403
4412
|
}
|
4404
|
-
},
|
4405
|
-
function
|
4413
|
+
}, lr = { class: "cmd-company-logo" }, or = ["href", "title"];
|
4414
|
+
function ar(e, i, t, a, s, n) {
|
4406
4415
|
var r, c, h, p, k, y;
|
4407
4416
|
const u = be, d = K("router-link");
|
4408
|
-
return l(), o("div",
|
4417
|
+
return l(), o("div", lr, [
|
4409
4418
|
((r = t.link) == null ? void 0 : r.type) === "router" ? (l(), _(d, {
|
4410
4419
|
key: 0,
|
4411
4420
|
to: (c = t.link) == null ? void 0 : c.path,
|
@@ -4421,13 +4430,13 @@ function or(e, i, t, a, s, n) {
|
|
4421
4430
|
title: (y = t.link) == null ? void 0 : y.tooltip
|
4422
4431
|
}, [
|
4423
4432
|
x(u, { image: n.image }, null, 8, ["image"])
|
4424
|
-
], 8,
|
4433
|
+
], 8, or)) : (l(), _(u, {
|
4425
4434
|
key: 2,
|
4426
4435
|
image: n.image
|
4427
4436
|
}, null, 8, ["image"]))
|
4428
4437
|
]);
|
4429
4438
|
}
|
4430
|
-
const
|
4439
|
+
const rr = /* @__PURE__ */ L(sr, [["render", ar]]), cr = {
|
4431
4440
|
data() {
|
4432
4441
|
return {
|
4433
4442
|
defaultMessageProperties: {
|
@@ -4437,9 +4446,9 @@ const ar = /* @__PURE__ */ L(nr, [["render", or]]), rr = {
|
|
4437
4446
|
};
|
4438
4447
|
}
|
4439
4448
|
};
|
4440
|
-
const
|
4449
|
+
const ur = {
|
4441
4450
|
name: "CmdCookieDisclaimer",
|
4442
|
-
mixins: [X,
|
4451
|
+
mixins: [X, cr],
|
4443
4452
|
data() {
|
4444
4453
|
return {
|
4445
4454
|
showCookieDisclaimer: !0,
|
@@ -4534,20 +4543,20 @@ const cr = {
|
|
4534
4543
|
}));
|
4535
4544
|
}
|
4536
4545
|
}
|
4537
|
-
},
|
4546
|
+
}, dr = { class: "cmd-cookie-disclaimer flex-container vertical" }, mr = {
|
4538
4547
|
key: 0,
|
4539
4548
|
class: "flex-container vertical"
|
4540
|
-
},
|
4549
|
+
}, hr = { key: 0 }, fr = { key: 1 }, gr = ["href", "target"], pr = ["innerHTML"], yr = /* @__PURE__ */ f("hr", null, null, -1), Cr = {
|
4541
4550
|
key: 1,
|
4542
4551
|
class: "flex-container vertical"
|
4543
|
-
},
|
4544
|
-
function
|
4545
|
-
const u = E, d = ae, r =
|
4552
|
+
}, _r = { key: 0 }, br = { key: 1 }, kr = ["href", "target"], vr = ["innerHTML"], wr = { class: "button-wrapper align-center" };
|
4553
|
+
function Ir(e, i, t, a, s, n) {
|
4554
|
+
const u = E, d = ae, r = qa;
|
4546
4555
|
return l(), _(se, { name: "fade" }, {
|
4547
4556
|
default: j(() => {
|
4548
4557
|
var c, h, p;
|
4549
4558
|
return [
|
4550
|
-
f("div",
|
4559
|
+
f("div", dr, [
|
4551
4560
|
((c = t.cmdHeadlineCookieDisclaimer) == null ? void 0 : c.show) && ((h = t.cmdHeadlineCookieDisclaimer) == null ? void 0 : h.headlineText) && ((p = t.cmdHeadlineCookieDisclaimer) == null ? void 0 : p.headlineLevel) ? (l(), _(u, {
|
4552
4561
|
key: 0,
|
4553
4562
|
headlineText: t.cmdHeadlineCookieDisclaimer.headlineText,
|
@@ -4556,7 +4565,7 @@ function wr(e, i, t, a, s, n) {
|
|
4556
4565
|
H(e.$slots, "cookie-options", {}, () => {
|
4557
4566
|
var k, y, I, v, T, M, N, V;
|
4558
4567
|
return [
|
4559
|
-
(k = t.cookieOptions) != null && k.required ? (l(), o("div",
|
4568
|
+
(k = t.cookieOptions) != null && k.required ? (l(), o("div", mr, [
|
4560
4569
|
(y = t.cmdBoxRequiredCookies) != null && y.showHeadline ? (l(), _(u, {
|
4561
4570
|
key: 0,
|
4562
4571
|
"headline-text": (I = t.cmdBoxRequiredCookies) == null ? void 0 : I.headlineText,
|
@@ -4584,26 +4593,26 @@ function wr(e, i, t, a, s, n) {
|
|
4584
4593
|
}, null, 8, ["modelValue", "inputValue", "labelText", "disabled", "id", "title"])
|
4585
4594
|
]),
|
4586
4595
|
body: j(() => [
|
4587
|
-
w.description ? (l(), o("p",
|
4588
|
-
w.linkDataPrivacy ? (l(), o("p",
|
4596
|
+
w.description ? (l(), o("p", hr, g(w.description), 1)) : m("", !0),
|
4597
|
+
w.linkDataPrivacy ? (l(), o("p", fr, [
|
4589
4598
|
A(g(w.linkDataPrivacy.label) + " ", 1),
|
4590
4599
|
f("a", {
|
4591
4600
|
onClick: i[1] || (i[1] = (...P) => n.openDataPrivacy && n.openDataPrivacy(...P)),
|
4592
4601
|
href: w.linkDataPrivacy.link,
|
4593
4602
|
target: w.linkDataPrivacy.target
|
4594
|
-
}, g(w.linkDataPrivacy.linkText), 9,
|
4603
|
+
}, g(w.linkDataPrivacy.linkText), 9, gr)
|
4595
4604
|
])) : m("", !0),
|
4596
4605
|
s.dataPrivacyContent ? (l(), o("div", {
|
4597
4606
|
key: 2,
|
4598
4607
|
innerHTML: s.dataPrivacyContent
|
4599
|
-
}, null, 8,
|
4608
|
+
}, null, 8, pr)) : m("", !0)
|
4600
4609
|
]),
|
4601
4610
|
_: 2
|
4602
4611
|
}, 1032, ["collapsible"]);
|
4603
4612
|
}), 128))
|
4604
4613
|
])) : m("", !0),
|
4605
|
-
|
4606
|
-
(T = t.cookieOptions) != null && T.optional ? (l(), o("div",
|
4614
|
+
yr,
|
4615
|
+
(T = t.cookieOptions) != null && T.optional ? (l(), o("div", Cr, [
|
4607
4616
|
(M = t.cmdBoxOptionalCookies) != null && M.showHeadline ? (l(), _(u, {
|
4608
4617
|
key: 0,
|
4609
4618
|
"headline-text": (N = t.cmdBoxOptionalCookies) == null ? void 0 : N.headlineText,
|
@@ -4631,19 +4640,19 @@ function wr(e, i, t, a, s, n) {
|
|
4631
4640
|
}, null, 8, ["modelValue", "inputValue", "labelText", "disabled", "id", "title"])
|
4632
4641
|
]),
|
4633
4642
|
body: j(() => [
|
4634
|
-
w.description ? (l(), o("p",
|
4635
|
-
w.linkDataPrivacy ? (l(), o("p",
|
4643
|
+
w.description ? (l(), o("p", _r, g(w.description), 1)) : m("", !0),
|
4644
|
+
w.linkDataPrivacy ? (l(), o("p", br, [
|
4636
4645
|
A(g(w.linkDataPrivacy.label) + " ", 1),
|
4637
4646
|
f("a", {
|
4638
4647
|
onClick: i[3] || (i[3] = (...P) => n.openDataPrivacy && n.openDataPrivacy(...P)),
|
4639
4648
|
href: w.linkDataPrivacy.link,
|
4640
4649
|
target: w.linkDataPrivacy.target
|
4641
|
-
}, g(w.linkDataPrivacy.linkText), 9,
|
4650
|
+
}, g(w.linkDataPrivacy.linkText), 9, kr)
|
4642
4651
|
])) : m("", !0),
|
4643
4652
|
s.dataPrivacyContent ? (l(), o("div", {
|
4644
4653
|
key: 2,
|
4645
4654
|
innerHTML: s.dataPrivacyContent
|
4646
|
-
}, null, 8,
|
4655
|
+
}, null, 8, vr)) : m("", !0)
|
4647
4656
|
]),
|
4648
4657
|
_: 2
|
4649
4658
|
}, 1032, ["collapsible"]);
|
@@ -4652,7 +4661,7 @@ function wr(e, i, t, a, s, n) {
|
|
4652
4661
|
];
|
4653
4662
|
}),
|
4654
4663
|
H(e.$slots, "privacy-text"),
|
4655
|
-
f("div",
|
4664
|
+
f("div", wr, [
|
4656
4665
|
t.buttonLabelAcceptCurrentSettings ? (l(), o("button", {
|
4657
4666
|
key: 0,
|
4658
4667
|
type: "button",
|
@@ -4675,24 +4684,24 @@ function wr(e, i, t, a, s, n) {
|
|
4675
4684
|
_: 3
|
4676
4685
|
});
|
4677
4686
|
}
|
4678
|
-
const
|
4679
|
-
const
|
4687
|
+
const Qh = /* @__PURE__ */ L(ur, [["render", Ir]]);
|
4688
|
+
const xr = {
|
4680
4689
|
name: "CmdCopyrightWrapper"
|
4681
|
-
},
|
4690
|
+
}, Tr = {
|
4682
4691
|
class: "cmd-copyright-information",
|
4683
4692
|
role: "contentinfo"
|
4684
|
-
},
|
4693
|
+
}, Sr = /* @__PURE__ */ f("a", {
|
4685
4694
|
href: "http://www.comand-cms.com",
|
4686
4695
|
target: "_blank",
|
4687
4696
|
lang: "en",
|
4688
4697
|
title: "CoManD-Website"
|
4689
|
-
}, "\xA9 CoManD", -1),
|
4690
|
-
|
4698
|
+
}, "\xA9 CoManD", -1), Mr = [
|
4699
|
+
Sr
|
4691
4700
|
];
|
4692
|
-
function
|
4693
|
-
return l(), o("div",
|
4701
|
+
function Or(e, i, t, a, s, n) {
|
4702
|
+
return l(), o("div", Tr, Mr);
|
4694
4703
|
}
|
4695
|
-
const
|
4704
|
+
const Wh = /* @__PURE__ */ L(xr, [["render", Or]]), Lr = {
|
4696
4705
|
data() {
|
4697
4706
|
return {
|
4698
4707
|
defaultMessageProperties: {
|
@@ -4705,12 +4714,12 @@ const Qh = /* @__PURE__ */ L(Ir, [["render", Mr]]), Or = {
|
|
4705
4714
|
};
|
4706
4715
|
}
|
4707
4716
|
};
|
4708
|
-
const
|
4717
|
+
const Dr = {
|
4709
4718
|
name: "CmdFakeSelect",
|
4710
4719
|
inheritAttrs: !1,
|
4711
4720
|
mixins: [
|
4712
4721
|
X,
|
4713
|
-
|
4722
|
+
Lr,
|
4714
4723
|
vt,
|
4715
4724
|
_e,
|
4716
4725
|
wt
|
@@ -4899,17 +4908,17 @@ const Lr = {
|
|
4899
4908
|
deep: !0
|
4900
4909
|
}
|
4901
4910
|
}
|
4902
|
-
},
|
4911
|
+
}, Nr = ["title", "aria-labelledby", "aria-required"], jr = {
|
4903
4912
|
key: 0,
|
4904
4913
|
class: "label-text"
|
4905
|
-
},
|
4914
|
+
}, Br = ["id"], Pr = { key: 0 }, Fr = ["title", "aria-errormessage", "id"], Ar = ["aria-expanded"], Hr = ["title"], zr = ["src", "alt"], qr = {
|
4906
4915
|
key: 0,
|
4907
4916
|
role: "listbox"
|
4908
|
-
},
|
4917
|
+
}, Rr = ["aria-selected"], Vr = ["onClick", "title"], Er = { key: 1 }, Ur = ["aria-expanded"], Gr = ["for"], Qr = ["value", "checked", "id"], Wr = ["onClick"], Zr = ["src", "alt"], Jr = ["onClick"], Yr = {
|
4909
4918
|
key: 0,
|
4910
4919
|
class: "select-all-options"
|
4911
4920
|
};
|
4912
|
-
function
|
4921
|
+
function Kr(e, i, t, a, s, n) {
|
4913
4922
|
var c, h, p, k;
|
4914
4923
|
const u = kt, d = z, r = K("router-link");
|
4915
4924
|
return l(), o("div", {
|
@@ -4928,11 +4937,11 @@ function Yr(e, i, t, a, s, n) {
|
|
4928
4937
|
"aria-required": e.$attrs.required !== void 0,
|
4929
4938
|
ref: "fakeselect"
|
4930
4939
|
}, [
|
4931
|
-
t.showLabel ? (l(), o("span",
|
4940
|
+
t.showLabel ? (l(), o("span", jr, [
|
4932
4941
|
f("span", { id: e.htmlId }, [
|
4933
4942
|
A(g(t.labelText), 1),
|
4934
|
-
e.$attrs.required !== void 0 ? (l(), o("sup",
|
4935
|
-
], 8,
|
4943
|
+
e.$attrs.required !== void 0 ? (l(), o("sup", Pr, "*")) : m("", !0)
|
4944
|
+
], 8, Br),
|
4936
4945
|
e.useCustomTooltip && (s.validationStatus === "" || s.validationStatus === "error") ? (l(), _(u, {
|
4937
4946
|
key: 0,
|
4938
4947
|
ref: "tooltip",
|
@@ -4953,7 +4962,7 @@ function Yr(e, i, t, a, s, n) {
|
|
4953
4962
|
id: e.tooltipId
|
4954
4963
|
}, [
|
4955
4964
|
x(d, { iconClass: e.getStatusIconClass }, null, 8, ["iconClass"])
|
4956
|
-
], 8,
|
4965
|
+
], 8, Fr)) : m("", !0)
|
4957
4966
|
])) : m("", !0),
|
4958
4967
|
f("ul", {
|
4959
4968
|
class: C({ open: s.showOptions }),
|
@@ -4972,7 +4981,7 @@ function Yr(e, i, t, a, s, n) {
|
|
4972
4981
|
src: n.pathFlag(n.optionCountry),
|
4973
4982
|
alt: n.optionCountry,
|
4974
4983
|
class: C(["flag", n.optionCountry])
|
4975
|
-
}, null, 10,
|
4984
|
+
}, null, 10, zr)) : t.type === "color" ? (l(), o("span", {
|
4976
4985
|
key: 1,
|
4977
4986
|
style: we("background: " + n.optionColor)
|
4978
4987
|
}, null, 4)) : m("", !0),
|
@@ -4992,8 +5001,8 @@ function Yr(e, i, t, a, s, n) {
|
|
4992
5001
|
type: t.iconDropdown.iconType,
|
4993
5002
|
title: t.iconDropdown.tooltip
|
4994
5003
|
}, null, 8, ["iconClass", "type", "title"])) : m("", !0)
|
4995
|
-
], 40,
|
4996
|
-
t.type === "default" && s.showOptions ? (l(), o("ul",
|
5004
|
+
], 40, Hr),
|
5005
|
+
t.type === "default" && s.showOptions ? (l(), o("ul", qr, [
|
4997
5006
|
(l(!0), o(b, null, B(t.selectData, (y, I) => (l(), o("li", {
|
4998
5007
|
key: I,
|
4999
5008
|
role: "option",
|
@@ -5011,8 +5020,8 @@ function Yr(e, i, t, a, s, n) {
|
|
5011
5020
|
iconClass: y.iconClass,
|
5012
5021
|
type: y.iconType
|
5013
5022
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
5014
|
-
y.text ? (l(), o("span",
|
5015
|
-
], 10,
|
5023
|
+
y.text ? (l(), o("span", Er, g(y.text), 1)) : m("", !0)
|
5024
|
+
], 10, Vr)) : m("", !0),
|
5016
5025
|
t.optionLinkType === "router" ? (l(), _(r, {
|
5017
5026
|
key: 1,
|
5018
5027
|
to: "#",
|
@@ -5029,7 +5038,7 @@ function Yr(e, i, t, a, s, n) {
|
|
5029
5038
|
]),
|
5030
5039
|
_: 2
|
5031
5040
|
}, 1032, ["onClick", "class"])) : m("", !0)
|
5032
|
-
], 8,
|
5041
|
+
], 8, Rr))), 128))
|
5033
5042
|
])) : t.type !== "default" && t.type !== "content" && s.showOptions ? (l(), o("ul", {
|
5034
5043
|
key: 1,
|
5035
5044
|
class: C({ "checkbox-options": t.type === "checkboxOptions" }),
|
@@ -5047,9 +5056,9 @@ function Yr(e, i, t, a, s, n) {
|
|
5047
5056
|
onChange: i[3] || (i[3] = (...v) => n.optionSelect && n.optionSelect(...v)),
|
5048
5057
|
checked: n.compareValues(y.value),
|
5049
5058
|
id: "option-" + (I + 1)
|
5050
|
-
}, null, 40,
|
5059
|
+
}, null, 40, Qr),
|
5051
5060
|
f("span", null, g(y.text), 1)
|
5052
|
-
], 10,
|
5061
|
+
], 10, Gr)) : t.type === "country" ? (l(), o("a", {
|
5053
5062
|
key: 1,
|
5054
5063
|
href: "#",
|
5055
5064
|
onClick: S((v) => n.selectOption(y.value), ["prevent"]),
|
@@ -5059,9 +5068,9 @@ function Yr(e, i, t, a, s, n) {
|
|
5059
5068
|
class: "flag",
|
5060
5069
|
src: n.pathFlag(y.value),
|
5061
5070
|
alt: y.text
|
5062
|
-
}, null, 8,
|
5071
|
+
}, null, 8, Zr),
|
5063
5072
|
f("span", null, g(y.text), 1)
|
5064
|
-
], 10,
|
5073
|
+
], 10, Wr)) : t.type === "color" ? (l(), o("a", {
|
5065
5074
|
key: 2,
|
5066
5075
|
href: "#",
|
5067
5076
|
onClick: S((v) => n.selectOption(y.value), ["prevent"]),
|
@@ -5072,9 +5081,9 @@ function Yr(e, i, t, a, s, n) {
|
|
5072
5081
|
style: we("background: " + y.value)
|
5073
5082
|
}, null, 4),
|
5074
5083
|
f("span", null, g(y.text), 1)
|
5075
|
-
], 10,
|
5084
|
+
], 10, Jr)) : m("", !0)
|
5076
5085
|
]))), 128)),
|
5077
|
-
t.showSelectAllOptions && t.type === "checkboxOptions" ? (l(), o("li",
|
5086
|
+
t.showSelectAllOptions && t.type === "checkboxOptions" ? (l(), o("li", Yr, [
|
5078
5087
|
f("a", {
|
5079
5088
|
href: "#",
|
5080
5089
|
onClick: i[4] || (i[4] = S((...y) => n.toggleAllOptions && n.toggleAllOptions(...y), ["prevent"]))
|
@@ -5091,13 +5100,13 @@ function Yr(e, i, t, a, s, n) {
|
|
5091
5100
|
f("span", null, g(n.selectAllOptionsText), 1)
|
5092
5101
|
])
|
5093
5102
|
])) : m("", !0)
|
5094
|
-
], 10,
|
5103
|
+
], 10, Ur)) : t.type === "content" && s.showOptions ? H(e.$slots, "default", { key: 2 }) : m("", !0)
|
5095
5104
|
])
|
5096
|
-
], 42,
|
5097
|
-
], 10,
|
5105
|
+
], 42, Ar)
|
5106
|
+
], 10, Nr);
|
5098
5107
|
}
|
5099
|
-
const
|
5100
|
-
const
|
5108
|
+
const Xr = /* @__PURE__ */ L(Dr, [["render", Kr]]);
|
5109
|
+
const $r = {
|
5101
5110
|
name: "CmdForm",
|
5102
5111
|
emits: ["submit"],
|
5103
5112
|
data() {
|
@@ -5132,8 +5141,8 @@ const Xr = {
|
|
5132
5141
|
this.useValidation && (e.preventDefault(), e.target.checkValidity() ? (this.errorOccurred = !1, this.$emit("submit", e)) : this.errorOccurred = !0);
|
5133
5142
|
}
|
5134
5143
|
}
|
5135
|
-
},
|
5136
|
-
function
|
5144
|
+
}, ec = ["data-use-validation", "novalidate"], tc = { class: "flex-container" };
|
5145
|
+
function ic(e, i, t, a, s, n) {
|
5137
5146
|
return l(), o("form", {
|
5138
5147
|
class: C(["cmd-form", { error: s.errorOccurred }]),
|
5139
5148
|
"data-use-validation": t.useValidation,
|
@@ -5141,7 +5150,7 @@ function tc(e, i, t, a, s, n) {
|
|
5141
5150
|
novalidate: t.novalidate
|
5142
5151
|
}, [
|
5143
5152
|
t.useFieldset ? (l(), o(b, { key: 0 }, [
|
5144
|
-
f("fieldset",
|
5153
|
+
f("fieldset", tc, [
|
5145
5154
|
f("legend", {
|
5146
5155
|
class: C({ hidden: !t.showLegend })
|
5147
5156
|
}, g(t.textLegend), 3),
|
@@ -5149,10 +5158,10 @@ function tc(e, i, t, a, s, n) {
|
|
5149
5158
|
]),
|
5150
5159
|
H(e.$slots, "button-row")
|
5151
5160
|
], 64)) : H(e.$slots, "default", { key: 1 })
|
5152
|
-
], 42,
|
5161
|
+
], 42, ec);
|
5153
5162
|
}
|
5154
|
-
const
|
5155
|
-
const
|
5163
|
+
const Zh = /* @__PURE__ */ L($r, [["render", ic]]);
|
5164
|
+
const nc = {
|
5156
5165
|
name: "CmdFormFilters",
|
5157
5166
|
data() {
|
5158
5167
|
return {
|
@@ -5212,14 +5221,14 @@ const ic = {
|
|
5212
5221
|
deep: !0
|
5213
5222
|
}
|
5214
5223
|
}
|
5215
|
-
},
|
5224
|
+
}, sc = {
|
5216
5225
|
key: 0,
|
5217
5226
|
class: "cmd-form-filters"
|
5218
|
-
},
|
5219
|
-
function
|
5227
|
+
}, lc = { key: 0 }, oc = { key: 1 }, ac = ["onClick", "title"];
|
5228
|
+
function rc(e, i, t, a, s, n) {
|
5220
5229
|
const u = z;
|
5221
|
-
return s.options.length ? (l(), o("ul",
|
5222
|
-
s.options.length > 1 ? (l(), o("li",
|
5230
|
+
return s.options.length ? (l(), o("ul", sc, [
|
5231
|
+
s.options.length > 1 ? (l(), o("li", lc, [
|
5223
5232
|
f("a", {
|
5224
5233
|
href: "#",
|
5225
5234
|
onClick: i[0] || (i[0] = S((...d) => n.deleteAllFilters && n.deleteAllFilters(...d), ["prevent"]))
|
@@ -5229,7 +5238,7 @@ function ac(e, i, t, a, s, n) {
|
|
5229
5238
|
iconClass: t.linkDeleteAllFilters.icon.iconClass,
|
5230
5239
|
title: t.linkDeleteAllFilters.icon.tooltip
|
5231
5240
|
}, null, 8, ["iconClass", "title"])) : m("", !0),
|
5232
|
-
t.linkDeleteAllFilters.text ? (l(), o("span",
|
5241
|
+
t.linkDeleteAllFilters.text ? (l(), o("span", oc, g(t.linkDeleteAllFilters.text), 1)) : m("", !0)
|
5233
5242
|
])
|
5234
5243
|
])) : m("", !0),
|
5235
5244
|
(l(!0), o(b, null, B(s.options, (d, r) => (l(), o("li", { key: r }, [
|
@@ -5243,12 +5252,12 @@ function ac(e, i, t, a, s, n) {
|
|
5243
5252
|
iconClass: t.deleteFilterIcon.iconClass,
|
5244
5253
|
type: t.deleteFilterIcon.iconType
|
5245
5254
|
}, null, 8, ["iconClass", "type"])
|
5246
|
-
], 8,
|
5255
|
+
], 8, ac)
|
5247
5256
|
]))), 128))
|
5248
5257
|
])) : m("", !0);
|
5249
5258
|
}
|
5250
|
-
const
|
5251
|
-
const
|
5259
|
+
const cc = /* @__PURE__ */ L(nc, [["render", rc]]);
|
5260
|
+
const uc = {
|
5252
5261
|
name: "CmdGoogleMaps",
|
5253
5262
|
props: {
|
5254
5263
|
address: {
|
@@ -5265,13 +5274,13 @@ const cc = {
|
|
5265
5274
|
return "https://maps.google.de/maps?ie=UTF8&t=&z=17&iwloc=B&output=embed";
|
5266
5275
|
}
|
5267
5276
|
}
|
5268
|
-
},
|
5269
|
-
function
|
5270
|
-
return l(), o("div",
|
5271
|
-
f("iframe", { src: n.locateAddress }, null, 8,
|
5277
|
+
}, dc = { class: "cmd-google-maps responsive-wrapper" }, mc = ["src"];
|
5278
|
+
function hc(e, i, t, a, s, n) {
|
5279
|
+
return l(), o("div", dc, [
|
5280
|
+
f("iframe", { src: n.locateAddress }, null, 8, mc)
|
5272
5281
|
]);
|
5273
5282
|
}
|
5274
|
-
const
|
5283
|
+
const Jh = /* @__PURE__ */ L(uc, [["render", hc]]);
|
5275
5284
|
function Ki(e, i, t) {
|
5276
5285
|
const a = gn(!!(e != null && e.editing)), s = [];
|
5277
5286
|
function n() {
|
@@ -5299,7 +5308,7 @@ function Ki(e, i, t) {
|
|
5299
5308
|
callPersistHandler: u
|
5300
5309
|
};
|
5301
5310
|
}
|
5302
|
-
const
|
5311
|
+
const fc = {
|
5303
5312
|
name: "CmdImageGallery",
|
5304
5313
|
mixins: [],
|
5305
5314
|
provide() {
|
@@ -5367,10 +5376,10 @@ const hc = {
|
|
5367
5376
|
};
|
5368
5377
|
}
|
5369
5378
|
}
|
5370
|
-
},
|
5371
|
-
function
|
5379
|
+
}, gc = { class: "grid-container-create-columns cmd-image-gallery" }, pc = ["onClick", "title"];
|
5380
|
+
function yc(e, i, t, a, s, n) {
|
5372
5381
|
const u = E, d = be, r = K("EditComponentWrapper");
|
5373
|
-
return l(), o("div",
|
5382
|
+
return l(), o("div", gc, [
|
5374
5383
|
t.cmdHeadline ? (l(), _(u, {
|
5375
5384
|
key: 0,
|
5376
5385
|
headlineText: t.cmdHeadline.headlineText,
|
@@ -5401,7 +5410,7 @@ function pc(e, i, t, a, s, n) {
|
|
5401
5410
|
image: c.image,
|
5402
5411
|
figcaption: c.figcaption
|
5403
5412
|
}, null, 8, ["image", "figcaption"])
|
5404
|
-
], 8,
|
5413
|
+
], 8, pc))), 128)) : (l(), _(d, {
|
5405
5414
|
key: 1,
|
5406
5415
|
image: e.image.image,
|
5407
5416
|
figcaption: e.image.figcaption
|
@@ -5409,8 +5418,8 @@ function pc(e, i, t, a, s, n) {
|
|
5409
5418
|
], 64))
|
5410
5419
|
]);
|
5411
5420
|
}
|
5412
|
-
const
|
5413
|
-
const
|
5421
|
+
const Yh = /* @__PURE__ */ L(fc, [["render", yc]]);
|
5422
|
+
const Cc = {
|
5414
5423
|
name: "CmdImageZoom",
|
5415
5424
|
props: {
|
5416
5425
|
imageSmall: {
|
@@ -5449,15 +5458,15 @@ function li(e, i) {
|
|
5449
5458
|
function oi(e, i, t) {
|
5450
5459
|
return e < i ? i : e > t ? t : e;
|
5451
5460
|
}
|
5452
|
-
const
|
5461
|
+
const _c = { class: "cmd-imagezoom flex-container" }, bc = ["title"], kc = ["src", "alt"], vc = {
|
5453
5462
|
key: 0,
|
5454
5463
|
class: "zoom-container"
|
5455
|
-
},
|
5464
|
+
}, wc = ["src", "alt"], Ic = {
|
5456
5465
|
key: 1,
|
5457
5466
|
class: "zoom-overlay"
|
5458
5467
|
};
|
5459
|
-
function
|
5460
|
-
return l(), o("div",
|
5468
|
+
function xc(e, i, t, a, s, n) {
|
5469
|
+
return l(), o("div", _c, [
|
5461
5470
|
f("a", {
|
5462
5471
|
href: "#",
|
5463
5472
|
class: "no-flex thumbnails-imagezoom",
|
@@ -5469,19 +5478,19 @@ function Ic(e, i, t, a, s, n) {
|
|
5469
5478
|
onMouseover: i[0] || (i[0] = (...u) => n.onMouseOver && n.onMouseOver(...u)),
|
5470
5479
|
onMousemove: i[1] || (i[1] = (...u) => n.onMouseMove && n.onMouseMove(...u)),
|
5471
5480
|
onMouseout: i[2] || (i[2] = (...u) => n.onMouseOut && n.onMouseOut(...u))
|
5472
|
-
}, null, 40,
|
5473
|
-
], 8,
|
5474
|
-
s.showLargeImage ? (l(), o("div",
|
5481
|
+
}, null, 40, kc)
|
5482
|
+
], 8, bc),
|
5483
|
+
s.showLargeImage ? (l(), o("div", vc, [
|
5475
5484
|
f("img", {
|
5476
5485
|
src: t.imageLarge.src,
|
5477
5486
|
alt: t.imageLarge.alt
|
5478
|
-
}, null, 8,
|
5487
|
+
}, null, 8, wc)
|
5479
5488
|
])) : m("", !0),
|
5480
|
-
s.showLargeImage ? (l(), o("div",
|
5489
|
+
s.showLargeImage ? (l(), o("div", Ic)) : m("", !0)
|
5481
5490
|
]);
|
5482
5491
|
}
|
5483
|
-
const
|
5484
|
-
const
|
5492
|
+
const Kh = /* @__PURE__ */ L(Cc, [["render", xc]]);
|
5493
|
+
const Tc = {
|
5485
5494
|
mixins: [
|
5486
5495
|
vt,
|
5487
5496
|
_e,
|
@@ -5591,11 +5600,11 @@ const xc = {
|
|
5591
5600
|
immediate: !0
|
5592
5601
|
}
|
5593
5602
|
}
|
5594
|
-
},
|
5603
|
+
}, Sc = ["aria-labelledby"], Mc = { class: "label-text" }, Oc = ["id"], Lc = { key: 0 }, Dc = ["title", "aria-errormessage", "id"], Nc = ["for"], jc = ["type", "id", "name", "value", "disabled"], Bc = { key: 1 }, Pc = {
|
5595
5604
|
key: 1,
|
5596
5605
|
class: "flex-container no-flex"
|
5597
5606
|
};
|
5598
|
-
function
|
5607
|
+
function Fc(e, i, t, a, s, n) {
|
5599
5608
|
const u = kt, d = z;
|
5600
5609
|
return l(), o("div", {
|
5601
5610
|
class: C([
|
@@ -5611,11 +5620,11 @@ function Pc(e, i, t, a, s, n) {
|
|
5611
5620
|
]),
|
5612
5621
|
"aria-labelledby": e.htmlId
|
5613
5622
|
}, [
|
5614
|
-
$(f("span",
|
5623
|
+
$(f("span", Mc, [
|
5615
5624
|
f("span", { id: e.htmlId }, [
|
5616
5625
|
A(g(t.labelText), 1),
|
5617
|
-
t.required ? (l(), o("sup",
|
5618
|
-
], 8,
|
5626
|
+
t.required ? (l(), o("sup", Lc, "*")) : m("", !0)
|
5627
|
+
], 8, Oc),
|
5619
5628
|
e.useCustomTooltip && (e.validationStatus === "" || e.validationStatus === "error") ? (l(), _(u, {
|
5620
5629
|
key: 0,
|
5621
5630
|
ref: "tooltip",
|
@@ -5640,11 +5649,11 @@ function Pc(e, i, t, a, s, n) {
|
|
5640
5649
|
id: e.tooltipId
|
5641
5650
|
}, [
|
5642
5651
|
x(d, { iconClass: e.getStatusIconClass }, null, 8, ["iconClass"])
|
5643
|
-
], 8,
|
5652
|
+
], 8, Dc)) : m("", !0)
|
5644
5653
|
], 512), [
|
5645
5654
|
[me, t.showLabel]
|
5646
5655
|
]),
|
5647
|
-
t.useSlot ? (l(), o("div",
|
5656
|
+
t.useSlot ? (l(), o("div", Pc, [
|
5648
5657
|
H(e.$slots, "default")
|
5649
5658
|
])) : (l(), o("span", {
|
5650
5659
|
key: 0,
|
@@ -5662,7 +5671,7 @@ function Pc(e, i, t, a, s, n) {
|
|
5662
5671
|
"onUpdate:modelValue": i[1] || (i[1] = (h) => n.inputValue = h),
|
5663
5672
|
disabled: t.disabled,
|
5664
5673
|
class: C({ "replace-input-type": t.replaceInputType, "toggle-switch": t.toggleSwitch })
|
5665
|
-
}, null, 10,
|
5674
|
+
}, null, 10, jc), [
|
5666
5675
|
[yn, n.inputValue]
|
5667
5676
|
]),
|
5668
5677
|
t.multipleSwitch && r.iconClass ? (l(), _(d, {
|
@@ -5670,13 +5679,13 @@ function Pc(e, i, t, a, s, n) {
|
|
5670
5679
|
iconClass: r.iconClass,
|
5671
5680
|
type: r.iconType
|
5672
5681
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
5673
|
-
r.labelText ? (l(), o("span",
|
5674
|
-
], 8,
|
5682
|
+
r.labelText ? (l(), o("span", Bc, g(r.labelText), 1)) : m("", !0)
|
5683
|
+
], 8, Nc))), 128))
|
5675
5684
|
], 2))
|
5676
|
-
], 10,
|
5685
|
+
], 10, Sc);
|
5677
5686
|
}
|
5678
|
-
const
|
5679
|
-
const
|
5687
|
+
const Xh = /* @__PURE__ */ L(Tc, [["render", Fc]]);
|
5688
|
+
const Ac = {
|
5680
5689
|
name: "CmdLoginForm",
|
5681
5690
|
data() {
|
5682
5691
|
return {
|
@@ -5867,17 +5876,17 @@ const Fc = {
|
|
5867
5876
|
this.modelChange();
|
5868
5877
|
}
|
5869
5878
|
}
|
5870
|
-
},
|
5871
|
-
function
|
5879
|
+
}, Hc = { class: "cmd-login-form flex-container" }, zc = { class: "flex-container" }, qc = { class: "option-wrapper flex-container" }, Rc = { key: 1 }, Vc = ["href"], Ec = { key: 1 }, Uc = /* @__PURE__ */ A(" /> "), Gc = { key: 1 }, Qc = ["type", "disabled"], Wc = { key: 1 }, Zc = { class: "cmd-login-form flex-container" }, Jc = { class: "option-wrapper flex-container" }, Yc = { key: 1 }, Kc = ["type", "disabled"], Xc = { key: 1 };
|
5880
|
+
function $c(e, i, t, a, s, n) {
|
5872
5881
|
var h, p, k, y, I, v, T;
|
5873
5882
|
const u = E, d = ae, r = z, c = K("router-link");
|
5874
5883
|
return l(), o(b, null, [
|
5875
|
-
$(f("fieldset",
|
5884
|
+
$(f("fieldset", Hc, [
|
5876
5885
|
f("legend", {
|
5877
5886
|
class: C({ hidden: !t.showLegend })
|
5878
5887
|
}, g(t.textLegendLoginForm), 3),
|
5879
5888
|
t.cmdHeadlineLoginForm ? (l(), _(u, Q(F({ key: 0 }, t.cmdHeadlineLoginForm)), null, 16)) : m("", !0),
|
5880
|
-
f("div",
|
5889
|
+
f("div", zc, [
|
5881
5890
|
x(d, {
|
5882
5891
|
element: "input",
|
5883
5892
|
type: "text",
|
@@ -5905,7 +5914,7 @@ function Xc(e, i, t, a, s, n) {
|
|
5905
5914
|
onValidationStatusChange: i[3] || (i[3] = (M) => n.checkValidationStatus(M, "password"))
|
5906
5915
|
}, null, 8, ["name", "id", "fieldIconClass", "modelValue", "labelText", "placeholder", "required"])
|
5907
5916
|
]),
|
5908
|
-
f("div",
|
5917
|
+
f("div", qc, [
|
5909
5918
|
t.options.forgotPassword || t.options.createAccount ? (l(), o(b, { key: 0 }, [
|
5910
5919
|
t.options.forgotPassword ? (l(), o("a", {
|
5911
5920
|
key: 0,
|
@@ -5918,7 +5927,7 @@ function Xc(e, i, t, a, s, n) {
|
|
5918
5927
|
type: t.options.forgotPassword.icon.iconType,
|
5919
5928
|
title: t.options.forgotPassword.icon.tooltip
|
5920
5929
|
}, null, 8, ["iconClass", "type", "title"])) : m("", !0),
|
5921
|
-
t.options.forgotPassword.text ? (l(), o("span",
|
5930
|
+
t.options.forgotPassword.text ? (l(), o("span", Rc, g(t.options.forgotPassword.text), 1)) : m("", !0)
|
5922
5931
|
])) : m("", !0),
|
5923
5932
|
t.options.createAccount && t.options.createAccount.linkType === "href" ? (l(), o("a", {
|
5924
5933
|
key: 1,
|
@@ -5930,8 +5939,8 @@ function Xc(e, i, t, a, s, n) {
|
|
5930
5939
|
type: t.options.createAccount.icon.iconType,
|
5931
5940
|
title: t.options.createAccount.icon.tooltip
|
5932
5941
|
}, null, 8, ["iconClass", "type", "title"])) : m("", !0),
|
5933
|
-
t.options.createAccount.text ? (l(), o("span",
|
5934
|
-
], 8,
|
5942
|
+
t.options.createAccount.text ? (l(), o("span", Ec, g(t.options.createAccount.text), 1)) : m("", !0)
|
5943
|
+
], 8, Vc)) : t.options.createAccount && t.options.createAccount.linkType === "router" ? (l(), _(c, {
|
5935
5944
|
key: 2,
|
5936
5945
|
to: t.options.createAccount.path
|
5937
5946
|
}, {
|
@@ -5942,8 +5951,8 @@ function Xc(e, i, t, a, s, n) {
|
|
5942
5951
|
type: t.options.createAccount.icon.iconType,
|
5943
5952
|
title: t.options.createAccount.icon.tooltip
|
5944
5953
|
}, null, 8, ["class", "type", "title"])) : m("", !0),
|
5945
|
-
|
5946
|
-
t.options.createAccount.text ? (l(), o("span",
|
5954
|
+
Uc,
|
5955
|
+
t.options.createAccount.text ? (l(), o("span", Gc, g(t.options.createAccount.text), 1)) : m("", !0)
|
5947
5956
|
]),
|
5948
5957
|
_: 1
|
5949
5958
|
}, 8, ["to"])) : m("", !0)
|
@@ -5961,13 +5970,13 @@ function Xc(e, i, t, a, s, n) {
|
|
5961
5970
|
type: t.buttons.login.icon.iconType,
|
5962
5971
|
title: t.buttons.login.icon.tooltip
|
5963
5972
|
}, null, 8, ["iconClass", "type", "title"])) : m("", !0),
|
5964
|
-
t.buttons.login.text ? (l(), o("span",
|
5965
|
-
], 10,
|
5973
|
+
t.buttons.login.text ? (l(), o("span", Wc, g(t.buttons.login.text), 1)) : m("", !0)
|
5974
|
+
], 10, Qc)) : m("", !0)
|
5966
5975
|
])
|
5967
5976
|
], 512), [
|
5968
5977
|
[me, !s.sendLogin]
|
5969
5978
|
]),
|
5970
|
-
$(f("fieldset",
|
5979
|
+
$(f("fieldset", Zc, [
|
5971
5980
|
f("legend", {
|
5972
5981
|
class: C({ hidden: !t.showLegend })
|
5973
5982
|
}, g(t.textLegendForgotLoginForm), 3),
|
@@ -5985,7 +5994,7 @@ function Xc(e, i, t, a, s, n) {
|
|
5985
5994
|
modelValue: s.sendLoginMail,
|
5986
5995
|
"onUpdate:modelValue": i[7] || (i[7] = (M) => s.sendLoginMail = M)
|
5987
5996
|
}, null, 8, ["fieldIconClass", "labelText", "placeholder", "name", "required", "id", "modelValue"]),
|
5988
|
-
f("div",
|
5997
|
+
f("div", Jc, [
|
5989
5998
|
f("a", {
|
5990
5999
|
href: "#",
|
5991
6000
|
onClick: i[8] || (i[8] = S((M) => s.sendLogin = !1, ["prevent"]))
|
@@ -5996,7 +6005,7 @@ function Xc(e, i, t, a, s, n) {
|
|
5996
6005
|
type: t.options.backToLoginForm.icon.iconType,
|
5997
6006
|
title: t.options.backToLoginForm.icon.tooltip
|
5998
6007
|
}, null, 8, ["iconClass", "type", "title"])) : m("", !0),
|
5999
|
-
t.options.backToLoginForm.text ? (l(), o("span",
|
6008
|
+
t.options.backToLoginForm.text ? (l(), o("span", Yc, g(t.options.backToLoginForm.text), 1)) : m("", !0)
|
6000
6009
|
]),
|
6001
6010
|
t.buttons.sendLogin.linkType === "button" ? (l(), o("button", {
|
6002
6011
|
key: 0,
|
@@ -6009,16 +6018,16 @@ function Xc(e, i, t, a, s, n) {
|
|
6009
6018
|
iconClass: (v = t.buttons.sendLogin.icon) == null ? void 0 : v.iconClass,
|
6010
6019
|
title: (T = t.buttons.sendLogin.icon) == null ? void 0 : T.tooltip
|
6011
6020
|
}, null, 8, ["iconClass", "title"])) : m("", !0),
|
6012
|
-
t.buttons.sendLogin.text ? (l(), o("span",
|
6013
|
-
], 10,
|
6021
|
+
t.buttons.sendLogin.text ? (l(), o("span", Xc, g(t.buttons.sendLogin.text), 1)) : m("", !0)
|
6022
|
+
], 10, Kc)) : m("", !0)
|
6014
6023
|
])
|
6015
6024
|
], 512), [
|
6016
6025
|
[me, s.sendLogin]
|
6017
6026
|
])
|
6018
6027
|
], 64);
|
6019
6028
|
}
|
6020
|
-
const
|
6021
|
-
const
|
6029
|
+
const $h = /* @__PURE__ */ L(Ac, [["render", $c]]);
|
6030
|
+
const eu = {
|
6022
6031
|
name: "CmdMainNavigation",
|
6023
6032
|
data() {
|
6024
6033
|
return {
|
@@ -6108,11 +6117,11 @@ const $c = {
|
|
6108
6117
|
this.$emit("offcanvas", { open: this.showOffcanvas });
|
6109
6118
|
}
|
6110
6119
|
}
|
6111
|
-
},
|
6120
|
+
}, tu = {
|
6112
6121
|
key: 0,
|
6113
6122
|
class: "close-nav"
|
6114
|
-
},
|
6115
|
-
function
|
6123
|
+
}, iu = ["href", "title", "target", "onClick"], nu = { key: 1 }, su = { key: 1 }, lu = ["aria-expanded"], ou = ["href", "title", "target", "onClick"], au = { key: 1 }, ru = { key: 1 }, cu = ["aria-expanded"], uu = ["href", "title", "target", "onClick"], du = { key: 1 }, mu = { key: 1 };
|
6124
|
+
function hu(e, i, t, a, s, n) {
|
6116
6125
|
const u = z, d = K("router-link");
|
6117
6126
|
return l(), o("div", {
|
6118
6127
|
class: C([
|
@@ -6131,7 +6140,7 @@ function mu(e, i, t, a, s, n) {
|
|
6131
6140
|
f("ul", {
|
6132
6141
|
class: C({ "stretch-items": t.stretchMainItems })
|
6133
6142
|
}, [
|
6134
|
-
s.showOffcanvas ? (l(), o("li",
|
6143
|
+
s.showOffcanvas ? (l(), o("li", tu, [
|
6135
6144
|
f("a", {
|
6136
6145
|
href: "#",
|
6137
6146
|
id: "close-offcanvas",
|
@@ -6168,12 +6177,12 @@ function mu(e, i, t, a, s, n) {
|
|
6168
6177
|
iconClass: r.iconClass,
|
6169
6178
|
type: r.iconType
|
6170
6179
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6171
|
-
r.text ? (l(), o("span",
|
6180
|
+
r.text ? (l(), o("span", nu, g(r.text), 1)) : m("", !0),
|
6172
6181
|
(p = r == null ? void 0 : r.subentries) != null && p.length ? (l(), o("span", {
|
6173
6182
|
key: 2,
|
6174
6183
|
class: C(["subentry-icon", t.subentriesIconClass])
|
6175
6184
|
}, null, 2)) : m("", !0)
|
6176
|
-
], 40,
|
6185
|
+
], 40, iu)) : m("", !0),
|
6177
6186
|
r.type === "router" ? (l(), _(d, {
|
6178
6187
|
key: 1,
|
6179
6188
|
to: n.getRoute(r),
|
@@ -6185,7 +6194,7 @@ function mu(e, i, t, a, s, n) {
|
|
6185
6194
|
iconClass: r.iconClass,
|
6186
6195
|
type: r.iconType
|
6187
6196
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6188
|
-
r.text ? (l(), o("span",
|
6197
|
+
r.text ? (l(), o("span", su, g(r.text), 1)) : m("", !0),
|
6189
6198
|
r.subentries && r.subentries.length > 0 ? (l(), o("span", {
|
6190
6199
|
key: 2,
|
6191
6200
|
class: C(["subentry-icon", t.subentriesIconClass])
|
@@ -6215,12 +6224,12 @@ function mu(e, i, t, a, s, n) {
|
|
6215
6224
|
iconClass: y.iconClass,
|
6216
6225
|
type: y.iconType
|
6217
6226
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6218
|
-
y.text ? (l(), o("span",
|
6227
|
+
y.text ? (l(), o("span", au, g(y.text), 1)) : m("", !0),
|
6219
6228
|
y.subentries && y.subentries.length > 0 ? (l(), o("span", {
|
6220
6229
|
key: 2,
|
6221
6230
|
class: C(["subentry-icon", t.subentriesIconClass])
|
6222
6231
|
}, null, 2)) : m("", !0)
|
6223
|
-
], 40,
|
6232
|
+
], 40, ou)) : m("", !0),
|
6224
6233
|
y.type === "router" ? (l(), _(d, {
|
6225
6234
|
key: 1,
|
6226
6235
|
to: n.getRoute(y),
|
@@ -6232,7 +6241,7 @@ function mu(e, i, t, a, s, n) {
|
|
6232
6241
|
iconClass: y.iconClass,
|
6233
6242
|
type: y.iconType
|
6234
6243
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6235
|
-
y.text ? (l(), o("span",
|
6244
|
+
y.text ? (l(), o("span", ru, g(y.text), 1)) : m("", !0),
|
6236
6245
|
y.subentries && y.subentries.length > 0 ? (l(), o("span", {
|
6237
6246
|
key: 2,
|
6238
6247
|
class: C(["subentry-icon", t.subentriesIconClass])
|
@@ -6257,12 +6266,12 @@ function mu(e, i, t, a, s, n) {
|
|
6257
6266
|
iconClass: v.iconClass,
|
6258
6267
|
type: v.iconType
|
6259
6268
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6260
|
-
v.text ? (l(), o("span",
|
6269
|
+
v.text ? (l(), o("span", du, g(v.text), 1)) : m("", !0),
|
6261
6270
|
v.subentries && v.subentries.length > 0 ? (l(), o("span", {
|
6262
6271
|
key: 2,
|
6263
6272
|
class: C(["subentry-icon", t.subentriesIconClass])
|
6264
6273
|
}, null, 2)) : m("", !0)
|
6265
|
-
], 8,
|
6274
|
+
], 8, uu)) : m("", !0),
|
6266
6275
|
r.type === "router" ? (l(), _(d, {
|
6267
6276
|
key: 1,
|
6268
6277
|
to: n.getRoute(v),
|
@@ -6274,7 +6283,7 @@ function mu(e, i, t, a, s, n) {
|
|
6274
6283
|
iconClass: v.iconClass,
|
6275
6284
|
type: v.iconType
|
6276
6285
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6277
|
-
v.text ? (l(), o("span",
|
6286
|
+
v.text ? (l(), o("span", mu, g(v.text), 1)) : m("", !0),
|
6278
6287
|
v.subentries && v.subentries.length > 0 ? (l(), o("span", {
|
6279
6288
|
key: 2,
|
6280
6289
|
class: C(["subentry-icon", t.subentriesIconClass])
|
@@ -6283,9 +6292,9 @@ function mu(e, i, t, a, s, n) {
|
|
6283
6292
|
_: 2
|
6284
6293
|
}, 1032, ["to", "target"])) : m("", !0)
|
6285
6294
|
]))), 128))
|
6286
|
-
], 8,
|
6295
|
+
], 8, cu)) : m("", !0)
|
6287
6296
|
], 2))), 128))
|
6288
|
-
], 8,
|
6297
|
+
], 8, lu)) : m("", !0)
|
6289
6298
|
], 2);
|
6290
6299
|
}), 128))
|
6291
6300
|
], 2)
|
@@ -6307,8 +6316,8 @@ function mu(e, i, t, a, s, n) {
|
|
6307
6316
|
])) : m("", !0)
|
6308
6317
|
], 2);
|
6309
6318
|
}
|
6310
|
-
const
|
6311
|
-
const
|
6319
|
+
const fu = /* @__PURE__ */ L(eu, [["render", hu]]);
|
6320
|
+
const gu = {
|
6312
6321
|
name: "CmdMultistepFormProgressBar",
|
6313
6322
|
data() {
|
6314
6323
|
return {
|
@@ -6339,19 +6348,19 @@ const fu = {
|
|
6339
6348
|
return oe(e);
|
6340
6349
|
}
|
6341
6350
|
}
|
6342
|
-
},
|
6351
|
+
}, pu = { class: "cmd-multistep-form-progress-bar" }, yu = ["href", "onClick", "title"], Cu = {
|
6343
6352
|
key: 0,
|
6344
6353
|
class: "number"
|
6345
|
-
},
|
6354
|
+
}, _u = { key: 2 }, bu = {
|
6346
6355
|
key: 0,
|
6347
6356
|
class: "number"
|
6348
|
-
},
|
6357
|
+
}, ku = { key: 2 }, vu = ["type", "name", "title", "formaction", "onClick"], wu = {
|
6349
6358
|
key: 0,
|
6350
6359
|
class: "number"
|
6351
|
-
},
|
6352
|
-
function
|
6360
|
+
}, Iu = { key: 2 };
|
6361
|
+
function xu(e, i, t, a, s, n) {
|
6353
6362
|
const u = z, d = K("router-link");
|
6354
|
-
return l(), o("ol",
|
6363
|
+
return l(), o("ol", pu, [
|
6355
6364
|
(l(!0), o(b, null, B(t.multisteps, (r, c) => (l(), o("li", {
|
6356
6365
|
key: c,
|
6357
6366
|
class: C({ active: s.activeLink === c })
|
@@ -6362,30 +6371,30 @@ function Iu(e, i, t, a, s, n) {
|
|
6362
6371
|
onClick: S((h) => n.clickedStep(h, c), ["stop", "prevent"]),
|
6363
6372
|
title: r.tooltip
|
6364
6373
|
}, [
|
6365
|
-
t.showStepNumber ? (l(), o("span",
|
6374
|
+
t.showStepNumber ? (l(), o("span", Cu, g(c + 1), 1)) : m("", !0),
|
6366
6375
|
r.iconClass ? (l(), _(u, {
|
6367
6376
|
key: 1,
|
6368
6377
|
iconClass: r.iconClass,
|
6369
6378
|
type: r.iconType
|
6370
6379
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6371
|
-
r.text ? (l(), o("span",
|
6380
|
+
r.text ? (l(), o("span", _u, g(r.text), 1)) : m("", !0),
|
6372
6381
|
f("span", {
|
6373
6382
|
class: C(t.separatorIconClass)
|
6374
6383
|
}, null, 2)
|
6375
|
-
], 8,
|
6384
|
+
], 8, yu)) : m("", !0),
|
6376
6385
|
r.type === "router" ? (l(), _(d, {
|
6377
6386
|
key: 1,
|
6378
6387
|
to: n.getRoute(r),
|
6379
6388
|
title: r.tooltip
|
6380
6389
|
}, {
|
6381
6390
|
default: j(() => [
|
6382
|
-
t.showStepNumber ? (l(), o("span",
|
6391
|
+
t.showStepNumber ? (l(), o("span", bu, g(c + 1), 1)) : m("", !0),
|
6383
6392
|
r.iconClass ? (l(), _(u, {
|
6384
6393
|
key: 1,
|
6385
6394
|
iconClass: r.iconClass,
|
6386
6395
|
type: r.iconType
|
6387
6396
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6388
|
-
r.text ? (l(), o("span",
|
6397
|
+
r.text ? (l(), o("span", ku, g(r.text), 1)) : m("", !0),
|
6389
6398
|
f("span", {
|
6390
6399
|
class: C(t.separatorIconClass)
|
6391
6400
|
}, null, 2)
|
@@ -6401,22 +6410,22 @@ function Iu(e, i, t, a, s, n) {
|
|
6401
6410
|
formaction: r.formaction,
|
6402
6411
|
onClick: S((h) => n.clickedStep(h, c), ["stop", "prevent"])
|
6403
6412
|
}, [
|
6404
|
-
t.showStepNumber ? (l(), o("span",
|
6413
|
+
t.showStepNumber ? (l(), o("span", wu, g(c + 1), 1)) : m("", !0),
|
6405
6414
|
r.iconClass ? (l(), _(u, {
|
6406
6415
|
key: 1,
|
6407
6416
|
iconClass: r.iconClass,
|
6408
6417
|
type: r.iconType
|
6409
6418
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6410
|
-
r.text ? (l(), o("span",
|
6419
|
+
r.text ? (l(), o("span", Iu, g(r.text), 1)) : m("", !0),
|
6411
6420
|
f("span", {
|
6412
6421
|
class: C(t.separatorIconClass)
|
6413
6422
|
}, null, 2)
|
6414
|
-
], 8,
|
6423
|
+
], 8, vu)) : m("", !0)
|
6415
6424
|
], 2))), 128))
|
6416
6425
|
]);
|
6417
6426
|
}
|
6418
|
-
const
|
6419
|
-
function
|
6427
|
+
const ef = /* @__PURE__ */ L(gu, [["render", xu]]);
|
6428
|
+
function Tu(e, i, t, a = !0) {
|
6420
6429
|
function s(n, u) {
|
6421
6430
|
return u && n < 10 ? "0" + n : n;
|
6422
6431
|
}
|
@@ -6428,7 +6437,7 @@ function xu(e, i, t, a = !0) {
|
|
6428
6437
|
return s(n, a) + e + s(u, !0) + i;
|
6429
6438
|
};
|
6430
6439
|
}
|
6431
|
-
const
|
6440
|
+
const Su = {
|
6432
6441
|
name: "CmdOpeningHours",
|
6433
6442
|
props: {
|
6434
6443
|
link: {
|
@@ -6522,24 +6531,24 @@ const Tu = {
|
|
6522
6531
|
},
|
6523
6532
|
methods: {
|
6524
6533
|
getTime(e) {
|
6525
|
-
return this.timeFormatter ? this.timeFormatter(e.hours, e.mins) :
|
6534
|
+
return this.timeFormatter ? this.timeFormatter(e.hours, e.mins) : Tu(":", " hrs", "", !1)(e.hours, e.mins);
|
6526
6535
|
}
|
6527
6536
|
},
|
6528
6537
|
beforeUnmount() {
|
6529
6538
|
this.$_CmdOpeningHours_intervalId && (clearInterval(this.$_CmdOpeningHours_intervalId), this.$_CmdOpeningHours_intervalId = null);
|
6530
6539
|
}
|
6531
|
-
},
|
6532
|
-
function
|
6540
|
+
}, Mu = { class: "cmd-opening-hours" }, Ou = ["href"], Lu = { key: 3 }, Du = { key: 0 }, Nu = { key: 1 };
|
6541
|
+
function ju(e, i, t, a, s, n) {
|
6533
6542
|
var r, c;
|
6534
6543
|
const u = E, d = K("router-link");
|
6535
|
-
return l(), o("div",
|
6544
|
+
return l(), o("div", Mu, [
|
6536
6545
|
t.cmdHeadline ? (l(), _(u, Q(F({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
6537
6546
|
t.link && ((r = t.link) == null ? void 0 : r.path) && ((c = t.link) == null ? void 0 : c.show) ? (l(), o(b, { key: 1 }, [
|
6538
6547
|
t.link.type === "href" ? (l(), o("a", {
|
6539
6548
|
key: 0,
|
6540
6549
|
href: t.link.path,
|
6541
6550
|
class: C({ closed: n.isClosed })
|
6542
|
-
}, g(n.textOpenClosed), 11,
|
6551
|
+
}, g(n.textOpenClosed), 11, Ou)) : m("", !0),
|
6543
6552
|
t.link.type === "router" ? (l(), _(d, {
|
6544
6553
|
key: 1,
|
6545
6554
|
to: t.link.path,
|
@@ -6566,15 +6575,15 @@ function Nu(e, i, t, a, s, n) {
|
|
6566
6575
|
f("dd", null, g(n.getTime(h.fromTime)) + "\u2013" + g(n.getTime(h.tillTime)), 1)
|
6567
6576
|
], 64))), 128))
|
6568
6577
|
]),
|
6569
|
-
t.textHolidaysClosed || t.textMiscInfo ? (l(), o("div",
|
6570
|
-
t.textHolidaysClosed ? (l(), o("p",
|
6578
|
+
t.textHolidaysClosed || t.textMiscInfo ? (l(), o("div", Lu, [
|
6579
|
+
t.textHolidaysClosed ? (l(), o("p", Du, [
|
6571
6580
|
f("strong", null, g(t.textHolidaysClosed), 1)
|
6572
6581
|
])) : m("", !0),
|
6573
|
-
t.textMiscInfo ? (l(), o("p",
|
6582
|
+
t.textMiscInfo ? (l(), o("p", Nu, g(t.textMiscInfo), 1)) : m("", !0)
|
6574
6583
|
])) : m("", !0)
|
6575
6584
|
]);
|
6576
6585
|
}
|
6577
|
-
const
|
6586
|
+
const tf = /* @__PURE__ */ L(Su, [["render", ju]]), Bu = {
|
6578
6587
|
data() {
|
6579
6588
|
return {
|
6580
6589
|
defaultMessageProperties: {
|
@@ -6584,11 +6593,11 @@ const ef = /* @__PURE__ */ L(Tu, [["render", Nu]]), ju = {
|
|
6584
6593
|
};
|
6585
6594
|
}
|
6586
6595
|
};
|
6587
|
-
const
|
6596
|
+
const Pu = {
|
6588
6597
|
name: "CmdPager",
|
6589
6598
|
mixins: [
|
6590
6599
|
X,
|
6591
|
-
|
6600
|
+
Bu
|
6592
6601
|
],
|
6593
6602
|
emits: ["click"],
|
6594
6603
|
data() {
|
@@ -6659,10 +6668,10 @@ const Bu = {
|
|
6659
6668
|
this.currentPage > 1 && this.showPage(this.currentPage - 1);
|
6660
6669
|
}
|
6661
6670
|
}
|
6662
|
-
},
|
6663
|
-
function
|
6671
|
+
}, Fu = { class: "cmd-pager" }, Au = ["href", "title"], Hu = { key: 0 }, zu = { class: "page-index" }, qu = { class: "flex-container" }, Ru = ["href", "title", "onClick"], Vu = ["href", "title"], Eu = { key: 0 };
|
6672
|
+
function Uu(e, i, t, a, s, n) {
|
6664
6673
|
const u = z;
|
6665
|
-
return l(), o("div",
|
6674
|
+
return l(), o("div", Fu, [
|
6666
6675
|
f("a", {
|
6667
6676
|
href: n.getPreviousHref,
|
6668
6677
|
class: C(["page-change", { disabled: s.currentPage === 1, button: t.linkType === "button" }]),
|
@@ -6673,10 +6682,10 @@ function Eu(e, i, t, a, s, n) {
|
|
6673
6682
|
iconClass: t.prevLink.iconClass,
|
6674
6683
|
type: t.prevLink.iconType
|
6675
6684
|
}, null, 8, ["iconClass", "type"]),
|
6676
|
-
t.prevLink.showText ? (l(), o("span",
|
6677
|
-
], 10,
|
6678
|
-
f("div",
|
6679
|
-
f("div",
|
6685
|
+
t.prevLink.showText ? (l(), o("span", Hu, g(t.prevLink.text), 1)) : m("", !0)
|
6686
|
+
], 10, Au),
|
6687
|
+
f("div", zu, [
|
6688
|
+
f("div", qu, [
|
6680
6689
|
(l(!0), o(b, null, B(t.pages, (d, r) => (l(), o("a", {
|
6681
6690
|
href: n.getHref(d),
|
6682
6691
|
class: C({ disabled: s.currentPage === r + 1, button: t.linkType === "button" }),
|
@@ -6688,7 +6697,7 @@ function Eu(e, i, t, a, s, n) {
|
|
6688
6697
|
f("span", {
|
6689
6698
|
class: C({ hidden: !t.showPageNumbers })
|
6690
6699
|
}, g(r + 1), 3)
|
6691
|
-
], 10,
|
6700
|
+
], 10, Ru))), 128))
|
6692
6701
|
])
|
6693
6702
|
]),
|
6694
6703
|
f("a", {
|
@@ -6697,16 +6706,16 @@ function Eu(e, i, t, a, s, n) {
|
|
6697
6706
|
onClick: i[1] || (i[1] = S((...d) => n.nextPage && n.nextPage(...d), ["prevent"])),
|
6698
6707
|
title: t.nextLink.showText ? null : t.nextLink.text
|
6699
6708
|
}, [
|
6700
|
-
t.nextLink.showText ? (l(), o("span",
|
6709
|
+
t.nextLink.showText ? (l(), o("span", Eu, g(t.nextLink.text), 1)) : m("", !0),
|
6701
6710
|
x(u, {
|
6702
6711
|
iconClass: t.nextLink.iconClass,
|
6703
6712
|
type: t.nextLink.iconType
|
6704
6713
|
}, null, 8, ["iconClass", "type"])
|
6705
|
-
], 10,
|
6714
|
+
], 10, Vu)
|
6706
6715
|
]);
|
6707
6716
|
}
|
6708
|
-
const
|
6709
|
-
const
|
6717
|
+
const nf = /* @__PURE__ */ L(Pu, [["render", Uu]]);
|
6718
|
+
const Gu = {
|
6710
6719
|
name: "CmdProgressBar",
|
6711
6720
|
inheritAttrs: !1,
|
6712
6721
|
data() {
|
@@ -6732,8 +6741,8 @@ const Uu = {
|
|
6732
6741
|
required: !0
|
6733
6742
|
}
|
6734
6743
|
}
|
6735
|
-
},
|
6736
|
-
function
|
6744
|
+
}, Qu = ["for"], Wu = { class: "progressbar" }, Zu = { key: 0 }, Ju = ["id", "value"];
|
6745
|
+
function Yu(e, i, t, a, s, n) {
|
6737
6746
|
return l(), o("label", {
|
6738
6747
|
class: "cmd-progressbar",
|
6739
6748
|
for: t.id
|
@@ -6741,17 +6750,17 @@ function Ju(e, i, t, a, s, n) {
|
|
6741
6750
|
f("span", {
|
6742
6751
|
class: C(["label-text", { hidden: !t.showLabel }])
|
6743
6752
|
}, g(t.labelText), 3),
|
6744
|
-
f("span",
|
6745
|
-
t.showLoadingStatus ? (l(), o("span",
|
6753
|
+
f("span", Wu, [
|
6754
|
+
t.showLoadingStatus ? (l(), o("span", Zu, g(s.loadingStatus) + " %", 1)) : m("", !0),
|
6746
6755
|
f("progress", F(e.$attrs, {
|
6747
6756
|
id: t.id,
|
6748
6757
|
value: s.loadingStatus
|
6749
|
-
}), null, 16,
|
6758
|
+
}), null, 16, Ju)
|
6750
6759
|
])
|
6751
|
-
], 8,
|
6760
|
+
], 8, Qu);
|
6752
6761
|
}
|
6753
|
-
const
|
6754
|
-
const
|
6762
|
+
const sf = /* @__PURE__ */ L(Gu, [["render", Yu]]);
|
6763
|
+
const Ku = {
|
6755
6764
|
name: "CmdSocialNetworks",
|
6756
6765
|
data() {
|
6757
6766
|
return {
|
@@ -6797,7 +6806,7 @@ const Yu = {
|
|
6797
6806
|
},
|
6798
6807
|
textAlign: {
|
6799
6808
|
type: String,
|
6800
|
-
default: "
|
6809
|
+
default: "right"
|
6801
6810
|
},
|
6802
6811
|
cmdFormElement: {
|
6803
6812
|
type: Object,
|
@@ -6831,8 +6840,8 @@ const Yu = {
|
|
6831
6840
|
return this.userMustAcceptDataPrivacy ? this.dataPrivacyAccepted ? e : this.tooltipAcceptDataPrivacy : e;
|
6832
6841
|
}
|
6833
6842
|
}
|
6834
|
-
},
|
6835
|
-
function
|
6843
|
+
}, Xu = ["id", "href", "title"], $u = { key: 1 };
|
6844
|
+
function ed(e, i, t, a, s, n) {
|
6836
6845
|
const u = E, d = ae, r = z;
|
6837
6846
|
return l(), o("div", {
|
6838
6847
|
class: C(["cmd-social-networks", { stretch: t.stretchButtons, "align-right": t.align === "right" }])
|
@@ -6854,7 +6863,7 @@ function $u(e, i, t, a, s, n) {
|
|
6854
6863
|
(l(!0), o(b, null, B(n.validNetworks, (c) => (l(), o("li", null, [
|
6855
6864
|
(l(), o("a", {
|
6856
6865
|
key: c.path,
|
6857
|
-
class: C(["button", { disabled: t.userMustAcceptDataPrivacy && !s.dataPrivacyAccepted }, { "text-align-
|
6866
|
+
class: C(["button", { disabled: t.userMustAcceptDataPrivacy && !s.dataPrivacyAccepted }, { "text-align-left": t.textAlign === "left" }]),
|
6858
6867
|
id: c.id,
|
6859
6868
|
href: n.getUrl(c),
|
6860
6869
|
onClick: i[1] || (i[1] = (...h) => n.preventOnDisabled && n.preventOnDisabled(...h)),
|
@@ -6866,14 +6875,14 @@ function $u(e, i, t, a, s, n) {
|
|
6866
6875
|
iconClass: c.iconClass,
|
6867
6876
|
type: c.iconType
|
6868
6877
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
6869
|
-
c.linkText ? (l(), o("span",
|
6870
|
-
], 10,
|
6878
|
+
c.linkText ? (l(), o("span", $u, g(c.linkText), 1)) : m("", !0)
|
6879
|
+
], 10, Xu))
|
6871
6880
|
]))), 256))
|
6872
6881
|
], 2)
|
6873
6882
|
], 2);
|
6874
6883
|
}
|
6875
|
-
const
|
6876
|
-
const
|
6884
|
+
const lf = /* @__PURE__ */ L(Ku, [["render", ed]]);
|
6885
|
+
const td = {
|
6877
6886
|
name: "CmdSiteFooter",
|
6878
6887
|
props: {
|
6879
6888
|
orientation: {
|
@@ -6881,9 +6890,9 @@ const ed = {
|
|
6881
6890
|
default: "horizontal"
|
6882
6891
|
}
|
6883
6892
|
}
|
6884
|
-
},
|
6885
|
-
function
|
6886
|
-
return l(), o("div",
|
6893
|
+
}, id = { class: "cmd-site-footer" };
|
6894
|
+
function nd(e, i, t, a, s, n) {
|
6895
|
+
return l(), o("div", id, [
|
6887
6896
|
f("footer", {
|
6888
6897
|
class: C(["flex-container", { vertical: t.orientation === "vertical" }])
|
6889
6898
|
}, [
|
@@ -6891,8 +6900,8 @@ function id(e, i, t, a, s, n) {
|
|
6891
6900
|
], 2)
|
6892
6901
|
]);
|
6893
6902
|
}
|
6894
|
-
const
|
6895
|
-
const
|
6903
|
+
const of = /* @__PURE__ */ L(td, [["render", nd]]);
|
6904
|
+
const sd = {
|
6896
6905
|
name: "CmdSiteHeader",
|
6897
6906
|
emits: ["offcanvas"],
|
6898
6907
|
props: {
|
@@ -6926,18 +6935,18 @@ const nd = {
|
|
6926
6935
|
this.$emit("offcanvas", e);
|
6927
6936
|
}
|
6928
6937
|
}
|
6929
|
-
},
|
6938
|
+
}, ld = {
|
6930
6939
|
key: 0,
|
6931
6940
|
class: "top-header"
|
6932
6941
|
};
|
6933
|
-
function
|
6942
|
+
function od(e, i, t, a, s, n) {
|
6934
6943
|
var r, c, h, p, k, y, I, v, T;
|
6935
|
-
const u =
|
6944
|
+
const u = rr, d = fu;
|
6936
6945
|
return l(), o("div", {
|
6937
6946
|
class: C(["cmd-site-header", { sticky: t.sticky, "navigation-inline": t.navigationInline, "off-canvas-right": ((r = t.cmdMainNavigation) == null ? void 0 : r.offcanvasPosition) === "right" }]),
|
6938
6947
|
role: "banner"
|
6939
6948
|
}, [
|
6940
|
-
e.$slots.topheader ? (l(), o("div",
|
6949
|
+
e.$slots.topheader ? (l(), o("div", ld, [
|
6941
6950
|
H(e.$slots, "topheader")
|
6942
6951
|
])) : m("", !0),
|
6943
6952
|
f("header", {
|
@@ -6971,7 +6980,7 @@ function ld(e, i, t, a, s, n) {
|
|
6971
6980
|
}, null, 8, ["navigationEntries", "offcanvasPosition", "closeOffcanvas", "onOffcanvas"])) : m("", !0)
|
6972
6981
|
], 2);
|
6973
6982
|
}
|
6974
|
-
const
|
6983
|
+
const af = /* @__PURE__ */ L(sd, [["render", od]]), ad = {
|
6975
6984
|
data() {
|
6976
6985
|
return {
|
6977
6986
|
defaultMessageProperties: {
|
@@ -6985,7 +6994,7 @@ const of = /* @__PURE__ */ L(nd, [["render", ld]]), od = {
|
|
6985
6994
|
};
|
6986
6995
|
}
|
6987
6996
|
};
|
6988
|
-
const
|
6997
|
+
const rd = {
|
6989
6998
|
emits: [
|
6990
6999
|
"search",
|
6991
7000
|
"update:modelValueInput1",
|
@@ -6994,7 +7003,7 @@ const ad = {
|
|
6994
7003
|
"update:modelValueSearchFilters"
|
6995
7004
|
],
|
6996
7005
|
name: "CmdBoxSiteSearch",
|
6997
|
-
mixins: [X,
|
7006
|
+
mixins: [X, ad],
|
6998
7007
|
data() {
|
6999
7008
|
return {
|
7000
7009
|
showFilters: !1
|
@@ -7197,22 +7206,22 @@ const ad = {
|
|
7197
7206
|
deep: !0
|
7198
7207
|
}
|
7199
7208
|
}
|
7200
|
-
},
|
7209
|
+
}, cd = { class: "cmd-box-site-search flex-container" }, ud = { class: "flex-container align-bottom" }, dd = { class: "input-wrapper align-bottom" }, md = { key: 0 }, hd = { key: 1 }, fd = {
|
7201
7210
|
key: 0,
|
7202
7211
|
class: "flex-container no-flex",
|
7203
7212
|
role: "listbox",
|
7204
7213
|
"aria-expanded": "true"
|
7205
7214
|
};
|
7206
|
-
function
|
7215
|
+
function gd(e, i, t, a, s, n) {
|
7207
7216
|
var p, k, y, I, v, T, M, N, V, w;
|
7208
|
-
const u = E, d = ae, r = z, c =
|
7217
|
+
const u = E, d = ae, r = z, c = Xr, h = cc;
|
7209
7218
|
return l(), o(b, null, [
|
7210
|
-
f("fieldset",
|
7219
|
+
f("fieldset", cd, [
|
7211
7220
|
f("legend", {
|
7212
7221
|
class: C({ hidden: !t.showLegend })
|
7213
7222
|
}, g(t.textLegend), 3),
|
7214
7223
|
t.cmdHeadline ? (l(), _(u, Q(F({ key: 0 }, t.cmdHeadline)), null, 16)) : m("", !0),
|
7215
|
-
f("div",
|
7224
|
+
f("div", ud, [
|
7216
7225
|
x(d, {
|
7217
7226
|
element: "input",
|
7218
7227
|
type: t.cmdFormElementInput1.type,
|
@@ -7224,7 +7233,7 @@ function fd(e, i, t, a, s, n) {
|
|
7224
7233
|
modelValue: n.searchValue1,
|
7225
7234
|
"onUpdate:modelValue": i[0] || (i[0] = (q) => n.searchValue1 = q)
|
7226
7235
|
}, null, 8, ["type", "show-label", "labelText", "placeholder", "required", "showSearchButton", "modelValue"]),
|
7227
|
-
f("div",
|
7236
|
+
f("div", dd, [
|
7228
7237
|
t.cmdFormElementInput2.show ? (l(), _(d, {
|
7229
7238
|
key: 0,
|
7230
7239
|
element: "input",
|
@@ -7266,13 +7275,13 @@ function fd(e, i, t, a, s, n) {
|
|
7266
7275
|
iconClass: s.showFilters ? (y = (k = t.cmdIcon) == null ? void 0 : k.showFilters) == null ? void 0 : y.iconClass : (v = (I = t.cmdIcon) == null ? void 0 : I.hideFilters) == null ? void 0 : v.iconClass,
|
7267
7276
|
type: s.showFilters ? (M = (T = t.cmdIcon) == null ? void 0 : T.showFilters) == null ? void 0 : M.iconType : (V = (N = t.cmdIcon) == null ? void 0 : N.hideFilters) == null ? void 0 : V.iconType
|
7268
7277
|
}, null, 8, ["iconClass", "type"]),
|
7269
|
-
s.showFilters ? (l(), o("span",
|
7278
|
+
s.showFilters ? (l(), o("span", md, g(e.getMessage("cmdsitesearch.hide_filter_options")), 1)) : (l(), o("span", hd, g(e.getMessage("cmdsitesearch.show_filter_options")), 1))
|
7270
7279
|
]),
|
7271
7280
|
x(se, { name: "fade" }, {
|
7272
7281
|
default: j(() => {
|
7273
7282
|
var q, D, P, U, G;
|
7274
7283
|
return [
|
7275
|
-
s.showFilters && ((q = t.cmdFakeSelect) == null ? void 0 : q.selectData.length) ? (l(), o("div",
|
7284
|
+
s.showFilters && ((q = t.cmdFakeSelect) == null ? void 0 : q.selectData.length) ? (l(), o("div", fd, [
|
7276
7285
|
x(c, {
|
7277
7286
|
role: "option",
|
7278
7287
|
selectData: (D = t.cmdFakeSelect) == null ? void 0 : D.selectData,
|
@@ -7297,8 +7306,8 @@ function fd(e, i, t, a, s, n) {
|
|
7297
7306
|
}, null, 8, ["modelValue", "selectedOptionsName"])) : m("", !0)
|
7298
7307
|
], 64);
|
7299
7308
|
}
|
7300
|
-
const
|
7301
|
-
const
|
7309
|
+
const rf = /* @__PURE__ */ L(rd, [["render", gd]]);
|
7310
|
+
const pd = {
|
7302
7311
|
name: "CmdSlideshow",
|
7303
7312
|
data() {
|
7304
7313
|
return {
|
@@ -7385,8 +7394,8 @@ const gd = {
|
|
7385
7394
|
immediate: !0
|
7386
7395
|
}
|
7387
7396
|
}
|
7388
|
-
},
|
7389
|
-
function
|
7397
|
+
}, yd = ["href", "title"], Cd = { key: 0 }, _d = ["onClick", "aria-label"], bd = { key: 1 };
|
7398
|
+
function kd(e, i, t, a, s, n) {
|
7390
7399
|
const u = It, d = be;
|
7391
7400
|
return l(), o("div", {
|
7392
7401
|
class: C(["cmd-slideshow", { "full-width": s.fullWidth }])
|
@@ -7421,7 +7430,7 @@ function bd(e, i, t, a, s, n) {
|
|
7421
7430
|
image: (I = n.currentItem) == null ? void 0 : I.image,
|
7422
7431
|
figcaption: (v = n.currentItem) == null ? void 0 : v.figcaption
|
7423
7432
|
}, null, 8, ["image", "figcaption"])
|
7424
|
-
], 8,
|
7433
|
+
], 8, yd)) : (l(), _(d, {
|
7425
7434
|
image: (T = n.currentItem) == null ? void 0 : T.image,
|
7426
7435
|
figcaption: (M = n.currentItem) == null ? void 0 : M.figcaption,
|
7427
7436
|
key: s.index
|
@@ -7435,7 +7444,7 @@ function bd(e, i, t, a, s, n) {
|
|
7435
7444
|
x(u, {
|
7436
7445
|
onClick: S(n.showNextItem, ["prevent"])
|
7437
7446
|
}, null, 8, ["onClick"]),
|
7438
|
-
t.showQuickLinkIcons ? (l(), o("ol",
|
7447
|
+
t.showQuickLinkIcons ? (l(), o("ol", Cd, [
|
7439
7448
|
(l(!0), o(b, null, B(t.slideshowItems, (r, c) => (l(), o("li", {
|
7440
7449
|
key: c,
|
7441
7450
|
class: C({ active: c === s.index })
|
@@ -7444,25 +7453,25 @@ function bd(e, i, t, a, s, n) {
|
|
7444
7453
|
href: "#",
|
7445
7454
|
onClick: S((h) => s.index = c, ["prevent"]),
|
7446
7455
|
"aria-label": s.index
|
7447
|
-
}, null, 8,
|
7456
|
+
}, null, 8, _d)
|
7448
7457
|
], 2))), 128))
|
7449
7458
|
])) : m("", !0),
|
7450
|
-
t.showCounter ? (l(), o("span",
|
7459
|
+
t.showCounter ? (l(), o("span", bd, g(s.index + 1) + "/" + g(t.slideshowItems.length), 1)) : m("", !0)
|
7451
7460
|
], 32)
|
7452
7461
|
], 2);
|
7453
7462
|
}
|
7454
|
-
const
|
7463
|
+
const cf = /* @__PURE__ */ L(pd, [["render", kd]]), vd = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSI4NTAuMzk0cHgiIGhlaWdodD0iNTY2LjkyOXB4IiB2aWV3Qm94PSIwIDAgODUwLjM5NCA1NjYuOTI5IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4NTAuMzk0IDU2Ni45MjkiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGcgaWQ9Iml0Ij4NCgk8Zz4NCgkJPHJlY3QgZmlsbD0iIzA3OEU0NiIgd2lkdGg9IjI4My40NjUiIGhlaWdodD0iNTY2LjkyOSIvPg0KCQk8cmVjdCB4PSIyODMuNDY1IiBmaWxsPSIjRkJGREZGIiB3aWR0aD0iMjgzLjQ2NSIgaGVpZ2h0PSI1NjYuOTI5Ii8+DQoJCTxyZWN0IHg9IjU2Ni45MyIgZmlsbD0iI0QzMjQyQyIgd2lkdGg9IjI4My40NjUiIGhlaWdodD0iNTY2LjkyOSIvPg0KCTwvZz4NCjwvZz4NCjxnIGlkPSJkZSI+DQoJPGc+DQoJCTxkZXNjPkZsYWcgb2YgR2VybWFueTwvZGVzYz4NCgkJPHJlY3QgaWQ9ImJsYWNrX3N0cmlwZSIgeD0iMC45MDEiIGZpbGw9IiMwMTAyMDIiIHdpZHRoPSI4NDkuNDkyIiBoZWlnaHQ9IjU2Ni45MjkiLz4NCgkJPHJlY3QgaWQ9InJlZF9zdHJpcGUiIHg9IjAuOTAxIiB5PSIxODguOTc3IiBmaWxsPSIjREQwQjE1IiB3aWR0aD0iODQ5LjQ5MiIgaGVpZ2h0PSIzNzcuOTUzIi8+DQoJCTxyZWN0IGlkPSJnb2xkX3N0cmlwZSIgeD0iMC45MDEiIHk9IjM3Ny45NTMiIGZpbGw9IiNGRkNFMDUiIHdpZHRoPSI4NDkuNDkyIiBoZWlnaHQ9IjE4OC45NzYiLz4NCgk8L2c+DQo8L2c+DQo8ZyBpZD0iZnIiIGRpc3BsYXk9Im5vbmUiPg0KCTxnIGRpc3BsYXk9ImlubGluZSI+DQoJCTxyZWN0IHg9IjAuOTAxIiBmaWxsPSIjQ0YxMzI3IiB3aWR0aD0iODQ5LjQ5MiIgaGVpZ2h0PSI1NjYuOTI5Ii8+DQoJCTxyZWN0IHg9IjAuOTAxIiBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iNTY2LjMyOCIgaGVpZ2h0PSI1NjYuOTI5Ii8+DQoJCTxyZWN0IHg9IjAuOTAxIiBmaWxsPSIjMUQyQzRFIiB3aWR0aD0iMjgzLjE2NCIgaGVpZ2h0PSI1NjYuOTI5Ii8+DQoJPC9nPg0KPC9nPg0KPGcgaWQ9InJ1IiBkaXNwbGF5PSJub25lIj4NCgk8ZyBkaXNwbGF5PSJpbmxpbmUiPg0KCQk8cmVjdCBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iODUwLjM5NSIgaGVpZ2h0PSIyODMuNDY1Ii8+DQoJCTxyZWN0IHk9IjI4My40NjUiIGZpbGw9IiNENTJEMUUiIHdpZHRoPSI4NTAuMzk1IiBoZWlnaHQ9IjI4My40NjQiLz4NCgkJPHJlY3QgeT0iMTg4Ljk3NyIgZmlsbD0iIzFFNDI5NSIgd2lkdGg9Ijg1MC4zOTUiIGhlaWdodD0iMTg4Ljk3NyIvPg0KCTwvZz4NCjwvZz4NCjxnIGlkPSJjbiIgZGlzcGxheT0ibm9uZSI+DQoJPGcgZGlzcGxheT0iaW5saW5lIj4NCgkJPHJlY3QgeD0iMC45MDEiIGZpbGw9IiNERjJCMTQiIHdpZHRoPSI4NDkuNDkzIiBoZWlnaHQ9IjU2Ni45MjkiLz4NCgkJPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNSw1KSBzY2FsZSgzKSI+DQoJCQk8cGF0aCBpZD0icyIgZmlsbD0iI0ZGREUwOCIgZD0iTTE0Mi40ODMsNTYuNjkzbDQ5LjkzMiwxNTMuODM4TDYxLjY5MiwxMTUuNDU0aDE2MS41ODNMOTIuNTUxLDIxMC41MzFMMTQyLjQ4Myw1Ni42OTN6Ii8+DQoJCTwvZz4NCgkJPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAsMikgcm90YXRlKDIzLjAzNjI0MykiPg0KCQkJPHBhdGggaWQ9InNfMV8iIGZpbGw9IiNGRkRFMDgiIGQ9Ik0yOTUuMTQ2LDMwLjYwN2wtNC43MjgsNTMuNzFsLTI3LjcxMS00Ni4yMzRsNDkuNTY2LDIxLjA5OWwtNTIuNDg4LDEyLjA5NkwyOTUuMTQ2LDMwLjYwN3oiLz4NCgkJPC9nPg0KCQk8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiw0KSByb3RhdGUoNDUuODY5ODk4KSI+DQoJCQk8cGF0aCBpZD0ic18yXyIgZmlsbD0iI0ZGREUwOCIgZD0iTTM2MS4wMjIsOTMuNjQ4bC0yNS4xNzgsNDcuNjY1bC03LjYxNy01My4zNzZsMzcuNTAzLDM4LjcwMWwtNTMuMDY0LTkuMjQzTDM2MS4wMjIsOTMuNjQ4eiIvPg0KCQk8L2c+DQoJCTxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyLDcpIHJvdGF0ZSg2OS45NDUzOTYpIj4NCgkJCTxwYXRoIGlkPSJzXzNfIiBmaWxsPSIjRkZERTA4IiBkPSJNMzY3LjI5OCwxODguNzA1bC00Mi40MTIsMzMuMjM2bDE0Ljc5Ny01MS44NDRsMTguNDcsNTAuNjQ5bC00NC42ODItMzAuMTA4TDM2Ny4yOTgsMTg4LjcwNXoiDQoJCQkJLz4NCgkJPC9nPg0KCQk8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMCw5KSByb3RhdGUoMjAuNjU5ODA4KSI+DQoJCQk8cGF0aCBpZD0ic180XyIgZmlsbD0iI0ZGREUwOCIgZD0iTTI5NC4wNTYsMjI4LjU5NWwtMi41LDUzLjg2bC0yOS42MDMtNDUuMDQ1bDUwLjM5NywxOS4wMjRsLTUxLjk0MiwxNC4yNjRMMjk0LjA1NiwyMjguNTk1eiIvPg0KCQk8L2c+DQoJPC9nPg0KPC9nPg0KPGcgaWQ9InVrIiBkaXNwbGF5PSJub25lIj4NCgk8ZyBkaXNwbGF5PSJpbmxpbmUiPg0KCQk8cmVjdCB5PSIwLjAwMiIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9Ijg1MC4xNiIgaGVpZ2h0PSI1NjYuODY1Ii8+DQoJCTxwb2x5Z29uIGZpbGw9IiNDRjE3MkMiIHBvaW50cz0iMzgyLjU2OSwwIDM4Mi41NjksMjI2LjYyNSAwLDIyNi42MjUgMCwzMzkuOTQ4IDM4Mi41NjksMzM5Ljk0OCAzODIuNTY5LDU2Ni44NjMgNDY3LjU5Miw1NjYuODYzIA0KCQkJNDY3LjU5MiwzMzkuOTQ4IDg1MC4xNiwzMzkuOTQ4IDg1MC4xNiwyMjYuNjI1IDQ2Ny41OTIsMjI2LjYyNSA0NjcuNTkyLDAgCQkiLz4NCgkJPHBvbHlnb24gZmlsbD0iIzI1MzQ2QyIgcG9pbnRzPSI0OTUuOTQ2LDAgNDk1Ljk0NiwxODMuNDk3IDc3MS4yMDIsMCAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjMjUzNDZDIiBwb2ludHM9IjQ5NS45NDYsNTY2Ljg2MyA3NzEuMjAyLDU2Ni44NjMgNDk1Ljk0NiwzODMuMzY4IAkJIi8+DQoJCTxwb2x5Z29uIGZpbGw9IiMyNTM0NkMiIHBvaW50cz0iNzguOTYsNTY2Ljg2MyAzNTQuMjE0LDU2Ni44NjMgMzU0LjIxNCwzODMuMzY4IAkJIi8+DQoJCTxwb2x5Z29uIGZpbGw9IiMyNTM0NkMiIHBvaW50cz0iNzguOTYsMCAzNTQuMjE0LDE4My40OTcgMzU0LjIxNCwwIAkJIi8+DQoJCTxwb2x5Z29uIGZpbGw9IiMyNTM0NkMiIHBvaW50cz0iMC4wMDMsMTg4Ljk1IDIwNC4zOTIsMTg4Ljk1IDAuMDAzLDUyLjY5OSAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjMjUzNDZDIiBwb2ludHM9IjY0NS43NjgsMTg4Ljk1IDg1MC4xNiwxODguOTUgODUwLjE2LDUyLjY5OSAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjMjUzNDZDIiBwb2ludHM9IjY0NS43NjgsMzc3LjkxMyA4NTAuMTYsNTE0LjE3MSA4NTAuMTYsMzc3LjkxMyAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjMjUzNDZDIiBwb2ludHM9IjAsMzc3LjkxMyAwLDUxNC4xNzEgMjA0LjM5MiwzNzcuOTEzIAkJIi8+DQoJCTxwb2x5Z29uIGZpbGw9IiNDRjE3MkMiIHBvaW50cz0iODAyLjkzOCwwIDUyMC4wMDQsMTg4Ljk1IDU2Ny4yMjMsMTg4Ljk1IDg1MC42MDUsMCAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjQ0YxNzJDIiBwb2ludHM9IjMzMC4xNTYsMzc3LjkwOSAyODIuOTM3LDM3Ny45MDkgMCw1NjYuODUyIDQ3LjIxOSw1NjYuODUyIDMzMC42MDIsMzc3LjkwOSAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjQ0YxNzJDIiBwb2ludHM9IjAsMCAwLDMxLjY5MiAyMzYuMDkxLDE4OS4wOTggMjgzLjMxMSwxODkuMDk4IAkJIi8+DQoJCTxwb2x5Z29uIGZpbGw9IiNDRjE3MkMiIHBvaW50cz0iNTY2LjY5NiwzNzcuODMyIDg1MC4wMDgsNTY2LjkyOSA4NTAuMDEsNTM1LjIzOSA2MTMuOTIsMzc3LjgzMiAJCSIvPg0KCTwvZz4NCjwvZz4NCjwvc3ZnPg0K", wd = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
7455
7464
|
__proto__: null,
|
7456
|
-
default:
|
7457
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
7465
|
+
default: vd
|
7466
|
+
}, Symbol.toStringTag, { value: "Module" })), Id = "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSI4NTAuMzk0cHgiIGhlaWdodD0iNTY2LjkyOXB4IiB2aWV3Qm94PSIwIDAgODUwLjM5NCA1NjYuOTI5IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4NTAuMzk0IDU2Ni45MjkiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGcgaWQ9Iml0Ij4NCgk8Zz4NCgkJPHJlY3QgZmlsbD0iIzA3OEU0NiIgd2lkdGg9IjI4My40NjUiIGhlaWdodD0iNTY2LjkyOSIvPg0KCQk8cmVjdCB4PSIyODMuNDY1IiBmaWxsPSIjRkJGREZGIiB3aWR0aD0iMjgzLjQ2NSIgaGVpZ2h0PSI1NjYuOTI5Ii8+DQoJCTxyZWN0IHg9IjU2Ni45MyIgZmlsbD0iI0QzMjQyQyIgd2lkdGg9IjI4My40NjUiIGhlaWdodD0iNTY2LjkyOSIvPg0KCTwvZz4NCjwvZz4NCjxnIGlkPSJkZSI+DQoJPGc+DQoJCTxkZXNjPkZsYWcgb2YgR2VybWFueTwvZGVzYz4NCgkJPHJlY3QgaWQ9ImJsYWNrX3N0cmlwZSIgeD0iMC45MDEiIGZpbGw9IiMwMTAyMDIiIHdpZHRoPSI4NDkuNDkyIiBoZWlnaHQ9IjU2Ni45MjkiLz4NCgkJPHJlY3QgaWQ9InJlZF9zdHJpcGUiIHg9IjAuOTAxIiB5PSIxODguOTc3IiBmaWxsPSIjREQwQjE1IiB3aWR0aD0iODQ5LjQ5MiIgaGVpZ2h0PSIzNzcuOTUzIi8+DQoJCTxyZWN0IGlkPSJnb2xkX3N0cmlwZSIgeD0iMC45MDEiIHk9IjM3Ny45NTMiIGZpbGw9IiNGRkNFMDUiIHdpZHRoPSI4NDkuNDkyIiBoZWlnaHQ9IjE4OC45NzYiLz4NCgk8L2c+DQo8L2c+DQo8ZyBpZD0iZnIiPg0KCTxnPg0KCQk8cmVjdCB4PSIwLjkwMSIgZmlsbD0iI0NGMTMyNyIgd2lkdGg9Ijg0OS40OTIiIGhlaWdodD0iNTY2LjkyOSIvPg0KCQk8cmVjdCB4PSIwLjkwMSIgZmlsbD0iI0ZGRkZGRiIgd2lkdGg9IjU2Ni4zMjgiIGhlaWdodD0iNTY2LjkyOSIvPg0KCQk8cmVjdCB4PSIwLjkwMSIgZmlsbD0iIzFEMkM0RSIgd2lkdGg9IjI4My4xNjQiIGhlaWdodD0iNTY2LjkyOSIvPg0KCTwvZz4NCjwvZz4NCjxnIGlkPSJydSI+DQoJPGc+DQoJCTxyZWN0IGZpbGw9IiNGRkZGRkYiIHdpZHRoPSI4NTAuMzk1IiBoZWlnaHQ9IjI4My40NjUiLz4NCgkJPHJlY3QgeT0iMjgzLjQ2NSIgZmlsbD0iI0Q1MkQxRSIgd2lkdGg9Ijg1MC4zOTUiIGhlaWdodD0iMjgzLjQ2NCIvPg0KCQk8cmVjdCB5PSIxODguOTc3IiBmaWxsPSIjMUU0Mjk1IiB3aWR0aD0iODUwLjM5NSIgaGVpZ2h0PSIxODguOTc3Ii8+DQoJPC9nPg0KPC9nPg0KPGcgaWQ9ImNuIj4NCgk8Zz4NCgkJPHJlY3QgeD0iMC45MDEiIGZpbGw9IiNERjJCMTQiIHdpZHRoPSI4NDkuNDkzIiBoZWlnaHQ9IjU2Ni45MjkiLz4NCgkJPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNSw1KSBzY2FsZSgzKSI+DQoJCQk8cGF0aCBpZD0icyIgZmlsbD0iI0ZGREUwOCIgZD0iTTE0Mi40ODMsNTYuNjkzbDQ5LjkzMiwxNTMuODM4TDYxLjY5MiwxMTUuNDU0aDE2MS41ODNMOTIuNTUxLDIxMC41MzFMMTQyLjQ4Myw1Ni42OTN6Ii8+DQoJCTwvZz4NCgkJPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAsMikgcm90YXRlKDIzLjAzNjI0MykiPg0KCQkJPHBhdGggaWQ9InNfMV8iIGZpbGw9IiNGRkRFMDgiIGQ9Ik0yOTUuMTQ2LDMwLjYwN2wtNC43MjgsNTMuNzFsLTI3LjcxMS00Ni4yMzRsNDkuNTY2LDIxLjA5OWwtNTIuNDg4LDEyLjA5NkwyOTUuMTQ2LDMwLjYwN3oiLz4NCgkJPC9nPg0KCQk8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiw0KSByb3RhdGUoNDUuODY5ODk4KSI+DQoJCQk8cGF0aCBpZD0ic18yXyIgZmlsbD0iI0ZGREUwOCIgZD0iTTM2MS4wMjIsOTMuNjQ4bC0yNS4xNzgsNDcuNjY1bC03LjYxNy01My4zNzZsMzcuNTAzLDM4LjcwMWwtNTMuMDY0LTkuMjQzTDM2MS4wMjIsOTMuNjQ4eiIvPg0KCQk8L2c+DQoJCTxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEyLDcpIHJvdGF0ZSg2OS45NDUzOTYpIj4NCgkJCTxwYXRoIGlkPSJzXzNfIiBmaWxsPSIjRkZERTA4IiBkPSJNMzY3LjI5OCwxODguNzA1bC00Mi40MTIsMzMuMjM2bDE0Ljc5Ny01MS44NDRsMTguNDcsNTAuNjQ5bC00NC42ODItMzAuMTA4TDM2Ny4yOTgsMTg4LjcwNXoiDQoJCQkJLz4NCgkJPC9nPg0KCQk8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMCw5KSByb3RhdGUoMjAuNjU5ODA4KSI+DQoJCQk8cGF0aCBpZD0ic180XyIgZmlsbD0iI0ZGREUwOCIgZD0iTTI5NC4wNTYsMjI4LjU5NWwtMi41LDUzLjg2bC0yOS42MDMtNDUuMDQ1bDUwLjM5NywxOS4wMjRsLTUxLjk0MiwxNC4yNjRMMjk0LjA1NiwyMjguNTk1eiIvPg0KCQk8L2c+DQoJPC9nPg0KPC9nPg0KPGcgaWQ9InVrIj4NCgk8Zz4NCgkJPHJlY3QgeT0iMC4wMDIiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSI4NTAuMTYiIGhlaWdodD0iNTY2Ljg2NSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjQ0YxNzJDIiBwb2ludHM9IjM4Mi41NjksMCAzODIuNTY5LDIyNi42MjUgMCwyMjYuNjI1IDAsMzM5Ljk0OCAzODIuNTY5LDMzOS45NDggMzgyLjU2OSw1NjYuODYzIDQ2Ny41OTIsNTY2Ljg2MyANCgkJCTQ2Ny41OTIsMzM5Ljk0OCA4NTAuMTYsMzM5Ljk0OCA4NTAuMTYsMjI2LjYyNSA0NjcuNTkyLDIyNi42MjUgNDY3LjU5MiwwIAkJIi8+DQoJCTxwb2x5Z29uIGZpbGw9IiMyNTM0NkMiIHBvaW50cz0iNDk1Ljk0NiwwIDQ5NS45NDYsMTgzLjQ5NyA3NzEuMjAyLDAgCQkiLz4NCgkJPHBvbHlnb24gZmlsbD0iIzI1MzQ2QyIgcG9pbnRzPSI0OTUuOTQ2LDU2Ni44NjMgNzcxLjIwMiw1NjYuODYzIDQ5NS45NDYsMzgzLjM2OCAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjMjUzNDZDIiBwb2ludHM9Ijc4Ljk2LDU2Ni44NjMgMzU0LjIxNCw1NjYuODYzIDM1NC4yMTQsMzgzLjM2OCAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjMjUzNDZDIiBwb2ludHM9Ijc4Ljk2LDAgMzU0LjIxNCwxODMuNDk3IDM1NC4yMTQsMCAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjMjUzNDZDIiBwb2ludHM9IjAuMDAzLDE4OC45NSAyMDQuMzkyLDE4OC45NSAwLjAwMyw1Mi42OTkgCQkiLz4NCgkJPHBvbHlnb24gZmlsbD0iIzI1MzQ2QyIgcG9pbnRzPSI2NDUuNzY4LDE4OC45NSA4NTAuMTYsMTg4Ljk1IDg1MC4xNiw1Mi42OTkgCQkiLz4NCgkJPHBvbHlnb24gZmlsbD0iIzI1MzQ2QyIgcG9pbnRzPSI2NDUuNzY4LDM3Ny45MTMgODUwLjE2LDUxNC4xNzEgODUwLjE2LDM3Ny45MTMgCQkiLz4NCgkJPHBvbHlnb24gZmlsbD0iIzI1MzQ2QyIgcG9pbnRzPSIwLDM3Ny45MTMgMCw1MTQuMTcxIDIwNC4zOTIsMzc3LjkxMyAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjQ0YxNzJDIiBwb2ludHM9IjgwMi45MzgsMCA1MjAuMDA0LDE4OC45NSA1NjcuMjIzLDE4OC45NSA4NTAuNjA1LDAgCQkiLz4NCgkJPHBvbHlnb24gZmlsbD0iI0NGMTcyQyIgcG9pbnRzPSIzMzAuMTU2LDM3Ny45MDkgMjgyLjkzNywzNzcuOTA5IDAsNTY2Ljg1MiA0Ny4yMTksNTY2Ljg1MiAzMzAuNjAyLDM3Ny45MDkgCQkiLz4NCgkJPHBvbHlnb24gZmlsbD0iI0NGMTcyQyIgcG9pbnRzPSIwLDAgMCwzMS42OTIgMjM2LjA5MSwxODkuMDk4IDI4My4zMTEsMTg5LjA5OCAJCSIvPg0KCQk8cG9seWdvbiBmaWxsPSIjQ0YxNzJDIiBwb2ludHM9IjU2Ni42OTYsMzc3LjgzMiA4NTAuMDA4LDU2Ni45MjkgODUwLjAxLDUzNS4yMzkgNjEzLjkyLDM3Ny44MzIgCQkiLz4NCgk8L2c+DQo8L2c+DQo8L3N2Zz4NCg==", xd = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
7458
7467
|
__proto__: null,
|
7459
|
-
default:
|
7460
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
7468
|
+
default: Id
|
7469
|
+
}, Symbol.toStringTag, { value: "Module" })), Td = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
7461
7470
|
__proto__: null,
|
7462
|
-
de:
|
7463
|
-
en:
|
7471
|
+
de: wd,
|
7472
|
+
en: xd
|
7464
7473
|
}, Symbol.toStringTag, { value: "Module" }));
|
7465
|
-
const
|
7474
|
+
const Sd = {
|
7466
7475
|
name: "CmdSwitchLanguage",
|
7467
7476
|
emits: ["click"],
|
7468
7477
|
data() {
|
@@ -7490,7 +7499,7 @@ const Td = {
|
|
7490
7499
|
this.imageSources = [], this.languages.forEach(
|
7491
7500
|
async (e) => {
|
7492
7501
|
const i = e.iso2;
|
7493
|
-
this.imageSources.push(
|
7502
|
+
this.imageSources.push(Td[i].default);
|
7494
7503
|
}
|
7495
7504
|
);
|
7496
7505
|
},
|
@@ -7498,10 +7507,10 @@ const Td = {
|
|
7498
7507
|
deep: !0
|
7499
7508
|
}
|
7500
7509
|
}
|
7501
|
-
},
|
7502
|
-
function
|
7510
|
+
}, Md = { class: "cmd-switch-language" }, Od = ["href", "title", "onClick"], Ld = ["src", "alt"], Dd = ["src", "alt"];
|
7511
|
+
function Nd(e, i, t, a, s, n) {
|
7503
7512
|
const u = K("router-link");
|
7504
|
-
return l(), o("div",
|
7513
|
+
return l(), o("div", Md, [
|
7505
7514
|
f("ul", null, [
|
7506
7515
|
(l(!0), o(b, null, B(t.languages, (d, r) => (l(), o("li", { key: r }, [
|
7507
7516
|
d.link.type === "href" ? (l(), o("a", {
|
@@ -7514,8 +7523,8 @@ function Dd(e, i, t, a, s, n) {
|
|
7514
7523
|
f("img", {
|
7515
7524
|
src: s.imageSources[r],
|
7516
7525
|
alt: d.name
|
7517
|
-
}, null, 8,
|
7518
|
-
], 10,
|
7526
|
+
}, null, 8, Ld)
|
7527
|
+
], 10, Od)) : (l(), _(u, {
|
7519
7528
|
key: 1,
|
7520
7529
|
class: C(["flag", d.iso2]),
|
7521
7530
|
to: n.getRoute(d),
|
@@ -7526,7 +7535,7 @@ function Dd(e, i, t, a, s, n) {
|
|
7526
7535
|
f("img", {
|
7527
7536
|
src: s.imageSources[r],
|
7528
7537
|
alt: d.name
|
7529
|
-
}, null, 8,
|
7538
|
+
}, null, 8, Dd)
|
7530
7539
|
]),
|
7531
7540
|
_: 2
|
7532
7541
|
}, 1032, ["class", "to", "title", "onClick"]))
|
@@ -7534,8 +7543,8 @@ function Dd(e, i, t, a, s, n) {
|
|
7534
7543
|
])
|
7535
7544
|
]);
|
7536
7545
|
}
|
7537
|
-
const
|
7538
|
-
const
|
7546
|
+
const uf = /* @__PURE__ */ L(Sd, [["render", Nd]]);
|
7547
|
+
const jd = {
|
7539
7548
|
name: "CmdSystemMessage",
|
7540
7549
|
mixins: [_e],
|
7541
7550
|
data() {
|
@@ -7596,8 +7605,8 @@ const Nd = {
|
|
7596
7605
|
this.showSystemMessage = !0;
|
7597
7606
|
}
|
7598
7607
|
}
|
7599
|
-
},
|
7600
|
-
function
|
7608
|
+
}, Bd = ["role", "aria-labelledby"], Pd = ["title"];
|
7609
|
+
function Fd(e, i, t, a, s, n) {
|
7601
7610
|
const u = z, d = E;
|
7602
7611
|
return l(), _(se, { name: "fade" }, {
|
7603
7612
|
default: j(() => [
|
@@ -7617,7 +7626,7 @@ function Pd(e, i, t, a, s, n) {
|
|
7617
7626
|
iconClass: t.iconClose.iconClass,
|
7618
7627
|
type: t.iconClose.iconType
|
7619
7628
|
}, null, 8, ["iconClass", "type"])
|
7620
|
-
], 8,
|
7629
|
+
], 8, Pd)) : m("", !0),
|
7621
7630
|
x(d, {
|
7622
7631
|
class: "message-headline",
|
7623
7632
|
headlineIcon: n.headlineIcon,
|
@@ -7626,13 +7635,13 @@ function Pd(e, i, t, a, s, n) {
|
|
7626
7635
|
id: e.htmlId
|
7627
7636
|
}, null, 8, ["headlineIcon", "headlineText", "headlineLevel", "id"]),
|
7628
7637
|
H(e.$slots, "default")
|
7629
|
-
], 10,
|
7638
|
+
], 10, Bd)) : m("", !0)
|
7630
7639
|
]),
|
7631
7640
|
_: 3
|
7632
7641
|
});
|
7633
7642
|
}
|
7634
|
-
const
|
7635
|
-
const
|
7643
|
+
const Ad = /* @__PURE__ */ L(jd, [["render", Fd]]);
|
7644
|
+
const Hd = {
|
7636
7645
|
name: "CmdTable",
|
7637
7646
|
data() {
|
7638
7647
|
return {
|
@@ -7708,20 +7717,20 @@ const Ad = {
|
|
7708
7717
|
return ((e = this.caption) == null ? void 0 : e.show) === !1 || ((i = this.caption) == null ? void 0 : i.show) !== !0 && !((t = this.tableData.caption) != null && t.show);
|
7709
7718
|
}
|
7710
7719
|
}
|
7711
|
-
},
|
7720
|
+
}, zd = {
|
7712
7721
|
key: 0,
|
7713
7722
|
class: "button-wrapper"
|
7714
|
-
},
|
7723
|
+
}, qd = ["title"], Rd = ["title"], Vd = { class: "inner-wrapper" }, Ed = { "aria-expanded": "true" }, Ud = {
|
7715
7724
|
key: 0,
|
7716
7725
|
"aria-expanded": "true"
|
7717
7726
|
};
|
7718
|
-
function
|
7727
|
+
function Gd(e, i, t, a, s, n) {
|
7719
7728
|
var d, r, c, h;
|
7720
7729
|
const u = z;
|
7721
7730
|
return l(), o("div", {
|
7722
7731
|
class: C(["cmd-table-wrapper", { collapsed: !s.showTableData, "full-width": s.fullWidth, "has-caption": n.hasCaption }])
|
7723
7732
|
}, [
|
7724
|
-
t.collapsible || t.userCanToggleWidth ? (l(), o("div",
|
7733
|
+
t.collapsible || t.userCanToggleWidth ? (l(), o("div", zd, [
|
7725
7734
|
t.userCanToggleWidth ? (l(), o("a", {
|
7726
7735
|
key: 0,
|
7727
7736
|
class: "button",
|
@@ -7733,7 +7742,7 @@ function Ud(e, i, t, a, s, n) {
|
|
7733
7742
|
iconClass: t.iconToggleWidth.iconClass,
|
7734
7743
|
type: t.iconToggleWidth.iconType
|
7735
7744
|
}, null, 8, ["iconClass", "type"])
|
7736
|
-
], 8,
|
7745
|
+
], 8, qd)) : m("", !0),
|
7737
7746
|
t.collapsible ? (l(), o("a", {
|
7738
7747
|
key: 1,
|
7739
7748
|
class: "button",
|
@@ -7745,9 +7754,9 @@ function Ud(e, i, t, a, s, n) {
|
|
7745
7754
|
iconClass: s.showTableData ? t.iconCollapse.iconClass : t.iconExpand.iconClass,
|
7746
7755
|
type: s.showTableData ? t.iconCollapse.iconType : t.iconExpand.iconType
|
7747
7756
|
}, null, 8, ["iconClass", "type"])
|
7748
|
-
], 8,
|
7757
|
+
], 8, Rd)) : m("", !0)
|
7749
7758
|
])) : m("", !0),
|
7750
|
-
f("div",
|
7759
|
+
f("div", Vd, [
|
7751
7760
|
f("table", {
|
7752
7761
|
class: C({ "full-width": s.fullWidth })
|
7753
7762
|
}, [
|
@@ -7762,7 +7771,7 @@ function Ud(e, i, t, a, s, n) {
|
|
7762
7771
|
]),
|
7763
7772
|
x(se, { name: "fade" }, {
|
7764
7773
|
default: j(() => [
|
7765
|
-
$(f("tbody",
|
7774
|
+
$(f("tbody", Ed, [
|
7766
7775
|
(l(!0), o(b, null, B(t.tableData.tbody, (p, k) => (l(), o("tr", {
|
7767
7776
|
class: C({ active: t.tableData.rowIndexHighlighted === k }),
|
7768
7777
|
key: k
|
@@ -7780,7 +7789,7 @@ function Ud(e, i, t, a, s, n) {
|
|
7780
7789
|
}),
|
7781
7790
|
x(se, { name: "fade" }, {
|
7782
7791
|
default: j(() => [
|
7783
|
-
t.tableData.tfoot && t.tableData.tfoot.length && s.showTableData ? (l(), o("tfoot",
|
7792
|
+
t.tableData.tfoot && t.tableData.tfoot.length && s.showTableData ? (l(), o("tfoot", Ud, [
|
7784
7793
|
f("tr", null, [
|
7785
7794
|
(l(!0), o(b, null, B(t.tableData.tfoot, (p, k) => (l(), o("td", {
|
7786
7795
|
class: C({ active: t.tableData.columnIndexHighlighted === k }),
|
@@ -7795,7 +7804,7 @@ function Ud(e, i, t, a, s, n) {
|
|
7795
7804
|
])
|
7796
7805
|
], 2);
|
7797
7806
|
}
|
7798
|
-
const
|
7807
|
+
const df = /* @__PURE__ */ L(Hd, [["render", Gd]]), Qd = "cmd", Wd = {
|
7799
7808
|
"3d-cursor": {
|
7800
7809
|
body: '<path d="M13 4H4v9.01h2V6h7V4z" fill="currentColor"/><path d="M29.49 13.12l-9-5a1 1 0 0 0-1 0l-9 5A1 1 0 0 0 10 14v10a1 1 0 0 0 .52.87l9 5A1 1 0 0 0 20 30a1.05 1.05 0 0 0 .49-.13l9-5A1 1 0 0 0 30 24V14a1 1 0 0 0-.51-.88zM19 27.3l-7-3.89v-7.72l7 3.89zm1-9.45L13.06 14L20 10.14L26.94 14zm8 5.56l-7 3.89v-7.72l7-3.89z" fill="currentColor"/>',
|
7801
7810
|
hidden: !0
|
@@ -7809,14 +7818,14 @@ const uf = /* @__PURE__ */ L(Ad, [["render", Ud]]), Gd = "cmd", Qd = {
|
|
7809
7818
|
<path fill="currentColor" d="M2,12h6v18H2V12z"/>
|
7810
7819
|
<path fill="currentColor" d="M8,7c0,1.657-1.343,3-3,3S2,8.657,2,7s1.343-3,3-3S8,5.343,8,7z"/>`
|
7811
7820
|
}
|
7812
|
-
},
|
7813
|
-
prefix:
|
7814
|
-
icons:
|
7815
|
-
width:
|
7816
|
-
height:
|
7821
|
+
}, Zd = 32, Jd = 32, Yd = {
|
7822
|
+
prefix: Qd,
|
7823
|
+
icons: Wd,
|
7824
|
+
width: Zd,
|
7825
|
+
height: Jd
|
7817
7826
|
};
|
7818
|
-
Ai(
|
7819
|
-
const
|
7827
|
+
Ai(Yd);
|
7828
|
+
const Kd = {
|
7820
7829
|
name: "CmdTabs",
|
7821
7830
|
data() {
|
7822
7831
|
return {
|
@@ -7856,35 +7865,35 @@ const Yd = {
|
|
7856
7865
|
this.showTab = this.activeTab;
|
7857
7866
|
}
|
7858
7867
|
}
|
7859
|
-
},
|
7868
|
+
}, Xd = { class: "cmd-tabs" }, $d = ["onClick", "title"], em = { key: 1 }, tm = {
|
7860
7869
|
key: 1,
|
7861
7870
|
"aria-live": "assertive"
|
7862
|
-
},
|
7863
|
-
function
|
7871
|
+
}, im = ["innerHTML"];
|
7872
|
+
function nm(e, i, t, a, s, n) {
|
7864
7873
|
const u = z, d = E;
|
7865
|
-
return l(), o("div",
|
7874
|
+
return l(), o("div", Xd, [
|
7866
7875
|
f("ul", {
|
7867
7876
|
class: C({ "stretch-tabs": t.stretchTabs }),
|
7868
7877
|
role: "tablist"
|
7869
7878
|
}, [
|
7870
7879
|
(l(!0), o(b, null, B(t.tabs, (r, c) => (l(), o("li", {
|
7880
|
+
class: C({ active: s.showTab === c }),
|
7871
7881
|
key: c,
|
7872
7882
|
role: "tab"
|
7873
7883
|
}, [
|
7874
7884
|
f("a", {
|
7875
|
-
|
7885
|
+
href: "#",
|
7876
7886
|
onClick: S((h) => n.setActiveTab(c), ["prevent"]),
|
7877
|
-
title: r.name ? void 0 : r.tooltip
|
7878
|
-
href: "#"
|
7887
|
+
title: r.name ? void 0 : r.tooltip
|
7879
7888
|
}, [
|
7880
7889
|
r.iconClass ? (l(), _(u, {
|
7881
7890
|
key: 0,
|
7882
7891
|
iconClass: r.iconClass,
|
7883
7892
|
type: r.iconType
|
7884
7893
|
}, null, 8, ["iconClass", "type"])) : m("", !0),
|
7885
|
-
r.name ? (l(), o("span",
|
7886
|
-
],
|
7887
|
-
]))), 128))
|
7894
|
+
r.name ? (l(), o("span", em, g(r.name), 1)) : m("", !0)
|
7895
|
+
], 8, $d)
|
7896
|
+
], 2))), 128))
|
7888
7897
|
], 2),
|
7889
7898
|
t.useSlot ? (l(!0), o(b, { key: 0 }, B(t.tabs.length, (r) => $((l(), o("div", {
|
7890
7899
|
key: r,
|
@@ -7893,18 +7902,18 @@ function im(e, i, t, a, s, n) {
|
|
7893
7902
|
H(e.$slots, "tab-content-" + (r - 1))
|
7894
7903
|
])), [
|
7895
7904
|
[me, s.showTab === r - 1]
|
7896
|
-
])), 128)) : (l(), o("div",
|
7905
|
+
])), 128)) : (l(), o("div", tm, [
|
7897
7906
|
t.cmdHeadline ? (l(), _(d, F({ key: 0 }, t.cmdHeadline, {
|
7898
7907
|
headlineText: t.tabs[s.showTab].headlineText,
|
7899
7908
|
headlineLevel: t.tabs[s.showTab].headlineLevel
|
7900
7909
|
}), null, 16, ["headlineText", "headlineLevel"])) : m("", !0),
|
7901
7910
|
f("div", {
|
7902
7911
|
innerHTML: t.tabs[s.showTab].htmlContent
|
7903
|
-
}, null, 8,
|
7912
|
+
}, null, 8, im)
|
7904
7913
|
]))
|
7905
7914
|
]);
|
7906
7915
|
}
|
7907
|
-
const
|
7916
|
+
const mf = /* @__PURE__ */ L(Kd, [["render", nm]]), sm = {
|
7908
7917
|
name: "CmdTextBlock",
|
7909
7918
|
provide() {
|
7910
7919
|
return {
|
@@ -7952,11 +7961,11 @@ const df = /* @__PURE__ */ L(Yd, [["render", im]]), nm = {
|
|
7952
7961
|
};
|
7953
7962
|
}
|
7954
7963
|
}
|
7955
|
-
},
|
7956
|
-
function
|
7964
|
+
}, lm = { class: "cmd-text-block flex-container vertical" }, om = ["innerHTML"];
|
7965
|
+
function am(e, i, t, a, s, n) {
|
7957
7966
|
var d;
|
7958
7967
|
const u = E;
|
7959
|
-
return l(), o("div",
|
7968
|
+
return l(), o("div", lm, [
|
7960
7969
|
t.cmdHeadline ? (l(), _(u, {
|
7961
7970
|
key: 0,
|
7962
7971
|
headlineText: t.cmdHeadline.headlineText,
|
@@ -7971,11 +7980,11 @@ function om(e, i, t, a, s, n) {
|
|
7971
7980
|
]) : t.htmlContent ? (l(), o("div", {
|
7972
7981
|
key: 2,
|
7973
7982
|
innerHTML: t.htmlContent
|
7974
|
-
}, null, 8,
|
7983
|
+
}, null, 8, om)) : m("", !0)
|
7975
7984
|
]);
|
7976
7985
|
}
|
7977
|
-
const
|
7978
|
-
const
|
7986
|
+
const hf = /* @__PURE__ */ L(sm, [["render", am]]);
|
7987
|
+
const rm = {
|
7979
7988
|
name: "ToggleDarkMode",
|
7980
7989
|
data() {
|
7981
7990
|
return {
|
@@ -8064,8 +8073,8 @@ const am = {
|
|
8064
8073
|
immediate: !0
|
8065
8074
|
}
|
8066
8075
|
}
|
8067
|
-
},
|
8068
|
-
function
|
8076
|
+
}, cm = { key: 0 };
|
8077
|
+
function um(e, i, t, a, s, n) {
|
8069
8078
|
const u = z, d = ae;
|
8070
8079
|
return l(), o("div", {
|
8071
8080
|
class: C(["cmd-toggle-dark-mode", { "styled-layout": t.useStyledLayout, "dark-mode": s.darkMode }])
|
@@ -8076,7 +8085,7 @@ function cm(e, i, t, a, s, n) {
|
|
8076
8085
|
class: C(["button", { "dark-mode": s.darkMode }]),
|
8077
8086
|
onClick: i[0] || (i[0] = S((...r) => n.toggleColorScheme && n.toggleColorScheme(...r), ["prevent"]))
|
8078
8087
|
}, [
|
8079
|
-
t.showLabel ? (l(), o("span",
|
8088
|
+
t.showLabel ? (l(), o("span", cm, g(n.labelText), 1)) : m("", !0),
|
8080
8089
|
x(u, {
|
8081
8090
|
iconClass: n.iconClass,
|
8082
8091
|
type: n.iconType,
|
@@ -8098,7 +8107,7 @@ function cm(e, i, t, a, s, n) {
|
|
8098
8107
|
}, null, 8, ["labelText", "showLabel", "modelValue", "title", "onUpdate:modelValue"]))
|
8099
8108
|
], 2);
|
8100
8109
|
}
|
8101
|
-
const
|
8110
|
+
const ff = /* @__PURE__ */ L(rm, [["render", um]]), dm = {
|
8102
8111
|
data() {
|
8103
8112
|
return {
|
8104
8113
|
defaultMessageProperties: {
|
@@ -8151,7 +8160,7 @@ const hf = /* @__PURE__ */ L(am, [["render", cm]]), um = {
|
|
8151
8160
|
};
|
8152
8161
|
}
|
8153
8162
|
};
|
8154
|
-
function
|
8163
|
+
function mm(e) {
|
8155
8164
|
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
8156
8165
|
}
|
8157
8166
|
var Xi = { exports: {} }, Mt = { exports: {} }, $i = function(i, t) {
|
@@ -8160,30 +8169,30 @@ var Xi = { exports: {} }, Mt = { exports: {} }, $i = function(i, t) {
|
|
8160
8169
|
s[n] = arguments[n];
|
8161
8170
|
return i.apply(t, s);
|
8162
8171
|
};
|
8163
|
-
},
|
8172
|
+
}, hm = $i, re = Object.prototype.toString;
|
8164
8173
|
function Ot(e) {
|
8165
8174
|
return re.call(e) === "[object Array]";
|
8166
8175
|
}
|
8167
8176
|
function mt(e) {
|
8168
8177
|
return typeof e > "u";
|
8169
8178
|
}
|
8170
|
-
function
|
8179
|
+
function fm(e) {
|
8171
8180
|
return e !== null && !mt(e) && e.constructor !== null && !mt(e.constructor) && typeof e.constructor.isBuffer == "function" && e.constructor.isBuffer(e);
|
8172
8181
|
}
|
8173
|
-
function
|
8182
|
+
function gm(e) {
|
8174
8183
|
return re.call(e) === "[object ArrayBuffer]";
|
8175
8184
|
}
|
8176
|
-
function
|
8185
|
+
function pm(e) {
|
8177
8186
|
return typeof FormData < "u" && e instanceof FormData;
|
8178
8187
|
}
|
8179
|
-
function
|
8188
|
+
function ym(e) {
|
8180
8189
|
var i;
|
8181
8190
|
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? i = ArrayBuffer.isView(e) : i = e && e.buffer && e.buffer instanceof ArrayBuffer, i;
|
8182
8191
|
}
|
8183
|
-
function
|
8192
|
+
function Cm(e) {
|
8184
8193
|
return typeof e == "string";
|
8185
8194
|
}
|
8186
|
-
function
|
8195
|
+
function _m(e) {
|
8187
8196
|
return typeof e == "number";
|
8188
8197
|
}
|
8189
8198
|
function en(e) {
|
@@ -8195,28 +8204,28 @@ function Se(e) {
|
|
8195
8204
|
var i = Object.getPrototypeOf(e);
|
8196
8205
|
return i === null || i === Object.prototype;
|
8197
8206
|
}
|
8198
|
-
function
|
8207
|
+
function bm(e) {
|
8199
8208
|
return re.call(e) === "[object Date]";
|
8200
8209
|
}
|
8201
|
-
function
|
8210
|
+
function km(e) {
|
8202
8211
|
return re.call(e) === "[object File]";
|
8203
8212
|
}
|
8204
|
-
function
|
8213
|
+
function vm(e) {
|
8205
8214
|
return re.call(e) === "[object Blob]";
|
8206
8215
|
}
|
8207
8216
|
function tn(e) {
|
8208
8217
|
return re.call(e) === "[object Function]";
|
8209
8218
|
}
|
8210
|
-
function
|
8219
|
+
function wm(e) {
|
8211
8220
|
return en(e) && tn(e.pipe);
|
8212
8221
|
}
|
8213
|
-
function
|
8222
|
+
function Im(e) {
|
8214
8223
|
return typeof URLSearchParams < "u" && e instanceof URLSearchParams;
|
8215
8224
|
}
|
8216
|
-
function
|
8225
|
+
function xm(e) {
|
8217
8226
|
return e.trim ? e.trim() : e.replace(/^\s+|\s+$/g, "");
|
8218
8227
|
}
|
8219
|
-
function
|
8228
|
+
function Tm() {
|
8220
8229
|
return typeof navigator < "u" && (navigator.product === "ReactNative" || navigator.product === "NativeScript" || navigator.product === "NS") ? !1 : typeof window < "u" && typeof document < "u";
|
8221
8230
|
}
|
8222
8231
|
function Lt(e, i) {
|
@@ -8237,37 +8246,37 @@ function ht() {
|
|
8237
8246
|
Lt(arguments[t], i);
|
8238
8247
|
return e;
|
8239
8248
|
}
|
8240
|
-
function
|
8249
|
+
function Sm(e, i, t) {
|
8241
8250
|
return Lt(i, function(s, n) {
|
8242
|
-
t && typeof s == "function" ? e[n] =
|
8251
|
+
t && typeof s == "function" ? e[n] = hm(s, t) : e[n] = s;
|
8243
8252
|
}), e;
|
8244
8253
|
}
|
8245
|
-
function
|
8254
|
+
function Mm(e) {
|
8246
8255
|
return e.charCodeAt(0) === 65279 && (e = e.slice(1)), e;
|
8247
8256
|
}
|
8248
8257
|
var J = {
|
8249
8258
|
isArray: Ot,
|
8250
|
-
isArrayBuffer:
|
8251
|
-
isBuffer:
|
8252
|
-
isFormData:
|
8253
|
-
isArrayBufferView:
|
8254
|
-
isString:
|
8255
|
-
isNumber:
|
8259
|
+
isArrayBuffer: gm,
|
8260
|
+
isBuffer: fm,
|
8261
|
+
isFormData: pm,
|
8262
|
+
isArrayBufferView: ym,
|
8263
|
+
isString: Cm,
|
8264
|
+
isNumber: _m,
|
8256
8265
|
isObject: en,
|
8257
8266
|
isPlainObject: Se,
|
8258
8267
|
isUndefined: mt,
|
8259
|
-
isDate:
|
8260
|
-
isFile:
|
8261
|
-
isBlob:
|
8268
|
+
isDate: bm,
|
8269
|
+
isFile: km,
|
8270
|
+
isBlob: vm,
|
8262
8271
|
isFunction: tn,
|
8263
|
-
isStream:
|
8264
|
-
isURLSearchParams:
|
8265
|
-
isStandardBrowserEnv:
|
8272
|
+
isStream: wm,
|
8273
|
+
isURLSearchParams: Im,
|
8274
|
+
isStandardBrowserEnv: Tm,
|
8266
8275
|
forEach: Lt,
|
8267
8276
|
merge: ht,
|
8268
|
-
extend:
|
8269
|
-
trim:
|
8270
|
-
stripBOM:
|
8277
|
+
extend: Sm,
|
8278
|
+
trim: xm,
|
8279
|
+
stripBOM: Mm
|
8271
8280
|
}, ue = J;
|
8272
8281
|
function ai(e) {
|
8273
8282
|
return encodeURIComponent(e).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
@@ -8293,7 +8302,7 @@ var nn = function(i, t, a) {
|
|
8293
8302
|
u !== -1 && (i = i.slice(0, u)), i += (i.indexOf("?") === -1 ? "?" : "&") + s;
|
8294
8303
|
}
|
8295
8304
|
return i;
|
8296
|
-
},
|
8305
|
+
}, Om = J;
|
8297
8306
|
function je() {
|
8298
8307
|
this.handlers = [];
|
8299
8308
|
}
|
@@ -8309,12 +8318,12 @@ je.prototype.eject = function(i) {
|
|
8309
8318
|
this.handlers[i] && (this.handlers[i] = null);
|
8310
8319
|
};
|
8311
8320
|
je.prototype.forEach = function(i) {
|
8312
|
-
|
8321
|
+
Om.forEach(this.handlers, function(a) {
|
8313
8322
|
a !== null && i(a);
|
8314
8323
|
});
|
8315
8324
|
};
|
8316
|
-
var
|
8317
|
-
|
8325
|
+
var Lm = je, Dm = J, Nm = function(i, t) {
|
8326
|
+
Dm.forEach(i, function(s, n) {
|
8318
8327
|
n !== t && n.toUpperCase() === t.toUpperCase() && (i[t] = s, delete i[n]);
|
8319
8328
|
});
|
8320
8329
|
}, sn = function(i, t, a, s, n) {
|
@@ -8345,7 +8354,7 @@ function ln() {
|
|
8345
8354
|
}, qe;
|
8346
8355
|
}
|
8347
8356
|
var Re, ci;
|
8348
|
-
function
|
8357
|
+
function jm() {
|
8349
8358
|
if (ci)
|
8350
8359
|
return Re;
|
8351
8360
|
ci = 1;
|
@@ -8362,7 +8371,7 @@ function Nm() {
|
|
8362
8371
|
}, Re;
|
8363
8372
|
}
|
8364
8373
|
var Ve, ui;
|
8365
|
-
function
|
8374
|
+
function Bm() {
|
8366
8375
|
if (ui)
|
8367
8376
|
return Ve;
|
8368
8377
|
ui = 1;
|
@@ -8394,29 +8403,29 @@ function jm() {
|
|
8394
8403
|
}(), Ve;
|
8395
8404
|
}
|
8396
8405
|
var Ee, di;
|
8397
|
-
function
|
8406
|
+
function Pm() {
|
8398
8407
|
return di || (di = 1, Ee = function(i) {
|
8399
8408
|
return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(i);
|
8400
8409
|
}), Ee;
|
8401
8410
|
}
|
8402
8411
|
var Ue, mi;
|
8403
|
-
function
|
8412
|
+
function Fm() {
|
8404
8413
|
return mi || (mi = 1, Ue = function(i, t) {
|
8405
8414
|
return t ? i.replace(/\/+$/, "") + "/" + t.replace(/^\/+/, "") : i;
|
8406
8415
|
}), Ue;
|
8407
8416
|
}
|
8408
8417
|
var Ge, hi;
|
8409
|
-
function
|
8418
|
+
function Am() {
|
8410
8419
|
if (hi)
|
8411
8420
|
return Ge;
|
8412
8421
|
hi = 1;
|
8413
|
-
var e =
|
8422
|
+
var e = Pm(), i = Fm();
|
8414
8423
|
return Ge = function(a, s) {
|
8415
8424
|
return a && !e(s) ? i(a, s) : s;
|
8416
8425
|
}, Ge;
|
8417
8426
|
}
|
8418
8427
|
var Qe, fi;
|
8419
|
-
function
|
8428
|
+
function Hm() {
|
8420
8429
|
if (fi)
|
8421
8430
|
return Qe;
|
8422
8431
|
fi = 1;
|
@@ -8452,7 +8461,7 @@ function Am() {
|
|
8452
8461
|
}, Qe;
|
8453
8462
|
}
|
8454
8463
|
var We, gi;
|
8455
|
-
function
|
8464
|
+
function zm() {
|
8456
8465
|
if (gi)
|
8457
8466
|
return We;
|
8458
8467
|
gi = 1;
|
@@ -8499,7 +8508,7 @@ function Ci() {
|
|
8499
8508
|
if (yi)
|
8500
8509
|
return Je;
|
8501
8510
|
yi = 1;
|
8502
|
-
var e = J, i =
|
8511
|
+
var e = J, i = jm(), t = Bm(), a = nn, s = Am(), n = Hm(), u = zm(), d = ln(), r = Pe(), c = Be();
|
8503
8512
|
return Je = function(p) {
|
8504
8513
|
return new Promise(function(y, I) {
|
8505
8514
|
var v = p.data, T = p.headers, M = p.responseType, N;
|
@@ -8562,7 +8571,7 @@ function Pe() {
|
|
8562
8571
|
if (_i)
|
8563
8572
|
return Ye;
|
8564
8573
|
_i = 1;
|
8565
|
-
var e = J, i =
|
8574
|
+
var e = J, i = Nm, t = sn, a = {
|
8566
8575
|
"Content-Type": "application/x-www-form-urlencoded"
|
8567
8576
|
};
|
8568
8577
|
function s(r, c) {
|
@@ -8623,9 +8632,9 @@ function Pe() {
|
|
8623
8632
|
d.headers[c] = e.merge(a);
|
8624
8633
|
}), Ye = d, Ye;
|
8625
8634
|
}
|
8626
|
-
var
|
8627
|
-
var s = this ||
|
8628
|
-
return
|
8635
|
+
var qm = J, Rm = Pe(), Vm = function(i, t, a) {
|
8636
|
+
var s = this || Rm;
|
8637
|
+
return qm.forEach(a, function(u) {
|
8629
8638
|
i = u.call(s, i, t);
|
8630
8639
|
}), i;
|
8631
8640
|
}, Ke, bi;
|
@@ -8634,12 +8643,12 @@ function on() {
|
|
8634
8643
|
return !!(i && i.__CANCEL__);
|
8635
8644
|
}), Ke;
|
8636
8645
|
}
|
8637
|
-
var ki = J, Xe =
|
8646
|
+
var ki = J, Xe = Vm, Em = on(), Um = Pe(), Gm = Be();
|
8638
8647
|
function $e(e) {
|
8639
8648
|
if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)
|
8640
|
-
throw new
|
8649
|
+
throw new Gm("canceled");
|
8641
8650
|
}
|
8642
|
-
var
|
8651
|
+
var Qm = function(i) {
|
8643
8652
|
$e(i), i.headers = i.headers || {}, i.data = Xe.call(
|
8644
8653
|
i,
|
8645
8654
|
i.data,
|
@@ -8655,7 +8664,7 @@ var Gm = function(i) {
|
|
8655
8664
|
delete i.headers[s];
|
8656
8665
|
}
|
8657
8666
|
);
|
8658
|
-
var t = i.adapter ||
|
8667
|
+
var t = i.adapter || Um.adapter;
|
8659
8668
|
return t(i).then(function(s) {
|
8660
8669
|
return $e(i), s.data = Xe.call(
|
8661
8670
|
i,
|
@@ -8664,7 +8673,7 @@ var Gm = function(i) {
|
|
8664
8673
|
i.transformResponse
|
8665
8674
|
), s;
|
8666
8675
|
}, function(s) {
|
8667
|
-
return
|
8676
|
+
return Em(s) || ($e(i), s && s.response && (s.response.data = Xe.call(
|
8668
8677
|
i,
|
8669
8678
|
s.response.data,
|
8670
8679
|
s.response.headers,
|
@@ -8739,7 +8748,7 @@ function rn() {
|
|
8739
8748
|
version: "0.24.0"
|
8740
8749
|
}), et;
|
8741
8750
|
}
|
8742
|
-
var
|
8751
|
+
var Wm = rn().version, Dt = {};
|
8743
8752
|
["object", "boolean", "number", "function", "string", "symbol"].forEach(function(e, i) {
|
8744
8753
|
Dt[e] = function(a) {
|
8745
8754
|
return typeof a === e || "a" + (i < 1 ? "n " : " ") + e;
|
@@ -8748,7 +8757,7 @@ var Qm = rn().version, Dt = {};
|
|
8748
8757
|
var wi = {};
|
8749
8758
|
Dt.transitional = function(i, t, a) {
|
8750
8759
|
function s(n, u) {
|
8751
|
-
return "[Axios v" +
|
8760
|
+
return "[Axios v" + Wm + "] Transitional option '" + n + "'" + u + (a ? ". " + a : "");
|
8752
8761
|
}
|
8753
8762
|
return function(n, u, d) {
|
8754
8763
|
if (i === !1)
|
@@ -8761,7 +8770,7 @@ Dt.transitional = function(i, t, a) {
|
|
8761
8770
|
)), i ? i(n, u, d) : !0;
|
8762
8771
|
};
|
8763
8772
|
};
|
8764
|
-
function
|
8773
|
+
function Zm(e, i, t) {
|
8765
8774
|
if (typeof e != "object")
|
8766
8775
|
throw new TypeError("options must be an object");
|
8767
8776
|
for (var a = Object.keys(e), s = a.length; s-- > 0; ) {
|
@@ -8776,10 +8785,10 @@ function Wm(e, i, t) {
|
|
8776
8785
|
throw Error("Unknown option " + n);
|
8777
8786
|
}
|
8778
8787
|
}
|
8779
|
-
var
|
8780
|
-
assertOptions:
|
8788
|
+
var Jm = {
|
8789
|
+
assertOptions: Zm,
|
8781
8790
|
validators: Dt
|
8782
|
-
}, cn = J,
|
8791
|
+
}, cn = J, Ym = nn, Ii = Lm, xi = Qm, Fe = an, un = Jm, de = un.validators;
|
8783
8792
|
function ke(e) {
|
8784
8793
|
this.defaults = e, this.interceptors = {
|
8785
8794
|
request: new Ii(),
|
@@ -8828,7 +8837,7 @@ ke.prototype.request = function(i) {
|
|
8828
8837
|
return u;
|
8829
8838
|
};
|
8830
8839
|
ke.prototype.getUri = function(i) {
|
8831
|
-
return i = Fe(this.defaults, i),
|
8840
|
+
return i = Fe(this.defaults, i), Ym(i.url, i.params, i.paramsSerializer).replace(/^\?/, "");
|
8832
8841
|
};
|
8833
8842
|
cn.forEach(["delete", "get", "head", "options"], function(i) {
|
8834
8843
|
ke.prototype[i] = function(t, a) {
|
@@ -8848,8 +8857,8 @@ cn.forEach(["post", "put", "patch"], function(i) {
|
|
8848
8857
|
}));
|
8849
8858
|
};
|
8850
8859
|
});
|
8851
|
-
var
|
8852
|
-
function
|
8860
|
+
var Km = ke, tt, Ti;
|
8861
|
+
function Xm() {
|
8853
8862
|
if (Ti)
|
8854
8863
|
return tt;
|
8855
8864
|
Ti = 1;
|
@@ -8905,7 +8914,7 @@ function Km() {
|
|
8905
8914
|
}, tt = i, tt;
|
8906
8915
|
}
|
8907
8916
|
var it, Si;
|
8908
|
-
function
|
8917
|
+
function $m() {
|
8909
8918
|
return Si || (Si = 1, it = function(i) {
|
8910
8919
|
return function(a) {
|
8911
8920
|
return i.apply(null, a);
|
@@ -8913,39 +8922,39 @@ function Xm() {
|
|
8913
8922
|
}), it;
|
8914
8923
|
}
|
8915
8924
|
var nt, Mi;
|
8916
|
-
function
|
8925
|
+
function eh() {
|
8917
8926
|
return Mi || (Mi = 1, nt = function(i) {
|
8918
8927
|
return typeof i == "object" && i.isAxiosError === !0;
|
8919
8928
|
}), nt;
|
8920
8929
|
}
|
8921
|
-
var Oi = J,
|
8930
|
+
var Oi = J, th = $i, Me = Km, ih = an, nh = Pe();
|
8922
8931
|
function dn(e) {
|
8923
|
-
var i = new Me(e), t =
|
8932
|
+
var i = new Me(e), t = th(Me.prototype.request, i);
|
8924
8933
|
return Oi.extend(t, Me.prototype, i), Oi.extend(t, i), t.create = function(s) {
|
8925
|
-
return dn(
|
8934
|
+
return dn(ih(e, s));
|
8926
8935
|
}, t;
|
8927
8936
|
}
|
8928
|
-
var ee = dn(
|
8937
|
+
var ee = dn(nh);
|
8929
8938
|
ee.Axios = Me;
|
8930
8939
|
ee.Cancel = Be();
|
8931
|
-
ee.CancelToken =
|
8940
|
+
ee.CancelToken = Xm();
|
8932
8941
|
ee.isCancel = on();
|
8933
8942
|
ee.VERSION = rn().version;
|
8934
8943
|
ee.all = function(i) {
|
8935
8944
|
return Promise.all(i);
|
8936
8945
|
};
|
8937
|
-
ee.spread =
|
8938
|
-
ee.isAxiosError =
|
8946
|
+
ee.spread = $m();
|
8947
|
+
ee.isAxiosError = eh();
|
8939
8948
|
Mt.exports = ee;
|
8940
8949
|
Mt.exports.default = ee;
|
8941
8950
|
(function(e) {
|
8942
8951
|
e.exports = Mt.exports;
|
8943
8952
|
})(Xi);
|
8944
|
-
const
|
8945
|
-
const
|
8953
|
+
const sh = /* @__PURE__ */ mm(Xi.exports);
|
8954
|
+
const lh = {
|
8946
8955
|
name: "CmdUploadForm",
|
8947
8956
|
emits: ["click", "error", "upload-complete", "upload-file-success"],
|
8948
|
-
mixins: [X,
|
8957
|
+
mixins: [X, dm],
|
8949
8958
|
data() {
|
8950
8959
|
return {
|
8951
8960
|
comment: "",
|
@@ -9104,7 +9113,7 @@ const sh = {
|
|
9104
9113
|
type: Object,
|
9105
9114
|
required: !1
|
9106
9115
|
},
|
9107
|
-
|
9116
|
+
cmdHeadlineNoFileToUpload: {
|
9108
9117
|
type: Object,
|
9109
9118
|
required: !1
|
9110
9119
|
},
|
@@ -9332,7 +9341,7 @@ const sh = {
|
|
9332
9341
|
return i.abortController = new AbortController(), t.set(
|
9333
9342
|
this.uploadOptions.filesParam ? this.uploadOptions.filesParam : "files",
|
9334
9343
|
i.file
|
9335
|
-
),
|
9344
|
+
), sh.post(e, t, {
|
9336
9345
|
signal: i.abortController.signal,
|
9337
9346
|
onUploadProgress: (a) => this.onUploadProgress(a, i)
|
9338
9347
|
}).then((a) => (this.$emit("upload-file-success", i), a)).then((a) => {
|
@@ -9353,30 +9362,30 @@ const sh = {
|
|
9353
9362
|
}
|
9354
9363
|
}
|
9355
9364
|
}
|
9356
|
-
},
|
9365
|
+
}, oh = { key: 0 }, ah = {
|
9357
9366
|
key: 1,
|
9358
9367
|
class: "flex-container vertical"
|
9359
|
-
},
|
9368
|
+
}, rh = {
|
9360
9369
|
key: 0,
|
9361
9370
|
class: "flex-container vertical list-files-wrapper"
|
9362
|
-
},
|
9371
|
+
}, ch = {
|
9363
9372
|
key: 0,
|
9364
9373
|
class: "list-of-files total-files"
|
9365
|
-
},
|
9374
|
+
}, uh = { class: "flex-container no-flex" }, dh = ["title"], mh = {
|
9366
9375
|
key: 0,
|
9367
9376
|
class: "progressbar"
|
9368
|
-
},
|
9377
|
+
}, hh = ["value", "title"], fh = /* @__PURE__ */ f("hr", null, null, -1), gh = { class: "flex-container vertical list-files-wrapper" }, ph = { class: "list-of-files" }, yh = ["title", "onClick"], Ch = {
|
9369
9378
|
key: 0,
|
9370
9379
|
class: "progressbar"
|
9371
|
-
},
|
9380
|
+
}, _h = ["value", "title"], bh = ["title"], kh = /* @__PURE__ */ f("hr", null, null, -1), vh = { class: "small" }, wh = ["title"], Ih = {
|
9372
9381
|
key: 0,
|
9373
9382
|
class: "list-of-file-extensions"
|
9374
|
-
},
|
9383
|
+
}, xh = ["disabled"], Th = { key: 0 }, Sh = { key: 1 }, Mh = { class: "button-wrapper no-flex" }, Oh = ["disabled"], Lh = { key: 0 }, Dh = { key: 1 }, Nh = {
|
9375
9384
|
key: 0,
|
9376
9385
|
class: "progressbar"
|
9377
|
-
},
|
9378
|
-
function
|
9379
|
-
const u = E, d =
|
9386
|
+
}, jh = ["value", "title"];
|
9387
|
+
function Bh(e, i, t, a, s, n) {
|
9388
|
+
const u = E, d = Ad, r = z, c = ae;
|
9380
9389
|
return l(), o(b, null, [
|
9381
9390
|
t.advancedMode ? (l(), o("fieldset", {
|
9382
9391
|
key: 0,
|
@@ -9393,7 +9402,7 @@ function jh(e, i, t, a, s, n) {
|
|
9393
9402
|
systemMessage: n.allSystemMessages.length === 1 ? n.allSystemMessages[0] : e.getMessage("cmduploadform.system_message.the_following_errors_occurred")
|
9394
9403
|
}, {
|
9395
9404
|
default: j(() => [
|
9396
|
-
n.allSystemMessages.length > 1 ? (l(), o("ul",
|
9405
|
+
n.allSystemMessages.length > 1 ? (l(), o("ul", oh, [
|
9397
9406
|
(l(!0), o(b, null, B(n.allSystemMessages, (h, p) => (l(), o("li", { key: p }, g(h), 1))), 128))
|
9398
9407
|
])) : m("", !0)
|
9399
9408
|
]),
|
@@ -9402,16 +9411,16 @@ function jh(e, i, t, a, s, n) {
|
|
9402
9411
|
f("div", F({
|
9403
9412
|
class: ["box drop-area flex-container vertical", { "allow-drop": s.allowDrop }]
|
9404
9413
|
}, st(n.dragAndDropHandler)), [
|
9405
|
-
s.listOfFiles.length ? (l(), o("div",
|
9406
|
-
t.showTotalUpload && s.listOfFiles.length !== 1 ? (l(), o("div",
|
9414
|
+
s.listOfFiles.length ? (l(), o("div", ah, [
|
9415
|
+
t.showTotalUpload && s.listOfFiles.length !== 1 ? (l(), o("div", rh, [
|
9407
9416
|
x(u, F(t.cmdHeadlineSummaryOfAllFiles, { headlineLevel: "4" }), {
|
9408
9417
|
default: j(() => [
|
9409
9418
|
A(g(e.getMessage("cmduploadform.headline.summary_of_all_files")), 1)
|
9410
9419
|
]),
|
9411
9420
|
_: 1
|
9412
9421
|
}, 16),
|
9413
|
-
t.showTotalUpload && s.listOfFiles.length !== 1 ? (l(), o("ul",
|
9414
|
-
f("li",
|
9422
|
+
t.showTotalUpload && s.listOfFiles.length !== 1 ? (l(), o("ul", ch, [
|
9423
|
+
f("li", uh, [
|
9415
9424
|
f("a", {
|
9416
9425
|
href: "#",
|
9417
9426
|
title: e.getMessage("cmduploadform.labeltext.remove_all_files_from_list"),
|
@@ -9421,7 +9430,7 @@ function jh(e, i, t, a, s, n) {
|
|
9421
9430
|
iconClass: t.deleteIcon.iconClass,
|
9422
9431
|
type: t.deleteIcon.iconClass
|
9423
9432
|
}, null, 8, ["iconClass", "type"])
|
9424
|
-
], 8,
|
9433
|
+
], 8, dh),
|
9425
9434
|
f("span", null, [
|
9426
9435
|
A(g(s.listOfFiles.length) + " ", 1),
|
9427
9436
|
t.allowMultipleFileUploads ? (l(), o(b, { key: 1 }, [
|
@@ -9436,26 +9445,26 @@ function jh(e, i, t, a, s, n) {
|
|
9436
9445
|
{ error: t.maxTotalUploadSize > 0 && n.totalSize > t.maxTotalUploadSize }
|
9437
9446
|
])
|
9438
9447
|
}, " (" + g(n.formatSize(n.totalSize)) + ") ", 3),
|
9439
|
-
s.uploadInitiated ? (l(), o("span",
|
9448
|
+
s.uploadInitiated ? (l(), o("span", mh, [
|
9440
9449
|
f("span", null, g(n.getPercentage(n.totalUploadProgress)), 1),
|
9441
9450
|
f("progress", {
|
9442
9451
|
max: "100",
|
9443
9452
|
value: n.totalUploadProgress,
|
9444
9453
|
title: n.totalBytesUploaded
|
9445
|
-
}, null, 8,
|
9454
|
+
}, null, 8, hh)
|
9446
9455
|
])) : m("", !0)
|
9447
9456
|
])
|
9448
9457
|
])) : m("", !0),
|
9449
|
-
|
9458
|
+
fh
|
9450
9459
|
])) : m("", !0),
|
9451
|
-
f("div",
|
9460
|
+
f("div", gh, [
|
9452
9461
|
x(u, F(t.cmdHeadlineListOfSelectedFiles, { headlineLevel: "4" }), {
|
9453
9462
|
default: j(() => [
|
9454
9463
|
A(g(e.getMessage("cmduploadform.headline.list_of_selected_files")), 1)
|
9455
9464
|
]),
|
9456
9465
|
_: 1
|
9457
9466
|
}, 16),
|
9458
|
-
f("ul",
|
9467
|
+
f("ul", ph, [
|
9459
9468
|
(l(!0), o(b, null, B(s.listOfFiles, (h, p) => (l(), o("li", {
|
9460
9469
|
key: p,
|
9461
9470
|
class: "flex-container no-flex"
|
@@ -9469,7 +9478,7 @@ function jh(e, i, t, a, s, n) {
|
|
9469
9478
|
iconClass: e.iconDelete.iconClass,
|
9470
9479
|
type: e.iconDelete.iconType
|
9471
9480
|
}, null, 8, ["iconClass", "type"])
|
9472
|
-
], 8,
|
9481
|
+
], 8, yh),
|
9473
9482
|
f("span", {
|
9474
9483
|
class: C([
|
9475
9484
|
"text-align-right",
|
@@ -9480,13 +9489,13 @@ function jh(e, i, t, a, s, n) {
|
|
9480
9489
|
A(g(h.file.name) + " ", 1),
|
9481
9490
|
f("small", null, "(" + g(n.formatSize(h.file.size)) + ")", 1)
|
9482
9491
|
], 2),
|
9483
|
-
s.uploadInitiated && !h.error ? (l(), o("span",
|
9492
|
+
s.uploadInitiated && !h.error ? (l(), o("span", Ch, [
|
9484
9493
|
f("span", null, g(n.getPercentage(h.progress)), 1),
|
9485
9494
|
f("progress", {
|
9486
9495
|
max: "100",
|
9487
9496
|
value: h.progress,
|
9488
9497
|
title: n.formatSize(h.uploadedBytes) + "/" + n.formatSize(h.file.size)
|
9489
|
-
}, null, 8,
|
9498
|
+
}, null, 8, _h)
|
9490
9499
|
])) : m("", !0)
|
9491
9500
|
]))), 128))
|
9492
9501
|
]),
|
@@ -9495,8 +9504,8 @@ function jh(e, i, t, a, s, n) {
|
|
9495
9504
|
href: "#",
|
9496
9505
|
onClick: i[1] || (i[1] = S((...h) => n.cancel && n.cancel(...h), ["prevent"])),
|
9497
9506
|
title: e.getMessage("cmduploadform.all_files_will_be_removed")
|
9498
|
-
}, g(e.getMessage("cmduploadform.reset_upload")), 9,
|
9499
|
-
|
9507
|
+
}, g(e.getMessage("cmduploadform.reset_upload")), 9, bh)) : m("", !0),
|
9508
|
+
kh
|
9500
9509
|
])
|
9501
9510
|
])) : (l(), o(b, { key: 0 }, [
|
9502
9511
|
t.allowMultipleFileUploads ? (l(), _(u, F({ key: 0 }, t.cmdHeadlineNoFilesToUpload, { headlineLevel: "4" }), {
|
@@ -9523,7 +9532,7 @@ function jh(e, i, t, a, s, n) {
|
|
9523
9532
|
]),
|
9524
9533
|
_: 1
|
9525
9534
|
}, 16)) : m("", !0),
|
9526
|
-
f("dl",
|
9535
|
+
f("dl", vh, [
|
9527
9536
|
t.maxTotalUploadSize > 0 ? (l(), o(b, { key: 0 }, [
|
9528
9537
|
f("dt", {
|
9529
9538
|
class: C({ error: n.totalSize > t.maxTotalUploadSize })
|
@@ -9551,10 +9560,10 @@ function jh(e, i, t, a, s, n) {
|
|
9551
9560
|
iconClass: s.showListOfFileExtensions ? t.iconInvisible.iconClass : t.iconVisible.iconClass,
|
9552
9561
|
type: s.showListOfFileExtensions ? t.iconInvisible.iconType : t.iconVisible.iconType
|
9553
9562
|
}, null, 8, ["iconClass", "type"])
|
9554
|
-
], 8,
|
9563
|
+
], 8, wh),
|
9555
9564
|
x(se, { name: "fade" }, {
|
9556
9565
|
default: j(() => [
|
9557
|
-
s.showListOfFileExtensions ? (l(), o("ul",
|
9566
|
+
s.showListOfFileExtensions ? (l(), o("ul", Ih, [
|
9558
9567
|
(l(!0), o(b, null, B(t.allowedFileExtensions, (h, p) => (l(), o("li", {
|
9559
9568
|
key: p,
|
9560
9569
|
class: C({ error: s.errors.fileType })
|
@@ -9576,8 +9585,8 @@ function jh(e, i, t, a, s, n) {
|
|
9576
9585
|
iconClass: t.iconFileUpload.iconClass,
|
9577
9586
|
type: t.iconFileUpload.iconType
|
9578
9587
|
}, null, 8, ["iconClass", "type"]),
|
9579
|
-
t.allowMultipleFileUploads ? (l(), o("span",
|
9580
|
-
], 10,
|
9588
|
+
t.allowMultipleFileUploads ? (l(), o("span", Th, g(e.getMessage("cmduploadform.labeltext.select_files")), 1)) : (l(), o("span", Sh, g(e.getMessage("cmduploadform.labeltext.select_file")), 1))
|
9589
|
+
], 10, xh),
|
9581
9590
|
t.enableDragAndDrop ? (l(), o("p", {
|
9582
9591
|
key: 0,
|
9583
9592
|
class: C(["text-drag-and-drop", { disabled: s.uploadInitiated }])
|
@@ -9607,7 +9616,7 @@ function jh(e, i, t, a, s, n) {
|
|
9607
9616
|
placeholder: e.getMessage("cmduploadform.placeholder.comment"),
|
9608
9617
|
status: t.commentStatusMessage ? "error" : ""
|
9609
9618
|
}, null, 8, ["labelText", "modelValue", "required", "validationMessage", "placeholder", "status"])) : m("", !0),
|
9610
|
-
f("div",
|
9619
|
+
f("div", Mh, [
|
9611
9620
|
f("button", {
|
9612
9621
|
class: C([
|
9613
9622
|
"button primary",
|
@@ -9622,8 +9631,8 @@ function jh(e, i, t, a, s, n) {
|
|
9622
9631
|
iconClass: t.iconUpload.iconClass,
|
9623
9632
|
type: t.iconUpload.iconType
|
9624
9633
|
}, null, 8, ["iconClass", "type"]),
|
9625
|
-
s.listOfFiles.length === 1 || !t.allowMultipleFileUploads ? (l(), o("span",
|
9626
|
-
], 10,
|
9634
|
+
s.listOfFiles.length === 1 || !t.allowMultipleFileUploads ? (l(), o("span", Lh, g(e.getMessage("cmduploadform.buttontext.upload_file")), 1)) : (l(), o("span", Dh, g(e.getMessage("cmduploadform.buttontext.upload_files")), 1))
|
9635
|
+
], 10, Oh),
|
9627
9636
|
f("button", {
|
9628
9637
|
class: C(["button", { disabled: s.listOfFiles.length === 0 }]),
|
9629
9638
|
onClick: i[6] || (i[6] = (...h) => n.cancel && n.cancel(...h))
|
@@ -9641,13 +9650,13 @@ function jh(e, i, t, a, s, n) {
|
|
9641
9650
|
onClick: i[7] || (i[7] = S((...h) => n.selectFiles && n.selectFiles(...h), ["prevent"])),
|
9642
9651
|
class: ["cmd-upload-form drop-area", { "allow-drop": s.allowDrop }]
|
9643
9652
|
}, st(n.dragAndDropHandler)), [
|
9644
|
-
s.uploadInitiated ? (l(), o("span",
|
9653
|
+
s.uploadInitiated ? (l(), o("span", Nh, [
|
9645
9654
|
f("span", null, g(n.getPercentage(n.totalUploadProgress)), 1),
|
9646
9655
|
f("progress", {
|
9647
9656
|
max: "100",
|
9648
9657
|
value: n.totalUploadProgress,
|
9649
9658
|
title: n.totalBytesUploaded
|
9650
|
-
}, null, 8,
|
9659
|
+
}, null, 8, jh)
|
9651
9660
|
])) : m("", !0),
|
9652
9661
|
H(e.$slots, "default", {}, () => [
|
9653
9662
|
t.enableDragAndDrop ? (l(), o(b, { key: 0 }, [
|
@@ -9686,8 +9695,8 @@ function jh(e, i, t, a, s, n) {
|
|
9686
9695
|
}, null, 8, ["labelText", "disabled", "multiple", "onChange"])
|
9687
9696
|
], 64);
|
9688
9697
|
}
|
9689
|
-
const
|
9690
|
-
const
|
9698
|
+
const gf = /* @__PURE__ */ L(lh, [["render", Bh]]);
|
9699
|
+
const Ph = {
|
9691
9700
|
name: "CmdWidthLimitationWrapper",
|
9692
9701
|
props: {
|
9693
9702
|
innerComponent: {
|
@@ -9726,8 +9735,8 @@ const Bh = {
|
|
9726
9735
|
return this.innerComponent === "header" ? "site-header" : this.innerComponent === "footer" ? "site-footer" : "";
|
9727
9736
|
}
|
9728
9737
|
}
|
9729
|
-
},
|
9730
|
-
function
|
9738
|
+
}, Fh = ["id"], Ah = ["id"];
|
9739
|
+
function Hh(e, i, t, a, s, n) {
|
9731
9740
|
const u = E;
|
9732
9741
|
return l(), o("div", {
|
9733
9742
|
class: C(["cmd-width-limitation-wrapper", { sticky: t.sticky }])
|
@@ -9739,7 +9748,7 @@ function Ah(e, i, t, a, s, n) {
|
|
9739
9748
|
t.anchorId ? (l(), o("a", {
|
9740
9749
|
key: 0,
|
9741
9750
|
id: t.anchorId
|
9742
|
-
}, null, 8,
|
9751
|
+
}, null, 8, Fh)) : m("", !0),
|
9743
9752
|
t.cmdHeadline ? (l(), _(u, {
|
9744
9753
|
key: 1,
|
9745
9754
|
"pre-headline-text": t.cmdHeadline.preHeadlineText,
|
@@ -9751,12 +9760,12 @@ function Ah(e, i, t, a, s, n) {
|
|
9751
9760
|
t.anchorId ? (l(), o("a", {
|
9752
9761
|
key: 0,
|
9753
9762
|
id: t.anchorId
|
9754
|
-
}, null, 8,
|
9763
|
+
}, null, 8, Ah)) : m("", !0),
|
9755
9764
|
H(e.$slots, "default")
|
9756
9765
|
], 64))
|
9757
9766
|
], 2);
|
9758
9767
|
}
|
9759
|
-
const
|
9768
|
+
const pf = /* @__PURE__ */ L(Ph, [["render", Hh]]), yf = {
|
9760
9769
|
mounted(e) {
|
9761
9770
|
if (e.tagName === "INPUT" || e.tagName === "SELECT" || e.tagName === "TEXTAREA" || e.tagName === "A")
|
9762
9771
|
e.focus();
|
@@ -9765,7 +9774,7 @@ const gf = /* @__PURE__ */ L(Bh, [["render", Ah]]), pf = {
|
|
9765
9774
|
i ? i.focus() : console.warn("No input-element for focus-directive on element " + e.tagName + " found!");
|
9766
9775
|
}
|
9767
9776
|
}
|
9768
|
-
},
|
9777
|
+
}, Cf = {
|
9769
9778
|
mounted(e, i) {
|
9770
9779
|
if (i.value && typeof i.value == "string") {
|
9771
9780
|
let t = /[^\d]/g, a = i.value.replace(/^\s*\+/, "00");
|
@@ -9773,7 +9782,7 @@ const gf = /* @__PURE__ */ L(Bh, [["render", Ah]]), pf = {
|
|
9773
9782
|
}
|
9774
9783
|
}
|
9775
9784
|
};
|
9776
|
-
function
|
9785
|
+
function _f() {
|
9777
9786
|
const e = {};
|
9778
9787
|
Cn(a);
|
9779
9788
|
function i(s = "defaultSequence") {
|
@@ -9789,55 +9798,55 @@ function Cf() {
|
|
9789
9798
|
return { nextSequenceValue: i, currentSequenceValue: t, resetSequence: a };
|
9790
9799
|
}
|
9791
9800
|
export {
|
9792
|
-
|
9793
|
-
|
9794
|
-
|
9795
|
-
|
9796
|
-
|
9797
|
-
|
9798
|
-
|
9799
|
-
|
9800
|
-
|
9801
|
-
|
9802
|
-
|
9803
|
-
|
9801
|
+
qh as CmdAddressData,
|
9802
|
+
Rh as CmdBackToTopButton,
|
9803
|
+
Vh as CmdBankAccountData,
|
9804
|
+
qa as CmdBox,
|
9805
|
+
Uh as CmdBoxWrapper,
|
9806
|
+
Gh as CmdBreadcrumbs,
|
9807
|
+
rr as CmdCompanyLogo,
|
9808
|
+
Qh as CmdCookieDisclaimer,
|
9809
|
+
Wh as CmdCopyrightInformation,
|
9810
|
+
Xr as CmdFakeSelect,
|
9811
|
+
Eh as CmdFancyBox,
|
9812
|
+
Zh as CmdForm,
|
9804
9813
|
ae as CmdFormElement,
|
9805
|
-
|
9806
|
-
|
9814
|
+
cc as CmdFormFilters,
|
9815
|
+
Jh as CmdGoogleMaps,
|
9807
9816
|
E as CmdHeadline,
|
9808
9817
|
z as CmdIcon,
|
9809
9818
|
be as CmdImage,
|
9810
|
-
|
9811
|
-
|
9812
|
-
|
9813
|
-
|
9814
|
-
|
9815
|
-
|
9816
|
-
|
9817
|
-
|
9818
|
-
|
9819
|
-
|
9820
|
-
|
9821
|
-
|
9822
|
-
|
9819
|
+
Yh as CmdImageGallery,
|
9820
|
+
Kh as CmdImageZoom,
|
9821
|
+
Xh as CmdInputGroup,
|
9822
|
+
sa as CmdListOfLinks,
|
9823
|
+
$h as CmdLoginForm,
|
9824
|
+
fu as CmdMainNavigation,
|
9825
|
+
ef as CmdMultistepFormProgressBar,
|
9826
|
+
tf as CmdOpeningHours,
|
9827
|
+
nf as CmdPager,
|
9828
|
+
sf as CmdProgressBar,
|
9829
|
+
of as CmdSiteFooter,
|
9830
|
+
af as CmdSiteHeader,
|
9831
|
+
rf as CmdSiteSearch,
|
9823
9832
|
It as CmdSlideButton,
|
9824
|
-
|
9825
|
-
|
9826
|
-
|
9827
|
-
|
9828
|
-
|
9829
|
-
|
9830
|
-
|
9831
|
-
|
9832
|
-
|
9833
|
+
cf as CmdSlideshow,
|
9834
|
+
lf as CmdSocialNetworks,
|
9835
|
+
uf as CmdSwitchLanguage,
|
9836
|
+
Ad as CmdSystemMessage,
|
9837
|
+
df as CmdTable,
|
9838
|
+
mf as CmdTabs,
|
9839
|
+
hf as CmdTextBlock,
|
9840
|
+
jo as CmdThumbnailScroller,
|
9841
|
+
ff as CmdToggleDarkMode,
|
9833
9842
|
Il as CmdTooltip,
|
9834
|
-
|
9835
|
-
|
9836
|
-
|
9837
|
-
|
9843
|
+
gf as CmdUploadForm,
|
9844
|
+
pf as CmdWidthLimitationWrapper,
|
9845
|
+
yf as DirFocus,
|
9846
|
+
Cf as DirTelephone,
|
9838
9847
|
zl as createHtmlId,
|
9839
9848
|
Hl as createUuid,
|
9840
9849
|
ge as getFileExtension,
|
9841
9850
|
xt as openFancyBox,
|
9842
|
-
|
9851
|
+
_f as useSequence
|
9843
9852
|
};
|