@mirweb/mir-web-components 1.7.27 → 1.7.29
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/form-script/form-script.vue.d.ts +1 -1
- package/dist/components/organisms/footer/footer.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 +674 -657
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as g, computed as
|
|
2
|
-
const Le = ["aria-label"],
|
|
1
|
+
import { defineComponent as g, computed as q, openBlock as l, createElementBlock as i, normalizeClass as p, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as U, Fragment as D, renderList as V, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as M, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as L, createCommentVNode as _, watchEffect as pe, withKeys as Ce, useSlots as qe, normalizeStyle as ee, isRef as x, unref as I, onMounted as me, watch as Q, onUnmounted as Ae } from "vue";
|
|
2
|
+
const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
5
5
|
variant: { default: "primary" },
|
|
@@ -14,18 +14,18 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
14
14
|
close: "close",
|
|
15
15
|
next: "next",
|
|
16
16
|
previous: "previous"
|
|
17
|
-
}, r = e,
|
|
18
|
-
return (
|
|
19
|
-
class: p(["button", "button--" +
|
|
20
|
-
"aria-label":
|
|
21
|
-
}, d(
|
|
17
|
+
}, r = e, s = q(() => a[r.variant]);
|
|
18
|
+
return (o, u) => (l(), i("button", {
|
|
19
|
+
class: p(["button", "button--" + s.value]),
|
|
20
|
+
"aria-label": o.ariaLabel
|
|
21
|
+
}, d(s.value === "close" ? "" : o.buttonText), 11, Le));
|
|
22
22
|
}
|
|
23
23
|
}), v = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
|
-
for (const [
|
|
26
|
-
r[
|
|
25
|
+
for (const [s, o] of a)
|
|
26
|
+
r[s] = o;
|
|
27
27
|
return r;
|
|
28
|
-
}, le = /* @__PURE__ */ v(
|
|
28
|
+
}, le = /* @__PURE__ */ v(Te, [["__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,30 +37,30 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
37
37
|
},
|
|
38
38
|
emits: ["input"],
|
|
39
39
|
setup(e, { emit: a }) {
|
|
40
|
-
const r = a,
|
|
41
|
-
const u =
|
|
40
|
+
const r = a, s = (o) => {
|
|
41
|
+
const u = o.target;
|
|
42
42
|
r("input", u.checked);
|
|
43
43
|
};
|
|
44
|
-
return (
|
|
45
|
-
class: p(["checkbox__wrapper",
|
|
44
|
+
return (o, u) => (l(), i("div", {
|
|
45
|
+
class: p(["checkbox__wrapper", o.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
47
|
t("input", {
|
|
48
|
-
id:
|
|
48
|
+
id: o.id,
|
|
49
49
|
type: "checkbox",
|
|
50
|
-
name:
|
|
51
|
-
value:
|
|
52
|
-
disabled:
|
|
53
|
-
required:
|
|
54
|
-
checked:
|
|
50
|
+
name: o.name,
|
|
51
|
+
value: o.value,
|
|
52
|
+
disabled: o.disabled,
|
|
53
|
+
required: o.required,
|
|
54
|
+
checked: o.checked,
|
|
55
55
|
class: "checkbox__checkbox",
|
|
56
|
-
onChange:
|
|
56
|
+
onChange: s
|
|
57
57
|
}, null, 40, Ve),
|
|
58
58
|
t("label", {
|
|
59
|
-
for:
|
|
60
|
-
class: p(["checkbox__label",
|
|
59
|
+
for: o.id,
|
|
60
|
+
class: p(["checkbox__label", o.required ? "required" : ""])
|
|
61
61
|
}, [
|
|
62
62
|
Fe,
|
|
63
|
-
c(
|
|
63
|
+
c(o.$slots, "default", {}, void 0, !0)
|
|
64
64
|
], 10, Pe)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
@@ -75,16 +75,16 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
75
75
|
},
|
|
76
76
|
emits: ["remove-chip"],
|
|
77
77
|
setup(e) {
|
|
78
|
-
const a = e, r =
|
|
79
|
-
return (
|
|
78
|
+
const a = e, r = q(() => `Chip: ${a.text}`);
|
|
79
|
+
return (s, o) => (l(), i("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick:
|
|
81
|
+
onClick: o[0] || (o[0] = (u) => s.$emit("remove-chip"))
|
|
82
82
|
}, [
|
|
83
83
|
t("span", {
|
|
84
84
|
class: "chip",
|
|
85
85
|
"aria-label": r.value
|
|
86
86
|
}, [
|
|
87
|
-
J(d(
|
|
87
|
+
J(d(s.text) + " ", 1),
|
|
88
88
|
He
|
|
89
89
|
], 8, ze)
|
|
90
90
|
]));
|
|
@@ -107,9 +107,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
107
107
|
const r = {
|
|
108
108
|
primary: "dropdown-dark-bg-primary",
|
|
109
109
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
110
|
-
},
|
|
111
|
-
const m =
|
|
112
|
-
(B) => B.value ===
|
|
110
|
+
}, s = e, o = q(() => r[s.variant]), u = C(null), h = C(null), n = C([]), b = C(0), f = C(""), k = C(!0), w = C(0), ae = a, re = q(() => {
|
|
111
|
+
const m = s.options.find(
|
|
112
|
+
(B) => B.value === s.modelValue
|
|
113
113
|
);
|
|
114
114
|
return m && m.label;
|
|
115
115
|
});
|
|
@@ -117,22 +117,22 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
117
117
|
ae("update:modelValue", m);
|
|
118
118
|
}
|
|
119
119
|
function de(m) {
|
|
120
|
-
var
|
|
120
|
+
var A;
|
|
121
121
|
const B = m.target;
|
|
122
|
-
B.getAttribute("role") === "option" && (W(B), se(), (
|
|
122
|
+
B.getAttribute("role") === "option" && (W(B), se(), (A = u.value) == null || A.focus());
|
|
123
123
|
}
|
|
124
124
|
function G(m) {
|
|
125
|
-
var
|
|
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 T = s.options.findIndex(
|
|
132
|
+
(Y) => Y.value === s.modelValue
|
|
133
133
|
);
|
|
134
|
-
let N =
|
|
135
|
-
B === "ArrowUp" ?
|
|
134
|
+
let N = T ? n.value[T] : n.value[0];
|
|
135
|
+
B === "ArrowUp" ? T - 1 >= 0 && (N = n.value[T - 1]) : T + 1 <= s.options.length && (N = n.value[T + 1]), N && W(N);
|
|
136
136
|
break;
|
|
137
137
|
}
|
|
138
138
|
case "Home":
|
|
@@ -145,17 +145,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
145
145
|
break;
|
|
146
146
|
case "Enter":
|
|
147
147
|
case "Escape":
|
|
148
|
-
m.preventDefault(), se(), (
|
|
148
|
+
m.preventDefault(), se(), (A = u.value) == null || A.focus();
|
|
149
149
|
break;
|
|
150
150
|
default: {
|
|
151
|
-
const
|
|
152
|
-
|
|
151
|
+
const T = j(B);
|
|
152
|
+
T && W(T);
|
|
153
153
|
break;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
157
|
function oe(m) {
|
|
158
|
-
if (!
|
|
158
|
+
if (!s.disabled)
|
|
159
159
|
switch (m.key) {
|
|
160
160
|
case "ArrowUp":
|
|
161
161
|
case "ArrowDown":
|
|
@@ -173,44 +173,44 @@ const Le = ["aria-label"], De = /* @__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 = s.options.findIndex(
|
|
177
|
+
(T) => T.value === s.modelValue
|
|
178
178
|
)), f.value = B === m ? m : f.value + m, B = m, $();
|
|
179
|
-
let
|
|
179
|
+
let A = K(
|
|
180
180
|
w.value + 1,
|
|
181
|
-
|
|
181
|
+
s.options.length
|
|
182
182
|
);
|
|
183
|
-
return !
|
|
183
|
+
return !A && f.value.length === 1 && (A = K(0, w.value)), w.value = (w.value + 1) % s.options.length, A;
|
|
184
184
|
}
|
|
185
185
|
function K(m, B) {
|
|
186
|
-
for (let
|
|
187
|
-
if (
|
|
188
|
-
return n.value[
|
|
186
|
+
for (let A = m; A < B; A++)
|
|
187
|
+
if (s.options[A].label && s.options[A].label.toUpperCase().indexOf(f.value.toUpperCase()) === 0)
|
|
188
|
+
return n.value[A];
|
|
189
189
|
return null;
|
|
190
190
|
}
|
|
191
191
|
function E() {
|
|
192
192
|
W(n.value[0]);
|
|
193
193
|
}
|
|
194
194
|
function W(m) {
|
|
195
|
-
var
|
|
195
|
+
var A, T;
|
|
196
196
|
const B = m.getAttribute("data-value");
|
|
197
|
-
if (
|
|
198
|
-
const N =
|
|
199
|
-
(Be) => Be.value ===
|
|
197
|
+
if (s.modelValue) {
|
|
198
|
+
const N = s.options.findIndex(
|
|
199
|
+
(Be) => Be.value === s.modelValue
|
|
200
200
|
), Y = n.value[N];
|
|
201
201
|
ce(Y);
|
|
202
202
|
}
|
|
203
|
-
if (m.setAttribute("aria-selected", "true"), (
|
|
203
|
+
if (m.setAttribute("aria-selected", "true"), (A = h.value) == null || A.setAttribute(
|
|
204
204
|
"aria-activedescendant",
|
|
205
205
|
B || ""
|
|
206
|
-
), ne(B || ""),
|
|
207
|
-
const N =
|
|
208
|
-
Y > N ?
|
|
206
|
+
), ne(B || ""), h.value && h.value.scrollHeight > h.value.clientHeight) {
|
|
207
|
+
const N = h.value.clientHeight + h.value.scrollTop, Y = m.offsetTop + m.offsetHeight;
|
|
208
|
+
Y > N ? h.value.scrollTop = Y - ((T = h.value) == null ? void 0 : T.clientHeight) : m.offsetTop < h.value.scrollTop && (h.value.scrollTop = m.offsetTop);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
function $e() {
|
|
212
212
|
var B;
|
|
213
|
-
const m = (B = n.value) == null ? void 0 : B[
|
|
213
|
+
const m = (B = n.value) == null ? void 0 : B[s.options.length - 1];
|
|
214
214
|
W(m);
|
|
215
215
|
}
|
|
216
216
|
function se() {
|
|
@@ -219,13 +219,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
219
219
|
}
|
|
220
220
|
function ue() {
|
|
221
221
|
var m, B;
|
|
222
|
-
k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B =
|
|
222
|
+
k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B = h.value) == null || B.focus();
|
|
223
223
|
}
|
|
224
224
|
function we() {
|
|
225
|
-
|
|
225
|
+
s.disabled || (k.value ? ue() : se());
|
|
226
226
|
}
|
|
227
227
|
return (m, B) => {
|
|
228
|
-
const
|
|
228
|
+
const A = _e("click-outside");
|
|
229
229
|
return l(), i("div", {
|
|
230
230
|
ref: "listbox",
|
|
231
231
|
class: "listbox__wrapper",
|
|
@@ -248,13 +248,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
248
248
|
type: "button",
|
|
249
249
|
"aria-haspopup": "listbox",
|
|
250
250
|
"aria-disabled": m.disabled,
|
|
251
|
-
class: p(["listbox__button",
|
|
251
|
+
class: p(["listbox__button", o.value]),
|
|
252
252
|
onClick: we,
|
|
253
253
|
onKeydown: oe
|
|
254
254
|
}, d(m.modelValue ? re.value : m.placeholder), 43, Ue),
|
|
255
255
|
U(t("ul", {
|
|
256
256
|
ref_key: "listboxNode",
|
|
257
|
-
ref:
|
|
257
|
+
ref: h,
|
|
258
258
|
"aria-labelledby": `${m.name}-label`,
|
|
259
259
|
"aria-activedescendant": m.modelValue,
|
|
260
260
|
tabindex: "0",
|
|
@@ -263,21 +263,21 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
263
263
|
onKeydown: G,
|
|
264
264
|
onClick: de
|
|
265
265
|
}, [
|
|
266
|
-
(l(!0), i(
|
|
266
|
+
(l(!0), i(D, null, V(m.options, (T, N) => (l(), 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": T.value === m.modelValue,
|
|
272
|
+
"data-value": T.value,
|
|
273
273
|
class: "listbox__option",
|
|
274
274
|
role: "option"
|
|
275
|
-
}, d(
|
|
275
|
+
}, d(T.label), 9, Je))), 128))
|
|
276
276
|
], 40, Ge), [
|
|
277
277
|
[Z, !k.value]
|
|
278
278
|
])
|
|
279
279
|
])), [
|
|
280
|
-
[
|
|
280
|
+
[A, se]
|
|
281
281
|
])
|
|
282
282
|
], 8, Ee);
|
|
283
283
|
};
|
|
@@ -305,13 +305,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
305
305
|
labelDark: { type: Boolean, default: !1 }
|
|
306
306
|
},
|
|
307
307
|
setup(e) {
|
|
308
|
-
const a = e, r =
|
|
309
|
-
return (
|
|
308
|
+
const a = e, r = q(() => `Label: ${a.text}`);
|
|
309
|
+
return (s, o) => (l(), i("div", Xe, [
|
|
310
310
|
t("span", {
|
|
311
311
|
"aria-label": r.value,
|
|
312
|
-
"label-dark":
|
|
313
|
-
class: p(
|
|
314
|
-
}, d(
|
|
312
|
+
"label-dark": s.labelDark,
|
|
313
|
+
class: p(s.labelDark ? "label--dark" : "label--light")
|
|
314
|
+
}, d(s.text), 11, xe)
|
|
315
315
|
]));
|
|
316
316
|
}
|
|
317
317
|
}), X = /* @__PURE__ */ v(et, [["__scopeId", "data-v-7d9d3a8a"]]), tt = { class: "link__wrapper" }, P = /* @__PURE__ */ g({
|
|
@@ -336,14 +336,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
336
336
|
hover: "underline-hover",
|
|
337
337
|
true: "add-underline",
|
|
338
338
|
false: "remove-underline"
|
|
339
|
-
},
|
|
340
|
-
const { ...n } = Se(
|
|
339
|
+
}, s = e, o = q(() => a[s.linkType]), u = q(() => r[s.underline]), h = q(() => {
|
|
340
|
+
const { ...n } = Se(s);
|
|
341
341
|
return n;
|
|
342
342
|
});
|
|
343
343
|
return (n, b) => (l(), i("div", tt, [
|
|
344
|
-
t("div", M(
|
|
344
|
+
t("div", M(h.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
|
-
|
|
346
|
+
o.value,
|
|
347
347
|
n.disabled ? "disabled" : "",
|
|
348
348
|
u.value,
|
|
349
349
|
n.arrow ? "link-arrow" : ""
|
|
@@ -365,30 +365,30 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
365
365
|
},
|
|
366
366
|
emits: ["input"],
|
|
367
367
|
setup(e, { emit: a }) {
|
|
368
|
-
const r = a,
|
|
369
|
-
const u =
|
|
368
|
+
const r = a, s = (o) => {
|
|
369
|
+
const u = o.target;
|
|
370
370
|
r("input", u.checked);
|
|
371
371
|
};
|
|
372
|
-
return (
|
|
373
|
-
class: p(["radio__wrapper",
|
|
372
|
+
return (o, u) => (l(), i("div", {
|
|
373
|
+
class: p(["radio__wrapper", o.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
375
|
t("input", {
|
|
376
|
-
id:
|
|
376
|
+
id: o.id,
|
|
377
377
|
type: "radio",
|
|
378
|
-
name:
|
|
379
|
-
value:
|
|
380
|
-
checked:
|
|
381
|
-
disabled:
|
|
382
|
-
required:
|
|
378
|
+
name: o.name,
|
|
379
|
+
value: o.value,
|
|
380
|
+
checked: o.checked,
|
|
381
|
+
disabled: o.disabled,
|
|
382
|
+
required: o.required,
|
|
383
383
|
class: "radio__radio",
|
|
384
|
-
onChange:
|
|
384
|
+
onChange: s
|
|
385
385
|
}, null, 40, ot),
|
|
386
386
|
t("label", {
|
|
387
|
-
for:
|
|
388
|
-
class: p(["radio__label",
|
|
387
|
+
for: o.id,
|
|
388
|
+
class: p(["radio__label", o.required ? "required" : ""])
|
|
389
389
|
}, [
|
|
390
390
|
lt,
|
|
391
|
-
c(
|
|
391
|
+
c(o.$slots, "default", {}, void 0, !0)
|
|
392
392
|
], 10, st)
|
|
393
393
|
], 2));
|
|
394
394
|
}
|
|
@@ -416,14 +416,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
416
416
|
disabled: a.disabled,
|
|
417
417
|
name: a.name,
|
|
418
418
|
value: a.modelValue,
|
|
419
|
-
onChange: r[0] || (r[0] = (
|
|
420
|
-
a.$emit("update:modelValue",
|
|
419
|
+
onChange: r[0] || (r[0] = (s) => {
|
|
420
|
+
a.$emit("update:modelValue", s.target.value), s.target.blur();
|
|
421
421
|
})
|
|
422
422
|
}, [
|
|
423
|
-
(l(!0), i(
|
|
424
|
-
key:
|
|
425
|
-
value:
|
|
426
|
-
}, d(
|
|
423
|
+
(l(!0), i(D, null, V(a.options, (s) => (l(), i("option", {
|
|
424
|
+
key: s.value,
|
|
425
|
+
value: s.value
|
|
426
|
+
}, d(s.text), 9, ut))), 128))
|
|
427
427
|
], 42, ct)
|
|
428
428
|
]));
|
|
429
429
|
}
|
|
@@ -435,10 +435,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
435
435
|
},
|
|
436
436
|
emits: ["update:show"],
|
|
437
437
|
setup(e, { emit: a }) {
|
|
438
|
-
const r = e,
|
|
439
|
-
|
|
438
|
+
const r = e, s = a, o = () => {
|
|
439
|
+
s("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (u,
|
|
441
|
+
return (u, h) => (l(), i("div", pt, [
|
|
442
442
|
S(Ie, {
|
|
443
443
|
duration: 300,
|
|
444
444
|
name: "nested"
|
|
@@ -448,20 +448,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
448
448
|
class: p(["overlay", u.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
451
|
-
onClick:
|
|
451
|
+
onClick: o
|
|
452
452
|
}, [
|
|
453
453
|
t("div", {
|
|
454
454
|
id: "modal",
|
|
455
455
|
class: p([u.searchBar ? "search" : ""]),
|
|
456
|
-
onClick:
|
|
456
|
+
onClick: h[0] || (h[0] = he(() => {
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
459
|
t("div", null, [
|
|
460
|
-
u.searchBar ?
|
|
460
|
+
u.searchBar ? _("", !0) : (l(), L(le, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
|
-
onClick:
|
|
464
|
+
onClick: o
|
|
465
465
|
}))
|
|
466
466
|
]),
|
|
467
467
|
c(u.$slots, "default", {}, void 0, !0)
|
|
@@ -490,14 +490,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
490
490
|
},
|
|
491
491
|
emits: ["update:modelValue"],
|
|
492
492
|
setup(e, { emit: a }) {
|
|
493
|
-
const r = e,
|
|
493
|
+
const r = e, s = a, o = C(r.modelValue), u = C(), h = 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
|
-
|
|
500
|
-
const f = n(
|
|
499
|
+
s("update:modelValue", o.value);
|
|
500
|
+
const f = n(o.value, r.min, r.max);
|
|
501
501
|
let k = (50 - f) / 100;
|
|
502
502
|
b(f + k);
|
|
503
503
|
}
|
|
@@ -515,9 +515,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
515
515
|
"aria-label": f.informationLabel,
|
|
516
516
|
tabindex: "0",
|
|
517
517
|
"aria-haspopup": "dialog",
|
|
518
|
-
onClick: k[0] || (k[0] = (w) =>
|
|
519
|
-
onKeyup: k[1] || (k[1] = Ce((w) =>
|
|
520
|
-
}, null, 42, bt)) :
|
|
518
|
+
onClick: k[0] || (k[0] = (w) => h.value = !h.value),
|
|
519
|
+
onKeyup: k[1] || (k[1] = Ce((w) => h.value = !h.value, ["enter"]))
|
|
520
|
+
}, null, 42, bt)) : _("", !0)
|
|
521
521
|
]),
|
|
522
522
|
t("div", yt, [
|
|
523
523
|
t("span", {
|
|
@@ -534,7 +534,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
534
534
|
step: f.step,
|
|
535
535
|
max: f.max,
|
|
536
536
|
class: p(f.variant),
|
|
537
|
-
onInput: k[2] || (k[2] = ({ target: w }) =>
|
|
537
|
+
onInput: k[2] || (k[2] = ({ target: w }) => o.value = parseFloat(w.value))
|
|
538
538
|
}, null, 42, kt),
|
|
539
539
|
t("span", {
|
|
540
540
|
class: p([f.variant, "slider__minmax"])
|
|
@@ -546,17 +546,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
546
546
|
]),
|
|
547
547
|
f.information ? (l(), L(ve, {
|
|
548
548
|
key: 0,
|
|
549
|
-
show:
|
|
550
|
-
"onUpdate:show": k[3] || (k[3] = (w) =>
|
|
549
|
+
show: h.value,
|
|
550
|
+
"onUpdate:show": k[3] || (k[3] = (w) => h.value = w)
|
|
551
551
|
}, {
|
|
552
552
|
default: y(() => [
|
|
553
553
|
t("p", $t, d(f.information), 1)
|
|
554
554
|
]),
|
|
555
555
|
_: 1
|
|
556
|
-
}, 8, ["show"])) :
|
|
556
|
+
}, 8, ["show"])) : _("", !0)
|
|
557
557
|
]));
|
|
558
558
|
}
|
|
559
|
-
}), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { id: "textarea-wrapper" }, It = ["for"], Ct = ["id"], qt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], At = { class: "textarea-info" }, Lt = { key: 0 },
|
|
559
|
+
}), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { id: "textarea-wrapper" }, It = ["for"], Ct = ["id"], qt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], At = { class: "textarea-info" }, Lt = { key: 0 }, Tt = /* @__PURE__ */ g({
|
|
560
560
|
__name: "textarea",
|
|
561
561
|
props: {
|
|
562
562
|
id: { default: "" },
|
|
@@ -591,12 +591,12 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
591
591
|
class: p(
|
|
592
592
|
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit" : "border"
|
|
593
593
|
),
|
|
594
|
-
onInput: r[0] || (r[0] = (
|
|
594
|
+
onInput: r[0] || (r[0] = (s) => a.$emit("update:modelValue", s.target.value))
|
|
595
595
|
}, null, 42, qt)
|
|
596
596
|
], 8, Ct),
|
|
597
597
|
t("div", At, [
|
|
598
598
|
t("div", null, [
|
|
599
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (l(), i("p", Lt, " Too many characters. Please make it shorter ")) :
|
|
599
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (l(), i("p", Lt, " Too many characters. Please make it shorter ")) : _("", !0)
|
|
600
600
|
]),
|
|
601
601
|
t("p", {
|
|
602
602
|
class: p(
|
|
@@ -606,7 +606,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
606
606
|
])
|
|
607
607
|
]));
|
|
608
608
|
}
|
|
609
|
-
}),
|
|
609
|
+
}), Dt = /* @__PURE__ */ v(Tt, [["__scopeId", "data-v-220a973c"]]), Vt = { class: "text-field__wrapper" }, Pt = ["for"], Ft = { key: 0 }, Mt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Ot = ["aria-expanded"], zt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Ht = {
|
|
610
610
|
key: 2,
|
|
611
611
|
class: "search"
|
|
612
612
|
}, Rt = {
|
|
@@ -642,10 +642,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
642
642
|
tel: "tel",
|
|
643
643
|
url: "url",
|
|
644
644
|
search: "search"
|
|
645
|
-
}, r = e,
|
|
646
|
-
() =>
|
|
647
|
-
),
|
|
648
|
-
() =>
|
|
645
|
+
}, r = e, s = q(() => a[r.type]), o = C(!0), u = q(
|
|
646
|
+
() => o.value ? "showPassword" : "hidePassword"
|
|
647
|
+
), h = q(
|
|
648
|
+
() => o.value ? "password" : "text"
|
|
649
649
|
);
|
|
650
650
|
return (n, b) => (l(), i("div", Vt, [
|
|
651
651
|
t("label", {
|
|
@@ -656,11 +656,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
656
656
|
n.search ? "search" : ""
|
|
657
657
|
])
|
|
658
658
|
}, d(n.label), 11, Pt),
|
|
659
|
-
|
|
659
|
+
s.value === "password" ? (l(), i("div", Ft, [
|
|
660
660
|
t("input", {
|
|
661
661
|
id: n.id,
|
|
662
662
|
ref: "passwordField",
|
|
663
|
-
type:
|
|
663
|
+
type: h.value,
|
|
664
664
|
value: n.modelValue,
|
|
665
665
|
placeholder: n.placeholder,
|
|
666
666
|
required: n.required,
|
|
@@ -672,14 +672,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
672
672
|
role: "button",
|
|
673
673
|
class: p([u.value]),
|
|
674
674
|
"aria-controls": "password",
|
|
675
|
-
"aria-expanded": !
|
|
676
|
-
onClick: b[1] || (b[1] = (f) =>
|
|
675
|
+
"aria-expanded": !o.value,
|
|
676
|
+
onClick: b[1] || (b[1] = (f) => o.value = !o.value)
|
|
677
677
|
}, null, 10, Ot)
|
|
678
678
|
])) : (l(), i("input", {
|
|
679
679
|
key: 1,
|
|
680
680
|
id: n.id,
|
|
681
681
|
ref: "textField",
|
|
682
|
-
type:
|
|
682
|
+
type: s.value,
|
|
683
683
|
value: n.modelValue,
|
|
684
684
|
placeholder: n.placeholder,
|
|
685
685
|
required: n.required,
|
|
@@ -692,9 +692,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
692
692
|
name: n.fieldName,
|
|
693
693
|
onInput: b[2] || (b[2] = (f) => n.$emit("update:modelValue", f.target.value))
|
|
694
694
|
}, null, 42, zt)),
|
|
695
|
-
n.search ? (l(), i("i", Ht)) :
|
|
696
|
-
n.errorMessage ? (l(), i("strong", Rt, d(n.errorMessage), 1)) :
|
|
697
|
-
n.helperText ? (l(), i("span", Nt, d(n.helperText), 1)) :
|
|
695
|
+
n.search ? (l(), i("i", Ht)) : _("", !0),
|
|
696
|
+
n.errorMessage ? (l(), i("strong", Rt, d(n.errorMessage), 1)) : _("", !0),
|
|
697
|
+
n.helperText ? (l(), i("span", Nt, d(n.helperText), 1)) : _("", !0)
|
|
698
698
|
]));
|
|
699
699
|
}
|
|
700
700
|
}), jt = /* @__PURE__ */ v(Et, [["__scopeId", "data-v-414b9435"]]), Kt = { class: "video__wrapper" }, Ut = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Gt = ["src", "aria-label", "title", "width", "height"], Jt = /* @__PURE__ */ g({
|
|
@@ -715,18 +715,18 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
715
715
|
},
|
|
716
716
|
setup(e, { expose: a }) {
|
|
717
717
|
const r = e;
|
|
718
|
-
let
|
|
718
|
+
let s = C(null);
|
|
719
719
|
return pe(() => {
|
|
720
|
-
|
|
720
|
+
s.value && (r.play ? s.value.play() : r.play || s.value.pause());
|
|
721
721
|
}), a({
|
|
722
722
|
resetVideo: () => {
|
|
723
|
-
|
|
723
|
+
s.value && (s.value.currentTime = 0, s.value.play());
|
|
724
724
|
}
|
|
725
|
-
}), (u,
|
|
725
|
+
}), (u, h) => (l(), i("div", Kt, [
|
|
726
726
|
u.localVideo ? (l(), i("video", {
|
|
727
727
|
key: 0,
|
|
728
728
|
ref_key: "videoRef",
|
|
729
|
-
ref:
|
|
729
|
+
ref: s,
|
|
730
730
|
"aria-label": u.ariaLabel,
|
|
731
731
|
controls: u.controls,
|
|
732
732
|
poster: u.poster,
|
|
@@ -774,7 +774,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
774
774
|
t("p", null, d(a.company), 1),
|
|
775
775
|
t("p", null, d(a.addressLine1), 1),
|
|
776
776
|
t("p", null, d(a.addressLine2), 1),
|
|
777
|
-
a.addressLine3 ? (l(), i("p", xt, d(a.addressLine3), 1)) :
|
|
777
|
+
a.addressLine3 ? (l(), i("p", xt, d(a.addressLine3), 1)) : _("", !0)
|
|
778
778
|
]),
|
|
779
779
|
t("div", ea, [
|
|
780
780
|
a.website ? (l(), L(P, {
|
|
@@ -789,17 +789,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
789
789
|
}, d(a.website), 9, ta)
|
|
790
790
|
]),
|
|
791
791
|
_: 1
|
|
792
|
-
})) :
|
|
793
|
-
(l(!0), i(
|
|
794
|
-
key:
|
|
792
|
+
})) : _("", !0),
|
|
793
|
+
(l(!0), i(D, null, V(a.phoneNumbers, (s) => (l(), L(P, {
|
|
794
|
+
key: s,
|
|
795
795
|
underline: "false",
|
|
796
796
|
"link-type": "regular"
|
|
797
797
|
}, {
|
|
798
798
|
default: y(() => [
|
|
799
799
|
t("a", {
|
|
800
|
-
href: "tel:" +
|
|
800
|
+
href: "tel:" + s,
|
|
801
801
|
class: "address__phone"
|
|
802
|
-
}, d(
|
|
802
|
+
}, d(s), 9, aa)
|
|
803
803
|
]),
|
|
804
804
|
_: 2
|
|
805
805
|
}, 1024))), 128)),
|
|
@@ -836,9 +836,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
836
836
|
class: p(["bullet-list", e.variant])
|
|
837
837
|
}, [
|
|
838
838
|
t("ul", null, [
|
|
839
|
-
(l(!0), i(
|
|
839
|
+
(l(!0), i(D, null, V(e.list, (s) => (l(), i("li", { key: s }, [
|
|
840
840
|
na,
|
|
841
|
-
J(" " + d(
|
|
841
|
+
J(" " + d(s), 1)
|
|
842
842
|
]))), 128))
|
|
843
843
|
])
|
|
844
844
|
], 2)
|
|
@@ -868,7 +868,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
868
868
|
setup(e) {
|
|
869
869
|
const a = qe();
|
|
870
870
|
let r = C(!1);
|
|
871
|
-
const
|
|
871
|
+
const s = {
|
|
872
872
|
xsmall: {
|
|
873
873
|
class: "card--xsmall",
|
|
874
874
|
width: "241",
|
|
@@ -889,14 +889,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
889
889
|
width: "596",
|
|
890
890
|
height: "335"
|
|
891
891
|
}
|
|
892
|
-
},
|
|
892
|
+
}, o = e, u = q(() => s[o.size]), h = q(() => o.variant === "article" || o.variant === "product" ? `card--${o.size}-${o.variant}` : `card--${o.variant}`);
|
|
893
893
|
return (n, b) => (l(), i("div", ua, [
|
|
894
894
|
t("div", {
|
|
895
895
|
class: p(["card", [
|
|
896
896
|
n.theme === "dark" ? "card--dark" : "card--light",
|
|
897
897
|
n.orientation === "vertical" ? "vertical" : "horizontal",
|
|
898
898
|
u.value.class,
|
|
899
|
-
|
|
899
|
+
h.value,
|
|
900
900
|
n.variant === "product" ? "card--product" : "card--article"
|
|
901
901
|
]]),
|
|
902
902
|
style: ee([n.variant === "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
@@ -937,7 +937,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
937
937
|
], 2)),
|
|
938
938
|
I(a)["card-label"] ? (l(), i("div", _a, [
|
|
939
939
|
c(n.$slots, "card-label")
|
|
940
|
-
])) :
|
|
940
|
+
])) : _("", !0),
|
|
941
941
|
n.variant === "product" ? (l(), i("div", {
|
|
942
942
|
key: 3,
|
|
943
943
|
class: p([
|
|
@@ -952,7 +952,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
952
952
|
n.theme === "dark" ? "regular-dark" : "regular-dark-blue"
|
|
953
953
|
])
|
|
954
954
|
}, d(n.headline), 3)),
|
|
955
|
-
n.variant === "product" ? (l(), i("p", ha, d(n.paragraph), 1)) :
|
|
955
|
+
n.variant === "product" ? (l(), i("p", ha, d(n.paragraph), 1)) : _("", !0)
|
|
956
956
|
], 38)
|
|
957
957
|
]));
|
|
958
958
|
}
|
|
@@ -975,7 +975,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
975
975
|
src: a.image.filename,
|
|
976
976
|
alt: a.image.alt
|
|
977
977
|
})), void 0, !0)
|
|
978
|
-
], 2)) :
|
|
978
|
+
], 2)) : _("", !0),
|
|
979
979
|
t("h3", ga, d(a.headline), 1),
|
|
980
980
|
t("div", ba, [
|
|
981
981
|
c(a.$slots, "column-card-body", {}, void 0, !0)
|
|
@@ -1025,7 +1025,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1025
1025
|
}), qa = /* @__PURE__ */ v(Ca, [["__scopeId", "data-v-2c394add"]]), ie = (e) => (H("data-v-93ee37aa"), e = e(), R(), e), Aa = { class: "flashcard-side flashcard-front" }, La = {
|
|
1026
1026
|
key: 0,
|
|
1027
1027
|
class: "content"
|
|
1028
|
-
},
|
|
1028
|
+
}, Ta = { key: 0 }, Da = {
|
|
1029
1029
|
key: 1,
|
|
1030
1030
|
class: "flashcard-body"
|
|
1031
1031
|
}, Va = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
|
|
@@ -1064,8 +1064,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1064
1064
|
function r() {
|
|
1065
1065
|
a.value = !a.value;
|
|
1066
1066
|
}
|
|
1067
|
-
return (
|
|
1068
|
-
var u,
|
|
1067
|
+
return (s, o) => {
|
|
1068
|
+
var u, h, n, b, f, k;
|
|
1069
1069
|
return l(), i("div", {
|
|
1070
1070
|
class: "flashcard-container",
|
|
1071
1071
|
onClick: r
|
|
@@ -1073,49 +1073,49 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1073
1073
|
t("div", {
|
|
1074
1074
|
class: p(["flashcard", {
|
|
1075
1075
|
flipped: a.value,
|
|
1076
|
-
"flashcard--sm":
|
|
1077
|
-
"flashcard--md":
|
|
1078
|
-
"flashcard--lg":
|
|
1076
|
+
"flashcard--sm": s.size === "sm",
|
|
1077
|
+
"flashcard--md": s.size === "md",
|
|
1078
|
+
"flashcard--lg": s.size === "lg"
|
|
1079
1079
|
}])
|
|
1080
1080
|
}, [
|
|
1081
1081
|
t("div", Aa, [
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
c(
|
|
1086
|
-
])) :
|
|
1082
|
+
s.name || ((u = s.bodytext) == null ? void 0 : u.length) > 0 ? (l(), i("div", La, [
|
|
1083
|
+
s.name ? (l(), i("h3", Ta, d(s.name), 1)) : _("", !0),
|
|
1084
|
+
s.bodytext ? (l(), i("div", Da, [
|
|
1085
|
+
c(s.$slots, "flashcard-front-body", O(z({ bodytext: s.bodytext })), void 0, !0)
|
|
1086
|
+
])) : _("", !0),
|
|
1087
1087
|
Va
|
|
1088
1088
|
])) : (l(), i("div", {
|
|
1089
1089
|
key: 1,
|
|
1090
1090
|
class: p(["flashcard-image", {
|
|
1091
|
-
contain:
|
|
1092
|
-
cover: !
|
|
1091
|
+
contain: s.imageFit,
|
|
1092
|
+
cover: !s.imageFit
|
|
1093
1093
|
}])
|
|
1094
1094
|
}, [
|
|
1095
|
-
c(
|
|
1095
|
+
c(s.$slots, "flashcard-front-image", O(z({ src: (h = s.image) == null ? void 0 : h.filename, alt: (n = s.image) == null ? void 0 : n.alt })), void 0, !0),
|
|
1096
1096
|
Pa
|
|
1097
1097
|
], 2))
|
|
1098
1098
|
]),
|
|
1099
1099
|
t("div", {
|
|
1100
1100
|
class: p([
|
|
1101
1101
|
"flashcard-side flashcard-back",
|
|
1102
|
-
(b =
|
|
1102
|
+
(b = s.imagebackside) != null && b.filename ? "flashcard-back--image" : "flashcard-back--no-image"
|
|
1103
1103
|
])
|
|
1104
1104
|
}, [
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
c(
|
|
1109
|
-
])) :
|
|
1105
|
+
s.namebackside || s.bodytextbackside.length > 0 ? (l(), i("div", Fa, [
|
|
1106
|
+
s.namebackside ? (l(), i("h3", Ma, d(s.namebackside), 1)) : _("", !0),
|
|
1107
|
+
s.bodytextbackside ? (l(), i("div", Oa, [
|
|
1108
|
+
c(s.$slots, "flashcard-back-body", O(z({ bodytextbackside: s.bodytextbackside })), void 0, !0)
|
|
1109
|
+
])) : _("", !0),
|
|
1110
1110
|
za
|
|
1111
1111
|
])) : (l(), i("div", {
|
|
1112
1112
|
key: 1,
|
|
1113
1113
|
class: p(["flashcard-image", {
|
|
1114
|
-
contain:
|
|
1115
|
-
cover: !
|
|
1114
|
+
contain: s.imageFitBack,
|
|
1115
|
+
cover: !s.imageFitBack
|
|
1116
1116
|
}])
|
|
1117
1117
|
}, [
|
|
1118
|
-
c(
|
|
1118
|
+
c(s.$slots, "flashcard-back-image", O(z({ src: (f = s.imagebackside) == null ? void 0 : f.filename, alt: (k = s.imagebackside) == null ? void 0 : k.alt })), void 0, !0),
|
|
1119
1119
|
Ha
|
|
1120
1120
|
], 2))
|
|
1121
1121
|
], 2)
|
|
@@ -1163,44 +1163,44 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1163
1163
|
accordions: {}
|
|
1164
1164
|
},
|
|
1165
1165
|
setup(e) {
|
|
1166
|
-
const a = C([]), r = (
|
|
1167
|
-
const u = a.value.indexOf(
|
|
1168
|
-
u > -1 ? a.value.splice(u, 1) : a.value.push(
|
|
1169
|
-
},
|
|
1170
|
-
return (
|
|
1166
|
+
const a = C([]), r = (o) => {
|
|
1167
|
+
const u = a.value.indexOf(o);
|
|
1168
|
+
u > -1 ? a.value.splice(u, 1) : a.value.push(o);
|
|
1169
|
+
}, s = (o) => a.value.includes(o);
|
|
1170
|
+
return (o, u) => (l(), i("section", Ga, [
|
|
1171
1171
|
t("div", Ja, [
|
|
1172
|
-
(l(!0), i(
|
|
1173
|
-
key:
|
|
1172
|
+
(l(!0), i(D, null, V(o.accordions, (h) => (l(), i("div", {
|
|
1173
|
+
key: h._uid
|
|
1174
1174
|
}, [
|
|
1175
1175
|
t("div", Wa, [
|
|
1176
1176
|
t("div", {
|
|
1177
1177
|
class: "accordion__header",
|
|
1178
|
-
onClick: (n) => r(
|
|
1178
|
+
onClick: (n) => r(h._uid)
|
|
1179
1179
|
}, [
|
|
1180
|
-
t("h3", Qa, d(
|
|
1180
|
+
t("h3", Qa, d(h.headline), 1),
|
|
1181
1181
|
t("span", Za, [
|
|
1182
|
-
|
|
1182
|
+
s(h._uid) ? (l(), i("img", xa)) : (l(), i("img", Xa))
|
|
1183
1183
|
])
|
|
1184
1184
|
], 8, Ya),
|
|
1185
1185
|
t("div", {
|
|
1186
|
-
class: p(["accordion__content", { "accordion__content--reverse":
|
|
1186
|
+
class: p(["accordion__content", { "accordion__content--reverse": h.imageFirst }]),
|
|
1187
1187
|
style: ee({
|
|
1188
|
-
display:
|
|
1188
|
+
display: s(h._uid) ? "flex" : "none"
|
|
1189
1189
|
})
|
|
1190
1190
|
}, [
|
|
1191
1191
|
t("div", eo, [
|
|
1192
|
-
c(
|
|
1192
|
+
c(o.$slots, "accordion-body", M({ ref_for: !0 }, { body: h.bodytext }), void 0, !0)
|
|
1193
1193
|
]),
|
|
1194
1194
|
S(F, null, {
|
|
1195
1195
|
default: y(() => [
|
|
1196
|
-
|
|
1196
|
+
h.image ? c(o.$slots, "accordion-image", M({
|
|
1197
1197
|
key: 0,
|
|
1198
1198
|
ref_for: !0
|
|
1199
1199
|
}, {
|
|
1200
|
-
src:
|
|
1201
|
-
alt:
|
|
1200
|
+
src: h.image.filename,
|
|
1201
|
+
alt: h.image.alt,
|
|
1202
1202
|
class: "accordion__image"
|
|
1203
|
-
}), void 0, !0) :
|
|
1203
|
+
}), void 0, !0) : _("", !0)
|
|
1204
1204
|
]),
|
|
1205
1205
|
_: 2
|
|
1206
1206
|
}, 1024)
|
|
@@ -1238,9 +1238,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1238
1238
|
}, [
|
|
1239
1239
|
t("div", oo, [
|
|
1240
1240
|
e.headline || e.paragraph ? (l(), i("div", so, [
|
|
1241
|
-
e.headline ? (l(), i("h2", lo, d(e.headline), 1)) :
|
|
1242
|
-
e.paragraph ? (l(), i("p", io, d(e.paragraph), 1)) :
|
|
1243
|
-
])) :
|
|
1241
|
+
e.headline ? (l(), i("h2", lo, d(e.headline), 1)) : _("", !0),
|
|
1242
|
+
e.paragraph ? (l(), i("p", io, d(e.paragraph), 1)) : _("", !0)
|
|
1243
|
+
])) : _("", !0),
|
|
1244
1244
|
t("div", ro, [
|
|
1245
1245
|
c(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1246
1246
|
])
|
|
@@ -1269,31 +1269,31 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1269
1269
|
])
|
|
1270
1270
|
}, [
|
|
1271
1271
|
t("div", uo, [
|
|
1272
|
-
a.headline ? (l(), i("h2", _o, d(a.headline), 1)) :
|
|
1272
|
+
a.headline ? (l(), i("h2", _o, d(a.headline), 1)) : _("", !0),
|
|
1273
1273
|
a.bodytext ? (l(), i("div", ho, [
|
|
1274
1274
|
c(a.$slots, "column-grid-body", {}, void 0, !0)
|
|
1275
|
-
])) :
|
|
1275
|
+
])) : _("", !0)
|
|
1276
1276
|
]),
|
|
1277
1277
|
t("div", po, [
|
|
1278
|
-
(l(!0), i(
|
|
1279
|
-
key:
|
|
1280
|
-
headline:
|
|
1281
|
-
bodytext:
|
|
1282
|
-
image:
|
|
1283
|
-
"image-fit":
|
|
1278
|
+
(l(!0), i(D, null, V(a.columns, (s) => (l(), L(ge, {
|
|
1279
|
+
key: s._uid,
|
|
1280
|
+
headline: s.headline,
|
|
1281
|
+
bodytext: s.bodytext,
|
|
1282
|
+
image: s.image,
|
|
1283
|
+
"image-fit": s.imageFit
|
|
1284
1284
|
}, {
|
|
1285
1285
|
"column-card-body": y(() => [
|
|
1286
|
-
c(a.$slots, "column-card-body", M({ ref_for: !0 }, { body:
|
|
1286
|
+
c(a.$slots, "column-card-body", M({ ref_for: !0 }, { body: s.bodytext }), void 0, !0)
|
|
1287
1287
|
]),
|
|
1288
1288
|
"column-card-image": y(() => [
|
|
1289
|
-
|
|
1289
|
+
s.image ? c(a.$slots, "column-card-image", M({
|
|
1290
1290
|
key: 0,
|
|
1291
1291
|
ref_for: !0
|
|
1292
1292
|
}, {
|
|
1293
|
-
src:
|
|
1294
|
-
alt:
|
|
1295
|
-
style: { "object-fit":
|
|
1296
|
-
}), void 0, !0) :
|
|
1293
|
+
src: s.image.filename,
|
|
1294
|
+
alt: s.image.alt,
|
|
1295
|
+
style: { "object-fit": s.imageFit ? "cover" : "contain" }
|
|
1296
|
+
}), void 0, !0) : _("", !0)
|
|
1297
1297
|
]),
|
|
1298
1298
|
_: 2
|
|
1299
1299
|
}, 1032, ["headline", "bodytext", "image", "image-fit"]))), 128))
|
|
@@ -1331,15 +1331,15 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1331
1331
|
t("div", go, [
|
|
1332
1332
|
t("h2", bo, d(a.headline), 1),
|
|
1333
1333
|
t("div", yo, [
|
|
1334
|
-
(l(!0), i(
|
|
1335
|
-
key:
|
|
1334
|
+
(l(!0), i(D, null, V(a.facts, (s) => (l(), i("div", {
|
|
1335
|
+
key: s.value + s.metric,
|
|
1336
1336
|
class: "fact"
|
|
1337
1337
|
}, [
|
|
1338
1338
|
t("div", ko, [
|
|
1339
|
-
t("span", null, d(
|
|
1339
|
+
t("span", null, d(s.value), 1)
|
|
1340
1340
|
]),
|
|
1341
1341
|
t("div", $o, [
|
|
1342
|
-
t("span", null, d(
|
|
1342
|
+
t("span", null, d(s.metric), 1)
|
|
1343
1343
|
])
|
|
1344
1344
|
]))), 128))
|
|
1345
1345
|
]),
|
|
@@ -1353,7 +1353,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1353
1353
|
]),
|
|
1354
1354
|
_: 3
|
|
1355
1355
|
})
|
|
1356
|
-
])) :
|
|
1356
|
+
])) : _("", !0)
|
|
1357
1357
|
])
|
|
1358
1358
|
]));
|
|
1359
1359
|
}
|
|
@@ -1363,7 +1363,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1363
1363
|
}, Ao = {
|
|
1364
1364
|
key: 1,
|
|
1365
1365
|
class: "features__body"
|
|
1366
|
-
}, Lo = { class: "element__headline" },
|
|
1366
|
+
}, Lo = { class: "element__headline" }, To = { class: "element__body" }, Do = /* @__PURE__ */ g({
|
|
1367
1367
|
__name: "features",
|
|
1368
1368
|
props: {
|
|
1369
1369
|
headline: { default: "" },
|
|
@@ -1375,36 +1375,36 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1375
1375
|
t("div", Co, [
|
|
1376
1376
|
a.headline ? (l(), i("div", qo, [
|
|
1377
1377
|
t("h2", null, d(a.headline), 1)
|
|
1378
|
-
])) :
|
|
1378
|
+
])) : _("", !0),
|
|
1379
1379
|
a.body ? (l(), i("div", Ao, [
|
|
1380
1380
|
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1381
|
-
])) :
|
|
1381
|
+
])) : _("", !0),
|
|
1382
1382
|
t("div", {
|
|
1383
1383
|
class: p(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1384
1384
|
}, [
|
|
1385
|
-
(l(!0), i(
|
|
1386
|
-
key:
|
|
1385
|
+
(l(!0), i(D, null, V(a.elements, (s) => (l(), i("div", {
|
|
1386
|
+
key: s.headline,
|
|
1387
1387
|
class: "features__element"
|
|
1388
1388
|
}, [
|
|
1389
1389
|
S(F, { class: "element__icon" }, {
|
|
1390
1390
|
default: y(() => [
|
|
1391
1391
|
c(a.$slots, "features-icon", M({ ref_for: !0 }, {
|
|
1392
|
-
src:
|
|
1392
|
+
src: s.icon.src,
|
|
1393
1393
|
height: 30,
|
|
1394
1394
|
width: 30,
|
|
1395
|
-
alt:
|
|
1395
|
+
alt: s.icon.alt
|
|
1396
1396
|
}), void 0, !0)
|
|
1397
1397
|
]),
|
|
1398
1398
|
_: 2
|
|
1399
1399
|
}, 1024),
|
|
1400
|
-
t("p", Lo, d(
|
|
1401
|
-
t("p",
|
|
1400
|
+
t("p", Lo, d(s.headline), 1),
|
|
1401
|
+
t("p", To, d(s.body), 1)
|
|
1402
1402
|
]))), 128))
|
|
1403
1403
|
], 2)
|
|
1404
1404
|
])
|
|
1405
1405
|
]));
|
|
1406
1406
|
}
|
|
1407
|
-
}), Vo = /* @__PURE__ */ v(
|
|
1407
|
+
}), Vo = /* @__PURE__ */ v(Do, [["__scopeId", "data-v-57a22df7"]]), Po = { class: "flashcard-wrapper" }, Fo = {
|
|
1408
1408
|
key: 0,
|
|
1409
1409
|
class: "flashcard-wrapper__headline"
|
|
1410
1410
|
}, Mo = {
|
|
@@ -1419,13 +1419,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1419
1419
|
flashcards: {}
|
|
1420
1420
|
},
|
|
1421
1421
|
setup(e) {
|
|
1422
|
-
const a = e, r =
|
|
1422
|
+
const a = e, r = q(() => a.body.trim().length > 0), s = q(() => {
|
|
1423
1423
|
var u;
|
|
1424
|
-
const
|
|
1425
|
-
return
|
|
1424
|
+
const o = (u = a.flashcards) == null ? void 0 : u.length;
|
|
1425
|
+
return o === 4 || o === 5 ? "sm" : o === 6 || o === 3 ? "md" : o === 2 ? "lg" : "sm";
|
|
1426
1426
|
});
|
|
1427
|
-
return (
|
|
1428
|
-
class: p(["flashcards",
|
|
1427
|
+
return (o, u) => (l(), i("div", {
|
|
1428
|
+
class: p(["flashcards", o.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
|
|
1429
1429
|
}, [
|
|
1430
1430
|
t("div", Po, [
|
|
1431
1431
|
t("div", {
|
|
@@ -1434,41 +1434,41 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1434
1434
|
"flashcard-wrapper__top-section"
|
|
1435
1435
|
])
|
|
1436
1436
|
}, [
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
c(
|
|
1440
|
-
])) :
|
|
1437
|
+
o.headline ? (l(), i("h2", Fo, d(o.headline), 1)) : _("", !0),
|
|
1438
|
+
o.body ? (l(), i("div", Mo, [
|
|
1439
|
+
c(o.$slots, "flashcard-wrapper-body", {}, void 0, !0)
|
|
1440
|
+
])) : _("", !0)
|
|
1441
1441
|
], 2),
|
|
1442
1442
|
t("div", {
|
|
1443
1443
|
class: p(["flashcard-wrapper__teaser-list", {
|
|
1444
|
-
sm:
|
|
1445
|
-
md:
|
|
1446
|
-
lg:
|
|
1444
|
+
sm: s.value === "sm",
|
|
1445
|
+
md: s.value === "md",
|
|
1446
|
+
lg: s.value === "lg"
|
|
1447
1447
|
}])
|
|
1448
1448
|
}, [
|
|
1449
|
-
(l(!0), i(
|
|
1450
|
-
key:
|
|
1451
|
-
name:
|
|
1452
|
-
bodytext:
|
|
1453
|
-
image:
|
|
1454
|
-
namebackside:
|
|
1455
|
-
bodytextbackside:
|
|
1456
|
-
imagebackside:
|
|
1457
|
-
size:
|
|
1458
|
-
"image-fit":
|
|
1459
|
-
"image-fit-back":
|
|
1449
|
+
(l(!0), i(D, null, V(o.flashcards, (h) => (l(), L(I(be), {
|
|
1450
|
+
key: h._uid,
|
|
1451
|
+
name: h.name,
|
|
1452
|
+
bodytext: h.bodytext,
|
|
1453
|
+
image: h.image,
|
|
1454
|
+
namebackside: h.namebackside ? h.namebackside : "",
|
|
1455
|
+
bodytextbackside: h.bodytextbackside,
|
|
1456
|
+
imagebackside: h.imagebackside ? h.imagebackside : { filename: "", alt: "" },
|
|
1457
|
+
size: s.value,
|
|
1458
|
+
"image-fit": h.imageFit,
|
|
1459
|
+
"image-fit-back": h.imageFitBack
|
|
1460
1460
|
}, {
|
|
1461
1461
|
"flashcard-front-body": y(({ bodytext: n }) => [
|
|
1462
|
-
c(
|
|
1462
|
+
c(o.$slots, "flashcard-front-body", M({ ref_for: !0 }, { bodytext: n }), void 0, !0)
|
|
1463
1463
|
]),
|
|
1464
1464
|
"flashcard-front-image": y(({ src: n, alt: b }) => [
|
|
1465
|
-
c(
|
|
1465
|
+
c(o.$slots, "flashcard-front-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1466
1466
|
]),
|
|
1467
1467
|
"flashcard-back-body": y(({ bodytextbackside: n }) => [
|
|
1468
|
-
c(
|
|
1468
|
+
c(o.$slots, "flashcard-back-body", M({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
|
|
1469
1469
|
]),
|
|
1470
1470
|
"flashcard-back-image": y(({ src: n, alt: b }) => [
|
|
1471
|
-
c(
|
|
1471
|
+
c(o.$slots, "flashcard-back-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1472
1472
|
]),
|
|
1473
1473
|
_: 2
|
|
1474
1474
|
}, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
|
|
@@ -1476,30 +1476,47 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1476
1476
|
])
|
|
1477
1477
|
], 2));
|
|
1478
1478
|
}
|
|
1479
|
-
}), zo = /* @__PURE__ */ v(Oo, [["__scopeId", "data-v-de3c8751"]]), Ho = { class: "
|
|
1479
|
+
}), zo = /* @__PURE__ */ v(Oo, [["__scopeId", "data-v-de3c8751"]]), Ho = { class: "form__content" }, Ro = { class: "form__information" }, No = { class: "form__headline" }, Eo = { class: "form__body" }, jo = { class: "form__script" }, Ko = /* @__PURE__ */ g({
|
|
1480
1480
|
__name: "form-script",
|
|
1481
1481
|
props: {
|
|
1482
|
-
headline: {
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
}
|
|
1482
|
+
headline: { default: "" },
|
|
1483
|
+
linkText: { default: "" },
|
|
1484
|
+
variant: { default: "default" },
|
|
1485
|
+
linkType: { default: "link" }
|
|
1486
1486
|
},
|
|
1487
1487
|
setup(e) {
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1488
|
+
const a = {
|
|
1489
|
+
dark: "form__wrapper--dark",
|
|
1490
|
+
light: "form__wrapper--light",
|
|
1491
|
+
default: "form__wrapper--default"
|
|
1492
|
+
}, r = e, s = q(() => a[r.variant]);
|
|
1493
|
+
return (o, u) => (l(), i("div", {
|
|
1494
|
+
class: p(["form__wrapper", s.value])
|
|
1495
|
+
}, [
|
|
1496
|
+
t("div", Ho, [
|
|
1497
|
+
t("div", Ro, [
|
|
1498
|
+
t("h2", No, d(o.headline), 1),
|
|
1499
|
+
t("div", Eo, [
|
|
1500
|
+
c(o.$slots, "form-body", {}, void 0, !0)
|
|
1501
|
+
]),
|
|
1502
|
+
o.linkType === "link" ? (l(), L(P, {
|
|
1503
|
+
key: 0,
|
|
1504
|
+
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
1505
|
+
arrow: ""
|
|
1506
|
+
}, {
|
|
1507
|
+
default: y(() => [
|
|
1508
|
+
c(o.$slots, "form-link", {}, void 0, !0)
|
|
1509
|
+
]),
|
|
1510
|
+
_: 3
|
|
1511
|
+
}, 8, ["link-type"])) : _("", !0)
|
|
1495
1512
|
]),
|
|
1496
|
-
t("div",
|
|
1497
|
-
c(
|
|
1513
|
+
t("div", jo, [
|
|
1514
|
+
c(o.$slots, "form-script", {}, void 0, !0)
|
|
1498
1515
|
])
|
|
1499
1516
|
])
|
|
1500
|
-
]));
|
|
1517
|
+
], 2));
|
|
1501
1518
|
}
|
|
1502
|
-
}),
|
|
1519
|
+
}), Uo = /* @__PURE__ */ v(Ko, [["__scopeId", "data-v-b8b02bae"]]), Go = { class: "headline__wrapper" }, Jo = { class: "headline__h1" }, Wo = /* @__PURE__ */ g({
|
|
1503
1520
|
__name: "headline",
|
|
1504
1521
|
props: {
|
|
1505
1522
|
headline: {
|
|
@@ -1516,7 +1533,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1516
1533
|
}
|
|
1517
1534
|
},
|
|
1518
1535
|
setup(e) {
|
|
1519
|
-
return (a, r) => (l(), i("div",
|
|
1536
|
+
return (a, r) => (l(), i("div", Go, [
|
|
1520
1537
|
t("div", {
|
|
1521
1538
|
class: p({
|
|
1522
1539
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1525,11 +1542,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1525
1542
|
"headline__content--default": !e.article && !e.subMenu
|
|
1526
1543
|
})
|
|
1527
1544
|
}, [
|
|
1528
|
-
t("h1",
|
|
1545
|
+
t("h1", Jo, d(e.headline), 1)
|
|
1529
1546
|
], 2)
|
|
1530
1547
|
]));
|
|
1531
1548
|
}
|
|
1532
|
-
}),
|
|
1549
|
+
}), Yo = /* @__PURE__ */ v(Wo, [["__scopeId", "data-v-3ef1567e"]]), Qo = (e) => (H("data-v-22f9be13"), e = e(), R(), e), Zo = { class: "hero__wrapper" }, Xo = { class: "hero__content" }, xo = { class: "hero__top" }, es = { class: "hero__elements" }, ts = { class: "hero__headline" }, as = { class: "hero__link" }, os = { class: "hero__video" }, ss = /* @__PURE__ */ Qo(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), ls = { class: "hero__video__video" }, is = { class: "hero__image" }, rs = /* @__PURE__ */ g({
|
|
1533
1550
|
__name: "hero",
|
|
1534
1551
|
props: {
|
|
1535
1552
|
headline: {
|
|
@@ -1538,14 +1555,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1538
1555
|
}
|
|
1539
1556
|
},
|
|
1540
1557
|
setup(e) {
|
|
1541
|
-
return (a, r) => (l(), i("div",
|
|
1542
|
-
t("div",
|
|
1543
|
-
t("div",
|
|
1544
|
-
t("div",
|
|
1545
|
-
t("div",
|
|
1558
|
+
return (a, r) => (l(), i("div", Zo, [
|
|
1559
|
+
t("div", Xo, [
|
|
1560
|
+
t("div", xo, [
|
|
1561
|
+
t("div", es, [
|
|
1562
|
+
t("div", ts, [
|
|
1546
1563
|
t("h1", null, d(e.headline), 1)
|
|
1547
1564
|
]),
|
|
1548
|
-
t("div",
|
|
1565
|
+
t("div", as, [
|
|
1549
1566
|
S(P, {
|
|
1550
1567
|
"link-type": "regular_light",
|
|
1551
1568
|
arrow: ""
|
|
@@ -1558,19 +1575,19 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1558
1575
|
])
|
|
1559
1576
|
])
|
|
1560
1577
|
]),
|
|
1561
|
-
t("div",
|
|
1562
|
-
|
|
1563
|
-
t("div",
|
|
1578
|
+
t("div", os, [
|
|
1579
|
+
ss,
|
|
1580
|
+
t("div", ls, [
|
|
1564
1581
|
c(a.$slots, "hero-video", {}, void 0, !0)
|
|
1565
1582
|
]),
|
|
1566
|
-
t("div",
|
|
1583
|
+
t("div", is, [
|
|
1567
1584
|
c(a.$slots, "hero-image", {}, void 0, !0)
|
|
1568
1585
|
])
|
|
1569
1586
|
])
|
|
1570
1587
|
])
|
|
1571
1588
|
]));
|
|
1572
1589
|
}
|
|
1573
|
-
}),
|
|
1590
|
+
}), ns = /* @__PURE__ */ v(rs, [["__scopeId", "data-v-22f9be13"]]), ds = { class: "image__wrapper" }, cs = { class: "image__content" }, us = { class: "image__image" }, _s = { class: "image__caption" }, hs = /* @__PURE__ */ g({
|
|
1574
1591
|
inheritAttrs: !1,
|
|
1575
1592
|
__name: "image",
|
|
1576
1593
|
props: {
|
|
@@ -1594,9 +1611,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1594
1611
|
}
|
|
1595
1612
|
},
|
|
1596
1613
|
setup(e) {
|
|
1597
|
-
return (a, r) => (l(), i("div",
|
|
1598
|
-
t("div",
|
|
1599
|
-
t("div",
|
|
1614
|
+
return (a, r) => (l(), i("div", ds, [
|
|
1615
|
+
t("div", cs, [
|
|
1616
|
+
t("div", us, [
|
|
1600
1617
|
S(F, null, {
|
|
1601
1618
|
default: y(() => [
|
|
1602
1619
|
c(a.$slots, "image", O(z({
|
|
@@ -1610,17 +1627,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1610
1627
|
_: 3
|
|
1611
1628
|
})
|
|
1612
1629
|
]),
|
|
1613
|
-
t("p",
|
|
1630
|
+
t("p", _s, d(e.caption), 1)
|
|
1614
1631
|
])
|
|
1615
1632
|
]));
|
|
1616
1633
|
}
|
|
1617
|
-
}),
|
|
1634
|
+
}), ps = /* @__PURE__ */ v(hs, [["__scopeId", "data-v-c583d657"]]), ms = { class: "gallery__large" }, fs = {
|
|
1618
1635
|
key: 0,
|
|
1619
1636
|
class: "image image--large"
|
|
1620
|
-
},
|
|
1637
|
+
}, vs = {
|
|
1621
1638
|
key: 1,
|
|
1622
1639
|
class: "video"
|
|
1623
|
-
},
|
|
1640
|
+
}, gs = /* @__PURE__ */ g({
|
|
1624
1641
|
__name: "image-gallery",
|
|
1625
1642
|
props: {
|
|
1626
1643
|
mediaLarge: {},
|
|
@@ -1636,35 +1653,35 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1636
1653
|
white: "",
|
|
1637
1654
|
light: "gallery__wrapper--light",
|
|
1638
1655
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1639
|
-
}, r = e,
|
|
1640
|
-
return (
|
|
1641
|
-
class: p(["gallery__wrapper",
|
|
1656
|
+
}, r = e, s = q(() => a[r.bgColor]);
|
|
1657
|
+
return (o, u) => (l(), i("div", {
|
|
1658
|
+
class: p(["gallery__wrapper", s.value])
|
|
1642
1659
|
}, [
|
|
1643
1660
|
t("div", {
|
|
1644
1661
|
class: p([
|
|
1645
1662
|
"gallery__content",
|
|
1646
|
-
|
|
1663
|
+
o.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1647
1664
|
])
|
|
1648
1665
|
}, [
|
|
1649
|
-
t("div",
|
|
1650
|
-
|
|
1666
|
+
t("div", ms, [
|
|
1667
|
+
o.mediaLarge && o.mediaType === "image" ? (l(), i("div", fs, [
|
|
1651
1668
|
S(F, null, {
|
|
1652
1669
|
default: y(() => [
|
|
1653
|
-
c(
|
|
1670
|
+
c(o.$slots, "image-large", O(z({
|
|
1654
1671
|
width: 617,
|
|
1655
1672
|
height: 530,
|
|
1656
|
-
src:
|
|
1657
|
-
alt:
|
|
1673
|
+
src: o.mediaLarge.src,
|
|
1674
|
+
alt: o.mediaLarge.alt
|
|
1658
1675
|
})))
|
|
1659
1676
|
]),
|
|
1660
1677
|
_: 3
|
|
1661
1678
|
})
|
|
1662
|
-
])) :
|
|
1663
|
-
|
|
1679
|
+
])) : _("", !0),
|
|
1680
|
+
o.mediaLarge && o.mediaType === "video" ? (l(), i("div", vs, [
|
|
1664
1681
|
S(te, {
|
|
1665
|
-
src:
|
|
1682
|
+
src: o.mediaLarge.src,
|
|
1666
1683
|
"local-video": "",
|
|
1667
|
-
"aria-label":
|
|
1684
|
+
"aria-label": o.mediaLarge.alt,
|
|
1668
1685
|
controls: !1,
|
|
1669
1686
|
height: "530",
|
|
1670
1687
|
width: "617",
|
|
@@ -1673,45 +1690,45 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1673
1690
|
muted: "",
|
|
1674
1691
|
play: ""
|
|
1675
1692
|
}, null, 8, ["src", "aria-label"])
|
|
1676
|
-
])) :
|
|
1693
|
+
])) : _("", !0)
|
|
1677
1694
|
]),
|
|
1678
1695
|
t("div", {
|
|
1679
|
-
style: ee([
|
|
1696
|
+
style: ee([o.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
1680
1697
|
class: p([
|
|
1681
1698
|
"gallery__small",
|
|
1682
|
-
|
|
1699
|
+
o.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1683
1700
|
])
|
|
1684
1701
|
}, [
|
|
1685
|
-
(l(!0), i(
|
|
1686
|
-
key:
|
|
1702
|
+
(l(!0), i(D, null, V(o.mediaSmall, (h) => (l(), i("div", {
|
|
1703
|
+
key: h.src + h.alt,
|
|
1687
1704
|
class: "image image--small"
|
|
1688
1705
|
}, [
|
|
1689
1706
|
S(F, null, {
|
|
1690
1707
|
default: y(() => [
|
|
1691
|
-
c(
|
|
1708
|
+
c(o.$slots, "image-small", M({ ref_for: !0 }, {
|
|
1692
1709
|
width: 328,
|
|
1693
1710
|
height: 246,
|
|
1694
|
-
src:
|
|
1695
|
-
alt:
|
|
1711
|
+
src: h.src,
|
|
1712
|
+
alt: h.alt
|
|
1696
1713
|
}))
|
|
1697
1714
|
]),
|
|
1698
1715
|
_: 2
|
|
1699
1716
|
}, 1024)
|
|
1700
1717
|
]))), 128)),
|
|
1701
|
-
|
|
1718
|
+
o.mediaSmall.length < 2 ? (l(), i("div", {
|
|
1702
1719
|
key: 0,
|
|
1703
|
-
class: p(["body",
|
|
1720
|
+
class: p(["body", o.bgColor === "dark" ? "body--dark" : ""])
|
|
1704
1721
|
}, [
|
|
1705
|
-
t("p", null, d(
|
|
1706
|
-
], 2)) :
|
|
1722
|
+
t("p", null, d(o.body), 1)
|
|
1723
|
+
], 2)) : _("", !0)
|
|
1707
1724
|
], 6)
|
|
1708
1725
|
], 2)
|
|
1709
1726
|
], 2));
|
|
1710
1727
|
}
|
|
1711
|
-
}),
|
|
1728
|
+
}), bs = /* @__PURE__ */ v(gs, [["__scopeId", "data-v-4997f83a"]]), ys = { class: "logo-wall__wrapper" }, ks = { class: "logo-wall__content" }, $s = {
|
|
1712
1729
|
key: 0,
|
|
1713
1730
|
class: "logo-wall__text"
|
|
1714
|
-
},
|
|
1731
|
+
}, ws = { key: 0 }, Bs = { key: 1 }, Ss = { class: "logo-wall__logos" }, Is = { class: "logo-wall__link" }, Cs = /* @__PURE__ */ g({
|
|
1715
1732
|
__name: "logo-wall",
|
|
1716
1733
|
props: {
|
|
1717
1734
|
headline: {
|
|
@@ -1729,15 +1746,15 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1729
1746
|
}
|
|
1730
1747
|
},
|
|
1731
1748
|
setup(e) {
|
|
1732
|
-
return (a, r) => (l(), i("div",
|
|
1733
|
-
t("div",
|
|
1734
|
-
e.headline || e.body ? (l(), i("div",
|
|
1735
|
-
e.headline ? (l(), i("h2",
|
|
1736
|
-
e.body ? (l(), i("p",
|
|
1737
|
-
])) :
|
|
1738
|
-
t("div",
|
|
1739
|
-
(l(!0), i(
|
|
1740
|
-
key:
|
|
1749
|
+
return (a, r) => (l(), i("div", ys, [
|
|
1750
|
+
t("div", ks, [
|
|
1751
|
+
e.headline || e.body ? (l(), i("div", $s, [
|
|
1752
|
+
e.headline ? (l(), i("h2", ws, d(e.headline), 1)) : _("", !0),
|
|
1753
|
+
e.body ? (l(), i("p", Bs, d(e.body), 1)) : _("", !0)
|
|
1754
|
+
])) : _("", !0),
|
|
1755
|
+
t("div", Ss, [
|
|
1756
|
+
(l(!0), i(D, null, V(e.logos, (s) => (l(), i("div", {
|
|
1757
|
+
key: s.src + s.alt,
|
|
1741
1758
|
class: "logo-wall__logo"
|
|
1742
1759
|
}, [
|
|
1743
1760
|
S(F, null, {
|
|
@@ -1745,15 +1762,15 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1745
1762
|
c(a.$slots, "logo-wall-logo", M({ ref_for: !0 }, {
|
|
1746
1763
|
width: 130,
|
|
1747
1764
|
height: 130,
|
|
1748
|
-
src:
|
|
1749
|
-
alt:
|
|
1765
|
+
src: s.src,
|
|
1766
|
+
alt: s.alt
|
|
1750
1767
|
}), void 0, !0)
|
|
1751
1768
|
]),
|
|
1752
1769
|
_: 2
|
|
1753
1770
|
}, 1024)
|
|
1754
1771
|
]))), 128))
|
|
1755
1772
|
]),
|
|
1756
|
-
t("div",
|
|
1773
|
+
t("div", Is, [
|
|
1757
1774
|
S(P, {
|
|
1758
1775
|
"link-type": "regular_light",
|
|
1759
1776
|
arrow: !0
|
|
@@ -1767,13 +1784,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1767
1784
|
])
|
|
1768
1785
|
]));
|
|
1769
1786
|
}
|
|
1770
|
-
}),
|
|
1787
|
+
}), qs = /* @__PURE__ */ v(Cs, [["__scopeId", "data-v-fd489289"]]), As = { class: "micro-stories__top" }, Ls = {
|
|
1771
1788
|
key: 0,
|
|
1772
1789
|
class: "headline"
|
|
1773
1790
|
}, Ts = {
|
|
1774
1791
|
key: 1,
|
|
1775
1792
|
class: "body"
|
|
1776
|
-
},
|
|
1793
|
+
}, Ds = { class: "micro-stories__splide" }, Vs = /* @__PURE__ */ g({
|
|
1777
1794
|
__name: "micro-stories",
|
|
1778
1795
|
props: {
|
|
1779
1796
|
bgColor: { default: "blue" },
|
|
@@ -1785,39 +1802,39 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1785
1802
|
white: "micro-stories__wrapper--white",
|
|
1786
1803
|
blue: "micro-stories__wrapper--blue",
|
|
1787
1804
|
dark: "micro-stories__wrapper--dark"
|
|
1788
|
-
}, r =
|
|
1789
|
-
return (
|
|
1805
|
+
}, r = q(() => a[s.bgColor]), s = e;
|
|
1806
|
+
return (o, u) => (l(), i("div", {
|
|
1790
1807
|
class: p(["micro-stories__wrapper", r.value])
|
|
1791
1808
|
}, [
|
|
1792
|
-
t("div",
|
|
1793
|
-
|
|
1794
|
-
t("h2", null, d(
|
|
1795
|
-
])) :
|
|
1796
|
-
|
|
1797
|
-
t("p", null, d(
|
|
1798
|
-
])) :
|
|
1809
|
+
t("div", As, [
|
|
1810
|
+
o.headline ? (l(), i("div", Ls, [
|
|
1811
|
+
t("h2", null, d(o.headline), 1)
|
|
1812
|
+
])) : _("", !0),
|
|
1813
|
+
o.body ? (l(), i("div", Ts, [
|
|
1814
|
+
t("p", null, d(o.body), 1)
|
|
1815
|
+
])) : _("", !0)
|
|
1799
1816
|
]),
|
|
1800
|
-
t("div",
|
|
1801
|
-
c(
|
|
1817
|
+
t("div", Ds, [
|
|
1818
|
+
c(o.$slots, "micro-stories-slides")
|
|
1802
1819
|
]),
|
|
1803
|
-
c(
|
|
1820
|
+
c(o.$slots, "micro-stories-controls")
|
|
1804
1821
|
], 2));
|
|
1805
1822
|
}
|
|
1806
|
-
}),
|
|
1807
|
-
function
|
|
1808
|
-
return l(), i("div",
|
|
1809
|
-
t("div",
|
|
1823
|
+
}), Ps = {}, Fs = { class: "policy__wrapper" }, Ms = { class: "policy__content" };
|
|
1824
|
+
function Os(e, a) {
|
|
1825
|
+
return l(), i("div", Fs, [
|
|
1826
|
+
t("div", Ms, [
|
|
1810
1827
|
c(e.$slots, "default", {}, void 0, !0)
|
|
1811
1828
|
])
|
|
1812
1829
|
]);
|
|
1813
1830
|
}
|
|
1814
|
-
const
|
|
1831
|
+
const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a"]]), Hs = { class: "product-hero__wrapper" }, Rs = { class: "product-hero__content" }, Ns = { class: "product-hero__headline" }, Es = { class: "product-hero__video" }, js = { class: "product-hero__insignia" }, Ks = {
|
|
1815
1832
|
key: 0,
|
|
1816
1833
|
class: "product-hero__logo"
|
|
1817
|
-
},
|
|
1834
|
+
}, Us = {
|
|
1818
1835
|
key: 1,
|
|
1819
1836
|
class: "product-hero__certification"
|
|
1820
|
-
},
|
|
1837
|
+
}, Gs = /* @__PURE__ */ g({
|
|
1821
1838
|
__name: "product-hero",
|
|
1822
1839
|
props: {
|
|
1823
1840
|
headline: {
|
|
@@ -1852,10 +1869,10 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1852
1869
|
}
|
|
1853
1870
|
},
|
|
1854
1871
|
setup(e) {
|
|
1855
|
-
return (a, r) => (l(), i("div",
|
|
1856
|
-
t("div",
|
|
1857
|
-
t("div",
|
|
1858
|
-
t("div",
|
|
1872
|
+
return (a, r) => (l(), i("div", Hs, [
|
|
1873
|
+
t("div", Rs, [
|
|
1874
|
+
t("div", Ns, d(e.headline), 1),
|
|
1875
|
+
t("div", Es, [
|
|
1859
1876
|
e.videoSrc !== "" ? (l(), L(te, {
|
|
1860
1877
|
key: 0,
|
|
1861
1878
|
play: "",
|
|
@@ -1873,29 +1890,29 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1873
1890
|
]),
|
|
1874
1891
|
_: 3
|
|
1875
1892
|
})),
|
|
1876
|
-
t("div",
|
|
1877
|
-
e.logoSrc ? (l(), i("div",
|
|
1893
|
+
t("div", js, [
|
|
1894
|
+
e.logoSrc ? (l(), i("div", Ks, [
|
|
1878
1895
|
S(I(F), null, {
|
|
1879
1896
|
default: y(() => [
|
|
1880
1897
|
c(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1881
1898
|
]),
|
|
1882
1899
|
_: 3
|
|
1883
1900
|
})
|
|
1884
|
-
])) :
|
|
1885
|
-
e.isCertified ? (l(), i("div",
|
|
1901
|
+
])) : _("", !0),
|
|
1902
|
+
e.isCertified ? (l(), i("div", Us, [
|
|
1886
1903
|
S(I(F), null, {
|
|
1887
1904
|
default: y(() => [
|
|
1888
1905
|
c(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1889
1906
|
]),
|
|
1890
1907
|
_: 3
|
|
1891
1908
|
})
|
|
1892
|
-
])) :
|
|
1909
|
+
])) : _("", !0)
|
|
1893
1910
|
])
|
|
1894
1911
|
])
|
|
1895
1912
|
])
|
|
1896
1913
|
]));
|
|
1897
1914
|
}
|
|
1898
|
-
}),
|
|
1915
|
+
}), Js = /* @__PURE__ */ v(Gs, [["__scopeId", "data-v-deab9c3a"]]), Ws = { class: "promo__content" }, Ys = /* @__PURE__ */ g({
|
|
1899
1916
|
__name: "promo",
|
|
1900
1917
|
props: {
|
|
1901
1918
|
label: { default: "" },
|
|
@@ -1915,95 +1932,95 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1915
1932
|
dark: "promo__wrapper--dark",
|
|
1916
1933
|
light: "promo__wrapper--light",
|
|
1917
1934
|
default: "promo__wrapper--default"
|
|
1918
|
-
}, r = e,
|
|
1919
|
-
return (
|
|
1935
|
+
}, r = e, s = q(() => a[r.variant]);
|
|
1936
|
+
return (o, u) => (l(), i("div", {
|
|
1920
1937
|
class: p([
|
|
1921
1938
|
"promo__wrapper",
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1939
|
+
s.value,
|
|
1940
|
+
o.teaser ? "promo__wrapper--teaser" : "",
|
|
1941
|
+
o.multiply ? "promo__wrapper--multiply" : ""
|
|
1925
1942
|
])
|
|
1926
1943
|
}, [
|
|
1927
|
-
t("div",
|
|
1928
|
-
|
|
1944
|
+
t("div", Ws, [
|
|
1945
|
+
o.mediaType === "image" ? (l(), i("div", {
|
|
1929
1946
|
key: 0,
|
|
1930
1947
|
class: p([
|
|
1931
1948
|
"promo__image",
|
|
1932
|
-
|
|
1949
|
+
o.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1933
1950
|
])
|
|
1934
1951
|
}, [
|
|
1935
1952
|
S(F, null, {
|
|
1936
1953
|
default: y(() => [
|
|
1937
|
-
c(
|
|
1954
|
+
c(o.$slots, "promo-image", O(z({ src: o.src, width: 1920, alt: o.alt, height: 1080 })))
|
|
1938
1955
|
]),
|
|
1939
1956
|
_: 3
|
|
1940
1957
|
})
|
|
1941
|
-
], 2)) :
|
|
1942
|
-
|
|
1958
|
+
], 2)) : _("", !0),
|
|
1959
|
+
o.mediaType === "video" ? (l(), i("div", {
|
|
1943
1960
|
key: 1,
|
|
1944
1961
|
class: p([
|
|
1945
1962
|
"promo__video",
|
|
1946
|
-
|
|
1963
|
+
o.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1947
1964
|
])
|
|
1948
1965
|
}, [
|
|
1949
1966
|
S(te, {
|
|
1950
|
-
src:
|
|
1967
|
+
src: o.src,
|
|
1951
1968
|
"local-video": "",
|
|
1952
|
-
"aria-label":
|
|
1969
|
+
"aria-label": o.alt,
|
|
1953
1970
|
controls: !1,
|
|
1954
1971
|
autoplay: "",
|
|
1955
1972
|
loop: "",
|
|
1956
1973
|
muted: "",
|
|
1957
1974
|
play: "",
|
|
1958
|
-
poster:
|
|
1975
|
+
poster: o.fallbackImage
|
|
1959
1976
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1960
|
-
], 2)) :
|
|
1977
|
+
], 2)) : _("", !0),
|
|
1961
1978
|
t("div", {
|
|
1962
1979
|
class: p([
|
|
1963
1980
|
"promo__text",
|
|
1964
|
-
|
|
1981
|
+
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1965
1982
|
])
|
|
1966
1983
|
}, [
|
|
1967
|
-
|
|
1984
|
+
o.label ? (l(), L(X, {
|
|
1968
1985
|
key: 0,
|
|
1969
|
-
text:
|
|
1970
|
-
"label-dark":
|
|
1971
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
1986
|
+
text: o.label,
|
|
1987
|
+
"label-dark": o.variant === "dark"
|
|
1988
|
+
}, null, 8, ["text", "label-dark"])) : _("", !0),
|
|
1972
1989
|
t("div", {
|
|
1973
1990
|
class: p([
|
|
1974
1991
|
"promo__title",
|
|
1975
|
-
|
|
1992
|
+
o.variant === "dark" ? "promo__title--dark" : ""
|
|
1976
1993
|
])
|
|
1977
1994
|
}, [
|
|
1978
|
-
c(
|
|
1995
|
+
c(o.$slots, "promo-headline")
|
|
1979
1996
|
], 2),
|
|
1980
|
-
|
|
1997
|
+
o.linkType === "link" ? (l(), L(P, {
|
|
1981
1998
|
key: 1,
|
|
1982
|
-
"link-type":
|
|
1999
|
+
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
1983
2000
|
arrow: ""
|
|
1984
2001
|
}, {
|
|
1985
2002
|
default: y(() => [
|
|
1986
|
-
c(
|
|
2003
|
+
c(o.$slots, "promo-link")
|
|
1987
2004
|
]),
|
|
1988
2005
|
_: 3
|
|
1989
|
-
}, 8, ["link-type"])) :
|
|
1990
|
-
|
|
2006
|
+
}, 8, ["link-type"])) : _("", !0),
|
|
2007
|
+
o.linkType === "button" ? (l(), L(P, {
|
|
1991
2008
|
key: 2,
|
|
1992
|
-
"link-type":
|
|
2009
|
+
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
1993
2010
|
}, {
|
|
1994
2011
|
default: y(() => [
|
|
1995
|
-
c(
|
|
2012
|
+
c(o.$slots, "promo-link")
|
|
1996
2013
|
]),
|
|
1997
2014
|
_: 3
|
|
1998
|
-
}, 8, ["link-type"])) :
|
|
2015
|
+
}, 8, ["link-type"])) : _("", !0)
|
|
1999
2016
|
], 2)
|
|
2000
2017
|
])
|
|
2001
2018
|
], 2));
|
|
2002
2019
|
}
|
|
2003
|
-
}),
|
|
2020
|
+
}), Qs = /* @__PURE__ */ v(Ys, [["__scopeId", "data-v-df54d965"]]), Zs = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), Xs = { class: "quote__wrapper" }, xs = { class: "quote__content" }, el = /* @__PURE__ */ Zs(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), tl = { class: "quote__quote" }, al = { class: "quote__quote-text" }, ol = { class: "quote__author" }, sl = {
|
|
2004
2021
|
key: 0,
|
|
2005
2022
|
class: "quote__image"
|
|
2006
|
-
},
|
|
2023
|
+
}, ll = { class: "quote__text" }, il = { class: "quote__author-name" }, rl = { class: "quote__author-title" }, nl = /* @__PURE__ */ g({
|
|
2007
2024
|
__name: "quote",
|
|
2008
2025
|
props: {
|
|
2009
2026
|
quote: {
|
|
@@ -2025,13 +2042,13 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2025
2042
|
}
|
|
2026
2043
|
},
|
|
2027
2044
|
setup(e) {
|
|
2028
|
-
return (a, r) => (l(), i("div",
|
|
2029
|
-
t("div",
|
|
2030
|
-
|
|
2031
|
-
t("div",
|
|
2032
|
-
t("p",
|
|
2033
|
-
t("div",
|
|
2034
|
-
e.authorImage ? (l(), i("div",
|
|
2045
|
+
return (a, r) => (l(), i("div", Xs, [
|
|
2046
|
+
t("div", xs, [
|
|
2047
|
+
el,
|
|
2048
|
+
t("div", tl, [
|
|
2049
|
+
t("p", al, d(e.quote), 1),
|
|
2050
|
+
t("div", ol, [
|
|
2051
|
+
e.authorImage ? (l(), i("div", sl, [
|
|
2035
2052
|
S(F, null, {
|
|
2036
2053
|
default: y(() => [
|
|
2037
2054
|
c(a.$slots, "author-image", O(z({
|
|
@@ -2042,23 +2059,23 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2042
2059
|
]),
|
|
2043
2060
|
_: 3
|
|
2044
2061
|
})
|
|
2045
|
-
])) :
|
|
2046
|
-
t("div",
|
|
2047
|
-
t("p",
|
|
2048
|
-
t("p",
|
|
2062
|
+
])) : _("", !0),
|
|
2063
|
+
t("div", ll, [
|
|
2064
|
+
t("p", il, d(e.author), 1),
|
|
2065
|
+
t("p", rl, d(e.authorTitle), 1)
|
|
2049
2066
|
])
|
|
2050
2067
|
])
|
|
2051
2068
|
])
|
|
2052
2069
|
])
|
|
2053
2070
|
]));
|
|
2054
2071
|
}
|
|
2055
|
-
}),
|
|
2072
|
+
}), dl = /* @__PURE__ */ v(nl, [["__scopeId", "data-v-e3cc8e27"]]), cl = { class: "rich-text__wrapper" }, ul = {
|
|
2056
2073
|
key: 0,
|
|
2057
2074
|
class: "rich-text__links"
|
|
2058
|
-
},
|
|
2075
|
+
}, _l = {
|
|
2059
2076
|
key: 0,
|
|
2060
2077
|
class: "rich-text__bullet-list"
|
|
2061
|
-
},
|
|
2078
|
+
}, hl = /* @__PURE__ */ g({
|
|
2062
2079
|
__name: "rich-text",
|
|
2063
2080
|
props: {
|
|
2064
2081
|
headline: { default: "" },
|
|
@@ -2077,19 +2094,19 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2077
2094
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
2078
2095
|
])
|
|
2079
2096
|
}, [
|
|
2080
|
-
t("div",
|
|
2097
|
+
t("div", cl, [
|
|
2081
2098
|
a.label ? (l(), L(X, {
|
|
2082
2099
|
key: 0,
|
|
2083
2100
|
text: a.label,
|
|
2084
2101
|
"label-dark": !1
|
|
2085
|
-
}, null, 8, ["text"])) :
|
|
2102
|
+
}, null, 8, ["text"])) : _("", !0),
|
|
2086
2103
|
a.headline ? (l(), i("h2", {
|
|
2087
2104
|
key: 1,
|
|
2088
2105
|
class: p([
|
|
2089
2106
|
"rich-text__headline",
|
|
2090
2107
|
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
2091
2108
|
])
|
|
2092
|
-
}, d(a.headline), 3)) :
|
|
2109
|
+
}, d(a.headline), 3)) : _("", !0),
|
|
2093
2110
|
t("div", {
|
|
2094
2111
|
class: p([
|
|
2095
2112
|
"rich-text__content",
|
|
@@ -2103,13 +2120,13 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2103
2120
|
])
|
|
2104
2121
|
}, [
|
|
2105
2122
|
c(a.$slots, "rich-text-content"),
|
|
2106
|
-
a.links ? (l(), i("div",
|
|
2123
|
+
a.links ? (l(), i("div", ul, [
|
|
2107
2124
|
c(a.$slots, "rich-text-links")
|
|
2108
|
-
])) :
|
|
2125
|
+
])) : _("", !0)
|
|
2109
2126
|
], 2),
|
|
2110
|
-
a.bulletList ? (l(), i("div",
|
|
2127
|
+
a.bulletList ? (l(), i("div", _l, [
|
|
2111
2128
|
c(a.$slots, "rich-text-bullet-list")
|
|
2112
|
-
])) :
|
|
2129
|
+
])) : _("", !0),
|
|
2113
2130
|
a.image ? (l(), i("div", {
|
|
2114
2131
|
key: 1,
|
|
2115
2132
|
class: p([
|
|
@@ -2123,17 +2140,17 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2123
2140
|
]),
|
|
2124
2141
|
_: 3
|
|
2125
2142
|
})
|
|
2126
|
-
], 2)) :
|
|
2143
|
+
], 2)) : _("", !0)
|
|
2127
2144
|
], 2)
|
|
2128
2145
|
])
|
|
2129
2146
|
], 2));
|
|
2130
2147
|
}
|
|
2131
|
-
}),
|
|
2132
|
-
function
|
|
2133
|
-
return l(), i("div",
|
|
2134
|
-
t("div",
|
|
2135
|
-
t("div",
|
|
2136
|
-
t("div",
|
|
2148
|
+
}), pl = /* @__PURE__ */ v(hl, [["__scopeId", "data-v-db485b9d"]]), ml = {}, fl = { class: "rich-text" }, vl = { class: "rich-text__wrapper" }, gl = { class: "rich-text__content rich-text__content--left-aligned" }, bl = { class: "rich-text__body" };
|
|
2149
|
+
function yl(e, a) {
|
|
2150
|
+
return l(), i("div", fl, [
|
|
2151
|
+
t("div", vl, [
|
|
2152
|
+
t("div", gl, [
|
|
2153
|
+
t("div", bl, [
|
|
2137
2154
|
t("div", null, [
|
|
2138
2155
|
c(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
2139
2156
|
]),
|
|
@@ -2145,10 +2162,10 @@ function kl(e, a) {
|
|
|
2145
2162
|
])
|
|
2146
2163
|
]);
|
|
2147
2164
|
}
|
|
2148
|
-
const
|
|
2165
|
+
const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2"]]), $l = (e) => (H("data-v-798e7a06"), e = e(), R(), e), wl = { class: "timeline__wrapper" }, Bl = { class: "timeline__content" }, Sl = { class: "timeline__items" }, Il = { class: "item__left" }, Cl = /* @__PURE__ */ $l(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2149
2166
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2150
2167
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2151
|
-
], -1)),
|
|
2168
|
+
], -1)), ql = { class: "item__right" }, Al = ["innerHTML"], Ll = /* @__PURE__ */ g({
|
|
2152
2169
|
__name: "timeline",
|
|
2153
2170
|
props: {
|
|
2154
2171
|
timelineItems: {
|
|
@@ -2159,55 +2176,55 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2159
2176
|
setup(e) {
|
|
2160
2177
|
return me(() => {
|
|
2161
2178
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
2162
|
-
(
|
|
2163
|
-
|
|
2164
|
-
|
|
2179
|
+
(s) => {
|
|
2180
|
+
s.forEach((o) => {
|
|
2181
|
+
o.isIntersecting && (o.target.classList.add("visible"), o.target.classList.remove("faded"), r.unobserve(o.target));
|
|
2165
2182
|
});
|
|
2166
2183
|
},
|
|
2167
2184
|
{
|
|
2168
2185
|
threshold: 1
|
|
2169
2186
|
}
|
|
2170
2187
|
);
|
|
2171
|
-
a.forEach((
|
|
2172
|
-
r.observe(
|
|
2188
|
+
a.forEach((s) => {
|
|
2189
|
+
r.observe(s);
|
|
2173
2190
|
});
|
|
2174
|
-
}), (a, r) => (l(), i("div",
|
|
2175
|
-
t("div",
|
|
2176
|
-
t("div",
|
|
2177
|
-
(l(!0), i(
|
|
2178
|
-
key:
|
|
2191
|
+
}), (a, r) => (l(), i("div", wl, [
|
|
2192
|
+
t("div", Bl, [
|
|
2193
|
+
t("div", Sl, [
|
|
2194
|
+
(l(!0), i(D, null, V(e.timelineItems, (s) => (l(), i("div", {
|
|
2195
|
+
key: s.year,
|
|
2179
2196
|
class: "timeline__item faded"
|
|
2180
2197
|
}, [
|
|
2181
|
-
t("div",
|
|
2182
|
-
|
|
2183
|
-
t("div",
|
|
2198
|
+
t("div", Il, d(s.year), 1),
|
|
2199
|
+
Cl,
|
|
2200
|
+
t("div", ql, [
|
|
2184
2201
|
S(F, null, {
|
|
2185
2202
|
default: y(() => [
|
|
2186
|
-
|
|
2203
|
+
s.media.src ? c(a.$slots, "timeline-image", M({
|
|
2187
2204
|
key: 0,
|
|
2188
2205
|
ref_for: !0
|
|
2189
|
-
}, { src:
|
|
2206
|
+
}, { src: s.media.src, alt: s.media.alt }), void 0, !0) : _("", !0)
|
|
2190
2207
|
]),
|
|
2191
2208
|
_: 2
|
|
2192
2209
|
}, 1024),
|
|
2193
2210
|
t("div", {
|
|
2194
|
-
style: ee([
|
|
2211
|
+
style: ee([s.media.src ? "" : "margin-top: 0px"]),
|
|
2195
2212
|
class: "rich-text",
|
|
2196
|
-
innerHTML:
|
|
2197
|
-
}, null, 12,
|
|
2213
|
+
innerHTML: s.text
|
|
2214
|
+
}, null, 12, Al)
|
|
2198
2215
|
])
|
|
2199
2216
|
]))), 128))
|
|
2200
2217
|
])
|
|
2201
2218
|
])
|
|
2202
2219
|
]));
|
|
2203
2220
|
}
|
|
2204
|
-
}), Tl = /* @__PURE__ */ v(
|
|
2221
|
+
}), Tl = /* @__PURE__ */ v(Ll, [["__scopeId", "data-v-798e7a06"]]), Dl = { class: "vimeo" }, Vl = { class: "vimeo__wrapper" }, Pl = {
|
|
2205
2222
|
key: 0,
|
|
2206
2223
|
class: "vimeo__headline"
|
|
2207
|
-
},
|
|
2224
|
+
}, Fl = {
|
|
2208
2225
|
key: 1,
|
|
2209
2226
|
class: "vimeo__description"
|
|
2210
|
-
},
|
|
2227
|
+
}, Ml = /* @__PURE__ */ g({
|
|
2211
2228
|
__name: "vimeo",
|
|
2212
2229
|
props: {
|
|
2213
2230
|
headline: {
|
|
@@ -2220,18 +2237,18 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2220
2237
|
}
|
|
2221
2238
|
},
|
|
2222
2239
|
setup(e) {
|
|
2223
|
-
return (a, r) => (l(), i("div",
|
|
2224
|
-
t("div",
|
|
2225
|
-
e.headline ? (l(), i("h2",
|
|
2240
|
+
return (a, r) => (l(), i("div", Dl, [
|
|
2241
|
+
t("div", Vl, [
|
|
2242
|
+
e.headline ? (l(), i("h2", Pl, d(e.headline), 1)) : _("", !0),
|
|
2226
2243
|
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2227
|
-
e.description ? (l(), i("p",
|
|
2244
|
+
e.description ? (l(), i("p", Fl, d(e.description), 1)) : _("", !0)
|
|
2228
2245
|
])
|
|
2229
2246
|
]));
|
|
2230
2247
|
}
|
|
2231
|
-
}),
|
|
2248
|
+
}), Ol = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-90a2b109"]]), zl = { class: "academy-overview" }, Hl = { class: "academy-overview__content-wrapper" }, Rl = { class: "academy-overview__content" }, Nl = { class: "academy-overview__title" }, El = { class: "academy-overview__description" }, jl = { class: "academy-overview__button-wrapper" }, Kl = {
|
|
2232
2249
|
key: 0,
|
|
2233
2250
|
class: "academy-overview__stats"
|
|
2234
|
-
},
|
|
2251
|
+
}, Ul = { class: "academy-overview__stats-row" }, Gl = { class: "academy-overview__stat" }, Jl = { class: "academy-overview__value" }, Wl = { class: "academy-overview__label" }, Yl = { class: "academy-overview__stat" }, Ql = { class: "academy-overview__value" }, Zl = { class: "academy-overview__label" }, Xl = /* @__PURE__ */ g({
|
|
2235
2252
|
__name: "frontpage-hero",
|
|
2236
2253
|
props: {
|
|
2237
2254
|
hero: { default: () => ({
|
|
@@ -2245,33 +2262,33 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2245
2262
|
}) }
|
|
2246
2263
|
},
|
|
2247
2264
|
setup(e) {
|
|
2248
|
-
return (a, r) => (l(), i("div",
|
|
2249
|
-
t("div",
|
|
2250
|
-
t("div",
|
|
2265
|
+
return (a, r) => (l(), i("div", zl, [
|
|
2266
|
+
t("div", Hl, [
|
|
2267
|
+
t("div", Rl, [
|
|
2251
2268
|
t("div", null, [
|
|
2252
|
-
t("h1",
|
|
2253
|
-
t("p",
|
|
2254
|
-
t("div",
|
|
2269
|
+
t("h1", Nl, d(a.hero.headline), 1),
|
|
2270
|
+
t("p", El, d(a.hero.description), 1),
|
|
2271
|
+
t("div", jl, [
|
|
2255
2272
|
c(a.$slots, "button", {}, void 0, !0)
|
|
2256
2273
|
])
|
|
2257
2274
|
]),
|
|
2258
|
-
a.hero.showStats ? (l(), i("div",
|
|
2259
|
-
t("div",
|
|
2260
|
-
t("div",
|
|
2261
|
-
t("div",
|
|
2262
|
-
t("div",
|
|
2275
|
+
a.hero.showStats ? (l(), i("div", Kl, [
|
|
2276
|
+
t("div", Ul, [
|
|
2277
|
+
t("div", Gl, [
|
|
2278
|
+
t("div", Jl, d(a.hero.lessonValue), 1),
|
|
2279
|
+
t("div", Wl, d(a.hero.lessonLabel), 1)
|
|
2263
2280
|
]),
|
|
2264
|
-
t("div",
|
|
2265
|
-
t("div",
|
|
2266
|
-
t("div",
|
|
2281
|
+
t("div", Yl, [
|
|
2282
|
+
t("div", Ql, d(a.hero.pointsValue), 1),
|
|
2283
|
+
t("div", Zl, d(a.hero.pointsLabel), 1)
|
|
2267
2284
|
])
|
|
2268
2285
|
])
|
|
2269
|
-
])) :
|
|
2286
|
+
])) : _("", !0)
|
|
2270
2287
|
])
|
|
2271
2288
|
])
|
|
2272
2289
|
]));
|
|
2273
2290
|
}
|
|
2274
|
-
}),
|
|
2291
|
+
}), xl = /* @__PURE__ */ v(Xl, [["__scopeId", "data-v-1594f3e8"]]), ei = { class: "not-found__wrapper" }, ti = { class: "not-found__content" }, ai = { class: "not-found__headline" }, oi = { class: "not-found__body" }, si = /* @__PURE__ */ g({
|
|
2275
2292
|
__name: "404",
|
|
2276
2293
|
props: {
|
|
2277
2294
|
headline: {
|
|
@@ -2280,16 +2297,16 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2280
2297
|
}
|
|
2281
2298
|
},
|
|
2282
2299
|
setup(e) {
|
|
2283
|
-
return (a, r) => (l(), i("div",
|
|
2284
|
-
t("div",
|
|
2285
|
-
t("h1",
|
|
2286
|
-
t("div",
|
|
2300
|
+
return (a, r) => (l(), i("div", ei, [
|
|
2301
|
+
t("div", ti, [
|
|
2302
|
+
t("h1", ai, d(e.headline), 1),
|
|
2303
|
+
t("div", oi, [
|
|
2287
2304
|
c(a.$slots, "not-found-body", {}, void 0, !0)
|
|
2288
2305
|
])
|
|
2289
2306
|
])
|
|
2290
2307
|
]));
|
|
2291
2308
|
}
|
|
2292
|
-
}),
|
|
2309
|
+
}), li = /* @__PURE__ */ v(si, [["__scopeId", "data-v-b829ca6c"]]), ii = { class: "filter__wrapper" }, ri = { class: "filter__content" }, ni = { class: "filter__dropdowns" }, di = { class: "filter__chips" }, ci = /* @__PURE__ */ g({
|
|
2293
2310
|
__name: "filter",
|
|
2294
2311
|
props: {
|
|
2295
2312
|
hasChips: {
|
|
@@ -2303,51 +2320,51 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2303
2320
|
},
|
|
2304
2321
|
emits: ["clearFilters"],
|
|
2305
2322
|
setup(e) {
|
|
2306
|
-
return (a, r) => (l(), i("div",
|
|
2307
|
-
t("div",
|
|
2308
|
-
t("div",
|
|
2323
|
+
return (a, r) => (l(), i("div", ii, [
|
|
2324
|
+
t("div", ri, [
|
|
2325
|
+
t("div", ni, [
|
|
2309
2326
|
c(a.$slots, "filter-dropdowns")
|
|
2310
2327
|
]),
|
|
2311
|
-
t("div",
|
|
2328
|
+
t("div", di, [
|
|
2312
2329
|
c(a.$slots, "filter-chips"),
|
|
2313
2330
|
e.hasChips ? (l(), i("button", {
|
|
2314
2331
|
key: 0,
|
|
2315
2332
|
class: "filter__clear",
|
|
2316
|
-
onClick: r[0] || (r[0] = (
|
|
2317
|
-
}, d(e.removeAll), 1)) :
|
|
2333
|
+
onClick: r[0] || (r[0] = (s) => a.$emit("clearFilters"))
|
|
2334
|
+
}, d(e.removeAll), 1)) : _("", !0)
|
|
2318
2335
|
])
|
|
2319
2336
|
])
|
|
2320
2337
|
]));
|
|
2321
2338
|
}
|
|
2322
|
-
}),
|
|
2339
|
+
}), ui = /* @__PURE__ */ v(ci, [["__scopeId", "data-v-b2ccb954"]]), ye = (e) => (H("data-v-e1f05c51"), e = e(), R(), e), _i = { class: "footer__wrapper" }, hi = { class: "footer__content" }, pi = {
|
|
2323
2340
|
key: 0,
|
|
2324
2341
|
src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
|
|
2325
2342
|
style: { margin: "0 auto" }
|
|
2326
|
-
},
|
|
2343
|
+
}, mi = { class: "footer__sections" }, fi = { class: "section__title" }, vi = { class: "section__list" }, gi = { class: "section" }, bi = {
|
|
2327
2344
|
key: 0,
|
|
2328
2345
|
class: "section__title"
|
|
2329
|
-
},
|
|
2346
|
+
}, yi = {
|
|
2330
2347
|
key: 1,
|
|
2331
2348
|
class: "section__title"
|
|
2332
|
-
},
|
|
2349
|
+
}, ki = { key: 0 }, $i = { key: 1 }, wi = { key: 2 }, Bi = { key: 3 }, Si = { key: 4 }, Ii = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("br", null, null, -1)), Ci = {
|
|
2333
2350
|
key: 0,
|
|
2334
2351
|
href: "mailto:china@mir-robots.com"
|
|
2335
|
-
},
|
|
2352
|
+
}, qi = {
|
|
2336
2353
|
key: 1,
|
|
2337
2354
|
href: "mailto:mail@mir-robots.com"
|
|
2338
|
-
},
|
|
2355
|
+
}, Ai = {
|
|
2339
2356
|
key: 0,
|
|
2340
2357
|
href: "tel:+8613661856951"
|
|
2341
|
-
},
|
|
2358
|
+
}, Li = {
|
|
2342
2359
|
key: 1,
|
|
2343
2360
|
href: "tel:+4520377577"
|
|
2344
|
-
}, Ti = { class: "footer__bottom" },
|
|
2361
|
+
}, Ti = { class: "footer__bottom" }, Di = { class: "copyright" }, Vi = { class: "footer__policy" }, Pi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), Fi = {
|
|
2345
2362
|
key: 0,
|
|
2346
2363
|
class: "footer__social"
|
|
2347
|
-
},
|
|
2364
|
+
}, Mi = ["href", "aria-label"], Oi = {
|
|
2348
2365
|
key: 1,
|
|
2349
2366
|
class: "footer__social"
|
|
2350
|
-
},
|
|
2367
|
+
}, zi = ["href", "aria-label"], Hi = /* @__PURE__ */ g({
|
|
2351
2368
|
__name: "footer",
|
|
2352
2369
|
props: {
|
|
2353
2370
|
language: { default: "" },
|
|
@@ -2360,37 +2377,37 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2360
2377
|
},
|
|
2361
2378
|
emits: ["changeRegionClicked"],
|
|
2362
2379
|
setup(e) {
|
|
2363
|
-
return (a, r) => (l(), i("div",
|
|
2364
|
-
t("footer",
|
|
2365
|
-
a.language === "zh" ? (l(), i("img",
|
|
2366
|
-
t("div",
|
|
2367
|
-
(l(!0), i(
|
|
2368
|
-
key:
|
|
2380
|
+
return (a, r) => (l(), i("div", _i, [
|
|
2381
|
+
t("footer", hi, [
|
|
2382
|
+
a.language === "zh" ? (l(), i("img", pi)) : _("", !0),
|
|
2383
|
+
t("div", mi, [
|
|
2384
|
+
(l(!0), i(D, null, V(a.footerSections, (s) => (l(), i("div", {
|
|
2385
|
+
key: s.title,
|
|
2369
2386
|
class: "section"
|
|
2370
2387
|
}, [
|
|
2371
|
-
t("span",
|
|
2388
|
+
t("span", fi, d(s.title), 1),
|
|
2372
2389
|
t("nav", null, [
|
|
2373
|
-
t("ul",
|
|
2390
|
+
t("ul", vi, [
|
|
2374
2391
|
c(a.$slots, "section-links", {
|
|
2375
|
-
links:
|
|
2392
|
+
links: s.links
|
|
2376
2393
|
})
|
|
2377
2394
|
])
|
|
2378
2395
|
])
|
|
2379
2396
|
]))), 128)),
|
|
2380
|
-
t("div",
|
|
2381
|
-
a.language === "zh" ? (l(), i("span",
|
|
2397
|
+
t("div", gi, [
|
|
2398
|
+
a.language === "zh" ? (l(), i("span", bi, "名傲移动机器人(上海)有限公司")) : (l(), i("span", yi, "Mobile Industrial Robots A/S")),
|
|
2382
2399
|
t("address", null, [
|
|
2383
|
-
a.language === "zh" ? (l(), i("span",
|
|
2384
|
-
a.language === "zh" ? (l(), i("span",
|
|
2385
|
-
a.language !== "zh" ? (l(), i("span",
|
|
2386
|
-
|
|
2400
|
+
a.language === "zh" ? (l(), i("span", ki, "上海浦东新区金桥出口加工区")) : (l(), i("span", $i, "Energivej 51")),
|
|
2401
|
+
a.language === "zh" ? (l(), i("span", wi, "桂桥路1201号10栋2楼")) : (l(), i("span", Bi, "5260 Odense S")),
|
|
2402
|
+
a.language !== "zh" ? (l(), i("span", Si, "CVR: 35251235")) : _("", !0),
|
|
2403
|
+
Ii,
|
|
2387
2404
|
S(P, {
|
|
2388
2405
|
class: "footer__contact",
|
|
2389
2406
|
"link-type": "regular_light",
|
|
2390
2407
|
underline: "false"
|
|
2391
2408
|
}, {
|
|
2392
2409
|
default: y(() => [
|
|
2393
|
-
a.language === "zh" ? (l(), i("a",
|
|
2410
|
+
a.language === "zh" ? (l(), i("a", Ci, "china@mir-robots.com")) : (l(), i("a", qi, "mail@mir-robots.com"))
|
|
2394
2411
|
]),
|
|
2395
2412
|
_: 1
|
|
2396
2413
|
}),
|
|
@@ -2400,7 +2417,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2400
2417
|
underline: "false"
|
|
2401
2418
|
}, {
|
|
2402
2419
|
default: y(() => [
|
|
2403
|
-
a.language === "zh" ? (l(), i("a",
|
|
2420
|
+
a.language === "zh" ? (l(), i("a", Ai, "+86 13661856951(微信同号)")) : (l(), i("a", Li, "+45 20 377 577"))
|
|
2404
2421
|
]),
|
|
2405
2422
|
_: 1
|
|
2406
2423
|
})
|
|
@@ -2408,59 +2425,59 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2408
2425
|
])
|
|
2409
2426
|
]),
|
|
2410
2427
|
t("div", Ti, [
|
|
2411
|
-
t("p",
|
|
2412
|
-
t("div",
|
|
2428
|
+
t("p", Di, " © Mobile Industrial Robots " + d((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2429
|
+
t("div", Vi, [
|
|
2413
2430
|
t("button", {
|
|
2414
2431
|
class: "footer__language-switcher",
|
|
2415
|
-
onClick: r[0] || (r[0] = (
|
|
2432
|
+
onClick: r[0] || (r[0] = (s) => a.$emit("changeRegionClicked"))
|
|
2416
2433
|
}, [
|
|
2417
2434
|
t("span", null, [
|
|
2418
|
-
|
|
2435
|
+
Pi,
|
|
2419
2436
|
J(d(a.changeRegion), 1)
|
|
2420
2437
|
])
|
|
2421
2438
|
]),
|
|
2422
2439
|
c(a.$slots, "footer-privacy-link"),
|
|
2423
2440
|
c(a.$slots, "footer-cookie-link")
|
|
2424
2441
|
]),
|
|
2425
|
-
a.language !== "zh" ? (l(), i("div",
|
|
2426
|
-
(l(!0), i(
|
|
2427
|
-
key:
|
|
2442
|
+
a.language !== "zh" ? (l(), i("div", Fi, [
|
|
2443
|
+
(l(!0), i(D, null, V(a.socialMedia, (s) => (l(), L(P, {
|
|
2444
|
+
key: s.title,
|
|
2428
2445
|
underline: "false",
|
|
2429
2446
|
"link-type": "regular"
|
|
2430
2447
|
}, {
|
|
2431
2448
|
default: y(() => [
|
|
2432
2449
|
t("a", {
|
|
2433
|
-
href:
|
|
2450
|
+
href: s.url,
|
|
2434
2451
|
target: "_blank",
|
|
2435
|
-
"aria-label":
|
|
2452
|
+
"aria-label": s.title
|
|
2436
2453
|
}, [
|
|
2437
2454
|
t("i", {
|
|
2438
2455
|
width: "19",
|
|
2439
2456
|
height: "14",
|
|
2440
|
-
class: p(["footer__social--icon", [
|
|
2457
|
+
class: p(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
2441
2458
|
}, null, 2)
|
|
2442
|
-
], 8,
|
|
2459
|
+
], 8, Mi)
|
|
2443
2460
|
]),
|
|
2444
2461
|
_: 2
|
|
2445
2462
|
}, 1024))), 128))
|
|
2446
|
-
])) : (l(), i("div",
|
|
2447
|
-
(l(!0), i(
|
|
2448
|
-
key:
|
|
2463
|
+
])) : (l(), i("div", Oi, [
|
|
2464
|
+
(l(!0), i(D, null, V(a.socialMediaChina, (s) => (l(), L(P, {
|
|
2465
|
+
key: s.title,
|
|
2449
2466
|
underline: "false",
|
|
2450
2467
|
"link-type": "regular"
|
|
2451
2468
|
}, {
|
|
2452
2469
|
default: y(() => [
|
|
2453
2470
|
t("a", {
|
|
2454
|
-
href:
|
|
2471
|
+
href: s.url,
|
|
2455
2472
|
target: "_blank",
|
|
2456
|
-
"aria-label":
|
|
2473
|
+
"aria-label": s.title
|
|
2457
2474
|
}, [
|
|
2458
2475
|
t("i", {
|
|
2459
2476
|
width: "19",
|
|
2460
2477
|
height: "14",
|
|
2461
|
-
class: p(["footer__social--icon", [
|
|
2478
|
+
class: p(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
2462
2479
|
}, null, 2)
|
|
2463
|
-
], 8,
|
|
2480
|
+
], 8, zi)
|
|
2464
2481
|
]),
|
|
2465
2482
|
_: 2
|
|
2466
2483
|
}, 1024))), 128))
|
|
@@ -2469,51 +2486,51 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2469
2486
|
])
|
|
2470
2487
|
]));
|
|
2471
2488
|
}
|
|
2472
|
-
}),
|
|
2489
|
+
}), Ri = /* @__PURE__ */ v(Hi, [["__scopeId", "data-v-e1f05c51"]]), ke = (e) => (H("data-v-ac9974bb"), e = e(), R(), e), Ni = { class: "header__wrapper" }, Ei = { class: "nav-wrapper" }, ji = { class: "mir-link-logo" }, Ki = { class: "main-nav-items" }, Ui = {
|
|
2473
2490
|
key: 0,
|
|
2474
2491
|
id: "menu-dropdown",
|
|
2475
2492
|
ref: "dropdownDiv"
|
|
2476
|
-
},
|
|
2493
|
+
}, Gi = {
|
|
2477
2494
|
key: 0,
|
|
2478
2495
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2479
2496
|
alt: "dropdownarrow"
|
|
2480
|
-
},
|
|
2497
|
+
}, Ji = {
|
|
2481
2498
|
key: 1,
|
|
2482
2499
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2483
2500
|
alt: "dropdownarrow",
|
|
2484
2501
|
style: { transform: "rotate(180deg)" }
|
|
2485
|
-
},
|
|
2502
|
+
}, Wi = { class: "dropdown-content" }, Yi = {
|
|
2486
2503
|
key: 1,
|
|
2487
2504
|
class: "nav-search-wrapper"
|
|
2488
|
-
},
|
|
2505
|
+
}, Qi = ["src"], Zi = {
|
|
2489
2506
|
key: 2,
|
|
2490
2507
|
id: "menu-portal-switcher",
|
|
2491
2508
|
class: "portal-switcher-wrapper"
|
|
2492
|
-
},
|
|
2509
|
+
}, Xi = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2493
2510
|
src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
|
|
2494
2511
|
alt: "portalswitchericon",
|
|
2495
2512
|
width: "20",
|
|
2496
2513
|
height: "20"
|
|
2497
|
-
}, null, -1)),
|
|
2498
|
-
|
|
2499
|
-
],
|
|
2514
|
+
}, null, -1)), xi = [
|
|
2515
|
+
Xi
|
|
2516
|
+
], er = { class: "portal-switcher-content" }, tr = { class: "portal-switcher-links" }, ar = ["href"], or = ["src"], sr = {
|
|
2500
2517
|
key: 3,
|
|
2501
2518
|
id: "menu-profile-dropdown",
|
|
2502
2519
|
class: "profile-dropdown-wrapper"
|
|
2503
|
-
},
|
|
2520
|
+
}, lr = {
|
|
2504
2521
|
key: 0,
|
|
2505
2522
|
class: "profile-dropdown-sign-in"
|
|
2506
|
-
},
|
|
2523
|
+
}, ir = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2507
2524
|
src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
|
|
2508
2525
|
alt: "profiledropdownicon",
|
|
2509
2526
|
width: "20",
|
|
2510
2527
|
height: "20"
|
|
2511
|
-
}, null, -1)),
|
|
2512
|
-
|
|
2513
|
-
],
|
|
2528
|
+
}, null, -1)), rr = [
|
|
2529
|
+
ir
|
|
2530
|
+
], nr = { class: "profile-dropdown-content" }, dr = { class: "mobile-logo-search-burger-wrapper" }, cr = { class: "mobile-mir-link-logo" }, ur = {
|
|
2514
2531
|
key: 0,
|
|
2515
2532
|
class: "mobile-search-wrapper"
|
|
2516
|
-
},
|
|
2533
|
+
}, _r = ["src"], hr = ["src"], pr = { class: "mobile-menu-content-wrapper" }, mr = { class: "mobile-dropdown-content" }, fr = /* @__PURE__ */ g({
|
|
2517
2534
|
__name: "header",
|
|
2518
2535
|
props: {
|
|
2519
2536
|
burgerState: {
|
|
@@ -2565,33 +2582,33 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2565
2582
|
"clickSearch"
|
|
2566
2583
|
],
|
|
2567
2584
|
setup(e, { expose: a, emit: r }) {
|
|
2568
|
-
let
|
|
2569
|
-
const
|
|
2570
|
-
let u = C(
|
|
2585
|
+
let s = null;
|
|
2586
|
+
const o = e;
|
|
2587
|
+
let u = C(o.burgerState), h = C(o.search), n = C(o.showDropDown), b = C(o.showPortalSwitcherDropDown), f = C(o.showProfileDropDown), k = C(o.isAuthenticated);
|
|
2571
2588
|
Q(
|
|
2572
|
-
() =>
|
|
2589
|
+
() => o.burgerState,
|
|
2573
2590
|
($) => u.value = $
|
|
2574
2591
|
), Q(
|
|
2575
|
-
() =>
|
|
2576
|
-
($) =>
|
|
2592
|
+
() => o.search,
|
|
2593
|
+
($) => h.value = $
|
|
2577
2594
|
), Q(
|
|
2578
|
-
() =>
|
|
2595
|
+
() => o.showDropDown,
|
|
2579
2596
|
($) => n.value = $
|
|
2580
2597
|
), Q(
|
|
2581
|
-
() =>
|
|
2598
|
+
() => o.showPortalSwitcherDropDown,
|
|
2582
2599
|
($) => b.value = $
|
|
2583
2600
|
), Q(
|
|
2584
|
-
() =>
|
|
2601
|
+
() => o.showProfileDropDown,
|
|
2585
2602
|
($) => f.value = $
|
|
2586
2603
|
), Q(
|
|
2587
|
-
() =>
|
|
2604
|
+
() => o.isAuthenticated,
|
|
2588
2605
|
($) => k.value = $
|
|
2589
2606
|
), me(() => {
|
|
2590
|
-
|
|
2607
|
+
s = ($) => {
|
|
2591
2608
|
$.target.closest("#menu-dropdown") || (n.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (f.value = !1);
|
|
2592
|
-
}, window.addEventListener("click",
|
|
2609
|
+
}, window.addEventListener("click", s);
|
|
2593
2610
|
}), Ae(() => {
|
|
2594
|
-
|
|
2611
|
+
s !== null && window.removeEventListener("click", s);
|
|
2595
2612
|
});
|
|
2596
2613
|
const w = r;
|
|
2597
2614
|
function ae() {
|
|
@@ -2612,30 +2629,30 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2612
2629
|
}
|
|
2613
2630
|
return a({
|
|
2614
2631
|
defocusSearchButton: ce
|
|
2615
|
-
}), ($, j) => (l(), i("div",
|
|
2632
|
+
}), ($, j) => (l(), i("div", Ni, [
|
|
2616
2633
|
t("nav", null, [
|
|
2617
|
-
t("div",
|
|
2618
|
-
t("div",
|
|
2634
|
+
t("div", Ei, [
|
|
2635
|
+
t("div", ji, [
|
|
2619
2636
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2620
2637
|
]),
|
|
2621
|
-
t("ul",
|
|
2638
|
+
t("ul", Ki, [
|
|
2622
2639
|
c($.$slots, "main-nav-items", {}, void 0, !0)
|
|
2623
2640
|
]),
|
|
2624
|
-
e.useDropdown ? (l(), i("div",
|
|
2641
|
+
e.useDropdown ? (l(), i("div", Ui, [
|
|
2625
2642
|
t("button", {
|
|
2626
2643
|
class: "nav-dropdown-btn",
|
|
2627
2644
|
onClick: ae
|
|
2628
2645
|
}, [
|
|
2629
2646
|
c($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2630
|
-
I(n) === !1 ? (l(), i("img",
|
|
2647
|
+
I(n) === !1 ? (l(), i("img", Gi)) : (l(), i("img", Ji))
|
|
2631
2648
|
]),
|
|
2632
|
-
U(t("div",
|
|
2649
|
+
U(t("div", Wi, [
|
|
2633
2650
|
c($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2634
2651
|
], 512), [
|
|
2635
2652
|
[Z, I(n)]
|
|
2636
2653
|
])
|
|
2637
|
-
], 512)) :
|
|
2638
|
-
I(
|
|
2654
|
+
], 512)) : _("", !0),
|
|
2655
|
+
I(h) ? (l(), i("div", Yi, [
|
|
2639
2656
|
t("button", {
|
|
2640
2657
|
ref_key: "navSearchButton",
|
|
2641
2658
|
ref: G,
|
|
@@ -2650,17 +2667,17 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2650
2667
|
alt: "search icon",
|
|
2651
2668
|
width: "20",
|
|
2652
2669
|
height: "20"
|
|
2653
|
-
}, null, 8,
|
|
2670
|
+
}, null, 8, Qi)
|
|
2654
2671
|
], 512)
|
|
2655
|
-
])) :
|
|
2656
|
-
e.usePortalSwitcher ? (l(), i("div",
|
|
2672
|
+
])) : _("", !0),
|
|
2673
|
+
e.usePortalSwitcher ? (l(), i("div", Zi, [
|
|
2657
2674
|
t("button", {
|
|
2658
2675
|
class: "nav-portal-switcher-btn",
|
|
2659
2676
|
onClick: re
|
|
2660
|
-
},
|
|
2661
|
-
U(t("div",
|
|
2662
|
-
t("ul",
|
|
2663
|
-
(l(!0), i(
|
|
2677
|
+
}, xi),
|
|
2678
|
+
U(t("div", er, [
|
|
2679
|
+
t("ul", tr, [
|
|
2680
|
+
(l(!0), i(D, null, V(e.portals, (K, E) => (l(), i("li", {
|
|
2664
2681
|
key: E,
|
|
2665
2682
|
class: "portal-switcher-link"
|
|
2666
2683
|
}, [
|
|
@@ -2672,9 +2689,9 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2672
2689
|
}, [
|
|
2673
2690
|
t("img", {
|
|
2674
2691
|
src: K.icon
|
|
2675
|
-
}, null, 8,
|
|
2692
|
+
}, null, 8, or),
|
|
2676
2693
|
t("div", null, d(K.name), 1)
|
|
2677
|
-
], 8,
|
|
2694
|
+
], 8, ar)
|
|
2678
2695
|
]),
|
|
2679
2696
|
_: 2
|
|
2680
2697
|
}, 1024)
|
|
@@ -2683,31 +2700,31 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2683
2700
|
], 512), [
|
|
2684
2701
|
[Z, I(b)]
|
|
2685
2702
|
])
|
|
2686
|
-
])) :
|
|
2687
|
-
e.useProfileDropdown ? (l(), i("div",
|
|
2688
|
-
I(k) ?
|
|
2703
|
+
])) : _("", !0),
|
|
2704
|
+
e.useProfileDropdown ? (l(), i("div", sr, [
|
|
2705
|
+
I(k) ? _("", !0) : (l(), i("div", lr, [
|
|
2689
2706
|
c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2690
2707
|
])),
|
|
2691
2708
|
I(k) ? (l(), i("button", {
|
|
2692
2709
|
key: 1,
|
|
2693
2710
|
class: "nav-profile-dropdown-btn",
|
|
2694
2711
|
onClick: ne
|
|
2695
|
-
},
|
|
2696
|
-
U(t("div",
|
|
2712
|
+
}, rr)) : _("", !0),
|
|
2713
|
+
U(t("div", nr, [
|
|
2697
2714
|
c($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2698
2715
|
], 512), [
|
|
2699
2716
|
[Z, I(f)]
|
|
2700
2717
|
])
|
|
2701
|
-
])) :
|
|
2718
|
+
])) : _("", !0)
|
|
2702
2719
|
]),
|
|
2703
2720
|
t("div", {
|
|
2704
2721
|
class: p(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2705
2722
|
}, [
|
|
2706
|
-
t("div",
|
|
2707
|
-
t("div",
|
|
2723
|
+
t("div", dr, [
|
|
2724
|
+
t("div", cr, [
|
|
2708
2725
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2709
2726
|
]),
|
|
2710
|
-
I(
|
|
2727
|
+
I(h) ? (l(), i("div", ur, [
|
|
2711
2728
|
t("button", {
|
|
2712
2729
|
ref_key: "mobileSearchButton",
|
|
2713
2730
|
ref: oe,
|
|
@@ -2723,9 +2740,9 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2723
2740
|
alt: "search icon",
|
|
2724
2741
|
width: "20",
|
|
2725
2742
|
height: "20"
|
|
2726
|
-
}, null, 8,
|
|
2743
|
+
}, null, 8, _r)
|
|
2727
2744
|
], 512)
|
|
2728
|
-
])) :
|
|
2745
|
+
])) : _("", !0),
|
|
2729
2746
|
t("button", {
|
|
2730
2747
|
class: "mobile-burger-wrapper",
|
|
2731
2748
|
"aria-label": "Toggle menu",
|
|
@@ -2736,14 +2753,14 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2736
2753
|
height: "20",
|
|
2737
2754
|
alt: "burger menu line icon",
|
|
2738
2755
|
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"
|
|
2739
|
-
}, null, 8,
|
|
2756
|
+
}, null, 8, hr)
|
|
2740
2757
|
])
|
|
2741
2758
|
]),
|
|
2742
|
-
U(t("div",
|
|
2759
|
+
U(t("div", pr, [
|
|
2743
2760
|
t("ul", null, [
|
|
2744
2761
|
c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2745
2762
|
]),
|
|
2746
|
-
t("ul",
|
|
2763
|
+
t("ul", mr, [
|
|
2747
2764
|
c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2748
2765
|
c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2749
2766
|
])
|
|
@@ -2754,7 +2771,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2754
2771
|
])
|
|
2755
2772
|
]));
|
|
2756
2773
|
}
|
|
2757
|
-
}),
|
|
2774
|
+
}), vr = /* @__PURE__ */ v(fr, [["__scopeId", "data-v-ac9974bb"]]), gr = { class: "language__wrapper" }, br = { class: "language__content" }, yr = { class: "language__headline" }, kr = { class: "language__paragraph" }, $r = { class: "language__links" }, wr = /* @__PURE__ */ g({
|
|
2758
2775
|
__name: "language-switcher",
|
|
2759
2776
|
props: {
|
|
2760
2777
|
headline: {
|
|
@@ -2767,17 +2784,17 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2767
2784
|
}
|
|
2768
2785
|
},
|
|
2769
2786
|
setup(e) {
|
|
2770
|
-
return (a, r) => (l(), i("div",
|
|
2771
|
-
t("div",
|
|
2772
|
-
t("h2",
|
|
2773
|
-
t("p",
|
|
2774
|
-
t("div",
|
|
2787
|
+
return (a, r) => (l(), i("div", gr, [
|
|
2788
|
+
t("div", br, [
|
|
2789
|
+
t("h2", yr, d(e.headline), 1),
|
|
2790
|
+
t("p", kr, d(e.paragraph), 1),
|
|
2791
|
+
t("div", $r, [
|
|
2775
2792
|
c(a.$slots, "language-links", {}, void 0, !0)
|
|
2776
2793
|
])
|
|
2777
2794
|
])
|
|
2778
2795
|
]));
|
|
2779
2796
|
}
|
|
2780
|
-
}),
|
|
2797
|
+
}), Br = /* @__PURE__ */ v(wr, [["__scopeId", "data-v-dc8cc97e"]]), Sr = { class: "pagination__wrapper" }, Ir = { class: "pagination__content" }, Cr = /* @__PURE__ */ g({
|
|
2781
2798
|
__name: "pagination",
|
|
2782
2799
|
props: {
|
|
2783
2800
|
isPreviousDisabled: {
|
|
@@ -2791,31 +2808,31 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2791
2808
|
},
|
|
2792
2809
|
emits: ["previous", "next"],
|
|
2793
2810
|
setup(e) {
|
|
2794
|
-
return (a, r) => (l(), i("div",
|
|
2795
|
-
t("div",
|
|
2811
|
+
return (a, r) => (l(), i("div", Sr, [
|
|
2812
|
+
t("div", Ir, [
|
|
2796
2813
|
S(le, {
|
|
2797
2814
|
disabled: e.isPreviousDisabled,
|
|
2798
2815
|
variant: "previous",
|
|
2799
2816
|
"aria-label": "previous",
|
|
2800
|
-
onClick: r[0] || (r[0] = (
|
|
2817
|
+
onClick: r[0] || (r[0] = (s) => a.$emit("previous"))
|
|
2801
2818
|
}, null, 8, ["disabled"]),
|
|
2802
2819
|
c(a.$slots, "pagination-numbers"),
|
|
2803
2820
|
S(le, {
|
|
2804
2821
|
disabled: e.isNextDisabled,
|
|
2805
2822
|
variant: "next",
|
|
2806
2823
|
"aria-label": "next",
|
|
2807
|
-
onClick: r[1] || (r[1] = (
|
|
2824
|
+
onClick: r[1] || (r[1] = (s) => a.$emit("next"))
|
|
2808
2825
|
}, null, 8, ["disabled"])
|
|
2809
2826
|
])
|
|
2810
2827
|
]));
|
|
2811
2828
|
}
|
|
2812
|
-
}),
|
|
2829
|
+
}), qr = /* @__PURE__ */ v(Cr, [["__scopeId", "data-v-da6d07c9"]]), Ar = {}, Lr = { class: "search__wrapper" };
|
|
2813
2830
|
function Tr(e, a) {
|
|
2814
|
-
return l(), i("div",
|
|
2831
|
+
return l(), i("div", Lr, [
|
|
2815
2832
|
c(e.$slots, "default", { class: "search__content" })
|
|
2816
2833
|
]);
|
|
2817
2834
|
}
|
|
2818
|
-
const
|
|
2835
|
+
const Dr = /* @__PURE__ */ v(Ar, [["render", Tr], ["__scopeId", "data-v-c07a6cf3"]]), Vr = { class: "dropdown" }, Pr = ["aria-expanded"], Fr = /* @__PURE__ */ g({
|
|
2819
2836
|
__name: "select-multiple",
|
|
2820
2837
|
props: {
|
|
2821
2838
|
label: { default: "" },
|
|
@@ -2824,17 +2841,17 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2824
2841
|
},
|
|
2825
2842
|
emits: ["filter", "remove-filter"],
|
|
2826
2843
|
setup(e, { emit: a }) {
|
|
2827
|
-
const r = C(!1),
|
|
2844
|
+
const r = C(!1), s = e, o = a;
|
|
2828
2845
|
function u(b) {
|
|
2829
|
-
|
|
2846
|
+
s.selectedOptions.includes(b) ? o("remove-filter", b) : o("filter", b);
|
|
2830
2847
|
}
|
|
2831
|
-
function
|
|
2848
|
+
function h() {
|
|
2832
2849
|
r.value = !1;
|
|
2833
2850
|
}
|
|
2834
|
-
const n =
|
|
2851
|
+
const n = q(() => s.options.length > 8);
|
|
2835
2852
|
return (b, f) => {
|
|
2836
2853
|
const k = _e("click-outside");
|
|
2837
|
-
return U((l(), i("div",
|
|
2854
|
+
return U((l(), i("div", Vr, [
|
|
2838
2855
|
t("button", {
|
|
2839
2856
|
class: "dropdown-button",
|
|
2840
2857
|
style: ee({ "z-index": r.value ? 2 : 0 }),
|
|
@@ -2844,11 +2861,11 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2844
2861
|
c(b.$slots, "button", {}, () => [
|
|
2845
2862
|
J(d(b.label), 1)
|
|
2846
2863
|
], !0)
|
|
2847
|
-
], 12,
|
|
2864
|
+
], 12, Pr),
|
|
2848
2865
|
t("div", {
|
|
2849
2866
|
class: p([{ hidden: !r.value, "adjust-height": n.value }, "dropdown-content"])
|
|
2850
2867
|
}, [
|
|
2851
|
-
(l(!0), i(
|
|
2868
|
+
(l(!0), i(D, null, V(b.options, (w) => (l(), L(I(fe), {
|
|
2852
2869
|
id: w.value,
|
|
2853
2870
|
key: w.value,
|
|
2854
2871
|
name: w.text,
|
|
@@ -2865,11 +2882,11 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2865
2882
|
}, 1032, ["id", "name", "value", "checked", "onInput"]))), 128))
|
|
2866
2883
|
], 2)
|
|
2867
2884
|
])), [
|
|
2868
|
-
[k,
|
|
2885
|
+
[k, h]
|
|
2869
2886
|
]);
|
|
2870
2887
|
};
|
|
2871
2888
|
}
|
|
2872
|
-
}),
|
|
2889
|
+
}), Mr = /* @__PURE__ */ v(Fr, [["__scopeId", "data-v-f55b4fa8"]]), Or = { class: "promo__content" }, zr = { class: "pallet-jack__media-wrap" }, Hr = { class: "pallet-jack-link" }, Rr = { class: "pallet-jack__media-wrap__inner-wrap" }, Nr = { class: "pallet-jack__media-wrap__content-wrap" }, Er = { class: "regular-blue" }, jr = /* @__PURE__ */ g({
|
|
2873
2890
|
__name: "pallet-jack",
|
|
2874
2891
|
props: {
|
|
2875
2892
|
label: { default: "" },
|
|
@@ -2887,79 +2904,79 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2887
2904
|
dark: "promo__wrapper--dark",
|
|
2888
2905
|
light: "promo__wrapper--light",
|
|
2889
2906
|
default: "promo__wrapper--default"
|
|
2890
|
-
}, r = e,
|
|
2891
|
-
return (
|
|
2907
|
+
}, r = e, s = q(() => a[r.variant]);
|
|
2908
|
+
return (o, u) => (l(), i("div", {
|
|
2892
2909
|
class: p([
|
|
2893
2910
|
"promo__wrapper",
|
|
2894
|
-
|
|
2895
|
-
|
|
2911
|
+
s.value,
|
|
2912
|
+
o.teaser ? "promo__wrapper--teaser" : ""
|
|
2896
2913
|
])
|
|
2897
2914
|
}, [
|
|
2898
|
-
t("div",
|
|
2915
|
+
t("div", Or, [
|
|
2899
2916
|
t("div", {
|
|
2900
2917
|
class: p([
|
|
2901
2918
|
"promo__video",
|
|
2902
|
-
|
|
2919
|
+
o.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2903
2920
|
])
|
|
2904
2921
|
}, [
|
|
2905
|
-
t("div",
|
|
2922
|
+
t("div", zr, [
|
|
2923
|
+
t("div", Hr, [
|
|
2924
|
+
c(o.$slots, "pallet-jack-link")
|
|
2925
|
+
]),
|
|
2906
2926
|
t("div", Rr, [
|
|
2907
|
-
c(
|
|
2927
|
+
c(o.$slots, "pallet-jack-video")
|
|
2908
2928
|
]),
|
|
2909
2929
|
t("div", Nr, [
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
t("div", Er, [
|
|
2913
|
-
t("h3", jr, d(s.headline), 1),
|
|
2914
|
-
t("p", null, d(s.shortDescription), 1)
|
|
2930
|
+
t("h3", Er, d(o.headline), 1),
|
|
2931
|
+
t("p", null, d(o.shortDescription), 1)
|
|
2915
2932
|
])
|
|
2916
2933
|
])
|
|
2917
2934
|
], 2),
|
|
2918
2935
|
t("div", {
|
|
2919
2936
|
class: p([
|
|
2920
2937
|
"promo__text",
|
|
2921
|
-
|
|
2938
|
+
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2922
2939
|
])
|
|
2923
2940
|
}, [
|
|
2924
|
-
|
|
2941
|
+
o.label ? (l(), L(X, {
|
|
2925
2942
|
key: 0,
|
|
2926
|
-
text:
|
|
2927
|
-
"label-dark":
|
|
2928
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
2943
|
+
text: o.label,
|
|
2944
|
+
"label-dark": o.variant === "dark"
|
|
2945
|
+
}, null, 8, ["text", "label-dark"])) : _("", !0),
|
|
2929
2946
|
t("div", {
|
|
2930
2947
|
class: p([
|
|
2931
2948
|
"promo__title",
|
|
2932
|
-
|
|
2949
|
+
o.variant === "dark" ? "promo__title--dark" : ""
|
|
2933
2950
|
])
|
|
2934
2951
|
}, [
|
|
2935
|
-
c(
|
|
2952
|
+
c(o.$slots, "promo-text")
|
|
2936
2953
|
], 2),
|
|
2937
|
-
|
|
2954
|
+
o.linkType === "link" ? (l(), L(P, {
|
|
2938
2955
|
key: 1,
|
|
2939
|
-
"link-type":
|
|
2956
|
+
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
2940
2957
|
arrow: ""
|
|
2941
2958
|
}, {
|
|
2942
2959
|
default: y(() => [
|
|
2943
|
-
c(
|
|
2960
|
+
c(o.$slots, "promo-link")
|
|
2944
2961
|
]),
|
|
2945
2962
|
_: 3
|
|
2946
|
-
}, 8, ["link-type"])) :
|
|
2947
|
-
|
|
2963
|
+
}, 8, ["link-type"])) : _("", !0),
|
|
2964
|
+
o.linkType === "button" ? (l(), L(P, {
|
|
2948
2965
|
key: 2,
|
|
2949
|
-
"link-type":
|
|
2966
|
+
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
2950
2967
|
}, {
|
|
2951
2968
|
default: y(() => [
|
|
2952
|
-
c(
|
|
2969
|
+
c(o.$slots, "promo-link")
|
|
2953
2970
|
]),
|
|
2954
2971
|
_: 3
|
|
2955
|
-
}, 8, ["link-type"])) :
|
|
2972
|
+
}, 8, ["link-type"])) : _("", !0)
|
|
2956
2973
|
], 2)
|
|
2957
2974
|
])
|
|
2958
2975
|
], 2));
|
|
2959
2976
|
}
|
|
2960
|
-
}),
|
|
2977
|
+
}), Kr = /* @__PURE__ */ v(jr, [["__scopeId", "data-v-00c0bad3"]]), Gr = {
|
|
2961
2978
|
install: (e) => {
|
|
2962
|
-
e.component("AtomButton", le), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", F), e.component("AtomLabel", X), e.component("AtomLink", P), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple",
|
|
2979
|
+
e.component("AtomButton", le), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", F), e.component("AtomLabel", X), e.component("AtomLink", P), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Mr), e.component("AtomSlider", Bt), e.component("AtomTextarea", Dt), e.component("AtomTextField", jt), e.component("AtomVideo", te), e.component("MoleculeAddress", la), e.component("MoleculeBulletList", ca), e.component("MoleculeCard", ma), e.component("MoleculeColumnCard", ge), e.component("MoleculeEventCard", qa), e.component("MoleculeFlashcard", be), e.component("MoleculeModal", ve), e.component("MoleculeTextCard", Ua), e.component("BlockAccordion", ao), e.component("BlockFacts", So), e.component("BlockFeatures", Vo), e.component("BlockFlashcards", zo), e.component("BlockFormScript", Uo), e.component("BlockHeadline", Yo), e.component("BlockHero", ns), e.component("BlockImage", ps), e.component("BlockImageGallery", bs), e.component("BlockLogoWall", qs), e.component("BlockMicroStories", Vs), e.component("BlockPolicy", zs), e.component("BlockProductHero", Js), e.component("BlockPromo", Qs), e.component("BlockQuote", dl), e.component("BlockRichText", pl), e.component("BlockRichTextColumns", kl), e.component("BlockTimeline", Tl), e.component("BlockCardDisplay", co), e.component("BlockColumnGrid", fo), e.component("BlockVimeo", Ol), e.component("BlockPalletJack", Kr), e.component("BlockFrontPageHero", xl), e.component("Organism404", li), e.component("OrganismFilter", ui), e.component("OrganismFooter", Ri), e.component("OrganismHeader", vr), e.component("OrganismLanguageSwitcher", Br), e.component("OrganismPagination", qr), e.component("OrganismSearch", Dr);
|
|
2963
2980
|
}
|
|
2964
2981
|
};
|
|
2965
2982
|
export {
|
|
@@ -2972,10 +2989,10 @@ export {
|
|
|
2972
2989
|
P as AtomLink,
|
|
2973
2990
|
rt as AtomRadioButton,
|
|
2974
2991
|
ht as AtomSelect,
|
|
2975
|
-
|
|
2992
|
+
Mr as AtomSelectMultiple,
|
|
2976
2993
|
Bt as AtomSlider,
|
|
2977
2994
|
jt as AtomTextField,
|
|
2978
|
-
|
|
2995
|
+
Dt as AtomTextarea,
|
|
2979
2996
|
te as AtomVideo,
|
|
2980
2997
|
ao as BlockAccordion,
|
|
2981
2998
|
co as BlockCardDisplay,
|
|
@@ -2983,23 +3000,23 @@ export {
|
|
|
2983
3000
|
So as BlockFacts,
|
|
2984
3001
|
Vo as BlockFeatures,
|
|
2985
3002
|
zo as BlockFlashcards,
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3003
|
+
Uo as BlockFormScript,
|
|
3004
|
+
xl as BlockFrontPageHero,
|
|
3005
|
+
Yo as BlockHeadline,
|
|
3006
|
+
ns as BlockHero,
|
|
3007
|
+
ps as BlockImage,
|
|
3008
|
+
bs as BlockImageGallery,
|
|
3009
|
+
qs as BlockLogoWall,
|
|
3010
|
+
Vs as BlockMicroStories,
|
|
3011
|
+
Kr as BlockPalletJack,
|
|
3012
|
+
zs as BlockPolicy,
|
|
3013
|
+
Js as BlockProductHero,
|
|
3014
|
+
Qs as BlockPromo,
|
|
3015
|
+
dl as BlockQuote,
|
|
3016
|
+
pl as BlockRichText,
|
|
3017
|
+
kl as BlockRichTextColumns,
|
|
3001
3018
|
Tl as BlockTimeline,
|
|
3002
|
-
|
|
3019
|
+
Ol as BlockVimeo,
|
|
3003
3020
|
la as MoleculeAddress,
|
|
3004
3021
|
ca as MoleculeBulletList,
|
|
3005
3022
|
ma as MoleculeCard,
|
|
@@ -3008,12 +3025,12 @@ export {
|
|
|
3008
3025
|
be as MoleculeFlashcard,
|
|
3009
3026
|
ve as MoleculeModal,
|
|
3010
3027
|
Ua as MoleculeTextCard,
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3028
|
+
li as Organism404,
|
|
3029
|
+
ui as OrganismFilter,
|
|
3030
|
+
Ri as OrganismFooter,
|
|
3031
|
+
vr as OrganismHeader,
|
|
3032
|
+
Br as OrganismLanguageSwitcher,
|
|
3033
|
+
qr as OrganismPagination,
|
|
3034
|
+
Dr as OrganismSearch,
|
|
3035
|
+
Gr as default
|
|
3019
3036
|
};
|