@mirweb/mir-web-components 1.7.15 → 1.7.16
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as g, computed as A, openBlock as
|
|
1
|
+
import { defineComponent as g, computed as A, openBlock as l, createElementBlock as i, normalizeClass as p, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as U, Fragment as T, renderList as V, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as M, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as L, createCommentVNode as h, watchEffect as pe, withKeys as Ce, useSlots as qe, normalizeStyle as x, isRef as ce, unref as I, onMounted as me, watch as Q, onUnmounted as Ae } from "vue";
|
|
2
2
|
const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -15,15 +15,15 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
15
15
|
next: "next",
|
|
16
16
|
previous: "previous"
|
|
17
17
|
}, r = e, o = A(() => a[r.variant]);
|
|
18
|
-
return (
|
|
18
|
+
return (s, u) => (l(), i("button", {
|
|
19
19
|
class: p(["button", "button--" + o.value]),
|
|
20
|
-
"aria-label":
|
|
21
|
-
}, d(o.value === "close" ? "" :
|
|
20
|
+
"aria-label": s.ariaLabel
|
|
21
|
+
}, d(o.value === "close" ? "" : s.buttonText), 11, Le));
|
|
22
22
|
}
|
|
23
23
|
}), v = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
|
-
for (const [o,
|
|
26
|
-
r[o] =
|
|
25
|
+
for (const [o, s] of a)
|
|
26
|
+
r[o] = s;
|
|
27
27
|
return r;
|
|
28
28
|
}, se = /* @__PURE__ */ v(De, [["__scopeId", "data-v-f61b579c"]]), Te = (e) => (H("data-v-0c4c6d8e"), e = e(), R(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ Te(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
|
|
29
29
|
__name: "checkbox",
|
|
@@ -37,30 +37,30 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
37
37
|
},
|
|
38
38
|
emits: ["input"],
|
|
39
39
|
setup(e, { emit: a }) {
|
|
40
|
-
const r = a, o = (
|
|
41
|
-
const u =
|
|
40
|
+
const r = a, o = (s) => {
|
|
41
|
+
const u = s.target;
|
|
42
42
|
r("input", u.checked);
|
|
43
43
|
};
|
|
44
|
-
return (
|
|
45
|
-
class: p(["checkbox__wrapper",
|
|
44
|
+
return (s, u) => (l(), i("div", {
|
|
45
|
+
class: p(["checkbox__wrapper", s.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
47
|
t("input", {
|
|
48
|
-
id:
|
|
48
|
+
id: s.id,
|
|
49
49
|
type: "checkbox",
|
|
50
|
-
name:
|
|
51
|
-
value:
|
|
52
|
-
disabled:
|
|
53
|
-
required:
|
|
54
|
-
checked:
|
|
50
|
+
name: s.name,
|
|
51
|
+
value: s.value,
|
|
52
|
+
disabled: s.disabled,
|
|
53
|
+
required: s.required,
|
|
54
|
+
checked: s.checked,
|
|
55
55
|
class: "checkbox__checkbox",
|
|
56
56
|
onChange: o
|
|
57
57
|
}, null, 40, Ve),
|
|
58
58
|
t("label", {
|
|
59
|
-
for:
|
|
60
|
-
class: p(["checkbox__label",
|
|
59
|
+
for: s.id,
|
|
60
|
+
class: p(["checkbox__label", s.required ? "required" : ""])
|
|
61
61
|
}, [
|
|
62
62
|
Fe,
|
|
63
|
-
c(
|
|
63
|
+
c(s.$slots, "default", {}, void 0, !0)
|
|
64
64
|
], 10, Pe)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
@@ -76,9 +76,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
76
76
|
emits: ["remove-chip"],
|
|
77
77
|
setup(e) {
|
|
78
78
|
const a = e, r = A(() => `Chip: ${a.text}`);
|
|
79
|
-
return (o,
|
|
79
|
+
return (o, s) => (l(), i("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick:
|
|
81
|
+
onClick: s[0] || (s[0] = (u) => o.$emit("remove-chip"))
|
|
82
82
|
}, [
|
|
83
83
|
t("span", {
|
|
84
84
|
class: "chip",
|
|
@@ -107,7 +107,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
107
107
|
const r = {
|
|
108
108
|
primary: "dropdown-dark-bg-primary",
|
|
109
109
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
110
|
-
}, o = e,
|
|
110
|
+
}, o = e, s = A(() => r[o.variant]), u = C(null), _ = C(null), n = C([]), b = C(0), f = C(""), k = C(!0), w = C(0), te = a, ie = A(() => {
|
|
111
111
|
const m = o.options.find(
|
|
112
112
|
(B) => B.value === o.modelValue
|
|
113
113
|
);
|
|
@@ -200,12 +200,12 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
200
200
|
), Y = n.value[N];
|
|
201
201
|
de(Y);
|
|
202
202
|
}
|
|
203
|
-
if (m.setAttribute("aria-selected", "true"), (q =
|
|
203
|
+
if (m.setAttribute("aria-selected", "true"), (q = _.value) == null || q.setAttribute(
|
|
204
204
|
"aria-activedescendant",
|
|
205
205
|
B || ""
|
|
206
|
-
), re(B || ""),
|
|
207
|
-
const N =
|
|
208
|
-
Y > N ?
|
|
206
|
+
), re(B || ""), _.value && _.value.scrollHeight > _.value.clientHeight) {
|
|
207
|
+
const N = _.value.clientHeight + _.value.scrollTop, Y = m.offsetTop + m.offsetHeight;
|
|
208
|
+
Y > N ? _.value.scrollTop = Y - ((D = _.value) == null ? void 0 : D.clientHeight) : m.offsetTop < _.value.scrollTop && (_.value.scrollTop = m.offsetTop);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
function $e() {
|
|
@@ -219,14 +219,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
219
219
|
}
|
|
220
220
|
function ue() {
|
|
221
221
|
var m, B;
|
|
222
|
-
k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B =
|
|
222
|
+
k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B = _.value) == null || B.focus();
|
|
223
223
|
}
|
|
224
224
|
function we() {
|
|
225
225
|
o.disabled || (k.value ? ue() : oe());
|
|
226
226
|
}
|
|
227
227
|
return (m, B) => {
|
|
228
228
|
const q = _e("click-outside");
|
|
229
|
-
return
|
|
229
|
+
return l(), i("div", {
|
|
230
230
|
ref: "listbox",
|
|
231
231
|
class: "listbox__wrapper",
|
|
232
232
|
value: m.modelValue
|
|
@@ -239,7 +239,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
239
239
|
"is-required": m.required
|
|
240
240
|
}, "listbox__label"])
|
|
241
241
|
}, d(m.label), 11, je),
|
|
242
|
-
U((
|
|
242
|
+
U((l(), i("div", Ke, [
|
|
243
243
|
t("button", {
|
|
244
244
|
id: `${m.name}-button-label`,
|
|
245
245
|
ref_key: "listboxButton",
|
|
@@ -248,13 +248,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
248
248
|
type: "button",
|
|
249
249
|
"aria-haspopup": "listbox",
|
|
250
250
|
"aria-disabled": m.disabled,
|
|
251
|
-
class: p(["listbox__button",
|
|
251
|
+
class: p(["listbox__button", s.value]),
|
|
252
252
|
onClick: we,
|
|
253
253
|
onKeydown: ae
|
|
254
254
|
}, d(m.modelValue ? ie.value : m.placeholder), 43, Ue),
|
|
255
255
|
U(t("ul", {
|
|
256
256
|
ref_key: "listboxNode",
|
|
257
|
-
ref:
|
|
257
|
+
ref: _,
|
|
258
258
|
"aria-labelledby": `${m.name}-label`,
|
|
259
259
|
"aria-activedescendant": m.modelValue,
|
|
260
260
|
tabindex: "0",
|
|
@@ -263,7 +263,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
263
263
|
onKeydown: G,
|
|
264
264
|
onClick: ne
|
|
265
265
|
}, [
|
|
266
|
-
(
|
|
266
|
+
(l(!0), i(T, null, V(m.options, (D, N) => (l(), i("li", {
|
|
267
267
|
key: `${m.name}-option-${N}`,
|
|
268
268
|
ref_for: !0,
|
|
269
269
|
ref_key: "listboxOptions",
|
|
@@ -294,7 +294,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
294
294
|
loading: { default: "auto" }
|
|
295
295
|
},
|
|
296
296
|
setup(e) {
|
|
297
|
-
return (a, r) => (
|
|
297
|
+
return (a, r) => (l(), i("div", Qe, [
|
|
298
298
|
c(a.$slots, "default", O(z(a.$attrs)))
|
|
299
299
|
]));
|
|
300
300
|
}
|
|
@@ -306,7 +306,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
306
306
|
},
|
|
307
307
|
setup(e) {
|
|
308
308
|
const a = e, r = A(() => `Label: ${a.text}`);
|
|
309
|
-
return (o,
|
|
309
|
+
return (o, s) => (l(), i("div", Xe, [
|
|
310
310
|
t("span", {
|
|
311
311
|
"aria-label": r.value,
|
|
312
312
|
"label-dark": o.labelDark,
|
|
@@ -336,14 +336,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
336
336
|
hover: "underline-hover",
|
|
337
337
|
true: "add-underline",
|
|
338
338
|
false: "remove-underline"
|
|
339
|
-
}, o = e,
|
|
339
|
+
}, o = e, s = A(() => a[o.linkType]), u = A(() => r[o.underline]), _ = A(() => {
|
|
340
340
|
const { ...n } = Se(o);
|
|
341
341
|
return n;
|
|
342
342
|
});
|
|
343
|
-
return (n, b) => (
|
|
344
|
-
t("div", M(
|
|
343
|
+
return (n, b) => (l(), i("div", tt, [
|
|
344
|
+
t("div", M(_.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
|
-
|
|
346
|
+
s.value,
|
|
347
347
|
n.disabled ? "disabled" : "",
|
|
348
348
|
u.value,
|
|
349
349
|
n.arrow ? "link-arrow" : ""
|
|
@@ -365,30 +365,30 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
365
365
|
},
|
|
366
366
|
emits: ["input"],
|
|
367
367
|
setup(e, { emit: a }) {
|
|
368
|
-
const r = a, o = (
|
|
369
|
-
const u =
|
|
368
|
+
const r = a, o = (s) => {
|
|
369
|
+
const u = s.target;
|
|
370
370
|
r("input", u.checked);
|
|
371
371
|
};
|
|
372
|
-
return (
|
|
373
|
-
class: p(["radio__wrapper",
|
|
372
|
+
return (s, u) => (l(), i("div", {
|
|
373
|
+
class: p(["radio__wrapper", s.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
375
|
t("input", {
|
|
376
|
-
id:
|
|
376
|
+
id: s.id,
|
|
377
377
|
type: "radio",
|
|
378
|
-
name:
|
|
379
|
-
value:
|
|
380
|
-
checked:
|
|
381
|
-
disabled:
|
|
382
|
-
required:
|
|
378
|
+
name: s.name,
|
|
379
|
+
value: s.value,
|
|
380
|
+
checked: s.checked,
|
|
381
|
+
disabled: s.disabled,
|
|
382
|
+
required: s.required,
|
|
383
383
|
class: "radio__radio",
|
|
384
384
|
onChange: o
|
|
385
385
|
}, null, 40, ot),
|
|
386
386
|
t("label", {
|
|
387
|
-
for:
|
|
388
|
-
class: p(["radio__label",
|
|
387
|
+
for: s.id,
|
|
388
|
+
class: p(["radio__label", s.required ? "required" : ""])
|
|
389
389
|
}, [
|
|
390
390
|
lt,
|
|
391
|
-
c(
|
|
391
|
+
c(s.$slots, "default", {}, void 0, !0)
|
|
392
392
|
], 10, st)
|
|
393
393
|
], 2));
|
|
394
394
|
}
|
|
@@ -405,7 +405,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
405
405
|
},
|
|
406
406
|
emits: ["update:modelValue"],
|
|
407
407
|
setup(e) {
|
|
408
|
-
return (a, r) => (
|
|
408
|
+
return (a, r) => (l(), i("div", nt, [
|
|
409
409
|
t("label", {
|
|
410
410
|
for: a.id,
|
|
411
411
|
class: p([a.required ? "required" : "", a.disabled ? "disabled" : ""])
|
|
@@ -420,7 +420,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
420
420
|
a.$emit("update:modelValue", o.target.value), o.target.blur();
|
|
421
421
|
})
|
|
422
422
|
}, [
|
|
423
|
-
(
|
|
423
|
+
(l(!0), i(T, null, V(a.options, (o) => (l(), i("option", {
|
|
424
424
|
key: o.value,
|
|
425
425
|
value: o.value
|
|
426
426
|
}, d(o.text), 9, ut))), 128))
|
|
@@ -435,10 +435,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
435
435
|
},
|
|
436
436
|
emits: ["update:show"],
|
|
437
437
|
setup(e, { emit: a }) {
|
|
438
|
-
const r = e, o = a,
|
|
438
|
+
const r = e, o = a, s = () => {
|
|
439
439
|
o("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (u,
|
|
441
|
+
return (u, _) => (l(), i("div", pt, [
|
|
442
442
|
S(Ie, {
|
|
443
443
|
duration: 300,
|
|
444
444
|
name: "nested"
|
|
@@ -448,20 +448,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
448
448
|
class: p(["overlay", u.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
451
|
-
onClick:
|
|
451
|
+
onClick: s
|
|
452
452
|
}, [
|
|
453
453
|
t("div", {
|
|
454
454
|
id: "modal",
|
|
455
455
|
class: p([u.searchBar ? "search" : ""]),
|
|
456
|
-
onClick:
|
|
456
|
+
onClick: _[0] || (_[0] = he(() => {
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
459
|
t("div", null, [
|
|
460
|
-
u.searchBar ?
|
|
460
|
+
u.searchBar ? h("", !0) : (l(), L(se, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
|
-
onClick:
|
|
464
|
+
onClick: s
|
|
465
465
|
}))
|
|
466
466
|
]),
|
|
467
467
|
c(u.$slots, "default", {}, void 0, !0)
|
|
@@ -490,34 +490,34 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
490
490
|
},
|
|
491
491
|
emits: ["update:modelValue"],
|
|
492
492
|
setup(e, { emit: a }) {
|
|
493
|
-
const r = e, o = a,
|
|
493
|
+
const r = e, o = a, s = C(r.modelValue), u = C(), _ = C(!1), n = (f, k, w) => (f - k) / (w - k) * 100, b = (f) => {
|
|
494
494
|
var k;
|
|
495
495
|
(k = u.value) == null || k.style.setProperty("--ProgressPercent", `${f}%`);
|
|
496
496
|
};
|
|
497
497
|
return pe(() => {
|
|
498
498
|
if (u.value) {
|
|
499
|
-
o("update:modelValue",
|
|
500
|
-
const f = n(
|
|
499
|
+
o("update:modelValue", s.value);
|
|
500
|
+
const f = n(s.value, r.min, r.max);
|
|
501
501
|
let k = (50 - f) / 100;
|
|
502
502
|
b(f + k);
|
|
503
503
|
}
|
|
504
|
-
}), (f, k) => (
|
|
504
|
+
}), (f, k) => (l(), i("div", null, [
|
|
505
505
|
t("div", ft, [
|
|
506
506
|
t("div", vt, [
|
|
507
507
|
t("label", {
|
|
508
508
|
for: f.id,
|
|
509
509
|
class: p([f.variant, ""])
|
|
510
510
|
}, d(f.label), 11, gt),
|
|
511
|
-
f.information ? (
|
|
511
|
+
f.information ? (l(), i("i", {
|
|
512
512
|
key: 0,
|
|
513
513
|
role: "button",
|
|
514
514
|
class: p([f.variant, "slider__information"]),
|
|
515
515
|
"aria-label": f.informationLabel,
|
|
516
516
|
tabindex: "0",
|
|
517
517
|
"aria-haspopup": "dialog",
|
|
518
|
-
onClick: k[0] || (k[0] = (w) =>
|
|
519
|
-
onKeyup: k[1] || (k[1] = Ce((w) =>
|
|
520
|
-
}, null, 42, bt)) :
|
|
518
|
+
onClick: k[0] || (k[0] = (w) => _.value = !_.value),
|
|
519
|
+
onKeyup: k[1] || (k[1] = Ce((w) => _.value = !_.value, ["enter"]))
|
|
520
|
+
}, null, 42, bt)) : h("", !0)
|
|
521
521
|
]),
|
|
522
522
|
t("div", yt, [
|
|
523
523
|
t("span", {
|
|
@@ -534,7 +534,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
534
534
|
step: f.step,
|
|
535
535
|
max: f.max,
|
|
536
536
|
class: p(f.variant),
|
|
537
|
-
onInput: k[2] || (k[2] = ({ target: w }) =>
|
|
537
|
+
onInput: k[2] || (k[2] = ({ target: w }) => s.value = parseFloat(w.value))
|
|
538
538
|
}, null, 42, kt),
|
|
539
539
|
t("span", {
|
|
540
540
|
class: p([f.variant, "slider__minmax"])
|
|
@@ -544,16 +544,16 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
544
544
|
class: p([f.variant, "slider__value"])
|
|
545
545
|
}, d(f.modelValue), 3)
|
|
546
546
|
]),
|
|
547
|
-
f.information ? (
|
|
547
|
+
f.information ? (l(), L(ve, {
|
|
548
548
|
key: 0,
|
|
549
|
-
show:
|
|
550
|
-
"onUpdate:show": k[3] || (k[3] = (w) =>
|
|
549
|
+
show: _.value,
|
|
550
|
+
"onUpdate:show": k[3] || (k[3] = (w) => _.value = w)
|
|
551
551
|
}, {
|
|
552
552
|
default: y(() => [
|
|
553
553
|
t("p", $t, d(f.information), 1)
|
|
554
554
|
]),
|
|
555
555
|
_: 1
|
|
556
|
-
}, 8, ["show"])) :
|
|
556
|
+
}, 8, ["show"])) : h("", !0)
|
|
557
557
|
]));
|
|
558
558
|
}
|
|
559
559
|
}), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { id: "textarea-wrapper" }, It = ["for"], Ct = ["id"], qt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], At = { class: "textarea-info" }, Lt = { key: 0 }, Dt = /* @__PURE__ */ g({
|
|
@@ -570,7 +570,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
570
570
|
},
|
|
571
571
|
emits: ["update:modelValue"],
|
|
572
572
|
setup(e) {
|
|
573
|
-
return (a, r) => (
|
|
573
|
+
return (a, r) => (l(), i("div", St, [
|
|
574
574
|
t("label", {
|
|
575
575
|
for: a.id,
|
|
576
576
|
class: p({ required: a.required })
|
|
@@ -596,7 +596,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
596
596
|
], 8, Ct),
|
|
597
597
|
t("div", At, [
|
|
598
598
|
t("div", null, [
|
|
599
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (
|
|
599
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (l(), i("p", Lt, " Too many characters. Please make it shorter ")) : h("", !0)
|
|
600
600
|
]),
|
|
601
601
|
t("p", {
|
|
602
602
|
class: p(
|
|
@@ -642,12 +642,12 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
642
642
|
tel: "tel",
|
|
643
643
|
url: "url",
|
|
644
644
|
search: "search"
|
|
645
|
-
}, r = e, o = A(() => a[r.type]),
|
|
646
|
-
() =>
|
|
647
|
-
),
|
|
648
|
-
() =>
|
|
645
|
+
}, r = e, o = A(() => a[r.type]), s = C(!0), u = A(
|
|
646
|
+
() => s.value ? "showPassword" : "hidePassword"
|
|
647
|
+
), _ = A(
|
|
648
|
+
() => s.value ? "password" : "text"
|
|
649
649
|
);
|
|
650
|
-
return (n, b) => (
|
|
650
|
+
return (n, b) => (l(), i("div", Vt, [
|
|
651
651
|
t("label", {
|
|
652
652
|
for: n.id,
|
|
653
653
|
class: p([
|
|
@@ -656,11 +656,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
656
656
|
n.search ? "search" : ""
|
|
657
657
|
])
|
|
658
658
|
}, d(n.label), 11, Pt),
|
|
659
|
-
o.value === "password" ? (
|
|
659
|
+
o.value === "password" ? (l(), i("div", Ft, [
|
|
660
660
|
t("input", {
|
|
661
661
|
id: n.id,
|
|
662
662
|
ref: "passwordField",
|
|
663
|
-
type:
|
|
663
|
+
type: _.value,
|
|
664
664
|
value: n.modelValue,
|
|
665
665
|
placeholder: n.placeholder,
|
|
666
666
|
required: n.required,
|
|
@@ -672,10 +672,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
672
672
|
role: "button",
|
|
673
673
|
class: p([u.value]),
|
|
674
674
|
"aria-controls": "password",
|
|
675
|
-
"aria-expanded": !
|
|
676
|
-
onClick: b[1] || (b[1] = (f) =>
|
|
675
|
+
"aria-expanded": !s.value,
|
|
676
|
+
onClick: b[1] || (b[1] = (f) => s.value = !s.value)
|
|
677
677
|
}, null, 10, Ot)
|
|
678
|
-
])) : (
|
|
678
|
+
])) : (l(), i("input", {
|
|
679
679
|
key: 1,
|
|
680
680
|
id: n.id,
|
|
681
681
|
ref: "textField",
|
|
@@ -692,9 +692,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
692
692
|
name: n.fieldName,
|
|
693
693
|
onInput: b[2] || (b[2] = (f) => n.$emit("update:modelValue", f.target.value))
|
|
694
694
|
}, null, 42, zt)),
|
|
695
|
-
n.search ? (
|
|
696
|
-
n.errorMessage ? (
|
|
697
|
-
n.helperText ? (
|
|
695
|
+
n.search ? (l(), i("i", Ht)) : h("", !0),
|
|
696
|
+
n.errorMessage ? (l(), i("strong", Rt, d(n.errorMessage), 1)) : h("", !0),
|
|
697
|
+
n.helperText ? (l(), i("span", Nt, d(n.helperText), 1)) : h("", !0)
|
|
698
698
|
]));
|
|
699
699
|
}
|
|
700
700
|
}), jt = /* @__PURE__ */ v(Et, [["__scopeId", "data-v-414b9435"]]), Kt = { class: "video__wrapper" }, Ut = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Gt = ["src", "aria-label", "title", "width", "height"], Jt = /* @__PURE__ */ g({
|
|
@@ -722,8 +722,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
722
722
|
resetVideo: () => {
|
|
723
723
|
o.value && (o.value.currentTime = 0, o.value.play());
|
|
724
724
|
}
|
|
725
|
-
}), (u,
|
|
726
|
-
u.localVideo ? (
|
|
725
|
+
}), (u, _) => (l(), i("div", Kt, [
|
|
726
|
+
u.localVideo ? (l(), i("video", {
|
|
727
727
|
key: 0,
|
|
728
728
|
ref_key: "videoRef",
|
|
729
729
|
ref: o,
|
|
@@ -738,7 +738,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
738
738
|
type: "video/mp4",
|
|
739
739
|
playsinline: "",
|
|
740
740
|
src: u.src
|
|
741
|
-
}, null, 8, Ut)) : (
|
|
741
|
+
}, null, 8, Ut)) : (l(), i("iframe", {
|
|
742
742
|
key: 1,
|
|
743
743
|
src: u.src,
|
|
744
744
|
"aria-label": u.ariaLabel,
|
|
@@ -764,7 +764,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
764
764
|
email: {}
|
|
765
765
|
},
|
|
766
766
|
setup(e) {
|
|
767
|
-
return (a, r) => (
|
|
767
|
+
return (a, r) => (l(), i("div", Wt, [
|
|
768
768
|
t("div", Yt, [
|
|
769
769
|
t("div", Qt, [
|
|
770
770
|
c(a.$slots, "address-flag", {}, void 0, !0)
|
|
@@ -774,10 +774,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
774
774
|
t("p", null, d(a.company), 1),
|
|
775
775
|
t("p", null, d(a.addressLine1), 1),
|
|
776
776
|
t("p", null, d(a.addressLine2), 1),
|
|
777
|
-
a.addressLine3 ? (
|
|
777
|
+
a.addressLine3 ? (l(), i("p", xt, d(a.addressLine3), 1)) : h("", !0)
|
|
778
778
|
]),
|
|
779
779
|
t("div", ea, [
|
|
780
|
-
a.website ? (
|
|
780
|
+
a.website ? (l(), L(P, {
|
|
781
781
|
key: 0,
|
|
782
782
|
underline: "false",
|
|
783
783
|
"link-type": "regular"
|
|
@@ -789,8 +789,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
789
789
|
}, d(a.website), 9, ta)
|
|
790
790
|
]),
|
|
791
791
|
_: 1
|
|
792
|
-
})) :
|
|
793
|
-
(
|
|
792
|
+
})) : h("", !0),
|
|
793
|
+
(l(!0), i(T, null, V(a.phoneNumbers, (o) => (l(), L(P, {
|
|
794
794
|
key: o,
|
|
795
795
|
underline: "false",
|
|
796
796
|
"link-type": "regular"
|
|
@@ -831,12 +831,12 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
831
831
|
}
|
|
832
832
|
},
|
|
833
833
|
setup(e) {
|
|
834
|
-
return (a, r) => (
|
|
834
|
+
return (a, r) => (l(), i("div", ra, [
|
|
835
835
|
t("div", {
|
|
836
836
|
class: p(["bullet-list", e.variant])
|
|
837
837
|
}, [
|
|
838
838
|
t("ul", null, [
|
|
839
|
-
(
|
|
839
|
+
(l(!0), i(T, null, V(e.list, (o) => (l(), i("li", { key: o }, [
|
|
840
840
|
na,
|
|
841
841
|
J(" " + d(o), 1)
|
|
842
842
|
]))), 128))
|
|
@@ -889,21 +889,21 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
889
889
|
width: "596",
|
|
890
890
|
height: "335"
|
|
891
891
|
}
|
|
892
|
-
},
|
|
893
|
-
return (n, b) => (
|
|
892
|
+
}, s = e, u = A(() => o[s.size]), _ = A(() => s.variant === "article" || s.variant === "product" ? `card--${s.size}-${s.variant}` : `card--${s.variant}`);
|
|
893
|
+
return (n, b) => (l(), i("div", ua, [
|
|
894
894
|
t("div", {
|
|
895
895
|
class: p(["card", [
|
|
896
896
|
n.theme === "dark" ? "card--dark" : "card--light",
|
|
897
897
|
n.orientation === "vertical" ? "vertical" : "horizontal",
|
|
898
898
|
u.value.class,
|
|
899
|
-
|
|
899
|
+
_.value,
|
|
900
900
|
n.variant === "product" ? "card--product" : "card--article"
|
|
901
901
|
]]),
|
|
902
902
|
style: x([n.variant === "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
903
903
|
onMouseover: b[0] || (b[0] = (f) => ce(r) ? r.value = !0 : r = !0),
|
|
904
904
|
onMouseout: b[1] || (b[1] = (f) => ce(r) ? r.value = !1 : r = !1)
|
|
905
905
|
}, [
|
|
906
|
-
n.mediaType === "image" ? (
|
|
906
|
+
n.mediaType === "image" ? (l(), L(F, { key: 0 }, {
|
|
907
907
|
default: y(() => [
|
|
908
908
|
c(n.$slots, "card-image", M({
|
|
909
909
|
src: n.imgSrc,
|
|
@@ -915,7 +915,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
915
915
|
}, { srcset: n.srcSet }))
|
|
916
916
|
]),
|
|
917
917
|
_: 3
|
|
918
|
-
})) : (
|
|
918
|
+
})) : (l(), i("div", {
|
|
919
919
|
key: 1,
|
|
920
920
|
class: p(["video-card__wrapper", I(r) === !0 ? "vimeoPlaying" : ""])
|
|
921
921
|
}, [
|
|
@@ -933,24 +933,24 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
933
933
|
muted: !0
|
|
934
934
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
935
935
|
], 2)),
|
|
936
|
-
I(a)["card-label"] ? (
|
|
936
|
+
I(a)["card-label"] ? (l(), i("div", _a, [
|
|
937
937
|
c(n.$slots, "card-label")
|
|
938
|
-
])) :
|
|
939
|
-
n.variant === "product" ? (
|
|
938
|
+
])) : h("", !0),
|
|
939
|
+
n.variant === "product" ? (l(), i("div", {
|
|
940
940
|
key: 3,
|
|
941
941
|
class: p([
|
|
942
942
|
"card__headline",
|
|
943
943
|
n.theme === "dark" ? "regular-dark" : "regular-blue"
|
|
944
944
|
]),
|
|
945
945
|
style: { "font-weight": "700" }
|
|
946
|
-
}, d(n.headline), 3)) : (
|
|
946
|
+
}, d(n.headline), 3)) : (l(), i("div", {
|
|
947
947
|
key: 4,
|
|
948
948
|
class: p([
|
|
949
949
|
"card__headline",
|
|
950
950
|
n.theme === "dark" ? "regular-dark" : "regular-dark-blue"
|
|
951
951
|
])
|
|
952
952
|
}, d(n.headline), 3)),
|
|
953
|
-
n.variant === "product" ? (
|
|
953
|
+
n.variant === "product" ? (l(), i("p", ha, d(n.paragraph), 1)) : h("", !0)
|
|
954
954
|
], 38)
|
|
955
955
|
]));
|
|
956
956
|
}
|
|
@@ -963,9 +963,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
963
963
|
imageFit: { type: Boolean }
|
|
964
964
|
},
|
|
965
965
|
setup(e) {
|
|
966
|
-
return (a, r) => (
|
|
966
|
+
return (a, r) => (l(), i("div", fa, [
|
|
967
967
|
t("div", va, [
|
|
968
|
-
a.image.filename ? (
|
|
968
|
+
a.image.filename ? (l(), i("div", {
|
|
969
969
|
key: 0,
|
|
970
970
|
class: p(["column-card__image", { cover: a.imageFit, contain: !a.imageFit }])
|
|
971
971
|
}, [
|
|
@@ -973,7 +973,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
973
973
|
src: a.image.filename,
|
|
974
974
|
alt: a.image.alt
|
|
975
975
|
})), void 0, !0)
|
|
976
|
-
], 2)) :
|
|
976
|
+
], 2)) : h("", !0),
|
|
977
977
|
t("h3", ga, d(a.headline), 1),
|
|
978
978
|
t("div", ba, [
|
|
979
979
|
c(a.$slots, "column-card-body", {}, void 0, !0)
|
|
@@ -1006,7 +1006,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1006
1006
|
}
|
|
1007
1007
|
},
|
|
1008
1008
|
setup(e) {
|
|
1009
|
-
return (a, r) => (
|
|
1009
|
+
return (a, r) => (l(), i("div", $a, [
|
|
1010
1010
|
S(X, {
|
|
1011
1011
|
"label-dark": !1,
|
|
1012
1012
|
text: e.eventType ? e.eventType : ""
|
|
@@ -1062,9 +1062,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1062
1062
|
function r() {
|
|
1063
1063
|
a.value = !a.value;
|
|
1064
1064
|
}
|
|
1065
|
-
return (o,
|
|
1066
|
-
var u,
|
|
1067
|
-
return
|
|
1065
|
+
return (o, s) => {
|
|
1066
|
+
var u, _, n, b, f, k;
|
|
1067
|
+
return l(), i("div", {
|
|
1068
1068
|
class: "flashcard-container",
|
|
1069
1069
|
onClick: r
|
|
1070
1070
|
}, [
|
|
@@ -1077,20 +1077,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1077
1077
|
}])
|
|
1078
1078
|
}, [
|
|
1079
1079
|
t("div", Aa, [
|
|
1080
|
-
o.name || ((u = o.bodytext) == null ? void 0 : u.length) > 0 ? (
|
|
1081
|
-
o.name ? (
|
|
1082
|
-
o.bodytext ? (
|
|
1080
|
+
o.name || ((u = o.bodytext) == null ? void 0 : u.length) > 0 ? (l(), i("div", La, [
|
|
1081
|
+
o.name ? (l(), i("h3", Da, d(o.name), 1)) : h("", !0),
|
|
1082
|
+
o.bodytext ? (l(), i("div", Ta, [
|
|
1083
1083
|
c(o.$slots, "flashcard-front-body", O(z({ bodytext: o.bodytext })), void 0, !0)
|
|
1084
|
-
])) :
|
|
1084
|
+
])) : h("", !0),
|
|
1085
1085
|
Va
|
|
1086
|
-
])) : (
|
|
1086
|
+
])) : (l(), i("div", {
|
|
1087
1087
|
key: 1,
|
|
1088
1088
|
class: p(["flashcard-image", {
|
|
1089
1089
|
contain: o.imageFit,
|
|
1090
1090
|
cover: !o.imageFit
|
|
1091
1091
|
}])
|
|
1092
1092
|
}, [
|
|
1093
|
-
c(o.$slots, "flashcard-front-image", O(z({ src: (
|
|
1093
|
+
c(o.$slots, "flashcard-front-image", O(z({ src: (_ = o.image) == null ? void 0 : _.filename, alt: (n = o.image) == null ? void 0 : n.alt })), void 0, !0),
|
|
1094
1094
|
Pa
|
|
1095
1095
|
], 2))
|
|
1096
1096
|
]),
|
|
@@ -1100,13 +1100,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1100
1100
|
(b = o.imagebackside) != null && b.filename ? "flashcard-back--image" : "flashcard-back--no-image"
|
|
1101
1101
|
])
|
|
1102
1102
|
}, [
|
|
1103
|
-
o.namebackside || o.bodytextbackside.length > 0 ? (
|
|
1104
|
-
o.namebackside ? (
|
|
1105
|
-
o.bodytextbackside ? (
|
|
1103
|
+
o.namebackside || o.bodytextbackside.length > 0 ? (l(), i("div", Fa, [
|
|
1104
|
+
o.namebackside ? (l(), i("h3", Ma, d(o.namebackside), 1)) : h("", !0),
|
|
1105
|
+
o.bodytextbackside ? (l(), i("div", Oa, [
|
|
1106
1106
|
c(o.$slots, "flashcard-back-body", O(z({ bodytextbackside: o.bodytextbackside })), void 0, !0)
|
|
1107
|
-
])) :
|
|
1107
|
+
])) : h("", !0),
|
|
1108
1108
|
za
|
|
1109
|
-
])) : (
|
|
1109
|
+
])) : (l(), i("div", {
|
|
1110
1110
|
key: 1,
|
|
1111
1111
|
class: p(["flashcard-image", {
|
|
1112
1112
|
contain: o.imageFitBack,
|
|
@@ -1138,7 +1138,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1138
1138
|
}
|
|
1139
1139
|
},
|
|
1140
1140
|
setup(e) {
|
|
1141
|
-
return (a, r) => (
|
|
1141
|
+
return (a, r) => (l(), i("div", Na, [
|
|
1142
1142
|
S(X, {
|
|
1143
1143
|
"label-dark": !1,
|
|
1144
1144
|
text: e.label ? e.label : ""
|
|
@@ -1161,44 +1161,44 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1161
1161
|
accordions: {}
|
|
1162
1162
|
},
|
|
1163
1163
|
setup(e) {
|
|
1164
|
-
const a = C([]), r = (
|
|
1165
|
-
const u = a.value.indexOf(
|
|
1166
|
-
u > -1 ? a.value.splice(u, 1) : a.value.push(
|
|
1167
|
-
}, o = (
|
|
1168
|
-
return (
|
|
1164
|
+
const a = C([]), r = (s) => {
|
|
1165
|
+
const u = a.value.indexOf(s);
|
|
1166
|
+
u > -1 ? a.value.splice(u, 1) : a.value.push(s);
|
|
1167
|
+
}, o = (s) => a.value.includes(s);
|
|
1168
|
+
return (s, u) => (l(), i("section", Ga, [
|
|
1169
1169
|
t("div", Ja, [
|
|
1170
|
-
(
|
|
1171
|
-
key:
|
|
1170
|
+
(l(!0), i(T, null, V(s.accordions, (_) => (l(), i("div", {
|
|
1171
|
+
key: _._uid
|
|
1172
1172
|
}, [
|
|
1173
1173
|
t("div", Wa, [
|
|
1174
1174
|
t("div", {
|
|
1175
1175
|
class: "accordion__header",
|
|
1176
|
-
onClick: (n) => r(
|
|
1176
|
+
onClick: (n) => r(_._uid)
|
|
1177
1177
|
}, [
|
|
1178
|
-
t("h3", Qa, d(
|
|
1178
|
+
t("h3", Qa, d(_.headline), 1),
|
|
1179
1179
|
t("span", Za, [
|
|
1180
|
-
o(
|
|
1180
|
+
o(_._uid) ? (l(), i("img", xa)) : (l(), i("img", Xa))
|
|
1181
1181
|
])
|
|
1182
1182
|
], 8, Ya),
|
|
1183
1183
|
t("div", {
|
|
1184
|
-
class: p(["accordion__content", { "accordion__content--reverse":
|
|
1184
|
+
class: p(["accordion__content", { "accordion__content--reverse": _.imageFirst }]),
|
|
1185
1185
|
style: x({
|
|
1186
|
-
display: o(
|
|
1186
|
+
display: o(_._uid) ? "flex" : "none"
|
|
1187
1187
|
})
|
|
1188
1188
|
}, [
|
|
1189
1189
|
t("div", eo, [
|
|
1190
|
-
c(
|
|
1190
|
+
c(s.$slots, "accordion-body", M({ ref_for: !0 }, { body: _.bodytext }), void 0, !0)
|
|
1191
1191
|
]),
|
|
1192
1192
|
S(F, null, {
|
|
1193
1193
|
default: y(() => [
|
|
1194
|
-
|
|
1194
|
+
_.image ? c(s.$slots, "accordion-image", M({
|
|
1195
1195
|
key: 0,
|
|
1196
1196
|
ref_for: !0
|
|
1197
1197
|
}, {
|
|
1198
|
-
src:
|
|
1199
|
-
alt:
|
|
1198
|
+
src: _.image.filename,
|
|
1199
|
+
alt: _.image.alt,
|
|
1200
1200
|
class: "accordion__image"
|
|
1201
|
-
}), void 0, !0) :
|
|
1201
|
+
}), void 0, !0) : h("", !0)
|
|
1202
1202
|
]),
|
|
1203
1203
|
_: 2
|
|
1204
1204
|
}, 1024)
|
|
@@ -1228,17 +1228,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1228
1228
|
}
|
|
1229
1229
|
},
|
|
1230
1230
|
setup(e) {
|
|
1231
|
-
return (a, r) => (
|
|
1231
|
+
return (a, r) => (l(), i("div", {
|
|
1232
1232
|
class: p([
|
|
1233
1233
|
"card-display",
|
|
1234
1234
|
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1235
1235
|
])
|
|
1236
1236
|
}, [
|
|
1237
1237
|
t("div", oo, [
|
|
1238
|
-
e.headline || e.paragraph ? (
|
|
1239
|
-
e.headline ? (
|
|
1240
|
-
e.paragraph ? (
|
|
1241
|
-
])) :
|
|
1238
|
+
e.headline || e.paragraph ? (l(), i("div", so, [
|
|
1239
|
+
e.headline ? (l(), i("h2", lo, d(e.headline), 1)) : h("", !0),
|
|
1240
|
+
e.paragraph ? (l(), i("p", io, d(e.paragraph), 1)) : h("", !0)
|
|
1241
|
+
])) : h("", !0),
|
|
1242
1242
|
t("div", ro, [
|
|
1243
1243
|
c(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1244
1244
|
])
|
|
@@ -1260,20 +1260,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1260
1260
|
columns: {}
|
|
1261
1261
|
},
|
|
1262
1262
|
setup(e) {
|
|
1263
|
-
return (a, r) => (
|
|
1263
|
+
return (a, r) => (l(), i("div", {
|
|
1264
1264
|
class: p([
|
|
1265
1265
|
"column-grid",
|
|
1266
1266
|
a.bgColor === "dark" ? "column-grid--dark" : a.bgColor === "light" ? "column-grid--light" : "column-grid--white"
|
|
1267
1267
|
])
|
|
1268
1268
|
}, [
|
|
1269
1269
|
t("div", uo, [
|
|
1270
|
-
a.headline ? (
|
|
1271
|
-
a.bodytext ? (
|
|
1270
|
+
a.headline ? (l(), i("h2", _o, d(a.headline), 1)) : h("", !0),
|
|
1271
|
+
a.bodytext ? (l(), i("div", ho, [
|
|
1272
1272
|
c(a.$slots, "column-grid-body", {}, void 0, !0)
|
|
1273
|
-
])) :
|
|
1273
|
+
])) : h("", !0)
|
|
1274
1274
|
]),
|
|
1275
1275
|
t("div", po, [
|
|
1276
|
-
(
|
|
1276
|
+
(l(!0), i(T, null, V(a.columns, (o) => (l(), L(ge, {
|
|
1277
1277
|
key: o._uid,
|
|
1278
1278
|
headline: o.headline,
|
|
1279
1279
|
bodytext: o.bodytext,
|
|
@@ -1291,7 +1291,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1291
1291
|
src: o.image.filename,
|
|
1292
1292
|
alt: o.image.alt,
|
|
1293
1293
|
style: { "object-fit": o.imageFit ? "cover" : "contain" }
|
|
1294
|
-
}), void 0, !0) :
|
|
1294
|
+
}), void 0, !0) : h("", !0)
|
|
1295
1295
|
]),
|
|
1296
1296
|
_: 2
|
|
1297
1297
|
}, 1032, ["headline", "bodytext", "image", "image-fit"]))), 128))
|
|
@@ -1325,11 +1325,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1325
1325
|
}) }
|
|
1326
1326
|
},
|
|
1327
1327
|
setup(e) {
|
|
1328
|
-
return (a, r) => (
|
|
1328
|
+
return (a, r) => (l(), i("div", vo, [
|
|
1329
1329
|
t("div", go, [
|
|
1330
1330
|
t("h2", bo, d(a.headline), 1),
|
|
1331
1331
|
t("div", yo, [
|
|
1332
|
-
(
|
|
1332
|
+
(l(!0), i(T, null, V(a.facts, (o) => (l(), i("div", {
|
|
1333
1333
|
key: o.value + o.metric,
|
|
1334
1334
|
class: "fact"
|
|
1335
1335
|
}, [
|
|
@@ -1341,7 +1341,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1341
1341
|
])
|
|
1342
1342
|
]))), 128))
|
|
1343
1343
|
]),
|
|
1344
|
-
a.link ? (
|
|
1344
|
+
a.link ? (l(), i("div", wo, [
|
|
1345
1345
|
S(P, {
|
|
1346
1346
|
"link-type": "regular_light",
|
|
1347
1347
|
arrow: ""
|
|
@@ -1351,7 +1351,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1351
1351
|
]),
|
|
1352
1352
|
_: 3
|
|
1353
1353
|
})
|
|
1354
|
-
])) :
|
|
1354
|
+
])) : h("", !0)
|
|
1355
1355
|
])
|
|
1356
1356
|
]));
|
|
1357
1357
|
}
|
|
@@ -1369,18 +1369,18 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1369
1369
|
elements: { default: () => [] }
|
|
1370
1370
|
},
|
|
1371
1371
|
setup(e) {
|
|
1372
|
-
return (a, r) => (
|
|
1372
|
+
return (a, r) => (l(), i("div", Io, [
|
|
1373
1373
|
t("div", Co, [
|
|
1374
|
-
a.headline ? (
|
|
1374
|
+
a.headline ? (l(), i("div", qo, [
|
|
1375
1375
|
t("h2", null, d(a.headline), 1)
|
|
1376
|
-
])) :
|
|
1377
|
-
a.body ? (
|
|
1376
|
+
])) : h("", !0),
|
|
1377
|
+
a.body ? (l(), i("div", Ao, [
|
|
1378
1378
|
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1379
|
-
])) :
|
|
1379
|
+
])) : h("", !0),
|
|
1380
1380
|
t("div", {
|
|
1381
1381
|
class: p(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1382
1382
|
}, [
|
|
1383
|
-
(
|
|
1383
|
+
(l(!0), i(T, null, V(a.elements, (o) => (l(), i("div", {
|
|
1384
1384
|
key: o.headline,
|
|
1385
1385
|
class: "features__element"
|
|
1386
1386
|
}, [
|
|
@@ -1419,11 +1419,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1419
1419
|
setup(e) {
|
|
1420
1420
|
const a = e, r = A(() => a.body.trim().length > 0), o = A(() => {
|
|
1421
1421
|
var u;
|
|
1422
|
-
const
|
|
1423
|
-
return
|
|
1422
|
+
const s = (u = a.flashcards) == null ? void 0 : u.length;
|
|
1423
|
+
return s === 4 || s === 5 ? "sm" : s === 6 || s === 3 ? "md" : s === 2 ? "lg" : "sm";
|
|
1424
1424
|
});
|
|
1425
|
-
return (
|
|
1426
|
-
class: p(["flashcards",
|
|
1425
|
+
return (s, u) => (l(), i("div", {
|
|
1426
|
+
class: p(["flashcards", s.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
|
|
1427
1427
|
}, [
|
|
1428
1428
|
t("div", Po, [
|
|
1429
1429
|
t("div", {
|
|
@@ -1432,10 +1432,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1432
1432
|
"flashcard-wrapper__top-section"
|
|
1433
1433
|
])
|
|
1434
1434
|
}, [
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
c(
|
|
1438
|
-
])) :
|
|
1435
|
+
s.headline ? (l(), i("h2", Fo, d(s.headline), 1)) : h("", !0),
|
|
1436
|
+
s.body ? (l(), i("div", Mo, [
|
|
1437
|
+
c(s.$slots, "flashcard-wrapper-body", {}, void 0, !0)
|
|
1438
|
+
])) : h("", !0)
|
|
1439
1439
|
], 2),
|
|
1440
1440
|
t("div", {
|
|
1441
1441
|
class: p(["flashcard-wrapper__teaser-list", {
|
|
@@ -1444,29 +1444,29 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1444
1444
|
lg: o.value === "lg"
|
|
1445
1445
|
}])
|
|
1446
1446
|
}, [
|
|
1447
|
-
(
|
|
1448
|
-
key:
|
|
1449
|
-
name:
|
|
1450
|
-
bodytext:
|
|
1451
|
-
image:
|
|
1452
|
-
namebackside:
|
|
1453
|
-
bodytextbackside:
|
|
1454
|
-
imagebackside:
|
|
1447
|
+
(l(!0), i(T, null, V(s.flashcards, (_) => (l(), L(I(be), {
|
|
1448
|
+
key: _._uid,
|
|
1449
|
+
name: _.name,
|
|
1450
|
+
bodytext: _.bodytext,
|
|
1451
|
+
image: _.image,
|
|
1452
|
+
namebackside: _.namebackside ? _.namebackside : "",
|
|
1453
|
+
bodytextbackside: _.bodytextbackside,
|
|
1454
|
+
imagebackside: _.imagebackside ? _.imagebackside : { filename: "", alt: "" },
|
|
1455
1455
|
size: o.value,
|
|
1456
|
-
"image-fit":
|
|
1457
|
-
"image-fit-back":
|
|
1456
|
+
"image-fit": _.imageFit,
|
|
1457
|
+
"image-fit-back": _.imageFitBack
|
|
1458
1458
|
}, {
|
|
1459
1459
|
"flashcard-front-body": y(({ bodytext: n }) => [
|
|
1460
|
-
c(
|
|
1460
|
+
c(s.$slots, "flashcard-front-body", M({ ref_for: !0 }, { bodytext: n }), void 0, !0)
|
|
1461
1461
|
]),
|
|
1462
1462
|
"flashcard-front-image": y(({ src: n, alt: b }) => [
|
|
1463
|
-
c(
|
|
1463
|
+
c(s.$slots, "flashcard-front-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1464
1464
|
]),
|
|
1465
1465
|
"flashcard-back-body": y(({ bodytextbackside: n }) => [
|
|
1466
|
-
c(
|
|
1466
|
+
c(s.$slots, "flashcard-back-body", M({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
|
|
1467
1467
|
]),
|
|
1468
1468
|
"flashcard-back-image": y(({ src: n, alt: b }) => [
|
|
1469
|
-
c(
|
|
1469
|
+
c(s.$slots, "flashcard-back-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1470
1470
|
]),
|
|
1471
1471
|
_: 2
|
|
1472
1472
|
}, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
|
|
@@ -1483,7 +1483,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1483
1483
|
}
|
|
1484
1484
|
},
|
|
1485
1485
|
setup(e) {
|
|
1486
|
-
return (a, r) => (
|
|
1486
|
+
return (a, r) => (l(), i("div", Ho, [
|
|
1487
1487
|
t("div", Ro, [
|
|
1488
1488
|
t("div", No, [
|
|
1489
1489
|
t("h2", Eo, d(e.headline), 1),
|
|
@@ -1514,7 +1514,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1514
1514
|
}
|
|
1515
1515
|
},
|
|
1516
1516
|
setup(e) {
|
|
1517
|
-
return (a, r) => (
|
|
1517
|
+
return (a, r) => (l(), i("div", Jo, [
|
|
1518
1518
|
t("div", {
|
|
1519
1519
|
class: p({
|
|
1520
1520
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1536,7 +1536,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1536
1536
|
}
|
|
1537
1537
|
},
|
|
1538
1538
|
setup(e) {
|
|
1539
|
-
return (a, r) => (
|
|
1539
|
+
return (a, r) => (l(), i("div", Xo, [
|
|
1540
1540
|
t("div", xo, [
|
|
1541
1541
|
t("div", es, [
|
|
1542
1542
|
t("div", ts, [
|
|
@@ -1592,7 +1592,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1592
1592
|
}
|
|
1593
1593
|
},
|
|
1594
1594
|
setup(e) {
|
|
1595
|
-
return (a, r) => (
|
|
1595
|
+
return (a, r) => (l(), i("div", cs, [
|
|
1596
1596
|
t("div", us, [
|
|
1597
1597
|
t("div", _s, [
|
|
1598
1598
|
S(F, null, {
|
|
@@ -1635,34 +1635,34 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1635
1635
|
light: "gallery__wrapper--light",
|
|
1636
1636
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1637
1637
|
}, r = e, o = A(() => a[r.bgColor]);
|
|
1638
|
-
return (
|
|
1638
|
+
return (s, u) => (l(), i("div", {
|
|
1639
1639
|
class: p(["gallery__wrapper", o.value])
|
|
1640
1640
|
}, [
|
|
1641
1641
|
t("div", {
|
|
1642
1642
|
class: p([
|
|
1643
1643
|
"gallery__content",
|
|
1644
|
-
|
|
1644
|
+
s.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1645
1645
|
])
|
|
1646
1646
|
}, [
|
|
1647
1647
|
t("div", fs, [
|
|
1648
|
-
|
|
1648
|
+
s.mediaLarge && s.mediaType === "image" ? (l(), i("div", vs, [
|
|
1649
1649
|
S(F, null, {
|
|
1650
1650
|
default: y(() => [
|
|
1651
|
-
c(
|
|
1651
|
+
c(s.$slots, "image-large", O(z({
|
|
1652
1652
|
width: 617,
|
|
1653
1653
|
height: 530,
|
|
1654
|
-
src:
|
|
1655
|
-
alt:
|
|
1654
|
+
src: s.mediaLarge.src,
|
|
1655
|
+
alt: s.mediaLarge.alt
|
|
1656
1656
|
})))
|
|
1657
1657
|
]),
|
|
1658
1658
|
_: 3
|
|
1659
1659
|
})
|
|
1660
|
-
])) :
|
|
1661
|
-
|
|
1660
|
+
])) : h("", !0),
|
|
1661
|
+
s.mediaLarge && s.mediaType === "video" ? (l(), i("div", gs, [
|
|
1662
1662
|
S(ee, {
|
|
1663
|
-
src:
|
|
1663
|
+
src: s.mediaLarge.src,
|
|
1664
1664
|
"local-video": "",
|
|
1665
|
-
"aria-label":
|
|
1665
|
+
"aria-label": s.mediaLarge.alt,
|
|
1666
1666
|
controls: !1,
|
|
1667
1667
|
height: "530",
|
|
1668
1668
|
width: "617",
|
|
@@ -1671,37 +1671,37 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1671
1671
|
muted: "",
|
|
1672
1672
|
play: ""
|
|
1673
1673
|
}, null, 8, ["src", "aria-label"])
|
|
1674
|
-
])) :
|
|
1674
|
+
])) : h("", !0)
|
|
1675
1675
|
]),
|
|
1676
1676
|
t("div", {
|
|
1677
|
-
style: x([
|
|
1677
|
+
style: x([s.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
1678
1678
|
class: p([
|
|
1679
1679
|
"gallery__small",
|
|
1680
|
-
|
|
1680
|
+
s.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1681
1681
|
])
|
|
1682
1682
|
}, [
|
|
1683
|
-
(
|
|
1684
|
-
key:
|
|
1683
|
+
(l(!0), i(T, null, V(s.mediaSmall, (_) => (l(), i("div", {
|
|
1684
|
+
key: _.src + _.alt,
|
|
1685
1685
|
class: "image image--small"
|
|
1686
1686
|
}, [
|
|
1687
1687
|
S(F, null, {
|
|
1688
1688
|
default: y(() => [
|
|
1689
|
-
c(
|
|
1689
|
+
c(s.$slots, "image-small", M({ ref_for: !0 }, {
|
|
1690
1690
|
width: 328,
|
|
1691
1691
|
height: 246,
|
|
1692
|
-
src:
|
|
1693
|
-
alt:
|
|
1692
|
+
src: _.src,
|
|
1693
|
+
alt: _.alt
|
|
1694
1694
|
}))
|
|
1695
1695
|
]),
|
|
1696
1696
|
_: 2
|
|
1697
1697
|
}, 1024)
|
|
1698
1698
|
]))), 128)),
|
|
1699
|
-
|
|
1699
|
+
s.mediaSmall.length < 2 ? (l(), i("div", {
|
|
1700
1700
|
key: 0,
|
|
1701
|
-
class: p(["body",
|
|
1701
|
+
class: p(["body", s.bgColor === "dark" ? "body--dark" : ""])
|
|
1702
1702
|
}, [
|
|
1703
|
-
t("p", null, d(
|
|
1704
|
-
], 2)) :
|
|
1703
|
+
t("p", null, d(s.body), 1)
|
|
1704
|
+
], 2)) : h("", !0)
|
|
1705
1705
|
], 6)
|
|
1706
1706
|
], 2)
|
|
1707
1707
|
], 2));
|
|
@@ -1727,14 +1727,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1727
1727
|
}
|
|
1728
1728
|
},
|
|
1729
1729
|
setup(e) {
|
|
1730
|
-
return (a, r) => (
|
|
1730
|
+
return (a, r) => (l(), i("div", ks, [
|
|
1731
1731
|
t("div", $s, [
|
|
1732
|
-
e.headline || e.body ? (
|
|
1733
|
-
e.headline ? (
|
|
1734
|
-
e.body ? (
|
|
1735
|
-
])) :
|
|
1732
|
+
e.headline || e.body ? (l(), i("div", ws, [
|
|
1733
|
+
e.headline ? (l(), i("h2", Bs, d(e.headline), 1)) : h("", !0),
|
|
1734
|
+
e.body ? (l(), i("p", Ss, d(e.body), 1)) : h("", !0)
|
|
1735
|
+
])) : h("", !0),
|
|
1736
1736
|
t("div", Is, [
|
|
1737
|
-
(
|
|
1737
|
+
(l(!0), i(T, null, V(e.logos, (o) => (l(), i("div", {
|
|
1738
1738
|
key: o.src + o.alt,
|
|
1739
1739
|
class: "logo-wall__logo"
|
|
1740
1740
|
}, [
|
|
@@ -1784,26 +1784,26 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1784
1784
|
blue: "micro-stories__wrapper--blue",
|
|
1785
1785
|
dark: "micro-stories__wrapper--dark"
|
|
1786
1786
|
}, r = A(() => a[o.bgColor]), o = e;
|
|
1787
|
-
return (
|
|
1787
|
+
return (s, u) => (l(), i("div", {
|
|
1788
1788
|
class: p(["micro-stories__wrapper", r.value])
|
|
1789
1789
|
}, [
|
|
1790
1790
|
t("div", Ls, [
|
|
1791
|
-
|
|
1792
|
-
t("h2", null, d(
|
|
1793
|
-
])) :
|
|
1794
|
-
|
|
1795
|
-
t("p", null, d(
|
|
1796
|
-
])) :
|
|
1791
|
+
s.headline ? (l(), i("div", Ds, [
|
|
1792
|
+
t("h2", null, d(s.headline), 1)
|
|
1793
|
+
])) : h("", !0),
|
|
1794
|
+
s.body ? (l(), i("div", Ts, [
|
|
1795
|
+
t("p", null, d(s.body), 1)
|
|
1796
|
+
])) : h("", !0)
|
|
1797
1797
|
]),
|
|
1798
1798
|
t("div", Vs, [
|
|
1799
|
-
c(
|
|
1799
|
+
c(s.$slots, "micro-stories-slides")
|
|
1800
1800
|
]),
|
|
1801
|
-
c(
|
|
1801
|
+
c(s.$slots, "micro-stories-controls")
|
|
1802
1802
|
], 2));
|
|
1803
1803
|
}
|
|
1804
1804
|
}), Fs = {}, Ms = { class: "policy__wrapper" }, Os = { class: "policy__content" };
|
|
1805
1805
|
function zs(e, a) {
|
|
1806
|
-
return
|
|
1806
|
+
return l(), i("div", Ms, [
|
|
1807
1807
|
t("div", Os, [
|
|
1808
1808
|
c(e.$slots, "default", {}, void 0, !0)
|
|
1809
1809
|
])
|
|
@@ -1850,11 +1850,11 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1850
1850
|
}
|
|
1851
1851
|
},
|
|
1852
1852
|
setup(e) {
|
|
1853
|
-
return (a, r) => (
|
|
1853
|
+
return (a, r) => (l(), i("div", Rs, [
|
|
1854
1854
|
t("div", Ns, [
|
|
1855
1855
|
t("div", Es, d(e.headline), 1),
|
|
1856
1856
|
t("div", js, [
|
|
1857
|
-
e.videoSrc !== "" ? (
|
|
1857
|
+
e.videoSrc !== "" ? (l(), L(ee, {
|
|
1858
1858
|
key: 0,
|
|
1859
1859
|
play: "",
|
|
1860
1860
|
"local-video": !0,
|
|
@@ -1865,29 +1865,29 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1865
1865
|
autoplay: "",
|
|
1866
1866
|
loop: "",
|
|
1867
1867
|
muted: ""
|
|
1868
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (
|
|
1868
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (l(), L(I(F), { key: 1 }, {
|
|
1869
1869
|
default: y(() => [
|
|
1870
1870
|
c(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1871
1871
|
]),
|
|
1872
1872
|
_: 3
|
|
1873
1873
|
})),
|
|
1874
1874
|
t("div", Ks, [
|
|
1875
|
-
e.logoSrc ? (
|
|
1875
|
+
e.logoSrc ? (l(), i("div", Us, [
|
|
1876
1876
|
S(I(F), null, {
|
|
1877
1877
|
default: y(() => [
|
|
1878
1878
|
c(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1879
1879
|
]),
|
|
1880
1880
|
_: 3
|
|
1881
1881
|
})
|
|
1882
|
-
])) :
|
|
1883
|
-
e.isCertified ? (
|
|
1882
|
+
])) : h("", !0),
|
|
1883
|
+
e.isCertified ? (l(), i("div", Gs, [
|
|
1884
1884
|
S(I(F), null, {
|
|
1885
1885
|
default: y(() => [
|
|
1886
1886
|
c(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1887
1887
|
]),
|
|
1888
1888
|
_: 3
|
|
1889
1889
|
})
|
|
1890
|
-
])) :
|
|
1890
|
+
])) : h("", !0)
|
|
1891
1891
|
])
|
|
1892
1892
|
])
|
|
1893
1893
|
])
|
|
@@ -1914,86 +1914,86 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1914
1914
|
light: "promo__wrapper--light",
|
|
1915
1915
|
default: "promo__wrapper--default"
|
|
1916
1916
|
}, r = e, o = A(() => a[r.variant]);
|
|
1917
|
-
return (
|
|
1917
|
+
return (s, u) => (l(), i("div", {
|
|
1918
1918
|
class: p([
|
|
1919
1919
|
"promo__wrapper",
|
|
1920
1920
|
o.value,
|
|
1921
|
-
|
|
1922
|
-
|
|
1921
|
+
s.teaser ? "promo__wrapper--teaser" : "",
|
|
1922
|
+
s.multiply ? "promo__wrapper--multiply" : ""
|
|
1923
1923
|
])
|
|
1924
1924
|
}, [
|
|
1925
1925
|
t("div", Ys, [
|
|
1926
|
-
|
|
1926
|
+
s.mediaType === "image" ? (l(), i("div", {
|
|
1927
1927
|
key: 0,
|
|
1928
1928
|
class: p([
|
|
1929
1929
|
"promo__image",
|
|
1930
|
-
|
|
1930
|
+
s.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1931
1931
|
])
|
|
1932
1932
|
}, [
|
|
1933
1933
|
S(F, null, {
|
|
1934
1934
|
default: y(() => [
|
|
1935
|
-
c(
|
|
1935
|
+
c(s.$slots, "promo-image", O(z({ src: s.src, width: 1920, alt: s.alt, height: 1080 })))
|
|
1936
1936
|
]),
|
|
1937
1937
|
_: 3
|
|
1938
1938
|
})
|
|
1939
|
-
], 2)) :
|
|
1940
|
-
|
|
1939
|
+
], 2)) : h("", !0),
|
|
1940
|
+
s.mediaType === "video" ? (l(), i("div", {
|
|
1941
1941
|
key: 1,
|
|
1942
1942
|
class: p([
|
|
1943
1943
|
"promo__video",
|
|
1944
|
-
|
|
1944
|
+
s.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1945
1945
|
])
|
|
1946
1946
|
}, [
|
|
1947
1947
|
S(ee, {
|
|
1948
|
-
src:
|
|
1948
|
+
src: s.src,
|
|
1949
1949
|
"local-video": "",
|
|
1950
|
-
"aria-label":
|
|
1950
|
+
"aria-label": s.alt,
|
|
1951
1951
|
controls: !1,
|
|
1952
1952
|
autoplay: "",
|
|
1953
1953
|
loop: "",
|
|
1954
1954
|
muted: "",
|
|
1955
1955
|
play: "",
|
|
1956
|
-
poster:
|
|
1956
|
+
poster: s.fallbackImage
|
|
1957
1957
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1958
|
-
], 2)) :
|
|
1958
|
+
], 2)) : h("", !0),
|
|
1959
1959
|
t("div", {
|
|
1960
1960
|
class: p([
|
|
1961
1961
|
"promo__text",
|
|
1962
|
-
|
|
1962
|
+
s.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1963
1963
|
])
|
|
1964
1964
|
}, [
|
|
1965
|
-
|
|
1965
|
+
s.label ? (l(), L(X, {
|
|
1966
1966
|
key: 0,
|
|
1967
|
-
text:
|
|
1968
|
-
"label-dark":
|
|
1969
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
1967
|
+
text: s.label,
|
|
1968
|
+
"label-dark": s.variant === "dark"
|
|
1969
|
+
}, null, 8, ["text", "label-dark"])) : h("", !0),
|
|
1970
1970
|
t("div", {
|
|
1971
1971
|
class: p([
|
|
1972
1972
|
"promo__title",
|
|
1973
|
-
|
|
1973
|
+
s.variant === "dark" ? "promo__title--dark" : ""
|
|
1974
1974
|
])
|
|
1975
1975
|
}, [
|
|
1976
|
-
c(
|
|
1976
|
+
c(s.$slots, "promo-headline")
|
|
1977
1977
|
], 2),
|
|
1978
|
-
|
|
1978
|
+
s.linkType === "link" ? (l(), L(P, {
|
|
1979
1979
|
key: 1,
|
|
1980
|
-
"link-type":
|
|
1980
|
+
"link-type": s.variant === "dark" ? "regular_dark" : (s.variant === "light", "regular_light"),
|
|
1981
1981
|
arrow: ""
|
|
1982
1982
|
}, {
|
|
1983
1983
|
default: y(() => [
|
|
1984
|
-
c(
|
|
1984
|
+
c(s.$slots, "promo-link")
|
|
1985
1985
|
]),
|
|
1986
1986
|
_: 3
|
|
1987
|
-
}, 8, ["link-type"])) :
|
|
1988
|
-
|
|
1987
|
+
}, 8, ["link-type"])) : h("", !0),
|
|
1988
|
+
s.linkType === "button" ? (l(), L(P, {
|
|
1989
1989
|
key: 2,
|
|
1990
|
-
"link-type":
|
|
1990
|
+
"link-type": s.variant === "dark" ? "secondary_dark" : (s.variant === "light", "secondary")
|
|
1991
1991
|
}, {
|
|
1992
1992
|
default: y(() => [
|
|
1993
|
-
c(
|
|
1993
|
+
c(s.$slots, "promo-link")
|
|
1994
1994
|
]),
|
|
1995
1995
|
_: 3
|
|
1996
|
-
}, 8, ["link-type"])) :
|
|
1996
|
+
}, 8, ["link-type"])) : h("", !0)
|
|
1997
1997
|
], 2)
|
|
1998
1998
|
])
|
|
1999
1999
|
], 2));
|
|
@@ -2023,13 +2023,13 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2023
2023
|
}
|
|
2024
2024
|
},
|
|
2025
2025
|
setup(e) {
|
|
2026
|
-
return (a, r) => (
|
|
2026
|
+
return (a, r) => (l(), i("div", xs, [
|
|
2027
2027
|
t("div", el, [
|
|
2028
2028
|
tl,
|
|
2029
2029
|
t("div", al, [
|
|
2030
2030
|
t("p", ol, d(e.quote), 1),
|
|
2031
2031
|
t("div", sl, [
|
|
2032
|
-
e.authorImage ? (
|
|
2032
|
+
e.authorImage ? (l(), i("div", ll, [
|
|
2033
2033
|
S(F, null, {
|
|
2034
2034
|
default: y(() => [
|
|
2035
2035
|
c(a.$slots, "author-image", O(z({
|
|
@@ -2040,7 +2040,7 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2040
2040
|
]),
|
|
2041
2041
|
_: 3
|
|
2042
2042
|
})
|
|
2043
|
-
])) :
|
|
2043
|
+
])) : h("", !0),
|
|
2044
2044
|
t("div", il, [
|
|
2045
2045
|
t("p", rl, d(e.author), 1),
|
|
2046
2046
|
t("p", nl, d(e.authorTitle), 1)
|
|
@@ -2069,25 +2069,25 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2069
2069
|
label: { default: "" }
|
|
2070
2070
|
},
|
|
2071
2071
|
setup(e) {
|
|
2072
|
-
return (a, r) => (
|
|
2072
|
+
return (a, r) => (l(), i("div", {
|
|
2073
2073
|
class: p([
|
|
2074
2074
|
"rich-text",
|
|
2075
2075
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
2076
2076
|
])
|
|
2077
2077
|
}, [
|
|
2078
2078
|
t("div", ul, [
|
|
2079
|
-
a.label ? (
|
|
2079
|
+
a.label ? (l(), L(X, {
|
|
2080
2080
|
key: 0,
|
|
2081
2081
|
text: a.label,
|
|
2082
2082
|
"label-dark": !1
|
|
2083
|
-
}, null, 8, ["text"])) :
|
|
2084
|
-
a.headline ? (
|
|
2083
|
+
}, null, 8, ["text"])) : h("", !0),
|
|
2084
|
+
a.headline ? (l(), i("h2", {
|
|
2085
2085
|
key: 1,
|
|
2086
2086
|
class: p([
|
|
2087
2087
|
"rich-text__headline",
|
|
2088
2088
|
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
2089
2089
|
])
|
|
2090
|
-
}, d(a.headline), 3)) :
|
|
2090
|
+
}, d(a.headline), 3)) : h("", !0),
|
|
2091
2091
|
t("div", {
|
|
2092
2092
|
class: p([
|
|
2093
2093
|
"rich-text__content",
|
|
@@ -2101,14 +2101,14 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2101
2101
|
])
|
|
2102
2102
|
}, [
|
|
2103
2103
|
c(a.$slots, "rich-text-content"),
|
|
2104
|
-
a.links ? (
|
|
2104
|
+
a.links ? (l(), i("div", _l, [
|
|
2105
2105
|
c(a.$slots, "rich-text-links")
|
|
2106
|
-
])) :
|
|
2106
|
+
])) : h("", !0)
|
|
2107
2107
|
], 2),
|
|
2108
|
-
a.bulletList ? (
|
|
2108
|
+
a.bulletList ? (l(), i("div", hl, [
|
|
2109
2109
|
c(a.$slots, "rich-text-bullet-list")
|
|
2110
|
-
])) :
|
|
2111
|
-
a.image ? (
|
|
2110
|
+
])) : h("", !0),
|
|
2111
|
+
a.image ? (l(), i("div", {
|
|
2112
2112
|
key: 1,
|
|
2113
2113
|
class: p([
|
|
2114
2114
|
"rich-text__image",
|
|
@@ -2121,14 +2121,14 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2121
2121
|
]),
|
|
2122
2122
|
_: 3
|
|
2123
2123
|
})
|
|
2124
|
-
], 2)) :
|
|
2124
|
+
], 2)) : h("", !0)
|
|
2125
2125
|
], 2)
|
|
2126
2126
|
])
|
|
2127
2127
|
], 2));
|
|
2128
2128
|
}
|
|
2129
2129
|
}), ml = /* @__PURE__ */ v(pl, [["__scopeId", "data-v-db485b9d"]]), fl = {}, vl = { class: "rich-text" }, gl = { class: "rich-text__wrapper" }, bl = { class: "rich-text__content rich-text__content--left-aligned" }, yl = { class: "rich-text__body" };
|
|
2130
2130
|
function kl(e, a) {
|
|
2131
|
-
return
|
|
2131
|
+
return l(), i("div", vl, [
|
|
2132
2132
|
t("div", gl, [
|
|
2133
2133
|
t("div", bl, [
|
|
2134
2134
|
t("div", yl, [
|
|
@@ -2158,8 +2158,8 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2158
2158
|
return me(() => {
|
|
2159
2159
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
2160
2160
|
(o) => {
|
|
2161
|
-
o.forEach((
|
|
2162
|
-
|
|
2161
|
+
o.forEach((s) => {
|
|
2162
|
+
s.isIntersecting && (s.target.classList.add("visible"), s.target.classList.remove("faded"), r.unobserve(s.target));
|
|
2163
2163
|
});
|
|
2164
2164
|
},
|
|
2165
2165
|
{
|
|
@@ -2169,10 +2169,10 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2169
2169
|
a.forEach((o) => {
|
|
2170
2170
|
r.observe(o);
|
|
2171
2171
|
});
|
|
2172
|
-
}), (a, r) => (
|
|
2172
|
+
}), (a, r) => (l(), i("div", Bl, [
|
|
2173
2173
|
t("div", Sl, [
|
|
2174
2174
|
t("div", Il, [
|
|
2175
|
-
(
|
|
2175
|
+
(l(!0), i(T, null, V(e.timelineItems, (o) => (l(), i("div", {
|
|
2176
2176
|
key: o.year,
|
|
2177
2177
|
class: "timeline__item faded"
|
|
2178
2178
|
}, [
|
|
@@ -2184,7 +2184,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2184
2184
|
o.media.src ? c(a.$slots, "timeline-image", M({
|
|
2185
2185
|
key: 0,
|
|
2186
2186
|
ref_for: !0
|
|
2187
|
-
}, { src: o.media.src, alt: o.media.alt }), void 0, !0) :
|
|
2187
|
+
}, { src: o.media.src, alt: o.media.alt }), void 0, !0) : h("", !0)
|
|
2188
2188
|
]),
|
|
2189
2189
|
_: 2
|
|
2190
2190
|
}, 1024),
|
|
@@ -2218,18 +2218,15 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2218
2218
|
}
|
|
2219
2219
|
},
|
|
2220
2220
|
setup(e) {
|
|
2221
|
-
return (a, r) => (
|
|
2221
|
+
return (a, r) => (l(), i("div", Vl, [
|
|
2222
2222
|
t("div", Pl, [
|
|
2223
|
-
e.headline ? (
|
|
2223
|
+
e.headline ? (l(), i("h2", Fl, d(e.headline), 1)) : h("", !0),
|
|
2224
2224
|
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2225
|
-
e.description ? (
|
|
2225
|
+
e.description ? (l(), i("p", Ml, d(e.description), 1)) : h("", !0)
|
|
2226
2226
|
])
|
|
2227
2227
|
]));
|
|
2228
2228
|
}
|
|
2229
|
-
}), zl = /* @__PURE__ */ v(Ol, [["__scopeId", "data-v-90a2b109"]]), Hl = { class: "academy-overview" }, Rl = { class: "academy-overview__content-wrapper" }, Nl = { class: "academy-overview__content" }, El = { class: "academy-overview__title" }, jl = { class: "academy-overview__description" }, Kl = {
|
|
2230
|
-
key: 0,
|
|
2231
|
-
class: "academy-overview__button-wrapper"
|
|
2232
|
-
}, Ul = {
|
|
2229
|
+
}), zl = /* @__PURE__ */ v(Ol, [["__scopeId", "data-v-90a2b109"]]), Hl = { class: "academy-overview" }, Rl = { class: "academy-overview__content-wrapper" }, Nl = { class: "academy-overview__content" }, El = { class: "academy-overview__title" }, jl = { class: "academy-overview__description" }, Kl = { class: "academy-overview__button-wrapper" }, Ul = {
|
|
2233
2230
|
key: 0,
|
|
2234
2231
|
class: "academy-overview__stats"
|
|
2235
2232
|
}, Gl = { class: "academy-overview__stats-row" }, Jl = { class: "academy-overview__stat" }, Wl = { class: "academy-overview__value" }, Yl = { class: "academy-overview__label" }, Ql = { class: "academy-overview__stat" }, Zl = { class: "academy-overview__value" }, Xl = { class: "academy-overview__label" }, xl = /* @__PURE__ */ g({
|
|
@@ -2246,17 +2243,17 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2246
2243
|
}) }
|
|
2247
2244
|
},
|
|
2248
2245
|
setup(e) {
|
|
2249
|
-
return (a, r) => (
|
|
2246
|
+
return (a, r) => (l(), i("div", Hl, [
|
|
2250
2247
|
t("div", Rl, [
|
|
2251
2248
|
t("div", Nl, [
|
|
2252
2249
|
t("div", null, [
|
|
2253
2250
|
t("h1", El, d(a.hero.headline), 1),
|
|
2254
2251
|
t("p", jl, d(a.hero.description), 1),
|
|
2255
|
-
|
|
2252
|
+
t("div", Kl, [
|
|
2256
2253
|
c(a.$slots, "button", {}, void 0, !0)
|
|
2257
|
-
])
|
|
2254
|
+
])
|
|
2258
2255
|
]),
|
|
2259
|
-
a.hero.showStats ? (
|
|
2256
|
+
a.hero.showStats ? (l(), i("div", Ul, [
|
|
2260
2257
|
t("div", Gl, [
|
|
2261
2258
|
t("div", Jl, [
|
|
2262
2259
|
t("div", Wl, d(a.hero.lessonValue), 1),
|
|
@@ -2267,12 +2264,12 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2267
2264
|
t("div", Xl, d(a.hero.pointsLabel), 1)
|
|
2268
2265
|
])
|
|
2269
2266
|
])
|
|
2270
|
-
])) :
|
|
2267
|
+
])) : h("", !0)
|
|
2271
2268
|
])
|
|
2272
2269
|
])
|
|
2273
2270
|
]));
|
|
2274
2271
|
}
|
|
2275
|
-
}), ei = /* @__PURE__ */ v(xl, [["__scopeId", "data-v-
|
|
2272
|
+
}), ei = /* @__PURE__ */ v(xl, [["__scopeId", "data-v-1594f3e8"]]), ti = { class: "not-found__wrapper" }, ai = { class: "not-found__content" }, oi = { class: "not-found__headline" }, si = { class: "not-found__body" }, li = /* @__PURE__ */ g({
|
|
2276
2273
|
__name: "404",
|
|
2277
2274
|
props: {
|
|
2278
2275
|
headline: {
|
|
@@ -2281,7 +2278,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2281
2278
|
}
|
|
2282
2279
|
},
|
|
2283
2280
|
setup(e) {
|
|
2284
|
-
return (a, r) => (
|
|
2281
|
+
return (a, r) => (l(), i("div", ti, [
|
|
2285
2282
|
t("div", ai, [
|
|
2286
2283
|
t("h1", oi, d(e.headline), 1),
|
|
2287
2284
|
t("div", si, [
|
|
@@ -2304,18 +2301,18 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2304
2301
|
},
|
|
2305
2302
|
emits: ["clearFilters"],
|
|
2306
2303
|
setup(e) {
|
|
2307
|
-
return (a, r) => (
|
|
2304
|
+
return (a, r) => (l(), i("div", ri, [
|
|
2308
2305
|
t("div", ni, [
|
|
2309
2306
|
t("div", di, [
|
|
2310
2307
|
c(a.$slots, "filter-dropdowns")
|
|
2311
2308
|
]),
|
|
2312
2309
|
t("div", ci, [
|
|
2313
2310
|
c(a.$slots, "filter-chips"),
|
|
2314
|
-
e.hasChips ? (
|
|
2311
|
+
e.hasChips ? (l(), i("button", {
|
|
2315
2312
|
key: 0,
|
|
2316
2313
|
class: "filter__clear",
|
|
2317
2314
|
onClick: r[0] || (r[0] = (o) => a.$emit("clearFilters"))
|
|
2318
|
-
}, d(e.removeAll), 1)) :
|
|
2315
|
+
}, d(e.removeAll), 1)) : h("", !0)
|
|
2319
2316
|
])
|
|
2320
2317
|
])
|
|
2321
2318
|
]));
|
|
@@ -2361,11 +2358,11 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2361
2358
|
},
|
|
2362
2359
|
emits: ["changeRegionClicked"],
|
|
2363
2360
|
setup(e) {
|
|
2364
|
-
return (a, r) => (
|
|
2361
|
+
return (a, r) => (l(), i("div", hi, [
|
|
2365
2362
|
t("footer", pi, [
|
|
2366
|
-
a.language === "zh" ? (
|
|
2363
|
+
a.language === "zh" ? (l(), i("img", mi)) : h("", !0),
|
|
2367
2364
|
t("div", fi, [
|
|
2368
|
-
(
|
|
2365
|
+
(l(!0), i(T, null, V(a.footerSections, (o) => (l(), i("div", {
|
|
2369
2366
|
key: o.title,
|
|
2370
2367
|
class: "section"
|
|
2371
2368
|
}, [
|
|
@@ -2379,11 +2376,11 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2379
2376
|
])
|
|
2380
2377
|
]))), 128)),
|
|
2381
2378
|
t("div", bi, [
|
|
2382
|
-
a.language === "zh" ? (
|
|
2379
|
+
a.language === "zh" ? (l(), i("span", yi, "名傲移动机器人(上海)有限公司")) : (l(), i("span", ki, "Mobile Industrial Robots A/S")),
|
|
2383
2380
|
t("address", null, [
|
|
2384
|
-
a.language === "zh" ? (
|
|
2385
|
-
a.language === "zh" ? (
|
|
2386
|
-
a.language !== "zh" ? (
|
|
2381
|
+
a.language === "zh" ? (l(), i("span", $i, "上海浦东新区金桥出口加工区")) : (l(), i("span", wi, "Energivej 51")),
|
|
2382
|
+
a.language === "zh" ? (l(), i("span", Bi, "桂桥路1201号10栋2楼")) : (l(), i("span", Si, "5260 Odense S")),
|
|
2383
|
+
a.language !== "zh" ? (l(), i("span", Ii, "CVR: 35251235")) : h("", !0),
|
|
2387
2384
|
Ci,
|
|
2388
2385
|
S(P, {
|
|
2389
2386
|
class: "footer__contact",
|
|
@@ -2391,7 +2388,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2391
2388
|
underline: "false"
|
|
2392
2389
|
}, {
|
|
2393
2390
|
default: y(() => [
|
|
2394
|
-
a.language === "zh" ? (
|
|
2391
|
+
a.language === "zh" ? (l(), i("a", qi, "china@mir-robots.com")) : (l(), i("a", Ai, "mail@mir-robots.com"))
|
|
2395
2392
|
]),
|
|
2396
2393
|
_: 1
|
|
2397
2394
|
}),
|
|
@@ -2401,7 +2398,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2401
2398
|
underline: "false"
|
|
2402
2399
|
}, {
|
|
2403
2400
|
default: y(() => [
|
|
2404
|
-
a.language === "zh" ? (
|
|
2401
|
+
a.language === "zh" ? (l(), i("a", Li, "+86 13661856951(微信同号)")) : (l(), i("a", Di, "+45 20 377 577"))
|
|
2405
2402
|
]),
|
|
2406
2403
|
_: 1
|
|
2407
2404
|
})
|
|
@@ -2423,8 +2420,8 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2423
2420
|
c(a.$slots, "footer-privacy-link"),
|
|
2424
2421
|
c(a.$slots, "footer-cookie-link")
|
|
2425
2422
|
]),
|
|
2426
|
-
a.language !== "zh" ? (
|
|
2427
|
-
(
|
|
2423
|
+
a.language !== "zh" ? (l(), i("div", Mi, [
|
|
2424
|
+
(l(!0), i(T, null, V(a.socialMedia, (o) => (l(), L(P, {
|
|
2428
2425
|
key: o.title,
|
|
2429
2426
|
underline: "false",
|
|
2430
2427
|
"link-type": "regular"
|
|
@@ -2444,8 +2441,8 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2444
2441
|
]),
|
|
2445
2442
|
_: 2
|
|
2446
2443
|
}, 1024))), 128))
|
|
2447
|
-
])) : (
|
|
2448
|
-
(
|
|
2444
|
+
])) : (l(), i("div", zi, [
|
|
2445
|
+
(l(!0), i(T, null, V(a.socialMediaChina, (o) => (l(), L(P, {
|
|
2449
2446
|
key: o.title,
|
|
2450
2447
|
underline: "false",
|
|
2451
2448
|
"link-type": "regular"
|
|
@@ -2567,25 +2564,25 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2567
2564
|
],
|
|
2568
2565
|
setup(e, { expose: a, emit: r }) {
|
|
2569
2566
|
let o = null;
|
|
2570
|
-
const
|
|
2571
|
-
let u = C(
|
|
2567
|
+
const s = e;
|
|
2568
|
+
let u = C(s.burgerState), _ = C(s.search), n = C(s.showDropDown), b = C(s.showPortalSwitcherDropDown), f = C(s.showProfileDropDown), k = C(s.isAuthenticated);
|
|
2572
2569
|
Q(
|
|
2573
|
-
() =>
|
|
2570
|
+
() => s.burgerState,
|
|
2574
2571
|
($) => u.value = $
|
|
2575
2572
|
), Q(
|
|
2576
|
-
() =>
|
|
2577
|
-
($) =>
|
|
2573
|
+
() => s.search,
|
|
2574
|
+
($) => _.value = $
|
|
2578
2575
|
), Q(
|
|
2579
|
-
() =>
|
|
2576
|
+
() => s.showDropDown,
|
|
2580
2577
|
($) => n.value = $
|
|
2581
2578
|
), Q(
|
|
2582
|
-
() =>
|
|
2579
|
+
() => s.showPortalSwitcherDropDown,
|
|
2583
2580
|
($) => b.value = $
|
|
2584
2581
|
), Q(
|
|
2585
|
-
() =>
|
|
2582
|
+
() => s.showProfileDropDown,
|
|
2586
2583
|
($) => f.value = $
|
|
2587
2584
|
), Q(
|
|
2588
|
-
() =>
|
|
2585
|
+
() => s.isAuthenticated,
|
|
2589
2586
|
($) => k.value = $
|
|
2590
2587
|
), me(() => {
|
|
2591
2588
|
o = ($) => {
|
|
@@ -2613,7 +2610,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2613
2610
|
}
|
|
2614
2611
|
return a({
|
|
2615
2612
|
defocusSearchButton: de
|
|
2616
|
-
}), ($, j) => (
|
|
2613
|
+
}), ($, j) => (l(), i("div", Ei, [
|
|
2617
2614
|
t("nav", null, [
|
|
2618
2615
|
t("div", ji, [
|
|
2619
2616
|
t("div", Ki, [
|
|
@@ -2622,21 +2619,21 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2622
2619
|
t("ul", Ui, [
|
|
2623
2620
|
c($.$slots, "main-nav-items", {}, void 0, !0)
|
|
2624
2621
|
]),
|
|
2625
|
-
e.useDropdown ? (
|
|
2622
|
+
e.useDropdown ? (l(), i("div", Gi, [
|
|
2626
2623
|
t("button", {
|
|
2627
2624
|
class: "nav-dropdown-btn",
|
|
2628
2625
|
onClick: te
|
|
2629
2626
|
}, [
|
|
2630
2627
|
c($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2631
|
-
I(n) === !1 ? (
|
|
2628
|
+
I(n) === !1 ? (l(), i("img", Ji)) : (l(), i("img", Wi))
|
|
2632
2629
|
]),
|
|
2633
2630
|
U(t("div", Yi, [
|
|
2634
2631
|
c($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2635
2632
|
], 512), [
|
|
2636
2633
|
[Z, I(n)]
|
|
2637
2634
|
])
|
|
2638
|
-
], 512)) :
|
|
2639
|
-
I(
|
|
2635
|
+
], 512)) : h("", !0),
|
|
2636
|
+
I(_) ? (l(), i("div", Qi, [
|
|
2640
2637
|
t("button", {
|
|
2641
2638
|
ref_key: "navSearchButton",
|
|
2642
2639
|
ref: G,
|
|
@@ -2653,15 +2650,15 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2653
2650
|
height: "20"
|
|
2654
2651
|
}, null, 8, Zi)
|
|
2655
2652
|
], 512)
|
|
2656
|
-
])) :
|
|
2657
|
-
e.usePortalSwitcher ? (
|
|
2653
|
+
])) : h("", !0),
|
|
2654
|
+
e.usePortalSwitcher ? (l(), i("div", Xi, [
|
|
2658
2655
|
t("button", {
|
|
2659
2656
|
class: "nav-portal-switcher-btn",
|
|
2660
2657
|
onClick: ie
|
|
2661
2658
|
}, er),
|
|
2662
2659
|
U(t("div", tr, [
|
|
2663
2660
|
t("ul", ar, [
|
|
2664
|
-
(
|
|
2661
|
+
(l(!0), i(T, null, V(e.portals, (K, E) => (l(), i("li", {
|
|
2665
2662
|
key: E,
|
|
2666
2663
|
class: "portal-switcher-link"
|
|
2667
2664
|
}, [
|
|
@@ -2684,22 +2681,22 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2684
2681
|
], 512), [
|
|
2685
2682
|
[Z, I(b)]
|
|
2686
2683
|
])
|
|
2687
|
-
])) :
|
|
2688
|
-
e.useProfileDropdown ? (
|
|
2689
|
-
I(k) ?
|
|
2684
|
+
])) : h("", !0),
|
|
2685
|
+
e.useProfileDropdown ? (l(), i("div", lr, [
|
|
2686
|
+
I(k) ? h("", !0) : (l(), i("div", ir, [
|
|
2690
2687
|
c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2691
2688
|
])),
|
|
2692
|
-
I(k) ? (
|
|
2689
|
+
I(k) ? (l(), i("button", {
|
|
2693
2690
|
key: 1,
|
|
2694
2691
|
class: "nav-profile-dropdown-btn",
|
|
2695
2692
|
onClick: re
|
|
2696
|
-
}, nr)) :
|
|
2693
|
+
}, nr)) : h("", !0),
|
|
2697
2694
|
U(t("div", dr, [
|
|
2698
2695
|
c($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2699
2696
|
], 512), [
|
|
2700
2697
|
[Z, I(f)]
|
|
2701
2698
|
])
|
|
2702
|
-
])) :
|
|
2699
|
+
])) : h("", !0)
|
|
2703
2700
|
]),
|
|
2704
2701
|
t("div", {
|
|
2705
2702
|
class: p(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
@@ -2708,7 +2705,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2708
2705
|
t("div", ur, [
|
|
2709
2706
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2710
2707
|
]),
|
|
2711
|
-
I(
|
|
2708
|
+
I(_) ? (l(), i("div", _r, [
|
|
2712
2709
|
t("button", {
|
|
2713
2710
|
ref_key: "mobileSearchButton",
|
|
2714
2711
|
ref: ae,
|
|
@@ -2726,7 +2723,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2726
2723
|
height: "20"
|
|
2727
2724
|
}, null, 8, hr)
|
|
2728
2725
|
], 512)
|
|
2729
|
-
])) :
|
|
2726
|
+
])) : h("", !0),
|
|
2730
2727
|
t("button", {
|
|
2731
2728
|
class: "mobile-burger-wrapper",
|
|
2732
2729
|
"aria-label": "Toggle menu",
|
|
@@ -2768,7 +2765,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2768
2765
|
}
|
|
2769
2766
|
},
|
|
2770
2767
|
setup(e) {
|
|
2771
|
-
return (a, r) => (
|
|
2768
|
+
return (a, r) => (l(), i("div", br, [
|
|
2772
2769
|
t("div", yr, [
|
|
2773
2770
|
t("h2", kr, d(e.headline), 1),
|
|
2774
2771
|
t("p", $r, d(e.paragraph), 1),
|
|
@@ -2792,7 +2789,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2792
2789
|
},
|
|
2793
2790
|
emits: ["previous", "next"],
|
|
2794
2791
|
setup(e) {
|
|
2795
|
-
return (a, r) => (
|
|
2792
|
+
return (a, r) => (l(), i("div", Ir, [
|
|
2796
2793
|
t("div", Cr, [
|
|
2797
2794
|
S(se, {
|
|
2798
2795
|
disabled: e.isPreviousDisabled,
|
|
@@ -2812,7 +2809,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2812
2809
|
}
|
|
2813
2810
|
}), Ar = /* @__PURE__ */ v(qr, [["__scopeId", "data-v-da6d07c9"]]), Lr = {}, Dr = { class: "search__wrapper" };
|
|
2814
2811
|
function Tr(e, a) {
|
|
2815
|
-
return
|
|
2812
|
+
return l(), i("div", Dr, [
|
|
2816
2813
|
c(e.$slots, "default", { class: "search__content" })
|
|
2817
2814
|
]);
|
|
2818
2815
|
}
|
|
@@ -2825,17 +2822,17 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2825
2822
|
},
|
|
2826
2823
|
emits: ["filter", "remove-filter"],
|
|
2827
2824
|
setup(e, { emit: a }) {
|
|
2828
|
-
const r = C(!1), o = e,
|
|
2825
|
+
const r = C(!1), o = e, s = a;
|
|
2829
2826
|
function u(b) {
|
|
2830
|
-
o.selectedOptions.includes(b) ?
|
|
2827
|
+
o.selectedOptions.includes(b) ? s("remove-filter", b) : s("filter", b);
|
|
2831
2828
|
}
|
|
2832
|
-
function
|
|
2829
|
+
function _() {
|
|
2833
2830
|
r.value = !1;
|
|
2834
2831
|
}
|
|
2835
2832
|
const n = A(() => o.options.length > 8);
|
|
2836
2833
|
return (b, f) => {
|
|
2837
2834
|
const k = _e("click-outside");
|
|
2838
|
-
return U((
|
|
2835
|
+
return U((l(), i("div", Pr, [
|
|
2839
2836
|
t("button", {
|
|
2840
2837
|
class: "dropdown-button",
|
|
2841
2838
|
style: x({ "z-index": r.value ? 2 : 0 }),
|
|
@@ -2849,7 +2846,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2849
2846
|
t("div", {
|
|
2850
2847
|
class: p([{ hidden: !r.value, "adjust-height": n.value }, "dropdown-content"])
|
|
2851
2848
|
}, [
|
|
2852
|
-
(
|
|
2849
|
+
(l(!0), i(T, null, V(b.options, (w) => (l(), L(I(fe), {
|
|
2853
2850
|
id: w.value,
|
|
2854
2851
|
key: w.value,
|
|
2855
2852
|
name: w.text,
|
|
@@ -2866,7 +2863,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2866
2863
|
}, 1032, ["id", "name", "value", "checked", "onInput"]))), 128))
|
|
2867
2864
|
], 2)
|
|
2868
2865
|
])), [
|
|
2869
|
-
[k,
|
|
2866
|
+
[k, _]
|
|
2870
2867
|
]);
|
|
2871
2868
|
};
|
|
2872
2869
|
}
|
|
@@ -2889,71 +2886,71 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2889
2886
|
light: "promo__wrapper--light",
|
|
2890
2887
|
default: "promo__wrapper--default"
|
|
2891
2888
|
}, r = e, o = A(() => a[r.variant]);
|
|
2892
|
-
return (
|
|
2889
|
+
return (s, u) => (l(), i("div", {
|
|
2893
2890
|
class: p([
|
|
2894
2891
|
"promo__wrapper",
|
|
2895
2892
|
o.value,
|
|
2896
|
-
|
|
2893
|
+
s.teaser ? "promo__wrapper--teaser" : ""
|
|
2897
2894
|
])
|
|
2898
2895
|
}, [
|
|
2899
2896
|
t("div", zr, [
|
|
2900
2897
|
t("div", {
|
|
2901
2898
|
class: p([
|
|
2902
2899
|
"promo__video",
|
|
2903
|
-
|
|
2900
|
+
s.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2904
2901
|
])
|
|
2905
2902
|
}, [
|
|
2906
2903
|
t("div", Hr, [
|
|
2907
2904
|
t("div", Rr, [
|
|
2908
|
-
c(
|
|
2905
|
+
c(s.$slots, "pallet-jack-link")
|
|
2909
2906
|
]),
|
|
2910
2907
|
t("div", Nr, [
|
|
2911
|
-
c(
|
|
2908
|
+
c(s.$slots, "pallet-jack-video")
|
|
2912
2909
|
]),
|
|
2913
2910
|
t("div", Er, [
|
|
2914
|
-
t("h3", jr, d(
|
|
2915
|
-
t("p", null, d(
|
|
2911
|
+
t("h3", jr, d(s.headline), 1),
|
|
2912
|
+
t("p", null, d(s.shortDescription), 1)
|
|
2916
2913
|
])
|
|
2917
2914
|
])
|
|
2918
2915
|
], 2),
|
|
2919
2916
|
t("div", {
|
|
2920
2917
|
class: p([
|
|
2921
2918
|
"promo__text",
|
|
2922
|
-
|
|
2919
|
+
s.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2923
2920
|
])
|
|
2924
2921
|
}, [
|
|
2925
|
-
|
|
2922
|
+
s.label ? (l(), L(X, {
|
|
2926
2923
|
key: 0,
|
|
2927
|
-
text:
|
|
2928
|
-
"label-dark":
|
|
2929
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
2924
|
+
text: s.label,
|
|
2925
|
+
"label-dark": s.variant === "dark"
|
|
2926
|
+
}, null, 8, ["text", "label-dark"])) : h("", !0),
|
|
2930
2927
|
t("div", {
|
|
2931
2928
|
class: p([
|
|
2932
2929
|
"promo__title",
|
|
2933
|
-
|
|
2930
|
+
s.variant === "dark" ? "promo__title--dark" : ""
|
|
2934
2931
|
])
|
|
2935
2932
|
}, [
|
|
2936
|
-
c(
|
|
2933
|
+
c(s.$slots, "promo-text")
|
|
2937
2934
|
], 2),
|
|
2938
|
-
|
|
2935
|
+
s.linkType === "link" ? (l(), L(P, {
|
|
2939
2936
|
key: 1,
|
|
2940
|
-
"link-type":
|
|
2937
|
+
"link-type": s.variant === "dark" ? "regular_dark" : (s.variant === "light", "regular_light"),
|
|
2941
2938
|
arrow: ""
|
|
2942
2939
|
}, {
|
|
2943
2940
|
default: y(() => [
|
|
2944
|
-
c(
|
|
2941
|
+
c(s.$slots, "promo-link")
|
|
2945
2942
|
]),
|
|
2946
2943
|
_: 3
|
|
2947
|
-
}, 8, ["link-type"])) :
|
|
2948
|
-
|
|
2944
|
+
}, 8, ["link-type"])) : h("", !0),
|
|
2945
|
+
s.linkType === "button" ? (l(), L(P, {
|
|
2949
2946
|
key: 2,
|
|
2950
|
-
"link-type":
|
|
2947
|
+
"link-type": s.variant === "dark" ? "secondary_dark" : (s.variant === "light", "secondary")
|
|
2951
2948
|
}, {
|
|
2952
2949
|
default: y(() => [
|
|
2953
|
-
c(
|
|
2950
|
+
c(s.$slots, "promo-link")
|
|
2954
2951
|
]),
|
|
2955
2952
|
_: 3
|
|
2956
|
-
}, 8, ["link-type"])) :
|
|
2953
|
+
}, 8, ["link-type"])) : h("", !0)
|
|
2957
2954
|
], 2)
|
|
2958
2955
|
])
|
|
2959
2956
|
], 2));
|