@mirweb/mir-web-components 1.9.0 → 1.10.0
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.
- package/dist/components/blocks/column-grid/column-grid.vue.d.ts +1 -1
- package/dist/components/molecules/column-card/column-card.vue.d.ts +1 -1
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +787 -745
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as g, computed as q, openBlock as
|
|
1
|
+
import { defineComponent as g, computed as q, openBlock as s, createElementBlock as i, normalizeClass as h, toDisplayString as c, createElementVNode as t, renderSlot as d, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as K, Fragment as V, renderList as P, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as F, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as T, createCommentVNode as _, watchEffect as pe, withKeys as Ce, useSlots as Te, normalizeStyle as ee, isRef as x, unref as I, onMounted as me, watch as Q, onUnmounted as qe } from "vue";
|
|
2
2
|
const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -14,18 +14,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
14
14
|
close: "close",
|
|
15
15
|
next: "next",
|
|
16
16
|
previous: "previous"
|
|
17
|
-
}, r = e,
|
|
18
|
-
return (o, u) => (
|
|
19
|
-
class: h(["button", "button--" +
|
|
17
|
+
}, r = e, l = q(() => a[r.variant]);
|
|
18
|
+
return (o, u) => (s(), i("button", {
|
|
19
|
+
class: h(["button", "button--" + l.value]),
|
|
20
20
|
"aria-label": o.ariaLabel
|
|
21
|
-
},
|
|
21
|
+
}, c(l.value === "close" ? "" : o.buttonText), 11, Ae));
|
|
22
22
|
}
|
|
23
23
|
}), v = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
|
-
for (const [
|
|
26
|
-
r[
|
|
25
|
+
for (const [l, o] of a)
|
|
26
|
+
r[l] = o;
|
|
27
27
|
return r;
|
|
28
|
-
},
|
|
28
|
+
}, se = /* @__PURE__ */ v(Le, [["__scopeId", "data-v-f61b579c"]]), De = (e) => (H("data-v-d8d77aaf"), e = e(), R(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ De(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
|
|
29
29
|
__name: "checkbox",
|
|
30
30
|
props: {
|
|
31
31
|
name: { default: "checkbox" },
|
|
@@ -37,11 +37,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
37
37
|
},
|
|
38
38
|
emits: ["input"],
|
|
39
39
|
setup(e, { emit: a }) {
|
|
40
|
-
const r = a,
|
|
40
|
+
const r = a, l = (o) => {
|
|
41
41
|
const u = o.target;
|
|
42
42
|
r("input", u.checked);
|
|
43
43
|
};
|
|
44
|
-
return (o, u) => (
|
|
44
|
+
return (o, u) => (s(), i("div", {
|
|
45
45
|
class: h(["checkbox__wrapper", o.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
47
|
t("input", {
|
|
@@ -53,14 +53,14 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
53
53
|
required: o.required,
|
|
54
54
|
checked: o.checked,
|
|
55
55
|
class: "checkbox__checkbox",
|
|
56
|
-
onChange:
|
|
56
|
+
onChange: l
|
|
57
57
|
}, null, 40, Ve),
|
|
58
58
|
t("label", {
|
|
59
59
|
for: o.id,
|
|
60
60
|
class: h(["checkbox__label", o.required ? "required" : ""])
|
|
61
61
|
}, [
|
|
62
62
|
Fe,
|
|
63
|
-
|
|
63
|
+
d(o.$slots, "default", {}, void 0, !0)
|
|
64
64
|
], 10, Pe)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
@@ -76,20 +76,20 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
76
76
|
emits: ["remove-chip"],
|
|
77
77
|
setup(e) {
|
|
78
78
|
const a = e, r = q(() => `Chip: ${a.text}`);
|
|
79
|
-
return (
|
|
79
|
+
return (l, o) => (s(), i("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick: o[0] || (o[0] = (u) =>
|
|
81
|
+
onClick: o[0] || (o[0] = (u) => l.$emit("remove-chip"))
|
|
82
82
|
}, [
|
|
83
83
|
t("span", {
|
|
84
84
|
class: "chip",
|
|
85
85
|
"aria-label": r.value
|
|
86
86
|
}, [
|
|
87
|
-
J(
|
|
87
|
+
J(c(l.text) + " ", 1),
|
|
88
88
|
He
|
|
89
89
|
], 8, ze)
|
|
90
90
|
]));
|
|
91
91
|
}
|
|
92
|
-
}), Ne = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-2e1e44c1"]]), Ee = ["value"], je = ["id"],
|
|
92
|
+
}), Ne = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-2e1e44c1"]]), Ee = ["value"], je = ["id"], Ge = { class: "listbox__dropdown" }, Ke = ["id", "aria-labelledby", "aria-disabled"], Ue = ["aria-labelledby", "aria-activedescendant"], Je = ["aria-selected", "data-value"], We = /* @__PURE__ */ g({
|
|
93
93
|
__name: "dropdown",
|
|
94
94
|
props: {
|
|
95
95
|
modelValue: {},
|
|
@@ -107,9 +107,9 @@ const Ae = ["aria-label"], Le = /* @__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 m =
|
|
112
|
-
(B) => B.value ===
|
|
110
|
+
}, l = e, o = q(() => r[l.variant]), u = C(null), p = C(null), n = C([]), b = C(0), f = C(""), k = C(!0), w = C(0), ae = a, re = q(() => {
|
|
111
|
+
const m = l.options.find(
|
|
112
|
+
(B) => B.value === l.modelValue
|
|
113
113
|
);
|
|
114
114
|
return m && m.label;
|
|
115
115
|
});
|
|
@@ -119,20 +119,20 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
119
119
|
function de(m) {
|
|
120
120
|
var A;
|
|
121
121
|
const B = m.target;
|
|
122
|
-
B.getAttribute("role") === "option" && (W(B),
|
|
122
|
+
B.getAttribute("role") === "option" && (W(B), le(), (A = u.value) == null || A.focus());
|
|
123
123
|
}
|
|
124
|
-
function
|
|
124
|
+
function U(m) {
|
|
125
125
|
var A;
|
|
126
126
|
const B = m.key;
|
|
127
127
|
switch (B) {
|
|
128
128
|
case "ArrowUp":
|
|
129
129
|
case "ArrowDown": {
|
|
130
130
|
m.preventDefault();
|
|
131
|
-
const
|
|
132
|
-
(Y) => Y.value ===
|
|
131
|
+
const D = l.options.findIndex(
|
|
132
|
+
(Y) => Y.value === l.modelValue
|
|
133
133
|
);
|
|
134
|
-
let N =
|
|
135
|
-
B === "ArrowUp" ?
|
|
134
|
+
let N = D ? n.value[D] : n.value[0];
|
|
135
|
+
B === "ArrowUp" ? D - 1 >= 0 && (N = n.value[D - 1]) : D + 1 <= l.options.length && (N = n.value[D + 1]), N && W(N);
|
|
136
136
|
break;
|
|
137
137
|
}
|
|
138
138
|
case "Home":
|
|
@@ -145,21 +145,21 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
145
145
|
break;
|
|
146
146
|
case "Enter":
|
|
147
147
|
case "Escape":
|
|
148
|
-
m.preventDefault(),
|
|
148
|
+
m.preventDefault(), le(), (A = u.value) == null || A.focus();
|
|
149
149
|
break;
|
|
150
150
|
default: {
|
|
151
|
-
const
|
|
152
|
-
|
|
151
|
+
const D = j(B);
|
|
152
|
+
D && W(D);
|
|
153
153
|
break;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
function oe(m) {
|
|
158
|
-
if (!
|
|
158
|
+
if (!l.disabled)
|
|
159
159
|
switch (m.key) {
|
|
160
160
|
case "ArrowUp":
|
|
161
161
|
case "ArrowDown":
|
|
162
|
-
m.preventDefault(), ue(),
|
|
162
|
+
m.preventDefault(), ue(), U(m);
|
|
163
163
|
break;
|
|
164
164
|
}
|
|
165
165
|
}
|
|
@@ -173,18 +173,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
173
173
|
}
|
|
174
174
|
function j(m) {
|
|
175
175
|
let B = "";
|
|
176
|
-
(f.value === "" || B !== m) && (w.value =
|
|
177
|
-
(
|
|
176
|
+
(f.value === "" || B !== m) && (w.value = l.options.findIndex(
|
|
177
|
+
(D) => D.value === l.modelValue
|
|
178
178
|
)), f.value = B === m ? m : f.value + m, B = m, $();
|
|
179
|
-
let A =
|
|
179
|
+
let A = G(
|
|
180
180
|
w.value + 1,
|
|
181
|
-
|
|
181
|
+
l.options.length
|
|
182
182
|
);
|
|
183
|
-
return !A && f.value.length === 1 && (A =
|
|
183
|
+
return !A && f.value.length === 1 && (A = G(0, w.value)), w.value = (w.value + 1) % l.options.length, A;
|
|
184
184
|
}
|
|
185
|
-
function
|
|
185
|
+
function G(m, B) {
|
|
186
186
|
for (let A = m; A < B; A++)
|
|
187
|
-
if (
|
|
187
|
+
if (l.options[A].label && l.options[A].label.toUpperCase().indexOf(f.value.toUpperCase()) === 0)
|
|
188
188
|
return n.value[A];
|
|
189
189
|
return null;
|
|
190
190
|
}
|
|
@@ -192,11 +192,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
192
192
|
W(n.value[0]);
|
|
193
193
|
}
|
|
194
194
|
function W(m) {
|
|
195
|
-
var A,
|
|
195
|
+
var A, D;
|
|
196
196
|
const B = m.getAttribute("data-value");
|
|
197
|
-
if (
|
|
198
|
-
const N =
|
|
199
|
-
(Be) => Be.value ===
|
|
197
|
+
if (l.modelValue) {
|
|
198
|
+
const N = l.options.findIndex(
|
|
199
|
+
(Be) => Be.value === l.modelValue
|
|
200
200
|
), Y = n.value[N];
|
|
201
201
|
ce(Y);
|
|
202
202
|
}
|
|
@@ -205,15 +205,15 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
205
205
|
B || ""
|
|
206
206
|
), ne(B || ""), p.value && p.value.scrollHeight > p.value.clientHeight) {
|
|
207
207
|
const N = p.value.clientHeight + p.value.scrollTop, Y = m.offsetTop + m.offsetHeight;
|
|
208
|
-
Y > N ? p.value.scrollTop = Y - ((
|
|
208
|
+
Y > N ? p.value.scrollTop = Y - ((D = p.value) == null ? void 0 : D.clientHeight) : m.offsetTop < p.value.scrollTop && (p.value.scrollTop = m.offsetTop);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
function $e() {
|
|
212
212
|
var B;
|
|
213
|
-
const m = (B = n.value) == null ? void 0 : B[
|
|
213
|
+
const m = (B = n.value) == null ? void 0 : B[l.options.length - 1];
|
|
214
214
|
W(m);
|
|
215
215
|
}
|
|
216
|
-
function
|
|
216
|
+
function le() {
|
|
217
217
|
var m;
|
|
218
218
|
k.value = !0, (m = u.value) == null || m.removeAttribute("aria-expanded");
|
|
219
219
|
}
|
|
@@ -222,11 +222,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
222
222
|
k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B = p.value) == null || B.focus();
|
|
223
223
|
}
|
|
224
224
|
function we() {
|
|
225
|
-
|
|
225
|
+
l.disabled || (k.value ? ue() : le());
|
|
226
226
|
}
|
|
227
227
|
return (m, B) => {
|
|
228
228
|
const A = _e("click-outside");
|
|
229
|
-
return
|
|
229
|
+
return s(), i("div", {
|
|
230
230
|
ref: "listbox",
|
|
231
231
|
class: "listbox__wrapper",
|
|
232
232
|
value: m.modelValue
|
|
@@ -238,8 +238,8 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
238
238
|
"is-disabled": m.disabled,
|
|
239
239
|
"is-required": m.required
|
|
240
240
|
}, "listbox__label"])
|
|
241
|
-
},
|
|
242
|
-
|
|
241
|
+
}, c(m.label), 11, je),
|
|
242
|
+
K((s(), i("div", Ge, [
|
|
243
243
|
t("button", {
|
|
244
244
|
id: `${m.name}-button-label`,
|
|
245
245
|
ref_key: "listboxButton",
|
|
@@ -251,8 +251,8 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
251
251
|
class: h(["listbox__button", o.value]),
|
|
252
252
|
onClick: we,
|
|
253
253
|
onKeydown: oe
|
|
254
|
-
},
|
|
255
|
-
|
|
254
|
+
}, c(m.modelValue ? re.value : m.placeholder), 43, Ke),
|
|
255
|
+
K(t("ul", {
|
|
256
256
|
ref_key: "listboxNode",
|
|
257
257
|
ref: p,
|
|
258
258
|
"aria-labelledby": `${m.name}-label`,
|
|
@@ -260,24 +260,24 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
260
260
|
tabindex: "0",
|
|
261
261
|
role: "listbox",
|
|
262
262
|
class: "listbox__list",
|
|
263
|
-
onKeydown:
|
|
263
|
+
onKeydown: U,
|
|
264
264
|
onClick: de
|
|
265
265
|
}, [
|
|
266
|
-
(
|
|
266
|
+
(s(!0), i(V, null, P(m.options, (D, N) => (s(), i("li", {
|
|
267
267
|
key: `${m.name}-option-${N}`,
|
|
268
268
|
ref_for: !0,
|
|
269
269
|
ref_key: "listboxOptions",
|
|
270
270
|
ref: n,
|
|
271
|
-
"aria-selected":
|
|
272
|
-
"data-value":
|
|
271
|
+
"aria-selected": D.value === m.modelValue,
|
|
272
|
+
"data-value": D.value,
|
|
273
273
|
class: "listbox__option",
|
|
274
274
|
role: "option"
|
|
275
|
-
},
|
|
276
|
-
], 40,
|
|
275
|
+
}, c(D.label), 9, Je))), 128))
|
|
276
|
+
], 40, Ue), [
|
|
277
277
|
[Z, !k.value]
|
|
278
278
|
])
|
|
279
279
|
])), [
|
|
280
|
-
[A,
|
|
280
|
+
[A, le]
|
|
281
281
|
])
|
|
282
282
|
], 8, Ee);
|
|
283
283
|
};
|
|
@@ -294,11 +294,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
294
294
|
loading: { default: "auto" }
|
|
295
295
|
},
|
|
296
296
|
setup(e) {
|
|
297
|
-
return (a, r) => (
|
|
298
|
-
|
|
297
|
+
return (a, r) => (s(), i("div", Qe, [
|
|
298
|
+
d(a.$slots, "default", O(z(a.$attrs)))
|
|
299
299
|
]));
|
|
300
300
|
}
|
|
301
|
-
}),
|
|
301
|
+
}), M = /* @__PURE__ */ v(Ze, [["__scopeId", "data-v-4f7fe350"]]), Xe = { class: "label__wrapper" }, xe = ["aria-label", "label-dark"], et = /* @__PURE__ */ g({
|
|
302
302
|
__name: "label",
|
|
303
303
|
props: {
|
|
304
304
|
text: {},
|
|
@@ -306,15 +306,15 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
306
306
|
},
|
|
307
307
|
setup(e) {
|
|
308
308
|
const a = e, r = q(() => `Label: ${a.text}`);
|
|
309
|
-
return (
|
|
309
|
+
return (l, o) => (s(), i("div", Xe, [
|
|
310
310
|
t("span", {
|
|
311
311
|
"aria-label": r.value,
|
|
312
|
-
"label-dark":
|
|
313
|
-
class: h(
|
|
314
|
-
},
|
|
312
|
+
"label-dark": l.labelDark,
|
|
313
|
+
class: h(l.labelDark ? "label--dark" : "label--light")
|
|
314
|
+
}, c(l.text), 11, xe)
|
|
315
315
|
]));
|
|
316
316
|
}
|
|
317
|
-
}), X = /* @__PURE__ */ v(et, [["__scopeId", "data-v-7d9d3a8a"]]), tt = { class: "link__wrapper" },
|
|
317
|
+
}), X = /* @__PURE__ */ v(et, [["__scopeId", "data-v-7d9d3a8a"]]), tt = { class: "link__wrapper" }, L = /* @__PURE__ */ g({
|
|
318
318
|
__name: "link",
|
|
319
319
|
props: {
|
|
320
320
|
linkType: { default: "regular" },
|
|
@@ -336,12 +336,12 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
336
336
|
hover: "underline-hover",
|
|
337
337
|
true: "add-underline",
|
|
338
338
|
false: "remove-underline"
|
|
339
|
-
},
|
|
340
|
-
const { ...n } = Se(
|
|
339
|
+
}, l = e, o = q(() => a[l.linkType]), u = q(() => r[l.underline]), p = q(() => {
|
|
340
|
+
const { ...n } = Se(l);
|
|
341
341
|
return n;
|
|
342
342
|
});
|
|
343
|
-
return (n, b) => (
|
|
344
|
-
t("div",
|
|
343
|
+
return (n, b) => (s(), i("div", tt, [
|
|
344
|
+
t("div", F(p.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
346
|
o.value,
|
|
347
347
|
n.disabled ? "disabled" : "",
|
|
@@ -349,11 +349,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
349
349
|
n.arrow ? "link-arrow" : ""
|
|
350
350
|
]]
|
|
351
351
|
}), [
|
|
352
|
-
|
|
352
|
+
d(n.$slots, "default")
|
|
353
353
|
], 16)
|
|
354
354
|
]));
|
|
355
355
|
}
|
|
356
|
-
}), at = (e) => (H("data-v-60c6ff7e"), e = e(), R(), e), ot = ["id", "name", "value", "checked", "disabled", "required"],
|
|
356
|
+
}), at = (e) => (H("data-v-60c6ff7e"), e = e(), R(), e), ot = ["id", "name", "value", "checked", "disabled", "required"], lt = ["for"], st = /* @__PURE__ */ at(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), it = /* @__PURE__ */ g({
|
|
357
357
|
__name: "radio-button",
|
|
358
358
|
props: {
|
|
359
359
|
name: { default: "radio" },
|
|
@@ -365,11 +365,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
365
365
|
},
|
|
366
366
|
emits: ["input"],
|
|
367
367
|
setup(e, { emit: a }) {
|
|
368
|
-
const r = a,
|
|
368
|
+
const r = a, l = (o) => {
|
|
369
369
|
const u = o.target;
|
|
370
370
|
r("input", u.checked);
|
|
371
371
|
};
|
|
372
|
-
return (o, u) => (
|
|
372
|
+
return (o, u) => (s(), i("div", {
|
|
373
373
|
class: h(["radio__wrapper", o.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
375
|
t("input", {
|
|
@@ -381,15 +381,15 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
381
381
|
disabled: o.disabled,
|
|
382
382
|
required: o.required,
|
|
383
383
|
class: "radio__radio",
|
|
384
|
-
onChange:
|
|
384
|
+
onChange: l
|
|
385
385
|
}, null, 40, ot),
|
|
386
386
|
t("label", {
|
|
387
387
|
for: o.id,
|
|
388
388
|
class: h(["radio__label", o.required ? "required" : ""])
|
|
389
389
|
}, [
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
], 10,
|
|
390
|
+
st,
|
|
391
|
+
d(o.$slots, "default", {}, void 0, !0)
|
|
392
|
+
], 10, lt)
|
|
393
393
|
], 2));
|
|
394
394
|
}
|
|
395
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({
|
|
@@ -405,25 +405,25 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
405
405
|
},
|
|
406
406
|
emits: ["update:modelValue"],
|
|
407
407
|
setup(e) {
|
|
408
|
-
return (a, r) => (
|
|
408
|
+
return (a, r) => (s(), i("div", nt, [
|
|
409
409
|
t("label", {
|
|
410
410
|
for: a.id,
|
|
411
411
|
class: h([a.required ? "required" : "", a.disabled ? "disabled" : ""])
|
|
412
|
-
},
|
|
412
|
+
}, c(a.label), 11, dt),
|
|
413
413
|
t("select", {
|
|
414
414
|
id: a.id,
|
|
415
415
|
class: h(a.disabled ? "disabled" : ""),
|
|
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] = (l) => {
|
|
420
|
+
a.$emit("update:modelValue", l.target.value), l.target.blur();
|
|
421
421
|
})
|
|
422
422
|
}, [
|
|
423
|
-
(
|
|
424
|
-
key:
|
|
425
|
-
value:
|
|
426
|
-
},
|
|
423
|
+
(s(!0), i(V, null, P(a.options, (l) => (s(), i("option", {
|
|
424
|
+
key: l.value,
|
|
425
|
+
value: l.value
|
|
426
|
+
}, c(l.text), 9, ut))), 128))
|
|
427
427
|
], 42, ct)
|
|
428
428
|
]));
|
|
429
429
|
}
|
|
@@ -435,16 +435,16 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
435
435
|
},
|
|
436
436
|
emits: ["update:show"],
|
|
437
437
|
setup(e, { emit: a }) {
|
|
438
|
-
const r = e,
|
|
439
|
-
|
|
438
|
+
const r = e, l = a, o = () => {
|
|
439
|
+
l("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (u, p) => (
|
|
441
|
+
return (u, p) => (s(), i("div", pt, [
|
|
442
442
|
S(Ie, {
|
|
443
443
|
duration: 300,
|
|
444
444
|
name: "nested"
|
|
445
445
|
}, {
|
|
446
446
|
default: y(() => [
|
|
447
|
-
|
|
447
|
+
K(t("dialog", {
|
|
448
448
|
class: h(["overlay", u.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
@@ -457,14 +457,14 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
459
|
t("div", null, [
|
|
460
|
-
u.searchBar ? _("", !0) : (
|
|
460
|
+
u.searchBar ? _("", !0) : (s(), T(se, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
464
|
onClick: o
|
|
465
465
|
}))
|
|
466
466
|
]),
|
|
467
|
-
|
|
467
|
+
d(u.$slots, "default", {}, void 0, !0)
|
|
468
468
|
], 2)
|
|
469
469
|
], 2), [
|
|
470
470
|
[Z, u.show]
|
|
@@ -490,25 +490,25 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
490
490
|
},
|
|
491
491
|
emits: ["update:modelValue"],
|
|
492
492
|
setup(e, { emit: a }) {
|
|
493
|
-
const r = e,
|
|
493
|
+
const r = e, l = a, o = C(r.modelValue), u = C(), p = C(!1), n = (f, k, w) => (f - k) / (w - k) * 100, b = (f) => {
|
|
494
494
|
var k;
|
|
495
495
|
(k = u.value) == null || k.style.setProperty("--ProgressPercent", `${f}%`);
|
|
496
496
|
};
|
|
497
497
|
return pe(() => {
|
|
498
498
|
if (u.value) {
|
|
499
|
-
|
|
499
|
+
l("update:modelValue", o.value);
|
|
500
500
|
const f = n(o.value, r.min, r.max);
|
|
501
501
|
let k = (50 - f) / 100;
|
|
502
502
|
b(f + k);
|
|
503
503
|
}
|
|
504
|
-
}), (f, k) => (
|
|
504
|
+
}), (f, k) => (s(), i("div", null, [
|
|
505
505
|
t("div", ft, [
|
|
506
506
|
t("div", vt, [
|
|
507
507
|
t("label", {
|
|
508
508
|
for: f.id,
|
|
509
509
|
class: h([f.variant, ""])
|
|
510
|
-
},
|
|
511
|
-
f.information ? (
|
|
510
|
+
}, c(f.label), 11, gt),
|
|
511
|
+
f.information ? (s(), i("i", {
|
|
512
512
|
key: 0,
|
|
513
513
|
role: "button",
|
|
514
514
|
class: h([f.variant, "slider__information"]),
|
|
@@ -522,7 +522,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
522
522
|
t("div", yt, [
|
|
523
523
|
t("span", {
|
|
524
524
|
class: h([f.variant, "slider__minmax"])
|
|
525
|
-
},
|
|
525
|
+
}, c(f.min), 3),
|
|
526
526
|
t("input", {
|
|
527
527
|
id: f.id,
|
|
528
528
|
ref_key: "slider",
|
|
@@ -538,25 +538,25 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
538
538
|
}, null, 42, kt),
|
|
539
539
|
t("span", {
|
|
540
540
|
class: h([f.variant, "slider__minmax"])
|
|
541
|
-
},
|
|
541
|
+
}, c(f.max), 3)
|
|
542
542
|
]),
|
|
543
543
|
t("span", {
|
|
544
544
|
class: h([f.variant, "slider__value"])
|
|
545
|
-
},
|
|
545
|
+
}, c(f.modelValue), 3)
|
|
546
546
|
]),
|
|
547
|
-
f.information ? (
|
|
547
|
+
f.information ? (s(), T(ve, {
|
|
548
548
|
key: 0,
|
|
549
549
|
show: p.value,
|
|
550
550
|
"onUpdate:show": k[3] || (k[3] = (w) => p.value = w)
|
|
551
551
|
}, {
|
|
552
552
|
default: y(() => [
|
|
553
|
-
t("p", $t,
|
|
553
|
+
t("p", $t, c(f.information), 1)
|
|
554
554
|
]),
|
|
555
555
|
_: 1
|
|
556
556
|
}, 8, ["show"])) : _("", !0)
|
|
557
557
|
]));
|
|
558
558
|
}
|
|
559
|
-
}), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { class: "textarea-wrapper" }, It = ["for"], Ct = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"],
|
|
559
|
+
}), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { class: "textarea-wrapper" }, It = ["for"], Ct = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], Tt = { class: "textarea-info" }, qt = { key: 0 }, At = /* @__PURE__ */ g({
|
|
560
560
|
__name: "textarea",
|
|
561
561
|
props: {
|
|
562
562
|
id: { default: "" },
|
|
@@ -570,11 +570,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
570
570
|
},
|
|
571
571
|
emits: ["update:modelValue"],
|
|
572
572
|
setup(e) {
|
|
573
|
-
return (a, r) => (
|
|
573
|
+
return (a, r) => (s(), i("div", St, [
|
|
574
574
|
t("label", {
|
|
575
575
|
for: a.id,
|
|
576
576
|
class: h({ required: a.required })
|
|
577
|
-
},
|
|
577
|
+
}, c(a.labelText) + c(a.required ? " *" : ""), 11, It),
|
|
578
578
|
t("div", {
|
|
579
579
|
class: h(
|
|
580
580
|
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "textarea-wrapper__inner" : ""
|
|
@@ -593,18 +593,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
593
593
|
class: h(
|
|
594
594
|
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit" : "border"
|
|
595
595
|
),
|
|
596
|
-
onInput: r[0] || (r[0] = (
|
|
596
|
+
onInput: r[0] || (r[0] = (l) => a.$emit("update:modelValue", l.target.value))
|
|
597
597
|
}, null, 42, Ct)
|
|
598
598
|
], 2),
|
|
599
|
-
t("div",
|
|
599
|
+
t("div", Tt, [
|
|
600
600
|
t("div", null, [
|
|
601
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (
|
|
601
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (s(), i("p", qt, " Too many characters. Please make it shorter ")) : _("", !0)
|
|
602
602
|
]),
|
|
603
603
|
t("p", {
|
|
604
604
|
class: h(
|
|
605
605
|
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit-meter" : ""
|
|
606
606
|
)
|
|
607
|
-
},
|
|
607
|
+
}, c(a.maxLength !== void 0 && a.modelValue !== void 0 && a.maxLength - a.modelValue.length >= 0 ? a.modelValue.length : 0) + " / " + c(a.maxLength), 3)
|
|
608
608
|
])
|
|
609
609
|
]));
|
|
610
610
|
}
|
|
@@ -644,12 +644,12 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
644
644
|
tel: "tel",
|
|
645
645
|
url: "url",
|
|
646
646
|
search: "search"
|
|
647
|
-
}, r = e,
|
|
647
|
+
}, r = e, l = q(() => a[r.type]), o = C(!0), u = q(
|
|
648
648
|
() => o.value ? "showPassword" : "hidePassword"
|
|
649
649
|
), p = q(
|
|
650
650
|
() => o.value ? "password" : "text"
|
|
651
651
|
);
|
|
652
|
-
return (n, b) => (
|
|
652
|
+
return (n, b) => (s(), i("div", Dt, [
|
|
653
653
|
t("label", {
|
|
654
654
|
for: n.id,
|
|
655
655
|
class: h([
|
|
@@ -657,8 +657,8 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
657
657
|
n.disabled ? "disabled" : "",
|
|
658
658
|
n.search ? "search" : ""
|
|
659
659
|
])
|
|
660
|
-
},
|
|
661
|
-
|
|
660
|
+
}, c(n.label), 11, Vt),
|
|
661
|
+
l.value === "password" ? (s(), i("div", Pt, [
|
|
662
662
|
t("input", {
|
|
663
663
|
id: n.id,
|
|
664
664
|
ref: "passwordField",
|
|
@@ -677,11 +677,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
677
677
|
"aria-expanded": !o.value,
|
|
678
678
|
onClick: b[1] || (b[1] = (f) => o.value = !o.value)
|
|
679
679
|
}, null, 10, Mt)
|
|
680
|
-
])) : (
|
|
680
|
+
])) : (s(), i("input", {
|
|
681
681
|
key: 1,
|
|
682
682
|
id: n.id,
|
|
683
683
|
ref: "textField",
|
|
684
|
-
type:
|
|
684
|
+
type: l.value,
|
|
685
685
|
value: n.modelValue,
|
|
686
686
|
placeholder: n.placeholder,
|
|
687
687
|
required: n.required,
|
|
@@ -694,12 +694,12 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
694
694
|
name: n.fieldName,
|
|
695
695
|
onInput: b[2] || (b[2] = (f) => n.$emit("update:modelValue", f.target.value))
|
|
696
696
|
}, null, 42, Ot)),
|
|
697
|
-
n.search ? (
|
|
698
|
-
n.errorMessage ? (
|
|
699
|
-
n.helperText ? (
|
|
697
|
+
n.search ? (s(), i("button", zt)) : _("", !0),
|
|
698
|
+
n.errorMessage ? (s(), i("strong", Ht, c(n.errorMessage), 1)) : _("", !0),
|
|
699
|
+
n.helperText ? (s(), i("span", Rt, c(n.helperText), 1)) : _("", !0)
|
|
700
700
|
]));
|
|
701
701
|
}
|
|
702
|
-
}), Et = /* @__PURE__ */ v(Nt, [["__scopeId", "data-v-1d92973b"]]), jt = { class: "video__wrapper" },
|
|
702
|
+
}), Et = /* @__PURE__ */ v(Nt, [["__scopeId", "data-v-1d92973b"]]), jt = { class: "video__wrapper" }, Gt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Kt = ["src", "aria-label", "title", "width", "height"], Ut = /* @__PURE__ */ g({
|
|
703
703
|
__name: "video",
|
|
704
704
|
props: {
|
|
705
705
|
play: { type: Boolean, default: !1 },
|
|
@@ -717,18 +717,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
717
717
|
},
|
|
718
718
|
setup(e, { expose: a }) {
|
|
719
719
|
const r = e;
|
|
720
|
-
let
|
|
720
|
+
let l = C(null);
|
|
721
721
|
return pe(() => {
|
|
722
|
-
|
|
722
|
+
l.value && (r.play ? l.value.play() : r.play || l.value.pause());
|
|
723
723
|
}), a({
|
|
724
724
|
resetVideo: () => {
|
|
725
|
-
|
|
725
|
+
l.value && (l.value.currentTime = 0, l.value.play());
|
|
726
726
|
}
|
|
727
|
-
}), (u, p) => (
|
|
728
|
-
u.localVideo ? (
|
|
727
|
+
}), (u, p) => (s(), i("div", jt, [
|
|
728
|
+
u.localVideo ? (s(), i("video", {
|
|
729
729
|
key: 0,
|
|
730
730
|
ref_key: "videoRef",
|
|
731
|
-
ref:
|
|
731
|
+
ref: l,
|
|
732
732
|
"aria-label": u.ariaLabel,
|
|
733
733
|
controls: u.controls,
|
|
734
734
|
poster: u.poster,
|
|
@@ -740,7 +740,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
740
740
|
type: "video/mp4",
|
|
741
741
|
playsinline: "",
|
|
742
742
|
src: u.src
|
|
743
|
-
}, null, 8,
|
|
743
|
+
}, null, 8, Gt)) : (s(), i("iframe", {
|
|
744
744
|
key: 1,
|
|
745
745
|
src: u.src,
|
|
746
746
|
"aria-label": u.ariaLabel,
|
|
@@ -750,10 +750,10 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
750
750
|
frameborder: "0",
|
|
751
751
|
allow: "autoplay; fullscreen",
|
|
752
752
|
allowfullscreen: ""
|
|
753
|
-
}, null, 8,
|
|
753
|
+
}, null, 8, Kt))
|
|
754
754
|
]));
|
|
755
755
|
}
|
|
756
|
-
}), te = /* @__PURE__ */ v(
|
|
756
|
+
}), te = /* @__PURE__ */ v(Ut, [["__scopeId", "data-v-c6a0feb6"]]), Jt = { class: "address__wrapper" }, Wt = { class: "address__content" }, Yt = { class: "address__flag" }, Qt = { class: "address__address" }, Zt = { class: "address__name" }, Xt = { key: 0 }, xt = { class: "address__contact" }, ea = ["href"], ta = ["href"], aa = ["href"], oa = /* @__PURE__ */ g({
|
|
757
757
|
__name: "address",
|
|
758
758
|
props: {
|
|
759
759
|
name: {},
|
|
@@ -766,20 +766,20 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
766
766
|
email: {}
|
|
767
767
|
},
|
|
768
768
|
setup(e) {
|
|
769
|
-
return (a, r) => (
|
|
769
|
+
return (a, r) => (s(), i("div", Jt, [
|
|
770
770
|
t("div", Wt, [
|
|
771
771
|
t("div", Yt, [
|
|
772
|
-
|
|
772
|
+
d(a.$slots, "address-flag", {}, void 0, !0)
|
|
773
773
|
]),
|
|
774
774
|
t("div", Qt, [
|
|
775
|
-
t("p", Zt,
|
|
776
|
-
t("p", null,
|
|
777
|
-
t("p", null,
|
|
778
|
-
t("p", null,
|
|
779
|
-
a.addressLine3 ? (
|
|
775
|
+
t("p", Zt, c(a.name), 1),
|
|
776
|
+
t("p", null, c(a.company), 1),
|
|
777
|
+
t("p", null, c(a.addressLine1), 1),
|
|
778
|
+
t("p", null, c(a.addressLine2), 1),
|
|
779
|
+
a.addressLine3 ? (s(), i("p", Xt, c(a.addressLine3), 1)) : _("", !0)
|
|
780
780
|
]),
|
|
781
781
|
t("div", xt, [
|
|
782
|
-
a.website ? (
|
|
782
|
+
a.website ? (s(), T(L, {
|
|
783
783
|
key: 0,
|
|
784
784
|
underline: "false",
|
|
785
785
|
"link-type": "regular"
|
|
@@ -788,32 +788,32 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
788
788
|
t("a", {
|
|
789
789
|
href: "https://" + a.website,
|
|
790
790
|
class: "address__website"
|
|
791
|
-
},
|
|
791
|
+
}, c(a.website), 9, ea)
|
|
792
792
|
]),
|
|
793
793
|
_: 1
|
|
794
794
|
})) : _("", !0),
|
|
795
|
-
(
|
|
796
|
-
key:
|
|
795
|
+
(s(!0), i(V, null, P(a.phoneNumbers, (l) => (s(), T(L, {
|
|
796
|
+
key: l,
|
|
797
797
|
underline: "false",
|
|
798
798
|
"link-type": "regular"
|
|
799
799
|
}, {
|
|
800
800
|
default: y(() => [
|
|
801
801
|
t("a", {
|
|
802
|
-
href: "tel:" +
|
|
802
|
+
href: "tel:" + l,
|
|
803
803
|
class: "address__phone"
|
|
804
|
-
},
|
|
804
|
+
}, c(l), 9, ta)
|
|
805
805
|
]),
|
|
806
806
|
_: 2
|
|
807
807
|
}, 1024))), 128)),
|
|
808
808
|
t("a", {
|
|
809
809
|
href: "mailto:" + a.email,
|
|
810
810
|
class: "address__email"
|
|
811
|
-
},
|
|
811
|
+
}, c(a.email), 9, aa)
|
|
812
812
|
])
|
|
813
813
|
])
|
|
814
814
|
]));
|
|
815
815
|
}
|
|
816
|
-
}),
|
|
816
|
+
}), la = /* @__PURE__ */ v(oa, [["__scopeId", "data-v-6f5f6a44"]]), sa = (e) => (H("data-v-a44fd57d"), e = e(), R(), e), ia = { class: "bullet-list__wrapper" }, ra = /* @__PURE__ */ sa(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), na = /* @__PURE__ */ g({
|
|
817
817
|
__name: "bullet-list",
|
|
818
818
|
props: {
|
|
819
819
|
list: {
|
|
@@ -833,14 +833,14 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
833
833
|
}
|
|
834
834
|
},
|
|
835
835
|
setup(e) {
|
|
836
|
-
return (a, r) => (
|
|
836
|
+
return (a, r) => (s(), i("div", ia, [
|
|
837
837
|
t("div", {
|
|
838
838
|
class: h(["bullet-list", e.variant])
|
|
839
839
|
}, [
|
|
840
840
|
t("ul", null, [
|
|
841
|
-
(
|
|
841
|
+
(s(!0), i(V, null, P(e.list, (l) => (s(), i("li", { key: l }, [
|
|
842
842
|
ra,
|
|
843
|
-
J(" " +
|
|
843
|
+
J(" " + c(l), 1)
|
|
844
844
|
]))), 128))
|
|
845
845
|
])
|
|
846
846
|
], 2)
|
|
@@ -868,9 +868,9 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
868
868
|
},
|
|
869
869
|
emits: ["clicked"],
|
|
870
870
|
setup(e) {
|
|
871
|
-
const a =
|
|
871
|
+
const a = Te();
|
|
872
872
|
let r = C(!1);
|
|
873
|
-
const
|
|
873
|
+
const l = {
|
|
874
874
|
xsmall: {
|
|
875
875
|
class: "card--xsmall",
|
|
876
876
|
width: "241",
|
|
@@ -891,8 +891,8 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
891
891
|
width: "596",
|
|
892
892
|
height: "335"
|
|
893
893
|
}
|
|
894
|
-
}, o = e, u = q(() =>
|
|
895
|
-
return (n, b) => (
|
|
894
|
+
}, o = e, u = q(() => l[o.size]), p = q(() => o.variant === "article" || o.variant === "product" ? `card--${o.size}-${o.variant}` : `card--${o.variant}`);
|
|
895
|
+
return (n, b) => (s(), i("div", ca, [
|
|
896
896
|
t("div", {
|
|
897
897
|
class: h(["card", [
|
|
898
898
|
n.theme === "dark" ? "card--dark" : "card--light",
|
|
@@ -907,9 +907,9 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
907
907
|
onFocus: b[2] || (b[2] = (f) => x(r) ? r.value = !0 : r = !0),
|
|
908
908
|
onBlur: b[3] || (b[3] = (f) => x(r) ? r.value = !1 : r = !1)
|
|
909
909
|
}, [
|
|
910
|
-
n.mediaType === "image" ? (
|
|
910
|
+
n.mediaType === "image" ? (s(), T(M, { key: 0 }, {
|
|
911
911
|
default: y(() => [
|
|
912
|
-
|
|
912
|
+
d(n.$slots, "card-image", F({
|
|
913
913
|
src: n.imgSrc,
|
|
914
914
|
width: "596",
|
|
915
915
|
height: "335",
|
|
@@ -919,7 +919,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
919
919
|
}, { srcset: n.srcSet }))
|
|
920
920
|
]),
|
|
921
921
|
_: 3
|
|
922
|
-
})) : (
|
|
922
|
+
})) : (s(), i("div", {
|
|
923
923
|
key: 1,
|
|
924
924
|
class: h(["video-card__wrapper", I(r) === !0 ? "vimeoPlaying" : ""])
|
|
925
925
|
}, [
|
|
@@ -937,58 +937,80 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
937
937
|
muted: !0
|
|
938
938
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
939
939
|
], 2)),
|
|
940
|
-
I(a)["card-label"] ? (
|
|
941
|
-
|
|
940
|
+
I(a)["card-label"] ? (s(), i("div", ua, [
|
|
941
|
+
d(n.$slots, "card-label")
|
|
942
942
|
])) : _("", !0),
|
|
943
|
-
n.variant === "product" ? (
|
|
943
|
+
n.variant === "product" ? (s(), i("div", {
|
|
944
944
|
key: 3,
|
|
945
945
|
class: h([
|
|
946
946
|
"card__headline",
|
|
947
947
|
n.theme === "dark" ? "regular-dark" : "regular-blue"
|
|
948
948
|
]),
|
|
949
949
|
style: { "font-weight": "700" }
|
|
950
|
-
},
|
|
950
|
+
}, c(n.headline), 3)) : (s(), i("div", {
|
|
951
951
|
key: 4,
|
|
952
952
|
class: h([
|
|
953
953
|
"card__headline",
|
|
954
954
|
n.theme === "dark" ? "regular-dark" : "regular-dark-blue"
|
|
955
955
|
])
|
|
956
|
-
},
|
|
957
|
-
n.variant === "product" ? (
|
|
956
|
+
}, c(n.headline), 3)),
|
|
957
|
+
n.variant === "product" ? (s(), i("p", _a, c(n.paragraph), 1)) : _("", !0)
|
|
958
958
|
], 38)
|
|
959
959
|
]));
|
|
960
960
|
}
|
|
961
|
-
}), pa = /* @__PURE__ */ v(ha, [["__scopeId", "data-v-364d219c"]]), ma = { class: "column-
|
|
961
|
+
}), pa = /* @__PURE__ */ v(ha, [["__scopeId", "data-v-364d219c"]]), ma = { class: "column-card__content" }, fa = { class: "column-card__headline" }, va = { class: "column-card__bodytext" }, ga = /* @__PURE__ */ g({
|
|
962
962
|
__name: "column-card",
|
|
963
963
|
props: {
|
|
964
964
|
headline: {},
|
|
965
965
|
bodytext: {},
|
|
966
966
|
image: {},
|
|
967
|
-
imageFit: { type: Boolean }
|
|
967
|
+
imageFit: { type: Boolean },
|
|
968
|
+
bgColor: { default: "white" },
|
|
969
|
+
linkText: { default: "" },
|
|
970
|
+
linkType: { default: "link" }
|
|
968
971
|
},
|
|
969
972
|
setup(e) {
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
+
const a = {
|
|
974
|
+
white: "",
|
|
975
|
+
light: "column__wrapper--light",
|
|
976
|
+
dark: "column__wrapper--dark mirsaic--dark"
|
|
977
|
+
}, r = e, l = q(
|
|
978
|
+
() => a[r.bgColor || "white"]
|
|
979
|
+
);
|
|
980
|
+
return (o, u) => (s(), i("div", {
|
|
981
|
+
class: h(["column-card", l.value])
|
|
982
|
+
}, [
|
|
983
|
+
t("div", ma, [
|
|
984
|
+
o.image.filename ? (s(), i("div", {
|
|
973
985
|
key: 0,
|
|
974
|
-
class: h(["column-card__image", { cover:
|
|
986
|
+
class: h(["column-card__image", { cover: o.imageFit, contain: !o.imageFit }])
|
|
975
987
|
}, [
|
|
976
|
-
|
|
977
|
-
src:
|
|
978
|
-
alt:
|
|
988
|
+
d(o.$slots, "column-card-image", O(z({
|
|
989
|
+
src: o.image.filename,
|
|
990
|
+
alt: o.image.alt
|
|
979
991
|
})), void 0, !0)
|
|
980
992
|
], 2)) : _("", !0),
|
|
981
|
-
t("h3",
|
|
982
|
-
t("div",
|
|
983
|
-
|
|
984
|
-
])
|
|
993
|
+
t("h3", fa, c(o.headline), 1),
|
|
994
|
+
t("div", va, [
|
|
995
|
+
d(o.$slots, "column-card-body", {}, void 0, !0)
|
|
996
|
+
]),
|
|
997
|
+
o.linkType === "link" ? (s(), T(L, {
|
|
998
|
+
key: 1,
|
|
999
|
+
"link-type": o.bgColor === "dark" ? "regular_dark" : (o.bgColor === "light", "regular_light"),
|
|
1000
|
+
arrow: ""
|
|
1001
|
+
}, {
|
|
1002
|
+
default: y(() => [
|
|
1003
|
+
d(o.$slots, "column-link", {}, void 0, !0)
|
|
1004
|
+
]),
|
|
1005
|
+
_: 3
|
|
1006
|
+
}, 8, ["link-type"])) : _("", !0)
|
|
985
1007
|
])
|
|
986
|
-
]));
|
|
1008
|
+
], 2));
|
|
987
1009
|
}
|
|
988
|
-
}), ge = /* @__PURE__ */ v(
|
|
1010
|
+
}), ge = /* @__PURE__ */ v(ga, [["__scopeId", "data-v-a505d05e"]]), ba = (e) => (H("data-v-e4a362a9"), e = e(), R(), e), ya = { class: "event__wrapper" }, ka = { class: "event__headline" }, $a = { class: "event__date-location" }, wa = /* @__PURE__ */ ba(() => /* @__PURE__ */ t("br", null, null, -1)), Ba = {
|
|
989
1011
|
key: 0,
|
|
990
1012
|
class: "event__info"
|
|
991
|
-
},
|
|
1013
|
+
}, Sa = { class: "event__exhibitor" }, Ia = /* @__PURE__ */ g({
|
|
992
1014
|
__name: "event-card",
|
|
993
1015
|
props: {
|
|
994
1016
|
eventType: {
|
|
@@ -1018,46 +1040,46 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1018
1040
|
}
|
|
1019
1041
|
},
|
|
1020
1042
|
setup(e) {
|
|
1021
|
-
return (a, r) => (
|
|
1043
|
+
return (a, r) => (s(), i("div", ya, [
|
|
1022
1044
|
S(X, {
|
|
1023
1045
|
"label-dark": !1,
|
|
1024
1046
|
text: e.eventType ? e.eventType : ""
|
|
1025
1047
|
}, null, 8, ["text"]),
|
|
1026
|
-
t("div",
|
|
1027
|
-
t("div",
|
|
1028
|
-
J(
|
|
1029
|
-
|
|
1030
|
-
e.info ? (
|
|
1031
|
-
J(" " +
|
|
1048
|
+
t("div", ka, c(e.headline), 1),
|
|
1049
|
+
t("div", $a, [
|
|
1050
|
+
J(c(e.dateTime) + " ", 1),
|
|
1051
|
+
wa,
|
|
1052
|
+
e.info ? (s(), i("div", Ba, c(e.info), 1)) : _("", !0),
|
|
1053
|
+
J(" " + c(e.location), 1)
|
|
1032
1054
|
]),
|
|
1033
|
-
t("div",
|
|
1055
|
+
t("div", Sa, c(e.exhibitor), 1)
|
|
1034
1056
|
]));
|
|
1035
1057
|
}
|
|
1036
|
-
}),
|
|
1058
|
+
}), Ca = /* @__PURE__ */ v(Ia, [["__scopeId", "data-v-e4a362a9"]]), ie = (e) => (H("data-v-93ee37aa"), e = e(), R(), e), Ta = { class: "flashcard-side flashcard-front" }, qa = {
|
|
1037
1059
|
key: 0,
|
|
1038
1060
|
class: "content"
|
|
1039
|
-
},
|
|
1061
|
+
}, Aa = { key: 0 }, La = {
|
|
1040
1062
|
key: 1,
|
|
1041
1063
|
class: "flashcard-body"
|
|
1042
|
-
},
|
|
1064
|
+
}, Da = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
|
|
1043
1065
|
class: "flip-icon",
|
|
1044
1066
|
src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
|
|
1045
|
-
}, null, -1)),
|
|
1067
|
+
}, null, -1)), Va = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
|
|
1046
1068
|
class: "flip-icon",
|
|
1047
1069
|
src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
|
|
1048
|
-
}, null, -1)),
|
|
1070
|
+
}, null, -1)), Pa = {
|
|
1049
1071
|
key: 0,
|
|
1050
1072
|
class: "content"
|
|
1051
|
-
},
|
|
1073
|
+
}, Fa = { key: 0 }, Ma = {
|
|
1052
1074
|
key: 1,
|
|
1053
1075
|
class: "flashcard-body"
|
|
1054
|
-
},
|
|
1076
|
+
}, Oa = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
|
|
1055
1077
|
class: "flip-icon",
|
|
1056
1078
|
src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
|
|
1057
|
-
}, null, -1)),
|
|
1079
|
+
}, null, -1)), za = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
|
|
1058
1080
|
class: "flip-icon",
|
|
1059
1081
|
src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
|
|
1060
|
-
}, null, -1)),
|
|
1082
|
+
}, null, -1)), Ha = /* @__PURE__ */ g({
|
|
1061
1083
|
__name: "flashcard",
|
|
1062
1084
|
props: {
|
|
1063
1085
|
name: {},
|
|
@@ -1075,66 +1097,66 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1075
1097
|
function r() {
|
|
1076
1098
|
a.value = !a.value;
|
|
1077
1099
|
}
|
|
1078
|
-
return (
|
|
1100
|
+
return (l, o) => {
|
|
1079
1101
|
var u, p, n, b, f, k;
|
|
1080
|
-
return
|
|
1102
|
+
return s(), i("div", {
|
|
1081
1103
|
class: "flashcard-container",
|
|
1082
1104
|
onClick: r
|
|
1083
1105
|
}, [
|
|
1084
1106
|
t("div", {
|
|
1085
1107
|
class: h(["flashcard", {
|
|
1086
1108
|
flipped: a.value,
|
|
1087
|
-
"flashcard--sm":
|
|
1088
|
-
"flashcard--md":
|
|
1089
|
-
"flashcard--lg":
|
|
1109
|
+
"flashcard--sm": l.size === "sm",
|
|
1110
|
+
"flashcard--md": l.size === "md",
|
|
1111
|
+
"flashcard--lg": l.size === "lg"
|
|
1090
1112
|
}])
|
|
1091
1113
|
}, [
|
|
1092
1114
|
t("div", Ta, [
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1115
|
+
l.name || ((u = l.bodytext) == null ? void 0 : u.length) > 0 ? (s(), i("div", qa, [
|
|
1116
|
+
l.name ? (s(), i("h3", Aa, c(l.name), 1)) : _("", !0),
|
|
1117
|
+
l.bodytext ? (s(), i("div", La, [
|
|
1118
|
+
d(l.$slots, "flashcard-front-body", O(z({ bodytext: l.bodytext })), void 0, !0)
|
|
1097
1119
|
])) : _("", !0),
|
|
1098
|
-
|
|
1099
|
-
])) : (
|
|
1120
|
+
Da
|
|
1121
|
+
])) : (s(), i("div", {
|
|
1100
1122
|
key: 1,
|
|
1101
1123
|
class: h(["flashcard-image", {
|
|
1102
|
-
contain:
|
|
1103
|
-
cover: !
|
|
1124
|
+
contain: l.imageFit,
|
|
1125
|
+
cover: !l.imageFit
|
|
1104
1126
|
}])
|
|
1105
1127
|
}, [
|
|
1106
|
-
|
|
1107
|
-
|
|
1128
|
+
d(l.$slots, "flashcard-front-image", O(z({ src: (p = l.image) == null ? void 0 : p.filename, alt: (n = l.image) == null ? void 0 : n.alt })), void 0, !0),
|
|
1129
|
+
Va
|
|
1108
1130
|
], 2))
|
|
1109
1131
|
]),
|
|
1110
1132
|
t("div", {
|
|
1111
1133
|
class: h([
|
|
1112
1134
|
"flashcard-side flashcard-back",
|
|
1113
|
-
(b =
|
|
1135
|
+
(b = l.imagebackside) != null && b.filename ? "flashcard-back--image" : "flashcard-back--no-image"
|
|
1114
1136
|
])
|
|
1115
1137
|
}, [
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1138
|
+
l.namebackside || l.bodytextbackside.length > 0 ? (s(), i("div", Pa, [
|
|
1139
|
+
l.namebackside ? (s(), i("h3", Fa, c(l.namebackside), 1)) : _("", !0),
|
|
1140
|
+
l.bodytextbackside ? (s(), i("div", Ma, [
|
|
1141
|
+
d(l.$slots, "flashcard-back-body", O(z({ bodytextbackside: l.bodytextbackside })), void 0, !0)
|
|
1120
1142
|
])) : _("", !0),
|
|
1121
|
-
|
|
1122
|
-
])) : (
|
|
1143
|
+
Oa
|
|
1144
|
+
])) : (s(), i("div", {
|
|
1123
1145
|
key: 1,
|
|
1124
1146
|
class: h(["flashcard-image", {
|
|
1125
|
-
contain:
|
|
1126
|
-
cover: !
|
|
1147
|
+
contain: l.imageFitBack,
|
|
1148
|
+
cover: !l.imageFitBack
|
|
1127
1149
|
}])
|
|
1128
1150
|
}, [
|
|
1129
|
-
|
|
1130
|
-
|
|
1151
|
+
d(l.$slots, "flashcard-back-image", O(z({ src: (f = l.imagebackside) == null ? void 0 : f.filename, alt: (k = l.imagebackside) == null ? void 0 : k.alt })), void 0, !0),
|
|
1152
|
+
za
|
|
1131
1153
|
], 2))
|
|
1132
1154
|
], 2)
|
|
1133
1155
|
], 2)
|
|
1134
1156
|
]);
|
|
1135
1157
|
};
|
|
1136
1158
|
}
|
|
1137
|
-
}), be = /* @__PURE__ */ v(
|
|
1159
|
+
}), be = /* @__PURE__ */ v(Ha, [["__scopeId", "data-v-93ee37aa"]]), Ra = { class: "text__wrapper" }, Na = { class: "text__headline" }, Ea = { class: "text__paragraph" }, ja = /* @__PURE__ */ g({
|
|
1138
1160
|
__name: "text-card",
|
|
1139
1161
|
props: {
|
|
1140
1162
|
label: {
|
|
@@ -1151,24 +1173,24 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1151
1173
|
}
|
|
1152
1174
|
},
|
|
1153
1175
|
setup(e) {
|
|
1154
|
-
return (a, r) => (
|
|
1176
|
+
return (a, r) => (s(), i("div", Ra, [
|
|
1155
1177
|
S(X, {
|
|
1156
1178
|
"label-dark": !1,
|
|
1157
1179
|
text: e.label ? e.label : ""
|
|
1158
1180
|
}, null, 8, ["text"]),
|
|
1159
|
-
t("div",
|
|
1160
|
-
t("div",
|
|
1161
|
-
t("p", null,
|
|
1181
|
+
t("div", Na, c(e.headline), 1),
|
|
1182
|
+
t("div", Ea, [
|
|
1183
|
+
t("p", null, c(e.paragraph), 1)
|
|
1162
1184
|
])
|
|
1163
1185
|
]));
|
|
1164
1186
|
}
|
|
1165
|
-
}),
|
|
1187
|
+
}), Ga = /* @__PURE__ */ v(ja, [["__scopeId", "data-v-ebdea819"]]), Ka = { class: "accordions" }, Ua = { class: "accordions__wrapper" }, Ja = { class: "accordion" }, Wa = ["onClick"], Ya = { class: "accordion__headline" }, Qa = { class: "accordion__icon" }, Za = {
|
|
1166
1188
|
key: 0,
|
|
1167
1189
|
src: "https://a.storyblok.com/f/230581/21x21/42c9c3b5ba/icon_add.svg"
|
|
1168
|
-
},
|
|
1190
|
+
}, Xa = {
|
|
1169
1191
|
key: 1,
|
|
1170
1192
|
src: "https://a.storyblok.com/f/230581/22x21/adfe5d1742/icon_substract.svg"
|
|
1171
|
-
},
|
|
1193
|
+
}, xa = { class: "accordion__bodytext" }, eo = /* @__PURE__ */ g({
|
|
1172
1194
|
__name: "accordion",
|
|
1173
1195
|
props: {
|
|
1174
1196
|
accordions: {}
|
|
@@ -1177,34 +1199,34 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1177
1199
|
const a = C([]), r = (o) => {
|
|
1178
1200
|
const u = a.value.indexOf(o);
|
|
1179
1201
|
u > -1 ? a.value.splice(u, 1) : a.value.push(o);
|
|
1180
|
-
},
|
|
1181
|
-
return (o, u) => (
|
|
1182
|
-
t("div",
|
|
1183
|
-
(
|
|
1202
|
+
}, l = (o) => a.value.includes(o);
|
|
1203
|
+
return (o, u) => (s(), i("section", Ka, [
|
|
1204
|
+
t("div", Ua, [
|
|
1205
|
+
(s(!0), i(V, null, P(o.accordions, (p) => (s(), i("div", {
|
|
1184
1206
|
key: p._uid
|
|
1185
1207
|
}, [
|
|
1186
|
-
t("div",
|
|
1208
|
+
t("div", Ja, [
|
|
1187
1209
|
t("div", {
|
|
1188
1210
|
class: "accordion__header",
|
|
1189
1211
|
onClick: (n) => r(p._uid)
|
|
1190
1212
|
}, [
|
|
1191
|
-
t("h3",
|
|
1192
|
-
t("span",
|
|
1193
|
-
|
|
1213
|
+
t("h3", Ya, c(p.headline), 1),
|
|
1214
|
+
t("span", Qa, [
|
|
1215
|
+
l(p._uid) ? (s(), i("img", Xa)) : (s(), i("img", Za))
|
|
1194
1216
|
])
|
|
1195
|
-
], 8,
|
|
1217
|
+
], 8, Wa),
|
|
1196
1218
|
t("div", {
|
|
1197
1219
|
class: h(["accordion__content", { "accordion__content--reverse": p.imageFirst }]),
|
|
1198
1220
|
style: ee({
|
|
1199
|
-
display:
|
|
1221
|
+
display: l(p._uid) ? "flex" : "none"
|
|
1200
1222
|
})
|
|
1201
1223
|
}, [
|
|
1202
|
-
t("div",
|
|
1203
|
-
|
|
1224
|
+
t("div", xa, [
|
|
1225
|
+
d(o.$slots, "accordion-body", F({ ref_for: !0 }, { body: p.bodytext }), void 0, !0)
|
|
1204
1226
|
]),
|
|
1205
|
-
S(
|
|
1227
|
+
S(M, null, {
|
|
1206
1228
|
default: y(() => [
|
|
1207
|
-
p.image ?
|
|
1229
|
+
p.image ? d(o.$slots, "accordion-image", F({
|
|
1208
1230
|
key: 0,
|
|
1209
1231
|
ref_for: !0
|
|
1210
1232
|
}, {
|
|
@@ -1221,10 +1243,10 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1221
1243
|
])
|
|
1222
1244
|
]));
|
|
1223
1245
|
}
|
|
1224
|
-
}),
|
|
1246
|
+
}), to = /* @__PURE__ */ v(eo, [["__scopeId", "data-v-0e6f6da8"]]), ao = { class: "card-display__wrapper" }, oo = {
|
|
1225
1247
|
key: 0,
|
|
1226
1248
|
class: "card__content"
|
|
1227
|
-
}, lo = { key: 0 },
|
|
1249
|
+
}, lo = { key: 0 }, so = { key: 1 }, io = { class: "card__cards" }, ro = /* @__PURE__ */ g({
|
|
1228
1250
|
__name: "card-display",
|
|
1229
1251
|
props: {
|
|
1230
1252
|
headline: {
|
|
@@ -1241,80 +1263,100 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1241
1263
|
}
|
|
1242
1264
|
},
|
|
1243
1265
|
setup(e) {
|
|
1244
|
-
return (a, r) => (
|
|
1266
|
+
return (a, r) => (s(), i("div", {
|
|
1245
1267
|
class: h([
|
|
1246
1268
|
"card-display",
|
|
1247
1269
|
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1248
1270
|
])
|
|
1249
1271
|
}, [
|
|
1250
|
-
t("div",
|
|
1251
|
-
e.headline || e.paragraph ? (
|
|
1252
|
-
e.headline ? (
|
|
1253
|
-
e.paragraph ? (
|
|
1272
|
+
t("div", ao, [
|
|
1273
|
+
e.headline || e.paragraph ? (s(), i("div", oo, [
|
|
1274
|
+
e.headline ? (s(), i("h2", lo, c(e.headline), 1)) : _("", !0),
|
|
1275
|
+
e.paragraph ? (s(), i("p", so, c(e.paragraph), 1)) : _("", !0)
|
|
1254
1276
|
])) : _("", !0),
|
|
1255
|
-
t("div",
|
|
1256
|
-
|
|
1277
|
+
t("div", io, [
|
|
1278
|
+
d(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1257
1279
|
])
|
|
1258
1280
|
])
|
|
1259
1281
|
], 2));
|
|
1260
1282
|
}
|
|
1261
|
-
}),
|
|
1283
|
+
}), no = /* @__PURE__ */ v(ro, [["__scopeId", "data-v-e5d1b11a"]]), co = { class: "column-grid__top-section" }, uo = {
|
|
1262
1284
|
key: 0,
|
|
1263
1285
|
class: "column-grid__headline"
|
|
1264
|
-
},
|
|
1286
|
+
}, _o = {
|
|
1265
1287
|
key: 1,
|
|
1266
1288
|
class: "column-grid__bodytext"
|
|
1267
|
-
},
|
|
1289
|
+
}, ho = { class: "column-grid__teaser-list" }, po = /* @__PURE__ */ g({
|
|
1268
1290
|
__name: "column-grid",
|
|
1269
1291
|
props: {
|
|
1270
1292
|
headline: { default: "" },
|
|
1271
1293
|
bgColor: {},
|
|
1272
1294
|
bodytext: { default: "" },
|
|
1295
|
+
linkText: { default: "" },
|
|
1296
|
+
linkType: { default: "link" },
|
|
1273
1297
|
columns: {}
|
|
1274
1298
|
},
|
|
1275
1299
|
setup(e) {
|
|
1276
|
-
return (a, r) => (
|
|
1300
|
+
return (a, r) => (s(), i("div", {
|
|
1277
1301
|
class: h([
|
|
1278
1302
|
"column-grid",
|
|
1279
1303
|
a.bgColor === "dark" ? "column-grid--dark" : a.bgColor === "light" ? "column-grid--light" : "column-grid--white"
|
|
1280
1304
|
])
|
|
1281
1305
|
}, [
|
|
1282
|
-
t("div",
|
|
1283
|
-
a.headline ? (
|
|
1284
|
-
a.bodytext ? (
|
|
1285
|
-
|
|
1306
|
+
t("div", co, [
|
|
1307
|
+
a.headline ? (s(), i("h2", uo, c(a.headline), 1)) : _("", !0),
|
|
1308
|
+
a.bodytext ? (s(), i("div", _o, [
|
|
1309
|
+
d(a.$slots, "column-grid-body", {}, void 0, !0),
|
|
1310
|
+
a.linkType === "link" ? (s(), T(L, {
|
|
1311
|
+
key: 0,
|
|
1312
|
+
"link-type": a.bgColor === "dark" ? "regular_dark" : (a.bgColor === "light", "regular_light"),
|
|
1313
|
+
arrow: ""
|
|
1314
|
+
}, {
|
|
1315
|
+
default: y(() => [
|
|
1316
|
+
d(a.$slots, "column-grid-body-link", {}, void 0, !0)
|
|
1317
|
+
]),
|
|
1318
|
+
_: 3
|
|
1319
|
+
}, 8, ["link-type"])) : _("", !0)
|
|
1286
1320
|
])) : _("", !0)
|
|
1287
1321
|
]),
|
|
1288
|
-
t("div",
|
|
1289
|
-
(
|
|
1290
|
-
key:
|
|
1291
|
-
headline:
|
|
1292
|
-
bodytext:
|
|
1293
|
-
|
|
1294
|
-
"
|
|
1322
|
+
t("div", ho, [
|
|
1323
|
+
(s(!0), i(V, null, P(a.columns, (l) => (s(), T(ge, {
|
|
1324
|
+
key: l._uid,
|
|
1325
|
+
headline: l.headline,
|
|
1326
|
+
bodytext: l.bodytext,
|
|
1327
|
+
link: l.link,
|
|
1328
|
+
"link-text": l.linkText,
|
|
1329
|
+
image: l.image,
|
|
1330
|
+
"image-fit": l.imageFit
|
|
1295
1331
|
}, {
|
|
1296
1332
|
"column-card-body": y(() => [
|
|
1297
|
-
|
|
1333
|
+
d(a.$slots, "column-card-body", F({ ref_for: !0 }, { body: l.bodytext }), void 0, !0)
|
|
1334
|
+
]),
|
|
1335
|
+
"column-link": y(() => [
|
|
1336
|
+
d(a.$slots, "column-link", F({ ref_for: !0 }, {
|
|
1337
|
+
link: l.link,
|
|
1338
|
+
linkText: l.linkText
|
|
1339
|
+
}), void 0, !0)
|
|
1298
1340
|
]),
|
|
1299
1341
|
"column-card-image": y(() => [
|
|
1300
|
-
|
|
1342
|
+
l.image ? d(a.$slots, "column-card-image", F({
|
|
1301
1343
|
key: 0,
|
|
1302
1344
|
ref_for: !0
|
|
1303
1345
|
}, {
|
|
1304
|
-
src:
|
|
1305
|
-
alt:
|
|
1306
|
-
style: { "object-fit":
|
|
1346
|
+
src: l.image.filename,
|
|
1347
|
+
alt: l.image.alt,
|
|
1348
|
+
style: { "object-fit": l.imageFit ? "cover" : "contain" }
|
|
1307
1349
|
}), void 0, !0) : _("", !0)
|
|
1308
1350
|
]),
|
|
1309
1351
|
_: 2
|
|
1310
|
-
}, 1032, ["headline", "bodytext", "image", "image-fit"]))), 128))
|
|
1352
|
+
}, 1032, ["headline", "bodytext", "link", "link-text", "image", "image-fit"]))), 128))
|
|
1311
1353
|
])
|
|
1312
1354
|
], 2));
|
|
1313
1355
|
}
|
|
1314
|
-
}),
|
|
1356
|
+
}), mo = /* @__PURE__ */ v(po, [["__scopeId", "data-v-1a54852d"]]), fo = { class: "facts__wrapper" }, vo = { class: "facts__content" }, go = { class: "facts__headline" }, bo = { class: "facts" }, yo = { class: "fact__value" }, ko = { class: "fact__metric" }, $o = {
|
|
1315
1357
|
key: 0,
|
|
1316
1358
|
class: "facts__link"
|
|
1317
|
-
},
|
|
1359
|
+
}, wo = /* @__PURE__ */ g({
|
|
1318
1360
|
__name: "facts",
|
|
1319
1361
|
props: {
|
|
1320
1362
|
headline: { default: "" },
|
|
@@ -1338,29 +1380,29 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1338
1380
|
}) }
|
|
1339
1381
|
},
|
|
1340
1382
|
setup(e) {
|
|
1341
|
-
return (a, r) => (
|
|
1342
|
-
t("div",
|
|
1343
|
-
t("h2",
|
|
1344
|
-
t("div",
|
|
1345
|
-
(
|
|
1346
|
-
key:
|
|
1383
|
+
return (a, r) => (s(), i("div", fo, [
|
|
1384
|
+
t("div", vo, [
|
|
1385
|
+
t("h2", go, c(a.headline), 1),
|
|
1386
|
+
t("div", bo, [
|
|
1387
|
+
(s(!0), i(V, null, P(a.facts, (l) => (s(), i("div", {
|
|
1388
|
+
key: l.value + l.metric,
|
|
1347
1389
|
class: "fact"
|
|
1348
1390
|
}, [
|
|
1349
|
-
t("div",
|
|
1350
|
-
t("span", null,
|
|
1391
|
+
t("div", yo, [
|
|
1392
|
+
t("span", null, c(l.value), 1)
|
|
1351
1393
|
]),
|
|
1352
|
-
t("div",
|
|
1353
|
-
t("span", null,
|
|
1394
|
+
t("div", ko, [
|
|
1395
|
+
t("span", null, c(l.metric), 1)
|
|
1354
1396
|
])
|
|
1355
1397
|
]))), 128))
|
|
1356
1398
|
]),
|
|
1357
|
-
a.link ? (
|
|
1358
|
-
S(
|
|
1399
|
+
a.link ? (s(), i("div", $o, [
|
|
1400
|
+
S(L, {
|
|
1359
1401
|
"link-type": "regular_light",
|
|
1360
1402
|
arrow: ""
|
|
1361
1403
|
}, {
|
|
1362
1404
|
default: y(() => [
|
|
1363
|
-
|
|
1405
|
+
d(a.$slots, "facts-link", {}, void 0, !0)
|
|
1364
1406
|
]),
|
|
1365
1407
|
_: 3
|
|
1366
1408
|
})
|
|
@@ -1368,13 +1410,13 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1368
1410
|
])
|
|
1369
1411
|
]));
|
|
1370
1412
|
}
|
|
1371
|
-
}),
|
|
1413
|
+
}), Bo = /* @__PURE__ */ v(wo, [["__scopeId", "data-v-d2b231d4"]]), So = { class: "features__wrapper" }, Io = { class: "features__content" }, Co = {
|
|
1372
1414
|
key: 0,
|
|
1373
1415
|
class: "features__headline"
|
|
1374
1416
|
}, To = {
|
|
1375
1417
|
key: 1,
|
|
1376
1418
|
class: "features__body"
|
|
1377
|
-
},
|
|
1419
|
+
}, qo = { class: "element__headline" }, Ao = { class: "element__body" }, Lo = /* @__PURE__ */ g({
|
|
1378
1420
|
__name: "features",
|
|
1379
1421
|
props: {
|
|
1380
1422
|
headline: { default: "" },
|
|
@@ -1382,46 +1424,46 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1382
1424
|
elements: { default: () => [] }
|
|
1383
1425
|
},
|
|
1384
1426
|
setup(e) {
|
|
1385
|
-
return (a, r) => (
|
|
1386
|
-
t("div",
|
|
1387
|
-
a.headline ? (
|
|
1388
|
-
t("h2", null,
|
|
1427
|
+
return (a, r) => (s(), i("div", So, [
|
|
1428
|
+
t("div", Io, [
|
|
1429
|
+
a.headline ? (s(), i("div", Co, [
|
|
1430
|
+
t("h2", null, c(a.headline), 1)
|
|
1389
1431
|
])) : _("", !0),
|
|
1390
|
-
a.body ? (
|
|
1391
|
-
|
|
1432
|
+
a.body ? (s(), i("div", To, [
|
|
1433
|
+
d(a.$slots, "features-body", {}, void 0, !0)
|
|
1392
1434
|
])) : _("", !0),
|
|
1393
1435
|
t("div", {
|
|
1394
1436
|
class: h(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1395
1437
|
}, [
|
|
1396
|
-
(
|
|
1397
|
-
key:
|
|
1438
|
+
(s(!0), i(V, null, P(a.elements, (l) => (s(), i("div", {
|
|
1439
|
+
key: l.headline,
|
|
1398
1440
|
class: "features__element"
|
|
1399
1441
|
}, [
|
|
1400
|
-
S(
|
|
1442
|
+
S(M, { class: "element__icon" }, {
|
|
1401
1443
|
default: y(() => [
|
|
1402
|
-
|
|
1403
|
-
src:
|
|
1444
|
+
d(a.$slots, "features-icon", F({ ref_for: !0 }, {
|
|
1445
|
+
src: l.icon.src,
|
|
1404
1446
|
height: 30,
|
|
1405
1447
|
width: 30,
|
|
1406
|
-
alt:
|
|
1448
|
+
alt: l.icon.alt
|
|
1407
1449
|
}), void 0, !0)
|
|
1408
1450
|
]),
|
|
1409
1451
|
_: 2
|
|
1410
1452
|
}, 1024),
|
|
1411
|
-
t("p",
|
|
1412
|
-
t("p",
|
|
1453
|
+
t("p", qo, c(l.headline), 1),
|
|
1454
|
+
t("p", Ao, c(l.body), 1)
|
|
1413
1455
|
]))), 128))
|
|
1414
1456
|
], 2)
|
|
1415
1457
|
])
|
|
1416
1458
|
]));
|
|
1417
1459
|
}
|
|
1418
|
-
}),
|
|
1460
|
+
}), Do = /* @__PURE__ */ v(Lo, [["__scopeId", "data-v-57a22df7"]]), Vo = { class: "flashcard-wrapper" }, Po = {
|
|
1419
1461
|
key: 0,
|
|
1420
1462
|
class: "flashcard-wrapper__headline"
|
|
1421
|
-
},
|
|
1463
|
+
}, Fo = {
|
|
1422
1464
|
key: 1,
|
|
1423
1465
|
class: "flashcard-wrapper__bodytext"
|
|
1424
|
-
},
|
|
1466
|
+
}, Mo = /* @__PURE__ */ g({
|
|
1425
1467
|
__name: "flashcards",
|
|
1426
1468
|
props: {
|
|
1427
1469
|
headline: {},
|
|
@@ -1430,34 +1472,34 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1430
1472
|
flashcards: {}
|
|
1431
1473
|
},
|
|
1432
1474
|
setup(e) {
|
|
1433
|
-
const a = e, r = q(() => a.body.trim().length > 0),
|
|
1475
|
+
const a = e, r = q(() => a.body.trim().length > 0), l = q(() => {
|
|
1434
1476
|
var u;
|
|
1435
1477
|
const o = (u = a.flashcards) == null ? void 0 : u.length;
|
|
1436
1478
|
return o === 4 || o === 5 ? "sm" : o === 6 || o === 3 ? "md" : o === 2 ? "lg" : "sm";
|
|
1437
1479
|
});
|
|
1438
|
-
return (o, u) => (
|
|
1480
|
+
return (o, u) => (s(), i("div", {
|
|
1439
1481
|
class: h(["flashcards", o.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
|
|
1440
1482
|
}, [
|
|
1441
|
-
t("div",
|
|
1483
|
+
t("div", Vo, [
|
|
1442
1484
|
t("div", {
|
|
1443
1485
|
class: h([
|
|
1444
1486
|
{ "no-bodytext": !r.value },
|
|
1445
1487
|
"flashcard-wrapper__top-section"
|
|
1446
1488
|
])
|
|
1447
1489
|
}, [
|
|
1448
|
-
o.headline ? (
|
|
1449
|
-
o.body ? (
|
|
1450
|
-
|
|
1490
|
+
o.headline ? (s(), i("h2", Po, c(o.headline), 1)) : _("", !0),
|
|
1491
|
+
o.body ? (s(), i("div", Fo, [
|
|
1492
|
+
d(o.$slots, "flashcard-wrapper-body", {}, void 0, !0)
|
|
1451
1493
|
])) : _("", !0)
|
|
1452
1494
|
], 2),
|
|
1453
1495
|
t("div", {
|
|
1454
1496
|
class: h(["flashcard-wrapper__teaser-list", {
|
|
1455
|
-
sm:
|
|
1456
|
-
md:
|
|
1457
|
-
lg:
|
|
1497
|
+
sm: l.value === "sm",
|
|
1498
|
+
md: l.value === "md",
|
|
1499
|
+
lg: l.value === "lg"
|
|
1458
1500
|
}])
|
|
1459
1501
|
}, [
|
|
1460
|
-
(
|
|
1502
|
+
(s(!0), i(V, null, P(o.flashcards, (p) => (s(), T(I(be), {
|
|
1461
1503
|
key: p._uid,
|
|
1462
1504
|
name: p.name,
|
|
1463
1505
|
bodytext: p.bodytext,
|
|
@@ -1465,21 +1507,21 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1465
1507
|
namebackside: p.namebackside ? p.namebackside : "",
|
|
1466
1508
|
bodytextbackside: p.bodytextbackside,
|
|
1467
1509
|
imagebackside: p.imagebackside ? p.imagebackside : { filename: "", alt: "" },
|
|
1468
|
-
size:
|
|
1510
|
+
size: l.value,
|
|
1469
1511
|
"image-fit": p.imageFit,
|
|
1470
1512
|
"image-fit-back": p.imageFitBack
|
|
1471
1513
|
}, {
|
|
1472
1514
|
"flashcard-front-body": y(({ bodytext: n }) => [
|
|
1473
|
-
|
|
1515
|
+
d(o.$slots, "flashcard-front-body", F({ ref_for: !0 }, { bodytext: n }), void 0, !0)
|
|
1474
1516
|
]),
|
|
1475
1517
|
"flashcard-front-image": y(({ src: n, alt: b }) => [
|
|
1476
|
-
|
|
1518
|
+
d(o.$slots, "flashcard-front-image", F({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1477
1519
|
]),
|
|
1478
1520
|
"flashcard-back-body": y(({ bodytextbackside: n }) => [
|
|
1479
|
-
|
|
1521
|
+
d(o.$slots, "flashcard-back-body", F({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
|
|
1480
1522
|
]),
|
|
1481
1523
|
"flashcard-back-image": y(({ src: n, alt: b }) => [
|
|
1482
|
-
|
|
1524
|
+
d(o.$slots, "flashcard-back-image", F({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1483
1525
|
]),
|
|
1484
1526
|
_: 2
|
|
1485
1527
|
}, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
|
|
@@ -1487,7 +1529,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1487
1529
|
])
|
|
1488
1530
|
], 2));
|
|
1489
1531
|
}
|
|
1490
|
-
}),
|
|
1532
|
+
}), Oo = /* @__PURE__ */ v(Mo, [["__scopeId", "data-v-de3c8751"]]), zo = { class: "form__content" }, Ho = { class: "form__information" }, Ro = { class: "form__headline" }, No = { class: "form__body" }, Eo = { class: "form__script" }, jo = /* @__PURE__ */ g({
|
|
1491
1533
|
__name: "form-script",
|
|
1492
1534
|
props: {
|
|
1493
1535
|
headline: { default: "" },
|
|
@@ -1500,34 +1542,34 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1500
1542
|
dark: "form__wrapper--dark",
|
|
1501
1543
|
light: "form__wrapper--light",
|
|
1502
1544
|
default: "form__wrapper--default"
|
|
1503
|
-
}, r = e,
|
|
1504
|
-
return (o, u) => (
|
|
1505
|
-
class: h(["form__wrapper",
|
|
1545
|
+
}, r = e, l = q(() => a[r.variant]);
|
|
1546
|
+
return (o, u) => (s(), i("div", {
|
|
1547
|
+
class: h(["form__wrapper", l.value])
|
|
1506
1548
|
}, [
|
|
1507
|
-
t("div",
|
|
1508
|
-
t("div",
|
|
1509
|
-
t("h2",
|
|
1510
|
-
t("div",
|
|
1511
|
-
|
|
1549
|
+
t("div", zo, [
|
|
1550
|
+
t("div", Ho, [
|
|
1551
|
+
t("h2", Ro, c(o.headline), 1),
|
|
1552
|
+
t("div", No, [
|
|
1553
|
+
d(o.$slots, "form-body", {}, void 0, !0)
|
|
1512
1554
|
]),
|
|
1513
|
-
o.linkType === "link" ? (
|
|
1555
|
+
o.linkType === "link" ? (s(), T(L, {
|
|
1514
1556
|
key: 0,
|
|
1515
1557
|
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
1516
1558
|
arrow: ""
|
|
1517
1559
|
}, {
|
|
1518
1560
|
default: y(() => [
|
|
1519
|
-
|
|
1561
|
+
d(o.$slots, "form-link", {}, void 0, !0)
|
|
1520
1562
|
]),
|
|
1521
1563
|
_: 3
|
|
1522
1564
|
}, 8, ["link-type"])) : _("", !0)
|
|
1523
1565
|
]),
|
|
1524
|
-
t("div",
|
|
1525
|
-
|
|
1566
|
+
t("div", Eo, [
|
|
1567
|
+
d(o.$slots, "form-script", {}, void 0, !0)
|
|
1526
1568
|
])
|
|
1527
1569
|
])
|
|
1528
1570
|
], 2));
|
|
1529
1571
|
}
|
|
1530
|
-
}),
|
|
1572
|
+
}), Go = /* @__PURE__ */ v(jo, [["__scopeId", "data-v-b8b02bae"]]), Ko = { class: "headline__wrapper" }, Uo = { class: "headline__h1" }, Jo = /* @__PURE__ */ g({
|
|
1531
1573
|
__name: "headline",
|
|
1532
1574
|
props: {
|
|
1533
1575
|
headline: {
|
|
@@ -1544,7 +1586,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1544
1586
|
}
|
|
1545
1587
|
},
|
|
1546
1588
|
setup(e) {
|
|
1547
|
-
return (a, r) => (
|
|
1589
|
+
return (a, r) => (s(), i("div", Ko, [
|
|
1548
1590
|
t("div", {
|
|
1549
1591
|
class: h({
|
|
1550
1592
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1553,11 +1595,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1553
1595
|
"headline__content--default": !e.article && !e.subMenu
|
|
1554
1596
|
})
|
|
1555
1597
|
}, [
|
|
1556
|
-
t("h1",
|
|
1598
|
+
t("h1", Uo, c(e.headline), 1)
|
|
1557
1599
|
], 2)
|
|
1558
1600
|
]));
|
|
1559
1601
|
}
|
|
1560
|
-
}),
|
|
1602
|
+
}), Wo = /* @__PURE__ */ v(Jo, [["__scopeId", "data-v-3ef1567e"]]), Yo = (e) => (H("data-v-22f9be13"), e = e(), R(), e), Qo = { class: "hero__wrapper" }, Zo = { class: "hero__content" }, Xo = { class: "hero__top" }, xo = { class: "hero__elements" }, el = { class: "hero__headline" }, tl = { class: "hero__link" }, al = { class: "hero__video" }, ol = /* @__PURE__ */ Yo(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), ll = { class: "hero__video__video" }, sl = { class: "hero__image" }, il = /* @__PURE__ */ g({
|
|
1561
1603
|
__name: "hero",
|
|
1562
1604
|
props: {
|
|
1563
1605
|
headline: {
|
|
@@ -1566,39 +1608,39 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1566
1608
|
}
|
|
1567
1609
|
},
|
|
1568
1610
|
setup(e) {
|
|
1569
|
-
return (a, r) => (
|
|
1570
|
-
t("div",
|
|
1571
|
-
t("div",
|
|
1572
|
-
t("div",
|
|
1573
|
-
t("div",
|
|
1574
|
-
t("h1", null,
|
|
1611
|
+
return (a, r) => (s(), i("div", Qo, [
|
|
1612
|
+
t("div", Zo, [
|
|
1613
|
+
t("div", Xo, [
|
|
1614
|
+
t("div", xo, [
|
|
1615
|
+
t("div", el, [
|
|
1616
|
+
t("h1", null, c(e.headline), 1)
|
|
1575
1617
|
]),
|
|
1576
|
-
t("div",
|
|
1577
|
-
S(
|
|
1618
|
+
t("div", tl, [
|
|
1619
|
+
S(L, {
|
|
1578
1620
|
"link-type": "regular_light",
|
|
1579
1621
|
arrow: ""
|
|
1580
1622
|
}, {
|
|
1581
1623
|
default: y(() => [
|
|
1582
|
-
|
|
1624
|
+
d(a.$slots, "hero-link", {}, void 0, !0)
|
|
1583
1625
|
]),
|
|
1584
1626
|
_: 3
|
|
1585
1627
|
})
|
|
1586
1628
|
])
|
|
1587
1629
|
])
|
|
1588
1630
|
]),
|
|
1589
|
-
t("div",
|
|
1590
|
-
|
|
1591
|
-
t("div",
|
|
1592
|
-
|
|
1631
|
+
t("div", al, [
|
|
1632
|
+
ol,
|
|
1633
|
+
t("div", ll, [
|
|
1634
|
+
d(a.$slots, "hero-video", {}, void 0, !0)
|
|
1593
1635
|
]),
|
|
1594
|
-
t("div",
|
|
1595
|
-
|
|
1636
|
+
t("div", sl, [
|
|
1637
|
+
d(a.$slots, "hero-image", {}, void 0, !0)
|
|
1596
1638
|
])
|
|
1597
1639
|
])
|
|
1598
1640
|
])
|
|
1599
1641
|
]));
|
|
1600
1642
|
}
|
|
1601
|
-
}),
|
|
1643
|
+
}), rl = /* @__PURE__ */ v(il, [["__scopeId", "data-v-22f9be13"]]), nl = { class: "image__wrapper" }, dl = { class: "image__content" }, cl = { class: "image__image" }, ul = { class: "image__caption" }, _l = /* @__PURE__ */ g({
|
|
1602
1644
|
inheritAttrs: !1,
|
|
1603
1645
|
__name: "image",
|
|
1604
1646
|
props: {
|
|
@@ -1622,12 +1664,12 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1622
1664
|
}
|
|
1623
1665
|
},
|
|
1624
1666
|
setup(e) {
|
|
1625
|
-
return (a, r) => (
|
|
1626
|
-
t("div",
|
|
1627
|
-
t("div",
|
|
1628
|
-
S(
|
|
1667
|
+
return (a, r) => (s(), i("div", nl, [
|
|
1668
|
+
t("div", dl, [
|
|
1669
|
+
t("div", cl, [
|
|
1670
|
+
S(M, null, {
|
|
1629
1671
|
default: y(() => [
|
|
1630
|
-
|
|
1672
|
+
d(a.$slots, "image", O(z({
|
|
1631
1673
|
width: 984,
|
|
1632
1674
|
height: e.fullHeight ? "100%" : 554,
|
|
1633
1675
|
src: e.src,
|
|
@@ -1638,17 +1680,17 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1638
1680
|
_: 3
|
|
1639
1681
|
})
|
|
1640
1682
|
]),
|
|
1641
|
-
t("p",
|
|
1683
|
+
t("p", ul, c(e.caption), 1)
|
|
1642
1684
|
])
|
|
1643
1685
|
]));
|
|
1644
1686
|
}
|
|
1645
|
-
}),
|
|
1687
|
+
}), hl = /* @__PURE__ */ v(_l, [["__scopeId", "data-v-c583d657"]]), pl = { class: "gallery__large" }, ml = {
|
|
1646
1688
|
key: 0,
|
|
1647
1689
|
class: "image image--large"
|
|
1648
|
-
},
|
|
1690
|
+
}, fl = {
|
|
1649
1691
|
key: 1,
|
|
1650
1692
|
class: "video"
|
|
1651
|
-
},
|
|
1693
|
+
}, vl = /* @__PURE__ */ g({
|
|
1652
1694
|
__name: "image-gallery",
|
|
1653
1695
|
props: {
|
|
1654
1696
|
mediaLarge: {},
|
|
@@ -1666,9 +1708,9 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1666
1708
|
white: "",
|
|
1667
1709
|
light: "gallery__wrapper--light",
|
|
1668
1710
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1669
|
-
}, r = e,
|
|
1670
|
-
return (o, u) => (
|
|
1671
|
-
class: h(["gallery__wrapper",
|
|
1711
|
+
}, r = e, l = q(() => a[r.bgColor]);
|
|
1712
|
+
return (o, u) => (s(), i("div", {
|
|
1713
|
+
class: h(["gallery__wrapper", l.value])
|
|
1672
1714
|
}, [
|
|
1673
1715
|
t("div", {
|
|
1674
1716
|
class: h([
|
|
@@ -1676,11 +1718,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1676
1718
|
o.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1677
1719
|
])
|
|
1678
1720
|
}, [
|
|
1679
|
-
t("div",
|
|
1680
|
-
o.mediaLarge && o.mediaType === "image" ? (
|
|
1681
|
-
S(
|
|
1721
|
+
t("div", pl, [
|
|
1722
|
+
o.mediaLarge && o.mediaType === "image" ? (s(), i("div", ml, [
|
|
1723
|
+
S(M, null, {
|
|
1682
1724
|
default: y(() => [
|
|
1683
|
-
|
|
1725
|
+
d(o.$slots, "image-large", O(z({
|
|
1684
1726
|
width: 617,
|
|
1685
1727
|
height: 530,
|
|
1686
1728
|
src: o.mediaLarge.src,
|
|
@@ -1690,7 +1732,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1690
1732
|
_: 3
|
|
1691
1733
|
})
|
|
1692
1734
|
])) : _("", !0),
|
|
1693
|
-
o.mediaLarge && o.mediaType === "video" ? (
|
|
1735
|
+
o.mediaLarge && o.mediaType === "video" ? (s(), i("div", fl, [
|
|
1694
1736
|
S(te, {
|
|
1695
1737
|
src: o.mediaLarge.src,
|
|
1696
1738
|
"local-video": "",
|
|
@@ -1712,13 +1754,13 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1712
1754
|
o.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1713
1755
|
])
|
|
1714
1756
|
}, [
|
|
1715
|
-
(
|
|
1757
|
+
(s(!0), i(V, null, P(o.mediaSmall, (p) => (s(), i("div", {
|
|
1716
1758
|
key: p.src + p.alt,
|
|
1717
1759
|
class: "image image--small"
|
|
1718
1760
|
}, [
|
|
1719
|
-
S(
|
|
1761
|
+
S(M, null, {
|
|
1720
1762
|
default: y(() => [
|
|
1721
|
-
|
|
1763
|
+
d(o.$slots, "image-small", F({ ref_for: !0 }, {
|
|
1722
1764
|
width: 328,
|
|
1723
1765
|
height: 246,
|
|
1724
1766
|
src: p.src,
|
|
@@ -1728,18 +1770,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1728
1770
|
_: 2
|
|
1729
1771
|
}, 1024)
|
|
1730
1772
|
]))), 128)),
|
|
1731
|
-
o.mediaSmall.length < 2 ? (
|
|
1773
|
+
o.mediaSmall.length < 2 ? (s(), i("div", {
|
|
1732
1774
|
key: 0,
|
|
1733
1775
|
class: h(["body", o.bgColor === "dark" ? "body--dark" : ""])
|
|
1734
1776
|
}, [
|
|
1735
|
-
t("p", null,
|
|
1736
|
-
o.linkType === "link" ? (
|
|
1777
|
+
t("p", null, c(o.body), 1),
|
|
1778
|
+
o.linkType === "link" ? (s(), T(L, {
|
|
1737
1779
|
key: 0,
|
|
1738
1780
|
"link-type": o.bgColor === "dark" ? "regular_dark" : (o.bgColor === "light", "regular_light"),
|
|
1739
1781
|
arrow: ""
|
|
1740
1782
|
}, {
|
|
1741
1783
|
default: y(() => [
|
|
1742
|
-
|
|
1784
|
+
d(o.$slots, "gallery-link")
|
|
1743
1785
|
]),
|
|
1744
1786
|
_: 3
|
|
1745
1787
|
}, 8, ["link-type"])) : _("", !0)
|
|
@@ -1748,10 +1790,10 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1748
1790
|
], 2)
|
|
1749
1791
|
], 2));
|
|
1750
1792
|
}
|
|
1751
|
-
}),
|
|
1793
|
+
}), gl = /* @__PURE__ */ v(vl, [["__scopeId", "data-v-ae1f41d4"]]), bl = { class: "logo-wall__wrapper" }, yl = { class: "logo-wall__content" }, kl = {
|
|
1752
1794
|
key: 0,
|
|
1753
1795
|
class: "logo-wall__text"
|
|
1754
|
-
},
|
|
1796
|
+
}, $l = { key: 0 }, wl = { key: 1 }, Bl = { class: "logo-wall__logos" }, Sl = { class: "logo-wall__link" }, Il = /* @__PURE__ */ g({
|
|
1755
1797
|
__name: "logo-wall",
|
|
1756
1798
|
props: {
|
|
1757
1799
|
headline: {
|
|
@@ -1769,37 +1811,37 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1769
1811
|
}
|
|
1770
1812
|
},
|
|
1771
1813
|
setup(e) {
|
|
1772
|
-
return (a, r) => (
|
|
1773
|
-
t("div",
|
|
1774
|
-
e.headline || e.body ? (
|
|
1775
|
-
e.headline ? (
|
|
1776
|
-
e.body ? (
|
|
1814
|
+
return (a, r) => (s(), i("div", bl, [
|
|
1815
|
+
t("div", yl, [
|
|
1816
|
+
e.headline || e.body ? (s(), i("div", kl, [
|
|
1817
|
+
e.headline ? (s(), i("h2", $l, c(e.headline), 1)) : _("", !0),
|
|
1818
|
+
e.body ? (s(), i("p", wl, c(e.body), 1)) : _("", !0)
|
|
1777
1819
|
])) : _("", !0),
|
|
1778
|
-
t("div",
|
|
1779
|
-
(
|
|
1780
|
-
key:
|
|
1820
|
+
t("div", Bl, [
|
|
1821
|
+
(s(!0), i(V, null, P(e.logos, (l) => (s(), i("div", {
|
|
1822
|
+
key: l.src + l.alt,
|
|
1781
1823
|
class: "logo-wall__logo"
|
|
1782
1824
|
}, [
|
|
1783
|
-
S(
|
|
1825
|
+
S(M, null, {
|
|
1784
1826
|
default: y(() => [
|
|
1785
|
-
|
|
1827
|
+
d(a.$slots, "logo-wall-logo", F({ ref_for: !0 }, {
|
|
1786
1828
|
width: 130,
|
|
1787
1829
|
height: 130,
|
|
1788
|
-
src:
|
|
1789
|
-
alt:
|
|
1830
|
+
src: l.src,
|
|
1831
|
+
alt: l.alt
|
|
1790
1832
|
}), void 0, !0)
|
|
1791
1833
|
]),
|
|
1792
1834
|
_: 2
|
|
1793
1835
|
}, 1024)
|
|
1794
1836
|
]))), 128))
|
|
1795
1837
|
]),
|
|
1796
|
-
t("div",
|
|
1797
|
-
S(
|
|
1838
|
+
t("div", Sl, [
|
|
1839
|
+
S(L, {
|
|
1798
1840
|
"link-type": "regular_light",
|
|
1799
1841
|
arrow: !0
|
|
1800
1842
|
}, {
|
|
1801
1843
|
default: y(() => [
|
|
1802
|
-
|
|
1844
|
+
d(a.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1803
1845
|
]),
|
|
1804
1846
|
_: 3
|
|
1805
1847
|
})
|
|
@@ -1807,13 +1849,13 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1807
1849
|
])
|
|
1808
1850
|
]));
|
|
1809
1851
|
}
|
|
1810
|
-
}),
|
|
1852
|
+
}), Cl = /* @__PURE__ */ v(Il, [["__scopeId", "data-v-fd489289"]]), Tl = { class: "micro-stories__top" }, ql = {
|
|
1811
1853
|
key: 0,
|
|
1812
1854
|
class: "micro-stories__headline"
|
|
1813
|
-
},
|
|
1855
|
+
}, Al = {
|
|
1814
1856
|
key: 1,
|
|
1815
1857
|
class: "micro-stories__body"
|
|
1816
|
-
},
|
|
1858
|
+
}, Ll = { class: "micro-stories__splide" }, Dl = /* @__PURE__ */ g({
|
|
1817
1859
|
__name: "micro-stories",
|
|
1818
1860
|
props: {
|
|
1819
1861
|
bgColor: { default: "blue" },
|
|
@@ -1825,39 +1867,39 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1825
1867
|
white: "micro-stories__wrapper--white",
|
|
1826
1868
|
blue: "micro-stories__wrapper--blue",
|
|
1827
1869
|
dark: "micro-stories__wrapper--dark"
|
|
1828
|
-
}, r = q(() => a[
|
|
1829
|
-
return (o, u) => (
|
|
1870
|
+
}, r = q(() => a[l.bgColor]), l = e;
|
|
1871
|
+
return (o, u) => (s(), i("div", {
|
|
1830
1872
|
class: h(["micro-stories__wrapper", r.value])
|
|
1831
1873
|
}, [
|
|
1832
|
-
t("div",
|
|
1833
|
-
o.headline ? (
|
|
1834
|
-
t("h2", null,
|
|
1874
|
+
t("div", Tl, [
|
|
1875
|
+
o.headline ? (s(), i("div", ql, [
|
|
1876
|
+
t("h2", null, c(o.headline), 1)
|
|
1835
1877
|
])) : _("", !0),
|
|
1836
|
-
o.body ? (
|
|
1837
|
-
|
|
1878
|
+
o.body ? (s(), i("div", Al, [
|
|
1879
|
+
d(o.$slots, "micro-stories-body")
|
|
1838
1880
|
])) : _("", !0)
|
|
1839
1881
|
]),
|
|
1840
|
-
t("div",
|
|
1841
|
-
|
|
1882
|
+
t("div", Ll, [
|
|
1883
|
+
d(o.$slots, "micro-stories-slides")
|
|
1842
1884
|
]),
|
|
1843
|
-
|
|
1885
|
+
d(o.$slots, "micro-stories-controls")
|
|
1844
1886
|
], 2));
|
|
1845
1887
|
}
|
|
1846
|
-
}),
|
|
1847
|
-
function
|
|
1848
|
-
return
|
|
1849
|
-
t("div",
|
|
1850
|
-
|
|
1888
|
+
}), Vl = {}, Pl = { class: "policy__wrapper" }, Fl = { class: "policy__content" };
|
|
1889
|
+
function Ml(e, a) {
|
|
1890
|
+
return s(), i("div", Pl, [
|
|
1891
|
+
t("div", Fl, [
|
|
1892
|
+
d(e.$slots, "default", {}, void 0, !0)
|
|
1851
1893
|
])
|
|
1852
1894
|
]);
|
|
1853
1895
|
}
|
|
1854
|
-
const
|
|
1896
|
+
const Ol = /* @__PURE__ */ v(Vl, [["render", Ml], ["__scopeId", "data-v-ea887d7a"]]), zl = { class: "product-hero__wrapper" }, Hl = { class: "product-hero__content" }, Rl = { class: "product-hero__headline" }, Nl = { class: "product-hero__video" }, El = { class: "product-hero__insignia" }, jl = {
|
|
1855
1897
|
key: 0,
|
|
1856
1898
|
class: "product-hero__logo"
|
|
1857
|
-
},
|
|
1899
|
+
}, Gl = {
|
|
1858
1900
|
key: 1,
|
|
1859
1901
|
class: "product-hero__certification"
|
|
1860
|
-
},
|
|
1902
|
+
}, Kl = /* @__PURE__ */ g({
|
|
1861
1903
|
__name: "product-hero",
|
|
1862
1904
|
props: {
|
|
1863
1905
|
headline: {
|
|
@@ -1892,11 +1934,11 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1892
1934
|
}
|
|
1893
1935
|
},
|
|
1894
1936
|
setup(e) {
|
|
1895
|
-
return (a, r) => (
|
|
1896
|
-
t("div",
|
|
1897
|
-
t("div",
|
|
1898
|
-
t("div",
|
|
1899
|
-
e.videoSrc !== "" ? (
|
|
1937
|
+
return (a, r) => (s(), i("div", zl, [
|
|
1938
|
+
t("div", Hl, [
|
|
1939
|
+
t("div", Rl, c(e.headline), 1),
|
|
1940
|
+
t("div", Nl, [
|
|
1941
|
+
e.videoSrc !== "" ? (s(), T(te, {
|
|
1900
1942
|
key: 0,
|
|
1901
1943
|
play: "",
|
|
1902
1944
|
"local-video": !0,
|
|
@@ -1907,25 +1949,25 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1907
1949
|
autoplay: "",
|
|
1908
1950
|
loop: "",
|
|
1909
1951
|
muted: ""
|
|
1910
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (
|
|
1952
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (s(), T(I(M), { key: 1 }, {
|
|
1911
1953
|
default: y(() => [
|
|
1912
|
-
|
|
1954
|
+
d(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1913
1955
|
]),
|
|
1914
1956
|
_: 3
|
|
1915
1957
|
})),
|
|
1916
|
-
t("div",
|
|
1917
|
-
e.logoSrc ? (
|
|
1918
|
-
S(I(
|
|
1958
|
+
t("div", El, [
|
|
1959
|
+
e.logoSrc ? (s(), i("div", jl, [
|
|
1960
|
+
S(I(M), null, {
|
|
1919
1961
|
default: y(() => [
|
|
1920
|
-
|
|
1962
|
+
d(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1921
1963
|
]),
|
|
1922
1964
|
_: 3
|
|
1923
1965
|
})
|
|
1924
1966
|
])) : _("", !0),
|
|
1925
|
-
e.isCertified ? (
|
|
1926
|
-
S(I(
|
|
1967
|
+
e.isCertified ? (s(), i("div", Gl, [
|
|
1968
|
+
S(I(M), null, {
|
|
1927
1969
|
default: y(() => [
|
|
1928
|
-
|
|
1970
|
+
d(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1929
1971
|
]),
|
|
1930
1972
|
_: 3
|
|
1931
1973
|
})
|
|
@@ -1935,7 +1977,7 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1935
1977
|
])
|
|
1936
1978
|
]));
|
|
1937
1979
|
}
|
|
1938
|
-
}),
|
|
1980
|
+
}), Ul = /* @__PURE__ */ v(Kl, [["__scopeId", "data-v-deab9c3a"]]), Jl = { class: "promo__content" }, Wl = /* @__PURE__ */ g({
|
|
1939
1981
|
__name: "promo",
|
|
1940
1982
|
props: {
|
|
1941
1983
|
label: { default: "" },
|
|
@@ -1955,31 +1997,31 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1955
1997
|
dark: "promo__wrapper--dark",
|
|
1956
1998
|
light: "promo__wrapper--light",
|
|
1957
1999
|
default: "promo__wrapper--default"
|
|
1958
|
-
}, r = e,
|
|
1959
|
-
return (o, u) => (
|
|
2000
|
+
}, r = e, l = q(() => a[r.variant]);
|
|
2001
|
+
return (o, u) => (s(), i("div", {
|
|
1960
2002
|
class: h([
|
|
1961
2003
|
"promo__wrapper",
|
|
1962
|
-
|
|
2004
|
+
l.value,
|
|
1963
2005
|
o.teaser ? "promo__wrapper--teaser" : "",
|
|
1964
2006
|
o.multiply ? "promo__wrapper--multiply" : ""
|
|
1965
2007
|
])
|
|
1966
2008
|
}, [
|
|
1967
|
-
t("div",
|
|
1968
|
-
o.mediaType === "image" ? (
|
|
2009
|
+
t("div", Jl, [
|
|
2010
|
+
o.mediaType === "image" ? (s(), i("div", {
|
|
1969
2011
|
key: 0,
|
|
1970
2012
|
class: h([
|
|
1971
2013
|
"promo__image",
|
|
1972
2014
|
o.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1973
2015
|
])
|
|
1974
2016
|
}, [
|
|
1975
|
-
S(
|
|
2017
|
+
S(M, null, {
|
|
1976
2018
|
default: y(() => [
|
|
1977
|
-
|
|
2019
|
+
d(o.$slots, "promo-image", O(z({ src: o.src, width: 1920, alt: o.alt, height: 1080 })))
|
|
1978
2020
|
]),
|
|
1979
2021
|
_: 3
|
|
1980
2022
|
})
|
|
1981
2023
|
], 2)) : _("", !0),
|
|
1982
|
-
o.mediaType === "video" ? (
|
|
2024
|
+
o.mediaType === "video" ? (s(), i("div", {
|
|
1983
2025
|
key: 1,
|
|
1984
2026
|
class: h([
|
|
1985
2027
|
"promo__video",
|
|
@@ -2004,7 +2046,7 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2004
2046
|
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2005
2047
|
])
|
|
2006
2048
|
}, [
|
|
2007
|
-
o.label ? (
|
|
2049
|
+
o.label ? (s(), T(X, {
|
|
2008
2050
|
key: 0,
|
|
2009
2051
|
text: o.label,
|
|
2010
2052
|
"label-dark": o.variant === "dark"
|
|
@@ -2015,24 +2057,24 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2015
2057
|
o.variant === "dark" ? "promo__title--dark" : ""
|
|
2016
2058
|
])
|
|
2017
2059
|
}, [
|
|
2018
|
-
|
|
2060
|
+
d(o.$slots, "promo-headline")
|
|
2019
2061
|
], 2),
|
|
2020
|
-
o.linkType === "link" ? (
|
|
2062
|
+
o.linkType === "link" ? (s(), T(L, {
|
|
2021
2063
|
key: 1,
|
|
2022
2064
|
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
2023
2065
|
arrow: ""
|
|
2024
2066
|
}, {
|
|
2025
2067
|
default: y(() => [
|
|
2026
|
-
|
|
2068
|
+
d(o.$slots, "promo-link")
|
|
2027
2069
|
]),
|
|
2028
2070
|
_: 3
|
|
2029
2071
|
}, 8, ["link-type"])) : _("", !0),
|
|
2030
|
-
o.linkType === "button" ? (
|
|
2072
|
+
o.linkType === "button" ? (s(), T(L, {
|
|
2031
2073
|
key: 2,
|
|
2032
2074
|
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
2033
2075
|
}, {
|
|
2034
2076
|
default: y(() => [
|
|
2035
|
-
|
|
2077
|
+
d(o.$slots, "promo-link")
|
|
2036
2078
|
]),
|
|
2037
2079
|
_: 3
|
|
2038
2080
|
}, 8, ["link-type"])) : _("", !0)
|
|
@@ -2040,10 +2082,10 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2040
2082
|
])
|
|
2041
2083
|
], 2));
|
|
2042
2084
|
}
|
|
2043
|
-
}),
|
|
2085
|
+
}), Yl = /* @__PURE__ */ v(Wl, [["__scopeId", "data-v-df54d965"]]), Ql = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), Zl = { class: "quote__wrapper" }, Xl = { class: "quote__content" }, xl = /* @__PURE__ */ Ql(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), es = { class: "quote__quote" }, ts = { class: "quote__quote-text" }, as = { class: "quote__author" }, os = {
|
|
2044
2086
|
key: 0,
|
|
2045
2087
|
class: "quote__image"
|
|
2046
|
-
},
|
|
2088
|
+
}, ls = { class: "quote__text" }, ss = { class: "quote__author-name" }, is = { class: "quote__author-title" }, rs = /* @__PURE__ */ g({
|
|
2047
2089
|
__name: "quote",
|
|
2048
2090
|
props: {
|
|
2049
2091
|
quote: {
|
|
@@ -2065,16 +2107,16 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2065
2107
|
}
|
|
2066
2108
|
},
|
|
2067
2109
|
setup(e) {
|
|
2068
|
-
return (a, r) => (
|
|
2069
|
-
t("div",
|
|
2070
|
-
|
|
2071
|
-
t("div",
|
|
2072
|
-
t("p",
|
|
2073
|
-
t("div",
|
|
2074
|
-
e.authorImage ? (
|
|
2075
|
-
S(
|
|
2110
|
+
return (a, r) => (s(), i("div", Zl, [
|
|
2111
|
+
t("div", Xl, [
|
|
2112
|
+
xl,
|
|
2113
|
+
t("div", es, [
|
|
2114
|
+
t("p", ts, c(e.quote), 1),
|
|
2115
|
+
t("div", as, [
|
|
2116
|
+
e.authorImage ? (s(), i("div", os, [
|
|
2117
|
+
S(M, null, {
|
|
2076
2118
|
default: y(() => [
|
|
2077
|
-
|
|
2119
|
+
d(a.$slots, "author-image", O(z({
|
|
2078
2120
|
src: e.authorImage + "/m/100x100",
|
|
2079
2121
|
width: 60,
|
|
2080
2122
|
height: 60
|
|
@@ -2083,22 +2125,22 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2083
2125
|
_: 3
|
|
2084
2126
|
})
|
|
2085
2127
|
])) : _("", !0),
|
|
2086
|
-
t("div",
|
|
2087
|
-
t("p",
|
|
2088
|
-
t("p",
|
|
2128
|
+
t("div", ls, [
|
|
2129
|
+
t("p", ss, c(e.author), 1),
|
|
2130
|
+
t("p", is, c(e.authorTitle), 1)
|
|
2089
2131
|
])
|
|
2090
2132
|
])
|
|
2091
2133
|
])
|
|
2092
2134
|
])
|
|
2093
2135
|
]));
|
|
2094
2136
|
}
|
|
2095
|
-
}),
|
|
2137
|
+
}), ns = /* @__PURE__ */ v(rs, [["__scopeId", "data-v-e3cc8e27"]]), ds = { class: "rich-text__wrapper" }, cs = {
|
|
2096
2138
|
key: 0,
|
|
2097
2139
|
class: "rich-text__links"
|
|
2098
|
-
},
|
|
2140
|
+
}, us = {
|
|
2099
2141
|
key: 0,
|
|
2100
2142
|
class: "rich-text__bullet-list"
|
|
2101
|
-
},
|
|
2143
|
+
}, _s = /* @__PURE__ */ g({
|
|
2102
2144
|
__name: "rich-text",
|
|
2103
2145
|
props: {
|
|
2104
2146
|
headline: { default: "" },
|
|
@@ -2111,25 +2153,25 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2111
2153
|
label: { default: "" }
|
|
2112
2154
|
},
|
|
2113
2155
|
setup(e) {
|
|
2114
|
-
return (a, r) => (
|
|
2156
|
+
return (a, r) => (s(), i("div", {
|
|
2115
2157
|
class: h([
|
|
2116
2158
|
"rich-text",
|
|
2117
2159
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
2118
2160
|
])
|
|
2119
2161
|
}, [
|
|
2120
|
-
t("div",
|
|
2121
|
-
a.label ? (
|
|
2162
|
+
t("div", ds, [
|
|
2163
|
+
a.label ? (s(), T(X, {
|
|
2122
2164
|
key: 0,
|
|
2123
2165
|
text: a.label,
|
|
2124
2166
|
"label-dark": !1
|
|
2125
2167
|
}, null, 8, ["text"])) : _("", !0),
|
|
2126
|
-
a.headline ? (
|
|
2168
|
+
a.headline ? (s(), i("h2", {
|
|
2127
2169
|
key: 1,
|
|
2128
2170
|
class: h([
|
|
2129
2171
|
"rich-text__headline",
|
|
2130
2172
|
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
2131
2173
|
])
|
|
2132
|
-
},
|
|
2174
|
+
}, c(a.headline), 3)) : _("", !0),
|
|
2133
2175
|
t("div", {
|
|
2134
2176
|
class: h([
|
|
2135
2177
|
"rich-text__content",
|
|
@@ -2142,24 +2184,24 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2142
2184
|
a.bulletList || a.image ? "rich-text__body--content-right" : ""
|
|
2143
2185
|
])
|
|
2144
2186
|
}, [
|
|
2145
|
-
|
|
2146
|
-
a.links ? (
|
|
2147
|
-
|
|
2187
|
+
d(a.$slots, "rich-text-content"),
|
|
2188
|
+
a.links ? (s(), i("div", cs, [
|
|
2189
|
+
d(a.$slots, "rich-text-links")
|
|
2148
2190
|
])) : _("", !0)
|
|
2149
2191
|
], 2),
|
|
2150
|
-
a.bulletList ? (
|
|
2151
|
-
|
|
2192
|
+
a.bulletList ? (s(), i("div", us, [
|
|
2193
|
+
d(a.$slots, "rich-text-bullet-list")
|
|
2152
2194
|
])) : _("", !0),
|
|
2153
|
-
a.image ? (
|
|
2195
|
+
a.image ? (s(), i("div", {
|
|
2154
2196
|
key: 1,
|
|
2155
2197
|
class: h([
|
|
2156
2198
|
"rich-text__image",
|
|
2157
2199
|
a.imageClip ? "rich-text__image--clip" : ""
|
|
2158
2200
|
])
|
|
2159
2201
|
}, [
|
|
2160
|
-
S(
|
|
2202
|
+
S(M, null, {
|
|
2161
2203
|
default: y(() => [
|
|
2162
|
-
|
|
2204
|
+
d(a.$slots, "rich-text-image", O(z({ width: 865, height: 307 })))
|
|
2163
2205
|
]),
|
|
2164
2206
|
_: 3
|
|
2165
2207
|
})
|
|
@@ -2168,27 +2210,27 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2168
2210
|
])
|
|
2169
2211
|
], 2));
|
|
2170
2212
|
}
|
|
2171
|
-
}),
|
|
2172
|
-
function
|
|
2173
|
-
return
|
|
2174
|
-
t("div",
|
|
2175
|
-
t("div",
|
|
2176
|
-
t("div",
|
|
2213
|
+
}), hs = /* @__PURE__ */ v(_s, [["__scopeId", "data-v-5441d67a"]]), ps = {}, ms = { class: "rich-text" }, fs = { class: "rich-text__wrapper" }, vs = { class: "rich-text__content rich-text__content--left-aligned" }, gs = { class: "rich-text__body" };
|
|
2214
|
+
function bs(e, a) {
|
|
2215
|
+
return s(), i("div", ms, [
|
|
2216
|
+
t("div", fs, [
|
|
2217
|
+
t("div", vs, [
|
|
2218
|
+
t("div", gs, [
|
|
2177
2219
|
t("div", null, [
|
|
2178
|
-
|
|
2220
|
+
d(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
2179
2221
|
]),
|
|
2180
2222
|
t("div", null, [
|
|
2181
|
-
|
|
2223
|
+
d(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
2182
2224
|
])
|
|
2183
2225
|
])
|
|
2184
2226
|
])
|
|
2185
2227
|
])
|
|
2186
2228
|
]);
|
|
2187
2229
|
}
|
|
2188
|
-
const
|
|
2230
|
+
const ys = /* @__PURE__ */ v(ps, [["render", bs], ["__scopeId", "data-v-776750d2"]]), ks = (e) => (H("data-v-798e7a06"), e = e(), R(), e), $s = { class: "timeline__wrapper" }, ws = { class: "timeline__content" }, Bs = { class: "timeline__items" }, Ss = { class: "item__left" }, Is = /* @__PURE__ */ ks(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2189
2231
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2190
2232
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2191
|
-
], -1)),
|
|
2233
|
+
], -1)), Cs = { class: "item__right" }, Ts = ["innerHTML"], qs = /* @__PURE__ */ g({
|
|
2192
2234
|
__name: "timeline",
|
|
2193
2235
|
props: {
|
|
2194
2236
|
timelineItems: {
|
|
@@ -2199,8 +2241,8 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2199
2241
|
setup(e) {
|
|
2200
2242
|
return me(() => {
|
|
2201
2243
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
2202
|
-
(
|
|
2203
|
-
|
|
2244
|
+
(l) => {
|
|
2245
|
+
l.forEach((o) => {
|
|
2204
2246
|
o.isIntersecting && (o.target.classList.add("visible"), o.target.classList.remove("faded"), r.unobserve(o.target));
|
|
2205
2247
|
});
|
|
2206
2248
|
},
|
|
@@ -2208,46 +2250,46 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2208
2250
|
threshold: 1
|
|
2209
2251
|
}
|
|
2210
2252
|
);
|
|
2211
|
-
a.forEach((
|
|
2212
|
-
r.observe(
|
|
2253
|
+
a.forEach((l) => {
|
|
2254
|
+
r.observe(l);
|
|
2213
2255
|
});
|
|
2214
|
-
}), (a, r) => (
|
|
2215
|
-
t("div",
|
|
2216
|
-
t("div",
|
|
2217
|
-
(
|
|
2218
|
-
key:
|
|
2256
|
+
}), (a, r) => (s(), i("div", $s, [
|
|
2257
|
+
t("div", ws, [
|
|
2258
|
+
t("div", Bs, [
|
|
2259
|
+
(s(!0), i(V, null, P(e.timelineItems, (l) => (s(), i("div", {
|
|
2260
|
+
key: l.year,
|
|
2219
2261
|
class: "timeline__item faded"
|
|
2220
2262
|
}, [
|
|
2221
|
-
t("div",
|
|
2222
|
-
|
|
2223
|
-
t("div",
|
|
2224
|
-
S(
|
|
2263
|
+
t("div", Ss, c(l.year), 1),
|
|
2264
|
+
Is,
|
|
2265
|
+
t("div", Cs, [
|
|
2266
|
+
S(M, null, {
|
|
2225
2267
|
default: y(() => [
|
|
2226
|
-
|
|
2268
|
+
l.media.src ? d(a.$slots, "timeline-image", F({
|
|
2227
2269
|
key: 0,
|
|
2228
2270
|
ref_for: !0
|
|
2229
|
-
}, { src:
|
|
2271
|
+
}, { src: l.media.src, alt: l.media.alt }), void 0, !0) : _("", !0)
|
|
2230
2272
|
]),
|
|
2231
2273
|
_: 2
|
|
2232
2274
|
}, 1024),
|
|
2233
2275
|
t("div", {
|
|
2234
|
-
style: ee([
|
|
2276
|
+
style: ee([l.media.src ? "" : "margin-top: 0px"]),
|
|
2235
2277
|
class: "rich-text",
|
|
2236
|
-
innerHTML:
|
|
2237
|
-
}, null, 12,
|
|
2278
|
+
innerHTML: l.text
|
|
2279
|
+
}, null, 12, Ts)
|
|
2238
2280
|
])
|
|
2239
2281
|
]))), 128))
|
|
2240
2282
|
])
|
|
2241
2283
|
])
|
|
2242
2284
|
]));
|
|
2243
2285
|
}
|
|
2244
|
-
}),
|
|
2286
|
+
}), As = /* @__PURE__ */ v(qs, [["__scopeId", "data-v-798e7a06"]]), Ls = { class: "vimeo" }, Ds = { class: "vimeo__wrapper" }, Vs = {
|
|
2245
2287
|
key: 0,
|
|
2246
2288
|
class: "vimeo__headline"
|
|
2247
|
-
},
|
|
2289
|
+
}, Ps = {
|
|
2248
2290
|
key: 1,
|
|
2249
2291
|
class: "vimeo__description"
|
|
2250
|
-
},
|
|
2292
|
+
}, Fs = /* @__PURE__ */ g({
|
|
2251
2293
|
__name: "vimeo",
|
|
2252
2294
|
props: {
|
|
2253
2295
|
headline: {
|
|
@@ -2260,18 +2302,18 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2260
2302
|
}
|
|
2261
2303
|
},
|
|
2262
2304
|
setup(e) {
|
|
2263
|
-
return (a, r) => (
|
|
2264
|
-
t("div",
|
|
2265
|
-
e.headline ? (
|
|
2266
|
-
|
|
2267
|
-
e.description ? (
|
|
2305
|
+
return (a, r) => (s(), i("div", Ls, [
|
|
2306
|
+
t("div", Ds, [
|
|
2307
|
+
e.headline ? (s(), i("h2", Vs, c(e.headline), 1)) : _("", !0),
|
|
2308
|
+
d(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2309
|
+
e.description ? (s(), i("p", Ps, c(e.description), 1)) : _("", !0)
|
|
2268
2310
|
])
|
|
2269
2311
|
]));
|
|
2270
2312
|
}
|
|
2271
|
-
}),
|
|
2313
|
+
}), Ms = /* @__PURE__ */ v(Fs, [["__scopeId", "data-v-90a2b109"]]), Os = { class: "academy-overview" }, zs = { class: "academy-overview__content-wrapper" }, Hs = { class: "academy-overview__content" }, Rs = { class: "academy-overview__title" }, Ns = { class: "academy-overview__description" }, Es = { class: "academy-overview__button-wrapper" }, js = {
|
|
2272
2314
|
key: 0,
|
|
2273
2315
|
class: "academy-overview__stats"
|
|
2274
|
-
},
|
|
2316
|
+
}, Gs = { class: "academy-overview__stats-row" }, Ks = { class: "academy-overview__stat" }, Us = { class: "academy-overview__value" }, Js = { class: "academy-overview__label" }, Ws = { class: "academy-overview__stat" }, Ys = { class: "academy-overview__value" }, Qs = { class: "academy-overview__label" }, Zs = /* @__PURE__ */ g({
|
|
2275
2317
|
__name: "frontpage-hero",
|
|
2276
2318
|
props: {
|
|
2277
2319
|
hero: { default: () => ({
|
|
@@ -2285,25 +2327,25 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2285
2327
|
}) }
|
|
2286
2328
|
},
|
|
2287
2329
|
setup(e) {
|
|
2288
|
-
return (a, r) => (
|
|
2289
|
-
t("div",
|
|
2290
|
-
t("div",
|
|
2330
|
+
return (a, r) => (s(), i("div", Os, [
|
|
2331
|
+
t("div", zs, [
|
|
2332
|
+
t("div", Hs, [
|
|
2291
2333
|
t("div", null, [
|
|
2292
|
-
t("h1",
|
|
2293
|
-
t("p",
|
|
2294
|
-
t("div",
|
|
2295
|
-
|
|
2334
|
+
t("h1", Rs, c(a.hero.headline), 1),
|
|
2335
|
+
t("p", Ns, c(a.hero.description), 1),
|
|
2336
|
+
t("div", Es, [
|
|
2337
|
+
d(a.$slots, "button", {}, void 0, !0)
|
|
2296
2338
|
])
|
|
2297
2339
|
]),
|
|
2298
|
-
a.hero.showStats ? (
|
|
2299
|
-
t("div",
|
|
2300
|
-
t("div",
|
|
2301
|
-
t("div",
|
|
2302
|
-
t("div",
|
|
2340
|
+
a.hero.showStats ? (s(), i("div", js, [
|
|
2341
|
+
t("div", Gs, [
|
|
2342
|
+
t("div", Ks, [
|
|
2343
|
+
t("div", Us, c(a.hero.lessonValue), 1),
|
|
2344
|
+
t("div", Js, c(a.hero.lessonLabel), 1)
|
|
2303
2345
|
]),
|
|
2304
|
-
t("div",
|
|
2305
|
-
t("div",
|
|
2306
|
-
t("div",
|
|
2346
|
+
t("div", Ws, [
|
|
2347
|
+
t("div", Ys, c(a.hero.pointsValue), 1),
|
|
2348
|
+
t("div", Qs, c(a.hero.pointsLabel), 1)
|
|
2307
2349
|
])
|
|
2308
2350
|
])
|
|
2309
2351
|
])) : _("", !0)
|
|
@@ -2311,7 +2353,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2311
2353
|
])
|
|
2312
2354
|
]));
|
|
2313
2355
|
}
|
|
2314
|
-
}),
|
|
2356
|
+
}), Xs = /* @__PURE__ */ v(Zs, [["__scopeId", "data-v-1594f3e8"]]), xs = { class: "not-found__wrapper" }, ei = { class: "not-found__content" }, ti = { class: "not-found__headline" }, ai = { class: "not-found__body" }, oi = /* @__PURE__ */ g({
|
|
2315
2357
|
__name: "404",
|
|
2316
2358
|
props: {
|
|
2317
2359
|
headline: {
|
|
@@ -2320,16 +2362,16 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2320
2362
|
}
|
|
2321
2363
|
},
|
|
2322
2364
|
setup(e) {
|
|
2323
|
-
return (a, r) => (
|
|
2324
|
-
t("div",
|
|
2325
|
-
t("h1",
|
|
2326
|
-
t("div",
|
|
2327
|
-
|
|
2365
|
+
return (a, r) => (s(), i("div", xs, [
|
|
2366
|
+
t("div", ei, [
|
|
2367
|
+
t("h1", ti, c(e.headline), 1),
|
|
2368
|
+
t("div", ai, [
|
|
2369
|
+
d(a.$slots, "not-found-body", {}, void 0, !0)
|
|
2328
2370
|
])
|
|
2329
2371
|
])
|
|
2330
2372
|
]));
|
|
2331
2373
|
}
|
|
2332
|
-
}), li = /* @__PURE__ */ v(
|
|
2374
|
+
}), li = /* @__PURE__ */ v(oi, [["__scopeId", "data-v-b829ca6c"]]), si = { class: "filter__wrapper" }, ii = { class: "filter__content" }, ri = { class: "filter__dropdowns" }, ni = { class: "filter__chips" }, di = /* @__PURE__ */ g({
|
|
2333
2375
|
__name: "filter",
|
|
2334
2376
|
props: {
|
|
2335
2377
|
hasChips: {
|
|
@@ -2343,53 +2385,53 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2343
2385
|
},
|
|
2344
2386
|
emits: ["clearFilters"],
|
|
2345
2387
|
setup(e) {
|
|
2346
|
-
return (a, r) => (
|
|
2347
|
-
t("div",
|
|
2348
|
-
t("div",
|
|
2349
|
-
|
|
2388
|
+
return (a, r) => (s(), i("div", si, [
|
|
2389
|
+
t("div", ii, [
|
|
2390
|
+
t("div", ri, [
|
|
2391
|
+
d(a.$slots, "filter-dropdowns")
|
|
2350
2392
|
]),
|
|
2351
|
-
t("div",
|
|
2352
|
-
|
|
2353
|
-
e.hasChips ? (
|
|
2393
|
+
t("div", ni, [
|
|
2394
|
+
d(a.$slots, "filter-chips"),
|
|
2395
|
+
e.hasChips ? (s(), i("button", {
|
|
2354
2396
|
key: 0,
|
|
2355
2397
|
class: "filter__clear",
|
|
2356
|
-
onClick: r[0] || (r[0] = (
|
|
2357
|
-
},
|
|
2398
|
+
onClick: r[0] || (r[0] = (l) => a.$emit("clearFilters"))
|
|
2399
|
+
}, c(e.removeAll), 1)) : _("", !0)
|
|
2358
2400
|
])
|
|
2359
2401
|
])
|
|
2360
2402
|
]));
|
|
2361
2403
|
}
|
|
2362
|
-
}),
|
|
2404
|
+
}), ci = /* @__PURE__ */ v(di, [["__scopeId", "data-v-b2ccb954"]]), ye = (e) => (H("data-v-a0ab0743"), e = e(), R(), e), ui = { class: "footer__wrapper" }, _i = { class: "footer__content" }, hi = {
|
|
2363
2405
|
key: 0,
|
|
2364
2406
|
src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
|
|
2365
2407
|
style: { margin: "0 auto" },
|
|
2366
2408
|
width: "101",
|
|
2367
2409
|
height: "45"
|
|
2368
|
-
},
|
|
2410
|
+
}, pi = { class: "footer__sections" }, mi = { class: "section__title" }, fi = { class: "section__list" }, vi = { class: "section" }, gi = {
|
|
2369
2411
|
key: 0,
|
|
2370
2412
|
class: "section__title"
|
|
2371
|
-
},
|
|
2413
|
+
}, bi = {
|
|
2372
2414
|
key: 1,
|
|
2373
2415
|
class: "section__title"
|
|
2374
|
-
},
|
|
2416
|
+
}, yi = { key: 0 }, ki = { key: 1 }, $i = { key: 2 }, wi = { key: 3 }, Bi = { key: 4 }, Si = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("br", null, null, -1)), Ii = {
|
|
2375
2417
|
key: 0,
|
|
2376
2418
|
href: "mailto:china@mir-robots.com"
|
|
2377
|
-
},
|
|
2419
|
+
}, Ci = {
|
|
2378
2420
|
key: 1,
|
|
2379
2421
|
href: "mailto:mail@mir-robots.com"
|
|
2380
2422
|
}, Ti = {
|
|
2381
2423
|
key: 0,
|
|
2382
2424
|
href: "tel:+8613661856951"
|
|
2383
|
-
},
|
|
2425
|
+
}, qi = {
|
|
2384
2426
|
key: 1,
|
|
2385
2427
|
href: "tel:+4520377577"
|
|
2386
|
-
},
|
|
2428
|
+
}, Ai = { class: "footer__bottom" }, Li = { class: "copyright" }, Di = { class: "footer__policy" }, Vi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), Pi = {
|
|
2387
2429
|
key: 0,
|
|
2388
2430
|
class: "footer__social"
|
|
2389
|
-
},
|
|
2431
|
+
}, Fi = ["href", "aria-label"], Mi = {
|
|
2390
2432
|
key: 1,
|
|
2391
2433
|
class: "footer__social"
|
|
2392
|
-
},
|
|
2434
|
+
}, Oi = ["href", "aria-label"], zi = /* @__PURE__ */ g({
|
|
2393
2435
|
__name: "footer",
|
|
2394
2436
|
props: {
|
|
2395
2437
|
language: { default: "" },
|
|
@@ -2402,107 +2444,107 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2402
2444
|
},
|
|
2403
2445
|
emits: ["changeRegionClicked"],
|
|
2404
2446
|
setup(e) {
|
|
2405
|
-
return (a, r) => (
|
|
2406
|
-
t("footer",
|
|
2407
|
-
a.language === "zh" ? (
|
|
2408
|
-
t("div",
|
|
2409
|
-
(
|
|
2410
|
-
key:
|
|
2447
|
+
return (a, r) => (s(), i("div", ui, [
|
|
2448
|
+
t("footer", _i, [
|
|
2449
|
+
a.language === "zh" ? (s(), i("img", hi)) : _("", !0),
|
|
2450
|
+
t("div", pi, [
|
|
2451
|
+
(s(!0), i(V, null, P(a.footerSections, (l) => (s(), i("div", {
|
|
2452
|
+
key: l.title,
|
|
2411
2453
|
class: "section"
|
|
2412
2454
|
}, [
|
|
2413
|
-
t("span",
|
|
2455
|
+
t("span", mi, c(l.title), 1),
|
|
2414
2456
|
t("nav", null, [
|
|
2415
|
-
t("ul",
|
|
2416
|
-
|
|
2417
|
-
links:
|
|
2457
|
+
t("ul", fi, [
|
|
2458
|
+
d(a.$slots, "section-links", {
|
|
2459
|
+
links: l.links
|
|
2418
2460
|
})
|
|
2419
2461
|
])
|
|
2420
2462
|
])
|
|
2421
2463
|
]))), 128)),
|
|
2422
|
-
t("div",
|
|
2423
|
-
a.language === "zh" ? (
|
|
2464
|
+
t("div", vi, [
|
|
2465
|
+
a.language === "zh" ? (s(), i("span", gi, "名傲移动机器人(上海)有限公司")) : (s(), i("span", bi, "Mobile Industrial Robots A/S")),
|
|
2424
2466
|
t("address", null, [
|
|
2425
|
-
a.language === "zh" ? (
|
|
2426
|
-
a.language === "zh" ? (
|
|
2427
|
-
a.language !== "zh" ? (
|
|
2428
|
-
|
|
2429
|
-
S(
|
|
2467
|
+
a.language === "zh" ? (s(), i("span", yi, "上海浦东新区金桥出口加工区")) : (s(), i("span", ki, "Energivej 51")),
|
|
2468
|
+
a.language === "zh" ? (s(), i("span", $i, "桂桥路1201号10栋2楼")) : (s(), i("span", wi, "5260 Odense S")),
|
|
2469
|
+
a.language !== "zh" ? (s(), i("span", Bi, "CVR: 35251235")) : _("", !0),
|
|
2470
|
+
Si,
|
|
2471
|
+
S(L, {
|
|
2430
2472
|
class: "footer__contact",
|
|
2431
2473
|
"link-type": "regular_light",
|
|
2432
2474
|
underline: "false"
|
|
2433
2475
|
}, {
|
|
2434
2476
|
default: y(() => [
|
|
2435
|
-
a.language === "zh" ? (
|
|
2477
|
+
a.language === "zh" ? (s(), i("a", Ii, "china@mir-robots.com")) : (s(), i("a", Ci, "mail@mir-robots.com"))
|
|
2436
2478
|
]),
|
|
2437
2479
|
_: 1
|
|
2438
2480
|
}),
|
|
2439
|
-
S(
|
|
2481
|
+
S(L, {
|
|
2440
2482
|
class: "footer__contact",
|
|
2441
2483
|
"link-type": "regular_light",
|
|
2442
2484
|
underline: "false"
|
|
2443
2485
|
}, {
|
|
2444
2486
|
default: y(() => [
|
|
2445
|
-
a.language === "zh" ? (
|
|
2487
|
+
a.language === "zh" ? (s(), i("a", Ti, "+86 13661856951(微信同号)")) : (s(), i("a", qi, "+45 20 377 577"))
|
|
2446
2488
|
]),
|
|
2447
2489
|
_: 1
|
|
2448
2490
|
})
|
|
2449
2491
|
])
|
|
2450
2492
|
])
|
|
2451
2493
|
]),
|
|
2452
|
-
t("div",
|
|
2453
|
-
t("p",
|
|
2454
|
-
t("div",
|
|
2494
|
+
t("div", Ai, [
|
|
2495
|
+
t("p", Li, " © Mobile Industrial Robots " + c((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2496
|
+
t("div", Di, [
|
|
2455
2497
|
t("button", {
|
|
2456
2498
|
class: "footer__language-switcher",
|
|
2457
|
-
onClick: r[0] || (r[0] = (
|
|
2499
|
+
onClick: r[0] || (r[0] = (l) => a.$emit("changeRegionClicked"))
|
|
2458
2500
|
}, [
|
|
2459
2501
|
t("span", null, [
|
|
2460
|
-
|
|
2461
|
-
J(
|
|
2502
|
+
Vi,
|
|
2503
|
+
J(c(a.changeRegion), 1)
|
|
2462
2504
|
])
|
|
2463
2505
|
]),
|
|
2464
|
-
|
|
2465
|
-
|
|
2506
|
+
d(a.$slots, "footer-privacy-link"),
|
|
2507
|
+
d(a.$slots, "footer-cookie-link")
|
|
2466
2508
|
]),
|
|
2467
|
-
a.language !== "zh" ? (
|
|
2468
|
-
(
|
|
2469
|
-
key:
|
|
2509
|
+
a.language !== "zh" ? (s(), i("div", Pi, [
|
|
2510
|
+
(s(!0), i(V, null, P(a.socialMedia, (l) => (s(), T(L, {
|
|
2511
|
+
key: l.title,
|
|
2470
2512
|
underline: "false",
|
|
2471
2513
|
"link-type": "regular"
|
|
2472
2514
|
}, {
|
|
2473
2515
|
default: y(() => [
|
|
2474
2516
|
t("a", {
|
|
2475
|
-
href:
|
|
2517
|
+
href: l.url,
|
|
2476
2518
|
target: "_blank",
|
|
2477
|
-
"aria-label":
|
|
2519
|
+
"aria-label": l.title
|
|
2478
2520
|
}, [
|
|
2479
2521
|
t("i", {
|
|
2480
2522
|
width: "19",
|
|
2481
2523
|
height: "14",
|
|
2482
|
-
class: h(["footer__social--icon", [
|
|
2524
|
+
class: h(["footer__social--icon", [l.title ? "bg-" + l.title : ""]])
|
|
2483
2525
|
}, null, 2)
|
|
2484
|
-
], 8,
|
|
2526
|
+
], 8, Fi)
|
|
2485
2527
|
]),
|
|
2486
2528
|
_: 2
|
|
2487
2529
|
}, 1024))), 128))
|
|
2488
|
-
])) : (
|
|
2489
|
-
(
|
|
2490
|
-
key:
|
|
2530
|
+
])) : (s(), i("div", Mi, [
|
|
2531
|
+
(s(!0), i(V, null, P(a.socialMediaChina, (l) => (s(), T(L, {
|
|
2532
|
+
key: l.title,
|
|
2491
2533
|
underline: "false",
|
|
2492
2534
|
"link-type": "regular"
|
|
2493
2535
|
}, {
|
|
2494
2536
|
default: y(() => [
|
|
2495
2537
|
t("a", {
|
|
2496
|
-
href:
|
|
2538
|
+
href: l.url,
|
|
2497
2539
|
target: "_blank",
|
|
2498
|
-
"aria-label":
|
|
2540
|
+
"aria-label": l.title
|
|
2499
2541
|
}, [
|
|
2500
2542
|
t("i", {
|
|
2501
2543
|
width: "19",
|
|
2502
2544
|
height: "14",
|
|
2503
|
-
class: h(["footer__social--icon", [
|
|
2545
|
+
class: h(["footer__social--icon", [l.title ? "bg-" + l.title : ""]])
|
|
2504
2546
|
}, null, 2)
|
|
2505
|
-
], 8,
|
|
2547
|
+
], 8, Oi)
|
|
2506
2548
|
]),
|
|
2507
2549
|
_: 2
|
|
2508
2550
|
}, 1024))), 128))
|
|
@@ -2511,51 +2553,51 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2511
2553
|
])
|
|
2512
2554
|
]));
|
|
2513
2555
|
}
|
|
2514
|
-
}),
|
|
2556
|
+
}), Hi = /* @__PURE__ */ v(zi, [["__scopeId", "data-v-a0ab0743"]]), ke = (e) => (H("data-v-0b00b9f2"), e = e(), R(), e), Ri = { class: "header__wrapper" }, Ni = { class: "nav-wrapper" }, Ei = { class: "mir-link-logo" }, ji = { class: "main-nav-items" }, Gi = {
|
|
2515
2557
|
key: 0,
|
|
2516
2558
|
id: "menu-dropdown",
|
|
2517
2559
|
ref: "dropdownDiv"
|
|
2518
|
-
},
|
|
2560
|
+
}, Ki = {
|
|
2519
2561
|
key: 0,
|
|
2520
2562
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2521
2563
|
alt: "dropdown arrow"
|
|
2522
|
-
},
|
|
2564
|
+
}, Ui = {
|
|
2523
2565
|
key: 1,
|
|
2524
2566
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2525
2567
|
alt: "dropdown arrow",
|
|
2526
2568
|
style: { transform: "rotate(180deg)" }
|
|
2527
|
-
},
|
|
2569
|
+
}, Ji = { class: "dropdown-content" }, Wi = {
|
|
2528
2570
|
key: 1,
|
|
2529
2571
|
class: "nav-search-wrapper"
|
|
2530
|
-
},
|
|
2572
|
+
}, Yi = ["src"], Qi = {
|
|
2531
2573
|
key: 2,
|
|
2532
2574
|
id: "menu-portal-switcher",
|
|
2533
2575
|
class: "portal-switcher-wrapper"
|
|
2534
|
-
},
|
|
2576
|
+
}, Zi = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2535
2577
|
src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
|
|
2536
2578
|
alt: "portal switcher icon",
|
|
2537
2579
|
width: "20",
|
|
2538
2580
|
height: "20"
|
|
2539
|
-
}, null, -1)),
|
|
2540
|
-
|
|
2541
|
-
],
|
|
2581
|
+
}, null, -1)), Xi = [
|
|
2582
|
+
Zi
|
|
2583
|
+
], xi = { class: "portal-switcher-content" }, er = { class: "portal-switcher-links" }, tr = ["href"], ar = ["src"], or = {
|
|
2542
2584
|
key: 3,
|
|
2543
2585
|
id: "menu-profile-dropdown",
|
|
2544
2586
|
class: "profile-dropdown-wrapper"
|
|
2545
2587
|
}, lr = {
|
|
2546
2588
|
key: 0,
|
|
2547
2589
|
class: "profile-dropdown-sign-in"
|
|
2548
|
-
},
|
|
2590
|
+
}, sr = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2549
2591
|
src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
|
|
2550
2592
|
alt: "profile dropdown icon",
|
|
2551
2593
|
width: "20",
|
|
2552
2594
|
height: "20"
|
|
2553
|
-
}, null, -1)),
|
|
2554
|
-
|
|
2555
|
-
],
|
|
2595
|
+
}, null, -1)), ir = [
|
|
2596
|
+
sr
|
|
2597
|
+
], rr = { class: "profile-dropdown-content" }, nr = { class: "mobile-logo-search-burger-wrapper" }, dr = { class: "mobile-mir-link-logo" }, cr = {
|
|
2556
2598
|
key: 0,
|
|
2557
2599
|
class: "mobile-search-wrapper"
|
|
2558
|
-
},
|
|
2600
|
+
}, ur = ["src"], _r = ["src"], hr = { class: "mobile-menu-content-wrapper" }, pr = { class: "mobile-dropdown-content" }, mr = /* @__PURE__ */ g({
|
|
2559
2601
|
__name: "header",
|
|
2560
2602
|
props: {
|
|
2561
2603
|
burgerState: {
|
|
@@ -2607,7 +2649,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2607
2649
|
"clickSearch"
|
|
2608
2650
|
],
|
|
2609
2651
|
setup(e, { expose: a, emit: r }) {
|
|
2610
|
-
let
|
|
2652
|
+
let l = null;
|
|
2611
2653
|
const o = e;
|
|
2612
2654
|
let u = C(o.burgerState), p = C(o.search), n = C(o.showDropDown), b = C(o.showPortalSwitcherDropDown), f = C(o.showProfileDropDown), k = C(o.isAuthenticated);
|
|
2613
2655
|
Q(
|
|
@@ -2629,11 +2671,11 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2629
2671
|
() => o.isAuthenticated,
|
|
2630
2672
|
($) => k.value = $
|
|
2631
2673
|
), me(() => {
|
|
2632
|
-
|
|
2674
|
+
l = ($) => {
|
|
2633
2675
|
$.target.closest("#menu-dropdown") || (n.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (f.value = !1);
|
|
2634
|
-
}, window.addEventListener("click",
|
|
2635
|
-
}),
|
|
2636
|
-
|
|
2676
|
+
}, window.addEventListener("click", l);
|
|
2677
|
+
}), qe(() => {
|
|
2678
|
+
l !== null && window.removeEventListener("click", l);
|
|
2637
2679
|
});
|
|
2638
2680
|
const w = r;
|
|
2639
2681
|
function ae() {
|
|
@@ -2648,45 +2690,45 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2648
2690
|
function de() {
|
|
2649
2691
|
u.value = !u.value, w("update:burgerState", u.value);
|
|
2650
2692
|
}
|
|
2651
|
-
let
|
|
2693
|
+
let U = C(null), oe = C(null);
|
|
2652
2694
|
function ce() {
|
|
2653
|
-
|
|
2695
|
+
U.value && U.value.blur();
|
|
2654
2696
|
}
|
|
2655
2697
|
return a({
|
|
2656
2698
|
defocusSearchButton: ce
|
|
2657
|
-
}), ($, j) => (
|
|
2699
|
+
}), ($, j) => (s(), i("div", Ri, [
|
|
2658
2700
|
t("nav", null, [
|
|
2659
|
-
t("div",
|
|
2660
|
-
t("div",
|
|
2661
|
-
|
|
2701
|
+
t("div", Ni, [
|
|
2702
|
+
t("div", Ei, [
|
|
2703
|
+
d($.$slots, "link-logo", {}, void 0, !0)
|
|
2662
2704
|
]),
|
|
2663
|
-
t("ul",
|
|
2664
|
-
|
|
2705
|
+
t("ul", ji, [
|
|
2706
|
+
d($.$slots, "main-nav-items", {}, void 0, !0)
|
|
2665
2707
|
]),
|
|
2666
|
-
e.useDropdown ? (
|
|
2708
|
+
e.useDropdown ? (s(), i("div", Gi, [
|
|
2667
2709
|
t("button", {
|
|
2668
2710
|
class: "nav-dropdown-btn",
|
|
2669
2711
|
"aria-label": "Toggle Dropdown",
|
|
2670
2712
|
onClick: ae
|
|
2671
2713
|
}, [
|
|
2672
|
-
|
|
2673
|
-
I(n) === !1 ? (
|
|
2714
|
+
d($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2715
|
+
I(n) === !1 ? (s(), i("img", Ki)) : (s(), i("img", Ui))
|
|
2674
2716
|
]),
|
|
2675
|
-
|
|
2676
|
-
|
|
2717
|
+
K(t("div", Ji, [
|
|
2718
|
+
d($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2677
2719
|
], 512), [
|
|
2678
2720
|
[Z, I(n)]
|
|
2679
2721
|
])
|
|
2680
2722
|
], 512)) : _("", !0),
|
|
2681
|
-
I(p) ? (
|
|
2723
|
+
I(p) ? (s(), i("div", Wi, [
|
|
2682
2724
|
t("button", {
|
|
2683
2725
|
ref_key: "navSearchButton",
|
|
2684
|
-
ref:
|
|
2726
|
+
ref: U,
|
|
2685
2727
|
class: "search-icon",
|
|
2686
2728
|
"aria-label": "Toggle search",
|
|
2687
|
-
onClick: j[0] || (j[0] = (
|
|
2729
|
+
onClick: j[0] || (j[0] = (G) => {
|
|
2688
2730
|
var E;
|
|
2689
|
-
return $.$emit("clickSearch"), (E = I(
|
|
2731
|
+
return $.$emit("clickSearch"), (E = I(U)) == null ? void 0 : E.blur();
|
|
2690
2732
|
})
|
|
2691
2733
|
}, [
|
|
2692
2734
|
t("img", {
|
|
@@ -2694,32 +2736,32 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2694
2736
|
alt: "search icon",
|
|
2695
2737
|
width: "20",
|
|
2696
2738
|
height: "20"
|
|
2697
|
-
}, null, 8,
|
|
2739
|
+
}, null, 8, Yi)
|
|
2698
2740
|
], 512)
|
|
2699
2741
|
])) : _("", !0),
|
|
2700
|
-
e.usePortalSwitcher ? (
|
|
2742
|
+
e.usePortalSwitcher ? (s(), i("div", Qi, [
|
|
2701
2743
|
t("button", {
|
|
2702
2744
|
class: "nav-portal-switcher-btn",
|
|
2703
2745
|
"aria-label": "Toggle Portal",
|
|
2704
2746
|
onClick: re
|
|
2705
|
-
},
|
|
2706
|
-
|
|
2707
|
-
t("ul",
|
|
2708
|
-
(
|
|
2747
|
+
}, Xi),
|
|
2748
|
+
K(t("div", xi, [
|
|
2749
|
+
t("ul", er, [
|
|
2750
|
+
(s(!0), i(V, null, P(e.portals, (G, E) => (s(), i("li", {
|
|
2709
2751
|
key: E,
|
|
2710
2752
|
class: "portal-switcher-link"
|
|
2711
2753
|
}, [
|
|
2712
|
-
S(I(
|
|
2754
|
+
S(I(L), { "link-type": "regular" }, {
|
|
2713
2755
|
default: y(() => [
|
|
2714
2756
|
t("a", {
|
|
2715
|
-
href:
|
|
2757
|
+
href: G.link,
|
|
2716
2758
|
onClick: j[1] || (j[1] = (W) => x(n) ? n.value = !1 : n = !1)
|
|
2717
2759
|
}, [
|
|
2718
2760
|
t("img", {
|
|
2719
|
-
src:
|
|
2720
|
-
}, null, 8,
|
|
2721
|
-
t("div", null,
|
|
2722
|
-
], 8,
|
|
2761
|
+
src: G.icon
|
|
2762
|
+
}, null, 8, ar),
|
|
2763
|
+
t("div", null, c(G.name), 1)
|
|
2764
|
+
], 8, tr)
|
|
2723
2765
|
]),
|
|
2724
2766
|
_: 2
|
|
2725
2767
|
}, 1024)
|
|
@@ -2729,18 +2771,18 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2729
2771
|
[Z, I(b)]
|
|
2730
2772
|
])
|
|
2731
2773
|
])) : _("", !0),
|
|
2732
|
-
e.useProfileDropdown ? (
|
|
2733
|
-
I(k) ? _("", !0) : (
|
|
2734
|
-
|
|
2774
|
+
e.useProfileDropdown ? (s(), i("div", or, [
|
|
2775
|
+
I(k) ? _("", !0) : (s(), i("div", lr, [
|
|
2776
|
+
d($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2735
2777
|
])),
|
|
2736
|
-
I(k) ? (
|
|
2778
|
+
I(k) ? (s(), i("button", {
|
|
2737
2779
|
key: 1,
|
|
2738
2780
|
"aria-label": "Toggle Profile",
|
|
2739
2781
|
class: "nav-profile-dropdown-btn",
|
|
2740
2782
|
onClick: ne
|
|
2741
|
-
},
|
|
2742
|
-
|
|
2743
|
-
|
|
2783
|
+
}, ir)) : _("", !0),
|
|
2784
|
+
K(t("div", rr, [
|
|
2785
|
+
d($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2744
2786
|
], 512), [
|
|
2745
2787
|
[Z, I(f)]
|
|
2746
2788
|
])
|
|
@@ -2749,17 +2791,17 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2749
2791
|
t("div", {
|
|
2750
2792
|
class: h(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2751
2793
|
}, [
|
|
2752
|
-
t("div",
|
|
2753
|
-
t("div",
|
|
2754
|
-
|
|
2794
|
+
t("div", nr, [
|
|
2795
|
+
t("div", dr, [
|
|
2796
|
+
d($.$slots, "link-logo", {}, void 0, !0)
|
|
2755
2797
|
]),
|
|
2756
|
-
I(p) ? (
|
|
2798
|
+
I(p) ? (s(), i("div", cr, [
|
|
2757
2799
|
t("button", {
|
|
2758
2800
|
ref_key: "mobileSearchButton",
|
|
2759
2801
|
ref: oe,
|
|
2760
2802
|
class: "search-icon",
|
|
2761
2803
|
"aria-label": "Toggle search",
|
|
2762
|
-
onClick: j[2] || (j[2] = (
|
|
2804
|
+
onClick: j[2] || (j[2] = (G) => {
|
|
2763
2805
|
var E;
|
|
2764
2806
|
return $.$emit("clickSearch"), (E = I(oe)) == null ? void 0 : E.blur();
|
|
2765
2807
|
})
|
|
@@ -2769,7 +2811,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2769
2811
|
alt: "search icon",
|
|
2770
2812
|
width: "20",
|
|
2771
2813
|
height: "20"
|
|
2772
|
-
}, null, 8,
|
|
2814
|
+
}, null, 8, ur)
|
|
2773
2815
|
], 512)
|
|
2774
2816
|
])) : _("", !0),
|
|
2775
2817
|
t("button", {
|
|
@@ -2782,16 +2824,16 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2782
2824
|
height: "20",
|
|
2783
2825
|
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",
|
|
2784
2826
|
alt: "burger menu icon"
|
|
2785
|
-
}, null, 8,
|
|
2827
|
+
}, null, 8, _r)
|
|
2786
2828
|
])
|
|
2787
2829
|
]),
|
|
2788
|
-
|
|
2830
|
+
K(t("div", hr, [
|
|
2789
2831
|
t("ul", null, [
|
|
2790
|
-
|
|
2832
|
+
d($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2791
2833
|
]),
|
|
2792
|
-
t("ul",
|
|
2793
|
-
|
|
2794
|
-
|
|
2834
|
+
t("ul", pr, [
|
|
2835
|
+
d($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2836
|
+
d($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2795
2837
|
])
|
|
2796
2838
|
], 512), [
|
|
2797
2839
|
[Z, I(u)]
|
|
@@ -2800,7 +2842,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2800
2842
|
])
|
|
2801
2843
|
]));
|
|
2802
2844
|
}
|
|
2803
|
-
}),
|
|
2845
|
+
}), fr = /* @__PURE__ */ v(mr, [["__scopeId", "data-v-0b00b9f2"]]), vr = { class: "language__wrapper" }, gr = { class: "language__content" }, br = { class: "language__headline" }, yr = { class: "language__paragraph" }, kr = { class: "language__links" }, $r = /* @__PURE__ */ g({
|
|
2804
2846
|
__name: "language-switcher",
|
|
2805
2847
|
props: {
|
|
2806
2848
|
headline: {
|
|
@@ -2813,17 +2855,17 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2813
2855
|
}
|
|
2814
2856
|
},
|
|
2815
2857
|
setup(e) {
|
|
2816
|
-
return (a, r) => (
|
|
2817
|
-
t("div",
|
|
2818
|
-
t("h2",
|
|
2819
|
-
t("p",
|
|
2820
|
-
t("div",
|
|
2821
|
-
|
|
2858
|
+
return (a, r) => (s(), i("div", vr, [
|
|
2859
|
+
t("div", gr, [
|
|
2860
|
+
t("h2", br, c(e.headline), 1),
|
|
2861
|
+
t("p", yr, c(e.paragraph), 1),
|
|
2862
|
+
t("div", kr, [
|
|
2863
|
+
d(a.$slots, "language-links", {}, void 0, !0)
|
|
2822
2864
|
])
|
|
2823
2865
|
])
|
|
2824
2866
|
]));
|
|
2825
2867
|
}
|
|
2826
|
-
}),
|
|
2868
|
+
}), wr = /* @__PURE__ */ v($r, [["__scopeId", "data-v-dc8cc97e"]]), Br = { class: "pagination__wrapper" }, Sr = { class: "pagination__content" }, Ir = /* @__PURE__ */ g({
|
|
2827
2869
|
__name: "pagination",
|
|
2828
2870
|
props: {
|
|
2829
2871
|
isPreviousDisabled: {
|
|
@@ -2837,31 +2879,31 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
|
|
|
2837
2879
|
},
|
|
2838
2880
|
emits: ["previous", "next"],
|
|
2839
2881
|
setup(e) {
|
|
2840
|
-
return (a, r) => (
|
|
2841
|
-
t("div",
|
|
2842
|
-
S(
|
|
2882
|
+
return (a, r) => (s(), i("div", Br, [
|
|
2883
|
+
t("div", Sr, [
|
|
2884
|
+
S(se, {
|
|
2843
2885
|
disabled: e.isPreviousDisabled,
|
|
2844
2886
|
variant: "previous",
|
|
2845
2887
|
"aria-label": "previous",
|
|
2846
|
-
onClick: r[0] || (r[0] = (
|
|
2888
|
+
onClick: r[0] || (r[0] = (l) => a.$emit("previous"))
|
|
2847
2889
|
}, null, 8, ["disabled"]),
|
|
2848
|
-
|
|
2849
|
-
S(
|
|
2890
|
+
d(a.$slots, "pagination-numbers"),
|
|
2891
|
+
S(se, {
|
|
2850
2892
|
disabled: e.isNextDisabled,
|
|
2851
2893
|
variant: "next",
|
|
2852
2894
|
"aria-label": "next",
|
|
2853
|
-
onClick: r[1] || (r[1] = (
|
|
2895
|
+
onClick: r[1] || (r[1] = (l) => a.$emit("next"))
|
|
2854
2896
|
}, null, 8, ["disabled"])
|
|
2855
2897
|
])
|
|
2856
2898
|
]));
|
|
2857
2899
|
}
|
|
2858
|
-
}),
|
|
2859
|
-
function
|
|
2860
|
-
return
|
|
2861
|
-
|
|
2900
|
+
}), Cr = /* @__PURE__ */ v(Ir, [["__scopeId", "data-v-da6d07c9"]]), Tr = {}, qr = { class: "search__wrapper" };
|
|
2901
|
+
function Ar(e, a) {
|
|
2902
|
+
return s(), i("div", qr, [
|
|
2903
|
+
d(e.$slots, "default", { class: "search__content" })
|
|
2862
2904
|
]);
|
|
2863
2905
|
}
|
|
2864
|
-
const
|
|
2906
|
+
const Lr = /* @__PURE__ */ v(Tr, [["render", Ar], ["__scopeId", "data-v-c07a6cf3"]]), Dr = { class: "dropdown" }, Vr = ["aria-expanded"], Pr = /* @__PURE__ */ g({
|
|
2865
2907
|
__name: "select-multiple",
|
|
2866
2908
|
props: {
|
|
2867
2909
|
label: { default: "" },
|
|
@@ -2870,31 +2912,31 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2870
2912
|
},
|
|
2871
2913
|
emits: ["filter", "remove-filter"],
|
|
2872
2914
|
setup(e, { emit: a }) {
|
|
2873
|
-
const r = C(!1),
|
|
2915
|
+
const r = C(!1), l = e, o = a;
|
|
2874
2916
|
function u(b, f) {
|
|
2875
|
-
!
|
|
2917
|
+
!l.selectedOptions.includes(b) && !l.selectedOptions.includes(f) ? o("filter", b) : o("remove-filter", b);
|
|
2876
2918
|
}
|
|
2877
2919
|
function p() {
|
|
2878
2920
|
r.value = !1;
|
|
2879
2921
|
}
|
|
2880
|
-
const n = q(() =>
|
|
2922
|
+
const n = q(() => l.options.length > 8);
|
|
2881
2923
|
return (b, f) => {
|
|
2882
2924
|
const k = _e("click-outside");
|
|
2883
|
-
return
|
|
2925
|
+
return K((s(), i("div", Dr, [
|
|
2884
2926
|
t("button", {
|
|
2885
2927
|
class: h(["dropdown-button", { clicked: r.value }]),
|
|
2886
2928
|
style: ee({ "z-index": r.value ? 2 : 0 }),
|
|
2887
2929
|
"aria-expanded": r.value ? "true" : "false",
|
|
2888
2930
|
onClick: f[0] || (f[0] = (w) => r.value = !r.value)
|
|
2889
2931
|
}, [
|
|
2890
|
-
|
|
2891
|
-
J(
|
|
2932
|
+
d(b.$slots, "button", {}, () => [
|
|
2933
|
+
J(c(b.label), 1)
|
|
2892
2934
|
], !0)
|
|
2893
|
-
], 14,
|
|
2935
|
+
], 14, Vr),
|
|
2894
2936
|
t("div", {
|
|
2895
2937
|
class: h([{ hidden: !r.value, "adjust-height": n.value }, "dropdown-content"])
|
|
2896
2938
|
}, [
|
|
2897
|
-
(
|
|
2939
|
+
(s(!0), i(V, null, P(b.options, (w) => (s(), T(I(fe), {
|
|
2898
2940
|
id: w.value,
|
|
2899
2941
|
key: w.value,
|
|
2900
2942
|
name: w.text,
|
|
@@ -2905,7 +2947,7 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2905
2947
|
onInput: (ae) => u(w.value, w.text)
|
|
2906
2948
|
}, {
|
|
2907
2949
|
default: y(() => [
|
|
2908
|
-
J(
|
|
2950
|
+
J(c(w.text), 1)
|
|
2909
2951
|
]),
|
|
2910
2952
|
_: 2
|
|
2911
2953
|
}, 1032, ["id", "name", "value", "checked", "onInput"]))), 128))
|
|
@@ -2915,7 +2957,7 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2915
2957
|
]);
|
|
2916
2958
|
};
|
|
2917
2959
|
}
|
|
2918
|
-
}),
|
|
2960
|
+
}), Fr = /* @__PURE__ */ v(Pr, [["__scopeId", "data-v-678cc92e"]]), Mr = { class: "promo__content" }, Or = { class: "pallet-jack__media-wrap" }, zr = { class: "pallet-jack-link" }, Hr = { class: "pallet-jack__media-wrap__inner-wrap" }, Rr = { class: "pallet-jack__media-wrap__content-wrap" }, Nr = { class: "regular-blue" }, Er = /* @__PURE__ */ g({
|
|
2919
2961
|
__name: "pallet-jack",
|
|
2920
2962
|
props: {
|
|
2921
2963
|
label: { default: "" },
|
|
@@ -2933,31 +2975,31 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2933
2975
|
dark: "promo__wrapper--dark",
|
|
2934
2976
|
light: "promo__wrapper--light",
|
|
2935
2977
|
default: "promo__wrapper--default"
|
|
2936
|
-
}, r = e,
|
|
2937
|
-
return (o, u) => (
|
|
2978
|
+
}, r = e, l = q(() => a[r.variant]);
|
|
2979
|
+
return (o, u) => (s(), i("div", {
|
|
2938
2980
|
class: h([
|
|
2939
2981
|
"promo__wrapper",
|
|
2940
|
-
|
|
2982
|
+
l.value,
|
|
2941
2983
|
o.teaser ? "promo__wrapper--teaser" : ""
|
|
2942
2984
|
])
|
|
2943
2985
|
}, [
|
|
2944
|
-
t("div",
|
|
2986
|
+
t("div", Mr, [
|
|
2945
2987
|
t("div", {
|
|
2946
2988
|
class: h([
|
|
2947
2989
|
"promo__video",
|
|
2948
2990
|
o.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2949
2991
|
])
|
|
2950
2992
|
}, [
|
|
2951
|
-
t("div",
|
|
2993
|
+
t("div", Or, [
|
|
2994
|
+
t("div", zr, [
|
|
2995
|
+
d(o.$slots, "pallet-jack-link")
|
|
2996
|
+
]),
|
|
2952
2997
|
t("div", Hr, [
|
|
2953
|
-
|
|
2998
|
+
d(o.$slots, "pallet-jack-video")
|
|
2954
2999
|
]),
|
|
2955
3000
|
t("div", Rr, [
|
|
2956
|
-
c(o
|
|
2957
|
-
|
|
2958
|
-
t("div", Nr, [
|
|
2959
|
-
t("h3", Er, d(o.headline), 1),
|
|
2960
|
-
t("p", null, d(o.shortDescription), 1)
|
|
3001
|
+
t("h3", Nr, c(o.headline), 1),
|
|
3002
|
+
t("p", null, c(o.shortDescription), 1)
|
|
2961
3003
|
])
|
|
2962
3004
|
])
|
|
2963
3005
|
], 2),
|
|
@@ -2967,7 +3009,7 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2967
3009
|
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2968
3010
|
])
|
|
2969
3011
|
}, [
|
|
2970
|
-
o.label ? (
|
|
3012
|
+
o.label ? (s(), T(X, {
|
|
2971
3013
|
key: 0,
|
|
2972
3014
|
text: o.label,
|
|
2973
3015
|
"label-dark": o.variant === "dark"
|
|
@@ -2978,24 +3020,24 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2978
3020
|
o.variant === "dark" ? "promo__title--dark" : ""
|
|
2979
3021
|
])
|
|
2980
3022
|
}, [
|
|
2981
|
-
|
|
3023
|
+
d(o.$slots, "promo-text")
|
|
2982
3024
|
], 2),
|
|
2983
|
-
o.linkType === "link" ? (
|
|
3025
|
+
o.linkType === "link" ? (s(), T(L, {
|
|
2984
3026
|
key: 1,
|
|
2985
3027
|
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
2986
3028
|
arrow: ""
|
|
2987
3029
|
}, {
|
|
2988
3030
|
default: y(() => [
|
|
2989
|
-
|
|
3031
|
+
d(o.$slots, "promo-link")
|
|
2990
3032
|
]),
|
|
2991
3033
|
_: 3
|
|
2992
3034
|
}, 8, ["link-type"])) : _("", !0),
|
|
2993
|
-
o.linkType === "button" ? (
|
|
3035
|
+
o.linkType === "button" ? (s(), T(L, {
|
|
2994
3036
|
key: 2,
|
|
2995
3037
|
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
2996
3038
|
}, {
|
|
2997
3039
|
default: y(() => [
|
|
2998
|
-
|
|
3040
|
+
d(o.$slots, "promo-link")
|
|
2999
3041
|
]),
|
|
3000
3042
|
_: 3
|
|
3001
3043
|
}, 8, ["link-type"])) : _("", !0)
|
|
@@ -3003,63 +3045,63 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
|
|
|
3003
3045
|
])
|
|
3004
3046
|
], 2));
|
|
3005
3047
|
}
|
|
3006
|
-
}),
|
|
3048
|
+
}), jr = /* @__PURE__ */ v(Er, [["__scopeId", "data-v-00c0bad3"]]), Kr = {
|
|
3007
3049
|
install: (e) => {
|
|
3008
|
-
e.component("AtomButton",
|
|
3050
|
+
e.component("AtomButton", se), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", M), e.component("AtomLabel", X), e.component("AtomLink", L), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Fr), e.component("AtomSlider", Bt), e.component("AtomTextarea", Lt), e.component("AtomTextField", Et), e.component("AtomVideo", te), e.component("MoleculeAddress", la), e.component("MoleculeBulletList", da), e.component("MoleculeCard", pa), e.component("MoleculeColumnCard", ge), e.component("MoleculeEventCard", Ca), e.component("MoleculeFlashcard", be), e.component("MoleculeModal", ve), e.component("MoleculeTextCard", Ga), e.component("BlockAccordion", to), e.component("BlockFacts", Bo), e.component("BlockFeatures", Do), e.component("BlockFlashcards", Oo), e.component("BlockFormScript", Go), e.component("BlockHeadline", Wo), e.component("BlockHero", rl), e.component("BlockImage", hl), e.component("BlockImageGallery", gl), e.component("BlockLogoWall", Cl), e.component("BlockMicroStories", Dl), e.component("BlockPolicy", Ol), e.component("BlockProductHero", Ul), e.component("BlockPromo", Yl), e.component("BlockQuote", ns), e.component("BlockRichText", hs), e.component("BlockRichTextColumns", ys), e.component("BlockTimeline", As), e.component("BlockCardDisplay", no), e.component("BlockColumnGrid", mo), e.component("BlockVimeo", Ms), e.component("BlockPalletJack", jr), e.component("BlockFrontPageHero", Xs), e.component("Organism404", li), e.component("OrganismFilter", ci), e.component("OrganismFooter", Hi), e.component("OrganismHeader", fr), e.component("OrganismLanguageSwitcher", wr), e.component("OrganismPagination", Cr), e.component("OrganismSearch", Lr);
|
|
3009
3051
|
}
|
|
3010
3052
|
};
|
|
3011
3053
|
export {
|
|
3012
|
-
|
|
3054
|
+
se as AtomButton,
|
|
3013
3055
|
fe as AtomCheckbox,
|
|
3014
3056
|
Ne as AtomChip,
|
|
3015
3057
|
Ye as AtomDropdown,
|
|
3016
|
-
|
|
3058
|
+
M as AtomImage,
|
|
3017
3059
|
X as AtomLabel,
|
|
3018
|
-
|
|
3060
|
+
L as AtomLink,
|
|
3019
3061
|
rt as AtomRadioButton,
|
|
3020
3062
|
ht as AtomSelect,
|
|
3021
|
-
|
|
3063
|
+
Fr as AtomSelectMultiple,
|
|
3022
3064
|
Bt as AtomSlider,
|
|
3023
3065
|
Et as AtomTextField,
|
|
3024
3066
|
Lt as AtomTextarea,
|
|
3025
3067
|
te as AtomVideo,
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3068
|
+
to as BlockAccordion,
|
|
3069
|
+
no as BlockCardDisplay,
|
|
3070
|
+
mo as BlockColumnGrid,
|
|
3071
|
+
Bo as BlockFacts,
|
|
3072
|
+
Do as BlockFeatures,
|
|
3073
|
+
Oo as BlockFlashcards,
|
|
3074
|
+
Go as BlockFormScript,
|
|
3075
|
+
Xs as BlockFrontPageHero,
|
|
3076
|
+
Wo as BlockHeadline,
|
|
3077
|
+
rl as BlockHero,
|
|
3078
|
+
hl as BlockImage,
|
|
3079
|
+
gl as BlockImageGallery,
|
|
3080
|
+
Cl as BlockLogoWall,
|
|
3081
|
+
Dl as BlockMicroStories,
|
|
3082
|
+
jr as BlockPalletJack,
|
|
3083
|
+
Ol as BlockPolicy,
|
|
3084
|
+
Ul as BlockProductHero,
|
|
3085
|
+
Yl as BlockPromo,
|
|
3086
|
+
ns as BlockQuote,
|
|
3087
|
+
hs as BlockRichText,
|
|
3088
|
+
ys as BlockRichTextColumns,
|
|
3089
|
+
As as BlockTimeline,
|
|
3090
|
+
Ms as BlockVimeo,
|
|
3091
|
+
la as MoleculeAddress,
|
|
3050
3092
|
da as MoleculeBulletList,
|
|
3051
3093
|
pa as MoleculeCard,
|
|
3052
3094
|
ge as MoleculeColumnCard,
|
|
3053
|
-
|
|
3095
|
+
Ca as MoleculeEventCard,
|
|
3054
3096
|
be as MoleculeFlashcard,
|
|
3055
3097
|
ve as MoleculeModal,
|
|
3056
|
-
|
|
3098
|
+
Ga as MoleculeTextCard,
|
|
3057
3099
|
li as Organism404,
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3100
|
+
ci as OrganismFilter,
|
|
3101
|
+
Hi as OrganismFooter,
|
|
3102
|
+
fr as OrganismHeader,
|
|
3103
|
+
wr as OrganismLanguageSwitcher,
|
|
3104
|
+
Cr as OrganismPagination,
|
|
3105
|
+
Lr as OrganismSearch,
|
|
3106
|
+
Kr as default
|
|
3065
3107
|
};
|