comand-component-library 3.3.87 → 4.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/comand-component-library.js +473 -467
- package/dist/comand-component-library.umd.cjs +4 -4
- package/dist/media/images/slideshow-images/large/slide1.jpg +0 -0
- package/dist/media/images/slideshow-images/large/slide2.jpg +0 -0
- package/dist/media/images/slideshow-images/large/slide3.jpg +0 -0
- package/dist/media/images/slideshow-images/large/slide4.jpg +0 -0
- package/dist/media/images/slideshow-images/medium/slide1.jpg +0 -0
- package/dist/media/images/slideshow-images/medium/slide2.jpg +0 -0
- package/dist/media/images/slideshow-images/medium/slide3.jpg +0 -0
- package/dist/media/images/slideshow-images/medium/slide4.jpg +0 -0
- package/dist/media/images/slideshow-images/small/slide1.jpg +0 -0
- package/dist/media/images/slideshow-images/small/slide2.jpg +0 -0
- package/dist/media/images/slideshow-images/small/slide3.jpg +0 -0
- package/dist/media/images/slideshow-images/small/slide4.jpg +0 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/App.vue +680 -632
- package/src/assets/data/address-data.json +3 -3
- package/src/components/CmdAddressData.vue +90 -96
- package/src/components/CmdAddressDataItem.vue +60 -52
- package/src/components/CmdBankAccountData.vue +1 -1
- package/src/components/CmdBox.vue +10 -10
- package/src/components/CmdBoxWrapper.vue +8 -4
- package/src/components/CmdBreadcrumbs.vue +1 -1
- package/src/components/CmdCompanyLogo.vue +14 -11
- package/src/components/CmdContainer.vue +1 -1
- package/src/components/CmdCookieDisclaimer.vue +1 -1
- package/src/components/CmdCopyrightInformation.vue +1 -1
- package/src/components/CmdFancyBox.vue +8 -5
- package/src/components/CmdForm.vue +7 -1
- package/src/components/CmdFormElement.vue +21 -75
- package/src/components/CmdFormFilters.vue +2 -1
- package/src/components/CmdGoogleMaps.vue +1 -1
- package/src/components/CmdHeadline.vue +20 -20
- package/src/components/CmdIcon.vue +1 -1
- package/src/components/CmdImage.vue +1 -1
- package/src/components/CmdImageGallery.vue +1 -1
- package/src/components/CmdImageZoom.vue +1 -1
- package/src/components/CmdInputGroup.vue +2 -2
- package/src/components/CmdListOfLinks.vue +1 -1
- package/src/components/CmdListOfLinksItem.vue +0 -4
- package/src/components/CmdListOfRequirements.vue +10 -2
- package/src/components/CmdLoginForm.vue +1 -1
- package/src/components/CmdMainNavigation.vue +18 -17
- package/src/components/CmdMultistepFormProgressBar.vue +7 -3
- package/src/components/CmdNewsletterSubscription.vue +1 -8
- package/src/components/CmdOpeningHours.vue +1 -1
- package/src/components/CmdOpeningHoursItem.vue +1 -1
- package/src/components/CmdPagination.vue +21 -15
- package/src/components/CmdProgressBar.vue +1 -1
- package/src/components/CmdSidebar.vue +7 -1
- package/src/components/CmdSiteFooter.vue +14 -14
- package/src/components/CmdSiteHeader.vue +12 -29
- package/src/components/CmdSlideButton.vue +9 -7
- package/src/components/CmdSlideshow.vue +14 -12
- package/src/components/CmdSocialNetworks.vue +11 -4
- package/src/components/CmdSocialNetworksItem.vue +2 -7
- package/src/components/CmdSwitchLanguage.vue +1 -1
- package/src/components/CmdSystemMessage.vue +10 -6
- package/src/components/CmdTable.vue +55 -15
- package/src/components/CmdTabs.vue +2 -2
- package/src/components/CmdTextImageBlock.vue +1 -1
- package/src/components/CmdThumbnailScroller.vue +157 -152
- package/src/components/CmdToggleDarkMode.vue +1 -1
- package/src/components/CmdTooltip.vue +1 -1
- package/src/components/CmdUploadForm.vue +2 -2
- package/src/components/CmdWidthLimitationWrapper.vue +7 -3
- package/src/mixins/FieldValidation.js +0 -17
@@ -2267,9 +2267,6 @@ const Dt = /* @__PURE__ */ O(gs, [["render", ps]]), ys = {
|
|
2267
2267
|
getStatusIconClass() {
|
2268
2268
|
return this.validationStatus !== "" ? this.capsLockActivated ? this.iconCapsLock.iconClass : this.validationStatus === "error" ? this.iconHasStateError.iconClass : this.validationStatus === "warning" ? this.iconHasStateWarning.iconClass : this.validationStatus === "success" ? this.iconHasStateSuccess.iconClass : this.iconHasStateInfo.iconClass : this.helplink.icon.iconClass;
|
2269
2269
|
},
|
2270
|
-
getStatusIconType() {
|
2271
|
-
return this.validationStatus !== "" ? this.capsLockActivated ? this.iconCapsLock.iconType : this.validationStatus === "error" ? this.iconHasStateError.iconType : this.validationStatus === "warning" ? this.iconHasStateWarning.iconType : this.validationStatus === "success" ? this.iconHasStateSuccess.iconType : this.iconHasStateInfo.iconType : this.helplink.icon.iconType;
|
2272
|
-
},
|
2273
2270
|
inputRequirements() {
|
2274
2271
|
const e = [];
|
2275
2272
|
if (this.$attrs.required || Object.hasOwn(this, "required") && this.required) {
|
@@ -2433,6 +2430,10 @@ const _s = ["color", "date", "datetime-local", "file", "number", "range"], ks =
|
|
2433
2430
|
type: Array,
|
2434
2431
|
required: !1
|
2435
2432
|
},
|
2433
|
+
showStatusIcon: {
|
2434
|
+
type: Boolean,
|
2435
|
+
default: !0
|
2436
|
+
},
|
2436
2437
|
nativeButton: {
|
2437
2438
|
type: Object,
|
2438
2439
|
default() {
|
@@ -2690,11 +2691,8 @@ function Qs(e, n, t, a, l, i) {
|
|
2690
2691
|
{
|
2691
2692
|
disabled: e.$attrs.disabled,
|
2692
2693
|
inline: t.displayLabelInline,
|
2693
|
-
checked: i.isChecked,
|
2694
2694
|
"toggle-switch": t.toggleSwitch,
|
2695
2695
|
colored: t.colored,
|
2696
|
-
on: t.colored && i.isChecked,
|
2697
|
-
off: t.colored && !i.isChecked,
|
2698
2696
|
"has-state": e.validationStatus
|
2699
2697
|
}
|
2700
2698
|
]),
|
@@ -2721,7 +2719,7 @@ function Qs(e, n, t, a, l, i) {
|
|
2721
2719
|
cmdListOfRequirements: e.listOfRequirements,
|
2722
2720
|
role: e.validationStatus === "error" ? "alert" : "dialog"
|
2723
2721
|
}, null, 8, ["validationStatus", "validationMessage", "relatedId", "cmdListOfRequirements", "role"])) : u("", !0),
|
2724
|
-
e.$attrs.required || e.inputRequirements.length ? (s(), o("a", {
|
2722
|
+
(e.$attrs.required || e.inputRequirements.length) && t.showStatusIcon ? (s(), o("a", {
|
2725
2723
|
key: 1,
|
2726
2724
|
href: "#",
|
2727
2725
|
onClick: n[0] || (n[0] = I(() => {
|
@@ -2810,7 +2808,7 @@ function Qs(e, n, t, a, l, i) {
|
|
2810
2808
|
onBlur: n[12] || (n[12] = (...L) => i.onBlur && i.onBlur(...L)),
|
2811
2809
|
checked: i.isChecked,
|
2812
2810
|
value: t.inputValue,
|
2813
|
-
class: [t.inputClass, e.validationStatus, i.toggleSwitchIconClass, { "replace-input-type": t.replaceInputType
|
2811
|
+
class: [t.inputClass, e.validationStatus, i.toggleSwitchIconClass, { "replace-input-type": t.replaceInputType }],
|
2814
2812
|
id: e.htmlId,
|
2815
2813
|
disabled: e.$attrs.disabled,
|
2816
2814
|
"aria-invalid": e.validationStatus === "error"
|
@@ -3051,7 +3049,7 @@ function po(e, n, t, a, l, i) {
|
|
3051
3049
|
innerHTML: t.addressEntry.data
|
3052
3050
|
}, null, 8, Ks))
|
3053
3051
|
], 64))
|
3054
|
-
], 2)) : t.addressEntry.
|
3052
|
+
], 2)) : t.addressEntry.name === "address" ? (s(), o("dd", Xs, [
|
3055
3053
|
t.linkGoogleMaps && !e.editing ? (s(), o("a", {
|
3056
3054
|
key: 0,
|
3057
3055
|
href: i.locateAddress(t.addressEntry),
|
@@ -3228,7 +3226,7 @@ const bo = {
|
|
3228
3226
|
return "https://www.google.com/maps/place/" + e.streetNo + ", " + e.zip + " " + e.city;
|
3229
3227
|
},
|
3230
3228
|
getHref(e) {
|
3231
|
-
return e.
|
3229
|
+
return e.name === "phone" ? "tel:" + e.href : e.name === "email" ? "mailto:" + e.href : e.name === "url" ? e.href : null;
|
3232
3230
|
},
|
3233
3231
|
updateHandlerProvider() {
|
3234
3232
|
return K(this, {
|
@@ -3258,50 +3256,54 @@ function Ro(e, n, t, a, l, i) {
|
|
3258
3256
|
((g = t.cmdHeadline) == null ? void 0 : g.headlineText) || e.editModeContext ? (s(), C(d, W(B({ key: 0 }, t.cmdHeadline)), null, 16)) : u("", !0),
|
3259
3257
|
h("address", ko, [
|
3260
3258
|
t.showLabels && !t.showIconsOnly ? (s(), o(k, { key: 0 }, [
|
3261
|
-
e.editModeContext ?
|
3259
|
+
e.editModeContext ? (s(), o(k, { key: 1 }, [
|
3260
|
+
t.addressData.length === 0 ? (s(), o("button", {
|
3261
|
+
key: 0,
|
3262
|
+
type: "button",
|
3263
|
+
class: "button confirm small",
|
3264
|
+
onClick: n[0] || (n[0] = (...m) => i.onAddItem && i.onAddItem(...m))
|
3265
|
+
}, To)) : u("", !0),
|
3266
|
+
(s(!0), o(k, null, A(t.addressData, (m, _) => (s(), C(c, {
|
3267
|
+
key: "x" + _,
|
3268
|
+
class: "edit-items",
|
3269
|
+
showComponentName: !1,
|
3270
|
+
allowedComponentTypes: [],
|
3271
|
+
componentName: "CmdAddressDataItem",
|
3272
|
+
componentProps: m,
|
3273
|
+
componentPath: ["props", "addressData", _]
|
3274
|
+
}, {
|
3275
|
+
default: N(() => [
|
3276
|
+
h("dl", null, [
|
3277
|
+
v(r, {
|
3278
|
+
addressEntry: m,
|
3279
|
+
showLabelIcons: t.showLabelIcons,
|
3280
|
+
showLabelTexts: t.showLabelTexts
|
3281
|
+
}, null, 8, ["addressEntry", "showLabelIcons", "showLabelTexts"])
|
3282
|
+
])
|
3283
|
+
]),
|
3284
|
+
_: 2
|
3285
|
+
}, 1032, ["componentProps", "componentPath"]))), 128))
|
3286
|
+
], 64)) : (s(), o("dl", vo, [
|
3262
3287
|
(s(!0), o(k, null, A(t.addressData, (m, _) => (s(), C(r, {
|
3263
3288
|
key: _,
|
3264
|
-
addressEntry: m
|
3265
|
-
|
3266
|
-
|
3267
|
-
|
3268
|
-
|
3269
|
-
type: "button",
|
3270
|
-
class: "button confirm small",
|
3271
|
-
onClick: n[0] || (n[0] = (...m) => i.onAddItem && i.onAddItem(...m))
|
3272
|
-
}, To)) : (s(!0), o(k, { key: 2 }, A(t.addressData, (m, _) => (s(), C(c, {
|
3273
|
-
key: "x" + _,
|
3274
|
-
class: "edit-items",
|
3275
|
-
showComponentName: !1,
|
3276
|
-
allowedComponentTypes: [],
|
3277
|
-
componentName: "CmdAddressDataItem",
|
3278
|
-
componentProps: m,
|
3279
|
-
componentPath: ["props", "addressData", _]
|
3280
|
-
}, {
|
3281
|
-
default: N(() => [
|
3282
|
-
h("dl", null, [
|
3283
|
-
v(r, {
|
3284
|
-
addressEntry: m,
|
3285
|
-
showLabelIcons: t.showLabelIcons,
|
3286
|
-
showLabelTexts: t.showLabelTexts
|
3287
|
-
}, null, 8, ["addressEntry", "showLabelIcons", "showLabelTexts"])
|
3288
|
-
])
|
3289
|
-
]),
|
3290
|
-
_: 2
|
3291
|
-
}, 1032, ["componentProps", "componentPath"]))), 128))
|
3289
|
+
addressEntry: m,
|
3290
|
+
showLabelIcons: t.showLabelIcons,
|
3291
|
+
showLabelTexts: t.showLabelTexts
|
3292
|
+
}, null, 8, ["addressEntry", "showLabelIcons", "showLabelTexts"]))), 128))
|
3293
|
+
]))
|
3292
3294
|
], 64)) : (s(), o("ul", {
|
3293
3295
|
key: 1,
|
3294
3296
|
class: b(["flex-container", { vertical: !t.showIconsOnly }])
|
3295
3297
|
}, [
|
3296
3298
|
(s(!0), o(k, null, A(t.addressData, (m, _) => (s(), o(k, { key: _ }, [
|
3297
|
-
m.href || m.
|
3299
|
+
m.href || m.name === "address" && m.linkGoogleMaps || !t.showIconsOnly ? (s(), o("li", {
|
3298
3300
|
key: 0,
|
3299
3301
|
class: b({ "no-flex": t.showIconsOnly })
|
3300
3302
|
}, [
|
3301
3303
|
m.href ? (s(), o("a", {
|
3302
3304
|
key: 0,
|
3303
3305
|
href: i.getHref(m),
|
3304
|
-
target:
|
3306
|
+
target: m.name === "url" ? "_blank" : null,
|
3305
3307
|
title: m.tooltip
|
3306
3308
|
}, [
|
3307
3309
|
t.showIconsOnly ? (s(), o(k, { key: 0 }, [
|
@@ -3317,7 +3319,7 @@ function Ro(e, n, t, a, l, i) {
|
|
3317
3319
|
key: 1,
|
3318
3320
|
innerHTML: m.data
|
3319
3321
|
}, null, 8, So)),
|
3320
|
-
m.
|
3322
|
+
m.name === "address" ? (s(), o(k, { key: 2 }, [
|
3321
3323
|
m.linkGoogleMaps ? (s(), o("a", {
|
3322
3324
|
key: 0,
|
3323
3325
|
href: i.locateAddress(m),
|
@@ -3371,7 +3373,7 @@ function Ro(e, n, t, a, l, i) {
|
|
3371
3373
|
], 64))
|
3372
3374
|
]);
|
3373
3375
|
}
|
3374
|
-
const
|
3376
|
+
const Ag = /* @__PURE__ */ O(bo, [["render", Ro]]), Uo = {
|
3375
3377
|
name: "CmdBackToTopButton",
|
3376
3378
|
data() {
|
3377
3379
|
var e;
|
@@ -3447,7 +3449,7 @@ function Wo(e, n, t, a, l, i) {
|
|
3447
3449
|
_: 1
|
3448
3450
|
});
|
3449
3451
|
}
|
3450
|
-
const
|
3452
|
+
const Bg = /* @__PURE__ */ O(Uo, [["render", Wo]]);
|
3451
3453
|
const Qo = {
|
3452
3454
|
name: "CmdBankAccountData",
|
3453
3455
|
props: {
|
@@ -3510,7 +3512,7 @@ function Xo(e, n, t, a, l, i) {
|
|
3510
3512
|
t.additionalInformation ? (s(), o("p", Ko, p(t.additionalInformation), 1)) : u("", !0)
|
3511
3513
|
]);
|
3512
3514
|
}
|
3513
|
-
const
|
3515
|
+
const jg = /* @__PURE__ */ O(Qo, [["render", Xo]]);
|
3514
3516
|
function xe(e) {
|
3515
3517
|
if (e) {
|
3516
3518
|
const n = e.lastIndexOf(".");
|
@@ -3776,7 +3778,7 @@ function ua(e, n, t, a, l, i) {
|
|
3776
3778
|
h("a", B({
|
3777
3779
|
href: "#",
|
3778
3780
|
class: ["box drop-area flex-container vertical", { "allow-drop": l.allowDrop }]
|
3779
|
-
}, ft(i.dragAndDropHandler), {
|
3781
|
+
}, ft(i.dragAndDropHandler, !0), {
|
3780
3782
|
onClick: n[1] || (n[1] = I((...Q) => i.selectFiles && i.selectFiles(...Q), ["prevent"])),
|
3781
3783
|
title: "Drag new image to this area to replace old one!"
|
3782
3784
|
}), [
|
@@ -4505,7 +4507,7 @@ function Ga(e, n, t, a, l, i) {
|
|
4505
4507
|
], 42, Oa)
|
4506
4508
|
]);
|
4507
4509
|
}
|
4508
|
-
const
|
4510
|
+
const Fg = /* @__PURE__ */ O(Ma, [["render", Ga]]), Wa = {
|
4509
4511
|
name: "CmdListOfLinksItem",
|
4510
4512
|
inheritAttrs: !1,
|
4511
4513
|
mixins: [J],
|
@@ -4872,7 +4874,7 @@ const Bt = {
|
|
4872
4874
|
}
|
4873
4875
|
}, cn = () => {
|
4874
4876
|
zn((e) => ({
|
4875
|
-
"
|
4877
|
+
"211bae55": e.cutoffTextLines
|
4876
4878
|
}));
|
4877
4879
|
}, un = Bt.setup;
|
4878
4880
|
Bt.setup = un ? (e, n) => (cn(), un(e, n)) : cn;
|
@@ -5203,9 +5205,9 @@ const jt = {
|
|
5203
5205
|
}
|
5204
5206
|
}, mn = () => {
|
5205
5207
|
zn((e) => ({
|
5206
|
-
"
|
5207
|
-
|
5208
|
-
"
|
5208
|
+
"10d5c803": e.boxesPerRowLarge,
|
5209
|
+
"0bca1bad": e.boxesPerRowMedium,
|
5210
|
+
"113da1cf": e.boxesPerRowSmall
|
5209
5211
|
}));
|
5210
5212
|
}, hn = jt.setup;
|
5211
5213
|
jt.setup = hn ? (e, n) => (mn(), hn(e, n)) : mn;
|
@@ -5266,7 +5268,7 @@ function Jr(e, n, t, a, l, i) {
|
|
5266
5268
|
], 2)
|
5267
5269
|
]);
|
5268
5270
|
}
|
5269
|
-
const
|
5271
|
+
const Hg = /* @__PURE__ */ O(Rr, [["render", Jr]]);
|
5270
5272
|
function be(e) {
|
5271
5273
|
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);
|
5272
5274
|
}
|
@@ -5332,7 +5334,7 @@ function sd(e, n, t, a, l, i) {
|
|
5332
5334
|
]))), 128))
|
5333
5335
|
]);
|
5334
5336
|
}
|
5335
|
-
const
|
5337
|
+
const Eg = /* @__PURE__ */ O(Yr, [["render", sd]]);
|
5336
5338
|
const od = {
|
5337
5339
|
name: "CmdCompanyLogo",
|
5338
5340
|
data() {
|
@@ -5395,7 +5397,7 @@ const od = {
|
|
5395
5397
|
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";
|
5396
5398
|
}
|
5397
5399
|
}
|
5398
|
-
}, ad = { class: "cmd-company-logo" }, rd = ["href", "title"];
|
5400
|
+
}, ad = { class: "cmd-company-logo company-logo" }, rd = ["href", "title"];
|
5399
5401
|
function dd(e, n, t, a, l, i) {
|
5400
5402
|
var c, f, g, m, _, y;
|
5401
5403
|
const d = Ce, r = se("router-link");
|
@@ -5436,7 +5438,7 @@ function hd(e, n, t, a, l, i) {
|
|
5436
5438
|
F(e.$slots, "default")
|
5437
5439
|
]);
|
5438
5440
|
}
|
5439
|
-
const
|
5441
|
+
const Vg = /* @__PURE__ */ O(ud, [["render", hd]]), fd = {
|
5440
5442
|
data() {
|
5441
5443
|
return {
|
5442
5444
|
defaultMessageProperties: {
|
@@ -5684,7 +5686,7 @@ function Od(e, n, t, a, l, i) {
|
|
5684
5686
|
_: 3
|
5685
5687
|
});
|
5686
5688
|
}
|
5687
|
-
const
|
5689
|
+
const zg = /* @__PURE__ */ O(gd, [["render", Od]]);
|
5688
5690
|
const Ld = {
|
5689
5691
|
name: "CmdCopyrightWrapper"
|
5690
5692
|
}, Dd = {
|
@@ -5701,7 +5703,7 @@ const Ld = {
|
|
5701
5703
|
function Ad(e, n, t, a, l, i) {
|
5702
5704
|
return s(), o("div", Dd, Pd);
|
5703
5705
|
}
|
5704
|
-
const
|
5706
|
+
const qg = /* @__PURE__ */ O(Ld, [["render", Ad]]), Bd = {
|
5705
5707
|
data() {
|
5706
5708
|
return {
|
5707
5709
|
defaultMessageProperties: {
|
@@ -6230,7 +6232,7 @@ function dc(e, n, t, a, l, i) {
|
|
6230
6232
|
], 64)) : F(e.$slots, "default", { key: 1 })
|
6231
6233
|
], 42, sc);
|
6232
6234
|
}
|
6233
|
-
const
|
6235
|
+
const Rg = /* @__PURE__ */ O(lc, [["render", dc]]);
|
6234
6236
|
const cc = {
|
6235
6237
|
name: "CmdFormFilters",
|
6236
6238
|
data() {
|
@@ -6350,7 +6352,7 @@ function _c(e, n, t, a, l, i) {
|
|
6350
6352
|
h("iframe", { src: i.locateAddress }, null, 8, bc)
|
6351
6353
|
]);
|
6352
6354
|
}
|
6353
|
-
const
|
6355
|
+
const Ug = /* @__PURE__ */ O(yc, [["render", _c]]);
|
6354
6356
|
const kc = {
|
6355
6357
|
name: "CmdImageGallery",
|
6356
6358
|
mixins: [J],
|
@@ -6465,7 +6467,7 @@ function Sc(e, n, t, a, l, i) {
|
|
6465
6467
|
], 64))
|
6466
6468
|
]);
|
6467
6469
|
}
|
6468
|
-
const
|
6470
|
+
const Gg = /* @__PURE__ */ O(kc, [["render", Sc]]);
|
6469
6471
|
const Mc = {
|
6470
6472
|
name: "CmdImageZoom",
|
6471
6473
|
props: {
|
@@ -6536,7 +6538,7 @@ function Bc(e, n, t, a, l, i) {
|
|
6536
6538
|
l.showLargeImage ? (s(), o("div", Ac)) : u("", !0)
|
6537
6539
|
]);
|
6538
6540
|
}
|
6539
|
-
const
|
6541
|
+
const Wg = /* @__PURE__ */ O(Mc, [["render", Bc]]);
|
6540
6542
|
const jc = {
|
6541
6543
|
mixins: [
|
6542
6544
|
Nt,
|
@@ -6731,7 +6733,7 @@ function Wc(e, n, t, a, l, i) {
|
|
6731
6733
|
], 2))
|
6732
6734
|
], 10, Fc);
|
6733
6735
|
}
|
6734
|
-
const
|
6736
|
+
const Qg = /* @__PURE__ */ O(jc, [["render", Wc]]);
|
6735
6737
|
const Qc = {
|
6736
6738
|
name: "CmdLoginForm",
|
6737
6739
|
data() {
|
@@ -6923,8 +6925,8 @@ const Qc = {
|
|
6923
6925
|
this.modelChange();
|
6924
6926
|
}
|
6925
6927
|
}
|
6926
|
-
}, Zc = { class: "cmd-login-form flex-container" }, Jc = { class: "flex-container" }, Yc = { class: "option-wrapper flex-container" }, Kc = { key: 1 }, Xc = ["href"], $c = { key: 1 }, eu =
|
6927
|
-
function
|
6928
|
+
}, Zc = { class: "cmd-login-form flex-container" }, Jc = { class: "flex-container" }, Yc = { class: "option-wrapper flex-container" }, Kc = { key: 1 }, Xc = ["href"], $c = { key: 1 }, eu = { key: 1 }, tu = ["type", "disabled"], nu = { key: 1 }, iu = { class: "cmd-login-form flex-container" }, lu = { class: "option-wrapper flex-container" }, su = { key: 1 }, ou = ["type", "disabled"], au = { key: 1 };
|
6929
|
+
function ru(e, n, t, a, l, i) {
|
6928
6930
|
var g, m, _, y, w, x, S;
|
6929
6931
|
const d = R, r = $, c = z, f = se("router-link");
|
6930
6932
|
return s(), o(k, null, [
|
@@ -6998,8 +7000,8 @@ function du(e, n, t, a, l, i) {
|
|
6998
7000
|
type: t.options.createAccount.icon.iconType,
|
6999
7001
|
title: t.options.createAccount.icon.tooltip
|
7000
7002
|
}, null, 8, ["class", "type", "title"])) : u("", !0),
|
7001
|
-
|
7002
|
-
t.options.createAccount.text ? (s(), o("span",
|
7003
|
+
j(" /> "),
|
7004
|
+
t.options.createAccount.text ? (s(), o("span", eu, p(t.options.createAccount.text), 1)) : u("", !0)
|
7003
7005
|
]),
|
7004
7006
|
_: 1
|
7005
7007
|
}, 8, ["to"])) : u("", !0)
|
@@ -7017,13 +7019,13 @@ function du(e, n, t, a, l, i) {
|
|
7017
7019
|
type: t.buttons.login.icon.iconType,
|
7018
7020
|
title: t.buttons.login.icon.tooltip
|
7019
7021
|
}, null, 8, ["iconClass", "type", "title"])) : u("", !0),
|
7020
|
-
t.buttons.login.text ? (s(), o("span",
|
7021
|
-
], 10,
|
7022
|
+
t.buttons.login.text ? (s(), o("span", nu, p(t.buttons.login.text), 1)) : u("", !0)
|
7023
|
+
], 10, tu)) : u("", !0)
|
7022
7024
|
])
|
7023
7025
|
], 512), [
|
7024
7026
|
[de, !l.sendLogin]
|
7025
7027
|
]),
|
7026
|
-
ne(h("fieldset",
|
7028
|
+
ne(h("fieldset", iu, [
|
7027
7029
|
h("legend", {
|
7028
7030
|
class: b({ hidden: !t.showLegend })
|
7029
7031
|
}, p(t.textLegendForgotLoginForm), 3),
|
@@ -7041,7 +7043,7 @@ function du(e, n, t, a, l, i) {
|
|
7041
7043
|
modelValue: l.sendLoginMail,
|
7042
7044
|
"onUpdate:modelValue": n[7] || (n[7] = (M) => l.sendLoginMail = M)
|
7043
7045
|
}, null, 8, ["fieldIconClass", "labelText", "placeholder", "name", "required", "id", "modelValue"]),
|
7044
|
-
h("div",
|
7046
|
+
h("div", lu, [
|
7045
7047
|
h("a", {
|
7046
7048
|
href: "#",
|
7047
7049
|
onClick: n[8] || (n[8] = I((M) => l.sendLogin = !1, ["prevent"]))
|
@@ -7052,7 +7054,7 @@ function du(e, n, t, a, l, i) {
|
|
7052
7054
|
type: t.options.backToLoginForm.icon.iconType,
|
7053
7055
|
title: t.options.backToLoginForm.icon.tooltip
|
7054
7056
|
}, null, 8, ["iconClass", "type", "title"])) : u("", !0),
|
7055
|
-
t.options.backToLoginForm.text ? (s(), o("span",
|
7057
|
+
t.options.backToLoginForm.text ? (s(), o("span", su, p(t.options.backToLoginForm.text), 1)) : u("", !0)
|
7056
7058
|
]),
|
7057
7059
|
t.buttons.sendLogin.linkType === "button" ? (s(), o("button", {
|
7058
7060
|
key: 0,
|
@@ -7065,16 +7067,16 @@ function du(e, n, t, a, l, i) {
|
|
7065
7067
|
iconClass: (x = t.buttons.sendLogin.icon) == null ? void 0 : x.iconClass,
|
7066
7068
|
title: (S = t.buttons.sendLogin.icon) == null ? void 0 : S.tooltip
|
7067
7069
|
}, null, 8, ["iconClass", "title"])) : u("", !0),
|
7068
|
-
t.buttons.sendLogin.text ? (s(), o("span",
|
7069
|
-
], 10,
|
7070
|
+
t.buttons.sendLogin.text ? (s(), o("span", au, p(t.buttons.sendLogin.text), 1)) : u("", !0)
|
7071
|
+
], 10, ou)) : u("", !0)
|
7070
7072
|
])
|
7071
7073
|
], 512), [
|
7072
7074
|
[de, l.sendLogin]
|
7073
7075
|
])
|
7074
7076
|
], 64);
|
7075
7077
|
}
|
7076
|
-
const
|
7077
|
-
const
|
7078
|
+
const Zg = /* @__PURE__ */ O(Qc, [["render", ru]]);
|
7079
|
+
const du = {
|
7078
7080
|
name: "CmdMainNavigation",
|
7079
7081
|
data() {
|
7080
7082
|
return {
|
@@ -7164,11 +7166,11 @@ const cu = {
|
|
7164
7166
|
this.$emit("offcanvas", { open: this.showOffcanvas });
|
7165
7167
|
}
|
7166
7168
|
}
|
7167
|
-
},
|
7169
|
+
}, cu = {
|
7168
7170
|
key: 0,
|
7169
7171
|
class: "close-nav"
|
7170
|
-
},
|
7171
|
-
function
|
7172
|
+
}, uu = ["href", "title", "target", "onClick"], mu = { key: 1 }, hu = { key: 1 }, fu = ["aria-expanded"], gu = ["href", "title", "target", "onClick"], pu = { key: 1 }, yu = { key: 1 }, Cu = ["aria-expanded"], bu = ["href", "title", "target", "onClick"], _u = { key: 1 }, ku = { key: 1 };
|
7173
|
+
function vu(e, n, t, a, l, i) {
|
7172
7174
|
const d = z, r = se("router-link");
|
7173
7175
|
return s(), o("div", {
|
7174
7176
|
class: b([
|
@@ -7187,7 +7189,7 @@ function xu(e, n, t, a, l, i) {
|
|
7187
7189
|
h("ul", {
|
7188
7190
|
class: b({ "stretch-items": t.stretchMainItems })
|
7189
7191
|
}, [
|
7190
|
-
l.showOffcanvas ? (s(), o("li",
|
7192
|
+
l.showOffcanvas ? (s(), o("li", cu, [
|
7191
7193
|
h("a", {
|
7192
7194
|
href: "#",
|
7193
7195
|
id: "close-offcanvas",
|
@@ -7224,12 +7226,12 @@ function xu(e, n, t, a, l, i) {
|
|
7224
7226
|
iconClass: c.iconClass,
|
7225
7227
|
type: c.iconType
|
7226
7228
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
7227
|
-
c.text ? (s(), o("span",
|
7229
|
+
c.text ? (s(), o("span", mu, p(c.text), 1)) : u("", !0),
|
7228
7230
|
(m = c == null ? void 0 : c.subentries) != null && m.length ? (s(), o("span", {
|
7229
7231
|
key: 2,
|
7230
7232
|
class: b(["subentry-icon", t.subentriesIconClass])
|
7231
7233
|
}, null, 2)) : u("", !0)
|
7232
|
-
], 40,
|
7234
|
+
], 40, uu)) : u("", !0),
|
7233
7235
|
c.type === "router" ? (s(), C(r, {
|
7234
7236
|
key: 1,
|
7235
7237
|
to: i.getRoute(c),
|
@@ -7241,7 +7243,7 @@ function xu(e, n, t, a, l, i) {
|
|
7241
7243
|
iconClass: c.iconClass,
|
7242
7244
|
type: c.iconType
|
7243
7245
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
7244
|
-
c.text ? (s(), o("span",
|
7246
|
+
c.text ? (s(), o("span", hu, p(c.text), 1)) : u("", !0),
|
7245
7247
|
c.subentries && c.subentries.length > 0 ? (s(), o("span", {
|
7246
7248
|
key: 2,
|
7247
7249
|
class: b(["subentry-icon", t.subentriesIconClass])
|
@@ -7271,12 +7273,12 @@ function xu(e, n, t, a, l, i) {
|
|
7271
7273
|
iconClass: y.iconClass,
|
7272
7274
|
type: y.iconType
|
7273
7275
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
7274
|
-
y.text ? (s(), o("span",
|
7276
|
+
y.text ? (s(), o("span", pu, p(y.text), 1)) : u("", !0),
|
7275
7277
|
y.subentries && y.subentries.length > 0 ? (s(), o("span", {
|
7276
7278
|
key: 2,
|
7277
7279
|
class: b(["subentry-icon", t.subentriesIconClass])
|
7278
7280
|
}, null, 2)) : u("", !0)
|
7279
|
-
], 40,
|
7281
|
+
], 40, gu)) : u("", !0),
|
7280
7282
|
y.type === "router" ? (s(), C(r, {
|
7281
7283
|
key: 1,
|
7282
7284
|
to: i.getRoute(y),
|
@@ -7288,7 +7290,7 @@ function xu(e, n, t, a, l, i) {
|
|
7288
7290
|
iconClass: y.iconClass,
|
7289
7291
|
type: y.iconType
|
7290
7292
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
7291
|
-
y.text ? (s(), o("span",
|
7293
|
+
y.text ? (s(), o("span", yu, p(y.text), 1)) : u("", !0),
|
7292
7294
|
y.subentries && y.subentries.length > 0 ? (s(), o("span", {
|
7293
7295
|
key: 2,
|
7294
7296
|
class: b(["subentry-icon", t.subentriesIconClass])
|
@@ -7313,12 +7315,12 @@ function xu(e, n, t, a, l, i) {
|
|
7313
7315
|
iconClass: x.iconClass,
|
7314
7316
|
type: x.iconType
|
7315
7317
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
7316
|
-
x.text ? (s(), o("span",
|
7318
|
+
x.text ? (s(), o("span", _u, p(x.text), 1)) : u("", !0),
|
7317
7319
|
x.subentries && x.subentries.length > 0 ? (s(), o("span", {
|
7318
7320
|
key: 2,
|
7319
7321
|
class: b(["subentry-icon", t.subentriesIconClass])
|
7320
7322
|
}, null, 2)) : u("", !0)
|
7321
|
-
], 8,
|
7323
|
+
], 8, bu)) : u("", !0),
|
7322
7324
|
c.type === "router" ? (s(), C(r, {
|
7323
7325
|
key: 1,
|
7324
7326
|
to: i.getRoute(x),
|
@@ -7330,7 +7332,7 @@ function xu(e, n, t, a, l, i) {
|
|
7330
7332
|
iconClass: x.iconClass,
|
7331
7333
|
type: x.iconType
|
7332
7334
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
7333
|
-
x.text ? (s(), o("span",
|
7335
|
+
x.text ? (s(), o("span", ku, p(x.text), 1)) : u("", !0),
|
7334
7336
|
x.subentries && x.subentries.length > 0 ? (s(), o("span", {
|
7335
7337
|
key: 2,
|
7336
7338
|
class: b(["subentry-icon", t.subentriesIconClass])
|
@@ -7339,9 +7341,9 @@ function xu(e, n, t, a, l, i) {
|
|
7339
7341
|
_: 2
|
7340
7342
|
}, 1032, ["to", "target"])) : u("", !0)
|
7341
7343
|
]))), 128))
|
7342
|
-
], 8,
|
7344
|
+
], 8, Cu)) : u("", !0)
|
7343
7345
|
], 2))), 128))
|
7344
|
-
], 8,
|
7346
|
+
], 8, fu)) : u("", !0)
|
7345
7347
|
], 2);
|
7346
7348
|
}), 128))
|
7347
7349
|
], 2)
|
@@ -7363,8 +7365,8 @@ function xu(e, n, t, a, l, i) {
|
|
7363
7365
|
])) : u("", !0)
|
7364
7366
|
], 2);
|
7365
7367
|
}
|
7366
|
-
const
|
7367
|
-
const
|
7368
|
+
const xu = /* @__PURE__ */ O(du, [["render", vu]]);
|
7369
|
+
const wu = {
|
7368
7370
|
name: "CmdMultistepFormProgressBar",
|
7369
7371
|
data() {
|
7370
7372
|
return {
|
@@ -7395,19 +7397,19 @@ const Tu = {
|
|
7395
7397
|
return be(e);
|
7396
7398
|
}
|
7397
7399
|
}
|
7398
|
-
},
|
7400
|
+
}, Tu = { class: "cmd-multistep-form-progress-bar" }, Iu = ["href", "onClick", "title"], Su = {
|
7399
7401
|
key: 0,
|
7400
7402
|
class: "number"
|
7401
|
-
},
|
7403
|
+
}, Mu = { key: 2 }, Ou = {
|
7402
7404
|
key: 0,
|
7403
7405
|
class: "number"
|
7404
|
-
},
|
7406
|
+
}, Lu = { key: 2 }, Du = ["type", "name", "title", "formaction", "onClick"], Nu = {
|
7405
7407
|
key: 0,
|
7406
7408
|
class: "number"
|
7407
|
-
},
|
7408
|
-
function
|
7409
|
+
}, Pu = { key: 2 };
|
7410
|
+
function Au(e, n, t, a, l, i) {
|
7409
7411
|
const d = z, r = se("router-link");
|
7410
|
-
return s(), o("ol",
|
7412
|
+
return s(), o("ol", Tu, [
|
7411
7413
|
(s(!0), o(k, null, A(t.multisteps, (c, f) => (s(), o("li", {
|
7412
7414
|
key: f,
|
7413
7415
|
class: b({ active: l.activeLink === f })
|
@@ -7418,30 +7420,30 @@ function Bu(e, n, t, a, l, i) {
|
|
7418
7420
|
onClick: I((g) => i.clickedStep(g, f), ["stop", "prevent"]),
|
7419
7421
|
title: c.tooltip
|
7420
7422
|
}, [
|
7421
|
-
t.showStepNumber ? (s(), o("span",
|
7423
|
+
t.showStepNumber ? (s(), o("span", Su, p(f + 1), 1)) : u("", !0),
|
7422
7424
|
c.iconClass ? (s(), C(d, {
|
7423
7425
|
key: 1,
|
7424
7426
|
iconClass: c.iconClass,
|
7425
7427
|
type: c.iconType
|
7426
7428
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
7427
|
-
c.text ? (s(), o("span",
|
7429
|
+
c.text ? (s(), o("span", Mu, p(c.text), 1)) : u("", !0),
|
7428
7430
|
h("span", {
|
7429
7431
|
class: b(t.separatorIconClass)
|
7430
7432
|
}, null, 2)
|
7431
|
-
], 8,
|
7433
|
+
], 8, Iu)) : u("", !0),
|
7432
7434
|
c.type === "router" ? (s(), C(r, {
|
7433
7435
|
key: 1,
|
7434
7436
|
to: i.getRoute(c),
|
7435
7437
|
title: c.tooltip
|
7436
7438
|
}, {
|
7437
7439
|
default: N(() => [
|
7438
|
-
t.showStepNumber ? (s(), o("span",
|
7440
|
+
t.showStepNumber ? (s(), o("span", Ou, p(f + 1), 1)) : u("", !0),
|
7439
7441
|
c.iconClass ? (s(), C(d, {
|
7440
7442
|
key: 1,
|
7441
7443
|
iconClass: c.iconClass,
|
7442
7444
|
type: c.iconType
|
7443
7445
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
7444
|
-
c.text ? (s(), o("span",
|
7446
|
+
c.text ? (s(), o("span", Lu, p(c.text), 1)) : u("", !0),
|
7445
7447
|
h("span", {
|
7446
7448
|
class: b(t.separatorIconClass)
|
7447
7449
|
}, null, 2)
|
@@ -7457,21 +7459,21 @@ function Bu(e, n, t, a, l, i) {
|
|
7457
7459
|
formaction: c.formaction,
|
7458
7460
|
onClick: I((g) => i.clickedStep(g, f), ["stop", "prevent"])
|
7459
7461
|
}, [
|
7460
|
-
t.showStepNumber ? (s(), o("span",
|
7462
|
+
t.showStepNumber ? (s(), o("span", Nu, p(f + 1), 1)) : u("", !0),
|
7461
7463
|
c.iconClass ? (s(), C(d, {
|
7462
7464
|
key: 1,
|
7463
7465
|
iconClass: c.iconClass,
|
7464
7466
|
type: c.iconType
|
7465
7467
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
7466
|
-
c.text ? (s(), o("span",
|
7468
|
+
c.text ? (s(), o("span", Pu, p(c.text), 1)) : u("", !0),
|
7467
7469
|
h("span", {
|
7468
7470
|
class: b(t.separatorIconClass)
|
7469
7471
|
}, null, 2)
|
7470
|
-
], 8,
|
7472
|
+
], 8, Du)) : u("", !0)
|
7471
7473
|
], 2))), 128))
|
7472
7474
|
]);
|
7473
7475
|
}
|
7474
|
-
const
|
7476
|
+
const Jg = /* @__PURE__ */ O(wu, [["render", Au]]);
|
7475
7477
|
function pn(e, n, t, a = !0) {
|
7476
7478
|
function l(i, d) {
|
7477
7479
|
return d && i < 10 ? "0" + i : i;
|
@@ -7484,7 +7486,7 @@ function pn(e, n, t, a = !0) {
|
|
7484
7486
|
return l(i, a) + e + l(d, !0) + n;
|
7485
7487
|
};
|
7486
7488
|
}
|
7487
|
-
const
|
7489
|
+
const Bu = {
|
7488
7490
|
name: "CmdOpeningHoursItem",
|
7489
7491
|
mixins: [J],
|
7490
7492
|
data() {
|
@@ -7546,20 +7548,20 @@ const ju = {
|
|
7546
7548
|
deep: !0
|
7547
7549
|
}
|
7548
7550
|
}
|
7549
|
-
},
|
7551
|
+
}, ju = { class: "cmd-opening-hours-item" }, Fu = {
|
7550
7552
|
key: 0,
|
7551
7553
|
class: "am"
|
7552
|
-
},
|
7554
|
+
}, Hu = {
|
7553
7555
|
key: 1,
|
7554
7556
|
class: "pm"
|
7555
|
-
},
|
7557
|
+
}, Eu = { class: "flex-container no-flex" }, Vu = { class: "flex-container no-flex am-wrapper" }, zu = {
|
7556
7558
|
key: 1,
|
7557
7559
|
class: "input-wrapper"
|
7558
|
-
},
|
7560
|
+
}, qu = ["title"], Ru = { class: "flex-container no-flex pm-wrapper" }, Uu = {
|
7559
7561
|
key: 1,
|
7560
7562
|
class: "input-wrapper"
|
7561
|
-
},
|
7562
|
-
function
|
7563
|
+
}, Gu = ["title"];
|
7564
|
+
function Wu(e, n, t, a, l, i) {
|
7563
7565
|
const d = $;
|
7564
7566
|
return e.editing ? (s(), o(k, { key: 1 }, [
|
7565
7567
|
h("dt", null, [
|
@@ -7574,8 +7576,8 @@ function Qu(e, n, t, a, l, i) {
|
|
7574
7576
|
"onUpdate:modelValue": n[0] || (n[0] = (r) => l.editableDay.day = r)
|
7575
7577
|
}, null, 8, ["modelValue"])
|
7576
7578
|
]),
|
7577
|
-
h("dd",
|
7578
|
-
h("div",
|
7579
|
+
h("dd", Eu, [
|
7580
|
+
h("div", Vu, [
|
7579
7581
|
l.editableDay.amClosed ? (s(), C(d, {
|
7580
7582
|
key: 0,
|
7581
7583
|
element: "input",
|
@@ -7587,7 +7589,7 @@ function Qu(e, n, t, a, l, i) {
|
|
7587
7589
|
modelValue: l.editableDay.amDisplayText,
|
7588
7590
|
"onUpdate:modelValue": n[1] || (n[1] = (r) => l.editableDay.amDisplayText = r)
|
7589
7591
|
}, null, 8, ["modelValue"])) : u("", !0),
|
7590
|
-
l.editableDay.amClosed ? u("", !0) : (s(), o("div",
|
7592
|
+
l.editableDay.amClosed ? u("", !0) : (s(), o("div", zu, [
|
7591
7593
|
v(d, {
|
7592
7594
|
element: "input",
|
7593
7595
|
type: "time",
|
@@ -7615,9 +7617,9 @@ function Qu(e, n, t, a, l, i) {
|
|
7615
7617
|
onClick: n[4] || (n[4] = I((r) => i.toggleClosedStatus("am"), ["prevent"])),
|
7616
7618
|
title: l.editableDay.amClosed ? "Set to open" : "Set to closed",
|
7617
7619
|
class: b(l.editableDay.amClosed ? "icon-clock" : "icon-blocked")
|
7618
|
-
}, null, 10,
|
7620
|
+
}, null, 10, qu)
|
7619
7621
|
]),
|
7620
|
-
h("div",
|
7622
|
+
h("div", Ru, [
|
7621
7623
|
l.editableDay.pmClosed ? (s(), C(d, {
|
7622
7624
|
key: 0,
|
7623
7625
|
element: "input",
|
@@ -7629,7 +7631,7 @@ function Qu(e, n, t, a, l, i) {
|
|
7629
7631
|
modelValue: l.editableDay.pmDisplayText,
|
7630
7632
|
"onUpdate:modelValue": n[5] || (n[5] = (r) => l.editableDay.pmDisplayText = r)
|
7631
7633
|
}, null, 8, ["modelValue"])) : u("", !0),
|
7632
|
-
l.editableDay.pmClosed ? u("", !0) : (s(), o("div",
|
7634
|
+
l.editableDay.pmClosed ? u("", !0) : (s(), o("div", Uu, [
|
7633
7635
|
v(d, {
|
7634
7636
|
element: "input",
|
7635
7637
|
type: "time",
|
@@ -7657,20 +7659,20 @@ function Qu(e, n, t, a, l, i) {
|
|
7657
7659
|
onClick: n[8] || (n[8] = I((r) => i.toggleClosedStatus("pm"), ["prevent"])),
|
7658
7660
|
title: l.editableDay.pmClosed ? "Set to open" : "Set to closed",
|
7659
7661
|
class: b(l.editableDay.pmClosed ? "icon-clock" : "icon-blocked")
|
7660
|
-
}, null, 10,
|
7662
|
+
}, null, 10, Gu)
|
7661
7663
|
])
|
7662
7664
|
])
|
7663
7665
|
], 64)) : (s(), o(k, { key: 0 }, [
|
7664
|
-
h("dt",
|
7666
|
+
h("dt", ju, p(t.day.day), 1),
|
7665
7667
|
h("dd", null, [
|
7666
|
-
t.day.am ? (s(), o("span",
|
7668
|
+
t.day.am ? (s(), o("span", Fu, [
|
7667
7669
|
t.day.am.displayText ? (s(), o(k, { key: 0 }, [
|
7668
7670
|
j(p(t.day.am.displayText), 1)
|
7669
7671
|
], 64)) : (s(), o(k, { key: 1 }, [
|
7670
7672
|
j(p(i.getTime(t.day.am.fromTime)) + " " + p(t.separator) + " " + p(i.getTime(t.day.am.tillTime)), 1)
|
7671
7673
|
], 64))
|
7672
7674
|
])) : u("", !0),
|
7673
|
-
t.day.pm ? (s(), o("span",
|
7675
|
+
t.day.pm ? (s(), o("span", Hu, [
|
7674
7676
|
t.day.pm.displayText ? (s(), o(k, { key: 0 }, [
|
7675
7677
|
j(p(t.day.pm.displayText), 1)
|
7676
7678
|
], 64)) : (s(), o(k, { key: 1 }, [
|
@@ -7680,8 +7682,8 @@ function Qu(e, n, t, a, l, i) {
|
|
7680
7682
|
])
|
7681
7683
|
], 64));
|
7682
7684
|
}
|
7683
|
-
const
|
7684
|
-
function
|
7685
|
+
const Qu = /* @__PURE__ */ O(Bu, [["render", Wu]]);
|
7686
|
+
function Zu(e, n, t, a = !0) {
|
7685
7687
|
function l(i, d) {
|
7686
7688
|
return d && i < 10 ? "0" + i : i;
|
7687
7689
|
}
|
@@ -7693,7 +7695,7 @@ function Ju(e, n, t, a = !0) {
|
|
7693
7695
|
return l(i, a) + e + l(d, !0) + n;
|
7694
7696
|
};
|
7695
7697
|
}
|
7696
|
-
const
|
7698
|
+
const Ju = {
|
7697
7699
|
name: "CmdOpeningHours",
|
7698
7700
|
mixins: [J],
|
7699
7701
|
data() {
|
@@ -7865,7 +7867,7 @@ const Yu = {
|
|
7865
7867
|
};
|
7866
7868
|
},
|
7867
7869
|
getTime(e) {
|
7868
|
-
return this.timeFormatter ? this.timeFormatter(e.hours, e.mins) :
|
7870
|
+
return this.timeFormatter ? this.timeFormatter(e.hours, e.mins) : Zu(":", " hrs", "", !1)(e.hours, e.mins);
|
7869
7871
|
},
|
7870
7872
|
updateHandlerProvider() {
|
7871
7873
|
const e = this.editableOpeningHours, n = this.editableTextOpen, t = this.editableTextClosed, a = this.editableTextHolidays, l = this.editableTextMiscInfo;
|
@@ -7878,22 +7880,22 @@ const Yu = {
|
|
7878
7880
|
});
|
7879
7881
|
}
|
7880
7882
|
}
|
7881
|
-
},
|
7883
|
+
}, Yu = { class: "cmd-opening-hours" }, Ku = ["href"], Xu = {
|
7882
7884
|
key: 2,
|
7883
7885
|
class: "flex-container"
|
7884
|
-
},
|
7885
|
-
|
7886
|
-
|
7887
|
-
],
|
7886
|
+
}, $u = { key: 3 }, em = /* @__PURE__ */ h("span", { class: "icon-plus" }, null, -1), tm = /* @__PURE__ */ h("span", null, "Add new entry", -1), nm = [
|
7887
|
+
em,
|
7888
|
+
tm
|
7889
|
+
], im = { class: "edit-mode-opening-hours-item" }, lm = { key: 6 }, sm = { key: 0 }, om = { key: 1 }, am = {
|
7888
7890
|
key: 7,
|
7889
7891
|
class: "flex-container vertical"
|
7890
7892
|
};
|
7891
|
-
function
|
7893
|
+
function rm(e, n, t, a, l, i) {
|
7892
7894
|
var m, _, y;
|
7893
|
-
const d = R, r = se("router-link"), c = $, f =
|
7894
|
-
return s(), o("div",
|
7895
|
+
const d = R, r = se("router-link"), c = $, f = Qu, g = he;
|
7896
|
+
return s(), o("div", Yu, [
|
7895
7897
|
((m = t.cmdHeadline) == null ? void 0 : m.headlineText) || e.editModeContext ? (s(), C(d, W(B({ key: 0 }, t.cmdHeadline)), null, 16)) : u("", !0),
|
7896
|
-
e.editing ? (s(), o("div",
|
7898
|
+
e.editing ? (s(), o("div", Xu, [
|
7897
7899
|
v(c, {
|
7898
7900
|
element: "input",
|
7899
7901
|
type: "text",
|
@@ -7918,7 +7920,7 @@ function dm(e, n, t, a, l, i) {
|
|
7918
7920
|
key: 0,
|
7919
7921
|
href: t.link.path,
|
7920
7922
|
class: b({ closed: i.isClosed })
|
7921
|
-
}, p(i.textOpenClosed), 11,
|
7923
|
+
}, p(i.textOpenClosed), 11, Ku)) : u("", !0),
|
7922
7924
|
t.link.type === "router" ? (s(), C(r, {
|
7923
7925
|
key: 1,
|
7924
7926
|
to: t.link.path,
|
@@ -7938,7 +7940,7 @@ function dm(e, n, t, a, l, i) {
|
|
7938
7940
|
class: b({ closed: i.isClosed })
|
7939
7941
|
}, p(i.textOpenClosed), 3))
|
7940
7942
|
], 64)),
|
7941
|
-
e.editModeContext ? u("", !0) : (s(), o("dl",
|
7943
|
+
e.editModeContext ? u("", !0) : (s(), o("dl", $u, [
|
7942
7944
|
(s(!0), o(k, null, A(i.openingHoursFormatted, (w, x) => (s(), C(f, {
|
7943
7945
|
key: x,
|
7944
7946
|
day: w,
|
@@ -7951,7 +7953,7 @@ function dm(e, n, t, a, l, i) {
|
|
7951
7953
|
type: "button",
|
7952
7954
|
class: "button confirm small",
|
7953
7955
|
onClick: n[2] || (n[2] = (...w) => i.onAddItem && i.onAddItem(...w))
|
7954
|
-
},
|
7956
|
+
}, nm)) : (s(!0), o(k, { key: 5 }, A(i.openingHoursFormatted, (w, x) => (s(), C(g, {
|
7955
7957
|
key: "x" + x,
|
7956
7958
|
class: "edit-items",
|
7957
7959
|
showComponentName: !1,
|
@@ -7962,7 +7964,7 @@ function dm(e, n, t, a, l, i) {
|
|
7962
7964
|
itemProvider: i.itemProvider
|
7963
7965
|
}, {
|
7964
7966
|
default: N(() => [
|
7965
|
-
h("dl",
|
7967
|
+
h("dl", im, [
|
7966
7968
|
v(f, {
|
7967
7969
|
day: w,
|
7968
7970
|
separator: t.separator,
|
@@ -7972,13 +7974,13 @@ function dm(e, n, t, a, l, i) {
|
|
7972
7974
|
]),
|
7973
7975
|
_: 2
|
7974
7976
|
}, 1032, ["componentProps", "componentPath", "itemProvider"]))), 128)),
|
7975
|
-
!e.editing && (t.textHolidays || t.textMiscInfo) ? (s(), o("div",
|
7976
|
-
t.textHolidays ? (s(), o("p",
|
7977
|
+
!e.editing && (t.textHolidays || t.textMiscInfo) ? (s(), o("div", lm, [
|
7978
|
+
t.textHolidays ? (s(), o("p", sm, [
|
7977
7979
|
h("strong", null, p(t.textHolidays), 1)
|
7978
7980
|
])) : u("", !0),
|
7979
|
-
t.textMiscInfo ? (s(), o("p",
|
7981
|
+
t.textMiscInfo ? (s(), o("p", om, p(t.textMiscInfo), 1)) : u("", !0)
|
7980
7982
|
])) : u("", !0),
|
7981
|
-
e.editing ? (s(), o("div",
|
7983
|
+
e.editing ? (s(), o("div", am, [
|
7982
7984
|
v(c, {
|
7983
7985
|
element: "input",
|
7984
7986
|
type: "text",
|
@@ -8000,7 +8002,7 @@ function dm(e, n, t, a, l, i) {
|
|
8000
8002
|
])) : u("", !0)
|
8001
8003
|
]);
|
8002
8004
|
}
|
8003
|
-
const
|
8005
|
+
const Yg = /* @__PURE__ */ O(Ju, [["render", rm]]), dm = {
|
8004
8006
|
data() {
|
8005
8007
|
return {
|
8006
8008
|
defaultMessageProperties: {
|
@@ -8010,11 +8012,11 @@ const Xg = /* @__PURE__ */ O(Yu, [["render", dm]]), cm = {
|
|
8010
8012
|
};
|
8011
8013
|
}
|
8012
8014
|
};
|
8013
|
-
const
|
8015
|
+
const cm = {
|
8014
8016
|
name: "CmdPager",
|
8015
8017
|
mixins: [
|
8016
8018
|
ie,
|
8017
|
-
|
8019
|
+
dm
|
8018
8020
|
],
|
8019
8021
|
emits: ["click"],
|
8020
8022
|
data() {
|
@@ -8085,10 +8087,10 @@ const um = {
|
|
8085
8087
|
this.currentPage > 1 && this.showPage(this.currentPage - 1);
|
8086
8088
|
}
|
8087
8089
|
}
|
8088
|
-
},
|
8089
|
-
function
|
8090
|
+
}, um = { class: "cmd-pager" }, mm = ["href", "title"], hm = { key: 0 }, fm = { class: "page-index" }, gm = { class: "flex-container" }, pm = ["href", "title", "onClick"], ym = ["href", "title"], Cm = { key: 0 };
|
8091
|
+
function bm(e, n, t, a, l, i) {
|
8090
8092
|
const d = z;
|
8091
|
-
return s(), o("div",
|
8093
|
+
return s(), o("div", um, [
|
8092
8094
|
h("a", {
|
8093
8095
|
href: i.getPreviousHref,
|
8094
8096
|
class: b(["page-change", { disabled: l.currentPage === 1, button: t.linkType === "button" }]),
|
@@ -8099,10 +8101,10 @@ function _m(e, n, t, a, l, i) {
|
|
8099
8101
|
iconClass: t.prevLink.iconClass,
|
8100
8102
|
type: t.prevLink.iconType
|
8101
8103
|
}, null, 8, ["iconClass", "type"]),
|
8102
|
-
t.prevLink.showText ? (s(), o("span",
|
8103
|
-
], 10,
|
8104
|
-
h("div",
|
8105
|
-
h("div",
|
8104
|
+
t.prevLink.showText ? (s(), o("span", hm, p(t.prevLink.text), 1)) : u("", !0)
|
8105
|
+
], 10, mm),
|
8106
|
+
h("div", fm, [
|
8107
|
+
h("div", gm, [
|
8106
8108
|
(s(!0), o(k, null, A(t.pages, (r, c) => (s(), o("a", {
|
8107
8109
|
href: i.getHref(r),
|
8108
8110
|
class: b({ disabled: l.currentPage === c + 1, button: t.linkType === "button" }),
|
@@ -8114,7 +8116,7 @@ function _m(e, n, t, a, l, i) {
|
|
8114
8116
|
h("span", {
|
8115
8117
|
class: b({ hidden: !t.showPageNumbers })
|
8116
8118
|
}, p(c + 1), 3)
|
8117
|
-
], 10,
|
8119
|
+
], 10, pm))), 128))
|
8118
8120
|
])
|
8119
8121
|
]),
|
8120
8122
|
h("a", {
|
@@ -8123,16 +8125,16 @@ function _m(e, n, t, a, l, i) {
|
|
8123
8125
|
onClick: n[1] || (n[1] = I((...r) => i.nextPage && i.nextPage(...r), ["prevent"])),
|
8124
8126
|
title: t.nextLink.showText ? null : t.nextLink.text
|
8125
8127
|
}, [
|
8126
|
-
t.nextLink.showText ? (s(), o("span",
|
8128
|
+
t.nextLink.showText ? (s(), o("span", Cm, p(t.nextLink.text), 1)) : u("", !0),
|
8127
8129
|
v(d, {
|
8128
8130
|
iconClass: t.nextLink.iconClass,
|
8129
8131
|
type: t.nextLink.iconType
|
8130
8132
|
}, null, 8, ["iconClass", "type"])
|
8131
|
-
], 10,
|
8133
|
+
], 10, ym)
|
8132
8134
|
]);
|
8133
8135
|
}
|
8134
|
-
const
|
8135
|
-
const
|
8136
|
+
const Kg = /* @__PURE__ */ O(cm, [["render", bm]]);
|
8137
|
+
const _m = {
|
8136
8138
|
name: "CmdProgressBar",
|
8137
8139
|
inheritAttrs: !1,
|
8138
8140
|
data() {
|
@@ -8158,8 +8160,8 @@ const km = {
|
|
8158
8160
|
required: !0
|
8159
8161
|
}
|
8160
8162
|
}
|
8161
|
-
},
|
8162
|
-
function
|
8163
|
+
}, km = ["for"], vm = { class: "progressbar" }, xm = { key: 0 }, wm = ["id", "value"];
|
8164
|
+
function Tm(e, n, t, a, l, i) {
|
8163
8165
|
return s(), o("label", {
|
8164
8166
|
class: "cmd-progressbar",
|
8165
8167
|
for: t.id
|
@@ -8167,17 +8169,17 @@ function Im(e, n, t, a, l, i) {
|
|
8167
8169
|
h("span", {
|
8168
8170
|
class: b(["label-text", { hidden: !t.showLabel }])
|
8169
8171
|
}, p(t.labelText), 3),
|
8170
|
-
h("span",
|
8171
|
-
t.showLoadingStatus ? (s(), o("span",
|
8172
|
+
h("span", vm, [
|
8173
|
+
t.showLoadingStatus ? (s(), o("span", xm, p(l.loadingStatus) + " %", 1)) : u("", !0),
|
8172
8174
|
h("progress", B(e.$attrs, {
|
8173
8175
|
id: t.id,
|
8174
8176
|
value: l.loadingStatus
|
8175
|
-
}), null, 16,
|
8177
|
+
}), null, 16, wm)
|
8176
8178
|
])
|
8177
|
-
], 8,
|
8179
|
+
], 8, km);
|
8178
8180
|
}
|
8179
|
-
const
|
8180
|
-
const
|
8181
|
+
const Xg = /* @__PURE__ */ O(_m, [["render", Tm]]);
|
8182
|
+
const Im = {
|
8181
8183
|
name: "CmdSidebar",
|
8182
8184
|
data() {
|
8183
8185
|
return {
|
@@ -8227,20 +8229,20 @@ const Sm = {
|
|
8227
8229
|
immediate: !0
|
8228
8230
|
}
|
8229
8231
|
}
|
8230
|
-
},
|
8232
|
+
}, Sm = { class: "inner-sidebar-wrapper" }, Mm = {
|
8231
8233
|
key: 1,
|
8232
8234
|
class: "open-slot-wrapper"
|
8233
|
-
},
|
8235
|
+
}, Om = {
|
8234
8236
|
key: 2,
|
8235
8237
|
class: "closed-slot-wrapper"
|
8236
|
-
},
|
8237
|
-
function
|
8238
|
+
}, Lm = ["title"];
|
8239
|
+
function Dm(e, n, t, a, l, i) {
|
8238
8240
|
var r;
|
8239
8241
|
const d = R;
|
8240
8242
|
return s(), o("aside", {
|
8241
8243
|
class: b(["cmd-sidebar", i.wrapperClass, { box: t.styledAsBox, "collapse-to-right": !t.collapseToLeft }])
|
8242
8244
|
}, [
|
8243
|
-
h("div",
|
8245
|
+
h("div", Sm, [
|
8244
8246
|
((r = t.cmdHeadline) == null ? void 0 : r.headlineText) && l.open ? (s(), C(d, {
|
8245
8247
|
key: 0,
|
8246
8248
|
headlineText: t.cmdHeadline.headlineText,
|
@@ -8248,9 +8250,9 @@ function Nm(e, n, t, a, l, i) {
|
|
8248
8250
|
textAlign: t.cmdHeadline.textAlign,
|
8249
8251
|
class: "sidebar-main-headline"
|
8250
8252
|
}, null, 8, ["headlineText", "headlineLevel", "textAlign"])) : u("", !0),
|
8251
|
-
l.open ? (s(), o("div",
|
8253
|
+
l.open ? (s(), o("div", Mm, [
|
8252
8254
|
F(e.$slots, "open", { openBoxStatus: l.open })
|
8253
|
-
])) : (s(), o("div",
|
8255
|
+
])) : (s(), o("div", Om, [
|
8254
8256
|
F(e.$slots, "closed", { openBoxStatus: l.open })
|
8255
8257
|
]))
|
8256
8258
|
]),
|
@@ -8263,11 +8265,11 @@ function Nm(e, n, t, a, l, i) {
|
|
8263
8265
|
h("span", {
|
8264
8266
|
class: b(i.iconClassOpenCollapse)
|
8265
8267
|
}, null, 2)
|
8266
|
-
], 8,
|
8268
|
+
], 8, Lm)) : u("", !0)
|
8267
8269
|
], 2);
|
8268
8270
|
}
|
8269
|
-
const
|
8270
|
-
const
|
8271
|
+
const $g = /* @__PURE__ */ O(Im, [["render", Dm]]);
|
8272
|
+
const Nm = {
|
8271
8273
|
name: "CmdSiteFooter",
|
8272
8274
|
props: {
|
8273
8275
|
orientation: {
|
@@ -8275,9 +8277,9 @@ const Pm = {
|
|
8275
8277
|
default: "horizontal"
|
8276
8278
|
}
|
8277
8279
|
}
|
8278
|
-
},
|
8279
|
-
function
|
8280
|
-
return s(), o("div",
|
8280
|
+
}, Pm = { class: "cmd-site-footer" };
|
8281
|
+
function Am(e, n, t, a, l, i) {
|
8282
|
+
return s(), o("div", Pm, [
|
8281
8283
|
h("footer", {
|
8282
8284
|
class: b(["flex-container", { vertical: t.orientation === "vertical" }])
|
8283
8285
|
}, [
|
@@ -8285,8 +8287,8 @@ function Bm(e, n, t, a, l, i) {
|
|
8285
8287
|
], 2)
|
8286
8288
|
]);
|
8287
8289
|
}
|
8288
|
-
const
|
8289
|
-
const
|
8290
|
+
const ep = /* @__PURE__ */ O(Nm, [["render", Am]]);
|
8291
|
+
const Bm = {
|
8290
8292
|
name: "CmdSiteHeader",
|
8291
8293
|
emits: ["offcanvas"],
|
8292
8294
|
props: {
|
@@ -8320,18 +8322,18 @@ const jm = {
|
|
8320
8322
|
this.$emit("offcanvas", e);
|
8321
8323
|
}
|
8322
8324
|
}
|
8323
|
-
},
|
8325
|
+
}, jm = {
|
8324
8326
|
key: 0,
|
8325
8327
|
class: "top-header"
|
8326
8328
|
};
|
8327
|
-
function
|
8329
|
+
function Fm(e, n, t, a, l, i) {
|
8328
8330
|
var c, f, g, m, _, y, w, x, S;
|
8329
|
-
const d = cd, r =
|
8331
|
+
const d = cd, r = xu;
|
8330
8332
|
return s(), o("div", {
|
8331
|
-
class: b(["cmd-site-header", { sticky: t.sticky, "navigation-inline": t.navigationInline, "off-canvas-right": ((c = t.cmdMainNavigation) == null ? void 0 : c.offcanvasPosition) === "right" }]),
|
8333
|
+
class: b(["cmd-site-header site-header", { sticky: t.sticky, "navigation-inline": t.navigationInline, "off-canvas-right": ((c = t.cmdMainNavigation) == null ? void 0 : c.offcanvasPosition) === "right" }]),
|
8332
8334
|
role: "banner"
|
8333
8335
|
}, [
|
8334
|
-
e.$slots.topheader ? (s(), o("div",
|
8336
|
+
e.$slots.topheader ? (s(), o("div", jm, [
|
8335
8337
|
F(e.$slots, "topheader")
|
8336
8338
|
])) : u("", !0),
|
8337
8339
|
h("header", {
|
@@ -8365,7 +8367,7 @@ function Hm(e, n, t, a, l, i) {
|
|
8365
8367
|
}, null, 8, ["navigationEntries", "offcanvasPosition", "closeOffcanvas", "onOffcanvas"])) : u("", !0)
|
8366
8368
|
], 2);
|
8367
8369
|
}
|
8368
|
-
const
|
8370
|
+
const tp = /* @__PURE__ */ O(Bm, [["render", Fm]]), Hm = {
|
8369
8371
|
data() {
|
8370
8372
|
return {
|
8371
8373
|
defaultMessageProperties: {
|
@@ -8379,7 +8381,7 @@ const ip = /* @__PURE__ */ O(jm, [["render", Hm]]), Em = {
|
|
8379
8381
|
};
|
8380
8382
|
}
|
8381
8383
|
};
|
8382
|
-
const
|
8384
|
+
const Em = {
|
8383
8385
|
emits: [
|
8384
8386
|
"search",
|
8385
8387
|
"update:modelValueInput1",
|
@@ -8388,7 +8390,7 @@ const Vm = {
|
|
8388
8390
|
"update:modelValueSearchFilters"
|
8389
8391
|
],
|
8390
8392
|
name: "CmdBoxSiteSearch",
|
8391
|
-
mixins: [ie,
|
8393
|
+
mixins: [ie, Hm],
|
8392
8394
|
data() {
|
8393
8395
|
return {
|
8394
8396
|
showFilters: !1
|
@@ -8591,22 +8593,22 @@ const Vm = {
|
|
8591
8593
|
deep: !0
|
8592
8594
|
}
|
8593
8595
|
}
|
8594
|
-
},
|
8596
|
+
}, Vm = { class: "cmd-box-site-search flex-container" }, zm = { class: "flex-container align-bottom" }, qm = { class: "input-wrapper align-bottom" }, Rm = { key: 0 }, Um = { key: 1 }, Gm = {
|
8595
8597
|
key: 0,
|
8596
8598
|
class: "flex-container no-flex",
|
8597
8599
|
role: "listbox",
|
8598
8600
|
"aria-expanded": "true"
|
8599
8601
|
};
|
8600
|
-
function
|
8602
|
+
function Wm(e, n, t, a, l, i) {
|
8601
8603
|
var m, _, y, w, x, S, M, D, q, T;
|
8602
8604
|
const d = R, r = $, c = z, f = ic, g = pc;
|
8603
8605
|
return s(), o(k, null, [
|
8604
|
-
h("fieldset",
|
8606
|
+
h("fieldset", Vm, [
|
8605
8607
|
h("legend", {
|
8606
8608
|
class: b({ hidden: !t.showLegend })
|
8607
8609
|
}, p(t.textLegend), 3),
|
8608
8610
|
t.cmdHeadline ? (s(), C(d, W(B({ key: 0 }, t.cmdHeadline)), null, 16)) : u("", !0),
|
8609
|
-
h("div",
|
8611
|
+
h("div", zm, [
|
8610
8612
|
v(r, {
|
8611
8613
|
element: "input",
|
8612
8614
|
type: t.cmdFormElementInput1.type,
|
@@ -8618,7 +8620,7 @@ function Qm(e, n, t, a, l, i) {
|
|
8618
8620
|
modelValue: i.searchValue1,
|
8619
8621
|
"onUpdate:modelValue": n[0] || (n[0] = (E) => i.searchValue1 = E)
|
8620
8622
|
}, null, 8, ["type", "show-label", "labelText", "placeholder", "required", "showSearchButton", "modelValue"]),
|
8621
|
-
h("div",
|
8623
|
+
h("div", qm, [
|
8622
8624
|
t.cmdFormElementInput2.show ? (s(), C(r, {
|
8623
8625
|
key: 0,
|
8624
8626
|
element: "input",
|
@@ -8660,13 +8662,13 @@ function Qm(e, n, t, a, l, i) {
|
|
8660
8662
|
iconClass: l.showFilters ? (y = (_ = t.cmdIcon) == null ? void 0 : _.showFilters) == null ? void 0 : y.iconClass : (x = (w = t.cmdIcon) == null ? void 0 : w.hideFilters) == null ? void 0 : x.iconClass,
|
8661
8663
|
type: l.showFilters ? (M = (S = t.cmdIcon) == null ? void 0 : S.showFilters) == null ? void 0 : M.iconType : (q = (D = t.cmdIcon) == null ? void 0 : D.hideFilters) == null ? void 0 : q.iconType
|
8662
8664
|
}, null, 8, ["iconClass", "type"]),
|
8663
|
-
l.showFilters ? (s(), o("span",
|
8665
|
+
l.showFilters ? (s(), o("span", Rm, p(e.getMessage("cmdsitesearch.hide_filter_options")), 1)) : (s(), o("span", Um, p(e.getMessage("cmdsitesearch.show_filter_options")), 1))
|
8664
8666
|
]),
|
8665
8667
|
v(ue, { name: "fade" }, {
|
8666
8668
|
default: N(() => {
|
8667
8669
|
var E, P, H, U, G;
|
8668
8670
|
return [
|
8669
|
-
l.showFilters && ((E = t.cmdFakeSelect) == null ? void 0 : E.selectData.length) ? (s(), o("div",
|
8671
|
+
l.showFilters && ((E = t.cmdFakeSelect) == null ? void 0 : E.selectData.length) ? (s(), o("div", Gm, [
|
8670
8672
|
v(f, {
|
8671
8673
|
role: "option",
|
8672
8674
|
selectData: (P = t.cmdFakeSelect) == null ? void 0 : P.selectData,
|
@@ -8691,8 +8693,8 @@ function Qm(e, n, t, a, l, i) {
|
|
8691
8693
|
}, null, 8, ["modelValue", "selectedOptionsName"])) : u("", !0)
|
8692
8694
|
], 64);
|
8693
8695
|
}
|
8694
|
-
const
|
8695
|
-
const
|
8696
|
+
const np = /* @__PURE__ */ O(Em, [["render", Wm]]);
|
8697
|
+
const Qm = {
|
8696
8698
|
name: "CmdSlideshow",
|
8697
8699
|
mixins: [J],
|
8698
8700
|
data() {
|
@@ -8836,14 +8838,14 @@ const Zm = {
|
|
8836
8838
|
});
|
8837
8839
|
}
|
8838
8840
|
}
|
8839
|
-
},
|
8840
|
-
|
8841
|
-
|
8842
|
-
],
|
8841
|
+
}, Zm = ["href", "title"], Jm = /* @__PURE__ */ h("span", { class: "icon-plus" }, null, -1), Ym = /* @__PURE__ */ h("span", null, "Add new slideshow-image", -1), Km = [
|
8842
|
+
Jm,
|
8843
|
+
Ym
|
8844
|
+
], Xm = { key: 2 }, $m = ["onClick", "aria-label", "title"], eh = {
|
8843
8845
|
key: 3,
|
8844
8846
|
class: "item-counter"
|
8845
8847
|
};
|
8846
|
-
function
|
8848
|
+
function th(e, n, t, a, l, i) {
|
8847
8849
|
const d = qe, r = Ce;
|
8848
8850
|
return s(), o("div", {
|
8849
8851
|
class: b(["cmd-slideshow", { "full-width": l.fullWidth }])
|
@@ -8887,7 +8889,7 @@ function nh(e, n, t, a, l, i) {
|
|
8887
8889
|
image: (w = i.currentItem) == null ? void 0 : w.image,
|
8888
8890
|
figcaption: (x = i.currentItem) == null ? void 0 : x.figcaption
|
8889
8891
|
}, null, 8, ["image", "figcaption"])
|
8890
|
-
], 8,
|
8892
|
+
], 8, Zm)) : (s(), C(r, {
|
8891
8893
|
key: 1,
|
8892
8894
|
image: (S = i.currentItem) == null ? void 0 : S.image,
|
8893
8895
|
figcaption: (M = i.currentItem) == null ? void 0 : M.figcaption
|
@@ -8899,7 +8901,7 @@ function nh(e, n, t, a, l, i) {
|
|
8899
8901
|
type: "button",
|
8900
8902
|
class: "button confirm",
|
8901
8903
|
onClick: n[0] || (n[0] = (...T) => i.onAddItem && i.onAddItem(...T))
|
8902
|
-
},
|
8904
|
+
}, Km)) : u("", !0)
|
8903
8905
|
];
|
8904
8906
|
}),
|
8905
8907
|
_: 3
|
@@ -8909,7 +8911,7 @@ function nh(e, n, t, a, l, i) {
|
|
8909
8911
|
onClick: I(i.showNextItem, ["prevent"]),
|
8910
8912
|
class: { disabled: l.slideshowItemEditing }
|
8911
8913
|
}, i.tooltipForSlidebuttons), null, 16, ["onClick", "class"])) : u("", !0),
|
8912
|
-
t.showQuickLinkIcons ? (s(), o("ol",
|
8914
|
+
t.showQuickLinkIcons ? (s(), o("ol", Xm, [
|
8913
8915
|
(s(!0), o(k, null, A(t.slideshowItems, (c, f) => (s(), o("li", {
|
8914
8916
|
key: f,
|
8915
8917
|
class: b({ active: f === l.index })
|
@@ -8920,15 +8922,15 @@ function nh(e, n, t, a, l, i) {
|
|
8920
8922
|
onClick: I((g) => i.showItem(f), ["prevent"]),
|
8921
8923
|
"aria-label": l.index,
|
8922
8924
|
title: l.slideshowItemEditing ? "Not allowed while editing!" : "Switch to image #" + (f + 1)
|
8923
|
-
}, null, 10,
|
8925
|
+
}, null, 10, $m)
|
8924
8926
|
], 2))), 128))
|
8925
8927
|
])) : u("", !0),
|
8926
|
-
t.showCounter ? (s(), o("span",
|
8928
|
+
t.showCounter ? (s(), o("span", eh, p(l.index + 1) + "/" + p(t.slideshowItems.length), 1)) : u("", !0)
|
8927
8929
|
], 32)
|
8928
8930
|
], 2);
|
8929
8931
|
}
|
8930
|
-
const
|
8931
|
-
const
|
8932
|
+
const ip = /* @__PURE__ */ O(Qm, [["render", th]]);
|
8933
|
+
const nh = {
|
8932
8934
|
name: "CmdSocialNetworksItem",
|
8933
8935
|
data() {
|
8934
8936
|
return {
|
@@ -8944,8 +8946,7 @@ const ih = {
|
|
8944
8946
|
required: !0
|
8945
8947
|
},
|
8946
8948
|
userMustAcceptDataPrivacy: {
|
8947
|
-
type: Boolean
|
8948
|
-
default: !0
|
8949
|
+
type: Boolean
|
8949
8950
|
},
|
8950
8951
|
buttonTextAlign: {
|
8951
8952
|
type: String,
|
@@ -8993,10 +8994,10 @@ const ih = {
|
|
8993
8994
|
});
|
8994
8995
|
}
|
8995
8996
|
}
|
8996
|
-
},
|
8997
|
-
function
|
8997
|
+
}, ih = { class: "cmd-social-networks-item" }, lh = ["id", "href", "title"], sh = { key: 1 };
|
8998
|
+
function oh(e, n, t, a, l, i) {
|
8998
8999
|
const d = z;
|
8999
|
-
return s(), o("li",
|
9000
|
+
return s(), o("li", ih, [
|
9000
9001
|
(s(), o("a", {
|
9001
9002
|
key: t.network.path,
|
9002
9003
|
class: b(["button", { disabled: t.userMustAcceptDataPrivacy && !t.dataPrivacyAccepted }, { "text-align-right": t.buttonTextAlign === "right" }]),
|
@@ -9011,12 +9012,12 @@ function ah(e, n, t, a, l, i) {
|
|
9011
9012
|
iconClass: t.network.iconClass,
|
9012
9013
|
type: t.network.iconType
|
9013
9014
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
9014
|
-
t.network.linkText ? (s(), o("span",
|
9015
|
-
], 10,
|
9015
|
+
t.network.linkText ? (s(), o("span", sh, p(t.network.linkText), 1)) : u("", !0)
|
9016
|
+
], 10, lh))
|
9016
9017
|
]);
|
9017
9018
|
}
|
9018
|
-
const
|
9019
|
-
const
|
9019
|
+
const ah = /* @__PURE__ */ O(nh, [["render", oh]]);
|
9020
|
+
const rh = {
|
9020
9021
|
name: "CmdSocialNetworks",
|
9021
9022
|
mixins: [J],
|
9022
9023
|
data() {
|
@@ -9127,12 +9128,12 @@ const dh = {
|
|
9127
9128
|
};
|
9128
9129
|
}
|
9129
9130
|
}
|
9130
|
-
},
|
9131
|
-
|
9131
|
+
}, dh = /* @__PURE__ */ h("span", { class: "icon-plus" }, null, -1), ch = [
|
9132
|
+
dh
|
9132
9133
|
];
|
9133
|
-
function
|
9134
|
+
function uh(e, n, t, a, l, i) {
|
9134
9135
|
var g, m;
|
9135
|
-
const d = R, r = $, c =
|
9136
|
+
const d = R, r = $, c = ah, f = he;
|
9136
9137
|
return s(), o("div", {
|
9137
9138
|
class: b(["cmd-social-networks", { stretch: t.stretchButtons }, i.alignment])
|
9138
9139
|
}, [
|
@@ -9170,28 +9171,31 @@ function mh(e, n, t, a, l, i) {
|
|
9170
9171
|
_: 2
|
9171
9172
|
}, 1032, ["componentProps", "componentPath"]))), 128)) : (s(!0), o(k, { key: 0 }, A(i.validNetworks, (_, y) => (s(), C(c, {
|
9172
9173
|
key: y,
|
9173
|
-
network: _
|
9174
|
-
|
9174
|
+
network: _,
|
9175
|
+
userMustAcceptDataPrivacy: t.userMustAcceptDataPrivacy,
|
9176
|
+
buttonTextAlign: t.buttonTextAlign,
|
9177
|
+
dataPrivacyAccepted: l.dataPrivacyAccepted
|
9178
|
+
}, null, 8, ["network", "userMustAcceptDataPrivacy", "buttonTextAlign", "dataPrivacyAccepted"]))), 128))
|
9175
9179
|
], 2)) : (s(), o("button", {
|
9176
9180
|
key: 3,
|
9177
9181
|
class: "button small",
|
9178
9182
|
title: "Add new item",
|
9179
9183
|
onClick: n[1] || (n[1] = (..._) => i.onAddItem && i.onAddItem(..._))
|
9180
|
-
},
|
9184
|
+
}, ch))
|
9181
9185
|
], 2);
|
9182
9186
|
}
|
9183
|
-
const
|
9187
|
+
const lp = /* @__PURE__ */ O(rh, [["render", uh]]), mh = "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", hh = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
9184
9188
|
__proto__: null,
|
9185
|
-
default:
|
9186
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
9189
|
+
default: mh
|
9190
|
+
}, Symbol.toStringTag, { value: "Module" })), fh = "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==", gh = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
9187
9191
|
__proto__: null,
|
9188
|
-
default:
|
9189
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
9192
|
+
default: fh
|
9193
|
+
}, Symbol.toStringTag, { value: "Module" })), ph = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
9190
9194
|
__proto__: null,
|
9191
|
-
de:
|
9192
|
-
en:
|
9195
|
+
de: hh,
|
9196
|
+
en: gh
|
9193
9197
|
}, Symbol.toStringTag, { value: "Module" }));
|
9194
|
-
const
|
9198
|
+
const yh = {
|
9195
9199
|
name: "CmdSwitchLanguage",
|
9196
9200
|
emits: ["click"],
|
9197
9201
|
data() {
|
@@ -9219,7 +9223,7 @@ const Ch = {
|
|
9219
9223
|
this.imageSources = [], this.languages.forEach(
|
9220
9224
|
async (e) => {
|
9221
9225
|
const n = e.iso2;
|
9222
|
-
this.imageSources.push(
|
9226
|
+
this.imageSources.push(ph[n].default);
|
9223
9227
|
}
|
9224
9228
|
);
|
9225
9229
|
},
|
@@ -9227,10 +9231,10 @@ const Ch = {
|
|
9227
9231
|
deep: !0
|
9228
9232
|
}
|
9229
9233
|
}
|
9230
|
-
},
|
9231
|
-
function
|
9234
|
+
}, Ch = { class: "cmd-switch-language" }, bh = ["href", "title", "onClick"], _h = ["src", "alt"], kh = ["src", "alt"];
|
9235
|
+
function vh(e, n, t, a, l, i) {
|
9232
9236
|
const d = se("router-link");
|
9233
|
-
return s(), o("div",
|
9237
|
+
return s(), o("div", Ch, [
|
9234
9238
|
h("ul", null, [
|
9235
9239
|
(s(!0), o(k, null, A(t.languages, (r, c) => (s(), o("li", { key: c }, [
|
9236
9240
|
r.link.type === "href" ? (s(), o("a", {
|
@@ -9243,8 +9247,8 @@ function xh(e, n, t, a, l, i) {
|
|
9243
9247
|
h("img", {
|
9244
9248
|
src: l.imageSources[c],
|
9245
9249
|
alt: r.name
|
9246
|
-
}, null, 8,
|
9247
|
-
], 10,
|
9250
|
+
}, null, 8, _h)
|
9251
|
+
], 10, bh)) : (s(), C(d, {
|
9248
9252
|
key: 1,
|
9249
9253
|
class: b(["flag", r.iso2]),
|
9250
9254
|
to: i.getRoute(r),
|
@@ -9255,7 +9259,7 @@ function xh(e, n, t, a, l, i) {
|
|
9255
9259
|
h("img", {
|
9256
9260
|
src: l.imageSources[c],
|
9257
9261
|
alt: r.name
|
9258
|
-
}, null, 8,
|
9262
|
+
}, null, 8, kh)
|
9259
9263
|
]),
|
9260
9264
|
_: 2
|
9261
9265
|
}, 1032, ["class", "to", "title", "onClick"]))
|
@@ -9263,8 +9267,8 @@ function xh(e, n, t, a, l, i) {
|
|
9263
9267
|
])
|
9264
9268
|
]);
|
9265
9269
|
}
|
9266
|
-
const
|
9267
|
-
const
|
9270
|
+
const sp = /* @__PURE__ */ O(yh, [["render", vh]]);
|
9271
|
+
const xh = {
|
9268
9272
|
name: "CmdSystemMessage",
|
9269
9273
|
mixins: [Me],
|
9270
9274
|
data() {
|
@@ -9325,8 +9329,8 @@ const wh = {
|
|
9325
9329
|
this.showSystemMessage = !0;
|
9326
9330
|
}
|
9327
9331
|
}
|
9328
|
-
},
|
9329
|
-
function
|
9332
|
+
}, wh = ["role", "aria-labelledby"], Th = ["title"];
|
9333
|
+
function Ih(e, n, t, a, l, i) {
|
9330
9334
|
const d = z, r = R;
|
9331
9335
|
return s(), C(ue, { name: "fade" }, {
|
9332
9336
|
default: N(() => [
|
@@ -9346,7 +9350,7 @@ function Sh(e, n, t, a, l, i) {
|
|
9346
9350
|
iconClass: t.iconClose.iconClass,
|
9347
9351
|
type: t.iconClose.iconType
|
9348
9352
|
}, null, 8, ["iconClass", "type"])
|
9349
|
-
], 8,
|
9353
|
+
], 8, Th)) : u("", !0),
|
9350
9354
|
v(r, {
|
9351
9355
|
class: "message-headline",
|
9352
9356
|
headlineIcon: i.headlineIcon,
|
@@ -9355,13 +9359,13 @@ function Sh(e, n, t, a, l, i) {
|
|
9355
9359
|
id: e.htmlId
|
9356
9360
|
}, null, 8, ["headlineIcon", "headlineText", "headlineLevel", "id"]),
|
9357
9361
|
F(e.$slots, "default")
|
9358
|
-
], 10,
|
9362
|
+
], 10, wh)) : u("", !0)
|
9359
9363
|
]),
|
9360
9364
|
_: 3
|
9361
9365
|
});
|
9362
9366
|
}
|
9363
|
-
const
|
9364
|
-
const
|
9367
|
+
const Sh = /* @__PURE__ */ O(xh, [["render", Ih]]);
|
9368
|
+
const Mh = {
|
9365
9369
|
name: "CmdTable",
|
9366
9370
|
data() {
|
9367
9371
|
return {
|
@@ -9433,7 +9437,7 @@ const Oh = {
|
|
9433
9437
|
}
|
9434
9438
|
},
|
9435
9439
|
mounted() {
|
9436
|
-
|
9440
|
+
this.hasOverflow = this.$refs.table.clientWidth > this.$refs.innerWrapper.clientWidth;
|
9437
9441
|
},
|
9438
9442
|
computed: {
|
9439
9443
|
hasCaption() {
|
@@ -9447,29 +9451,30 @@ const Oh = {
|
|
9447
9451
|
},
|
9448
9452
|
methods: {
|
9449
9453
|
scrollLeft() {
|
9450
|
-
this.$refs.
|
9454
|
+
this.$refs.innerWrapper.scrollLeft = 0, this.$refs.table.previousElementSibling.style.cssText = "left: 0;", this.updatePosition();
|
9451
9455
|
},
|
9452
9456
|
scrollRight() {
|
9453
|
-
this.$refs.table.
|
9457
|
+
this.$refs.table.querySelector("th:last-child").scrollIntoView(), this.$refs.table.nextElementSibling.style.cssText = "right: auto;", this.updatePosition();
|
9458
|
+
},
|
9459
|
+
updatePosition() {
|
9460
|
+
const e = this.$refs.table.previousElementSibling, n = this.$refs.table.nextElementSibling, t = this.$refs.innerWrapper, a = t.getBoundingClientRect(), l = a.width + t.scrollLeft - n.getBoundingClientRect().width, i = t.scrollLeft;
|
9461
|
+
console.log("parentRect", a), e.style.left = `${i}px`, n.style.left = `${l}px`, i === 0 ? e.style.display = "none" : e.style.display = "flex", i === t.scrollLeftMax ? n.style.display = "none" : n.style.display = "flex";
|
9454
9462
|
}
|
9455
9463
|
}
|
9456
|
-
},
|
9464
|
+
}, Oh = {
|
9457
9465
|
key: 0,
|
9458
9466
|
class: "button-wrapper"
|
9459
|
-
},
|
9460
|
-
class: "inner-wrapper",
|
9461
|
-
ref: "innerWrapper"
|
9462
|
-
}, Ah = { "aria-expanded": "true" }, Bh = {
|
9467
|
+
}, Lh = ["title"], Dh = ["title"], Nh = { "aria-expanded": "true" }, Ph = {
|
9463
9468
|
key: 0,
|
9464
9469
|
"aria-expanded": "true"
|
9465
9470
|
};
|
9466
|
-
function
|
9471
|
+
function Ah(e, n, t, a, l, i) {
|
9467
9472
|
var c, f, g, m;
|
9468
9473
|
const d = z, r = qe;
|
9469
9474
|
return s(), o("div", {
|
9470
9475
|
class: b(["cmd-table-wrapper", { collapsed: !l.showTableData, "full-width": l.fullWidth, "has-caption": i.hasCaption, "has-overflow": l.hasOverflow }])
|
9471
9476
|
}, [
|
9472
|
-
t.collapsible || t.userCanToggleWidth ? (s(), o("div",
|
9477
|
+
t.collapsible || t.userCanToggleWidth ? (s(), o("div", Oh, [
|
9473
9478
|
t.userCanToggleWidth ? (s(), o("a", {
|
9474
9479
|
key: 0,
|
9475
9480
|
class: "button",
|
@@ -9481,7 +9486,7 @@ function jh(e, n, t, a, l, i) {
|
|
9481
9486
|
iconClass: t.iconToggleWidth.iconClass,
|
9482
9487
|
type: t.iconToggleWidth.iconType
|
9483
9488
|
}, null, 8, ["iconClass", "type"])
|
9484
|
-
], 8,
|
9489
|
+
], 8, Lh)) : u("", !0),
|
9485
9490
|
t.collapsible ? (s(), o("a", {
|
9486
9491
|
key: 1,
|
9487
9492
|
class: "button",
|
@@ -9493,9 +9498,13 @@ function jh(e, n, t, a, l, i) {
|
|
9493
9498
|
iconClass: l.showTableData ? t.iconCollapse.iconClass : t.iconExpand.iconClass,
|
9494
9499
|
type: l.showTableData ? t.iconCollapse.iconType : t.iconExpand.iconType
|
9495
9500
|
}, null, 8, ["iconClass", "type"])
|
9496
|
-
], 8,
|
9501
|
+
], 8, Dh)) : u("", !0)
|
9497
9502
|
])) : u("", !0),
|
9498
|
-
h("div",
|
9503
|
+
h("div", {
|
9504
|
+
class: "inner-wrapper",
|
9505
|
+
ref: "innerWrapper",
|
9506
|
+
onScroll: n[2] || (n[2] = (..._) => i.updatePosition && i.updatePosition(..._))
|
9507
|
+
}, [
|
9499
9508
|
t.showSlideButtons ? (s(), C(r, {
|
9500
9509
|
key: 0,
|
9501
9510
|
onClick: I(i.scrollLeft, ["prevent"]),
|
@@ -9516,7 +9525,7 @@ function jh(e, n, t, a, l, i) {
|
|
9516
9525
|
]),
|
9517
9526
|
v(ue, { name: "fade" }, {
|
9518
9527
|
default: N(() => [
|
9519
|
-
ne(h("tbody",
|
9528
|
+
ne(h("tbody", Nh, [
|
9520
9529
|
(s(!0), o(k, null, A(t.tableData.tbody, (_, y) => (s(), o("tr", {
|
9521
9530
|
class: b({ active: t.tableData.rowIndexHighlighted === y }),
|
9522
9531
|
key: y
|
@@ -9534,7 +9543,7 @@ function jh(e, n, t, a, l, i) {
|
|
9534
9543
|
}),
|
9535
9544
|
v(ue, { name: "fade" }, {
|
9536
9545
|
default: N(() => [
|
9537
|
-
t.tableData.tfoot && t.tableData.tfoot.length && l.showTableData ? (s(), o("tfoot",
|
9546
|
+
t.tableData.tfoot && t.tableData.tfoot.length && l.showTableData ? (s(), o("tfoot", Ph, [
|
9538
9547
|
h("tr", null, [
|
9539
9548
|
(s(!0), o(k, null, A(t.tableData.tfoot, (_, y) => (s(), o("td", {
|
9540
9549
|
class: b({ active: t.tableData.columnIndexHighlighted === y }),
|
@@ -9550,10 +9559,10 @@ function jh(e, n, t, a, l, i) {
|
|
9550
9559
|
key: 1,
|
9551
9560
|
onClick: I(i.scrollRight, ["prevent"])
|
9552
9561
|
}, null, 8, ["onClick"])) : u("", !0)
|
9553
|
-
],
|
9562
|
+
], 544)
|
9554
9563
|
], 2);
|
9555
9564
|
}
|
9556
|
-
const
|
9565
|
+
const op = /* @__PURE__ */ O(Mh, [["render", Ah]]), Bh = "cmd", jh = {
|
9557
9566
|
"3d-cursor": {
|
9558
9567
|
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"/>',
|
9559
9568
|
hidden: !0
|
@@ -9567,14 +9576,14 @@ const rp = /* @__PURE__ */ O(Oh, [["render", jh]]), Fh = "cmd", Hh = {
|
|
9567
9576
|
<path fill="currentColor" d="M2,12h6v18H2V12z"/>
|
9568
9577
|
<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"/>`
|
9569
9578
|
}
|
9570
|
-
},
|
9571
|
-
prefix:
|
9572
|
-
icons:
|
9573
|
-
width:
|
9574
|
-
height:
|
9579
|
+
}, Fh = 32, Hh = 32, Eh = {
|
9580
|
+
prefix: Bh,
|
9581
|
+
icons: jh,
|
9582
|
+
width: Fh,
|
9583
|
+
height: Hh
|
9575
9584
|
};
|
9576
|
-
Wn(
|
9577
|
-
const
|
9585
|
+
Wn(Eh);
|
9586
|
+
const Vh = {
|
9578
9587
|
name: "CmdTabs",
|
9579
9588
|
data() {
|
9580
9589
|
return {
|
@@ -9614,13 +9623,13 @@ const qh = {
|
|
9614
9623
|
this.showTab = this.activeTab;
|
9615
9624
|
}
|
9616
9625
|
}
|
9617
|
-
},
|
9626
|
+
}, zh = { class: "cmd-tabs" }, qh = ["onClick", "title"], Rh = { key: 1 }, Uh = {
|
9618
9627
|
key: 1,
|
9619
9628
|
"aria-live": "assertive"
|
9620
|
-
},
|
9621
|
-
function
|
9629
|
+
}, Gh = ["innerHTML"];
|
9630
|
+
function Wh(e, n, t, a, l, i) {
|
9622
9631
|
const d = z, r = R;
|
9623
|
-
return s(), o("div",
|
9632
|
+
return s(), o("div", zh, [
|
9624
9633
|
h("ul", {
|
9625
9634
|
class: b({ "stretch-tabs": t.stretchTabs }),
|
9626
9635
|
role: "tablist"
|
@@ -9640,8 +9649,8 @@ function Zh(e, n, t, a, l, i) {
|
|
9640
9649
|
iconClass: c.iconClass,
|
9641
9650
|
type: c.iconType
|
9642
9651
|
}, null, 8, ["iconClass", "type"])) : u("", !0),
|
9643
|
-
c.name ? (s(), o("span",
|
9644
|
-
], 8,
|
9652
|
+
c.name ? (s(), o("span", Rh, p(c.name), 1)) : u("", !0)
|
9653
|
+
], 8, qh)
|
9645
9654
|
], 2))), 128))
|
9646
9655
|
], 2),
|
9647
9656
|
t.useSlot ? (s(!0), o(k, { key: 0 }, A(t.tabs.length, (c) => ne((s(), o("div", {
|
@@ -9651,19 +9660,19 @@ function Zh(e, n, t, a, l, i) {
|
|
9651
9660
|
F(e.$slots, "tab-content-" + (c - 1))
|
9652
9661
|
])), [
|
9653
9662
|
[de, l.showTab === c - 1]
|
9654
|
-
])), 128)) : (s(), o("div",
|
9663
|
+
])), 128)) : (s(), o("div", Uh, [
|
9655
9664
|
t.cmdHeadline ? (s(), C(r, B({ key: 0 }, t.cmdHeadline, {
|
9656
9665
|
headlineText: t.tabs[l.showTab].headlineText,
|
9657
9666
|
headlineLevel: t.tabs[l.showTab].headlineLevel
|
9658
9667
|
}), null, 16, ["headlineText", "headlineLevel"])) : u("", !0),
|
9659
9668
|
h("div", {
|
9660
9669
|
innerHTML: t.tabs[l.showTab].htmlContent
|
9661
|
-
}, null, 8,
|
9670
|
+
}, null, 8, Gh)
|
9662
9671
|
]))
|
9663
9672
|
]);
|
9664
9673
|
}
|
9665
|
-
const
|
9666
|
-
const
|
9674
|
+
const ap = /* @__PURE__ */ O(Vh, [["render", Wh]]);
|
9675
|
+
const Qh = {
|
9667
9676
|
name: "CmdTextImageBlock",
|
9668
9677
|
mixins: [J],
|
9669
9678
|
data() {
|
@@ -9728,14 +9737,14 @@ const Jh = {
|
|
9728
9737
|
immediate: !0
|
9729
9738
|
}
|
9730
9739
|
}
|
9731
|
-
},
|
9732
|
-
|
9733
|
-
|
9734
|
-
],
|
9735
|
-
function
|
9740
|
+
}, Zh = { class: "cmd-text-image-block flex-container vertical" }, Jh = ["innerHTML"], Yh = /* @__PURE__ */ h("span", { class: "icon-plus" }, null, -1), Kh = /* @__PURE__ */ h("span", null, "Add new paragraph", -1), Xh = [
|
9741
|
+
Yh,
|
9742
|
+
Kh
|
9743
|
+
], $h = ["innerHTML"];
|
9744
|
+
function ef(e, n, t, a, l, i) {
|
9736
9745
|
var f, g, m, _;
|
9737
9746
|
const d = R, r = Ce, c = he;
|
9738
|
-
return s(), o("div",
|
9747
|
+
return s(), o("div", Zh, [
|
9739
9748
|
(((f = t.cmdHeadline) == null ? void 0 : f.headlineText) || e.editModeContext) && t.headlinePosition === "aboveImage" ? (s(), C(d, W(B({ key: 0 }, t.cmdHeadline)), null, 16)) : u("", !0),
|
9740
9749
|
t.cmdImage ? (s(), C(r, {
|
9741
9750
|
key: 1,
|
@@ -9766,23 +9775,23 @@ function nf(e, n, t, a, l, i) {
|
|
9766
9775
|
key: 1,
|
9767
9776
|
innerHTML: t.htmlContent,
|
9768
9777
|
class: b(i.textAlign)
|
9769
|
-
}, null, 10,
|
9778
|
+
}, null, 10, Jh)) : (s(), o("button", {
|
9770
9779
|
key: 2,
|
9771
9780
|
type: "button",
|
9772
9781
|
class: "button confirm",
|
9773
9782
|
onClick: n[1] || (n[1] = (...w) => i.onAddItem && i.onAddItem(...w))
|
9774
|
-
},
|
9783
|
+
}, Xh))
|
9775
9784
|
]),
|
9776
9785
|
_: 1
|
9777
9786
|
}, 8, ["componentProps", "componentPath", "allowDeleteComponent"])) : t.htmlContent ? (s(), o("div", {
|
9778
9787
|
key: 4,
|
9779
9788
|
innerHTML: t.htmlContent,
|
9780
9789
|
class: b(i.textAlign)
|
9781
|
-
}, null, 10,
|
9790
|
+
}, null, 10, $h)) : u("", !0)
|
9782
9791
|
]);
|
9783
9792
|
}
|
9784
|
-
const
|
9785
|
-
const
|
9793
|
+
const rp = /* @__PURE__ */ O(Qh, [["render", ef]]);
|
9794
|
+
const tf = {
|
9786
9795
|
name: "ToggleDarkMode",
|
9787
9796
|
mixins: [
|
9788
9797
|
J
|
@@ -9900,8 +9909,8 @@ const lf = {
|
|
9900
9909
|
immediate: !0
|
9901
9910
|
}
|
9902
9911
|
}
|
9903
|
-
},
|
9904
|
-
function
|
9912
|
+
}, nf = { key: 0 };
|
9913
|
+
function lf(e, n, t, a, l, i) {
|
9905
9914
|
const d = z, r = $;
|
9906
9915
|
return s(), o("div", {
|
9907
9916
|
class: b(["cmd-toggle-dark-mode", { "styled-layout": t.useStyledLayout, "dark-mode": l.darkMode }])
|
@@ -9930,7 +9939,7 @@ function of(e, n, t, a, l, i) {
|
|
9930
9939
|
class: b(["button", { "dark-mode": l.darkMode }]),
|
9931
9940
|
onClick: n[0] || (n[0] = I((...c) => i.toggleColorScheme && i.toggleColorScheme(...c), ["prevent"]))
|
9932
9941
|
}, [
|
9933
|
-
t.showLabel ? (s(), o("span",
|
9942
|
+
t.showLabel ? (s(), o("span", nf, p(i.labelText), 1)) : u("", !0),
|
9934
9943
|
v(d, {
|
9935
9944
|
iconClass: i.iconClass,
|
9936
9945
|
type: i.iconType,
|
@@ -9953,7 +9962,7 @@ function of(e, n, t, a, l, i) {
|
|
9953
9962
|
], 64))
|
9954
9963
|
], 2);
|
9955
9964
|
}
|
9956
|
-
const
|
9965
|
+
const dp = /* @__PURE__ */ O(tf, [["render", lf]]), sf = {
|
9957
9966
|
data() {
|
9958
9967
|
return {
|
9959
9968
|
defaultMessageProperties: {
|
@@ -10006,7 +10015,7 @@ const up = /* @__PURE__ */ O(lf, [["render", of]]), af = {
|
|
10006
10015
|
};
|
10007
10016
|
}
|
10008
10017
|
};
|
10009
|
-
function
|
10018
|
+
function of(e) {
|
10010
10019
|
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
10011
10020
|
}
|
10012
10021
|
var oi = { exports: {} }, Ft = { exports: {} }, ai = function(n, t) {
|
@@ -10015,30 +10024,30 @@ var oi = { exports: {} }, Ft = { exports: {} }, ai = function(n, t) {
|
|
10015
10024
|
l[i] = arguments[i];
|
10016
10025
|
return n.apply(t, l);
|
10017
10026
|
};
|
10018
|
-
},
|
10027
|
+
}, af = ai, fe = Object.prototype.toString;
|
10019
10028
|
function Ht(e) {
|
10020
10029
|
return fe.call(e) === "[object Array]";
|
10021
10030
|
}
|
10022
10031
|
function vt(e) {
|
10023
10032
|
return typeof e > "u";
|
10024
10033
|
}
|
10025
|
-
function
|
10034
|
+
function rf(e) {
|
10026
10035
|
return e !== null && !vt(e) && e.constructor !== null && !vt(e.constructor) && typeof e.constructor.isBuffer == "function" && e.constructor.isBuffer(e);
|
10027
10036
|
}
|
10028
|
-
function
|
10037
|
+
function df(e) {
|
10029
10038
|
return fe.call(e) === "[object ArrayBuffer]";
|
10030
10039
|
}
|
10031
|
-
function
|
10040
|
+
function cf(e) {
|
10032
10041
|
return typeof FormData < "u" && e instanceof FormData;
|
10033
10042
|
}
|
10034
|
-
function
|
10043
|
+
function uf(e) {
|
10035
10044
|
var n;
|
10036
10045
|
return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? n = ArrayBuffer.isView(e) : n = e && e.buffer && e.buffer instanceof ArrayBuffer, n;
|
10037
10046
|
}
|
10038
|
-
function
|
10047
|
+
function mf(e) {
|
10039
10048
|
return typeof e == "string";
|
10040
10049
|
}
|
10041
|
-
function
|
10050
|
+
function hf(e) {
|
10042
10051
|
return typeof e == "number";
|
10043
10052
|
}
|
10044
10053
|
function ri(e) {
|
@@ -10050,28 +10059,28 @@ function Be(e) {
|
|
10050
10059
|
var n = Object.getPrototypeOf(e);
|
10051
10060
|
return n === null || n === Object.prototype;
|
10052
10061
|
}
|
10053
|
-
function
|
10062
|
+
function ff(e) {
|
10054
10063
|
return fe.call(e) === "[object Date]";
|
10055
10064
|
}
|
10056
|
-
function
|
10065
|
+
function gf(e) {
|
10057
10066
|
return fe.call(e) === "[object File]";
|
10058
10067
|
}
|
10059
|
-
function
|
10068
|
+
function pf(e) {
|
10060
10069
|
return fe.call(e) === "[object Blob]";
|
10061
10070
|
}
|
10062
10071
|
function di(e) {
|
10063
10072
|
return fe.call(e) === "[object Function]";
|
10064
10073
|
}
|
10065
|
-
function
|
10074
|
+
function yf(e) {
|
10066
10075
|
return ri(e) && di(e.pipe);
|
10067
10076
|
}
|
10068
|
-
function
|
10077
|
+
function Cf(e) {
|
10069
10078
|
return typeof URLSearchParams < "u" && e instanceof URLSearchParams;
|
10070
10079
|
}
|
10071
|
-
function
|
10080
|
+
function bf(e) {
|
10072
10081
|
return e.trim ? e.trim() : e.replace(/^\s+|\s+$/g, "");
|
10073
10082
|
}
|
10074
|
-
function
|
10083
|
+
function _f() {
|
10075
10084
|
return typeof navigator < "u" && (navigator.product === "ReactNative" || navigator.product === "NativeScript" || navigator.product === "NS") ? !1 : typeof window < "u" && typeof document < "u";
|
10076
10085
|
}
|
10077
10086
|
function Et(e, n) {
|
@@ -10092,37 +10101,37 @@ function xt() {
|
|
10092
10101
|
Et(arguments[t], n);
|
10093
10102
|
return e;
|
10094
10103
|
}
|
10095
|
-
function
|
10104
|
+
function kf(e, n, t) {
|
10096
10105
|
return Et(n, function(l, i) {
|
10097
|
-
t && typeof l == "function" ? e[i] =
|
10106
|
+
t && typeof l == "function" ? e[i] = af(l, t) : e[i] = l;
|
10098
10107
|
}), e;
|
10099
10108
|
}
|
10100
|
-
function
|
10109
|
+
function vf(e) {
|
10101
10110
|
return e.charCodeAt(0) === 65279 && (e = e.slice(1)), e;
|
10102
10111
|
}
|
10103
10112
|
var ee = {
|
10104
10113
|
isArray: Ht,
|
10105
|
-
isArrayBuffer:
|
10106
|
-
isBuffer:
|
10107
|
-
isFormData:
|
10108
|
-
isArrayBufferView:
|
10109
|
-
isString:
|
10110
|
-
isNumber:
|
10114
|
+
isArrayBuffer: df,
|
10115
|
+
isBuffer: rf,
|
10116
|
+
isFormData: cf,
|
10117
|
+
isArrayBufferView: uf,
|
10118
|
+
isString: mf,
|
10119
|
+
isNumber: hf,
|
10111
10120
|
isObject: ri,
|
10112
10121
|
isPlainObject: Be,
|
10113
10122
|
isUndefined: vt,
|
10114
|
-
isDate:
|
10115
|
-
isFile:
|
10116
|
-
isBlob:
|
10123
|
+
isDate: ff,
|
10124
|
+
isFile: gf,
|
10125
|
+
isBlob: pf,
|
10117
10126
|
isFunction: di,
|
10118
|
-
isStream:
|
10119
|
-
isURLSearchParams:
|
10120
|
-
isStandardBrowserEnv:
|
10127
|
+
isStream: yf,
|
10128
|
+
isURLSearchParams: Cf,
|
10129
|
+
isStandardBrowserEnv: _f,
|
10121
10130
|
forEach: Et,
|
10122
10131
|
merge: xt,
|
10123
|
-
extend:
|
10124
|
-
trim:
|
10125
|
-
stripBOM:
|
10132
|
+
extend: kf,
|
10133
|
+
trim: bf,
|
10134
|
+
stripBOM: vf
|
10126
10135
|
}, pe = ee;
|
10127
10136
|
function yn(e) {
|
10128
10137
|
return encodeURIComponent(e).replace(/%3A/gi, ":").replace(/%24/g, "$").replace(/%2C/gi, ",").replace(/%20/g, "+").replace(/%5B/gi, "[").replace(/%5D/gi, "]");
|
@@ -10148,7 +10157,7 @@ var ci = function(n, t, a) {
|
|
10148
10157
|
d !== -1 && (n = n.slice(0, d)), n += (n.indexOf("?") === -1 ? "?" : "&") + l;
|
10149
10158
|
}
|
10150
10159
|
return n;
|
10151
|
-
},
|
10160
|
+
}, xf = ee;
|
10152
10161
|
function Re() {
|
10153
10162
|
this.handlers = [];
|
10154
10163
|
}
|
@@ -10164,12 +10173,12 @@ Re.prototype.eject = function(n) {
|
|
10164
10173
|
this.handlers[n] && (this.handlers[n] = null);
|
10165
10174
|
};
|
10166
10175
|
Re.prototype.forEach = function(n) {
|
10167
|
-
|
10176
|
+
xf.forEach(this.handlers, function(a) {
|
10168
10177
|
a !== null && n(a);
|
10169
10178
|
});
|
10170
10179
|
};
|
10171
|
-
var
|
10172
|
-
|
10180
|
+
var wf = Re, Tf = ee, If = function(n, t) {
|
10181
|
+
Tf.forEach(n, function(l, i) {
|
10173
10182
|
i !== t && i.toUpperCase() === t.toUpperCase() && (n[t] = l, delete n[i]);
|
10174
10183
|
});
|
10175
10184
|
}, ui = function(n, t, a, l, i) {
|
@@ -10200,7 +10209,7 @@ function mi() {
|
|
10200
10209
|
}, Ye;
|
10201
10210
|
}
|
10202
10211
|
var Ke, bn;
|
10203
|
-
function
|
10212
|
+
function Sf() {
|
10204
10213
|
if (bn)
|
10205
10214
|
return Ke;
|
10206
10215
|
bn = 1;
|
@@ -10217,7 +10226,7 @@ function Of() {
|
|
10217
10226
|
}, Ke;
|
10218
10227
|
}
|
10219
10228
|
var Xe, _n;
|
10220
|
-
function
|
10229
|
+
function Mf() {
|
10221
10230
|
if (_n)
|
10222
10231
|
return Xe;
|
10223
10232
|
_n = 1;
|
@@ -10249,29 +10258,29 @@ function Lf() {
|
|
10249
10258
|
}(), Xe;
|
10250
10259
|
}
|
10251
10260
|
var $e, kn;
|
10252
|
-
function
|
10261
|
+
function Of() {
|
10253
10262
|
return kn || (kn = 1, $e = function(n) {
|
10254
10263
|
return /^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(n);
|
10255
10264
|
}), $e;
|
10256
10265
|
}
|
10257
10266
|
var et, vn;
|
10258
|
-
function
|
10267
|
+
function Lf() {
|
10259
10268
|
return vn || (vn = 1, et = function(n, t) {
|
10260
10269
|
return t ? n.replace(/\/+$/, "") + "/" + t.replace(/^\/+/, "") : n;
|
10261
10270
|
}), et;
|
10262
10271
|
}
|
10263
10272
|
var tt, xn;
|
10264
|
-
function
|
10273
|
+
function Df() {
|
10265
10274
|
if (xn)
|
10266
10275
|
return tt;
|
10267
10276
|
xn = 1;
|
10268
|
-
var e =
|
10277
|
+
var e = Of(), n = Lf();
|
10269
10278
|
return tt = function(a, l) {
|
10270
10279
|
return a && !e(l) ? n(a, l) : l;
|
10271
10280
|
}, tt;
|
10272
10281
|
}
|
10273
10282
|
var nt, wn;
|
10274
|
-
function
|
10283
|
+
function Nf() {
|
10275
10284
|
if (wn)
|
10276
10285
|
return nt;
|
10277
10286
|
wn = 1;
|
@@ -10307,7 +10316,7 @@ function Af() {
|
|
10307
10316
|
}, nt;
|
10308
10317
|
}
|
10309
10318
|
var it, Tn;
|
10310
|
-
function
|
10319
|
+
function Pf() {
|
10311
10320
|
if (Tn)
|
10312
10321
|
return it;
|
10313
10322
|
Tn = 1;
|
@@ -10354,7 +10363,7 @@ function Mn() {
|
|
10354
10363
|
if (Sn)
|
10355
10364
|
return st;
|
10356
10365
|
Sn = 1;
|
10357
|
-
var e = ee, n =
|
10366
|
+
var e = ee, n = Sf(), t = Mf(), a = ci, l = Df(), i = Nf(), d = Pf(), r = mi(), c = Ge(), f = Ue();
|
10358
10367
|
return st = function(m) {
|
10359
10368
|
return new Promise(function(y, w) {
|
10360
10369
|
var x = m.data, S = m.headers, M = m.responseType, D;
|
@@ -10417,7 +10426,7 @@ function Ge() {
|
|
10417
10426
|
if (On)
|
10418
10427
|
return ot;
|
10419
10428
|
On = 1;
|
10420
|
-
var e = ee, n =
|
10429
|
+
var e = ee, n = If, t = ui, a = {
|
10421
10430
|
"Content-Type": "application/x-www-form-urlencoded"
|
10422
10431
|
};
|
10423
10432
|
function l(c, f) {
|
@@ -10478,9 +10487,9 @@ function Ge() {
|
|
10478
10487
|
r.headers[f] = e.merge(a);
|
10479
10488
|
}), ot = r, ot;
|
10480
10489
|
}
|
10481
|
-
var
|
10482
|
-
var l = this ||
|
10483
|
-
return
|
10490
|
+
var Af = ee, Bf = Ge(), jf = function(n, t, a) {
|
10491
|
+
var l = this || Bf;
|
10492
|
+
return Af.forEach(a, function(d) {
|
10484
10493
|
n = d.call(l, n, t);
|
10485
10494
|
}), n;
|
10486
10495
|
}, at, Ln;
|
@@ -10489,12 +10498,12 @@ function hi() {
|
|
10489
10498
|
return !!(n && n.__CANCEL__);
|
10490
10499
|
}), at;
|
10491
10500
|
}
|
10492
|
-
var Dn = ee, rt =
|
10501
|
+
var Dn = ee, rt = jf, Ff = hi(), Hf = Ge(), Ef = Ue();
|
10493
10502
|
function dt(e) {
|
10494
10503
|
if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)
|
10495
|
-
throw new
|
10504
|
+
throw new Ef("canceled");
|
10496
10505
|
}
|
10497
|
-
var
|
10506
|
+
var Vf = function(n) {
|
10498
10507
|
dt(n), n.headers = n.headers || {}, n.data = rt.call(
|
10499
10508
|
n,
|
10500
10509
|
n.data,
|
@@ -10510,7 +10519,7 @@ var qf = function(n) {
|
|
10510
10519
|
delete n.headers[l];
|
10511
10520
|
}
|
10512
10521
|
);
|
10513
|
-
var t = n.adapter ||
|
10522
|
+
var t = n.adapter || Hf.adapter;
|
10514
10523
|
return t(n).then(function(l) {
|
10515
10524
|
return dt(n), l.data = rt.call(
|
10516
10525
|
n,
|
@@ -10519,7 +10528,7 @@ var qf = function(n) {
|
|
10519
10528
|
n.transformResponse
|
10520
10529
|
), l;
|
10521
10530
|
}, function(l) {
|
10522
|
-
return
|
10531
|
+
return Ff(l) || (dt(n), l && l.response && (l.response.data = rt.call(
|
10523
10532
|
n,
|
10524
10533
|
l.response.data,
|
10525
10534
|
l.response.headers,
|
@@ -10594,7 +10603,7 @@ function gi() {
|
|
10594
10603
|
version: "0.24.0"
|
10595
10604
|
}), ct;
|
10596
10605
|
}
|
10597
|
-
var
|
10606
|
+
var zf = gi().version, Vt = {};
|
10598
10607
|
["object", "boolean", "number", "function", "string", "symbol"].forEach(function(e, n) {
|
10599
10608
|
Vt[e] = function(a) {
|
10600
10609
|
return typeof a === e || "a" + (n < 1 ? "n " : " ") + e;
|
@@ -10603,7 +10612,7 @@ var Rf = gi().version, Vt = {};
|
|
10603
10612
|
var Pn = {};
|
10604
10613
|
Vt.transitional = function(n, t, a) {
|
10605
10614
|
function l(i, d) {
|
10606
|
-
return "[Axios v" +
|
10615
|
+
return "[Axios v" + zf + "] Transitional option '" + i + "'" + d + (a ? ". " + a : "");
|
10607
10616
|
}
|
10608
10617
|
return function(i, d, r) {
|
10609
10618
|
if (n === !1)
|
@@ -10616,7 +10625,7 @@ Vt.transitional = function(n, t, a) {
|
|
10616
10625
|
)), n ? n(i, d, r) : !0;
|
10617
10626
|
};
|
10618
10627
|
};
|
10619
|
-
function
|
10628
|
+
function qf(e, n, t) {
|
10620
10629
|
if (typeof e != "object")
|
10621
10630
|
throw new TypeError("options must be an object");
|
10622
10631
|
for (var a = Object.keys(e), l = a.length; l-- > 0; ) {
|
@@ -10631,10 +10640,10 @@ function Uf(e, n, t) {
|
|
10631
10640
|
throw Error("Unknown option " + i);
|
10632
10641
|
}
|
10633
10642
|
}
|
10634
|
-
var
|
10635
|
-
assertOptions:
|
10643
|
+
var Rf = {
|
10644
|
+
assertOptions: qf,
|
10636
10645
|
validators: Vt
|
10637
|
-
}, pi = ee,
|
10646
|
+
}, pi = ee, Uf = ci, An = wf, Bn = Vf, We = fi, yi = Rf, ye = yi.validators;
|
10638
10647
|
function Oe(e) {
|
10639
10648
|
this.defaults = e, this.interceptors = {
|
10640
10649
|
request: new An(),
|
@@ -10683,7 +10692,7 @@ Oe.prototype.request = function(n) {
|
|
10683
10692
|
return d;
|
10684
10693
|
};
|
10685
10694
|
Oe.prototype.getUri = function(n) {
|
10686
|
-
return n = We(this.defaults, n),
|
10695
|
+
return n = We(this.defaults, n), Uf(n.url, n.params, n.paramsSerializer).replace(/^\?/, "");
|
10687
10696
|
};
|
10688
10697
|
pi.forEach(["delete", "get", "head", "options"], function(n) {
|
10689
10698
|
Oe.prototype[n] = function(t, a) {
|
@@ -10703,8 +10712,8 @@ pi.forEach(["post", "put", "patch"], function(n) {
|
|
10703
10712
|
}));
|
10704
10713
|
};
|
10705
10714
|
});
|
10706
|
-
var
|
10707
|
-
function
|
10715
|
+
var Gf = Oe, ut, jn;
|
10716
|
+
function Wf() {
|
10708
10717
|
if (jn)
|
10709
10718
|
return ut;
|
10710
10719
|
jn = 1;
|
@@ -10760,7 +10769,7 @@ function Zf() {
|
|
10760
10769
|
}, ut = n, ut;
|
10761
10770
|
}
|
10762
10771
|
var mt, Fn;
|
10763
|
-
function
|
10772
|
+
function Qf() {
|
10764
10773
|
return Fn || (Fn = 1, mt = function(n) {
|
10765
10774
|
return function(a) {
|
10766
10775
|
return n.apply(null, a);
|
@@ -10768,39 +10777,39 @@ function Jf() {
|
|
10768
10777
|
}), mt;
|
10769
10778
|
}
|
10770
10779
|
var ht, Hn;
|
10771
|
-
function
|
10780
|
+
function Zf() {
|
10772
10781
|
return Hn || (Hn = 1, ht = function(n) {
|
10773
10782
|
return typeof n == "object" && n.isAxiosError === !0;
|
10774
10783
|
}), ht;
|
10775
10784
|
}
|
10776
|
-
var En = ee,
|
10785
|
+
var En = ee, Jf = ai, je = Gf, Yf = fi, Kf = Ge();
|
10777
10786
|
function Ci(e) {
|
10778
|
-
var n = new je(e), t =
|
10787
|
+
var n = new je(e), t = Jf(je.prototype.request, n);
|
10779
10788
|
return En.extend(t, je.prototype, n), En.extend(t, n), t.create = function(l) {
|
10780
|
-
return Ci(
|
10789
|
+
return Ci(Yf(e, l));
|
10781
10790
|
}, t;
|
10782
10791
|
}
|
10783
|
-
var oe = Ci(
|
10792
|
+
var oe = Ci(Kf);
|
10784
10793
|
oe.Axios = je;
|
10785
10794
|
oe.Cancel = Ue();
|
10786
|
-
oe.CancelToken =
|
10795
|
+
oe.CancelToken = Wf();
|
10787
10796
|
oe.isCancel = hi();
|
10788
10797
|
oe.VERSION = gi().version;
|
10789
10798
|
oe.all = function(n) {
|
10790
10799
|
return Promise.all(n);
|
10791
10800
|
};
|
10792
|
-
oe.spread =
|
10793
|
-
oe.isAxiosError =
|
10801
|
+
oe.spread = Qf();
|
10802
|
+
oe.isAxiosError = Zf();
|
10794
10803
|
Ft.exports = oe;
|
10795
10804
|
Ft.exports.default = oe;
|
10796
10805
|
(function(e) {
|
10797
10806
|
e.exports = Ft.exports;
|
10798
10807
|
})(oi);
|
10799
|
-
const
|
10800
|
-
const
|
10808
|
+
const Xf = /* @__PURE__ */ of(oi.exports);
|
10809
|
+
const $f = {
|
10801
10810
|
name: "CmdUploadForm",
|
10802
10811
|
emits: ["click", "error", "upload-complete", "upload-file-success"],
|
10803
|
-
mixins: [ie,
|
10812
|
+
mixins: [ie, sf],
|
10804
10813
|
data() {
|
10805
10814
|
return {
|
10806
10815
|
comment: "",
|
@@ -11187,7 +11196,7 @@ const tg = {
|
|
11187
11196
|
return n.abortController = new AbortController(), t.set(
|
11188
11197
|
this.uploadOptions.filesParam ? this.uploadOptions.filesParam : "files",
|
11189
11198
|
n.file
|
11190
|
-
),
|
11199
|
+
), Xf.post(e, t, {
|
11191
11200
|
signal: n.abortController.signal,
|
11192
11201
|
onUploadProgress: (a) => this.onUploadProgress(a, n)
|
11193
11202
|
}).then((a) => (this.$emit("upload-file-success", n), a)).then((a) => {
|
@@ -11208,30 +11217,30 @@ const tg = {
|
|
11208
11217
|
}
|
11209
11218
|
}
|
11210
11219
|
}
|
11211
|
-
},
|
11220
|
+
}, eg = { key: 0 }, tg = {
|
11212
11221
|
key: 1,
|
11213
11222
|
class: "flex-container vertical"
|
11214
|
-
},
|
11223
|
+
}, ng = {
|
11215
11224
|
key: 0,
|
11216
11225
|
class: "flex-container vertical list-files-wrapper"
|
11217
|
-
},
|
11226
|
+
}, ig = {
|
11218
11227
|
key: 0,
|
11219
11228
|
class: "list-of-files total-files"
|
11220
|
-
},
|
11229
|
+
}, lg = { class: "flex-container no-flex" }, sg = ["title"], og = {
|
11221
11230
|
key: 0,
|
11222
11231
|
class: "progressbar"
|
11223
|
-
},
|
11232
|
+
}, ag = ["value", "title"], rg = /* @__PURE__ */ h("hr", null, null, -1), dg = { class: "flex-container vertical list-files-wrapper" }, cg = { class: "list-of-files" }, ug = ["title", "onClick"], mg = {
|
11224
11233
|
key: 0,
|
11225
11234
|
class: "progressbar"
|
11226
|
-
},
|
11235
|
+
}, hg = ["value", "title"], fg = ["title"], gg = /* @__PURE__ */ h("hr", null, null, -1), pg = { class: "small" }, yg = ["title"], Cg = {
|
11227
11236
|
key: 0,
|
11228
11237
|
class: "list-of-file-extensions"
|
11229
|
-
},
|
11238
|
+
}, bg = ["disabled"], _g = { key: 0 }, kg = { key: 1 }, vg = { class: "button-wrapper no-flex" }, xg = ["disabled"], wg = { key: 0 }, Tg = { key: 1 }, Ig = {
|
11230
11239
|
key: 0,
|
11231
11240
|
class: "progressbar"
|
11232
|
-
},
|
11233
|
-
function
|
11234
|
-
const d = R, r =
|
11241
|
+
}, Sg = ["value", "title"];
|
11242
|
+
function Mg(e, n, t, a, l, i) {
|
11243
|
+
const d = R, r = Sh, c = z, f = $;
|
11235
11244
|
return s(), o(k, null, [
|
11236
11245
|
t.advancedMode ? (s(), o("fieldset", {
|
11237
11246
|
key: 0,
|
@@ -11248,7 +11257,7 @@ function Lg(e, n, t, a, l, i) {
|
|
11248
11257
|
systemMessage: i.allSystemMessages.length === 1 ? i.allSystemMessages[0] : e.getMessage("cmduploadform.system_message.the_following_errors_occurred")
|
11249
11258
|
}, {
|
11250
11259
|
default: N(() => [
|
11251
|
-
i.allSystemMessages.length > 1 ? (s(), o("ul",
|
11260
|
+
i.allSystemMessages.length > 1 ? (s(), o("ul", eg, [
|
11252
11261
|
(s(!0), o(k, null, A(i.allSystemMessages, (g, m) => (s(), o("li", { key: m }, p(g), 1))), 128))
|
11253
11262
|
])) : u("", !0)
|
11254
11263
|
]),
|
@@ -11256,17 +11265,17 @@ function Lg(e, n, t, a, l, i) {
|
|
11256
11265
|
}, 8, ["validationStatus", "systemMessage"])) : u("", !0),
|
11257
11266
|
h("div", B({
|
11258
11267
|
class: ["box drop-area flex-container vertical", { "allow-drop": l.allowDrop }]
|
11259
|
-
}, ft(i.dragAndDropHandler)), [
|
11260
|
-
l.listOfFiles.length ? (s(), o("div",
|
11261
|
-
t.showTotalUpload && l.listOfFiles.length !== 1 ? (s(), o("div",
|
11268
|
+
}, ft(i.dragAndDropHandler, !0)), [
|
11269
|
+
l.listOfFiles.length ? (s(), o("div", tg, [
|
11270
|
+
t.showTotalUpload && l.listOfFiles.length !== 1 ? (s(), o("div", ng, [
|
11262
11271
|
v(d, B(t.cmdHeadlineSummaryOfAllFiles, { headlineLevel: "4" }), {
|
11263
11272
|
default: N(() => [
|
11264
11273
|
j(p(e.getMessage("cmduploadform.headline.summary_of_all_files")), 1)
|
11265
11274
|
]),
|
11266
11275
|
_: 1
|
11267
11276
|
}, 16),
|
11268
|
-
t.showTotalUpload && l.listOfFiles.length !== 1 ? (s(), o("ul",
|
11269
|
-
h("li",
|
11277
|
+
t.showTotalUpload && l.listOfFiles.length !== 1 ? (s(), o("ul", ig, [
|
11278
|
+
h("li", lg, [
|
11270
11279
|
h("a", {
|
11271
11280
|
href: "#",
|
11272
11281
|
title: e.getMessage("cmduploadform.labeltext.remove_all_files_from_list"),
|
@@ -11276,7 +11285,7 @@ function Lg(e, n, t, a, l, i) {
|
|
11276
11285
|
iconClass: t.deleteIcon.iconClass,
|
11277
11286
|
type: t.deleteIcon.iconClass
|
11278
11287
|
}, null, 8, ["iconClass", "type"])
|
11279
|
-
], 8,
|
11288
|
+
], 8, sg),
|
11280
11289
|
h("span", null, [
|
11281
11290
|
j(p(l.listOfFiles.length) + " ", 1),
|
11282
11291
|
t.allowMultipleFileUploads ? (s(), o(k, { key: 1 }, [
|
@@ -11291,26 +11300,26 @@ function Lg(e, n, t, a, l, i) {
|
|
11291
11300
|
{ error: t.maxTotalUploadSize > 0 && i.totalSize > t.maxTotalUploadSize }
|
11292
11301
|
])
|
11293
11302
|
}, " (" + p(i.formatSize(i.totalSize)) + ") ", 3),
|
11294
|
-
l.uploadInitiated ? (s(), o("span",
|
11303
|
+
l.uploadInitiated ? (s(), o("span", og, [
|
11295
11304
|
h("span", null, p(i.getPercentage(i.totalUploadProgress)), 1),
|
11296
11305
|
h("progress", {
|
11297
11306
|
max: "100",
|
11298
11307
|
value: i.totalUploadProgress,
|
11299
11308
|
title: i.totalBytesUploaded
|
11300
|
-
}, null, 8,
|
11309
|
+
}, null, 8, ag)
|
11301
11310
|
])) : u("", !0)
|
11302
11311
|
])
|
11303
11312
|
])) : u("", !0),
|
11304
|
-
|
11313
|
+
rg
|
11305
11314
|
])) : u("", !0),
|
11306
|
-
h("div",
|
11315
|
+
h("div", dg, [
|
11307
11316
|
v(d, B(t.cmdHeadlineListOfSelectedFiles, { headlineLevel: "4" }), {
|
11308
11317
|
default: N(() => [
|
11309
11318
|
j(p(e.getMessage("cmduploadform.headline.list_of_selected_files")), 1)
|
11310
11319
|
]),
|
11311
11320
|
_: 1
|
11312
11321
|
}, 16),
|
11313
|
-
h("ul",
|
11322
|
+
h("ul", cg, [
|
11314
11323
|
(s(!0), o(k, null, A(l.listOfFiles, (g, m) => (s(), o("li", {
|
11315
11324
|
key: m,
|
11316
11325
|
class: "flex-container no-flex"
|
@@ -11324,7 +11333,7 @@ function Lg(e, n, t, a, l, i) {
|
|
11324
11333
|
iconClass: e.iconDelete.iconClass,
|
11325
11334
|
type: e.iconDelete.iconType
|
11326
11335
|
}, null, 8, ["iconClass", "type"])
|
11327
|
-
], 8,
|
11336
|
+
], 8, ug),
|
11328
11337
|
h("span", {
|
11329
11338
|
class: b([
|
11330
11339
|
"text-align-right",
|
@@ -11335,13 +11344,13 @@ function Lg(e, n, t, a, l, i) {
|
|
11335
11344
|
j(p(g.file.name) + " ", 1),
|
11336
11345
|
h("small", null, "(" + p(i.formatSize(g.file.size)) + ")", 1)
|
11337
11346
|
], 2),
|
11338
|
-
l.uploadInitiated && !g.error ? (s(), o("span",
|
11347
|
+
l.uploadInitiated && !g.error ? (s(), o("span", mg, [
|
11339
11348
|
h("span", null, p(i.getPercentage(g.progress)), 1),
|
11340
11349
|
h("progress", {
|
11341
11350
|
max: "100",
|
11342
11351
|
value: g.progress,
|
11343
11352
|
title: i.formatSize(g.uploadedBytes) + "/" + i.formatSize(g.file.size)
|
11344
|
-
}, null, 8,
|
11353
|
+
}, null, 8, hg)
|
11345
11354
|
])) : u("", !0)
|
11346
11355
|
]))), 128))
|
11347
11356
|
]),
|
@@ -11350,8 +11359,8 @@ function Lg(e, n, t, a, l, i) {
|
|
11350
11359
|
href: "#",
|
11351
11360
|
onClick: n[1] || (n[1] = I((...g) => i.cancel && i.cancel(...g), ["prevent"])),
|
11352
11361
|
title: e.getMessage("cmduploadform.all_files_will_be_removed")
|
11353
|
-
}, p(e.getMessage("cmduploadform.reset_upload")), 9,
|
11354
|
-
|
11362
|
+
}, p(e.getMessage("cmduploadform.reset_upload")), 9, fg)) : u("", !0),
|
11363
|
+
gg
|
11355
11364
|
])
|
11356
11365
|
])) : (s(), o(k, { key: 0 }, [
|
11357
11366
|
t.allowMultipleFileUploads ? (s(), C(d, B({ key: 0 }, t.cmdHeadlineNoFilesToUpload, { headlineLevel: "4" }), {
|
@@ -11378,7 +11387,7 @@ function Lg(e, n, t, a, l, i) {
|
|
11378
11387
|
]),
|
11379
11388
|
_: 1
|
11380
11389
|
}, 16)) : u("", !0),
|
11381
|
-
h("dl",
|
11390
|
+
h("dl", pg, [
|
11382
11391
|
t.maxTotalUploadSize > 0 ? (s(), o(k, { key: 0 }, [
|
11383
11392
|
h("dt", {
|
11384
11393
|
class: b({ error: i.totalSize > t.maxTotalUploadSize })
|
@@ -11406,10 +11415,10 @@ function Lg(e, n, t, a, l, i) {
|
|
11406
11415
|
iconClass: l.showListOfFileExtensions ? t.iconInvisible.iconClass : t.iconVisible.iconClass,
|
11407
11416
|
type: l.showListOfFileExtensions ? t.iconInvisible.iconType : t.iconVisible.iconType
|
11408
11417
|
}, null, 8, ["iconClass", "type"])
|
11409
|
-
], 8,
|
11418
|
+
], 8, yg),
|
11410
11419
|
v(ue, { name: "fade" }, {
|
11411
11420
|
default: N(() => [
|
11412
|
-
l.showListOfFileExtensions ? (s(), o("ul",
|
11421
|
+
l.showListOfFileExtensions ? (s(), o("ul", Cg, [
|
11413
11422
|
(s(!0), o(k, null, A(t.allowedFileExtensions, (g, m) => (s(), o("li", {
|
11414
11423
|
key: m,
|
11415
11424
|
class: b({ error: l.errors.fileType })
|
@@ -11431,8 +11440,8 @@ function Lg(e, n, t, a, l, i) {
|
|
11431
11440
|
iconClass: t.iconFileUpload.iconClass,
|
11432
11441
|
type: t.iconFileUpload.iconType
|
11433
11442
|
}, null, 8, ["iconClass", "type"]),
|
11434
|
-
t.allowMultipleFileUploads ? (s(), o("span",
|
11435
|
-
], 10,
|
11443
|
+
t.allowMultipleFileUploads ? (s(), o("span", _g, p(e.getMessage("cmduploadform.labeltext.select_files")), 1)) : (s(), o("span", kg, p(e.getMessage("cmduploadform.labeltext.select_file")), 1))
|
11444
|
+
], 10, bg),
|
11436
11445
|
t.enableDragAndDrop ? (s(), o("p", {
|
11437
11446
|
key: 0,
|
11438
11447
|
class: b(["text-drag-and-drop", { disabled: l.uploadInitiated }])
|
@@ -11462,7 +11471,7 @@ function Lg(e, n, t, a, l, i) {
|
|
11462
11471
|
placeholder: e.getMessage("cmduploadform.placeholder.comment"),
|
11463
11472
|
status: t.commentStatusMessage ? "error" : ""
|
11464
11473
|
}, null, 8, ["labelText", "modelValue", "required", "validationMessage", "placeholder", "status"])) : u("", !0),
|
11465
|
-
h("div",
|
11474
|
+
h("div", vg, [
|
11466
11475
|
h("button", {
|
11467
11476
|
class: b([
|
11468
11477
|
"button primary",
|
@@ -11477,8 +11486,8 @@ function Lg(e, n, t, a, l, i) {
|
|
11477
11486
|
iconClass: t.iconUpload.iconClass,
|
11478
11487
|
type: t.iconUpload.iconType
|
11479
11488
|
}, null, 8, ["iconClass", "type"]),
|
11480
|
-
l.listOfFiles.length === 1 || !t.allowMultipleFileUploads ? (s(), o("span",
|
11481
|
-
], 10,
|
11489
|
+
l.listOfFiles.length === 1 || !t.allowMultipleFileUploads ? (s(), o("span", wg, p(e.getMessage("cmduploadform.buttontext.upload_file")), 1)) : (s(), o("span", Tg, p(e.getMessage("cmduploadform.buttontext.upload_files")), 1))
|
11490
|
+
], 10, xg),
|
11482
11491
|
h("button", {
|
11483
11492
|
class: b(["button", { disabled: l.listOfFiles.length === 0 }]),
|
11484
11493
|
onClick: n[6] || (n[6] = (...g) => i.cancel && i.cancel(...g))
|
@@ -11495,14 +11504,14 @@ function Lg(e, n, t, a, l, i) {
|
|
11495
11504
|
href: "#",
|
11496
11505
|
onClick: n[7] || (n[7] = I((...g) => i.selectFiles && i.selectFiles(...g), ["prevent"])),
|
11497
11506
|
class: ["cmd-upload-form drop-area", { "allow-drop": l.allowDrop }]
|
11498
|
-
}, ft(i.dragAndDropHandler)), [
|
11499
|
-
l.uploadInitiated ? (s(), o("span",
|
11507
|
+
}, ft(i.dragAndDropHandler, !0)), [
|
11508
|
+
l.uploadInitiated ? (s(), o("span", Ig, [
|
11500
11509
|
h("span", null, p(i.getPercentage(i.totalUploadProgress)), 1),
|
11501
11510
|
h("progress", {
|
11502
11511
|
max: "100",
|
11503
11512
|
value: i.totalUploadProgress,
|
11504
11513
|
title: i.totalBytesUploaded
|
11505
|
-
}, null, 8,
|
11514
|
+
}, null, 8, Sg)
|
11506
11515
|
])) : u("", !0),
|
11507
11516
|
F(e.$slots, "default", {}, () => [
|
11508
11517
|
t.enableDragAndDrop ? (s(), o(k, { key: 0 }, [
|
@@ -11541,8 +11550,8 @@ function Lg(e, n, t, a, l, i) {
|
|
11541
11550
|
}, null, 8, ["labelText", "disabled", "multiple", "onChange"])
|
11542
11551
|
], 64);
|
11543
11552
|
}
|
11544
|
-
const
|
11545
|
-
const
|
11553
|
+
const cp = /* @__PURE__ */ O($f, [["render", Mg]]);
|
11554
|
+
const Og = {
|
11546
11555
|
name: "CmdWidthLimitationWrapper",
|
11547
11556
|
props: {
|
11548
11557
|
innerComponent: {
|
@@ -11581,37 +11590,34 @@ const Dg = {
|
|
11581
11590
|
return this.innerComponent === "header" ? "site-header" : this.innerComponent === "footer" ? "site-footer" : "";
|
11582
11591
|
}
|
11583
11592
|
}
|
11584
|
-
},
|
11585
|
-
function
|
11593
|
+
}, Lg = ["id"], Dg = ["id"];
|
11594
|
+
function Ng(e, n, t, a, l, i) {
|
11586
11595
|
const d = R;
|
11587
11596
|
return s(), o("div", {
|
11588
11597
|
class: b(["cmd-width-limitation-wrapper", { sticky: t.sticky }])
|
11589
11598
|
}, [
|
11590
11599
|
t.innerWrapper ? (s(), o("section", {
|
11591
11600
|
key: 0,
|
11592
|
-
class: b(i.setInnerClass)
|
11601
|
+
class: b(i.setInnerClass),
|
11602
|
+
id: { anchorId: t.anchorId }
|
11593
11603
|
}, [
|
11594
|
-
t.anchorId ? (s(), o("a", {
|
11595
|
-
key: 0,
|
11596
|
-
id: t.anchorId
|
11597
|
-
}, null, 8, Ng)) : u("", !0),
|
11598
11604
|
t.cmdHeadline ? (s(), C(d, {
|
11599
|
-
key:
|
11605
|
+
key: 0,
|
11600
11606
|
"pre-headline-text": t.cmdHeadline.preHeadlineText,
|
11601
11607
|
"headline-text": t.cmdHeadline.headlineText,
|
11602
11608
|
"headline-level": t.cmdHeadline.headlineLevel
|
11603
11609
|
}, null, 8, ["pre-headline-text", "headline-text", "headline-level"])) : u("", !0),
|
11604
11610
|
F(e.$slots, "default")
|
11605
|
-
],
|
11611
|
+
], 10, Lg)) : (s(), o(k, { key: 1 }, [
|
11606
11612
|
t.anchorId ? (s(), o("a", {
|
11607
11613
|
key: 0,
|
11608
11614
|
id: t.anchorId
|
11609
|
-
}, null, 8,
|
11615
|
+
}, null, 8, Dg)) : u("", !0),
|
11610
11616
|
F(e.$slots, "default")
|
11611
11617
|
], 64))
|
11612
11618
|
], 2);
|
11613
11619
|
}
|
11614
|
-
const
|
11620
|
+
const up = /* @__PURE__ */ O(Og, [["render", Ng]]), mp = {
|
11615
11621
|
mounted(e) {
|
11616
11622
|
if (e.tagName === "INPUT" || e.tagName === "SELECT" || e.tagName === "TEXTAREA" || e.tagName === "A")
|
11617
11623
|
e.focus();
|
@@ -11620,7 +11626,7 @@ const hp = /* @__PURE__ */ O(Dg, [["render", Ag]]), fp = {
|
|
11620
11626
|
n ? n.focus() : console.warn("No input-element for focus-directive on element " + e.tagName + " found!");
|
11621
11627
|
}
|
11622
11628
|
}
|
11623
|
-
},
|
11629
|
+
}, hp = {
|
11624
11630
|
mounted(e, n) {
|
11625
11631
|
if (n.value && typeof n.value == "string") {
|
11626
11632
|
let t = /[^\d]/g, a = n.value.replace(/^\s*\+/, "00");
|
@@ -11628,7 +11634,7 @@ const hp = /* @__PURE__ */ O(Dg, [["render", Ag]]), fp = {
|
|
11628
11634
|
}
|
11629
11635
|
}
|
11630
11636
|
};
|
11631
|
-
function
|
11637
|
+
function fp() {
|
11632
11638
|
const e = {};
|
11633
11639
|
Ti(a);
|
11634
11640
|
function n(l = "defaultSequence") {
|
@@ -11644,57 +11650,57 @@ function pp() {
|
|
11644
11650
|
return { nextSequenceValue: n, currentSequenceValue: t, resetSequence: a };
|
11645
11651
|
}
|
11646
11652
|
export {
|
11647
|
-
|
11648
|
-
|
11649
|
-
|
11653
|
+
Ag as CmdAddressData,
|
11654
|
+
Bg as CmdBackToTopButton,
|
11655
|
+
jg as CmdBankAccountData,
|
11650
11656
|
qr as CmdBox,
|
11651
|
-
|
11652
|
-
|
11657
|
+
Hg as CmdBoxWrapper,
|
11658
|
+
Eg as CmdBreadcrumbs,
|
11653
11659
|
cd as CmdCompanyLogo,
|
11654
|
-
|
11655
|
-
|
11656
|
-
|
11660
|
+
Vg as CmdContainer,
|
11661
|
+
zg as CmdCookieDisclaimer,
|
11662
|
+
qg as CmdCopyrightInformation,
|
11657
11663
|
ic as CmdFakeSelect,
|
11658
|
-
|
11659
|
-
|
11664
|
+
Fg as CmdFancyBox,
|
11665
|
+
Rg as CmdForm,
|
11660
11666
|
$ as CmdFormElement,
|
11661
11667
|
pc as CmdFormFilters,
|
11662
|
-
|
11668
|
+
Ug as CmdGoogleMaps,
|
11663
11669
|
R as CmdHeadline,
|
11664
11670
|
z as CmdIcon,
|
11665
11671
|
Ce as CmdImage,
|
11666
|
-
|
11667
|
-
|
11668
|
-
|
11672
|
+
Gg as CmdImageGallery,
|
11673
|
+
Wg as CmdImageZoom,
|
11674
|
+
Qg as CmdInputGroup,
|
11669
11675
|
or as CmdListOfLinks,
|
11670
|
-
|
11671
|
-
|
11672
|
-
|
11673
|
-
|
11674
|
-
|
11675
|
-
|
11676
|
-
|
11677
|
-
|
11678
|
-
|
11679
|
-
|
11676
|
+
Zg as CmdLoginForm,
|
11677
|
+
xu as CmdMainNavigation,
|
11678
|
+
Jg as CmdMultistepFormProgressBar,
|
11679
|
+
Yg as CmdOpeningHours,
|
11680
|
+
Kg as CmdPager,
|
11681
|
+
Xg as CmdProgressBar,
|
11682
|
+
$g as CmdSidebar,
|
11683
|
+
ep as CmdSiteFooter,
|
11684
|
+
tp as CmdSiteHeader,
|
11685
|
+
np as CmdSiteSearch,
|
11680
11686
|
qe as CmdSlideButton,
|
11681
|
-
|
11682
|
-
|
11683
|
-
|
11684
|
-
|
11685
|
-
|
11686
|
-
|
11687
|
-
|
11687
|
+
ip as CmdSlideshow,
|
11688
|
+
lp as CmdSocialNetworks,
|
11689
|
+
sp as CmdSwitchLanguage,
|
11690
|
+
Sh as CmdSystemMessage,
|
11691
|
+
op as CmdTable,
|
11692
|
+
ap as CmdTabs,
|
11693
|
+
rp as CmdTextImageBlock,
|
11688
11694
|
Ia as CmdThumbnailScroller,
|
11689
|
-
|
11695
|
+
dp as CmdToggleDarkMode,
|
11690
11696
|
ss as CmdTooltip,
|
11691
|
-
|
11692
|
-
|
11693
|
-
|
11694
|
-
|
11697
|
+
cp as CmdUploadForm,
|
11698
|
+
up as CmdWidthLimitationWrapper,
|
11699
|
+
mp as DirFocus,
|
11700
|
+
hp as DirTelephone,
|
11695
11701
|
li as createHtmlId,
|
11696
11702
|
Se as createUuid,
|
11697
11703
|
xe as getFileExtension,
|
11698
11704
|
At as openFancyBox,
|
11699
|
-
|
11705
|
+
fp as useSequence
|
11700
11706
|
};
|