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