@mirweb/mir-web-components 0.15.44 → 0.15.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/components/organisms/header/header.vue.d.ts +0 -4
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +451 -451
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
- package/dist/icons/Logo.svg +0 -6
- package/dist/icons/MiRsaicWeb.svg +0 -151
- package/dist/icons/MiRsaicWebDark.svg +0 -354
- package/dist/icons/arrow-down-white.svg +0 -3
- package/dist/icons/arrow-down.svg +0 -3
- package/dist/icons/arrow-up.svg +0 -3
- package/dist/icons/burger-line-white.svg +0 -3
- package/dist/icons/burger-line.svg +0 -3
- package/dist/icons/checkmark.svg +0 -3
- package/dist/icons/close.svg +0 -3
- package/dist/icons/direction-left.svg +0 -3
- package/dist/icons/direction-right.svg +0 -3
- package/dist/icons/done.svg +0 -4
- package/dist/icons/facebook.svg +0 -3
- package/dist/icons/hidden.svg +0 -5
- package/dist/icons/info-blue.svg +0 -4
- package/dist/icons/info-dark-blue.svg +0 -4
- package/dist/icons/info-red.svg +0 -4
- package/dist/icons/info-white.svg +0 -4
- package/dist/icons/instagram.svg +0 -5
- package/dist/icons/link-arrow.svg +0 -3
- package/dist/icons/linkedin.svg +0 -3
- package/dist/icons/search-icon-white.svg +0 -4
- package/dist/icons/search-icon.svg +0 -4
- package/dist/icons/twitter.svg +0 -3
- package/dist/icons/visible.svg +0 -4
- package/dist/icons/world-map.svg +0 -3
- package/dist/icons/world.svg +0 -4
- package/dist/icons/youtube.svg +0 -3
- package/dist/mirsaic/mirsaic-dark.svg +0 -347
- package/dist/mirsaic/mirsaic-light.svg +0 -353
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as h, openBlock as l, createElementBlock as s, normalizeClass as c, toDisplayString as
|
|
2
|
-
const
|
|
1
|
+
import { defineComponent as h, openBlock as l, createElementBlock as s, normalizeClass as c, toDisplayString as o, createElementVNode as t, renderSlot as u, pushScopeId as D, popScopeId as M, computed as P, createTextVNode as E, ref as x, withDirectives as U, Fragment as q, renderList as I, vShow as G, normalizeProps as V, guardReactiveProps as A, mergeProps as Y, createVNode as p, Transition as fe, withCtx as $, withModifiers as ae, createCommentVNode as m, watchEffect as le, withKeys as ye, createBlock as z, normalizeStyle as Q, isRef as ee, unref as S, onMounted as ie, watch as te, onUnmounted as be } from "vue";
|
|
2
|
+
const pe = ["aria-label"], $e = /* @__PURE__ */ h({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
5
5
|
variant: {
|
|
@@ -27,15 +27,15 @@ const Se = ["aria-label"], qe = /* @__PURE__ */ h({
|
|
|
27
27
|
return (a, r) => (l(), s("button", {
|
|
28
28
|
class: c(["button", "button--" + e.variant]),
|
|
29
29
|
"aria-label": e.ariaLabel
|
|
30
|
-
},
|
|
30
|
+
}, o(e.variant == "close" ? "" : e.buttonText), 11, pe));
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
|
-
const
|
|
33
|
+
const v = (e, a) => {
|
|
34
34
|
const r = e.__vccOpts || e;
|
|
35
|
-
for (const [i,
|
|
36
|
-
r[i] =
|
|
35
|
+
for (const [i, n] of a)
|
|
36
|
+
r[i] = n;
|
|
37
37
|
return r;
|
|
38
|
-
},
|
|
38
|
+
}, W = /* @__PURE__ */ v($e, [["__scopeId", "data-v-ee153559"]]), ke = (e) => (D("data-v-f62bd17f"), e = e(), M(), e), we = ["name", "value", "disabled", "required", "id"], xe = ["for"], Se = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), qe = /* @__PURE__ */ h({
|
|
39
39
|
__name: "checkbox",
|
|
40
40
|
props: {
|
|
41
41
|
name: String,
|
|
@@ -63,10 +63,10 @@ const m = (e, a) => {
|
|
|
63
63
|
emits: ["input"],
|
|
64
64
|
setup(e, { emit: a }) {
|
|
65
65
|
const r = (i) => {
|
|
66
|
-
const
|
|
67
|
-
a("input",
|
|
66
|
+
const n = i.target;
|
|
67
|
+
a("input", n.checked);
|
|
68
68
|
};
|
|
69
|
-
return (i,
|
|
69
|
+
return (i, n) => (l(), s("div", {
|
|
70
70
|
class: c(["checkbox__wrapper", e.disabled ? "disabled" : ""])
|
|
71
71
|
}, [
|
|
72
72
|
t("input", {
|
|
@@ -78,22 +78,22 @@ const m = (e, a) => {
|
|
|
78
78
|
id: e.id,
|
|
79
79
|
class: "checkbox__checkbox",
|
|
80
80
|
onChange: r
|
|
81
|
-
}, null, 40,
|
|
81
|
+
}, null, 40, we),
|
|
82
82
|
t("label", {
|
|
83
83
|
for: e.id,
|
|
84
84
|
class: c(["checkbox__label", e.required ? "required" : ""])
|
|
85
85
|
}, [
|
|
86
|
-
|
|
86
|
+
Se,
|
|
87
87
|
u(i.$slots, "default", {}, void 0, !0)
|
|
88
|
-
], 10,
|
|
88
|
+
], 10, xe)
|
|
89
89
|
], 2));
|
|
90
90
|
}
|
|
91
91
|
});
|
|
92
|
-
const
|
|
93
|
-
src:
|
|
92
|
+
const Be = /* @__PURE__ */ v(qe, [["__scopeId", "data-v-f62bd17f"]]), Ie = (e) => (D("data-v-1427e00b"), e = e(), M(), e), Le = ["aria-label"], Te = /* @__PURE__ */ Ie(() => /* @__PURE__ */ t("img", {
|
|
93
|
+
src: "https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",
|
|
94
94
|
alt: "close",
|
|
95
95
|
class: "close-icon"
|
|
96
|
-
}, null, -1)),
|
|
96
|
+
}, null, -1)), Ce = /* @__PURE__ */ h({
|
|
97
97
|
__name: "chip",
|
|
98
98
|
props: {
|
|
99
99
|
text: {
|
|
@@ -104,21 +104,21 @@ const Ve = /* @__PURE__ */ m(Ce, [["__scopeId", "data-v-f62bd17f"]]), Ae = "/ico
|
|
|
104
104
|
emits: ["remove-chip"],
|
|
105
105
|
setup(e, { emit: a }) {
|
|
106
106
|
const r = e, i = P(() => `Chip: ${r.text}`);
|
|
107
|
-
return (
|
|
107
|
+
return (n, _) => (l(), s("div", {
|
|
108
108
|
class: "chip__wrapper",
|
|
109
|
-
onClick: _[0] || (_[0] = (
|
|
109
|
+
onClick: _[0] || (_[0] = (k) => n.$emit("remove-chip"))
|
|
110
110
|
}, [
|
|
111
111
|
t("span", {
|
|
112
112
|
class: "chip",
|
|
113
113
|
"aria-label": i.value
|
|
114
114
|
}, [
|
|
115
|
-
E(
|
|
116
|
-
|
|
117
|
-
], 8,
|
|
115
|
+
E(o(e.text) + " ", 1),
|
|
116
|
+
Te
|
|
117
|
+
], 8, Le)
|
|
118
118
|
]));
|
|
119
119
|
}
|
|
120
120
|
});
|
|
121
|
-
const
|
|
121
|
+
const Ve = /* @__PURE__ */ v(Ce, [["__scopeId", "data-v-1427e00b"]]), Ae = ["value"], De = ["id"], Me = { class: "listbox__dropdown" }, Oe = ["id", "aria-labelledby", "aria-disabled"], ze = ["aria-labelledby", "aria-activedescendant"], Pe = ["aria-selected", "data-value"], Fe = /* @__PURE__ */ h({
|
|
122
122
|
__name: "dropdown",
|
|
123
123
|
props: {
|
|
124
124
|
modelValue: {
|
|
@@ -168,12 +168,12 @@ const Pe = /* @__PURE__ */ m(ze, [["__scopeId", "data-v-d7993c3d"]]), Fe = ["val
|
|
|
168
168
|
},
|
|
169
169
|
emits: ["update:modelValue"],
|
|
170
170
|
setup(e, { emit: a }) {
|
|
171
|
-
const r = e, i =
|
|
171
|
+
const r = e, i = x(null), n = x(null), _ = x([]), k = x(0), T = x(""), g = x(!0), y = x(0), B = P(() => {
|
|
172
172
|
const d = r.options.find(
|
|
173
173
|
(f) => f.value === r.modelValue
|
|
174
174
|
);
|
|
175
175
|
return d && d.label;
|
|
176
|
-
}),
|
|
176
|
+
}), se = {
|
|
177
177
|
beforeMount(d, f) {
|
|
178
178
|
d.clickOutsideEvent = function(b) {
|
|
179
179
|
d === b.target || d.contains(b.target) || f.value(b);
|
|
@@ -183,13 +183,13 @@ const Pe = /* @__PURE__ */ m(ze, [["__scopeId", "data-v-d7993c3d"]]), Fe = ["val
|
|
|
183
183
|
document.body.removeEventListener("click", d.clickOutsideEvent);
|
|
184
184
|
}
|
|
185
185
|
};
|
|
186
|
-
function
|
|
186
|
+
function oe(d) {
|
|
187
187
|
a("update:modelValue", d);
|
|
188
188
|
}
|
|
189
|
-
function
|
|
189
|
+
function ne(d) {
|
|
190
190
|
var b;
|
|
191
191
|
const f = d.target;
|
|
192
|
-
f.getAttribute("role") === "option" && (R(f),
|
|
192
|
+
f.getAttribute("role") === "option" && (R(f), K(), (b = i.value) == null || b.focus());
|
|
193
193
|
}
|
|
194
194
|
function J(d) {
|
|
195
195
|
var b;
|
|
@@ -198,33 +198,33 @@ const Pe = /* @__PURE__ */ m(ze, [["__scopeId", "data-v-d7993c3d"]]), Fe = ["val
|
|
|
198
198
|
case "ArrowUp":
|
|
199
199
|
case "ArrowDown": {
|
|
200
200
|
d.preventDefault();
|
|
201
|
-
const
|
|
201
|
+
const w = r.options.findIndex(
|
|
202
202
|
(N) => N.value === r.modelValue
|
|
203
203
|
);
|
|
204
|
-
let O =
|
|
205
|
-
f === "ArrowUp" ?
|
|
204
|
+
let O = w ? _.value[w] : _.value[0];
|
|
205
|
+
f === "ArrowUp" ? w - 1 >= 0 && (O = _.value[w - 1]) : w + 1 <= r.options.length && (O = _.value[w + 1]), O && R(O);
|
|
206
206
|
break;
|
|
207
207
|
}
|
|
208
208
|
case "Home":
|
|
209
209
|
case "PageUp":
|
|
210
|
-
d.preventDefault(),
|
|
210
|
+
d.preventDefault(), he();
|
|
211
211
|
break;
|
|
212
212
|
case "End":
|
|
213
213
|
case "PageDown":
|
|
214
|
-
d.preventDefault(),
|
|
214
|
+
d.preventDefault(), ve();
|
|
215
215
|
break;
|
|
216
216
|
case "Enter":
|
|
217
217
|
case "Escape":
|
|
218
|
-
d.preventDefault(),
|
|
218
|
+
d.preventDefault(), K(), (b = i.value) == null || b.focus();
|
|
219
219
|
break;
|
|
220
220
|
default: {
|
|
221
|
-
const
|
|
222
|
-
|
|
221
|
+
const w = _e(f);
|
|
222
|
+
w && R(w);
|
|
223
223
|
break;
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
226
|
}
|
|
227
|
-
function
|
|
227
|
+
function de(d) {
|
|
228
228
|
if (!r.disabled)
|
|
229
229
|
switch (d.key) {
|
|
230
230
|
case "ArrowUp":
|
|
@@ -233,19 +233,19 @@ const Pe = /* @__PURE__ */ m(ze, [["__scopeId", "data-v-d7993c3d"]]), Fe = ["val
|
|
|
233
233
|
break;
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
|
-
function
|
|
236
|
+
function ce(d) {
|
|
237
237
|
d && d.removeAttribute("aria-selected");
|
|
238
238
|
}
|
|
239
|
-
function
|
|
240
|
-
|
|
241
|
-
T.value = "",
|
|
239
|
+
function ue() {
|
|
240
|
+
k && (clearTimeout(k.value), k.value = 0), k.value = setTimeout(() => {
|
|
241
|
+
T.value = "", k.value = 0;
|
|
242
242
|
}, 500);
|
|
243
243
|
}
|
|
244
|
-
function
|
|
244
|
+
function _e(d) {
|
|
245
245
|
let f = "";
|
|
246
246
|
(T.value === "" || f !== d) && (y.value = r.options.findIndex(
|
|
247
|
-
(
|
|
248
|
-
)), T.value = f === d ? d : T.value + d, f = d,
|
|
247
|
+
(w) => w.value === r.modelValue
|
|
248
|
+
)), T.value = f === d ? d : T.value + d, f = d, ue();
|
|
249
249
|
let b = X(
|
|
250
250
|
y.value + 1,
|
|
251
251
|
r.options.length
|
|
@@ -258,41 +258,41 @@ const Pe = /* @__PURE__ */ m(ze, [["__scopeId", "data-v-d7993c3d"]]), Fe = ["val
|
|
|
258
258
|
return _.value[b];
|
|
259
259
|
return null;
|
|
260
260
|
}
|
|
261
|
-
function
|
|
261
|
+
function he() {
|
|
262
262
|
R(_.value[0]);
|
|
263
263
|
}
|
|
264
264
|
function R(d) {
|
|
265
|
-
var b,
|
|
265
|
+
var b, w;
|
|
266
266
|
const f = d.getAttribute("data-value");
|
|
267
267
|
if (r.modelValue) {
|
|
268
268
|
const O = r.options.findIndex(
|
|
269
|
-
(
|
|
269
|
+
(ge) => ge.value === r.modelValue
|
|
270
270
|
), N = _.value[O];
|
|
271
|
-
|
|
271
|
+
ce(N);
|
|
272
272
|
}
|
|
273
|
-
if (d.setAttribute("aria-selected", "true"), (b =
|
|
273
|
+
if (d.setAttribute("aria-selected", "true"), (b = n.value) == null || b.setAttribute(
|
|
274
274
|
"aria-activedescendant",
|
|
275
275
|
f || ""
|
|
276
|
-
),
|
|
277
|
-
const O =
|
|
278
|
-
N > O ?
|
|
276
|
+
), oe(f || ""), n.value && n.value.scrollHeight > n.value.clientHeight) {
|
|
277
|
+
const O = n.value.clientHeight + n.value.scrollTop, N = d.offsetTop + d.offsetHeight;
|
|
278
|
+
N > O ? n.value.scrollTop = N - ((w = n.value) == null ? void 0 : w.clientHeight) : d.offsetTop < n.value.scrollTop && (n.value.scrollTop = d.offsetTop);
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
|
-
function
|
|
281
|
+
function ve() {
|
|
282
282
|
var f;
|
|
283
283
|
const d = (f = _.value) == null ? void 0 : f[r.options.length - 1];
|
|
284
284
|
R(d);
|
|
285
285
|
}
|
|
286
|
-
function
|
|
286
|
+
function K() {
|
|
287
287
|
var d;
|
|
288
288
|
g.value = !0, (d = i.value) == null || d.removeAttribute("aria-expanded");
|
|
289
289
|
}
|
|
290
290
|
function Z() {
|
|
291
291
|
var d, f;
|
|
292
|
-
g.value = !1, (d = i.value) == null || d.setAttribute("aria-expanded", "true"), (f =
|
|
292
|
+
g.value = !1, (d = i.value) == null || d.setAttribute("aria-expanded", "true"), (f = n.value) == null || f.focus();
|
|
293
293
|
}
|
|
294
|
-
function
|
|
295
|
-
r.disabled || (g.value ? Z() :
|
|
294
|
+
function me() {
|
|
295
|
+
r.disabled || (g.value ? Z() : K());
|
|
296
296
|
}
|
|
297
297
|
return (d, f) => (l(), s("div", {
|
|
298
298
|
class: "listbox__wrapper",
|
|
@@ -306,8 +306,8 @@ const Pe = /* @__PURE__ */ m(ze, [["__scopeId", "data-v-d7993c3d"]]), Fe = ["val
|
|
|
306
306
|
"is-disabled": e.disabled,
|
|
307
307
|
"is-required": e.required
|
|
308
308
|
}, "listbox__label"])
|
|
309
|
-
},
|
|
310
|
-
|
|
309
|
+
}, o(e.label), 11, De),
|
|
310
|
+
U((l(), s("div", Me, [
|
|
311
311
|
t("button", {
|
|
312
312
|
id: `${e.name}-button-label`,
|
|
313
313
|
"aria-labelledby": `${e.name}-label ${e.name}-button-label`,
|
|
@@ -318,24 +318,24 @@ const Pe = /* @__PURE__ */ m(ze, [["__scopeId", "data-v-d7993c3d"]]), Fe = ["val
|
|
|
318
318
|
"listbox__button",
|
|
319
319
|
e.variant === "dark" ? "dropdown-dark dropdown-dark-bg-dark" : "dropdown-dark-bg-primary"
|
|
320
320
|
]),
|
|
321
|
-
onClick:
|
|
322
|
-
onKeydown:
|
|
321
|
+
onClick: me,
|
|
322
|
+
onKeydown: de,
|
|
323
323
|
ref_key: "listboxButton",
|
|
324
324
|
ref: i
|
|
325
|
-
},
|
|
326
|
-
|
|
325
|
+
}, o(e.modelValue ? B.value : e.placeholder), 43, Oe),
|
|
326
|
+
U(t("ul", {
|
|
327
327
|
"aria-labelledby": `${e.name}-label`,
|
|
328
328
|
"aria-activedescendant": e.modelValue,
|
|
329
329
|
tabindex: "0",
|
|
330
330
|
role: "listbox",
|
|
331
331
|
class: "listbox__list",
|
|
332
332
|
onKeydown: J,
|
|
333
|
-
onClick:
|
|
333
|
+
onClick: ne,
|
|
334
334
|
ref_key: "listboxNode",
|
|
335
|
-
ref:
|
|
335
|
+
ref: n
|
|
336
336
|
}, [
|
|
337
|
-
(l(!0), s(q, null, I(e.options, (b,
|
|
338
|
-
key: `${e.name}-option-${
|
|
337
|
+
(l(!0), s(q, null, I(e.options, (b, w) => (l(), s("li", {
|
|
338
|
+
key: `${e.name}-option-${w}`,
|
|
339
339
|
"aria-selected": b.value === e.modelValue,
|
|
340
340
|
"data-value": b.value,
|
|
341
341
|
class: "listbox__option",
|
|
@@ -343,17 +343,17 @@ const Pe = /* @__PURE__ */ m(ze, [["__scopeId", "data-v-d7993c3d"]]), Fe = ["val
|
|
|
343
343
|
ref_for: !0,
|
|
344
344
|
ref_key: "listboxOptions",
|
|
345
345
|
ref: _
|
|
346
|
-
},
|
|
347
|
-
], 40,
|
|
346
|
+
}, o(b.label), 9, Pe))), 128))
|
|
347
|
+
], 40, ze), [
|
|
348
348
|
[G, !g.value]
|
|
349
349
|
])
|
|
350
350
|
])), [
|
|
351
|
-
[
|
|
351
|
+
[se, K]
|
|
352
352
|
])
|
|
353
|
-
], 8,
|
|
353
|
+
], 8, Ae));
|
|
354
354
|
}
|
|
355
355
|
});
|
|
356
|
-
const
|
|
356
|
+
const Ne = /* @__PURE__ */ v(Fe, [["__scopeId", "data-v-5cfe9d15"]]), Ee = { class: "image__wrapper" }, He = /* @__PURE__ */ h({
|
|
357
357
|
__name: "image",
|
|
358
358
|
props: {
|
|
359
359
|
src: {
|
|
@@ -391,12 +391,12 @@ const Ke = /* @__PURE__ */ m(We, [["__scopeId", "data-v-fb6e8a5d"]]), Ue = { cla
|
|
|
391
391
|
}
|
|
392
392
|
},
|
|
393
393
|
setup(e) {
|
|
394
|
-
return (a, r) => (l(), s("div",
|
|
394
|
+
return (a, r) => (l(), s("div", Ee, [
|
|
395
395
|
u(a.$slots, "default", V(A(a.$attrs)))
|
|
396
396
|
]));
|
|
397
397
|
}
|
|
398
398
|
});
|
|
399
|
-
const L = /* @__PURE__ */
|
|
399
|
+
const L = /* @__PURE__ */ v(He, [["__scopeId", "data-v-513b5384"]]), Re = { class: "label__wrapper" }, je = ["aria-label", "label-dark"], Ke = /* @__PURE__ */ h({
|
|
400
400
|
__name: "label",
|
|
401
401
|
props: {
|
|
402
402
|
text: {
|
|
@@ -411,16 +411,16 @@ const L = /* @__PURE__ */ m(Ge, [["__scopeId", "data-v-513b5384"]]), Ye = { clas
|
|
|
411
411
|
},
|
|
412
412
|
setup(e) {
|
|
413
413
|
const a = e, r = P(() => `Label: ${a.text}`);
|
|
414
|
-
return (i,
|
|
414
|
+
return (i, n) => (l(), s("div", Re, [
|
|
415
415
|
t("span", {
|
|
416
416
|
"aria-label": r.value,
|
|
417
417
|
"label-dark": e.labelDark,
|
|
418
418
|
class: c(e.labelDark ? "label--dark" : "label--light")
|
|
419
|
-
},
|
|
419
|
+
}, o(e.text), 11, je)
|
|
420
420
|
]));
|
|
421
421
|
}
|
|
422
422
|
});
|
|
423
|
-
const j = /* @__PURE__ */
|
|
423
|
+
const j = /* @__PURE__ */ v(Ke, [["__scopeId", "data-v-aacf01db"]]), Ue = { class: "link__wrapper" }, C = /* @__PURE__ */ h({
|
|
424
424
|
__name: "link",
|
|
425
425
|
props: {
|
|
426
426
|
url: {
|
|
@@ -465,7 +465,7 @@ const j = /* @__PURE__ */ m(Je, [["__scopeId", "data-v-aacf01db"]]), Xe = { clas
|
|
|
465
465
|
const { ...i } = a;
|
|
466
466
|
return i;
|
|
467
467
|
});
|
|
468
|
-
return (i,
|
|
468
|
+
return (i, n) => (l(), s("div", Ue, [
|
|
469
469
|
t("div", Y(r.value, {
|
|
470
470
|
class: ["mir-link", [
|
|
471
471
|
e.linkType === "primary" ? "mir-link--btn button button--primary" : e.linkType === "secondary" ? "mir-link--btn button button--secondary" : e.linkType === "secondary-dark" ? "mir-link--btn button button--secondary-dark" : e.linkType === "regular" ? "regular-link" : e.linkType === "regular-dark" ? "regular-link-dark" : e.linkType === "regular-light" ? "regular-link-light" : e.linkType === "regular-blue" ? "regular-link-blue" : "",
|
|
@@ -479,7 +479,7 @@ const j = /* @__PURE__ */ m(Je, [["__scopeId", "data-v-aacf01db"]]), Xe = { clas
|
|
|
479
479
|
]));
|
|
480
480
|
}
|
|
481
481
|
});
|
|
482
|
-
const
|
|
482
|
+
const We = (e) => (D("data-v-016da8d2"), e = e(), M(), e), Ge = ["name", "value", "checked", "disabled", "required", "id"], Ye = ["for"], Qe = /* @__PURE__ */ We(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), Je = /* @__PURE__ */ h({
|
|
483
483
|
__name: "radio-button",
|
|
484
484
|
props: {
|
|
485
485
|
name: String,
|
|
@@ -508,10 +508,10 @@ const Ze = (e) => (D("data-v-016da8d2"), e = e(), M(), e), et = ["name", "value"
|
|
|
508
508
|
emits: ["input"],
|
|
509
509
|
setup(e, { emit: a }) {
|
|
510
510
|
const r = (i) => {
|
|
511
|
-
const
|
|
512
|
-
a("input",
|
|
511
|
+
const n = i.target;
|
|
512
|
+
a("input", n.checked);
|
|
513
513
|
};
|
|
514
|
-
return (i,
|
|
514
|
+
return (i, n) => (l(), s("div", {
|
|
515
515
|
class: c(["radio__wrapper", e.disabled ? "disabled" : ""])
|
|
516
516
|
}, [
|
|
517
517
|
t("input", {
|
|
@@ -524,18 +524,18 @@ const Ze = (e) => (D("data-v-016da8d2"), e = e(), M(), e), et = ["name", "value"
|
|
|
524
524
|
id: e.id,
|
|
525
525
|
class: "radio__radio",
|
|
526
526
|
onChange: r
|
|
527
|
-
}, null, 40,
|
|
527
|
+
}, null, 40, Ge),
|
|
528
528
|
t("label", {
|
|
529
529
|
for: e.id,
|
|
530
530
|
class: c(["radio__label", e.required ? "required" : ""])
|
|
531
531
|
}, [
|
|
532
|
-
|
|
532
|
+
Qe,
|
|
533
533
|
u(i.$slots, "default", {}, void 0, !0)
|
|
534
|
-
], 10,
|
|
534
|
+
], 10, Ye)
|
|
535
535
|
], 2));
|
|
536
536
|
}
|
|
537
537
|
});
|
|
538
|
-
const
|
|
538
|
+
const Xe = /* @__PURE__ */ v(Je, [["__scopeId", "data-v-016da8d2"]]), Ze = { class: "select__wrapper" }, et = ["for"], tt = ["disabled", "id", "name", "value"], at = ["value"], lt = /* @__PURE__ */ h({
|
|
539
539
|
__name: "select",
|
|
540
540
|
props: {
|
|
541
541
|
id: {
|
|
@@ -576,11 +576,11 @@ const it = /* @__PURE__ */ m(lt, [["__scopeId", "data-v-016da8d2"]]), rt = { cla
|
|
|
576
576
|
},
|
|
577
577
|
emits: ["update:modelValue"],
|
|
578
578
|
setup(e) {
|
|
579
|
-
return (a, r) => (l(), s("div",
|
|
579
|
+
return (a, r) => (l(), s("div", Ze, [
|
|
580
580
|
t("label", {
|
|
581
581
|
for: e.id,
|
|
582
582
|
class: c([e.required ? "required" : "", e.disabled ? "disabled" : ""])
|
|
583
|
-
},
|
|
583
|
+
}, o(e.label), 11, et),
|
|
584
584
|
t("select", {
|
|
585
585
|
class: c(e.disabled ? "disabled" : ""),
|
|
586
586
|
disabled: e.disabled,
|
|
@@ -594,12 +594,12 @@ const it = /* @__PURE__ */ m(lt, [["__scopeId", "data-v-016da8d2"]]), rt = { cla
|
|
|
594
594
|
(l(!0), s(q, null, I(e.options, (i) => (l(), s("option", {
|
|
595
595
|
key: i.value,
|
|
596
596
|
value: i.value
|
|
597
|
-
},
|
|
598
|
-
], 42,
|
|
597
|
+
}, o(i.text), 9, at))), 128))
|
|
598
|
+
], 42, tt)
|
|
599
599
|
]));
|
|
600
600
|
}
|
|
601
601
|
});
|
|
602
|
-
const
|
|
602
|
+
const it = /* @__PURE__ */ v(lt, [["__scopeId", "data-v-2f0a5473"]]), rt = { class: "modal__wrapper" }, st = /* @__PURE__ */ h({
|
|
603
603
|
__name: "modal",
|
|
604
604
|
props: {
|
|
605
605
|
show: { type: Boolean, default: !1 }
|
|
@@ -609,18 +609,18 @@ const ct = /* @__PURE__ */ m(dt, [["__scopeId", "data-v-271a697d"]]), ut = { cla
|
|
|
609
609
|
const r = e;
|
|
610
610
|
P({
|
|
611
611
|
get: () => r.show,
|
|
612
|
-
set: (
|
|
612
|
+
set: (n) => a("update:show", n)
|
|
613
613
|
});
|
|
614
614
|
const i = () => {
|
|
615
615
|
a("update:show", !r.show);
|
|
616
616
|
};
|
|
617
|
-
return (
|
|
618
|
-
p(
|
|
617
|
+
return (n, _) => (l(), s("div", rt, [
|
|
618
|
+
p(fe, {
|
|
619
619
|
duration: 300,
|
|
620
620
|
name: "nested"
|
|
621
621
|
}, {
|
|
622
622
|
default: $(() => [
|
|
623
|
-
|
|
623
|
+
n.show ? (l(), s("div", {
|
|
624
624
|
key: 0,
|
|
625
625
|
class: "overlay",
|
|
626
626
|
onClick: i,
|
|
@@ -629,26 +629,26 @@ const ct = /* @__PURE__ */ m(dt, [["__scopeId", "data-v-271a697d"]]), ut = { cla
|
|
|
629
629
|
}, [
|
|
630
630
|
t("div", {
|
|
631
631
|
id: "modal",
|
|
632
|
-
onClick: _[0] || (_[0] =
|
|
632
|
+
onClick: _[0] || (_[0] = ae(() => {
|
|
633
633
|
}, ["stop"]))
|
|
634
634
|
}, [
|
|
635
635
|
t("div", null, [
|
|
636
|
-
p(
|
|
636
|
+
p(W, {
|
|
637
637
|
ariaLabel: "close",
|
|
638
638
|
variant: "close",
|
|
639
639
|
onClick: i
|
|
640
640
|
})
|
|
641
641
|
]),
|
|
642
|
-
u(
|
|
642
|
+
u(n.$slots, "default", {}, void 0, !0)
|
|
643
643
|
])
|
|
644
|
-
])) :
|
|
644
|
+
])) : m("", !0)
|
|
645
645
|
]),
|
|
646
646
|
_: 3
|
|
647
647
|
})
|
|
648
648
|
]));
|
|
649
649
|
}
|
|
650
650
|
});
|
|
651
|
-
const
|
|
651
|
+
const re = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d75ee1bf"]]), ot = { class: "slider__wrapper" }, nt = { class: "slider__label" }, dt = ["for"], ct = ["aria-label"], ut = { class: "slider__content" }, _t = ["id", "name", "value", "min", "step", "max"], ht = /* @__PURE__ */ h({
|
|
652
652
|
__name: "slider",
|
|
653
653
|
props: {
|
|
654
654
|
label: {
|
|
@@ -701,39 +701,39 @@ const de = /* @__PURE__ */ m(_t, [["__scopeId", "data-v-d75ee1bf"]]), ht = { cla
|
|
|
701
701
|
},
|
|
702
702
|
emits: ["update:modelValue"],
|
|
703
703
|
setup(e, { emit: a }) {
|
|
704
|
-
const r = e, i =
|
|
704
|
+
const r = e, i = x(r.modelValue), n = x(), _ = x(!1), k = (g, y, B) => (g - y) / (B - y) * 100, T = (g) => {
|
|
705
705
|
var y;
|
|
706
|
-
(y =
|
|
706
|
+
(y = n.value) == null || y.style.setProperty("--ProgressPercent", `${g}%`);
|
|
707
707
|
};
|
|
708
|
-
return
|
|
709
|
-
if (
|
|
708
|
+
return le(() => {
|
|
709
|
+
if (n.value) {
|
|
710
710
|
a("update:modelValue", i.value);
|
|
711
|
-
const g =
|
|
711
|
+
const g = k(i.value, r.min, r.max);
|
|
712
712
|
let y = (50 - g) / 100;
|
|
713
713
|
T(g + y);
|
|
714
714
|
}
|
|
715
715
|
}), (g, y) => (l(), s(q, null, [
|
|
716
|
-
t("div",
|
|
717
|
-
t("div",
|
|
716
|
+
t("div", ot, [
|
|
717
|
+
t("div", nt, [
|
|
718
718
|
t("label", {
|
|
719
719
|
for: e.id,
|
|
720
720
|
class: c([e.variant, ""])
|
|
721
|
-
},
|
|
721
|
+
}, o(e.label), 11, dt),
|
|
722
722
|
e.information ? (l(), s("i", {
|
|
723
723
|
key: 0,
|
|
724
724
|
role: "button",
|
|
725
725
|
class: c([e.variant, "slider__information"]),
|
|
726
726
|
onClick: y[0] || (y[0] = (B) => _.value = !_.value),
|
|
727
|
-
onKeyup: y[1] || (y[1] =
|
|
727
|
+
onKeyup: y[1] || (y[1] = ye((B) => _.value = !_.value, ["enter"])),
|
|
728
728
|
"aria-label": e.informationLabel,
|
|
729
729
|
tabindex: "0",
|
|
730
730
|
"aria-haspopup": "dialog"
|
|
731
|
-
}, null, 42,
|
|
731
|
+
}, null, 42, ct)) : m("", !0)
|
|
732
732
|
]),
|
|
733
|
-
t("div",
|
|
733
|
+
t("div", ut, [
|
|
734
734
|
t("span", {
|
|
735
735
|
class: c([e.variant, "slider__minmax"])
|
|
736
|
-
},
|
|
736
|
+
}, o(e.min), 3),
|
|
737
737
|
t("input", {
|
|
738
738
|
type: "range",
|
|
739
739
|
id: e.id,
|
|
@@ -744,31 +744,31 @@ const de = /* @__PURE__ */ m(_t, [["__scopeId", "data-v-d75ee1bf"]]), ht = { cla
|
|
|
744
744
|
max: e.max,
|
|
745
745
|
class: c(e.variant),
|
|
746
746
|
ref_key: "slider",
|
|
747
|
-
ref:
|
|
747
|
+
ref: n,
|
|
748
748
|
onInput: y[2] || (y[2] = ({ target: B }) => i.value = parseFloat(B.value))
|
|
749
|
-
}, null, 42,
|
|
749
|
+
}, null, 42, _t),
|
|
750
750
|
t("span", {
|
|
751
751
|
class: c([e.variant, "slider__minmax"])
|
|
752
|
-
},
|
|
752
|
+
}, o(e.max), 3)
|
|
753
753
|
]),
|
|
754
754
|
t("span", {
|
|
755
755
|
class: c([e.variant, "slider__value"])
|
|
756
|
-
},
|
|
756
|
+
}, o(e.modelValue), 3)
|
|
757
757
|
]),
|
|
758
|
-
e.information ? (l(), z(
|
|
758
|
+
e.information ? (l(), z(re, {
|
|
759
759
|
key: 0,
|
|
760
760
|
show: _.value,
|
|
761
761
|
"onUpdate:show": y[3] || (y[3] = (B) => _.value = B)
|
|
762
762
|
}, {
|
|
763
763
|
default: $(() => [
|
|
764
|
-
E(
|
|
764
|
+
E(o(e.information), 1)
|
|
765
765
|
]),
|
|
766
766
|
_: 1
|
|
767
|
-
}, 8, ["show"])) :
|
|
767
|
+
}, 8, ["show"])) : m("", !0)
|
|
768
768
|
], 64));
|
|
769
769
|
}
|
|
770
770
|
});
|
|
771
|
-
const
|
|
771
|
+
const vt = /* @__PURE__ */ v(ht, [["__scopeId", "data-v-e7ddf2f4"]]), mt = { id: "textarea-wrapper" }, gt = ["for"], ft = ["id"], yt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], bt = { class: "textarea-info" }, pt = { key: 0 }, $t = /* @__PURE__ */ h({
|
|
772
772
|
__name: "textarea",
|
|
773
773
|
props: {
|
|
774
774
|
id: {
|
|
@@ -808,11 +808,11 @@ const pt = /* @__PURE__ */ m(bt, [["__scopeId", "data-v-42d0735f"]]), $t = { id:
|
|
|
808
808
|
},
|
|
809
809
|
emits: ["update:modelValue"],
|
|
810
810
|
setup(e) {
|
|
811
|
-
return (a, r) => (l(), s("div",
|
|
811
|
+
return (a, r) => (l(), s("div", mt, [
|
|
812
812
|
t("label", {
|
|
813
813
|
for: e.id,
|
|
814
814
|
class: c({ required: e.required })
|
|
815
|
-
},
|
|
815
|
+
}, o(e.labelText) + o(e.required ? " *" : ""), 11, gt),
|
|
816
816
|
t("div", {
|
|
817
817
|
id: e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "textarea-wrapper__inner" : ""
|
|
818
818
|
}, [
|
|
@@ -830,31 +830,31 @@ const pt = /* @__PURE__ */ m(bt, [["__scopeId", "data-v-42d0735f"]]), $t = { id:
|
|
|
830
830
|
class: c(
|
|
831
831
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit" : "border"
|
|
832
832
|
)
|
|
833
|
-
}, null, 42,
|
|
834
|
-
], 8,
|
|
835
|
-
t("div",
|
|
833
|
+
}, null, 42, yt)
|
|
834
|
+
], 8, ft),
|
|
835
|
+
t("div", bt, [
|
|
836
836
|
t("div", null, [
|
|
837
|
-
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (l(), s("p",
|
|
837
|
+
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (l(), s("p", pt, " Too many characters. Please make it shorter ")) : m("", !0)
|
|
838
838
|
]),
|
|
839
839
|
t("p", {
|
|
840
840
|
class: c(
|
|
841
841
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit-meter" : ""
|
|
842
842
|
)
|
|
843
|
-
},
|
|
843
|
+
}, o(e.maxLength !== void 0 && e.modelValue !== void 0 && e.maxLength - e.modelValue.length >= 0 ? e.modelValue.length : 0) + " / " + o(e.maxLength), 3)
|
|
844
844
|
])
|
|
845
845
|
]));
|
|
846
846
|
}
|
|
847
847
|
});
|
|
848
|
-
const
|
|
848
|
+
const kt = /* @__PURE__ */ v($t, [["__scopeId", "data-v-4a6ef5f6"]]), wt = { class: "text-field__wrapper" }, xt = ["for"], St = { key: 0 }, qt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Bt = ["aria-expanded"], It = ["type", "value", "placeholder", "id", "required", "disabled", "name"], Lt = {
|
|
849
849
|
key: 2,
|
|
850
850
|
class: "search"
|
|
851
|
-
},
|
|
851
|
+
}, Tt = {
|
|
852
852
|
key: 3,
|
|
853
853
|
class: "errorMessage"
|
|
854
|
-
},
|
|
854
|
+
}, Ct = {
|
|
855
855
|
key: 4,
|
|
856
856
|
class: "helperText"
|
|
857
|
-
},
|
|
857
|
+
}, Vt = /* @__PURE__ */ h({
|
|
858
858
|
__name: "text-field",
|
|
859
859
|
props: {
|
|
860
860
|
type: {
|
|
@@ -926,12 +926,12 @@ const It = /* @__PURE__ */ m(Bt, [["__scopeId", "data-v-9f828ce8"]]), Lt = { cla
|
|
|
926
926
|
},
|
|
927
927
|
emits: ["update:modelValue"],
|
|
928
928
|
setup(e) {
|
|
929
|
-
const a =
|
|
929
|
+
const a = x(!0), r = P(
|
|
930
930
|
() => a.value ? "showPassword" : "hidePassword"
|
|
931
931
|
), i = P(
|
|
932
932
|
() => a.value ? "password" : "text"
|
|
933
933
|
);
|
|
934
|
-
return (
|
|
934
|
+
return (n, _) => (l(), s("div", wt, [
|
|
935
935
|
t("label", {
|
|
936
936
|
for: e.id,
|
|
937
937
|
class: c([
|
|
@@ -939,8 +939,8 @@ const It = /* @__PURE__ */ m(Bt, [["__scopeId", "data-v-9f828ce8"]]), Lt = { cla
|
|
|
939
939
|
e.disabled ? "disabled" : "",
|
|
940
940
|
e.search ? "search" : ""
|
|
941
941
|
])
|
|
942
|
-
},
|
|
943
|
-
e.type === "password" ? (l(), s("div",
|
|
942
|
+
}, o(e.label), 11, xt),
|
|
943
|
+
e.type === "password" ? (l(), s("div", St, [
|
|
944
944
|
t("input", {
|
|
945
945
|
id: e.id,
|
|
946
946
|
type: i.value,
|
|
@@ -948,16 +948,16 @@ const It = /* @__PURE__ */ m(Bt, [["__scopeId", "data-v-9f828ce8"]]), Lt = { cla
|
|
|
948
948
|
placeholder: e.placeholder,
|
|
949
949
|
required: e.required,
|
|
950
950
|
disabled: e.disabled,
|
|
951
|
-
onInput: _[0] || (_[0] = (
|
|
951
|
+
onInput: _[0] || (_[0] = (k) => n.$emit("update:modelValue", k.target.value)),
|
|
952
952
|
name: e.fieldName
|
|
953
|
-
}, null, 40,
|
|
953
|
+
}, null, 40, qt),
|
|
954
954
|
t("i", {
|
|
955
955
|
role: "button",
|
|
956
956
|
class: c([r.value]),
|
|
957
|
-
onClick: _[1] || (_[1] = (
|
|
957
|
+
onClick: _[1] || (_[1] = (k) => a.value = !a.value),
|
|
958
958
|
"aria-controls": "password",
|
|
959
959
|
"aria-expanded": !a.value
|
|
960
|
-
}, null, 10,
|
|
960
|
+
}, null, 10, Bt)
|
|
961
961
|
])) : (l(), s("input", {
|
|
962
962
|
key: 1,
|
|
963
963
|
type: e.type,
|
|
@@ -971,16 +971,16 @@ const It = /* @__PURE__ */ m(Bt, [["__scopeId", "data-v-9f828ce8"]]), Lt = { cla
|
|
|
971
971
|
e.search ? "search" : ""
|
|
972
972
|
]),
|
|
973
973
|
disabled: e.disabled,
|
|
974
|
-
onInput: _[2] || (_[2] = (
|
|
974
|
+
onInput: _[2] || (_[2] = (k) => n.$emit("update:modelValue", k.target.value)),
|
|
975
975
|
name: e.fieldName
|
|
976
|
-
}, null, 42,
|
|
977
|
-
e.search ? (l(), s("i",
|
|
978
|
-
e.errorMessage ? (l(), s("strong",
|
|
979
|
-
e.helperText ? (l(), s("span",
|
|
976
|
+
}, null, 42, It)),
|
|
977
|
+
e.search ? (l(), s("i", Lt)) : m("", !0),
|
|
978
|
+
e.errorMessage ? (l(), s("strong", Tt, o(e.errorMessage), 1)) : m("", !0),
|
|
979
|
+
e.helperText ? (l(), s("span", Ct, o(e.helperText), 1)) : m("", !0)
|
|
980
980
|
]));
|
|
981
981
|
}
|
|
982
982
|
});
|
|
983
|
-
const
|
|
983
|
+
const At = /* @__PURE__ */ v(Vt, [["__scopeId", "data-v-c094bd3c"]]), Dt = { class: "video__wrapper" }, Mt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Ot = ["src", "aria-label", "title", "width", "height"], zt = /* @__PURE__ */ h({
|
|
984
984
|
__name: "video",
|
|
985
985
|
props: {
|
|
986
986
|
play: {
|
|
@@ -1033,14 +1033,14 @@ const Ft = /* @__PURE__ */ m(Pt, [["__scopeId", "data-v-af2ebcaf"]]), Nt = { cla
|
|
|
1033
1033
|
},
|
|
1034
1034
|
setup(e, { expose: a }) {
|
|
1035
1035
|
const r = e;
|
|
1036
|
-
let i =
|
|
1037
|
-
return
|
|
1036
|
+
let i = x(null);
|
|
1037
|
+
return le(() => {
|
|
1038
1038
|
r.play && i.value ? i.value.play() : !r.play && i.value && i.value.pause();
|
|
1039
1039
|
}), a({
|
|
1040
1040
|
resetVideo: () => {
|
|
1041
1041
|
i.value && (i.value.currentTime = 0, i.value.play());
|
|
1042
1042
|
}
|
|
1043
|
-
}), (_,
|
|
1043
|
+
}), (_, k) => (l(), s("div", Dt, [
|
|
1044
1044
|
e.localVideo ? (l(), s("video", {
|
|
1045
1045
|
key: 0,
|
|
1046
1046
|
ref_key: "videoRef",
|
|
@@ -1056,7 +1056,7 @@ const Ft = /* @__PURE__ */ m(Pt, [["__scopeId", "data-v-af2ebcaf"]]), Nt = { cla
|
|
|
1056
1056
|
type: "video/mp4",
|
|
1057
1057
|
playsinline: "",
|
|
1058
1058
|
src: e.src
|
|
1059
|
-
}, " Your browser does not support HTML video. ", 8,
|
|
1059
|
+
}, " Your browser does not support HTML video. ", 8, Mt)) : (l(), s("iframe", {
|
|
1060
1060
|
key: 1,
|
|
1061
1061
|
src: e.src,
|
|
1062
1062
|
"aria-label": e.ariaLabel,
|
|
@@ -1066,11 +1066,11 @@ const Ft = /* @__PURE__ */ m(Pt, [["__scopeId", "data-v-af2ebcaf"]]), Nt = { cla
|
|
|
1066
1066
|
frameborder: "0",
|
|
1067
1067
|
allow: "autoplay; fullscreen",
|
|
1068
1068
|
allowfullscreen: ""
|
|
1069
|
-
}, null, 8,
|
|
1069
|
+
}, null, 8, Ot))
|
|
1070
1070
|
]));
|
|
1071
1071
|
}
|
|
1072
1072
|
});
|
|
1073
|
-
const H = /* @__PURE__ */
|
|
1073
|
+
const H = /* @__PURE__ */ v(zt, [["__scopeId", "data-v-c449311a"]]), Pt = { class: "address__wrapper" }, Ft = { class: "address__content" }, Nt = { class: "address__flag" }, Et = { class: "address__address" }, Ht = { class: "address__name" }, Rt = { key: 0 }, jt = { class: "address__contact" }, Kt = ["href"], Ut = ["href"], Wt = /* @__PURE__ */ h({
|
|
1074
1074
|
__name: "address",
|
|
1075
1075
|
props: {
|
|
1076
1076
|
name: {
|
|
@@ -1101,19 +1101,19 @@ const H = /* @__PURE__ */ m(Rt, [["__scopeId", "data-v-c449311a"]]), jt = { clas
|
|
|
1101
1101
|
}
|
|
1102
1102
|
},
|
|
1103
1103
|
setup(e) {
|
|
1104
|
-
return (a, r) => (l(), s("div",
|
|
1105
|
-
t("div",
|
|
1106
|
-
t("div",
|
|
1104
|
+
return (a, r) => (l(), s("div", Pt, [
|
|
1105
|
+
t("div", Ft, [
|
|
1106
|
+
t("div", Nt, [
|
|
1107
1107
|
u(a.$slots, "address-flag", {}, void 0, !0)
|
|
1108
1108
|
]),
|
|
1109
|
-
t("div",
|
|
1110
|
-
t("p",
|
|
1111
|
-
t("p", null,
|
|
1112
|
-
t("p", null,
|
|
1113
|
-
t("p", null,
|
|
1114
|
-
e.addressLine_3 ? (l(), s("p",
|
|
1109
|
+
t("div", Et, [
|
|
1110
|
+
t("p", Ht, o(e.name), 1),
|
|
1111
|
+
t("p", null, o(e.company), 1),
|
|
1112
|
+
t("p", null, o(e.addressLine_1), 1),
|
|
1113
|
+
t("p", null, o(e.addressLine_2), 1),
|
|
1114
|
+
e.addressLine_3 ? (l(), s("p", Rt, o(e.addressLine_3), 1)) : m("", !0)
|
|
1115
1115
|
]),
|
|
1116
|
-
t("div",
|
|
1116
|
+
t("div", jt, [
|
|
1117
1117
|
(l(!0), s(q, null, I(e.phone_numbers, (i) => (l(), z(C, {
|
|
1118
1118
|
underline: "false",
|
|
1119
1119
|
linkType: "regular"
|
|
@@ -1122,20 +1122,20 @@ const H = /* @__PURE__ */ m(Rt, [["__scopeId", "data-v-c449311a"]]), jt = { clas
|
|
|
1122
1122
|
t("a", {
|
|
1123
1123
|
href: "tel:" + i,
|
|
1124
1124
|
class: "address__phone"
|
|
1125
|
-
},
|
|
1125
|
+
}, o(i), 9, Kt)
|
|
1126
1126
|
]),
|
|
1127
1127
|
_: 2
|
|
1128
1128
|
}, 1024))), 256)),
|
|
1129
1129
|
t("a", {
|
|
1130
1130
|
href: "mailto:" + e.email,
|
|
1131
1131
|
class: "address__email"
|
|
1132
|
-
},
|
|
1132
|
+
}, o(e.email), 9, Ut)
|
|
1133
1133
|
])
|
|
1134
1134
|
])
|
|
1135
1135
|
]));
|
|
1136
1136
|
}
|
|
1137
1137
|
});
|
|
1138
|
-
const
|
|
1138
|
+
const Gt = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-a87ec518"]]), Yt = (e) => (D("data-v-f6479768"), e = e(), M(), e), Qt = { class: "bullet-list__wrapper" }, Jt = /* @__PURE__ */ Yt(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), Xt = /* @__PURE__ */ h({
|
|
1139
1139
|
__name: "bullet-list",
|
|
1140
1140
|
props: {
|
|
1141
1141
|
list: {
|
|
@@ -1155,21 +1155,21 @@ const ea = /* @__PURE__ */ m(Zt, [["__scopeId", "data-v-a87ec518"]]), ta = (e) =
|
|
|
1155
1155
|
}
|
|
1156
1156
|
},
|
|
1157
1157
|
setup(e) {
|
|
1158
|
-
return (a, r) => (l(), s("div",
|
|
1158
|
+
return (a, r) => (l(), s("div", Qt, [
|
|
1159
1159
|
t("div", {
|
|
1160
1160
|
class: c(["bullet-list", e.variant])
|
|
1161
1161
|
}, [
|
|
1162
1162
|
t("ul", null, [
|
|
1163
1163
|
(l(!0), s(q, null, I(e.list, (i) => (l(), s("li", null, [
|
|
1164
|
-
|
|
1165
|
-
E(" " +
|
|
1164
|
+
Jt,
|
|
1165
|
+
E(" " + o(i), 1)
|
|
1166
1166
|
]))), 256))
|
|
1167
1167
|
])
|
|
1168
1168
|
], 2)
|
|
1169
1169
|
]));
|
|
1170
1170
|
}
|
|
1171
1171
|
});
|
|
1172
|
-
const
|
|
1172
|
+
const Zt = /* @__PURE__ */ v(Xt, [["__scopeId", "data-v-f6479768"]]), ea = { class: "card__wrapper" }, ta = { key: 4 }, aa = /* @__PURE__ */ h({
|
|
1173
1173
|
__name: "card",
|
|
1174
1174
|
props: {
|
|
1175
1175
|
variant: {
|
|
@@ -1224,8 +1224,8 @@ const ra = /* @__PURE__ */ m(ia, [["__scopeId", "data-v-b7d0b5c4"]]), sa = { cla
|
|
|
1224
1224
|
},
|
|
1225
1225
|
emits: ["clicked"],
|
|
1226
1226
|
setup(e, { emit: a }) {
|
|
1227
|
-
let r =
|
|
1228
|
-
return (i,
|
|
1227
|
+
let r = x(!1);
|
|
1228
|
+
return (i, n) => (l(), s("div", ea, [
|
|
1229
1229
|
t("div", {
|
|
1230
1230
|
class: c(["card", [
|
|
1231
1231
|
e.theme == "dark" ? "card--dark" : "card--light",
|
|
@@ -1235,8 +1235,8 @@ const ra = /* @__PURE__ */ m(ia, [["__scopeId", "data-v-b7d0b5c4"]]), sa = { cla
|
|
|
1235
1235
|
e.variant == "product" ? "card--product" : "card--article"
|
|
1236
1236
|
]]),
|
|
1237
1237
|
style: Q([e.variant == "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
1238
|
-
onMouseover:
|
|
1239
|
-
onMouseout:
|
|
1238
|
+
onMouseover: n[0] || (n[0] = (_) => ee(r) ? r.value = !0 : r = !0),
|
|
1239
|
+
onMouseout: n[1] || (n[1] = (_) => ee(r) ? r.value = !1 : r = !1)
|
|
1240
1240
|
}, [
|
|
1241
1241
|
e.mediaType == "image" ? (l(), z(L, { key: 0 }, {
|
|
1242
1242
|
default: $(() => [
|
|
@@ -1252,10 +1252,10 @@ const ra = /* @__PURE__ */ m(ia, [["__scopeId", "data-v-b7d0b5c4"]]), sa = { cla
|
|
|
1252
1252
|
_: 3
|
|
1253
1253
|
})) : (l(), s("div", {
|
|
1254
1254
|
key: 1,
|
|
1255
|
-
class: c(["video-card__wrapper",
|
|
1255
|
+
class: c(["video-card__wrapper", S(r) == !0 ? "vimeoPlaying" : ""])
|
|
1256
1256
|
}, [
|
|
1257
1257
|
p(H, {
|
|
1258
|
-
play:
|
|
1258
|
+
play: S(r),
|
|
1259
1259
|
localVideo: !0,
|
|
1260
1260
|
src: e.videoSrc,
|
|
1261
1261
|
"aria-label": e.arialabel,
|
|
@@ -1271,17 +1271,17 @@ const ra = /* @__PURE__ */ m(ia, [["__scopeId", "data-v-b7d0b5c4"]]), sa = { cla
|
|
|
1271
1271
|
e.variant === "product" ? (l(), s("h3", {
|
|
1272
1272
|
key: 2,
|
|
1273
1273
|
class: c(e.theme == "dark" ? "regular-dark" : "regular-blue")
|
|
1274
|
-
},
|
|
1274
|
+
}, o(e.headline), 3)) : (l(), s("h3", {
|
|
1275
1275
|
key: 3,
|
|
1276
1276
|
class: c(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
|
|
1277
|
-
},
|
|
1278
|
-
e.variant == "product" ? (l(), s("p",
|
|
1277
|
+
}, o(e.headline), 3)),
|
|
1278
|
+
e.variant == "product" ? (l(), s("p", ta, o(e.paragraph), 1)) : m("", !0),
|
|
1279
1279
|
u(i.$slots, "card-label")
|
|
1280
1280
|
], 38)
|
|
1281
1281
|
]));
|
|
1282
1282
|
}
|
|
1283
1283
|
});
|
|
1284
|
-
const
|
|
1284
|
+
const la = /* @__PURE__ */ v(aa, [["__scopeId", "data-v-2a33f841"]]), ia = (e) => (D("data-v-f5acdf7e"), e = e(), M(), e), ra = { class: "event__wrapper" }, sa = { class: "event__headline" }, oa = { class: "event__date-location" }, na = /* @__PURE__ */ ia(() => /* @__PURE__ */ t("br", null, null, -1)), da = { class: "event__exhibitor" }, ca = /* @__PURE__ */ h({
|
|
1285
1285
|
__name: "event-card",
|
|
1286
1286
|
props: {
|
|
1287
1287
|
eventType: {
|
|
@@ -1306,22 +1306,22 @@ const da = /* @__PURE__ */ m(oa, [["__scopeId", "data-v-2a33f841"]]), ca = (e) =
|
|
|
1306
1306
|
}
|
|
1307
1307
|
},
|
|
1308
1308
|
setup(e) {
|
|
1309
|
-
return (a, r) => (l(), s("div",
|
|
1309
|
+
return (a, r) => (l(), s("div", ra, [
|
|
1310
1310
|
p(j, {
|
|
1311
1311
|
"label-dark": !1,
|
|
1312
1312
|
text: e.eventType ? e.eventType : ""
|
|
1313
1313
|
}, null, 8, ["text"]),
|
|
1314
|
-
t("div",
|
|
1315
|
-
t("div",
|
|
1316
|
-
E(
|
|
1317
|
-
|
|
1318
|
-
E(
|
|
1314
|
+
t("div", sa, o(e.headline), 1),
|
|
1315
|
+
t("div", oa, [
|
|
1316
|
+
E(o(e.dateTime), 1),
|
|
1317
|
+
na,
|
|
1318
|
+
E(o(e.location), 1)
|
|
1319
1319
|
]),
|
|
1320
|
-
t("div",
|
|
1320
|
+
t("div", da, "Exhibitor: " + o(e.exhibitor), 1)
|
|
1321
1321
|
]));
|
|
1322
1322
|
}
|
|
1323
1323
|
});
|
|
1324
|
-
const
|
|
1324
|
+
const ua = /* @__PURE__ */ v(ca, [["__scopeId", "data-v-f5acdf7e"]]), _a = { class: "text__wrapper" }, ha = { class: "text__headline" }, va = { class: "text__paragraph" }, ma = /* @__PURE__ */ h({
|
|
1325
1325
|
__name: "text-card",
|
|
1326
1326
|
props: {
|
|
1327
1327
|
label: {
|
|
@@ -1338,22 +1338,22 @@ const fa = /* @__PURE__ */ m(ga, [["__scopeId", "data-v-f5acdf7e"]]), ya = { cla
|
|
|
1338
1338
|
}
|
|
1339
1339
|
},
|
|
1340
1340
|
setup(e) {
|
|
1341
|
-
return (a, r) => (l(), s("div",
|
|
1341
|
+
return (a, r) => (l(), s("div", _a, [
|
|
1342
1342
|
p(j, {
|
|
1343
1343
|
"label-dark": !1,
|
|
1344
1344
|
text: e.label ? e.label : ""
|
|
1345
1345
|
}, null, 8, ["text"]),
|
|
1346
|
-
t("div",
|
|
1347
|
-
t("div",
|
|
1348
|
-
t("p", null,
|
|
1346
|
+
t("div", ha, o(e.headline), 1),
|
|
1347
|
+
t("div", va, [
|
|
1348
|
+
t("p", null, o(e.paragraph), 1)
|
|
1349
1349
|
])
|
|
1350
1350
|
]));
|
|
1351
1351
|
}
|
|
1352
1352
|
});
|
|
1353
|
-
const
|
|
1353
|
+
const ga = /* @__PURE__ */ v(ma, [["__scopeId", "data-v-dbd0c7ab"]]), fa = { class: "facts__wrapper" }, ya = { class: "facts__content" }, ba = { class: "facts__headline" }, pa = { class: "facts" }, $a = { class: "fact" }, ka = { class: "fact__value" }, wa = { class: "fact__metric" }, xa = {
|
|
1354
1354
|
key: 0,
|
|
1355
1355
|
class: "facts__link"
|
|
1356
|
-
},
|
|
1356
|
+
}, Sa = /* @__PURE__ */ h({
|
|
1357
1357
|
__name: "facts",
|
|
1358
1358
|
props: {
|
|
1359
1359
|
headline: {
|
|
@@ -1371,20 +1371,20 @@ const ka = /* @__PURE__ */ m($a, [["__scopeId", "data-v-dbd0c7ab"]]), wa = { cla
|
|
|
1371
1371
|
}
|
|
1372
1372
|
},
|
|
1373
1373
|
setup(e) {
|
|
1374
|
-
return (a, r) => (l(), s("div",
|
|
1375
|
-
t("div",
|
|
1376
|
-
t("h2",
|
|
1377
|
-
t("div",
|
|
1378
|
-
(l(!0), s(q, null, I(e.facts, (i) => (l(), s("div",
|
|
1379
|
-
t("div",
|
|
1380
|
-
t("span", null,
|
|
1374
|
+
return (a, r) => (l(), s("div", fa, [
|
|
1375
|
+
t("div", ya, [
|
|
1376
|
+
t("h2", ba, o(e.headline), 1),
|
|
1377
|
+
t("div", pa, [
|
|
1378
|
+
(l(!0), s(q, null, I(e.facts, (i) => (l(), s("div", $a, [
|
|
1379
|
+
t("div", ka, [
|
|
1380
|
+
t("span", null, o(i.value), 1)
|
|
1381
1381
|
]),
|
|
1382
|
-
t("div",
|
|
1383
|
-
t("span", null,
|
|
1382
|
+
t("div", wa, [
|
|
1383
|
+
t("span", null, o(i.metric), 1)
|
|
1384
1384
|
])
|
|
1385
1385
|
]))), 256))
|
|
1386
1386
|
]),
|
|
1387
|
-
e.link ? (l(), s("div",
|
|
1387
|
+
e.link ? (l(), s("div", xa, [
|
|
1388
1388
|
p(C, {
|
|
1389
1389
|
linkType: "regular-light",
|
|
1390
1390
|
arrow: ""
|
|
@@ -1394,18 +1394,18 @@ const ka = /* @__PURE__ */ m($a, [["__scopeId", "data-v-dbd0c7ab"]]), wa = { cla
|
|
|
1394
1394
|
]),
|
|
1395
1395
|
_: 3
|
|
1396
1396
|
})
|
|
1397
|
-
])) :
|
|
1397
|
+
])) : m("", !0)
|
|
1398
1398
|
])
|
|
1399
1399
|
]));
|
|
1400
1400
|
}
|
|
1401
1401
|
});
|
|
1402
|
-
const
|
|
1402
|
+
const qa = /* @__PURE__ */ v(Sa, [["__scopeId", "data-v-7fd89b0c"]]), Ba = { class: "features__wrapper" }, Ia = { class: "features__content" }, La = {
|
|
1403
1403
|
key: 0,
|
|
1404
1404
|
class: "features__headline"
|
|
1405
|
-
},
|
|
1405
|
+
}, Ta = {
|
|
1406
1406
|
key: 1,
|
|
1407
1407
|
class: "features__body"
|
|
1408
|
-
},
|
|
1408
|
+
}, Ca = { class: "features__element" }, Va = { class: "element__headline" }, Aa = { class: "element__body" }, Da = /* @__PURE__ */ h({
|
|
1409
1409
|
__name: "features",
|
|
1410
1410
|
props: {
|
|
1411
1411
|
headline: {
|
|
@@ -1423,18 +1423,18 @@ const Va = /* @__PURE__ */ m(Ca, [["__scopeId", "data-v-7fd89b0c"]]), Aa = { cla
|
|
|
1423
1423
|
}
|
|
1424
1424
|
},
|
|
1425
1425
|
setup(e) {
|
|
1426
|
-
return (a, r) => (l(), s("div",
|
|
1427
|
-
t("div",
|
|
1428
|
-
e.headline ? (l(), s("div",
|
|
1429
|
-
t("h2", null,
|
|
1430
|
-
])) :
|
|
1431
|
-
e.body ? (l(), s("div",
|
|
1432
|
-
t("p", null,
|
|
1433
|
-
])) :
|
|
1426
|
+
return (a, r) => (l(), s("div", Ba, [
|
|
1427
|
+
t("div", Ia, [
|
|
1428
|
+
e.headline ? (l(), s("div", La, [
|
|
1429
|
+
t("h2", null, o(e.headline), 1)
|
|
1430
|
+
])) : m("", !0),
|
|
1431
|
+
e.body ? (l(), s("div", Ta, [
|
|
1432
|
+
t("p", null, o(e.body), 1)
|
|
1433
|
+
])) : m("", !0),
|
|
1434
1434
|
t("div", {
|
|
1435
1435
|
class: c(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
|
|
1436
1436
|
}, [
|
|
1437
|
-
(l(!0), s(q, null, I(e.elements, (i) => (l(), s("div",
|
|
1437
|
+
(l(!0), s(q, null, I(e.elements, (i) => (l(), s("div", Ca, [
|
|
1438
1438
|
p(L, { class: "element__icon" }, {
|
|
1439
1439
|
default: $(() => [
|
|
1440
1440
|
u(a.$slots, "features-icon", V(A({
|
|
@@ -1446,15 +1446,15 @@ const Va = /* @__PURE__ */ m(Ca, [["__scopeId", "data-v-7fd89b0c"]]), Aa = { cla
|
|
|
1446
1446
|
]),
|
|
1447
1447
|
_: 2
|
|
1448
1448
|
}, 1024),
|
|
1449
|
-
t("p",
|
|
1450
|
-
t("p",
|
|
1449
|
+
t("p", Va, o(i.headline), 1),
|
|
1450
|
+
t("p", Aa, o(i.body), 1)
|
|
1451
1451
|
]))), 256))
|
|
1452
1452
|
], 2)
|
|
1453
1453
|
])
|
|
1454
1454
|
]));
|
|
1455
1455
|
}
|
|
1456
1456
|
});
|
|
1457
|
-
const
|
|
1457
|
+
const Ma = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-0990b89f"]]), Oa = { class: "image__wrapper" }, za = { class: "image__content" }, Pa = { class: "image__image" }, Fa = { class: "image__caption" }, Na = /* @__PURE__ */ h({
|
|
1458
1458
|
__name: "image",
|
|
1459
1459
|
props: {
|
|
1460
1460
|
caption: {
|
|
@@ -1471,9 +1471,9 @@ const Ea = /* @__PURE__ */ m(Na, [["__scopeId", "data-v-0990b89f"]]), Ha = { cla
|
|
|
1471
1471
|
}
|
|
1472
1472
|
},
|
|
1473
1473
|
setup(e) {
|
|
1474
|
-
return (a, r) => (l(), s("div",
|
|
1475
|
-
t("div",
|
|
1476
|
-
t("div",
|
|
1474
|
+
return (a, r) => (l(), s("div", Oa, [
|
|
1475
|
+
t("div", za, [
|
|
1476
|
+
t("div", Pa, [
|
|
1477
1477
|
p(L, null, {
|
|
1478
1478
|
default: $(() => [
|
|
1479
1479
|
u(a.$slots, "image", V(A({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
@@ -1481,21 +1481,21 @@ const Ea = /* @__PURE__ */ m(Na, [["__scopeId", "data-v-0990b89f"]]), Ha = { cla
|
|
|
1481
1481
|
_: 3
|
|
1482
1482
|
})
|
|
1483
1483
|
]),
|
|
1484
|
-
t("p",
|
|
1484
|
+
t("p", Fa, o(e.caption), 1)
|
|
1485
1485
|
])
|
|
1486
1486
|
]));
|
|
1487
1487
|
}
|
|
1488
1488
|
});
|
|
1489
|
-
const
|
|
1489
|
+
const Ea = /* @__PURE__ */ v(Na, [["__scopeId", "data-v-6dde0544"]]), Ha = { class: "gallery__large" }, Ra = {
|
|
1490
1490
|
key: 0,
|
|
1491
1491
|
class: "image image--large"
|
|
1492
|
-
},
|
|
1492
|
+
}, ja = {
|
|
1493
1493
|
key: 1,
|
|
1494
1494
|
class: "video"
|
|
1495
|
-
},
|
|
1495
|
+
}, Ka = { class: "image image--small" }, Ua = {
|
|
1496
1496
|
key: 0,
|
|
1497
1497
|
class: "body"
|
|
1498
|
-
},
|
|
1498
|
+
}, Wa = /* @__PURE__ */ h({
|
|
1499
1499
|
__name: "image-gallery",
|
|
1500
1500
|
props: {
|
|
1501
1501
|
mediaLarge: {
|
|
@@ -1546,8 +1546,8 @@ const Ua = /* @__PURE__ */ m(Ka, [["__scopeId", "data-v-6dde0544"]]), Ga = { cla
|
|
|
1546
1546
|
e.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1547
1547
|
])
|
|
1548
1548
|
}, [
|
|
1549
|
-
t("div",
|
|
1550
|
-
e.mediaLarge && e.mediaType === "image" ? (l(), s("div",
|
|
1549
|
+
t("div", Ha, [
|
|
1550
|
+
e.mediaLarge && e.mediaType === "image" ? (l(), s("div", Ra, [
|
|
1551
1551
|
p(L, null, {
|
|
1552
1552
|
default: $(() => [
|
|
1553
1553
|
u(a.$slots, "image-large", V(A({
|
|
@@ -1559,8 +1559,8 @@ const Ua = /* @__PURE__ */ m(Ka, [["__scopeId", "data-v-6dde0544"]]), Ga = { cla
|
|
|
1559
1559
|
]),
|
|
1560
1560
|
_: 3
|
|
1561
1561
|
})
|
|
1562
|
-
])) :
|
|
1563
|
-
e.mediaLarge && e.mediaType === "video" ? (l(), s("div",
|
|
1562
|
+
])) : m("", !0),
|
|
1563
|
+
e.mediaLarge && e.mediaType === "video" ? (l(), s("div", ja, [
|
|
1564
1564
|
p(H, {
|
|
1565
1565
|
src: e.mediaLarge.src,
|
|
1566
1566
|
localVideo: "",
|
|
@@ -1573,7 +1573,7 @@ const Ua = /* @__PURE__ */ m(Ka, [["__scopeId", "data-v-6dde0544"]]), Ga = { cla
|
|
|
1573
1573
|
muted: !0,
|
|
1574
1574
|
play: !0
|
|
1575
1575
|
}, null, 8, ["src", "ariaLabel"])
|
|
1576
|
-
])) :
|
|
1576
|
+
])) : m("", !0)
|
|
1577
1577
|
]),
|
|
1578
1578
|
t("div", {
|
|
1579
1579
|
style: Q([e.mediaSmall.length == 2 ? "grid-gap: 38px;" : ""]),
|
|
@@ -1582,7 +1582,7 @@ const Ua = /* @__PURE__ */ m(Ka, [["__scopeId", "data-v-6dde0544"]]), Ga = { cla
|
|
|
1582
1582
|
e.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1583
1583
|
])
|
|
1584
1584
|
}, [
|
|
1585
|
-
(l(!0), s(q, null, I(e.mediaSmall, (i) => (l(), s("div",
|
|
1585
|
+
(l(!0), s(q, null, I(e.mediaSmall, (i) => (l(), s("div", Ka, [
|
|
1586
1586
|
p(L, null, {
|
|
1587
1587
|
default: $(() => [
|
|
1588
1588
|
u(a.$slots, "image-small", V(A({
|
|
@@ -1595,15 +1595,15 @@ const Ua = /* @__PURE__ */ m(Ka, [["__scopeId", "data-v-6dde0544"]]), Ga = { cla
|
|
|
1595
1595
|
_: 2
|
|
1596
1596
|
}, 1024)
|
|
1597
1597
|
]))), 256)),
|
|
1598
|
-
e.mediaSmall.length < 2 ? (l(), s("div",
|
|
1599
|
-
t("p", null,
|
|
1600
|
-
])) :
|
|
1598
|
+
e.mediaSmall.length < 2 ? (l(), s("div", Ua, [
|
|
1599
|
+
t("p", null, o(e.body), 1)
|
|
1600
|
+
])) : m("", !0)
|
|
1601
1601
|
], 6)
|
|
1602
1602
|
], 2)
|
|
1603
1603
|
], 2));
|
|
1604
1604
|
}
|
|
1605
1605
|
});
|
|
1606
|
-
const
|
|
1606
|
+
const Ga = /* @__PURE__ */ v(Wa, [["__scopeId", "data-v-bad7dce2"]]), Ya = { class: "headline__wrapper" }, Qa = { class: "headline__h1" }, Ja = /* @__PURE__ */ h({
|
|
1607
1607
|
__name: "headline",
|
|
1608
1608
|
props: {
|
|
1609
1609
|
headline: {
|
|
@@ -1620,19 +1620,19 @@ const el = /* @__PURE__ */ m(Za, [["__scopeId", "data-v-bad7dce2"]]), tl = { cla
|
|
|
1620
1620
|
}
|
|
1621
1621
|
},
|
|
1622
1622
|
setup(e) {
|
|
1623
|
-
return (a, r) => (l(), s("div",
|
|
1623
|
+
return (a, r) => (l(), s("div", Ya, [
|
|
1624
1624
|
t("div", {
|
|
1625
1625
|
class: c([
|
|
1626
1626
|
e.article ? "headline__content--article" : "headline__content--default",
|
|
1627
1627
|
e.subMenu ? "headline__content--submenu" : ""
|
|
1628
1628
|
])
|
|
1629
1629
|
}, [
|
|
1630
|
-
t("h1",
|
|
1630
|
+
t("h1", Qa, o(e.headline), 1)
|
|
1631
1631
|
], 2)
|
|
1632
1632
|
]));
|
|
1633
1633
|
}
|
|
1634
1634
|
});
|
|
1635
|
-
const
|
|
1635
|
+
const Xa = /* @__PURE__ */ v(Ja, [["__scopeId", "data-v-2676cf0a"]]), Za = (e) => (D("data-v-e4b4c416"), e = e(), M(), e), el = { class: "hero__wrapper" }, tl = { class: "hero__content" }, al = { class: "hero__top" }, ll = { class: "hero__elements" }, il = { class: "hero__headline" }, rl = { class: "hero__link" }, sl = { class: "hero__video" }, ol = /* @__PURE__ */ Za(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), nl = /* @__PURE__ */ h({
|
|
1636
1636
|
__name: "hero",
|
|
1637
1637
|
props: {
|
|
1638
1638
|
headline: {
|
|
@@ -1645,14 +1645,14 @@ const il = /* @__PURE__ */ m(ll, [["__scopeId", "data-v-2676cf0a"]]), rl = (e) =
|
|
|
1645
1645
|
}
|
|
1646
1646
|
},
|
|
1647
1647
|
setup(e) {
|
|
1648
|
-
return (a, r) => (l(), s("div",
|
|
1649
|
-
t("div",
|
|
1650
|
-
t("div",
|
|
1651
|
-
t("div",
|
|
1652
|
-
t("div",
|
|
1653
|
-
t("h2", null,
|
|
1648
|
+
return (a, r) => (l(), s("div", el, [
|
|
1649
|
+
t("div", tl, [
|
|
1650
|
+
t("div", al, [
|
|
1651
|
+
t("div", ll, [
|
|
1652
|
+
t("div", il, [
|
|
1653
|
+
t("h2", null, o(e.headline), 1)
|
|
1654
1654
|
]),
|
|
1655
|
-
t("div",
|
|
1655
|
+
t("div", rl, [
|
|
1656
1656
|
p(C, {
|
|
1657
1657
|
linkType: "regular-light",
|
|
1658
1658
|
arrow: ""
|
|
@@ -1665,8 +1665,8 @@ const il = /* @__PURE__ */ m(ll, [["__scopeId", "data-v-2676cf0a"]]), rl = (e) =
|
|
|
1665
1665
|
])
|
|
1666
1666
|
])
|
|
1667
1667
|
]),
|
|
1668
|
-
t("div",
|
|
1669
|
-
|
|
1668
|
+
t("div", sl, [
|
|
1669
|
+
ol,
|
|
1670
1670
|
p(H, {
|
|
1671
1671
|
src: e.video.src,
|
|
1672
1672
|
localVideo: "",
|
|
@@ -1683,7 +1683,7 @@ const il = /* @__PURE__ */ m(ll, [["__scopeId", "data-v-2676cf0a"]]), rl = (e) =
|
|
|
1683
1683
|
]));
|
|
1684
1684
|
}
|
|
1685
1685
|
});
|
|
1686
|
-
const
|
|
1686
|
+
const dl = /* @__PURE__ */ v(nl, [["__scopeId", "data-v-e4b4c416"]]), cl = { class: "logo-wall__wrapper" }, ul = { class: "logo-wall__content" }, _l = { class: "logo-wall__logos" }, hl = { class: "logo-wall__logo" }, vl = { class: "logo-wall__link" }, ml = /* @__PURE__ */ h({
|
|
1687
1687
|
__name: "logo-wall",
|
|
1688
1688
|
props: {
|
|
1689
1689
|
logos: {
|
|
@@ -1693,10 +1693,10 @@ const vl = /* @__PURE__ */ m(ml, [["__scopeId", "data-v-e4b4c416"]]), gl = { cla
|
|
|
1693
1693
|
}
|
|
1694
1694
|
},
|
|
1695
1695
|
setup(e) {
|
|
1696
|
-
return (a, r) => (l(), s("div",
|
|
1697
|
-
t("div",
|
|
1698
|
-
t("div",
|
|
1699
|
-
(l(!0), s(q, null, I(e.logos, (i) => (l(), s("div",
|
|
1696
|
+
return (a, r) => (l(), s("div", cl, [
|
|
1697
|
+
t("div", ul, [
|
|
1698
|
+
t("div", _l, [
|
|
1699
|
+
(l(!0), s(q, null, I(e.logos, (i) => (l(), s("div", hl, [
|
|
1700
1700
|
p(L, null, {
|
|
1701
1701
|
default: $(() => [
|
|
1702
1702
|
u(a.$slots, "logo-wall-logo", V(A({
|
|
@@ -1710,7 +1710,7 @@ const vl = /* @__PURE__ */ m(ml, [["__scopeId", "data-v-e4b4c416"]]), gl = { cla
|
|
|
1710
1710
|
}, 1024)
|
|
1711
1711
|
]))), 256))
|
|
1712
1712
|
]),
|
|
1713
|
-
t("div",
|
|
1713
|
+
t("div", vl, [
|
|
1714
1714
|
p(C, {
|
|
1715
1715
|
linkType: "regular-light",
|
|
1716
1716
|
arrow: !0
|
|
@@ -1725,7 +1725,7 @@ const vl = /* @__PURE__ */ m(ml, [["__scopeId", "data-v-e4b4c416"]]), gl = { cla
|
|
|
1725
1725
|
]));
|
|
1726
1726
|
}
|
|
1727
1727
|
});
|
|
1728
|
-
const
|
|
1728
|
+
const gl = /* @__PURE__ */ v(ml, [["__scopeId", "data-v-3c15b327"]]), fl = { class: "micro-stories__splide" }, yl = /* @__PURE__ */ h({
|
|
1729
1729
|
__name: "micro-stories",
|
|
1730
1730
|
props: {
|
|
1731
1731
|
stories: {
|
|
@@ -1756,22 +1756,22 @@ const kl = /* @__PURE__ */ m($l, [["__scopeId", "data-v-3c15b327"]]), wl = { cla
|
|
|
1756
1756
|
e.bgColor == "white" ? "micro-stories__wrapper--white" : e.bgColor == "dark" ? "micro-stories__wrapper--dark" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
|
|
1757
1757
|
])
|
|
1758
1758
|
}, [
|
|
1759
|
-
t("div",
|
|
1759
|
+
t("div", fl, [
|
|
1760
1760
|
u(a.$slots, "micro-stories-slides")
|
|
1761
1761
|
]),
|
|
1762
1762
|
u(a.$slots, "micro-stories-controls")
|
|
1763
1763
|
], 2));
|
|
1764
1764
|
}
|
|
1765
1765
|
});
|
|
1766
|
-
const
|
|
1767
|
-
function
|
|
1768
|
-
return l(), s("div",
|
|
1769
|
-
t("div",
|
|
1766
|
+
const bl = {}, pl = { class: "policy__wrapper" }, $l = { class: "policy__content" };
|
|
1767
|
+
function kl(e, a) {
|
|
1768
|
+
return l(), s("div", pl, [
|
|
1769
|
+
t("div", $l, [
|
|
1770
1770
|
u(e.$slots, "default", {}, void 0, !0)
|
|
1771
1771
|
])
|
|
1772
1772
|
]);
|
|
1773
1773
|
}
|
|
1774
|
-
const
|
|
1774
|
+
const wl = /* @__PURE__ */ v(bl, [["render", kl], ["__scopeId", "data-v-e16581b7"]]), xl = { class: "product-hero__wrapper" }, Sl = { class: "product-hero__content" }, ql = { class: "product-hero__headline" }, Bl = { class: "product-hero__video" }, Il = /* @__PURE__ */ h({
|
|
1775
1775
|
__name: "product-hero",
|
|
1776
1776
|
props: {
|
|
1777
1777
|
headline: {
|
|
@@ -1796,12 +1796,12 @@ const Ll = /* @__PURE__ */ m(Sl, [["render", Il], ["__scopeId", "data-v-e16581b7
|
|
|
1796
1796
|
}
|
|
1797
1797
|
},
|
|
1798
1798
|
setup(e) {
|
|
1799
|
-
return (a, r) => (l(), s("div",
|
|
1800
|
-
t("div",
|
|
1801
|
-
t("div",
|
|
1802
|
-
t("h1", null,
|
|
1799
|
+
return (a, r) => (l(), s("div", xl, [
|
|
1800
|
+
t("div", Sl, [
|
|
1801
|
+
t("div", ql, [
|
|
1802
|
+
t("h1", null, o(e.headline), 1)
|
|
1803
1803
|
]),
|
|
1804
|
-
t("div",
|
|
1804
|
+
t("div", Bl, [
|
|
1805
1805
|
p(H, {
|
|
1806
1806
|
play: !0,
|
|
1807
1807
|
localVideo: !0,
|
|
@@ -1818,7 +1818,7 @@ const Ll = /* @__PURE__ */ m(Sl, [["render", Il], ["__scopeId", "data-v-e16581b7
|
|
|
1818
1818
|
]));
|
|
1819
1819
|
}
|
|
1820
1820
|
});
|
|
1821
|
-
const
|
|
1821
|
+
const Ll = /* @__PURE__ */ v(Il, [["__scopeId", "data-v-470041ac"]]), Tl = { class: "promo__content" }, Cl = /* @__PURE__ */ h({
|
|
1822
1822
|
__name: "promo",
|
|
1823
1823
|
props: {
|
|
1824
1824
|
label: {
|
|
@@ -1873,7 +1873,7 @@ const Ml = /* @__PURE__ */ m(Dl, [["__scopeId", "data-v-470041ac"]]), Ol = { cla
|
|
|
1873
1873
|
e.teaser ? "promo__wrapper--teaser" : ""
|
|
1874
1874
|
])
|
|
1875
1875
|
}, [
|
|
1876
|
-
t("div",
|
|
1876
|
+
t("div", Tl, [
|
|
1877
1877
|
e.mediaType === "image" ? (l(), s("div", {
|
|
1878
1878
|
key: 0,
|
|
1879
1879
|
class: c([
|
|
@@ -1887,7 +1887,7 @@ const Ml = /* @__PURE__ */ m(Dl, [["__scopeId", "data-v-470041ac"]]), Ol = { cla
|
|
|
1887
1887
|
]),
|
|
1888
1888
|
_: 3
|
|
1889
1889
|
})
|
|
1890
|
-
], 2)) :
|
|
1890
|
+
], 2)) : m("", !0),
|
|
1891
1891
|
e.mediaType === "video" ? (l(), s("div", {
|
|
1892
1892
|
key: 1,
|
|
1893
1893
|
class: c([
|
|
@@ -1906,7 +1906,7 @@ const Ml = /* @__PURE__ */ m(Dl, [["__scopeId", "data-v-470041ac"]]), Ol = { cla
|
|
|
1906
1906
|
play: !0,
|
|
1907
1907
|
poster: e.fallbackImage
|
|
1908
1908
|
}, null, 8, ["src", "ariaLabel", "poster"])
|
|
1909
|
-
], 2)) :
|
|
1909
|
+
], 2)) : m("", !0),
|
|
1910
1910
|
t("div", {
|
|
1911
1911
|
class: c([
|
|
1912
1912
|
"promo__text",
|
|
@@ -1917,13 +1917,13 @@ const Ml = /* @__PURE__ */ m(Dl, [["__scopeId", "data-v-470041ac"]]), Ol = { cla
|
|
|
1917
1917
|
key: 0,
|
|
1918
1918
|
text: e.label,
|
|
1919
1919
|
labelDark: e.variant === "dark"
|
|
1920
|
-
}, null, 8, ["text", "labelDark"])) :
|
|
1920
|
+
}, null, 8, ["text", "labelDark"])) : m("", !0),
|
|
1921
1921
|
t("h3", {
|
|
1922
1922
|
class: c([
|
|
1923
1923
|
"promo__title",
|
|
1924
1924
|
e.variant === "dark" ? "promo__title--dark" : ""
|
|
1925
1925
|
])
|
|
1926
|
-
},
|
|
1926
|
+
}, o(e.headline), 3),
|
|
1927
1927
|
e.linkType === "link" ? (l(), z(C, {
|
|
1928
1928
|
key: 1,
|
|
1929
1929
|
linkType: e.variant === "dark" ? "regular-dark" : (e.variant === "light", "regular-light"),
|
|
@@ -1933,7 +1933,7 @@ const Ml = /* @__PURE__ */ m(Dl, [["__scopeId", "data-v-470041ac"]]), Ol = { cla
|
|
|
1933
1933
|
u(a.$slots, "promo-link")
|
|
1934
1934
|
]),
|
|
1935
1935
|
_: 3
|
|
1936
|
-
}, 8, ["linkType"])) :
|
|
1936
|
+
}, 8, ["linkType"])) : m("", !0),
|
|
1937
1937
|
e.linkType === "button" ? (l(), z(C, {
|
|
1938
1938
|
key: 2,
|
|
1939
1939
|
linkType: e.variant === "dark" ? "secondary-dark" : (e.variant === "light", "secondary")
|
|
@@ -1942,16 +1942,16 @@ const Ml = /* @__PURE__ */ m(Dl, [["__scopeId", "data-v-470041ac"]]), Ol = { cla
|
|
|
1942
1942
|
u(a.$slots, "promo-link")
|
|
1943
1943
|
]),
|
|
1944
1944
|
_: 3
|
|
1945
|
-
}, 8, ["linkType"])) :
|
|
1945
|
+
}, 8, ["linkType"])) : m("", !0)
|
|
1946
1946
|
], 2)
|
|
1947
1947
|
])
|
|
1948
1948
|
], 2));
|
|
1949
1949
|
}
|
|
1950
1950
|
});
|
|
1951
|
-
const
|
|
1951
|
+
const Vl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-4392a3a6"]]), Al = (e) => (D("data-v-3cc55dbf"), e = e(), M(), e), Dl = { class: "quote__wrapper" }, Ml = { class: "quote__content" }, Ol = /* @__PURE__ */ Al(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), zl = { class: "quote__quote" }, Pl = { class: "quote__quote-text" }, Fl = { class: "quote__author" }, Nl = {
|
|
1952
1952
|
key: 0,
|
|
1953
1953
|
class: "quote__image"
|
|
1954
|
-
},
|
|
1954
|
+
}, El = { class: "quote__text" }, Hl = { class: "quote__author-name" }, Rl = { class: "quote__author-title" }, jl = /* @__PURE__ */ h({
|
|
1955
1955
|
__name: "quote",
|
|
1956
1956
|
props: {
|
|
1957
1957
|
quote: {
|
|
@@ -1972,13 +1972,13 @@ const Pl = /* @__PURE__ */ m(zl, [["__scopeId", "data-v-4392a3a6"]]), Fl = (e) =
|
|
|
1972
1972
|
}
|
|
1973
1973
|
},
|
|
1974
1974
|
setup(e) {
|
|
1975
|
-
return (a, r) => (l(), s("div",
|
|
1976
|
-
t("div",
|
|
1977
|
-
|
|
1978
|
-
t("div",
|
|
1979
|
-
t("p",
|
|
1980
|
-
t("div",
|
|
1981
|
-
e.authorImage ? (l(), s("div",
|
|
1975
|
+
return (a, r) => (l(), s("div", Dl, [
|
|
1976
|
+
t("div", Ml, [
|
|
1977
|
+
Ol,
|
|
1978
|
+
t("div", zl, [
|
|
1979
|
+
t("p", Pl, o(e.quote), 1),
|
|
1980
|
+
t("div", Fl, [
|
|
1981
|
+
e.authorImage ? (l(), s("div", Nl, [
|
|
1982
1982
|
p(L, null, {
|
|
1983
1983
|
default: $(() => [
|
|
1984
1984
|
u(a.$slots, "author-image", V(A({
|
|
@@ -1989,10 +1989,10 @@ const Pl = /* @__PURE__ */ m(zl, [["__scopeId", "data-v-4392a3a6"]]), Fl = (e) =
|
|
|
1989
1989
|
]),
|
|
1990
1990
|
_: 3
|
|
1991
1991
|
})
|
|
1992
|
-
])) :
|
|
1993
|
-
t("div",
|
|
1994
|
-
t("p",
|
|
1995
|
-
t("p",
|
|
1992
|
+
])) : m("", !0),
|
|
1993
|
+
t("div", El, [
|
|
1994
|
+
t("p", Hl, o(e.author), 1),
|
|
1995
|
+
t("p", Rl, o(e.authorTitle), 1)
|
|
1996
1996
|
])
|
|
1997
1997
|
])
|
|
1998
1998
|
])
|
|
@@ -2000,13 +2000,13 @@ const Pl = /* @__PURE__ */ m(zl, [["__scopeId", "data-v-4392a3a6"]]), Fl = (e) =
|
|
|
2000
2000
|
]));
|
|
2001
2001
|
}
|
|
2002
2002
|
});
|
|
2003
|
-
const
|
|
2003
|
+
const Kl = /* @__PURE__ */ v(jl, [["__scopeId", "data-v-3cc55dbf"]]), Ul = { class: "rich-text__wrapper" }, Wl = {
|
|
2004
2004
|
key: 0,
|
|
2005
2005
|
class: "rich-text__links"
|
|
2006
|
-
},
|
|
2006
|
+
}, Gl = {
|
|
2007
2007
|
key: 0,
|
|
2008
2008
|
class: "rich-text__bullet-list"
|
|
2009
|
-
},
|
|
2009
|
+
}, Yl = /* @__PURE__ */ h({
|
|
2010
2010
|
__name: "rich-text",
|
|
2011
2011
|
props: {
|
|
2012
2012
|
headline: {
|
|
@@ -2047,19 +2047,19 @@ const Jl = /* @__PURE__ */ m(Ql, [["__scopeId", "data-v-3cc55dbf"]]), Xl = { cla
|
|
|
2047
2047
|
e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
2048
2048
|
])
|
|
2049
2049
|
}, [
|
|
2050
|
-
t("div",
|
|
2050
|
+
t("div", Ul, [
|
|
2051
2051
|
e.label ? (l(), z(j, {
|
|
2052
2052
|
key: 0,
|
|
2053
2053
|
text: e.label,
|
|
2054
2054
|
labelDark: !1
|
|
2055
|
-
}, null, 8, ["text"])) :
|
|
2055
|
+
}, null, 8, ["text"])) : m("", !0),
|
|
2056
2056
|
e.headline ? (l(), s("h2", {
|
|
2057
2057
|
key: 1,
|
|
2058
2058
|
class: c([
|
|
2059
2059
|
"rich-text__headline",
|
|
2060
2060
|
e.leftAligned || e.bulletList || e.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
2061
2061
|
])
|
|
2062
|
-
},
|
|
2062
|
+
}, o(e.headline), 3)) : m("", !0),
|
|
2063
2063
|
t("div", {
|
|
2064
2064
|
class: c([
|
|
2065
2065
|
"rich-text__content",
|
|
@@ -2073,13 +2073,13 @@ const Jl = /* @__PURE__ */ m(Ql, [["__scopeId", "data-v-3cc55dbf"]]), Xl = { cla
|
|
|
2073
2073
|
])
|
|
2074
2074
|
}, [
|
|
2075
2075
|
u(a.$slots, "rich-text-content"),
|
|
2076
|
-
e.links ? (l(), s("div",
|
|
2076
|
+
e.links ? (l(), s("div", Wl, [
|
|
2077
2077
|
u(a.$slots, "rich-text-links")
|
|
2078
|
-
])) :
|
|
2078
|
+
])) : m("", !0)
|
|
2079
2079
|
], 2),
|
|
2080
|
-
e.bulletList ? (l(), s("div",
|
|
2080
|
+
e.bulletList ? (l(), s("div", Gl, [
|
|
2081
2081
|
u(a.$slots, "rich-text-bullet-list")
|
|
2082
|
-
])) :
|
|
2082
|
+
])) : m("", !0),
|
|
2083
2083
|
e.image ? (l(), s("div", {
|
|
2084
2084
|
key: 1,
|
|
2085
2085
|
class: c([
|
|
@@ -2093,16 +2093,16 @@ const Jl = /* @__PURE__ */ m(Ql, [["__scopeId", "data-v-3cc55dbf"]]), Xl = { cla
|
|
|
2093
2093
|
]),
|
|
2094
2094
|
_: 3
|
|
2095
2095
|
})
|
|
2096
|
-
], 2)) :
|
|
2096
|
+
], 2)) : m("", !0)
|
|
2097
2097
|
], 2)
|
|
2098
2098
|
])
|
|
2099
2099
|
], 2));
|
|
2100
2100
|
}
|
|
2101
2101
|
});
|
|
2102
|
-
const
|
|
2102
|
+
const Ql = /* @__PURE__ */ v(Yl, [["__scopeId", "data-v-ef067601"]]), Jl = (e) => (D("data-v-e2d52bd9"), e = e(), M(), e), Xl = { class: "timeline__wrapper" }, Zl = { class: "timeline__content" }, ei = { class: "timeline__items" }, ti = { class: "timeline__item faded" }, ai = { class: "item__left" }, li = /* @__PURE__ */ Jl(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2103
2103
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2104
2104
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2105
|
-
], -1)),
|
|
2105
|
+
], -1)), ii = { class: "item__right" }, ri = ["innerHTML"], si = /* @__PURE__ */ h({
|
|
2106
2106
|
__name: "timeline",
|
|
2107
2107
|
props: {
|
|
2108
2108
|
timelineItems: {
|
|
@@ -2111,11 +2111,11 @@ const ai = /* @__PURE__ */ m(ti, [["__scopeId", "data-v-ef067601"]]), li = (e) =
|
|
|
2111
2111
|
}
|
|
2112
2112
|
},
|
|
2113
2113
|
setup(e) {
|
|
2114
|
-
return
|
|
2114
|
+
return ie(() => {
|
|
2115
2115
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
2116
2116
|
(i) => {
|
|
2117
|
-
i.forEach((
|
|
2118
|
-
|
|
2117
|
+
i.forEach((n) => {
|
|
2118
|
+
n.isIntersecting && (n.target.classList.add("visible"), n.target.classList.remove("faded"), r.unobserve(n.target));
|
|
2119
2119
|
});
|
|
2120
2120
|
},
|
|
2121
2121
|
{
|
|
@@ -2125,16 +2125,16 @@ const ai = /* @__PURE__ */ m(ti, [["__scopeId", "data-v-ef067601"]]), li = (e) =
|
|
|
2125
2125
|
a.forEach((i) => {
|
|
2126
2126
|
r.observe(i);
|
|
2127
2127
|
});
|
|
2128
|
-
}), (a, r) => (l(), s("div",
|
|
2129
|
-
t("div",
|
|
2130
|
-
t("div",
|
|
2131
|
-
(l(!0), s(q, null, I(e.timelineItems, (i) => (l(), s("div",
|
|
2132
|
-
t("div",
|
|
2133
|
-
|
|
2134
|
-
t("div",
|
|
2128
|
+
}), (a, r) => (l(), s("div", Xl, [
|
|
2129
|
+
t("div", Zl, [
|
|
2130
|
+
t("div", ei, [
|
|
2131
|
+
(l(!0), s(q, null, I(e.timelineItems, (i) => (l(), s("div", ti, [
|
|
2132
|
+
t("div", ai, o(i.year), 1),
|
|
2133
|
+
li,
|
|
2134
|
+
t("div", ii, [
|
|
2135
2135
|
p(L, null, {
|
|
2136
2136
|
default: $(() => [
|
|
2137
|
-
i.media.type === "image" ? u(a.$slots, "timeline-image", V(Y({ key: 0 }, { src: i.media.src, alt: i.media.alt })), void 0, !0) :
|
|
2137
|
+
i.media.type === "image" ? u(a.$slots, "timeline-image", V(Y({ key: 0 }, { src: i.media.src, alt: i.media.alt })), void 0, !0) : m("", !0)
|
|
2138
2138
|
]),
|
|
2139
2139
|
_: 2
|
|
2140
2140
|
}, 1024),
|
|
@@ -2142,7 +2142,7 @@ const ai = /* @__PURE__ */ m(ti, [["__scopeId", "data-v-ef067601"]]), li = (e) =
|
|
|
2142
2142
|
style: Q([i.media.type === "none" ? "margin-top: 0px" : ""]),
|
|
2143
2143
|
class: "rich-text",
|
|
2144
2144
|
innerHTML: i.text
|
|
2145
|
-
}, null, 12,
|
|
2145
|
+
}, null, 12, ri)
|
|
2146
2146
|
])
|
|
2147
2147
|
]))), 256))
|
|
2148
2148
|
])
|
|
@@ -2150,10 +2150,10 @@ const ai = /* @__PURE__ */ m(ti, [["__scopeId", "data-v-ef067601"]]), li = (e) =
|
|
|
2150
2150
|
]));
|
|
2151
2151
|
}
|
|
2152
2152
|
});
|
|
2153
|
-
const
|
|
2153
|
+
const oi = /* @__PURE__ */ v(si, [["__scopeId", "data-v-e2d52bd9"]]), ni = { class: "triple-card-display__wrapper" }, di = {
|
|
2154
2154
|
key: 0,
|
|
2155
2155
|
class: "triple-card__content"
|
|
2156
|
-
},
|
|
2156
|
+
}, ci = { key: 0 }, ui = { key: 1 }, _i = { class: "triple-card__cards" }, hi = /* @__PURE__ */ h({
|
|
2157
2157
|
__name: "triple-card-display",
|
|
2158
2158
|
props: {
|
|
2159
2159
|
headline: {
|
|
@@ -2176,25 +2176,25 @@ const hi = /* @__PURE__ */ m(_i, [["__scopeId", "data-v-e2d52bd9"]]), mi = { cla
|
|
|
2176
2176
|
e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
|
|
2177
2177
|
])
|
|
2178
2178
|
}, [
|
|
2179
|
-
t("div",
|
|
2180
|
-
e.headline || e.paragraph ? (l(), s("div",
|
|
2181
|
-
e.headline ? (l(), s("h2",
|
|
2182
|
-
e.paragraph ? (l(), s("p",
|
|
2183
|
-
])) :
|
|
2184
|
-
t("div",
|
|
2179
|
+
t("div", ni, [
|
|
2180
|
+
e.headline || e.paragraph ? (l(), s("div", di, [
|
|
2181
|
+
e.headline ? (l(), s("h2", ci, o(e.headline), 1)) : m("", !0),
|
|
2182
|
+
e.paragraph ? (l(), s("p", ui, o(e.paragraph), 1)) : m("", !0)
|
|
2183
|
+
])) : m("", !0),
|
|
2184
|
+
t("div", _i, [
|
|
2185
2185
|
u(a.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
2186
2186
|
])
|
|
2187
2187
|
])
|
|
2188
2188
|
], 2));
|
|
2189
2189
|
}
|
|
2190
2190
|
});
|
|
2191
|
-
const
|
|
2191
|
+
const vi = /* @__PURE__ */ v(hi, [["__scopeId", "data-v-7938e57a"]]), mi = { class: "vimeo" }, gi = {
|
|
2192
2192
|
key: 0,
|
|
2193
2193
|
class: "vimeo__headline"
|
|
2194
|
-
},
|
|
2194
|
+
}, fi = {
|
|
2195
2195
|
key: 1,
|
|
2196
2196
|
class: "vimeo__description"
|
|
2197
|
-
},
|
|
2197
|
+
}, yi = /* @__PURE__ */ h({
|
|
2198
2198
|
__name: "vimeo",
|
|
2199
2199
|
props: {
|
|
2200
2200
|
headline: {
|
|
@@ -2205,18 +2205,18 @@ const pi = /* @__PURE__ */ m(bi, [["__scopeId", "data-v-7938e57a"]]), $i = { cla
|
|
|
2205
2205
|
}
|
|
2206
2206
|
},
|
|
2207
2207
|
setup(e) {
|
|
2208
|
-
return (a, r) => (l(), s("div",
|
|
2208
|
+
return (a, r) => (l(), s("div", mi, [
|
|
2209
2209
|
t("div", {
|
|
2210
2210
|
class: c(["vimeo__wrapper", e.headline ? "vimeo__wrapper--headline" : ""])
|
|
2211
2211
|
}, [
|
|
2212
|
-
e.headline ? (l(), s("h2",
|
|
2212
|
+
e.headline ? (l(), s("h2", gi, o(e.headline), 1)) : m("", !0),
|
|
2213
2213
|
u(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2214
|
-
e.description ? (l(), s("p",
|
|
2214
|
+
e.description ? (l(), s("p", fi, o(e.description), 1)) : m("", !0)
|
|
2215
2215
|
], 2)
|
|
2216
2216
|
]));
|
|
2217
2217
|
}
|
|
2218
2218
|
});
|
|
2219
|
-
const
|
|
2219
|
+
const bi = /* @__PURE__ */ v(yi, [["__scopeId", "data-v-a6c209f4"]]), pi = { class: "not-found__wrapper" }, $i = { class: "not-found__content" }, ki = { class: "not-found__headline" }, wi = { class: "not-found__body" }, xi = /* @__PURE__ */ h({
|
|
2220
2220
|
__name: "404",
|
|
2221
2221
|
props: {
|
|
2222
2222
|
headline: {
|
|
@@ -2225,17 +2225,17 @@ const Si = /* @__PURE__ */ m(xi, [["__scopeId", "data-v-a6c209f4"]]), qi = { cla
|
|
|
2225
2225
|
}
|
|
2226
2226
|
},
|
|
2227
2227
|
setup(e) {
|
|
2228
|
-
return (a, r) => (l(), s("div",
|
|
2229
|
-
t("div",
|
|
2230
|
-
t("h1",
|
|
2231
|
-
t("div",
|
|
2228
|
+
return (a, r) => (l(), s("div", pi, [
|
|
2229
|
+
t("div", $i, [
|
|
2230
|
+
t("h1", ki, o(e.headline), 1),
|
|
2231
|
+
t("div", wi, [
|
|
2232
2232
|
u(a.$slots, "not-found-body", {}, void 0, !0)
|
|
2233
2233
|
])
|
|
2234
2234
|
])
|
|
2235
2235
|
]));
|
|
2236
2236
|
}
|
|
2237
2237
|
});
|
|
2238
|
-
const
|
|
2238
|
+
const Si = /* @__PURE__ */ v(xi, [["__scopeId", "data-v-c2038fe4"]]), qi = { class: "filter__wrapper" }, Bi = { class: "filter__content" }, Ii = { class: "filter__dropdowns" }, Li = { class: "filter__chips" }, Ti = /* @__PURE__ */ h({
|
|
2239
2239
|
__name: "filter",
|
|
2240
2240
|
props: {
|
|
2241
2241
|
hasChips: {
|
|
@@ -2245,29 +2245,29 @@ const Ci = /* @__PURE__ */ m(Ti, [["__scopeId", "data-v-c2038fe4"]]), Vi = { cla
|
|
|
2245
2245
|
},
|
|
2246
2246
|
emits: ["clearFilters"],
|
|
2247
2247
|
setup(e) {
|
|
2248
|
-
return (a, r) => (l(), s("div",
|
|
2249
|
-
t("div",
|
|
2250
|
-
t("div",
|
|
2248
|
+
return (a, r) => (l(), s("div", qi, [
|
|
2249
|
+
t("div", Bi, [
|
|
2250
|
+
t("div", Ii, [
|
|
2251
2251
|
u(a.$slots, "filter-dropdowns", {}, void 0, !0)
|
|
2252
2252
|
]),
|
|
2253
|
-
t("div",
|
|
2253
|
+
t("div", Li, [
|
|
2254
2254
|
u(a.$slots, "filter-chips", {}, void 0, !0),
|
|
2255
2255
|
e.hasChips ? (l(), s("button", {
|
|
2256
2256
|
key: 0,
|
|
2257
2257
|
class: "filter__clear",
|
|
2258
2258
|
onClick: r[0] || (r[0] = (i) => a.$emit("clearFilters"))
|
|
2259
|
-
}, " Remove all filters ")) :
|
|
2259
|
+
}, " Remove all filters ")) : m("", !0)
|
|
2260
2260
|
])
|
|
2261
2261
|
])
|
|
2262
2262
|
]));
|
|
2263
2263
|
}
|
|
2264
2264
|
});
|
|
2265
|
-
const
|
|
2265
|
+
const Ci = /* @__PURE__ */ v(Ti, [["__scopeId", "data-v-cf46dae2"]]), F = (e) => (D("data-v-1f2c86e5"), e = e(), M(), e), Vi = { class: "footer__wrapper" }, Ai = { class: "footer__content" }, Di = { class: "footer__sections" }, Mi = { class: "section" }, Oi = { class: "section__title" }, zi = { class: "section__list" }, Pi = { class: "section" }, Fi = /* @__PURE__ */ F(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), Ni = /* @__PURE__ */ F(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), Ei = /* @__PURE__ */ F(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), Hi = /* @__PURE__ */ F(() => /* @__PURE__ */ t("br", null, null, -1)), Ri = /* @__PURE__ */ F(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), ji = /* @__PURE__ */ F(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), Ki = { class: "footer__bottom" }, Ui = { class: "footer__copyright-policy" }, Wi = { class: "copyright" }, Gi = /* @__PURE__ */ F(() => /* @__PURE__ */ t("span", null, [
|
|
2266
2266
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
2267
2267
|
/* @__PURE__ */ E("Change region")
|
|
2268
|
-
], -1)),
|
|
2269
|
-
|
|
2270
|
-
],
|
|
2268
|
+
], -1)), Yi = [
|
|
2269
|
+
Gi
|
|
2270
|
+
], Qi = { class: "footer__social" }, Ji = ["href", "aria-label"], Xi = /* @__PURE__ */ h({
|
|
2271
2271
|
__name: "footer",
|
|
2272
2272
|
props: {
|
|
2273
2273
|
footerSections: {
|
|
@@ -2297,32 +2297,32 @@ const zi = /* @__PURE__ */ m(Oi, [["__scopeId", "data-v-cf46dae2"]]), F = (e) =>
|
|
|
2297
2297
|
},
|
|
2298
2298
|
emits: ["changeRegionClicked"],
|
|
2299
2299
|
setup(e) {
|
|
2300
|
-
return (a, r) => (l(), s("div",
|
|
2301
|
-
t("footer",
|
|
2302
|
-
t("div",
|
|
2303
|
-
(l(!0), s(q, null, I(e.footerSections, (i) => (l(), s("div",
|
|
2304
|
-
t("span",
|
|
2300
|
+
return (a, r) => (l(), s("div", Vi, [
|
|
2301
|
+
t("footer", Ai, [
|
|
2302
|
+
t("div", Di, [
|
|
2303
|
+
(l(!0), s(q, null, I(e.footerSections, (i) => (l(), s("div", Mi, [
|
|
2304
|
+
t("span", Oi, o(i.title), 1),
|
|
2305
2305
|
t("nav", null, [
|
|
2306
|
-
t("ul",
|
|
2306
|
+
t("ul", zi, [
|
|
2307
2307
|
u(a.$slots, "section-links", {
|
|
2308
2308
|
links: i.links
|
|
2309
2309
|
})
|
|
2310
2310
|
])
|
|
2311
2311
|
])
|
|
2312
2312
|
]))), 256)),
|
|
2313
|
-
t("div",
|
|
2314
|
-
|
|
2313
|
+
t("div", Pi, [
|
|
2314
|
+
Fi,
|
|
2315
2315
|
t("address", null, [
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2316
|
+
Ni,
|
|
2317
|
+
Ei,
|
|
2318
|
+
Hi,
|
|
2319
2319
|
p(C, {
|
|
2320
2320
|
class: "footer__contact",
|
|
2321
2321
|
linkType: "regular-light",
|
|
2322
2322
|
underline: "false"
|
|
2323
2323
|
}, {
|
|
2324
2324
|
default: $(() => [
|
|
2325
|
-
|
|
2325
|
+
Ri
|
|
2326
2326
|
]),
|
|
2327
2327
|
_: 1
|
|
2328
2328
|
}),
|
|
@@ -2332,24 +2332,24 @@ const zi = /* @__PURE__ */ m(Oi, [["__scopeId", "data-v-cf46dae2"]]), F = (e) =>
|
|
|
2332
2332
|
underline: "false"
|
|
2333
2333
|
}, {
|
|
2334
2334
|
default: $(() => [
|
|
2335
|
-
|
|
2335
|
+
ji
|
|
2336
2336
|
]),
|
|
2337
2337
|
_: 1
|
|
2338
2338
|
})
|
|
2339
2339
|
])
|
|
2340
2340
|
])
|
|
2341
2341
|
]),
|
|
2342
|
-
t("div",
|
|
2343
|
-
t("div",
|
|
2344
|
-
t("p",
|
|
2342
|
+
t("div", Ki, [
|
|
2343
|
+
t("div", Ui, [
|
|
2344
|
+
t("p", Wi, "© MiR " + o((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2345
2345
|
t("button", {
|
|
2346
2346
|
class: "footer__language-switcher",
|
|
2347
2347
|
onClick: r[0] || (r[0] = (i) => a.$emit("changeRegionClicked"))
|
|
2348
|
-
},
|
|
2348
|
+
}, Yi),
|
|
2349
2349
|
u(a.$slots, "footer-privacy-link"),
|
|
2350
2350
|
u(a.$slots, "footer-cookie-link")
|
|
2351
2351
|
]),
|
|
2352
|
-
t("div",
|
|
2352
|
+
t("div", Qi, [
|
|
2353
2353
|
(l(!0), s(q, null, I(e.socialMedia, (i) => (l(), z(C, {
|
|
2354
2354
|
underline: "false",
|
|
2355
2355
|
linkType: "regular"
|
|
@@ -2366,7 +2366,7 @@ const zi = /* @__PURE__ */ m(Oi, [["__scopeId", "data-v-cf46dae2"]]), F = (e) =>
|
|
|
2366
2366
|
i.title === "linkedin" ? "bg-linkedin" : i.title === "facebook" ? "bg-facebook" : i.title === "instagram" ? "bg-instagram" : i.title === "twitter" ? "bg-twitter" : i.title === "youtube" ? "bg-youtube" : ""
|
|
2367
2367
|
]])
|
|
2368
2368
|
}, null, 2)
|
|
2369
|
-
], 8,
|
|
2369
|
+
], 8, Ji)
|
|
2370
2370
|
]),
|
|
2371
2371
|
_: 2
|
|
2372
2372
|
}, 1024))), 256))
|
|
@@ -2376,19 +2376,19 @@ const zi = /* @__PURE__ */ m(Oi, [["__scopeId", "data-v-cf46dae2"]]), F = (e) =>
|
|
|
2376
2376
|
]));
|
|
2377
2377
|
}
|
|
2378
2378
|
});
|
|
2379
|
-
const
|
|
2379
|
+
const Zi = /* @__PURE__ */ v(Xi, [["__scopeId", "data-v-1f2c86e5"]]), er = { class: "header__wrapper" }, tr = { class: "nav-wrapper" }, ar = { class: "mir-link-logo" }, lr = { class: "main-nav-items" }, ir = {
|
|
2380
2380
|
id: "menu-dropdown",
|
|
2381
2381
|
ref: "dropdownDiv"
|
|
2382
|
-
},
|
|
2382
|
+
}, rr = {
|
|
2383
2383
|
key: 0,
|
|
2384
|
-
src:
|
|
2384
|
+
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2385
2385
|
alt: "dropdownarrow"
|
|
2386
|
-
},
|
|
2386
|
+
}, sr = {
|
|
2387
2387
|
key: 1,
|
|
2388
|
-
src:
|
|
2388
|
+
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2389
2389
|
alt: "dropdownarrow",
|
|
2390
2390
|
style: { transform: "rotate(180deg)" }
|
|
2391
|
-
},
|
|
2391
|
+
}, or = { class: "dropdown-content" }, nr = { class: "nav-search-wrapper" }, dr = ["src"], cr = { class: "mobile-logo-search-burger-wrapper" }, ur = { class: "mobile-mir-link-logo" }, _r = { class: "mobile-search-wrapper" }, hr = ["src"], vr = ["onClick"], mr = ["src"], gr = ["src"], fr = { class: "mobile-menu-content-wrapper" }, yr = { class: "mobile-dropdown-content" }, br = /* @__PURE__ */ h({
|
|
2392
2392
|
__name: "header",
|
|
2393
2393
|
props: {
|
|
2394
2394
|
burgerState: {
|
|
@@ -2407,109 +2407,109 @@ const rr = /* @__PURE__ */ m(ir, [["__scopeId", "data-v-9c674dae"]]), ce = "/ico
|
|
|
2407
2407
|
],
|
|
2408
2408
|
setup(e, { emit: a }) {
|
|
2409
2409
|
const r = e;
|
|
2410
|
-
|
|
2411
|
-
let i = null,
|
|
2410
|
+
x("");
|
|
2411
|
+
let i = null, n = x(r.burgerState), _ = x(r.showDropDown);
|
|
2412
2412
|
te(
|
|
2413
2413
|
() => r.burgerState,
|
|
2414
|
-
(g) =>
|
|
2414
|
+
(g) => n.value = g
|
|
2415
2415
|
), te(
|
|
2416
2416
|
() => r.showDropDown,
|
|
2417
2417
|
(g) => _.value = g
|
|
2418
|
-
),
|
|
2418
|
+
), ie(() => {
|
|
2419
2419
|
i = (g) => {
|
|
2420
2420
|
g.target.closest("#menu-dropdown") || (_.value = !1);
|
|
2421
2421
|
}, window.addEventListener("click", i);
|
|
2422
|
-
}),
|
|
2422
|
+
}), be(() => {
|
|
2423
2423
|
i !== null && window.removeEventListener("click", i);
|
|
2424
2424
|
});
|
|
2425
|
-
function
|
|
2425
|
+
function k() {
|
|
2426
2426
|
_.value = !_.value, a("update:showDropDown", _.value);
|
|
2427
2427
|
}
|
|
2428
2428
|
function T() {
|
|
2429
|
-
|
|
2429
|
+
n.value = !n.value, a("update:burgerState", n.value);
|
|
2430
2430
|
}
|
|
2431
|
-
return (g, y) => (l(), s("div",
|
|
2431
|
+
return (g, y) => (l(), s("div", er, [
|
|
2432
2432
|
t("nav", null, [
|
|
2433
|
-
t("div",
|
|
2434
|
-
t("div",
|
|
2433
|
+
t("div", tr, [
|
|
2434
|
+
t("div", ar, [
|
|
2435
2435
|
u(g.$slots, "link-logo", {}, void 0, !0)
|
|
2436
2436
|
]),
|
|
2437
|
-
t("ul",
|
|
2437
|
+
t("ul", lr, [
|
|
2438
2438
|
u(g.$slots, "main-nav-items", {}, void 0, !0)
|
|
2439
2439
|
]),
|
|
2440
|
-
t("div",
|
|
2440
|
+
t("div", ir, [
|
|
2441
2441
|
t("button", {
|
|
2442
|
-
onClick:
|
|
2442
|
+
onClick: k,
|
|
2443
2443
|
class: "nav-dropdown-btn"
|
|
2444
2444
|
}, [
|
|
2445
2445
|
u(g.$slots, "dropdown-title", {}, void 0, !0),
|
|
2446
|
-
|
|
2446
|
+
S(_) == !1 ? (l(), s("img", rr)) : (l(), s("img", sr))
|
|
2447
2447
|
]),
|
|
2448
|
-
|
|
2448
|
+
U(t("div", or, [
|
|
2449
2449
|
u(g.$slots, "dropdown-links", {}, void 0, !0)
|
|
2450
2450
|
], 512), [
|
|
2451
|
-
[G,
|
|
2451
|
+
[G, S(_)]
|
|
2452
2452
|
])
|
|
2453
2453
|
], 512),
|
|
2454
|
-
t("div",
|
|
2454
|
+
t("div", nr, [
|
|
2455
2455
|
t("button", {
|
|
2456
2456
|
onClick: y[0] || (y[0] = (B) => g.$emit("clickSearch"))
|
|
2457
2457
|
}, [
|
|
2458
2458
|
t("img", {
|
|
2459
|
-
src:
|
|
2459
|
+
src: S(n) == !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",
|
|
2460
2460
|
alt: "search icon"
|
|
2461
|
-
}, null, 8,
|
|
2461
|
+
}, null, 8, dr)
|
|
2462
2462
|
])
|
|
2463
2463
|
])
|
|
2464
2464
|
]),
|
|
2465
2465
|
t("div", {
|
|
2466
|
-
class: c(["mobile-nav-wrapper",
|
|
2466
|
+
class: c(["mobile-nav-wrapper", S(n) == !0 ? "mirsaic-mobile-bg" : ""])
|
|
2467
2467
|
}, [
|
|
2468
|
-
t("div",
|
|
2469
|
-
t("div",
|
|
2468
|
+
t("div", cr, [
|
|
2469
|
+
t("div", ur, [
|
|
2470
2470
|
u(g.$slots, "link-logo", {}, void 0, !0)
|
|
2471
2471
|
]),
|
|
2472
|
-
t("div",
|
|
2472
|
+
t("div", _r, [
|
|
2473
2473
|
t("button", {
|
|
2474
2474
|
onClick: y[1] || (y[1] = (B) => g.$emit("clickSearch"))
|
|
2475
2475
|
}, [
|
|
2476
2476
|
t("img", {
|
|
2477
|
-
src:
|
|
2477
|
+
src: S(n) == !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",
|
|
2478
2478
|
alt: "search icon"
|
|
2479
|
-
}, null, 8,
|
|
2479
|
+
}, null, 8, hr)
|
|
2480
2480
|
])
|
|
2481
2481
|
]),
|
|
2482
2482
|
t("button", {
|
|
2483
|
-
onClick:
|
|
2483
|
+
onClick: ae(T, ["prevent"]),
|
|
2484
2484
|
class: "mobile-burger-wrapper"
|
|
2485
2485
|
}, [
|
|
2486
2486
|
t("img", {
|
|
2487
|
-
class: c(["burger-line",
|
|
2488
|
-
src:
|
|
2489
|
-
}, null, 10,
|
|
2487
|
+
class: c(["burger-line", S(n) == !0 ? "burger-top-line-open" : ""]),
|
|
2488
|
+
src: S(n) == !0 ? "https://a.storyblok.com/f/230581/23x3/bf4bfb3a50/burger-line-white.svg?cv=1695125714410" : "https://a.storyblok.com/f/230581/23x2/63423a4523/burger-line.svg?cv=1695125714081"
|
|
2489
|
+
}, null, 10, mr),
|
|
2490
2490
|
t("img", {
|
|
2491
|
-
class: c(["burger-line",
|
|
2492
|
-
src:
|
|
2493
|
-
}, null, 10,
|
|
2494
|
-
], 8,
|
|
2491
|
+
class: c(["burger-line", S(n) == !0 ? "burger-bottom-line-open" : ""]),
|
|
2492
|
+
src: S(n) == !0 ? "https://a.storyblok.com/f/230581/23x3/bf4bfb3a50/burger-line-white.svg?cv=1695125714410" : "https://a.storyblok.com/f/230581/23x2/63423a4523/burger-line.svg?cv=1695125714081"
|
|
2493
|
+
}, null, 10, gr)
|
|
2494
|
+
], 8, vr)
|
|
2495
2495
|
]),
|
|
2496
|
-
|
|
2496
|
+
U(t("div", fr, [
|
|
2497
2497
|
t("ul", null, [
|
|
2498
2498
|
u(g.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2499
2499
|
]),
|
|
2500
|
-
t("ul",
|
|
2500
|
+
t("ul", yr, [
|
|
2501
2501
|
u(g.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2502
2502
|
u(g.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2503
2503
|
])
|
|
2504
2504
|
], 512), [
|
|
2505
|
-
[G,
|
|
2505
|
+
[G, S(n)]
|
|
2506
2506
|
])
|
|
2507
2507
|
], 2)
|
|
2508
2508
|
])
|
|
2509
2509
|
]));
|
|
2510
2510
|
}
|
|
2511
2511
|
});
|
|
2512
|
-
const
|
|
2512
|
+
const pr = /* @__PURE__ */ v(br, [["__scopeId", "data-v-3934000f"]]), $r = { class: "language__wrapper" }, kr = { class: "language__content" }, wr = { class: "language__headline" }, xr = { class: "language__paragraph" }, Sr = /* @__PURE__ */ h({
|
|
2513
2513
|
__name: "language-switcher",
|
|
2514
2514
|
props: {
|
|
2515
2515
|
headline: {
|
|
@@ -2520,16 +2520,16 @@ const qr = /* @__PURE__ */ m(Sr, [["__scopeId", "data-v-5db4b6f4"]]), Br = { cla
|
|
|
2520
2520
|
}
|
|
2521
2521
|
},
|
|
2522
2522
|
setup(e) {
|
|
2523
|
-
return (a, r) => (l(), s("div",
|
|
2524
|
-
t("div",
|
|
2525
|
-
t("h2",
|
|
2526
|
-
t("p",
|
|
2523
|
+
return (a, r) => (l(), s("div", $r, [
|
|
2524
|
+
t("div", kr, [
|
|
2525
|
+
t("h2", wr, o(e.headline), 1),
|
|
2526
|
+
t("p", xr, o(e.paragraph), 1),
|
|
2527
2527
|
u(a.$slots, "language-links", {}, void 0, !0)
|
|
2528
2528
|
])
|
|
2529
2529
|
]));
|
|
2530
2530
|
}
|
|
2531
2531
|
});
|
|
2532
|
-
const
|
|
2532
|
+
const qr = /* @__PURE__ */ v(Sr, [["__scopeId", "data-v-a76ba727"]]), Br = { class: "pagination__wrapper" }, Ir = { class: "pagination__content" }, Lr = /* @__PURE__ */ h({
|
|
2533
2533
|
__name: "pagination",
|
|
2534
2534
|
props: {
|
|
2535
2535
|
isPreviousDisabled: {
|
|
@@ -2543,16 +2543,16 @@ const Vr = /* @__PURE__ */ m(Cr, [["__scopeId", "data-v-941ff4d5"]]), Ar = { cla
|
|
|
2543
2543
|
},
|
|
2544
2544
|
emits: ["previous", "next"],
|
|
2545
2545
|
setup(e) {
|
|
2546
|
-
return (a, r) => (l(), s("div",
|
|
2547
|
-
t("div",
|
|
2548
|
-
p(
|
|
2546
|
+
return (a, r) => (l(), s("div", Br, [
|
|
2547
|
+
t("div", Ir, [
|
|
2548
|
+
p(W, {
|
|
2549
2549
|
onClick: r[0] || (r[0] = (i) => a.$emit("previous")),
|
|
2550
2550
|
disabled: e.isPreviousDisabled,
|
|
2551
2551
|
variant: "previous",
|
|
2552
2552
|
ariaLabel: "previous"
|
|
2553
2553
|
}, null, 8, ["disabled"]),
|
|
2554
2554
|
u(a.$slots, "pagination-numbers"),
|
|
2555
|
-
p(
|
|
2555
|
+
p(W, {
|
|
2556
2556
|
onClick: r[1] || (r[1] = (i) => a.$emit("next")),
|
|
2557
2557
|
disabled: e.isNextDisabled,
|
|
2558
2558
|
variant: "next",
|
|
@@ -2562,52 +2562,52 @@ const Vr = /* @__PURE__ */ m(Cr, [["__scopeId", "data-v-941ff4d5"]]), Ar = { cla
|
|
|
2562
2562
|
]));
|
|
2563
2563
|
}
|
|
2564
2564
|
});
|
|
2565
|
-
const
|
|
2565
|
+
const Tr = /* @__PURE__ */ v(Lr, [["__scopeId", "data-v-aef0eda7"]]), Vr = {
|
|
2566
2566
|
install: (e) => {
|
|
2567
|
-
e.component("AtomButton",
|
|
2567
|
+
e.component("AtomButton", W), e.component("AtomCheckbox", Be), e.component("AtomChip", Ve), e.component("AtomDropdown", Ne), e.component("AtomImage", L), e.component("AtomLabel", j), e.component("AtomLink", C), e.component("AtomRadioButton", Xe), e.component("AtomSelect", it), e.component("AtomSlider", vt), e.component("AtomTextarea", kt), e.component("AtomTextField", At), e.component("AtomVideo", H), e.component("MoleculeAddress", Gt), e.component("MoleculeBulletList", Zt), e.component("MoleculeCard", la), e.component("MoleculeEventCard", ua), e.component("MoleculeModal", re), e.component("MoleculeTextCard", ga), e.component("BlockFacts", qa), e.component("BlockFeatures", Ma), e.component("BlockHeadline", Xa), e.component("BlockHero", dl), e.component("BlockImage", Ea), e.component("BlockImageGallery", Ga), e.component("BlockLogoWall", gl), e.component("BlockMicroStories", yl), e.component("BlockPolicy", wl), e.component("BlockProductHero", Ll), e.component("BlockPromo", Vl), e.component("BlockQuote", Kl), e.component("BlockRichText", Ql), e.component("BlockTimeline", oi), e.component("BlockTripleCardDisplay", vi), e.component("BlockVimeo", bi), e.component("Organism404", Si), e.component("OrganismFilter", Ci), e.component("OrganismFooter", Zi), e.component("OrganismHeader", pr), e.component("OrganismLanguageSwitcher", qr), e.component("OrganismPagination", Tr);
|
|
2568
2568
|
}
|
|
2569
2569
|
};
|
|
2570
2570
|
export {
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2571
|
+
W as AtomButton,
|
|
2572
|
+
Be as AtomCheckbox,
|
|
2573
|
+
Ve as AtomChip,
|
|
2574
|
+
Ne as AtomDropdown,
|
|
2575
2575
|
L as AtomImage,
|
|
2576
2576
|
j as AtomLabel,
|
|
2577
2577
|
C as AtomLink,
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2578
|
+
Xe as AtomRadioButton,
|
|
2579
|
+
it as AtomSelect,
|
|
2580
|
+
vt as AtomSlider,
|
|
2581
|
+
At as AtomTextField,
|
|
2582
|
+
kt as AtomTextarea,
|
|
2583
2583
|
H as AtomVideo,
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2584
|
+
qa as BlockFacts,
|
|
2585
|
+
Ma as BlockFeatures,
|
|
2586
|
+
Xa as BlockHeadline,
|
|
2587
|
+
dl as BlockHero,
|
|
2588
|
+
Ea as BlockImage,
|
|
2589
|
+
Ga as BlockImageGallery,
|
|
2590
|
+
gl as BlockLogoWall,
|
|
2591
|
+
yl as BlockMicroStories,
|
|
2592
|
+
wl as BlockPolicy,
|
|
2593
|
+
Ll as BlockProductHero,
|
|
2594
|
+
Vl as BlockPromo,
|
|
2595
|
+
Kl as BlockQuote,
|
|
2596
|
+
Ql as BlockRichText,
|
|
2597
|
+
oi as BlockTimeline,
|
|
2598
|
+
vi as BlockTripleCardDisplay,
|
|
2599
|
+
bi as BlockVimeo,
|
|
2600
|
+
Gt as MoleculeAddress,
|
|
2601
|
+
Zt as MoleculeBulletList,
|
|
2602
|
+
la as MoleculeCard,
|
|
2603
|
+
ua as MoleculeEventCard,
|
|
2604
|
+
re as MoleculeModal,
|
|
2605
|
+
ga as MoleculeTextCard,
|
|
2606
|
+
Si as Organism404,
|
|
2607
|
+
Ci as OrganismFilter,
|
|
2608
|
+
Zi as OrganismFooter,
|
|
2609
|
+
pr as OrganismHeader,
|
|
2610
|
+
qr as OrganismLanguageSwitcher,
|
|
2611
|
+
Tr as OrganismPagination,
|
|
2612
|
+
Vr as default
|
|
2613
2613
|
};
|