@mirweb/mir-web-components 1.6.6 → 1.6.7
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
|
|
1
|
+
import { defineComponent as g, computed as D, openBlock as o, createElementBlock as i, normalizeClass as m, toDisplayString as d, createElementVNode as t, renderSlot as c, 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 L, 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: {
|
|
@@ -14,16 +14,16 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
14
14
|
close: "close",
|
|
15
15
|
next: "next",
|
|
16
16
|
previous: "previous"
|
|
17
|
-
}, r = e,
|
|
18
|
-
return (l,
|
|
19
|
-
class: m(["button", "button--" +
|
|
17
|
+
}, r = e, s = D(() => a[r.variant]);
|
|
18
|
+
return (l, u) => (o(), i("button", {
|
|
19
|
+
class: m(["button", "button--" + s.value]),
|
|
20
20
|
"aria-label": l.ariaLabel
|
|
21
|
-
}, d(
|
|
21
|
+
}, d(s.value === "close" ? "" : l.buttonText), 11, Ce));
|
|
22
22
|
}
|
|
23
23
|
}), f = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
|
-
for (const [
|
|
26
|
-
r[
|
|
25
|
+
for (const [s, l] of a)
|
|
26
|
+
r[s] = 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,11 +37,11 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
37
37
|
},
|
|
38
38
|
emits: ["input"],
|
|
39
39
|
setup(e, { emit: a }) {
|
|
40
|
-
const r = a,
|
|
41
|
-
const
|
|
42
|
-
r("input",
|
|
40
|
+
const r = a, s = (l) => {
|
|
41
|
+
const u = l.target;
|
|
42
|
+
r("input", u.checked);
|
|
43
43
|
};
|
|
44
|
-
return (l,
|
|
44
|
+
return (l, u) => (o(), i("div", {
|
|
45
45
|
class: m(["checkbox__wrapper", l.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
47
|
t("input", {
|
|
@@ -53,14 +53,14 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
53
53
|
required: l.required,
|
|
54
54
|
checked: l.checked,
|
|
55
55
|
class: "checkbox__checkbox",
|
|
56
|
-
onChange:
|
|
56
|
+
onChange: s
|
|
57
57
|
}, null, 40, De),
|
|
58
58
|
t("label", {
|
|
59
59
|
for: l.id,
|
|
60
60
|
class: m(["checkbox__label", l.required ? "required" : ""])
|
|
61
61
|
}, [
|
|
62
62
|
Ve,
|
|
63
|
-
|
|
63
|
+
c(l.$slots, "default", {}, void 0, !0)
|
|
64
64
|
], 10, Te)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
@@ -75,16 +75,16 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
75
75
|
},
|
|
76
76
|
emits: ["remove-chip"],
|
|
77
77
|
setup(e) {
|
|
78
|
-
const a = e, r =
|
|
79
|
-
return (
|
|
78
|
+
const a = e, r = D(() => `Chip: ${a.text}`);
|
|
79
|
+
return (s, l) => (o(), i("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick: l[0] || (l[0] = (
|
|
81
|
+
onClick: l[0] || (l[0] = (u) => s.$emit("remove-chip"))
|
|
82
82
|
}, [
|
|
83
83
|
t("span", {
|
|
84
84
|
class: "chip",
|
|
85
85
|
"aria-label": r.value
|
|
86
86
|
}, [
|
|
87
|
-
G(d(
|
|
87
|
+
G(d(s.text) + " ", 1),
|
|
88
88
|
Oe
|
|
89
89
|
], 8, Fe)
|
|
90
90
|
]));
|
|
@@ -107,9 +107,9 @@ 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
|
-
},
|
|
111
|
-
const h =
|
|
112
|
-
(B) => B.value ===
|
|
110
|
+
}, s = e, l = D(() => r[s.variant]), u = q(null), n = q(null), _ = q([]), b = q(0), v = q(""), k = q(!0), w = q(0), te = a, se = D(() => {
|
|
111
|
+
const h = s.options.find(
|
|
112
|
+
(B) => B.value === s.modelValue
|
|
113
113
|
);
|
|
114
114
|
return h && h.label;
|
|
115
115
|
});
|
|
@@ -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 = u.value) == null || C.focus());
|
|
123
123
|
}
|
|
124
124
|
function U(h) {
|
|
125
125
|
var C;
|
|
@@ -128,11 +128,11 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
128
128
|
case "ArrowUp":
|
|
129
129
|
case "ArrowDown": {
|
|
130
130
|
h.preventDefault();
|
|
131
|
-
const A =
|
|
132
|
-
(W) => W.value ===
|
|
131
|
+
const A = s.options.findIndex(
|
|
132
|
+
(W) => W.value === s.modelValue
|
|
133
133
|
);
|
|
134
134
|
let z = A ? _.value[A] : _.value[0];
|
|
135
|
-
B === "ArrowUp" ? A - 1 >= 0 && (z = _.value[A - 1]) : A + 1 <=
|
|
135
|
+
B === "ArrowUp" ? A - 1 >= 0 && (z = _.value[A - 1]) : A + 1 <= s.options.length && (z = _.value[A + 1]), z && J(z);
|
|
136
136
|
break;
|
|
137
137
|
}
|
|
138
138
|
case "Home":
|
|
@@ -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 = u.value) == null || C.focus();
|
|
149
149
|
break;
|
|
150
150
|
default: {
|
|
151
151
|
const A = E(B);
|
|
@@ -155,7 +155,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
function ae(h) {
|
|
158
|
-
if (!
|
|
158
|
+
if (!s.disabled)
|
|
159
159
|
switch (h.key) {
|
|
160
160
|
case "ArrowUp":
|
|
161
161
|
case "ArrowDown":
|
|
@@ -173,18 +173,18 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
173
173
|
}
|
|
174
174
|
function E(h) {
|
|
175
175
|
let B = "";
|
|
176
|
-
(v.value === "" || B !== h) && (w.value =
|
|
177
|
-
(A) => A.value ===
|
|
176
|
+
(v.value === "" || B !== h) && (w.value = s.options.findIndex(
|
|
177
|
+
(A) => A.value === s.modelValue
|
|
178
178
|
)), v.value = B === h ? h : v.value + h, B = h, $();
|
|
179
179
|
let C = j(
|
|
180
180
|
w.value + 1,
|
|
181
|
-
|
|
181
|
+
s.options.length
|
|
182
182
|
);
|
|
183
|
-
return !C && v.value.length === 1 && (C = j(0, w.value)), w.value = (w.value + 1) %
|
|
183
|
+
return !C && v.value.length === 1 && (C = j(0, w.value)), w.value = (w.value + 1) % s.options.length, C;
|
|
184
184
|
}
|
|
185
185
|
function j(h, B) {
|
|
186
186
|
for (let C = h; C < B; C++)
|
|
187
|
-
if (
|
|
187
|
+
if (s.options[C].label && s.options[C].label.toUpperCase().indexOf(v.value.toUpperCase()) === 0)
|
|
188
188
|
return _.value[C];
|
|
189
189
|
return null;
|
|
190
190
|
}
|
|
@@ -194,9 +194,9 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
194
194
|
function J(h) {
|
|
195
195
|
var C, A;
|
|
196
196
|
const B = h.getAttribute("data-value");
|
|
197
|
-
if (
|
|
198
|
-
const z =
|
|
199
|
-
(ke) => ke.value ===
|
|
197
|
+
if (s.modelValue) {
|
|
198
|
+
const z = s.options.findIndex(
|
|
199
|
+
(ke) => ke.value === s.modelValue
|
|
200
200
|
), W = _.value[z];
|
|
201
201
|
ne(W);
|
|
202
202
|
}
|
|
@@ -210,23 +210,23 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
210
210
|
}
|
|
211
211
|
function ye() {
|
|
212
212
|
var B;
|
|
213
|
-
const h = (B = _.value) == null ? void 0 : B[
|
|
213
|
+
const h = (B = _.value) == null ? void 0 : B[s.options.length - 1];
|
|
214
214
|
J(h);
|
|
215
215
|
}
|
|
216
216
|
function oe() {
|
|
217
217
|
var h;
|
|
218
|
-
k.value = !0, (h =
|
|
218
|
+
k.value = !0, (h = u.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 = u.value) == null || h.setAttribute("aria-expanded", "true"), (B = n.value) == null || B.focus();
|
|
223
223
|
}
|
|
224
224
|
function $e() {
|
|
225
|
-
|
|
225
|
+
s.disabled || (k.value ? ce() : oe());
|
|
226
226
|
}
|
|
227
227
|
return (h, B) => {
|
|
228
228
|
const C = ue("click-outside");
|
|
229
|
-
return o(),
|
|
229
|
+
return o(), i("div", {
|
|
230
230
|
ref: "listbox",
|
|
231
231
|
class: "listbox__wrapper",
|
|
232
232
|
value: h.modelValue
|
|
@@ -239,11 +239,11 @@ 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((o(),
|
|
242
|
+
K((o(), i("div", Ee, [
|
|
243
243
|
t("button", {
|
|
244
244
|
id: `${h.name}-button-label`,
|
|
245
245
|
ref_key: "listboxButton",
|
|
246
|
-
ref:
|
|
246
|
+
ref: u,
|
|
247
247
|
"aria-labelledby": `${h.name}-label ${h.name}-button-label`,
|
|
248
248
|
type: "button",
|
|
249
249
|
"aria-haspopup": "listbox",
|
|
@@ -263,7 +263,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
263
263
|
onKeydown: U,
|
|
264
264
|
onClick: re
|
|
265
265
|
}, [
|
|
266
|
-
(o(!0),
|
|
266
|
+
(o(!0), i(T, null, V(h.options, (A, z) => (o(), i("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) => (o(),
|
|
298
|
-
|
|
297
|
+
return (a, r) => (o(), i("div", We, [
|
|
298
|
+
c(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({
|
|
@@ -305,13 +305,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
305
305
|
labelDark: { type: Boolean, default: !1 }
|
|
306
306
|
},
|
|
307
307
|
setup(e) {
|
|
308
|
-
const a = e, r =
|
|
309
|
-
return (
|
|
308
|
+
const a = e, r = D(() => `Label: ${a.text}`);
|
|
309
|
+
return (s, l) => (o(), i("div", Qe, [
|
|
310
310
|
t("span", {
|
|
311
311
|
"aria-label": r.value,
|
|
312
|
-
"label-dark":
|
|
313
|
-
class: m(
|
|
314
|
-
}, d(
|
|
312
|
+
"label-dark": s.labelDark,
|
|
313
|
+
class: m(s.labelDark ? "label--dark" : "label--light")
|
|
314
|
+
}, d(s.text), 11, Ze)
|
|
315
315
|
]));
|
|
316
316
|
}
|
|
317
317
|
}), Z = /* @__PURE__ */ f(Xe, [["__scopeId", "data-v-7d9d3a8a"]]), xe = { class: "link__wrapper" }, M = /* @__PURE__ */ g({
|
|
@@ -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
|
-
},
|
|
340
|
-
const { ..._ } = we(
|
|
339
|
+
}, s = e, l = D(() => a[s.linkType]), u = D(() => r[s.underline]), n = D(() => {
|
|
340
|
+
const { ..._ } = we(s);
|
|
341
341
|
return _;
|
|
342
342
|
});
|
|
343
|
-
return (_, b) => (o(),
|
|
343
|
+
return (_, b) => (o(), i("div", xe, [
|
|
344
344
|
t("div", X(n.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
346
|
l.value,
|
|
347
347
|
_.disabled ? "disabled" : "",
|
|
348
|
-
|
|
348
|
+
u.value,
|
|
349
349
|
_.arrow ? "link-arrow" : ""
|
|
350
350
|
]]
|
|
351
351
|
}), [
|
|
352
|
-
|
|
352
|
+
c(_.$slots, "default")
|
|
353
353
|
], 16)
|
|
354
354
|
]));
|
|
355
355
|
}
|
|
@@ -365,11 +365,11 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
365
365
|
},
|
|
366
366
|
emits: ["input"],
|
|
367
367
|
setup(e, { emit: a }) {
|
|
368
|
-
const r = a,
|
|
369
|
-
const
|
|
370
|
-
r("input",
|
|
368
|
+
const r = a, s = (l) => {
|
|
369
|
+
const u = l.target;
|
|
370
|
+
r("input", u.checked);
|
|
371
371
|
};
|
|
372
|
-
return (l,
|
|
372
|
+
return (l, u) => (o(), i("div", {
|
|
373
373
|
class: m(["radio__wrapper", l.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
375
|
t("input", {
|
|
@@ -381,14 +381,14 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
381
381
|
disabled: l.disabled,
|
|
382
382
|
required: l.required,
|
|
383
383
|
class: "radio__radio",
|
|
384
|
-
onChange:
|
|
384
|
+
onChange: s
|
|
385
385
|
}, null, 40, tt),
|
|
386
386
|
t("label", {
|
|
387
387
|
for: l.id,
|
|
388
388
|
class: m(["radio__label", l.required ? "required" : ""])
|
|
389
389
|
}, [
|
|
390
390
|
ot,
|
|
391
|
-
|
|
391
|
+
c(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) => (o(),
|
|
408
|
+
return (a, r) => (o(), i("div", it, [
|
|
409
409
|
t("label", {
|
|
410
410
|
for: a.id,
|
|
411
411
|
class: m([a.required ? "required" : "", a.disabled ? "disabled" : ""])
|
|
@@ -416,14 +416,14 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
416
416
|
disabled: a.disabled,
|
|
417
417
|
name: a.name,
|
|
418
418
|
value: a.modelValue,
|
|
419
|
-
onChange: r[0] || (r[0] = (
|
|
420
|
-
a.$emit("update:modelValue",
|
|
419
|
+
onChange: r[0] || (r[0] = (s) => {
|
|
420
|
+
a.$emit("update:modelValue", s.target.value), s.target.blur();
|
|
421
421
|
})
|
|
422
422
|
}, [
|
|
423
|
-
(o(!0),
|
|
424
|
-
key:
|
|
425
|
-
value:
|
|
426
|
-
}, d(
|
|
423
|
+
(o(!0), i(T, null, V(a.options, (s) => (o(), i("option", {
|
|
424
|
+
key: s.value,
|
|
425
|
+
value: s.value
|
|
426
|
+
}, d(s.text), 9, dt))), 128))
|
|
427
427
|
], 42, nt)
|
|
428
428
|
]));
|
|
429
429
|
}
|
|
@@ -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,
|
|
439
|
-
|
|
438
|
+
const r = e, s = a, l = () => {
|
|
439
|
+
s("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (
|
|
441
|
+
return (u, n) => (o(), i("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", u.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
451
451
|
onClick: l
|
|
452
452
|
}, [
|
|
453
453
|
t("div", {
|
|
454
454
|
id: "modal",
|
|
455
|
-
class: m([
|
|
455
|
+
class: m([u.searchBar ? "search" : ""]),
|
|
456
456
|
onClick: n[0] || (n[0] = _e(() => {
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
459
|
t("div", null, [
|
|
460
|
-
|
|
460
|
+
u.searchBar ? p("", !0) : (o(), L(le, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
464
|
onClick: l
|
|
465
465
|
}))
|
|
466
466
|
]),
|
|
467
|
-
u
|
|
467
|
+
c(u.$slots, "default", {}, void 0, !0)
|
|
468
468
|
], 2)
|
|
469
469
|
], 2), [
|
|
470
|
-
[Q,
|
|
470
|
+
[Q, u.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,
|
|
493
|
+
const r = e, s = a, l = q(r.modelValue), u = q(), n = q(!1), _ = (v, k, w) => (v - k) / (w - k) * 100, b = (v) => {
|
|
494
494
|
var k;
|
|
495
|
-
(k =
|
|
495
|
+
(k = u.value) == null || k.style.setProperty("--ProgressPercent", `${v}%`);
|
|
496
496
|
};
|
|
497
497
|
return he(() => {
|
|
498
|
-
if (
|
|
499
|
-
|
|
498
|
+
if (u.value) {
|
|
499
|
+
s("update:modelValue", l.value);
|
|
500
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) => (o(),
|
|
504
|
+
}), (v, k) => (o(), i("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 ? (o(),
|
|
511
|
+
v.information ? (o(), i("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: u,
|
|
530
530
|
type: "range",
|
|
531
531
|
name: v.name,
|
|
532
532
|
value: v.modelValue,
|
|
@@ -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 ? (o(),
|
|
547
|
+
v.information ? (o(), L(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) => (o(),
|
|
573
|
+
return (a, r) => (o(), i("div", wt, [
|
|
574
574
|
t("label", {
|
|
575
575
|
for: a.id,
|
|
576
576
|
class: m({ required: a.required })
|
|
@@ -591,12 +591,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
591
591
|
class: m(
|
|
592
592
|
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit" : "border"
|
|
593
593
|
),
|
|
594
|
-
onInput: r[0] || (r[0] = (
|
|
594
|
+
onInput: r[0] || (r[0] = (s) => a.$emit("update:modelValue", s.target.value))
|
|
595
595
|
}, null, 42, It)
|
|
596
596
|
], 8, St),
|
|
597
597
|
t("div", qt, [
|
|
598
598
|
t("div", null, [
|
|
599
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (o(),
|
|
599
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (o(), i("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,
|
|
645
|
+
}, r = e, s = D(() => a[r.type]), l = q(!0), u = D(
|
|
646
646
|
() => l.value ? "showPassword" : "hidePassword"
|
|
647
|
-
), n =
|
|
647
|
+
), n = D(
|
|
648
648
|
() => l.value ? "password" : "text"
|
|
649
649
|
);
|
|
650
|
-
return (_, b) => (o(),
|
|
650
|
+
return (_, b) => (o(), i("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
|
-
|
|
659
|
+
s.value === "password" ? (o(), i("div", Vt, [
|
|
660
660
|
t("input", {
|
|
661
661
|
id: _.id,
|
|
662
662
|
ref: "passwordField",
|
|
@@ -670,16 +670,16 @@ 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([u.value]),
|
|
674
674
|
"aria-controls": "password",
|
|
675
675
|
"aria-expanded": !l.value,
|
|
676
676
|
onClick: b[1] || (b[1] = (v) => l.value = !l.value)
|
|
677
677
|
}, null, 10, Mt)
|
|
678
|
-
])) : (o(),
|
|
678
|
+
])) : (o(), i("input", {
|
|
679
679
|
key: 1,
|
|
680
680
|
id: _.id,
|
|
681
681
|
ref: "textField",
|
|
682
|
-
type:
|
|
682
|
+
type: s.value,
|
|
683
683
|
value: _.modelValue,
|
|
684
684
|
placeholder: _.placeholder,
|
|
685
685
|
required: _.required,
|
|
@@ -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 ? (o(),
|
|
696
|
-
_.errorMessage ? (o(),
|
|
697
|
-
_.helperText ? (o(),
|
|
695
|
+
_.search ? (o(), i("i", Ot)) : p("", !0),
|
|
696
|
+
_.errorMessage ? (o(), i("strong", zt, d(_.errorMessage), 1)) : p("", !0),
|
|
697
|
+
_.helperText ? (o(), i("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({
|
|
@@ -715,36 +715,36 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
715
715
|
},
|
|
716
716
|
setup(e, { expose: a }) {
|
|
717
717
|
const r = e;
|
|
718
|
-
let
|
|
718
|
+
let s = q(null);
|
|
719
719
|
return he(() => {
|
|
720
|
-
|
|
720
|
+
s.value && (r.play ? s.value.play() : r.play || s.value.pause());
|
|
721
721
|
}), a({
|
|
722
722
|
resetVideo: () => {
|
|
723
|
-
|
|
723
|
+
s.value && (s.value.currentTime = 0, s.value.play());
|
|
724
724
|
}
|
|
725
|
-
}), (
|
|
726
|
-
|
|
725
|
+
}), (u, n) => (o(), i("div", Et, [
|
|
726
|
+
u.localVideo ? (o(), i("video", {
|
|
727
727
|
key: 0,
|
|
728
728
|
ref_key: "videoRef",
|
|
729
|
-
ref:
|
|
730
|
-
"aria-label":
|
|
731
|
-
controls:
|
|
732
|
-
poster:
|
|
733
|
-
width:
|
|
734
|
-
height:
|
|
735
|
-
autoplay:
|
|
736
|
-
loop:
|
|
737
|
-
muted:
|
|
729
|
+
ref: s,
|
|
730
|
+
"aria-label": u.ariaLabel,
|
|
731
|
+
controls: u.controls,
|
|
732
|
+
poster: u.poster,
|
|
733
|
+
width: u.width,
|
|
734
|
+
height: u.height,
|
|
735
|
+
autoplay: u.autoplay,
|
|
736
|
+
loop: u.loop,
|
|
737
|
+
muted: u.muted,
|
|
738
738
|
type: "video/mp4",
|
|
739
739
|
playsinline: "",
|
|
740
|
-
src:
|
|
741
|
-
}, null, 8, jt)) : (o(),
|
|
740
|
+
src: u.src
|
|
741
|
+
}, null, 8, jt)) : (o(), i("iframe", {
|
|
742
742
|
key: 1,
|
|
743
|
-
src:
|
|
744
|
-
"aria-label":
|
|
745
|
-
title:
|
|
746
|
-
width:
|
|
747
|
-
height:
|
|
743
|
+
src: u.src,
|
|
744
|
+
"aria-label": u.ariaLabel,
|
|
745
|
+
title: u.title,
|
|
746
|
+
width: u.width,
|
|
747
|
+
height: u.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) => (o(),
|
|
767
|
+
return (a, r) => (o(), i("div", Gt, [
|
|
768
768
|
t("div", Jt, [
|
|
769
769
|
t("div", Wt, [
|
|
770
|
-
|
|
770
|
+
c(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 ? (o(),
|
|
777
|
+
a.addressLine3 ? (o(), i("p", Zt, d(a.addressLine3), 1)) : p("", !0)
|
|
778
778
|
]),
|
|
779
779
|
t("div", Xt, [
|
|
780
|
-
a.website ? (o(),
|
|
780
|
+
a.website ? (o(), L(M, {
|
|
781
781
|
key: 0,
|
|
782
782
|
underline: "false",
|
|
783
783
|
"link-type": "regular"
|
|
@@ -790,16 +790,16 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
790
790
|
]),
|
|
791
791
|
_: 1
|
|
792
792
|
})) : p("", !0),
|
|
793
|
-
(o(!0),
|
|
794
|
-
key:
|
|
793
|
+
(o(!0), i(T, null, V(a.phoneNumbers, (s) => (o(), L(M, {
|
|
794
|
+
key: s,
|
|
795
795
|
underline: "false",
|
|
796
796
|
"link-type": "regular"
|
|
797
797
|
}, {
|
|
798
798
|
default: y(() => [
|
|
799
799
|
t("a", {
|
|
800
|
-
href: "tel:" +
|
|
800
|
+
href: "tel:" + s,
|
|
801
801
|
class: "address__phone"
|
|
802
|
-
}, d(
|
|
802
|
+
}, d(s), 9, ea)
|
|
803
803
|
]),
|
|
804
804
|
_: 2
|
|
805
805
|
}, 1024))), 128)),
|
|
@@ -831,14 +831,14 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
831
831
|
}
|
|
832
832
|
},
|
|
833
833
|
setup(e) {
|
|
834
|
-
return (a, r) => (o(),
|
|
834
|
+
return (a, r) => (o(), i("div", sa, [
|
|
835
835
|
t("div", {
|
|
836
836
|
class: m(["bullet-list", e.variant])
|
|
837
837
|
}, [
|
|
838
838
|
t("ul", null, [
|
|
839
|
-
(o(!0),
|
|
839
|
+
(o(!0), i(T, null, V(e.list, (s) => (o(), i("li", { key: s }, [
|
|
840
840
|
ia,
|
|
841
|
-
G(" " + d(
|
|
841
|
+
G(" " + d(s), 1)
|
|
842
842
|
]))), 128))
|
|
843
843
|
])
|
|
844
844
|
], 2)
|
|
@@ -868,7 +868,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
868
868
|
setup(e) {
|
|
869
869
|
const a = Ie();
|
|
870
870
|
let r = q(!1);
|
|
871
|
-
const
|
|
871
|
+
const s = {
|
|
872
872
|
xsmall: {
|
|
873
873
|
class: "card--xsmall",
|
|
874
874
|
width: "241",
|
|
@@ -889,13 +889,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
889
889
|
width: "596",
|
|
890
890
|
height: "335"
|
|
891
891
|
}
|
|
892
|
-
}, l = e,
|
|
893
|
-
return (n, _) => (o(),
|
|
892
|
+
}, l = e, u = D(() => s[l.size]);
|
|
893
|
+
return (n, _) => (o(), i("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
|
+
u.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" ? (o(),
|
|
906
|
+
n.mediaType === "image" ? (o(), L(F, { key: 0 }, {
|
|
907
907
|
default: y(() => [
|
|
908
|
-
|
|
908
|
+
c(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
|
-
})) : (o(),
|
|
918
|
+
})) : (o(), i("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: u.value.width,
|
|
930
|
+
height: u.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"] ? (o(),
|
|
937
|
-
|
|
936
|
+
I(a)["card-label"] ? (o(), i("div", ca, [
|
|
937
|
+
c(n.$slots, "card-label")
|
|
938
938
|
])) : p("", !0),
|
|
939
|
-
n.variant === "product" ? (o(),
|
|
939
|
+
n.variant === "product" ? (o(), i("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)) : (o(),
|
|
946
|
+
}, d(n.headline), 3)) : (o(), i("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" ? (o(),
|
|
953
|
+
n.variant === "product" ? (o(), i("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) => (o(),
|
|
966
|
+
return (a, r) => (o(), i("div", pa, [
|
|
967
967
|
t("div", ma, [
|
|
968
|
-
a.image.filename ? (o(),
|
|
968
|
+
a.image.filename ? (o(), i("div", {
|
|
969
969
|
key: 0,
|
|
970
970
|
class: m(["column-card__image", { cover: a.imageFit, contain: !a.imageFit }])
|
|
971
971
|
}, [
|
|
972
|
-
|
|
972
|
+
c(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
|
+
c(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) => (o(),
|
|
1009
|
+
return (a, r) => (o(), i("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) => (o(),
|
|
1040
|
+
return (a, r) => (o(), i("div", qa, [
|
|
1041
1041
|
S(Z, {
|
|
1042
1042
|
"label-dark": !1,
|
|
1043
1043
|
text: e.label ? e.label : ""
|
|
@@ -1061,12 +1061,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1061
1061
|
},
|
|
1062
1062
|
setup(e) {
|
|
1063
1063
|
const a = q([]), r = (l) => {
|
|
1064
|
-
const
|
|
1065
|
-
|
|
1066
|
-
},
|
|
1067
|
-
return (l,
|
|
1064
|
+
const u = a.value.indexOf(l);
|
|
1065
|
+
u > -1 ? a.value.splice(u, 1) : a.value.push(l);
|
|
1066
|
+
}, s = (l) => a.value.includes(l);
|
|
1067
|
+
return (l, u) => (o(), i("section", Ta, [
|
|
1068
1068
|
t("div", Va, [
|
|
1069
|
-
(o(!0),
|
|
1069
|
+
(o(!0), i(T, null, V(l.accordions, (n) => (o(), i("div", {
|
|
1070
1070
|
key: n._uid
|
|
1071
1071
|
}, [
|
|
1072
1072
|
t("div", Pa, [
|
|
@@ -1076,21 +1076,21 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1076
1076
|
}, [
|
|
1077
1077
|
t("h3", Fa, d(n.headline), 1),
|
|
1078
1078
|
t("span", Oa, [
|
|
1079
|
-
|
|
1079
|
+
s(n._uid) ? (o(), i("img", Ha)) : (o(), i("img", za))
|
|
1080
1080
|
])
|
|
1081
1081
|
], 8, Ma),
|
|
1082
1082
|
t("div", {
|
|
1083
1083
|
class: m(["accordion__content", { "accordion__content--reverse": n.imageFirst }]),
|
|
1084
1084
|
style: x({
|
|
1085
|
-
display:
|
|
1085
|
+
display: s(n._uid) ? "flex" : "none"
|
|
1086
1086
|
})
|
|
1087
1087
|
}, [
|
|
1088
1088
|
t("div", Ra, [
|
|
1089
|
-
|
|
1089
|
+
c(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 ? c(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) => (o(),
|
|
1127
|
+
return (a, r) => (o(), i("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 ? (o(),
|
|
1135
|
-
e.headline ? (o(),
|
|
1136
|
-
e.paragraph ? (o(),
|
|
1134
|
+
e.headline || e.paragraph ? (o(), i("div", Ka, [
|
|
1135
|
+
e.headline ? (o(), i("h2", Ua, d(e.headline), 1)) : p("", !0),
|
|
1136
|
+
e.paragraph ? (o(), i("p", Ga, d(e.paragraph), 1)) : p("", !0)
|
|
1137
1137
|
])) : p("", !0),
|
|
1138
1138
|
t("div", Ja, [
|
|
1139
|
-
|
|
1139
|
+
c(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1140
1140
|
])
|
|
1141
1141
|
])
|
|
1142
1142
|
], 2));
|
|
@@ -1153,36 +1153,35 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1153
1153
|
columns: {}
|
|
1154
1154
|
},
|
|
1155
1155
|
setup(e) {
|
|
1156
|
-
|
|
1157
|
-
return (i, l) => (o(), s("div", {
|
|
1156
|
+
return (a, r) => (o(), i("div", {
|
|
1158
1157
|
class: m([
|
|
1159
1158
|
"column-grid",
|
|
1160
|
-
|
|
1159
|
+
a.bgColor === "dark" ? "column-grid--dark" : a.bgColor === "light" ? "column-grid--light" : "column-grid--white"
|
|
1161
1160
|
])
|
|
1162
1161
|
}, [
|
|
1163
1162
|
t("div", Qa, [
|
|
1164
|
-
t("h2", Za, d(
|
|
1165
|
-
|
|
1166
|
-
|
|
1163
|
+
t("h2", Za, d(a.headline), 1),
|
|
1164
|
+
a.bodytext.length > 0 ? (o(), i("div", Xa, [
|
|
1165
|
+
c(a.$slots, "column-grid-body", P(O({ body: a.bodytext })), void 0, !0)
|
|
1167
1166
|
])) : p("", !0)
|
|
1168
1167
|
]),
|
|
1169
1168
|
t("div", xa, [
|
|
1170
|
-
(o(!0),
|
|
1171
|
-
key:
|
|
1172
|
-
headline:
|
|
1173
|
-
bodytext:
|
|
1174
|
-
image:
|
|
1175
|
-
"image-fit":
|
|
1169
|
+
(o(!0), i(T, null, V(a.columns, (s) => (o(), L(fe, {
|
|
1170
|
+
key: s._uid,
|
|
1171
|
+
headline: s.headline,
|
|
1172
|
+
bodytext: s.bodytext,
|
|
1173
|
+
image: s.image,
|
|
1174
|
+
"image-fit": s.imageFit
|
|
1176
1175
|
}, {
|
|
1177
1176
|
"column-card-body": y(() => [
|
|
1178
|
-
|
|
1177
|
+
c(a.$slots, "column-card-body", P(O({ body: s.bodytext })), void 0, !0)
|
|
1179
1178
|
]),
|
|
1180
1179
|
"column-card-image": y(() => [
|
|
1181
|
-
|
|
1182
|
-
src:
|
|
1183
|
-
alt:
|
|
1180
|
+
s.image ? c(a.$slots, "column-card-image", P(X({ key: 0 }, {
|
|
1181
|
+
src: s.image.filename,
|
|
1182
|
+
alt: s.image.alt,
|
|
1184
1183
|
class: "column-card__image",
|
|
1185
|
-
style: { "object-fit":
|
|
1184
|
+
style: { "object-fit": s.imageFit ? "cover" : "contain" }
|
|
1186
1185
|
})), void 0, !0) : p("", !0)
|
|
1187
1186
|
]),
|
|
1188
1187
|
_: 2
|
|
@@ -1190,7 +1189,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1190
1189
|
])
|
|
1191
1190
|
], 2));
|
|
1192
1191
|
}
|
|
1193
|
-
}), to = /* @__PURE__ */ f(eo, [["__scopeId", "data-v-
|
|
1192
|
+
}), to = /* @__PURE__ */ f(eo, [["__scopeId", "data-v-133d9a32"]]), 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
1193
|
key: 0,
|
|
1195
1194
|
class: "facts__link"
|
|
1196
1195
|
}, co = /* @__PURE__ */ g({
|
|
@@ -1217,29 +1216,29 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1217
1216
|
}) }
|
|
1218
1217
|
},
|
|
1219
1218
|
setup(e) {
|
|
1220
|
-
return (a, r) => (o(),
|
|
1219
|
+
return (a, r) => (o(), i("div", ao, [
|
|
1221
1220
|
t("div", oo, [
|
|
1222
1221
|
t("h2", lo, d(a.headline), 1),
|
|
1223
1222
|
t("div", so, [
|
|
1224
|
-
(o(!0),
|
|
1225
|
-
key:
|
|
1223
|
+
(o(!0), i(T, null, V(a.facts, (s) => (o(), i("div", {
|
|
1224
|
+
key: s.value + s.metric,
|
|
1226
1225
|
class: "fact"
|
|
1227
1226
|
}, [
|
|
1228
1227
|
t("div", io, [
|
|
1229
|
-
t("span", null, d(
|
|
1228
|
+
t("span", null, d(s.value), 1)
|
|
1230
1229
|
]),
|
|
1231
1230
|
t("div", ro, [
|
|
1232
|
-
t("span", null, d(
|
|
1231
|
+
t("span", null, d(s.metric), 1)
|
|
1233
1232
|
])
|
|
1234
1233
|
]))), 128))
|
|
1235
1234
|
]),
|
|
1236
|
-
a.link ? (o(),
|
|
1235
|
+
a.link ? (o(), i("div", no, [
|
|
1237
1236
|
S(M, {
|
|
1238
1237
|
"link-type": "regular_light",
|
|
1239
1238
|
arrow: ""
|
|
1240
1239
|
}, {
|
|
1241
1240
|
default: y(() => [
|
|
1242
|
-
|
|
1241
|
+
c(a.$slots, "facts-link", {}, void 0, !0)
|
|
1243
1242
|
]),
|
|
1244
1243
|
_: 3
|
|
1245
1244
|
})
|
|
@@ -1261,34 +1260,34 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1261
1260
|
elements: { default: () => [] }
|
|
1262
1261
|
},
|
|
1263
1262
|
setup(e) {
|
|
1264
|
-
return (a, r) => (o(),
|
|
1263
|
+
return (a, r) => (o(), i("div", _o, [
|
|
1265
1264
|
t("div", ho, [
|
|
1266
|
-
a.headline ? (o(),
|
|
1265
|
+
a.headline ? (o(), i("div", po, [
|
|
1267
1266
|
t("h2", null, d(a.headline), 1)
|
|
1268
1267
|
])) : p("", !0),
|
|
1269
|
-
a.body ? (o(),
|
|
1270
|
-
|
|
1268
|
+
a.body ? (o(), i("div", mo, [
|
|
1269
|
+
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1271
1270
|
])) : p("", !0),
|
|
1272
1271
|
t("div", {
|
|
1273
1272
|
class: m(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1274
1273
|
}, [
|
|
1275
|
-
(o(!0),
|
|
1276
|
-
key:
|
|
1274
|
+
(o(!0), i(T, null, V(a.elements, (s) => (o(), i("div", {
|
|
1275
|
+
key: s.headline,
|
|
1277
1276
|
class: "features__element"
|
|
1278
1277
|
}, [
|
|
1279
1278
|
S(F, { class: "element__icon" }, {
|
|
1280
1279
|
default: y(() => [
|
|
1281
|
-
|
|
1282
|
-
src:
|
|
1280
|
+
c(a.$slots, "features-icon", P(O({
|
|
1281
|
+
src: s.icon.src,
|
|
1283
1282
|
height: 30,
|
|
1284
1283
|
width: 30,
|
|
1285
|
-
alt:
|
|
1284
|
+
alt: s.icon.alt
|
|
1286
1285
|
})), void 0, !0)
|
|
1287
1286
|
]),
|
|
1288
1287
|
_: 2
|
|
1289
1288
|
}, 1024),
|
|
1290
|
-
t("p", vo, d(
|
|
1291
|
-
t("p", fo, d(
|
|
1289
|
+
t("p", vo, d(s.headline), 1),
|
|
1290
|
+
t("p", fo, d(s.body), 1)
|
|
1292
1291
|
]))), 128))
|
|
1293
1292
|
], 2)
|
|
1294
1293
|
])
|
|
@@ -1303,16 +1302,16 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1303
1302
|
}
|
|
1304
1303
|
},
|
|
1305
1304
|
setup(e) {
|
|
1306
|
-
return (a, r) => (o(),
|
|
1305
|
+
return (a, r) => (o(), i("div", yo, [
|
|
1307
1306
|
t("div", $o, [
|
|
1308
1307
|
t("div", ko, [
|
|
1309
1308
|
t("h2", wo, d(e.headline), 1),
|
|
1310
1309
|
t("div", Bo, [
|
|
1311
|
-
|
|
1310
|
+
c(a.$slots, "form-body", {}, void 0, !0)
|
|
1312
1311
|
])
|
|
1313
1312
|
]),
|
|
1314
1313
|
t("div", So, [
|
|
1315
|
-
|
|
1314
|
+
c(a.$slots, "form-script", {}, void 0, !0)
|
|
1316
1315
|
])
|
|
1317
1316
|
])
|
|
1318
1317
|
]));
|
|
@@ -1334,7 +1333,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1334
1333
|
}
|
|
1335
1334
|
},
|
|
1336
1335
|
setup(e) {
|
|
1337
|
-
return (a, r) => (o(),
|
|
1336
|
+
return (a, r) => (o(), i("div", Co, [
|
|
1338
1337
|
t("div", {
|
|
1339
1338
|
class: m({
|
|
1340
1339
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1356,7 +1355,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1356
1355
|
}
|
|
1357
1356
|
},
|
|
1358
1357
|
setup(e) {
|
|
1359
|
-
return (a, r) => (o(),
|
|
1358
|
+
return (a, r) => (o(), i("div", Vo, [
|
|
1360
1359
|
t("div", Po, [
|
|
1361
1360
|
t("div", Mo, [
|
|
1362
1361
|
t("div", Fo, [
|
|
@@ -1369,7 +1368,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1369
1368
|
arrow: ""
|
|
1370
1369
|
}, {
|
|
1371
1370
|
default: y(() => [
|
|
1372
|
-
|
|
1371
|
+
c(a.$slots, "hero-link", {}, void 0, !0)
|
|
1373
1372
|
]),
|
|
1374
1373
|
_: 3
|
|
1375
1374
|
})
|
|
@@ -1379,10 +1378,10 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1379
1378
|
t("div", Ho, [
|
|
1380
1379
|
Ro,
|
|
1381
1380
|
t("div", No, [
|
|
1382
|
-
|
|
1381
|
+
c(a.$slots, "hero-video", {}, void 0, !0)
|
|
1383
1382
|
]),
|
|
1384
1383
|
t("div", Eo, [
|
|
1385
|
-
|
|
1384
|
+
c(a.$slots, "hero-image", {}, void 0, !0)
|
|
1386
1385
|
])
|
|
1387
1386
|
])
|
|
1388
1387
|
])
|
|
@@ -1412,12 +1411,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1412
1411
|
}
|
|
1413
1412
|
},
|
|
1414
1413
|
setup(e) {
|
|
1415
|
-
return (a, r) => (o(),
|
|
1414
|
+
return (a, r) => (o(), i("div", Uo, [
|
|
1416
1415
|
t("div", Go, [
|
|
1417
1416
|
t("div", Jo, [
|
|
1418
1417
|
S(F, null, {
|
|
1419
1418
|
default: y(() => [
|
|
1420
|
-
|
|
1419
|
+
c(a.$slots, "image", P(O({
|
|
1421
1420
|
width: 984,
|
|
1422
1421
|
height: e.fullHeight ? "100%" : 554,
|
|
1423
1422
|
src: e.src,
|
|
@@ -1457,9 +1456,9 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1457
1456
|
white: "",
|
|
1458
1457
|
light: "gallery__wrapper--light",
|
|
1459
1458
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1460
|
-
}, r = e,
|
|
1461
|
-
return (l,
|
|
1462
|
-
class: m(["gallery__wrapper",
|
|
1459
|
+
}, r = e, s = D(() => a[r.bgColor]);
|
|
1460
|
+
return (l, u) => (o(), i("div", {
|
|
1461
|
+
class: m(["gallery__wrapper", s.value])
|
|
1463
1462
|
}, [
|
|
1464
1463
|
t("div", {
|
|
1465
1464
|
class: m([
|
|
@@ -1468,10 +1467,10 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1468
1467
|
])
|
|
1469
1468
|
}, [
|
|
1470
1469
|
t("div", Zo, [
|
|
1471
|
-
l.mediaLarge && l.mediaType === "image" ? (o(),
|
|
1470
|
+
l.mediaLarge && l.mediaType === "image" ? (o(), i("div", Xo, [
|
|
1472
1471
|
S(F, null, {
|
|
1473
1472
|
default: y(() => [
|
|
1474
|
-
|
|
1473
|
+
c(l.$slots, "image-large", P(O({
|
|
1475
1474
|
width: 617,
|
|
1476
1475
|
height: 530,
|
|
1477
1476
|
src: l.mediaLarge.src,
|
|
@@ -1481,7 +1480,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1481
1480
|
_: 3
|
|
1482
1481
|
})
|
|
1483
1482
|
])) : p("", !0),
|
|
1484
|
-
l.mediaLarge && l.mediaType === "video" ? (o(),
|
|
1483
|
+
l.mediaLarge && l.mediaType === "video" ? (o(), i("div", xo, [
|
|
1485
1484
|
S(ee, {
|
|
1486
1485
|
src: l.mediaLarge.src,
|
|
1487
1486
|
"local-video": "",
|
|
@@ -1503,13 +1502,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1503
1502
|
l.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1504
1503
|
])
|
|
1505
1504
|
}, [
|
|
1506
|
-
(o(!0),
|
|
1505
|
+
(o(!0), i(T, null, V(l.mediaSmall, (n) => (o(), i("div", {
|
|
1507
1506
|
key: n.src + n.alt,
|
|
1508
1507
|
class: "image image--small"
|
|
1509
1508
|
}, [
|
|
1510
1509
|
S(F, null, {
|
|
1511
1510
|
default: y(() => [
|
|
1512
|
-
|
|
1511
|
+
c(l.$slots, "image-small", P(O({
|
|
1513
1512
|
width: 328,
|
|
1514
1513
|
height: 246,
|
|
1515
1514
|
src: n.src,
|
|
@@ -1519,7 +1518,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1519
1518
|
_: 2
|
|
1520
1519
|
}, 1024)
|
|
1521
1520
|
]))), 128)),
|
|
1522
|
-
l.mediaSmall.length < 2 ? (o(),
|
|
1521
|
+
l.mediaSmall.length < 2 ? (o(), i("div", el, [
|
|
1523
1522
|
t("p", null, d(l.body), 1)
|
|
1524
1523
|
])) : p("", !0)
|
|
1525
1524
|
], 6)
|
|
@@ -1547,24 +1546,24 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1547
1546
|
}
|
|
1548
1547
|
},
|
|
1549
1548
|
setup(e) {
|
|
1550
|
-
return (a, r) => (o(),
|
|
1549
|
+
return (a, r) => (o(), i("div", ol, [
|
|
1551
1550
|
t("div", ll, [
|
|
1552
|
-
e.headline || e.body ? (o(),
|
|
1553
|
-
e.headline ? (o(),
|
|
1554
|
-
e.body ? (o(),
|
|
1551
|
+
e.headline || e.body ? (o(), i("div", sl, [
|
|
1552
|
+
e.headline ? (o(), i("h2", il, d(e.headline), 1)) : p("", !0),
|
|
1553
|
+
e.body ? (o(), i("p", rl, d(e.body), 1)) : p("", !0)
|
|
1555
1554
|
])) : p("", !0),
|
|
1556
1555
|
t("div", nl, [
|
|
1557
|
-
(o(!0),
|
|
1558
|
-
key:
|
|
1556
|
+
(o(!0), i(T, null, V(e.logos, (s) => (o(), i("div", {
|
|
1557
|
+
key: s.src + s.alt,
|
|
1559
1558
|
class: "logo-wall__logo"
|
|
1560
1559
|
}, [
|
|
1561
1560
|
S(F, null, {
|
|
1562
1561
|
default: y(() => [
|
|
1563
|
-
|
|
1562
|
+
c(a.$slots, "logo-wall-logo", P(O({
|
|
1564
1563
|
width: 130,
|
|
1565
1564
|
height: 130,
|
|
1566
|
-
src:
|
|
1567
|
-
alt:
|
|
1565
|
+
src: s.src,
|
|
1566
|
+
alt: s.alt
|
|
1568
1567
|
})), void 0, !0)
|
|
1569
1568
|
]),
|
|
1570
1569
|
_: 2
|
|
@@ -1577,7 +1576,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1577
1576
|
arrow: !0
|
|
1578
1577
|
}, {
|
|
1579
1578
|
default: y(() => [
|
|
1580
|
-
|
|
1579
|
+
c(a.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1581
1580
|
]),
|
|
1582
1581
|
_: 3
|
|
1583
1582
|
})
|
|
@@ -1603,29 +1602,29 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1603
1602
|
white: "micro-stories__wrapper--white",
|
|
1604
1603
|
blue: "micro-stories__wrapper--blue",
|
|
1605
1604
|
dark: "micro-stories__wrapper--dark"
|
|
1606
|
-
}, r =
|
|
1607
|
-
return (l,
|
|
1605
|
+
}, r = D(() => a[s.bgColor]), s = e;
|
|
1606
|
+
return (l, u) => (o(), i("div", {
|
|
1608
1607
|
class: m(["micro-stories__wrapper", r.value])
|
|
1609
1608
|
}, [
|
|
1610
1609
|
t("div", _l, [
|
|
1611
|
-
l.headline ? (o(),
|
|
1610
|
+
l.headline ? (o(), i("div", hl, [
|
|
1612
1611
|
t("h2", null, d(l.headline), 1)
|
|
1613
1612
|
])) : p("", !0),
|
|
1614
|
-
l.body ? (o(),
|
|
1613
|
+
l.body ? (o(), i("div", pl, [
|
|
1615
1614
|
t("p", null, d(l.body), 1)
|
|
1616
1615
|
])) : p("", !0)
|
|
1617
1616
|
]),
|
|
1618
1617
|
t("div", ml, [
|
|
1619
|
-
|
|
1618
|
+
c(l.$slots, "micro-stories-slides")
|
|
1620
1619
|
]),
|
|
1621
|
-
|
|
1620
|
+
c(l.$slots, "micro-stories-controls")
|
|
1622
1621
|
], 2));
|
|
1623
1622
|
}
|
|
1624
1623
|
}), fl = {}, gl = { class: "policy__wrapper" }, bl = { class: "policy__content" };
|
|
1625
1624
|
function yl(e, a) {
|
|
1626
|
-
return o(),
|
|
1625
|
+
return o(), i("div", gl, [
|
|
1627
1626
|
t("div", bl, [
|
|
1628
|
-
|
|
1627
|
+
c(e.$slots, "default", {}, void 0, !0)
|
|
1629
1628
|
])
|
|
1630
1629
|
]);
|
|
1631
1630
|
}
|
|
@@ -1670,11 +1669,11 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1670
1669
|
}
|
|
1671
1670
|
},
|
|
1672
1671
|
setup(e) {
|
|
1673
|
-
return (a, r) => (o(),
|
|
1672
|
+
return (a, r) => (o(), i("div", kl, [
|
|
1674
1673
|
t("div", wl, [
|
|
1675
1674
|
t("div", Bl, d(e.headline), 1),
|
|
1676
1675
|
t("div", Sl, [
|
|
1677
|
-
e.videoSrc !== "" ? (o(),
|
|
1676
|
+
e.videoSrc !== "" ? (o(), L(ee, {
|
|
1678
1677
|
key: 0,
|
|
1679
1678
|
play: "",
|
|
1680
1679
|
"local-video": !0,
|
|
@@ -1685,25 +1684,25 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1685
1684
|
autoplay: "",
|
|
1686
1685
|
loop: "",
|
|
1687
1686
|
muted: ""
|
|
1688
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (o(),
|
|
1687
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (o(), L(I(F), { key: 1 }, {
|
|
1689
1688
|
default: y(() => [
|
|
1690
|
-
|
|
1689
|
+
c(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1691
1690
|
]),
|
|
1692
1691
|
_: 3
|
|
1693
1692
|
})),
|
|
1694
1693
|
t("div", Il, [
|
|
1695
|
-
e.logoSrc ? (o(),
|
|
1694
|
+
e.logoSrc ? (o(), i("div", ql, [
|
|
1696
1695
|
S(I(F), null, {
|
|
1697
1696
|
default: y(() => [
|
|
1698
|
-
|
|
1697
|
+
c(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1699
1698
|
]),
|
|
1700
1699
|
_: 3
|
|
1701
1700
|
})
|
|
1702
1701
|
])) : p("", !0),
|
|
1703
|
-
e.isCertified ? (o(),
|
|
1702
|
+
e.isCertified ? (o(), i("div", Cl, [
|
|
1704
1703
|
S(I(F), null, {
|
|
1705
1704
|
default: y(() => [
|
|
1706
|
-
|
|
1705
|
+
c(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1707
1706
|
]),
|
|
1708
1707
|
_: 3
|
|
1709
1708
|
})
|
|
@@ -1733,17 +1732,17 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1733
1732
|
dark: "promo__wrapper--dark",
|
|
1734
1733
|
light: "promo__wrapper--light",
|
|
1735
1734
|
default: "promo__wrapper--default"
|
|
1736
|
-
}, r = e,
|
|
1737
|
-
return (l,
|
|
1735
|
+
}, r = e, s = D(() => a[r.variant]);
|
|
1736
|
+
return (l, u) => (o(), i("div", {
|
|
1738
1737
|
class: m([
|
|
1739
1738
|
"promo__wrapper",
|
|
1740
|
-
|
|
1739
|
+
s.value,
|
|
1741
1740
|
l.teaser ? "promo__wrapper--teaser" : "",
|
|
1742
1741
|
l.multiply ? "promo__wrapper--multiply" : ""
|
|
1743
1742
|
])
|
|
1744
1743
|
}, [
|
|
1745
1744
|
t("div", Dl, [
|
|
1746
|
-
l.mediaType === "image" ? (o(),
|
|
1745
|
+
l.mediaType === "image" ? (o(), i("div", {
|
|
1747
1746
|
key: 0,
|
|
1748
1747
|
class: m([
|
|
1749
1748
|
"promo__image",
|
|
@@ -1752,12 +1751,12 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1752
1751
|
}, [
|
|
1753
1752
|
S(F, null, {
|
|
1754
1753
|
default: y(() => [
|
|
1755
|
-
|
|
1754
|
+
c(l.$slots, "promo-image", P(O({ src: l.src, width: 1920, alt: l.alt, height: 1080 })))
|
|
1756
1755
|
]),
|
|
1757
1756
|
_: 3
|
|
1758
1757
|
})
|
|
1759
1758
|
], 2)) : p("", !0),
|
|
1760
|
-
l.mediaType === "video" ? (o(),
|
|
1759
|
+
l.mediaType === "video" ? (o(), i("div", {
|
|
1761
1760
|
key: 1,
|
|
1762
1761
|
class: m([
|
|
1763
1762
|
"promo__video",
|
|
@@ -1782,7 +1781,7 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1782
1781
|
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1783
1782
|
])
|
|
1784
1783
|
}, [
|
|
1785
|
-
l.label ? (o(),
|
|
1784
|
+
l.label ? (o(), L(Z, {
|
|
1786
1785
|
key: 0,
|
|
1787
1786
|
text: l.label,
|
|
1788
1787
|
"label-dark": l.variant === "dark"
|
|
@@ -1793,24 +1792,24 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1793
1792
|
l.variant === "dark" ? "promo__title--dark" : ""
|
|
1794
1793
|
])
|
|
1795
1794
|
}, [
|
|
1796
|
-
|
|
1795
|
+
c(l.$slots, "promo-headline")
|
|
1797
1796
|
], 2),
|
|
1798
|
-
l.linkType === "link" ? (o(),
|
|
1797
|
+
l.linkType === "link" ? (o(), L(M, {
|
|
1799
1798
|
key: 1,
|
|
1800
1799
|
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
1801
1800
|
arrow: ""
|
|
1802
1801
|
}, {
|
|
1803
1802
|
default: y(() => [
|
|
1804
|
-
|
|
1803
|
+
c(l.$slots, "promo-link")
|
|
1805
1804
|
]),
|
|
1806
1805
|
_: 3
|
|
1807
1806
|
}, 8, ["link-type"])) : p("", !0),
|
|
1808
|
-
l.linkType === "button" ? (o(),
|
|
1807
|
+
l.linkType === "button" ? (o(), L(M, {
|
|
1809
1808
|
key: 2,
|
|
1810
1809
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
1811
1810
|
}, {
|
|
1812
1811
|
default: y(() => [
|
|
1813
|
-
|
|
1812
|
+
c(l.$slots, "promo-link")
|
|
1814
1813
|
]),
|
|
1815
1814
|
_: 3
|
|
1816
1815
|
}, 8, ["link-type"])) : p("", !0)
|
|
@@ -1843,16 +1842,16 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1843
1842
|
}
|
|
1844
1843
|
},
|
|
1845
1844
|
setup(e) {
|
|
1846
|
-
return (a, r) => (o(),
|
|
1845
|
+
return (a, r) => (o(), i("div", Ml, [
|
|
1847
1846
|
t("div", Fl, [
|
|
1848
1847
|
Ol,
|
|
1849
1848
|
t("div", zl, [
|
|
1850
1849
|
t("p", Hl, d(e.quote), 1),
|
|
1851
1850
|
t("div", Rl, [
|
|
1852
|
-
e.authorImage ? (o(),
|
|
1851
|
+
e.authorImage ? (o(), i("div", Nl, [
|
|
1853
1852
|
S(F, null, {
|
|
1854
1853
|
default: y(() => [
|
|
1855
|
-
|
|
1854
|
+
c(a.$slots, "author-image", P(O({
|
|
1856
1855
|
src: e.authorImage + "/m/100x100",
|
|
1857
1856
|
width: 60,
|
|
1858
1857
|
height: 60
|
|
@@ -1889,19 +1888,19 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1889
1888
|
label: { default: "" }
|
|
1890
1889
|
},
|
|
1891
1890
|
setup(e) {
|
|
1892
|
-
return (a, r) => (o(),
|
|
1891
|
+
return (a, r) => (o(), i("div", {
|
|
1893
1892
|
class: m([
|
|
1894
1893
|
"rich-text",
|
|
1895
1894
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1896
1895
|
])
|
|
1897
1896
|
}, [
|
|
1898
1897
|
t("div", Jl, [
|
|
1899
|
-
a.label ? (o(),
|
|
1898
|
+
a.label ? (o(), L(Z, {
|
|
1900
1899
|
key: 0,
|
|
1901
1900
|
text: a.label,
|
|
1902
1901
|
"label-dark": !1
|
|
1903
1902
|
}, null, 8, ["text"])) : p("", !0),
|
|
1904
|
-
a.headline ? (o(),
|
|
1903
|
+
a.headline ? (o(), i("h2", {
|
|
1905
1904
|
key: 1,
|
|
1906
1905
|
class: m([
|
|
1907
1906
|
"rich-text__headline",
|
|
@@ -1920,15 +1919,15 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1920
1919
|
a.bulletList || a.image ? "rich-text__body--content-right" : ""
|
|
1921
1920
|
])
|
|
1922
1921
|
}, [
|
|
1923
|
-
|
|
1924
|
-
a.links ? (o(),
|
|
1925
|
-
|
|
1922
|
+
c(a.$slots, "rich-text-content"),
|
|
1923
|
+
a.links ? (o(), i("div", Wl, [
|
|
1924
|
+
c(a.$slots, "rich-text-links")
|
|
1926
1925
|
])) : p("", !0)
|
|
1927
1926
|
], 2),
|
|
1928
|
-
a.bulletList ? (o(),
|
|
1929
|
-
|
|
1927
|
+
a.bulletList ? (o(), i("div", Yl, [
|
|
1928
|
+
c(a.$slots, "rich-text-bullet-list")
|
|
1930
1929
|
])) : p("", !0),
|
|
1931
|
-
a.image ? (o(),
|
|
1930
|
+
a.image ? (o(), i("div", {
|
|
1932
1931
|
key: 1,
|
|
1933
1932
|
class: m([
|
|
1934
1933
|
"rich-text__image",
|
|
@@ -1937,7 +1936,7 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1937
1936
|
}, [
|
|
1938
1937
|
S(F, null, {
|
|
1939
1938
|
default: y(() => [
|
|
1940
|
-
|
|
1939
|
+
c(a.$slots, "rich-text-image", P(O({ width: 865, height: 307 })))
|
|
1941
1940
|
]),
|
|
1942
1941
|
_: 3
|
|
1943
1942
|
})
|
|
@@ -1948,15 +1947,15 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1948
1947
|
}
|
|
1949
1948
|
}), 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
1949
|
function os(e, a) {
|
|
1951
|
-
return o(),
|
|
1950
|
+
return o(), i("div", xl, [
|
|
1952
1951
|
t("div", es, [
|
|
1953
1952
|
t("div", ts, [
|
|
1954
1953
|
t("div", as, [
|
|
1955
1954
|
t("div", null, [
|
|
1956
|
-
|
|
1955
|
+
c(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
1957
1956
|
]),
|
|
1958
1957
|
t("div", null, [
|
|
1959
|
-
|
|
1958
|
+
c(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
1960
1959
|
])
|
|
1961
1960
|
])
|
|
1962
1961
|
])
|
|
@@ -1977,8 +1976,8 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
1977
1976
|
setup(e) {
|
|
1978
1977
|
return pe(() => {
|
|
1979
1978
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
1980
|
-
(
|
|
1981
|
-
|
|
1979
|
+
(s) => {
|
|
1980
|
+
s.forEach((l) => {
|
|
1982
1981
|
l.isIntersecting && (l.target.classList.add("visible"), l.target.classList.remove("faded"), r.unobserve(l.target));
|
|
1983
1982
|
});
|
|
1984
1983
|
},
|
|
@@ -1986,29 +1985,29 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
1986
1985
|
threshold: 1
|
|
1987
1986
|
}
|
|
1988
1987
|
);
|
|
1989
|
-
a.forEach((
|
|
1990
|
-
r.observe(
|
|
1988
|
+
a.forEach((s) => {
|
|
1989
|
+
r.observe(s);
|
|
1991
1990
|
});
|
|
1992
|
-
}), (a, r) => (o(),
|
|
1991
|
+
}), (a, r) => (o(), i("div", is, [
|
|
1993
1992
|
t("div", rs, [
|
|
1994
1993
|
t("div", ns, [
|
|
1995
|
-
(o(!0),
|
|
1996
|
-
key:
|
|
1994
|
+
(o(!0), i(T, null, V(e.timelineItems, (s) => (o(), i("div", {
|
|
1995
|
+
key: s.year,
|
|
1997
1996
|
class: "timeline__item faded"
|
|
1998
1997
|
}, [
|
|
1999
|
-
t("div", ds, d(
|
|
1998
|
+
t("div", ds, d(s.year), 1),
|
|
2000
1999
|
cs,
|
|
2001
2000
|
t("div", us, [
|
|
2002
2001
|
S(F, null, {
|
|
2003
2002
|
default: y(() => [
|
|
2004
|
-
|
|
2003
|
+
s.media.src ? c(a.$slots, "timeline-image", P(X({ key: 0 }, { src: s.media.src, alt: s.media.alt })), void 0, !0) : p("", !0)
|
|
2005
2004
|
]),
|
|
2006
2005
|
_: 2
|
|
2007
2006
|
}, 1024),
|
|
2008
2007
|
t("div", {
|
|
2009
|
-
style: x([
|
|
2008
|
+
style: x([s.media.src ? "" : "margin-top: 0px"]),
|
|
2010
2009
|
class: "rich-text",
|
|
2011
|
-
innerHTML:
|
|
2010
|
+
innerHTML: s.text
|
|
2012
2011
|
}, null, 12, _s)
|
|
2013
2012
|
])
|
|
2014
2013
|
]))), 128))
|
|
@@ -2035,11 +2034,11 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2035
2034
|
}
|
|
2036
2035
|
},
|
|
2037
2036
|
setup(e) {
|
|
2038
|
-
return (a, r) => (o(),
|
|
2037
|
+
return (a, r) => (o(), i("div", ms, [
|
|
2039
2038
|
t("div", vs, [
|
|
2040
|
-
e.headline ? (o(),
|
|
2041
|
-
|
|
2042
|
-
e.description ? (o(),
|
|
2039
|
+
e.headline ? (o(), i("h2", fs, d(e.headline), 1)) : p("", !0),
|
|
2040
|
+
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2041
|
+
e.description ? (o(), i("p", gs, d(e.description), 1)) : p("", !0)
|
|
2043
2042
|
])
|
|
2044
2043
|
]));
|
|
2045
2044
|
}
|
|
@@ -2063,17 +2062,17 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2063
2062
|
}) }
|
|
2064
2063
|
},
|
|
2065
2064
|
setup(e) {
|
|
2066
|
-
return (a, r) => (o(),
|
|
2065
|
+
return (a, r) => (o(), i("div", $s, [
|
|
2067
2066
|
t("div", ks, [
|
|
2068
2067
|
t("div", ws, [
|
|
2069
2068
|
t("div", null, [
|
|
2070
2069
|
t("h1", Bs, d(a.hero.headline), 1),
|
|
2071
2070
|
t("p", Ss, d(a.hero.description), 1),
|
|
2072
|
-
a.hero.showStats ? p("", !0) : (o(),
|
|
2073
|
-
|
|
2071
|
+
a.hero.showStats ? p("", !0) : (o(), i("div", Is, [
|
|
2072
|
+
c(a.$slots, "button", {}, void 0, !0)
|
|
2074
2073
|
]))
|
|
2075
2074
|
]),
|
|
2076
|
-
a.hero.showStats ? (o(),
|
|
2075
|
+
a.hero.showStats ? (o(), i("div", qs, [
|
|
2077
2076
|
t("div", Cs, [
|
|
2078
2077
|
t("div", As, [
|
|
2079
2078
|
t("div", Ls, d(a.hero.lessonValue), 1),
|
|
@@ -2098,11 +2097,11 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2098
2097
|
}
|
|
2099
2098
|
},
|
|
2100
2099
|
setup(e) {
|
|
2101
|
-
return (a, r) => (o(),
|
|
2100
|
+
return (a, r) => (o(), i("div", Os, [
|
|
2102
2101
|
t("div", zs, [
|
|
2103
2102
|
t("h1", Hs, d(e.headline), 1),
|
|
2104
2103
|
t("div", Rs, [
|
|
2105
|
-
|
|
2104
|
+
c(a.$slots, "not-found-body", {}, void 0, !0)
|
|
2106
2105
|
])
|
|
2107
2106
|
])
|
|
2108
2107
|
]));
|
|
@@ -2121,17 +2120,17 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2121
2120
|
},
|
|
2122
2121
|
emits: ["clearFilters"],
|
|
2123
2122
|
setup(e) {
|
|
2124
|
-
return (a, r) => (o(),
|
|
2123
|
+
return (a, r) => (o(), i("div", js, [
|
|
2125
2124
|
t("div", Ks, [
|
|
2126
2125
|
t("div", Us, [
|
|
2127
|
-
|
|
2126
|
+
c(a.$slots, "filter-dropdowns")
|
|
2128
2127
|
]),
|
|
2129
2128
|
t("div", Gs, [
|
|
2130
|
-
|
|
2131
|
-
e.hasChips ? (o(),
|
|
2129
|
+
c(a.$slots, "filter-chips"),
|
|
2130
|
+
e.hasChips ? (o(), i("button", {
|
|
2132
2131
|
key: 0,
|
|
2133
2132
|
class: "filter__clear",
|
|
2134
|
-
onClick: r[0] || (r[0] = (
|
|
2133
|
+
onClick: r[0] || (r[0] = (s) => a.$emit("clearFilters"))
|
|
2135
2134
|
}, d(e.removeAll), 1)) : p("", !0)
|
|
2136
2135
|
])
|
|
2137
2136
|
])
|
|
@@ -2178,29 +2177,29 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2178
2177
|
},
|
|
2179
2178
|
emits: ["changeRegionClicked"],
|
|
2180
2179
|
setup(e) {
|
|
2181
|
-
return (a, r) => (o(),
|
|
2180
|
+
return (a, r) => (o(), i("div", Ys, [
|
|
2182
2181
|
t("footer", Qs, [
|
|
2183
|
-
a.language === "zh" ? (o(),
|
|
2182
|
+
a.language === "zh" ? (o(), i("img", Zs)) : p("", !0),
|
|
2184
2183
|
t("div", Xs, [
|
|
2185
|
-
(o(!0),
|
|
2186
|
-
key:
|
|
2184
|
+
(o(!0), i(T, null, V(a.footerSections, (s) => (o(), i("div", {
|
|
2185
|
+
key: s.title,
|
|
2187
2186
|
class: "section"
|
|
2188
2187
|
}, [
|
|
2189
|
-
t("span", xs, d(
|
|
2188
|
+
t("span", xs, d(s.title), 1),
|
|
2190
2189
|
t("nav", null, [
|
|
2191
2190
|
t("ul", ei, [
|
|
2192
|
-
|
|
2193
|
-
links:
|
|
2191
|
+
c(a.$slots, "section-links", {
|
|
2192
|
+
links: s.links
|
|
2194
2193
|
})
|
|
2195
2194
|
])
|
|
2196
2195
|
])
|
|
2197
2196
|
]))), 128)),
|
|
2198
2197
|
t("div", ti, [
|
|
2199
|
-
a.language === "zh" ? (o(),
|
|
2198
|
+
a.language === "zh" ? (o(), i("span", ai, "名傲移动机器人(上海)有限公司")) : (o(), i("span", oi, "Mobile Industrial Robots A/S")),
|
|
2200
2199
|
t("address", null, [
|
|
2201
|
-
a.language === "zh" ? (o(),
|
|
2202
|
-
a.language === "zh" ? (o(),
|
|
2203
|
-
a.language !== "zh" ? (o(),
|
|
2200
|
+
a.language === "zh" ? (o(), i("span", li, "上海浦东新区金桥出口加工区")) : (o(), i("span", si, "Energivej 51")),
|
|
2201
|
+
a.language === "zh" ? (o(), i("span", ii, "桂桥路1201号10栋2楼")) : (o(), i("span", ri, "5260 Odense S")),
|
|
2202
|
+
a.language !== "zh" ? (o(), i("span", ni, "CVR: 35251235")) : p("", !0),
|
|
2204
2203
|
di,
|
|
2205
2204
|
S(M, {
|
|
2206
2205
|
class: "footer__contact",
|
|
@@ -2208,7 +2207,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2208
2207
|
underline: "false"
|
|
2209
2208
|
}, {
|
|
2210
2209
|
default: y(() => [
|
|
2211
|
-
a.language === "zh" ? (o(),
|
|
2210
|
+
a.language === "zh" ? (o(), i("a", ci, "china@mir-robots.com")) : (o(), i("a", ui, "mail@mir-robots.com"))
|
|
2212
2211
|
]),
|
|
2213
2212
|
_: 1
|
|
2214
2213
|
}),
|
|
@@ -2218,7 +2217,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2218
2217
|
underline: "false"
|
|
2219
2218
|
}, {
|
|
2220
2219
|
default: y(() => [
|
|
2221
|
-
a.language === "zh" ? (o(),
|
|
2220
|
+
a.language === "zh" ? (o(), i("a", _i, "+86 13661856951(微信同号)")) : (o(), i("a", hi, "+45 20 377 577"))
|
|
2222
2221
|
]),
|
|
2223
2222
|
_: 1
|
|
2224
2223
|
})
|
|
@@ -2230,53 +2229,53 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2230
2229
|
t("div", vi, [
|
|
2231
2230
|
t("button", {
|
|
2232
2231
|
class: "footer__language-switcher",
|
|
2233
|
-
onClick: r[0] || (r[0] = (
|
|
2232
|
+
onClick: r[0] || (r[0] = (s) => a.$emit("changeRegionClicked"))
|
|
2234
2233
|
}, [
|
|
2235
2234
|
t("span", null, [
|
|
2236
2235
|
fi,
|
|
2237
2236
|
G(d(a.changeRegion), 1)
|
|
2238
2237
|
])
|
|
2239
2238
|
]),
|
|
2240
|
-
|
|
2241
|
-
|
|
2239
|
+
c(a.$slots, "footer-privacy-link"),
|
|
2240
|
+
c(a.$slots, "footer-cookie-link")
|
|
2242
2241
|
]),
|
|
2243
|
-
a.language !== "zh" ? (o(),
|
|
2244
|
-
(o(!0),
|
|
2245
|
-
key:
|
|
2242
|
+
a.language !== "zh" ? (o(), i("div", gi, [
|
|
2243
|
+
(o(!0), i(T, null, V(a.socialMedia, (s) => (o(), L(M, {
|
|
2244
|
+
key: s.title,
|
|
2246
2245
|
underline: "false",
|
|
2247
2246
|
"link-type": "regular"
|
|
2248
2247
|
}, {
|
|
2249
2248
|
default: y(() => [
|
|
2250
2249
|
t("a", {
|
|
2251
|
-
href:
|
|
2250
|
+
href: s.url,
|
|
2252
2251
|
target: "_blank",
|
|
2253
|
-
"aria-label":
|
|
2252
|
+
"aria-label": s.title
|
|
2254
2253
|
}, [
|
|
2255
2254
|
t("i", {
|
|
2256
2255
|
width: "19",
|
|
2257
2256
|
height: "14",
|
|
2258
|
-
class: m(["footer__social--icon", [
|
|
2257
|
+
class: m(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
2259
2258
|
}, null, 2)
|
|
2260
2259
|
], 8, bi)
|
|
2261
2260
|
]),
|
|
2262
2261
|
_: 2
|
|
2263
2262
|
}, 1024))), 128))
|
|
2264
|
-
])) : (o(),
|
|
2265
|
-
(o(!0),
|
|
2266
|
-
key:
|
|
2263
|
+
])) : (o(), i("div", yi, [
|
|
2264
|
+
(o(!0), i(T, null, V(a.socialMediaChina, (s) => (o(), L(M, {
|
|
2265
|
+
key: s.title,
|
|
2267
2266
|
underline: "false",
|
|
2268
2267
|
"link-type": "regular"
|
|
2269
2268
|
}, {
|
|
2270
2269
|
default: y(() => [
|
|
2271
2270
|
t("a", {
|
|
2272
|
-
href:
|
|
2271
|
+
href: s.url,
|
|
2273
2272
|
target: "_blank",
|
|
2274
|
-
"aria-label":
|
|
2273
|
+
"aria-label": s.title
|
|
2275
2274
|
}, [
|
|
2276
2275
|
t("i", {
|
|
2277
2276
|
width: "19",
|
|
2278
2277
|
height: "14",
|
|
2279
|
-
class: m(["footer__social--icon", [
|
|
2278
|
+
class: m(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
2280
2279
|
}, null, 2)
|
|
2281
2280
|
], 8, $i)
|
|
2282
2281
|
]),
|
|
@@ -2383,12 +2382,12 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2383
2382
|
"clickSearch"
|
|
2384
2383
|
],
|
|
2385
2384
|
setup(e, { expose: a, emit: r }) {
|
|
2386
|
-
let
|
|
2385
|
+
let s = null;
|
|
2387
2386
|
const l = e;
|
|
2388
|
-
let
|
|
2387
|
+
let u = q(l.burgerState), n = q(l.search), _ = q(l.showDropDown), b = q(l.showPortalSwitcherDropDown), v = q(l.showProfileDropDown), k = q(l.isAuthenticated);
|
|
2389
2388
|
Y(
|
|
2390
2389
|
() => l.burgerState,
|
|
2391
|
-
($) =>
|
|
2390
|
+
($) => u.value = $
|
|
2392
2391
|
), Y(
|
|
2393
2392
|
() => l.search,
|
|
2394
2393
|
($) => n.value = $
|
|
@@ -2405,11 +2404,11 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2405
2404
|
() => l.isAuthenticated,
|
|
2406
2405
|
($) => k.value = $
|
|
2407
2406
|
), pe(() => {
|
|
2408
|
-
|
|
2407
|
+
s = ($) => {
|
|
2409
2408
|
$.target.closest("#menu-dropdown") || (_.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (v.value = !1);
|
|
2410
|
-
}, window.addEventListener("click",
|
|
2409
|
+
}, window.addEventListener("click", s);
|
|
2411
2410
|
}), qe(() => {
|
|
2412
|
-
|
|
2411
|
+
s !== null && window.removeEventListener("click", s);
|
|
2413
2412
|
});
|
|
2414
2413
|
const w = r;
|
|
2415
2414
|
function te() {
|
|
@@ -2422,7 +2421,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2422
2421
|
v.value = !v.value, w("update:showProfileDropDown", v.value);
|
|
2423
2422
|
}
|
|
2424
2423
|
function re() {
|
|
2425
|
-
|
|
2424
|
+
u.value = !u.value, w("update:burgerState", u.value);
|
|
2426
2425
|
}
|
|
2427
2426
|
let U = q(null), ae = q(null);
|
|
2428
2427
|
function ne() {
|
|
@@ -2430,30 +2429,30 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2430
2429
|
}
|
|
2431
2430
|
return a({
|
|
2432
2431
|
defocusSearchButton: ne
|
|
2433
|
-
}), ($, E) => (o(),
|
|
2432
|
+
}), ($, E) => (o(), i("div", Bi, [
|
|
2434
2433
|
t("nav", null, [
|
|
2435
2434
|
t("div", Si, [
|
|
2436
2435
|
t("div", Ii, [
|
|
2437
|
-
|
|
2436
|
+
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2438
2437
|
]),
|
|
2439
2438
|
t("ul", qi, [
|
|
2440
|
-
|
|
2439
|
+
c($.$slots, "main-nav-items", {}, void 0, !0)
|
|
2441
2440
|
]),
|
|
2442
|
-
e.useDropdown ? (o(),
|
|
2441
|
+
e.useDropdown ? (o(), i("div", Ci, [
|
|
2443
2442
|
t("button", {
|
|
2444
2443
|
class: "nav-dropdown-btn",
|
|
2445
2444
|
onClick: te
|
|
2446
2445
|
}, [
|
|
2447
|
-
|
|
2448
|
-
I(_) === !1 ? (o(),
|
|
2446
|
+
c($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2447
|
+
I(_) === !1 ? (o(), i("img", Ai)) : (o(), i("img", Li))
|
|
2449
2448
|
]),
|
|
2450
2449
|
K(t("div", Di, [
|
|
2451
|
-
|
|
2450
|
+
c($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2452
2451
|
], 512), [
|
|
2453
2452
|
[Q, I(_)]
|
|
2454
2453
|
])
|
|
2455
2454
|
], 512)) : p("", !0),
|
|
2456
|
-
I(n) ? (o(),
|
|
2455
|
+
I(n) ? (o(), i("div", Ti, [
|
|
2457
2456
|
t("button", {
|
|
2458
2457
|
ref_key: "navSearchButton",
|
|
2459
2458
|
ref: U,
|
|
@@ -2464,21 +2463,21 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2464
2463
|
})
|
|
2465
2464
|
}, [
|
|
2466
2465
|
t("img", {
|
|
2467
|
-
src: I(
|
|
2466
|
+
src: I(u) === !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
2467
|
alt: "search icon",
|
|
2469
2468
|
width: "20",
|
|
2470
2469
|
height: "20"
|
|
2471
2470
|
}, null, 8, Vi)
|
|
2472
2471
|
], 512)
|
|
2473
2472
|
])) : p("", !0),
|
|
2474
|
-
e.usePortalSwitcher ? (o(),
|
|
2473
|
+
e.usePortalSwitcher ? (o(), i("div", Pi, [
|
|
2475
2474
|
t("button", {
|
|
2476
2475
|
class: "nav-portal-switcher-btn",
|
|
2477
2476
|
onClick: se
|
|
2478
2477
|
}, Fi),
|
|
2479
2478
|
K(t("div", Oi, [
|
|
2480
2479
|
t("ul", zi, [
|
|
2481
|
-
(o(!0),
|
|
2480
|
+
(o(!0), i(T, null, V(e.portals, (j, N) => (o(), i("li", {
|
|
2482
2481
|
key: N,
|
|
2483
2482
|
class: "portal-switcher-link"
|
|
2484
2483
|
}, [
|
|
@@ -2502,30 +2501,30 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2502
2501
|
[Q, I(b)]
|
|
2503
2502
|
])
|
|
2504
2503
|
])) : p("", !0),
|
|
2505
|
-
e.useProfileDropdown ? (o(),
|
|
2506
|
-
I(k) ? p("", !0) : (o(),
|
|
2507
|
-
|
|
2504
|
+
e.useProfileDropdown ? (o(), i("div", Ni, [
|
|
2505
|
+
I(k) ? p("", !0) : (o(), i("div", Ei, [
|
|
2506
|
+
c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2508
2507
|
])),
|
|
2509
|
-
I(k) ? (o(),
|
|
2508
|
+
I(k) ? (o(), i("button", {
|
|
2510
2509
|
key: 1,
|
|
2511
2510
|
class: "nav-profile-dropdown-btn",
|
|
2512
2511
|
onClick: ie
|
|
2513
2512
|
}, Ki)) : p("", !0),
|
|
2514
2513
|
K(t("div", Ui, [
|
|
2515
|
-
|
|
2514
|
+
c($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2516
2515
|
], 512), [
|
|
2517
2516
|
[Q, I(v)]
|
|
2518
2517
|
])
|
|
2519
2518
|
])) : p("", !0)
|
|
2520
2519
|
]),
|
|
2521
2520
|
t("div", {
|
|
2522
|
-
class: m(["mobile-nav-wrapper", I(
|
|
2521
|
+
class: m(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2523
2522
|
}, [
|
|
2524
2523
|
t("div", Gi, [
|
|
2525
2524
|
t("div", Ji, [
|
|
2526
|
-
|
|
2525
|
+
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2527
2526
|
]),
|
|
2528
|
-
I(n) ? (o(),
|
|
2527
|
+
I(n) ? (o(), i("div", Wi, [
|
|
2529
2528
|
t("button", {
|
|
2530
2529
|
ref_key: "mobileSearchButton",
|
|
2531
2530
|
ref: ae,
|
|
@@ -2537,7 +2536,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2537
2536
|
})
|
|
2538
2537
|
}, [
|
|
2539
2538
|
t("img", {
|
|
2540
|
-
src: I(
|
|
2539
|
+
src: I(u) === !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
2540
|
alt: "search icon",
|
|
2542
2541
|
width: "20",
|
|
2543
2542
|
height: "20"
|
|
@@ -2553,20 +2552,20 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2553
2552
|
width: "20",
|
|
2554
2553
|
height: "20",
|
|
2555
2554
|
alt: "burger menu line icon",
|
|
2556
|
-
src: I(
|
|
2555
|
+
src: I(u) === !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
2556
|
}, null, 8, Qi)
|
|
2558
2557
|
])
|
|
2559
2558
|
]),
|
|
2560
2559
|
K(t("div", Zi, [
|
|
2561
2560
|
t("ul", null, [
|
|
2562
|
-
|
|
2561
|
+
c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2563
2562
|
]),
|
|
2564
2563
|
t("ul", Xi, [
|
|
2565
|
-
|
|
2566
|
-
|
|
2564
|
+
c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2565
|
+
c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2567
2566
|
])
|
|
2568
2567
|
], 512), [
|
|
2569
|
-
[Q, I(
|
|
2568
|
+
[Q, I(u)]
|
|
2570
2569
|
])
|
|
2571
2570
|
], 2)
|
|
2572
2571
|
])
|
|
@@ -2585,12 +2584,12 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2585
2584
|
}
|
|
2586
2585
|
},
|
|
2587
2586
|
setup(e) {
|
|
2588
|
-
return (a, r) => (o(),
|
|
2587
|
+
return (a, r) => (o(), i("div", tr, [
|
|
2589
2588
|
t("div", ar, [
|
|
2590
2589
|
t("h2", or, d(e.headline), 1),
|
|
2591
2590
|
t("p", lr, d(e.paragraph), 1),
|
|
2592
2591
|
t("div", sr, [
|
|
2593
|
-
|
|
2592
|
+
c(a.$slots, "language-links", {}, void 0, !0)
|
|
2594
2593
|
])
|
|
2595
2594
|
])
|
|
2596
2595
|
]));
|
|
@@ -2609,28 +2608,28 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2609
2608
|
},
|
|
2610
2609
|
emits: ["previous", "next"],
|
|
2611
2610
|
setup(e) {
|
|
2612
|
-
return (a, r) => (o(),
|
|
2611
|
+
return (a, r) => (o(), i("div", nr, [
|
|
2613
2612
|
t("div", dr, [
|
|
2614
2613
|
S(le, {
|
|
2615
2614
|
disabled: e.isPreviousDisabled,
|
|
2616
2615
|
variant: "previous",
|
|
2617
2616
|
"aria-label": "previous",
|
|
2618
|
-
onClick: r[0] || (r[0] = (
|
|
2617
|
+
onClick: r[0] || (r[0] = (s) => a.$emit("previous"))
|
|
2619
2618
|
}, null, 8, ["disabled"]),
|
|
2620
|
-
|
|
2619
|
+
c(a.$slots, "pagination-numbers"),
|
|
2621
2620
|
S(le, {
|
|
2622
2621
|
disabled: e.isNextDisabled,
|
|
2623
2622
|
variant: "next",
|
|
2624
2623
|
"aria-label": "next",
|
|
2625
|
-
onClick: r[1] || (r[1] = (
|
|
2624
|
+
onClick: r[1] || (r[1] = (s) => a.$emit("next"))
|
|
2626
2625
|
}, null, 8, ["disabled"])
|
|
2627
2626
|
])
|
|
2628
2627
|
]));
|
|
2629
2628
|
}
|
|
2630
2629
|
}), ur = /* @__PURE__ */ f(cr, [["__scopeId", "data-v-da6d07c9"]]), _r = {}, hr = { class: "search__wrapper" };
|
|
2631
2630
|
function pr(e, a) {
|
|
2632
|
-
return o(),
|
|
2633
|
-
|
|
2631
|
+
return o(), i("div", hr, [
|
|
2632
|
+
c(e.$slots, "default", { class: "search__content" })
|
|
2634
2633
|
]);
|
|
2635
2634
|
}
|
|
2636
2635
|
const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3"]]), vr = { class: "dropdown" }, fr = ["aria-expanded"], gr = /* @__PURE__ */ g({
|
|
@@ -2642,31 +2641,31 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2642
2641
|
},
|
|
2643
2642
|
emits: ["filter", "remove-filter"],
|
|
2644
2643
|
setup(e, { emit: a }) {
|
|
2645
|
-
const r = q(!1),
|
|
2646
|
-
function
|
|
2647
|
-
|
|
2644
|
+
const r = q(!1), s = e, l = a;
|
|
2645
|
+
function u(b) {
|
|
2646
|
+
s.selectedOptions.includes(b) ? l("remove-filter", b) : l("filter", b);
|
|
2648
2647
|
}
|
|
2649
2648
|
function n() {
|
|
2650
2649
|
r.value = !1;
|
|
2651
2650
|
}
|
|
2652
|
-
const _ =
|
|
2651
|
+
const _ = D(() => s.options.length > 8);
|
|
2653
2652
|
return (b, v) => {
|
|
2654
2653
|
const k = ue("click-outside");
|
|
2655
|
-
return K((o(),
|
|
2654
|
+
return K((o(), i("div", vr, [
|
|
2656
2655
|
t("button", {
|
|
2657
2656
|
class: "dropdown-button",
|
|
2658
2657
|
style: x({ "z-index": r.value ? 2 : 0 }),
|
|
2659
2658
|
"aria-expanded": r.value ? "true" : "false",
|
|
2660
2659
|
onClick: v[0] || (v[0] = (w) => r.value = !r.value)
|
|
2661
2660
|
}, [
|
|
2662
|
-
|
|
2661
|
+
c(b.$slots, "button", {}, () => [
|
|
2663
2662
|
G(d(b.label), 1)
|
|
2664
2663
|
], !0)
|
|
2665
2664
|
], 12, fr),
|
|
2666
2665
|
t("div", {
|
|
2667
2666
|
class: m([{ hidden: !r.value, "adjust-height": _.value }, "dropdown-content"])
|
|
2668
2667
|
}, [
|
|
2669
|
-
(o(!0),
|
|
2668
|
+
(o(!0), i(T, null, V(b.options, (w) => (o(), L(I(me), {
|
|
2670
2669
|
id: w.value,
|
|
2671
2670
|
key: w.value,
|
|
2672
2671
|
name: w.text,
|
|
@@ -2674,7 +2673,7 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2674
2673
|
disabled: !1,
|
|
2675
2674
|
value: w.value,
|
|
2676
2675
|
checked: b.selectedOptions.includes(w.value),
|
|
2677
|
-
onInput: (te) =>
|
|
2676
|
+
onInput: (te) => u(w.value)
|
|
2678
2677
|
}, {
|
|
2679
2678
|
default: y(() => [
|
|
2680
2679
|
G(d(w.text), 1)
|
|
@@ -2705,11 +2704,11 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2705
2704
|
dark: "promo__wrapper--dark",
|
|
2706
2705
|
light: "promo__wrapper--light",
|
|
2707
2706
|
default: "promo__wrapper--default"
|
|
2708
|
-
}, r = e,
|
|
2709
|
-
return (l,
|
|
2707
|
+
}, r = e, s = D(() => a[r.variant]);
|
|
2708
|
+
return (l, u) => (o(), i("div", {
|
|
2710
2709
|
class: m([
|
|
2711
2710
|
"promo__wrapper",
|
|
2712
|
-
|
|
2711
|
+
s.value,
|
|
2713
2712
|
l.teaser ? "promo__wrapper--teaser" : ""
|
|
2714
2713
|
])
|
|
2715
2714
|
}, [
|
|
@@ -2722,10 +2721,10 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2722
2721
|
}, [
|
|
2723
2722
|
t("div", $r, [
|
|
2724
2723
|
t("div", kr, [
|
|
2725
|
-
|
|
2724
|
+
c(l.$slots, "pallet-jack-link")
|
|
2726
2725
|
]),
|
|
2727
2726
|
t("div", wr, [
|
|
2728
|
-
|
|
2727
|
+
c(l.$slots, "pallet-jack-video")
|
|
2729
2728
|
]),
|
|
2730
2729
|
t("div", Br, [
|
|
2731
2730
|
t("h3", Sr, d(l.headline), 1),
|
|
@@ -2739,7 +2738,7 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2739
2738
|
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2740
2739
|
])
|
|
2741
2740
|
}, [
|
|
2742
|
-
l.label ? (o(),
|
|
2741
|
+
l.label ? (o(), L(Z, {
|
|
2743
2742
|
key: 0,
|
|
2744
2743
|
text: l.label,
|
|
2745
2744
|
"label-dark": l.variant === "dark"
|
|
@@ -2750,24 +2749,24 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2750
2749
|
l.variant === "dark" ? "promo__title--dark" : ""
|
|
2751
2750
|
])
|
|
2752
2751
|
}, [
|
|
2753
|
-
|
|
2752
|
+
c(l.$slots, "promo-text")
|
|
2754
2753
|
], 2),
|
|
2755
|
-
l.linkType === "link" ? (o(),
|
|
2754
|
+
l.linkType === "link" ? (o(), L(M, {
|
|
2756
2755
|
key: 1,
|
|
2757
2756
|
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
2758
2757
|
arrow: ""
|
|
2759
2758
|
}, {
|
|
2760
2759
|
default: y(() => [
|
|
2761
|
-
|
|
2760
|
+
c(l.$slots, "promo-link")
|
|
2762
2761
|
]),
|
|
2763
2762
|
_: 3
|
|
2764
2763
|
}, 8, ["link-type"])) : p("", !0),
|
|
2765
|
-
l.linkType === "button" ? (o(),
|
|
2764
|
+
l.linkType === "button" ? (o(), L(M, {
|
|
2766
2765
|
key: 2,
|
|
2767
2766
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
2768
2767
|
}, {
|
|
2769
2768
|
default: y(() => [
|
|
2770
|
-
|
|
2769
|
+
c(l.$slots, "promo-link")
|
|
2771
2770
|
]),
|
|
2772
2771
|
_: 3
|
|
2773
2772
|
}, 8, ["link-type"])) : p("", !0)
|