comand-component-library 4.0.35 → 4.0.36
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 +219 -203
- package/dist/comand-component-library.umd.cjs +4 -4
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/ComponentLibrary.vue +12 -0
- package/src/componentSettingsDataAndControls.vue +10 -4
- package/src/components/CmdBasicForm.vue +11 -1
- package/src/components/CmdForm.vue +23 -22
- package/src/components/CmdLoginForm.vue +33 -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
|
]),
|
@@ -3089,7 +3089,7 @@ const Kt = {
|
|
3089
3089
|
class: "search-field-wrapper flex-container no-gap"
|
3090
3090
|
}, us = ["id", "maxlength", "value"], ms = ["title"], fs = ["title"], hs = { key: 1 };
|
3091
3091
|
function ps(e, n, t, s, o, i) {
|
3092
|
-
var u, p, m, h, w, b, _, T, S, O, A, M,
|
3092
|
+
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
3093
|
const r = U, d = Gt;
|
3094
3094
|
return t.element === "input" || t.element === "select" || t.element === "textarea" ? (l(), a("label", {
|
3095
3095
|
key: 0,
|
@@ -3302,9 +3302,9 @@ function ps(e, n, t, s, o, i) {
|
|
3302
3302
|
(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
3303
|
key: 0,
|
3304
3304
|
iconClass: (M = (A = t.nativeButton) == null ? void 0 : A.icon) == null ? void 0 : M.iconClass,
|
3305
|
-
type: (z = (
|
3305
|
+
type: (z = (F = t.nativeButton) == null ? void 0 : F.icon) == null ? void 0 : z.iconType
|
3306
3306
|
}, null, 8, ["iconClass", "type"])) : c("", !0),
|
3307
|
-
(
|
3307
|
+
(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
3308
|
H(g(t.nativeButton.text), 1)
|
3309
3309
|
], 64)),
|
3310
3310
|
(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 +3433,10 @@ const ee = /* @__PURE__ */ L(Ul, [["render", ps]]), gs = {
|
|
3433
3433
|
}, Ss = /* @__PURE__ */ f("br", null, null, -1), Is = { key: 0 }, Os = {
|
3434
3434
|
key: 3,
|
3435
3435
|
class: "country-name"
|
3436
|
-
}, Ms = { class: "street-address" }, Ls = /* @__PURE__ */ f("br", null, null, -1),
|
3436
|
+
}, Ms = { class: "street-address" }, Ls = /* @__PURE__ */ f("br", null, null, -1), Fs = {
|
3437
3437
|
key: 0,
|
3438
3438
|
class: "postal-code"
|
3439
|
-
},
|
3439
|
+
}, Bs = {
|
3440
3440
|
key: 1,
|
3441
3441
|
class: "locality"
|
3442
3442
|
}, As = /* @__PURE__ */ f("br", null, null, -1), Es = /* @__PURE__ */ f("br", null, null, -1), Ps = {
|
@@ -3580,8 +3580,8 @@ function Vs(e, n, t, s, o, i) {
|
|
3580
3580
|
key: 1,
|
3581
3581
|
class: y(t.showCityBeforeZip ? "city-zip" : "zip-city")
|
3582
3582
|
}, [
|
3583
|
-
t.addressEntry.zip ? (l(), a("span",
|
3584
|
-
t.addressEntry.city ? (l(), a("span",
|
3583
|
+
t.addressEntry.zip ? (l(), a("span", Fs, g(t.addressEntry.zip), 1)) : c("", !0),
|
3584
|
+
t.addressEntry.city ? (l(), a("span", Bs, [
|
3585
3585
|
H(g(t.addressEntry.city), 1),
|
3586
3586
|
t.addressEntry.state ? (l(), a(x, { key: 0 }, [
|
3587
3587
|
H(" " + g(t.addressEntry.state), 1)
|
@@ -4085,6 +4085,22 @@ const Dy = /* @__PURE__ */ L(ga, [["render", xa]]), wa = {
|
|
4085
4085
|
type: String,
|
4086
4086
|
required: !1
|
4087
4087
|
},
|
4088
|
+
/**
|
4089
|
+
* legend for form
|
4090
|
+
*
|
4091
|
+
* useFieldset-property must be activated
|
4092
|
+
*
|
4093
|
+
* @requiredForAccessiblity: true
|
4094
|
+
*/
|
4095
|
+
legend: {
|
4096
|
+
default() {
|
4097
|
+
return {
|
4098
|
+
show: !0,
|
4099
|
+
align: "left",
|
4100
|
+
text: "Legend"
|
4101
|
+
};
|
4102
|
+
}
|
4103
|
+
},
|
4088
4104
|
/**
|
4089
4105
|
* activate if form-elements should be given by slot
|
4090
4106
|
*/
|
@@ -4124,26 +4140,6 @@ const Dy = /* @__PURE__ */ L(ga, [["render", xa]]), wa = {
|
|
4124
4140
|
type: Boolean,
|
4125
4141
|
default: !0
|
4126
4142
|
},
|
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
4143
|
/**
|
4148
4144
|
* submit-button to submit all form-data
|
4149
4145
|
*/
|
@@ -4200,8 +4196,8 @@ function La(e, n, t, s, o, i) {
|
|
4200
4196
|
t.useFieldset ? (l(), a(x, { key: 0 }, [
|
4201
4197
|
f("fieldset", va, [
|
4202
4198
|
f("legend", {
|
4203
|
-
class: y({ hidden: !t.
|
4204
|
-
}, g(t.
|
4199
|
+
class: y({ hidden: !t.legend.show, "align-left": t.legend.align === "left" })
|
4200
|
+
}, g(t.legend.text), 3),
|
4205
4201
|
t.useSlot ? P(e.$slots, "default", { key: 0 }) : (l(!0), a(x, { key: 1 }, D(t.formElements, (d, u) => (l(), C(r, {
|
4206
4202
|
key: u,
|
4207
4203
|
element: d.element || "input",
|
@@ -4251,7 +4247,7 @@ function La(e, n, t, s, o, i) {
|
|
4251
4247
|
], 64)) : P(e.$slots, "default", { key: 1 })
|
4252
4248
|
], 42, ka);
|
4253
4249
|
}
|
4254
|
-
const
|
4250
|
+
const Fa = /* @__PURE__ */ L(wa, [["render", La]]), Ba = {
|
4255
4251
|
data() {
|
4256
4252
|
return {
|
4257
4253
|
defaultMessageProperties: {
|
@@ -4311,12 +4307,12 @@ const Ba = /* @__PURE__ */ L(wa, [["render", La]]), Fa = {
|
|
4311
4307
|
}
|
4312
4308
|
};
|
4313
4309
|
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
|
4310
|
+
let Ft = ge;
|
4315
4311
|
const Aa = {
|
4316
4312
|
emits: ["submit"],
|
4317
4313
|
mixins: [
|
4318
4314
|
oe,
|
4319
|
-
|
4315
|
+
Ba,
|
4320
4316
|
rt
|
4321
4317
|
],
|
4322
4318
|
inject: {
|
@@ -4326,7 +4322,7 @@ const Aa = {
|
|
4326
4322
|
},
|
4327
4323
|
data() {
|
4328
4324
|
return {
|
4329
|
-
validator: new
|
4325
|
+
validator: new Ft((e) => e),
|
4330
4326
|
formData: {
|
4331
4327
|
salutation: { value: this.configuration.salutation.default },
|
4332
4328
|
lastName: { value: "" },
|
@@ -4360,6 +4356,16 @@ const Aa = {
|
|
4360
4356
|
type: String,
|
4361
4357
|
required: !1
|
4362
4358
|
},
|
4359
|
+
legend: {
|
4360
|
+
type: Object,
|
4361
|
+
default() {
|
4362
|
+
return {
|
4363
|
+
show: !0,
|
4364
|
+
align: "right",
|
4365
|
+
text: "Legend"
|
4366
|
+
};
|
4367
|
+
}
|
4368
|
+
},
|
4363
4369
|
/**
|
4364
4370
|
* configuration for form-elements used in form
|
4365
4371
|
*/
|
@@ -4536,18 +4542,18 @@ const Aa = {
|
|
4536
4542
|
class: "flex-container"
|
4537
4543
|
}, Ha = ["innerHTML"];
|
4538
4544
|
function Ra(e, n, t, s, o, i) {
|
4539
|
-
const r = K, d = ee, u =
|
4545
|
+
const r = K, d = ee, u = Fa;
|
4540
4546
|
return l(), a("div", Ea, [
|
4541
4547
|
t.cmdHeadline ? (l(), C(r, J(R({ key: 0 }, t.cmdHeadline)), null, 16)) : c("", !0),
|
4542
4548
|
v(u, {
|
4543
4549
|
onSubmit: i.onSubmit,
|
4544
4550
|
novalidate: "novalidate",
|
4545
|
-
|
4551
|
+
legend: t.legend,
|
4546
4552
|
submitButton: t.submitButton,
|
4547
4553
|
formAction: t.formAction
|
4548
4554
|
}, {
|
4549
4555
|
default: V(() => {
|
4550
|
-
var p, m, h, w, b, _, T, S, O, A, M,
|
4556
|
+
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
4557
|
return [
|
4552
4558
|
t.configuration.salutation ? (l(), a("div", Pa, [
|
4553
4559
|
v(d, {
|
@@ -4612,7 +4618,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4612
4618
|
iconClass: "icon-mail",
|
4613
4619
|
labelText: e.getMessage("basic_form.labeltext.email"),
|
4614
4620
|
placeholder: e.getMessage("basic_form.placeholder.email"),
|
4615
|
-
required: (
|
4621
|
+
required: (F = t.configuration.email) == null ? void 0 : F.required,
|
4616
4622
|
name: ((z = t.configuration.email) == null ? void 0 : z.name) || "email",
|
4617
4623
|
modelValue: o.formData.email.value,
|
4618
4624
|
"onUpdate:modelValue": n[4] || (n[4] = (W) => o.formData.email.value = W),
|
@@ -4622,7 +4628,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4622
4628
|
t.configuration.phone ? (l(), C(d, {
|
4623
4629
|
key: 1,
|
4624
4630
|
element: "input",
|
4625
|
-
type: ((
|
4631
|
+
type: ((B = t.configuration.phone) == null ? void 0 : B.type) || "tel",
|
4626
4632
|
iconClass: "icon-phone",
|
4627
4633
|
labelText: e.getMessage("basic_form.labeltext.phone"),
|
4628
4634
|
placeholder: e.getMessage("basic_form.placeholder.phone"),
|
@@ -4687,7 +4693,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4687
4693
|
labelText: e.getMessage("basic_form.labeltext.zip"),
|
4688
4694
|
placeholder: e.getMessage("basic_form.placeholder.zip"),
|
4689
4695
|
required: (Le = t.configuration.zip) == null ? void 0 : Le.required,
|
4690
|
-
name: ((
|
4696
|
+
name: ((Fe = t.configuration.zip) == null ? void 0 : Fe.name) || "zip",
|
4691
4697
|
modelValue: o.formData.zip.value,
|
4692
4698
|
"onUpdate:modelValue": n[9] || (n[9] = (W) => o.formData.zip.value = W),
|
4693
4699
|
status: o.formData.zip.error ? "error" : "",
|
@@ -4696,7 +4702,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4696
4702
|
t.configuration.city ? (l(), C(d, {
|
4697
4703
|
key: 1,
|
4698
4704
|
element: "input",
|
4699
|
-
type: ((
|
4705
|
+
type: ((Be = t.configuration.city) == null ? void 0 : Be.type) || "text",
|
4700
4706
|
labelText: e.getMessage("basic_form.labeltext.city"),
|
4701
4707
|
placeholder: e.getMessage("basic_form.placeholder.city"),
|
4702
4708
|
required: (Ae = t.configuration.city) == null ? void 0 : Ae.required,
|
@@ -4757,7 +4763,7 @@ function Ra(e, n, t, s, o, i) {
|
|
4757
4763
|
];
|
4758
4764
|
}),
|
4759
4765
|
_: 3
|
4760
|
-
}, 8, ["onSubmit", "
|
4766
|
+
}, 8, ["onSubmit", "legend", "submitButton", "formAction"])
|
4761
4767
|
]);
|
4762
4768
|
}
|
4763
4769
|
const Na = /* @__PURE__ */ L(Aa, [["render", Ra]]);
|
@@ -5021,7 +5027,7 @@ function er(e, n, t, s, o, i) {
|
|
5021
5027
|
itemProvider: ((u = e.editModeConfig) == null ? void 0 : u.allowAddItem) !== !1 ? i.itemProvider : null
|
5022
5028
|
}, {
|
5023
5029
|
default: V((O) => {
|
5024
|
-
var A, M,
|
5030
|
+
var A, M, F, z, B, q, G, Y, j, le, se, ae;
|
5025
5031
|
return [
|
5026
5032
|
f("figure", {
|
5027
5033
|
class: y(["cmd-image flex-container no-gap vertical", i.textAlign])
|
@@ -5036,7 +5042,7 @@ function er(e, n, t, s, o, i) {
|
|
5036
5042
|
labelText: "Text figcaption",
|
5037
5043
|
modelValue: i.editableFigcaptionText,
|
5038
5044
|
"onUpdate:modelValue": n[0] || (n[0] = (X) => i.editableFigcaptionText = X)
|
5039
|
-
}, null, 8, ["class", "modelValue"])) : (
|
5045
|
+
}, null, 8, ["class", "modelValue"])) : (F = t.figcaption) != null && F.text ? (l(), a("figcaption", {
|
5040
5046
|
key: 1,
|
5041
5047
|
innerHTML: (z = t.figcaption) == null ? void 0 : z.text
|
5042
5048
|
}, null, 8, Ua)) : c("", !0)
|
@@ -5052,7 +5058,7 @@ function er(e, n, t, s, o, i) {
|
|
5052
5058
|
za,
|
5053
5059
|
f("img", {
|
5054
5060
|
src: i.imageSource,
|
5055
|
-
alt: (
|
5061
|
+
alt: (B = t.image) == null ? void 0 : B.alt,
|
5056
5062
|
title: (q = t.image) == null ? void 0 : q.tooltip
|
5057
5063
|
}, null, 8, Wa)
|
5058
5064
|
], 16),
|
@@ -5780,9 +5786,9 @@ const yr = fi, br = ["aria-label"], Cr = { class: "flex-container" }, _r = {
|
|
5780
5786
|
}, Mr = {
|
5781
5787
|
key: 0,
|
5782
5788
|
class: "flex-container no-flex"
|
5783
|
-
}, Lr = ["title"],
|
5789
|
+
}, Lr = ["title"], Fr = { key: 1 }, Br = ["title"], Ar = { key: 1 };
|
5784
5790
|
function Er(e, n, t, s, o, i) {
|
5785
|
-
var h, w, b, _, T, S, O, A, M,
|
5791
|
+
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
5792
|
const r = K, d = U, u = Te, p = dt, m = pr;
|
5787
5793
|
return l(), C(Wi, { to: "body" }, [
|
5788
5794
|
f("dialog", {
|
@@ -5811,7 +5817,7 @@ function Er(e, n, t, s, o, i) {
|
|
5811
5817
|
type: (M = e.fancyboxOptions.printButtons.color) == null ? void 0 : M.iconType
|
5812
5818
|
}, null, 8, ["iconClass", "type"])
|
5813
5819
|
], 8, xr)) : c("", !0),
|
5814
|
-
e.showPrintButtons && ((
|
5820
|
+
e.showPrintButtons && ((F = e.fancyboxOptions.printButtons) != null && F.grayscale) ? (l(), a("a", {
|
5815
5821
|
key: 1,
|
5816
5822
|
href: "#",
|
5817
5823
|
class: "button print-grayscale",
|
@@ -5819,7 +5825,7 @@ function Er(e, n, t, s, o, i) {
|
|
5819
5825
|
onClick: n[1] || (n[1] = I((ne) => e.printInGrayscale = !0, ["prevent"]))
|
5820
5826
|
}, [
|
5821
5827
|
v(d, {
|
5822
|
-
iconClass: (
|
5828
|
+
iconClass: (B = e.fancyboxOptions.printButtons.grayscale) == null ? void 0 : B.iconClass,
|
5823
5829
|
type: (q = e.fancyboxOptions.printButtons.grayscale) == null ? void 0 : q.iconType
|
5824
5830
|
}, null, 8, ["iconClass", "type"])
|
5825
5831
|
], 8, wr)) : c("", !0),
|
@@ -5878,7 +5884,7 @@ function Er(e, n, t, s, o, i) {
|
|
5878
5884
|
iconClass: (ae = e.fancyboxOptions.submitButtons.cancel) == null ? void 0 : ae.iconClass,
|
5879
5885
|
type: (X = e.fancyboxOptions.submitButtons.cancel) == null ? void 0 : X.iconType
|
5880
5886
|
}, null, 8, ["iconClass", "type"])) : c("", !0),
|
5881
|
-
(he = e.fancyboxOptions.submitButtons.cancel) != null && he.buttonText ? (l(), a("span",
|
5887
|
+
(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
5888
|
], 8, Lr)) : c("", !0),
|
5883
5889
|
(fe = e.fancyboxOptions.submitButtons) != null && fe.confirm ? (l(), a("button", {
|
5884
5890
|
key: 1,
|
@@ -5887,11 +5893,11 @@ function Er(e, n, t, s, o, i) {
|
|
5887
5893
|
}, [
|
5888
5894
|
(Le = e.fancyboxOptions.submitButtons.confirm) != null && Le.iconClass ? (l(), C(d, {
|
5889
5895
|
key: 0,
|
5890
|
-
iconClass: (
|
5891
|
-
type: (
|
5896
|
+
iconClass: (Fe = e.fancyboxOptions.submitButtons.confirm) == null ? void 0 : Fe.iconClass,
|
5897
|
+
type: (Be = e.fancyboxOptions.submitButtons.confirm) == null ? void 0 : Be.iconType
|
5892
5898
|
}, null, 8, ["iconClass", "type"])) : c("", !0),
|
5893
5899
|
(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,
|
5900
|
+
], 8, Br)) : c("", !0)
|
5895
5901
|
])) : c("", !0),
|
5896
5902
|
e.fancyBoxGallery ? (l(), C(m, {
|
5897
5903
|
key: 1,
|
@@ -6648,10 +6654,10 @@ const cd = ["title"], ud = {
|
|
6648
6654
|
}, kd = { class: "box-body" }, vd = { key: 0 }, Td = {
|
6649
6655
|
key: 1,
|
6650
6656
|
class: "price"
|
6651
|
-
}, Sd = ["title"], Id = { key: 2 }, Od = { class: "box-header flex-container vertical" }, Md = { key: 0 }, Ld = ["src", "alt"],
|
6657
|
+
}, Sd = ["title"], Id = { key: 2 }, Od = { class: "box-header flex-container vertical" }, Md = { key: 0 }, Ld = ["src", "alt"], Fd = {
|
6652
6658
|
key: 0,
|
6653
6659
|
class: "user-name"
|
6654
|
-
},
|
6660
|
+
}, Bd = {
|
6655
6661
|
key: 0,
|
6656
6662
|
class: "user-age"
|
6657
6663
|
}, Ad = { key: 1 }, Ed = ["title"], Pd = {
|
@@ -6692,7 +6698,7 @@ function Ud(e, n, t, s, o, i) {
|
|
6692
6698
|
href: "#",
|
6693
6699
|
class: "box-header",
|
6694
6700
|
title: o.open ? t.iconOpen.tooltip : t.iconClosed.tooltip,
|
6695
|
-
onClick: n[0] || (n[0] = I((...
|
6701
|
+
onClick: n[0] || (n[0] = I((...F) => i.toggleContentVisibility && i.toggleContentVisibility(...F), ["prevent"]))
|
6696
6702
|
}, [
|
6697
6703
|
(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
6704
|
v(d, {
|
@@ -6730,7 +6736,7 @@ function Ud(e, n, t, s, o, i) {
|
|
6730
6736
|
t.cutoffTextLines > 0 ? (l(), a("a", {
|
6731
6737
|
key: 0,
|
6732
6738
|
href: "#",
|
6733
|
-
onClick: n[1] || (n[1] = I((...
|
6739
|
+
onClick: n[1] || (n[1] = I((...F) => i.toggleCutOffText && i.toggleCutOffText(...F), ["prevent"]))
|
6734
6740
|
}, g(o.showCutOffText ? e.getMessage("cmdbox.contentbox.collapse_text") : e.getMessage("cmdbox.contentbox.expand_text")), 1)) : c("", !0)
|
6735
6741
|
]),
|
6736
6742
|
_: 1
|
@@ -6769,7 +6775,7 @@ function Ud(e, n, t, s, o, i) {
|
|
6769
6775
|
key: 1,
|
6770
6776
|
class: y(["cmd-box box product", { "stretch-vertically": t.stretchVertically, "stretch-horizontally": t.stretchHorizontally, "row-view": t.rowView }]),
|
6771
6777
|
href: "#",
|
6772
|
-
onClick: n[2] || (n[2] = I((
|
6778
|
+
onClick: n[2] || (n[2] = I((F) => i.clickOnProduct(t.product), ["prevent"]))
|
6773
6779
|
}, [
|
6774
6780
|
f("div", yd, [
|
6775
6781
|
t.product.image !== void 0 ? (l(), a("figure", bd, [
|
@@ -6814,9 +6820,9 @@ function Ud(e, n, t, s, o, i) {
|
|
6814
6820
|
src: t.user.image.src,
|
6815
6821
|
alt: t.user.image.alt
|
6816
6822
|
}, null, 8, Ld),
|
6817
|
-
t.rowView ? c("", !0) : (l(), a("figcaption",
|
6823
|
+
t.rowView ? c("", !0) : (l(), a("figcaption", Fd, [
|
6818
6824
|
H(g(t.user.name), 1),
|
6819
|
-
t.user.age ? (l(), a("span",
|
6825
|
+
t.user.age ? (l(), a("span", Bd, " (" + g(t.user.age) + ")", 1)) : c("", !0)
|
6820
6826
|
]))
|
6821
6827
|
])) : (l(), a("div", Ad, [
|
6822
6828
|
f("span", {
|
@@ -6833,7 +6839,7 @@ function Ud(e, n, t, s, o, i) {
|
|
6833
6839
|
t.user.description ? (l(), a("p", Rd, g(t.user.description), 1)) : c("", !0)
|
6834
6840
|
]),
|
6835
6841
|
t.user.tags && t.user.tags.length ? (l(), a("ul", Nd, [
|
6836
|
-
(l(!0), a(x, null, D(t.user.tags, (
|
6842
|
+
(l(!0), a(x, null, D(t.user.tags, (F, z) => (l(), a("li", { key: z }, g(F), 1))), 128))
|
6837
6843
|
])) : c("", !0),
|
6838
6844
|
t.user.links && t.user.links.length ? (l(), a("div", jd, [
|
6839
6845
|
v(p, {
|
@@ -7548,7 +7554,7 @@ const Hy = /* @__PURE__ */ L(fc, [["render", yc]]), bc = {
|
|
7548
7554
|
}, wc = { key: 0 }, kc = { key: 1 }, vc = ["href", "target"], Tc = ["innerHTML"], Sc = /* @__PURE__ */ f("hr", null, null, -1), Ic = {
|
7549
7555
|
key: 1,
|
7550
7556
|
class: "flex-container vertical"
|
7551
|
-
}, Oc = { key: 0 }, Mc = { key: 1 }, Lc = ["href", "target"],
|
7557
|
+
}, Oc = { key: 0 }, Mc = { key: 1 }, Lc = ["href", "target"], Fc = ["innerHTML"], Bc = { class: "button-wrapper align-center" };
|
7552
7558
|
function Ac(e, n, t, s, o, i) {
|
7553
7559
|
const r = K, d = ee, u = gi;
|
7554
7560
|
return l(), C(xe, { name: "fade" }, {
|
@@ -7571,11 +7577,11 @@ function Ac(e, n, t, s, o, i) {
|
|
7571
7577
|
"headline-text": (_ = t.cmdBoxRequiredCookies) == null ? void 0 : _.headlineText,
|
7572
7578
|
"headline-level": (T = t.cmdBoxRequiredCookies) == null ? void 0 : T.headlineLevel
|
7573
7579
|
}, null, 8, ["headline-text", "headline-level"])) : c("", !0),
|
7574
|
-
(l(!0), a(x, null, D(t.cookieOptions.required.cookies || [], (
|
7575
|
-
var
|
7580
|
+
(l(!0), a(x, null, D(t.cookieOptions.required.cookies || [], (F, z) => {
|
7581
|
+
var B;
|
7576
7582
|
return l(), C(u, {
|
7577
7583
|
useSlots: ["header", "body"],
|
7578
|
-
collapsible: (
|
7584
|
+
collapsible: (B = t.cmdBoxRequiredCookies) == null ? void 0 : B.collapsible,
|
7579
7585
|
key: z
|
7580
7586
|
}, {
|
7581
7587
|
header: V(() => [
|
@@ -7584,23 +7590,23 @@ function Ac(e, n, t, s, o, i) {
|
|
7584
7590
|
type: "checkbox",
|
7585
7591
|
modelValue: i.acceptedCookies,
|
7586
7592
|
"onUpdate:modelValue": n[0] || (n[0] = (q) => i.acceptedCookies = q),
|
7587
|
-
inputValue:
|
7588
|
-
labelText:
|
7589
|
-
disabled:
|
7590
|
-
id:
|
7593
|
+
inputValue: F.value,
|
7594
|
+
labelText: F.labelText,
|
7595
|
+
disabled: F.disabled,
|
7596
|
+
id: F.id,
|
7591
7597
|
toggleSwitch: !0,
|
7592
7598
|
title: e.getMessage("cmdcookiedisclaimer.title.cookie_cannot_be_disabled")
|
7593
7599
|
}, null, 8, ["modelValue", "inputValue", "labelText", "disabled", "id", "title"])
|
7594
7600
|
]),
|
7595
7601
|
body: V(() => [
|
7596
|
-
|
7597
|
-
|
7598
|
-
H(g(
|
7602
|
+
F.description ? (l(), a("p", wc, g(F.description), 1)) : c("", !0),
|
7603
|
+
F.linkDataPrivacy ? (l(), a("p", kc, [
|
7604
|
+
H(g(F.linkDataPrivacy.label) + " ", 1),
|
7599
7605
|
f("a", {
|
7600
7606
|
onClick: n[1] || (n[1] = (...q) => i.openDataPrivacy && i.openDataPrivacy(...q)),
|
7601
|
-
href:
|
7602
|
-
target:
|
7603
|
-
}, g(
|
7607
|
+
href: F.linkDataPrivacy.link,
|
7608
|
+
target: F.linkDataPrivacy.target
|
7609
|
+
}, g(F.linkDataPrivacy.linkText), 9, vc)
|
7604
7610
|
])) : c("", !0),
|
7605
7611
|
o.dataPrivacyContent ? (l(), a("div", {
|
7606
7612
|
key: 2,
|
@@ -7618,11 +7624,11 @@ function Ac(e, n, t, s, o, i) {
|
|
7618
7624
|
"headline-text": (A = t.cmdBoxOptionalCookies) == null ? void 0 : A.headlineText,
|
7619
7625
|
"headline-level": (M = t.cmdBoxOptionalCookies) == null ? void 0 : M.headlineLevel
|
7620
7626
|
}, null, 8, ["headline-text", "headline-level"])) : c("", !0),
|
7621
|
-
(l(!0), a(x, null, D(t.cookieOptions.optional.cookies || [], (
|
7622
|
-
var
|
7627
|
+
(l(!0), a(x, null, D(t.cookieOptions.optional.cookies || [], (F, z) => {
|
7628
|
+
var B;
|
7623
7629
|
return l(), C(u, {
|
7624
7630
|
useSlots: ["header", "body"],
|
7625
|
-
collapsible: (
|
7631
|
+
collapsible: (B = t.cmdBoxOptionalCookies) == null ? void 0 : B.collapsible,
|
7626
7632
|
key: z
|
7627
7633
|
}, {
|
7628
7634
|
header: V(() => [
|
@@ -7631,28 +7637,28 @@ function Ac(e, n, t, s, o, i) {
|
|
7631
7637
|
type: "checkbox",
|
7632
7638
|
modelValue: i.acceptedCookies,
|
7633
7639
|
"onUpdate:modelValue": n[2] || (n[2] = (q) => i.acceptedCookies = q),
|
7634
|
-
inputValue:
|
7635
|
-
labelText:
|
7636
|
-
disabled:
|
7637
|
-
id:
|
7640
|
+
inputValue: F.value,
|
7641
|
+
labelText: F.labelText,
|
7642
|
+
disabled: F.disabled,
|
7643
|
+
id: F.id,
|
7638
7644
|
toggleSwitch: !0,
|
7639
7645
|
title: e.getMessage("cmdcookiedisclaimer.title.toggle_to_accept_cookie")
|
7640
7646
|
}, null, 8, ["modelValue", "inputValue", "labelText", "disabled", "id", "title"])
|
7641
7647
|
]),
|
7642
7648
|
body: V(() => [
|
7643
|
-
|
7644
|
-
|
7645
|
-
H(g(
|
7649
|
+
F.description ? (l(), a("p", Oc, g(F.description), 1)) : c("", !0),
|
7650
|
+
F.linkDataPrivacy ? (l(), a("p", Mc, [
|
7651
|
+
H(g(F.linkDataPrivacy.label) + " ", 1),
|
7646
7652
|
f("a", {
|
7647
7653
|
onClick: n[3] || (n[3] = (...q) => i.openDataPrivacy && i.openDataPrivacy(...q)),
|
7648
|
-
href:
|
7649
|
-
target:
|
7650
|
-
}, g(
|
7654
|
+
href: F.linkDataPrivacy.link,
|
7655
|
+
target: F.linkDataPrivacy.target
|
7656
|
+
}, g(F.linkDataPrivacy.linkText), 9, Lc)
|
7651
7657
|
])) : c("", !0),
|
7652
7658
|
o.dataPrivacyContent ? (l(), a("div", {
|
7653
7659
|
key: 2,
|
7654
7660
|
innerHTML: o.dataPrivacyContent
|
7655
|
-
}, null, 8,
|
7661
|
+
}, null, 8, Fc)) : c("", !0)
|
7656
7662
|
]),
|
7657
7663
|
_: 2
|
7658
7664
|
}, 1032, ["collapsible"]);
|
@@ -7661,7 +7667,7 @@ function Ac(e, n, t, s, o, i) {
|
|
7661
7667
|
];
|
7662
7668
|
}),
|
7663
7669
|
P(e.$slots, "privacy-text"),
|
7664
|
-
f("div",
|
7670
|
+
f("div", Bc, [
|
7665
7671
|
t.buttonLabelAcceptCurrentSettings ? (l(), a("button", {
|
7666
7672
|
key: 0,
|
7667
7673
|
type: "button",
|
@@ -8473,25 +8479,25 @@ const jy = /* @__PURE__ */ L(xu, [["render", Iu]]), Ou = {
|
|
8473
8479
|
onMouseOver(e) {
|
8474
8480
|
this.showLargeImage = !0, this.$nextTick(() => {
|
8475
8481
|
const n = window.innerHeight - this.$el.getBoundingClientRect().y - 10, t = this.$el.querySelector(".zoom-container");
|
8476
|
-
t.style.height = `${n}px`,
|
8482
|
+
t.style.height = `${n}px`, Fn(this, e);
|
8477
8483
|
});
|
8478
8484
|
},
|
8479
8485
|
onMouseMove(e) {
|
8480
|
-
|
8486
|
+
Fn(this, e);
|
8481
8487
|
},
|
8482
8488
|
onMouseOut() {
|
8483
8489
|
this.showLargeImage = !1;
|
8484
8490
|
}
|
8485
8491
|
}
|
8486
8492
|
};
|
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 =
|
8493
|
+
function Fn(e, n) {
|
8494
|
+
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
8495
|
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
8496
|
}
|
8491
|
-
function
|
8497
|
+
function Bn(e, n, t) {
|
8492
8498
|
return e < n ? n : e > t ? t : e;
|
8493
8499
|
}
|
8494
|
-
const Mu = { class: "cmd-imagezoom flex-container" }, Lu = ["title"],
|
8500
|
+
const Mu = { class: "cmd-imagezoom flex-container" }, Lu = ["title"], Fu = ["src", "alt"], Bu = {
|
8495
8501
|
key: 0,
|
8496
8502
|
class: "zoom-container"
|
8497
8503
|
}, Au = ["src", "alt"], Eu = {
|
@@ -8511,9 +8517,9 @@ function Pu(e, n, t, s, o, i) {
|
|
8511
8517
|
onMouseover: n[0] || (n[0] = (...r) => i.onMouseOver && i.onMouseOver(...r)),
|
8512
8518
|
onMousemove: n[1] || (n[1] = (...r) => i.onMouseMove && i.onMouseMove(...r)),
|
8513
8519
|
onMouseout: n[2] || (n[2] = (...r) => i.onMouseOut && i.onMouseOut(...r))
|
8514
|
-
}, null, 40,
|
8520
|
+
}, null, 40, Fu)
|
8515
8521
|
], 8, Lu),
|
8516
|
-
o.showLargeImage ? (l(), a("div",
|
8522
|
+
o.showLargeImage ? (l(), a("div", Bu, [
|
8517
8523
|
f("img", {
|
8518
8524
|
src: t.imageLarge.src,
|
8519
8525
|
alt: t.imageLarge.alt
|
@@ -8837,13 +8843,19 @@ const Ju = /* @__PURE__ */ L(Vu, [["render", Gu]]), Ku = {
|
|
8837
8843
|
}
|
8838
8844
|
},
|
8839
8845
|
/**
|
8840
|
-
*
|
8846
|
+
* options for legend for login-fieldset
|
8841
8847
|
*
|
8842
8848
|
* @requiredForAccessibility: true
|
8843
8849
|
*/
|
8844
|
-
|
8845
|
-
type:
|
8846
|
-
default
|
8850
|
+
legendLoginForm: {
|
8851
|
+
type: Object,
|
8852
|
+
default() {
|
8853
|
+
return {
|
8854
|
+
show: !0,
|
8855
|
+
align: "right",
|
8856
|
+
text: "Login form"
|
8857
|
+
};
|
8858
|
+
}
|
8847
8859
|
},
|
8848
8860
|
/**
|
8849
8861
|
* toggle legend visibility
|
@@ -8857,9 +8869,15 @@ const Ju = /* @__PURE__ */ L(Vu, [["render", Gu]]), Ku = {
|
|
8857
8869
|
*
|
8858
8870
|
* @requiredForAccessibility: true
|
8859
8871
|
*/
|
8860
|
-
|
8861
|
-
type:
|
8862
|
-
default
|
8872
|
+
legendForgotLoginForm: {
|
8873
|
+
type: Object,
|
8874
|
+
default() {
|
8875
|
+
return {
|
8876
|
+
show: !0,
|
8877
|
+
align: 'right"',
|
8878
|
+
text: "Forgot login form"
|
8879
|
+
};
|
8880
|
+
}
|
8863
8881
|
},
|
8864
8882
|
/**
|
8865
8883
|
* properties for CmdHeadline-component for login-form
|
@@ -9062,16 +9080,16 @@ const Ju = /* @__PURE__ */ L(Vu, [["render", Gu]]), Ku = {
|
|
9062
9080
|
}
|
9063
9081
|
}, 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
9082
|
function lm(e, n, t, s, o, i) {
|
9065
|
-
var m, h, w, b, _, T, S, O, A, M,
|
9083
|
+
var m, h, w, b, _, T, S, O, A, M, F, z, B, q, G, Y;
|
9066
9084
|
const r = K, d = ee, u = U, p = pi;
|
9067
9085
|
return l(), a(x, null, [
|
9068
9086
|
ue(f("fieldset", Zu, [
|
9069
9087
|
f("legend", {
|
9070
|
-
class: y({ hidden: !t.
|
9071
|
-
}, g(t.
|
9088
|
+
class: y({ hidden: !t.legendLoginForm.show, "align-left": t.legendLoginForm.align === "left" })
|
9089
|
+
}, g(t.legendLoginForm.text), 3),
|
9072
9090
|
t.cmdHeadlineLoginForm ? (l(), C(r, J(R({ key: 0 }, t.cmdHeadlineLoginForm)), null, 16)) : c("", !0),
|
9073
9091
|
f("div", {
|
9074
|
-
class: y(["login-fields
|
9092
|
+
class: y(["login-fields flex-container", { vertical: t.orientation === "vertical" }])
|
9075
9093
|
}, [
|
9076
9094
|
v(d, {
|
9077
9095
|
element: "input",
|
@@ -9150,8 +9168,8 @@ function lm(e, n, t, s, o, i) {
|
|
9150
9168
|
]),
|
9151
9169
|
ue(f("fieldset", em, [
|
9152
9170
|
f("legend", {
|
9153
|
-
class: y({ hidden: !t.
|
9154
|
-
}, g(t.
|
9171
|
+
class: y({ hidden: !t.legendForgotLoginForm.show, "align-left": t.legendForgotLoginForm.align === "left" })
|
9172
|
+
}, g(t.legendForgotLoginForm.text), 3),
|
9155
9173
|
t.cmdHeadlineSendLoginForm ? (l(), C(r, J(R({ key: 0 }, t.cmdHeadlineSendLoginForm)), null, 16)) : c("", !0),
|
9156
9174
|
v(d, {
|
9157
9175
|
ref: "sendPassword",
|
@@ -9190,8 +9208,8 @@ function lm(e, n, t, s, o, i) {
|
|
9190
9208
|
}, [
|
9191
9209
|
(M = (A = t.buttons.sendLogin) == null ? void 0 : A.icon) != null && M.iconClass ? (l(), C(u, {
|
9192
9210
|
key: 0,
|
9193
|
-
iconClass: (z = (
|
9194
|
-
title: (q = (
|
9211
|
+
iconClass: (z = (F = t.buttons.sendLogin) == null ? void 0 : F.icon) == null ? void 0 : z.iconClass,
|
9212
|
+
title: (q = (B = t.buttons.sendLogin) == null ? void 0 : B.icon) == null ? void 0 : q.tooltip
|
9195
9213
|
}, null, 8, ["iconClass", "title"])) : c("", !0),
|
9196
9214
|
(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
9215
|
], 10, im)) : c("", !0)
|
@@ -9656,7 +9674,7 @@ function Lm(e, n, t, s, o, i) {
|
|
9656
9674
|
], 2))), 128))
|
9657
9675
|
], 2);
|
9658
9676
|
}
|
9659
|
-
const Wy = /* @__PURE__ */ L(xm, [["render", Lm]]),
|
9677
|
+
const Wy = /* @__PURE__ */ L(xm, [["render", Lm]]), Fm = {
|
9660
9678
|
name: "CmdNewsletterSubscription",
|
9661
9679
|
emits: ["button-click"],
|
9662
9680
|
data() {
|
@@ -9799,10 +9817,10 @@ const Wy = /* @__PURE__ */ L(xm, [["render", Lm]]), Bm = {
|
|
9799
9817
|
immediate: !0
|
9800
9818
|
}
|
9801
9819
|
}
|
9802
|
-
},
|
9820
|
+
}, Bm = { class: "cmd-newsletter-subscription flex-container" }, Am = { class: "button-wrapper" };
|
9803
9821
|
function Em(e, n, t, s, o, i) {
|
9804
9822
|
const r = Ju, d = ee;
|
9805
|
-
return l(), a("fieldset",
|
9823
|
+
return l(), a("fieldset", Bm, [
|
9806
9824
|
f("legend", {
|
9807
9825
|
class: y({ hidden: !t.showLegend })
|
9808
9826
|
}, g(t.textLegend), 3),
|
@@ -9837,7 +9855,7 @@ function Em(e, n, t, s, o, i) {
|
|
9837
9855
|
])
|
9838
9856
|
]);
|
9839
9857
|
}
|
9840
|
-
const Gy = /* @__PURE__ */ L(
|
9858
|
+
const Gy = /* @__PURE__ */ L(Fm, [["render", Em]]);
|
9841
9859
|
function An(e, n, t, s = !0) {
|
9842
9860
|
function o(i, r) {
|
9843
9861
|
return r && i < 10 ? "0" + i : i;
|
@@ -10927,7 +10945,7 @@ function Lf(e, n, t, s, o, i) {
|
|
10927
10945
|
}, Mf))
|
10928
10946
|
], 2);
|
10929
10947
|
}
|
10930
|
-
const
|
10948
|
+
const Ff = /* @__PURE__ */ L(If, [["render", Lf]]), Bf = {
|
10931
10949
|
name: "CmdPageFooter",
|
10932
10950
|
props: {
|
10933
10951
|
/**
|
@@ -10992,7 +11010,7 @@ const Bf = /* @__PURE__ */ L(If, [["render", Lf]]), Ff = {
|
|
10992
11010
|
}, Af = { class: "button-wrapper" }, Ef = ["title"], Pf = { key: 1 };
|
10993
11011
|
function Vf(e, n, t, s, o, i) {
|
10994
11012
|
var d, u, p;
|
10995
|
-
const r =
|
11013
|
+
const r = Ff;
|
10996
11014
|
return l(), a("footer", {
|
10997
11015
|
class: y(["cmd-page-footer flex-container", { "small-buttons": t.useSmallButtons }])
|
10998
11016
|
}, [
|
@@ -11022,7 +11040,7 @@ function Vf(e, n, t, s, o, i) {
|
|
11022
11040
|
])
|
11023
11041
|
], 2);
|
11024
11042
|
}
|
11025
|
-
const Zy = /* @__PURE__ */ L(
|
11043
|
+
const Zy = /* @__PURE__ */ L(Bf, [["render", Vf]]), Df = {
|
11026
11044
|
name: "CmdPageHeader",
|
11027
11045
|
props: {
|
11028
11046
|
/**
|
@@ -11466,22 +11484,20 @@ const eb = /* @__PURE__ */ L(nh, [["render", oh]]), lh = {
|
|
11466
11484
|
default: !0
|
11467
11485
|
},
|
11468
11486
|
/**
|
11469
|
-
*
|
11487
|
+
* legend for form
|
11470
11488
|
*
|
11471
|
-
*
|
11472
|
-
*/
|
11473
|
-
showLegend: {
|
11474
|
-
type: Boolean,
|
11475
|
-
default: !0
|
11476
|
-
},
|
11477
|
-
/**
|
11478
|
-
* text for legend
|
11489
|
+
* useFieldset-property must be activated
|
11479
11490
|
*
|
11480
|
-
* @
|
11491
|
+
* @requiredForAccessiblity: true
|
11481
11492
|
*/
|
11482
|
-
|
11483
|
-
|
11484
|
-
|
11493
|
+
legend: {
|
11494
|
+
default() {
|
11495
|
+
return {
|
11496
|
+
show: !0,
|
11497
|
+
align: "left",
|
11498
|
+
text: "Legend"
|
11499
|
+
};
|
11500
|
+
}
|
11485
11501
|
},
|
11486
11502
|
/**
|
11487
11503
|
* send search result from outside to display inside this component
|
@@ -11687,8 +11703,8 @@ function fh(e, n, t, s, o, i) {
|
|
11687
11703
|
return l(), a(x, null, [
|
11688
11704
|
f("fieldset", ah, [
|
11689
11705
|
f("legend", {
|
11690
|
-
class: y({ hidden: !t.
|
11691
|
-
}, g(t.
|
11706
|
+
class: y({ hidden: !t.legend.show, "align-left": t.legend.align === "left" })
|
11707
|
+
}, g(t.legend.text), 3),
|
11692
11708
|
t.cmdHeadline ? (l(), C(r, J(R({ key: 0 }, t.cmdHeadline)), null, 16)) : c("", !0),
|
11693
11709
|
f("div", rh, [
|
11694
11710
|
v(d, {
|
@@ -11749,16 +11765,16 @@ function fh(e, n, t, s, o, i) {
|
|
11749
11765
|
]),
|
11750
11766
|
v(xe, { name: "fade" }, {
|
11751
11767
|
default: V(() => {
|
11752
|
-
var M,
|
11768
|
+
var M, F, z, B, q;
|
11753
11769
|
return [
|
11754
11770
|
o.showFilters && ((M = t.cmdFakeSelect) != null && M.selectData.length) ? (l(), a("div", mh, [
|
11755
11771
|
v(p, {
|
11756
11772
|
role: "option",
|
11757
|
-
selectData: (
|
11773
|
+
selectData: (F = t.cmdFakeSelect) == null ? void 0 : F.selectData,
|
11758
11774
|
modelValue: i.searchFilters,
|
11759
11775
|
"onUpdate:modelValue": n[4] || (n[4] = (G) => i.searchFilters = G),
|
11760
11776
|
defaultOptionName: (z = t.cmdFakeSelect) == null ? void 0 : z.defaultOptionName,
|
11761
|
-
type: (
|
11777
|
+
type: (B = t.cmdFakeSelect) == null ? void 0 : B.type,
|
11762
11778
|
labelText: (q = t.cmdFakeSelect) == null ? void 0 : q.labelText
|
11763
11779
|
}, null, 8, ["selectData", "modelValue", "defaultOptionName", "type", "labelText"])
|
11764
11780
|
])) : c("", !0)
|
@@ -12021,7 +12037,7 @@ function wh(e, n, t, s, o, i) {
|
|
12021
12037
|
key: 1,
|
12022
12038
|
type: "button",
|
12023
12039
|
class: "button confirm",
|
12024
|
-
onClick: n[0] || (n[0] = (...
|
12040
|
+
onClick: n[0] || (n[0] = (...F) => i.onAddItem && i.onAddItem(...F))
|
12025
12041
|
}, bh)) : c("", !0)
|
12026
12042
|
];
|
12027
12043
|
}),
|
@@ -12099,7 +12115,7 @@ const nb = /* @__PURE__ */ L(hh, [["render", wh]]), kh = "data:image/svg+xml,%3c
|
|
12099
12115
|
deep: !0
|
12100
12116
|
}
|
12101
12117
|
}
|
12102
|
-
}, Mh = { class: "cmd-switch-language" }, Lh = ["href", "title", "onClick"],
|
12118
|
+
}, Mh = { class: "cmd-switch-language" }, Lh = ["href", "title", "onClick"], Fh = ["src", "alt"], Bh = ["src", "alt"];
|
12103
12119
|
function Ah(e, n, t, s, o, i) {
|
12104
12120
|
const r = ce("router-link");
|
12105
12121
|
return l(), a("div", Mh, [
|
@@ -12115,7 +12131,7 @@ function Ah(e, n, t, s, o, i) {
|
|
12115
12131
|
f("img", {
|
12116
12132
|
src: o.imageSources[u],
|
12117
12133
|
alt: d.name
|
12118
|
-
}, null, 8,
|
12134
|
+
}, null, 8, Fh)
|
12119
12135
|
], 10, Lh)) : (l(), C(r, {
|
12120
12136
|
key: 1,
|
12121
12137
|
class: y(["flag", d.iso2]),
|
@@ -12127,7 +12143,7 @@ function Ah(e, n, t, s, o, i) {
|
|
12127
12143
|
f("img", {
|
12128
12144
|
src: o.imageSources[u],
|
12129
12145
|
alt: d.name
|
12130
|
-
}, null, 8,
|
12146
|
+
}, null, 8, Bh)
|
12131
12147
|
]),
|
12132
12148
|
_: 2
|
12133
12149
|
}, 1032, ["class", "to", "title", "onClick"]))
|
@@ -13072,7 +13088,7 @@ const Cp = mt("string"), ie = mt("function"), Ci = mt("number"), ft = (e) => e !
|
|
13072
13088
|
let n;
|
13073
13089
|
return e && (typeof FormData == "function" && e instanceof FormData || ie(e.append) && ((n = ut(e)) === "formdata" || // detect form-data instance
|
13074
13090
|
n === "object" && ie(e.toString) && e.toString() === "[object FormData]"));
|
13075
|
-
}, Ip = me("URLSearchParams"), [Op, Mp, Lp,
|
13091
|
+
}, 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
13092
|
function Ge(e, n, { allOwnKeys: t = !1 } = {}) {
|
13077
13093
|
if (e === null || typeof e > "u")
|
13078
13094
|
return;
|
@@ -13097,10 +13113,10 @@ function _i(e, n) {
|
|
13097
13113
|
return null;
|
13098
13114
|
}
|
13099
13115
|
const xi = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, wi = (e) => !ze(e) && e !== xi;
|
13100
|
-
function
|
13116
|
+
function Bt() {
|
13101
13117
|
const { caseless: e } = wi(this) && this || {}, n = {}, t = (s, o) => {
|
13102
13118
|
const i = e && _i(n, o) || o;
|
13103
|
-
Qe(n[i]) && Qe(s) ? n[i] =
|
13119
|
+
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
13120
|
};
|
13105
13121
|
for (let s = 0, o = arguments.length; s < o; s++)
|
13106
13122
|
arguments[s] && Ge(arguments[s], t);
|
@@ -13227,7 +13243,7 @@ const Xp = (e) => {
|
|
13227
13243
|
isReadableStream: Op,
|
13228
13244
|
isRequest: Mp,
|
13229
13245
|
isResponse: Lp,
|
13230
|
-
isHeaders:
|
13246
|
+
isHeaders: Fp,
|
13231
13247
|
isUndefined: ze,
|
13232
13248
|
isDate: xp,
|
13233
13249
|
isFile: wp,
|
@@ -13239,9 +13255,9 @@ const Xp = (e) => {
|
|
13239
13255
|
isTypedArray: Hp,
|
13240
13256
|
isFileList: vp,
|
13241
13257
|
forEach: Ge,
|
13242
|
-
merge:
|
13258
|
+
merge: Bt,
|
13243
13259
|
extend: Ap,
|
13244
|
-
trim:
|
13260
|
+
trim: Bp,
|
13245
13261
|
stripBOM: Ep,
|
13246
13262
|
inherits: Pp,
|
13247
13263
|
toFlatObject: Vp,
|
@@ -13366,10 +13382,10 @@ function ht(e, n, t) {
|
|
13366
13382
|
if (k.endsWith(T, "{}"))
|
13367
13383
|
T = s ? T : T.slice(0, -2), _ = JSON.stringify(_);
|
13368
13384
|
else if (k.isArray(_) && tg(_) || (k.isFileList(_) || k.endsWith(T, "[]")) && (O = k.toArray(_)))
|
13369
|
-
return T = Ii(T), O.forEach(function(M,
|
13385
|
+
return T = Ii(T), O.forEach(function(M, F) {
|
13370
13386
|
!(k.isUndefined(M) || M === null) && n.append(
|
13371
13387
|
// eslint-disable-next-line no-nested-ternary
|
13372
|
-
r === !0 ? Vn([T],
|
13388
|
+
r === !0 ? Vn([T], F, i) : r === null ? T : T + "[]",
|
13373
13389
|
p(M)
|
13374
13390
|
);
|
13375
13391
|
}), !1;
|
@@ -13539,7 +13555,7 @@ function hg(e) {
|
|
13539
13555
|
i = t[s], n[i] = e[i];
|
13540
13556
|
return n;
|
13541
13557
|
}
|
13542
|
-
function
|
13558
|
+
function Fi(e) {
|
13543
13559
|
function n(t, s, o, i) {
|
13544
13560
|
let r = t[i++];
|
13545
13561
|
if (r === "__proto__") return !0;
|
@@ -13570,7 +13586,7 @@ const Je = {
|
|
13570
13586
|
transformRequest: [function(n, t) {
|
13571
13587
|
const s = t.getContentType() || "", o = s.indexOf("application/json") > -1, i = k.isObject(n);
|
13572
13588
|
if (i && k.isHTMLForm(n) && (n = new FormData(n)), k.isFormData(n))
|
13573
|
-
return o ? JSON.stringify(
|
13589
|
+
return o ? JSON.stringify(Fi(n)) : n;
|
13574
13590
|
if (k.isArrayBuffer(n) || k.isBuffer(n) || k.isStream(n) || k.isFile(n) || k.isBlob(n) || k.isReadableStream(n))
|
13575
13591
|
return n;
|
13576
13592
|
if (k.isArrayBufferView(n))
|
@@ -13833,7 +13849,7 @@ function xt(e, n) {
|
|
13833
13849
|
i = d.call(t, i, o.normalize(), n ? n.status : void 0);
|
13834
13850
|
}), o.normalize(), i;
|
13835
13851
|
}
|
13836
|
-
function
|
13852
|
+
function Bi(e) {
|
13837
13853
|
return !!(e && e.__CANCEL__);
|
13838
13854
|
}
|
13839
13855
|
function Oe(e, n, t) {
|
@@ -14111,7 +14127,7 @@ const Pi = (e) => {
|
|
14111
14127
|
}
|
14112
14128
|
m.send(i || null);
|
14113
14129
|
});
|
14114
|
-
},
|
14130
|
+
}, Fg = (e, n) => {
|
14115
14131
|
let t = new AbortController(), s;
|
14116
14132
|
const o = function(u) {
|
14117
14133
|
if (!s) {
|
@@ -14133,7 +14149,7 @@ const Pi = (e) => {
|
|
14133
14149
|
return d.unsubscribe = r, [d, () => {
|
14134
14150
|
i && clearTimeout(i), i = null;
|
14135
14151
|
}];
|
14136
|
-
},
|
14152
|
+
}, Bg = function* (e, n) {
|
14137
14153
|
let t = e.byteLength;
|
14138
14154
|
if (!n || t < n) {
|
14139
14155
|
yield e;
|
@@ -14144,7 +14160,7 @@ const Pi = (e) => {
|
|
14144
14160
|
o = s + n, yield e.slice(s, o), s = o;
|
14145
14161
|
}, Ag = async function* (e, n, t) {
|
14146
14162
|
for await (const s of e)
|
14147
|
-
yield*
|
14163
|
+
yield* Bg(ArrayBuffer.isView(s) ? s : await t(String(s)), n);
|
14148
14164
|
}, Nn = (e, n, t, s, o) => {
|
14149
14165
|
const i = Ag(e, n, o);
|
14150
14166
|
let r = 0;
|
@@ -14227,7 +14243,7 @@ const Pg = async (e) => {
|
|
14227
14243
|
fetchOptions: w
|
14228
14244
|
} = Pi(e);
|
14229
14245
|
p = p ? (p + "").toLowerCase() : "text";
|
14230
|
-
let [b, _] = o || i || r ?
|
14246
|
+
let [b, _] = o || i || r ? Fg([o, i], r) : [], T, S;
|
14231
14247
|
const O = () => {
|
14232
14248
|
!T && setTimeout(() => {
|
14233
14249
|
b && b.unsubscribe();
|
@@ -14236,12 +14252,12 @@ const Pg = async (e) => {
|
|
14236
14252
|
let A;
|
14237
14253
|
try {
|
14238
14254
|
if (u && Eg && t !== "get" && t !== "head" && (A = await Vg(m, s)) !== 0) {
|
14239
|
-
let
|
14255
|
+
let B = new Request(n, {
|
14240
14256
|
method: "POST",
|
14241
14257
|
body: s,
|
14242
14258
|
duplex: "half"
|
14243
14259
|
}), q;
|
14244
|
-
k.isFormData(s) && (q =
|
14260
|
+
k.isFormData(s) && (q = B.headers.get("content-type")) && m.setContentType(q), B.body && (s = Nn(B.body, Un, jn(
|
14245
14261
|
A,
|
14246
14262
|
nt(u)
|
14247
14263
|
), null, Et));
|
@@ -14256,25 +14272,25 @@ const Pg = async (e) => {
|
|
14256
14272
|
withCredentials: h
|
14257
14273
|
});
|
14258
14274
|
let M = await fetch(S);
|
14259
|
-
const
|
14260
|
-
if (Pt && (d ||
|
14261
|
-
const
|
14275
|
+
const F = Pt && (p === "stream" || p === "response");
|
14276
|
+
if (Pt && (d || F)) {
|
14277
|
+
const B = {};
|
14262
14278
|
["status", "statusText", "headers"].forEach((G) => {
|
14263
|
-
|
14279
|
+
B[G] = M[G];
|
14264
14280
|
});
|
14265
14281
|
const q = k.toFiniteNumber(M.headers.get("content-length"));
|
14266
14282
|
M = new Response(
|
14267
14283
|
Nn(M.body, Un, d && jn(
|
14268
14284
|
q,
|
14269
14285
|
nt(d, !0)
|
14270
|
-
),
|
14271
|
-
|
14286
|
+
), F && O, Et),
|
14287
|
+
B
|
14272
14288
|
);
|
14273
14289
|
}
|
14274
14290
|
p = p || "text";
|
14275
14291
|
let z = await it[k.findKey(it, p) || "text"](M, e);
|
14276
|
-
return !
|
14277
|
-
Ai(
|
14292
|
+
return !F && O(), _ && _(), await new Promise((B, q) => {
|
14293
|
+
Ai(B, q, {
|
14278
14294
|
data: z,
|
14279
14295
|
headers: te.from(M.headers),
|
14280
14296
|
status: M.status,
|
@@ -14351,7 +14367,7 @@ function Wn(e) {
|
|
14351
14367
|
s
|
14352
14368
|
), s.headers = te.from(s.headers), s;
|
14353
14369
|
}, function(s) {
|
14354
|
-
return
|
14370
|
+
return Bi(s) || (wt(e), s && s.response && (s.response.data = xt.call(
|
14355
14371
|
e,
|
14356
14372
|
e.transformResponse,
|
14357
14373
|
s.response
|
@@ -14678,7 +14694,7 @@ const Z = Hi(Je);
|
|
14678
14694
|
Z.Axios = _e;
|
14679
14695
|
Z.CanceledError = Oe;
|
14680
14696
|
Z.CancelToken = tn;
|
14681
|
-
Z.isCancel =
|
14697
|
+
Z.isCancel = Bi;
|
14682
14698
|
Z.VERSION = qi;
|
14683
14699
|
Z.toFormData = ht;
|
14684
14700
|
Z.AxiosError = N;
|
@@ -14690,7 +14706,7 @@ Z.spread = Rg;
|
|
14690
14706
|
Z.isAxiosError = Ng;
|
14691
14707
|
Z.mergeConfig = ke;
|
14692
14708
|
Z.AxiosHeaders = te;
|
14693
|
-
Z.formToJSON = (e) =>
|
14709
|
+
Z.formToJSON = (e) => Fi(k.isHTMLForm(e) ? new FormData(e) : e);
|
14694
14710
|
Z.getAdapter = Di.getAdapter;
|
14695
14711
|
Z.HttpStatusCode = qt;
|
14696
14712
|
Z.default = Z;
|
@@ -15777,7 +15793,7 @@ function Ly(e, n, t, s, o, i) {
|
|
15777
15793
|
], 64))), 128))
|
15778
15794
|
]);
|
15779
15795
|
}
|
15780
|
-
const ub = /* @__PURE__ */ L(Oy, [["render", Ly]]),
|
15796
|
+
const ub = /* @__PURE__ */ L(Oy, [["render", Ly]]), Fy = {
|
15781
15797
|
name: "MultipleListsOfLinks",
|
15782
15798
|
props: {
|
15783
15799
|
segments: {
|
@@ -15785,10 +15801,10 @@ const ub = /* @__PURE__ */ L(Oy, [["render", Ly]]), By = {
|
|
15785
15801
|
default: null
|
15786
15802
|
}
|
15787
15803
|
}
|
15788
|
-
},
|
15804
|
+
}, By = { class: "cmd-page-multiple-lists-of-links flex-container vertical" };
|
15789
15805
|
function Ay(e, n, t, s, o, i) {
|
15790
15806
|
const r = hi;
|
15791
|
-
return l(), a("div",
|
15807
|
+
return l(), a("div", By, [
|
15792
15808
|
(l(!0), a(x, null, D(t.segments, (d, u) => (l(), a(x, { key: u }, [
|
15793
15809
|
v(r, {
|
15794
15810
|
links: d.links,
|
@@ -15800,7 +15816,7 @@ function Ay(e, n, t, s, o, i) {
|
|
15800
15816
|
], 64))), 128))
|
15801
15817
|
]);
|
15802
15818
|
}
|
15803
|
-
const mb = /* @__PURE__ */ L(
|
15819
|
+
const mb = /* @__PURE__ */ L(Fy, [["render", Ay]]), fb = {
|
15804
15820
|
// el = real dom-element
|
15805
15821
|
mounted(e) {
|
15806
15822
|
if (e.tagName === "INPUT" || e.tagName === "SELECT" || e.tagName === "TEXTAREA" || e.tagName === "A")
|
@@ -15849,7 +15865,7 @@ export {
|
|
15849
15865
|
Ny as CmdCopyrightInformation,
|
15850
15866
|
ru as CmdFakeSelect,
|
15851
15867
|
qy as CmdFancyBox,
|
15852
|
-
|
15868
|
+
Fa as CmdForm,
|
15853
15869
|
ee as CmdFormElement,
|
15854
15870
|
pu as CmdFormFilters,
|
15855
15871
|
_u as CmdGoogleMaps,
|
@@ -15876,7 +15892,7 @@ export {
|
|
15876
15892
|
tb as CmdSiteSearch,
|
15877
15893
|
dt as CmdSlideButton,
|
15878
15894
|
nb as CmdSlideshow,
|
15879
|
-
|
15895
|
+
Ff as CmdSocialNetworks,
|
15880
15896
|
ib as CmdSwitchLanguage,
|
15881
15897
|
qh as CmdSystemMessage,
|
15882
15898
|
ob as CmdTable,
|