@mirweb/mir-web-components 0.17.25 → 0.17.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
const Be = ["aria-label"], Ie = /* @__PURE__ */
|
|
1
|
+
import { defineComponent as b, computed as V, openBlock as o, createElementBlock as i, normalizeClass as h, toDisplayString as n, createElementVNode as t, renderSlot as _, pushScopeId as E, popScopeId as R, createTextVNode as j, ref as B, withDirectives as Z, Fragment as D, renderList as M, vShow as ee, normalizeProps as P, guardReactiveProps as F, toRefs as ye, mergeProps as te, createVNode as w, Transition as $e, withCtx as S, withModifiers as de, createBlock as A, createCommentVNode as v, watchEffect as ce, withKeys as ke, onMounted as ae, unref as q, useSlots as we, normalizeStyle as le, isRef as re, watch as ne, onUnmounted as Se } from "vue";
|
|
2
|
+
const Be = ["aria-label"], Ie = /* @__PURE__ */ b({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
5
5
|
variant: { default: "primary" },
|
|
@@ -13,18 +13,18 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
13
13
|
close: "close",
|
|
14
14
|
next: "next",
|
|
15
15
|
previous: "previous"
|
|
16
|
-
}, r = e, l =
|
|
17
|
-
return (s,
|
|
16
|
+
}, r = e, l = V(() => a[r.variant]);
|
|
17
|
+
return (s, p) => (o(), i("button", {
|
|
18
18
|
class: h(["button", "button--" + l.value]),
|
|
19
19
|
"aria-label": s.ariaLabel
|
|
20
20
|
}, n(l.value === "close" ? "" : s.buttonText), 11, Be));
|
|
21
21
|
}
|
|
22
|
-
}),
|
|
22
|
+
}), f = (e, a) => {
|
|
23
23
|
const r = e.__vccOpts || e;
|
|
24
24
|
for (const [l, s] of a)
|
|
25
25
|
r[l] = s;
|
|
26
26
|
return r;
|
|
27
|
-
}, J = /* @__PURE__ */
|
|
27
|
+
}, J = /* @__PURE__ */ f(Ie, [["__scopeId", "data-v-a3e038ec"]]), qe = (e) => (E("data-v-42c44141"), e = e(), R(), e), Le = ["id", "name", "value", "disabled", "required"], Te = ["for"], Ve = /* @__PURE__ */ qe(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Ce = /* @__PURE__ */ b({
|
|
28
28
|
__name: "checkbox",
|
|
29
29
|
props: {
|
|
30
30
|
name: { default: "checkbox" },
|
|
@@ -36,10 +36,10 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
36
36
|
emits: ["input"],
|
|
37
37
|
setup(e, { emit: a }) {
|
|
38
38
|
const r = a, l = (s) => {
|
|
39
|
-
const
|
|
40
|
-
r("input",
|
|
39
|
+
const p = s.target;
|
|
40
|
+
r("input", p.checked);
|
|
41
41
|
};
|
|
42
|
-
return (s,
|
|
42
|
+
return (s, p) => (o(), i("div", {
|
|
43
43
|
class: h(["checkbox__wrapper", s.disabled ? "disabled" : ""])
|
|
44
44
|
}, [
|
|
45
45
|
t("input", {
|
|
@@ -57,25 +57,25 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
57
57
|
class: h(["checkbox__label", s.required ? "required" : ""])
|
|
58
58
|
}, [
|
|
59
59
|
Ve,
|
|
60
|
-
|
|
60
|
+
_(s.$slots, "default", {}, void 0, !0)
|
|
61
61
|
], 10, Te)
|
|
62
62
|
], 2));
|
|
63
63
|
}
|
|
64
|
-
}), Ae = /* @__PURE__ */
|
|
64
|
+
}), Ae = /* @__PURE__ */ f(Ce, [["__scopeId", "data-v-42c44141"]]), De = (e) => (E("data-v-08813346"), e = e(), R(), e), Me = ["aria-label"], Oe = /* @__PURE__ */ De(() => /* @__PURE__ */ t("img", {
|
|
65
65
|
src: "https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",
|
|
66
66
|
alt: "close",
|
|
67
67
|
class: "close-icon"
|
|
68
|
-
}, null, -1)), Pe = /* @__PURE__ */
|
|
68
|
+
}, null, -1)), Pe = /* @__PURE__ */ b({
|
|
69
69
|
__name: "chip",
|
|
70
70
|
props: {
|
|
71
71
|
text: { default: "" }
|
|
72
72
|
},
|
|
73
73
|
emits: ["remove-chip"],
|
|
74
74
|
setup(e) {
|
|
75
|
-
const a = e, r =
|
|
75
|
+
const a = e, r = V(() => `Chip: ${a.text}`);
|
|
76
76
|
return (l, s) => (o(), i("div", {
|
|
77
77
|
class: "chip__wrapper",
|
|
78
|
-
onClick: s[0] || (s[0] = (
|
|
78
|
+
onClick: s[0] || (s[0] = (p) => l.$emit("remove-chip"))
|
|
79
79
|
}, [
|
|
80
80
|
t("span", {
|
|
81
81
|
class: "chip",
|
|
@@ -86,7 +86,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
86
86
|
], 8, Me)
|
|
87
87
|
]));
|
|
88
88
|
}
|
|
89
|
-
}), Fe = /* @__PURE__ */
|
|
89
|
+
}), Fe = /* @__PURE__ */ f(Pe, [["__scopeId", "data-v-08813346"]]), Ee = ["value"], Re = ["id"], Ne = { class: "listbox__dropdown" }, He = ["id", "aria-labelledby", "aria-disabled"], ze = ["aria-labelledby", "aria-activedescendant"], Ue = ["aria-selected", "data-value"], Ke = /* @__PURE__ */ b({
|
|
90
90
|
__name: "dropdown",
|
|
91
91
|
props: {
|
|
92
92
|
modelValue: {},
|
|
@@ -104,15 +104,15 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
104
104
|
const r = {
|
|
105
105
|
primary: "dropdown-dark-bg-primary",
|
|
106
106
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
107
|
-
}, l = e, s =
|
|
107
|
+
}, l = e, s = V(() => r[l.variant]), p = B(null), c = B(null), u = B([]), g = B(0), m = B(""), $ = B(!0), L = B(0), X = a, I = V(() => {
|
|
108
108
|
const d = l.options.find(
|
|
109
|
-
(
|
|
109
|
+
(y) => y.value === l.modelValue
|
|
110
110
|
);
|
|
111
111
|
return d && d.label;
|
|
112
112
|
}), U = {
|
|
113
|
-
beforeMount(d,
|
|
114
|
-
d.clickOutsideEvent = function(
|
|
115
|
-
d ===
|
|
113
|
+
beforeMount(d, y) {
|
|
114
|
+
d.clickOutsideEvent = function(k) {
|
|
115
|
+
d === k.target || d.contains(k.target) || y.value(k);
|
|
116
116
|
}, document.body.addEventListener("click", d.clickOutsideEvent);
|
|
117
117
|
},
|
|
118
118
|
unmounted(d) {
|
|
@@ -123,22 +123,22 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
123
123
|
X("update:modelValue", d);
|
|
124
124
|
}
|
|
125
125
|
function H(d) {
|
|
126
|
-
var
|
|
127
|
-
const
|
|
128
|
-
|
|
126
|
+
var k;
|
|
127
|
+
const y = d.target;
|
|
128
|
+
y.getAttribute("role") === "option" && (W(y), Q(), (k = p.value) == null || k.focus());
|
|
129
129
|
}
|
|
130
|
-
function
|
|
131
|
-
var
|
|
132
|
-
const
|
|
133
|
-
switch (
|
|
130
|
+
function oe(d) {
|
|
131
|
+
var k;
|
|
132
|
+
const y = d.key;
|
|
133
|
+
switch (y) {
|
|
134
134
|
case "ArrowUp":
|
|
135
135
|
case "ArrowDown": {
|
|
136
136
|
d.preventDefault();
|
|
137
|
-
const
|
|
137
|
+
const T = l.options.findIndex(
|
|
138
138
|
(K) => K.value === l.modelValue
|
|
139
139
|
);
|
|
140
|
-
let N =
|
|
141
|
-
|
|
140
|
+
let N = T ? u.value[T] : u.value[0];
|
|
141
|
+
y === "ArrowUp" ? T - 1 >= 0 && (N = u.value[T - 1]) : T + 1 <= l.options.length && (N = u.value[T + 1]), N && W(N);
|
|
142
142
|
break;
|
|
143
143
|
}
|
|
144
144
|
case "Home":
|
|
@@ -151,11 +151,11 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
151
151
|
break;
|
|
152
152
|
case "Enter":
|
|
153
153
|
case "Escape":
|
|
154
|
-
d.preventDefault(), Q(), (
|
|
154
|
+
d.preventDefault(), Q(), (k = p.value) == null || k.focus();
|
|
155
155
|
break;
|
|
156
156
|
default: {
|
|
157
|
-
const
|
|
158
|
-
|
|
157
|
+
const T = me(y);
|
|
158
|
+
T && W(T);
|
|
159
159
|
break;
|
|
160
160
|
}
|
|
161
161
|
}
|
|
@@ -165,72 +165,72 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
165
165
|
switch (d.key) {
|
|
166
166
|
case "ArrowUp":
|
|
167
167
|
case "ArrowDown":
|
|
168
|
-
d.preventDefault(),
|
|
168
|
+
d.preventDefault(), ie(), oe(d);
|
|
169
169
|
break;
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
|
-
function
|
|
172
|
+
function he(d) {
|
|
173
173
|
d && d.removeAttribute("aria-selected");
|
|
174
174
|
}
|
|
175
|
-
function
|
|
176
|
-
|
|
177
|
-
m.value = "",
|
|
175
|
+
function pe() {
|
|
176
|
+
g.value && (clearTimeout(g.value), g.value = 0), g.value = setTimeout(() => {
|
|
177
|
+
m.value = "", g.value = 0;
|
|
178
178
|
}, 500);
|
|
179
179
|
}
|
|
180
180
|
function me(d) {
|
|
181
|
-
let
|
|
182
|
-
(m.value === "" ||
|
|
183
|
-
(
|
|
184
|
-
)), m.value =
|
|
185
|
-
let
|
|
186
|
-
|
|
181
|
+
let y = "";
|
|
182
|
+
(m.value === "" || y !== d) && (L.value = l.options.findIndex(
|
|
183
|
+
(T) => T.value === l.modelValue
|
|
184
|
+
)), m.value = y === d ? d : m.value + d, y = d, pe();
|
|
185
|
+
let k = se(
|
|
186
|
+
L.value + 1,
|
|
187
187
|
l.options.length
|
|
188
188
|
);
|
|
189
|
-
return
|
|
189
|
+
return !k && m.value.length === 1 && (k = se(0, L.value)), L.value = (L.value + 1) % l.options.length, k;
|
|
190
190
|
}
|
|
191
|
-
function
|
|
192
|
-
for (let
|
|
193
|
-
if (l.options[
|
|
194
|
-
return
|
|
191
|
+
function se(d, y) {
|
|
192
|
+
for (let k = d; k < y; k++)
|
|
193
|
+
if (l.options[k].label && l.options[k].label.toUpperCase().indexOf(m.value.toUpperCase()) === 0)
|
|
194
|
+
return u.value[k];
|
|
195
195
|
return null;
|
|
196
196
|
}
|
|
197
197
|
function ve() {
|
|
198
|
-
W(
|
|
198
|
+
W(u.value[0]);
|
|
199
199
|
}
|
|
200
200
|
function W(d) {
|
|
201
|
-
var
|
|
202
|
-
const
|
|
201
|
+
var k, T;
|
|
202
|
+
const y = d.getAttribute("data-value");
|
|
203
203
|
if (l.modelValue) {
|
|
204
204
|
const N = l.options.findIndex(
|
|
205
205
|
(be) => be.value === l.modelValue
|
|
206
|
-
), K =
|
|
207
|
-
|
|
206
|
+
), K = u.value[N];
|
|
207
|
+
he(K);
|
|
208
208
|
}
|
|
209
|
-
if (d.setAttribute("aria-selected", "true"), (
|
|
209
|
+
if (d.setAttribute("aria-selected", "true"), (k = c.value) == null || k.setAttribute(
|
|
210
210
|
"aria-activedescendant",
|
|
211
|
-
|
|
212
|
-
), x(
|
|
211
|
+
y || ""
|
|
212
|
+
), x(y || ""), c.value && c.value.scrollHeight > c.value.clientHeight) {
|
|
213
213
|
const N = c.value.clientHeight + c.value.scrollTop, K = d.offsetTop + d.offsetHeight;
|
|
214
|
-
K > N ? c.value.scrollTop = K - ((
|
|
214
|
+
K > N ? c.value.scrollTop = K - ((T = c.value) == null ? void 0 : T.clientHeight) : d.offsetTop < c.value.scrollTop && (c.value.scrollTop = d.offsetTop);
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
function fe() {
|
|
218
|
-
var
|
|
219
|
-
const d = (
|
|
218
|
+
var y;
|
|
219
|
+
const d = (y = u.value) == null ? void 0 : y[l.options.length - 1];
|
|
220
220
|
W(d);
|
|
221
221
|
}
|
|
222
222
|
function Q() {
|
|
223
223
|
var d;
|
|
224
|
-
|
|
224
|
+
$.value = !0, (d = p.value) == null || d.removeAttribute("aria-expanded");
|
|
225
225
|
}
|
|
226
|
-
function
|
|
227
|
-
var d,
|
|
228
|
-
|
|
226
|
+
function ie() {
|
|
227
|
+
var d, y;
|
|
228
|
+
$.value = !1, (d = p.value) == null || d.setAttribute("aria-expanded", "true"), (y = c.value) == null || y.focus();
|
|
229
229
|
}
|
|
230
230
|
function ge() {
|
|
231
|
-
l.disabled || (
|
|
231
|
+
l.disabled || ($.value ? ie() : Q());
|
|
232
232
|
}
|
|
233
|
-
return (d,
|
|
233
|
+
return (d, y) => (o(), i("div", {
|
|
234
234
|
ref: "listbox",
|
|
235
235
|
class: "listbox__wrapper",
|
|
236
236
|
value: d.modelValue
|
|
@@ -247,7 +247,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
247
247
|
t("button", {
|
|
248
248
|
id: `${d.name}-button-label`,
|
|
249
249
|
ref_key: "listboxButton",
|
|
250
|
-
ref:
|
|
250
|
+
ref: p,
|
|
251
251
|
"aria-labelledby": `${d.name}-label ${d.name}-button-label`,
|
|
252
252
|
type: "button",
|
|
253
253
|
"aria-haspopup": "listbox",
|
|
@@ -255,7 +255,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
255
255
|
class: h(["listbox__button", s.value]),
|
|
256
256
|
onClick: ge,
|
|
257
257
|
onKeydown: _e
|
|
258
|
-
}, n(d.modelValue ?
|
|
258
|
+
}, n(d.modelValue ? I.value : d.placeholder), 43, He),
|
|
259
259
|
Z(t("ul", {
|
|
260
260
|
ref_key: "listboxNode",
|
|
261
261
|
ref: c,
|
|
@@ -264,28 +264,28 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
264
264
|
tabindex: "0",
|
|
265
265
|
role: "listbox",
|
|
266
266
|
class: "listbox__list",
|
|
267
|
-
onKeydown:
|
|
267
|
+
onKeydown: oe,
|
|
268
268
|
onClick: H
|
|
269
269
|
}, [
|
|
270
|
-
(o(!0), i(D, null, M(d.options, (
|
|
271
|
-
key: `${d.name}-option-${
|
|
270
|
+
(o(!0), i(D, null, M(d.options, (k, T) => (o(), i("li", {
|
|
271
|
+
key: `${d.name}-option-${T}`,
|
|
272
272
|
ref_for: !0,
|
|
273
273
|
ref_key: "listboxOptions",
|
|
274
|
-
ref:
|
|
275
|
-
"aria-selected":
|
|
276
|
-
"data-value":
|
|
274
|
+
ref: u,
|
|
275
|
+
"aria-selected": k.value === d.modelValue,
|
|
276
|
+
"data-value": k.value,
|
|
277
277
|
class: "listbox__option",
|
|
278
278
|
role: "option"
|
|
279
|
-
}, n(
|
|
279
|
+
}, n(k.label), 9, Ue))), 128))
|
|
280
280
|
], 40, ze), [
|
|
281
|
-
[ee,
|
|
281
|
+
[ee, !$.value]
|
|
282
282
|
])
|
|
283
283
|
])), [
|
|
284
284
|
[U, Q]
|
|
285
285
|
])
|
|
286
286
|
], 8, Ee));
|
|
287
287
|
}
|
|
288
|
-
}), je = /* @__PURE__ */
|
|
288
|
+
}), je = /* @__PURE__ */ f(Ke, [["__scopeId", "data-v-6a8da7a4"]]), Ge = { class: "image__wrapper" }, We = /* @__PURE__ */ b({
|
|
289
289
|
__name: "image",
|
|
290
290
|
props: {
|
|
291
291
|
src: { default: void 0 },
|
|
@@ -298,17 +298,17 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
298
298
|
},
|
|
299
299
|
setup(e) {
|
|
300
300
|
return (a, r) => (o(), i("div", Ge, [
|
|
301
|
-
|
|
301
|
+
_(a.$slots, "default", P(F(a.$attrs)))
|
|
302
302
|
]));
|
|
303
303
|
}
|
|
304
|
-
}), C = /* @__PURE__ */
|
|
304
|
+
}), C = /* @__PURE__ */ f(We, [["__scopeId", "data-v-f71a3c87"]]), Ye = { class: "label__wrapper" }, Qe = ["aria-label", "label-dark"], Ze = /* @__PURE__ */ b({
|
|
305
305
|
__name: "label",
|
|
306
306
|
props: {
|
|
307
307
|
text: {},
|
|
308
308
|
labelDark: { type: Boolean, default: !1 }
|
|
309
309
|
},
|
|
310
310
|
setup(e) {
|
|
311
|
-
const a = e, r =
|
|
311
|
+
const a = e, r = V(() => `Label: ${a.text}`);
|
|
312
312
|
return (l, s) => (o(), i("div", Ye, [
|
|
313
313
|
t("span", {
|
|
314
314
|
"aria-label": r.value,
|
|
@@ -317,7 +317,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
317
317
|
}, n(l.text), 11, Qe)
|
|
318
318
|
]));
|
|
319
319
|
}
|
|
320
|
-
}), Y = /* @__PURE__ */
|
|
320
|
+
}), Y = /* @__PURE__ */ f(Ze, [["__scopeId", "data-v-7d9d3a8a"]]), Je = { class: "link__wrapper" }, O = /* @__PURE__ */ b({
|
|
321
321
|
__name: "link",
|
|
322
322
|
props: {
|
|
323
323
|
linkType: { default: "regular" },
|
|
@@ -338,24 +338,24 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
338
338
|
hover: "underline-hover",
|
|
339
339
|
true: "add-underline",
|
|
340
340
|
false: "remove-underline"
|
|
341
|
-
}, l = e, s =
|
|
342
|
-
const { ...
|
|
343
|
-
return
|
|
341
|
+
}, l = e, s = V(() => a[l.linkType]), p = V(() => r[l.underline]), c = V(() => {
|
|
342
|
+
const { ...u } = ye(l);
|
|
343
|
+
return u;
|
|
344
344
|
});
|
|
345
|
-
return (
|
|
345
|
+
return (u, g) => (o(), i("div", Je, [
|
|
346
346
|
t("div", te(c.value, {
|
|
347
347
|
class: ["mir-link", [
|
|
348
348
|
s.value,
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
349
|
+
u.disabled ? "disabled" : "",
|
|
350
|
+
p.value,
|
|
351
|
+
u.arrow ? "link-arrow" : ""
|
|
352
352
|
]]
|
|
353
353
|
}), [
|
|
354
|
-
|
|
354
|
+
_(u.$slots, "default")
|
|
355
355
|
], 16)
|
|
356
356
|
]));
|
|
357
357
|
}
|
|
358
|
-
}), Xe = (e) => (E("data-v-fa1bda9b"), e = e(), R(), e), xe = ["id", "name", "value", "checked", "disabled", "required"], et = ["for"], tt = /* @__PURE__ */ Xe(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), at = /* @__PURE__ */
|
|
358
|
+
}), Xe = (e) => (E("data-v-fa1bda9b"), e = e(), R(), e), xe = ["id", "name", "value", "checked", "disabled", "required"], et = ["for"], tt = /* @__PURE__ */ Xe(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), at = /* @__PURE__ */ b({
|
|
359
359
|
__name: "radio-button",
|
|
360
360
|
props: {
|
|
361
361
|
name: { default: "radio" },
|
|
@@ -368,10 +368,10 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
368
368
|
emits: ["input"],
|
|
369
369
|
setup(e, { emit: a }) {
|
|
370
370
|
const r = a, l = (s) => {
|
|
371
|
-
const
|
|
372
|
-
r("input",
|
|
371
|
+
const p = s.target;
|
|
372
|
+
r("input", p.checked);
|
|
373
373
|
};
|
|
374
|
-
return (s,
|
|
374
|
+
return (s, p) => (o(), i("div", {
|
|
375
375
|
class: h(["radio__wrapper", s.disabled ? "disabled" : ""])
|
|
376
376
|
}, [
|
|
377
377
|
t("input", {
|
|
@@ -390,11 +390,11 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
390
390
|
class: h(["radio__label", s.required ? "required" : ""])
|
|
391
391
|
}, [
|
|
392
392
|
tt,
|
|
393
|
-
|
|
393
|
+
_(s.$slots, "default", {}, void 0, !0)
|
|
394
394
|
], 10, et)
|
|
395
395
|
], 2));
|
|
396
396
|
}
|
|
397
|
-
}), lt = /* @__PURE__ */
|
|
397
|
+
}), lt = /* @__PURE__ */ f(at, [["__scopeId", "data-v-fa1bda9b"]]), ot = { class: "select__wrapper" }, st = ["for"], it = ["id", "disabled", "name", "value"], rt = ["value"], nt = /* @__PURE__ */ b({
|
|
398
398
|
__name: "select",
|
|
399
399
|
props: {
|
|
400
400
|
id: {},
|
|
@@ -429,7 +429,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
429
429
|
], 42, it)
|
|
430
430
|
]));
|
|
431
431
|
}
|
|
432
|
-
}), dt = /* @__PURE__ */
|
|
432
|
+
}), dt = /* @__PURE__ */ f(nt, [["__scopeId", "data-v-d5c46463"]]), ct = { class: "modal__wrapper" }, ut = /* @__PURE__ */ b({
|
|
433
433
|
__name: "modal",
|
|
434
434
|
props: {
|
|
435
435
|
show: { type: Boolean, default: !1 },
|
|
@@ -440,42 +440,42 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
440
440
|
const r = e, l = a, s = () => {
|
|
441
441
|
l("update:show", !r.show);
|
|
442
442
|
};
|
|
443
|
-
return (
|
|
444
|
-
|
|
443
|
+
return (p, c) => (o(), i("div", ct, [
|
|
444
|
+
w($e, {
|
|
445
445
|
duration: 300,
|
|
446
446
|
name: "nested"
|
|
447
447
|
}, {
|
|
448
|
-
default:
|
|
449
|
-
|
|
448
|
+
default: S(() => [
|
|
449
|
+
p.show ? (o(), i("div", {
|
|
450
450
|
key: 0,
|
|
451
|
-
class: h(["overlay",
|
|
451
|
+
class: h(["overlay", p.searchBar ? "overlay-search" : "overlay-default"]),
|
|
452
452
|
ariaLabel: "modal",
|
|
453
453
|
role: "dialog",
|
|
454
454
|
onClick: s
|
|
455
455
|
}, [
|
|
456
456
|
t("div", {
|
|
457
457
|
id: "modal",
|
|
458
|
-
class: h([
|
|
459
|
-
onClick: c[0] || (c[0] =
|
|
458
|
+
class: h([p.searchBar ? "search" : ""]),
|
|
459
|
+
onClick: c[0] || (c[0] = de(() => {
|
|
460
460
|
}, ["stop"]))
|
|
461
461
|
}, [
|
|
462
462
|
t("div", null, [
|
|
463
|
-
|
|
463
|
+
p.searchBar ? v("", !0) : (o(), A(J, {
|
|
464
464
|
key: 0,
|
|
465
465
|
"aria-label": "close",
|
|
466
466
|
variant: "close",
|
|
467
467
|
onClick: s
|
|
468
468
|
}))
|
|
469
469
|
]),
|
|
470
|
-
p
|
|
470
|
+
_(p.$slots, "default", {}, void 0, !0)
|
|
471
471
|
], 2)
|
|
472
|
-
], 2)) :
|
|
472
|
+
], 2)) : v("", !0)
|
|
473
473
|
]),
|
|
474
474
|
_: 3
|
|
475
475
|
})
|
|
476
476
|
]));
|
|
477
477
|
}
|
|
478
|
-
}), ue = /* @__PURE__ */
|
|
478
|
+
}), ue = /* @__PURE__ */ f(ut, [["__scopeId", "data-v-cc647ee6"]]), _t = { class: "slider__wrapper" }, ht = { class: "slider__label" }, pt = ["for"], mt = ["aria-label"], vt = { class: "slider__content" }, ft = ["id", "name", "value", "min", "step", "max"], gt = /* @__PURE__ */ b({
|
|
479
479
|
__name: "slider",
|
|
480
480
|
props: {
|
|
481
481
|
label: {},
|
|
@@ -491,24 +491,24 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
491
491
|
},
|
|
492
492
|
emits: ["update:modelValue"],
|
|
493
493
|
setup(e, { emit: a }) {
|
|
494
|
-
const r = e, l = a, s =
|
|
495
|
-
var
|
|
496
|
-
(
|
|
494
|
+
const r = e, l = a, s = B(r.modelValue), p = B(), c = B(!1), u = (m, $, L) => (m - $) / (L - $) * 100, g = (m) => {
|
|
495
|
+
var $;
|
|
496
|
+
($ = p.value) == null || $.style.setProperty("--ProgressPercent", `${m}%`);
|
|
497
497
|
};
|
|
498
|
-
return
|
|
499
|
-
if (
|
|
498
|
+
return ce(() => {
|
|
499
|
+
if (p.value) {
|
|
500
500
|
l("update:modelValue", s.value);
|
|
501
|
-
const m =
|
|
502
|
-
let
|
|
503
|
-
|
|
501
|
+
const m = u(s.value, r.min, r.max);
|
|
502
|
+
let $ = (50 - m) / 100;
|
|
503
|
+
g(m + $);
|
|
504
504
|
}
|
|
505
|
-
}), (m,
|
|
505
|
+
}), (m, $) => (o(), i("div", null, [
|
|
506
506
|
t("div", _t, [
|
|
507
|
-
t("div",
|
|
507
|
+
t("div", ht, [
|
|
508
508
|
t("label", {
|
|
509
509
|
for: m.id,
|
|
510
510
|
class: h([m.variant, ""])
|
|
511
|
-
}, n(m.label), 11,
|
|
511
|
+
}, n(m.label), 11, pt),
|
|
512
512
|
m.information ? (o(), i("i", {
|
|
513
513
|
key: 0,
|
|
514
514
|
role: "button",
|
|
@@ -516,9 +516,9 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
516
516
|
"aria-label": m.informationLabel,
|
|
517
517
|
tabindex: "0",
|
|
518
518
|
"aria-haspopup": "dialog",
|
|
519
|
-
onClick:
|
|
520
|
-
onKeyup:
|
|
521
|
-
}, null, 42, mt)) :
|
|
519
|
+
onClick: $[0] || ($[0] = (L) => c.value = !c.value),
|
|
520
|
+
onKeyup: $[1] || ($[1] = ke((L) => c.value = !c.value, ["enter"]))
|
|
521
|
+
}, null, 42, mt)) : v("", !0)
|
|
522
522
|
]),
|
|
523
523
|
t("div", vt, [
|
|
524
524
|
t("span", {
|
|
@@ -527,7 +527,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
527
527
|
t("input", {
|
|
528
528
|
id: m.id,
|
|
529
529
|
ref_key: "slider",
|
|
530
|
-
ref:
|
|
530
|
+
ref: p,
|
|
531
531
|
type: "range",
|
|
532
532
|
name: m.name,
|
|
533
533
|
value: m.modelValue,
|
|
@@ -535,7 +535,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
535
535
|
step: m.step,
|
|
536
536
|
max: m.max,
|
|
537
537
|
class: h(m.variant),
|
|
538
|
-
onInput:
|
|
538
|
+
onInput: $[2] || ($[2] = ({ target: L }) => s.value = parseFloat(L.value))
|
|
539
539
|
}, null, 42, ft),
|
|
540
540
|
t("span", {
|
|
541
541
|
class: h([m.variant, "slider__minmax"])
|
|
@@ -548,16 +548,16 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
548
548
|
m.information ? (o(), A(ue, {
|
|
549
549
|
key: 0,
|
|
550
550
|
show: c.value,
|
|
551
|
-
"onUpdate:show":
|
|
551
|
+
"onUpdate:show": $[3] || ($[3] = (L) => c.value = L)
|
|
552
552
|
}, {
|
|
553
|
-
default:
|
|
553
|
+
default: S(() => [
|
|
554
554
|
j(n(m.information), 1)
|
|
555
555
|
]),
|
|
556
556
|
_: 1
|
|
557
|
-
}, 8, ["show"])) :
|
|
557
|
+
}, 8, ["show"])) : v("", !0)
|
|
558
558
|
]));
|
|
559
559
|
}
|
|
560
|
-
}), bt = /* @__PURE__ */
|
|
560
|
+
}), bt = /* @__PURE__ */ f(gt, [["__scopeId", "data-v-b8d6d141"]]), yt = { id: "textarea-wrapper" }, $t = ["for"], kt = ["id"], wt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], St = { class: "textarea-info" }, Bt = { key: 0 }, It = /* @__PURE__ */ b({
|
|
561
561
|
__name: "textarea",
|
|
562
562
|
props: {
|
|
563
563
|
id: { default: "" },
|
|
@@ -597,7 +597,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
597
597
|
], 8, kt),
|
|
598
598
|
t("div", St, [
|
|
599
599
|
t("div", null, [
|
|
600
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (o(), i("p", Bt, " Too many characters. Please make it shorter ")) :
|
|
600
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (o(), i("p", Bt, " Too many characters. Please make it shorter ")) : v("", !0)
|
|
601
601
|
]),
|
|
602
602
|
t("p", {
|
|
603
603
|
class: h(
|
|
@@ -607,7 +607,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
607
607
|
])
|
|
608
608
|
]));
|
|
609
609
|
}
|
|
610
|
-
}), qt = /* @__PURE__ */
|
|
610
|
+
}), qt = /* @__PURE__ */ f(It, [["__scopeId", "data-v-220a973c"]]), Lt = { class: "text-field__wrapper" }, Tt = ["for"], Vt = { key: 0 }, Ct = ["id", "type", "value", "placeholder", "required", "disabled", "name"], At = ["aria-expanded"], Dt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Mt = {
|
|
611
611
|
key: 2,
|
|
612
612
|
class: "search"
|
|
613
613
|
}, Ot = {
|
|
@@ -616,7 +616,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
616
616
|
}, Pt = {
|
|
617
617
|
key: 4,
|
|
618
618
|
class: "helperText"
|
|
619
|
-
}, Ft = /* @__PURE__ */
|
|
619
|
+
}, Ft = /* @__PURE__ */ b({
|
|
620
620
|
__name: "text-field",
|
|
621
621
|
props: {
|
|
622
622
|
type: { default: "text" },
|
|
@@ -643,62 +643,62 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
643
643
|
tel: "tel",
|
|
644
644
|
url: "url",
|
|
645
645
|
search: "search"
|
|
646
|
-
}, r = e, l =
|
|
646
|
+
}, r = e, l = V(() => a[r.type]), s = B(!0), p = V(
|
|
647
647
|
() => s.value ? "showPassword" : "hidePassword"
|
|
648
|
-
), c =
|
|
648
|
+
), c = V(
|
|
649
649
|
() => s.value ? "password" : "text"
|
|
650
650
|
);
|
|
651
|
-
return (
|
|
651
|
+
return (u, g) => (o(), i("div", Lt, [
|
|
652
652
|
t("label", {
|
|
653
|
-
for:
|
|
653
|
+
for: u.id,
|
|
654
654
|
class: h([
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
655
|
+
u.required ? "required" : "",
|
|
656
|
+
u.disabled ? "disabled" : "",
|
|
657
|
+
u.search ? "search" : ""
|
|
658
658
|
])
|
|
659
|
-
}, n(
|
|
659
|
+
}, n(u.label), 11, Tt),
|
|
660
660
|
l.value === "password" ? (o(), i("div", Vt, [
|
|
661
661
|
t("input", {
|
|
662
|
-
id:
|
|
662
|
+
id: u.id,
|
|
663
663
|
ref: "passwordField",
|
|
664
664
|
type: c.value,
|
|
665
|
-
value:
|
|
666
|
-
placeholder:
|
|
667
|
-
required:
|
|
668
|
-
disabled:
|
|
669
|
-
name:
|
|
670
|
-
onInput:
|
|
665
|
+
value: u.modelValue,
|
|
666
|
+
placeholder: u.placeholder,
|
|
667
|
+
required: u.required,
|
|
668
|
+
disabled: u.disabled,
|
|
669
|
+
name: u.fieldName,
|
|
670
|
+
onInput: g[0] || (g[0] = (m) => u.$emit("update:modelValue", m.target.value))
|
|
671
671
|
}, null, 40, Ct),
|
|
672
672
|
t("i", {
|
|
673
673
|
role: "button",
|
|
674
|
-
class: h([
|
|
674
|
+
class: h([p.value]),
|
|
675
675
|
"aria-controls": "password",
|
|
676
676
|
"aria-expanded": !s.value,
|
|
677
|
-
onClick:
|
|
677
|
+
onClick: g[1] || (g[1] = (m) => s.value = !s.value)
|
|
678
678
|
}, null, 10, At)
|
|
679
679
|
])) : (o(), i("input", {
|
|
680
680
|
key: 1,
|
|
681
|
-
id:
|
|
681
|
+
id: u.id,
|
|
682
682
|
ref: "textField",
|
|
683
683
|
type: l.value,
|
|
684
|
-
value:
|
|
685
|
-
placeholder:
|
|
686
|
-
required:
|
|
684
|
+
value: u.modelValue,
|
|
685
|
+
placeholder: u.placeholder,
|
|
686
|
+
required: u.required,
|
|
687
687
|
class: h([
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
688
|
+
u.invalid ? "invalid" : "",
|
|
689
|
+
u.valid ? "valid" : "",
|
|
690
|
+
u.search ? "search" : ""
|
|
691
691
|
]),
|
|
692
|
-
disabled:
|
|
693
|
-
name:
|
|
694
|
-
onInput:
|
|
692
|
+
disabled: u.disabled,
|
|
693
|
+
name: u.fieldName,
|
|
694
|
+
onInput: g[2] || (g[2] = (m) => u.$emit("update:modelValue", m.target.value))
|
|
695
695
|
}, null, 42, Dt)),
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
696
|
+
u.search ? (o(), i("i", Mt)) : v("", !0),
|
|
697
|
+
u.errorMessage ? (o(), i("strong", Ot, n(u.errorMessage), 1)) : v("", !0),
|
|
698
|
+
u.helperText ? (o(), i("span", Pt, n(u.helperText), 1)) : v("", !0)
|
|
699
699
|
]));
|
|
700
700
|
}
|
|
701
|
-
}), Et = /* @__PURE__ */
|
|
701
|
+
}), Et = /* @__PURE__ */ f(Ft, [["__scopeId", "data-v-414b9435"]]), Rt = { class: "video__wrapper" }, Nt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Ht = ["src", "alt", "width", "height"], zt = ["src", "aria-label", "title", "width", "height"], Ut = /* @__PURE__ */ b({
|
|
702
702
|
__name: "video",
|
|
703
703
|
props: {
|
|
704
704
|
play: { type: Boolean, default: !1 },
|
|
@@ -716,43 +716,57 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
716
716
|
},
|
|
717
717
|
setup(e, { expose: a }) {
|
|
718
718
|
const r = e;
|
|
719
|
-
let l =
|
|
720
|
-
return
|
|
719
|
+
let l = B(null), s = B(!1), p = B(!1), c = r.poster;
|
|
720
|
+
return ae(() => {
|
|
721
|
+
const g = new Image();
|
|
722
|
+
g.src = c, g.onload = () => {
|
|
723
|
+
p.value = !0;
|
|
724
|
+
}, setTimeout(() => {
|
|
725
|
+
s.value = !0;
|
|
726
|
+
}, 2e3);
|
|
727
|
+
}), ce(() => {
|
|
721
728
|
l.value && (r.play ? l.value.play() : r.play || l.value.pause());
|
|
722
729
|
}), a({
|
|
723
730
|
resetVideo: () => {
|
|
724
731
|
l.value && (l.value.currentTime = 0, l.value.play());
|
|
725
732
|
}
|
|
726
|
-
}), (
|
|
727
|
-
|
|
733
|
+
}), (g, m) => (o(), i("div", Rt, [
|
|
734
|
+
q(s) && g.localVideo ? (o(), i("video", {
|
|
728
735
|
key: 0,
|
|
729
736
|
ref_key: "videoRef",
|
|
730
737
|
ref: l,
|
|
731
|
-
"aria-label":
|
|
732
|
-
controls:
|
|
733
|
-
poster:
|
|
734
|
-
width:
|
|
735
|
-
height:
|
|
736
|
-
autoplay:
|
|
737
|
-
loop:
|
|
738
|
-
muted:
|
|
738
|
+
"aria-label": g.ariaLabel,
|
|
739
|
+
controls: g.controls,
|
|
740
|
+
poster: q(c),
|
|
741
|
+
width: g.width,
|
|
742
|
+
height: g.height,
|
|
743
|
+
autoplay: g.autoplay,
|
|
744
|
+
loop: g.loop,
|
|
745
|
+
muted: g.muted,
|
|
739
746
|
type: "video/mp4",
|
|
740
747
|
playsinline: "",
|
|
741
|
-
src:
|
|
742
|
-
}, null, 8, Nt)) : (o(), i("
|
|
748
|
+
src: g.src
|
|
749
|
+
}, null, 8, Nt)) : q(p) ? (o(), i("img", {
|
|
743
750
|
key: 1,
|
|
744
|
-
src:
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
751
|
+
src: q(c),
|
|
752
|
+
alt: g.ariaLabel,
|
|
753
|
+
width: g.width,
|
|
754
|
+
height: g.height
|
|
755
|
+
}, null, 8, Ht)) : v("", !0),
|
|
756
|
+
q(s) && !g.localVideo ? (o(), i("iframe", {
|
|
757
|
+
key: 2,
|
|
758
|
+
src: g.src,
|
|
759
|
+
"aria-label": g.ariaLabel,
|
|
760
|
+
title: g.title,
|
|
761
|
+
width: g.width,
|
|
762
|
+
height: g.height,
|
|
749
763
|
frameborder: "0",
|
|
750
764
|
allow: "autoplay; fullscreen",
|
|
751
765
|
allowfullscreen: ""
|
|
752
|
-
}, null, 8,
|
|
766
|
+
}, null, 8, zt)) : v("", !0)
|
|
753
767
|
]));
|
|
754
768
|
}
|
|
755
|
-
}), G = /* @__PURE__ */
|
|
769
|
+
}), G = /* @__PURE__ */ f(Ut, [["__scopeId", "data-v-f7bf9dd2"]]), Kt = { class: "address__wrapper" }, jt = { class: "address__content" }, Gt = { class: "address__flag" }, Wt = { class: "address__address" }, Yt = { class: "address__name" }, Qt = { key: 0 }, Zt = { class: "address__contact" }, Jt = ["href"], Xt = ["href"], xt = /* @__PURE__ */ b({
|
|
756
770
|
__name: "address",
|
|
757
771
|
props: {
|
|
758
772
|
name: {},
|
|
@@ -764,41 +778,41 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
764
778
|
email: {}
|
|
765
779
|
},
|
|
766
780
|
setup(e) {
|
|
767
|
-
return (a, r) => (o(), i("div",
|
|
768
|
-
t("div",
|
|
769
|
-
t("div", jt, [
|
|
770
|
-
p(a.$slots, "address-flag", {}, void 0, !0)
|
|
771
|
-
]),
|
|
781
|
+
return (a, r) => (o(), i("div", Kt, [
|
|
782
|
+
t("div", jt, [
|
|
772
783
|
t("div", Gt, [
|
|
773
|
-
|
|
784
|
+
_(a.$slots, "address-flag", {}, void 0, !0)
|
|
785
|
+
]),
|
|
786
|
+
t("div", Wt, [
|
|
787
|
+
t("p", Yt, n(a.name), 1),
|
|
774
788
|
t("p", null, n(a.company), 1),
|
|
775
789
|
t("p", null, n(a.addressLine1), 1),
|
|
776
790
|
t("p", null, n(a.addressLine2), 1),
|
|
777
|
-
a.addressLine3 ? (o(), i("p",
|
|
791
|
+
a.addressLine3 ? (o(), i("p", Qt, n(a.addressLine3), 1)) : v("", !0)
|
|
778
792
|
]),
|
|
779
|
-
t("div",
|
|
793
|
+
t("div", Zt, [
|
|
780
794
|
(o(!0), i(D, null, M(a.phoneNumbers, (l) => (o(), A(O, {
|
|
781
795
|
key: l,
|
|
782
796
|
underline: "false",
|
|
783
797
|
"link-type": "regular"
|
|
784
798
|
}, {
|
|
785
|
-
default:
|
|
799
|
+
default: S(() => [
|
|
786
800
|
t("a", {
|
|
787
801
|
href: "tel:" + l,
|
|
788
802
|
class: "address__phone"
|
|
789
|
-
}, n(l), 9,
|
|
803
|
+
}, n(l), 9, Jt)
|
|
790
804
|
]),
|
|
791
805
|
_: 2
|
|
792
806
|
}, 1024))), 128)),
|
|
793
807
|
t("a", {
|
|
794
808
|
href: "mailto:" + a.email,
|
|
795
809
|
class: "address__email"
|
|
796
|
-
}, n(a.email), 9,
|
|
810
|
+
}, n(a.email), 9, Xt)
|
|
797
811
|
])
|
|
798
812
|
])
|
|
799
813
|
]));
|
|
800
814
|
}
|
|
801
|
-
}),
|
|
815
|
+
}), ea = /* @__PURE__ */ f(xt, [["__scopeId", "data-v-88ee2983"]]), ta = (e) => (E("data-v-a44fd57d"), e = e(), R(), e), aa = { class: "bullet-list__wrapper" }, la = /* @__PURE__ */ ta(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), oa = /* @__PURE__ */ b({
|
|
802
816
|
__name: "bullet-list",
|
|
803
817
|
props: {
|
|
804
818
|
list: {
|
|
@@ -818,23 +832,23 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
818
832
|
}
|
|
819
833
|
},
|
|
820
834
|
setup(e) {
|
|
821
|
-
return (a, r) => (o(), i("div",
|
|
835
|
+
return (a, r) => (o(), i("div", aa, [
|
|
822
836
|
t("div", {
|
|
823
837
|
class: h(["bullet-list", e.variant])
|
|
824
838
|
}, [
|
|
825
839
|
t("ul", null, [
|
|
826
840
|
(o(!0), i(D, null, M(e.list, (l) => (o(), i("li", { key: l }, [
|
|
827
|
-
|
|
841
|
+
la,
|
|
828
842
|
j(" " + n(l), 1)
|
|
829
843
|
]))), 128))
|
|
830
844
|
])
|
|
831
845
|
], 2)
|
|
832
846
|
]));
|
|
833
847
|
}
|
|
834
|
-
}),
|
|
848
|
+
}), sa = /* @__PURE__ */ f(oa, [["__scopeId", "data-v-a44fd57d"]]), ia = { class: "card__wrapper" }, ra = {
|
|
835
849
|
key: 2,
|
|
836
850
|
class: "card__label"
|
|
837
|
-
},
|
|
851
|
+
}, na = { key: 5 }, da = /* @__PURE__ */ b({
|
|
838
852
|
__name: "card",
|
|
839
853
|
props: {
|
|
840
854
|
variant: { default: "product" },
|
|
@@ -857,7 +871,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
857
871
|
emits: ["clicked"],
|
|
858
872
|
setup(e) {
|
|
859
873
|
const a = we();
|
|
860
|
-
let r =
|
|
874
|
+
let r = B(!1);
|
|
861
875
|
const l = {
|
|
862
876
|
small: {
|
|
863
877
|
class: "card--small",
|
|
@@ -874,23 +888,23 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
874
888
|
width: "596",
|
|
875
889
|
height: "335"
|
|
876
890
|
}
|
|
877
|
-
}, s = e,
|
|
878
|
-
return (c,
|
|
891
|
+
}, s = e, p = V(() => l[s.size]);
|
|
892
|
+
return (c, u) => (o(), i("div", ia, [
|
|
879
893
|
t("div", {
|
|
880
894
|
class: h(["card", [
|
|
881
895
|
c.theme === "dark" ? "card--dark" : "card--light",
|
|
882
896
|
c.orientation === "vertical" ? "vertical" : "horizontal",
|
|
883
|
-
|
|
897
|
+
p.value.class,
|
|
884
898
|
c.size === "large" && c.variant === "article" ? "card--large-article" : "",
|
|
885
899
|
c.variant === "product" ? "card--product" : "card--article"
|
|
886
900
|
]]),
|
|
887
|
-
style:
|
|
888
|
-
onMouseover:
|
|
889
|
-
onMouseout:
|
|
901
|
+
style: le([c.variant === "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
902
|
+
onMouseover: u[0] || (u[0] = (g) => re(r) ? r.value = !0 : r = !0),
|
|
903
|
+
onMouseout: u[1] || (u[1] = (g) => re(r) ? r.value = !1 : r = !1)
|
|
890
904
|
}, [
|
|
891
905
|
c.mediaType === "image" ? (o(), A(C, { key: 0 }, {
|
|
892
|
-
default:
|
|
893
|
-
|
|
906
|
+
default: S(() => [
|
|
907
|
+
_(c.$slots, "card-image", te({
|
|
894
908
|
src: c.imgSrc,
|
|
895
909
|
width: "596",
|
|
896
910
|
height: "335",
|
|
@@ -902,25 +916,25 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
902
916
|
_: 3
|
|
903
917
|
})) : (o(), i("div", {
|
|
904
918
|
key: 1,
|
|
905
|
-
class: h(["video-card__wrapper",
|
|
919
|
+
class: h(["video-card__wrapper", q(r) === !0 ? "vimeoPlaying" : ""])
|
|
906
920
|
}, [
|
|
907
|
-
|
|
908
|
-
play:
|
|
921
|
+
w(G, {
|
|
922
|
+
play: q(r),
|
|
909
923
|
"local-video": !0,
|
|
910
924
|
src: c.videoSrc,
|
|
911
925
|
"aria-label": c.arialabel,
|
|
912
926
|
controls: !1,
|
|
913
927
|
poster: c.imgSrc,
|
|
914
|
-
width:
|
|
915
|
-
height:
|
|
928
|
+
width: p.value.width,
|
|
929
|
+
height: p.value.height,
|
|
916
930
|
autoplay: !0,
|
|
917
931
|
loop: !0,
|
|
918
932
|
muted: !0
|
|
919
933
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
920
934
|
], 2)),
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
])) :
|
|
935
|
+
q(a)["card-label"] ? (o(), i("div", ra, [
|
|
936
|
+
_(c.$slots, "card-label")
|
|
937
|
+
])) : v("", !0),
|
|
924
938
|
c.variant === "product" ? (o(), i("h3", {
|
|
925
939
|
key: 3,
|
|
926
940
|
class: h(c.theme === "dark" ? "regular-dark" : "regular-blue"),
|
|
@@ -929,11 +943,11 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
929
943
|
key: 4,
|
|
930
944
|
class: h(c.theme === "dark" ? "regular-dark" : "regular-dark-blue")
|
|
931
945
|
}, n(c.headline), 3)),
|
|
932
|
-
c.variant === "product" ? (o(), i("p",
|
|
946
|
+
c.variant === "product" ? (o(), i("p", na, n(c.paragraph), 1)) : v("", !0)
|
|
933
947
|
], 38)
|
|
934
948
|
]));
|
|
935
949
|
}
|
|
936
|
-
}),
|
|
950
|
+
}), ca = /* @__PURE__ */ f(da, [["__scopeId", "data-v-c95ee545"]]), ua = (e) => (E("data-v-bc91c976"), e = e(), R(), e), _a = { class: "event__wrapper" }, ha = { class: "event__headline" }, pa = { class: "event__date-location" }, ma = /* @__PURE__ */ ua(() => /* @__PURE__ */ t("br", null, null, -1)), va = { class: "event__exhibitor" }, fa = /* @__PURE__ */ b({
|
|
937
951
|
__name: "event-card",
|
|
938
952
|
props: {
|
|
939
953
|
eventType: {
|
|
@@ -958,21 +972,21 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
958
972
|
}
|
|
959
973
|
},
|
|
960
974
|
setup(e) {
|
|
961
|
-
return (a, r) => (o(), i("div",
|
|
962
|
-
|
|
975
|
+
return (a, r) => (o(), i("div", _a, [
|
|
976
|
+
w(Y, {
|
|
963
977
|
"label-dark": !1,
|
|
964
978
|
text: e.eventType ? e.eventType : ""
|
|
965
979
|
}, null, 8, ["text"]),
|
|
966
|
-
t("div",
|
|
980
|
+
t("div", ha, n(e.headline), 1),
|
|
967
981
|
t("div", pa, [
|
|
968
982
|
j(n(e.dateTime), 1),
|
|
969
|
-
|
|
983
|
+
ma,
|
|
970
984
|
j(n(e.location), 1)
|
|
971
985
|
]),
|
|
972
|
-
t("div",
|
|
986
|
+
t("div", va, n(e.exhibitor), 1)
|
|
973
987
|
]));
|
|
974
988
|
}
|
|
975
|
-
}),
|
|
989
|
+
}), ga = /* @__PURE__ */ f(fa, [["__scopeId", "data-v-bc91c976"]]), ba = { class: "text__wrapper" }, ya = { class: "text__headline" }, $a = { class: "text__paragraph" }, ka = /* @__PURE__ */ b({
|
|
976
990
|
__name: "text-card",
|
|
977
991
|
props: {
|
|
978
992
|
label: {
|
|
@@ -989,21 +1003,21 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
989
1003
|
}
|
|
990
1004
|
},
|
|
991
1005
|
setup(e) {
|
|
992
|
-
return (a, r) => (o(), i("div",
|
|
993
|
-
|
|
1006
|
+
return (a, r) => (o(), i("div", ba, [
|
|
1007
|
+
w(Y, {
|
|
994
1008
|
"label-dark": !1,
|
|
995
1009
|
text: e.label ? e.label : ""
|
|
996
1010
|
}, null, 8, ["text"]),
|
|
997
|
-
t("div",
|
|
998
|
-
t("div",
|
|
1011
|
+
t("div", ya, n(e.headline), 1),
|
|
1012
|
+
t("div", $a, [
|
|
999
1013
|
t("p", null, n(e.paragraph), 1)
|
|
1000
1014
|
])
|
|
1001
1015
|
]));
|
|
1002
1016
|
}
|
|
1003
|
-
}),
|
|
1017
|
+
}), wa = /* @__PURE__ */ f(ka, [["__scopeId", "data-v-ebdea819"]]), Sa = { class: "facts__wrapper" }, Ba = { class: "facts__content" }, Ia = { class: "facts__headline" }, qa = { class: "facts" }, La = { class: "fact__value" }, Ta = { class: "fact__metric" }, Va = {
|
|
1004
1018
|
key: 0,
|
|
1005
1019
|
class: "facts__link"
|
|
1006
|
-
},
|
|
1020
|
+
}, Ca = /* @__PURE__ */ b({
|
|
1007
1021
|
__name: "facts",
|
|
1008
1022
|
props: {
|
|
1009
1023
|
headline: { default: "" },
|
|
@@ -1027,43 +1041,43 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1027
1041
|
}) }
|
|
1028
1042
|
},
|
|
1029
1043
|
setup(e) {
|
|
1030
|
-
return (a, r) => (o(), i("div",
|
|
1031
|
-
t("div",
|
|
1032
|
-
t("h2",
|
|
1033
|
-
t("div",
|
|
1044
|
+
return (a, r) => (o(), i("div", Sa, [
|
|
1045
|
+
t("div", Ba, [
|
|
1046
|
+
t("h2", Ia, n(a.headline), 1),
|
|
1047
|
+
t("div", qa, [
|
|
1034
1048
|
(o(!0), i(D, null, M(a.facts, (l) => (o(), i("div", {
|
|
1035
1049
|
key: l.value + l.metric,
|
|
1036
1050
|
class: "fact"
|
|
1037
1051
|
}, [
|
|
1038
|
-
t("div",
|
|
1052
|
+
t("div", La, [
|
|
1039
1053
|
t("span", null, n(l.value), 1)
|
|
1040
1054
|
]),
|
|
1041
|
-
t("div",
|
|
1055
|
+
t("div", Ta, [
|
|
1042
1056
|
t("span", null, n(l.metric), 1)
|
|
1043
1057
|
])
|
|
1044
1058
|
]))), 128))
|
|
1045
1059
|
]),
|
|
1046
|
-
a.link ? (o(), i("div",
|
|
1047
|
-
|
|
1060
|
+
a.link ? (o(), i("div", Va, [
|
|
1061
|
+
w(O, {
|
|
1048
1062
|
"link-type": "regular_light",
|
|
1049
1063
|
arrow: ""
|
|
1050
1064
|
}, {
|
|
1051
|
-
default:
|
|
1052
|
-
|
|
1065
|
+
default: S(() => [
|
|
1066
|
+
_(a.$slots, "facts-link", {}, void 0, !0)
|
|
1053
1067
|
]),
|
|
1054
1068
|
_: 3
|
|
1055
1069
|
})
|
|
1056
|
-
])) :
|
|
1070
|
+
])) : v("", !0)
|
|
1057
1071
|
])
|
|
1058
1072
|
]));
|
|
1059
1073
|
}
|
|
1060
|
-
}),
|
|
1074
|
+
}), Aa = /* @__PURE__ */ f(Ca, [["__scopeId", "data-v-d2b231d4"]]), Da = { class: "features__wrapper" }, Ma = { class: "features__content" }, Oa = {
|
|
1061
1075
|
key: 0,
|
|
1062
1076
|
class: "features__headline"
|
|
1063
|
-
},
|
|
1077
|
+
}, Pa = {
|
|
1064
1078
|
key: 1,
|
|
1065
1079
|
class: "features__body"
|
|
1066
|
-
},
|
|
1080
|
+
}, Fa = { class: "element__headline" }, Ea = { class: "element__body" }, Ra = /* @__PURE__ */ b({
|
|
1067
1081
|
__name: "features",
|
|
1068
1082
|
props: {
|
|
1069
1083
|
headline: { default: "" },
|
|
@@ -1071,14 +1085,14 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1071
1085
|
elements: { default: () => [] }
|
|
1072
1086
|
},
|
|
1073
1087
|
setup(e) {
|
|
1074
|
-
return (a, r) => (o(), i("div",
|
|
1075
|
-
t("div",
|
|
1076
|
-
a.headline ? (o(), i("div",
|
|
1088
|
+
return (a, r) => (o(), i("div", Da, [
|
|
1089
|
+
t("div", Ma, [
|
|
1090
|
+
a.headline ? (o(), i("div", Oa, [
|
|
1077
1091
|
t("h2", null, n(a.headline), 1)
|
|
1078
|
-
])) :
|
|
1079
|
-
a.body ? (o(), i("div",
|
|
1092
|
+
])) : v("", !0),
|
|
1093
|
+
a.body ? (o(), i("div", Pa, [
|
|
1080
1094
|
t("p", null, n(a.body), 1)
|
|
1081
|
-
])) :
|
|
1095
|
+
])) : v("", !0),
|
|
1082
1096
|
t("div", {
|
|
1083
1097
|
class: h(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1084
1098
|
}, [
|
|
@@ -1086,9 +1100,9 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1086
1100
|
key: l.headline,
|
|
1087
1101
|
class: "features__element"
|
|
1088
1102
|
}, [
|
|
1089
|
-
|
|
1090
|
-
default:
|
|
1091
|
-
|
|
1103
|
+
w(C, { class: "element__icon" }, {
|
|
1104
|
+
default: S(() => [
|
|
1105
|
+
_(a.$slots, "features-icon", P(F({
|
|
1092
1106
|
src: l.icon.src,
|
|
1093
1107
|
height: 30,
|
|
1094
1108
|
width: 30,
|
|
@@ -1097,14 +1111,14 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1097
1111
|
]),
|
|
1098
1112
|
_: 2
|
|
1099
1113
|
}, 1024),
|
|
1100
|
-
t("p",
|
|
1101
|
-
t("p",
|
|
1114
|
+
t("p", Fa, n(l.headline), 1),
|
|
1115
|
+
t("p", Ea, n(l.body), 1)
|
|
1102
1116
|
]))), 128))
|
|
1103
1117
|
], 2)
|
|
1104
1118
|
])
|
|
1105
1119
|
]));
|
|
1106
1120
|
}
|
|
1107
|
-
}),
|
|
1121
|
+
}), Na = /* @__PURE__ */ f(Ra, [["__scopeId", "data-v-1585e65f"]]), Ha = { class: "form__wrapper" }, za = { class: "form__content" }, Ua = { class: "form__information" }, Ka = { class: "form__headline" }, ja = { class: "form__body" }, Ga = { class: "form__script" }, Wa = /* @__PURE__ */ b({
|
|
1108
1122
|
__name: "form-script",
|
|
1109
1123
|
props: {
|
|
1110
1124
|
headline: {
|
|
@@ -1113,21 +1127,21 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1113
1127
|
}
|
|
1114
1128
|
},
|
|
1115
1129
|
setup(e) {
|
|
1116
|
-
return (a, r) => (o(), i("div",
|
|
1117
|
-
t("div",
|
|
1118
|
-
t("div",
|
|
1119
|
-
t("h2",
|
|
1120
|
-
t("div",
|
|
1121
|
-
|
|
1130
|
+
return (a, r) => (o(), i("div", Ha, [
|
|
1131
|
+
t("div", za, [
|
|
1132
|
+
t("div", Ua, [
|
|
1133
|
+
t("h2", Ka, n(e.headline), 1),
|
|
1134
|
+
t("div", ja, [
|
|
1135
|
+
_(a.$slots, "form-body", {}, void 0, !0)
|
|
1122
1136
|
])
|
|
1123
1137
|
]),
|
|
1124
|
-
t("div",
|
|
1125
|
-
|
|
1138
|
+
t("div", Ga, [
|
|
1139
|
+
_(a.$slots, "form-script", {}, void 0, !0)
|
|
1126
1140
|
])
|
|
1127
1141
|
])
|
|
1128
1142
|
]));
|
|
1129
1143
|
}
|
|
1130
|
-
}),
|
|
1144
|
+
}), Ya = /* @__PURE__ */ f(Wa, [["__scopeId", "data-v-55d9c2fd"]]), Qa = { class: "image__wrapper" }, Za = { class: "image__content" }, Ja = { class: "image__image" }, Xa = { class: "image__caption" }, xa = /* @__PURE__ */ b({
|
|
1131
1145
|
inheritAttrs: !1,
|
|
1132
1146
|
__name: "image",
|
|
1133
1147
|
props: {
|
|
@@ -1146,30 +1160,30 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1146
1160
|
}
|
|
1147
1161
|
},
|
|
1148
1162
|
setup(e) {
|
|
1149
|
-
return (a, r) => (o(), i("div",
|
|
1150
|
-
t("div",
|
|
1151
|
-
t("div",
|
|
1152
|
-
|
|
1153
|
-
default:
|
|
1154
|
-
|
|
1163
|
+
return (a, r) => (o(), i("div", Qa, [
|
|
1164
|
+
t("div", Za, [
|
|
1165
|
+
t("div", Ja, [
|
|
1166
|
+
w(C, null, {
|
|
1167
|
+
default: S(() => [
|
|
1168
|
+
_(a.$slots, "image", P(F({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1155
1169
|
]),
|
|
1156
1170
|
_: 3
|
|
1157
1171
|
})
|
|
1158
1172
|
]),
|
|
1159
|
-
t("p",
|
|
1173
|
+
t("p", Xa, n(e.caption), 1)
|
|
1160
1174
|
])
|
|
1161
1175
|
]));
|
|
1162
1176
|
}
|
|
1163
|
-
}),
|
|
1177
|
+
}), el = /* @__PURE__ */ f(xa, [["__scopeId", "data-v-79ce0bb6"]]), tl = { class: "gallery__large" }, al = {
|
|
1164
1178
|
key: 0,
|
|
1165
1179
|
class: "image image--large"
|
|
1166
|
-
},
|
|
1180
|
+
}, ll = {
|
|
1167
1181
|
key: 1,
|
|
1168
1182
|
class: "video"
|
|
1169
|
-
},
|
|
1183
|
+
}, ol = {
|
|
1170
1184
|
key: 0,
|
|
1171
1185
|
class: "body"
|
|
1172
|
-
},
|
|
1186
|
+
}, sl = /* @__PURE__ */ b({
|
|
1173
1187
|
__name: "image-gallery",
|
|
1174
1188
|
props: {
|
|
1175
1189
|
mediaLarge: {},
|
|
@@ -1185,8 +1199,8 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1185
1199
|
white: "",
|
|
1186
1200
|
light: "gallery__wrapper--light",
|
|
1187
1201
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1188
|
-
}, r = e, l =
|
|
1189
|
-
return (s,
|
|
1202
|
+
}, r = e, l = V(() => a[r.bgColor]);
|
|
1203
|
+
return (s, p) => (o(), i("div", {
|
|
1190
1204
|
class: h(["gallery__wrapper", l.value])
|
|
1191
1205
|
}, [
|
|
1192
1206
|
t("div", {
|
|
@@ -1195,11 +1209,11 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1195
1209
|
s.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1196
1210
|
])
|
|
1197
1211
|
}, [
|
|
1198
|
-
t("div",
|
|
1199
|
-
s.mediaLarge && s.mediaType === "image" ? (o(), i("div",
|
|
1200
|
-
|
|
1201
|
-
default:
|
|
1202
|
-
|
|
1212
|
+
t("div", tl, [
|
|
1213
|
+
s.mediaLarge && s.mediaType === "image" ? (o(), i("div", al, [
|
|
1214
|
+
w(C, null, {
|
|
1215
|
+
default: S(() => [
|
|
1216
|
+
_(s.$slots, "image-large", P(F({
|
|
1203
1217
|
width: 617,
|
|
1204
1218
|
height: 530,
|
|
1205
1219
|
src: s.mediaLarge.src,
|
|
@@ -1208,9 +1222,9 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1208
1222
|
]),
|
|
1209
1223
|
_: 3
|
|
1210
1224
|
})
|
|
1211
|
-
])) :
|
|
1212
|
-
s.mediaLarge && s.mediaType === "video" ? (o(), i("div",
|
|
1213
|
-
|
|
1225
|
+
])) : v("", !0),
|
|
1226
|
+
s.mediaLarge && s.mediaType === "video" ? (o(), i("div", ll, [
|
|
1227
|
+
w(G, {
|
|
1214
1228
|
src: s.mediaLarge.src,
|
|
1215
1229
|
"local-video": "",
|
|
1216
1230
|
"aria-label": s.mediaLarge.alt,
|
|
@@ -1222,10 +1236,10 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1222
1236
|
muted: "",
|
|
1223
1237
|
play: ""
|
|
1224
1238
|
}, null, 8, ["src", "aria-label"])
|
|
1225
|
-
])) :
|
|
1239
|
+
])) : v("", !0)
|
|
1226
1240
|
]),
|
|
1227
1241
|
t("div", {
|
|
1228
|
-
style:
|
|
1242
|
+
style: le([s.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
1229
1243
|
class: h([
|
|
1230
1244
|
"gallery__small",
|
|
1231
1245
|
s.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
@@ -1235,9 +1249,9 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1235
1249
|
key: c.src + c.alt,
|
|
1236
1250
|
class: "image image--small"
|
|
1237
1251
|
}, [
|
|
1238
|
-
|
|
1239
|
-
default:
|
|
1240
|
-
|
|
1252
|
+
w(C, null, {
|
|
1253
|
+
default: S(() => [
|
|
1254
|
+
_(s.$slots, "image-small", P(F({
|
|
1241
1255
|
width: 328,
|
|
1242
1256
|
height: 246,
|
|
1243
1257
|
src: c.src,
|
|
@@ -1247,14 +1261,14 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1247
1261
|
_: 2
|
|
1248
1262
|
}, 1024)
|
|
1249
1263
|
]))), 128)),
|
|
1250
|
-
s.mediaSmall.length < 2 ? (o(), i("div",
|
|
1264
|
+
s.mediaSmall.length < 2 ? (o(), i("div", ol, [
|
|
1251
1265
|
t("p", null, n(s.body), 1)
|
|
1252
|
-
])) :
|
|
1266
|
+
])) : v("", !0)
|
|
1253
1267
|
], 6)
|
|
1254
1268
|
], 2)
|
|
1255
1269
|
], 2));
|
|
1256
1270
|
}
|
|
1257
|
-
}),
|
|
1271
|
+
}), il = /* @__PURE__ */ f(sl, [["__scopeId", "data-v-029495a0"]]), rl = { class: "headline__wrapper" }, nl = { class: "headline__h1" }, dl = /* @__PURE__ */ b({
|
|
1258
1272
|
__name: "headline",
|
|
1259
1273
|
props: {
|
|
1260
1274
|
headline: {
|
|
@@ -1271,7 +1285,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1271
1285
|
}
|
|
1272
1286
|
},
|
|
1273
1287
|
setup(e) {
|
|
1274
|
-
return (a, r) => (o(), i("div",
|
|
1288
|
+
return (a, r) => (o(), i("div", rl, [
|
|
1275
1289
|
t("div", {
|
|
1276
1290
|
class: h({
|
|
1277
1291
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1280,11 +1294,11 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1280
1294
|
"headline__content--default": !e.article && !e.subMenu
|
|
1281
1295
|
})
|
|
1282
1296
|
}, [
|
|
1283
|
-
t("h1",
|
|
1297
|
+
t("h1", nl, n(e.headline), 1)
|
|
1284
1298
|
], 2)
|
|
1285
1299
|
]));
|
|
1286
1300
|
}
|
|
1287
|
-
}),
|
|
1301
|
+
}), cl = /* @__PURE__ */ f(dl, [["__scopeId", "data-v-080238bd"]]), ul = (e) => (E("data-v-bfcd60d5"), e = e(), R(), e), _l = { class: "hero__wrapper" }, hl = { class: "hero__content" }, pl = { class: "hero__top" }, ml = { class: "hero__elements" }, vl = { class: "hero__headline" }, fl = { class: "hero__link" }, gl = { class: "hero__video" }, bl = /* @__PURE__ */ ul(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), yl = /* @__PURE__ */ b({
|
|
1288
1302
|
__name: "hero",
|
|
1289
1303
|
props: {
|
|
1290
1304
|
headline: {
|
|
@@ -1297,29 +1311,29 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1297
1311
|
}
|
|
1298
1312
|
},
|
|
1299
1313
|
setup(e) {
|
|
1300
|
-
return (a, r) => (o(), i("div",
|
|
1301
|
-
t("div",
|
|
1314
|
+
return (a, r) => (o(), i("div", _l, [
|
|
1315
|
+
t("div", hl, [
|
|
1302
1316
|
t("div", pl, [
|
|
1303
|
-
t("div",
|
|
1304
|
-
t("div",
|
|
1317
|
+
t("div", ml, [
|
|
1318
|
+
t("div", vl, [
|
|
1305
1319
|
t("h1", null, n(e.headline), 1)
|
|
1306
1320
|
]),
|
|
1307
|
-
t("div",
|
|
1308
|
-
|
|
1321
|
+
t("div", fl, [
|
|
1322
|
+
w(O, {
|
|
1309
1323
|
"link-type": "regular_light",
|
|
1310
1324
|
arrow: ""
|
|
1311
1325
|
}, {
|
|
1312
|
-
default:
|
|
1313
|
-
|
|
1326
|
+
default: S(() => [
|
|
1327
|
+
_(a.$slots, "hero-link", {}, void 0, !0)
|
|
1314
1328
|
]),
|
|
1315
1329
|
_: 3
|
|
1316
1330
|
})
|
|
1317
1331
|
])
|
|
1318
1332
|
])
|
|
1319
1333
|
]),
|
|
1320
|
-
t("div",
|
|
1321
|
-
|
|
1322
|
-
|
|
1334
|
+
t("div", gl, [
|
|
1335
|
+
bl,
|
|
1336
|
+
w(G, {
|
|
1323
1337
|
src: e.video.src,
|
|
1324
1338
|
"local-video": "",
|
|
1325
1339
|
"aria-label": e.video.alt,
|
|
@@ -1334,10 +1348,10 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1334
1348
|
])
|
|
1335
1349
|
]));
|
|
1336
1350
|
}
|
|
1337
|
-
}),
|
|
1351
|
+
}), $l = /* @__PURE__ */ f(yl, [["__scopeId", "data-v-bfcd60d5"]]), kl = { class: "logo-wall__wrapper" }, wl = { class: "logo-wall__content" }, Sl = {
|
|
1338
1352
|
key: 0,
|
|
1339
1353
|
class: "logo-wall__text"
|
|
1340
|
-
},
|
|
1354
|
+
}, Bl = { key: 0 }, Il = { key: 1 }, ql = { class: "logo-wall__logos" }, Ll = { class: "logo-wall__link" }, Tl = /* @__PURE__ */ b({
|
|
1341
1355
|
__name: "logo-wall",
|
|
1342
1356
|
props: {
|
|
1343
1357
|
headline: {
|
|
@@ -1355,20 +1369,20 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1355
1369
|
}
|
|
1356
1370
|
},
|
|
1357
1371
|
setup(e) {
|
|
1358
|
-
return (a, r) => (o(), i("div",
|
|
1359
|
-
t("div",
|
|
1360
|
-
e.headline || e.body ? (o(), i("div",
|
|
1361
|
-
e.headline ? (o(), i("h2",
|
|
1362
|
-
e.body ? (o(), i("p",
|
|
1363
|
-
])) :
|
|
1364
|
-
t("div",
|
|
1372
|
+
return (a, r) => (o(), i("div", kl, [
|
|
1373
|
+
t("div", wl, [
|
|
1374
|
+
e.headline || e.body ? (o(), i("div", Sl, [
|
|
1375
|
+
e.headline ? (o(), i("h2", Bl, n(e.headline), 1)) : v("", !0),
|
|
1376
|
+
e.body ? (o(), i("p", Il, n(e.body), 1)) : v("", !0)
|
|
1377
|
+
])) : v("", !0),
|
|
1378
|
+
t("div", ql, [
|
|
1365
1379
|
(o(!0), i(D, null, M(e.logos, (l) => (o(), i("div", {
|
|
1366
1380
|
key: l.src + l.alt,
|
|
1367
1381
|
class: "logo-wall__logo"
|
|
1368
1382
|
}, [
|
|
1369
|
-
|
|
1370
|
-
default:
|
|
1371
|
-
|
|
1383
|
+
w(C, null, {
|
|
1384
|
+
default: S(() => [
|
|
1385
|
+
_(a.$slots, "logo-wall-logo", P(F({
|
|
1372
1386
|
width: 130,
|
|
1373
1387
|
height: 130,
|
|
1374
1388
|
src: l.src,
|
|
@@ -1379,13 +1393,13 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1379
1393
|
}, 1024)
|
|
1380
1394
|
]))), 128))
|
|
1381
1395
|
]),
|
|
1382
|
-
t("div",
|
|
1383
|
-
|
|
1396
|
+
t("div", Ll, [
|
|
1397
|
+
w(O, {
|
|
1384
1398
|
"link-type": "regular_light",
|
|
1385
1399
|
arrow: !0
|
|
1386
1400
|
}, {
|
|
1387
|
-
default:
|
|
1388
|
-
|
|
1401
|
+
default: S(() => [
|
|
1402
|
+
_(a.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1389
1403
|
]),
|
|
1390
1404
|
_: 3
|
|
1391
1405
|
})
|
|
@@ -1393,13 +1407,13 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1393
1407
|
])
|
|
1394
1408
|
]));
|
|
1395
1409
|
}
|
|
1396
|
-
}),
|
|
1410
|
+
}), Vl = /* @__PURE__ */ f(Tl, [["__scopeId", "data-v-a8afd396"]]), Cl = { class: "micro-stories__top" }, Al = {
|
|
1397
1411
|
key: 0,
|
|
1398
1412
|
class: "headline"
|
|
1399
|
-
},
|
|
1413
|
+
}, Dl = {
|
|
1400
1414
|
key: 1,
|
|
1401
1415
|
class: "body"
|
|
1402
|
-
},
|
|
1416
|
+
}, Ml = { class: "micro-stories__splide" }, Ol = /* @__PURE__ */ b({
|
|
1403
1417
|
__name: "micro-stories",
|
|
1404
1418
|
props: {
|
|
1405
1419
|
bgColor: { default: "blue" },
|
|
@@ -1411,36 +1425,36 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1411
1425
|
white: "micro-stories__wrapper--white",
|
|
1412
1426
|
blue: "micro-stories__wrapper--blue",
|
|
1413
1427
|
dark: "micro-stories__wrapper--dark"
|
|
1414
|
-
}, r =
|
|
1415
|
-
return (s,
|
|
1428
|
+
}, r = V(() => a[l.bgColor]), l = e;
|
|
1429
|
+
return (s, p) => (o(), i("div", {
|
|
1416
1430
|
class: h(["micro-stories__wrapper", r.value])
|
|
1417
1431
|
}, [
|
|
1418
|
-
t("div",
|
|
1419
|
-
s.headline ? (o(), i("div",
|
|
1432
|
+
t("div", Cl, [
|
|
1433
|
+
s.headline ? (o(), i("div", Al, [
|
|
1420
1434
|
t("h2", null, n(s.headline), 1)
|
|
1421
|
-
])) :
|
|
1422
|
-
s.body ? (o(), i("div",
|
|
1435
|
+
])) : v("", !0),
|
|
1436
|
+
s.body ? (o(), i("div", Dl, [
|
|
1423
1437
|
t("p", null, n(s.body), 1)
|
|
1424
|
-
])) :
|
|
1438
|
+
])) : v("", !0)
|
|
1425
1439
|
]),
|
|
1426
|
-
t("div",
|
|
1427
|
-
|
|
1440
|
+
t("div", Ml, [
|
|
1441
|
+
_(s.$slots, "micro-stories-slides")
|
|
1428
1442
|
]),
|
|
1429
|
-
|
|
1443
|
+
_(s.$slots, "micro-stories-controls")
|
|
1430
1444
|
], 2));
|
|
1431
1445
|
}
|
|
1432
|
-
}),
|
|
1433
|
-
function
|
|
1434
|
-
return o(), i("div",
|
|
1435
|
-
t("div",
|
|
1436
|
-
|
|
1446
|
+
}), Pl = {}, Fl = { class: "policy__wrapper" }, El = { class: "policy__content" };
|
|
1447
|
+
function Rl(e, a) {
|
|
1448
|
+
return o(), i("div", Fl, [
|
|
1449
|
+
t("div", El, [
|
|
1450
|
+
_(e.$slots, "default", {}, void 0, !0)
|
|
1437
1451
|
])
|
|
1438
1452
|
]);
|
|
1439
1453
|
}
|
|
1440
|
-
const
|
|
1454
|
+
const Nl = /* @__PURE__ */ f(Pl, [["render", Rl], ["__scopeId", "data-v-8765ee0b"]]), Hl = { class: "card-display__wrapper" }, zl = {
|
|
1441
1455
|
key: 0,
|
|
1442
1456
|
class: "card__content"
|
|
1443
|
-
},
|
|
1457
|
+
}, Ul = { key: 0 }, Kl = { key: 1 }, jl = { class: "card__cards" }, Gl = /* @__PURE__ */ b({
|
|
1444
1458
|
__name: "card-display",
|
|
1445
1459
|
props: {
|
|
1446
1460
|
headline: {
|
|
@@ -1463,18 +1477,18 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1463
1477
|
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1464
1478
|
])
|
|
1465
1479
|
}, [
|
|
1466
|
-
t("div",
|
|
1467
|
-
e.headline || e.paragraph ? (o(), i("div",
|
|
1468
|
-
e.headline ? (o(), i("h2",
|
|
1469
|
-
e.paragraph ? (o(), i("p",
|
|
1470
|
-
])) :
|
|
1471
|
-
t("div",
|
|
1472
|
-
|
|
1480
|
+
t("div", Hl, [
|
|
1481
|
+
e.headline || e.paragraph ? (o(), i("div", zl, [
|
|
1482
|
+
e.headline ? (o(), i("h2", Ul, n(e.headline), 1)) : v("", !0),
|
|
1483
|
+
e.paragraph ? (o(), i("p", Kl, n(e.paragraph), 1)) : v("", !0)
|
|
1484
|
+
])) : v("", !0),
|
|
1485
|
+
t("div", jl, [
|
|
1486
|
+
_(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1473
1487
|
])
|
|
1474
1488
|
])
|
|
1475
1489
|
], 2));
|
|
1476
1490
|
}
|
|
1477
|
-
}),
|
|
1491
|
+
}), Wl = /* @__PURE__ */ f(Gl, [["__scopeId", "data-v-183dcee5"]]), Yl = { class: "promo__content" }, Ql = /* @__PURE__ */ b({
|
|
1478
1492
|
__name: "promo",
|
|
1479
1493
|
props: {
|
|
1480
1494
|
label: { default: "" },
|
|
@@ -1494,15 +1508,15 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1494
1508
|
dark: "promo__wrapper--dark",
|
|
1495
1509
|
light: "promo__wrapper--light",
|
|
1496
1510
|
default: "promo__wrapper--default"
|
|
1497
|
-
}, r = e, l =
|
|
1498
|
-
return (s,
|
|
1511
|
+
}, r = e, l = V(() => a[r.variant]);
|
|
1512
|
+
return (s, p) => (o(), i("div", {
|
|
1499
1513
|
class: h([
|
|
1500
1514
|
"promo__wrapper",
|
|
1501
1515
|
l.value,
|
|
1502
1516
|
s.teaser ? "promo__wrapper--teaser" : ""
|
|
1503
1517
|
])
|
|
1504
1518
|
}, [
|
|
1505
|
-
t("div",
|
|
1519
|
+
t("div", Yl, [
|
|
1506
1520
|
s.mediaType === "image" ? (o(), i("div", {
|
|
1507
1521
|
key: 0,
|
|
1508
1522
|
class: h([
|
|
@@ -1510,13 +1524,13 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1510
1524
|
s.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1511
1525
|
])
|
|
1512
1526
|
}, [
|
|
1513
|
-
|
|
1514
|
-
default:
|
|
1515
|
-
|
|
1527
|
+
w(C, null, {
|
|
1528
|
+
default: S(() => [
|
|
1529
|
+
_(s.$slots, "promo-image", P(F({ src: s.src, width: 1920, alt: s.alt, height: 1080 })))
|
|
1516
1530
|
]),
|
|
1517
1531
|
_: 3
|
|
1518
1532
|
})
|
|
1519
|
-
], 2)) :
|
|
1533
|
+
], 2)) : v("", !0),
|
|
1520
1534
|
s.mediaType === "video" ? (o(), i("div", {
|
|
1521
1535
|
key: 1,
|
|
1522
1536
|
class: h([
|
|
@@ -1524,7 +1538,7 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1524
1538
|
s.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1525
1539
|
])
|
|
1526
1540
|
}, [
|
|
1527
|
-
|
|
1541
|
+
w(G, {
|
|
1528
1542
|
src: s.src,
|
|
1529
1543
|
"local-video": "",
|
|
1530
1544
|
"aria-label": s.alt,
|
|
@@ -1535,7 +1549,7 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1535
1549
|
play: "",
|
|
1536
1550
|
poster: s.fallbackImage
|
|
1537
1551
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1538
|
-
], 2)) :
|
|
1552
|
+
], 2)) : v("", !0),
|
|
1539
1553
|
t("div", {
|
|
1540
1554
|
class: h([
|
|
1541
1555
|
"promo__text",
|
|
@@ -1546,7 +1560,7 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1546
1560
|
key: 0,
|
|
1547
1561
|
text: s.label,
|
|
1548
1562
|
"label-dark": s.variant === "dark"
|
|
1549
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
1563
|
+
}, null, 8, ["text", "label-dark"])) : v("", !0),
|
|
1550
1564
|
t("div", {
|
|
1551
1565
|
class: h([
|
|
1552
1566
|
"promo__title",
|
|
@@ -1558,28 +1572,28 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1558
1572
|
"link-type": s.variant === "dark" ? "regular_dark" : (s.variant === "light", "regular_light"),
|
|
1559
1573
|
arrow: ""
|
|
1560
1574
|
}, {
|
|
1561
|
-
default:
|
|
1562
|
-
|
|
1575
|
+
default: S(() => [
|
|
1576
|
+
_(s.$slots, "promo-link")
|
|
1563
1577
|
]),
|
|
1564
1578
|
_: 3
|
|
1565
|
-
}, 8, ["link-type"])) :
|
|
1579
|
+
}, 8, ["link-type"])) : v("", !0),
|
|
1566
1580
|
s.linkType === "button" ? (o(), A(O, {
|
|
1567
1581
|
key: 2,
|
|
1568
1582
|
"link-type": s.variant === "dark" ? "secondary_dark" : (s.variant === "light", "secondary")
|
|
1569
1583
|
}, {
|
|
1570
|
-
default:
|
|
1571
|
-
|
|
1584
|
+
default: S(() => [
|
|
1585
|
+
_(s.$slots, "promo-link")
|
|
1572
1586
|
]),
|
|
1573
1587
|
_: 3
|
|
1574
|
-
}, 8, ["link-type"])) :
|
|
1588
|
+
}, 8, ["link-type"])) : v("", !0)
|
|
1575
1589
|
], 2)
|
|
1576
1590
|
])
|
|
1577
1591
|
], 2));
|
|
1578
1592
|
}
|
|
1579
|
-
}),
|
|
1593
|
+
}), Zl = /* @__PURE__ */ f(Ql, [["__scopeId", "data-v-7e80a0f0"]]), Jl = (e) => (E("data-v-e3cc8e27"), e = e(), R(), e), Xl = { class: "quote__wrapper" }, xl = { class: "quote__content" }, eo = /* @__PURE__ */ Jl(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), to = { class: "quote__quote" }, ao = { class: "quote__quote-text" }, lo = { class: "quote__author" }, oo = {
|
|
1580
1594
|
key: 0,
|
|
1581
1595
|
class: "quote__image"
|
|
1582
|
-
},
|
|
1596
|
+
}, so = { class: "quote__text" }, io = { class: "quote__author-name" }, ro = { class: "quote__author-title" }, no = /* @__PURE__ */ b({
|
|
1583
1597
|
__name: "quote",
|
|
1584
1598
|
props: {
|
|
1585
1599
|
quote: {
|
|
@@ -1601,16 +1615,16 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1601
1615
|
}
|
|
1602
1616
|
},
|
|
1603
1617
|
setup(e) {
|
|
1604
|
-
return (a, r) => (o(), i("div",
|
|
1605
|
-
t("div",
|
|
1606
|
-
|
|
1607
|
-
t("div",
|
|
1608
|
-
t("p",
|
|
1609
|
-
t("div",
|
|
1610
|
-
e.authorImage ? (o(), i("div",
|
|
1611
|
-
|
|
1612
|
-
default:
|
|
1613
|
-
|
|
1618
|
+
return (a, r) => (o(), i("div", Xl, [
|
|
1619
|
+
t("div", xl, [
|
|
1620
|
+
eo,
|
|
1621
|
+
t("div", to, [
|
|
1622
|
+
t("p", ao, n(e.quote), 1),
|
|
1623
|
+
t("div", lo, [
|
|
1624
|
+
e.authorImage ? (o(), i("div", oo, [
|
|
1625
|
+
w(C, null, {
|
|
1626
|
+
default: S(() => [
|
|
1627
|
+
_(a.$slots, "author-image", P(F({
|
|
1614
1628
|
src: e.authorImage + "/m/100x100",
|
|
1615
1629
|
width: 60,
|
|
1616
1630
|
height: 60
|
|
@@ -1618,23 +1632,23 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1618
1632
|
]),
|
|
1619
1633
|
_: 3
|
|
1620
1634
|
})
|
|
1621
|
-
])) :
|
|
1622
|
-
t("div",
|
|
1623
|
-
t("p",
|
|
1624
|
-
t("p",
|
|
1635
|
+
])) : v("", !0),
|
|
1636
|
+
t("div", so, [
|
|
1637
|
+
t("p", io, n(e.author), 1),
|
|
1638
|
+
t("p", ro, n(e.authorTitle), 1)
|
|
1625
1639
|
])
|
|
1626
1640
|
])
|
|
1627
1641
|
])
|
|
1628
1642
|
])
|
|
1629
1643
|
]));
|
|
1630
1644
|
}
|
|
1631
|
-
}),
|
|
1645
|
+
}), co = /* @__PURE__ */ f(no, [["__scopeId", "data-v-e3cc8e27"]]), uo = { class: "rich-text__wrapper" }, _o = {
|
|
1632
1646
|
key: 0,
|
|
1633
1647
|
class: "rich-text__links"
|
|
1634
|
-
},
|
|
1648
|
+
}, ho = {
|
|
1635
1649
|
key: 0,
|
|
1636
1650
|
class: "rich-text__bullet-list"
|
|
1637
|
-
}, po = /* @__PURE__ */
|
|
1651
|
+
}, po = /* @__PURE__ */ b({
|
|
1638
1652
|
__name: "rich-text",
|
|
1639
1653
|
props: {
|
|
1640
1654
|
headline: { default: "" },
|
|
@@ -1653,19 +1667,19 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1653
1667
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1654
1668
|
])
|
|
1655
1669
|
}, [
|
|
1656
|
-
t("div",
|
|
1670
|
+
t("div", uo, [
|
|
1657
1671
|
a.label ? (o(), A(Y, {
|
|
1658
1672
|
key: 0,
|
|
1659
1673
|
text: a.label,
|
|
1660
1674
|
"label-dark": !1
|
|
1661
|
-
}, null, 8, ["text"])) :
|
|
1675
|
+
}, null, 8, ["text"])) : v("", !0),
|
|
1662
1676
|
a.headline ? (o(), i("h2", {
|
|
1663
1677
|
key: 1,
|
|
1664
1678
|
class: h([
|
|
1665
1679
|
"rich-text__headline",
|
|
1666
1680
|
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
1667
1681
|
])
|
|
1668
|
-
}, n(a.headline), 3)) :
|
|
1682
|
+
}, n(a.headline), 3)) : v("", !0),
|
|
1669
1683
|
t("div", {
|
|
1670
1684
|
class: h([
|
|
1671
1685
|
"rich-text__content",
|
|
@@ -1678,14 +1692,14 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1678
1692
|
a.bulletList || a.image ? "rich-text__body--content-right" : ""
|
|
1679
1693
|
])
|
|
1680
1694
|
}, [
|
|
1681
|
-
|
|
1682
|
-
a.links ? (o(), i("div",
|
|
1683
|
-
|
|
1684
|
-
])) :
|
|
1695
|
+
_(a.$slots, "rich-text-content"),
|
|
1696
|
+
a.links ? (o(), i("div", _o, [
|
|
1697
|
+
_(a.$slots, "rich-text-links")
|
|
1698
|
+
])) : v("", !0)
|
|
1685
1699
|
], 2),
|
|
1686
|
-
a.bulletList ? (o(), i("div",
|
|
1687
|
-
|
|
1688
|
-
])) :
|
|
1700
|
+
a.bulletList ? (o(), i("div", ho, [
|
|
1701
|
+
_(a.$slots, "rich-text-bullet-list")
|
|
1702
|
+
])) : v("", !0),
|
|
1689
1703
|
a.image ? (o(), i("div", {
|
|
1690
1704
|
key: 1,
|
|
1691
1705
|
class: h([
|
|
@@ -1693,38 +1707,38 @@ const Rl = /* @__PURE__ */ v(Ol, [["render", El], ["__scopeId", "data-v-8765ee0b
|
|
|
1693
1707
|
a.imageClip ? "rich-text__image--clip" : ""
|
|
1694
1708
|
])
|
|
1695
1709
|
}, [
|
|
1696
|
-
|
|
1697
|
-
default:
|
|
1698
|
-
|
|
1710
|
+
w(C, null, {
|
|
1711
|
+
default: S(() => [
|
|
1712
|
+
_(a.$slots, "rich-text-image", P(F({ width: 865, height: 307 })))
|
|
1699
1713
|
]),
|
|
1700
1714
|
_: 3
|
|
1701
1715
|
})
|
|
1702
|
-
], 2)) :
|
|
1716
|
+
], 2)) : v("", !0)
|
|
1703
1717
|
], 2)
|
|
1704
1718
|
])
|
|
1705
1719
|
], 2));
|
|
1706
1720
|
}
|
|
1707
|
-
}),
|
|
1708
|
-
function
|
|
1709
|
-
return o(), i("div",
|
|
1710
|
-
t("div",
|
|
1711
|
-
t("div",
|
|
1712
|
-
t("div",
|
|
1721
|
+
}), mo = /* @__PURE__ */ f(po, [["__scopeId", "data-v-7bcde564"]]), vo = {}, fo = { class: "rich-text" }, go = { class: "rich-text__wrapper" }, bo = { class: "rich-text__content rich-text__content--left-aligned" }, yo = { class: "rich-text__body" };
|
|
1722
|
+
function $o(e, a) {
|
|
1723
|
+
return o(), i("div", fo, [
|
|
1724
|
+
t("div", go, [
|
|
1725
|
+
t("div", bo, [
|
|
1726
|
+
t("div", yo, [
|
|
1713
1727
|
t("div", null, [
|
|
1714
|
-
|
|
1728
|
+
_(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
1715
1729
|
]),
|
|
1716
1730
|
t("div", null, [
|
|
1717
|
-
|
|
1731
|
+
_(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
1718
1732
|
])
|
|
1719
1733
|
])
|
|
1720
1734
|
])
|
|
1721
1735
|
])
|
|
1722
1736
|
]);
|
|
1723
1737
|
}
|
|
1724
|
-
const
|
|
1738
|
+
const ko = /* @__PURE__ */ f(vo, [["render", $o], ["__scopeId", "data-v-3abe0bb4"]]), wo = (e) => (E("data-v-78d319df"), e = e(), R(), e), So = { class: "timeline__wrapper" }, Bo = { class: "timeline__content" }, Io = { class: "timeline__items" }, qo = { class: "item__left" }, Lo = /* @__PURE__ */ wo(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
1725
1739
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
1726
1740
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
1727
|
-
], -1)),
|
|
1741
|
+
], -1)), To = { class: "item__right" }, Vo = ["innerHTML"], Co = /* @__PURE__ */ b({
|
|
1728
1742
|
__name: "timeline",
|
|
1729
1743
|
props: {
|
|
1730
1744
|
timelineItems: {
|
|
@@ -1733,7 +1747,7 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1733
1747
|
}
|
|
1734
1748
|
},
|
|
1735
1749
|
setup(e) {
|
|
1736
|
-
return
|
|
1750
|
+
return ae(() => {
|
|
1737
1751
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
1738
1752
|
(l) => {
|
|
1739
1753
|
l.forEach((s) => {
|
|
@@ -1747,40 +1761,40 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1747
1761
|
a.forEach((l) => {
|
|
1748
1762
|
r.observe(l);
|
|
1749
1763
|
});
|
|
1750
|
-
}), (a, r) => (o(), i("div",
|
|
1751
|
-
t("div",
|
|
1752
|
-
t("div",
|
|
1764
|
+
}), (a, r) => (o(), i("div", So, [
|
|
1765
|
+
t("div", Bo, [
|
|
1766
|
+
t("div", Io, [
|
|
1753
1767
|
(o(!0), i(D, null, M(e.timelineItems, (l) => (o(), i("div", {
|
|
1754
1768
|
key: l.year,
|
|
1755
1769
|
class: "timeline__item faded"
|
|
1756
1770
|
}, [
|
|
1757
|
-
t("div",
|
|
1758
|
-
|
|
1759
|
-
t("div",
|
|
1760
|
-
|
|
1761
|
-
default:
|
|
1762
|
-
l.media.type === "image" ?
|
|
1771
|
+
t("div", qo, n(l.year), 1),
|
|
1772
|
+
Lo,
|
|
1773
|
+
t("div", To, [
|
|
1774
|
+
w(C, null, {
|
|
1775
|
+
default: S(() => [
|
|
1776
|
+
l.media.type === "image" ? _(a.$slots, "timeline-image", P(te({ key: 0 }, { src: l.media.src, alt: l.media.alt })), void 0, !0) : v("", !0)
|
|
1763
1777
|
]),
|
|
1764
1778
|
_: 2
|
|
1765
1779
|
}, 1024),
|
|
1766
1780
|
t("div", {
|
|
1767
|
-
style:
|
|
1781
|
+
style: le([l.media.type === "none" ? "margin-top: 0px" : ""]),
|
|
1768
1782
|
class: "rich-text",
|
|
1769
1783
|
innerHTML: l.text
|
|
1770
|
-
}, null, 12,
|
|
1784
|
+
}, null, 12, Vo)
|
|
1771
1785
|
])
|
|
1772
1786
|
]))), 128))
|
|
1773
1787
|
])
|
|
1774
1788
|
])
|
|
1775
1789
|
]));
|
|
1776
1790
|
}
|
|
1777
|
-
}),
|
|
1791
|
+
}), Ao = /* @__PURE__ */ f(Co, [["__scopeId", "data-v-78d319df"]]), Do = { class: "vimeo" }, Mo = { class: "vimeo__wrapper" }, Oo = {
|
|
1778
1792
|
key: 0,
|
|
1779
1793
|
class: "vimeo__headline"
|
|
1780
|
-
},
|
|
1794
|
+
}, Po = {
|
|
1781
1795
|
key: 1,
|
|
1782
1796
|
class: "vimeo__description"
|
|
1783
|
-
},
|
|
1797
|
+
}, Fo = /* @__PURE__ */ b({
|
|
1784
1798
|
__name: "vimeo",
|
|
1785
1799
|
props: {
|
|
1786
1800
|
headline: {
|
|
@@ -1793,15 +1807,15 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1793
1807
|
}
|
|
1794
1808
|
},
|
|
1795
1809
|
setup(e) {
|
|
1796
|
-
return (a, r) => (o(), i("div",
|
|
1797
|
-
t("div",
|
|
1798
|
-
e.headline ? (o(), i("h2",
|
|
1799
|
-
|
|
1800
|
-
e.description ? (o(), i("p",
|
|
1810
|
+
return (a, r) => (o(), i("div", Do, [
|
|
1811
|
+
t("div", Mo, [
|
|
1812
|
+
e.headline ? (o(), i("h2", Oo, n(e.headline), 1)) : v("", !0),
|
|
1813
|
+
_(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
1814
|
+
e.description ? (o(), i("p", Po, n(e.description), 1)) : v("", !0)
|
|
1801
1815
|
])
|
|
1802
1816
|
]));
|
|
1803
1817
|
}
|
|
1804
|
-
}),
|
|
1818
|
+
}), Eo = /* @__PURE__ */ f(Fo, [["__scopeId", "data-v-599c68c7"]]), Ro = { class: "not-found__wrapper" }, No = { class: "not-found__content" }, Ho = { class: "not-found__headline" }, zo = { class: "not-found__body" }, Uo = /* @__PURE__ */ b({
|
|
1805
1819
|
__name: "404",
|
|
1806
1820
|
props: {
|
|
1807
1821
|
headline: {
|
|
@@ -1810,16 +1824,16 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1810
1824
|
}
|
|
1811
1825
|
},
|
|
1812
1826
|
setup(e) {
|
|
1813
|
-
return (a, r) => (o(), i("div",
|
|
1814
|
-
t("div",
|
|
1815
|
-
t("h1",
|
|
1816
|
-
t("div",
|
|
1817
|
-
|
|
1827
|
+
return (a, r) => (o(), i("div", Ro, [
|
|
1828
|
+
t("div", No, [
|
|
1829
|
+
t("h1", Ho, n(e.headline), 1),
|
|
1830
|
+
t("div", zo, [
|
|
1831
|
+
_(a.$slots, "not-found-body", {}, void 0, !0)
|
|
1818
1832
|
])
|
|
1819
1833
|
])
|
|
1820
1834
|
]));
|
|
1821
1835
|
}
|
|
1822
|
-
}),
|
|
1836
|
+
}), Ko = /* @__PURE__ */ f(Uo, [["__scopeId", "data-v-b829ca6c"]]), jo = { class: "filter__wrapper" }, Go = { class: "filter__content" }, Wo = { class: "filter__dropdowns" }, Yo = { class: "filter__chips" }, Qo = /* @__PURE__ */ b({
|
|
1823
1837
|
__name: "filter",
|
|
1824
1838
|
props: {
|
|
1825
1839
|
hasChips: {
|
|
@@ -1833,23 +1847,23 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1833
1847
|
},
|
|
1834
1848
|
emits: ["clearFilters"],
|
|
1835
1849
|
setup(e) {
|
|
1836
|
-
return (a, r) => (o(), i("div",
|
|
1837
|
-
t("div",
|
|
1838
|
-
t("div", Go, [
|
|
1839
|
-
p(a.$slots, "filter-dropdowns")
|
|
1840
|
-
]),
|
|
1850
|
+
return (a, r) => (o(), i("div", jo, [
|
|
1851
|
+
t("div", Go, [
|
|
1841
1852
|
t("div", Wo, [
|
|
1842
|
-
|
|
1853
|
+
_(a.$slots, "filter-dropdowns")
|
|
1854
|
+
]),
|
|
1855
|
+
t("div", Yo, [
|
|
1856
|
+
_(a.$slots, "filter-chips"),
|
|
1843
1857
|
e.hasChips ? (o(), i("button", {
|
|
1844
1858
|
key: 0,
|
|
1845
1859
|
class: "filter__clear",
|
|
1846
1860
|
onClick: r[0] || (r[0] = (l) => a.$emit("clearFilters"))
|
|
1847
|
-
}, n(e.removeAll), 1)) :
|
|
1861
|
+
}, n(e.removeAll), 1)) : v("", !0)
|
|
1848
1862
|
])
|
|
1849
1863
|
])
|
|
1850
1864
|
]));
|
|
1851
1865
|
}
|
|
1852
|
-
}),
|
|
1866
|
+
}), Zo = /* @__PURE__ */ f(Qo, [["__scopeId", "data-v-31c1ba00"]]), z = (e) => (E("data-v-5258b418"), e = e(), R(), e), Jo = { class: "footer__wrapper" }, Xo = { class: "footer__content" }, xo = { class: "footer__sections" }, es = { class: "section__title" }, ts = { class: "section__list" }, as = { class: "section" }, ls = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), os = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), ss = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), is = /* @__PURE__ */ z(() => /* @__PURE__ */ t("br", null, null, -1)), rs = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), ns = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), ds = { class: "footer__bottom" }, cs = { class: "copyright" }, us = { class: "footer__policy" }, _s = /* @__PURE__ */ z(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), hs = { class: "footer__social" }, ps = ["href", "aria-label"], ms = /* @__PURE__ */ b({
|
|
1853
1867
|
__name: "footer",
|
|
1854
1868
|
props: {
|
|
1855
1869
|
footerSections: { default: () => [] },
|
|
@@ -1860,73 +1874,73 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1860
1874
|
},
|
|
1861
1875
|
emits: ["changeRegionClicked"],
|
|
1862
1876
|
setup(e) {
|
|
1863
|
-
return (a, r) => (o(), i("div",
|
|
1864
|
-
t("footer",
|
|
1865
|
-
t("div",
|
|
1877
|
+
return (a, r) => (o(), i("div", Jo, [
|
|
1878
|
+
t("footer", Xo, [
|
|
1879
|
+
t("div", xo, [
|
|
1866
1880
|
(o(!0), i(D, null, M(a.footerSections, (l) => (o(), i("div", {
|
|
1867
1881
|
key: l.title,
|
|
1868
1882
|
class: "section"
|
|
1869
1883
|
}, [
|
|
1870
|
-
t("span",
|
|
1884
|
+
t("span", es, n(l.title), 1),
|
|
1871
1885
|
t("nav", null, [
|
|
1872
|
-
t("ul",
|
|
1873
|
-
|
|
1886
|
+
t("ul", ts, [
|
|
1887
|
+
_(a.$slots, "section-links", {
|
|
1874
1888
|
links: l.links
|
|
1875
1889
|
})
|
|
1876
1890
|
])
|
|
1877
1891
|
])
|
|
1878
1892
|
]))), 128)),
|
|
1879
|
-
t("div",
|
|
1880
|
-
|
|
1893
|
+
t("div", as, [
|
|
1894
|
+
ls,
|
|
1881
1895
|
t("address", null, [
|
|
1882
|
-
ls,
|
|
1883
1896
|
os,
|
|
1884
1897
|
ss,
|
|
1885
|
-
|
|
1898
|
+
is,
|
|
1899
|
+
w(O, {
|
|
1886
1900
|
class: "footer__contact",
|
|
1887
1901
|
"link-type": "regular_light",
|
|
1888
1902
|
underline: "false"
|
|
1889
1903
|
}, {
|
|
1890
|
-
default:
|
|
1891
|
-
|
|
1904
|
+
default: S(() => [
|
|
1905
|
+
rs
|
|
1892
1906
|
]),
|
|
1893
1907
|
_: 1
|
|
1894
1908
|
}),
|
|
1895
|
-
|
|
1909
|
+
w(O, {
|
|
1896
1910
|
class: "footer__contact",
|
|
1897
1911
|
"link-type": "regular_light",
|
|
1898
1912
|
underline: "false"
|
|
1899
1913
|
}, {
|
|
1900
|
-
default:
|
|
1901
|
-
|
|
1914
|
+
default: S(() => [
|
|
1915
|
+
ns
|
|
1902
1916
|
]),
|
|
1903
1917
|
_: 1
|
|
1904
1918
|
})
|
|
1905
1919
|
])
|
|
1906
1920
|
])
|
|
1907
1921
|
]),
|
|
1908
|
-
t("div",
|
|
1909
|
-
t("p",
|
|
1910
|
-
t("div",
|
|
1922
|
+
t("div", ds, [
|
|
1923
|
+
t("p", cs, "© MiR " + n((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
1924
|
+
t("div", us, [
|
|
1911
1925
|
t("button", {
|
|
1912
1926
|
class: "footer__language-switcher",
|
|
1913
1927
|
onClick: r[0] || (r[0] = (l) => a.$emit("changeRegionClicked"))
|
|
1914
1928
|
}, [
|
|
1915
1929
|
t("span", null, [
|
|
1916
|
-
|
|
1930
|
+
_s,
|
|
1917
1931
|
j(n(a.changeRegion), 1)
|
|
1918
1932
|
])
|
|
1919
1933
|
]),
|
|
1920
|
-
|
|
1921
|
-
|
|
1934
|
+
_(a.$slots, "footer-privacy-link"),
|
|
1935
|
+
_(a.$slots, "footer-cookie-link")
|
|
1922
1936
|
]),
|
|
1923
|
-
t("div",
|
|
1937
|
+
t("div", hs, [
|
|
1924
1938
|
(o(!0), i(D, null, M(a.socialMedia, (l) => (o(), A(O, {
|
|
1925
1939
|
key: l.title,
|
|
1926
1940
|
underline: "false",
|
|
1927
1941
|
"link-type": "regular"
|
|
1928
1942
|
}, {
|
|
1929
|
-
default:
|
|
1943
|
+
default: S(() => [
|
|
1930
1944
|
t("a", {
|
|
1931
1945
|
href: l.url,
|
|
1932
1946
|
"aria-label": l.title
|
|
@@ -1945,19 +1959,19 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1945
1959
|
])
|
|
1946
1960
|
]));
|
|
1947
1961
|
}
|
|
1948
|
-
}),
|
|
1962
|
+
}), vs = /* @__PURE__ */ f(ms, [["__scopeId", "data-v-5258b418"]]), fs = { class: "header__wrapper" }, gs = { class: "nav-wrapper" }, bs = { class: "mir-link-logo" }, ys = { class: "main-nav-items" }, $s = {
|
|
1949
1963
|
id: "menu-dropdown",
|
|
1950
1964
|
ref: "dropdownDiv"
|
|
1951
|
-
},
|
|
1965
|
+
}, ks = {
|
|
1952
1966
|
key: 0,
|
|
1953
1967
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
1954
1968
|
alt: "dropdownarrow"
|
|
1955
|
-
},
|
|
1969
|
+
}, ws = {
|
|
1956
1970
|
key: 1,
|
|
1957
1971
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
1958
1972
|
alt: "dropdownarrow",
|
|
1959
1973
|
style: { transform: "rotate(180deg)" }
|
|
1960
|
-
},
|
|
1974
|
+
}, Ss = { class: "dropdown-content" }, Bs = { class: "nav-search-wrapper" }, Is = ["src"], qs = { class: "mobile-logo-search-burger-wrapper" }, Ls = { class: "mobile-mir-link-logo" }, Ts = { class: "mobile-search-wrapper" }, Vs = ["src"], Cs = ["src"], As = { class: "mobile-menu-content-wrapper" }, Ds = { class: "mobile-dropdown-content" }, Ms = /* @__PURE__ */ b({
|
|
1961
1975
|
__name: "header",
|
|
1962
1976
|
props: {
|
|
1963
1977
|
burgerState: {
|
|
@@ -1977,130 +1991,130 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1977
1991
|
setup(e, { expose: a, emit: r }) {
|
|
1978
1992
|
let l = null;
|
|
1979
1993
|
const s = e;
|
|
1980
|
-
let
|
|
1981
|
-
|
|
1994
|
+
let p = B(s.burgerState), c = B(s.showDropDown);
|
|
1995
|
+
ne(
|
|
1982
1996
|
() => s.burgerState,
|
|
1983
|
-
(
|
|
1984
|
-
),
|
|
1997
|
+
(I) => p.value = I
|
|
1998
|
+
), ne(
|
|
1985
1999
|
() => s.showDropDown,
|
|
1986
|
-
(
|
|
1987
|
-
),
|
|
1988
|
-
l = (
|
|
1989
|
-
|
|
2000
|
+
(I) => c.value = I
|
|
2001
|
+
), ae(() => {
|
|
2002
|
+
l = (I) => {
|
|
2003
|
+
I.target.closest("#menu-dropdown") || (c.value = !1);
|
|
1990
2004
|
}, window.addEventListener("click", l);
|
|
1991
2005
|
}), Se(() => {
|
|
1992
2006
|
l !== null && window.removeEventListener("click", l);
|
|
1993
2007
|
});
|
|
1994
|
-
const
|
|
1995
|
-
function
|
|
1996
|
-
c.value = !c.value,
|
|
2008
|
+
const u = r;
|
|
2009
|
+
function g() {
|
|
2010
|
+
c.value = !c.value, u("update:showDropDown", c.value);
|
|
1997
2011
|
}
|
|
1998
2012
|
function m() {
|
|
1999
|
-
|
|
2013
|
+
p.value = !p.value, u("update:burgerState", p.value);
|
|
2000
2014
|
}
|
|
2001
|
-
let
|
|
2015
|
+
let $ = B(null), L = B(null);
|
|
2002
2016
|
function X() {
|
|
2003
|
-
|
|
2017
|
+
$.value && $.value.blur();
|
|
2004
2018
|
}
|
|
2005
2019
|
return a({
|
|
2006
2020
|
defocusSearchButton: X
|
|
2007
|
-
}), (
|
|
2021
|
+
}), (I, U) => (o(), i("div", fs, [
|
|
2008
2022
|
t("nav", null, [
|
|
2009
|
-
t("div",
|
|
2010
|
-
t("div",
|
|
2011
|
-
|
|
2023
|
+
t("div", gs, [
|
|
2024
|
+
t("div", bs, [
|
|
2025
|
+
_(I.$slots, "link-logo", {}, void 0, !0)
|
|
2012
2026
|
]),
|
|
2013
|
-
t("ul",
|
|
2014
|
-
|
|
2027
|
+
t("ul", ys, [
|
|
2028
|
+
_(I.$slots, "main-nav-items", {}, void 0, !0)
|
|
2015
2029
|
]),
|
|
2016
|
-
t("div",
|
|
2030
|
+
t("div", $s, [
|
|
2017
2031
|
t("button", {
|
|
2018
2032
|
class: "nav-dropdown-btn",
|
|
2019
|
-
onClick:
|
|
2033
|
+
onClick: g
|
|
2020
2034
|
}, [
|
|
2021
|
-
|
|
2022
|
-
|
|
2035
|
+
_(I.$slots, "dropdown-title", {}, void 0, !0),
|
|
2036
|
+
q(c) === !1 ? (o(), i("img", ks)) : (o(), i("img", ws))
|
|
2023
2037
|
]),
|
|
2024
|
-
Z(t("div",
|
|
2025
|
-
|
|
2038
|
+
Z(t("div", Ss, [
|
|
2039
|
+
_(I.$slots, "dropdown-links", {}, void 0, !0)
|
|
2026
2040
|
], 512), [
|
|
2027
|
-
[ee,
|
|
2041
|
+
[ee, q(c)]
|
|
2028
2042
|
])
|
|
2029
2043
|
], 512),
|
|
2030
|
-
t("div",
|
|
2044
|
+
t("div", Bs, [
|
|
2031
2045
|
t("button", {
|
|
2032
2046
|
ref_key: "navSearchButton",
|
|
2033
|
-
ref:
|
|
2047
|
+
ref: $,
|
|
2034
2048
|
class: "search-icon",
|
|
2035
2049
|
onClick: U[0] || (U[0] = (x) => {
|
|
2036
2050
|
var H;
|
|
2037
|
-
return
|
|
2051
|
+
return I.$emit("clickSearch"), (H = q($)) == null ? void 0 : H.blur();
|
|
2038
2052
|
})
|
|
2039
2053
|
}, [
|
|
2040
2054
|
t("img", {
|
|
2041
|
-
src:
|
|
2055
|
+
src: q(p) === !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2042
2056
|
alt: "search icon",
|
|
2043
2057
|
width: "20",
|
|
2044
2058
|
height: "20"
|
|
2045
|
-
}, null, 8,
|
|
2059
|
+
}, null, 8, Is)
|
|
2046
2060
|
], 512)
|
|
2047
2061
|
])
|
|
2048
2062
|
]),
|
|
2049
2063
|
t("div", {
|
|
2050
|
-
class: h(["mobile-nav-wrapper",
|
|
2064
|
+
class: h(["mobile-nav-wrapper", q(p) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2051
2065
|
}, [
|
|
2052
|
-
t("div",
|
|
2053
|
-
t("div", qs, [
|
|
2054
|
-
p(B.$slots, "link-logo", {}, void 0, !0)
|
|
2055
|
-
]),
|
|
2066
|
+
t("div", qs, [
|
|
2056
2067
|
t("div", Ls, [
|
|
2068
|
+
_(I.$slots, "link-logo", {}, void 0, !0)
|
|
2069
|
+
]),
|
|
2070
|
+
t("div", Ts, [
|
|
2057
2071
|
t("button", {
|
|
2058
2072
|
ref_key: "mobileSearchButton",
|
|
2059
|
-
ref:
|
|
2073
|
+
ref: L,
|
|
2060
2074
|
class: "search-icon",
|
|
2061
2075
|
"aria-label": "Toggle search",
|
|
2062
2076
|
onClick: U[1] || (U[1] = (x) => {
|
|
2063
2077
|
var H;
|
|
2064
|
-
return
|
|
2078
|
+
return I.$emit("clickSearch"), (H = q(L)) == null ? void 0 : H.blur();
|
|
2065
2079
|
})
|
|
2066
2080
|
}, [
|
|
2067
2081
|
t("img", {
|
|
2068
|
-
src:
|
|
2082
|
+
src: q(p) === !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2069
2083
|
alt: "search icon",
|
|
2070
2084
|
width: "20",
|
|
2071
2085
|
height: "20"
|
|
2072
|
-
}, null, 8,
|
|
2086
|
+
}, null, 8, Vs)
|
|
2073
2087
|
], 512)
|
|
2074
2088
|
]),
|
|
2075
2089
|
t("button", {
|
|
2076
2090
|
class: "mobile-burger-wrapper",
|
|
2077
2091
|
"aria-label": "Toggle menu",
|
|
2078
|
-
onClick:
|
|
2092
|
+
onClick: de(m, ["prevent"])
|
|
2079
2093
|
}, [
|
|
2080
2094
|
t("img", {
|
|
2081
2095
|
width: "20",
|
|
2082
2096
|
height: "20",
|
|
2083
2097
|
alt: "burger menu line icon",
|
|
2084
|
-
src:
|
|
2085
|
-
}, null, 8,
|
|
2098
|
+
src: q(p) === !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"
|
|
2099
|
+
}, null, 8, Cs)
|
|
2086
2100
|
])
|
|
2087
2101
|
]),
|
|
2088
|
-
Z(t("div",
|
|
2102
|
+
Z(t("div", As, [
|
|
2089
2103
|
t("ul", null, [
|
|
2090
|
-
|
|
2104
|
+
_(I.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2091
2105
|
]),
|
|
2092
|
-
t("ul",
|
|
2093
|
-
|
|
2094
|
-
|
|
2106
|
+
t("ul", Ds, [
|
|
2107
|
+
_(I.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2108
|
+
_(I.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2095
2109
|
])
|
|
2096
2110
|
], 512), [
|
|
2097
|
-
[ee,
|
|
2111
|
+
[ee, q(p)]
|
|
2098
2112
|
])
|
|
2099
2113
|
], 2)
|
|
2100
2114
|
])
|
|
2101
2115
|
]));
|
|
2102
2116
|
}
|
|
2103
|
-
}),
|
|
2117
|
+
}), Os = /* @__PURE__ */ f(Ms, [["__scopeId", "data-v-e129834d"]]), Ps = { class: "language__wrapper" }, Fs = { class: "language__content" }, Es = { class: "language__headline" }, Rs = { class: "language__paragraph" }, Ns = { class: "language__links" }, Hs = /* @__PURE__ */ b({
|
|
2104
2118
|
__name: "language-switcher",
|
|
2105
2119
|
props: {
|
|
2106
2120
|
headline: {
|
|
@@ -2113,17 +2127,17 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2113
2127
|
}
|
|
2114
2128
|
},
|
|
2115
2129
|
setup(e) {
|
|
2116
|
-
return (a, r) => (o(), i("div",
|
|
2117
|
-
t("div",
|
|
2118
|
-
t("h2",
|
|
2119
|
-
t("p",
|
|
2120
|
-
t("div",
|
|
2121
|
-
|
|
2130
|
+
return (a, r) => (o(), i("div", Ps, [
|
|
2131
|
+
t("div", Fs, [
|
|
2132
|
+
t("h2", Es, n(e.headline), 1),
|
|
2133
|
+
t("p", Rs, n(e.paragraph), 1),
|
|
2134
|
+
t("div", Ns, [
|
|
2135
|
+
_(a.$slots, "language-links", {}, void 0, !0)
|
|
2122
2136
|
])
|
|
2123
2137
|
])
|
|
2124
2138
|
]));
|
|
2125
2139
|
}
|
|
2126
|
-
}),
|
|
2140
|
+
}), zs = /* @__PURE__ */ f(Hs, [["__scopeId", "data-v-dc8cc97e"]]), Us = { class: "pagination__wrapper" }, Ks = { class: "pagination__content" }, js = /* @__PURE__ */ b({
|
|
2127
2141
|
__name: "pagination",
|
|
2128
2142
|
props: {
|
|
2129
2143
|
isPreviousDisabled: {
|
|
@@ -2137,16 +2151,16 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2137
2151
|
},
|
|
2138
2152
|
emits: ["previous", "next"],
|
|
2139
2153
|
setup(e) {
|
|
2140
|
-
return (a, r) => (o(), i("div",
|
|
2141
|
-
t("div",
|
|
2142
|
-
|
|
2154
|
+
return (a, r) => (o(), i("div", Us, [
|
|
2155
|
+
t("div", Ks, [
|
|
2156
|
+
w(J, {
|
|
2143
2157
|
disabled: e.isPreviousDisabled,
|
|
2144
2158
|
variant: "previous",
|
|
2145
2159
|
"aria-label": "previous",
|
|
2146
2160
|
onClick: r[0] || (r[0] = (l) => a.$emit("previous"))
|
|
2147
2161
|
}, null, 8, ["disabled"]),
|
|
2148
|
-
|
|
2149
|
-
|
|
2162
|
+
_(a.$slots, "pagination-numbers"),
|
|
2163
|
+
w(J, {
|
|
2150
2164
|
disabled: e.isNextDisabled,
|
|
2151
2165
|
variant: "next",
|
|
2152
2166
|
"aria-label": "next",
|
|
@@ -2155,13 +2169,13 @@ const $o = /* @__PURE__ */ v(mo, [["render", yo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2155
2169
|
])
|
|
2156
2170
|
]));
|
|
2157
2171
|
}
|
|
2158
|
-
}),
|
|
2159
|
-
function
|
|
2160
|
-
return o(), i("div",
|
|
2161
|
-
|
|
2172
|
+
}), Gs = /* @__PURE__ */ f(js, [["__scopeId", "data-v-f760f1c6"]]), Ws = {}, Ys = { class: "search__wrapper" };
|
|
2173
|
+
function Qs(e, a) {
|
|
2174
|
+
return o(), i("div", Ys, [
|
|
2175
|
+
_(e.$slots, "default", { class: "search__content" })
|
|
2162
2176
|
]);
|
|
2163
2177
|
}
|
|
2164
|
-
const
|
|
2178
|
+
const Zs = /* @__PURE__ */ f(Ws, [["render", Qs], ["__scopeId", "data-v-623adb82"]]), Js = { class: "product-hero__wrapper" }, Xs = { class: "product-hero__content" }, xs = { class: "product-hero__headline" }, ei = { class: "product-hero__video" }, ti = /* @__PURE__ */ b({
|
|
2165
2179
|
__name: "product-hero",
|
|
2166
2180
|
props: {
|
|
2167
2181
|
headline: {
|
|
@@ -2186,12 +2200,12 @@ const Qs = /* @__PURE__ */ v(Gs, [["render", Ys], ["__scopeId", "data-v-623adb82
|
|
|
2186
2200
|
}
|
|
2187
2201
|
},
|
|
2188
2202
|
setup(e) {
|
|
2189
|
-
return (a, r) => (o(), i("div",
|
|
2190
|
-
t("div",
|
|
2191
|
-
t("div",
|
|
2203
|
+
return (a, r) => (o(), i("div", Js, [
|
|
2204
|
+
t("div", Xs, [
|
|
2205
|
+
t("div", xs, [
|
|
2192
2206
|
t("h1", null, n(e.headline), 1)
|
|
2193
2207
|
]),
|
|
2194
|
-
t("div",
|
|
2208
|
+
t("div", ei, [
|
|
2195
2209
|
e.videoSrc !== "" ? (o(), A(G, {
|
|
2196
2210
|
key: 0,
|
|
2197
2211
|
play: "",
|
|
@@ -2203,9 +2217,9 @@ const Qs = /* @__PURE__ */ v(Gs, [["render", Ys], ["__scopeId", "data-v-623adb82
|
|
|
2203
2217
|
autoplay: "",
|
|
2204
2218
|
loop: "",
|
|
2205
2219
|
muted: ""
|
|
2206
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (o(), A(
|
|
2207
|
-
default:
|
|
2208
|
-
|
|
2220
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (o(), A(q(C), { key: 1 }, {
|
|
2221
|
+
default: S(() => [
|
|
2222
|
+
_(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
2209
2223
|
]),
|
|
2210
2224
|
_: 3
|
|
2211
2225
|
}))
|
|
@@ -2213,9 +2227,9 @@ const Qs = /* @__PURE__ */ v(Gs, [["render", Ys], ["__scopeId", "data-v-623adb82
|
|
|
2213
2227
|
])
|
|
2214
2228
|
]));
|
|
2215
2229
|
}
|
|
2216
|
-
}),
|
|
2230
|
+
}), ai = /* @__PURE__ */ f(ti, [["__scopeId", "data-v-e394473d"]]), oi = {
|
|
2217
2231
|
install: (e) => {
|
|
2218
|
-
e.component("AtomButton", J), e.component("AtomCheckbox", Ae), e.component("AtomChip", Fe), e.component("AtomDropdown", je), e.component("AtomImage", C), e.component("AtomLabel", Y), e.component("AtomLink", O), e.component("AtomRadioButton", lt), e.component("AtomSelect", dt), e.component("AtomSlider", bt), e.component("AtomTextarea", qt), e.component("AtomTextField", Et), e.component("AtomVideo", G), e.component("MoleculeAddress",
|
|
2232
|
+
e.component("AtomButton", J), e.component("AtomCheckbox", Ae), e.component("AtomChip", Fe), e.component("AtomDropdown", je), e.component("AtomImage", C), e.component("AtomLabel", Y), e.component("AtomLink", O), e.component("AtomRadioButton", lt), e.component("AtomSelect", dt), e.component("AtomSlider", bt), e.component("AtomTextarea", qt), e.component("AtomTextField", Et), e.component("AtomVideo", G), e.component("MoleculeAddress", ea), e.component("MoleculeBulletList", sa), e.component("MoleculeCard", ca), e.component("MoleculeEventCard", ga), e.component("MoleculeModal", ue), e.component("MoleculeTextCard", wa), e.component("BlockFacts", Aa), e.component("BlockFeatures", Na), e.component("BlockFormScript", Ya), e.component("BlockHeadline", cl), e.component("BlockHero", $l), e.component("BlockImage", el), e.component("BlockImageGallery", il), e.component("BlockLogoWall", Vl), e.component("BlockMicroStories", Ol), e.component("BlockPolicy", Nl), e.component("BlockProductHero", ai), e.component("BlockPromo", Zl), e.component("BlockQuote", co), e.component("BlockRichText", mo), e.component("BlockRichTextColumns", ko), e.component("BlockTimeline", Ao), e.component("BlockCardDisplay", Wl), e.component("BlockVimeo", Eo), e.component("Organism404", Ko), e.component("OrganismFilter", Zo), e.component("OrganismFooter", vs), e.component("OrganismHeader", Os), e.component("OrganismLanguageSwitcher", zs), e.component("OrganismPagination", Gs), e.component("OrganismSearch", Zs);
|
|
2219
2233
|
}
|
|
2220
2234
|
};
|
|
2221
2235
|
export {
|
|
@@ -2232,36 +2246,36 @@ export {
|
|
|
2232
2246
|
Et as AtomTextField,
|
|
2233
2247
|
qt as AtomTextarea,
|
|
2234
2248
|
G as AtomVideo,
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2249
|
+
Wl as BlockCardDisplay,
|
|
2250
|
+
Aa as BlockFacts,
|
|
2251
|
+
Na as BlockFeatures,
|
|
2252
|
+
Ya as BlockFormScript,
|
|
2253
|
+
cl as BlockHeadline,
|
|
2254
|
+
$l as BlockHero,
|
|
2255
|
+
el as BlockImage,
|
|
2256
|
+
il as BlockImageGallery,
|
|
2257
|
+
Vl as BlockLogoWall,
|
|
2258
|
+
Ol as BlockMicroStories,
|
|
2259
|
+
Nl as BlockPolicy,
|
|
2260
|
+
ai as BlockProductHero,
|
|
2261
|
+
Zl as BlockPromo,
|
|
2262
|
+
co as BlockQuote,
|
|
2263
|
+
mo as BlockRichText,
|
|
2264
|
+
ko as BlockRichTextColumns,
|
|
2265
|
+
Ao as BlockTimeline,
|
|
2266
|
+
Eo as BlockVimeo,
|
|
2267
|
+
ea as MoleculeAddress,
|
|
2268
|
+
sa as MoleculeBulletList,
|
|
2269
|
+
ca as MoleculeCard,
|
|
2270
|
+
ga as MoleculeEventCard,
|
|
2257
2271
|
ue as MoleculeModal,
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2272
|
+
wa as MoleculeTextCard,
|
|
2273
|
+
Ko as Organism404,
|
|
2274
|
+
Zo as OrganismFilter,
|
|
2275
|
+
vs as OrganismFooter,
|
|
2276
|
+
Os as OrganismHeader,
|
|
2277
|
+
zs as OrganismLanguageSwitcher,
|
|
2278
|
+
Gs as OrganismPagination,
|
|
2279
|
+
Zs as OrganismSearch,
|
|
2280
|
+
oi as default
|
|
2267
2281
|
};
|