@mirweb/mir-web-components 1.6.5 → 1.6.6
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 L, openBlock as
|
|
1
|
+
import { defineComponent as g, computed as L, openBlock as o, createElementBlock as s, normalizeClass as m, toDisplayString as d, createElementVNode as t, renderSlot as u, pushScopeId as H, popScopeId as R, createTextVNode as G, ref as q, resolveDirective as ue, withDirectives as K, Fragment as T, renderList as V, vShow as Q, normalizeProps as P, guardReactiveProps as O, toRefs as we, mergeProps as X, createVNode as S, Transition as Be, withCtx as y, withModifiers as _e, createBlock as D, createCommentVNode as p, watchEffect as he, withKeys as Se, useSlots as Ie, normalizeStyle as x, isRef as de, unref as I, onMounted as pe, watch as Y, onUnmounted as qe } from "vue";
|
|
2
2
|
const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -15,15 +15,15 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
15
15
|
next: "next",
|
|
16
16
|
previous: "previous"
|
|
17
17
|
}, r = e, i = L(() => a[r.variant]);
|
|
18
|
-
return (
|
|
18
|
+
return (l, c) => (o(), s("button", {
|
|
19
19
|
class: m(["button", "button--" + i.value]),
|
|
20
|
-
"aria-label":
|
|
21
|
-
}, d(i.value === "close" ? "" :
|
|
20
|
+
"aria-label": l.ariaLabel
|
|
21
|
+
}, d(i.value === "close" ? "" : l.buttonText), 11, Ce));
|
|
22
22
|
}
|
|
23
23
|
}), f = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
|
-
for (const [i,
|
|
26
|
-
r[i] =
|
|
25
|
+
for (const [i, l] of a)
|
|
26
|
+
r[i] = l;
|
|
27
27
|
return r;
|
|
28
28
|
}, le = /* @__PURE__ */ f(Ae, [["__scopeId", "data-v-f61b579c"]]), Le = (e) => (H("data-v-0c4c6d8e"), e = e(), R(), e), De = ["id", "name", "value", "disabled", "required", "checked"], Te = ["for"], Ve = /* @__PURE__ */ Le(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Pe = /* @__PURE__ */ g({
|
|
29
29
|
__name: "checkbox",
|
|
@@ -37,30 +37,30 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
37
37
|
},
|
|
38
38
|
emits: ["input"],
|
|
39
39
|
setup(e, { emit: a }) {
|
|
40
|
-
const r = a, i = (
|
|
41
|
-
const
|
|
42
|
-
r("input",
|
|
40
|
+
const r = a, i = (l) => {
|
|
41
|
+
const c = l.target;
|
|
42
|
+
r("input", c.checked);
|
|
43
43
|
};
|
|
44
|
-
return (
|
|
45
|
-
class: m(["checkbox__wrapper",
|
|
44
|
+
return (l, c) => (o(), s("div", {
|
|
45
|
+
class: m(["checkbox__wrapper", l.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
47
|
t("input", {
|
|
48
|
-
id:
|
|
48
|
+
id: l.id,
|
|
49
49
|
type: "checkbox",
|
|
50
|
-
name:
|
|
51
|
-
value:
|
|
52
|
-
disabled:
|
|
53
|
-
required:
|
|
54
|
-
checked:
|
|
50
|
+
name: l.name,
|
|
51
|
+
value: l.value,
|
|
52
|
+
disabled: l.disabled,
|
|
53
|
+
required: l.required,
|
|
54
|
+
checked: l.checked,
|
|
55
55
|
class: "checkbox__checkbox",
|
|
56
56
|
onChange: i
|
|
57
57
|
}, null, 40, De),
|
|
58
58
|
t("label", {
|
|
59
|
-
for:
|
|
60
|
-
class: m(["checkbox__label",
|
|
59
|
+
for: l.id,
|
|
60
|
+
class: m(["checkbox__label", l.required ? "required" : ""])
|
|
61
61
|
}, [
|
|
62
62
|
Ve,
|
|
63
|
-
|
|
63
|
+
u(l.$slots, "default", {}, void 0, !0)
|
|
64
64
|
], 10, Te)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
@@ -76,9 +76,9 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
76
76
|
emits: ["remove-chip"],
|
|
77
77
|
setup(e) {
|
|
78
78
|
const a = e, r = L(() => `Chip: ${a.text}`);
|
|
79
|
-
return (i,
|
|
79
|
+
return (i, l) => (o(), s("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick:
|
|
81
|
+
onClick: l[0] || (l[0] = (c) => i.$emit("remove-chip"))
|
|
82
82
|
}, [
|
|
83
83
|
t("span", {
|
|
84
84
|
class: "chip",
|
|
@@ -107,7 +107,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
107
107
|
const r = {
|
|
108
108
|
primary: "dropdown-dark-bg-primary",
|
|
109
109
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
110
|
-
}, i = e,
|
|
110
|
+
}, i = e, l = L(() => r[i.variant]), c = q(null), n = q(null), _ = q([]), b = q(0), v = q(""), k = q(!0), w = q(0), te = a, se = L(() => {
|
|
111
111
|
const h = i.options.find(
|
|
112
112
|
(B) => B.value === i.modelValue
|
|
113
113
|
);
|
|
@@ -119,7 +119,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
119
119
|
function re(h) {
|
|
120
120
|
var C;
|
|
121
121
|
const B = h.target;
|
|
122
|
-
B.getAttribute("role") === "option" && (J(B), oe(), (C =
|
|
122
|
+
B.getAttribute("role") === "option" && (J(B), oe(), (C = c.value) == null || C.focus());
|
|
123
123
|
}
|
|
124
124
|
function U(h) {
|
|
125
125
|
var C;
|
|
@@ -145,7 +145,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
145
145
|
break;
|
|
146
146
|
case "Enter":
|
|
147
147
|
case "Escape":
|
|
148
|
-
h.preventDefault(), oe(), (C =
|
|
148
|
+
h.preventDefault(), oe(), (C = c.value) == null || C.focus();
|
|
149
149
|
break;
|
|
150
150
|
default: {
|
|
151
151
|
const A = E(B);
|
|
@@ -215,18 +215,18 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
215
215
|
}
|
|
216
216
|
function oe() {
|
|
217
217
|
var h;
|
|
218
|
-
k.value = !0, (h =
|
|
218
|
+
k.value = !0, (h = c.value) == null || h.removeAttribute("aria-expanded");
|
|
219
219
|
}
|
|
220
220
|
function ce() {
|
|
221
221
|
var h, B;
|
|
222
|
-
k.value = !1, (h =
|
|
222
|
+
k.value = !1, (h = c.value) == null || h.setAttribute("aria-expanded", "true"), (B = n.value) == null || B.focus();
|
|
223
223
|
}
|
|
224
224
|
function $e() {
|
|
225
225
|
i.disabled || (k.value ? ce() : oe());
|
|
226
226
|
}
|
|
227
227
|
return (h, B) => {
|
|
228
228
|
const C = ue("click-outside");
|
|
229
|
-
return
|
|
229
|
+
return o(), s("div", {
|
|
230
230
|
ref: "listbox",
|
|
231
231
|
class: "listbox__wrapper",
|
|
232
232
|
value: h.modelValue
|
|
@@ -239,16 +239,16 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
239
239
|
"is-required": h.required
|
|
240
240
|
}, "listbox__label"])
|
|
241
241
|
}, d(h.label), 11, Ne),
|
|
242
|
-
K((
|
|
242
|
+
K((o(), s("div", Ee, [
|
|
243
243
|
t("button", {
|
|
244
244
|
id: `${h.name}-button-label`,
|
|
245
245
|
ref_key: "listboxButton",
|
|
246
|
-
ref:
|
|
246
|
+
ref: c,
|
|
247
247
|
"aria-labelledby": `${h.name}-label ${h.name}-button-label`,
|
|
248
248
|
type: "button",
|
|
249
249
|
"aria-haspopup": "listbox",
|
|
250
250
|
"aria-disabled": h.disabled,
|
|
251
|
-
class: m(["listbox__button",
|
|
251
|
+
class: m(["listbox__button", l.value]),
|
|
252
252
|
onClick: $e,
|
|
253
253
|
onKeydown: ae
|
|
254
254
|
}, d(h.modelValue ? se.value : h.placeholder), 43, je),
|
|
@@ -263,7 +263,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
263
263
|
onKeydown: U,
|
|
264
264
|
onClick: re
|
|
265
265
|
}, [
|
|
266
|
-
(
|
|
266
|
+
(o(!0), s(T, null, V(h.options, (A, z) => (o(), s("li", {
|
|
267
267
|
key: `${h.name}-option-${z}`,
|
|
268
268
|
ref_for: !0,
|
|
269
269
|
ref_key: "listboxOptions",
|
|
@@ -294,8 +294,8 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
294
294
|
loading: { default: "auto" }
|
|
295
295
|
},
|
|
296
296
|
setup(e) {
|
|
297
|
-
return (a, r) => (
|
|
298
|
-
|
|
297
|
+
return (a, r) => (o(), s("div", We, [
|
|
298
|
+
u(a.$slots, "default", P(O(a.$attrs)))
|
|
299
299
|
]));
|
|
300
300
|
}
|
|
301
301
|
}), F = /* @__PURE__ */ f(Ye, [["__scopeId", "data-v-e10217bd"]]), Qe = { class: "label__wrapper" }, Ze = ["aria-label", "label-dark"], Xe = /* @__PURE__ */ g({
|
|
@@ -306,7 +306,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
306
306
|
},
|
|
307
307
|
setup(e) {
|
|
308
308
|
const a = e, r = L(() => `Label: ${a.text}`);
|
|
309
|
-
return (i,
|
|
309
|
+
return (i, l) => (o(), s("div", Qe, [
|
|
310
310
|
t("span", {
|
|
311
311
|
"aria-label": r.value,
|
|
312
312
|
"label-dark": i.labelDark,
|
|
@@ -336,20 +336,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
336
336
|
hover: "underline-hover",
|
|
337
337
|
true: "add-underline",
|
|
338
338
|
false: "remove-underline"
|
|
339
|
-
}, i = e,
|
|
339
|
+
}, i = e, l = L(() => a[i.linkType]), c = L(() => r[i.underline]), n = L(() => {
|
|
340
340
|
const { ..._ } = we(i);
|
|
341
341
|
return _;
|
|
342
342
|
});
|
|
343
|
-
return (_, b) => (
|
|
343
|
+
return (_, b) => (o(), s("div", xe, [
|
|
344
344
|
t("div", X(n.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
|
-
|
|
346
|
+
l.value,
|
|
347
347
|
_.disabled ? "disabled" : "",
|
|
348
|
-
|
|
348
|
+
c.value,
|
|
349
349
|
_.arrow ? "link-arrow" : ""
|
|
350
350
|
]]
|
|
351
351
|
}), [
|
|
352
|
-
|
|
352
|
+
u(_.$slots, "default")
|
|
353
353
|
], 16)
|
|
354
354
|
]));
|
|
355
355
|
}
|
|
@@ -365,30 +365,30 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
365
365
|
},
|
|
366
366
|
emits: ["input"],
|
|
367
367
|
setup(e, { emit: a }) {
|
|
368
|
-
const r = a, i = (
|
|
369
|
-
const
|
|
370
|
-
r("input",
|
|
368
|
+
const r = a, i = (l) => {
|
|
369
|
+
const c = l.target;
|
|
370
|
+
r("input", c.checked);
|
|
371
371
|
};
|
|
372
|
-
return (
|
|
373
|
-
class: m(["radio__wrapper",
|
|
372
|
+
return (l, c) => (o(), s("div", {
|
|
373
|
+
class: m(["radio__wrapper", l.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
375
|
t("input", {
|
|
376
|
-
id:
|
|
376
|
+
id: l.id,
|
|
377
377
|
type: "radio",
|
|
378
|
-
name:
|
|
379
|
-
value:
|
|
380
|
-
checked:
|
|
381
|
-
disabled:
|
|
382
|
-
required:
|
|
378
|
+
name: l.name,
|
|
379
|
+
value: l.value,
|
|
380
|
+
checked: l.checked,
|
|
381
|
+
disabled: l.disabled,
|
|
382
|
+
required: l.required,
|
|
383
383
|
class: "radio__radio",
|
|
384
384
|
onChange: i
|
|
385
385
|
}, null, 40, tt),
|
|
386
386
|
t("label", {
|
|
387
|
-
for:
|
|
388
|
-
class: m(["radio__label",
|
|
387
|
+
for: l.id,
|
|
388
|
+
class: m(["radio__label", l.required ? "required" : ""])
|
|
389
389
|
}, [
|
|
390
390
|
ot,
|
|
391
|
-
|
|
391
|
+
u(l.$slots, "default", {}, void 0, !0)
|
|
392
392
|
], 10, at)
|
|
393
393
|
], 2));
|
|
394
394
|
}
|
|
@@ -405,7 +405,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
405
405
|
},
|
|
406
406
|
emits: ["update:modelValue"],
|
|
407
407
|
setup(e) {
|
|
408
|
-
return (a, r) => (
|
|
408
|
+
return (a, r) => (o(), s("div", it, [
|
|
409
409
|
t("label", {
|
|
410
410
|
for: a.id,
|
|
411
411
|
class: m([a.required ? "required" : "", a.disabled ? "disabled" : ""])
|
|
@@ -420,7 +420,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
420
420
|
a.$emit("update:modelValue", i.target.value), i.target.blur();
|
|
421
421
|
})
|
|
422
422
|
}, [
|
|
423
|
-
(
|
|
423
|
+
(o(!0), s(T, null, V(a.options, (i) => (o(), s("option", {
|
|
424
424
|
key: i.value,
|
|
425
425
|
value: i.value
|
|
426
426
|
}, d(i.text), 9, dt))), 128))
|
|
@@ -435,39 +435,39 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
435
435
|
},
|
|
436
436
|
emits: ["update:show"],
|
|
437
437
|
setup(e, { emit: a }) {
|
|
438
|
-
const r = e, i = a,
|
|
438
|
+
const r = e, i = a, l = () => {
|
|
439
439
|
i("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (
|
|
441
|
+
return (c, n) => (o(), s("div", _t, [
|
|
442
442
|
S(Be, {
|
|
443
443
|
duration: 300,
|
|
444
444
|
name: "nested"
|
|
445
445
|
}, {
|
|
446
446
|
default: y(() => [
|
|
447
447
|
K(t("div", {
|
|
448
|
-
class: m(["overlay",
|
|
448
|
+
class: m(["overlay", c.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
451
|
-
onClick:
|
|
451
|
+
onClick: l
|
|
452
452
|
}, [
|
|
453
453
|
t("div", {
|
|
454
454
|
id: "modal",
|
|
455
|
-
class: m([
|
|
455
|
+
class: m([c.searchBar ? "search" : ""]),
|
|
456
456
|
onClick: n[0] || (n[0] = _e(() => {
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
459
|
t("div", null, [
|
|
460
|
-
|
|
460
|
+
c.searchBar ? p("", !0) : (o(), D(le, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
|
-
onClick:
|
|
464
|
+
onClick: l
|
|
465
465
|
}))
|
|
466
466
|
]),
|
|
467
|
-
c
|
|
467
|
+
u(c.$slots, "default", {}, void 0, !0)
|
|
468
468
|
], 2)
|
|
469
469
|
], 2), [
|
|
470
|
-
[Q,
|
|
470
|
+
[Q, c.show]
|
|
471
471
|
])
|
|
472
472
|
]),
|
|
473
473
|
_: 3
|
|
@@ -490,25 +490,25 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
490
490
|
},
|
|
491
491
|
emits: ["update:modelValue"],
|
|
492
492
|
setup(e, { emit: a }) {
|
|
493
|
-
const r = e, i = a,
|
|
493
|
+
const r = e, i = a, l = q(r.modelValue), c = q(), n = q(!1), _ = (v, k, w) => (v - k) / (w - k) * 100, b = (v) => {
|
|
494
494
|
var k;
|
|
495
|
-
(k =
|
|
495
|
+
(k = c.value) == null || k.style.setProperty("--ProgressPercent", `${v}%`);
|
|
496
496
|
};
|
|
497
497
|
return he(() => {
|
|
498
|
-
if (
|
|
499
|
-
i("update:modelValue",
|
|
500
|
-
const v = _(
|
|
498
|
+
if (c.value) {
|
|
499
|
+
i("update:modelValue", l.value);
|
|
500
|
+
const v = _(l.value, r.min, r.max);
|
|
501
501
|
let k = (50 - v) / 100;
|
|
502
502
|
b(v + k);
|
|
503
503
|
}
|
|
504
|
-
}), (v, k) => (
|
|
504
|
+
}), (v, k) => (o(), s("div", null, [
|
|
505
505
|
t("div", pt, [
|
|
506
506
|
t("div", mt, [
|
|
507
507
|
t("label", {
|
|
508
508
|
for: v.id,
|
|
509
509
|
class: m([v.variant, ""])
|
|
510
510
|
}, d(v.label), 11, vt),
|
|
511
|
-
v.information ? (
|
|
511
|
+
v.information ? (o(), s("i", {
|
|
512
512
|
key: 0,
|
|
513
513
|
role: "button",
|
|
514
514
|
class: m([v.variant, "slider__information"]),
|
|
@@ -526,7 +526,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
526
526
|
t("input", {
|
|
527
527
|
id: v.id,
|
|
528
528
|
ref_key: "slider",
|
|
529
|
-
ref:
|
|
529
|
+
ref: c,
|
|
530
530
|
type: "range",
|
|
531
531
|
name: v.name,
|
|
532
532
|
value: v.modelValue,
|
|
@@ -534,7 +534,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
534
534
|
step: v.step,
|
|
535
535
|
max: v.max,
|
|
536
536
|
class: m(v.variant),
|
|
537
|
-
onInput: k[2] || (k[2] = ({ target: w }) =>
|
|
537
|
+
onInput: k[2] || (k[2] = ({ target: w }) => l.value = parseFloat(w.value))
|
|
538
538
|
}, null, 42, bt),
|
|
539
539
|
t("span", {
|
|
540
540
|
class: m([v.variant, "slider__minmax"])
|
|
@@ -544,7 +544,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
544
544
|
class: m([v.variant, "slider__value"])
|
|
545
545
|
}, d(v.modelValue), 3)
|
|
546
546
|
]),
|
|
547
|
-
v.information ? (
|
|
547
|
+
v.information ? (o(), D(ve, {
|
|
548
548
|
key: 0,
|
|
549
549
|
show: n.value,
|
|
550
550
|
"onUpdate:show": k[3] || (k[3] = (w) => n.value = w)
|
|
@@ -570,7 +570,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
570
570
|
},
|
|
571
571
|
emits: ["update:modelValue"],
|
|
572
572
|
setup(e) {
|
|
573
|
-
return (a, r) => (
|
|
573
|
+
return (a, r) => (o(), s("div", wt, [
|
|
574
574
|
t("label", {
|
|
575
575
|
for: a.id,
|
|
576
576
|
class: m({ required: a.required })
|
|
@@ -596,7 +596,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
596
596
|
], 8, St),
|
|
597
597
|
t("div", qt, [
|
|
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 ? (o(), s("p", Ct, " Too many characters. Please make it shorter ")) : p("", !0)
|
|
600
600
|
]),
|
|
601
601
|
t("p", {
|
|
602
602
|
class: m(
|
|
@@ -642,12 +642,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
642
642
|
tel: "tel",
|
|
643
643
|
url: "url",
|
|
644
644
|
search: "search"
|
|
645
|
-
}, r = e, i = L(() => a[r.type]),
|
|
646
|
-
() =>
|
|
645
|
+
}, r = e, i = L(() => a[r.type]), l = q(!0), c = L(
|
|
646
|
+
() => l.value ? "showPassword" : "hidePassword"
|
|
647
647
|
), n = L(
|
|
648
|
-
() =>
|
|
648
|
+
() => l.value ? "password" : "text"
|
|
649
649
|
);
|
|
650
|
-
return (_, b) => (
|
|
650
|
+
return (_, b) => (o(), s("div", Dt, [
|
|
651
651
|
t("label", {
|
|
652
652
|
for: _.id,
|
|
653
653
|
class: m([
|
|
@@ -656,7 +656,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
656
656
|
_.search ? "search" : ""
|
|
657
657
|
])
|
|
658
658
|
}, d(_.label), 11, Tt),
|
|
659
|
-
i.value === "password" ? (
|
|
659
|
+
i.value === "password" ? (o(), s("div", Vt, [
|
|
660
660
|
t("input", {
|
|
661
661
|
id: _.id,
|
|
662
662
|
ref: "passwordField",
|
|
@@ -670,12 +670,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
670
670
|
}, null, 40, Pt),
|
|
671
671
|
t("i", {
|
|
672
672
|
role: "button",
|
|
673
|
-
class: m([
|
|
673
|
+
class: m([c.value]),
|
|
674
674
|
"aria-controls": "password",
|
|
675
|
-
"aria-expanded": !
|
|
676
|
-
onClick: b[1] || (b[1] = (v) =>
|
|
675
|
+
"aria-expanded": !l.value,
|
|
676
|
+
onClick: b[1] || (b[1] = (v) => l.value = !l.value)
|
|
677
677
|
}, null, 10, Mt)
|
|
678
|
-
])) : (
|
|
678
|
+
])) : (o(), s("input", {
|
|
679
679
|
key: 1,
|
|
680
680
|
id: _.id,
|
|
681
681
|
ref: "textField",
|
|
@@ -692,9 +692,9 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
692
692
|
name: _.fieldName,
|
|
693
693
|
onInput: b[2] || (b[2] = (v) => _.$emit("update:modelValue", v.target.value))
|
|
694
694
|
}, null, 42, Ft)),
|
|
695
|
-
_.search ? (
|
|
696
|
-
_.errorMessage ? (
|
|
697
|
-
_.helperText ? (
|
|
695
|
+
_.search ? (o(), s("i", Ot)) : p("", !0),
|
|
696
|
+
_.errorMessage ? (o(), s("strong", zt, d(_.errorMessage), 1)) : p("", !0),
|
|
697
|
+
_.helperText ? (o(), s("span", Ht, d(_.helperText), 1)) : p("", !0)
|
|
698
698
|
]));
|
|
699
699
|
}
|
|
700
700
|
}), Nt = /* @__PURE__ */ f(Rt, [["__scopeId", "data-v-414b9435"]]), Et = { class: "video__wrapper" }, jt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Kt = ["src", "aria-label", "title", "width", "height"], Ut = /* @__PURE__ */ g({
|
|
@@ -722,29 +722,29 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
722
722
|
resetVideo: () => {
|
|
723
723
|
i.value && (i.value.currentTime = 0, i.value.play());
|
|
724
724
|
}
|
|
725
|
-
}), (
|
|
726
|
-
|
|
725
|
+
}), (c, n) => (o(), s("div", Et, [
|
|
726
|
+
c.localVideo ? (o(), s("video", {
|
|
727
727
|
key: 0,
|
|
728
728
|
ref_key: "videoRef",
|
|
729
729
|
ref: i,
|
|
730
|
-
"aria-label":
|
|
731
|
-
controls:
|
|
732
|
-
poster:
|
|
733
|
-
width:
|
|
734
|
-
height:
|
|
735
|
-
autoplay:
|
|
736
|
-
loop:
|
|
737
|
-
muted:
|
|
730
|
+
"aria-label": c.ariaLabel,
|
|
731
|
+
controls: c.controls,
|
|
732
|
+
poster: c.poster,
|
|
733
|
+
width: c.width,
|
|
734
|
+
height: c.height,
|
|
735
|
+
autoplay: c.autoplay,
|
|
736
|
+
loop: c.loop,
|
|
737
|
+
muted: c.muted,
|
|
738
738
|
type: "video/mp4",
|
|
739
739
|
playsinline: "",
|
|
740
|
-
src:
|
|
741
|
-
}, null, 8, jt)) : (
|
|
740
|
+
src: c.src
|
|
741
|
+
}, null, 8, jt)) : (o(), s("iframe", {
|
|
742
742
|
key: 1,
|
|
743
|
-
src:
|
|
744
|
-
"aria-label":
|
|
745
|
-
title:
|
|
746
|
-
width:
|
|
747
|
-
height:
|
|
743
|
+
src: c.src,
|
|
744
|
+
"aria-label": c.ariaLabel,
|
|
745
|
+
title: c.title,
|
|
746
|
+
width: c.width,
|
|
747
|
+
height: c.height,
|
|
748
748
|
frameborder: "0",
|
|
749
749
|
allow: "autoplay; fullscreen",
|
|
750
750
|
allowfullscreen: ""
|
|
@@ -764,20 +764,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
764
764
|
email: {}
|
|
765
765
|
},
|
|
766
766
|
setup(e) {
|
|
767
|
-
return (a, r) => (
|
|
767
|
+
return (a, r) => (o(), s("div", Gt, [
|
|
768
768
|
t("div", Jt, [
|
|
769
769
|
t("div", Wt, [
|
|
770
|
-
|
|
770
|
+
u(a.$slots, "address-flag", {}, void 0, !0)
|
|
771
771
|
]),
|
|
772
772
|
t("div", Yt, [
|
|
773
773
|
t("p", Qt, d(a.name), 1),
|
|
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 ? (o(), s("p", Zt, d(a.addressLine3), 1)) : p("", !0)
|
|
778
778
|
]),
|
|
779
779
|
t("div", Xt, [
|
|
780
|
-
a.website ? (
|
|
780
|
+
a.website ? (o(), D(M, {
|
|
781
781
|
key: 0,
|
|
782
782
|
underline: "false",
|
|
783
783
|
"link-type": "regular"
|
|
@@ -790,7 +790,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
790
790
|
]),
|
|
791
791
|
_: 1
|
|
792
792
|
})) : p("", !0),
|
|
793
|
-
(
|
|
793
|
+
(o(!0), s(T, null, V(a.phoneNumbers, (i) => (o(), D(M, {
|
|
794
794
|
key: i,
|
|
795
795
|
underline: "false",
|
|
796
796
|
"link-type": "regular"
|
|
@@ -831,12 +831,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
831
831
|
}
|
|
832
832
|
},
|
|
833
833
|
setup(e) {
|
|
834
|
-
return (a, r) => (
|
|
834
|
+
return (a, r) => (o(), s("div", sa, [
|
|
835
835
|
t("div", {
|
|
836
836
|
class: m(["bullet-list", e.variant])
|
|
837
837
|
}, [
|
|
838
838
|
t("ul", null, [
|
|
839
|
-
(
|
|
839
|
+
(o(!0), s(T, null, V(e.list, (i) => (o(), s("li", { key: i }, [
|
|
840
840
|
ia,
|
|
841
841
|
G(" " + d(i), 1)
|
|
842
842
|
]))), 128))
|
|
@@ -889,13 +889,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
889
889
|
width: "596",
|
|
890
890
|
height: "335"
|
|
891
891
|
}
|
|
892
|
-
},
|
|
893
|
-
return (n, _) => (
|
|
892
|
+
}, l = e, c = L(() => i[l.size]);
|
|
893
|
+
return (n, _) => (o(), s("div", da, [
|
|
894
894
|
t("div", {
|
|
895
895
|
class: m(["card", [
|
|
896
896
|
n.theme === "dark" ? "card--dark" : "card--light",
|
|
897
897
|
n.orientation === "vertical" ? "vertical" : "horizontal",
|
|
898
|
-
|
|
898
|
+
c.value.class,
|
|
899
899
|
n.size === "large" && n.variant === "article" ? "card--large-article" : n.size === "small" && n.variant === "article" ? "card--small-article" : n.size === "xsmall" && n.variant === "article" ? "card--xsmall-article" : n.size === "medium" && n.variant === "article" ? "card--medium-article" : n.size === "large" && n.variant === "product" ? "card--large-product" : n.size === "small" && n.variant === "product" ? "card--small-product" : n.size === "xsmall" && n.variant === "product" ? "card--xsmall-product" : n.size === "medium" && n.variant === "product" ? "card--medium-product" : n.variant === "product" ? "card--product" : "card--article",
|
|
900
900
|
n.variant === "product" ? "card--product" : "card--article"
|
|
901
901
|
]]),
|
|
@@ -903,9 +903,9 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
903
903
|
onMouseover: _[0] || (_[0] = (b) => de(r) ? r.value = !0 : r = !0),
|
|
904
904
|
onMouseout: _[1] || (_[1] = (b) => de(r) ? r.value = !1 : r = !1)
|
|
905
905
|
}, [
|
|
906
|
-
n.mediaType === "image" ? (
|
|
906
|
+
n.mediaType === "image" ? (o(), D(F, { key: 0 }, {
|
|
907
907
|
default: y(() => [
|
|
908
|
-
|
|
908
|
+
u(n.$slots, "card-image", X({
|
|
909
909
|
src: n.imgSrc,
|
|
910
910
|
width: "596",
|
|
911
911
|
height: "335",
|
|
@@ -915,7 +915,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
915
915
|
}, { srcset: n.srcSet }))
|
|
916
916
|
]),
|
|
917
917
|
_: 3
|
|
918
|
-
})) : (
|
|
918
|
+
})) : (o(), s("div", {
|
|
919
919
|
key: 1,
|
|
920
920
|
class: m(["video-card__wrapper", I(r) === !0 ? "vimeoPlaying" : ""])
|
|
921
921
|
}, [
|
|
@@ -926,31 +926,31 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
926
926
|
"aria-label": n.arialabel,
|
|
927
927
|
controls: !1,
|
|
928
928
|
poster: n.imgSrc,
|
|
929
|
-
width:
|
|
930
|
-
height:
|
|
929
|
+
width: c.value.width,
|
|
930
|
+
height: c.value.height,
|
|
931
931
|
autoplay: !0,
|
|
932
932
|
loop: !0,
|
|
933
933
|
muted: !0
|
|
934
934
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
935
935
|
], 2)),
|
|
936
|
-
I(a)["card-label"] ? (
|
|
937
|
-
|
|
936
|
+
I(a)["card-label"] ? (o(), s("div", ca, [
|
|
937
|
+
u(n.$slots, "card-label")
|
|
938
938
|
])) : p("", !0),
|
|
939
|
-
n.variant === "product" ? (
|
|
939
|
+
n.variant === "product" ? (o(), s("div", {
|
|
940
940
|
key: 3,
|
|
941
941
|
class: m([
|
|
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)) : (o(), s("div", {
|
|
947
947
|
key: 4,
|
|
948
948
|
class: m([
|
|
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" ? (o(), s("p", ua, d(n.paragraph), 1)) : p("", !0)
|
|
954
954
|
], 38)
|
|
955
955
|
]));
|
|
956
956
|
}
|
|
@@ -963,20 +963,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
963
963
|
imageFit: { type: Boolean }
|
|
964
964
|
},
|
|
965
965
|
setup(e) {
|
|
966
|
-
return (a, r) => (
|
|
966
|
+
return (a, r) => (o(), s("div", pa, [
|
|
967
967
|
t("div", ma, [
|
|
968
|
-
a.image.filename ? (
|
|
968
|
+
a.image.filename ? (o(), s("div", {
|
|
969
969
|
key: 0,
|
|
970
970
|
class: m(["column-card__image", { cover: a.imageFit, contain: !a.imageFit }])
|
|
971
971
|
}, [
|
|
972
|
-
|
|
972
|
+
u(a.$slots, "column-card-image", P(O({
|
|
973
973
|
src: a.image.filename,
|
|
974
974
|
alt: a.image.alt
|
|
975
975
|
})), void 0, !0)
|
|
976
976
|
], 2)) : p("", !0),
|
|
977
977
|
t("h3", va, d(a.headline), 1),
|
|
978
978
|
t("div", fa, [
|
|
979
|
-
|
|
979
|
+
u(a.$slots, "column-card-body", {}, void 0, !0)
|
|
980
980
|
])
|
|
981
981
|
])
|
|
982
982
|
]));
|
|
@@ -1006,7 +1006,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1006
1006
|
}
|
|
1007
1007
|
},
|
|
1008
1008
|
setup(e) {
|
|
1009
|
-
return (a, r) => (
|
|
1009
|
+
return (a, r) => (o(), s("div", ya, [
|
|
1010
1010
|
S(Z, {
|
|
1011
1011
|
"label-dark": !1,
|
|
1012
1012
|
text: e.eventType ? e.eventType : ""
|
|
@@ -1037,7 +1037,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1037
1037
|
}
|
|
1038
1038
|
},
|
|
1039
1039
|
setup(e) {
|
|
1040
|
-
return (a, r) => (
|
|
1040
|
+
return (a, r) => (o(), s("div", qa, [
|
|
1041
1041
|
S(Z, {
|
|
1042
1042
|
"label-dark": !1,
|
|
1043
1043
|
text: e.label ? e.label : ""
|
|
@@ -1060,13 +1060,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1060
1060
|
accordions: {}
|
|
1061
1061
|
},
|
|
1062
1062
|
setup(e) {
|
|
1063
|
-
const a = q([]), r = (
|
|
1064
|
-
const
|
|
1065
|
-
|
|
1066
|
-
}, i = (
|
|
1067
|
-
return (
|
|
1063
|
+
const a = q([]), r = (l) => {
|
|
1064
|
+
const c = a.value.indexOf(l);
|
|
1065
|
+
c > -1 ? a.value.splice(c, 1) : a.value.push(l);
|
|
1066
|
+
}, i = (l) => a.value.includes(l);
|
|
1067
|
+
return (l, c) => (o(), s("section", Ta, [
|
|
1068
1068
|
t("div", Va, [
|
|
1069
|
-
(
|
|
1069
|
+
(o(!0), s(T, null, V(l.accordions, (n) => (o(), s("div", {
|
|
1070
1070
|
key: n._uid
|
|
1071
1071
|
}, [
|
|
1072
1072
|
t("div", Pa, [
|
|
@@ -1076,7 +1076,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1076
1076
|
}, [
|
|
1077
1077
|
t("h3", Fa, d(n.headline), 1),
|
|
1078
1078
|
t("span", Oa, [
|
|
1079
|
-
i(n._uid) ? (
|
|
1079
|
+
i(n._uid) ? (o(), s("img", Ha)) : (o(), s("img", za))
|
|
1080
1080
|
])
|
|
1081
1081
|
], 8, Ma),
|
|
1082
1082
|
t("div", {
|
|
@@ -1086,11 +1086,11 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1086
1086
|
})
|
|
1087
1087
|
}, [
|
|
1088
1088
|
t("div", Ra, [
|
|
1089
|
-
|
|
1089
|
+
u(l.$slots, "accordion-body", P(O({ body: n.bodytext })), void 0, !0)
|
|
1090
1090
|
]),
|
|
1091
1091
|
S(F, null, {
|
|
1092
1092
|
default: y(() => [
|
|
1093
|
-
n.image ?
|
|
1093
|
+
n.image ? u(l.$slots, "accordion-image", P(X({ key: 0 }, {
|
|
1094
1094
|
src: n.image.filename,
|
|
1095
1095
|
alt: n.image.alt,
|
|
1096
1096
|
class: "accordion__image"
|
|
@@ -1124,19 +1124,19 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1124
1124
|
}
|
|
1125
1125
|
},
|
|
1126
1126
|
setup(e) {
|
|
1127
|
-
return (a, r) => (
|
|
1127
|
+
return (a, r) => (o(), s("div", {
|
|
1128
1128
|
class: m([
|
|
1129
1129
|
"card-display",
|
|
1130
1130
|
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1131
1131
|
])
|
|
1132
1132
|
}, [
|
|
1133
1133
|
t("div", ja, [
|
|
1134
|
-
e.headline || e.paragraph ? (
|
|
1135
|
-
e.headline ? (
|
|
1136
|
-
e.paragraph ? (
|
|
1134
|
+
e.headline || e.paragraph ? (o(), s("div", Ka, [
|
|
1135
|
+
e.headline ? (o(), s("h2", Ua, d(e.headline), 1)) : p("", !0),
|
|
1136
|
+
e.paragraph ? (o(), s("p", Ga, d(e.paragraph), 1)) : p("", !0)
|
|
1137
1137
|
])) : p("", !0),
|
|
1138
1138
|
t("div", Ja, [
|
|
1139
|
-
|
|
1139
|
+
u(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1140
1140
|
])
|
|
1141
1141
|
])
|
|
1142
1142
|
], 2));
|
|
@@ -1153,36 +1153,36 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1153
1153
|
columns: {}
|
|
1154
1154
|
},
|
|
1155
1155
|
setup(e) {
|
|
1156
|
-
const a = e;
|
|
1157
|
-
return
|
|
1156
|
+
const a = e, r = L(() => a.bodytext.length > 0);
|
|
1157
|
+
return (i, l) => (o(), s("div", {
|
|
1158
1158
|
class: m([
|
|
1159
1159
|
"column-grid",
|
|
1160
|
-
|
|
1160
|
+
i.bgColor === "dark" ? "column-grid--dark" : i.bgColor === "light" ? "column-grid--light" : "column-grid--white"
|
|
1161
1161
|
])
|
|
1162
1162
|
}, [
|
|
1163
1163
|
t("div", Qa, [
|
|
1164
|
-
t("h2", Za, d(
|
|
1165
|
-
r.
|
|
1166
|
-
|
|
1164
|
+
t("h2", Za, d(i.headline), 1),
|
|
1165
|
+
r.value ? (o(), s("div", Xa, [
|
|
1166
|
+
u(i.$slots, "column-grid-body", P(O({ body: i.bodytext })), void 0, !0)
|
|
1167
1167
|
])) : p("", !0)
|
|
1168
1168
|
]),
|
|
1169
1169
|
t("div", xa, [
|
|
1170
|
-
(
|
|
1171
|
-
key:
|
|
1172
|
-
headline:
|
|
1173
|
-
bodytext:
|
|
1174
|
-
image:
|
|
1175
|
-
"image-fit":
|
|
1170
|
+
(o(!0), s(T, null, V(i.columns, (c) => (o(), D(fe, {
|
|
1171
|
+
key: c._uid,
|
|
1172
|
+
headline: c.headline,
|
|
1173
|
+
bodytext: c.bodytext,
|
|
1174
|
+
image: c.image,
|
|
1175
|
+
"image-fit": c.imageFit
|
|
1176
1176
|
}, {
|
|
1177
1177
|
"column-card-body": y(() => [
|
|
1178
|
-
|
|
1178
|
+
u(i.$slots, "column-card-body", P(O({ body: c.bodytext })), void 0, !0)
|
|
1179
1179
|
]),
|
|
1180
1180
|
"column-card-image": y(() => [
|
|
1181
|
-
|
|
1182
|
-
src:
|
|
1183
|
-
alt:
|
|
1181
|
+
c.image ? u(i.$slots, "column-card-image", P(X({ key: 0 }, {
|
|
1182
|
+
src: c.image.filename,
|
|
1183
|
+
alt: c.image.alt,
|
|
1184
1184
|
class: "column-card__image",
|
|
1185
|
-
style: { "object-fit":
|
|
1185
|
+
style: { "object-fit": c.imageFit ? "cover" : "contain" }
|
|
1186
1186
|
})), void 0, !0) : p("", !0)
|
|
1187
1187
|
]),
|
|
1188
1188
|
_: 2
|
|
@@ -1190,7 +1190,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1190
1190
|
])
|
|
1191
1191
|
], 2));
|
|
1192
1192
|
}
|
|
1193
|
-
}), to = /* @__PURE__ */ f(eo, [["__scopeId", "data-v-
|
|
1193
|
+
}), to = /* @__PURE__ */ f(eo, [["__scopeId", "data-v-4e2d5d31"]]), ao = { class: "facts__wrapper" }, oo = { class: "facts__content" }, lo = { class: "facts__headline" }, so = { class: "facts" }, io = { class: "fact__value" }, ro = { class: "fact__metric" }, no = {
|
|
1194
1194
|
key: 0,
|
|
1195
1195
|
class: "facts__link"
|
|
1196
1196
|
}, co = /* @__PURE__ */ g({
|
|
@@ -1217,11 +1217,11 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1217
1217
|
}) }
|
|
1218
1218
|
},
|
|
1219
1219
|
setup(e) {
|
|
1220
|
-
return (a, r) => (
|
|
1220
|
+
return (a, r) => (o(), s("div", ao, [
|
|
1221
1221
|
t("div", oo, [
|
|
1222
1222
|
t("h2", lo, d(a.headline), 1),
|
|
1223
1223
|
t("div", so, [
|
|
1224
|
-
(
|
|
1224
|
+
(o(!0), s(T, null, V(a.facts, (i) => (o(), s("div", {
|
|
1225
1225
|
key: i.value + i.metric,
|
|
1226
1226
|
class: "fact"
|
|
1227
1227
|
}, [
|
|
@@ -1233,13 +1233,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1233
1233
|
])
|
|
1234
1234
|
]))), 128))
|
|
1235
1235
|
]),
|
|
1236
|
-
a.link ? (
|
|
1236
|
+
a.link ? (o(), s("div", no, [
|
|
1237
1237
|
S(M, {
|
|
1238
1238
|
"link-type": "regular_light",
|
|
1239
1239
|
arrow: ""
|
|
1240
1240
|
}, {
|
|
1241
1241
|
default: y(() => [
|
|
1242
|
-
|
|
1242
|
+
u(a.$slots, "facts-link", {}, void 0, !0)
|
|
1243
1243
|
]),
|
|
1244
1244
|
_: 3
|
|
1245
1245
|
})
|
|
@@ -1261,24 +1261,24 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1261
1261
|
elements: { default: () => [] }
|
|
1262
1262
|
},
|
|
1263
1263
|
setup(e) {
|
|
1264
|
-
return (a, r) => (
|
|
1264
|
+
return (a, r) => (o(), s("div", _o, [
|
|
1265
1265
|
t("div", ho, [
|
|
1266
|
-
a.headline ? (
|
|
1266
|
+
a.headline ? (o(), s("div", po, [
|
|
1267
1267
|
t("h2", null, d(a.headline), 1)
|
|
1268
1268
|
])) : p("", !0),
|
|
1269
|
-
a.body ? (
|
|
1270
|
-
|
|
1269
|
+
a.body ? (o(), s("div", mo, [
|
|
1270
|
+
u(a.$slots, "features-body", {}, void 0, !0)
|
|
1271
1271
|
])) : p("", !0),
|
|
1272
1272
|
t("div", {
|
|
1273
1273
|
class: m(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1274
1274
|
}, [
|
|
1275
|
-
(
|
|
1275
|
+
(o(!0), s(T, null, V(a.elements, (i) => (o(), s("div", {
|
|
1276
1276
|
key: i.headline,
|
|
1277
1277
|
class: "features__element"
|
|
1278
1278
|
}, [
|
|
1279
1279
|
S(F, { class: "element__icon" }, {
|
|
1280
1280
|
default: y(() => [
|
|
1281
|
-
|
|
1281
|
+
u(a.$slots, "features-icon", P(O({
|
|
1282
1282
|
src: i.icon.src,
|
|
1283
1283
|
height: 30,
|
|
1284
1284
|
width: 30,
|
|
@@ -1303,16 +1303,16 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1303
1303
|
}
|
|
1304
1304
|
},
|
|
1305
1305
|
setup(e) {
|
|
1306
|
-
return (a, r) => (
|
|
1306
|
+
return (a, r) => (o(), s("div", yo, [
|
|
1307
1307
|
t("div", $o, [
|
|
1308
1308
|
t("div", ko, [
|
|
1309
1309
|
t("h2", wo, d(e.headline), 1),
|
|
1310
1310
|
t("div", Bo, [
|
|
1311
|
-
|
|
1311
|
+
u(a.$slots, "form-body", {}, void 0, !0)
|
|
1312
1312
|
])
|
|
1313
1313
|
]),
|
|
1314
1314
|
t("div", So, [
|
|
1315
|
-
|
|
1315
|
+
u(a.$slots, "form-script", {}, void 0, !0)
|
|
1316
1316
|
])
|
|
1317
1317
|
])
|
|
1318
1318
|
]));
|
|
@@ -1334,7 +1334,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1334
1334
|
}
|
|
1335
1335
|
},
|
|
1336
1336
|
setup(e) {
|
|
1337
|
-
return (a, r) => (
|
|
1337
|
+
return (a, r) => (o(), s("div", Co, [
|
|
1338
1338
|
t("div", {
|
|
1339
1339
|
class: m({
|
|
1340
1340
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1356,7 +1356,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1356
1356
|
}
|
|
1357
1357
|
},
|
|
1358
1358
|
setup(e) {
|
|
1359
|
-
return (a, r) => (
|
|
1359
|
+
return (a, r) => (o(), s("div", Vo, [
|
|
1360
1360
|
t("div", Po, [
|
|
1361
1361
|
t("div", Mo, [
|
|
1362
1362
|
t("div", Fo, [
|
|
@@ -1369,7 +1369,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1369
1369
|
arrow: ""
|
|
1370
1370
|
}, {
|
|
1371
1371
|
default: y(() => [
|
|
1372
|
-
|
|
1372
|
+
u(a.$slots, "hero-link", {}, void 0, !0)
|
|
1373
1373
|
]),
|
|
1374
1374
|
_: 3
|
|
1375
1375
|
})
|
|
@@ -1379,10 +1379,10 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1379
1379
|
t("div", Ho, [
|
|
1380
1380
|
Ro,
|
|
1381
1381
|
t("div", No, [
|
|
1382
|
-
|
|
1382
|
+
u(a.$slots, "hero-video", {}, void 0, !0)
|
|
1383
1383
|
]),
|
|
1384
1384
|
t("div", Eo, [
|
|
1385
|
-
|
|
1385
|
+
u(a.$slots, "hero-image", {}, void 0, !0)
|
|
1386
1386
|
])
|
|
1387
1387
|
])
|
|
1388
1388
|
])
|
|
@@ -1412,12 +1412,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1412
1412
|
}
|
|
1413
1413
|
},
|
|
1414
1414
|
setup(e) {
|
|
1415
|
-
return (a, r) => (
|
|
1415
|
+
return (a, r) => (o(), s("div", Uo, [
|
|
1416
1416
|
t("div", Go, [
|
|
1417
1417
|
t("div", Jo, [
|
|
1418
1418
|
S(F, null, {
|
|
1419
1419
|
default: y(() => [
|
|
1420
|
-
|
|
1420
|
+
u(a.$slots, "image", P(O({
|
|
1421
1421
|
width: 984,
|
|
1422
1422
|
height: e.fullHeight ? "100%" : 554,
|
|
1423
1423
|
src: e.src,
|
|
@@ -1458,34 +1458,34 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1458
1458
|
light: "gallery__wrapper--light",
|
|
1459
1459
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1460
1460
|
}, r = e, i = L(() => a[r.bgColor]);
|
|
1461
|
-
return (
|
|
1461
|
+
return (l, c) => (o(), s("div", {
|
|
1462
1462
|
class: m(["gallery__wrapper", i.value])
|
|
1463
1463
|
}, [
|
|
1464
1464
|
t("div", {
|
|
1465
1465
|
class: m([
|
|
1466
1466
|
"gallery__content",
|
|
1467
|
-
|
|
1467
|
+
l.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1468
1468
|
])
|
|
1469
1469
|
}, [
|
|
1470
1470
|
t("div", Zo, [
|
|
1471
|
-
|
|
1471
|
+
l.mediaLarge && l.mediaType === "image" ? (o(), s("div", Xo, [
|
|
1472
1472
|
S(F, null, {
|
|
1473
1473
|
default: y(() => [
|
|
1474
|
-
|
|
1474
|
+
u(l.$slots, "image-large", P(O({
|
|
1475
1475
|
width: 617,
|
|
1476
1476
|
height: 530,
|
|
1477
|
-
src:
|
|
1478
|
-
alt:
|
|
1477
|
+
src: l.mediaLarge.src,
|
|
1478
|
+
alt: l.mediaLarge.alt
|
|
1479
1479
|
})))
|
|
1480
1480
|
]),
|
|
1481
1481
|
_: 3
|
|
1482
1482
|
})
|
|
1483
1483
|
])) : p("", !0),
|
|
1484
|
-
|
|
1484
|
+
l.mediaLarge && l.mediaType === "video" ? (o(), s("div", xo, [
|
|
1485
1485
|
S(ee, {
|
|
1486
|
-
src:
|
|
1486
|
+
src: l.mediaLarge.src,
|
|
1487
1487
|
"local-video": "",
|
|
1488
|
-
"aria-label":
|
|
1488
|
+
"aria-label": l.mediaLarge.alt,
|
|
1489
1489
|
controls: !1,
|
|
1490
1490
|
height: "530",
|
|
1491
1491
|
width: "617",
|
|
@@ -1497,19 +1497,19 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1497
1497
|
])) : p("", !0)
|
|
1498
1498
|
]),
|
|
1499
1499
|
t("div", {
|
|
1500
|
-
style: x([
|
|
1500
|
+
style: x([l.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
1501
1501
|
class: m([
|
|
1502
1502
|
"gallery__small",
|
|
1503
|
-
|
|
1503
|
+
l.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1504
1504
|
])
|
|
1505
1505
|
}, [
|
|
1506
|
-
(
|
|
1506
|
+
(o(!0), s(T, null, V(l.mediaSmall, (n) => (o(), s("div", {
|
|
1507
1507
|
key: n.src + n.alt,
|
|
1508
1508
|
class: "image image--small"
|
|
1509
1509
|
}, [
|
|
1510
1510
|
S(F, null, {
|
|
1511
1511
|
default: y(() => [
|
|
1512
|
-
|
|
1512
|
+
u(l.$slots, "image-small", P(O({
|
|
1513
1513
|
width: 328,
|
|
1514
1514
|
height: 246,
|
|
1515
1515
|
src: n.src,
|
|
@@ -1519,8 +1519,8 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1519
1519
|
_: 2
|
|
1520
1520
|
}, 1024)
|
|
1521
1521
|
]))), 128)),
|
|
1522
|
-
|
|
1523
|
-
t("p", null, d(
|
|
1522
|
+
l.mediaSmall.length < 2 ? (o(), s("div", el, [
|
|
1523
|
+
t("p", null, d(l.body), 1)
|
|
1524
1524
|
])) : p("", !0)
|
|
1525
1525
|
], 6)
|
|
1526
1526
|
], 2)
|
|
@@ -1547,20 +1547,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1547
1547
|
}
|
|
1548
1548
|
},
|
|
1549
1549
|
setup(e) {
|
|
1550
|
-
return (a, r) => (
|
|
1550
|
+
return (a, r) => (o(), s("div", ol, [
|
|
1551
1551
|
t("div", ll, [
|
|
1552
|
-
e.headline || e.body ? (
|
|
1553
|
-
e.headline ? (
|
|
1554
|
-
e.body ? (
|
|
1552
|
+
e.headline || e.body ? (o(), s("div", sl, [
|
|
1553
|
+
e.headline ? (o(), s("h2", il, d(e.headline), 1)) : p("", !0),
|
|
1554
|
+
e.body ? (o(), s("p", rl, d(e.body), 1)) : p("", !0)
|
|
1555
1555
|
])) : p("", !0),
|
|
1556
1556
|
t("div", nl, [
|
|
1557
|
-
(
|
|
1557
|
+
(o(!0), s(T, null, V(e.logos, (i) => (o(), s("div", {
|
|
1558
1558
|
key: i.src + i.alt,
|
|
1559
1559
|
class: "logo-wall__logo"
|
|
1560
1560
|
}, [
|
|
1561
1561
|
S(F, null, {
|
|
1562
1562
|
default: y(() => [
|
|
1563
|
-
|
|
1563
|
+
u(a.$slots, "logo-wall-logo", P(O({
|
|
1564
1564
|
width: 130,
|
|
1565
1565
|
height: 130,
|
|
1566
1566
|
src: i.src,
|
|
@@ -1577,7 +1577,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1577
1577
|
arrow: !0
|
|
1578
1578
|
}, {
|
|
1579
1579
|
default: y(() => [
|
|
1580
|
-
|
|
1580
|
+
u(a.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1581
1581
|
]),
|
|
1582
1582
|
_: 3
|
|
1583
1583
|
})
|
|
@@ -1604,28 +1604,28 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1604
1604
|
blue: "micro-stories__wrapper--blue",
|
|
1605
1605
|
dark: "micro-stories__wrapper--dark"
|
|
1606
1606
|
}, r = L(() => a[i.bgColor]), i = e;
|
|
1607
|
-
return (
|
|
1607
|
+
return (l, c) => (o(), s("div", {
|
|
1608
1608
|
class: m(["micro-stories__wrapper", r.value])
|
|
1609
1609
|
}, [
|
|
1610
1610
|
t("div", _l, [
|
|
1611
|
-
|
|
1612
|
-
t("h2", null, d(
|
|
1611
|
+
l.headline ? (o(), s("div", hl, [
|
|
1612
|
+
t("h2", null, d(l.headline), 1)
|
|
1613
1613
|
])) : p("", !0),
|
|
1614
|
-
|
|
1615
|
-
t("p", null, d(
|
|
1614
|
+
l.body ? (o(), s("div", pl, [
|
|
1615
|
+
t("p", null, d(l.body), 1)
|
|
1616
1616
|
])) : p("", !0)
|
|
1617
1617
|
]),
|
|
1618
1618
|
t("div", ml, [
|
|
1619
|
-
|
|
1619
|
+
u(l.$slots, "micro-stories-slides")
|
|
1620
1620
|
]),
|
|
1621
|
-
|
|
1621
|
+
u(l.$slots, "micro-stories-controls")
|
|
1622
1622
|
], 2));
|
|
1623
1623
|
}
|
|
1624
1624
|
}), fl = {}, gl = { class: "policy__wrapper" }, bl = { class: "policy__content" };
|
|
1625
1625
|
function yl(e, a) {
|
|
1626
|
-
return
|
|
1626
|
+
return o(), s("div", gl, [
|
|
1627
1627
|
t("div", bl, [
|
|
1628
|
-
|
|
1628
|
+
u(e.$slots, "default", {}, void 0, !0)
|
|
1629
1629
|
])
|
|
1630
1630
|
]);
|
|
1631
1631
|
}
|
|
@@ -1670,11 +1670,11 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1670
1670
|
}
|
|
1671
1671
|
},
|
|
1672
1672
|
setup(e) {
|
|
1673
|
-
return (a, r) => (
|
|
1673
|
+
return (a, r) => (o(), s("div", kl, [
|
|
1674
1674
|
t("div", wl, [
|
|
1675
1675
|
t("div", Bl, d(e.headline), 1),
|
|
1676
1676
|
t("div", Sl, [
|
|
1677
|
-
e.videoSrc !== "" ? (
|
|
1677
|
+
e.videoSrc !== "" ? (o(), D(ee, {
|
|
1678
1678
|
key: 0,
|
|
1679
1679
|
play: "",
|
|
1680
1680
|
"local-video": !0,
|
|
@@ -1685,25 +1685,25 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1685
1685
|
autoplay: "",
|
|
1686
1686
|
loop: "",
|
|
1687
1687
|
muted: ""
|
|
1688
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (
|
|
1688
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (o(), D(I(F), { key: 1 }, {
|
|
1689
1689
|
default: y(() => [
|
|
1690
|
-
|
|
1690
|
+
u(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1691
1691
|
]),
|
|
1692
1692
|
_: 3
|
|
1693
1693
|
})),
|
|
1694
1694
|
t("div", Il, [
|
|
1695
|
-
e.logoSrc ? (
|
|
1695
|
+
e.logoSrc ? (o(), s("div", ql, [
|
|
1696
1696
|
S(I(F), null, {
|
|
1697
1697
|
default: y(() => [
|
|
1698
|
-
|
|
1698
|
+
u(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1699
1699
|
]),
|
|
1700
1700
|
_: 3
|
|
1701
1701
|
})
|
|
1702
1702
|
])) : p("", !0),
|
|
1703
|
-
e.isCertified ? (
|
|
1703
|
+
e.isCertified ? (o(), s("div", Cl, [
|
|
1704
1704
|
S(I(F), null, {
|
|
1705
1705
|
default: y(() => [
|
|
1706
|
-
|
|
1706
|
+
u(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1707
1707
|
]),
|
|
1708
1708
|
_: 3
|
|
1709
1709
|
})
|
|
@@ -1734,83 +1734,83 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1734
1734
|
light: "promo__wrapper--light",
|
|
1735
1735
|
default: "promo__wrapper--default"
|
|
1736
1736
|
}, r = e, i = L(() => a[r.variant]);
|
|
1737
|
-
return (
|
|
1737
|
+
return (l, c) => (o(), s("div", {
|
|
1738
1738
|
class: m([
|
|
1739
1739
|
"promo__wrapper",
|
|
1740
1740
|
i.value,
|
|
1741
|
-
|
|
1742
|
-
|
|
1741
|
+
l.teaser ? "promo__wrapper--teaser" : "",
|
|
1742
|
+
l.multiply ? "promo__wrapper--multiply" : ""
|
|
1743
1743
|
])
|
|
1744
1744
|
}, [
|
|
1745
1745
|
t("div", Dl, [
|
|
1746
|
-
|
|
1746
|
+
l.mediaType === "image" ? (o(), s("div", {
|
|
1747
1747
|
key: 0,
|
|
1748
1748
|
class: m([
|
|
1749
1749
|
"promo__image",
|
|
1750
|
-
|
|
1750
|
+
l.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1751
1751
|
])
|
|
1752
1752
|
}, [
|
|
1753
1753
|
S(F, null, {
|
|
1754
1754
|
default: y(() => [
|
|
1755
|
-
|
|
1755
|
+
u(l.$slots, "promo-image", P(O({ src: l.src, width: 1920, alt: l.alt, height: 1080 })))
|
|
1756
1756
|
]),
|
|
1757
1757
|
_: 3
|
|
1758
1758
|
})
|
|
1759
1759
|
], 2)) : p("", !0),
|
|
1760
|
-
|
|
1760
|
+
l.mediaType === "video" ? (o(), s("div", {
|
|
1761
1761
|
key: 1,
|
|
1762
1762
|
class: m([
|
|
1763
1763
|
"promo__video",
|
|
1764
|
-
|
|
1764
|
+
l.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1765
1765
|
])
|
|
1766
1766
|
}, [
|
|
1767
1767
|
S(ee, {
|
|
1768
|
-
src:
|
|
1768
|
+
src: l.src,
|
|
1769
1769
|
"local-video": "",
|
|
1770
|
-
"aria-label":
|
|
1770
|
+
"aria-label": l.alt,
|
|
1771
1771
|
controls: !1,
|
|
1772
1772
|
autoplay: "",
|
|
1773
1773
|
loop: "",
|
|
1774
1774
|
muted: "",
|
|
1775
1775
|
play: "",
|
|
1776
|
-
poster:
|
|
1776
|
+
poster: l.fallbackImage
|
|
1777
1777
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1778
1778
|
], 2)) : p("", !0),
|
|
1779
1779
|
t("div", {
|
|
1780
1780
|
class: m([
|
|
1781
1781
|
"promo__text",
|
|
1782
|
-
|
|
1782
|
+
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1783
1783
|
])
|
|
1784
1784
|
}, [
|
|
1785
|
-
|
|
1785
|
+
l.label ? (o(), D(Z, {
|
|
1786
1786
|
key: 0,
|
|
1787
|
-
text:
|
|
1788
|
-
"label-dark":
|
|
1787
|
+
text: l.label,
|
|
1788
|
+
"label-dark": l.variant === "dark"
|
|
1789
1789
|
}, null, 8, ["text", "label-dark"])) : p("", !0),
|
|
1790
1790
|
t("div", {
|
|
1791
1791
|
class: m([
|
|
1792
1792
|
"promo__title",
|
|
1793
|
-
|
|
1793
|
+
l.variant === "dark" ? "promo__title--dark" : ""
|
|
1794
1794
|
])
|
|
1795
1795
|
}, [
|
|
1796
|
-
|
|
1796
|
+
u(l.$slots, "promo-headline")
|
|
1797
1797
|
], 2),
|
|
1798
|
-
|
|
1798
|
+
l.linkType === "link" ? (o(), D(M, {
|
|
1799
1799
|
key: 1,
|
|
1800
|
-
"link-type":
|
|
1800
|
+
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
1801
1801
|
arrow: ""
|
|
1802
1802
|
}, {
|
|
1803
1803
|
default: y(() => [
|
|
1804
|
-
|
|
1804
|
+
u(l.$slots, "promo-link")
|
|
1805
1805
|
]),
|
|
1806
1806
|
_: 3
|
|
1807
1807
|
}, 8, ["link-type"])) : p("", !0),
|
|
1808
|
-
|
|
1808
|
+
l.linkType === "button" ? (o(), D(M, {
|
|
1809
1809
|
key: 2,
|
|
1810
|
-
"link-type":
|
|
1810
|
+
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
1811
1811
|
}, {
|
|
1812
1812
|
default: y(() => [
|
|
1813
|
-
|
|
1813
|
+
u(l.$slots, "promo-link")
|
|
1814
1814
|
]),
|
|
1815
1815
|
_: 3
|
|
1816
1816
|
}, 8, ["link-type"])) : p("", !0)
|
|
@@ -1843,16 +1843,16 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1843
1843
|
}
|
|
1844
1844
|
},
|
|
1845
1845
|
setup(e) {
|
|
1846
|
-
return (a, r) => (
|
|
1846
|
+
return (a, r) => (o(), s("div", Ml, [
|
|
1847
1847
|
t("div", Fl, [
|
|
1848
1848
|
Ol,
|
|
1849
1849
|
t("div", zl, [
|
|
1850
1850
|
t("p", Hl, d(e.quote), 1),
|
|
1851
1851
|
t("div", Rl, [
|
|
1852
|
-
e.authorImage ? (
|
|
1852
|
+
e.authorImage ? (o(), s("div", Nl, [
|
|
1853
1853
|
S(F, null, {
|
|
1854
1854
|
default: y(() => [
|
|
1855
|
-
|
|
1855
|
+
u(a.$slots, "author-image", P(O({
|
|
1856
1856
|
src: e.authorImage + "/m/100x100",
|
|
1857
1857
|
width: 60,
|
|
1858
1858
|
height: 60
|
|
@@ -1889,19 +1889,19 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1889
1889
|
label: { default: "" }
|
|
1890
1890
|
},
|
|
1891
1891
|
setup(e) {
|
|
1892
|
-
return (a, r) => (
|
|
1892
|
+
return (a, r) => (o(), s("div", {
|
|
1893
1893
|
class: m([
|
|
1894
1894
|
"rich-text",
|
|
1895
1895
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1896
1896
|
])
|
|
1897
1897
|
}, [
|
|
1898
1898
|
t("div", Jl, [
|
|
1899
|
-
a.label ? (
|
|
1899
|
+
a.label ? (o(), D(Z, {
|
|
1900
1900
|
key: 0,
|
|
1901
1901
|
text: a.label,
|
|
1902
1902
|
"label-dark": !1
|
|
1903
1903
|
}, null, 8, ["text"])) : p("", !0),
|
|
1904
|
-
a.headline ? (
|
|
1904
|
+
a.headline ? (o(), s("h2", {
|
|
1905
1905
|
key: 1,
|
|
1906
1906
|
class: m([
|
|
1907
1907
|
"rich-text__headline",
|
|
@@ -1920,15 +1920,15 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1920
1920
|
a.bulletList || a.image ? "rich-text__body--content-right" : ""
|
|
1921
1921
|
])
|
|
1922
1922
|
}, [
|
|
1923
|
-
|
|
1924
|
-
a.links ? (
|
|
1925
|
-
|
|
1923
|
+
u(a.$slots, "rich-text-content"),
|
|
1924
|
+
a.links ? (o(), s("div", Wl, [
|
|
1925
|
+
u(a.$slots, "rich-text-links")
|
|
1926
1926
|
])) : p("", !0)
|
|
1927
1927
|
], 2),
|
|
1928
|
-
a.bulletList ? (
|
|
1929
|
-
|
|
1928
|
+
a.bulletList ? (o(), s("div", Yl, [
|
|
1929
|
+
u(a.$slots, "rich-text-bullet-list")
|
|
1930
1930
|
])) : p("", !0),
|
|
1931
|
-
a.image ? (
|
|
1931
|
+
a.image ? (o(), s("div", {
|
|
1932
1932
|
key: 1,
|
|
1933
1933
|
class: m([
|
|
1934
1934
|
"rich-text__image",
|
|
@@ -1937,7 +1937,7 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1937
1937
|
}, [
|
|
1938
1938
|
S(F, null, {
|
|
1939
1939
|
default: y(() => [
|
|
1940
|
-
|
|
1940
|
+
u(a.$slots, "rich-text-image", P(O({ width: 865, height: 307 })))
|
|
1941
1941
|
]),
|
|
1942
1942
|
_: 3
|
|
1943
1943
|
})
|
|
@@ -1948,15 +1948,15 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1948
1948
|
}
|
|
1949
1949
|
}), Zl = /* @__PURE__ */ f(Ql, [["__scopeId", "data-v-16ba7206"]]), Xl = {}, xl = { class: "rich-text" }, es = { class: "rich-text__wrapper" }, ts = { class: "rich-text__content rich-text__content--left-aligned" }, as = { class: "rich-text__body" };
|
|
1950
1950
|
function os(e, a) {
|
|
1951
|
-
return
|
|
1951
|
+
return o(), s("div", xl, [
|
|
1952
1952
|
t("div", es, [
|
|
1953
1953
|
t("div", ts, [
|
|
1954
1954
|
t("div", as, [
|
|
1955
1955
|
t("div", null, [
|
|
1956
|
-
|
|
1956
|
+
u(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
1957
1957
|
]),
|
|
1958
1958
|
t("div", null, [
|
|
1959
|
-
|
|
1959
|
+
u(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
1960
1960
|
])
|
|
1961
1961
|
])
|
|
1962
1962
|
])
|
|
@@ -1978,8 +1978,8 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
1978
1978
|
return pe(() => {
|
|
1979
1979
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
1980
1980
|
(i) => {
|
|
1981
|
-
i.forEach((
|
|
1982
|
-
|
|
1981
|
+
i.forEach((l) => {
|
|
1982
|
+
l.isIntersecting && (l.target.classList.add("visible"), l.target.classList.remove("faded"), r.unobserve(l.target));
|
|
1983
1983
|
});
|
|
1984
1984
|
},
|
|
1985
1985
|
{
|
|
@@ -1989,10 +1989,10 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
1989
1989
|
a.forEach((i) => {
|
|
1990
1990
|
r.observe(i);
|
|
1991
1991
|
});
|
|
1992
|
-
}), (a, r) => (
|
|
1992
|
+
}), (a, r) => (o(), s("div", is, [
|
|
1993
1993
|
t("div", rs, [
|
|
1994
1994
|
t("div", ns, [
|
|
1995
|
-
(
|
|
1995
|
+
(o(!0), s(T, null, V(e.timelineItems, (i) => (o(), s("div", {
|
|
1996
1996
|
key: i.year,
|
|
1997
1997
|
class: "timeline__item faded"
|
|
1998
1998
|
}, [
|
|
@@ -2001,7 +2001,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2001
2001
|
t("div", us, [
|
|
2002
2002
|
S(F, null, {
|
|
2003
2003
|
default: y(() => [
|
|
2004
|
-
i.media.src ?
|
|
2004
|
+
i.media.src ? u(a.$slots, "timeline-image", P(X({ key: 0 }, { src: i.media.src, alt: i.media.alt })), void 0, !0) : p("", !0)
|
|
2005
2005
|
]),
|
|
2006
2006
|
_: 2
|
|
2007
2007
|
}, 1024),
|
|
@@ -2035,11 +2035,11 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2035
2035
|
}
|
|
2036
2036
|
},
|
|
2037
2037
|
setup(e) {
|
|
2038
|
-
return (a, r) => (
|
|
2038
|
+
return (a, r) => (o(), s("div", ms, [
|
|
2039
2039
|
t("div", vs, [
|
|
2040
|
-
e.headline ? (
|
|
2041
|
-
|
|
2042
|
-
e.description ? (
|
|
2040
|
+
e.headline ? (o(), s("h2", fs, d(e.headline), 1)) : p("", !0),
|
|
2041
|
+
u(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2042
|
+
e.description ? (o(), s("p", gs, d(e.description), 1)) : p("", !0)
|
|
2043
2043
|
])
|
|
2044
2044
|
]));
|
|
2045
2045
|
}
|
|
@@ -2063,17 +2063,17 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2063
2063
|
}) }
|
|
2064
2064
|
},
|
|
2065
2065
|
setup(e) {
|
|
2066
|
-
return (a, r) => (
|
|
2066
|
+
return (a, r) => (o(), s("div", $s, [
|
|
2067
2067
|
t("div", ks, [
|
|
2068
2068
|
t("div", ws, [
|
|
2069
2069
|
t("div", null, [
|
|
2070
2070
|
t("h1", Bs, d(a.hero.headline), 1),
|
|
2071
2071
|
t("p", Ss, d(a.hero.description), 1),
|
|
2072
|
-
a.hero.showStats ? p("", !0) : (
|
|
2073
|
-
|
|
2072
|
+
a.hero.showStats ? p("", !0) : (o(), s("div", Is, [
|
|
2073
|
+
u(a.$slots, "button", {}, void 0, !0)
|
|
2074
2074
|
]))
|
|
2075
2075
|
]),
|
|
2076
|
-
a.hero.showStats ? (
|
|
2076
|
+
a.hero.showStats ? (o(), s("div", qs, [
|
|
2077
2077
|
t("div", Cs, [
|
|
2078
2078
|
t("div", As, [
|
|
2079
2079
|
t("div", Ls, d(a.hero.lessonValue), 1),
|
|
@@ -2098,11 +2098,11 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2098
2098
|
}
|
|
2099
2099
|
},
|
|
2100
2100
|
setup(e) {
|
|
2101
|
-
return (a, r) => (
|
|
2101
|
+
return (a, r) => (o(), s("div", Os, [
|
|
2102
2102
|
t("div", zs, [
|
|
2103
2103
|
t("h1", Hs, d(e.headline), 1),
|
|
2104
2104
|
t("div", Rs, [
|
|
2105
|
-
|
|
2105
|
+
u(a.$slots, "not-found-body", {}, void 0, !0)
|
|
2106
2106
|
])
|
|
2107
2107
|
])
|
|
2108
2108
|
]));
|
|
@@ -2121,14 +2121,14 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2121
2121
|
},
|
|
2122
2122
|
emits: ["clearFilters"],
|
|
2123
2123
|
setup(e) {
|
|
2124
|
-
return (a, r) => (
|
|
2124
|
+
return (a, r) => (o(), s("div", js, [
|
|
2125
2125
|
t("div", Ks, [
|
|
2126
2126
|
t("div", Us, [
|
|
2127
|
-
|
|
2127
|
+
u(a.$slots, "filter-dropdowns")
|
|
2128
2128
|
]),
|
|
2129
2129
|
t("div", Gs, [
|
|
2130
|
-
|
|
2131
|
-
e.hasChips ? (
|
|
2130
|
+
u(a.$slots, "filter-chips"),
|
|
2131
|
+
e.hasChips ? (o(), s("button", {
|
|
2132
2132
|
key: 0,
|
|
2133
2133
|
class: "filter__clear",
|
|
2134
2134
|
onClick: r[0] || (r[0] = (i) => a.$emit("clearFilters"))
|
|
@@ -2178,29 +2178,29 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2178
2178
|
},
|
|
2179
2179
|
emits: ["changeRegionClicked"],
|
|
2180
2180
|
setup(e) {
|
|
2181
|
-
return (a, r) => (
|
|
2181
|
+
return (a, r) => (o(), s("div", Ys, [
|
|
2182
2182
|
t("footer", Qs, [
|
|
2183
|
-
a.language === "zh" ? (
|
|
2183
|
+
a.language === "zh" ? (o(), s("img", Zs)) : p("", !0),
|
|
2184
2184
|
t("div", Xs, [
|
|
2185
|
-
(
|
|
2185
|
+
(o(!0), s(T, null, V(a.footerSections, (i) => (o(), s("div", {
|
|
2186
2186
|
key: i.title,
|
|
2187
2187
|
class: "section"
|
|
2188
2188
|
}, [
|
|
2189
2189
|
t("span", xs, d(i.title), 1),
|
|
2190
2190
|
t("nav", null, [
|
|
2191
2191
|
t("ul", ei, [
|
|
2192
|
-
|
|
2192
|
+
u(a.$slots, "section-links", {
|
|
2193
2193
|
links: i.links
|
|
2194
2194
|
})
|
|
2195
2195
|
])
|
|
2196
2196
|
])
|
|
2197
2197
|
]))), 128)),
|
|
2198
2198
|
t("div", ti, [
|
|
2199
|
-
a.language === "zh" ? (
|
|
2199
|
+
a.language === "zh" ? (o(), s("span", ai, "名傲移动机器人(上海)有限公司")) : (o(), s("span", oi, "Mobile Industrial Robots A/S")),
|
|
2200
2200
|
t("address", null, [
|
|
2201
|
-
a.language === "zh" ? (
|
|
2202
|
-
a.language === "zh" ? (
|
|
2203
|
-
a.language !== "zh" ? (
|
|
2201
|
+
a.language === "zh" ? (o(), s("span", li, "上海浦东新区金桥出口加工区")) : (o(), s("span", si, "Energivej 51")),
|
|
2202
|
+
a.language === "zh" ? (o(), s("span", ii, "桂桥路1201号10栋2楼")) : (o(), s("span", ri, "5260 Odense S")),
|
|
2203
|
+
a.language !== "zh" ? (o(), s("span", ni, "CVR: 35251235")) : p("", !0),
|
|
2204
2204
|
di,
|
|
2205
2205
|
S(M, {
|
|
2206
2206
|
class: "footer__contact",
|
|
@@ -2208,7 +2208,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2208
2208
|
underline: "false"
|
|
2209
2209
|
}, {
|
|
2210
2210
|
default: y(() => [
|
|
2211
|
-
a.language === "zh" ? (
|
|
2211
|
+
a.language === "zh" ? (o(), s("a", ci, "china@mir-robots.com")) : (o(), s("a", ui, "mail@mir-robots.com"))
|
|
2212
2212
|
]),
|
|
2213
2213
|
_: 1
|
|
2214
2214
|
}),
|
|
@@ -2218,7 +2218,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2218
2218
|
underline: "false"
|
|
2219
2219
|
}, {
|
|
2220
2220
|
default: y(() => [
|
|
2221
|
-
a.language === "zh" ? (
|
|
2221
|
+
a.language === "zh" ? (o(), s("a", _i, "+86 13661856951(微信同号)")) : (o(), s("a", hi, "+45 20 377 577"))
|
|
2222
2222
|
]),
|
|
2223
2223
|
_: 1
|
|
2224
2224
|
})
|
|
@@ -2237,11 +2237,11 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2237
2237
|
G(d(a.changeRegion), 1)
|
|
2238
2238
|
])
|
|
2239
2239
|
]),
|
|
2240
|
-
|
|
2241
|
-
|
|
2240
|
+
u(a.$slots, "footer-privacy-link"),
|
|
2241
|
+
u(a.$slots, "footer-cookie-link")
|
|
2242
2242
|
]),
|
|
2243
|
-
a.language !== "zh" ? (
|
|
2244
|
-
(
|
|
2243
|
+
a.language !== "zh" ? (o(), s("div", gi, [
|
|
2244
|
+
(o(!0), s(T, null, V(a.socialMedia, (i) => (o(), D(M, {
|
|
2245
2245
|
key: i.title,
|
|
2246
2246
|
underline: "false",
|
|
2247
2247
|
"link-type": "regular"
|
|
@@ -2261,8 +2261,8 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2261
2261
|
]),
|
|
2262
2262
|
_: 2
|
|
2263
2263
|
}, 1024))), 128))
|
|
2264
|
-
])) : (
|
|
2265
|
-
(
|
|
2264
|
+
])) : (o(), s("div", yi, [
|
|
2265
|
+
(o(!0), s(T, null, V(a.socialMediaChina, (i) => (o(), D(M, {
|
|
2266
2266
|
key: i.title,
|
|
2267
2267
|
underline: "false",
|
|
2268
2268
|
"link-type": "regular"
|
|
@@ -2384,25 +2384,25 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2384
2384
|
],
|
|
2385
2385
|
setup(e, { expose: a, emit: r }) {
|
|
2386
2386
|
let i = null;
|
|
2387
|
-
const
|
|
2388
|
-
let
|
|
2387
|
+
const l = e;
|
|
2388
|
+
let c = q(l.burgerState), n = q(l.search), _ = q(l.showDropDown), b = q(l.showPortalSwitcherDropDown), v = q(l.showProfileDropDown), k = q(l.isAuthenticated);
|
|
2389
2389
|
Y(
|
|
2390
|
-
() =>
|
|
2391
|
-
($) =>
|
|
2390
|
+
() => l.burgerState,
|
|
2391
|
+
($) => c.value = $
|
|
2392
2392
|
), Y(
|
|
2393
|
-
() =>
|
|
2393
|
+
() => l.search,
|
|
2394
2394
|
($) => n.value = $
|
|
2395
2395
|
), Y(
|
|
2396
|
-
() =>
|
|
2396
|
+
() => l.showDropDown,
|
|
2397
2397
|
($) => _.value = $
|
|
2398
2398
|
), Y(
|
|
2399
|
-
() =>
|
|
2399
|
+
() => l.showPortalSwitcherDropDown,
|
|
2400
2400
|
($) => b.value = $
|
|
2401
2401
|
), Y(
|
|
2402
|
-
() =>
|
|
2402
|
+
() => l.showProfileDropDown,
|
|
2403
2403
|
($) => v.value = $
|
|
2404
2404
|
), Y(
|
|
2405
|
-
() =>
|
|
2405
|
+
() => l.isAuthenticated,
|
|
2406
2406
|
($) => k.value = $
|
|
2407
2407
|
), pe(() => {
|
|
2408
2408
|
i = ($) => {
|
|
@@ -2422,7 +2422,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2422
2422
|
v.value = !v.value, w("update:showProfileDropDown", v.value);
|
|
2423
2423
|
}
|
|
2424
2424
|
function re() {
|
|
2425
|
-
|
|
2425
|
+
c.value = !c.value, w("update:burgerState", c.value);
|
|
2426
2426
|
}
|
|
2427
2427
|
let U = q(null), ae = q(null);
|
|
2428
2428
|
function ne() {
|
|
@@ -2430,30 +2430,30 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2430
2430
|
}
|
|
2431
2431
|
return a({
|
|
2432
2432
|
defocusSearchButton: ne
|
|
2433
|
-
}), ($, E) => (
|
|
2433
|
+
}), ($, E) => (o(), s("div", Bi, [
|
|
2434
2434
|
t("nav", null, [
|
|
2435
2435
|
t("div", Si, [
|
|
2436
2436
|
t("div", Ii, [
|
|
2437
|
-
|
|
2437
|
+
u($.$slots, "link-logo", {}, void 0, !0)
|
|
2438
2438
|
]),
|
|
2439
2439
|
t("ul", qi, [
|
|
2440
|
-
|
|
2440
|
+
u($.$slots, "main-nav-items", {}, void 0, !0)
|
|
2441
2441
|
]),
|
|
2442
|
-
e.useDropdown ? (
|
|
2442
|
+
e.useDropdown ? (o(), s("div", Ci, [
|
|
2443
2443
|
t("button", {
|
|
2444
2444
|
class: "nav-dropdown-btn",
|
|
2445
2445
|
onClick: te
|
|
2446
2446
|
}, [
|
|
2447
|
-
|
|
2448
|
-
I(_) === !1 ? (
|
|
2447
|
+
u($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2448
|
+
I(_) === !1 ? (o(), s("img", Ai)) : (o(), s("img", Li))
|
|
2449
2449
|
]),
|
|
2450
2450
|
K(t("div", Di, [
|
|
2451
|
-
|
|
2451
|
+
u($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2452
2452
|
], 512), [
|
|
2453
2453
|
[Q, I(_)]
|
|
2454
2454
|
])
|
|
2455
2455
|
], 512)) : p("", !0),
|
|
2456
|
-
I(n) ? (
|
|
2456
|
+
I(n) ? (o(), s("div", Ti, [
|
|
2457
2457
|
t("button", {
|
|
2458
2458
|
ref_key: "navSearchButton",
|
|
2459
2459
|
ref: U,
|
|
@@ -2464,21 +2464,21 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2464
2464
|
})
|
|
2465
2465
|
}, [
|
|
2466
2466
|
t("img", {
|
|
2467
|
-
src: I(
|
|
2467
|
+
src: I(c) === !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2468
2468
|
alt: "search icon",
|
|
2469
2469
|
width: "20",
|
|
2470
2470
|
height: "20"
|
|
2471
2471
|
}, null, 8, Vi)
|
|
2472
2472
|
], 512)
|
|
2473
2473
|
])) : p("", !0),
|
|
2474
|
-
e.usePortalSwitcher ? (
|
|
2474
|
+
e.usePortalSwitcher ? (o(), s("div", Pi, [
|
|
2475
2475
|
t("button", {
|
|
2476
2476
|
class: "nav-portal-switcher-btn",
|
|
2477
2477
|
onClick: se
|
|
2478
2478
|
}, Fi),
|
|
2479
2479
|
K(t("div", Oi, [
|
|
2480
2480
|
t("ul", zi, [
|
|
2481
|
-
(
|
|
2481
|
+
(o(!0), s(T, null, V(e.portals, (j, N) => (o(), s("li", {
|
|
2482
2482
|
key: N,
|
|
2483
2483
|
class: "portal-switcher-link"
|
|
2484
2484
|
}, [
|
|
@@ -2502,30 +2502,30 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2502
2502
|
[Q, I(b)]
|
|
2503
2503
|
])
|
|
2504
2504
|
])) : p("", !0),
|
|
2505
|
-
e.useProfileDropdown ? (
|
|
2506
|
-
I(k) ? p("", !0) : (
|
|
2507
|
-
|
|
2505
|
+
e.useProfileDropdown ? (o(), s("div", Ni, [
|
|
2506
|
+
I(k) ? p("", !0) : (o(), s("div", Ei, [
|
|
2507
|
+
u($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2508
2508
|
])),
|
|
2509
|
-
I(k) ? (
|
|
2509
|
+
I(k) ? (o(), s("button", {
|
|
2510
2510
|
key: 1,
|
|
2511
2511
|
class: "nav-profile-dropdown-btn",
|
|
2512
2512
|
onClick: ie
|
|
2513
2513
|
}, Ki)) : p("", !0),
|
|
2514
2514
|
K(t("div", Ui, [
|
|
2515
|
-
|
|
2515
|
+
u($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2516
2516
|
], 512), [
|
|
2517
2517
|
[Q, I(v)]
|
|
2518
2518
|
])
|
|
2519
2519
|
])) : p("", !0)
|
|
2520
2520
|
]),
|
|
2521
2521
|
t("div", {
|
|
2522
|
-
class: m(["mobile-nav-wrapper", I(
|
|
2522
|
+
class: m(["mobile-nav-wrapper", I(c) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2523
2523
|
}, [
|
|
2524
2524
|
t("div", Gi, [
|
|
2525
2525
|
t("div", Ji, [
|
|
2526
|
-
|
|
2526
|
+
u($.$slots, "link-logo", {}, void 0, !0)
|
|
2527
2527
|
]),
|
|
2528
|
-
I(n) ? (
|
|
2528
|
+
I(n) ? (o(), s("div", Wi, [
|
|
2529
2529
|
t("button", {
|
|
2530
2530
|
ref_key: "mobileSearchButton",
|
|
2531
2531
|
ref: ae,
|
|
@@ -2537,7 +2537,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2537
2537
|
})
|
|
2538
2538
|
}, [
|
|
2539
2539
|
t("img", {
|
|
2540
|
-
src: I(
|
|
2540
|
+
src: I(c) === !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2541
2541
|
alt: "search icon",
|
|
2542
2542
|
width: "20",
|
|
2543
2543
|
height: "20"
|
|
@@ -2553,20 +2553,20 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2553
2553
|
width: "20",
|
|
2554
2554
|
height: "20",
|
|
2555
2555
|
alt: "burger menu line icon",
|
|
2556
|
-
src: I(
|
|
2556
|
+
src: I(c) === !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"
|
|
2557
2557
|
}, null, 8, Qi)
|
|
2558
2558
|
])
|
|
2559
2559
|
]),
|
|
2560
2560
|
K(t("div", Zi, [
|
|
2561
2561
|
t("ul", null, [
|
|
2562
|
-
|
|
2562
|
+
u($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2563
2563
|
]),
|
|
2564
2564
|
t("ul", Xi, [
|
|
2565
|
-
|
|
2566
|
-
|
|
2565
|
+
u($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2566
|
+
u($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2567
2567
|
])
|
|
2568
2568
|
], 512), [
|
|
2569
|
-
[Q, I(
|
|
2569
|
+
[Q, I(c)]
|
|
2570
2570
|
])
|
|
2571
2571
|
], 2)
|
|
2572
2572
|
])
|
|
@@ -2585,12 +2585,12 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2585
2585
|
}
|
|
2586
2586
|
},
|
|
2587
2587
|
setup(e) {
|
|
2588
|
-
return (a, r) => (
|
|
2588
|
+
return (a, r) => (o(), s("div", tr, [
|
|
2589
2589
|
t("div", ar, [
|
|
2590
2590
|
t("h2", or, d(e.headline), 1),
|
|
2591
2591
|
t("p", lr, d(e.paragraph), 1),
|
|
2592
2592
|
t("div", sr, [
|
|
2593
|
-
|
|
2593
|
+
u(a.$slots, "language-links", {}, void 0, !0)
|
|
2594
2594
|
])
|
|
2595
2595
|
])
|
|
2596
2596
|
]));
|
|
@@ -2609,7 +2609,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2609
2609
|
},
|
|
2610
2610
|
emits: ["previous", "next"],
|
|
2611
2611
|
setup(e) {
|
|
2612
|
-
return (a, r) => (
|
|
2612
|
+
return (a, r) => (o(), s("div", nr, [
|
|
2613
2613
|
t("div", dr, [
|
|
2614
2614
|
S(le, {
|
|
2615
2615
|
disabled: e.isPreviousDisabled,
|
|
@@ -2617,7 +2617,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2617
2617
|
"aria-label": "previous",
|
|
2618
2618
|
onClick: r[0] || (r[0] = (i) => a.$emit("previous"))
|
|
2619
2619
|
}, null, 8, ["disabled"]),
|
|
2620
|
-
|
|
2620
|
+
u(a.$slots, "pagination-numbers"),
|
|
2621
2621
|
S(le, {
|
|
2622
2622
|
disabled: e.isNextDisabled,
|
|
2623
2623
|
variant: "next",
|
|
@@ -2629,8 +2629,8 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2629
2629
|
}
|
|
2630
2630
|
}), ur = /* @__PURE__ */ f(cr, [["__scopeId", "data-v-da6d07c9"]]), _r = {}, hr = { class: "search__wrapper" };
|
|
2631
2631
|
function pr(e, a) {
|
|
2632
|
-
return
|
|
2633
|
-
|
|
2632
|
+
return o(), s("div", hr, [
|
|
2633
|
+
u(e.$slots, "default", { class: "search__content" })
|
|
2634
2634
|
]);
|
|
2635
2635
|
}
|
|
2636
2636
|
const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3"]]), vr = { class: "dropdown" }, fr = ["aria-expanded"], gr = /* @__PURE__ */ g({
|
|
@@ -2642,9 +2642,9 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2642
2642
|
},
|
|
2643
2643
|
emits: ["filter", "remove-filter"],
|
|
2644
2644
|
setup(e, { emit: a }) {
|
|
2645
|
-
const r = q(!1), i = e,
|
|
2646
|
-
function
|
|
2647
|
-
i.selectedOptions.includes(b) ?
|
|
2645
|
+
const r = q(!1), i = e, l = a;
|
|
2646
|
+
function c(b) {
|
|
2647
|
+
i.selectedOptions.includes(b) ? l("remove-filter", b) : l("filter", b);
|
|
2648
2648
|
}
|
|
2649
2649
|
function n() {
|
|
2650
2650
|
r.value = !1;
|
|
@@ -2652,21 +2652,21 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2652
2652
|
const _ = L(() => i.options.length > 8);
|
|
2653
2653
|
return (b, v) => {
|
|
2654
2654
|
const k = ue("click-outside");
|
|
2655
|
-
return K((
|
|
2655
|
+
return K((o(), s("div", vr, [
|
|
2656
2656
|
t("button", {
|
|
2657
2657
|
class: "dropdown-button",
|
|
2658
2658
|
style: x({ "z-index": r.value ? 2 : 0 }),
|
|
2659
2659
|
"aria-expanded": r.value ? "true" : "false",
|
|
2660
2660
|
onClick: v[0] || (v[0] = (w) => r.value = !r.value)
|
|
2661
2661
|
}, [
|
|
2662
|
-
|
|
2662
|
+
u(b.$slots, "button", {}, () => [
|
|
2663
2663
|
G(d(b.label), 1)
|
|
2664
2664
|
], !0)
|
|
2665
2665
|
], 12, fr),
|
|
2666
2666
|
t("div", {
|
|
2667
2667
|
class: m([{ hidden: !r.value, "adjust-height": _.value }, "dropdown-content"])
|
|
2668
2668
|
}, [
|
|
2669
|
-
(
|
|
2669
|
+
(o(!0), s(T, null, V(b.options, (w) => (o(), D(I(me), {
|
|
2670
2670
|
id: w.value,
|
|
2671
2671
|
key: w.value,
|
|
2672
2672
|
name: w.text,
|
|
@@ -2674,7 +2674,7 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2674
2674
|
disabled: !1,
|
|
2675
2675
|
value: w.value,
|
|
2676
2676
|
checked: b.selectedOptions.includes(w.value),
|
|
2677
|
-
onInput: (te) =>
|
|
2677
|
+
onInput: (te) => c(w.value)
|
|
2678
2678
|
}, {
|
|
2679
2679
|
default: y(() => [
|
|
2680
2680
|
G(d(w.text), 1)
|
|
@@ -2706,68 +2706,68 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2706
2706
|
light: "promo__wrapper--light",
|
|
2707
2707
|
default: "promo__wrapper--default"
|
|
2708
2708
|
}, r = e, i = L(() => a[r.variant]);
|
|
2709
|
-
return (
|
|
2709
|
+
return (l, c) => (o(), s("div", {
|
|
2710
2710
|
class: m([
|
|
2711
2711
|
"promo__wrapper",
|
|
2712
2712
|
i.value,
|
|
2713
|
-
|
|
2713
|
+
l.teaser ? "promo__wrapper--teaser" : ""
|
|
2714
2714
|
])
|
|
2715
2715
|
}, [
|
|
2716
2716
|
t("div", yr, [
|
|
2717
2717
|
t("div", {
|
|
2718
2718
|
class: m([
|
|
2719
2719
|
"promo__video",
|
|
2720
|
-
|
|
2720
|
+
l.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2721
2721
|
])
|
|
2722
2722
|
}, [
|
|
2723
2723
|
t("div", $r, [
|
|
2724
2724
|
t("div", kr, [
|
|
2725
|
-
|
|
2725
|
+
u(l.$slots, "pallet-jack-link")
|
|
2726
2726
|
]),
|
|
2727
2727
|
t("div", wr, [
|
|
2728
|
-
|
|
2728
|
+
u(l.$slots, "pallet-jack-video")
|
|
2729
2729
|
]),
|
|
2730
2730
|
t("div", Br, [
|
|
2731
|
-
t("h3", Sr, d(
|
|
2732
|
-
t("p", null, d(
|
|
2731
|
+
t("h3", Sr, d(l.headline), 1),
|
|
2732
|
+
t("p", null, d(l.shortDescription), 1)
|
|
2733
2733
|
])
|
|
2734
2734
|
])
|
|
2735
2735
|
], 2),
|
|
2736
2736
|
t("div", {
|
|
2737
2737
|
class: m([
|
|
2738
2738
|
"promo__text",
|
|
2739
|
-
|
|
2739
|
+
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2740
2740
|
])
|
|
2741
2741
|
}, [
|
|
2742
|
-
|
|
2742
|
+
l.label ? (o(), D(Z, {
|
|
2743
2743
|
key: 0,
|
|
2744
|
-
text:
|
|
2745
|
-
"label-dark":
|
|
2744
|
+
text: l.label,
|
|
2745
|
+
"label-dark": l.variant === "dark"
|
|
2746
2746
|
}, null, 8, ["text", "label-dark"])) : p("", !0),
|
|
2747
2747
|
t("div", {
|
|
2748
2748
|
class: m([
|
|
2749
2749
|
"promo__title",
|
|
2750
|
-
|
|
2750
|
+
l.variant === "dark" ? "promo__title--dark" : ""
|
|
2751
2751
|
])
|
|
2752
2752
|
}, [
|
|
2753
|
-
|
|
2753
|
+
u(l.$slots, "promo-text")
|
|
2754
2754
|
], 2),
|
|
2755
|
-
|
|
2755
|
+
l.linkType === "link" ? (o(), D(M, {
|
|
2756
2756
|
key: 1,
|
|
2757
|
-
"link-type":
|
|
2757
|
+
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
2758
2758
|
arrow: ""
|
|
2759
2759
|
}, {
|
|
2760
2760
|
default: y(() => [
|
|
2761
|
-
|
|
2761
|
+
u(l.$slots, "promo-link")
|
|
2762
2762
|
]),
|
|
2763
2763
|
_: 3
|
|
2764
2764
|
}, 8, ["link-type"])) : p("", !0),
|
|
2765
|
-
|
|
2765
|
+
l.linkType === "button" ? (o(), D(M, {
|
|
2766
2766
|
key: 2,
|
|
2767
|
-
"link-type":
|
|
2767
|
+
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
2768
2768
|
}, {
|
|
2769
2769
|
default: y(() => [
|
|
2770
|
-
|
|
2770
|
+
u(l.$slots, "promo-link")
|
|
2771
2771
|
]),
|
|
2772
2772
|
_: 3
|
|
2773
2773
|
}, 8, ["link-type"])) : p("", !0)
|