comand-component-library 4.0.35 → 4.0.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/comand-component-library.js +232 -206
- package/dist/comand-component-library.umd.cjs +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/ComponentLibrary.vue +17 -1
- package/src/componentSettingsDataAndControls.vue +10 -4
- package/src/components/CmdBasicForm.vue +11 -1
- package/src/components/CmdBoxWrapper.vue +0 -4
- package/src/components/CmdForm.vue +25 -24
- package/src/components/CmdFormElement.vue +10 -0
- package/src/components/CmdLoginForm.vue +35 -10
- package/src/components/CmdSiteSearch.vue +12 -14
@@ -555,12 +555,12 @@ function So(e, n, t, s) {
|
|
555
555
|
const o = e.resources.length, i = e.random ? Math.floor(Math.random() * o) : e.index;
|
556
556
|
let r;
|
557
557
|
if (e.random) {
|
558
|
-
let
|
559
|
-
for (r = [];
|
560
|
-
const q = Math.floor(Math.random() *
|
561
|
-
r.push(
|
558
|
+
let B = e.resources.slice(0);
|
559
|
+
for (r = []; B.length > 1; ) {
|
560
|
+
const q = Math.floor(Math.random() * B.length);
|
561
|
+
r.push(B[q]), B = B.slice(0, q).concat(B.slice(q + 1));
|
562
562
|
}
|
563
|
-
r = r.concat(
|
563
|
+
r = r.concat(B);
|
564
564
|
} else
|
565
565
|
r = e.resources.slice(i).concat(e.resources.slice(0, i));
|
566
566
|
const d = Date.now();
|
@@ -570,12 +570,12 @@ function So(e, n, t, s) {
|
|
570
570
|
h && (clearTimeout(h), h = null);
|
571
571
|
}
|
572
572
|
function T() {
|
573
|
-
u === "pending" && (u = "aborted"), _(), w.forEach((
|
574
|
-
|
573
|
+
u === "pending" && (u = "aborted"), _(), w.forEach((B) => {
|
574
|
+
B.status === "pending" && (B.status = "aborted");
|
575
575
|
}), w = [];
|
576
576
|
}
|
577
|
-
function S(
|
578
|
-
q && (b = []), typeof
|
577
|
+
function S(B, q) {
|
578
|
+
q && (b = []), typeof B == "function" && b.push(B);
|
579
579
|
}
|
580
580
|
function O() {
|
581
581
|
return {
|
@@ -589,18 +589,18 @@ function So(e, n, t, s) {
|
|
589
589
|
};
|
590
590
|
}
|
591
591
|
function A() {
|
592
|
-
u = "failed", b.forEach((
|
593
|
-
|
592
|
+
u = "failed", b.forEach((B) => {
|
593
|
+
B(void 0, m);
|
594
594
|
});
|
595
595
|
}
|
596
596
|
function M() {
|
597
|
-
w.forEach((
|
598
|
-
|
597
|
+
w.forEach((B) => {
|
598
|
+
B.status === "pending" && (B.status = "aborted");
|
599
599
|
}), w = [];
|
600
600
|
}
|
601
|
-
function B
|
601
|
+
function F(B, q, G) {
|
602
602
|
const Y = q !== "success";
|
603
|
-
switch (w = w.filter((j) => j !==
|
603
|
+
switch (w = w.filter((j) => j !== B), u) {
|
604
604
|
case "pending":
|
605
605
|
break;
|
606
606
|
case "failed":
|
@@ -619,7 +619,7 @@ function So(e, n, t, s) {
|
|
619
619
|
return;
|
620
620
|
}
|
621
621
|
if (_(), M(), !e.random) {
|
622
|
-
const j = e.resources.indexOf(
|
622
|
+
const j = e.resources.indexOf(B.resource);
|
623
623
|
j !== -1 && j !== e.index && (e.index = j);
|
624
624
|
}
|
625
625
|
u = "completed", b.forEach((j) => {
|
@@ -630,8 +630,8 @@ function So(e, n, t, s) {
|
|
630
630
|
if (u !== "pending")
|
631
631
|
return;
|
632
632
|
_();
|
633
|
-
const
|
634
|
-
if (
|
633
|
+
const B = r.shift();
|
634
|
+
if (B === void 0) {
|
635
635
|
if (w.length) {
|
636
636
|
h = setTimeout(() => {
|
637
637
|
_(), u === "pending" && (M(), A());
|
@@ -643,12 +643,12 @@ function So(e, n, t, s) {
|
|
643
643
|
}
|
644
644
|
const q = {
|
645
645
|
status: "pending",
|
646
|
-
resource:
|
646
|
+
resource: B,
|
647
647
|
callback: (G, Y) => {
|
648
|
-
|
648
|
+
F(q, G, Y);
|
649
649
|
}
|
650
650
|
};
|
651
|
-
w.push(q), p++, h = setTimeout(z, e.rotate), t(
|
651
|
+
w.push(q), p++, h = setTimeout(z, e.rotate), t(B, n, q.callback);
|
652
652
|
}
|
653
653
|
return setTimeout(z), O;
|
654
654
|
}
|
@@ -812,7 +812,7 @@ function ci() {
|
|
812
812
|
});
|
813
813
|
}
|
814
814
|
}
|
815
|
-
function
|
815
|
+
function Fo(e, n) {
|
816
816
|
const t = e.lastModifiedCached;
|
817
817
|
if (t && t >= n)
|
818
818
|
return t === n;
|
@@ -824,7 +824,7 @@ function Bo(e, n) {
|
|
824
824
|
});
|
825
825
|
return !0;
|
826
826
|
}
|
827
|
-
function
|
827
|
+
function Bo(e, n) {
|
828
828
|
Wt || ci();
|
829
829
|
function t(s) {
|
830
830
|
let o;
|
@@ -847,7 +847,7 @@ function Fo(e, n) {
|
|
847
847
|
JSON.stringify(d)
|
848
848
|
);
|
849
849
|
}
|
850
|
-
n.lastModified && !
|
850
|
+
n.lastModified && !Fo(e, n.lastModified) || Object.keys(n.icons).length && (n.not_found && (n = Object.assign({}, n), delete n.not_found), t("local") || t("session"));
|
851
851
|
}
|
852
852
|
function _n() {
|
853
853
|
}
|
@@ -883,7 +883,7 @@ function Eo(e, n) {
|
|
883
883
|
const h = e.pendingIcons;
|
884
884
|
h && m.forEach((w) => {
|
885
885
|
h.delete(w);
|
886
|
-
}),
|
886
|
+
}), Bo(e, u);
|
887
887
|
} catch (m) {
|
888
888
|
console.error(m);
|
889
889
|
}
|
@@ -2148,11 +2148,11 @@ const Ol = /* @__PURE__ */ L(vl, [["render", Il]]), oe = {
|
|
2148
2148
|
return this.inputRequirements.length > 1 ? this.getMessage("cmdlistofrequirements.headline.requirements_for_input") : this.getMessage("cmdlistofrequirements.headline.requirement_for_input");
|
2149
2149
|
}
|
2150
2150
|
}
|
2151
|
-
},
|
2151
|
+
}, Fl = { class: "cmd-list-of-requirements" }, Bl = /* @__PURE__ */ f("br", null, null, -1), Al = /* @__PURE__ */ f("hr", null, null, -1), El = ["href", "target"], Pl = { key: 1 };
|
2152
2152
|
function Vl(e, n, t, s, o, i) {
|
2153
2153
|
var u, p, m;
|
2154
2154
|
const r = K, d = U;
|
2155
|
-
return l(), a("div",
|
2155
|
+
return l(), a("div", Fl, [
|
2156
2156
|
t.showHeadline ? (l(), C(r, {
|
2157
2157
|
key: 0,
|
2158
2158
|
"headline-level": t.cmdHeadline.headlineLevel
|
@@ -2160,7 +2160,7 @@ function Vl(e, n, t, s, o, i) {
|
|
2160
2160
|
default: V(() => [
|
2161
2161
|
H(g(i.headlineRequirements), 1),
|
2162
2162
|
t.labelText ? (l(), a(x, { key: 0 }, [
|
2163
|
-
|
2163
|
+
Bl,
|
2164
2164
|
f("em", null, g(t.labelText), 1)
|
2165
2165
|
], 64)) : c("", !0)
|
2166
2166
|
]),
|
@@ -2767,6 +2767,15 @@ const Kt = {
|
|
2767
2767
|
type: Boolean,
|
2768
2768
|
required: !1
|
2769
2769
|
},
|
2770
|
+
/**
|
2771
|
+
* activate if field should be stretch over remaining (horizontal) space if inline
|
2772
|
+
*
|
2773
|
+
* displayLabelInline-property must be activated
|
2774
|
+
*/
|
2775
|
+
stretchField: {
|
2776
|
+
type: Boolean,
|
2777
|
+
default: !1
|
2778
|
+
},
|
2770
2779
|
/**
|
2771
2780
|
* set status for label and form-element
|
2772
2781
|
*
|
@@ -3089,7 +3098,7 @@ const Kt = {
|
|
3089
3098
|
class: "search-field-wrapper flex-container no-gap"
|
3090
3099
|
}, us = ["id", "maxlength", "value"], ms = ["title"], fs = ["title"], hs = { key: 1 };
|
3091
3100
|
function ps(e, n, t, s, o, i) {
|
3092
|
-
var u, p, m, h, w, b, _, T, S, O, A, M,
|
3101
|
+
var u, p, m, h, w, b, _, T, S, O, A, M, F, z, B, q, G, Y, j, le, se, ae, X, he;
|
3093
3102
|
const r = U, d = Gt;
|
3094
3103
|
return t.element === "input" || t.element === "select" || t.element === "textarea" ? (l(), a("label", {
|
3095
3104
|
key: 0,
|
@@ -3100,6 +3109,7 @@ function ps(e, n, t, s, o, i) {
|
|
3100
3109
|
{
|
3101
3110
|
disabled: e.$attrs.disabled,
|
3102
3111
|
inline: t.displayLabelInline,
|
3112
|
+
"stretch-field": t.stretchField,
|
3103
3113
|
"toggle-switch": t.toggleSwitch,
|
3104
3114
|
colored: t.colored,
|
3105
3115
|
"has-state": e.validationStatus
|
@@ -3302,9 +3312,9 @@ function ps(e, n, t, s, o, i) {
|
|
3302
3312
|
(b = (w = t.nativeButton) == null ? void 0 : w.icon) != null && b.show && (((T = (_ = t.nativeButton) == null ? void 0 : _.icon) == null ? void 0 : T.position) === "before" || !((O = (S = t.nativeButton) == null ? void 0 : S.icon) != null && O.position)) ? (l(), C(r, {
|
3303
3313
|
key: 0,
|
3304
3314
|
iconClass: (M = (A = t.nativeButton) == null ? void 0 : A.icon) == null ? void 0 : M.iconClass,
|
3305
|
-
type: (z = (
|
3315
|
+
type: (z = (F = t.nativeButton) == null ? void 0 : F.icon) == null ? void 0 : z.iconType
|
3306
3316
|
}, null, 8, ["iconClass", "type"])) : c("", !0),
|
3307
|
-
(
|
3317
|
+
(B = t.nativeButton) != null && B.icon && ((q = t.nativeButton) != null && q.text) ? (l(), a("span", hs, g(t.nativeButton.text), 1)) : (l(), a(x, { key: 2 }, [
|
3308
3318
|
H(g(t.nativeButton.text), 1)
|
3309
3319
|
], 64)),
|
3310
3320
|
(Y = (G = t.nativeButton) == null ? void 0 : G.icon) != null && Y.show && ((le = (j = t.nativeButton) == null ? void 0 : j.icon) == null ? void 0 : le.position) === "after" ? (l(), C(r, {
|
@@ -3433,10 +3443,10 @@ const ee = /* @__PURE__ */ L(Ul, [["render", ps]]), gs = {
|
|
3433
3443
|
}, Ss = /* @__PURE__ */ f("br", null, null, -1), Is = { key: 0 }, Os = {
|
3434
3444
|
key: 3,
|
3435
3445
|
class: "country-name"
|
3436
|
-
}, Ms = { class: "street-address" }, Ls = /* @__PURE__ */ f("br", null, null, -1),
|
3446
|
+
}, Ms = { class: "street-address" }, Ls = /* @__PURE__ */ f("br", null, null, -1), Fs = {
|
3437
3447
|
key: 0,
|
3438
3448
|
class: "postal-code"
|
3439
|
-
},
|
3449
|
+
}, Bs = {
|
3440
3450
|
key: 1,
|
3441
3451
|
class: "locality"
|
3442
3452
|
}, As = /* @__PURE__ */ f("br", null, null, -1), Es = /* @__PURE__ */ f("br", null, null, -1), Ps = {
|
@@ -3580,8 +3590,8 @@ function Vs(e, n, t, s, o, i) {
|
|
3580
3590
|
key: 1,
|
3581
3591
|
class: y(t.showCityBeforeZip ? "city-zip" : "zip-city")
|
3582
3592
|
}, [
|
3583
|
-
t.addressEntry.zip ? (l(), a("span",
|
3584
|
-
t.addressEntry.city ? (l(), a("span",
|
3593
|
+
t.addressEntry.zip ? (l(), a("span", Fs, g(t.addressEntry.zip), 1)) : c("", !0),
|
3594
|
+
t.addressEntry.city ? (l(), a("span", Bs, [
|
3585
3595
|
H(g(t.addressEntry.city), 1),
|
3586
3596
|
t.addressEntry.state ? (l(), a(x, { key: 0 }, [
|
3587
3597
|
H(" " + g(t.addressEntry.state), 1)
|
@@ -4085,6 +4095,22 @@ const Dy = /* @__PURE__ */ L(ga, [["render", xa]]), wa = {
|
|
4085
4095
|
type: String,
|
4086
4096
|
required: !1
|
4087
4097
|
},
|
4098
|
+
/**
|
4099
|
+
* legend for form
|
4100
|
+
*
|
4101
|
+
* useFieldset-property must be activated
|
4102
|
+
*
|
4103
|
+
* @requiredForAccessiblity: true
|
4104
|
+
*/
|
4105
|
+
legend: {
|
4106
|
+
default() {
|
4107
|
+
return {
|
4108
|
+
show: !0,
|
4109
|
+
align: "left",
|
4110
|
+
text: "Legend"
|
4111
|
+
};
|
4112
|
+
}
|
4113
|
+
},
|
4088
4114
|
/**
|
4089
4115
|
* activate if form-elements should be given by slot
|
4090
4116
|
*/
|
@@ -4124,26 +4150,6 @@ const Dy = /* @__PURE__ */ L(ga, [["render", xa]]), wa = {
|
|
4124
4150
|
type: Boolean,
|
4125
4151
|
default: !0
|
4126
4152
|
},
|
4127
|
-
/**
|
4128
|
-
* toggle visibility for legend-text
|
4129
|
-
*
|
4130
|
-
* useFieldset must be activated
|
4131
|
-
*/
|
4132
|
-
showLegend: {
|
4133
|
-
type: Boolean,
|
4134
|
-
default: !0
|
4135
|
-
},
|
4136
|
-
/**
|
4137
|
-
* text for legend
|
4138
|
-
*
|
4139
|
-
* useFieldset must be activated
|
4140
|
-
*
|
4141
|
-
* @requiredForAccessibility: true
|
4142
|
-
*/
|
4143
|
-
textLegend: {
|
4144
|
-
type: String,
|
4145
|
-
required: !1
|
4146
|
-
},
|
4147
4153
|
/**
|
4148
4154
|
* submit-button to submit all form-data
|
4149
4155
|
*/
|
@@ -4200,8 +4206,8 @@ function La(e, n, t, s, o, i) {
|
|
4200
4206
|
t.useFieldset ? (l(), a(x, { key: 0 }, [
|
4201
4207
|
f("fieldset", va, [
|
4202
4208
|
f("legend", {
|
4203
|
-
class: y({ hidden: !t.
|
4204
|
-
}, g(t.
|
4209
|
+
class: y({ hidden: !t.legend.show, "align-left": t.legend.align === "left" })
|
4210
|
+
}, g(t.legend.text), 3),
|
4205
4211
|
t.useSlot ? P(e.$slots, "default", { key: 0 }) : (l(!0), a(x, { key: 1 }, D(t.formElements, (d, u) => (l(), C(r, {
|
4206
4212
|
key: u,
|
4207
4213
|
element: d.element || "input",
|
@@ -4251,7 +4257,7 @@ function La(e, n, t, s, o, i) {
|
|
4251
4257
|
], 64)) : P(e.$slots, "default", { key: 1 })
|
4252
4258
|
], 42, ka);
|
4253
4259
|
}
|
4254
|
-
const
|
4260
|
+
const Fa = /* @__PURE__ */ L(wa, [["render", La]]), Ba = {
|
4255
4261
|
data() {
|
4256
4262
|
return {
|
4257
4263
|
defaultMessageProperties: {
|
@@ -4311,12 +4317,12 @@ const Ba = /* @__PURE__ */ L(wa, [["render", La]]), Fa = {
|
|
4311
4317
|
}
|
4312
4318
|
};
|
4313
4319
|
Pe(ge, "PATTERN_SURNAME", /^[a-züöäßáéíóàèìòêîô '-]+$/i), Pe(ge, "PATTERN_EMAIL", /^[a-z\d._%+-]+@[a-z\d._%+-]+\.[a-z]{2,}$/i), Pe(ge, "PATTERN_MESSAGE", /^.{2,500}$/);
|
4314
|
-
let
|
4320
|
+
let Ft = ge;
|
4315
4321
|
const Aa = {
|
4316
4322
|
emits: ["submit"],
|
4317
4323
|
mixins: [
|
4318
4324
|
oe,
|
4319
|
-
|
4325
|
+
Ba,
|
4320
4326
|
rt
|
4321
4327
|
],
|
4322
4328
|
inject: {
|
@@ -4326,7 +4332,7 @@ const Aa = {
|
|
4326
4332
|
},
|
4327
4333
|
data() {
|
4328
4334
|
return {
|
4329
|
-
validator: new
|
4335
|
+
validator: new Ft((e) => e),
|
4330
4336
|
formData: {
|
4331
4337
|
salutation: { value: this.configuration.salutation.default },
|
4332
4338
|
lastName: { value: "" },
|
@@ -4360,6 +4366,16 @@ const Aa = {
|
|
4360
4366
|
type: String,
|
4361
4367
|
required: !1
|
4362
4368
|
},
|
4369
|
+
legend: {
|
4370
|
+
type: Object,
|
4371
|
+
default() {
|
4372
|
+
return {
|
4373
|
+
show: !0,
|
4374
|
+
align: "right",
|
4375
|
+
text: "Legend"
|
4376
|
+
};
|
4377
|
+
}
|
4378
|
+
},
|
4363
4379
|
/**
|
4364
4380
|
* configuration for form-elements used in form
|
4365
4381
|
*/
|
@@ -4536,18 +4552,18 @@ const Aa = {
|
|
4536
4552
|
class: "flex-container"
|
4537
4553
|
}, Ha = ["innerHTML"];
|
4538
4554
|
function Ra(e, n, t, s, o, i) {
|
4539
|
-
const r = K, d = ee, u =
|
4555
|
+
const r = K, d = ee, u = Fa;
|
4540
4556
|
return l(), a("div", Ea, [
|
4541
4557
|
t.cmdHeadline ? (l(), C(r, J(R({ key: 0 }, t.cmdHeadline)), null, 16)) : c("", !0),
|
4542
4558
|
v(u, {
|
4543
4559
|
onSubmit: i.onSubmit,
|
4544
4560
|
novalidate: "novalidate",
|
4545
|
-
|
4561
|
+
legend: t.legend,
|
4546
4562
|
submitButton: t.submitButton,
|
4547
4563
|
formAction: t.formAction
|
4548
4564
|
}, {
|
4549
4565
|
default: V(() => {
|
4550
|
-
var p, m, h, w, b, _, T, S, O, A, M,
|
4566
|
+
var p, m, h, w, b, _, T, S, O, A, M, F, z, B, q, G, Y, j, le, se, ae, X, he, E, fe, Me, Le, Fe, Be, Ae, Ee, ne, nn, on, ln, sn, an, rn, dn, cn;
|
4551
4567
|
return [
|
4552
4568
|
t.configuration.salutation ? (l(), a("div", Pa, [
|
4553
4569
|
v(d, {
|
@@ -4612,7 +4628,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4612
4628
|
iconClass: "icon-mail",
|
4613
4629
|
labelText: e.getMessage("basic_form.labeltext.email"),
|
4614
4630
|
placeholder: e.getMessage("basic_form.placeholder.email"),
|
4615
|
-
required: (
|
4631
|
+
required: (F = t.configuration.email) == null ? void 0 : F.required,
|
4616
4632
|
name: ((z = t.configuration.email) == null ? void 0 : z.name) || "email",
|
4617
4633
|
modelValue: o.formData.email.value,
|
4618
4634
|
"onUpdate:modelValue": n[4] || (n[4] = (W) => o.formData.email.value = W),
|
@@ -4622,7 +4638,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4622
4638
|
t.configuration.phone ? (l(), C(d, {
|
4623
4639
|
key: 1,
|
4624
4640
|
element: "input",
|
4625
|
-
type: ((
|
4641
|
+
type: ((B = t.configuration.phone) == null ? void 0 : B.type) || "tel",
|
4626
4642
|
iconClass: "icon-phone",
|
4627
4643
|
labelText: e.getMessage("basic_form.labeltext.phone"),
|
4628
4644
|
placeholder: e.getMessage("basic_form.placeholder.phone"),
|
@@ -4687,7 +4703,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4687
4703
|
labelText: e.getMessage("basic_form.labeltext.zip"),
|
4688
4704
|
placeholder: e.getMessage("basic_form.placeholder.zip"),
|
4689
4705
|
required: (Le = t.configuration.zip) == null ? void 0 : Le.required,
|
4690
|
-
name: ((
|
4706
|
+
name: ((Fe = t.configuration.zip) == null ? void 0 : Fe.name) || "zip",
|
4691
4707
|
modelValue: o.formData.zip.value,
|
4692
4708
|
"onUpdate:modelValue": n[9] || (n[9] = (W) => o.formData.zip.value = W),
|
4693
4709
|
status: o.formData.zip.error ? "error" : "",
|
@@ -4696,7 +4712,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4696
4712
|
t.configuration.city ? (l(), C(d, {
|
4697
4713
|
key: 1,
|
4698
4714
|
element: "input",
|
4699
|
-
type: ((
|
4715
|
+
type: ((Be = t.configuration.city) == null ? void 0 : Be.type) || "text",
|
4700
4716
|
labelText: e.getMessage("basic_form.labeltext.city"),
|
4701
4717
|
placeholder: e.getMessage("basic_form.placeholder.city"),
|
4702
4718
|
required: (Ae = t.configuration.city) == null ? void 0 : Ae.required,
|
@@ -4757,7 +4773,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4757
4773
|
];
|
4758
4774
|
}),
|
4759
4775
|
_: 3
|
4760
|
-
}, 8, ["onSubmit", "
|
4776
|
+
}, 8, ["onSubmit", "legend", "submitButton", "formAction"])
|
4761
4777
|
]);
|
4762
4778
|
}
|
4763
4779
|
const Na = /* @__PURE__ */ L(Aa, [["render", Ra]]);
|
@@ -5021,7 +5037,7 @@ function er(e, n, t, s, o, i) {
|
|
5021
5037
|
itemProvider: ((u = e.editModeConfig) == null ? void 0 : u.allowAddItem) !== !1 ? i.itemProvider : null
|
5022
5038
|
}, {
|
5023
5039
|
default: V((O) => {
|
5024
|
-
var A, M,
|
5040
|
+
var A, M, F, z, B, q, G, Y, j, le, se, ae;
|
5025
5041
|
return [
|
5026
5042
|
f("figure", {
|
5027
5043
|
class: y(["cmd-image flex-container no-gap vertical", i.textAlign])
|
@@ -5036,7 +5052,7 @@ function er(e, n, t, s, o, i) {
|
|
5036
5052
|
labelText: "Text figcaption",
|
5037
5053
|
modelValue: i.editableFigcaptionText,
|
5038
5054
|
"onUpdate:modelValue": n[0] || (n[0] = (X) => i.editableFigcaptionText = X)
|
5039
|
-
}, null, 8, ["class", "modelValue"])) : (
|
5055
|
+
}, null, 8, ["class", "modelValue"])) : (F = t.figcaption) != null && F.text ? (l(), a("figcaption", {
|
5040
5056
|
key: 1,
|
5041
5057
|
innerHTML: (z = t.figcaption) == null ? void 0 : z.text
|
5042
5058
|
}, null, 8, Ua)) : c("", !0)
|
@@ -5052,7 +5068,7 @@ function er(e, n, t, s, o, i) {
|
|
5052
5068
|
za,
|
5053
5069
|
f("img", {
|
5054
5070
|
src: i.imageSource,
|
5055
|
-
alt: (
|
5071
|
+
alt: (B = t.image) == null ? void 0 : B.alt,
|
5056
5072
|
title: (q = t.image) == null ? void 0 : q.tooltip
|
5057
5073
|
}, null, 8, Wa)
|
5058
5074
|
], 16),
|
@@ -5780,9 +5796,9 @@ const yr = fi, br = ["aria-label"], Cr = { class: "flex-container" }, _r = {
|
|
5780
5796
|
}, Mr = {
|
5781
5797
|
key: 0,
|
5782
5798
|
class: "flex-container no-flex"
|
5783
|
-
}, Lr = ["title"],
|
5799
|
+
}, Lr = ["title"], Fr = { key: 1 }, Br = ["title"], Ar = { key: 1 };
|
5784
5800
|
function Er(e, n, t, s, o, i) {
|
5785
|
-
var h, w, b, _, T, S, O, A, M,
|
5801
|
+
var h, w, b, _, T, S, O, A, M, F, z, B, q, G, Y, j, le, se, ae, X, he, E, fe, Me, Le, Fe, Be, Ae, Ee;
|
5786
5802
|
const r = K, d = U, u = Te, p = dt, m = pr;
|
5787
5803
|
return l(), C(Wi, { to: "body" }, [
|
5788
5804
|
f("dialog", {
|
@@ -5811,7 +5827,7 @@ function Er(e, n, t, s, o, i) {
|
|
5811
5827
|
type: (M = e.fancyboxOptions.printButtons.color) == null ? void 0 : M.iconType
|
5812
5828
|
}, null, 8, ["iconClass", "type"])
|
5813
5829
|
], 8, xr)) : c("", !0),
|
5814
|
-
e.showPrintButtons && ((
|
5830
|
+
e.showPrintButtons && ((F = e.fancyboxOptions.printButtons) != null && F.grayscale) ? (l(), a("a", {
|
5815
5831
|
key: 1,
|
5816
5832
|
href: "#",
|
5817
5833
|
class: "button print-grayscale",
|
@@ -5819,7 +5835,7 @@ function Er(e, n, t, s, o, i) {
|
|
5819
5835
|
onClick: n[1] || (n[1] = I((ne) => e.printInGrayscale = !0, ["prevent"]))
|
5820
5836
|
}, [
|
5821
5837
|
v(d, {
|
5822
|
-
iconClass: (
|
5838
|
+
iconClass: (B = e.fancyboxOptions.printButtons.grayscale) == null ? void 0 : B.iconClass,
|
5823
5839
|
type: (q = e.fancyboxOptions.printButtons.grayscale) == null ? void 0 : q.iconType
|
5824
5840
|
}, null, 8, ["iconClass", "type"])
|
5825
5841
|
], 8, wr)) : c("", !0),
|
@@ -5878,7 +5894,7 @@ function Er(e, n, t, s, o, i) {
|
|
5878
5894
|
iconClass: (ae = e.fancyboxOptions.submitButtons.cancel) == null ? void 0 : ae.iconClass,
|
5879
5895
|
type: (X = e.fancyboxOptions.submitButtons.cancel) == null ? void 0 : X.iconType
|
5880
5896
|
}, null, 8, ["iconClass", "type"])) : c("", !0),
|
5881
|
-
(he = e.fancyboxOptions.submitButtons.cancel) != null && he.buttonText ? (l(), a("span",
|
5897
|
+
(he = e.fancyboxOptions.submitButtons.cancel) != null && he.buttonText ? (l(), a("span", Fr, g((E = e.fancyboxOptions.submitButtons.cancel) == null ? void 0 : E.buttonText), 1)) : c("", !0)
|
5882
5898
|
], 8, Lr)) : c("", !0),
|
5883
5899
|
(fe = e.fancyboxOptions.submitButtons) != null && fe.confirm ? (l(), a("button", {
|
5884
5900
|
key: 1,
|
@@ -5887,11 +5903,11 @@ function Er(e, n, t, s, o, i) {
|
|
5887
5903
|
}, [
|
5888
5904
|
(Le = e.fancyboxOptions.submitButtons.confirm) != null && Le.iconClass ? (l(), C(d, {
|
5889
5905
|
key: 0,
|
5890
|
-
iconClass: (
|
5891
|
-
type: (
|
5906
|
+
iconClass: (Fe = e.fancyboxOptions.submitButtons.confirm) == null ? void 0 : Fe.iconClass,
|
5907
|
+
type: (Be = e.fancyboxOptions.submitButtons.confirm) == null ? void 0 : Be.iconType
|
5892
5908
|
}, null, 8, ["iconClass", "type"])) : c("", !0),
|
5893
5909
|
(Ae = e.fancyboxOptions.submitButtons.confirm) != null && Ae.buttonText ? (l(), a("span", Ar, g((Ee = e.fancyboxOptions.submitButtons.confirm) == null ? void 0 : Ee.buttonText), 1)) : c("", !0)
|
5894
|
-
], 8,
|
5910
|
+
], 8, Br)) : c("", !0)
|
5895
5911
|
])) : c("", !0),
|
5896
5912
|
e.fancyBoxGallery ? (l(), C(m, {
|
5897
5913
|
key: 1,
|
@@ -6648,10 +6664,10 @@ const cd = ["title"], ud = {
|
|
6648
6664
|
}, kd = { class: "box-body" }, vd = { key: 0 }, Td = {
|
6649
6665
|
key: 1,
|
6650
6666
|
class: "price"
|
6651
|
-
}, Sd = ["title"], Id = { key: 2 }, Od = { class: "box-header flex-container vertical" }, Md = { key: 0 }, Ld = ["src", "alt"],
|
6667
|
+
}, Sd = ["title"], Id = { key: 2 }, Od = { class: "box-header flex-container vertical" }, Md = { key: 0 }, Ld = ["src", "alt"], Fd = {
|
6652
6668
|
key: 0,
|
6653
6669
|
class: "user-name"
|
6654
|
-
},
|
6670
|
+
}, Bd = {
|
6655
6671
|
key: 0,
|
6656
6672
|
class: "user-age"
|
6657
6673
|
}, Ad = { key: 1 }, Ed = ["title"], Pd = {
|
@@ -6692,7 +6708,7 @@ function Ud(e, n, t, s, o, i) {
|
|
6692
6708
|
href: "#",
|
6693
6709
|
class: "box-header",
|
6694
6710
|
title: o.open ? t.iconOpen.tooltip : t.iconClosed.tooltip,
|
6695
|
-
onClick: n[0] || (n[0] = I((...
|
6711
|
+
onClick: n[0] || (n[0] = I((...F) => i.toggleContentVisibility && i.toggleContentVisibility(...F), ["prevent"]))
|
6696
6712
|
}, [
|
6697
6713
|
(m = t.useSlots) != null && m.includes("header") ? P(e.$slots, "header", { key: 0 }) : (h = t.cmdHeadline) != null && h.headlineText ? (l(), C(r, J(R({ key: 1 }, t.cmdHeadline)), null, 16)) : c("", !0),
|
6698
6714
|
v(d, {
|
@@ -6730,7 +6746,7 @@ function Ud(e, n, t, s, o, i) {
|
|
6730
6746
|
t.cutoffTextLines > 0 ? (l(), a("a", {
|
6731
6747
|
key: 0,
|
6732
6748
|
href: "#",
|
6733
|
-
onClick: n[1] || (n[1] = I((...
|
6749
|
+
onClick: n[1] || (n[1] = I((...F) => i.toggleCutOffText && i.toggleCutOffText(...F), ["prevent"]))
|
6734
6750
|
}, g(o.showCutOffText ? e.getMessage("cmdbox.contentbox.collapse_text") : e.getMessage("cmdbox.contentbox.expand_text")), 1)) : c("", !0)
|
6735
6751
|
]),
|
6736
6752
|
_: 1
|
@@ -6769,7 +6785,7 @@ function Ud(e, n, t, s, o, i) {
|
|
6769
6785
|
key: 1,
|
6770
6786
|
class: y(["cmd-box box product", { "stretch-vertically": t.stretchVertically, "stretch-horizontally": t.stretchHorizontally, "row-view": t.rowView }]),
|
6771
6787
|
href: "#",
|
6772
|
-
onClick: n[2] || (n[2] = I((
|
6788
|
+
onClick: n[2] || (n[2] = I((F) => i.clickOnProduct(t.product), ["prevent"]))
|
6773
6789
|
}, [
|
6774
6790
|
f("div", yd, [
|
6775
6791
|
t.product.image !== void 0 ? (l(), a("figure", bd, [
|
@@ -6814,9 +6830,9 @@ function Ud(e, n, t, s, o, i) {
|
|
6814
6830
|
src: t.user.image.src,
|
6815
6831
|
alt: t.user.image.alt
|
6816
6832
|
}, null, 8, Ld),
|
6817
|
-
t.rowView ? c("", !0) : (l(), a("figcaption",
|
6833
|
+
t.rowView ? c("", !0) : (l(), a("figcaption", Fd, [
|
6818
6834
|
H(g(t.user.name), 1),
|
6819
|
-
t.user.age ? (l(), a("span",
|
6835
|
+
t.user.age ? (l(), a("span", Bd, " (" + g(t.user.age) + ")", 1)) : c("", !0)
|
6820
6836
|
]))
|
6821
6837
|
])) : (l(), a("div", Ad, [
|
6822
6838
|
f("span", {
|
@@ -6833,7 +6849,7 @@ function Ud(e, n, t, s, o, i) {
|
|
6833
6849
|
t.user.description ? (l(), a("p", Rd, g(t.user.description), 1)) : c("", !0)
|
6834
6850
|
]),
|
6835
6851
|
t.user.tags && t.user.tags.length ? (l(), a("ul", Nd, [
|
6836
|
-
(l(!0), a(x, null, D(t.user.tags, (
|
6852
|
+
(l(!0), a(x, null, D(t.user.tags, (F, z) => (l(), a("li", { key: z }, g(F), 1))), 128))
|
6837
6853
|
])) : c("", !0),
|
6838
6854
|
t.user.links && t.user.links.length ? (l(), a("div", jd, [
|
6839
6855
|
v(p, {
|
@@ -7042,9 +7058,9 @@ const gi = /* @__PURE__ */ L(Zt, [["render", Ud]]), Yt = {
|
|
7042
7058
|
}
|
7043
7059
|
}, Mn = () => {
|
7044
7060
|
Zn((e) => ({
|
7045
|
-
"
|
7046
|
-
"
|
7047
|
-
"
|
7061
|
+
"4b314fb8": e.boxesPerRowLarge,
|
7062
|
+
"1cdf8a98": e.boxesPerRowMedium,
|
7063
|
+
"4b992984": e.boxesPerRowSmall
|
7048
7064
|
}));
|
7049
7065
|
}, Ln = Yt.setup;
|
7050
7066
|
Yt.setup = Ln ? (e, n) => (Mn(), Ln(e, n)) : Mn;
|
@@ -7548,7 +7564,7 @@ const Hy = /* @__PURE__ */ L(fc, [["render", yc]]), bc = {
|
|
7548
7564
|
}, wc = { key: 0 }, kc = { key: 1 }, vc = ["href", "target"], Tc = ["innerHTML"], Sc = /* @__PURE__ */ f("hr", null, null, -1), Ic = {
|
7549
7565
|
key: 1,
|
7550
7566
|
class: "flex-container vertical"
|
7551
|
-
}, Oc = { key: 0 }, Mc = { key: 1 }, Lc = ["href", "target"],
|
7567
|
+
}, Oc = { key: 0 }, Mc = { key: 1 }, Lc = ["href", "target"], Fc = ["innerHTML"], Bc = { class: "button-wrapper align-center" };
|
7552
7568
|
function Ac(e, n, t, s, o, i) {
|
7553
7569
|
const r = K, d = ee, u = gi;
|
7554
7570
|
return l(), C(xe, { name: "fade" }, {
|
@@ -7571,11 +7587,11 @@ function Ac(e, n, t, s, o, i) {
|
|
7571
7587
|
"headline-text": (_ = t.cmdBoxRequiredCookies) == null ? void 0 : _.headlineText,
|
7572
7588
|
"headline-level": (T = t.cmdBoxRequiredCookies) == null ? void 0 : T.headlineLevel
|
7573
7589
|
}, null, 8, ["headline-text", "headline-level"])) : c("", !0),
|
7574
|
-
(l(!0), a(x, null, D(t.cookieOptions.required.cookies || [], (
|
7575
|
-
var
|
7590
|
+
(l(!0), a(x, null, D(t.cookieOptions.required.cookies || [], (F, z) => {
|
7591
|
+
var B;
|
7576
7592
|
return l(), C(u, {
|
7577
7593
|
useSlots: ["header", "body"],
|
7578
|
-
collapsible: (
|
7594
|
+
collapsible: (B = t.cmdBoxRequiredCookies) == null ? void 0 : B.collapsible,
|
7579
7595
|
key: z
|
7580
7596
|
}, {
|
7581
7597
|
header: V(() => [
|
@@ -7584,23 +7600,23 @@ function Ac(e, n, t, s, o, i) {
|
|
7584
7600
|
type: "checkbox",
|
7585
7601
|
modelValue: i.acceptedCookies,
|
7586
7602
|
"onUpdate:modelValue": n[0] || (n[0] = (q) => i.acceptedCookies = q),
|
7587
|
-
inputValue:
|
7588
|
-
labelText:
|
7589
|
-
disabled:
|
7590
|
-
id:
|
7603
|
+
inputValue: F.value,
|
7604
|
+
labelText: F.labelText,
|
7605
|
+
disabled: F.disabled,
|
7606
|
+
id: F.id,
|
7591
7607
|
toggleSwitch: !0,
|
7592
7608
|
title: e.getMessage("cmdcookiedisclaimer.title.cookie_cannot_be_disabled")
|
7593
7609
|
}, null, 8, ["modelValue", "inputValue", "labelText", "disabled", "id", "title"])
|
7594
7610
|
]),
|
7595
7611
|
body: V(() => [
|
7596
|
-
|
7597
|
-
|
7598
|
-
H(g(
|
7612
|
+
F.description ? (l(), a("p", wc, g(F.description), 1)) : c("", !0),
|
7613
|
+
F.linkDataPrivacy ? (l(), a("p", kc, [
|
7614
|
+
H(g(F.linkDataPrivacy.label) + " ", 1),
|
7599
7615
|
f("a", {
|
7600
7616
|
onClick: n[1] || (n[1] = (...q) => i.openDataPrivacy && i.openDataPrivacy(...q)),
|
7601
|
-
href:
|
7602
|
-
target:
|
7603
|
-
}, g(
|
7617
|
+
href: F.linkDataPrivacy.link,
|
7618
|
+
target: F.linkDataPrivacy.target
|
7619
|
+
}, g(F.linkDataPrivacy.linkText), 9, vc)
|
7604
7620
|
])) : c("", !0),
|
7605
7621
|
o.dataPrivacyContent ? (l(), a("div", {
|
7606
7622
|
key: 2,
|
@@ -7618,11 +7634,11 @@ function Ac(e, n, t, s, o, i) {
|
|
7618
7634
|
"headline-text": (A = t.cmdBoxOptionalCookies) == null ? void 0 : A.headlineText,
|
7619
7635
|
"headline-level": (M = t.cmdBoxOptionalCookies) == null ? void 0 : M.headlineLevel
|
7620
7636
|
}, null, 8, ["headline-text", "headline-level"])) : c("", !0),
|
7621
|
-
(l(!0), a(x, null, D(t.cookieOptions.optional.cookies || [], (
|
7622
|
-
var
|
7637
|
+
(l(!0), a(x, null, D(t.cookieOptions.optional.cookies || [], (F, z) => {
|
7638
|
+
var B;
|
7623
7639
|
return l(), C(u, {
|
7624
7640
|
useSlots: ["header", "body"],
|
7625
|
-
collapsible: (
|
7641
|
+
collapsible: (B = t.cmdBoxOptionalCookies) == null ? void 0 : B.collapsible,
|
7626
7642
|
key: z
|
7627
7643
|
}, {
|
7628
7644
|
header: V(() => [
|
@@ -7631,28 +7647,28 @@ function Ac(e, n, t, s, o, i) {
|
|
7631
7647
|
type: "checkbox",
|
7632
7648
|
modelValue: i.acceptedCookies,
|
7633
7649
|
"onUpdate:modelValue": n[2] || (n[2] = (q) => i.acceptedCookies = q),
|
7634
|
-
inputValue:
|
7635
|
-
labelText:
|
7636
|
-
disabled:
|
7637
|
-
id:
|
7650
|
+
inputValue: F.value,
|
7651
|
+
labelText: F.labelText,
|
7652
|
+
disabled: F.disabled,
|
7653
|
+
id: F.id,
|
7638
7654
|
toggleSwitch: !0,
|
7639
7655
|
title: e.getMessage("cmdcookiedisclaimer.title.toggle_to_accept_cookie")
|
7640
7656
|
}, null, 8, ["modelValue", "inputValue", "labelText", "disabled", "id", "title"])
|
7641
7657
|
]),
|
7642
7658
|
body: V(() => [
|
7643
|
-
|
7644
|
-
|
7645
|
-
H(g(
|
7659
|
+
F.description ? (l(), a("p", Oc, g(F.description), 1)) : c("", !0),
|
7660
|
+
F.linkDataPrivacy ? (l(), a("p", Mc, [
|
7661
|
+
H(g(F.linkDataPrivacy.label) + " ", 1),
|
7646
7662
|
f("a", {
|
7647
7663
|
onClick: n[3] || (n[3] = (...q) => i.openDataPrivacy && i.openDataPrivacy(...q)),
|
7648
|
-
href:
|
7649
|
-
target:
|
7650
|
-
}, g(
|
7664
|
+
href: F.linkDataPrivacy.link,
|
7665
|
+
target: F.linkDataPrivacy.target
|
7666
|
+
}, g(F.linkDataPrivacy.linkText), 9, Lc)
|
7651
7667
|
])) : c("", !0),
|
7652
7668
|
o.dataPrivacyContent ? (l(), a("div", {
|
7653
7669
|
key: 2,
|
7654
7670
|
innerHTML: o.dataPrivacyContent
|
7655
|
-
}, null, 8,
|
7671
|
+
}, null, 8, Fc)) : c("", !0)
|
7656
7672
|
]),
|
7657
7673
|
_: 2
|
7658
7674
|
}, 1032, ["collapsible"]);
|
@@ -7661,7 +7677,7 @@ function Ac(e, n, t, s, o, i) {
|
|
7661
7677
|
];
|
7662
7678
|
}),
|
7663
7679
|
P(e.$slots, "privacy-text"),
|
7664
|
-
f("div",
|
7680
|
+
f("div", Bc, [
|
7665
7681
|
t.buttonLabelAcceptCurrentSettings ? (l(), a("button", {
|
7666
7682
|
key: 0,
|
7667
7683
|
type: "button",
|
@@ -8473,25 +8489,25 @@ const jy = /* @__PURE__ */ L(xu, [["render", Iu]]), Ou = {
|
|
8473
8489
|
onMouseOver(e) {
|
8474
8490
|
this.showLargeImage = !0, this.$nextTick(() => {
|
8475
8491
|
const n = window.innerHeight - this.$el.getBoundingClientRect().y - 10, t = this.$el.querySelector(".zoom-container");
|
8476
|
-
t.style.height = `${n}px`,
|
8492
|
+
t.style.height = `${n}px`, Fn(this, e);
|
8477
8493
|
});
|
8478
8494
|
},
|
8479
8495
|
onMouseMove(e) {
|
8480
|
-
|
8496
|
+
Fn(this, e);
|
8481
8497
|
},
|
8482
8498
|
onMouseOut() {
|
8483
8499
|
this.showLargeImage = !1;
|
8484
8500
|
}
|
8485
8501
|
}
|
8486
8502
|
};
|
8487
|
-
function
|
8488
|
-
const t = e.$el.querySelector(".zoom-container"), s = t.querySelector("img"), o = e.$el.querySelector(".zoom-overlay"), i = n.target.getBoundingClientRect().width, r = n.target.getBoundingClientRect().height, d = s.getBoundingClientRect().width, u = s.getBoundingClientRect().height, p = n.pageX - n.target.getBoundingClientRect().x - window.pageXOffset, m = n.pageY - n.target.getBoundingClientRect().y - window.pageYOffset, h = Math.min(i, t.getBoundingClientRect().width / d * i), w = Math.min(r, t.getBoundingClientRect().height / u * r), b =
|
8503
|
+
function Fn(e, n) {
|
8504
|
+
const t = e.$el.querySelector(".zoom-container"), s = t.querySelector("img"), o = e.$el.querySelector(".zoom-overlay"), i = n.target.getBoundingClientRect().width, r = n.target.getBoundingClientRect().height, d = s.getBoundingClientRect().width, u = s.getBoundingClientRect().height, p = n.pageX - n.target.getBoundingClientRect().x - window.pageXOffset, m = n.pageY - n.target.getBoundingClientRect().y - window.pageYOffset, h = Math.min(i, t.getBoundingClientRect().width / d * i), w = Math.min(r, t.getBoundingClientRect().height / u * r), b = Bn(p - h / 2, 0, i - h), _ = Bn(m - w / 2, 0, r - w), T = -(b * (d / i)), S = -(_ * (u / r));
|
8489
8505
|
o.style.left = `${b}px`, o.style.top = `${_}px`, o.style.width = `${h}px`, o.style.height = `${w}px`, o.style.display = "block", s.style.marginLeft = `${T}px`, s.style.marginTop = `${S}px`;
|
8490
8506
|
}
|
8491
|
-
function
|
8507
|
+
function Bn(e, n, t) {
|
8492
8508
|
return e < n ? n : e > t ? t : e;
|
8493
8509
|
}
|
8494
|
-
const Mu = { class: "cmd-imagezoom flex-container" }, Lu = ["title"],
|
8510
|
+
const Mu = { class: "cmd-imagezoom flex-container" }, Lu = ["title"], Fu = ["src", "alt"], Bu = {
|
8495
8511
|
key: 0,
|
8496
8512
|
class: "zoom-container"
|
8497
8513
|
}, Au = ["src", "alt"], Eu = {
|
@@ -8511,9 +8527,9 @@ function Pu(e, n, t, s, o, i) {
|
|
8511
8527
|
onMouseover: n[0] || (n[0] = (...r) => i.onMouseOver && i.onMouseOver(...r)),
|
8512
8528
|
onMousemove: n[1] || (n[1] = (...r) => i.onMouseMove && i.onMouseMove(...r)),
|
8513
8529
|
onMouseout: n[2] || (n[2] = (...r) => i.onMouseOut && i.onMouseOut(...r))
|
8514
|
-
}, null, 40,
|
8530
|
+
}, null, 40, Fu)
|
8515
8531
|
], 8, Lu),
|
8516
|
-
o.showLargeImage ? (l(), a("div",
|
8532
|
+
o.showLargeImage ? (l(), a("div", Bu, [
|
8517
8533
|
f("img", {
|
8518
8534
|
src: t.imageLarge.src,
|
8519
8535
|
alt: t.imageLarge.alt
|
@@ -8837,13 +8853,19 @@ const Ju = /* @__PURE__ */ L(Vu, [["render", Gu]]), Ku = {
|
|
8837
8853
|
}
|
8838
8854
|
},
|
8839
8855
|
/**
|
8840
|
-
*
|
8856
|
+
* options for legend for login-fieldset
|
8841
8857
|
*
|
8842
8858
|
* @requiredForAccessibility: true
|
8843
8859
|
*/
|
8844
|
-
|
8845
|
-
type:
|
8846
|
-
default
|
8860
|
+
legendLoginForm: {
|
8861
|
+
type: Object,
|
8862
|
+
default() {
|
8863
|
+
return {
|
8864
|
+
show: !0,
|
8865
|
+
align: "right",
|
8866
|
+
text: "Login form"
|
8867
|
+
};
|
8868
|
+
}
|
8847
8869
|
},
|
8848
8870
|
/**
|
8849
8871
|
* toggle legend visibility
|
@@ -8857,9 +8879,15 @@ const Ju = /* @__PURE__ */ L(Vu, [["render", Gu]]), Ku = {
|
|
8857
8879
|
*
|
8858
8880
|
* @requiredForAccessibility: true
|
8859
8881
|
*/
|
8860
|
-
|
8861
|
-
type:
|
8862
|
-
default
|
8882
|
+
legendForgotLoginForm: {
|
8883
|
+
type: Object,
|
8884
|
+
default() {
|
8885
|
+
return {
|
8886
|
+
show: !0,
|
8887
|
+
align: 'right"',
|
8888
|
+
text: "Forgot login form"
|
8889
|
+
};
|
8890
|
+
}
|
8863
8891
|
},
|
8864
8892
|
/**
|
8865
8893
|
* properties for CmdHeadline-component for login-form
|
@@ -9062,16 +9090,16 @@ const Ju = /* @__PURE__ */ L(Vu, [["render", Gu]]), Ku = {
|
|
9062
9090
|
}
|
9063
9091
|
}, Zu = { class: "cmd-login-form flex-container" }, Yu = { class: "option-wrapper flex-container" }, Xu = { key: 1 }, Qu = ["type", "disabled"], $u = { key: 1 }, em = { class: "cmd-login-form flex-container" }, tm = { class: "option-wrapper flex-container" }, nm = { key: 1 }, im = ["type", "disabled"], om = { key: 1 };
|
9064
9092
|
function lm(e, n, t, s, o, i) {
|
9065
|
-
var m, h, w, b, _, T, S, O, A, M,
|
9093
|
+
var m, h, w, b, _, T, S, O, A, M, F, z, B, q, G, Y;
|
9066
9094
|
const r = K, d = ee, u = U, p = pi;
|
9067
9095
|
return l(), a(x, null, [
|
9068
9096
|
ue(f("fieldset", Zu, [
|
9069
9097
|
f("legend", {
|
9070
|
-
class: y({ hidden: !t.
|
9071
|
-
}, g(t.
|
9098
|
+
class: y({ hidden: !t.legendLoginForm.show, "align-left": t.legendLoginForm.align === "left" })
|
9099
|
+
}, g(t.legendLoginForm.text), 3),
|
9072
9100
|
t.cmdHeadlineLoginForm ? (l(), C(r, J(R({ key: 0 }, t.cmdHeadlineLoginForm)), null, 16)) : c("", !0),
|
9073
9101
|
f("div", {
|
9074
|
-
class: y(["login-fields
|
9102
|
+
class: y(["login-fields flex-container", { vertical: t.orientation === "vertical" }])
|
9075
9103
|
}, [
|
9076
9104
|
v(d, {
|
9077
9105
|
element: "input",
|
@@ -9150,8 +9178,8 @@ function lm(e, n, t, s, o, i) {
|
|
9150
9178
|
]),
|
9151
9179
|
ue(f("fieldset", em, [
|
9152
9180
|
f("legend", {
|
9153
|
-
class: y({ hidden: !t.
|
9154
|
-
}, g(t.
|
9181
|
+
class: y({ hidden: !t.legendForgotLoginForm.show, "align-left": t.legendForgotLoginForm.align === "left" })
|
9182
|
+
}, g(t.legendForgotLoginForm.text), 3),
|
9155
9183
|
t.cmdHeadlineSendLoginForm ? (l(), C(r, J(R({ key: 0 }, t.cmdHeadlineSendLoginForm)), null, 16)) : c("", !0),
|
9156
9184
|
v(d, {
|
9157
9185
|
ref: "sendPassword",
|
@@ -9190,8 +9218,8 @@ function lm(e, n, t, s, o, i) {
|
|
9190
9218
|
}, [
|
9191
9219
|
(M = (A = t.buttons.sendLogin) == null ? void 0 : A.icon) != null && M.iconClass ? (l(), C(u, {
|
9192
9220
|
key: 0,
|
9193
|
-
iconClass: (z = (
|
9194
|
-
title: (q = (
|
9221
|
+
iconClass: (z = (F = t.buttons.sendLogin) == null ? void 0 : F.icon) == null ? void 0 : z.iconClass,
|
9222
|
+
title: (q = (B = t.buttons.sendLogin) == null ? void 0 : B.icon) == null ? void 0 : q.tooltip
|
9195
9223
|
}, null, 8, ["iconClass", "title"])) : c("", !0),
|
9196
9224
|
(G = t.buttons.sendLogin) != null && G.text ? (l(), a("span", om, g((Y = t.buttons.sendLogin) == null ? void 0 : Y.text), 1)) : c("", !0)
|
9197
9225
|
], 10, im)) : c("", !0)
|
@@ -9656,7 +9684,7 @@ function Lm(e, n, t, s, o, i) {
|
|
9656
9684
|
], 2))), 128))
|
9657
9685
|
], 2);
|
9658
9686
|
}
|
9659
|
-
const Wy = /* @__PURE__ */ L(xm, [["render", Lm]]),
|
9687
|
+
const Wy = /* @__PURE__ */ L(xm, [["render", Lm]]), Fm = {
|
9660
9688
|
name: "CmdNewsletterSubscription",
|
9661
9689
|
emits: ["button-click"],
|
9662
9690
|
data() {
|
@@ -9799,10 +9827,10 @@ const Wy = /* @__PURE__ */ L(xm, [["render", Lm]]), Bm = {
|
|
9799
9827
|
immediate: !0
|
9800
9828
|
}
|
9801
9829
|
}
|
9802
|
-
},
|
9830
|
+
}, Bm = { class: "cmd-newsletter-subscription flex-container" }, Am = { class: "button-wrapper" };
|
9803
9831
|
function Em(e, n, t, s, o, i) {
|
9804
9832
|
const r = Ju, d = ee;
|
9805
|
-
return l(), a("fieldset",
|
9833
|
+
return l(), a("fieldset", Bm, [
|
9806
9834
|
f("legend", {
|
9807
9835
|
class: y({ hidden: !t.showLegend })
|
9808
9836
|
}, g(t.textLegend), 3),
|
@@ -9837,7 +9865,7 @@ function Em(e, n, t, s, o, i) {
|
|
9837
9865
|
])
|
9838
9866
|
]);
|
9839
9867
|
}
|
9840
|
-
const Gy = /* @__PURE__ */ L(
|
9868
|
+
const Gy = /* @__PURE__ */ L(Fm, [["render", Em]]);
|
9841
9869
|
function An(e, n, t, s = !0) {
|
9842
9870
|
function o(i, r) {
|
9843
9871
|
return r && i < 10 ? "0" + i : i;
|
@@ -10927,7 +10955,7 @@ function Lf(e, n, t, s, o, i) {
|
|
10927
10955
|
}, Mf))
|
10928
10956
|
], 2);
|
10929
10957
|
}
|
10930
|
-
const
|
10958
|
+
const Ff = /* @__PURE__ */ L(If, [["render", Lf]]), Bf = {
|
10931
10959
|
name: "CmdPageFooter",
|
10932
10960
|
props: {
|
10933
10961
|
/**
|
@@ -10992,7 +11020,7 @@ const Bf = /* @__PURE__ */ L(If, [["render", Lf]]), Ff = {
|
|
10992
11020
|
}, Af = { class: "button-wrapper" }, Ef = ["title"], Pf = { key: 1 };
|
10993
11021
|
function Vf(e, n, t, s, o, i) {
|
10994
11022
|
var d, u, p;
|
10995
|
-
const r =
|
11023
|
+
const r = Ff;
|
10996
11024
|
return l(), a("footer", {
|
10997
11025
|
class: y(["cmd-page-footer flex-container", { "small-buttons": t.useSmallButtons }])
|
10998
11026
|
}, [
|
@@ -11022,7 +11050,7 @@ function Vf(e, n, t, s, o, i) {
|
|
11022
11050
|
])
|
11023
11051
|
], 2);
|
11024
11052
|
}
|
11025
|
-
const Zy = /* @__PURE__ */ L(
|
11053
|
+
const Zy = /* @__PURE__ */ L(Bf, [["render", Vf]]), Df = {
|
11026
11054
|
name: "CmdPageHeader",
|
11027
11055
|
props: {
|
11028
11056
|
/**
|
@@ -11466,22 +11494,20 @@ const eb = /* @__PURE__ */ L(nh, [["render", oh]]), lh = {
|
|
11466
11494
|
default: !0
|
11467
11495
|
},
|
11468
11496
|
/**
|
11469
|
-
*
|
11497
|
+
* legend for form
|
11470
11498
|
*
|
11471
|
-
*
|
11472
|
-
*/
|
11473
|
-
showLegend: {
|
11474
|
-
type: Boolean,
|
11475
|
-
default: !0
|
11476
|
-
},
|
11477
|
-
/**
|
11478
|
-
* text for legend
|
11499
|
+
* useFieldset-property must be activated
|
11479
11500
|
*
|
11480
|
-
* @
|
11501
|
+
* @requiredForAccessiblity: true
|
11481
11502
|
*/
|
11482
|
-
|
11483
|
-
|
11484
|
-
|
11503
|
+
legend: {
|
11504
|
+
default() {
|
11505
|
+
return {
|
11506
|
+
show: !0,
|
11507
|
+
align: "left",
|
11508
|
+
text: "Legend"
|
11509
|
+
};
|
11510
|
+
}
|
11485
11511
|
},
|
11486
11512
|
/**
|
11487
11513
|
* send search result from outside to display inside this component
|
@@ -11687,8 +11713,8 @@ function fh(e, n, t, s, o, i) {
|
|
11687
11713
|
return l(), a(x, null, [
|
11688
11714
|
f("fieldset", ah, [
|
11689
11715
|
f("legend", {
|
11690
|
-
class: y({ hidden: !t.
|
11691
|
-
}, g(t.
|
11716
|
+
class: y({ hidden: !t.legend.show, "align-left": t.legend.align === "left" })
|
11717
|
+
}, g(t.legend.text), 3),
|
11692
11718
|
t.cmdHeadline ? (l(), C(r, J(R({ key: 0 }, t.cmdHeadline)), null, 16)) : c("", !0),
|
11693
11719
|
f("div", rh, [
|
11694
11720
|
v(d, {
|
@@ -11749,16 +11775,16 @@ function fh(e, n, t, s, o, i) {
|
|
11749
11775
|
]),
|
11750
11776
|
v(xe, { name: "fade" }, {
|
11751
11777
|
default: V(() => {
|
11752
|
-
var M,
|
11778
|
+
var M, F, z, B, q;
|
11753
11779
|
return [
|
11754
11780
|
o.showFilters && ((M = t.cmdFakeSelect) != null && M.selectData.length) ? (l(), a("div", mh, [
|
11755
11781
|
v(p, {
|
11756
11782
|
role: "option",
|
11757
|
-
selectData: (
|
11783
|
+
selectData: (F = t.cmdFakeSelect) == null ? void 0 : F.selectData,
|
11758
11784
|
modelValue: i.searchFilters,
|
11759
11785
|
"onUpdate:modelValue": n[4] || (n[4] = (G) => i.searchFilters = G),
|
11760
11786
|
defaultOptionName: (z = t.cmdFakeSelect) == null ? void 0 : z.defaultOptionName,
|
11761
|
-
type: (
|
11787
|
+
type: (B = t.cmdFakeSelect) == null ? void 0 : B.type,
|
11762
11788
|
labelText: (q = t.cmdFakeSelect) == null ? void 0 : q.labelText
|
11763
11789
|
}, null, 8, ["selectData", "modelValue", "defaultOptionName", "type", "labelText"])
|
11764
11790
|
])) : c("", !0)
|
@@ -12021,7 +12047,7 @@ function wh(e, n, t, s, o, i) {
|
|
12021
12047
|
key: 1,
|
12022
12048
|
type: "button",
|
12023
12049
|
class: "button confirm",
|
12024
|
-
onClick: n[0] || (n[0] = (...
|
12050
|
+
onClick: n[0] || (n[0] = (...F) => i.onAddItem && i.onAddItem(...F))
|
12025
12051
|
}, bh)) : c("", !0)
|
12026
12052
|
];
|
12027
12053
|
}),
|
@@ -12099,7 +12125,7 @@ const nb = /* @__PURE__ */ L(hh, [["render", wh]]), kh = "data:image/svg+xml,%3c
|
|
12099
12125
|
deep: !0
|
12100
12126
|
}
|
12101
12127
|
}
|
12102
|
-
}, Mh = { class: "cmd-switch-language" }, Lh = ["href", "title", "onClick"],
|
12128
|
+
}, Mh = { class: "cmd-switch-language" }, Lh = ["href", "title", "onClick"], Fh = ["src", "alt"], Bh = ["src", "alt"];
|
12103
12129
|
function Ah(e, n, t, s, o, i) {
|
12104
12130
|
const r = ce("router-link");
|
12105
12131
|
return l(), a("div", Mh, [
|
@@ -12115,7 +12141,7 @@ function Ah(e, n, t, s, o, i) {
|
|
12115
12141
|
f("img", {
|
12116
12142
|
src: o.imageSources[u],
|
12117
12143
|
alt: d.name
|
12118
|
-
}, null, 8,
|
12144
|
+
}, null, 8, Fh)
|
12119
12145
|
], 10, Lh)) : (l(), C(r, {
|
12120
12146
|
key: 1,
|
12121
12147
|
class: y(["flag", d.iso2]),
|
@@ -12127,7 +12153,7 @@ function Ah(e, n, t, s, o, i) {
|
|
12127
12153
|
f("img", {
|
12128
12154
|
src: o.imageSources[u],
|
12129
12155
|
alt: d.name
|
12130
|
-
}, null, 8,
|
12156
|
+
}, null, 8, Bh)
|
12131
12157
|
]),
|
12132
12158
|
_: 2
|
12133
12159
|
}, 1032, ["class", "to", "title", "onClick"]))
|
@@ -13072,7 +13098,7 @@ const Cp = mt("string"), ie = mt("function"), Ci = mt("number"), ft = (e) => e !
|
|
13072
13098
|
let n;
|
13073
13099
|
return e && (typeof FormData == "function" && e instanceof FormData || ie(e.append) && ((n = ut(e)) === "formdata" || // detect form-data instance
|
13074
13100
|
n === "object" && ie(e.toString) && e.toString() === "[object FormData]"));
|
13075
|
-
}, Ip = me("URLSearchParams"), [Op, Mp, Lp,
|
13101
|
+
}, Ip = me("URLSearchParams"), [Op, Mp, Lp, Fp] = ["ReadableStream", "Request", "Response", "Headers"].map(me), Bp = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
13076
13102
|
function Ge(e, n, { allOwnKeys: t = !1 } = {}) {
|
13077
13103
|
if (e === null || typeof e > "u")
|
13078
13104
|
return;
|
@@ -13097,10 +13123,10 @@ function _i(e, n) {
|
|
13097
13123
|
return null;
|
13098
13124
|
}
|
13099
13125
|
const xi = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, wi = (e) => !ze(e) && e !== xi;
|
13100
|
-
function
|
13126
|
+
function Bt() {
|
13101
13127
|
const { caseless: e } = wi(this) && this || {}, n = {}, t = (s, o) => {
|
13102
13128
|
const i = e && _i(n, o) || o;
|
13103
|
-
Qe(n[i]) && Qe(s) ? n[i] =
|
13129
|
+
Qe(n[i]) && Qe(s) ? n[i] = Bt(n[i], s) : Qe(s) ? n[i] = Bt({}, s) : Ie(s) ? n[i] = s.slice() : n[i] = s;
|
13104
13130
|
};
|
13105
13131
|
for (let s = 0, o = arguments.length; s < o; s++)
|
13106
13132
|
arguments[s] && Ge(arguments[s], t);
|
@@ -13227,7 +13253,7 @@ const Xp = (e) => {
|
|
13227
13253
|
isReadableStream: Op,
|
13228
13254
|
isRequest: Mp,
|
13229
13255
|
isResponse: Lp,
|
13230
|
-
isHeaders:
|
13256
|
+
isHeaders: Fp,
|
13231
13257
|
isUndefined: ze,
|
13232
13258
|
isDate: xp,
|
13233
13259
|
isFile: wp,
|
@@ -13239,9 +13265,9 @@ const Xp = (e) => {
|
|
13239
13265
|
isTypedArray: Hp,
|
13240
13266
|
isFileList: vp,
|
13241
13267
|
forEach: Ge,
|
13242
|
-
merge:
|
13268
|
+
merge: Bt,
|
13243
13269
|
extend: Ap,
|
13244
|
-
trim:
|
13270
|
+
trim: Bp,
|
13245
13271
|
stripBOM: Ep,
|
13246
13272
|
inherits: Pp,
|
13247
13273
|
toFlatObject: Vp,
|
@@ -13366,10 +13392,10 @@ function ht(e, n, t) {
|
|
13366
13392
|
if (k.endsWith(T, "{}"))
|
13367
13393
|
T = s ? T : T.slice(0, -2), _ = JSON.stringify(_);
|
13368
13394
|
else if (k.isArray(_) && tg(_) || (k.isFileList(_) || k.endsWith(T, "[]")) && (O = k.toArray(_)))
|
13369
|
-
return T = Ii(T), O.forEach(function(M,
|
13395
|
+
return T = Ii(T), O.forEach(function(M, F) {
|
13370
13396
|
!(k.isUndefined(M) || M === null) && n.append(
|
13371
13397
|
// eslint-disable-next-line no-nested-ternary
|
13372
|
-
r === !0 ? Vn([T],
|
13398
|
+
r === !0 ? Vn([T], F, i) : r === null ? T : T + "[]",
|
13373
13399
|
p(M)
|
13374
13400
|
);
|
13375
13401
|
}), !1;
|
@@ -13539,7 +13565,7 @@ function hg(e) {
|
|
13539
13565
|
i = t[s], n[i] = e[i];
|
13540
13566
|
return n;
|
13541
13567
|
}
|
13542
|
-
function
|
13568
|
+
function Fi(e) {
|
13543
13569
|
function n(t, s, o, i) {
|
13544
13570
|
let r = t[i++];
|
13545
13571
|
if (r === "__proto__") return !0;
|
@@ -13570,7 +13596,7 @@ const Je = {
|
|
13570
13596
|
transformRequest: [function(n, t) {
|
13571
13597
|
const s = t.getContentType() || "", o = s.indexOf("application/json") > -1, i = k.isObject(n);
|
13572
13598
|
if (i && k.isHTMLForm(n) && (n = new FormData(n)), k.isFormData(n))
|
13573
|
-
return o ? JSON.stringify(
|
13599
|
+
return o ? JSON.stringify(Fi(n)) : n;
|
13574
13600
|
if (k.isArrayBuffer(n) || k.isBuffer(n) || k.isStream(n) || k.isFile(n) || k.isBlob(n) || k.isReadableStream(n))
|
13575
13601
|
return n;
|
13576
13602
|
if (k.isArrayBufferView(n))
|
@@ -13833,7 +13859,7 @@ function xt(e, n) {
|
|
13833
13859
|
i = d.call(t, i, o.normalize(), n ? n.status : void 0);
|
13834
13860
|
}), o.normalize(), i;
|
13835
13861
|
}
|
13836
|
-
function
|
13862
|
+
function Bi(e) {
|
13837
13863
|
return !!(e && e.__CANCEL__);
|
13838
13864
|
}
|
13839
13865
|
function Oe(e, n, t) {
|
@@ -14111,7 +14137,7 @@ const Pi = (e) => {
|
|
14111
14137
|
}
|
14112
14138
|
m.send(i || null);
|
14113
14139
|
});
|
14114
|
-
},
|
14140
|
+
}, Fg = (e, n) => {
|
14115
14141
|
let t = new AbortController(), s;
|
14116
14142
|
const o = function(u) {
|
14117
14143
|
if (!s) {
|
@@ -14133,7 +14159,7 @@ const Pi = (e) => {
|
|
14133
14159
|
return d.unsubscribe = r, [d, () => {
|
14134
14160
|
i && clearTimeout(i), i = null;
|
14135
14161
|
}];
|
14136
|
-
},
|
14162
|
+
}, Bg = function* (e, n) {
|
14137
14163
|
let t = e.byteLength;
|
14138
14164
|
if (!n || t < n) {
|
14139
14165
|
yield e;
|
@@ -14144,7 +14170,7 @@ const Pi = (e) => {
|
|
14144
14170
|
o = s + n, yield e.slice(s, o), s = o;
|
14145
14171
|
}, Ag = async function* (e, n, t) {
|
14146
14172
|
for await (const s of e)
|
14147
|
-
yield*
|
14173
|
+
yield* Bg(ArrayBuffer.isView(s) ? s : await t(String(s)), n);
|
14148
14174
|
}, Nn = (e, n, t, s, o) => {
|
14149
14175
|
const i = Ag(e, n, o);
|
14150
14176
|
let r = 0;
|
@@ -14227,7 +14253,7 @@ const Pg = async (e) => {
|
|
14227
14253
|
fetchOptions: w
|
14228
14254
|
} = Pi(e);
|
14229
14255
|
p = p ? (p + "").toLowerCase() : "text";
|
14230
|
-
let [b, _] = o || i || r ?
|
14256
|
+
let [b, _] = o || i || r ? Fg([o, i], r) : [], T, S;
|
14231
14257
|
const O = () => {
|
14232
14258
|
!T && setTimeout(() => {
|
14233
14259
|
b && b.unsubscribe();
|
@@ -14236,12 +14262,12 @@ const Pg = async (e) => {
|
|
14236
14262
|
let A;
|
14237
14263
|
try {
|
14238
14264
|
if (u && Eg && t !== "get" && t !== "head" && (A = await Vg(m, s)) !== 0) {
|
14239
|
-
let
|
14265
|
+
let B = new Request(n, {
|
14240
14266
|
method: "POST",
|
14241
14267
|
body: s,
|
14242
14268
|
duplex: "half"
|
14243
14269
|
}), q;
|
14244
|
-
k.isFormData(s) && (q =
|
14270
|
+
k.isFormData(s) && (q = B.headers.get("content-type")) && m.setContentType(q), B.body && (s = Nn(B.body, Un, jn(
|
14245
14271
|
A,
|
14246
14272
|
nt(u)
|
14247
14273
|
), null, Et));
|
@@ -14256,25 +14282,25 @@ const Pg = async (e) => {
|
|
14256
14282
|
withCredentials: h
|
14257
14283
|
});
|
14258
14284
|
let M = await fetch(S);
|
14259
|
-
const
|
14260
|
-
if (Pt && (d ||
|
14261
|
-
const
|
14285
|
+
const F = Pt && (p === "stream" || p === "response");
|
14286
|
+
if (Pt && (d || F)) {
|
14287
|
+
const B = {};
|
14262
14288
|
["status", "statusText", "headers"].forEach((G) => {
|
14263
|
-
|
14289
|
+
B[G] = M[G];
|
14264
14290
|
});
|
14265
14291
|
const q = k.toFiniteNumber(M.headers.get("content-length"));
|
14266
14292
|
M = new Response(
|
14267
14293
|
Nn(M.body, Un, d && jn(
|
14268
14294
|
q,
|
14269
14295
|
nt(d, !0)
|
14270
|
-
),
|
14271
|
-
|
14296
|
+
), F && O, Et),
|
14297
|
+
B
|
14272
14298
|
);
|
14273
14299
|
}
|
14274
14300
|
p = p || "text";
|
14275
14301
|
let z = await it[k.findKey(it, p) || "text"](M, e);
|
14276
|
-
return !
|
14277
|
-
Ai(
|
14302
|
+
return !F && O(), _ && _(), await new Promise((B, q) => {
|
14303
|
+
Ai(B, q, {
|
14278
14304
|
data: z,
|
14279
14305
|
headers: te.from(M.headers),
|
14280
14306
|
status: M.status,
|
@@ -14351,7 +14377,7 @@ function Wn(e) {
|
|
14351
14377
|
s
|
14352
14378
|
), s.headers = te.from(s.headers), s;
|
14353
14379
|
}, function(s) {
|
14354
|
-
return
|
14380
|
+
return Bi(s) || (wt(e), s && s.response && (s.response.data = xt.call(
|
14355
14381
|
e,
|
14356
14382
|
e.transformResponse,
|
14357
14383
|
s.response
|
@@ -14678,7 +14704,7 @@ const Z = Hi(Je);
|
|
14678
14704
|
Z.Axios = _e;
|
14679
14705
|
Z.CanceledError = Oe;
|
14680
14706
|
Z.CancelToken = tn;
|
14681
|
-
Z.isCancel =
|
14707
|
+
Z.isCancel = Bi;
|
14682
14708
|
Z.VERSION = qi;
|
14683
14709
|
Z.toFormData = ht;
|
14684
14710
|
Z.AxiosError = N;
|
@@ -14690,7 +14716,7 @@ Z.spread = Rg;
|
|
14690
14716
|
Z.isAxiosError = Ng;
|
14691
14717
|
Z.mergeConfig = ke;
|
14692
14718
|
Z.AxiosHeaders = te;
|
14693
|
-
Z.formToJSON = (e) =>
|
14719
|
+
Z.formToJSON = (e) => Fi(k.isHTMLForm(e) ? new FormData(e) : e);
|
14694
14720
|
Z.getAdapter = Di.getAdapter;
|
14695
14721
|
Z.HttpStatusCode = qt;
|
14696
14722
|
Z.default = Z;
|
@@ -15777,7 +15803,7 @@ function Ly(e, n, t, s, o, i) {
|
|
15777
15803
|
], 64))), 128))
|
15778
15804
|
]);
|
15779
15805
|
}
|
15780
|
-
const ub = /* @__PURE__ */ L(Oy, [["render", Ly]]),
|
15806
|
+
const ub = /* @__PURE__ */ L(Oy, [["render", Ly]]), Fy = {
|
15781
15807
|
name: "MultipleListsOfLinks",
|
15782
15808
|
props: {
|
15783
15809
|
segments: {
|
@@ -15785,10 +15811,10 @@ const ub = /* @__PURE__ */ L(Oy, [["render", Ly]]), By = {
|
|
15785
15811
|
default: null
|
15786
15812
|
}
|
15787
15813
|
}
|
15788
|
-
},
|
15814
|
+
}, By = { class: "cmd-page-multiple-lists-of-links flex-container vertical" };
|
15789
15815
|
function Ay(e, n, t, s, o, i) {
|
15790
15816
|
const r = hi;
|
15791
|
-
return l(), a("div",
|
15817
|
+
return l(), a("div", By, [
|
15792
15818
|
(l(!0), a(x, null, D(t.segments, (d, u) => (l(), a(x, { key: u }, [
|
15793
15819
|
v(r, {
|
15794
15820
|
links: d.links,
|
@@ -15800,7 +15826,7 @@ function Ay(e, n, t, s, o, i) {
|
|
15800
15826
|
], 64))), 128))
|
15801
15827
|
]);
|
15802
15828
|
}
|
15803
|
-
const mb = /* @__PURE__ */ L(
|
15829
|
+
const mb = /* @__PURE__ */ L(Fy, [["render", Ay]]), fb = {
|
15804
15830
|
// el = real dom-element
|
15805
15831
|
mounted(e) {
|
15806
15832
|
if (e.tagName === "INPUT" || e.tagName === "SELECT" || e.tagName === "TEXTAREA" || e.tagName === "A")
|
@@ -15849,7 +15875,7 @@ export {
|
|
15849
15875
|
Ny as CmdCopyrightInformation,
|
15850
15876
|
ru as CmdFakeSelect,
|
15851
15877
|
qy as CmdFancyBox,
|
15852
|
-
|
15878
|
+
Fa as CmdForm,
|
15853
15879
|
ee as CmdFormElement,
|
15854
15880
|
pu as CmdFormFilters,
|
15855
15881
|
_u as CmdGoogleMaps,
|
@@ -15876,7 +15902,7 @@ export {
|
|
15876
15902
|
tb as CmdSiteSearch,
|
15877
15903
|
dt as CmdSlideButton,
|
15878
15904
|
nb as CmdSlideshow,
|
15879
|
-
|
15905
|
+
Ff as CmdSocialNetworks,
|
15880
15906
|
ib as CmdSwitchLanguage,
|
15881
15907
|
qh as CmdSystemMessage,
|
15882
15908
|
ob as CmdTable,
|