@mirweb/mir-web-components 1.7.14 → 1.7.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as g, computed as A, openBlock as s, createElementBlock as i, normalizeClass as p, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as U, Fragment as T, renderList as V, vShow as Z, normalizeProps as
|
|
1
|
+
import { defineComponent as g, computed as A, openBlock as s, createElementBlock as i, normalizeClass as p, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as U, Fragment as T, renderList as V, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as M, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as L, createCommentVNode as _, watchEffect as pe, withKeys as Ce, useSlots as qe, normalizeStyle as x, isRef as ce, unref as I, onMounted as me, watch as Q, onUnmounted as Ae } from "vue";
|
|
2
2
|
const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -15,17 +15,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
15
15
|
next: "next",
|
|
16
16
|
previous: "previous"
|
|
17
17
|
}, r = e, o = A(() => a[r.variant]);
|
|
18
|
-
return (l,
|
|
18
|
+
return (l, u) => (s(), i("button", {
|
|
19
19
|
class: p(["button", "button--" + o.value]),
|
|
20
20
|
"aria-label": l.ariaLabel
|
|
21
21
|
}, d(o.value === "close" ? "" : l.buttonText), 11, Le));
|
|
22
22
|
}
|
|
23
|
-
}),
|
|
23
|
+
}), v = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
25
|
for (const [o, l] of a)
|
|
26
26
|
r[o] = l;
|
|
27
27
|
return r;
|
|
28
|
-
}, se = /* @__PURE__ */
|
|
28
|
+
}, se = /* @__PURE__ */ v(De, [["__scopeId", "data-v-f61b579c"]]), Te = (e) => (H("data-v-0c4c6d8e"), e = e(), R(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ Te(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
|
|
29
29
|
__name: "checkbox",
|
|
30
30
|
props: {
|
|
31
31
|
name: { default: "checkbox" },
|
|
@@ -38,10 +38,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
38
38
|
emits: ["input"],
|
|
39
39
|
setup(e, { emit: a }) {
|
|
40
40
|
const r = a, o = (l) => {
|
|
41
|
-
const
|
|
42
|
-
r("input",
|
|
41
|
+
const u = l.target;
|
|
42
|
+
r("input", u.checked);
|
|
43
43
|
};
|
|
44
|
-
return (l,
|
|
44
|
+
return (l, u) => (s(), i("div", {
|
|
45
45
|
class: p(["checkbox__wrapper", l.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
47
|
t("input", {
|
|
@@ -64,7 +64,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
64
64
|
], 10, Pe)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
67
|
-
}),
|
|
67
|
+
}), fe = /* @__PURE__ */ v(Me, [["__scopeId", "data-v-0c4c6d8e"]]), Oe = (e) => (H("data-v-08813346"), e = e(), R(), e), ze = ["aria-label"], He = /* @__PURE__ */ Oe(() => /* @__PURE__ */ t("img", {
|
|
68
68
|
src: "https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",
|
|
69
69
|
alt: "close",
|
|
70
70
|
class: "close-icon"
|
|
@@ -78,7 +78,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
78
78
|
const a = e, r = A(() => `Chip: ${a.text}`);
|
|
79
79
|
return (o, l) => (s(), i("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick: l[0] || (l[0] = (
|
|
81
|
+
onClick: l[0] || (l[0] = (u) => o.$emit("remove-chip"))
|
|
82
82
|
}, [
|
|
83
83
|
t("span", {
|
|
84
84
|
class: "chip",
|
|
@@ -86,10 +86,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
86
86
|
}, [
|
|
87
87
|
J(d(o.text) + " ", 1),
|
|
88
88
|
He
|
|
89
|
-
], 8,
|
|
89
|
+
], 8, ze)
|
|
90
90
|
]));
|
|
91
91
|
}
|
|
92
|
-
}), Ne = /* @__PURE__ */
|
|
92
|
+
}), Ne = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-08813346"]]), Ee = ["value"], je = ["id"], Ke = { class: "listbox__dropdown" }, Ue = ["id", "aria-labelledby", "aria-disabled"], Ge = ["aria-labelledby", "aria-activedescendant"], Je = ["aria-selected", "data-value"], We = /* @__PURE__ */ g({
|
|
93
93
|
__name: "dropdown",
|
|
94
94
|
props: {
|
|
95
95
|
modelValue: {},
|
|
@@ -107,7 +107,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
107
107
|
const r = {
|
|
108
108
|
primary: "dropdown-dark-bg-primary",
|
|
109
109
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
110
|
-
}, o = e, l = A(() => r[o.variant]),
|
|
110
|
+
}, o = e, l = A(() => r[o.variant]), u = C(null), h = C(null), n = C([]), b = C(0), f = C(""), k = C(!0), w = C(0), te = a, ie = A(() => {
|
|
111
111
|
const m = o.options.find(
|
|
112
112
|
(B) => B.value === o.modelValue
|
|
113
113
|
);
|
|
@@ -119,7 +119,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
119
119
|
function ne(m) {
|
|
120
120
|
var q;
|
|
121
121
|
const B = m.target;
|
|
122
|
-
B.getAttribute("role") === "option" && (W(B), oe(), (q =
|
|
122
|
+
B.getAttribute("role") === "option" && (W(B), oe(), (q = u.value) == null || q.focus());
|
|
123
123
|
}
|
|
124
124
|
function G(m) {
|
|
125
125
|
var q;
|
|
@@ -131,8 +131,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
131
131
|
const D = o.options.findIndex(
|
|
132
132
|
(Y) => Y.value === o.modelValue
|
|
133
133
|
);
|
|
134
|
-
let N = D ?
|
|
135
|
-
B === "ArrowUp" ? D - 1 >= 0 && (N =
|
|
134
|
+
let N = D ? n.value[D] : n.value[0];
|
|
135
|
+
B === "ArrowUp" ? D - 1 >= 0 && (N = n.value[D - 1]) : D + 1 <= o.options.length && (N = n.value[D + 1]), N && W(N);
|
|
136
136
|
break;
|
|
137
137
|
}
|
|
138
138
|
case "Home":
|
|
@@ -145,7 +145,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
145
145
|
break;
|
|
146
146
|
case "Enter":
|
|
147
147
|
case "Escape":
|
|
148
|
-
m.preventDefault(), oe(), (q =
|
|
148
|
+
m.preventDefault(), oe(), (q = u.value) == null || q.focus();
|
|
149
149
|
break;
|
|
150
150
|
default: {
|
|
151
151
|
const D = j(B);
|
|
@@ -168,28 +168,28 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
168
168
|
}
|
|
169
169
|
function $() {
|
|
170
170
|
b.value && (clearTimeout(b.value), b.value = 0), b.value = setTimeout(() => {
|
|
171
|
-
|
|
171
|
+
f.value = "", b.value = 0;
|
|
172
172
|
}, 500);
|
|
173
173
|
}
|
|
174
174
|
function j(m) {
|
|
175
175
|
let B = "";
|
|
176
|
-
(
|
|
176
|
+
(f.value === "" || B !== m) && (w.value = o.options.findIndex(
|
|
177
177
|
(D) => D.value === o.modelValue
|
|
178
|
-
)),
|
|
178
|
+
)), f.value = B === m ? m : f.value + m, B = m, $();
|
|
179
179
|
let q = K(
|
|
180
180
|
w.value + 1,
|
|
181
181
|
o.options.length
|
|
182
182
|
);
|
|
183
|
-
return !q &&
|
|
183
|
+
return !q && f.value.length === 1 && (q = K(0, w.value)), w.value = (w.value + 1) % o.options.length, q;
|
|
184
184
|
}
|
|
185
185
|
function K(m, B) {
|
|
186
186
|
for (let q = m; q < B; q++)
|
|
187
|
-
if (o.options[q].label && o.options[q].label.toUpperCase().indexOf(
|
|
188
|
-
return
|
|
187
|
+
if (o.options[q].label && o.options[q].label.toUpperCase().indexOf(f.value.toUpperCase()) === 0)
|
|
188
|
+
return n.value[q];
|
|
189
189
|
return null;
|
|
190
190
|
}
|
|
191
191
|
function E() {
|
|
192
|
-
W(
|
|
192
|
+
W(n.value[0]);
|
|
193
193
|
}
|
|
194
194
|
function W(m) {
|
|
195
195
|
var q, D;
|
|
@@ -197,29 +197,29 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
197
197
|
if (o.modelValue) {
|
|
198
198
|
const N = o.options.findIndex(
|
|
199
199
|
(Be) => Be.value === o.modelValue
|
|
200
|
-
), Y =
|
|
200
|
+
), Y = n.value[N];
|
|
201
201
|
de(Y);
|
|
202
202
|
}
|
|
203
|
-
if (m.setAttribute("aria-selected", "true"), (q =
|
|
203
|
+
if (m.setAttribute("aria-selected", "true"), (q = h.value) == null || q.setAttribute(
|
|
204
204
|
"aria-activedescendant",
|
|
205
205
|
B || ""
|
|
206
|
-
), re(B || ""),
|
|
207
|
-
const N =
|
|
208
|
-
Y > N ?
|
|
206
|
+
), re(B || ""), h.value && h.value.scrollHeight > h.value.clientHeight) {
|
|
207
|
+
const N = h.value.clientHeight + h.value.scrollTop, Y = m.offsetTop + m.offsetHeight;
|
|
208
|
+
Y > N ? h.value.scrollTop = Y - ((D = h.value) == null ? void 0 : D.clientHeight) : m.offsetTop < h.value.scrollTop && (h.value.scrollTop = m.offsetTop);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
function $e() {
|
|
212
212
|
var B;
|
|
213
|
-
const m = (B =
|
|
213
|
+
const m = (B = n.value) == null ? void 0 : B[o.options.length - 1];
|
|
214
214
|
W(m);
|
|
215
215
|
}
|
|
216
216
|
function oe() {
|
|
217
217
|
var m;
|
|
218
|
-
k.value = !0, (m =
|
|
218
|
+
k.value = !0, (m = u.value) == null || m.removeAttribute("aria-expanded");
|
|
219
219
|
}
|
|
220
220
|
function ue() {
|
|
221
221
|
var m, B;
|
|
222
|
-
k.value = !1, (m =
|
|
222
|
+
k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B = h.value) == null || B.focus();
|
|
223
223
|
}
|
|
224
224
|
function we() {
|
|
225
225
|
o.disabled || (k.value ? ue() : oe());
|
|
@@ -243,7 +243,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
243
243
|
t("button", {
|
|
244
244
|
id: `${m.name}-button-label`,
|
|
245
245
|
ref_key: "listboxButton",
|
|
246
|
-
ref:
|
|
246
|
+
ref: u,
|
|
247
247
|
"aria-labelledby": `${m.name}-label ${m.name}-button-label`,
|
|
248
248
|
type: "button",
|
|
249
249
|
"aria-haspopup": "listbox",
|
|
@@ -254,7 +254,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
254
254
|
}, d(m.modelValue ? ie.value : m.placeholder), 43, Ue),
|
|
255
255
|
U(t("ul", {
|
|
256
256
|
ref_key: "listboxNode",
|
|
257
|
-
ref:
|
|
257
|
+
ref: h,
|
|
258
258
|
"aria-labelledby": `${m.name}-label`,
|
|
259
259
|
"aria-activedescendant": m.modelValue,
|
|
260
260
|
tabindex: "0",
|
|
@@ -267,7 +267,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
267
267
|
key: `${m.name}-option-${N}`,
|
|
268
268
|
ref_for: !0,
|
|
269
269
|
ref_key: "listboxOptions",
|
|
270
|
-
ref:
|
|
270
|
+
ref: n,
|
|
271
271
|
"aria-selected": D.value === m.modelValue,
|
|
272
272
|
"data-value": D.value,
|
|
273
273
|
class: "listbox__option",
|
|
@@ -282,7 +282,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
282
282
|
], 8, Ee);
|
|
283
283
|
};
|
|
284
284
|
}
|
|
285
|
-
}), Ye = /* @__PURE__ */
|
|
285
|
+
}), Ye = /* @__PURE__ */ v(We, [["__scopeId", "data-v-a17afd8c"]]), Qe = { class: "image__wrapper" }, Ze = /* @__PURE__ */ g({
|
|
286
286
|
__name: "image",
|
|
287
287
|
props: {
|
|
288
288
|
src: { default: void 0 },
|
|
@@ -295,10 +295,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
295
295
|
},
|
|
296
296
|
setup(e) {
|
|
297
297
|
return (a, r) => (s(), i("div", Qe, [
|
|
298
|
-
c(a.$slots, "default", z(
|
|
298
|
+
c(a.$slots, "default", O(z(a.$attrs)))
|
|
299
299
|
]));
|
|
300
300
|
}
|
|
301
|
-
}), F = /* @__PURE__ */
|
|
301
|
+
}), F = /* @__PURE__ */ v(Ze, [["__scopeId", "data-v-e10217bd"]]), Xe = { class: "label__wrapper" }, xe = ["aria-label", "label-dark"], et = /* @__PURE__ */ g({
|
|
302
302
|
__name: "label",
|
|
303
303
|
props: {
|
|
304
304
|
text: {},
|
|
@@ -314,7 +314,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
314
314
|
}, d(o.text), 11, xe)
|
|
315
315
|
]));
|
|
316
316
|
}
|
|
317
|
-
}), X = /* @__PURE__ */
|
|
317
|
+
}), X = /* @__PURE__ */ v(et, [["__scopeId", "data-v-7d9d3a8a"]]), tt = { class: "link__wrapper" }, P = /* @__PURE__ */ g({
|
|
318
318
|
__name: "link",
|
|
319
319
|
props: {
|
|
320
320
|
linkType: { default: "regular" },
|
|
@@ -336,20 +336,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
336
336
|
hover: "underline-hover",
|
|
337
337
|
true: "add-underline",
|
|
338
338
|
false: "remove-underline"
|
|
339
|
-
}, o = e, l = A(() => a[o.linkType]),
|
|
340
|
-
const { ...
|
|
341
|
-
return
|
|
339
|
+
}, o = e, l = A(() => a[o.linkType]), u = A(() => r[o.underline]), h = A(() => {
|
|
340
|
+
const { ...n } = Se(o);
|
|
341
|
+
return n;
|
|
342
342
|
});
|
|
343
|
-
return (
|
|
344
|
-
t("div", M(
|
|
343
|
+
return (n, b) => (s(), i("div", tt, [
|
|
344
|
+
t("div", M(h.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
346
|
l.value,
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
347
|
+
n.disabled ? "disabled" : "",
|
|
348
|
+
u.value,
|
|
349
|
+
n.arrow ? "link-arrow" : ""
|
|
350
350
|
]]
|
|
351
351
|
}), [
|
|
352
|
-
c(
|
|
352
|
+
c(n.$slots, "default")
|
|
353
353
|
], 16)
|
|
354
354
|
]));
|
|
355
355
|
}
|
|
@@ -366,10 +366,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
366
366
|
emits: ["input"],
|
|
367
367
|
setup(e, { emit: a }) {
|
|
368
368
|
const r = a, o = (l) => {
|
|
369
|
-
const
|
|
370
|
-
r("input",
|
|
369
|
+
const u = l.target;
|
|
370
|
+
r("input", u.checked);
|
|
371
371
|
};
|
|
372
|
-
return (l,
|
|
372
|
+
return (l, u) => (s(), i("div", {
|
|
373
373
|
class: p(["radio__wrapper", l.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
375
|
t("input", {
|
|
@@ -392,7 +392,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
392
392
|
], 10, st)
|
|
393
393
|
], 2));
|
|
394
394
|
}
|
|
395
|
-
}), rt = /* @__PURE__ */
|
|
395
|
+
}), rt = /* @__PURE__ */ v(it, [["__scopeId", "data-v-60c6ff7e"]]), nt = { class: "select__wrapper" }, dt = ["for"], ct = ["id", "disabled", "name", "value"], ut = ["value"], _t = /* @__PURE__ */ g({
|
|
396
396
|
__name: "select",
|
|
397
397
|
props: {
|
|
398
398
|
id: {},
|
|
@@ -427,7 +427,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
427
427
|
], 42, ct)
|
|
428
428
|
]));
|
|
429
429
|
}
|
|
430
|
-
}), ht = /* @__PURE__ */
|
|
430
|
+
}), ht = /* @__PURE__ */ v(_t, [["__scopeId", "data-v-d5c46463"]]), pt = { class: "modal__wrapper" }, mt = /* @__PURE__ */ g({
|
|
431
431
|
__name: "modal",
|
|
432
432
|
props: {
|
|
433
433
|
show: { type: Boolean, default: !1 },
|
|
@@ -438,43 +438,43 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
438
438
|
const r = e, o = a, l = () => {
|
|
439
439
|
o("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (
|
|
441
|
+
return (u, h) => (s(), i("div", pt, [
|
|
442
442
|
S(Ie, {
|
|
443
443
|
duration: 300,
|
|
444
444
|
name: "nested"
|
|
445
445
|
}, {
|
|
446
446
|
default: y(() => [
|
|
447
447
|
U(t("div", {
|
|
448
|
-
class: p(["overlay",
|
|
448
|
+
class: p(["overlay", u.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
451
451
|
onClick: l
|
|
452
452
|
}, [
|
|
453
453
|
t("div", {
|
|
454
454
|
id: "modal",
|
|
455
|
-
class: p([
|
|
456
|
-
onClick:
|
|
455
|
+
class: p([u.searchBar ? "search" : ""]),
|
|
456
|
+
onClick: h[0] || (h[0] = he(() => {
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
459
|
t("div", null, [
|
|
460
|
-
|
|
460
|
+
u.searchBar ? _("", !0) : (s(), L(se, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
464
|
onClick: l
|
|
465
465
|
}))
|
|
466
466
|
]),
|
|
467
|
-
c(
|
|
467
|
+
c(u.$slots, "default", {}, void 0, !0)
|
|
468
468
|
], 2)
|
|
469
469
|
], 2), [
|
|
470
|
-
[Z,
|
|
470
|
+
[Z, u.show]
|
|
471
471
|
])
|
|
472
472
|
]),
|
|
473
473
|
_: 3
|
|
474
474
|
})
|
|
475
475
|
]));
|
|
476
476
|
}
|
|
477
|
-
}),
|
|
477
|
+
}), ve = /* @__PURE__ */ v(mt, [["__scopeId", "data-v-80f0fb08"]]), ft = { class: "slider__wrapper" }, vt = { class: "slider__label" }, gt = ["for"], bt = ["aria-label"], yt = { class: "slider__content" }, kt = ["id", "name", "value", "min", "step", "max"], $t = { class: "modal-information" }, wt = /* @__PURE__ */ g({
|
|
478
478
|
__name: "slider",
|
|
479
479
|
props: {
|
|
480
480
|
label: {},
|
|
@@ -490,73 +490,73 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
490
490
|
},
|
|
491
491
|
emits: ["update:modelValue"],
|
|
492
492
|
setup(e, { emit: a }) {
|
|
493
|
-
const r = e, o = a, l = C(r.modelValue),
|
|
493
|
+
const r = e, o = a, l = C(r.modelValue), u = C(), h = C(!1), n = (f, k, w) => (f - k) / (w - k) * 100, b = (f) => {
|
|
494
494
|
var k;
|
|
495
|
-
(k =
|
|
495
|
+
(k = u.value) == null || k.style.setProperty("--ProgressPercent", `${f}%`);
|
|
496
496
|
};
|
|
497
497
|
return pe(() => {
|
|
498
|
-
if (
|
|
498
|
+
if (u.value) {
|
|
499
499
|
o("update:modelValue", l.value);
|
|
500
|
-
const
|
|
501
|
-
let k = (50 -
|
|
502
|
-
b(
|
|
500
|
+
const f = n(l.value, r.min, r.max);
|
|
501
|
+
let k = (50 - f) / 100;
|
|
502
|
+
b(f + k);
|
|
503
503
|
}
|
|
504
|
-
}), (
|
|
505
|
-
t("div",
|
|
506
|
-
t("div",
|
|
504
|
+
}), (f, k) => (s(), i("div", null, [
|
|
505
|
+
t("div", ft, [
|
|
506
|
+
t("div", vt, [
|
|
507
507
|
t("label", {
|
|
508
|
-
for:
|
|
509
|
-
class: p([
|
|
510
|
-
}, d(
|
|
511
|
-
|
|
508
|
+
for: f.id,
|
|
509
|
+
class: p([f.variant, ""])
|
|
510
|
+
}, d(f.label), 11, gt),
|
|
511
|
+
f.information ? (s(), i("i", {
|
|
512
512
|
key: 0,
|
|
513
513
|
role: "button",
|
|
514
|
-
class: p([
|
|
515
|
-
"aria-label":
|
|
514
|
+
class: p([f.variant, "slider__information"]),
|
|
515
|
+
"aria-label": f.informationLabel,
|
|
516
516
|
tabindex: "0",
|
|
517
517
|
"aria-haspopup": "dialog",
|
|
518
|
-
onClick: k[0] || (k[0] = (w) =>
|
|
519
|
-
onKeyup: k[1] || (k[1] = Ce((w) =>
|
|
520
|
-
}, null, 42, bt)) :
|
|
518
|
+
onClick: k[0] || (k[0] = (w) => h.value = !h.value),
|
|
519
|
+
onKeyup: k[1] || (k[1] = Ce((w) => h.value = !h.value, ["enter"]))
|
|
520
|
+
}, null, 42, bt)) : _("", !0)
|
|
521
521
|
]),
|
|
522
522
|
t("div", yt, [
|
|
523
523
|
t("span", {
|
|
524
|
-
class: p([
|
|
525
|
-
}, d(
|
|
524
|
+
class: p([f.variant, "slider__minmax"])
|
|
525
|
+
}, d(f.min), 3),
|
|
526
526
|
t("input", {
|
|
527
|
-
id:
|
|
527
|
+
id: f.id,
|
|
528
528
|
ref_key: "slider",
|
|
529
|
-
ref:
|
|
529
|
+
ref: u,
|
|
530
530
|
type: "range",
|
|
531
|
-
name:
|
|
532
|
-
value:
|
|
533
|
-
min:
|
|
534
|
-
step:
|
|
535
|
-
max:
|
|
536
|
-
class: p(
|
|
531
|
+
name: f.name,
|
|
532
|
+
value: f.modelValue,
|
|
533
|
+
min: f.min,
|
|
534
|
+
step: f.step,
|
|
535
|
+
max: f.max,
|
|
536
|
+
class: p(f.variant),
|
|
537
537
|
onInput: k[2] || (k[2] = ({ target: w }) => l.value = parseFloat(w.value))
|
|
538
538
|
}, null, 42, kt),
|
|
539
539
|
t("span", {
|
|
540
|
-
class: p([
|
|
541
|
-
}, d(
|
|
540
|
+
class: p([f.variant, "slider__minmax"])
|
|
541
|
+
}, d(f.max), 3)
|
|
542
542
|
]),
|
|
543
543
|
t("span", {
|
|
544
|
-
class: p([
|
|
545
|
-
}, d(
|
|
544
|
+
class: p([f.variant, "slider__value"])
|
|
545
|
+
}, d(f.modelValue), 3)
|
|
546
546
|
]),
|
|
547
|
-
|
|
547
|
+
f.information ? (s(), L(ve, {
|
|
548
548
|
key: 0,
|
|
549
|
-
show:
|
|
550
|
-
"onUpdate:show": k[3] || (k[3] = (w) =>
|
|
549
|
+
show: h.value,
|
|
550
|
+
"onUpdate:show": k[3] || (k[3] = (w) => h.value = w)
|
|
551
551
|
}, {
|
|
552
552
|
default: y(() => [
|
|
553
|
-
t("p", $t, d(
|
|
553
|
+
t("p", $t, d(f.information), 1)
|
|
554
554
|
]),
|
|
555
555
|
_: 1
|
|
556
|
-
}, 8, ["show"])) :
|
|
556
|
+
}, 8, ["show"])) : _("", !0)
|
|
557
557
|
]));
|
|
558
558
|
}
|
|
559
|
-
}), Bt = /* @__PURE__ */
|
|
559
|
+
}), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { id: "textarea-wrapper" }, It = ["for"], Ct = ["id"], qt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], At = { class: "textarea-info" }, Lt = { key: 0 }, Dt = /* @__PURE__ */ g({
|
|
560
560
|
__name: "textarea",
|
|
561
561
|
props: {
|
|
562
562
|
id: { default: "" },
|
|
@@ -596,7 +596,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
596
596
|
], 8, Ct),
|
|
597
597
|
t("div", At, [
|
|
598
598
|
t("div", null, [
|
|
599
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (s(), i("p", Lt, " Too many characters. Please make it shorter ")) :
|
|
599
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (s(), i("p", Lt, " Too many characters. Please make it shorter ")) : _("", !0)
|
|
600
600
|
]),
|
|
601
601
|
t("p", {
|
|
602
602
|
class: p(
|
|
@@ -606,7 +606,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
606
606
|
])
|
|
607
607
|
]));
|
|
608
608
|
}
|
|
609
|
-
}), Tt = /* @__PURE__ */
|
|
609
|
+
}), Tt = /* @__PURE__ */ v(Dt, [["__scopeId", "data-v-220a973c"]]), Vt = { class: "text-field__wrapper" }, Pt = ["for"], Ft = { key: 0 }, Mt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Ot = ["aria-expanded"], zt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Ht = {
|
|
610
610
|
key: 2,
|
|
611
611
|
class: "search"
|
|
612
612
|
}, Rt = {
|
|
@@ -642,62 +642,62 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
642
642
|
tel: "tel",
|
|
643
643
|
url: "url",
|
|
644
644
|
search: "search"
|
|
645
|
-
}, r = e, o = A(() => a[r.type]), l = C(!0),
|
|
645
|
+
}, r = e, o = A(() => a[r.type]), l = C(!0), u = A(
|
|
646
646
|
() => l.value ? "showPassword" : "hidePassword"
|
|
647
|
-
),
|
|
647
|
+
), h = A(
|
|
648
648
|
() => l.value ? "password" : "text"
|
|
649
649
|
);
|
|
650
|
-
return (
|
|
650
|
+
return (n, b) => (s(), i("div", Vt, [
|
|
651
651
|
t("label", {
|
|
652
|
-
for:
|
|
652
|
+
for: n.id,
|
|
653
653
|
class: p([
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
654
|
+
n.required ? "required" : "",
|
|
655
|
+
n.disabled ? "disabled" : "",
|
|
656
|
+
n.search ? "search" : ""
|
|
657
657
|
])
|
|
658
|
-
}, d(
|
|
658
|
+
}, d(n.label), 11, Pt),
|
|
659
659
|
o.value === "password" ? (s(), i("div", Ft, [
|
|
660
660
|
t("input", {
|
|
661
|
-
id:
|
|
661
|
+
id: n.id,
|
|
662
662
|
ref: "passwordField",
|
|
663
|
-
type:
|
|
664
|
-
value:
|
|
665
|
-
placeholder:
|
|
666
|
-
required:
|
|
667
|
-
disabled:
|
|
668
|
-
name:
|
|
669
|
-
onInput: b[0] || (b[0] = (
|
|
663
|
+
type: h.value,
|
|
664
|
+
value: n.modelValue,
|
|
665
|
+
placeholder: n.placeholder,
|
|
666
|
+
required: n.required,
|
|
667
|
+
disabled: n.disabled,
|
|
668
|
+
name: n.fieldName,
|
|
669
|
+
onInput: b[0] || (b[0] = (f) => n.$emit("update:modelValue", f.target.value))
|
|
670
670
|
}, null, 40, Mt),
|
|
671
671
|
t("i", {
|
|
672
672
|
role: "button",
|
|
673
|
-
class: p([
|
|
673
|
+
class: p([u.value]),
|
|
674
674
|
"aria-controls": "password",
|
|
675
675
|
"aria-expanded": !l.value,
|
|
676
|
-
onClick: b[1] || (b[1] = (
|
|
677
|
-
}, null, 10,
|
|
676
|
+
onClick: b[1] || (b[1] = (f) => l.value = !l.value)
|
|
677
|
+
}, null, 10, Ot)
|
|
678
678
|
])) : (s(), i("input", {
|
|
679
679
|
key: 1,
|
|
680
|
-
id:
|
|
680
|
+
id: n.id,
|
|
681
681
|
ref: "textField",
|
|
682
682
|
type: o.value,
|
|
683
|
-
value:
|
|
684
|
-
placeholder:
|
|
685
|
-
required:
|
|
683
|
+
value: n.modelValue,
|
|
684
|
+
placeholder: n.placeholder,
|
|
685
|
+
required: n.required,
|
|
686
686
|
class: p([
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
687
|
+
n.invalid ? "invalid" : "",
|
|
688
|
+
n.valid ? "valid" : "",
|
|
689
|
+
n.search ? "search" : ""
|
|
690
690
|
]),
|
|
691
|
-
disabled:
|
|
692
|
-
name:
|
|
693
|
-
onInput: b[2] || (b[2] = (
|
|
694
|
-
}, null, 42,
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
691
|
+
disabled: n.disabled,
|
|
692
|
+
name: n.fieldName,
|
|
693
|
+
onInput: b[2] || (b[2] = (f) => n.$emit("update:modelValue", f.target.value))
|
|
694
|
+
}, null, 42, zt)),
|
|
695
|
+
n.search ? (s(), i("i", Ht)) : _("", !0),
|
|
696
|
+
n.errorMessage ? (s(), i("strong", Rt, d(n.errorMessage), 1)) : _("", !0),
|
|
697
|
+
n.helperText ? (s(), i("span", Nt, d(n.helperText), 1)) : _("", !0)
|
|
698
698
|
]));
|
|
699
699
|
}
|
|
700
|
-
}), jt = /* @__PURE__ */
|
|
700
|
+
}), jt = /* @__PURE__ */ v(Et, [["__scopeId", "data-v-414b9435"]]), Kt = { class: "video__wrapper" }, Ut = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Gt = ["src", "aria-label", "title", "width", "height"], Jt = /* @__PURE__ */ g({
|
|
701
701
|
__name: "video",
|
|
702
702
|
props: {
|
|
703
703
|
play: { type: Boolean, default: !1 },
|
|
@@ -722,36 +722,36 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
722
722
|
resetVideo: () => {
|
|
723
723
|
o.value && (o.value.currentTime = 0, o.value.play());
|
|
724
724
|
}
|
|
725
|
-
}), (
|
|
726
|
-
|
|
725
|
+
}), (u, h) => (s(), i("div", Kt, [
|
|
726
|
+
u.localVideo ? (s(), i("video", {
|
|
727
727
|
key: 0,
|
|
728
728
|
ref_key: "videoRef",
|
|
729
729
|
ref: o,
|
|
730
|
-
"aria-label":
|
|
731
|
-
controls:
|
|
732
|
-
poster:
|
|
733
|
-
width:
|
|
734
|
-
height:
|
|
735
|
-
autoplay:
|
|
736
|
-
loop:
|
|
737
|
-
muted:
|
|
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:
|
|
740
|
+
src: u.src
|
|
741
741
|
}, null, 8, Ut)) : (s(), i("iframe", {
|
|
742
742
|
key: 1,
|
|
743
|
-
src:
|
|
744
|
-
"aria-label":
|
|
745
|
-
title:
|
|
746
|
-
width:
|
|
747
|
-
height:
|
|
743
|
+
src: u.src,
|
|
744
|
+
"aria-label": u.ariaLabel,
|
|
745
|
+
title: u.title,
|
|
746
|
+
width: u.width,
|
|
747
|
+
height: u.height,
|
|
748
748
|
frameborder: "0",
|
|
749
749
|
allow: "autoplay; fullscreen",
|
|
750
750
|
allowfullscreen: ""
|
|
751
751
|
}, null, 8, Gt))
|
|
752
752
|
]));
|
|
753
753
|
}
|
|
754
|
-
}), ee = /* @__PURE__ */
|
|
754
|
+
}), ee = /* @__PURE__ */ v(Jt, [["__scopeId", "data-v-c6a0feb6"]]), Wt = { class: "address__wrapper" }, Yt = { class: "address__content" }, Qt = { class: "address__flag" }, Zt = { class: "address__address" }, Xt = { class: "address__name" }, xt = { key: 0 }, ea = { class: "address__contact" }, ta = ["href"], aa = ["href"], oa = ["href"], sa = /* @__PURE__ */ g({
|
|
755
755
|
__name: "address",
|
|
756
756
|
props: {
|
|
757
757
|
name: {},
|
|
@@ -774,7 +774,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
774
774
|
t("p", null, d(a.company), 1),
|
|
775
775
|
t("p", null, d(a.addressLine1), 1),
|
|
776
776
|
t("p", null, d(a.addressLine2), 1),
|
|
777
|
-
a.addressLine3 ? (s(), i("p", xt, d(a.addressLine3), 1)) :
|
|
777
|
+
a.addressLine3 ? (s(), i("p", xt, d(a.addressLine3), 1)) : _("", !0)
|
|
778
778
|
]),
|
|
779
779
|
t("div", ea, [
|
|
780
780
|
a.website ? (s(), L(P, {
|
|
@@ -789,7 +789,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
789
789
|
}, d(a.website), 9, ta)
|
|
790
790
|
]),
|
|
791
791
|
_: 1
|
|
792
|
-
})) :
|
|
792
|
+
})) : _("", !0),
|
|
793
793
|
(s(!0), i(T, null, V(a.phoneNumbers, (o) => (s(), L(P, {
|
|
794
794
|
key: o,
|
|
795
795
|
underline: "false",
|
|
@@ -811,7 +811,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
811
811
|
])
|
|
812
812
|
]));
|
|
813
813
|
}
|
|
814
|
-
}), la = /* @__PURE__ */
|
|
814
|
+
}), la = /* @__PURE__ */ v(sa, [["__scopeId", "data-v-e1c72a18"]]), ia = (e) => (H("data-v-a44fd57d"), e = e(), R(), e), ra = { class: "bullet-list__wrapper" }, na = /* @__PURE__ */ ia(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), da = /* @__PURE__ */ g({
|
|
815
815
|
__name: "bullet-list",
|
|
816
816
|
props: {
|
|
817
817
|
list: {
|
|
@@ -844,7 +844,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
844
844
|
], 2)
|
|
845
845
|
]));
|
|
846
846
|
}
|
|
847
|
-
}), ca = /* @__PURE__ */
|
|
847
|
+
}), ca = /* @__PURE__ */ v(da, [["__scopeId", "data-v-a44fd57d"]]), ua = { class: "card__wrapper" }, _a = { key: 2 }, ha = { key: 5 }, pa = /* @__PURE__ */ g({
|
|
848
848
|
__name: "card",
|
|
849
849
|
props: {
|
|
850
850
|
variant: { default: "product" },
|
|
@@ -889,19 +889,19 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
889
889
|
width: "596",
|
|
890
890
|
height: "335"
|
|
891
891
|
}
|
|
892
|
-
}, l = e,
|
|
893
|
-
return (n,
|
|
892
|
+
}, l = e, u = A(() => o[l.size]), h = A(() => l.variant === "article" || l.variant === "product" ? `card--${l.size}-${l.variant}` : `card--${l.variant}`);
|
|
893
|
+
return (n, b) => (s(), i("div", ua, [
|
|
894
894
|
t("div", {
|
|
895
895
|
class: p(["card", [
|
|
896
896
|
n.theme === "dark" ? "card--dark" : "card--light",
|
|
897
897
|
n.orientation === "vertical" ? "vertical" : "horizontal",
|
|
898
|
-
|
|
899
|
-
|
|
898
|
+
u.value.class,
|
|
899
|
+
h.value,
|
|
900
900
|
n.variant === "product" ? "card--product" : "card--article"
|
|
901
901
|
]]),
|
|
902
902
|
style: x([n.variant === "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
903
|
-
onMouseover:
|
|
904
|
-
onMouseout:
|
|
903
|
+
onMouseover: b[0] || (b[0] = (f) => ce(r) ? r.value = !0 : r = !0),
|
|
904
|
+
onMouseout: b[1] || (b[1] = (f) => ce(r) ? r.value = !1 : r = !1)
|
|
905
905
|
}, [
|
|
906
906
|
n.mediaType === "image" ? (s(), L(F, { key: 0 }, {
|
|
907
907
|
default: y(() => [
|
|
@@ -926,8 +926,8 @@ const Le = ["aria-label"], De = /* @__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
|
|
@@ -935,7 +935,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
935
935
|
], 2)),
|
|
936
936
|
I(a)["card-label"] ? (s(), i("div", _a, [
|
|
937
937
|
c(n.$slots, "card-label")
|
|
938
|
-
])) :
|
|
938
|
+
])) : _("", !0),
|
|
939
939
|
n.variant === "product" ? (s(), i("div", {
|
|
940
940
|
key: 3,
|
|
941
941
|
class: p([
|
|
@@ -950,11 +950,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
950
950
|
n.theme === "dark" ? "regular-dark" : "regular-dark-blue"
|
|
951
951
|
])
|
|
952
952
|
}, d(n.headline), 3)),
|
|
953
|
-
n.variant === "product" ? (s(), i("p", ha, d(n.paragraph), 1)) :
|
|
953
|
+
n.variant === "product" ? (s(), i("p", ha, d(n.paragraph), 1)) : _("", !0)
|
|
954
954
|
], 38)
|
|
955
955
|
]));
|
|
956
956
|
}
|
|
957
|
-
}), ma = /* @__PURE__ */
|
|
957
|
+
}), ma = /* @__PURE__ */ v(pa, [["__scopeId", "data-v-cb201b36"]]), fa = { class: "column-card" }, va = { class: "column-card__content" }, ga = { class: "column-card__headline" }, ba = { class: "column-card__bodytext" }, ya = /* @__PURE__ */ g({
|
|
958
958
|
__name: "column-card",
|
|
959
959
|
props: {
|
|
960
960
|
headline: {},
|
|
@@ -963,17 +963,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
963
963
|
imageFit: { type: Boolean }
|
|
964
964
|
},
|
|
965
965
|
setup(e) {
|
|
966
|
-
return (a, r) => (s(), i("div",
|
|
967
|
-
t("div",
|
|
966
|
+
return (a, r) => (s(), i("div", fa, [
|
|
967
|
+
t("div", va, [
|
|
968
968
|
a.image.filename ? (s(), i("div", {
|
|
969
969
|
key: 0,
|
|
970
970
|
class: p(["column-card__image", { cover: a.imageFit, contain: !a.imageFit }])
|
|
971
971
|
}, [
|
|
972
|
-
c(a.$slots, "column-card-image", z(
|
|
972
|
+
c(a.$slots, "column-card-image", O(z({
|
|
973
973
|
src: a.image.filename,
|
|
974
974
|
alt: a.image.alt
|
|
975
975
|
})), void 0, !0)
|
|
976
|
-
], 2)) :
|
|
976
|
+
], 2)) : _("", !0),
|
|
977
977
|
t("h3", ga, d(a.headline), 1),
|
|
978
978
|
t("div", ba, [
|
|
979
979
|
c(a.$slots, "column-card-body", {}, void 0, !0)
|
|
@@ -981,7 +981,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
981
981
|
])
|
|
982
982
|
]));
|
|
983
983
|
}
|
|
984
|
-
}), ge = /* @__PURE__ */
|
|
984
|
+
}), ge = /* @__PURE__ */ v(ya, [["__scopeId", "data-v-fc3755f9"]]), ka = (e) => (H("data-v-2c394add"), e = e(), R(), e), $a = { class: "event__wrapper" }, wa = { class: "event__headline" }, Ba = { class: "event__date-location" }, Sa = /* @__PURE__ */ ka(() => /* @__PURE__ */ t("br", null, null, -1)), Ia = { class: "event__exhibitor" }, Ca = /* @__PURE__ */ g({
|
|
985
985
|
__name: "event-card",
|
|
986
986
|
props: {
|
|
987
987
|
eventType: {
|
|
@@ -1020,7 +1020,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1020
1020
|
t("div", Ia, d(e.exhibitor), 1)
|
|
1021
1021
|
]));
|
|
1022
1022
|
}
|
|
1023
|
-
}), qa = /* @__PURE__ */
|
|
1023
|
+
}), qa = /* @__PURE__ */ v(Ca, [["__scopeId", "data-v-2c394add"]]), le = (e) => (H("data-v-93ee37aa"), e = e(), R(), e), Aa = { class: "flashcard-side flashcard-front" }, La = {
|
|
1024
1024
|
key: 0,
|
|
1025
1025
|
class: "content"
|
|
1026
1026
|
}, Da = { key: 0 }, Ta = {
|
|
@@ -1035,10 +1035,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1035
1035
|
}, null, -1)), Fa = {
|
|
1036
1036
|
key: 0,
|
|
1037
1037
|
class: "content"
|
|
1038
|
-
}, Ma = { key: 0 },
|
|
1038
|
+
}, Ma = { key: 0 }, Oa = {
|
|
1039
1039
|
key: 1,
|
|
1040
1040
|
class: "flashcard-body"
|
|
1041
|
-
},
|
|
1041
|
+
}, za = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
|
|
1042
1042
|
class: "flip-icon",
|
|
1043
1043
|
src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
|
|
1044
1044
|
}, null, -1)), Ha = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
|
|
@@ -1063,7 +1063,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1063
1063
|
a.value = !a.value;
|
|
1064
1064
|
}
|
|
1065
1065
|
return (o, l) => {
|
|
1066
|
-
var
|
|
1066
|
+
var u, h, n, b, f, k;
|
|
1067
1067
|
return s(), i("div", {
|
|
1068
1068
|
class: "flashcard-container",
|
|
1069
1069
|
onClick: r
|
|
@@ -1077,11 +1077,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1077
1077
|
}])
|
|
1078
1078
|
}, [
|
|
1079
1079
|
t("div", Aa, [
|
|
1080
|
-
o.name || ((
|
|
1081
|
-
o.name ? (s(), i("h3", Da, d(o.name), 1)) :
|
|
1080
|
+
o.name || ((u = o.bodytext) == null ? void 0 : u.length) > 0 ? (s(), i("div", La, [
|
|
1081
|
+
o.name ? (s(), i("h3", Da, d(o.name), 1)) : _("", !0),
|
|
1082
1082
|
o.bodytext ? (s(), i("div", Ta, [
|
|
1083
|
-
c(o.$slots, "flashcard-front-body", z(
|
|
1084
|
-
])) :
|
|
1083
|
+
c(o.$slots, "flashcard-front-body", O(z({ bodytext: o.bodytext })), void 0, !0)
|
|
1084
|
+
])) : _("", !0),
|
|
1085
1085
|
Va
|
|
1086
1086
|
])) : (s(), i("div", {
|
|
1087
1087
|
key: 1,
|
|
@@ -1090,7 +1090,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1090
1090
|
cover: !o.imageFit
|
|
1091
1091
|
}])
|
|
1092
1092
|
}, [
|
|
1093
|
-
c(o.$slots, "flashcard-front-image", z(
|
|
1093
|
+
c(o.$slots, "flashcard-front-image", O(z({ src: (h = o.image) == null ? void 0 : h.filename, alt: (n = o.image) == null ? void 0 : n.alt })), void 0, !0),
|
|
1094
1094
|
Pa
|
|
1095
1095
|
], 2))
|
|
1096
1096
|
]),
|
|
@@ -1101,11 +1101,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1101
1101
|
])
|
|
1102
1102
|
}, [
|
|
1103
1103
|
o.namebackside || o.bodytextbackside.length > 0 ? (s(), i("div", Fa, [
|
|
1104
|
-
o.namebackside ? (s(), i("h3", Ma, d(o.namebackside), 1)) :
|
|
1105
|
-
o.bodytextbackside ? (s(), i("div",
|
|
1106
|
-
c(o.$slots, "flashcard-back-body", z(
|
|
1107
|
-
])) :
|
|
1108
|
-
|
|
1104
|
+
o.namebackside ? (s(), i("h3", Ma, d(o.namebackside), 1)) : _("", !0),
|
|
1105
|
+
o.bodytextbackside ? (s(), i("div", Oa, [
|
|
1106
|
+
c(o.$slots, "flashcard-back-body", O(z({ bodytextbackside: o.bodytextbackside })), void 0, !0)
|
|
1107
|
+
])) : _("", !0),
|
|
1108
|
+
za
|
|
1109
1109
|
])) : (s(), i("div", {
|
|
1110
1110
|
key: 1,
|
|
1111
1111
|
class: p(["flashcard-image", {
|
|
@@ -1113,7 +1113,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1113
1113
|
cover: !o.imageFitBack
|
|
1114
1114
|
}])
|
|
1115
1115
|
}, [
|
|
1116
|
-
c(o.$slots, "flashcard-back-image", z(
|
|
1116
|
+
c(o.$slots, "flashcard-back-image", O(z({ src: (f = o.imagebackside) == null ? void 0 : f.filename, alt: (k = o.imagebackside) == null ? void 0 : k.alt })), void 0, !0),
|
|
1117
1117
|
Ha
|
|
1118
1118
|
], 2))
|
|
1119
1119
|
], 2)
|
|
@@ -1121,7 +1121,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1121
1121
|
]);
|
|
1122
1122
|
};
|
|
1123
1123
|
}
|
|
1124
|
-
}), be = /* @__PURE__ */
|
|
1124
|
+
}), be = /* @__PURE__ */ v(Ra, [["__scopeId", "data-v-93ee37aa"]]), Na = { class: "text__wrapper" }, Ea = { class: "text__headline" }, ja = { class: "text__paragraph" }, Ka = /* @__PURE__ */ g({
|
|
1125
1125
|
__name: "text-card",
|
|
1126
1126
|
props: {
|
|
1127
1127
|
label: {
|
|
@@ -1149,7 +1149,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1149
1149
|
])
|
|
1150
1150
|
]));
|
|
1151
1151
|
}
|
|
1152
|
-
}), Ua = /* @__PURE__ */
|
|
1152
|
+
}), Ua = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-ebdea819"]]), Ga = { class: "accordions" }, Ja = { class: "accordions__wrapper" }, Wa = { class: "accordion" }, Ya = ["onClick"], Qa = { class: "accordion__headline" }, Za = { class: "accordion__icon" }, Xa = {
|
|
1153
1153
|
key: 0,
|
|
1154
1154
|
src: "https://a.storyblok.com/f/230581/21x21/42c9c3b5ba/icon_add.svg"
|
|
1155
1155
|
}, xa = {
|
|
@@ -1162,43 +1162,43 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1162
1162
|
},
|
|
1163
1163
|
setup(e) {
|
|
1164
1164
|
const a = C([]), r = (l) => {
|
|
1165
|
-
const
|
|
1166
|
-
|
|
1165
|
+
const u = a.value.indexOf(l);
|
|
1166
|
+
u > -1 ? a.value.splice(u, 1) : a.value.push(l);
|
|
1167
1167
|
}, o = (l) => a.value.includes(l);
|
|
1168
|
-
return (l,
|
|
1168
|
+
return (l, u) => (s(), i("section", Ga, [
|
|
1169
1169
|
t("div", Ja, [
|
|
1170
|
-
(s(!0), i(T, null, V(l.accordions, (
|
|
1171
|
-
key:
|
|
1170
|
+
(s(!0), i(T, null, V(l.accordions, (h) => (s(), i("div", {
|
|
1171
|
+
key: h._uid
|
|
1172
1172
|
}, [
|
|
1173
1173
|
t("div", Wa, [
|
|
1174
1174
|
t("div", {
|
|
1175
1175
|
class: "accordion__header",
|
|
1176
|
-
onClick: (
|
|
1176
|
+
onClick: (n) => r(h._uid)
|
|
1177
1177
|
}, [
|
|
1178
|
-
t("h3", Qa, d(
|
|
1178
|
+
t("h3", Qa, d(h.headline), 1),
|
|
1179
1179
|
t("span", Za, [
|
|
1180
|
-
o(
|
|
1180
|
+
o(h._uid) ? (s(), i("img", xa)) : (s(), i("img", Xa))
|
|
1181
1181
|
])
|
|
1182
1182
|
], 8, Ya),
|
|
1183
1183
|
t("div", {
|
|
1184
|
-
class: p(["accordion__content", { "accordion__content--reverse":
|
|
1184
|
+
class: p(["accordion__content", { "accordion__content--reverse": h.imageFirst }]),
|
|
1185
1185
|
style: x({
|
|
1186
|
-
display: o(
|
|
1186
|
+
display: o(h._uid) ? "flex" : "none"
|
|
1187
1187
|
})
|
|
1188
1188
|
}, [
|
|
1189
1189
|
t("div", eo, [
|
|
1190
|
-
c(l.$slots, "accordion-body", M({ ref_for: !0 }, { body:
|
|
1190
|
+
c(l.$slots, "accordion-body", M({ ref_for: !0 }, { body: h.bodytext }), void 0, !0)
|
|
1191
1191
|
]),
|
|
1192
1192
|
S(F, null, {
|
|
1193
1193
|
default: y(() => [
|
|
1194
|
-
|
|
1194
|
+
h.image ? c(l.$slots, "accordion-image", M({
|
|
1195
1195
|
key: 0,
|
|
1196
1196
|
ref_for: !0
|
|
1197
1197
|
}, {
|
|
1198
|
-
src:
|
|
1199
|
-
alt:
|
|
1198
|
+
src: h.image.filename,
|
|
1199
|
+
alt: h.image.alt,
|
|
1200
1200
|
class: "accordion__image"
|
|
1201
|
-
}), void 0, !0) :
|
|
1201
|
+
}), void 0, !0) : _("", !0)
|
|
1202
1202
|
]),
|
|
1203
1203
|
_: 2
|
|
1204
1204
|
}, 1024)
|
|
@@ -1208,7 +1208,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1208
1208
|
])
|
|
1209
1209
|
]));
|
|
1210
1210
|
}
|
|
1211
|
-
}), ao = /* @__PURE__ */
|
|
1211
|
+
}), ao = /* @__PURE__ */ v(to, [["__scopeId", "data-v-0e6f6da8"]]), oo = { class: "card-display__wrapper" }, so = {
|
|
1212
1212
|
key: 0,
|
|
1213
1213
|
class: "card__content"
|
|
1214
1214
|
}, lo = { key: 0 }, io = { key: 1 }, ro = { class: "card__cards" }, no = /* @__PURE__ */ g({
|
|
@@ -1236,16 +1236,16 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1236
1236
|
}, [
|
|
1237
1237
|
t("div", oo, [
|
|
1238
1238
|
e.headline || e.paragraph ? (s(), i("div", so, [
|
|
1239
|
-
e.headline ? (s(), i("h2", lo, d(e.headline), 1)) :
|
|
1240
|
-
e.paragraph ? (s(), i("p", io, d(e.paragraph), 1)) :
|
|
1241
|
-
])) :
|
|
1239
|
+
e.headline ? (s(), i("h2", lo, d(e.headline), 1)) : _("", !0),
|
|
1240
|
+
e.paragraph ? (s(), i("p", io, d(e.paragraph), 1)) : _("", !0)
|
|
1241
|
+
])) : _("", !0),
|
|
1242
1242
|
t("div", ro, [
|
|
1243
1243
|
c(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1244
1244
|
])
|
|
1245
1245
|
])
|
|
1246
1246
|
], 2));
|
|
1247
1247
|
}
|
|
1248
|
-
}), co = /* @__PURE__ */
|
|
1248
|
+
}), co = /* @__PURE__ */ v(no, [["__scopeId", "data-v-e5d1b11a"]]), uo = { class: "column-grid__top-section" }, _o = {
|
|
1249
1249
|
key: 0,
|
|
1250
1250
|
class: "column-grid__headline"
|
|
1251
1251
|
}, ho = {
|
|
@@ -1267,10 +1267,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1267
1267
|
])
|
|
1268
1268
|
}, [
|
|
1269
1269
|
t("div", uo, [
|
|
1270
|
-
a.headline ? (s(), i("h2", _o, d(a.headline), 1)) :
|
|
1270
|
+
a.headline ? (s(), i("h2", _o, d(a.headline), 1)) : _("", !0),
|
|
1271
1271
|
a.bodytext ? (s(), i("div", ho, [
|
|
1272
1272
|
c(a.$slots, "column-grid-body", {}, void 0, !0)
|
|
1273
|
-
])) :
|
|
1273
|
+
])) : _("", !0)
|
|
1274
1274
|
]),
|
|
1275
1275
|
t("div", po, [
|
|
1276
1276
|
(s(!0), i(T, null, V(a.columns, (o) => (s(), L(ge, {
|
|
@@ -1291,14 +1291,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1291
1291
|
src: o.image.filename,
|
|
1292
1292
|
alt: o.image.alt,
|
|
1293
1293
|
style: { "object-fit": o.imageFit ? "cover" : "contain" }
|
|
1294
|
-
}), void 0, !0) :
|
|
1294
|
+
}), void 0, !0) : _("", !0)
|
|
1295
1295
|
]),
|
|
1296
1296
|
_: 2
|
|
1297
1297
|
}, 1032, ["headline", "bodytext", "image", "image-fit"]))), 128))
|
|
1298
1298
|
])
|
|
1299
1299
|
], 2));
|
|
1300
1300
|
}
|
|
1301
|
-
}),
|
|
1301
|
+
}), fo = /* @__PURE__ */ v(mo, [["__scopeId", "data-v-c07b3f47"]]), vo = { class: "facts__wrapper" }, go = { class: "facts__content" }, bo = { class: "facts__headline" }, yo = { class: "facts" }, ko = { class: "fact__value" }, $o = { class: "fact__metric" }, wo = {
|
|
1302
1302
|
key: 0,
|
|
1303
1303
|
class: "facts__link"
|
|
1304
1304
|
}, Bo = /* @__PURE__ */ g({
|
|
@@ -1325,7 +1325,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1325
1325
|
}) }
|
|
1326
1326
|
},
|
|
1327
1327
|
setup(e) {
|
|
1328
|
-
return (a, r) => (s(), i("div",
|
|
1328
|
+
return (a, r) => (s(), i("div", vo, [
|
|
1329
1329
|
t("div", go, [
|
|
1330
1330
|
t("h2", bo, d(a.headline), 1),
|
|
1331
1331
|
t("div", yo, [
|
|
@@ -1351,11 +1351,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1351
1351
|
]),
|
|
1352
1352
|
_: 3
|
|
1353
1353
|
})
|
|
1354
|
-
])) :
|
|
1354
|
+
])) : _("", !0)
|
|
1355
1355
|
])
|
|
1356
1356
|
]));
|
|
1357
1357
|
}
|
|
1358
|
-
}), So = /* @__PURE__ */
|
|
1358
|
+
}), So = /* @__PURE__ */ v(Bo, [["__scopeId", "data-v-d2b231d4"]]), Io = { class: "features__wrapper" }, Co = { class: "features__content" }, qo = {
|
|
1359
1359
|
key: 0,
|
|
1360
1360
|
class: "features__headline"
|
|
1361
1361
|
}, Ao = {
|
|
@@ -1373,10 +1373,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1373
1373
|
t("div", Co, [
|
|
1374
1374
|
a.headline ? (s(), i("div", qo, [
|
|
1375
1375
|
t("h2", null, d(a.headline), 1)
|
|
1376
|
-
])) :
|
|
1376
|
+
])) : _("", !0),
|
|
1377
1377
|
a.body ? (s(), i("div", Ao, [
|
|
1378
1378
|
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1379
|
-
])) :
|
|
1379
|
+
])) : _("", !0),
|
|
1380
1380
|
t("div", {
|
|
1381
1381
|
class: p(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1382
1382
|
}, [
|
|
@@ -1402,13 +1402,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1402
1402
|
])
|
|
1403
1403
|
]));
|
|
1404
1404
|
}
|
|
1405
|
-
}), Vo = /* @__PURE__ */
|
|
1405
|
+
}), Vo = /* @__PURE__ */ v(To, [["__scopeId", "data-v-57a22df7"]]), Po = { class: "flashcard-wrapper" }, Fo = {
|
|
1406
1406
|
key: 0,
|
|
1407
1407
|
class: "flashcard-wrapper__headline"
|
|
1408
1408
|
}, Mo = {
|
|
1409
1409
|
key: 1,
|
|
1410
1410
|
class: "flashcard-wrapper__bodytext"
|
|
1411
|
-
},
|
|
1411
|
+
}, Oo = /* @__PURE__ */ g({
|
|
1412
1412
|
__name: "flashcards",
|
|
1413
1413
|
props: {
|
|
1414
1414
|
headline: {},
|
|
@@ -1418,11 +1418,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1418
1418
|
},
|
|
1419
1419
|
setup(e) {
|
|
1420
1420
|
const a = e, r = A(() => a.body.trim().length > 0), o = A(() => {
|
|
1421
|
-
var
|
|
1422
|
-
const l = (
|
|
1421
|
+
var u;
|
|
1422
|
+
const l = (u = a.flashcards) == null ? void 0 : u.length;
|
|
1423
1423
|
return l === 4 || l === 5 ? "sm" : l === 6 || l === 3 ? "md" : l === 2 ? "lg" : "sm";
|
|
1424
1424
|
});
|
|
1425
|
-
return (l,
|
|
1425
|
+
return (l, u) => (s(), i("div", {
|
|
1426
1426
|
class: p(["flashcards", l.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
|
|
1427
1427
|
}, [
|
|
1428
1428
|
t("div", Po, [
|
|
@@ -1432,10 +1432,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1432
1432
|
"flashcard-wrapper__top-section"
|
|
1433
1433
|
])
|
|
1434
1434
|
}, [
|
|
1435
|
-
l.headline ? (s(), i("h2", Fo, d(l.headline), 1)) :
|
|
1435
|
+
l.headline ? (s(), i("h2", Fo, d(l.headline), 1)) : _("", !0),
|
|
1436
1436
|
l.body ? (s(), i("div", Mo, [
|
|
1437
1437
|
c(l.$slots, "flashcard-wrapper-body", {}, void 0, !0)
|
|
1438
|
-
])) :
|
|
1438
|
+
])) : _("", !0)
|
|
1439
1439
|
], 2),
|
|
1440
1440
|
t("div", {
|
|
1441
1441
|
class: p(["flashcard-wrapper__teaser-list", {
|
|
@@ -1444,29 +1444,29 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1444
1444
|
lg: o.value === "lg"
|
|
1445
1445
|
}])
|
|
1446
1446
|
}, [
|
|
1447
|
-
(s(!0), i(T, null, V(l.flashcards, (
|
|
1448
|
-
key:
|
|
1449
|
-
name:
|
|
1450
|
-
bodytext:
|
|
1451
|
-
image:
|
|
1452
|
-
namebackside:
|
|
1453
|
-
bodytextbackside:
|
|
1454
|
-
imagebackside:
|
|
1447
|
+
(s(!0), i(T, null, V(l.flashcards, (h) => (s(), L(I(be), {
|
|
1448
|
+
key: h._uid,
|
|
1449
|
+
name: h.name,
|
|
1450
|
+
bodytext: h.bodytext,
|
|
1451
|
+
image: h.image,
|
|
1452
|
+
namebackside: h.namebackside ? h.namebackside : "",
|
|
1453
|
+
bodytextbackside: h.bodytextbackside,
|
|
1454
|
+
imagebackside: h.imagebackside ? h.imagebackside : { filename: "", alt: "" },
|
|
1455
1455
|
size: o.value,
|
|
1456
|
-
"image-fit":
|
|
1457
|
-
"image-fit-back":
|
|
1456
|
+
"image-fit": h.imageFit,
|
|
1457
|
+
"image-fit-back": h.imageFitBack
|
|
1458
1458
|
}, {
|
|
1459
|
-
"flashcard-front-body": y(({ bodytext:
|
|
1460
|
-
c(l.$slots, "flashcard-front-body", M({ ref_for: !0 }, { bodytext:
|
|
1459
|
+
"flashcard-front-body": y(({ bodytext: n }) => [
|
|
1460
|
+
c(l.$slots, "flashcard-front-body", M({ ref_for: !0 }, { bodytext: n }), void 0, !0)
|
|
1461
1461
|
]),
|
|
1462
|
-
"flashcard-front-image": y(({ src:
|
|
1463
|
-
c(l.$slots, "flashcard-front-image", M({ ref_for: !0 }, { src:
|
|
1462
|
+
"flashcard-front-image": y(({ src: n, alt: b }) => [
|
|
1463
|
+
c(l.$slots, "flashcard-front-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1464
1464
|
]),
|
|
1465
|
-
"flashcard-back-body": y(({ bodytextbackside:
|
|
1466
|
-
c(l.$slots, "flashcard-back-body", M({ ref_for: !0 }, { bodytextbackside:
|
|
1465
|
+
"flashcard-back-body": y(({ bodytextbackside: n }) => [
|
|
1466
|
+
c(l.$slots, "flashcard-back-body", M({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
|
|
1467
1467
|
]),
|
|
1468
|
-
"flashcard-back-image": y(({ src:
|
|
1469
|
-
c(l.$slots, "flashcard-back-image", M({ ref_for: !0 }, { src:
|
|
1468
|
+
"flashcard-back-image": y(({ src: n, alt: b }) => [
|
|
1469
|
+
c(l.$slots, "flashcard-back-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1470
1470
|
]),
|
|
1471
1471
|
_: 2
|
|
1472
1472
|
}, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
|
|
@@ -1474,7 +1474,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1474
1474
|
])
|
|
1475
1475
|
], 2));
|
|
1476
1476
|
}
|
|
1477
|
-
}),
|
|
1477
|
+
}), zo = /* @__PURE__ */ v(Oo, [["__scopeId", "data-v-de3c8751"]]), Ho = { class: "form__wrapper" }, Ro = { class: "form__content" }, No = { class: "form__information" }, Eo = { class: "form__headline" }, jo = { class: "form__body" }, Ko = { class: "form__script" }, Uo = /* @__PURE__ */ g({
|
|
1478
1478
|
__name: "form-script",
|
|
1479
1479
|
props: {
|
|
1480
1480
|
headline: {
|
|
@@ -1497,7 +1497,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1497
1497
|
])
|
|
1498
1498
|
]));
|
|
1499
1499
|
}
|
|
1500
|
-
}), Go = /* @__PURE__ */
|
|
1500
|
+
}), Go = /* @__PURE__ */ v(Uo, [["__scopeId", "data-v-87a67c13"]]), Jo = { class: "headline__wrapper" }, Wo = { class: "headline__h1" }, Yo = /* @__PURE__ */ g({
|
|
1501
1501
|
__name: "headline",
|
|
1502
1502
|
props: {
|
|
1503
1503
|
headline: {
|
|
@@ -1527,7 +1527,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1527
1527
|
], 2)
|
|
1528
1528
|
]));
|
|
1529
1529
|
}
|
|
1530
|
-
}), Qo = /* @__PURE__ */
|
|
1530
|
+
}), Qo = /* @__PURE__ */ v(Yo, [["__scopeId", "data-v-3ef1567e"]]), Zo = (e) => (H("data-v-22f9be13"), e = e(), R(), e), Xo = { class: "hero__wrapper" }, xo = { class: "hero__content" }, es = { class: "hero__top" }, ts = { class: "hero__elements" }, as = { class: "hero__headline" }, os = { class: "hero__link" }, ss = { class: "hero__video" }, ls = /* @__PURE__ */ Zo(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), is = { class: "hero__video__video" }, rs = { class: "hero__image" }, ns = /* @__PURE__ */ g({
|
|
1531
1531
|
__name: "hero",
|
|
1532
1532
|
props: {
|
|
1533
1533
|
headline: {
|
|
@@ -1568,7 +1568,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1568
1568
|
])
|
|
1569
1569
|
]));
|
|
1570
1570
|
}
|
|
1571
|
-
}), ds = /* @__PURE__ */
|
|
1571
|
+
}), ds = /* @__PURE__ */ v(ns, [["__scopeId", "data-v-22f9be13"]]), cs = { class: "image__wrapper" }, us = { class: "image__content" }, _s = { class: "image__image" }, hs = { class: "image__caption" }, ps = /* @__PURE__ */ g({
|
|
1572
1572
|
inheritAttrs: !1,
|
|
1573
1573
|
__name: "image",
|
|
1574
1574
|
props: {
|
|
@@ -1597,7 +1597,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1597
1597
|
t("div", _s, [
|
|
1598
1598
|
S(F, null, {
|
|
1599
1599
|
default: y(() => [
|
|
1600
|
-
c(a.$slots, "image", z(
|
|
1600
|
+
c(a.$slots, "image", O(z({
|
|
1601
1601
|
width: 984,
|
|
1602
1602
|
height: e.fullHeight ? "100%" : 554,
|
|
1603
1603
|
src: e.src,
|
|
@@ -1612,7 +1612,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1612
1612
|
])
|
|
1613
1613
|
]));
|
|
1614
1614
|
}
|
|
1615
|
-
}), ms = /* @__PURE__ */
|
|
1615
|
+
}), ms = /* @__PURE__ */ v(ps, [["__scopeId", "data-v-c583d657"]]), fs = { class: "gallery__large" }, vs = {
|
|
1616
1616
|
key: 0,
|
|
1617
1617
|
class: "image image--large"
|
|
1618
1618
|
}, gs = {
|
|
@@ -1635,7 +1635,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1635
1635
|
light: "gallery__wrapper--light",
|
|
1636
1636
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1637
1637
|
}, r = e, o = A(() => a[r.bgColor]);
|
|
1638
|
-
return (l,
|
|
1638
|
+
return (l, u) => (s(), i("div", {
|
|
1639
1639
|
class: p(["gallery__wrapper", o.value])
|
|
1640
1640
|
}, [
|
|
1641
1641
|
t("div", {
|
|
@@ -1644,11 +1644,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1644
1644
|
l.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1645
1645
|
])
|
|
1646
1646
|
}, [
|
|
1647
|
-
t("div",
|
|
1648
|
-
l.mediaLarge && l.mediaType === "image" ? (s(), i("div",
|
|
1647
|
+
t("div", fs, [
|
|
1648
|
+
l.mediaLarge && l.mediaType === "image" ? (s(), i("div", vs, [
|
|
1649
1649
|
S(F, null, {
|
|
1650
1650
|
default: y(() => [
|
|
1651
|
-
c(l.$slots, "image-large", z(
|
|
1651
|
+
c(l.$slots, "image-large", O(z({
|
|
1652
1652
|
width: 617,
|
|
1653
1653
|
height: 530,
|
|
1654
1654
|
src: l.mediaLarge.src,
|
|
@@ -1657,7 +1657,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1657
1657
|
]),
|
|
1658
1658
|
_: 3
|
|
1659
1659
|
})
|
|
1660
|
-
])) :
|
|
1660
|
+
])) : _("", !0),
|
|
1661
1661
|
l.mediaLarge && l.mediaType === "video" ? (s(), i("div", gs, [
|
|
1662
1662
|
S(ee, {
|
|
1663
1663
|
src: l.mediaLarge.src,
|
|
@@ -1671,7 +1671,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1671
1671
|
muted: "",
|
|
1672
1672
|
play: ""
|
|
1673
1673
|
}, null, 8, ["src", "aria-label"])
|
|
1674
|
-
])) :
|
|
1674
|
+
])) : _("", !0)
|
|
1675
1675
|
]),
|
|
1676
1676
|
t("div", {
|
|
1677
1677
|
style: x([l.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
@@ -1680,8 +1680,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1680
1680
|
l.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1681
1681
|
])
|
|
1682
1682
|
}, [
|
|
1683
|
-
(s(!0), i(T, null, V(l.mediaSmall, (
|
|
1684
|
-
key:
|
|
1683
|
+
(s(!0), i(T, null, V(l.mediaSmall, (h) => (s(), i("div", {
|
|
1684
|
+
key: h.src + h.alt,
|
|
1685
1685
|
class: "image image--small"
|
|
1686
1686
|
}, [
|
|
1687
1687
|
S(F, null, {
|
|
@@ -1689,8 +1689,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1689
1689
|
c(l.$slots, "image-small", M({ ref_for: !0 }, {
|
|
1690
1690
|
width: 328,
|
|
1691
1691
|
height: 246,
|
|
1692
|
-
src:
|
|
1693
|
-
alt:
|
|
1692
|
+
src: h.src,
|
|
1693
|
+
alt: h.alt
|
|
1694
1694
|
}))
|
|
1695
1695
|
]),
|
|
1696
1696
|
_: 2
|
|
@@ -1701,12 +1701,12 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1701
1701
|
class: p(["body", l.bgColor === "dark" ? "body--dark" : ""])
|
|
1702
1702
|
}, [
|
|
1703
1703
|
t("p", null, d(l.body), 1)
|
|
1704
|
-
], 2)) :
|
|
1704
|
+
], 2)) : _("", !0)
|
|
1705
1705
|
], 6)
|
|
1706
1706
|
], 2)
|
|
1707
1707
|
], 2));
|
|
1708
1708
|
}
|
|
1709
|
-
}), ys = /* @__PURE__ */
|
|
1709
|
+
}), ys = /* @__PURE__ */ v(bs, [["__scopeId", "data-v-4997f83a"]]), ks = { class: "logo-wall__wrapper" }, $s = { class: "logo-wall__content" }, ws = {
|
|
1710
1710
|
key: 0,
|
|
1711
1711
|
class: "logo-wall__text"
|
|
1712
1712
|
}, Bs = { key: 0 }, Ss = { key: 1 }, Is = { class: "logo-wall__logos" }, Cs = { class: "logo-wall__link" }, qs = /* @__PURE__ */ g({
|
|
@@ -1730,9 +1730,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1730
1730
|
return (a, r) => (s(), i("div", ks, [
|
|
1731
1731
|
t("div", $s, [
|
|
1732
1732
|
e.headline || e.body ? (s(), i("div", ws, [
|
|
1733
|
-
e.headline ? (s(), i("h2", Bs, d(e.headline), 1)) :
|
|
1734
|
-
e.body ? (s(), i("p", Ss, d(e.body), 1)) :
|
|
1735
|
-
])) :
|
|
1733
|
+
e.headline ? (s(), i("h2", Bs, d(e.headline), 1)) : _("", !0),
|
|
1734
|
+
e.body ? (s(), i("p", Ss, d(e.body), 1)) : _("", !0)
|
|
1735
|
+
])) : _("", !0),
|
|
1736
1736
|
t("div", Is, [
|
|
1737
1737
|
(s(!0), i(T, null, V(e.logos, (o) => (s(), i("div", {
|
|
1738
1738
|
key: o.src + o.alt,
|
|
@@ -1765,7 +1765,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1765
1765
|
])
|
|
1766
1766
|
]));
|
|
1767
1767
|
}
|
|
1768
|
-
}), As = /* @__PURE__ */
|
|
1768
|
+
}), As = /* @__PURE__ */ v(qs, [["__scopeId", "data-v-fd489289"]]), Ls = { class: "micro-stories__top" }, Ds = {
|
|
1769
1769
|
key: 0,
|
|
1770
1770
|
class: "headline"
|
|
1771
1771
|
}, Ts = {
|
|
@@ -1784,16 +1784,16 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1784
1784
|
blue: "micro-stories__wrapper--blue",
|
|
1785
1785
|
dark: "micro-stories__wrapper--dark"
|
|
1786
1786
|
}, r = A(() => a[o.bgColor]), o = e;
|
|
1787
|
-
return (l,
|
|
1787
|
+
return (l, u) => (s(), i("div", {
|
|
1788
1788
|
class: p(["micro-stories__wrapper", r.value])
|
|
1789
1789
|
}, [
|
|
1790
1790
|
t("div", Ls, [
|
|
1791
1791
|
l.headline ? (s(), i("div", Ds, [
|
|
1792
1792
|
t("h2", null, d(l.headline), 1)
|
|
1793
|
-
])) :
|
|
1793
|
+
])) : _("", !0),
|
|
1794
1794
|
l.body ? (s(), i("div", Ts, [
|
|
1795
1795
|
t("p", null, d(l.body), 1)
|
|
1796
|
-
])) :
|
|
1796
|
+
])) : _("", !0)
|
|
1797
1797
|
]),
|
|
1798
1798
|
t("div", Vs, [
|
|
1799
1799
|
c(l.$slots, "micro-stories-slides")
|
|
@@ -1801,15 +1801,15 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1801
1801
|
c(l.$slots, "micro-stories-controls")
|
|
1802
1802
|
], 2));
|
|
1803
1803
|
}
|
|
1804
|
-
}), Fs = {}, Ms = { class: "policy__wrapper" },
|
|
1805
|
-
function
|
|
1804
|
+
}), Fs = {}, Ms = { class: "policy__wrapper" }, Os = { class: "policy__content" };
|
|
1805
|
+
function zs(e, a) {
|
|
1806
1806
|
return s(), i("div", Ms, [
|
|
1807
|
-
t("div",
|
|
1807
|
+
t("div", Os, [
|
|
1808
1808
|
c(e.$slots, "default", {}, void 0, !0)
|
|
1809
1809
|
])
|
|
1810
1810
|
]);
|
|
1811
1811
|
}
|
|
1812
|
-
const Hs = /* @__PURE__ */
|
|
1812
|
+
const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a"]]), Rs = { class: "product-hero__wrapper" }, Ns = { class: "product-hero__content" }, Es = { class: "product-hero__headline" }, js = { class: "product-hero__video" }, Ks = { class: "product-hero__insignia" }, Us = {
|
|
1813
1813
|
key: 0,
|
|
1814
1814
|
class: "product-hero__logo"
|
|
1815
1815
|
}, Gs = {
|
|
@@ -1879,7 +1879,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1879
1879
|
]),
|
|
1880
1880
|
_: 3
|
|
1881
1881
|
})
|
|
1882
|
-
])) :
|
|
1882
|
+
])) : _("", !0),
|
|
1883
1883
|
e.isCertified ? (s(), i("div", Gs, [
|
|
1884
1884
|
S(I(F), null, {
|
|
1885
1885
|
default: y(() => [
|
|
@@ -1887,13 +1887,13 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1887
1887
|
]),
|
|
1888
1888
|
_: 3
|
|
1889
1889
|
})
|
|
1890
|
-
])) :
|
|
1890
|
+
])) : _("", !0)
|
|
1891
1891
|
])
|
|
1892
1892
|
])
|
|
1893
1893
|
])
|
|
1894
1894
|
]));
|
|
1895
1895
|
}
|
|
1896
|
-
}), Ws = /* @__PURE__ */
|
|
1896
|
+
}), Ws = /* @__PURE__ */ v(Js, [["__scopeId", "data-v-deab9c3a"]]), Ys = { class: "promo__content" }, Qs = /* @__PURE__ */ g({
|
|
1897
1897
|
__name: "promo",
|
|
1898
1898
|
props: {
|
|
1899
1899
|
label: { default: "" },
|
|
@@ -1914,7 +1914,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1914
1914
|
light: "promo__wrapper--light",
|
|
1915
1915
|
default: "promo__wrapper--default"
|
|
1916
1916
|
}, r = e, o = A(() => a[r.variant]);
|
|
1917
|
-
return (l,
|
|
1917
|
+
return (l, u) => (s(), i("div", {
|
|
1918
1918
|
class: p([
|
|
1919
1919
|
"promo__wrapper",
|
|
1920
1920
|
o.value,
|
|
@@ -1932,11 +1932,11 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1932
1932
|
}, [
|
|
1933
1933
|
S(F, null, {
|
|
1934
1934
|
default: y(() => [
|
|
1935
|
-
c(l.$slots, "promo-image", z(
|
|
1935
|
+
c(l.$slots, "promo-image", O(z({ src: l.src, width: 1920, alt: l.alt, height: 1080 })))
|
|
1936
1936
|
]),
|
|
1937
1937
|
_: 3
|
|
1938
1938
|
})
|
|
1939
|
-
], 2)) :
|
|
1939
|
+
], 2)) : _("", !0),
|
|
1940
1940
|
l.mediaType === "video" ? (s(), i("div", {
|
|
1941
1941
|
key: 1,
|
|
1942
1942
|
class: p([
|
|
@@ -1955,7 +1955,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1955
1955
|
play: "",
|
|
1956
1956
|
poster: l.fallbackImage
|
|
1957
1957
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1958
|
-
], 2)) :
|
|
1958
|
+
], 2)) : _("", !0),
|
|
1959
1959
|
t("div", {
|
|
1960
1960
|
class: p([
|
|
1961
1961
|
"promo__text",
|
|
@@ -1966,7 +1966,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1966
1966
|
key: 0,
|
|
1967
1967
|
text: l.label,
|
|
1968
1968
|
"label-dark": l.variant === "dark"
|
|
1969
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
1969
|
+
}, null, 8, ["text", "label-dark"])) : _("", !0),
|
|
1970
1970
|
t("div", {
|
|
1971
1971
|
class: p([
|
|
1972
1972
|
"promo__title",
|
|
@@ -1984,7 +1984,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1984
1984
|
c(l.$slots, "promo-link")
|
|
1985
1985
|
]),
|
|
1986
1986
|
_: 3
|
|
1987
|
-
}, 8, ["link-type"])) :
|
|
1987
|
+
}, 8, ["link-type"])) : _("", !0),
|
|
1988
1988
|
l.linkType === "button" ? (s(), L(P, {
|
|
1989
1989
|
key: 2,
|
|
1990
1990
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
@@ -1993,12 +1993,12 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1993
1993
|
c(l.$slots, "promo-link")
|
|
1994
1994
|
]),
|
|
1995
1995
|
_: 3
|
|
1996
|
-
}, 8, ["link-type"])) :
|
|
1996
|
+
}, 8, ["link-type"])) : _("", !0)
|
|
1997
1997
|
], 2)
|
|
1998
1998
|
])
|
|
1999
1999
|
], 2));
|
|
2000
2000
|
}
|
|
2001
|
-
}), Zs = /* @__PURE__ */
|
|
2001
|
+
}), Zs = /* @__PURE__ */ v(Qs, [["__scopeId", "data-v-df54d965"]]), Xs = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), xs = { class: "quote__wrapper" }, el = { class: "quote__content" }, tl = /* @__PURE__ */ Xs(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), al = { class: "quote__quote" }, ol = { class: "quote__quote-text" }, sl = { class: "quote__author" }, ll = {
|
|
2002
2002
|
key: 0,
|
|
2003
2003
|
class: "quote__image"
|
|
2004
2004
|
}, il = { class: "quote__text" }, rl = { class: "quote__author-name" }, nl = { class: "quote__author-title" }, dl = /* @__PURE__ */ g({
|
|
@@ -2032,7 +2032,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2032
2032
|
e.authorImage ? (s(), i("div", ll, [
|
|
2033
2033
|
S(F, null, {
|
|
2034
2034
|
default: y(() => [
|
|
2035
|
-
c(a.$slots, "author-image", z(
|
|
2035
|
+
c(a.$slots, "author-image", O(z({
|
|
2036
2036
|
src: e.authorImage + "/m/100x100",
|
|
2037
2037
|
width: 60,
|
|
2038
2038
|
height: 60
|
|
@@ -2040,7 +2040,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2040
2040
|
]),
|
|
2041
2041
|
_: 3
|
|
2042
2042
|
})
|
|
2043
|
-
])) :
|
|
2043
|
+
])) : _("", !0),
|
|
2044
2044
|
t("div", il, [
|
|
2045
2045
|
t("p", rl, d(e.author), 1),
|
|
2046
2046
|
t("p", nl, d(e.authorTitle), 1)
|
|
@@ -2050,7 +2050,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2050
2050
|
])
|
|
2051
2051
|
]));
|
|
2052
2052
|
}
|
|
2053
|
-
}), cl = /* @__PURE__ */
|
|
2053
|
+
}), cl = /* @__PURE__ */ v(dl, [["__scopeId", "data-v-e3cc8e27"]]), ul = { class: "rich-text__wrapper" }, _l = {
|
|
2054
2054
|
key: 0,
|
|
2055
2055
|
class: "rich-text__links"
|
|
2056
2056
|
}, hl = {
|
|
@@ -2080,14 +2080,14 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2080
2080
|
key: 0,
|
|
2081
2081
|
text: a.label,
|
|
2082
2082
|
"label-dark": !1
|
|
2083
|
-
}, null, 8, ["text"])) :
|
|
2083
|
+
}, null, 8, ["text"])) : _("", !0),
|
|
2084
2084
|
a.headline ? (s(), i("h2", {
|
|
2085
2085
|
key: 1,
|
|
2086
2086
|
class: p([
|
|
2087
2087
|
"rich-text__headline",
|
|
2088
2088
|
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
2089
2089
|
])
|
|
2090
|
-
}, d(a.headline), 3)) :
|
|
2090
|
+
}, d(a.headline), 3)) : _("", !0),
|
|
2091
2091
|
t("div", {
|
|
2092
2092
|
class: p([
|
|
2093
2093
|
"rich-text__content",
|
|
@@ -2103,11 +2103,11 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2103
2103
|
c(a.$slots, "rich-text-content"),
|
|
2104
2104
|
a.links ? (s(), i("div", _l, [
|
|
2105
2105
|
c(a.$slots, "rich-text-links")
|
|
2106
|
-
])) :
|
|
2106
|
+
])) : _("", !0)
|
|
2107
2107
|
], 2),
|
|
2108
2108
|
a.bulletList ? (s(), i("div", hl, [
|
|
2109
2109
|
c(a.$slots, "rich-text-bullet-list")
|
|
2110
|
-
])) :
|
|
2110
|
+
])) : _("", !0),
|
|
2111
2111
|
a.image ? (s(), i("div", {
|
|
2112
2112
|
key: 1,
|
|
2113
2113
|
class: p([
|
|
@@ -2117,18 +2117,18 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2117
2117
|
}, [
|
|
2118
2118
|
S(F, null, {
|
|
2119
2119
|
default: y(() => [
|
|
2120
|
-
c(a.$slots, "rich-text-image", z(
|
|
2120
|
+
c(a.$slots, "rich-text-image", O(z({ width: 865, height: 307 })))
|
|
2121
2121
|
]),
|
|
2122
2122
|
_: 3
|
|
2123
2123
|
})
|
|
2124
|
-
], 2)) :
|
|
2124
|
+
], 2)) : _("", !0)
|
|
2125
2125
|
], 2)
|
|
2126
2126
|
])
|
|
2127
2127
|
], 2));
|
|
2128
2128
|
}
|
|
2129
|
-
}), ml = /* @__PURE__ */
|
|
2129
|
+
}), ml = /* @__PURE__ */ v(pl, [["__scopeId", "data-v-db485b9d"]]), fl = {}, vl = { class: "rich-text" }, gl = { class: "rich-text__wrapper" }, bl = { class: "rich-text__content rich-text__content--left-aligned" }, yl = { class: "rich-text__body" };
|
|
2130
2130
|
function kl(e, a) {
|
|
2131
|
-
return s(), i("div",
|
|
2131
|
+
return s(), i("div", vl, [
|
|
2132
2132
|
t("div", gl, [
|
|
2133
2133
|
t("div", bl, [
|
|
2134
2134
|
t("div", yl, [
|
|
@@ -2143,7 +2143,7 @@ function kl(e, a) {
|
|
|
2143
2143
|
])
|
|
2144
2144
|
]);
|
|
2145
2145
|
}
|
|
2146
|
-
const $l = /* @__PURE__ */
|
|
2146
|
+
const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2"]]), wl = (e) => (H("data-v-798e7a06"), e = e(), R(), e), Bl = { class: "timeline__wrapper" }, Sl = { class: "timeline__content" }, Il = { class: "timeline__items" }, Cl = { class: "item__left" }, ql = /* @__PURE__ */ wl(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2147
2147
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2148
2148
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2149
2149
|
], -1)), Al = { class: "item__right" }, Ll = ["innerHTML"], Dl = /* @__PURE__ */ g({
|
|
@@ -2184,7 +2184,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2184
2184
|
o.media.src ? c(a.$slots, "timeline-image", M({
|
|
2185
2185
|
key: 0,
|
|
2186
2186
|
ref_for: !0
|
|
2187
|
-
}, { src: o.media.src, alt: o.media.alt }), void 0, !0) :
|
|
2187
|
+
}, { src: o.media.src, alt: o.media.alt }), void 0, !0) : _("", !0)
|
|
2188
2188
|
]),
|
|
2189
2189
|
_: 2
|
|
2190
2190
|
}, 1024),
|
|
@@ -2199,13 +2199,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2199
2199
|
])
|
|
2200
2200
|
]));
|
|
2201
2201
|
}
|
|
2202
|
-
}), Tl = /* @__PURE__ */
|
|
2202
|
+
}), Tl = /* @__PURE__ */ v(Dl, [["__scopeId", "data-v-798e7a06"]]), Vl = { class: "vimeo" }, Pl = { class: "vimeo__wrapper" }, Fl = {
|
|
2203
2203
|
key: 0,
|
|
2204
2204
|
class: "vimeo__headline"
|
|
2205
2205
|
}, Ml = {
|
|
2206
2206
|
key: 1,
|
|
2207
2207
|
class: "vimeo__description"
|
|
2208
|
-
},
|
|
2208
|
+
}, Ol = /* @__PURE__ */ g({
|
|
2209
2209
|
__name: "vimeo",
|
|
2210
2210
|
props: {
|
|
2211
2211
|
headline: {
|
|
@@ -2220,13 +2220,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2220
2220
|
setup(e) {
|
|
2221
2221
|
return (a, r) => (s(), i("div", Vl, [
|
|
2222
2222
|
t("div", Pl, [
|
|
2223
|
-
e.headline ? (s(), i("h2", Fl, d(e.headline), 1)) :
|
|
2223
|
+
e.headline ? (s(), i("h2", Fl, d(e.headline), 1)) : _("", !0),
|
|
2224
2224
|
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2225
|
-
e.description ? (s(), i("p", Ml, d(e.description), 1)) :
|
|
2225
|
+
e.description ? (s(), i("p", Ml, d(e.description), 1)) : _("", !0)
|
|
2226
2226
|
])
|
|
2227
2227
|
]));
|
|
2228
2228
|
}
|
|
2229
|
-
}),
|
|
2229
|
+
}), zl = /* @__PURE__ */ v(Ol, [["__scopeId", "data-v-90a2b109"]]), Hl = { class: "academy-overview" }, Rl = { class: "academy-overview__content-wrapper" }, Nl = { class: "academy-overview__content" }, El = { class: "academy-overview__title" }, jl = { class: "academy-overview__description" }, Kl = {
|
|
2230
2230
|
key: 0,
|
|
2231
2231
|
class: "academy-overview__button-wrapper"
|
|
2232
2232
|
}, Ul = {
|
|
@@ -2252,7 +2252,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2252
2252
|
t("div", null, [
|
|
2253
2253
|
t("h1", El, d(a.hero.headline), 1),
|
|
2254
2254
|
t("p", jl, d(a.hero.description), 1),
|
|
2255
|
-
a.hero.showStats ?
|
|
2255
|
+
a.hero.showStats ? _("", !0) : (s(), i("div", Kl, [
|
|
2256
2256
|
c(a.$slots, "button", {}, void 0, !0)
|
|
2257
2257
|
]))
|
|
2258
2258
|
]),
|
|
@@ -2267,12 +2267,12 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2267
2267
|
t("div", Xl, d(a.hero.pointsLabel), 1)
|
|
2268
2268
|
])
|
|
2269
2269
|
])
|
|
2270
|
-
])) :
|
|
2270
|
+
])) : _("", !0)
|
|
2271
2271
|
])
|
|
2272
2272
|
])
|
|
2273
2273
|
]));
|
|
2274
2274
|
}
|
|
2275
|
-
}), ei = /* @__PURE__ */
|
|
2275
|
+
}), ei = /* @__PURE__ */ v(xl, [["__scopeId", "data-v-98275425"]]), ti = { class: "not-found__wrapper" }, ai = { class: "not-found__content" }, oi = { class: "not-found__headline" }, si = { class: "not-found__body" }, li = /* @__PURE__ */ g({
|
|
2276
2276
|
__name: "404",
|
|
2277
2277
|
props: {
|
|
2278
2278
|
headline: {
|
|
@@ -2290,7 +2290,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2290
2290
|
])
|
|
2291
2291
|
]));
|
|
2292
2292
|
}
|
|
2293
|
-
}), ii = /* @__PURE__ */
|
|
2293
|
+
}), ii = /* @__PURE__ */ v(li, [["__scopeId", "data-v-b829ca6c"]]), ri = { class: "filter__wrapper" }, ni = { class: "filter__content" }, di = { class: "filter__dropdowns" }, ci = { class: "filter__chips" }, ui = /* @__PURE__ */ g({
|
|
2294
2294
|
__name: "filter",
|
|
2295
2295
|
props: {
|
|
2296
2296
|
hasChips: {
|
|
@@ -2315,16 +2315,16 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2315
2315
|
key: 0,
|
|
2316
2316
|
class: "filter__clear",
|
|
2317
2317
|
onClick: r[0] || (r[0] = (o) => a.$emit("clearFilters"))
|
|
2318
|
-
}, d(e.removeAll), 1)) :
|
|
2318
|
+
}, d(e.removeAll), 1)) : _("", !0)
|
|
2319
2319
|
])
|
|
2320
2320
|
])
|
|
2321
2321
|
]));
|
|
2322
2322
|
}
|
|
2323
|
-
}), _i = /* @__PURE__ */
|
|
2323
|
+
}), _i = /* @__PURE__ */ v(ui, [["__scopeId", "data-v-31c1ba00"]]), ye = (e) => (H("data-v-3d0cbbd5"), e = e(), R(), e), hi = { class: "footer__wrapper" }, pi = { class: "footer__content" }, mi = {
|
|
2324
2324
|
key: 0,
|
|
2325
2325
|
src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
|
|
2326
2326
|
style: { margin: "0 auto" }
|
|
2327
|
-
},
|
|
2327
|
+
}, fi = { class: "footer__sections" }, vi = { class: "section__title" }, gi = { class: "section__list" }, bi = { class: "section" }, yi = {
|
|
2328
2328
|
key: 0,
|
|
2329
2329
|
class: "section__title"
|
|
2330
2330
|
}, ki = {
|
|
@@ -2345,7 +2345,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2345
2345
|
}, Ti = { class: "footer__bottom" }, Vi = { class: "copyright" }, Pi = { class: "footer__policy" }, Fi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), Mi = {
|
|
2346
2346
|
key: 0,
|
|
2347
2347
|
class: "footer__social"
|
|
2348
|
-
},
|
|
2348
|
+
}, Oi = ["href", "aria-label"], zi = {
|
|
2349
2349
|
key: 1,
|
|
2350
2350
|
class: "footer__social"
|
|
2351
2351
|
}, Hi = ["href", "aria-label"], Ri = /* @__PURE__ */ g({
|
|
@@ -2363,13 +2363,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2363
2363
|
setup(e) {
|
|
2364
2364
|
return (a, r) => (s(), i("div", hi, [
|
|
2365
2365
|
t("footer", pi, [
|
|
2366
|
-
a.language === "zh" ? (s(), i("img", mi)) :
|
|
2367
|
-
t("div",
|
|
2366
|
+
a.language === "zh" ? (s(), i("img", mi)) : _("", !0),
|
|
2367
|
+
t("div", fi, [
|
|
2368
2368
|
(s(!0), i(T, null, V(a.footerSections, (o) => (s(), i("div", {
|
|
2369
2369
|
key: o.title,
|
|
2370
2370
|
class: "section"
|
|
2371
2371
|
}, [
|
|
2372
|
-
t("span",
|
|
2372
|
+
t("span", vi, d(o.title), 1),
|
|
2373
2373
|
t("nav", null, [
|
|
2374
2374
|
t("ul", gi, [
|
|
2375
2375
|
c(a.$slots, "section-links", {
|
|
@@ -2383,7 +2383,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2383
2383
|
t("address", null, [
|
|
2384
2384
|
a.language === "zh" ? (s(), i("span", $i, "上海浦东新区金桥出口加工区")) : (s(), i("span", wi, "Energivej 51")),
|
|
2385
2385
|
a.language === "zh" ? (s(), i("span", Bi, "桂桥路1201号10栋2楼")) : (s(), i("span", Si, "5260 Odense S")),
|
|
2386
|
-
a.language !== "zh" ? (s(), i("span", Ii, "CVR: 35251235")) :
|
|
2386
|
+
a.language !== "zh" ? (s(), i("span", Ii, "CVR: 35251235")) : _("", !0),
|
|
2387
2387
|
Ci,
|
|
2388
2388
|
S(P, {
|
|
2389
2389
|
class: "footer__contact",
|
|
@@ -2440,11 +2440,11 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2440
2440
|
height: "14",
|
|
2441
2441
|
class: p(["footer__social--icon", [o.title ? "bg-" + o.title : ""]])
|
|
2442
2442
|
}, null, 2)
|
|
2443
|
-
], 8,
|
|
2443
|
+
], 8, Oi)
|
|
2444
2444
|
]),
|
|
2445
2445
|
_: 2
|
|
2446
2446
|
}, 1024))), 128))
|
|
2447
|
-
])) : (s(), i("div",
|
|
2447
|
+
])) : (s(), i("div", zi, [
|
|
2448
2448
|
(s(!0), i(T, null, V(a.socialMediaChina, (o) => (s(), L(P, {
|
|
2449
2449
|
key: o.title,
|
|
2450
2450
|
underline: "false",
|
|
@@ -2470,7 +2470,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2470
2470
|
])
|
|
2471
2471
|
]));
|
|
2472
2472
|
}
|
|
2473
|
-
}), Ni = /* @__PURE__ */
|
|
2473
|
+
}), Ni = /* @__PURE__ */ v(Ri, [["__scopeId", "data-v-3d0cbbd5"]]), ke = (e) => (H("data-v-ca578d77"), e = e(), R(), e), Ei = { class: "header__wrapper" }, ji = { class: "nav-wrapper" }, Ki = { class: "mir-link-logo" }, Ui = { class: "main-nav-items" }, Gi = {
|
|
2474
2474
|
key: 0,
|
|
2475
2475
|
id: "menu-dropdown",
|
|
2476
2476
|
ref: "dropdownDiv"
|
|
@@ -2514,7 +2514,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2514
2514
|
], dr = { class: "profile-dropdown-content" }, cr = { class: "mobile-logo-search-burger-wrapper" }, ur = { class: "mobile-mir-link-logo" }, _r = {
|
|
2515
2515
|
key: 0,
|
|
2516
2516
|
class: "mobile-search-wrapper"
|
|
2517
|
-
}, hr = ["src"], pr = ["src"], mr = { class: "mobile-menu-content-wrapper" },
|
|
2517
|
+
}, hr = ["src"], pr = ["src"], mr = { class: "mobile-menu-content-wrapper" }, fr = { class: "mobile-dropdown-content" }, vr = /* @__PURE__ */ g({
|
|
2518
2518
|
__name: "header",
|
|
2519
2519
|
props: {
|
|
2520
2520
|
burgerState: {
|
|
@@ -2568,44 +2568,44 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2568
2568
|
setup(e, { expose: a, emit: r }) {
|
|
2569
2569
|
let o = null;
|
|
2570
2570
|
const l = e;
|
|
2571
|
-
let
|
|
2571
|
+
let u = C(l.burgerState), h = C(l.search), n = C(l.showDropDown), b = C(l.showPortalSwitcherDropDown), f = C(l.showProfileDropDown), k = C(l.isAuthenticated);
|
|
2572
2572
|
Q(
|
|
2573
2573
|
() => l.burgerState,
|
|
2574
|
-
($) =>
|
|
2574
|
+
($) => u.value = $
|
|
2575
2575
|
), Q(
|
|
2576
2576
|
() => l.search,
|
|
2577
|
-
($) =>
|
|
2577
|
+
($) => h.value = $
|
|
2578
2578
|
), Q(
|
|
2579
2579
|
() => l.showDropDown,
|
|
2580
|
-
($) =>
|
|
2580
|
+
($) => n.value = $
|
|
2581
2581
|
), Q(
|
|
2582
2582
|
() => l.showPortalSwitcherDropDown,
|
|
2583
2583
|
($) => b.value = $
|
|
2584
2584
|
), Q(
|
|
2585
2585
|
() => l.showProfileDropDown,
|
|
2586
|
-
($) =>
|
|
2586
|
+
($) => f.value = $
|
|
2587
2587
|
), Q(
|
|
2588
2588
|
() => l.isAuthenticated,
|
|
2589
2589
|
($) => k.value = $
|
|
2590
2590
|
), me(() => {
|
|
2591
2591
|
o = ($) => {
|
|
2592
|
-
$.target.closest("#menu-dropdown") || (
|
|
2592
|
+
$.target.closest("#menu-dropdown") || (n.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (f.value = !1);
|
|
2593
2593
|
}, window.addEventListener("click", o);
|
|
2594
2594
|
}), Ae(() => {
|
|
2595
2595
|
o !== null && window.removeEventListener("click", o);
|
|
2596
2596
|
});
|
|
2597
2597
|
const w = r;
|
|
2598
2598
|
function te() {
|
|
2599
|
-
|
|
2599
|
+
n.value = !n.value, w("update:showDropDown", n.value);
|
|
2600
2600
|
}
|
|
2601
2601
|
function ie() {
|
|
2602
2602
|
b.value = !b.value, w("update:showPortalSwitcherDropDown", b.value);
|
|
2603
2603
|
}
|
|
2604
2604
|
function re() {
|
|
2605
|
-
|
|
2605
|
+
f.value = !f.value, w("update:showProfileDropDown", f.value);
|
|
2606
2606
|
}
|
|
2607
2607
|
function ne() {
|
|
2608
|
-
|
|
2608
|
+
u.value = !u.value, w("update:burgerState", u.value);
|
|
2609
2609
|
}
|
|
2610
2610
|
let G = C(null), ae = C(null);
|
|
2611
2611
|
function de() {
|
|
@@ -2628,15 +2628,15 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2628
2628
|
onClick: te
|
|
2629
2629
|
}, [
|
|
2630
2630
|
c($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2631
|
-
I(
|
|
2631
|
+
I(n) === !1 ? (s(), i("img", Ji)) : (s(), i("img", Wi))
|
|
2632
2632
|
]),
|
|
2633
2633
|
U(t("div", Yi, [
|
|
2634
2634
|
c($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2635
2635
|
], 512), [
|
|
2636
|
-
[Z, I(
|
|
2636
|
+
[Z, I(n)]
|
|
2637
2637
|
])
|
|
2638
|
-
], 512)) :
|
|
2639
|
-
I(
|
|
2638
|
+
], 512)) : _("", !0),
|
|
2639
|
+
I(h) ? (s(), i("div", Qi, [
|
|
2640
2640
|
t("button", {
|
|
2641
2641
|
ref_key: "navSearchButton",
|
|
2642
2642
|
ref: G,
|
|
@@ -2647,13 +2647,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2647
2647
|
})
|
|
2648
2648
|
}, [
|
|
2649
2649
|
t("img", {
|
|
2650
|
-
src: I(
|
|
2650
|
+
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",
|
|
2651
2651
|
alt: "search icon",
|
|
2652
2652
|
width: "20",
|
|
2653
2653
|
height: "20"
|
|
2654
2654
|
}, null, 8, Zi)
|
|
2655
2655
|
], 512)
|
|
2656
|
-
])) :
|
|
2656
|
+
])) : _("", !0),
|
|
2657
2657
|
e.usePortalSwitcher ? (s(), i("div", Xi, [
|
|
2658
2658
|
t("button", {
|
|
2659
2659
|
class: "nav-portal-switcher-btn",
|
|
@@ -2669,7 +2669,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2669
2669
|
default: y(() => [
|
|
2670
2670
|
t("a", {
|
|
2671
2671
|
href: K.link,
|
|
2672
|
-
onClick: j[1] || (j[1] = (W) => ce(
|
|
2672
|
+
onClick: j[1] || (j[1] = (W) => ce(n) ? n.value = !1 : n = !1)
|
|
2673
2673
|
}, [
|
|
2674
2674
|
t("img", {
|
|
2675
2675
|
src: K.icon
|
|
@@ -2684,31 +2684,31 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2684
2684
|
], 512), [
|
|
2685
2685
|
[Z, I(b)]
|
|
2686
2686
|
])
|
|
2687
|
-
])) :
|
|
2687
|
+
])) : _("", !0),
|
|
2688
2688
|
e.useProfileDropdown ? (s(), i("div", lr, [
|
|
2689
|
-
I(k) ?
|
|
2689
|
+
I(k) ? _("", !0) : (s(), i("div", ir, [
|
|
2690
2690
|
c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2691
2691
|
])),
|
|
2692
2692
|
I(k) ? (s(), i("button", {
|
|
2693
2693
|
key: 1,
|
|
2694
2694
|
class: "nav-profile-dropdown-btn",
|
|
2695
2695
|
onClick: re
|
|
2696
|
-
}, nr)) :
|
|
2696
|
+
}, nr)) : _("", !0),
|
|
2697
2697
|
U(t("div", dr, [
|
|
2698
2698
|
c($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2699
2699
|
], 512), [
|
|
2700
|
-
[Z, I(
|
|
2700
|
+
[Z, I(f)]
|
|
2701
2701
|
])
|
|
2702
|
-
])) :
|
|
2702
|
+
])) : _("", !0)
|
|
2703
2703
|
]),
|
|
2704
2704
|
t("div", {
|
|
2705
|
-
class: p(["mobile-nav-wrapper", I(
|
|
2705
|
+
class: p(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2706
2706
|
}, [
|
|
2707
2707
|
t("div", cr, [
|
|
2708
2708
|
t("div", ur, [
|
|
2709
2709
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2710
2710
|
]),
|
|
2711
|
-
I(
|
|
2711
|
+
I(h) ? (s(), i("div", _r, [
|
|
2712
2712
|
t("button", {
|
|
2713
2713
|
ref_key: "mobileSearchButton",
|
|
2714
2714
|
ref: ae,
|
|
@@ -2720,13 +2720,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2720
2720
|
})
|
|
2721
2721
|
}, [
|
|
2722
2722
|
t("img", {
|
|
2723
|
-
src: I(
|
|
2723
|
+
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",
|
|
2724
2724
|
alt: "search icon",
|
|
2725
2725
|
width: "20",
|
|
2726
2726
|
height: "20"
|
|
2727
2727
|
}, null, 8, hr)
|
|
2728
2728
|
], 512)
|
|
2729
|
-
])) :
|
|
2729
|
+
])) : _("", !0),
|
|
2730
2730
|
t("button", {
|
|
2731
2731
|
class: "mobile-burger-wrapper",
|
|
2732
2732
|
"aria-label": "Toggle menu",
|
|
@@ -2736,7 +2736,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2736
2736
|
width: "20",
|
|
2737
2737
|
height: "20",
|
|
2738
2738
|
alt: "burger menu line icon",
|
|
2739
|
-
src: I(
|
|
2739
|
+
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"
|
|
2740
2740
|
}, null, 8, pr)
|
|
2741
2741
|
])
|
|
2742
2742
|
]),
|
|
@@ -2744,18 +2744,18 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2744
2744
|
t("ul", null, [
|
|
2745
2745
|
c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2746
2746
|
]),
|
|
2747
|
-
t("ul",
|
|
2747
|
+
t("ul", fr, [
|
|
2748
2748
|
c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2749
2749
|
c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2750
2750
|
])
|
|
2751
2751
|
], 512), [
|
|
2752
|
-
[Z, I(
|
|
2752
|
+
[Z, I(u)]
|
|
2753
2753
|
])
|
|
2754
2754
|
], 2)
|
|
2755
2755
|
])
|
|
2756
2756
|
]));
|
|
2757
2757
|
}
|
|
2758
|
-
}), gr = /* @__PURE__ */
|
|
2758
|
+
}), gr = /* @__PURE__ */ v(vr, [["__scopeId", "data-v-ca578d77"]]), br = { class: "language__wrapper" }, yr = { class: "language__content" }, kr = { class: "language__headline" }, $r = { class: "language__paragraph" }, wr = { class: "language__links" }, Br = /* @__PURE__ */ g({
|
|
2759
2759
|
__name: "language-switcher",
|
|
2760
2760
|
props: {
|
|
2761
2761
|
headline: {
|
|
@@ -2778,7 +2778,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2778
2778
|
])
|
|
2779
2779
|
]));
|
|
2780
2780
|
}
|
|
2781
|
-
}), Sr = /* @__PURE__ */
|
|
2781
|
+
}), Sr = /* @__PURE__ */ v(Br, [["__scopeId", "data-v-dc8cc97e"]]), Ir = { class: "pagination__wrapper" }, Cr = { class: "pagination__content" }, qr = /* @__PURE__ */ g({
|
|
2782
2782
|
__name: "pagination",
|
|
2783
2783
|
props: {
|
|
2784
2784
|
isPreviousDisabled: {
|
|
@@ -2810,13 +2810,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2810
2810
|
])
|
|
2811
2811
|
]));
|
|
2812
2812
|
}
|
|
2813
|
-
}), Ar = /* @__PURE__ */
|
|
2813
|
+
}), Ar = /* @__PURE__ */ v(qr, [["__scopeId", "data-v-da6d07c9"]]), Lr = {}, Dr = { class: "search__wrapper" };
|
|
2814
2814
|
function Tr(e, a) {
|
|
2815
2815
|
return s(), i("div", Dr, [
|
|
2816
2816
|
c(e.$slots, "default", { class: "search__content" })
|
|
2817
2817
|
]);
|
|
2818
2818
|
}
|
|
2819
|
-
const Vr = /* @__PURE__ */
|
|
2819
|
+
const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3"]]), Pr = { class: "dropdown" }, Fr = ["aria-expanded"], Mr = /* @__PURE__ */ g({
|
|
2820
2820
|
__name: "select-multiple",
|
|
2821
2821
|
props: {
|
|
2822
2822
|
label: { default: "" },
|
|
@@ -2826,30 +2826,30 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2826
2826
|
emits: ["filter", "remove-filter"],
|
|
2827
2827
|
setup(e, { emit: a }) {
|
|
2828
2828
|
const r = C(!1), o = e, l = a;
|
|
2829
|
-
function
|
|
2829
|
+
function u(b) {
|
|
2830
2830
|
o.selectedOptions.includes(b) ? l("remove-filter", b) : l("filter", b);
|
|
2831
2831
|
}
|
|
2832
|
-
function
|
|
2832
|
+
function h() {
|
|
2833
2833
|
r.value = !1;
|
|
2834
2834
|
}
|
|
2835
|
-
const
|
|
2836
|
-
return (b,
|
|
2835
|
+
const n = A(() => o.options.length > 8);
|
|
2836
|
+
return (b, f) => {
|
|
2837
2837
|
const k = _e("click-outside");
|
|
2838
2838
|
return U((s(), i("div", Pr, [
|
|
2839
2839
|
t("button", {
|
|
2840
2840
|
class: "dropdown-button",
|
|
2841
2841
|
style: x({ "z-index": r.value ? 2 : 0 }),
|
|
2842
2842
|
"aria-expanded": r.value ? "true" : "false",
|
|
2843
|
-
onClick:
|
|
2843
|
+
onClick: f[0] || (f[0] = (w) => r.value = !r.value)
|
|
2844
2844
|
}, [
|
|
2845
2845
|
c(b.$slots, "button", {}, () => [
|
|
2846
2846
|
J(d(b.label), 1)
|
|
2847
2847
|
], !0)
|
|
2848
2848
|
], 12, Fr),
|
|
2849
2849
|
t("div", {
|
|
2850
|
-
class: p([{ hidden: !r.value, "adjust-height":
|
|
2850
|
+
class: p([{ hidden: !r.value, "adjust-height": n.value }, "dropdown-content"])
|
|
2851
2851
|
}, [
|
|
2852
|
-
(s(!0), i(T, null, V(b.options, (w) => (s(), L(I(
|
|
2852
|
+
(s(!0), i(T, null, V(b.options, (w) => (s(), L(I(fe), {
|
|
2853
2853
|
id: w.value,
|
|
2854
2854
|
key: w.value,
|
|
2855
2855
|
name: w.text,
|
|
@@ -2857,7 +2857,7 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2857
2857
|
disabled: !1,
|
|
2858
2858
|
value: w.value,
|
|
2859
2859
|
checked: b.selectedOptions.includes(w.value),
|
|
2860
|
-
onInput: (te) =>
|
|
2860
|
+
onInput: (te) => u(w.value)
|
|
2861
2861
|
}, {
|
|
2862
2862
|
default: y(() => [
|
|
2863
2863
|
J(d(w.text), 1)
|
|
@@ -2866,11 +2866,11 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2866
2866
|
}, 1032, ["id", "name", "value", "checked", "onInput"]))), 128))
|
|
2867
2867
|
], 2)
|
|
2868
2868
|
])), [
|
|
2869
|
-
[k,
|
|
2869
|
+
[k, h]
|
|
2870
2870
|
]);
|
|
2871
2871
|
};
|
|
2872
2872
|
}
|
|
2873
|
-
}),
|
|
2873
|
+
}), Or = /* @__PURE__ */ v(Mr, [["__scopeId", "data-v-164647da"]]), zr = { class: "promo__content" }, Hr = { class: "pallet-jack__media-wrap" }, Rr = { class: "pallet-jack-link" }, Nr = { class: "pallet-jack__media-wrap__inner-wrap" }, Er = { class: "pallet-jack__media-wrap__content-wrap" }, jr = { class: "regular-blue" }, Kr = /* @__PURE__ */ g({
|
|
2874
2874
|
__name: "pallet-jack",
|
|
2875
2875
|
props: {
|
|
2876
2876
|
label: { default: "" },
|
|
@@ -2889,14 +2889,14 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2889
2889
|
light: "promo__wrapper--light",
|
|
2890
2890
|
default: "promo__wrapper--default"
|
|
2891
2891
|
}, r = e, o = A(() => a[r.variant]);
|
|
2892
|
-
return (l,
|
|
2892
|
+
return (l, u) => (s(), i("div", {
|
|
2893
2893
|
class: p([
|
|
2894
2894
|
"promo__wrapper",
|
|
2895
2895
|
o.value,
|
|
2896
2896
|
l.teaser ? "promo__wrapper--teaser" : ""
|
|
2897
2897
|
])
|
|
2898
2898
|
}, [
|
|
2899
|
-
t("div",
|
|
2899
|
+
t("div", zr, [
|
|
2900
2900
|
t("div", {
|
|
2901
2901
|
class: p([
|
|
2902
2902
|
"promo__video",
|
|
@@ -2926,7 +2926,7 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2926
2926
|
key: 0,
|
|
2927
2927
|
text: l.label,
|
|
2928
2928
|
"label-dark": l.variant === "dark"
|
|
2929
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
2929
|
+
}, null, 8, ["text", "label-dark"])) : _("", !0),
|
|
2930
2930
|
t("div", {
|
|
2931
2931
|
class: p([
|
|
2932
2932
|
"promo__title",
|
|
@@ -2944,7 +2944,7 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2944
2944
|
c(l.$slots, "promo-link")
|
|
2945
2945
|
]),
|
|
2946
2946
|
_: 3
|
|
2947
|
-
}, 8, ["link-type"])) :
|
|
2947
|
+
}, 8, ["link-type"])) : _("", !0),
|
|
2948
2948
|
l.linkType === "button" ? (s(), L(P, {
|
|
2949
2949
|
key: 2,
|
|
2950
2950
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
@@ -2953,19 +2953,19 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2953
2953
|
c(l.$slots, "promo-link")
|
|
2954
2954
|
]),
|
|
2955
2955
|
_: 3
|
|
2956
|
-
}, 8, ["link-type"])) :
|
|
2956
|
+
}, 8, ["link-type"])) : _("", !0)
|
|
2957
2957
|
], 2)
|
|
2958
2958
|
])
|
|
2959
2959
|
], 2));
|
|
2960
2960
|
}
|
|
2961
|
-
}), Ur = /* @__PURE__ */
|
|
2961
|
+
}), Ur = /* @__PURE__ */ v(Kr, [["__scopeId", "data-v-00c0bad3"]]), Jr = {
|
|
2962
2962
|
install: (e) => {
|
|
2963
|
-
e.component("AtomButton", se), e.component("AtomCheckbox",
|
|
2963
|
+
e.component("AtomButton", se), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", F), e.component("AtomLabel", X), e.component("AtomLink", P), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Or), e.component("AtomSlider", Bt), e.component("AtomTextarea", Tt), e.component("AtomTextField", jt), e.component("AtomVideo", ee), e.component("MoleculeAddress", la), e.component("MoleculeBulletList", ca), e.component("MoleculeCard", ma), e.component("MoleculeColumnCard", ge), e.component("MoleculeEventCard", qa), e.component("MoleculeFlashcard", be), e.component("MoleculeModal", ve), e.component("MoleculeTextCard", Ua), e.component("BlockAccordion", ao), e.component("BlockFacts", So), e.component("BlockFeatures", Vo), e.component("BlockFlashcards", zo), e.component("BlockFormScript", Go), e.component("BlockHeadline", Qo), e.component("BlockHero", ds), e.component("BlockImage", ms), e.component("BlockImageGallery", ys), e.component("BlockLogoWall", As), e.component("BlockMicroStories", Ps), e.component("BlockPolicy", Hs), e.component("BlockProductHero", Ws), e.component("BlockPromo", Zs), e.component("BlockQuote", cl), e.component("BlockRichText", ml), e.component("BlockRichTextColumns", $l), e.component("BlockTimeline", Tl), e.component("BlockCardDisplay", co), e.component("BlockColumnGrid", fo), e.component("BlockVimeo", zl), e.component("BlockPalletJack", Ur), e.component("BlockFrontPageHero", ei), e.component("Organism404", ii), e.component("OrganismFilter", _i), e.component("OrganismFooter", Ni), e.component("OrganismHeader", gr), e.component("OrganismLanguageSwitcher", Sr), e.component("OrganismPagination", Ar), e.component("OrganismSearch", Vr);
|
|
2964
2964
|
}
|
|
2965
2965
|
};
|
|
2966
2966
|
export {
|
|
2967
2967
|
se as AtomButton,
|
|
2968
|
-
|
|
2968
|
+
fe as AtomCheckbox,
|
|
2969
2969
|
Ne as AtomChip,
|
|
2970
2970
|
Ye as AtomDropdown,
|
|
2971
2971
|
F as AtomImage,
|
|
@@ -2973,17 +2973,17 @@ export {
|
|
|
2973
2973
|
P as AtomLink,
|
|
2974
2974
|
rt as AtomRadioButton,
|
|
2975
2975
|
ht as AtomSelect,
|
|
2976
|
-
|
|
2976
|
+
Or as AtomSelectMultiple,
|
|
2977
2977
|
Bt as AtomSlider,
|
|
2978
2978
|
jt as AtomTextField,
|
|
2979
2979
|
Tt as AtomTextarea,
|
|
2980
2980
|
ee as AtomVideo,
|
|
2981
2981
|
ao as BlockAccordion,
|
|
2982
2982
|
co as BlockCardDisplay,
|
|
2983
|
-
|
|
2983
|
+
fo as BlockColumnGrid,
|
|
2984
2984
|
So as BlockFacts,
|
|
2985
2985
|
Vo as BlockFeatures,
|
|
2986
|
-
|
|
2986
|
+
zo as BlockFlashcards,
|
|
2987
2987
|
Go as BlockFormScript,
|
|
2988
2988
|
ei as BlockFrontPageHero,
|
|
2989
2989
|
Qo as BlockHeadline,
|
|
@@ -3000,14 +3000,14 @@ export {
|
|
|
3000
3000
|
ml as BlockRichText,
|
|
3001
3001
|
$l as BlockRichTextColumns,
|
|
3002
3002
|
Tl as BlockTimeline,
|
|
3003
|
-
|
|
3003
|
+
zl as BlockVimeo,
|
|
3004
3004
|
la as MoleculeAddress,
|
|
3005
3005
|
ca as MoleculeBulletList,
|
|
3006
3006
|
ma as MoleculeCard,
|
|
3007
3007
|
ge as MoleculeColumnCard,
|
|
3008
3008
|
qa as MoleculeEventCard,
|
|
3009
3009
|
be as MoleculeFlashcard,
|
|
3010
|
-
|
|
3010
|
+
ve as MoleculeModal,
|
|
3011
3011
|
Ua as MoleculeTextCard,
|
|
3012
3012
|
ii as Organism404,
|
|
3013
3013
|
_i as OrganismFilter,
|