@mirweb/mir-web-components 1.6.3 → 1.6.4
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 l, createElementBlock as s, 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 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: {
|
|
@@ -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 (
|
|
19
|
-
class: m(["button", "button--" +
|
|
20
|
-
"aria-label":
|
|
21
|
-
}, d(
|
|
17
|
+
}, r = e, i = L(() => a[r.variant]);
|
|
18
|
+
return (o, u) => (l(), s("button", {
|
|
19
|
+
class: m(["button", "button--" + i.value]),
|
|
20
|
+
"aria-label": o.ariaLabel
|
|
21
|
+
}, d(i.value === "close" ? "" : o.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 [i, o] of a)
|
|
26
|
+
r[i] = o;
|
|
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,
|
|
41
|
-
const
|
|
42
|
-
r("input",
|
|
40
|
+
const r = a, i = (o) => {
|
|
41
|
+
const u = o.target;
|
|
42
|
+
r("input", u.checked);
|
|
43
43
|
};
|
|
44
|
-
return (
|
|
45
|
-
class: m(["checkbox__wrapper",
|
|
44
|
+
return (o, u) => (l(), s("div", {
|
|
45
|
+
class: m(["checkbox__wrapper", o.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
47
|
t("input", {
|
|
48
|
-
id:
|
|
48
|
+
id: o.id,
|
|
49
49
|
type: "checkbox",
|
|
50
|
-
name:
|
|
51
|
-
value:
|
|
52
|
-
disabled:
|
|
53
|
-
required:
|
|
54
|
-
checked:
|
|
50
|
+
name: o.name,
|
|
51
|
+
value: o.value,
|
|
52
|
+
disabled: o.disabled,
|
|
53
|
+
required: o.required,
|
|
54
|
+
checked: o.checked,
|
|
55
55
|
class: "checkbox__checkbox",
|
|
56
|
-
onChange:
|
|
56
|
+
onChange: i
|
|
57
57
|
}, null, 40, De),
|
|
58
58
|
t("label", {
|
|
59
|
-
for:
|
|
60
|
-
class: m(["checkbox__label",
|
|
59
|
+
for: o.id,
|
|
60
|
+
class: m(["checkbox__label", o.required ? "required" : ""])
|
|
61
61
|
}, [
|
|
62
62
|
Ve,
|
|
63
|
-
|
|
63
|
+
c(o.$slots, "default", {}, void 0, !0)
|
|
64
64
|
], 10, Te)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
@@ -76,15 +76,15 @@ 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 (
|
|
79
|
+
return (i, o) => (l(), s("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick:
|
|
81
|
+
onClick: o[0] || (o[0] = (u) => i.$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(i.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
|
+
}, i = e, o = L(() => r[i.variant]), u = q(null), n = q(null), _ = q([]), b = q(0), v = q(""), k = q(!0), w = q(0), te = a, se = L(() => {
|
|
111
|
+
const h = i.options.find(
|
|
112
|
+
(B) => B.value === i.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 = i.options.findIndex(
|
|
132
|
+
(W) => W.value === i.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 <= i.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 (!i.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 = i.options.findIndex(
|
|
177
|
+
(A) => A.value === i.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
|
+
i.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) % i.options.length, C;
|
|
184
184
|
}
|
|
185
185
|
function j(h, B) {
|
|
186
186
|
for (let C = h; C < B; C++)
|
|
187
|
-
if (
|
|
187
|
+
if (i.options[C].label && i.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 (i.modelValue) {
|
|
198
|
+
const z = i.options.findIndex(
|
|
199
|
+
(ke) => ke.value === i.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[i.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
|
+
i.disabled || (k.value ? ce() : oe());
|
|
226
226
|
}
|
|
227
227
|
return (h, B) => {
|
|
228
228
|
const C = ue("click-outside");
|
|
229
|
-
return
|
|
229
|
+
return l(), 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((l(), s("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",
|
|
250
250
|
"aria-disabled": h.disabled,
|
|
251
|
-
class: m(["listbox__button",
|
|
251
|
+
class: m(["listbox__button", o.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
|
+
(l(!0), s(T, null, V(h.options, (A, z) => (l(), 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) => (l(), s("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({
|
|
@@ -306,12 +306,12 @@ 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 (
|
|
309
|
+
return (i, o) => (l(), s("div", Qe, [
|
|
310
310
|
t("span", {
|
|
311
311
|
"aria-label": r.value,
|
|
312
|
-
"label-dark":
|
|
313
|
-
class: m(
|
|
314
|
-
}, d(
|
|
312
|
+
"label-dark": i.labelDark,
|
|
313
|
+
class: m(i.labelDark ? "label--dark" : "label--light")
|
|
314
|
+
}, d(i.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
|
+
}, i = e, o = L(() => a[i.linkType]), u = L(() => r[i.underline]), n = L(() => {
|
|
340
|
+
const { ..._ } = we(i);
|
|
341
341
|
return _;
|
|
342
342
|
});
|
|
343
|
-
return (_, b) => (
|
|
343
|
+
return (_, b) => (l(), s("div", xe, [
|
|
344
344
|
t("div", X(n.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
|
-
|
|
346
|
+
o.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,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,
|
|
369
|
-
const
|
|
370
|
-
r("input",
|
|
368
|
+
const r = a, i = (o) => {
|
|
369
|
+
const u = o.target;
|
|
370
|
+
r("input", u.checked);
|
|
371
371
|
};
|
|
372
|
-
return (
|
|
373
|
-
class: m(["radio__wrapper",
|
|
372
|
+
return (o, u) => (l(), s("div", {
|
|
373
|
+
class: m(["radio__wrapper", o.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
375
|
t("input", {
|
|
376
|
-
id:
|
|
376
|
+
id: o.id,
|
|
377
377
|
type: "radio",
|
|
378
|
-
name:
|
|
379
|
-
value:
|
|
380
|
-
checked:
|
|
381
|
-
disabled:
|
|
382
|
-
required:
|
|
378
|
+
name: o.name,
|
|
379
|
+
value: o.value,
|
|
380
|
+
checked: o.checked,
|
|
381
|
+
disabled: o.disabled,
|
|
382
|
+
required: o.required,
|
|
383
383
|
class: "radio__radio",
|
|
384
|
-
onChange:
|
|
384
|
+
onChange: i
|
|
385
385
|
}, null, 40, tt),
|
|
386
386
|
t("label", {
|
|
387
|
-
for:
|
|
388
|
-
class: m(["radio__label",
|
|
387
|
+
for: o.id,
|
|
388
|
+
class: m(["radio__label", o.required ? "required" : ""])
|
|
389
389
|
}, [
|
|
390
390
|
ot,
|
|
391
|
-
|
|
391
|
+
c(o.$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) => (l(), s("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] = (i) => {
|
|
420
|
+
a.$emit("update:modelValue", i.target.value), i.target.blur();
|
|
421
421
|
})
|
|
422
422
|
}, [
|
|
423
|
-
(
|
|
424
|
-
key:
|
|
425
|
-
value:
|
|
426
|
-
}, d(
|
|
423
|
+
(l(!0), s(T, null, V(a.options, (i) => (l(), s("option", {
|
|
424
|
+
key: i.value,
|
|
425
|
+
value: i.value
|
|
426
|
+
}, d(i.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, i = a, o = () => {
|
|
439
|
+
i("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (
|
|
441
|
+
return (u, n) => (l(), 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", u.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
451
|
-
onClick:
|
|
451
|
+
onClick: o
|
|
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) : (l(), D(le, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
|
-
onClick:
|
|
464
|
+
onClick: o
|
|
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, i = a, o = 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
|
-
|
|
500
|
-
const v = _(
|
|
498
|
+
if (u.value) {
|
|
499
|
+
i("update:modelValue", o.value);
|
|
500
|
+
const v = _(o.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) => (l(), 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 ? (l(), 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: u,
|
|
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 }) => o.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 ? (l(), 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) => (l(), s("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] = (i) => a.$emit("update:modelValue", i.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 ? (
|
|
599
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (l(), 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,
|
|
646
|
-
() =>
|
|
645
|
+
}, r = e, i = L(() => a[r.type]), o = q(!0), u = L(
|
|
646
|
+
() => o.value ? "showPassword" : "hidePassword"
|
|
647
647
|
), n = L(
|
|
648
|
-
() =>
|
|
648
|
+
() => o.value ? "password" : "text"
|
|
649
649
|
);
|
|
650
|
-
return (_, b) => (
|
|
650
|
+
return (_, b) => (l(), 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
|
-
|
|
659
|
+
i.value === "password" ? (l(), s("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
|
-
"aria-expanded": !
|
|
676
|
-
onClick: b[1] || (b[1] = (v) =>
|
|
675
|
+
"aria-expanded": !o.value,
|
|
676
|
+
onClick: b[1] || (b[1] = (v) => o.value = !o.value)
|
|
677
677
|
}, null, 10, Mt)
|
|
678
|
-
])) : (
|
|
678
|
+
])) : (l(), s("input", {
|
|
679
679
|
key: 1,
|
|
680
680
|
id: _.id,
|
|
681
681
|
ref: "textField",
|
|
682
|
-
type:
|
|
682
|
+
type: i.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 ? (
|
|
696
|
-
_.errorMessage ? (
|
|
697
|
-
_.helperText ? (
|
|
695
|
+
_.search ? (l(), s("i", Ot)) : p("", !0),
|
|
696
|
+
_.errorMessage ? (l(), s("strong", zt, d(_.errorMessage), 1)) : p("", !0),
|
|
697
|
+
_.helperText ? (l(), 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({
|
|
@@ -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 i = q(null);
|
|
719
719
|
return he(() => {
|
|
720
|
-
|
|
720
|
+
i.value && (r.play ? i.value.play() : r.play || i.value.pause());
|
|
721
721
|
}), a({
|
|
722
722
|
resetVideo: () => {
|
|
723
|
-
|
|
723
|
+
i.value && (i.value.currentTime = 0, i.value.play());
|
|
724
724
|
}
|
|
725
|
-
}), (
|
|
726
|
-
|
|
725
|
+
}), (u, n) => (l(), s("div", Et, [
|
|
726
|
+
u.localVideo ? (l(), s("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: i,
|
|
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)) : (
|
|
740
|
+
src: u.src
|
|
741
|
+
}, null, 8, jt)) : (l(), s("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) => (
|
|
767
|
+
return (a, r) => (l(), s("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 ? (
|
|
777
|
+
a.addressLine3 ? (l(), s("p", Zt, d(a.addressLine3), 1)) : p("", !0)
|
|
778
778
|
]),
|
|
779
779
|
t("div", Xt, [
|
|
780
|
-
a.website ? (
|
|
780
|
+
a.website ? (l(), D(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
|
-
(
|
|
794
|
-
key:
|
|
793
|
+
(l(!0), s(T, null, V(a.phoneNumbers, (i) => (l(), D(M, {
|
|
794
|
+
key: i,
|
|
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:" + i,
|
|
801
801
|
class: "address__phone"
|
|
802
|
-
}, d(
|
|
802
|
+
}, d(i), 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) => (
|
|
834
|
+
return (a, r) => (l(), s("div", sa, [
|
|
835
835
|
t("div", {
|
|
836
836
|
class: m(["bullet-list", e.variant])
|
|
837
837
|
}, [
|
|
838
838
|
t("ul", null, [
|
|
839
|
-
(
|
|
839
|
+
(l(!0), s(T, null, V(e.list, (i) => (l(), s("li", { key: i }, [
|
|
840
840
|
ia,
|
|
841
|
-
G(" " + d(
|
|
841
|
+
G(" " + d(i), 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 i = {
|
|
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
|
-
},
|
|
893
|
-
return (n, _) => (
|
|
892
|
+
}, o = e, u = L(() => i[o.size]);
|
|
893
|
+
return (n, _) => (l(), 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
|
+
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" ? (
|
|
906
|
+
n.mediaType === "image" ? (l(), D(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
|
-
})) : (
|
|
918
|
+
})) : (l(), 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: 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"] ? (
|
|
937
|
-
|
|
936
|
+
I(a)["card-label"] ? (l(), s("div", ca, [
|
|
937
|
+
c(n.$slots, "card-label")
|
|
938
938
|
])) : p("", !0),
|
|
939
|
-
n.variant === "product" ? (
|
|
939
|
+
n.variant === "product" ? (l(), 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)) : (l(), 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" ? (l(), 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) => (l(), s("div", pa, [
|
|
967
967
|
t("div", ma, [
|
|
968
|
-
a.image.filename ? (
|
|
968
|
+
a.image.filename ? (l(), s("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) => (
|
|
1009
|
+
return (a, r) => (l(), 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) => (l(), 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
|
-
},
|
|
1067
|
-
return (
|
|
1063
|
+
const a = q([]), r = (o) => {
|
|
1064
|
+
const u = a.value.indexOf(o);
|
|
1065
|
+
u > -1 ? a.value.splice(u, 1) : a.value.push(o);
|
|
1066
|
+
}, i = (o) => a.value.includes(o);
|
|
1067
|
+
return (o, u) => (l(), s("section", Ta, [
|
|
1068
1068
|
t("div", Va, [
|
|
1069
|
-
(
|
|
1069
|
+
(l(!0), s(T, null, V(o.accordions, (n) => (l(), s("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
|
+
i(n._uid) ? (l(), s("img", Ha)) : (l(), s("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: i(n._uid) ? "flex" : "none"
|
|
1086
1086
|
})
|
|
1087
1087
|
}, [
|
|
1088
1088
|
t("div", Ra, [
|
|
1089
|
-
|
|
1089
|
+
c(o.$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(o.$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,24 +1124,27 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1124
1124
|
}
|
|
1125
1125
|
},
|
|
1126
1126
|
setup(e) {
|
|
1127
|
-
return (a, r) => (
|
|
1127
|
+
return (a, r) => (l(), 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 ? (l(), s("div", Ka, [
|
|
1135
|
+
e.headline ? (l(), s("h2", Ua, d(e.headline), 1)) : p("", !0),
|
|
1136
|
+
e.paragraph ? (l(), s("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));
|
|
1143
1143
|
}
|
|
1144
|
-
}), Ya = /* @__PURE__ */ f(Wa, [["__scopeId", "data-v-e8033cff"]]), Qa = { class: "column-
|
|
1144
|
+
}), Ya = /* @__PURE__ */ f(Wa, [["__scopeId", "data-v-e8033cff"]]), Qa = { class: "column-grid__top-section" }, Za = { class: "column-grid__headline" }, Xa = {
|
|
1145
|
+
key: 0,
|
|
1146
|
+
class: "column-grid__bodytext"
|
|
1147
|
+
}, xa = { class: "column-grid__teaser-list" }, eo = /* @__PURE__ */ g({
|
|
1145
1148
|
__name: "column-grid",
|
|
1146
1149
|
props: {
|
|
1147
1150
|
headline: {},
|
|
@@ -1150,38 +1153,36 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1150
1153
|
columns: {}
|
|
1151
1154
|
},
|
|
1152
1155
|
setup(e) {
|
|
1153
|
-
const a = e
|
|
1154
|
-
return (
|
|
1156
|
+
const a = e;
|
|
1157
|
+
return L(() => a.bodytext.length > 0), (r, i) => (l(), s("div", {
|
|
1155
1158
|
class: m([
|
|
1156
1159
|
"column-grid",
|
|
1157
|
-
|
|
1160
|
+
r.bgColor === "dark" ? "column-grid--dark" : r.bgColor === "light" ? "column-grid--light" : "column-grid--white"
|
|
1158
1161
|
])
|
|
1159
1162
|
}, [
|
|
1160
|
-
t("div",
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
image: c.image,
|
|
1174
|
-
"image-fit": c.imageFit
|
|
1163
|
+
t("div", Qa, [
|
|
1164
|
+
t("h2", Za, d(r.headline), 1),
|
|
1165
|
+
r.bodytext ? (l(), s("div", Xa, [
|
|
1166
|
+
c(r.$slots, "column-grid-body", P(O({ body: r.bodytext })), void 0, !0)
|
|
1167
|
+
])) : p("", !0)
|
|
1168
|
+
]),
|
|
1169
|
+
t("div", xa, [
|
|
1170
|
+
(l(!0), s(T, null, V(r.columns, (o) => (l(), D(fe, {
|
|
1171
|
+
key: o._uid,
|
|
1172
|
+
headline: o.headline,
|
|
1173
|
+
bodytext: o.bodytext,
|
|
1174
|
+
image: o.image,
|
|
1175
|
+
"image-fit": o.imageFit
|
|
1175
1176
|
}, {
|
|
1176
1177
|
"column-card-body": y(() => [
|
|
1177
|
-
|
|
1178
|
+
c(r.$slots, "column-card-body", P(O({ body: o.bodytext })), void 0, !0)
|
|
1178
1179
|
]),
|
|
1179
1180
|
"column-card-image": y(() => [
|
|
1180
|
-
|
|
1181
|
-
src:
|
|
1182
|
-
alt:
|
|
1181
|
+
o.image ? c(r.$slots, "column-card-image", P(X({ key: 0 }, {
|
|
1182
|
+
src: o.image.filename,
|
|
1183
|
+
alt: o.image.alt,
|
|
1183
1184
|
class: "column-card__image",
|
|
1184
|
-
style: { "object-fit":
|
|
1185
|
+
style: { "object-fit": o.imageFit ? "cover" : "contain" }
|
|
1185
1186
|
})), void 0, !0) : p("", !0)
|
|
1186
1187
|
]),
|
|
1187
1188
|
_: 2
|
|
@@ -1189,10 +1190,10 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1189
1190
|
])
|
|
1190
1191
|
], 2));
|
|
1191
1192
|
}
|
|
1192
|
-
}),
|
|
1193
|
+
}), to = /* @__PURE__ */ f(eo, [["__scopeId", "data-v-04227a26"]]), ao = { class: "facts__wrapper" }, oo = { class: "facts__content" }, lo = { class: "facts__headline" }, so = { class: "facts" }, io = { class: "fact__value" }, ro = { class: "fact__metric" }, no = {
|
|
1193
1194
|
key: 0,
|
|
1194
1195
|
class: "facts__link"
|
|
1195
|
-
},
|
|
1196
|
+
}, co = /* @__PURE__ */ g({
|
|
1196
1197
|
__name: "facts",
|
|
1197
1198
|
props: {
|
|
1198
1199
|
headline: { default: "" },
|
|
@@ -1216,29 +1217,29 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1216
1217
|
}) }
|
|
1217
1218
|
},
|
|
1218
1219
|
setup(e) {
|
|
1219
|
-
return (a, r) => (
|
|
1220
|
-
t("div",
|
|
1221
|
-
t("h2",
|
|
1222
|
-
t("div",
|
|
1223
|
-
(
|
|
1224
|
-
key:
|
|
1220
|
+
return (a, r) => (l(), s("div", ao, [
|
|
1221
|
+
t("div", oo, [
|
|
1222
|
+
t("h2", lo, d(a.headline), 1),
|
|
1223
|
+
t("div", so, [
|
|
1224
|
+
(l(!0), s(T, null, V(a.facts, (i) => (l(), s("div", {
|
|
1225
|
+
key: i.value + i.metric,
|
|
1225
1226
|
class: "fact"
|
|
1226
1227
|
}, [
|
|
1227
|
-
t("div", so, [
|
|
1228
|
-
t("span", null, d(s.value), 1)
|
|
1229
|
-
]),
|
|
1230
1228
|
t("div", io, [
|
|
1231
|
-
t("span", null, d(
|
|
1229
|
+
t("span", null, d(i.value), 1)
|
|
1230
|
+
]),
|
|
1231
|
+
t("div", ro, [
|
|
1232
|
+
t("span", null, d(i.metric), 1)
|
|
1232
1233
|
])
|
|
1233
1234
|
]))), 128))
|
|
1234
1235
|
]),
|
|
1235
|
-
a.link ? (
|
|
1236
|
+
a.link ? (l(), s("div", no, [
|
|
1236
1237
|
S(M, {
|
|
1237
1238
|
"link-type": "regular_light",
|
|
1238
1239
|
arrow: ""
|
|
1239
1240
|
}, {
|
|
1240
1241
|
default: y(() => [
|
|
1241
|
-
|
|
1242
|
+
c(a.$slots, "facts-link", {}, void 0, !0)
|
|
1242
1243
|
]),
|
|
1243
1244
|
_: 3
|
|
1244
1245
|
})
|
|
@@ -1246,13 +1247,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1246
1247
|
])
|
|
1247
1248
|
]));
|
|
1248
1249
|
}
|
|
1249
|
-
}),
|
|
1250
|
+
}), uo = /* @__PURE__ */ f(co, [["__scopeId", "data-v-d2b231d4"]]), _o = { class: "features__wrapper" }, ho = { class: "features__content" }, po = {
|
|
1250
1251
|
key: 0,
|
|
1251
1252
|
class: "features__headline"
|
|
1252
|
-
},
|
|
1253
|
+
}, mo = {
|
|
1253
1254
|
key: 1,
|
|
1254
1255
|
class: "features__body"
|
|
1255
|
-
},
|
|
1256
|
+
}, vo = { class: "element__headline" }, fo = { class: "element__body" }, go = /* @__PURE__ */ g({
|
|
1256
1257
|
__name: "features",
|
|
1257
1258
|
props: {
|
|
1258
1259
|
headline: { default: "" },
|
|
@@ -1260,40 +1261,40 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1260
1261
|
elements: { default: () => [] }
|
|
1261
1262
|
},
|
|
1262
1263
|
setup(e) {
|
|
1263
|
-
return (a, r) => (
|
|
1264
|
-
t("div",
|
|
1265
|
-
a.headline ? (
|
|
1264
|
+
return (a, r) => (l(), s("div", _o, [
|
|
1265
|
+
t("div", ho, [
|
|
1266
|
+
a.headline ? (l(), s("div", po, [
|
|
1266
1267
|
t("h2", null, d(a.headline), 1)
|
|
1267
1268
|
])) : p("", !0),
|
|
1268
|
-
a.body ? (
|
|
1269
|
-
|
|
1269
|
+
a.body ? (l(), s("div", mo, [
|
|
1270
|
+
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1270
1271
|
])) : p("", !0),
|
|
1271
1272
|
t("div", {
|
|
1272
1273
|
class: m(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1273
1274
|
}, [
|
|
1274
|
-
(
|
|
1275
|
-
key:
|
|
1275
|
+
(l(!0), s(T, null, V(a.elements, (i) => (l(), s("div", {
|
|
1276
|
+
key: i.headline,
|
|
1276
1277
|
class: "features__element"
|
|
1277
1278
|
}, [
|
|
1278
1279
|
S(F, { class: "element__icon" }, {
|
|
1279
1280
|
default: y(() => [
|
|
1280
|
-
|
|
1281
|
-
src:
|
|
1281
|
+
c(a.$slots, "features-icon", P(O({
|
|
1282
|
+
src: i.icon.src,
|
|
1282
1283
|
height: 30,
|
|
1283
1284
|
width: 30,
|
|
1284
|
-
alt:
|
|
1285
|
+
alt: i.icon.alt
|
|
1285
1286
|
})), void 0, !0)
|
|
1286
1287
|
]),
|
|
1287
1288
|
_: 2
|
|
1288
1289
|
}, 1024),
|
|
1289
|
-
t("p",
|
|
1290
|
-
t("p",
|
|
1290
|
+
t("p", vo, d(i.headline), 1),
|
|
1291
|
+
t("p", fo, d(i.body), 1)
|
|
1291
1292
|
]))), 128))
|
|
1292
1293
|
], 2)
|
|
1293
1294
|
])
|
|
1294
1295
|
]));
|
|
1295
1296
|
}
|
|
1296
|
-
}),
|
|
1297
|
+
}), bo = /* @__PURE__ */ f(go, [["__scopeId", "data-v-57a22df7"]]), yo = { class: "form__wrapper" }, $o = { class: "form__content" }, ko = { class: "form__information" }, wo = { class: "form__headline" }, Bo = { class: "form__body" }, So = { class: "form__script" }, Io = /* @__PURE__ */ g({
|
|
1297
1298
|
__name: "form-script",
|
|
1298
1299
|
props: {
|
|
1299
1300
|
headline: {
|
|
@@ -1302,21 +1303,21 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1302
1303
|
}
|
|
1303
1304
|
},
|
|
1304
1305
|
setup(e) {
|
|
1305
|
-
return (a, r) => (
|
|
1306
|
-
t("div",
|
|
1307
|
-
t("div",
|
|
1308
|
-
t("h2",
|
|
1309
|
-
t("div",
|
|
1310
|
-
|
|
1306
|
+
return (a, r) => (l(), s("div", yo, [
|
|
1307
|
+
t("div", $o, [
|
|
1308
|
+
t("div", ko, [
|
|
1309
|
+
t("h2", wo, d(e.headline), 1),
|
|
1310
|
+
t("div", Bo, [
|
|
1311
|
+
c(a.$slots, "form-body", {}, void 0, !0)
|
|
1311
1312
|
])
|
|
1312
1313
|
]),
|
|
1313
|
-
t("div",
|
|
1314
|
-
|
|
1314
|
+
t("div", So, [
|
|
1315
|
+
c(a.$slots, "form-script", {}, void 0, !0)
|
|
1315
1316
|
])
|
|
1316
1317
|
])
|
|
1317
1318
|
]));
|
|
1318
1319
|
}
|
|
1319
|
-
}),
|
|
1320
|
+
}), qo = /* @__PURE__ */ f(Io, [["__scopeId", "data-v-87a67c13"]]), Co = { class: "headline__wrapper" }, Ao = { class: "headline__h1" }, Lo = /* @__PURE__ */ g({
|
|
1320
1321
|
__name: "headline",
|
|
1321
1322
|
props: {
|
|
1322
1323
|
headline: {
|
|
@@ -1333,7 +1334,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1333
1334
|
}
|
|
1334
1335
|
},
|
|
1335
1336
|
setup(e) {
|
|
1336
|
-
return (a, r) => (
|
|
1337
|
+
return (a, r) => (l(), s("div", Co, [
|
|
1337
1338
|
t("div", {
|
|
1338
1339
|
class: m({
|
|
1339
1340
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1342,11 +1343,11 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1342
1343
|
"headline__content--default": !e.article && !e.subMenu
|
|
1343
1344
|
})
|
|
1344
1345
|
}, [
|
|
1345
|
-
t("h1",
|
|
1346
|
+
t("h1", Ao, d(e.headline), 1)
|
|
1346
1347
|
], 2)
|
|
1347
1348
|
]));
|
|
1348
1349
|
}
|
|
1349
|
-
}),
|
|
1350
|
+
}), Do = /* @__PURE__ */ f(Lo, [["__scopeId", "data-v-3ef1567e"]]), To = (e) => (H("data-v-22f9be13"), e = e(), R(), e), Vo = { class: "hero__wrapper" }, Po = { class: "hero__content" }, Mo = { class: "hero__top" }, Fo = { class: "hero__elements" }, Oo = { class: "hero__headline" }, zo = { class: "hero__link" }, Ho = { class: "hero__video" }, Ro = /* @__PURE__ */ To(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), No = { class: "hero__video__video" }, Eo = { class: "hero__image" }, jo = /* @__PURE__ */ g({
|
|
1350
1351
|
__name: "hero",
|
|
1351
1352
|
props: {
|
|
1352
1353
|
headline: {
|
|
@@ -1355,39 +1356,39 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1355
1356
|
}
|
|
1356
1357
|
},
|
|
1357
1358
|
setup(e) {
|
|
1358
|
-
return (a, r) => (
|
|
1359
|
-
t("div",
|
|
1360
|
-
t("div",
|
|
1361
|
-
t("div",
|
|
1362
|
-
t("div",
|
|
1359
|
+
return (a, r) => (l(), s("div", Vo, [
|
|
1360
|
+
t("div", Po, [
|
|
1361
|
+
t("div", Mo, [
|
|
1362
|
+
t("div", Fo, [
|
|
1363
|
+
t("div", Oo, [
|
|
1363
1364
|
t("h1", null, d(e.headline), 1)
|
|
1364
1365
|
]),
|
|
1365
|
-
t("div",
|
|
1366
|
+
t("div", zo, [
|
|
1366
1367
|
S(M, {
|
|
1367
1368
|
"link-type": "regular_light",
|
|
1368
1369
|
arrow: ""
|
|
1369
1370
|
}, {
|
|
1370
1371
|
default: y(() => [
|
|
1371
|
-
|
|
1372
|
+
c(a.$slots, "hero-link", {}, void 0, !0)
|
|
1372
1373
|
]),
|
|
1373
1374
|
_: 3
|
|
1374
1375
|
})
|
|
1375
1376
|
])
|
|
1376
1377
|
])
|
|
1377
1378
|
]),
|
|
1378
|
-
t("div",
|
|
1379
|
-
|
|
1380
|
-
t("div", Ro, [
|
|
1381
|
-
u(a.$slots, "hero-video", {}, void 0, !0)
|
|
1382
|
-
]),
|
|
1379
|
+
t("div", Ho, [
|
|
1380
|
+
Ro,
|
|
1383
1381
|
t("div", No, [
|
|
1384
|
-
|
|
1382
|
+
c(a.$slots, "hero-video", {}, void 0, !0)
|
|
1383
|
+
]),
|
|
1384
|
+
t("div", Eo, [
|
|
1385
|
+
c(a.$slots, "hero-image", {}, void 0, !0)
|
|
1385
1386
|
])
|
|
1386
1387
|
])
|
|
1387
1388
|
])
|
|
1388
1389
|
]));
|
|
1389
1390
|
}
|
|
1390
|
-
}),
|
|
1391
|
+
}), Ko = /* @__PURE__ */ f(jo, [["__scopeId", "data-v-22f9be13"]]), Uo = { class: "image__wrapper" }, Go = { class: "image__content" }, Jo = { class: "image__image" }, Wo = { class: "image__caption" }, Yo = /* @__PURE__ */ g({
|
|
1391
1392
|
inheritAttrs: !1,
|
|
1392
1393
|
__name: "image",
|
|
1393
1394
|
props: {
|
|
@@ -1411,12 +1412,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1411
1412
|
}
|
|
1412
1413
|
},
|
|
1413
1414
|
setup(e) {
|
|
1414
|
-
return (a, r) => (
|
|
1415
|
-
t("div",
|
|
1416
|
-
t("div",
|
|
1415
|
+
return (a, r) => (l(), s("div", Uo, [
|
|
1416
|
+
t("div", Go, [
|
|
1417
|
+
t("div", Jo, [
|
|
1417
1418
|
S(F, null, {
|
|
1418
1419
|
default: y(() => [
|
|
1419
|
-
|
|
1420
|
+
c(a.$slots, "image", P(O({
|
|
1420
1421
|
width: 984,
|
|
1421
1422
|
height: e.fullHeight ? "100%" : 554,
|
|
1422
1423
|
src: e.src,
|
|
@@ -1427,20 +1428,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1427
1428
|
_: 3
|
|
1428
1429
|
})
|
|
1429
1430
|
]),
|
|
1430
|
-
t("p",
|
|
1431
|
+
t("p", Wo, d(e.caption), 1)
|
|
1431
1432
|
])
|
|
1432
1433
|
]));
|
|
1433
1434
|
}
|
|
1434
|
-
}),
|
|
1435
|
+
}), Qo = /* @__PURE__ */ f(Yo, [["__scopeId", "data-v-c583d657"]]), Zo = { class: "gallery__large" }, Xo = {
|
|
1435
1436
|
key: 0,
|
|
1436
1437
|
class: "image image--large"
|
|
1437
|
-
},
|
|
1438
|
+
}, xo = {
|
|
1438
1439
|
key: 1,
|
|
1439
1440
|
class: "video"
|
|
1440
|
-
},
|
|
1441
|
+
}, el = {
|
|
1441
1442
|
key: 0,
|
|
1442
1443
|
class: "body"
|
|
1443
|
-
},
|
|
1444
|
+
}, tl = /* @__PURE__ */ g({
|
|
1444
1445
|
__name: "image-gallery",
|
|
1445
1446
|
props: {
|
|
1446
1447
|
mediaLarge: {},
|
|
@@ -1456,35 +1457,35 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1456
1457
|
white: "",
|
|
1457
1458
|
light: "gallery__wrapper--light",
|
|
1458
1459
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1459
|
-
}, r = e,
|
|
1460
|
-
return (
|
|
1461
|
-
class: m(["gallery__wrapper",
|
|
1460
|
+
}, r = e, i = L(() => a[r.bgColor]);
|
|
1461
|
+
return (o, u) => (l(), s("div", {
|
|
1462
|
+
class: m(["gallery__wrapper", i.value])
|
|
1462
1463
|
}, [
|
|
1463
1464
|
t("div", {
|
|
1464
1465
|
class: m([
|
|
1465
1466
|
"gallery__content",
|
|
1466
|
-
|
|
1467
|
+
o.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1467
1468
|
])
|
|
1468
1469
|
}, [
|
|
1469
|
-
t("div",
|
|
1470
|
-
|
|
1470
|
+
t("div", Zo, [
|
|
1471
|
+
o.mediaLarge && o.mediaType === "image" ? (l(), s("div", Xo, [
|
|
1471
1472
|
S(F, null, {
|
|
1472
1473
|
default: y(() => [
|
|
1473
|
-
|
|
1474
|
+
c(o.$slots, "image-large", P(O({
|
|
1474
1475
|
width: 617,
|
|
1475
1476
|
height: 530,
|
|
1476
|
-
src:
|
|
1477
|
-
alt:
|
|
1477
|
+
src: o.mediaLarge.src,
|
|
1478
|
+
alt: o.mediaLarge.alt
|
|
1478
1479
|
})))
|
|
1479
1480
|
]),
|
|
1480
1481
|
_: 3
|
|
1481
1482
|
})
|
|
1482
1483
|
])) : p("", !0),
|
|
1483
|
-
|
|
1484
|
+
o.mediaLarge && o.mediaType === "video" ? (l(), s("div", xo, [
|
|
1484
1485
|
S(ee, {
|
|
1485
|
-
src:
|
|
1486
|
+
src: o.mediaLarge.src,
|
|
1486
1487
|
"local-video": "",
|
|
1487
|
-
"aria-label":
|
|
1488
|
+
"aria-label": o.mediaLarge.alt,
|
|
1488
1489
|
controls: !1,
|
|
1489
1490
|
height: "530",
|
|
1490
1491
|
width: "617",
|
|
@@ -1496,19 +1497,19 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1496
1497
|
])) : p("", !0)
|
|
1497
1498
|
]),
|
|
1498
1499
|
t("div", {
|
|
1499
|
-
style: x([
|
|
1500
|
+
style: x([o.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
1500
1501
|
class: m([
|
|
1501
1502
|
"gallery__small",
|
|
1502
|
-
|
|
1503
|
+
o.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1503
1504
|
])
|
|
1504
1505
|
}, [
|
|
1505
|
-
(
|
|
1506
|
+
(l(!0), s(T, null, V(o.mediaSmall, (n) => (l(), s("div", {
|
|
1506
1507
|
key: n.src + n.alt,
|
|
1507
1508
|
class: "image image--small"
|
|
1508
1509
|
}, [
|
|
1509
1510
|
S(F, null, {
|
|
1510
1511
|
default: y(() => [
|
|
1511
|
-
|
|
1512
|
+
c(o.$slots, "image-small", P(O({
|
|
1512
1513
|
width: 328,
|
|
1513
1514
|
height: 246,
|
|
1514
1515
|
src: n.src,
|
|
@@ -1518,17 +1519,17 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1518
1519
|
_: 2
|
|
1519
1520
|
}, 1024)
|
|
1520
1521
|
]))), 128)),
|
|
1521
|
-
|
|
1522
|
-
t("p", null, d(
|
|
1522
|
+
o.mediaSmall.length < 2 ? (l(), s("div", el, [
|
|
1523
|
+
t("p", null, d(o.body), 1)
|
|
1523
1524
|
])) : p("", !0)
|
|
1524
1525
|
], 6)
|
|
1525
1526
|
], 2)
|
|
1526
1527
|
], 2));
|
|
1527
1528
|
}
|
|
1528
|
-
}),
|
|
1529
|
+
}), al = /* @__PURE__ */ f(tl, [["__scopeId", "data-v-0d271138"]]), ol = { class: "logo-wall__wrapper" }, ll = { class: "logo-wall__content" }, sl = {
|
|
1529
1530
|
key: 0,
|
|
1530
1531
|
class: "logo-wall__text"
|
|
1531
|
-
},
|
|
1532
|
+
}, il = { key: 0 }, rl = { key: 1 }, nl = { class: "logo-wall__logos" }, dl = { class: "logo-wall__link" }, cl = /* @__PURE__ */ g({
|
|
1532
1533
|
__name: "logo-wall",
|
|
1533
1534
|
props: {
|
|
1534
1535
|
headline: {
|
|
@@ -1546,37 +1547,37 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1546
1547
|
}
|
|
1547
1548
|
},
|
|
1548
1549
|
setup(e) {
|
|
1549
|
-
return (a, r) => (
|
|
1550
|
-
t("div",
|
|
1551
|
-
e.headline || e.body ? (
|
|
1552
|
-
e.headline ? (
|
|
1553
|
-
e.body ? (
|
|
1550
|
+
return (a, r) => (l(), s("div", ol, [
|
|
1551
|
+
t("div", ll, [
|
|
1552
|
+
e.headline || e.body ? (l(), s("div", sl, [
|
|
1553
|
+
e.headline ? (l(), s("h2", il, d(e.headline), 1)) : p("", !0),
|
|
1554
|
+
e.body ? (l(), s("p", rl, d(e.body), 1)) : p("", !0)
|
|
1554
1555
|
])) : p("", !0),
|
|
1555
|
-
t("div",
|
|
1556
|
-
(
|
|
1557
|
-
key:
|
|
1556
|
+
t("div", nl, [
|
|
1557
|
+
(l(!0), s(T, null, V(e.logos, (i) => (l(), s("div", {
|
|
1558
|
+
key: i.src + i.alt,
|
|
1558
1559
|
class: "logo-wall__logo"
|
|
1559
1560
|
}, [
|
|
1560
1561
|
S(F, null, {
|
|
1561
1562
|
default: y(() => [
|
|
1562
|
-
|
|
1563
|
+
c(a.$slots, "logo-wall-logo", P(O({
|
|
1563
1564
|
width: 130,
|
|
1564
1565
|
height: 130,
|
|
1565
|
-
src:
|
|
1566
|
-
alt:
|
|
1566
|
+
src: i.src,
|
|
1567
|
+
alt: i.alt
|
|
1567
1568
|
})), void 0, !0)
|
|
1568
1569
|
]),
|
|
1569
1570
|
_: 2
|
|
1570
1571
|
}, 1024)
|
|
1571
1572
|
]))), 128))
|
|
1572
1573
|
]),
|
|
1573
|
-
t("div",
|
|
1574
|
+
t("div", dl, [
|
|
1574
1575
|
S(M, {
|
|
1575
1576
|
"link-type": "regular_light",
|
|
1576
1577
|
arrow: !0
|
|
1577
1578
|
}, {
|
|
1578
1579
|
default: y(() => [
|
|
1579
|
-
|
|
1580
|
+
c(a.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1580
1581
|
]),
|
|
1581
1582
|
_: 3
|
|
1582
1583
|
})
|
|
@@ -1584,13 +1585,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1584
1585
|
])
|
|
1585
1586
|
]));
|
|
1586
1587
|
}
|
|
1587
|
-
}),
|
|
1588
|
+
}), ul = /* @__PURE__ */ f(cl, [["__scopeId", "data-v-fd489289"]]), _l = { class: "micro-stories__top" }, hl = {
|
|
1588
1589
|
key: 0,
|
|
1589
1590
|
class: "headline"
|
|
1590
|
-
},
|
|
1591
|
+
}, pl = {
|
|
1591
1592
|
key: 1,
|
|
1592
1593
|
class: "body"
|
|
1593
|
-
},
|
|
1594
|
+
}, ml = { class: "micro-stories__splide" }, vl = /* @__PURE__ */ g({
|
|
1594
1595
|
__name: "micro-stories",
|
|
1595
1596
|
props: {
|
|
1596
1597
|
bgColor: { default: "blue" },
|
|
@@ -1602,39 +1603,39 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1602
1603
|
white: "micro-stories__wrapper--white",
|
|
1603
1604
|
blue: "micro-stories__wrapper--blue",
|
|
1604
1605
|
dark: "micro-stories__wrapper--dark"
|
|
1605
|
-
}, r = L(() => a[
|
|
1606
|
-
return (
|
|
1606
|
+
}, r = L(() => a[i.bgColor]), i = e;
|
|
1607
|
+
return (o, u) => (l(), s("div", {
|
|
1607
1608
|
class: m(["micro-stories__wrapper", r.value])
|
|
1608
1609
|
}, [
|
|
1609
|
-
t("div",
|
|
1610
|
-
|
|
1611
|
-
t("h2", null, d(
|
|
1610
|
+
t("div", _l, [
|
|
1611
|
+
o.headline ? (l(), s("div", hl, [
|
|
1612
|
+
t("h2", null, d(o.headline), 1)
|
|
1612
1613
|
])) : p("", !0),
|
|
1613
|
-
|
|
1614
|
-
t("p", null, d(
|
|
1614
|
+
o.body ? (l(), s("div", pl, [
|
|
1615
|
+
t("p", null, d(o.body), 1)
|
|
1615
1616
|
])) : p("", !0)
|
|
1616
1617
|
]),
|
|
1617
|
-
t("div",
|
|
1618
|
-
|
|
1618
|
+
t("div", ml, [
|
|
1619
|
+
c(o.$slots, "micro-stories-slides")
|
|
1619
1620
|
]),
|
|
1620
|
-
|
|
1621
|
+
c(o.$slots, "micro-stories-controls")
|
|
1621
1622
|
], 2));
|
|
1622
1623
|
}
|
|
1623
|
-
}),
|
|
1624
|
-
function
|
|
1625
|
-
return
|
|
1626
|
-
t("div",
|
|
1627
|
-
|
|
1624
|
+
}), fl = {}, gl = { class: "policy__wrapper" }, bl = { class: "policy__content" };
|
|
1625
|
+
function yl(e, a) {
|
|
1626
|
+
return l(), s("div", gl, [
|
|
1627
|
+
t("div", bl, [
|
|
1628
|
+
c(e.$slots, "default", {}, void 0, !0)
|
|
1628
1629
|
])
|
|
1629
1630
|
]);
|
|
1630
1631
|
}
|
|
1631
|
-
const
|
|
1632
|
+
const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a"]]), kl = { class: "product-hero__wrapper" }, wl = { class: "product-hero__content" }, Bl = { class: "product-hero__headline" }, Sl = { class: "product-hero__video" }, Il = { class: "product-hero__insignia" }, ql = {
|
|
1632
1633
|
key: 0,
|
|
1633
1634
|
class: "product-hero__logo"
|
|
1634
|
-
},
|
|
1635
|
+
}, Cl = {
|
|
1635
1636
|
key: 1,
|
|
1636
1637
|
class: "product-hero__certification"
|
|
1637
|
-
},
|
|
1638
|
+
}, Al = /* @__PURE__ */ g({
|
|
1638
1639
|
__name: "product-hero",
|
|
1639
1640
|
props: {
|
|
1640
1641
|
headline: {
|
|
@@ -1669,11 +1670,11 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1669
1670
|
}
|
|
1670
1671
|
},
|
|
1671
1672
|
setup(e) {
|
|
1672
|
-
return (a, r) => (
|
|
1673
|
-
t("div",
|
|
1674
|
-
t("div",
|
|
1675
|
-
t("div",
|
|
1676
|
-
e.videoSrc !== "" ? (
|
|
1673
|
+
return (a, r) => (l(), s("div", kl, [
|
|
1674
|
+
t("div", wl, [
|
|
1675
|
+
t("div", Bl, d(e.headline), 1),
|
|
1676
|
+
t("div", Sl, [
|
|
1677
|
+
e.videoSrc !== "" ? (l(), D(ee, {
|
|
1677
1678
|
key: 0,
|
|
1678
1679
|
play: "",
|
|
1679
1680
|
"local-video": !0,
|
|
@@ -1684,25 +1685,25 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1684
1685
|
autoplay: "",
|
|
1685
1686
|
loop: "",
|
|
1686
1687
|
muted: ""
|
|
1687
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (
|
|
1688
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (l(), D(I(F), { key: 1 }, {
|
|
1688
1689
|
default: y(() => [
|
|
1689
|
-
|
|
1690
|
+
c(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1690
1691
|
]),
|
|
1691
1692
|
_: 3
|
|
1692
1693
|
})),
|
|
1693
|
-
t("div",
|
|
1694
|
-
e.logoSrc ? (
|
|
1694
|
+
t("div", Il, [
|
|
1695
|
+
e.logoSrc ? (l(), s("div", ql, [
|
|
1695
1696
|
S(I(F), null, {
|
|
1696
1697
|
default: y(() => [
|
|
1697
|
-
|
|
1698
|
+
c(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1698
1699
|
]),
|
|
1699
1700
|
_: 3
|
|
1700
1701
|
})
|
|
1701
1702
|
])) : p("", !0),
|
|
1702
|
-
e.isCertified ? (
|
|
1703
|
+
e.isCertified ? (l(), s("div", Cl, [
|
|
1703
1704
|
S(I(F), null, {
|
|
1704
1705
|
default: y(() => [
|
|
1705
|
-
|
|
1706
|
+
c(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1706
1707
|
]),
|
|
1707
1708
|
_: 3
|
|
1708
1709
|
})
|
|
@@ -1712,7 +1713,7 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1712
1713
|
])
|
|
1713
1714
|
]));
|
|
1714
1715
|
}
|
|
1715
|
-
}),
|
|
1716
|
+
}), Ll = /* @__PURE__ */ f(Al, [["__scopeId", "data-v-deab9c3a"]]), Dl = { class: "promo__content" }, Tl = /* @__PURE__ */ g({
|
|
1716
1717
|
__name: "promo",
|
|
1717
1718
|
props: {
|
|
1718
1719
|
label: { default: "" },
|
|
@@ -1732,84 +1733,84 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1732
1733
|
dark: "promo__wrapper--dark",
|
|
1733
1734
|
light: "promo__wrapper--light",
|
|
1734
1735
|
default: "promo__wrapper--default"
|
|
1735
|
-
}, r = e,
|
|
1736
|
-
return (
|
|
1736
|
+
}, r = e, i = L(() => a[r.variant]);
|
|
1737
|
+
return (o, u) => (l(), s("div", {
|
|
1737
1738
|
class: m([
|
|
1738
1739
|
"promo__wrapper",
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1740
|
+
i.value,
|
|
1741
|
+
o.teaser ? "promo__wrapper--teaser" : "",
|
|
1742
|
+
o.multiply ? "promo__wrapper--multiply" : ""
|
|
1742
1743
|
])
|
|
1743
1744
|
}, [
|
|
1744
|
-
t("div",
|
|
1745
|
-
|
|
1745
|
+
t("div", Dl, [
|
|
1746
|
+
o.mediaType === "image" ? (l(), s("div", {
|
|
1746
1747
|
key: 0,
|
|
1747
1748
|
class: m([
|
|
1748
1749
|
"promo__image",
|
|
1749
|
-
|
|
1750
|
+
o.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1750
1751
|
])
|
|
1751
1752
|
}, [
|
|
1752
1753
|
S(F, null, {
|
|
1753
1754
|
default: y(() => [
|
|
1754
|
-
|
|
1755
|
+
c(o.$slots, "promo-image", P(O({ src: o.src, width: 1920, alt: o.alt, height: 1080 })))
|
|
1755
1756
|
]),
|
|
1756
1757
|
_: 3
|
|
1757
1758
|
})
|
|
1758
1759
|
], 2)) : p("", !0),
|
|
1759
|
-
|
|
1760
|
+
o.mediaType === "video" ? (l(), s("div", {
|
|
1760
1761
|
key: 1,
|
|
1761
1762
|
class: m([
|
|
1762
1763
|
"promo__video",
|
|
1763
|
-
|
|
1764
|
+
o.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1764
1765
|
])
|
|
1765
1766
|
}, [
|
|
1766
1767
|
S(ee, {
|
|
1767
|
-
src:
|
|
1768
|
+
src: o.src,
|
|
1768
1769
|
"local-video": "",
|
|
1769
|
-
"aria-label":
|
|
1770
|
+
"aria-label": o.alt,
|
|
1770
1771
|
controls: !1,
|
|
1771
1772
|
autoplay: "",
|
|
1772
1773
|
loop: "",
|
|
1773
1774
|
muted: "",
|
|
1774
1775
|
play: "",
|
|
1775
|
-
poster:
|
|
1776
|
+
poster: o.fallbackImage
|
|
1776
1777
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1777
1778
|
], 2)) : p("", !0),
|
|
1778
1779
|
t("div", {
|
|
1779
1780
|
class: m([
|
|
1780
1781
|
"promo__text",
|
|
1781
|
-
|
|
1782
|
+
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1782
1783
|
])
|
|
1783
1784
|
}, [
|
|
1784
|
-
|
|
1785
|
+
o.label ? (l(), D(Z, {
|
|
1785
1786
|
key: 0,
|
|
1786
|
-
text:
|
|
1787
|
-
"label-dark":
|
|
1787
|
+
text: o.label,
|
|
1788
|
+
"label-dark": o.variant === "dark"
|
|
1788
1789
|
}, null, 8, ["text", "label-dark"])) : p("", !0),
|
|
1789
1790
|
t("div", {
|
|
1790
1791
|
class: m([
|
|
1791
1792
|
"promo__title",
|
|
1792
|
-
|
|
1793
|
+
o.variant === "dark" ? "promo__title--dark" : ""
|
|
1793
1794
|
])
|
|
1794
1795
|
}, [
|
|
1795
|
-
|
|
1796
|
+
c(o.$slots, "promo-headline")
|
|
1796
1797
|
], 2),
|
|
1797
|
-
|
|
1798
|
+
o.linkType === "link" ? (l(), D(M, {
|
|
1798
1799
|
key: 1,
|
|
1799
|
-
"link-type":
|
|
1800
|
+
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
1800
1801
|
arrow: ""
|
|
1801
1802
|
}, {
|
|
1802
1803
|
default: y(() => [
|
|
1803
|
-
|
|
1804
|
+
c(o.$slots, "promo-link")
|
|
1804
1805
|
]),
|
|
1805
1806
|
_: 3
|
|
1806
1807
|
}, 8, ["link-type"])) : p("", !0),
|
|
1807
|
-
|
|
1808
|
+
o.linkType === "button" ? (l(), D(M, {
|
|
1808
1809
|
key: 2,
|
|
1809
|
-
"link-type":
|
|
1810
|
+
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
1810
1811
|
}, {
|
|
1811
1812
|
default: y(() => [
|
|
1812
|
-
|
|
1813
|
+
c(o.$slots, "promo-link")
|
|
1813
1814
|
]),
|
|
1814
1815
|
_: 3
|
|
1815
1816
|
}, 8, ["link-type"])) : p("", !0)
|
|
@@ -1817,10 +1818,10 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1817
1818
|
])
|
|
1818
1819
|
], 2));
|
|
1819
1820
|
}
|
|
1820
|
-
}),
|
|
1821
|
+
}), Vl = /* @__PURE__ */ f(Tl, [["__scopeId", "data-v-df54d965"]]), Pl = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), Ml = { class: "quote__wrapper" }, Fl = { class: "quote__content" }, Ol = /* @__PURE__ */ Pl(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), zl = { class: "quote__quote" }, Hl = { class: "quote__quote-text" }, Rl = { class: "quote__author" }, Nl = {
|
|
1821
1822
|
key: 0,
|
|
1822
1823
|
class: "quote__image"
|
|
1823
|
-
},
|
|
1824
|
+
}, El = { class: "quote__text" }, jl = { class: "quote__author-name" }, Kl = { class: "quote__author-title" }, Ul = /* @__PURE__ */ g({
|
|
1824
1825
|
__name: "quote",
|
|
1825
1826
|
props: {
|
|
1826
1827
|
quote: {
|
|
@@ -1842,16 +1843,16 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1842
1843
|
}
|
|
1843
1844
|
},
|
|
1844
1845
|
setup(e) {
|
|
1845
|
-
return (a, r) => (
|
|
1846
|
-
t("div",
|
|
1847
|
-
|
|
1848
|
-
t("div",
|
|
1849
|
-
t("p",
|
|
1850
|
-
t("div",
|
|
1851
|
-
e.authorImage ? (
|
|
1846
|
+
return (a, r) => (l(), s("div", Ml, [
|
|
1847
|
+
t("div", Fl, [
|
|
1848
|
+
Ol,
|
|
1849
|
+
t("div", zl, [
|
|
1850
|
+
t("p", Hl, d(e.quote), 1),
|
|
1851
|
+
t("div", Rl, [
|
|
1852
|
+
e.authorImage ? (l(), s("div", Nl, [
|
|
1852
1853
|
S(F, null, {
|
|
1853
1854
|
default: y(() => [
|
|
1854
|
-
|
|
1855
|
+
c(a.$slots, "author-image", P(O({
|
|
1855
1856
|
src: e.authorImage + "/m/100x100",
|
|
1856
1857
|
width: 60,
|
|
1857
1858
|
height: 60
|
|
@@ -1860,22 +1861,22 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1860
1861
|
_: 3
|
|
1861
1862
|
})
|
|
1862
1863
|
])) : p("", !0),
|
|
1863
|
-
t("div",
|
|
1864
|
-
t("p",
|
|
1865
|
-
t("p",
|
|
1864
|
+
t("div", El, [
|
|
1865
|
+
t("p", jl, d(e.author), 1),
|
|
1866
|
+
t("p", Kl, d(e.authorTitle), 1)
|
|
1866
1867
|
])
|
|
1867
1868
|
])
|
|
1868
1869
|
])
|
|
1869
1870
|
])
|
|
1870
1871
|
]));
|
|
1871
1872
|
}
|
|
1872
|
-
}),
|
|
1873
|
+
}), Gl = /* @__PURE__ */ f(Ul, [["__scopeId", "data-v-e3cc8e27"]]), Jl = { class: "rich-text__wrapper" }, Wl = {
|
|
1873
1874
|
key: 0,
|
|
1874
1875
|
class: "rich-text__links"
|
|
1875
|
-
},
|
|
1876
|
+
}, Yl = {
|
|
1876
1877
|
key: 0,
|
|
1877
1878
|
class: "rich-text__bullet-list"
|
|
1878
|
-
},
|
|
1879
|
+
}, Ql = /* @__PURE__ */ g({
|
|
1879
1880
|
__name: "rich-text",
|
|
1880
1881
|
props: {
|
|
1881
1882
|
headline: { default: "" },
|
|
@@ -1888,19 +1889,19 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1888
1889
|
label: { default: "" }
|
|
1889
1890
|
},
|
|
1890
1891
|
setup(e) {
|
|
1891
|
-
return (a, r) => (
|
|
1892
|
+
return (a, r) => (l(), s("div", {
|
|
1892
1893
|
class: m([
|
|
1893
1894
|
"rich-text",
|
|
1894
1895
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1895
1896
|
])
|
|
1896
1897
|
}, [
|
|
1897
|
-
t("div",
|
|
1898
|
-
a.label ? (
|
|
1898
|
+
t("div", Jl, [
|
|
1899
|
+
a.label ? (l(), D(Z, {
|
|
1899
1900
|
key: 0,
|
|
1900
1901
|
text: a.label,
|
|
1901
1902
|
"label-dark": !1
|
|
1902
1903
|
}, null, 8, ["text"])) : p("", !0),
|
|
1903
|
-
a.headline ? (
|
|
1904
|
+
a.headline ? (l(), s("h2", {
|
|
1904
1905
|
key: 1,
|
|
1905
1906
|
class: m([
|
|
1906
1907
|
"rich-text__headline",
|
|
@@ -1919,15 +1920,15 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1919
1920
|
a.bulletList || a.image ? "rich-text__body--content-right" : ""
|
|
1920
1921
|
])
|
|
1921
1922
|
}, [
|
|
1922
|
-
|
|
1923
|
-
a.links ? (
|
|
1924
|
-
|
|
1923
|
+
c(a.$slots, "rich-text-content"),
|
|
1924
|
+
a.links ? (l(), s("div", Wl, [
|
|
1925
|
+
c(a.$slots, "rich-text-links")
|
|
1925
1926
|
])) : p("", !0)
|
|
1926
1927
|
], 2),
|
|
1927
|
-
a.bulletList ? (
|
|
1928
|
-
|
|
1928
|
+
a.bulletList ? (l(), s("div", Yl, [
|
|
1929
|
+
c(a.$slots, "rich-text-bullet-list")
|
|
1929
1930
|
])) : p("", !0),
|
|
1930
|
-
a.image ? (
|
|
1931
|
+
a.image ? (l(), s("div", {
|
|
1931
1932
|
key: 1,
|
|
1932
1933
|
class: m([
|
|
1933
1934
|
"rich-text__image",
|
|
@@ -1936,7 +1937,7 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1936
1937
|
}, [
|
|
1937
1938
|
S(F, null, {
|
|
1938
1939
|
default: y(() => [
|
|
1939
|
-
|
|
1940
|
+
c(a.$slots, "rich-text-image", P(O({ width: 865, height: 307 })))
|
|
1940
1941
|
]),
|
|
1941
1942
|
_: 3
|
|
1942
1943
|
})
|
|
@@ -1945,27 +1946,27 @@ const yl = /* @__PURE__ */ f(vl, [["render", bl], ["__scopeId", "data-v-ea887d7a
|
|
|
1945
1946
|
])
|
|
1946
1947
|
], 2));
|
|
1947
1948
|
}
|
|
1948
|
-
}),
|
|
1949
|
-
function
|
|
1950
|
-
return
|
|
1951
|
-
t("div",
|
|
1952
|
-
t("div",
|
|
1953
|
-
t("div",
|
|
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
|
+
function os(e, a) {
|
|
1951
|
+
return l(), s("div", xl, [
|
|
1952
|
+
t("div", es, [
|
|
1953
|
+
t("div", ts, [
|
|
1954
|
+
t("div", as, [
|
|
1954
1955
|
t("div", null, [
|
|
1955
|
-
|
|
1956
|
+
c(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
1956
1957
|
]),
|
|
1957
1958
|
t("div", null, [
|
|
1958
|
-
|
|
1959
|
+
c(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
1959
1960
|
])
|
|
1960
1961
|
])
|
|
1961
1962
|
])
|
|
1962
1963
|
])
|
|
1963
1964
|
]);
|
|
1964
1965
|
}
|
|
1965
|
-
const
|
|
1966
|
+
const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040"]]), ss = (e) => (H("data-v-e254e1e0"), e = e(), R(), e), is = { class: "timeline__wrapper" }, rs = { class: "timeline__content" }, ns = { class: "timeline__items" }, ds = { class: "item__left" }, cs = /* @__PURE__ */ ss(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
1966
1967
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
1967
1968
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
1968
|
-
], -1)),
|
|
1969
|
+
], -1)), us = { class: "item__right" }, _s = ["innerHTML"], hs = /* @__PURE__ */ g({
|
|
1969
1970
|
__name: "timeline",
|
|
1970
1971
|
props: {
|
|
1971
1972
|
timelineItems: {
|
|
@@ -1976,52 +1977,52 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
1976
1977
|
setup(e) {
|
|
1977
1978
|
return pe(() => {
|
|
1978
1979
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
1979
|
-
(
|
|
1980
|
-
|
|
1981
|
-
|
|
1980
|
+
(i) => {
|
|
1981
|
+
i.forEach((o) => {
|
|
1982
|
+
o.isIntersecting && (o.target.classList.add("visible"), o.target.classList.remove("faded"), r.unobserve(o.target));
|
|
1982
1983
|
});
|
|
1983
1984
|
},
|
|
1984
1985
|
{
|
|
1985
1986
|
threshold: 1
|
|
1986
1987
|
}
|
|
1987
1988
|
);
|
|
1988
|
-
a.forEach((
|
|
1989
|
-
r.observe(
|
|
1989
|
+
a.forEach((i) => {
|
|
1990
|
+
r.observe(i);
|
|
1990
1991
|
});
|
|
1991
|
-
}), (a, r) => (
|
|
1992
|
-
t("div",
|
|
1993
|
-
t("div",
|
|
1994
|
-
(
|
|
1995
|
-
key:
|
|
1992
|
+
}), (a, r) => (l(), s("div", is, [
|
|
1993
|
+
t("div", rs, [
|
|
1994
|
+
t("div", ns, [
|
|
1995
|
+
(l(!0), s(T, null, V(e.timelineItems, (i) => (l(), s("div", {
|
|
1996
|
+
key: i.year,
|
|
1996
1997
|
class: "timeline__item faded"
|
|
1997
1998
|
}, [
|
|
1998
|
-
t("div",
|
|
1999
|
-
|
|
2000
|
-
t("div",
|
|
1999
|
+
t("div", ds, d(i.year), 1),
|
|
2000
|
+
cs,
|
|
2001
|
+
t("div", us, [
|
|
2001
2002
|
S(F, null, {
|
|
2002
2003
|
default: y(() => [
|
|
2003
|
-
|
|
2004
|
+
i.media.src ? c(a.$slots, "timeline-image", P(X({ key: 0 }, { src: i.media.src, alt: i.media.alt })), void 0, !0) : p("", !0)
|
|
2004
2005
|
]),
|
|
2005
2006
|
_: 2
|
|
2006
2007
|
}, 1024),
|
|
2007
2008
|
t("div", {
|
|
2008
|
-
style: x([
|
|
2009
|
+
style: x([i.media.src ? "" : "margin-top: 0px"]),
|
|
2009
2010
|
class: "rich-text",
|
|
2010
|
-
innerHTML:
|
|
2011
|
-
}, null, 12,
|
|
2011
|
+
innerHTML: i.text
|
|
2012
|
+
}, null, 12, _s)
|
|
2012
2013
|
])
|
|
2013
2014
|
]))), 128))
|
|
2014
2015
|
])
|
|
2015
2016
|
])
|
|
2016
2017
|
]));
|
|
2017
2018
|
}
|
|
2018
|
-
}),
|
|
2019
|
+
}), ps = /* @__PURE__ */ f(hs, [["__scopeId", "data-v-e254e1e0"]]), ms = { class: "vimeo" }, vs = { class: "vimeo__wrapper" }, fs = {
|
|
2019
2020
|
key: 0,
|
|
2020
2021
|
class: "vimeo__headline"
|
|
2021
|
-
},
|
|
2022
|
+
}, gs = {
|
|
2022
2023
|
key: 1,
|
|
2023
2024
|
class: "vimeo__description"
|
|
2024
|
-
},
|
|
2025
|
+
}, bs = /* @__PURE__ */ g({
|
|
2025
2026
|
__name: "vimeo",
|
|
2026
2027
|
props: {
|
|
2027
2028
|
headline: {
|
|
@@ -2034,21 +2035,21 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2034
2035
|
}
|
|
2035
2036
|
},
|
|
2036
2037
|
setup(e) {
|
|
2037
|
-
return (a, r) => (
|
|
2038
|
-
t("div",
|
|
2039
|
-
e.headline ? (
|
|
2040
|
-
|
|
2041
|
-
e.description ? (
|
|
2038
|
+
return (a, r) => (l(), s("div", ms, [
|
|
2039
|
+
t("div", vs, [
|
|
2040
|
+
e.headline ? (l(), s("h2", fs, d(e.headline), 1)) : p("", !0),
|
|
2041
|
+
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2042
|
+
e.description ? (l(), s("p", gs, d(e.description), 1)) : p("", !0)
|
|
2042
2043
|
])
|
|
2043
2044
|
]));
|
|
2044
2045
|
}
|
|
2045
|
-
}),
|
|
2046
|
+
}), ys = /* @__PURE__ */ f(bs, [["__scopeId", "data-v-90a2b109"]]), $s = { class: "academy-overview" }, ks = { class: "academy-overview__content-wrapper" }, ws = { class: "academy-overview__content" }, Bs = { class: "academy-overview__title" }, Ss = { class: "academy-overview__description" }, Is = {
|
|
2046
2047
|
key: 0,
|
|
2047
2048
|
class: "academy-overview__button-wrapper"
|
|
2048
|
-
},
|
|
2049
|
+
}, qs = {
|
|
2049
2050
|
key: 0,
|
|
2050
2051
|
class: "academy-overview__stats"
|
|
2051
|
-
},
|
|
2052
|
+
}, Cs = { class: "academy-overview__stats-row" }, As = { class: "academy-overview__stat" }, Ls = { class: "academy-overview__value" }, Ds = { class: "academy-overview__label" }, Ts = { class: "academy-overview__stat" }, Vs = { class: "academy-overview__value" }, Ps = { class: "academy-overview__label" }, Ms = /* @__PURE__ */ g({
|
|
2052
2053
|
__name: "frontpage-hero",
|
|
2053
2054
|
props: {
|
|
2054
2055
|
hero: { default: () => ({
|
|
@@ -2062,25 +2063,25 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2062
2063
|
}) }
|
|
2063
2064
|
},
|
|
2064
2065
|
setup(e) {
|
|
2065
|
-
return (a, r) => (
|
|
2066
|
-
t("div",
|
|
2067
|
-
t("div",
|
|
2066
|
+
return (a, r) => (l(), s("div", $s, [
|
|
2067
|
+
t("div", ks, [
|
|
2068
|
+
t("div", ws, [
|
|
2068
2069
|
t("div", null, [
|
|
2069
|
-
t("h1",
|
|
2070
|
-
t("p",
|
|
2071
|
-
a.hero.showStats ? p("", !0) : (
|
|
2072
|
-
|
|
2070
|
+
t("h1", Bs, d(a.hero.headline), 1),
|
|
2071
|
+
t("p", Ss, d(a.hero.description), 1),
|
|
2072
|
+
a.hero.showStats ? p("", !0) : (l(), s("div", Is, [
|
|
2073
|
+
c(a.$slots, "button", {}, void 0, !0)
|
|
2073
2074
|
]))
|
|
2074
2075
|
]),
|
|
2075
|
-
a.hero.showStats ? (
|
|
2076
|
-
t("div",
|
|
2077
|
-
t("div",
|
|
2078
|
-
t("div",
|
|
2079
|
-
t("div",
|
|
2076
|
+
a.hero.showStats ? (l(), s("div", qs, [
|
|
2077
|
+
t("div", Cs, [
|
|
2078
|
+
t("div", As, [
|
|
2079
|
+
t("div", Ls, d(a.hero.lessonValue), 1),
|
|
2080
|
+
t("div", Ds, d(a.hero.lessonLabel), 1)
|
|
2080
2081
|
]),
|
|
2081
|
-
t("div",
|
|
2082
|
-
t("div",
|
|
2083
|
-
t("div",
|
|
2082
|
+
t("div", Ts, [
|
|
2083
|
+
t("div", Vs, d(a.hero.pointsValue), 1),
|
|
2084
|
+
t("div", Ps, d(a.hero.pointsLabel), 1)
|
|
2084
2085
|
])
|
|
2085
2086
|
])
|
|
2086
2087
|
])) : p("", !0)
|
|
@@ -2088,7 +2089,7 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2088
2089
|
])
|
|
2089
2090
|
]));
|
|
2090
2091
|
}
|
|
2091
|
-
}),
|
|
2092
|
+
}), Fs = /* @__PURE__ */ f(Ms, [["__scopeId", "data-v-98275425"]]), Os = { class: "not-found__wrapper" }, zs = { class: "not-found__content" }, Hs = { class: "not-found__headline" }, Rs = { class: "not-found__body" }, Ns = /* @__PURE__ */ g({
|
|
2092
2093
|
__name: "404",
|
|
2093
2094
|
props: {
|
|
2094
2095
|
headline: {
|
|
@@ -2097,16 +2098,16 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2097
2098
|
}
|
|
2098
2099
|
},
|
|
2099
2100
|
setup(e) {
|
|
2100
|
-
return (a, r) => (
|
|
2101
|
-
t("div",
|
|
2102
|
-
t("h1",
|
|
2103
|
-
t("div",
|
|
2104
|
-
|
|
2101
|
+
return (a, r) => (l(), s("div", Os, [
|
|
2102
|
+
t("div", zs, [
|
|
2103
|
+
t("h1", Hs, d(e.headline), 1),
|
|
2104
|
+
t("div", Rs, [
|
|
2105
|
+
c(a.$slots, "not-found-body", {}, void 0, !0)
|
|
2105
2106
|
])
|
|
2106
2107
|
])
|
|
2107
2108
|
]));
|
|
2108
2109
|
}
|
|
2109
|
-
}),
|
|
2110
|
+
}), Es = /* @__PURE__ */ f(Ns, [["__scopeId", "data-v-b829ca6c"]]), js = { class: "filter__wrapper" }, Ks = { class: "filter__content" }, Us = { class: "filter__dropdowns" }, Gs = { class: "filter__chips" }, Js = /* @__PURE__ */ g({
|
|
2110
2111
|
__name: "filter",
|
|
2111
2112
|
props: {
|
|
2112
2113
|
hasChips: {
|
|
@@ -2120,51 +2121,51 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2120
2121
|
},
|
|
2121
2122
|
emits: ["clearFilters"],
|
|
2122
2123
|
setup(e) {
|
|
2123
|
-
return (a, r) => (
|
|
2124
|
-
t("div",
|
|
2125
|
-
t("div", Ks, [
|
|
2126
|
-
u(a.$slots, "filter-dropdowns")
|
|
2127
|
-
]),
|
|
2124
|
+
return (a, r) => (l(), s("div", js, [
|
|
2125
|
+
t("div", Ks, [
|
|
2128
2126
|
t("div", Us, [
|
|
2129
|
-
|
|
2130
|
-
|
|
2127
|
+
c(a.$slots, "filter-dropdowns")
|
|
2128
|
+
]),
|
|
2129
|
+
t("div", Gs, [
|
|
2130
|
+
c(a.$slots, "filter-chips"),
|
|
2131
|
+
e.hasChips ? (l(), s("button", {
|
|
2131
2132
|
key: 0,
|
|
2132
2133
|
class: "filter__clear",
|
|
2133
|
-
onClick: r[0] || (r[0] = (
|
|
2134
|
+
onClick: r[0] || (r[0] = (i) => a.$emit("clearFilters"))
|
|
2134
2135
|
}, d(e.removeAll), 1)) : p("", !0)
|
|
2135
2136
|
])
|
|
2136
2137
|
])
|
|
2137
2138
|
]));
|
|
2138
2139
|
}
|
|
2139
|
-
}),
|
|
2140
|
+
}), Ws = /* @__PURE__ */ f(Js, [["__scopeId", "data-v-31c1ba00"]]), ge = (e) => (H("data-v-3d0cbbd5"), e = e(), R(), e), Ys = { class: "footer__wrapper" }, Qs = { class: "footer__content" }, Zs = {
|
|
2140
2141
|
key: 0,
|
|
2141
2142
|
src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
|
|
2142
2143
|
style: { margin: "0 auto" }
|
|
2143
|
-
},
|
|
2144
|
+
}, Xs = { class: "footer__sections" }, xs = { class: "section__title" }, ei = { class: "section__list" }, ti = { class: "section" }, ai = {
|
|
2144
2145
|
key: 0,
|
|
2145
2146
|
class: "section__title"
|
|
2146
|
-
},
|
|
2147
|
+
}, oi = {
|
|
2147
2148
|
key: 1,
|
|
2148
2149
|
class: "section__title"
|
|
2149
|
-
},
|
|
2150
|
+
}, li = { key: 0 }, si = { key: 1 }, ii = { key: 2 }, ri = { key: 3 }, ni = { key: 4 }, di = /* @__PURE__ */ ge(() => /* @__PURE__ */ t("br", null, null, -1)), ci = {
|
|
2150
2151
|
key: 0,
|
|
2151
2152
|
href: "mailto:china@mir-robots.com"
|
|
2152
|
-
},
|
|
2153
|
+
}, ui = {
|
|
2153
2154
|
key: 1,
|
|
2154
2155
|
href: "mailto:mail@mir-robots.com"
|
|
2155
|
-
},
|
|
2156
|
+
}, _i = {
|
|
2156
2157
|
key: 0,
|
|
2157
2158
|
href: "tel:+8613661856951"
|
|
2158
|
-
},
|
|
2159
|
+
}, hi = {
|
|
2159
2160
|
key: 1,
|
|
2160
2161
|
href: "tel:+4520377577"
|
|
2161
|
-
},
|
|
2162
|
+
}, pi = { class: "footer__bottom" }, mi = { class: "copyright" }, vi = { class: "footer__policy" }, fi = /* @__PURE__ */ ge(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), gi = {
|
|
2162
2163
|
key: 0,
|
|
2163
2164
|
class: "footer__social"
|
|
2164
|
-
},
|
|
2165
|
+
}, bi = ["href", "aria-label"], yi = {
|
|
2165
2166
|
key: 1,
|
|
2166
2167
|
class: "footer__social"
|
|
2167
|
-
},
|
|
2168
|
+
}, $i = ["href", "aria-label"], ki = /* @__PURE__ */ g({
|
|
2168
2169
|
__name: "footer",
|
|
2169
2170
|
props: {
|
|
2170
2171
|
language: { default: "" },
|
|
@@ -2177,37 +2178,37 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2177
2178
|
},
|
|
2178
2179
|
emits: ["changeRegionClicked"],
|
|
2179
2180
|
setup(e) {
|
|
2180
|
-
return (a, r) => (
|
|
2181
|
-
t("footer",
|
|
2182
|
-
a.language === "zh" ? (
|
|
2183
|
-
t("div",
|
|
2184
|
-
(
|
|
2185
|
-
key:
|
|
2181
|
+
return (a, r) => (l(), s("div", Ys, [
|
|
2182
|
+
t("footer", Qs, [
|
|
2183
|
+
a.language === "zh" ? (l(), s("img", Zs)) : p("", !0),
|
|
2184
|
+
t("div", Xs, [
|
|
2185
|
+
(l(!0), s(T, null, V(a.footerSections, (i) => (l(), s("div", {
|
|
2186
|
+
key: i.title,
|
|
2186
2187
|
class: "section"
|
|
2187
2188
|
}, [
|
|
2188
|
-
t("span",
|
|
2189
|
+
t("span", xs, d(i.title), 1),
|
|
2189
2190
|
t("nav", null, [
|
|
2190
|
-
t("ul",
|
|
2191
|
-
|
|
2192
|
-
links:
|
|
2191
|
+
t("ul", ei, [
|
|
2192
|
+
c(a.$slots, "section-links", {
|
|
2193
|
+
links: i.links
|
|
2193
2194
|
})
|
|
2194
2195
|
])
|
|
2195
2196
|
])
|
|
2196
2197
|
]))), 128)),
|
|
2197
|
-
t("div",
|
|
2198
|
-
a.language === "zh" ? (
|
|
2198
|
+
t("div", ti, [
|
|
2199
|
+
a.language === "zh" ? (l(), s("span", ai, "名傲移动机器人(上海)有限公司")) : (l(), s("span", oi, "Mobile Industrial Robots A/S")),
|
|
2199
2200
|
t("address", null, [
|
|
2200
|
-
a.language === "zh" ? (
|
|
2201
|
-
a.language === "zh" ? (
|
|
2202
|
-
a.language !== "zh" ? (
|
|
2203
|
-
|
|
2201
|
+
a.language === "zh" ? (l(), s("span", li, "上海浦东新区金桥出口加工区")) : (l(), s("span", si, "Energivej 51")),
|
|
2202
|
+
a.language === "zh" ? (l(), s("span", ii, "桂桥路1201号10栋2楼")) : (l(), s("span", ri, "5260 Odense S")),
|
|
2203
|
+
a.language !== "zh" ? (l(), s("span", ni, "CVR: 35251235")) : p("", !0),
|
|
2204
|
+
di,
|
|
2204
2205
|
S(M, {
|
|
2205
2206
|
class: "footer__contact",
|
|
2206
2207
|
"link-type": "regular_light",
|
|
2207
2208
|
underline: "false"
|
|
2208
2209
|
}, {
|
|
2209
2210
|
default: y(() => [
|
|
2210
|
-
a.language === "zh" ? (
|
|
2211
|
+
a.language === "zh" ? (l(), s("a", ci, "china@mir-robots.com")) : (l(), s("a", ui, "mail@mir-robots.com"))
|
|
2211
2212
|
]),
|
|
2212
2213
|
_: 1
|
|
2213
2214
|
}),
|
|
@@ -2217,67 +2218,67 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2217
2218
|
underline: "false"
|
|
2218
2219
|
}, {
|
|
2219
2220
|
default: y(() => [
|
|
2220
|
-
a.language === "zh" ? (
|
|
2221
|
+
a.language === "zh" ? (l(), s("a", _i, "+86 13661856951(微信同号)")) : (l(), s("a", hi, "+45 20 377 577"))
|
|
2221
2222
|
]),
|
|
2222
2223
|
_: 1
|
|
2223
2224
|
})
|
|
2224
2225
|
])
|
|
2225
2226
|
])
|
|
2226
2227
|
]),
|
|
2227
|
-
t("div",
|
|
2228
|
-
t("p",
|
|
2229
|
-
t("div",
|
|
2228
|
+
t("div", pi, [
|
|
2229
|
+
t("p", mi, " © Mobile Industrial Robots " + d((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2230
|
+
t("div", vi, [
|
|
2230
2231
|
t("button", {
|
|
2231
2232
|
class: "footer__language-switcher",
|
|
2232
|
-
onClick: r[0] || (r[0] = (
|
|
2233
|
+
onClick: r[0] || (r[0] = (i) => a.$emit("changeRegionClicked"))
|
|
2233
2234
|
}, [
|
|
2234
2235
|
t("span", null, [
|
|
2235
|
-
|
|
2236
|
+
fi,
|
|
2236
2237
|
G(d(a.changeRegion), 1)
|
|
2237
2238
|
])
|
|
2238
2239
|
]),
|
|
2239
|
-
|
|
2240
|
-
|
|
2240
|
+
c(a.$slots, "footer-privacy-link"),
|
|
2241
|
+
c(a.$slots, "footer-cookie-link")
|
|
2241
2242
|
]),
|
|
2242
|
-
a.language !== "zh" ? (
|
|
2243
|
-
(
|
|
2244
|
-
key:
|
|
2243
|
+
a.language !== "zh" ? (l(), s("div", gi, [
|
|
2244
|
+
(l(!0), s(T, null, V(a.socialMedia, (i) => (l(), D(M, {
|
|
2245
|
+
key: i.title,
|
|
2245
2246
|
underline: "false",
|
|
2246
2247
|
"link-type": "regular"
|
|
2247
2248
|
}, {
|
|
2248
2249
|
default: y(() => [
|
|
2249
2250
|
t("a", {
|
|
2250
|
-
href:
|
|
2251
|
+
href: i.url,
|
|
2251
2252
|
target: "_blank",
|
|
2252
|
-
"aria-label":
|
|
2253
|
+
"aria-label": i.title
|
|
2253
2254
|
}, [
|
|
2254
2255
|
t("i", {
|
|
2255
2256
|
width: "19",
|
|
2256
2257
|
height: "14",
|
|
2257
|
-
class: m(["footer__social--icon", [
|
|
2258
|
+
class: m(["footer__social--icon", [i.title ? "bg-" + i.title : ""]])
|
|
2258
2259
|
}, null, 2)
|
|
2259
|
-
], 8,
|
|
2260
|
+
], 8, bi)
|
|
2260
2261
|
]),
|
|
2261
2262
|
_: 2
|
|
2262
2263
|
}, 1024))), 128))
|
|
2263
|
-
])) : (
|
|
2264
|
-
(
|
|
2265
|
-
key:
|
|
2264
|
+
])) : (l(), s("div", yi, [
|
|
2265
|
+
(l(!0), s(T, null, V(a.socialMediaChina, (i) => (l(), D(M, {
|
|
2266
|
+
key: i.title,
|
|
2266
2267
|
underline: "false",
|
|
2267
2268
|
"link-type": "regular"
|
|
2268
2269
|
}, {
|
|
2269
2270
|
default: y(() => [
|
|
2270
2271
|
t("a", {
|
|
2271
|
-
href:
|
|
2272
|
+
href: i.url,
|
|
2272
2273
|
target: "_blank",
|
|
2273
|
-
"aria-label":
|
|
2274
|
+
"aria-label": i.title
|
|
2274
2275
|
}, [
|
|
2275
2276
|
t("i", {
|
|
2276
2277
|
width: "19",
|
|
2277
2278
|
height: "14",
|
|
2278
|
-
class: m(["footer__social--icon", [
|
|
2279
|
+
class: m(["footer__social--icon", [i.title ? "bg-" + i.title : ""]])
|
|
2279
2280
|
}, null, 2)
|
|
2280
|
-
], 8,
|
|
2281
|
+
], 8, $i)
|
|
2281
2282
|
]),
|
|
2282
2283
|
_: 2
|
|
2283
2284
|
}, 1024))), 128))
|
|
@@ -2286,51 +2287,51 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2286
2287
|
])
|
|
2287
2288
|
]));
|
|
2288
2289
|
}
|
|
2289
|
-
}),
|
|
2290
|
+
}), wi = /* @__PURE__ */ f(ki, [["__scopeId", "data-v-3d0cbbd5"]]), be = (e) => (H("data-v-766d3c80"), e = e(), R(), e), Bi = { class: "header__wrapper" }, Si = { class: "nav-wrapper" }, Ii = { class: "mir-link-logo" }, qi = { class: "main-nav-items" }, Ci = {
|
|
2290
2291
|
key: 0,
|
|
2291
2292
|
id: "menu-dropdown",
|
|
2292
2293
|
ref: "dropdownDiv"
|
|
2293
|
-
},
|
|
2294
|
+
}, Ai = {
|
|
2294
2295
|
key: 0,
|
|
2295
2296
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2296
2297
|
alt: "dropdownarrow"
|
|
2297
|
-
},
|
|
2298
|
+
}, Li = {
|
|
2298
2299
|
key: 1,
|
|
2299
2300
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2300
2301
|
alt: "dropdownarrow",
|
|
2301
2302
|
style: { transform: "rotate(180deg)" }
|
|
2302
|
-
},
|
|
2303
|
+
}, Di = { class: "dropdown-content" }, Ti = {
|
|
2303
2304
|
key: 1,
|
|
2304
2305
|
class: "nav-search-wrapper"
|
|
2305
|
-
},
|
|
2306
|
+
}, Vi = ["src"], Pi = {
|
|
2306
2307
|
key: 2,
|
|
2307
2308
|
id: "menu-portal-switcher",
|
|
2308
2309
|
class: "portal-switcher-wrapper"
|
|
2309
|
-
},
|
|
2310
|
+
}, Mi = /* @__PURE__ */ be(() => /* @__PURE__ */ t("img", {
|
|
2310
2311
|
src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
|
|
2311
2312
|
alt: "portalswitchericon",
|
|
2312
2313
|
width: "15",
|
|
2313
2314
|
height: "15"
|
|
2314
|
-
}, null, -1)),
|
|
2315
|
-
|
|
2316
|
-
],
|
|
2315
|
+
}, null, -1)), Fi = [
|
|
2316
|
+
Mi
|
|
2317
|
+
], Oi = { class: "portal-switcher-content" }, zi = { class: "portal-switcher-links" }, Hi = ["href"], Ri = ["src"], Ni = {
|
|
2317
2318
|
key: 3,
|
|
2318
2319
|
id: "menu-profile-dropdown",
|
|
2319
2320
|
class: "profile-dropdown-wrapper"
|
|
2320
|
-
},
|
|
2321
|
+
}, Ei = {
|
|
2321
2322
|
key: 0,
|
|
2322
2323
|
class: "profile-dropdown-sign-in"
|
|
2323
|
-
},
|
|
2324
|
+
}, ji = /* @__PURE__ */ be(() => /* @__PURE__ */ t("img", {
|
|
2324
2325
|
src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
|
|
2325
2326
|
alt: "profiledropdownicon",
|
|
2326
2327
|
width: "15",
|
|
2327
2328
|
height: "15"
|
|
2328
|
-
}, null, -1)),
|
|
2329
|
-
|
|
2330
|
-
],
|
|
2329
|
+
}, null, -1)), Ki = [
|
|
2330
|
+
ji
|
|
2331
|
+
], Ui = { class: "profile-dropdown-content" }, Gi = { class: "mobile-logo-search-burger-wrapper" }, Ji = { class: "mobile-mir-link-logo" }, Wi = {
|
|
2331
2332
|
key: 0,
|
|
2332
2333
|
class: "mobile-search-wrapper"
|
|
2333
|
-
},
|
|
2334
|
+
}, Yi = ["src"], Qi = ["src"], Zi = { class: "mobile-menu-content-wrapper" }, Xi = { class: "mobile-dropdown-content" }, xi = /* @__PURE__ */ g({
|
|
2334
2335
|
__name: "header",
|
|
2335
2336
|
props: {
|
|
2336
2337
|
burgerState: {
|
|
@@ -2382,33 +2383,33 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2382
2383
|
"clickSearch"
|
|
2383
2384
|
],
|
|
2384
2385
|
setup(e, { expose: a, emit: r }) {
|
|
2385
|
-
let
|
|
2386
|
-
const
|
|
2387
|
-
let
|
|
2386
|
+
let i = null;
|
|
2387
|
+
const o = e;
|
|
2388
|
+
let u = q(o.burgerState), n = q(o.search), _ = q(o.showDropDown), b = q(o.showPortalSwitcherDropDown), v = q(o.showProfileDropDown), k = q(o.isAuthenticated);
|
|
2388
2389
|
Y(
|
|
2389
|
-
() =>
|
|
2390
|
-
($) =>
|
|
2390
|
+
() => o.burgerState,
|
|
2391
|
+
($) => u.value = $
|
|
2391
2392
|
), Y(
|
|
2392
|
-
() =>
|
|
2393
|
+
() => o.search,
|
|
2393
2394
|
($) => n.value = $
|
|
2394
2395
|
), Y(
|
|
2395
|
-
() =>
|
|
2396
|
+
() => o.showDropDown,
|
|
2396
2397
|
($) => _.value = $
|
|
2397
2398
|
), Y(
|
|
2398
|
-
() =>
|
|
2399
|
+
() => o.showPortalSwitcherDropDown,
|
|
2399
2400
|
($) => b.value = $
|
|
2400
2401
|
), Y(
|
|
2401
|
-
() =>
|
|
2402
|
+
() => o.showProfileDropDown,
|
|
2402
2403
|
($) => v.value = $
|
|
2403
2404
|
), Y(
|
|
2404
|
-
() =>
|
|
2405
|
+
() => o.isAuthenticated,
|
|
2405
2406
|
($) => k.value = $
|
|
2406
2407
|
), pe(() => {
|
|
2407
|
-
|
|
2408
|
+
i = ($) => {
|
|
2408
2409
|
$.target.closest("#menu-dropdown") || (_.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (v.value = !1);
|
|
2409
|
-
}, window.addEventListener("click",
|
|
2410
|
+
}, window.addEventListener("click", i);
|
|
2410
2411
|
}), qe(() => {
|
|
2411
|
-
|
|
2412
|
+
i !== null && window.removeEventListener("click", i);
|
|
2412
2413
|
});
|
|
2413
2414
|
const w = r;
|
|
2414
2415
|
function te() {
|
|
@@ -2421,7 +2422,7 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2421
2422
|
v.value = !v.value, w("update:showProfileDropDown", v.value);
|
|
2422
2423
|
}
|
|
2423
2424
|
function re() {
|
|
2424
|
-
|
|
2425
|
+
u.value = !u.value, w("update:burgerState", u.value);
|
|
2425
2426
|
}
|
|
2426
2427
|
let U = q(null), ae = q(null);
|
|
2427
2428
|
function ne() {
|
|
@@ -2429,30 +2430,30 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2429
2430
|
}
|
|
2430
2431
|
return a({
|
|
2431
2432
|
defocusSearchButton: ne
|
|
2432
|
-
}), ($, E) => (
|
|
2433
|
+
}), ($, E) => (l(), s("div", Bi, [
|
|
2433
2434
|
t("nav", null, [
|
|
2434
|
-
t("div",
|
|
2435
|
-
t("div",
|
|
2436
|
-
|
|
2435
|
+
t("div", Si, [
|
|
2436
|
+
t("div", Ii, [
|
|
2437
|
+
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2437
2438
|
]),
|
|
2438
|
-
t("ul",
|
|
2439
|
-
|
|
2439
|
+
t("ul", qi, [
|
|
2440
|
+
c($.$slots, "main-nav-items", {}, void 0, !0)
|
|
2440
2441
|
]),
|
|
2441
|
-
e.useDropdown ? (
|
|
2442
|
+
e.useDropdown ? (l(), s("div", Ci, [
|
|
2442
2443
|
t("button", {
|
|
2443
2444
|
class: "nav-dropdown-btn",
|
|
2444
2445
|
onClick: te
|
|
2445
2446
|
}, [
|
|
2446
|
-
|
|
2447
|
-
I(_) === !1 ? (
|
|
2447
|
+
c($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2448
|
+
I(_) === !1 ? (l(), s("img", Ai)) : (l(), s("img", Li))
|
|
2448
2449
|
]),
|
|
2449
|
-
K(t("div",
|
|
2450
|
-
|
|
2450
|
+
K(t("div", Di, [
|
|
2451
|
+
c($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2451
2452
|
], 512), [
|
|
2452
2453
|
[Q, I(_)]
|
|
2453
2454
|
])
|
|
2454
2455
|
], 512)) : p("", !0),
|
|
2455
|
-
I(n) ? (
|
|
2456
|
+
I(n) ? (l(), s("div", Ti, [
|
|
2456
2457
|
t("button", {
|
|
2457
2458
|
ref_key: "navSearchButton",
|
|
2458
2459
|
ref: U,
|
|
@@ -2463,21 +2464,21 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2463
2464
|
})
|
|
2464
2465
|
}, [
|
|
2465
2466
|
t("img", {
|
|
2466
|
-
src: I(
|
|
2467
|
+
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",
|
|
2467
2468
|
alt: "search icon",
|
|
2468
2469
|
width: "20",
|
|
2469
2470
|
height: "20"
|
|
2470
|
-
}, null, 8,
|
|
2471
|
+
}, null, 8, Vi)
|
|
2471
2472
|
], 512)
|
|
2472
2473
|
])) : p("", !0),
|
|
2473
|
-
e.usePortalSwitcher ? (
|
|
2474
|
+
e.usePortalSwitcher ? (l(), s("div", Pi, [
|
|
2474
2475
|
t("button", {
|
|
2475
2476
|
class: "nav-portal-switcher-btn",
|
|
2476
2477
|
onClick: se
|
|
2477
|
-
},
|
|
2478
|
-
K(t("div",
|
|
2479
|
-
t("ul",
|
|
2480
|
-
(
|
|
2478
|
+
}, Fi),
|
|
2479
|
+
K(t("div", Oi, [
|
|
2480
|
+
t("ul", zi, [
|
|
2481
|
+
(l(!0), s(T, null, V(e.portals, (j, N) => (l(), s("li", {
|
|
2481
2482
|
key: N,
|
|
2482
2483
|
class: "portal-switcher-link"
|
|
2483
2484
|
}, [
|
|
@@ -2489,9 +2490,9 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2489
2490
|
}, [
|
|
2490
2491
|
t("img", {
|
|
2491
2492
|
src: j.icon
|
|
2492
|
-
}, null, 8,
|
|
2493
|
+
}, null, 8, Ri),
|
|
2493
2494
|
t("div", null, d(j.name), 1)
|
|
2494
|
-
], 8,
|
|
2495
|
+
], 8, Hi)
|
|
2495
2496
|
]),
|
|
2496
2497
|
_: 2
|
|
2497
2498
|
}, 1024)
|
|
@@ -2501,30 +2502,30 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2501
2502
|
[Q, I(b)]
|
|
2502
2503
|
])
|
|
2503
2504
|
])) : p("", !0),
|
|
2504
|
-
e.useProfileDropdown ? (
|
|
2505
|
-
I(k) ? p("", !0) : (
|
|
2506
|
-
|
|
2505
|
+
e.useProfileDropdown ? (l(), s("div", Ni, [
|
|
2506
|
+
I(k) ? p("", !0) : (l(), s("div", Ei, [
|
|
2507
|
+
c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2507
2508
|
])),
|
|
2508
|
-
I(k) ? (
|
|
2509
|
+
I(k) ? (l(), s("button", {
|
|
2509
2510
|
key: 1,
|
|
2510
2511
|
class: "nav-profile-dropdown-btn",
|
|
2511
2512
|
onClick: ie
|
|
2512
|
-
},
|
|
2513
|
-
K(t("div",
|
|
2514
|
-
|
|
2513
|
+
}, Ki)) : p("", !0),
|
|
2514
|
+
K(t("div", Ui, [
|
|
2515
|
+
c($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2515
2516
|
], 512), [
|
|
2516
2517
|
[Q, I(v)]
|
|
2517
2518
|
])
|
|
2518
2519
|
])) : p("", !0)
|
|
2519
2520
|
]),
|
|
2520
2521
|
t("div", {
|
|
2521
|
-
class: m(["mobile-nav-wrapper", I(
|
|
2522
|
+
class: m(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2522
2523
|
}, [
|
|
2523
|
-
t("div",
|
|
2524
|
-
t("div",
|
|
2525
|
-
|
|
2524
|
+
t("div", Gi, [
|
|
2525
|
+
t("div", Ji, [
|
|
2526
|
+
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2526
2527
|
]),
|
|
2527
|
-
I(n) ? (
|
|
2528
|
+
I(n) ? (l(), s("div", Wi, [
|
|
2528
2529
|
t("button", {
|
|
2529
2530
|
ref_key: "mobileSearchButton",
|
|
2530
2531
|
ref: ae,
|
|
@@ -2536,11 +2537,11 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2536
2537
|
})
|
|
2537
2538
|
}, [
|
|
2538
2539
|
t("img", {
|
|
2539
|
-
src: I(
|
|
2540
|
+
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",
|
|
2540
2541
|
alt: "search icon",
|
|
2541
2542
|
width: "20",
|
|
2542
2543
|
height: "20"
|
|
2543
|
-
}, null, 8,
|
|
2544
|
+
}, null, 8, Yi)
|
|
2544
2545
|
], 512)
|
|
2545
2546
|
])) : p("", !0),
|
|
2546
2547
|
t("button", {
|
|
@@ -2552,26 +2553,26 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2552
2553
|
width: "20",
|
|
2553
2554
|
height: "20",
|
|
2554
2555
|
alt: "burger menu line icon",
|
|
2555
|
-
src: I(
|
|
2556
|
-
}, null, 8,
|
|
2556
|
+
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
|
+
}, null, 8, Qi)
|
|
2557
2558
|
])
|
|
2558
2559
|
]),
|
|
2559
|
-
K(t("div",
|
|
2560
|
+
K(t("div", Zi, [
|
|
2560
2561
|
t("ul", null, [
|
|
2561
|
-
|
|
2562
|
+
c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2562
2563
|
]),
|
|
2563
|
-
t("ul",
|
|
2564
|
-
|
|
2565
|
-
|
|
2564
|
+
t("ul", Xi, [
|
|
2565
|
+
c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2566
|
+
c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2566
2567
|
])
|
|
2567
2568
|
], 512), [
|
|
2568
|
-
[Q, I(
|
|
2569
|
+
[Q, I(u)]
|
|
2569
2570
|
])
|
|
2570
2571
|
], 2)
|
|
2571
2572
|
])
|
|
2572
2573
|
]));
|
|
2573
2574
|
}
|
|
2574
|
-
}),
|
|
2575
|
+
}), er = /* @__PURE__ */ f(xi, [["__scopeId", "data-v-766d3c80"]]), tr = { class: "language__wrapper" }, ar = { class: "language__content" }, or = { class: "language__headline" }, lr = { class: "language__paragraph" }, sr = { class: "language__links" }, ir = /* @__PURE__ */ g({
|
|
2575
2576
|
__name: "language-switcher",
|
|
2576
2577
|
props: {
|
|
2577
2578
|
headline: {
|
|
@@ -2584,17 +2585,17 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2584
2585
|
}
|
|
2585
2586
|
},
|
|
2586
2587
|
setup(e) {
|
|
2587
|
-
return (a, r) => (
|
|
2588
|
-
t("div",
|
|
2589
|
-
t("h2",
|
|
2590
|
-
t("p",
|
|
2591
|
-
t("div",
|
|
2592
|
-
|
|
2588
|
+
return (a, r) => (l(), s("div", tr, [
|
|
2589
|
+
t("div", ar, [
|
|
2590
|
+
t("h2", or, d(e.headline), 1),
|
|
2591
|
+
t("p", lr, d(e.paragraph), 1),
|
|
2592
|
+
t("div", sr, [
|
|
2593
|
+
c(a.$slots, "language-links", {}, void 0, !0)
|
|
2593
2594
|
])
|
|
2594
2595
|
])
|
|
2595
2596
|
]));
|
|
2596
2597
|
}
|
|
2597
|
-
}),
|
|
2598
|
+
}), rr = /* @__PURE__ */ f(ir, [["__scopeId", "data-v-dc8cc97e"]]), nr = { class: "pagination__wrapper" }, dr = { class: "pagination__content" }, cr = /* @__PURE__ */ g({
|
|
2598
2599
|
__name: "pagination",
|
|
2599
2600
|
props: {
|
|
2600
2601
|
isPreviousDisabled: {
|
|
@@ -2608,31 +2609,31 @@ const os = /* @__PURE__ */ f(Zl, [["render", as], ["__scopeId", "data-v-449f3040
|
|
|
2608
2609
|
},
|
|
2609
2610
|
emits: ["previous", "next"],
|
|
2610
2611
|
setup(e) {
|
|
2611
|
-
return (a, r) => (
|
|
2612
|
-
t("div",
|
|
2612
|
+
return (a, r) => (l(), s("div", nr, [
|
|
2613
|
+
t("div", dr, [
|
|
2613
2614
|
S(le, {
|
|
2614
2615
|
disabled: e.isPreviousDisabled,
|
|
2615
2616
|
variant: "previous",
|
|
2616
2617
|
"aria-label": "previous",
|
|
2617
|
-
onClick: r[0] || (r[0] = (
|
|
2618
|
+
onClick: r[0] || (r[0] = (i) => a.$emit("previous"))
|
|
2618
2619
|
}, null, 8, ["disabled"]),
|
|
2619
|
-
|
|
2620
|
+
c(a.$slots, "pagination-numbers"),
|
|
2620
2621
|
S(le, {
|
|
2621
2622
|
disabled: e.isNextDisabled,
|
|
2622
2623
|
variant: "next",
|
|
2623
2624
|
"aria-label": "next",
|
|
2624
|
-
onClick: r[1] || (r[1] = (
|
|
2625
|
+
onClick: r[1] || (r[1] = (i) => a.$emit("next"))
|
|
2625
2626
|
}, null, 8, ["disabled"])
|
|
2626
2627
|
])
|
|
2627
2628
|
]));
|
|
2628
2629
|
}
|
|
2629
|
-
}),
|
|
2630
|
-
function
|
|
2631
|
-
return
|
|
2632
|
-
|
|
2630
|
+
}), ur = /* @__PURE__ */ f(cr, [["__scopeId", "data-v-da6d07c9"]]), _r = {}, hr = { class: "search__wrapper" };
|
|
2631
|
+
function pr(e, a) {
|
|
2632
|
+
return l(), s("div", hr, [
|
|
2633
|
+
c(e.$slots, "default", { class: "search__content" })
|
|
2633
2634
|
]);
|
|
2634
2635
|
}
|
|
2635
|
-
const
|
|
2636
|
+
const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3"]]), vr = { class: "dropdown" }, fr = ["aria-expanded"], gr = /* @__PURE__ */ g({
|
|
2636
2637
|
__name: "select-multiple",
|
|
2637
2638
|
props: {
|
|
2638
2639
|
label: { default: "" },
|
|
@@ -2641,31 +2642,31 @@ const pr = /* @__PURE__ */ f(ur, [["render", hr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2641
2642
|
},
|
|
2642
2643
|
emits: ["filter", "remove-filter"],
|
|
2643
2644
|
setup(e, { emit: a }) {
|
|
2644
|
-
const r = q(!1),
|
|
2645
|
-
function
|
|
2646
|
-
|
|
2645
|
+
const r = q(!1), i = e, o = a;
|
|
2646
|
+
function u(b) {
|
|
2647
|
+
i.selectedOptions.includes(b) ? o("remove-filter", b) : o("filter", b);
|
|
2647
2648
|
}
|
|
2648
2649
|
function n() {
|
|
2649
2650
|
r.value = !1;
|
|
2650
2651
|
}
|
|
2651
|
-
const _ = L(() =>
|
|
2652
|
+
const _ = L(() => i.options.length > 8);
|
|
2652
2653
|
return (b, v) => {
|
|
2653
2654
|
const k = ue("click-outside");
|
|
2654
|
-
return K((
|
|
2655
|
+
return K((l(), s("div", vr, [
|
|
2655
2656
|
t("button", {
|
|
2656
2657
|
class: "dropdown-button",
|
|
2657
2658
|
style: x({ "z-index": r.value ? 2 : 0 }),
|
|
2658
2659
|
"aria-expanded": r.value ? "true" : "false",
|
|
2659
2660
|
onClick: v[0] || (v[0] = (w) => r.value = !r.value)
|
|
2660
2661
|
}, [
|
|
2661
|
-
|
|
2662
|
+
c(b.$slots, "button", {}, () => [
|
|
2662
2663
|
G(d(b.label), 1)
|
|
2663
2664
|
], !0)
|
|
2664
|
-
], 12,
|
|
2665
|
+
], 12, fr),
|
|
2665
2666
|
t("div", {
|
|
2666
2667
|
class: m([{ hidden: !r.value, "adjust-height": _.value }, "dropdown-content"])
|
|
2667
2668
|
}, [
|
|
2668
|
-
(
|
|
2669
|
+
(l(!0), s(T, null, V(b.options, (w) => (l(), D(I(me), {
|
|
2669
2670
|
id: w.value,
|
|
2670
2671
|
key: w.value,
|
|
2671
2672
|
name: w.text,
|
|
@@ -2673,7 +2674,7 @@ const pr = /* @__PURE__ */ f(ur, [["render", hr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2673
2674
|
disabled: !1,
|
|
2674
2675
|
value: w.value,
|
|
2675
2676
|
checked: b.selectedOptions.includes(w.value),
|
|
2676
|
-
onInput: (te) =>
|
|
2677
|
+
onInput: (te) => u(w.value)
|
|
2677
2678
|
}, {
|
|
2678
2679
|
default: y(() => [
|
|
2679
2680
|
G(d(w.text), 1)
|
|
@@ -2686,7 +2687,7 @@ const pr = /* @__PURE__ */ f(ur, [["render", hr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2686
2687
|
]);
|
|
2687
2688
|
};
|
|
2688
2689
|
}
|
|
2689
|
-
}),
|
|
2690
|
+
}), br = /* @__PURE__ */ f(gr, [["__scopeId", "data-v-164647da"]]), yr = { class: "promo__content" }, $r = { class: "pallet-jack__media-wrap" }, kr = { class: "pallet-jack-link" }, wr = { class: "pallet-jack__media-wrap__inner-wrap" }, Br = { class: "pallet-jack__media-wrap__content-wrap" }, Sr = { class: "regular-blue" }, Ir = /* @__PURE__ */ g({
|
|
2690
2691
|
__name: "pallet-jack",
|
|
2691
2692
|
props: {
|
|
2692
2693
|
label: { default: "" },
|
|
@@ -2704,69 +2705,69 @@ const pr = /* @__PURE__ */ f(ur, [["render", hr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2704
2705
|
dark: "promo__wrapper--dark",
|
|
2705
2706
|
light: "promo__wrapper--light",
|
|
2706
2707
|
default: "promo__wrapper--default"
|
|
2707
|
-
}, r = e,
|
|
2708
|
-
return (
|
|
2708
|
+
}, r = e, i = L(() => a[r.variant]);
|
|
2709
|
+
return (o, u) => (l(), s("div", {
|
|
2709
2710
|
class: m([
|
|
2710
2711
|
"promo__wrapper",
|
|
2711
|
-
|
|
2712
|
-
|
|
2712
|
+
i.value,
|
|
2713
|
+
o.teaser ? "promo__wrapper--teaser" : ""
|
|
2713
2714
|
])
|
|
2714
2715
|
}, [
|
|
2715
|
-
t("div",
|
|
2716
|
+
t("div", yr, [
|
|
2716
2717
|
t("div", {
|
|
2717
2718
|
class: m([
|
|
2718
2719
|
"promo__video",
|
|
2719
|
-
|
|
2720
|
+
o.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2720
2721
|
])
|
|
2721
2722
|
}, [
|
|
2722
|
-
t("div",
|
|
2723
|
-
t("div", $r, [
|
|
2724
|
-
u(l.$slots, "pallet-jack-link")
|
|
2725
|
-
]),
|
|
2723
|
+
t("div", $r, [
|
|
2726
2724
|
t("div", kr, [
|
|
2727
|
-
|
|
2725
|
+
c(o.$slots, "pallet-jack-link")
|
|
2728
2726
|
]),
|
|
2729
2727
|
t("div", wr, [
|
|
2730
|
-
|
|
2731
|
-
|
|
2728
|
+
c(o.$slots, "pallet-jack-video")
|
|
2729
|
+
]),
|
|
2730
|
+
t("div", Br, [
|
|
2731
|
+
t("h3", Sr, d(o.headline), 1),
|
|
2732
|
+
t("p", null, d(o.shortDescription), 1)
|
|
2732
2733
|
])
|
|
2733
2734
|
])
|
|
2734
2735
|
], 2),
|
|
2735
2736
|
t("div", {
|
|
2736
2737
|
class: m([
|
|
2737
2738
|
"promo__text",
|
|
2738
|
-
|
|
2739
|
+
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2739
2740
|
])
|
|
2740
2741
|
}, [
|
|
2741
|
-
|
|
2742
|
+
o.label ? (l(), D(Z, {
|
|
2742
2743
|
key: 0,
|
|
2743
|
-
text:
|
|
2744
|
-
"label-dark":
|
|
2744
|
+
text: o.label,
|
|
2745
|
+
"label-dark": o.variant === "dark"
|
|
2745
2746
|
}, null, 8, ["text", "label-dark"])) : p("", !0),
|
|
2746
2747
|
t("div", {
|
|
2747
2748
|
class: m([
|
|
2748
2749
|
"promo__title",
|
|
2749
|
-
|
|
2750
|
+
o.variant === "dark" ? "promo__title--dark" : ""
|
|
2750
2751
|
])
|
|
2751
2752
|
}, [
|
|
2752
|
-
|
|
2753
|
+
c(o.$slots, "promo-text")
|
|
2753
2754
|
], 2),
|
|
2754
|
-
|
|
2755
|
+
o.linkType === "link" ? (l(), D(M, {
|
|
2755
2756
|
key: 1,
|
|
2756
|
-
"link-type":
|
|
2757
|
+
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
2757
2758
|
arrow: ""
|
|
2758
2759
|
}, {
|
|
2759
2760
|
default: y(() => [
|
|
2760
|
-
|
|
2761
|
+
c(o.$slots, "promo-link")
|
|
2761
2762
|
]),
|
|
2762
2763
|
_: 3
|
|
2763
2764
|
}, 8, ["link-type"])) : p("", !0),
|
|
2764
|
-
|
|
2765
|
+
o.linkType === "button" ? (l(), D(M, {
|
|
2765
2766
|
key: 2,
|
|
2766
|
-
"link-type":
|
|
2767
|
+
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
2767
2768
|
}, {
|
|
2768
2769
|
default: y(() => [
|
|
2769
|
-
|
|
2770
|
+
c(o.$slots, "promo-link")
|
|
2770
2771
|
]),
|
|
2771
2772
|
_: 3
|
|
2772
2773
|
}, 8, ["link-type"])) : p("", !0)
|
|
@@ -2774,9 +2775,9 @@ const pr = /* @__PURE__ */ f(ur, [["render", hr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2774
2775
|
])
|
|
2775
2776
|
], 2));
|
|
2776
2777
|
}
|
|
2777
|
-
}),
|
|
2778
|
+
}), qr = /* @__PURE__ */ f(Ir, [["__scopeId", "data-v-00c0bad3"]]), Ar = {
|
|
2778
2779
|
install: (e) => {
|
|
2779
|
-
e.component("AtomButton", le), e.component("AtomCheckbox", me), e.component("AtomChip", He), e.component("AtomDropdown", Je), e.component("AtomImage", F), e.component("AtomLabel", Z), e.component("AtomLink", M), e.component("AtomRadioButton", st), e.component("AtomSelect", ut), e.component("AtomSelectMultiple",
|
|
2780
|
+
e.component("AtomButton", le), e.component("AtomCheckbox", me), e.component("AtomChip", He), e.component("AtomDropdown", Je), e.component("AtomImage", F), e.component("AtomLabel", Z), e.component("AtomLink", M), e.component("AtomRadioButton", st), e.component("AtomSelect", ut), e.component("AtomSelectMultiple", br), e.component("AtomSlider", kt), e.component("AtomTextarea", Lt), e.component("AtomTextField", Nt), e.component("AtomVideo", ee), e.component("MoleculeAddress", oa), e.component("MoleculeBulletList", na), e.component("MoleculeCard", ha), e.component("MoleculeColumnCard", fe), e.component("MoleculeEventCard", Ia), e.component("MoleculeModal", ve), e.component("MoleculeTextCard", Da), e.component("BlockAccordion", Ea), e.component("BlockFacts", uo), e.component("BlockFeatures", bo), e.component("BlockFormScript", qo), e.component("BlockHeadline", Do), e.component("BlockHero", Ko), e.component("BlockImage", Qo), e.component("BlockImageGallery", al), e.component("BlockLogoWall", ul), e.component("BlockMicroStories", vl), e.component("BlockPolicy", $l), e.component("BlockProductHero", Ll), e.component("BlockPromo", Vl), e.component("BlockQuote", Gl), e.component("BlockRichText", Zl), e.component("BlockRichTextColumns", ls), e.component("BlockTimeline", ps), e.component("BlockCardDisplay", Ya), e.component("BlockColumnGrid", to), e.component("BlockVimeo", ys), e.component("BlockPalletJack", qr), e.component("BlockFrontPageHero", Fs), e.component("Organism404", Es), e.component("OrganismFilter", Ws), e.component("OrganismFooter", wi), e.component("OrganismHeader", er), e.component("OrganismLanguageSwitcher", rr), e.component("OrganismPagination", ur), e.component("OrganismSearch", mr);
|
|
2780
2781
|
}
|
|
2781
2782
|
};
|
|
2782
2783
|
export {
|
|
@@ -2789,33 +2790,33 @@ export {
|
|
|
2789
2790
|
M as AtomLink,
|
|
2790
2791
|
st as AtomRadioButton,
|
|
2791
2792
|
ut as AtomSelect,
|
|
2792
|
-
|
|
2793
|
+
br as AtomSelectMultiple,
|
|
2793
2794
|
kt as AtomSlider,
|
|
2794
2795
|
Nt as AtomTextField,
|
|
2795
2796
|
Lt as AtomTextarea,
|
|
2796
2797
|
ee as AtomVideo,
|
|
2797
2798
|
Ea as BlockAccordion,
|
|
2798
2799
|
Ya as BlockCardDisplay,
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2800
|
+
to as BlockColumnGrid,
|
|
2801
|
+
uo as BlockFacts,
|
|
2802
|
+
bo as BlockFeatures,
|
|
2803
|
+
qo as BlockFormScript,
|
|
2804
|
+
Fs as BlockFrontPageHero,
|
|
2805
|
+
Do as BlockHeadline,
|
|
2806
|
+
Ko as BlockHero,
|
|
2807
|
+
Qo as BlockImage,
|
|
2808
|
+
al as BlockImageGallery,
|
|
2809
|
+
ul as BlockLogoWall,
|
|
2810
|
+
vl as BlockMicroStories,
|
|
2811
|
+
qr as BlockPalletJack,
|
|
2812
|
+
$l as BlockPolicy,
|
|
2813
|
+
Ll as BlockProductHero,
|
|
2814
|
+
Vl as BlockPromo,
|
|
2815
|
+
Gl as BlockQuote,
|
|
2816
|
+
Zl as BlockRichText,
|
|
2817
|
+
ls as BlockRichTextColumns,
|
|
2818
|
+
ps as BlockTimeline,
|
|
2819
|
+
ys as BlockVimeo,
|
|
2819
2820
|
oa as MoleculeAddress,
|
|
2820
2821
|
na as MoleculeBulletList,
|
|
2821
2822
|
ha as MoleculeCard,
|
|
@@ -2823,12 +2824,12 @@ export {
|
|
|
2823
2824
|
Ia as MoleculeEventCard,
|
|
2824
2825
|
ve as MoleculeModal,
|
|
2825
2826
|
Da as MoleculeTextCard,
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2827
|
+
Es as Organism404,
|
|
2828
|
+
Ws as OrganismFilter,
|
|
2829
|
+
wi as OrganismFooter,
|
|
2830
|
+
er as OrganismHeader,
|
|
2831
|
+
rr as OrganismLanguageSwitcher,
|
|
2832
|
+
ur as OrganismPagination,
|
|
2833
|
+
mr as OrganismSearch,
|
|
2834
|
+
Ar as default
|
|
2834
2835
|
};
|