@mirweb/mir-web-components 0.17.18 → 0.17.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/atoms/label/label.vue.d.ts +1 -1
- package/dist/components/blocks/product-hero/product-hero.vue.d.ts +1 -1
- package/dist/main.d.ts +1 -0
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +374 -354
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as f, computed as T, openBlock as o, createElementBlock as i, normalizeClass as h, toDisplayString as
|
|
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 N, 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 C, onMounted as ce, watch as re, onUnmounted as Se } from "vue";
|
|
2
2
|
const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -17,7 +17,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
17
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;
|
|
@@ -81,7 +81,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
81
81
|
class: "chip",
|
|
82
82
|
"aria-label": r.value
|
|
83
83
|
}, [
|
|
84
|
-
j(
|
|
84
|
+
j(n(l.text) + " ", 1),
|
|
85
85
|
Oe
|
|
86
86
|
], 8, Me)
|
|
87
87
|
]));
|
|
@@ -105,35 +105,35 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
105
105
|
primary: "dropdown-dark-bg-primary",
|
|
106
106
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
107
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
|
-
const
|
|
108
|
+
const d = l.options.find(
|
|
109
109
|
(b) => b.value === l.modelValue
|
|
110
110
|
);
|
|
111
|
-
return
|
|
111
|
+
return d && d.label;
|
|
112
112
|
}), U = {
|
|
113
|
-
beforeMount(
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}, document.body.addEventListener("click",
|
|
113
|
+
beforeMount(d, b) {
|
|
114
|
+
d.clickOutsideEvent = function($) {
|
|
115
|
+
d === $.target || d.contains($.target) || b.value($);
|
|
116
|
+
}, document.body.addEventListener("click", d.clickOutsideEvent);
|
|
117
117
|
},
|
|
118
|
-
unmounted(
|
|
119
|
-
document.body.removeEventListener("click",
|
|
118
|
+
unmounted(d) {
|
|
119
|
+
document.body.removeEventListener("click", d.clickOutsideEvent);
|
|
120
120
|
}
|
|
121
121
|
};
|
|
122
|
-
function x(
|
|
123
|
-
X("update:modelValue",
|
|
122
|
+
function x(d) {
|
|
123
|
+
X("update:modelValue", d);
|
|
124
124
|
}
|
|
125
|
-
function H(
|
|
125
|
+
function H(d) {
|
|
126
126
|
var $;
|
|
127
|
-
const b =
|
|
127
|
+
const b = d.target;
|
|
128
128
|
b.getAttribute("role") === "option" && (W(b), Q(), ($ = u.value) == null || $.focus());
|
|
129
129
|
}
|
|
130
|
-
function le(
|
|
130
|
+
function le(d) {
|
|
131
131
|
var $;
|
|
132
|
-
const b =
|
|
132
|
+
const b = d.key;
|
|
133
133
|
switch (b) {
|
|
134
134
|
case "ArrowUp":
|
|
135
135
|
case "ArrowDown": {
|
|
136
|
-
|
|
136
|
+
d.preventDefault();
|
|
137
137
|
const L = l.options.findIndex(
|
|
138
138
|
(K) => K.value === l.modelValue
|
|
139
139
|
);
|
|
@@ -143,15 +143,15 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
143
143
|
}
|
|
144
144
|
case "Home":
|
|
145
145
|
case "PageUp":
|
|
146
|
-
|
|
146
|
+
d.preventDefault(), ve();
|
|
147
147
|
break;
|
|
148
148
|
case "End":
|
|
149
149
|
case "PageDown":
|
|
150
|
-
|
|
150
|
+
d.preventDefault(), fe();
|
|
151
151
|
break;
|
|
152
152
|
case "Enter":
|
|
153
153
|
case "Escape":
|
|
154
|
-
|
|
154
|
+
d.preventDefault(), Q(), ($ = u.value) == null || $.focus();
|
|
155
155
|
break;
|
|
156
156
|
default: {
|
|
157
157
|
const L = me(b);
|
|
@@ -160,36 +160,36 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
|
-
function _e(
|
|
163
|
+
function _e(d) {
|
|
164
164
|
if (!l.disabled)
|
|
165
|
-
switch (
|
|
165
|
+
switch (d.key) {
|
|
166
166
|
case "ArrowUp":
|
|
167
167
|
case "ArrowDown":
|
|
168
|
-
|
|
168
|
+
d.preventDefault(), se(), le(d);
|
|
169
169
|
break;
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
|
-
function pe(
|
|
173
|
-
|
|
172
|
+
function pe(d) {
|
|
173
|
+
d && d.removeAttribute("aria-selected");
|
|
174
174
|
}
|
|
175
175
|
function he() {
|
|
176
176
|
S.value && (clearTimeout(S.value), S.value = 0), S.value = setTimeout(() => {
|
|
177
177
|
m.value = "", S.value = 0;
|
|
178
178
|
}, 500);
|
|
179
179
|
}
|
|
180
|
-
function me(
|
|
180
|
+
function me(d) {
|
|
181
181
|
let b = "";
|
|
182
|
-
(m.value === "" || b !==
|
|
182
|
+
(m.value === "" || b !== d) && (q.value = l.options.findIndex(
|
|
183
183
|
(L) => L.value === l.modelValue
|
|
184
|
-
)), m.value = b ===
|
|
184
|
+
)), m.value = b === d ? d : m.value + d, b = d, he();
|
|
185
185
|
let $ = oe(
|
|
186
186
|
q.value + 1,
|
|
187
187
|
l.options.length
|
|
188
188
|
);
|
|
189
189
|
return !$ && m.value.length === 1 && ($ = oe(0, q.value)), q.value = (q.value + 1) % l.options.length, $;
|
|
190
190
|
}
|
|
191
|
-
function oe(
|
|
192
|
-
for (let $ =
|
|
191
|
+
function oe(d, b) {
|
|
192
|
+
for (let $ = d; $ < b; $++)
|
|
193
193
|
if (l.options[$].label && l.options[$].label.toUpperCase().indexOf(m.value.toUpperCase()) === 0)
|
|
194
194
|
return _.value[$];
|
|
195
195
|
return null;
|
|
@@ -197,86 +197,86 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
197
197
|
function ve() {
|
|
198
198
|
W(_.value[0]);
|
|
199
199
|
}
|
|
200
|
-
function W(
|
|
200
|
+
function W(d) {
|
|
201
201
|
var $, L;
|
|
202
|
-
const b =
|
|
202
|
+
const b = d.getAttribute("data-value");
|
|
203
203
|
if (l.modelValue) {
|
|
204
204
|
const R = l.options.findIndex(
|
|
205
205
|
(be) => be.value === l.modelValue
|
|
206
206
|
), K = _.value[R];
|
|
207
207
|
pe(K);
|
|
208
208
|
}
|
|
209
|
-
if (
|
|
209
|
+
if (d.setAttribute("aria-selected", "true"), ($ = c.value) == null || $.setAttribute(
|
|
210
210
|
"aria-activedescendant",
|
|
211
211
|
b || ""
|
|
212
212
|
), x(b || ""), c.value && c.value.scrollHeight > c.value.clientHeight) {
|
|
213
|
-
const R = c.value.clientHeight + c.value.scrollTop, K =
|
|
214
|
-
K > R ? c.value.scrollTop = K - ((L = c.value) == null ? void 0 : L.clientHeight) :
|
|
213
|
+
const R = c.value.clientHeight + c.value.scrollTop, K = d.offsetTop + d.offsetHeight;
|
|
214
|
+
K > R ? 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
218
|
var b;
|
|
219
|
-
const
|
|
220
|
-
W(
|
|
219
|
+
const d = (b = _.value) == null ? void 0 : b[l.options.length - 1];
|
|
220
|
+
W(d);
|
|
221
221
|
}
|
|
222
222
|
function Q() {
|
|
223
|
-
var
|
|
224
|
-
y.value = !0, (
|
|
223
|
+
var d;
|
|
224
|
+
y.value = !0, (d = u.value) == null || d.removeAttribute("aria-expanded");
|
|
225
225
|
}
|
|
226
226
|
function se() {
|
|
227
|
-
var
|
|
228
|
-
y.value = !1, (
|
|
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
231
|
l.disabled || (y.value ? se() : Q());
|
|
232
232
|
}
|
|
233
|
-
return (
|
|
233
|
+
return (d, b) => (o(), i("div", {
|
|
234
234
|
ref: "listbox",
|
|
235
235
|
class: "listbox__wrapper",
|
|
236
|
-
value:
|
|
236
|
+
value: d.modelValue
|
|
237
237
|
}, [
|
|
238
238
|
t("label", {
|
|
239
|
-
id: `${
|
|
239
|
+
id: `${d.name}-label`,
|
|
240
240
|
class: h([{
|
|
241
|
-
"listbox__label--visually-hidden": !
|
|
242
|
-
"is-disabled":
|
|
243
|
-
"is-required":
|
|
241
|
+
"listbox__label--visually-hidden": !d.showLabel,
|
|
242
|
+
"is-disabled": d.disabled,
|
|
243
|
+
"is-required": d.required
|
|
244
244
|
}, "listbox__label"])
|
|
245
|
-
}, d
|
|
245
|
+
}, n(d.label), 11, Ne),
|
|
246
246
|
Z((o(), i("div", Re, [
|
|
247
247
|
t("button", {
|
|
248
|
-
id: `${
|
|
248
|
+
id: `${d.name}-button-label`,
|
|
249
249
|
ref_key: "listboxButton",
|
|
250
250
|
ref: u,
|
|
251
|
-
"aria-labelledby": `${
|
|
251
|
+
"aria-labelledby": `${d.name}-label ${d.name}-button-label`,
|
|
252
252
|
type: "button",
|
|
253
253
|
"aria-haspopup": "listbox",
|
|
254
|
-
"aria-disabled":
|
|
254
|
+
"aria-disabled": d.disabled,
|
|
255
255
|
class: h(["listbox__button", s.value]),
|
|
256
256
|
onClick: ge,
|
|
257
257
|
onKeydown: _e
|
|
258
|
-
}, d
|
|
258
|
+
}, n(d.modelValue ? B.value : d.placeholder), 43, He),
|
|
259
259
|
Z(t("ul", {
|
|
260
260
|
ref_key: "listboxNode",
|
|
261
261
|
ref: c,
|
|
262
|
-
"aria-labelledby": `${
|
|
263
|
-
"aria-activedescendant":
|
|
262
|
+
"aria-labelledby": `${d.name}-label`,
|
|
263
|
+
"aria-activedescendant": d.modelValue,
|
|
264
264
|
tabindex: "0",
|
|
265
265
|
role: "listbox",
|
|
266
266
|
class: "listbox__list",
|
|
267
267
|
onKeydown: le,
|
|
268
268
|
onClick: H
|
|
269
269
|
}, [
|
|
270
|
-
(o(!0), i(
|
|
271
|
-
key: `${
|
|
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
274
|
ref: _,
|
|
275
|
-
"aria-selected": $.value ===
|
|
275
|
+
"aria-selected": $.value === d.modelValue,
|
|
276
276
|
"data-value": $.value,
|
|
277
277
|
class: "listbox__option",
|
|
278
278
|
role: "option"
|
|
279
|
-
},
|
|
279
|
+
}, n($.label), 9, Ue))), 128))
|
|
280
280
|
], 40, ze), [
|
|
281
281
|
[ee, !y.value]
|
|
282
282
|
])
|
|
@@ -298,10 +298,10 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
298
298
|
},
|
|
299
299
|
setup(e) {
|
|
300
300
|
return (a, r) => (o(), i("div", Ge, [
|
|
301
|
-
p(a.$slots, "default",
|
|
301
|
+
p(a.$slots, "default", P(F(a.$attrs)))
|
|
302
302
|
]));
|
|
303
303
|
}
|
|
304
|
-
}),
|
|
304
|
+
}), V = /* @__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: {},
|
|
@@ -314,10 +314,10 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
314
314
|
"aria-label": r.value,
|
|
315
315
|
"label-dark": l.labelDark,
|
|
316
316
|
class: h(l.labelDark ? "label--dark" : "label--light")
|
|
317
|
-
},
|
|
317
|
+
}, n(l.text), 11, Qe)
|
|
318
318
|
]));
|
|
319
319
|
}
|
|
320
|
-
}), Y = /* @__PURE__ */ v(Ze, [["__scopeId", "data-v-
|
|
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" },
|
|
@@ -411,7 +411,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
411
411
|
t("label", {
|
|
412
412
|
for: a.id,
|
|
413
413
|
class: h([a.required ? "required" : "", a.disabled ? "disabled" : ""])
|
|
414
|
-
},
|
|
414
|
+
}, n(a.label), 11, st),
|
|
415
415
|
t("select", {
|
|
416
416
|
id: a.id,
|
|
417
417
|
class: h(a.disabled ? "disabled" : ""),
|
|
@@ -422,10 +422,10 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
422
422
|
a.$emit("update:modelValue", l.target.value), l.target.blur();
|
|
423
423
|
})
|
|
424
424
|
}, [
|
|
425
|
-
(o(!0), i(
|
|
425
|
+
(o(!0), i(D, null, M(a.options, (l) => (o(), i("option", {
|
|
426
426
|
key: l.value,
|
|
427
427
|
value: l.value
|
|
428
|
-
},
|
|
428
|
+
}, n(l.text), 9, rt))), 128))
|
|
429
429
|
], 42, it)
|
|
430
430
|
]));
|
|
431
431
|
}
|
|
@@ -460,7 +460,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
460
460
|
}, ["stop"]))
|
|
461
461
|
}, [
|
|
462
462
|
t("div", null, [
|
|
463
|
-
u.searchBar ? g("", !0) : (o(),
|
|
463
|
+
u.searchBar ? g("", !0) : (o(), A(J, {
|
|
464
464
|
key: 0,
|
|
465
465
|
"aria-label": "close",
|
|
466
466
|
variant: "close",
|
|
@@ -508,7 +508,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
508
508
|
t("label", {
|
|
509
509
|
for: m.id,
|
|
510
510
|
class: h([m.variant, ""])
|
|
511
|
-
},
|
|
511
|
+
}, n(m.label), 11, ht),
|
|
512
512
|
m.information ? (o(), i("i", {
|
|
513
513
|
key: 0,
|
|
514
514
|
role: "button",
|
|
@@ -523,7 +523,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
523
523
|
t("div", vt, [
|
|
524
524
|
t("span", {
|
|
525
525
|
class: h([m.variant, "slider__minmax"])
|
|
526
|
-
},
|
|
526
|
+
}, n(m.min), 3),
|
|
527
527
|
t("input", {
|
|
528
528
|
id: m.id,
|
|
529
529
|
ref_key: "slider",
|
|
@@ -539,19 +539,19 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
539
539
|
}, null, 42, ft),
|
|
540
540
|
t("span", {
|
|
541
541
|
class: h([m.variant, "slider__minmax"])
|
|
542
|
-
},
|
|
542
|
+
}, n(m.max), 3)
|
|
543
543
|
]),
|
|
544
544
|
t("span", {
|
|
545
545
|
class: h([m.variant, "slider__value"])
|
|
546
|
-
},
|
|
546
|
+
}, n(m.modelValue), 3)
|
|
547
547
|
]),
|
|
548
|
-
m.information ? (o(),
|
|
548
|
+
m.information ? (o(), A(ue, {
|
|
549
549
|
key: 0,
|
|
550
550
|
show: c.value,
|
|
551
551
|
"onUpdate:show": y[3] || (y[3] = (q) => c.value = q)
|
|
552
552
|
}, {
|
|
553
553
|
default: w(() => [
|
|
554
|
-
j(
|
|
554
|
+
j(n(m.information), 1)
|
|
555
555
|
]),
|
|
556
556
|
_: 1
|
|
557
557
|
}, 8, ["show"])) : g("", !0)
|
|
@@ -575,7 +575,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
575
575
|
t("label", {
|
|
576
576
|
for: a.id,
|
|
577
577
|
class: h({ required: a.required })
|
|
578
|
-
},
|
|
578
|
+
}, n(a.labelText) + n(a.required ? " *" : ""), 11, $t),
|
|
579
579
|
t("div", {
|
|
580
580
|
id: a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "textarea-wrapper__inner" : ""
|
|
581
581
|
}, [
|
|
@@ -603,7 +603,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
603
603
|
class: h(
|
|
604
604
|
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit-meter" : ""
|
|
605
605
|
)
|
|
606
|
-
},
|
|
606
|
+
}, n(a.maxLength !== void 0 && a.modelValue !== void 0 && a.maxLength - a.modelValue.length >= 0 ? a.modelValue.length : 0) + " / " + n(a.maxLength), 3)
|
|
607
607
|
])
|
|
608
608
|
]));
|
|
609
609
|
}
|
|
@@ -656,7 +656,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
656
656
|
_.disabled ? "disabled" : "",
|
|
657
657
|
_.search ? "search" : ""
|
|
658
658
|
])
|
|
659
|
-
},
|
|
659
|
+
}, n(_.label), 11, Tt),
|
|
660
660
|
l.value === "password" ? (o(), i("div", Ct, [
|
|
661
661
|
t("input", {
|
|
662
662
|
id: _.id,
|
|
@@ -694,8 +694,8 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
694
694
|
onInput: S[2] || (S[2] = (m) => _.$emit("update:modelValue", m.target.value))
|
|
695
695
|
}, null, 42, Dt)),
|
|
696
696
|
_.search ? (o(), i("i", Mt)) : g("", !0),
|
|
697
|
-
_.errorMessage ? (o(), i("strong", Ot,
|
|
698
|
-
_.helperText ? (o(), i("span", Pt,
|
|
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
701
|
}), Et = /* @__PURE__ */ v(Ft, [["__scopeId", "data-v-414b9435"]]), Nt = { class: "video__wrapper" }, Rt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Ht = ["src", "aria-label", "title", "width", "height"], zt = /* @__PURE__ */ f({
|
|
@@ -770,14 +770,14 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
770
770
|
p(a.$slots, "address-flag", {}, void 0, !0)
|
|
771
771
|
]),
|
|
772
772
|
t("div", Gt, [
|
|
773
|
-
t("p", Wt,
|
|
774
|
-
t("p", null,
|
|
775
|
-
t("p", null,
|
|
776
|
-
t("p", null,
|
|
777
|
-
a.addressLine3 ? (o(), i("p", Yt,
|
|
773
|
+
t("p", Wt, n(a.name), 1),
|
|
774
|
+
t("p", null, n(a.company), 1),
|
|
775
|
+
t("p", null, n(a.addressLine1), 1),
|
|
776
|
+
t("p", null, n(a.addressLine2), 1),
|
|
777
|
+
a.addressLine3 ? (o(), i("p", Yt, n(a.addressLine3), 1)) : g("", !0)
|
|
778
778
|
]),
|
|
779
779
|
t("div", Qt, [
|
|
780
|
-
(o(!0), i(
|
|
780
|
+
(o(!0), i(D, null, M(a.phoneNumbers, (l) => (o(), A(O, {
|
|
781
781
|
key: l,
|
|
782
782
|
underline: "false",
|
|
783
783
|
"link-type": "regular"
|
|
@@ -786,14 +786,14 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
786
786
|
t("a", {
|
|
787
787
|
href: "tel:" + l,
|
|
788
788
|
class: "address__phone"
|
|
789
|
-
},
|
|
789
|
+
}, n(l), 9, Zt)
|
|
790
790
|
]),
|
|
791
791
|
_: 2
|
|
792
792
|
}, 1024))), 128)),
|
|
793
793
|
t("a", {
|
|
794
794
|
href: "mailto:" + a.email,
|
|
795
795
|
class: "address__email"
|
|
796
|
-
},
|
|
796
|
+
}, n(a.email), 9, Jt)
|
|
797
797
|
])
|
|
798
798
|
])
|
|
799
799
|
]));
|
|
@@ -823,9 +823,9 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
823
823
|
class: h(["bullet-list", e.variant])
|
|
824
824
|
}, [
|
|
825
825
|
t("ul", null, [
|
|
826
|
-
(o(!0), i(
|
|
826
|
+
(o(!0), i(D, null, M(e.list, (l) => (o(), i("li", { key: l }, [
|
|
827
827
|
aa,
|
|
828
|
-
j(" " +
|
|
828
|
+
j(" " + n(l), 1)
|
|
829
829
|
]))), 128))
|
|
830
830
|
])
|
|
831
831
|
], 2)
|
|
@@ -888,7 +888,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
888
888
|
onMouseover: _[0] || (_[0] = (S) => ie(r) ? r.value = !0 : r = !0),
|
|
889
889
|
onMouseout: _[1] || (_[1] = (S) => ie(r) ? r.value = !1 : r = !1)
|
|
890
890
|
}, [
|
|
891
|
-
c.mediaType === "image" ? (o(),
|
|
891
|
+
c.mediaType === "image" ? (o(), A(V, { key: 0 }, {
|
|
892
892
|
default: w(() => [
|
|
893
893
|
p(c.$slots, "card-image", te({
|
|
894
894
|
src: c.imgSrc,
|
|
@@ -925,11 +925,11 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
925
925
|
key: 3,
|
|
926
926
|
class: h(c.theme === "dark" ? "regular-dark" : "regular-blue"),
|
|
927
927
|
style: { "font-weight": "700" }
|
|
928
|
-
},
|
|
928
|
+
}, n(c.headline), 3)) : (o(), i("h3", {
|
|
929
929
|
key: 4,
|
|
930
930
|
class: h(c.theme === "dark" ? "regular-dark" : "regular-dark-blue")
|
|
931
|
-
},
|
|
932
|
-
c.variant === "product" ? (o(), i("p", ra,
|
|
931
|
+
}, n(c.headline), 3)),
|
|
932
|
+
c.variant === "product" ? (o(), i("p", ra, n(c.paragraph), 1)) : g("", !0)
|
|
933
933
|
], 38)
|
|
934
934
|
]));
|
|
935
935
|
}
|
|
@@ -963,13 +963,13 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
963
963
|
"label-dark": !1,
|
|
964
964
|
text: e.eventType ? e.eventType : ""
|
|
965
965
|
}, null, 8, ["text"]),
|
|
966
|
-
t("div", _a,
|
|
966
|
+
t("div", _a, n(e.headline), 1),
|
|
967
967
|
t("div", pa, [
|
|
968
|
-
j(
|
|
968
|
+
j(n(e.dateTime), 1),
|
|
969
969
|
ha,
|
|
970
|
-
j(
|
|
970
|
+
j(n(e.location), 1)
|
|
971
971
|
]),
|
|
972
|
-
t("div", ma, "Exhibitor: " +
|
|
972
|
+
t("div", ma, "Exhibitor: " + n(e.exhibitor), 1)
|
|
973
973
|
]));
|
|
974
974
|
}
|
|
975
975
|
}), fa = /* @__PURE__ */ v(va, [["__scopeId", "data-v-1a97c019"]]), ga = { class: "text__wrapper" }, ba = { class: "text__headline" }, ya = { class: "text__paragraph" }, $a = /* @__PURE__ */ f({
|
|
@@ -994,9 +994,9 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
994
994
|
"label-dark": !1,
|
|
995
995
|
text: e.label ? e.label : ""
|
|
996
996
|
}, null, 8, ["text"]),
|
|
997
|
-
t("div", ba,
|
|
997
|
+
t("div", ba, n(e.headline), 1),
|
|
998
998
|
t("div", ya, [
|
|
999
|
-
t("p", null,
|
|
999
|
+
t("p", null, n(e.paragraph), 1)
|
|
1000
1000
|
])
|
|
1001
1001
|
]));
|
|
1002
1002
|
}
|
|
@@ -1029,22 +1029,22 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1029
1029
|
setup(e) {
|
|
1030
1030
|
return (a, r) => (o(), i("div", wa, [
|
|
1031
1031
|
t("div", Sa, [
|
|
1032
|
-
t("h2", Ba,
|
|
1032
|
+
t("h2", Ba, n(a.headline), 1),
|
|
1033
1033
|
t("div", Ia, [
|
|
1034
|
-
(o(!0), i(
|
|
1034
|
+
(o(!0), i(D, null, M(a.facts, (l) => (o(), i("div", {
|
|
1035
1035
|
key: l.value + l.metric,
|
|
1036
1036
|
class: "fact"
|
|
1037
1037
|
}, [
|
|
1038
1038
|
t("div", qa, [
|
|
1039
|
-
t("span", null,
|
|
1039
|
+
t("span", null, n(l.value), 1)
|
|
1040
1040
|
]),
|
|
1041
1041
|
t("div", La, [
|
|
1042
|
-
t("span", null,
|
|
1042
|
+
t("span", null, n(l.metric), 1)
|
|
1043
1043
|
])
|
|
1044
1044
|
]))), 128))
|
|
1045
1045
|
]),
|
|
1046
1046
|
a.link ? (o(), i("div", Ta, [
|
|
1047
|
-
k(
|
|
1047
|
+
k(O, {
|
|
1048
1048
|
"link-type": "regular_light",
|
|
1049
1049
|
arrow: ""
|
|
1050
1050
|
}, {
|
|
@@ -1074,21 +1074,21 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1074
1074
|
return (a, r) => (o(), i("div", Aa, [
|
|
1075
1075
|
t("div", Da, [
|
|
1076
1076
|
a.headline ? (o(), i("div", Ma, [
|
|
1077
|
-
t("h2", null,
|
|
1077
|
+
t("h2", null, n(a.headline), 1)
|
|
1078
1078
|
])) : g("", !0),
|
|
1079
1079
|
a.body ? (o(), i("div", Oa, [
|
|
1080
|
-
t("p", null,
|
|
1080
|
+
t("p", null, n(a.body), 1)
|
|
1081
1081
|
])) : g("", !0),
|
|
1082
1082
|
t("div", {
|
|
1083
1083
|
class: h(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1084
1084
|
}, [
|
|
1085
|
-
(o(!0), i(
|
|
1085
|
+
(o(!0), i(D, null, M(a.elements, (l) => (o(), i("div", {
|
|
1086
1086
|
key: l.headline,
|
|
1087
1087
|
class: "features__element"
|
|
1088
1088
|
}, [
|
|
1089
|
-
k(
|
|
1089
|
+
k(V, { class: "element__icon" }, {
|
|
1090
1090
|
default: w(() => [
|
|
1091
|
-
p(a.$slots, "features-icon",
|
|
1091
|
+
p(a.$slots, "features-icon", P(F({
|
|
1092
1092
|
src: l.icon.src,
|
|
1093
1093
|
height: 30,
|
|
1094
1094
|
width: 30,
|
|
@@ -1097,8 +1097,8 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1097
1097
|
]),
|
|
1098
1098
|
_: 2
|
|
1099
1099
|
}, 1024),
|
|
1100
|
-
t("p", Pa,
|
|
1101
|
-
t("p", Fa,
|
|
1100
|
+
t("p", Pa, n(l.headline), 1),
|
|
1101
|
+
t("p", Fa, n(l.body), 1)
|
|
1102
1102
|
]))), 128))
|
|
1103
1103
|
], 2)
|
|
1104
1104
|
])
|
|
@@ -1116,7 +1116,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1116
1116
|
return (a, r) => (o(), i("div", Ra, [
|
|
1117
1117
|
t("div", Ha, [
|
|
1118
1118
|
t("div", za, [
|
|
1119
|
-
t("h2", Ua,
|
|
1119
|
+
t("h2", Ua, n(e.headline), 1),
|
|
1120
1120
|
t("div", Ka, [
|
|
1121
1121
|
p(a.$slots, "form-body", {}, void 0, !0)
|
|
1122
1122
|
])
|
|
@@ -1149,14 +1149,14 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1149
1149
|
return (a, r) => (o(), i("div", Ya, [
|
|
1150
1150
|
t("div", Qa, [
|
|
1151
1151
|
t("div", Za, [
|
|
1152
|
-
k(
|
|
1152
|
+
k(V, null, {
|
|
1153
1153
|
default: w(() => [
|
|
1154
|
-
p(a.$slots, "image",
|
|
1154
|
+
p(a.$slots, "image", P(F({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1155
1155
|
]),
|
|
1156
1156
|
_: 3
|
|
1157
1157
|
})
|
|
1158
1158
|
]),
|
|
1159
|
-
t("p", Ja,
|
|
1159
|
+
t("p", Ja, n(e.caption), 1)
|
|
1160
1160
|
])
|
|
1161
1161
|
]));
|
|
1162
1162
|
}
|
|
@@ -1197,9 +1197,9 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1197
1197
|
}, [
|
|
1198
1198
|
t("div", el, [
|
|
1199
1199
|
s.mediaLarge && s.mediaType === "image" ? (o(), i("div", tl, [
|
|
1200
|
-
k(
|
|
1200
|
+
k(V, null, {
|
|
1201
1201
|
default: w(() => [
|
|
1202
|
-
p(s.$slots, "image-large",
|
|
1202
|
+
p(s.$slots, "image-large", P(F({
|
|
1203
1203
|
width: 617,
|
|
1204
1204
|
height: 530,
|
|
1205
1205
|
src: s.mediaLarge.src,
|
|
@@ -1231,13 +1231,13 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1231
1231
|
s.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1232
1232
|
])
|
|
1233
1233
|
}, [
|
|
1234
|
-
(o(!0), i(
|
|
1234
|
+
(o(!0), i(D, null, M(s.mediaSmall, (c) => (o(), i("div", {
|
|
1235
1235
|
key: c.src + c.alt,
|
|
1236
1236
|
class: "image image--small"
|
|
1237
1237
|
}, [
|
|
1238
|
-
k(
|
|
1238
|
+
k(V, null, {
|
|
1239
1239
|
default: w(() => [
|
|
1240
|
-
p(s.$slots, "image-small",
|
|
1240
|
+
p(s.$slots, "image-small", P(F({
|
|
1241
1241
|
width: 328,
|
|
1242
1242
|
height: 246,
|
|
1243
1243
|
src: c.src,
|
|
@@ -1248,7 +1248,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1248
1248
|
}, 1024)
|
|
1249
1249
|
]))), 128)),
|
|
1250
1250
|
s.mediaSmall.length < 2 ? (o(), i("div", ll, [
|
|
1251
|
-
t("p", null,
|
|
1251
|
+
t("p", null, n(s.body), 1)
|
|
1252
1252
|
])) : g("", !0)
|
|
1253
1253
|
], 6)
|
|
1254
1254
|
], 2)
|
|
@@ -1280,7 +1280,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1280
1280
|
"headline__content--default": !e.article && !e.subMenu
|
|
1281
1281
|
})
|
|
1282
1282
|
}, [
|
|
1283
|
-
t("h1", rl,
|
|
1283
|
+
t("h1", rl, n(e.headline), 1)
|
|
1284
1284
|
], 2)
|
|
1285
1285
|
]));
|
|
1286
1286
|
}
|
|
@@ -1302,10 +1302,10 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1302
1302
|
t("div", pl, [
|
|
1303
1303
|
t("div", hl, [
|
|
1304
1304
|
t("div", ml, [
|
|
1305
|
-
t("h1", null,
|
|
1305
|
+
t("h1", null, n(e.headline), 1)
|
|
1306
1306
|
]),
|
|
1307
1307
|
t("div", vl, [
|
|
1308
|
-
k(
|
|
1308
|
+
k(O, {
|
|
1309
1309
|
"link-type": "regular_light",
|
|
1310
1310
|
arrow: ""
|
|
1311
1311
|
}, {
|
|
@@ -1358,17 +1358,17 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1358
1358
|
return (a, r) => (o(), i("div", $l, [
|
|
1359
1359
|
t("div", kl, [
|
|
1360
1360
|
e.headline || e.body ? (o(), i("div", wl, [
|
|
1361
|
-
e.headline ? (o(), i("h2", Sl,
|
|
1362
|
-
e.body ? (o(), i("p", Bl,
|
|
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
1363
|
])) : g("", !0),
|
|
1364
1364
|
t("div", Il, [
|
|
1365
|
-
(o(!0), i(
|
|
1365
|
+
(o(!0), i(D, null, M(e.logos, (l) => (o(), i("div", {
|
|
1366
1366
|
key: l.src + l.alt,
|
|
1367
1367
|
class: "logo-wall__logo"
|
|
1368
1368
|
}, [
|
|
1369
|
-
k(
|
|
1369
|
+
k(V, null, {
|
|
1370
1370
|
default: w(() => [
|
|
1371
|
-
p(a.$slots, "logo-wall-logo",
|
|
1371
|
+
p(a.$slots, "logo-wall-logo", P(F({
|
|
1372
1372
|
width: 130,
|
|
1373
1373
|
height: 130,
|
|
1374
1374
|
src: l.src,
|
|
@@ -1380,7 +1380,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1380
1380
|
]))), 128))
|
|
1381
1381
|
]),
|
|
1382
1382
|
t("div", ql, [
|
|
1383
|
-
k(
|
|
1383
|
+
k(O, {
|
|
1384
1384
|
"link-type": "regular_light",
|
|
1385
1385
|
arrow: !0
|
|
1386
1386
|
}, {
|
|
@@ -1393,10 +1393,18 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1393
1393
|
])
|
|
1394
1394
|
]));
|
|
1395
1395
|
}
|
|
1396
|
-
}), Tl = /* @__PURE__ */ v(Ll, [["__scopeId", "data-v-a8afd396"]]), Cl = {
|
|
1396
|
+
}), Tl = /* @__PURE__ */ v(Ll, [["__scopeId", "data-v-a8afd396"]]), Cl = {
|
|
1397
|
+
key: 0,
|
|
1398
|
+
class: "headline"
|
|
1399
|
+
}, Vl = {
|
|
1400
|
+
key: 1,
|
|
1401
|
+
class: "body"
|
|
1402
|
+
}, Al = { class: "micro-stories__splide" }, Dl = /* @__PURE__ */ f({
|
|
1397
1403
|
__name: "micro-stories",
|
|
1398
1404
|
props: {
|
|
1399
|
-
bgColor: { default: "blue" }
|
|
1405
|
+
bgColor: { default: "blue" },
|
|
1406
|
+
headline: { default: "" },
|
|
1407
|
+
body: { default: "" }
|
|
1400
1408
|
},
|
|
1401
1409
|
setup(e) {
|
|
1402
1410
|
const a = {
|
|
@@ -1407,67 +1415,64 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ f({
|
|
|
1407
1415
|
return (s, u) => (o(), i("div", {
|
|
1408
1416
|
class: h(["micro-stories__wrapper", r.value])
|
|
1409
1417
|
}, [
|
|
1410
|
-
|
|
1418
|
+
s.headline ? (o(), i("div", Cl, [
|
|
1419
|
+
t("h2", null, n(s.headline), 1)
|
|
1420
|
+
])) : g("", !0),
|
|
1421
|
+
s.body ? (o(), i("div", Vl, [
|
|
1422
|
+
t("p", null, n(s.body), 1)
|
|
1423
|
+
])) : g("", !0),
|
|
1424
|
+
t("div", Al, [
|
|
1411
1425
|
p(s.$slots, "micro-stories-slides")
|
|
1412
1426
|
]),
|
|
1413
1427
|
p(s.$slots, "micro-stories-controls")
|
|
1414
1428
|
], 2));
|
|
1415
1429
|
}
|
|
1416
|
-
}),
|
|
1417
|
-
function
|
|
1418
|
-
return o(), i("div",
|
|
1419
|
-
t("div",
|
|
1430
|
+
}), Ml = {}, Ol = { class: "policy__wrapper" }, Pl = { class: "policy__content" };
|
|
1431
|
+
function Fl(e, a) {
|
|
1432
|
+
return o(), i("div", Ol, [
|
|
1433
|
+
t("div", Pl, [
|
|
1420
1434
|
p(e.$slots, "default", {}, void 0, !0)
|
|
1421
1435
|
])
|
|
1422
1436
|
]);
|
|
1423
1437
|
}
|
|
1424
|
-
const
|
|
1425
|
-
|
|
1438
|
+
const El = /* @__PURE__ */ v(Ml, [["render", Fl], ["__scopeId", "data-v-8765ee0b"]]), Nl = { class: "card-display__wrapper" }, Rl = {
|
|
1439
|
+
key: 0,
|
|
1440
|
+
class: "card__content"
|
|
1441
|
+
}, Hl = { key: 0 }, zl = { key: 1 }, Ul = { class: "card__cards" }, Kl = /* @__PURE__ */ f({
|
|
1442
|
+
__name: "card-display",
|
|
1426
1443
|
props: {
|
|
1427
1444
|
headline: {
|
|
1428
1445
|
type: String,
|
|
1429
|
-
default: ""
|
|
1430
|
-
required: !0
|
|
1431
|
-
},
|
|
1432
|
-
videoSrc: {
|
|
1433
|
-
type: String,
|
|
1434
|
-
default: "",
|
|
1435
|
-
required: !0
|
|
1446
|
+
default: ""
|
|
1436
1447
|
},
|
|
1437
|
-
|
|
1448
|
+
paragraph: {
|
|
1438
1449
|
type: String,
|
|
1439
|
-
default: ""
|
|
1440
|
-
required: !0
|
|
1450
|
+
default: ""
|
|
1441
1451
|
},
|
|
1442
|
-
|
|
1452
|
+
bgColor: {
|
|
1443
1453
|
type: String,
|
|
1444
|
-
default: ""
|
|
1445
|
-
required: !0
|
|
1454
|
+
default: "white"
|
|
1446
1455
|
}
|
|
1447
1456
|
},
|
|
1448
1457
|
setup(e) {
|
|
1449
|
-
return (a, r) => (o(), i("div",
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
autoplay: "",
|
|
1463
|
-
loop: "",
|
|
1464
|
-
muted: ""
|
|
1465
|
-
}, null, 8, ["src", "aria-label", "poster"])
|
|
1458
|
+
return (a, r) => (o(), i("div", {
|
|
1459
|
+
class: h([
|
|
1460
|
+
"card-display",
|
|
1461
|
+
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1462
|
+
])
|
|
1463
|
+
}, [
|
|
1464
|
+
t("div", Nl, [
|
|
1465
|
+
e.headline || e.paragraph ? (o(), i("div", Rl, [
|
|
1466
|
+
e.headline ? (o(), i("h2", Hl, n(e.headline), 1)) : g("", !0),
|
|
1467
|
+
e.paragraph ? (o(), i("p", zl, n(e.paragraph), 1)) : g("", !0)
|
|
1468
|
+
])) : g("", !0),
|
|
1469
|
+
t("div", Ul, [
|
|
1470
|
+
p(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1466
1471
|
])
|
|
1467
1472
|
])
|
|
1468
|
-
]));
|
|
1473
|
+
], 2));
|
|
1469
1474
|
}
|
|
1470
|
-
}),
|
|
1475
|
+
}), jl = /* @__PURE__ */ v(Kl, [["__scopeId", "data-v-183dcee5"]]), Gl = { class: "promo__content" }, Wl = /* @__PURE__ */ f({
|
|
1471
1476
|
__name: "promo",
|
|
1472
1477
|
props: {
|
|
1473
1478
|
label: { default: "" },
|
|
@@ -1495,7 +1500,7 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1495
1500
|
s.teaser ? "promo__wrapper--teaser" : ""
|
|
1496
1501
|
])
|
|
1497
1502
|
}, [
|
|
1498
|
-
t("div",
|
|
1503
|
+
t("div", Gl, [
|
|
1499
1504
|
s.mediaType === "image" ? (o(), i("div", {
|
|
1500
1505
|
key: 0,
|
|
1501
1506
|
class: h([
|
|
@@ -1503,9 +1508,9 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1503
1508
|
s.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1504
1509
|
])
|
|
1505
1510
|
}, [
|
|
1506
|
-
k(
|
|
1511
|
+
k(V, null, {
|
|
1507
1512
|
default: w(() => [
|
|
1508
|
-
p(s.$slots, "promo-image",
|
|
1513
|
+
p(s.$slots, "promo-image", P(F({ src: s.src, width: 1920, alt: s.alt, height: 1080 })))
|
|
1509
1514
|
]),
|
|
1510
1515
|
_: 3
|
|
1511
1516
|
})
|
|
@@ -1535,7 +1540,7 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1535
1540
|
s.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1536
1541
|
])
|
|
1537
1542
|
}, [
|
|
1538
|
-
s.label ? (o(),
|
|
1543
|
+
s.label ? (o(), A(Y, {
|
|
1539
1544
|
key: 0,
|
|
1540
1545
|
text: s.label,
|
|
1541
1546
|
"label-dark": s.variant === "dark"
|
|
@@ -1545,8 +1550,8 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1545
1550
|
"promo__title",
|
|
1546
1551
|
s.variant === "dark" ? "promo__title--dark" : ""
|
|
1547
1552
|
])
|
|
1548
|
-
},
|
|
1549
|
-
s.linkType === "link" ? (o(),
|
|
1553
|
+
}, n(s.headline), 3),
|
|
1554
|
+
s.linkType === "link" ? (o(), A(O, {
|
|
1550
1555
|
key: 1,
|
|
1551
1556
|
"link-type": s.variant === "dark" ? "regular_dark" : (s.variant === "light", "regular_light"),
|
|
1552
1557
|
arrow: ""
|
|
@@ -1556,7 +1561,7 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1556
1561
|
]),
|
|
1557
1562
|
_: 3
|
|
1558
1563
|
}, 8, ["link-type"])) : g("", !0),
|
|
1559
|
-
s.linkType === "button" ? (o(),
|
|
1564
|
+
s.linkType === "button" ? (o(), A(O, {
|
|
1560
1565
|
key: 2,
|
|
1561
1566
|
"link-type": s.variant === "dark" ? "secondary_dark" : (s.variant === "light", "secondary")
|
|
1562
1567
|
}, {
|
|
@@ -1569,10 +1574,10 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1569
1574
|
])
|
|
1570
1575
|
], 2));
|
|
1571
1576
|
}
|
|
1572
|
-
}),
|
|
1577
|
+
}), Yl = /* @__PURE__ */ v(Wl, [["__scopeId", "data-v-7e80a0f0"]]), Ql = (e) => (E("data-v-e3cc8e27"), e = e(), N(), e), Zl = { class: "quote__wrapper" }, Jl = { class: "quote__content" }, Xl = /* @__PURE__ */ Ql(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), xl = { class: "quote__quote" }, eo = { class: "quote__quote-text" }, to = { class: "quote__author" }, ao = {
|
|
1573
1578
|
key: 0,
|
|
1574
1579
|
class: "quote__image"
|
|
1575
|
-
},
|
|
1580
|
+
}, lo = { class: "quote__text" }, oo = { class: "quote__author-name" }, so = { class: "quote__author-title" }, io = /* @__PURE__ */ f({
|
|
1576
1581
|
__name: "quote",
|
|
1577
1582
|
props: {
|
|
1578
1583
|
quote: {
|
|
@@ -1594,16 +1599,16 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1594
1599
|
}
|
|
1595
1600
|
},
|
|
1596
1601
|
setup(e) {
|
|
1597
|
-
return (a, r) => (o(), i("div",
|
|
1598
|
-
t("div",
|
|
1599
|
-
|
|
1600
|
-
t("div",
|
|
1601
|
-
t("p",
|
|
1602
|
-
t("div",
|
|
1603
|
-
e.authorImage ? (o(), i("div",
|
|
1604
|
-
k(
|
|
1602
|
+
return (a, r) => (o(), i("div", Zl, [
|
|
1603
|
+
t("div", Jl, [
|
|
1604
|
+
Xl,
|
|
1605
|
+
t("div", xl, [
|
|
1606
|
+
t("p", eo, n(e.quote), 1),
|
|
1607
|
+
t("div", to, [
|
|
1608
|
+
e.authorImage ? (o(), i("div", ao, [
|
|
1609
|
+
k(V, null, {
|
|
1605
1610
|
default: w(() => [
|
|
1606
|
-
p(a.$slots, "author-image",
|
|
1611
|
+
p(a.$slots, "author-image", P(F({
|
|
1607
1612
|
src: e.authorImage + "/m/100x100",
|
|
1608
1613
|
width: 60,
|
|
1609
1614
|
height: 60
|
|
@@ -1612,22 +1617,22 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1612
1617
|
_: 3
|
|
1613
1618
|
})
|
|
1614
1619
|
])) : g("", !0),
|
|
1615
|
-
t("div",
|
|
1616
|
-
t("p",
|
|
1617
|
-
t("p",
|
|
1620
|
+
t("div", lo, [
|
|
1621
|
+
t("p", oo, n(e.author), 1),
|
|
1622
|
+
t("p", so, n(e.authorTitle), 1)
|
|
1618
1623
|
])
|
|
1619
1624
|
])
|
|
1620
1625
|
])
|
|
1621
1626
|
])
|
|
1622
1627
|
]));
|
|
1623
1628
|
}
|
|
1624
|
-
}),
|
|
1629
|
+
}), ro = /* @__PURE__ */ v(io, [["__scopeId", "data-v-e3cc8e27"]]), no = { class: "rich-text__wrapper" }, co = {
|
|
1625
1630
|
key: 0,
|
|
1626
1631
|
class: "rich-text__links"
|
|
1627
|
-
},
|
|
1632
|
+
}, uo = {
|
|
1628
1633
|
key: 0,
|
|
1629
1634
|
class: "rich-text__bullet-list"
|
|
1630
|
-
},
|
|
1635
|
+
}, _o = /* @__PURE__ */ f({
|
|
1631
1636
|
__name: "rich-text",
|
|
1632
1637
|
props: {
|
|
1633
1638
|
headline: { default: "" },
|
|
@@ -1646,8 +1651,8 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1646
1651
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1647
1652
|
])
|
|
1648
1653
|
}, [
|
|
1649
|
-
t("div",
|
|
1650
|
-
a.label ? (o(),
|
|
1654
|
+
t("div", no, [
|
|
1655
|
+
a.label ? (o(), A(Y, {
|
|
1651
1656
|
key: 0,
|
|
1652
1657
|
text: a.label,
|
|
1653
1658
|
"label-dark": !1
|
|
@@ -1658,7 +1663,7 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1658
1663
|
"rich-text__headline",
|
|
1659
1664
|
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
1660
1665
|
])
|
|
1661
|
-
},
|
|
1666
|
+
}, n(a.headline), 3)) : g("", !0),
|
|
1662
1667
|
t("div", {
|
|
1663
1668
|
class: h([
|
|
1664
1669
|
"rich-text__content",
|
|
@@ -1672,11 +1677,11 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1672
1677
|
])
|
|
1673
1678
|
}, [
|
|
1674
1679
|
p(a.$slots, "rich-text-content"),
|
|
1675
|
-
a.links ? (o(), i("div",
|
|
1680
|
+
a.links ? (o(), i("div", co, [
|
|
1676
1681
|
p(a.$slots, "rich-text-links")
|
|
1677
1682
|
])) : g("", !0)
|
|
1678
1683
|
], 2),
|
|
1679
|
-
a.bulletList ? (o(), i("div",
|
|
1684
|
+
a.bulletList ? (o(), i("div", uo, [
|
|
1680
1685
|
p(a.$slots, "rich-text-bullet-list")
|
|
1681
1686
|
])) : g("", !0),
|
|
1682
1687
|
a.image ? (o(), i("div", {
|
|
@@ -1686,9 +1691,9 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1686
1691
|
a.imageClip ? "rich-text__image--clip" : ""
|
|
1687
1692
|
])
|
|
1688
1693
|
}, [
|
|
1689
|
-
k(
|
|
1694
|
+
k(V, null, {
|
|
1690
1695
|
default: w(() => [
|
|
1691
|
-
p(a.$slots, "rich-text-image",
|
|
1696
|
+
p(a.$slots, "rich-text-image", P(F({ width: 865, height: 307 })))
|
|
1692
1697
|
]),
|
|
1693
1698
|
_: 3
|
|
1694
1699
|
})
|
|
@@ -1697,12 +1702,12 @@ const Pl = /* @__PURE__ */ v(Al, [["render", Ol], ["__scopeId", "data-v-8765ee0b
|
|
|
1697
1702
|
])
|
|
1698
1703
|
], 2));
|
|
1699
1704
|
}
|
|
1700
|
-
}),
|
|
1701
|
-
function
|
|
1702
|
-
return o(), i("div",
|
|
1703
|
-
t("div",
|
|
1704
|
-
t("div",
|
|
1705
|
-
t("div",
|
|
1705
|
+
}), po = /* @__PURE__ */ v(_o, [["__scopeId", "data-v-7bcde564"]]), ho = {}, mo = { class: "rich-text" }, vo = { class: "rich-text__wrapper" }, fo = { class: "rich-text__content rich-text__content--left-aligned" }, go = { class: "rich-text__body" };
|
|
1706
|
+
function bo(e, a) {
|
|
1707
|
+
return o(), i("div", mo, [
|
|
1708
|
+
t("div", vo, [
|
|
1709
|
+
t("div", fo, [
|
|
1710
|
+
t("div", go, [
|
|
1706
1711
|
t("div", null, [
|
|
1707
1712
|
p(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
1708
1713
|
]),
|
|
@@ -1714,10 +1719,10 @@ function vo(e, a) {
|
|
|
1714
1719
|
])
|
|
1715
1720
|
]);
|
|
1716
1721
|
}
|
|
1717
|
-
const
|
|
1722
|
+
const yo = /* @__PURE__ */ v(ho, [["render", bo], ["__scopeId", "data-v-3abe0bb4"]]), $o = (e) => (E("data-v-78d319df"), e = e(), N(), e), ko = { class: "timeline__wrapper" }, wo = { class: "timeline__content" }, So = { class: "timeline__items" }, Bo = { class: "item__left" }, Io = /* @__PURE__ */ $o(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
1718
1723
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
1719
1724
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
1720
|
-
], -1)),
|
|
1725
|
+
], -1)), qo = { class: "item__right" }, Lo = ["innerHTML"], To = /* @__PURE__ */ f({
|
|
1721
1726
|
__name: "timeline",
|
|
1722
1727
|
props: {
|
|
1723
1728
|
timelineItems: {
|
|
@@ -1740,19 +1745,19 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1740
1745
|
a.forEach((l) => {
|
|
1741
1746
|
r.observe(l);
|
|
1742
1747
|
});
|
|
1743
|
-
}), (a, r) => (o(), i("div",
|
|
1744
|
-
t("div",
|
|
1745
|
-
t("div",
|
|
1746
|
-
(o(!0), i(
|
|
1748
|
+
}), (a, r) => (o(), i("div", ko, [
|
|
1749
|
+
t("div", wo, [
|
|
1750
|
+
t("div", So, [
|
|
1751
|
+
(o(!0), i(D, null, M(e.timelineItems, (l) => (o(), i("div", {
|
|
1747
1752
|
key: l.year,
|
|
1748
1753
|
class: "timeline__item faded"
|
|
1749
1754
|
}, [
|
|
1750
|
-
t("div",
|
|
1751
|
-
|
|
1752
|
-
t("div",
|
|
1753
|
-
k(
|
|
1755
|
+
t("div", Bo, n(l.year), 1),
|
|
1756
|
+
Io,
|
|
1757
|
+
t("div", qo, [
|
|
1758
|
+
k(V, null, {
|
|
1754
1759
|
default: w(() => [
|
|
1755
|
-
l.media.type === "image" ? p(a.$slots, "timeline-image",
|
|
1760
|
+
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)
|
|
1756
1761
|
]),
|
|
1757
1762
|
_: 2
|
|
1758
1763
|
}, 1024),
|
|
@@ -1760,57 +1765,20 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1760
1765
|
style: ae([l.media.type === "none" ? "margin-top: 0px" : ""]),
|
|
1761
1766
|
class: "rich-text",
|
|
1762
1767
|
innerHTML: l.text
|
|
1763
|
-
}, null, 12,
|
|
1768
|
+
}, null, 12, Lo)
|
|
1764
1769
|
])
|
|
1765
1770
|
]))), 128))
|
|
1766
1771
|
])
|
|
1767
1772
|
])
|
|
1768
1773
|
]));
|
|
1769
1774
|
}
|
|
1770
|
-
}),
|
|
1771
|
-
key: 0,
|
|
1772
|
-
class: "card__content"
|
|
1773
|
-
}, Co = { key: 0 }, Vo = { key: 1 }, Ao = { class: "card__cards" }, Do = /* @__PURE__ */ f({
|
|
1774
|
-
__name: "card-display",
|
|
1775
|
-
props: {
|
|
1776
|
-
headline: {
|
|
1777
|
-
type: String,
|
|
1778
|
-
default: ""
|
|
1779
|
-
},
|
|
1780
|
-
paragraph: {
|
|
1781
|
-
type: String,
|
|
1782
|
-
default: ""
|
|
1783
|
-
},
|
|
1784
|
-
bgColor: {
|
|
1785
|
-
type: String,
|
|
1786
|
-
default: "white"
|
|
1787
|
-
}
|
|
1788
|
-
},
|
|
1789
|
-
setup(e) {
|
|
1790
|
-
return (a, r) => (o(), i("div", {
|
|
1791
|
-
class: h([
|
|
1792
|
-
"card-display",
|
|
1793
|
-
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1794
|
-
])
|
|
1795
|
-
}, [
|
|
1796
|
-
t("div", Lo, [
|
|
1797
|
-
e.headline || e.paragraph ? (o(), i("div", To, [
|
|
1798
|
-
e.headline ? (o(), i("h2", Co, d(e.headline), 1)) : g("", !0),
|
|
1799
|
-
e.paragraph ? (o(), i("p", Vo, d(e.paragraph), 1)) : g("", !0)
|
|
1800
|
-
])) : g("", !0),
|
|
1801
|
-
t("div", Ao, [
|
|
1802
|
-
p(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1803
|
-
])
|
|
1804
|
-
])
|
|
1805
|
-
], 2));
|
|
1806
|
-
}
|
|
1807
|
-
}), Mo = /* @__PURE__ */ v(Do, [["__scopeId", "data-v-183dcee5"]]), Oo = { class: "vimeo" }, Po = { class: "vimeo__wrapper" }, Fo = {
|
|
1775
|
+
}), Co = /* @__PURE__ */ v(To, [["__scopeId", "data-v-78d319df"]]), Vo = { class: "vimeo" }, Ao = { class: "vimeo__wrapper" }, Do = {
|
|
1808
1776
|
key: 0,
|
|
1809
1777
|
class: "vimeo__headline"
|
|
1810
|
-
},
|
|
1778
|
+
}, Mo = {
|
|
1811
1779
|
key: 1,
|
|
1812
1780
|
class: "vimeo__description"
|
|
1813
|
-
},
|
|
1781
|
+
}, Oo = /* @__PURE__ */ f({
|
|
1814
1782
|
__name: "vimeo",
|
|
1815
1783
|
props: {
|
|
1816
1784
|
headline: {
|
|
@@ -1823,15 +1791,15 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1823
1791
|
}
|
|
1824
1792
|
},
|
|
1825
1793
|
setup(e) {
|
|
1826
|
-
return (a, r) => (o(), i("div",
|
|
1827
|
-
t("div",
|
|
1828
|
-
e.headline ? (o(), i("h2",
|
|
1794
|
+
return (a, r) => (o(), i("div", Vo, [
|
|
1795
|
+
t("div", Ao, [
|
|
1796
|
+
e.headline ? (o(), i("h2", Do, n(e.headline), 1)) : g("", !0),
|
|
1829
1797
|
p(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
1830
|
-
e.description ? (o(), i("p",
|
|
1798
|
+
e.description ? (o(), i("p", Mo, n(e.description), 1)) : g("", !0)
|
|
1831
1799
|
])
|
|
1832
1800
|
]));
|
|
1833
1801
|
}
|
|
1834
|
-
}),
|
|
1802
|
+
}), Po = /* @__PURE__ */ v(Oo, [["__scopeId", "data-v-599c68c7"]]), Fo = { class: "not-found__wrapper" }, Eo = { class: "not-found__content" }, No = { class: "not-found__headline" }, Ro = { class: "not-found__body" }, Ho = /* @__PURE__ */ f({
|
|
1835
1803
|
__name: "404",
|
|
1836
1804
|
props: {
|
|
1837
1805
|
headline: {
|
|
@@ -1840,16 +1808,16 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1840
1808
|
}
|
|
1841
1809
|
},
|
|
1842
1810
|
setup(e) {
|
|
1843
|
-
return (a, r) => (o(), i("div",
|
|
1844
|
-
t("div",
|
|
1845
|
-
t("h1",
|
|
1846
|
-
t("div",
|
|
1811
|
+
return (a, r) => (o(), i("div", Fo, [
|
|
1812
|
+
t("div", Eo, [
|
|
1813
|
+
t("h1", No, n(e.headline), 1),
|
|
1814
|
+
t("div", Ro, [
|
|
1847
1815
|
p(a.$slots, "not-found-body", {}, void 0, !0)
|
|
1848
1816
|
])
|
|
1849
1817
|
])
|
|
1850
1818
|
]));
|
|
1851
1819
|
}
|
|
1852
|
-
}),
|
|
1820
|
+
}), zo = /* @__PURE__ */ v(Ho, [["__scopeId", "data-v-b829ca6c"]]), Uo = { class: "filter__wrapper" }, Ko = { class: "filter__content" }, jo = { class: "filter__dropdowns" }, Go = { class: "filter__chips" }, Wo = /* @__PURE__ */ f({
|
|
1853
1821
|
__name: "filter",
|
|
1854
1822
|
props: {
|
|
1855
1823
|
hasChips: {
|
|
@@ -1859,12 +1827,12 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1859
1827
|
},
|
|
1860
1828
|
emits: ["clearFilters"],
|
|
1861
1829
|
setup(e) {
|
|
1862
|
-
return (a, r) => (o(), i("div",
|
|
1863
|
-
t("div",
|
|
1864
|
-
t("div",
|
|
1830
|
+
return (a, r) => (o(), i("div", Uo, [
|
|
1831
|
+
t("div", Ko, [
|
|
1832
|
+
t("div", jo, [
|
|
1865
1833
|
p(a.$slots, "filter-dropdowns")
|
|
1866
1834
|
]),
|
|
1867
|
-
t("div",
|
|
1835
|
+
t("div", Go, [
|
|
1868
1836
|
p(a.$slots, "filter-chips"),
|
|
1869
1837
|
e.hasChips ? (o(), i("button", {
|
|
1870
1838
|
key: 0,
|
|
@@ -1875,12 +1843,12 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1875
1843
|
])
|
|
1876
1844
|
]));
|
|
1877
1845
|
}
|
|
1878
|
-
}),
|
|
1846
|
+
}), Yo = /* @__PURE__ */ v(Wo, [["__scopeId", "data-v-c11a3620"]]), z = (e) => (E("data-v-cf5ea14f"), e = e(), N(), e), Qo = { class: "footer__wrapper" }, Zo = { class: "footer__content" }, Jo = { class: "footer__sections" }, Xo = { class: "section__title" }, xo = { class: "section__list" }, es = { class: "section" }, ts = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), as = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), ls = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), os = /* @__PURE__ */ z(() => /* @__PURE__ */ t("br", null, null, -1)), ss = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), is = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), rs = { class: "footer__bottom" }, ns = { class: "copyright" }, ds = { class: "footer__policy" }, cs = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, [
|
|
1879
1847
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
1880
1848
|
/* @__PURE__ */ j("Change region")
|
|
1881
|
-
], -1)),
|
|
1882
|
-
|
|
1883
|
-
],
|
|
1849
|
+
], -1)), us = [
|
|
1850
|
+
cs
|
|
1851
|
+
], _s = { class: "footer__social" }, ps = ["href", "aria-label"], hs = /* @__PURE__ */ f({
|
|
1884
1852
|
__name: "footer",
|
|
1885
1853
|
props: {
|
|
1886
1854
|
footerSections: { default: () => [] },
|
|
@@ -1890,63 +1858,63 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1890
1858
|
},
|
|
1891
1859
|
emits: ["changeRegionClicked"],
|
|
1892
1860
|
setup(e) {
|
|
1893
|
-
return (a, r) => (o(), i("div",
|
|
1894
|
-
t("footer",
|
|
1895
|
-
t("div",
|
|
1896
|
-
(o(!0), i(
|
|
1861
|
+
return (a, r) => (o(), i("div", Qo, [
|
|
1862
|
+
t("footer", Zo, [
|
|
1863
|
+
t("div", Jo, [
|
|
1864
|
+
(o(!0), i(D, null, M(a.footerSections, (l) => (o(), i("div", {
|
|
1897
1865
|
key: l.title,
|
|
1898
1866
|
class: "section"
|
|
1899
1867
|
}, [
|
|
1900
|
-
t("span",
|
|
1868
|
+
t("span", Xo, n(l.title), 1),
|
|
1901
1869
|
t("nav", null, [
|
|
1902
|
-
t("ul",
|
|
1870
|
+
t("ul", xo, [
|
|
1903
1871
|
p(a.$slots, "section-links", {
|
|
1904
1872
|
links: l.links
|
|
1905
1873
|
})
|
|
1906
1874
|
])
|
|
1907
1875
|
])
|
|
1908
1876
|
]))), 128)),
|
|
1909
|
-
t("div",
|
|
1910
|
-
|
|
1877
|
+
t("div", es, [
|
|
1878
|
+
ts,
|
|
1911
1879
|
t("address", null, [
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
k(
|
|
1880
|
+
as,
|
|
1881
|
+
ls,
|
|
1882
|
+
os,
|
|
1883
|
+
k(O, {
|
|
1916
1884
|
class: "footer__contact",
|
|
1917
1885
|
"link-type": "regular_light",
|
|
1918
1886
|
underline: "false"
|
|
1919
1887
|
}, {
|
|
1920
1888
|
default: w(() => [
|
|
1921
|
-
|
|
1889
|
+
ss
|
|
1922
1890
|
]),
|
|
1923
1891
|
_: 1
|
|
1924
1892
|
}),
|
|
1925
|
-
k(
|
|
1893
|
+
k(O, {
|
|
1926
1894
|
class: "footer__contact",
|
|
1927
1895
|
"link-type": "regular_light",
|
|
1928
1896
|
underline: "false"
|
|
1929
1897
|
}, {
|
|
1930
1898
|
default: w(() => [
|
|
1931
|
-
|
|
1899
|
+
is
|
|
1932
1900
|
]),
|
|
1933
1901
|
_: 1
|
|
1934
1902
|
})
|
|
1935
1903
|
])
|
|
1936
1904
|
])
|
|
1937
1905
|
]),
|
|
1938
|
-
t("div",
|
|
1939
|
-
t("p",
|
|
1940
|
-
t("div",
|
|
1906
|
+
t("div", rs, [
|
|
1907
|
+
t("p", ns, "© MiR " + n((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
1908
|
+
t("div", ds, [
|
|
1941
1909
|
t("button", {
|
|
1942
1910
|
class: "footer__language-switcher",
|
|
1943
1911
|
onClick: r[0] || (r[0] = (l) => a.$emit("changeRegionClicked"))
|
|
1944
|
-
},
|
|
1912
|
+
}, us),
|
|
1945
1913
|
p(a.$slots, "footer-privacy-link"),
|
|
1946
1914
|
p(a.$slots, "footer-cookie-link")
|
|
1947
1915
|
]),
|
|
1948
|
-
t("div",
|
|
1949
|
-
(o(!0), i(
|
|
1916
|
+
t("div", _s, [
|
|
1917
|
+
(o(!0), i(D, null, M(a.socialMedia, (l) => (o(), A(O, {
|
|
1950
1918
|
key: l.title,
|
|
1951
1919
|
underline: "false",
|
|
1952
1920
|
"link-type": "regular"
|
|
@@ -1961,7 +1929,7 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1961
1929
|
height: "14",
|
|
1962
1930
|
class: h(["footer__social--icon", [l.title ? "bg-" + l.title : ""]])
|
|
1963
1931
|
}, null, 2)
|
|
1964
|
-
], 8,
|
|
1932
|
+
], 8, ps)
|
|
1965
1933
|
]),
|
|
1966
1934
|
_: 2
|
|
1967
1935
|
}, 1024))), 128))
|
|
@@ -1970,19 +1938,19 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
1970
1938
|
])
|
|
1971
1939
|
]));
|
|
1972
1940
|
}
|
|
1973
|
-
}),
|
|
1941
|
+
}), ms = /* @__PURE__ */ v(hs, [["__scopeId", "data-v-cf5ea14f"]]), vs = { class: "header__wrapper" }, fs = { class: "nav-wrapper" }, gs = { class: "mir-link-logo" }, bs = { class: "main-nav-items" }, ys = {
|
|
1974
1942
|
id: "menu-dropdown",
|
|
1975
1943
|
ref: "dropdownDiv"
|
|
1976
|
-
},
|
|
1944
|
+
}, $s = {
|
|
1977
1945
|
key: 0,
|
|
1978
1946
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
1979
1947
|
alt: "dropdownarrow"
|
|
1980
|
-
},
|
|
1948
|
+
}, ks = {
|
|
1981
1949
|
key: 1,
|
|
1982
1950
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
1983
1951
|
alt: "dropdownarrow",
|
|
1984
1952
|
style: { transform: "rotate(180deg)" }
|
|
1985
|
-
},
|
|
1953
|
+
}, 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"], Cs = ["onClick"], Vs = ["src"], As = { class: "mobile-menu-content-wrapper" }, Ds = { class: "mobile-dropdown-content" }, Ms = /* @__PURE__ */ f({
|
|
1986
1954
|
__name: "header",
|
|
1987
1955
|
props: {
|
|
1988
1956
|
burgerState: {
|
|
@@ -2029,30 +1997,30 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2029
1997
|
}
|
|
2030
1998
|
return a({
|
|
2031
1999
|
defocusSearchButton: X
|
|
2032
|
-
}), (B, U) => (o(), i("div",
|
|
2000
|
+
}), (B, U) => (o(), i("div", vs, [
|
|
2033
2001
|
t("nav", null, [
|
|
2034
|
-
t("div",
|
|
2035
|
-
t("div",
|
|
2002
|
+
t("div", fs, [
|
|
2003
|
+
t("div", gs, [
|
|
2036
2004
|
p(B.$slots, "link-logo", {}, void 0, !0)
|
|
2037
2005
|
]),
|
|
2038
|
-
t("ul",
|
|
2006
|
+
t("ul", bs, [
|
|
2039
2007
|
p(B.$slots, "main-nav-items", {}, void 0, !0)
|
|
2040
2008
|
]),
|
|
2041
|
-
t("div",
|
|
2009
|
+
t("div", ys, [
|
|
2042
2010
|
t("button", {
|
|
2043
2011
|
class: "nav-dropdown-btn",
|
|
2044
2012
|
onClick: S
|
|
2045
2013
|
}, [
|
|
2046
2014
|
p(B.$slots, "dropdown-title", {}, void 0, !0),
|
|
2047
|
-
C(c) === !1 ? (o(), i("img",
|
|
2015
|
+
C(c) === !1 ? (o(), i("img", $s)) : (o(), i("img", ks))
|
|
2048
2016
|
]),
|
|
2049
|
-
Z(t("div",
|
|
2017
|
+
Z(t("div", ws, [
|
|
2050
2018
|
p(B.$slots, "dropdown-links", {}, void 0, !0)
|
|
2051
2019
|
], 512), [
|
|
2052
2020
|
[ee, C(c)]
|
|
2053
2021
|
])
|
|
2054
2022
|
], 512),
|
|
2055
|
-
t("div",
|
|
2023
|
+
t("div", Ss, [
|
|
2056
2024
|
t("button", {
|
|
2057
2025
|
ref_key: "navSearchButton",
|
|
2058
2026
|
ref: y,
|
|
@@ -2067,18 +2035,18 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2067
2035
|
alt: "search icon",
|
|
2068
2036
|
width: "20",
|
|
2069
2037
|
height: "20"
|
|
2070
|
-
}, null, 8,
|
|
2038
|
+
}, null, 8, Bs)
|
|
2071
2039
|
], 512)
|
|
2072
2040
|
])
|
|
2073
2041
|
]),
|
|
2074
2042
|
t("div", {
|
|
2075
2043
|
class: h(["mobile-nav-wrapper", C(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2076
2044
|
}, [
|
|
2077
|
-
t("div",
|
|
2078
|
-
t("div",
|
|
2045
|
+
t("div", Is, [
|
|
2046
|
+
t("div", qs, [
|
|
2079
2047
|
p(B.$slots, "link-logo", {}, void 0, !0)
|
|
2080
2048
|
]),
|
|
2081
|
-
t("div",
|
|
2049
|
+
t("div", Ls, [
|
|
2082
2050
|
t("button", {
|
|
2083
2051
|
ref_key: "mobileSearchButton",
|
|
2084
2052
|
ref: q,
|
|
@@ -2094,7 +2062,7 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2094
2062
|
alt: "search icon",
|
|
2095
2063
|
width: "20",
|
|
2096
2064
|
height: "20"
|
|
2097
|
-
}, null, 8,
|
|
2065
|
+
}, null, 8, Ts)
|
|
2098
2066
|
], 512)
|
|
2099
2067
|
]),
|
|
2100
2068
|
t("button", {
|
|
@@ -2107,14 +2075,14 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2107
2075
|
height: "20",
|
|
2108
2076
|
alt: "burger menu line icon",
|
|
2109
2077
|
src: C(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"
|
|
2110
|
-
}, null, 8,
|
|
2111
|
-
], 8,
|
|
2078
|
+
}, null, 8, Vs)
|
|
2079
|
+
], 8, Cs)
|
|
2112
2080
|
]),
|
|
2113
|
-
Z(t("div",
|
|
2081
|
+
Z(t("div", As, [
|
|
2114
2082
|
t("ul", null, [
|
|
2115
2083
|
p(B.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2116
2084
|
]),
|
|
2117
|
-
t("ul",
|
|
2085
|
+
t("ul", Ds, [
|
|
2118
2086
|
p(B.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2119
2087
|
p(B.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2120
2088
|
])
|
|
@@ -2125,7 +2093,7 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2125
2093
|
])
|
|
2126
2094
|
]));
|
|
2127
2095
|
}
|
|
2128
|
-
}),
|
|
2096
|
+
}), Os = /* @__PURE__ */ v(Ms, [["__scopeId", "data-v-e129834d"]]), Ps = { class: "language__wrapper" }, Fs = { class: "language__content" }, Es = { class: "language__headline" }, Ns = { class: "language__paragraph" }, Rs = { class: "language__links" }, Hs = /* @__PURE__ */ f({
|
|
2129
2097
|
__name: "language-switcher",
|
|
2130
2098
|
props: {
|
|
2131
2099
|
headline: {
|
|
@@ -2138,17 +2106,17 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2138
2106
|
}
|
|
2139
2107
|
},
|
|
2140
2108
|
setup(e) {
|
|
2141
|
-
return (a, r) => (o(), i("div",
|
|
2142
|
-
t("div",
|
|
2143
|
-
t("h2",
|
|
2144
|
-
t("p",
|
|
2145
|
-
t("div",
|
|
2109
|
+
return (a, r) => (o(), i("div", Ps, [
|
|
2110
|
+
t("div", Fs, [
|
|
2111
|
+
t("h2", Es, n(e.headline), 1),
|
|
2112
|
+
t("p", Ns, n(e.paragraph), 1),
|
|
2113
|
+
t("div", Rs, [
|
|
2146
2114
|
p(a.$slots, "language-links", {}, void 0, !0)
|
|
2147
2115
|
])
|
|
2148
2116
|
])
|
|
2149
2117
|
]));
|
|
2150
2118
|
}
|
|
2151
|
-
}),
|
|
2119
|
+
}), zs = /* @__PURE__ */ v(Hs, [["__scopeId", "data-v-200f183c"]]), Us = { class: "pagination__wrapper" }, Ks = { class: "pagination__content" }, js = /* @__PURE__ */ f({
|
|
2152
2120
|
__name: "pagination",
|
|
2153
2121
|
props: {
|
|
2154
2122
|
isPreviousDisabled: {
|
|
@@ -2162,8 +2130,8 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2162
2130
|
},
|
|
2163
2131
|
emits: ["previous", "next"],
|
|
2164
2132
|
setup(e) {
|
|
2165
|
-
return (a, r) => (o(), i("div",
|
|
2166
|
-
t("div",
|
|
2133
|
+
return (a, r) => (o(), i("div", Us, [
|
|
2134
|
+
t("div", Ks, [
|
|
2167
2135
|
k(J, {
|
|
2168
2136
|
disabled: e.isPreviousDisabled,
|
|
2169
2137
|
variant: "previous",
|
|
@@ -2180,15 +2148,67 @@ const fo = /* @__PURE__ */ v(uo, [["render", vo], ["__scopeId", "data-v-3abe0bb4
|
|
|
2180
2148
|
])
|
|
2181
2149
|
]));
|
|
2182
2150
|
}
|
|
2183
|
-
}),
|
|
2184
|
-
function
|
|
2185
|
-
return o(), i("div",
|
|
2151
|
+
}), Gs = /* @__PURE__ */ v(js, [["__scopeId", "data-v-f760f1c6"]]), Ws = {}, Ys = { class: "search__wrapper" };
|
|
2152
|
+
function Qs(e, a) {
|
|
2153
|
+
return o(), i("div", Ys, [
|
|
2186
2154
|
p(e.$slots, "default", { class: "search__content" })
|
|
2187
2155
|
]);
|
|
2188
2156
|
}
|
|
2189
|
-
const
|
|
2157
|
+
const Zs = /* @__PURE__ */ v(Ws, [["render", Qs], ["__scopeId", "data-v-623adb82"]]), Js = { class: "product-hero__wrapper" }, Xs = { class: "product-hero__content" }, xs = { class: "product-hero__headline" }, ei = { class: "product-hero__video" }, ti = /* @__PURE__ */ f({
|
|
2158
|
+
__name: "product-hero",
|
|
2159
|
+
props: {
|
|
2160
|
+
headline: {
|
|
2161
|
+
type: String,
|
|
2162
|
+
default: "",
|
|
2163
|
+
required: !0
|
|
2164
|
+
},
|
|
2165
|
+
videoSrc: {
|
|
2166
|
+
type: String,
|
|
2167
|
+
default: "",
|
|
2168
|
+
required: !0
|
|
2169
|
+
},
|
|
2170
|
+
ariaLabel: {
|
|
2171
|
+
type: String,
|
|
2172
|
+
default: "",
|
|
2173
|
+
required: !0
|
|
2174
|
+
},
|
|
2175
|
+
imgSrc: {
|
|
2176
|
+
type: String,
|
|
2177
|
+
default: "",
|
|
2178
|
+
required: !0
|
|
2179
|
+
}
|
|
2180
|
+
},
|
|
2181
|
+
setup(e) {
|
|
2182
|
+
return (a, r) => (o(), i("div", Js, [
|
|
2183
|
+
t("div", Xs, [
|
|
2184
|
+
t("div", xs, [
|
|
2185
|
+
t("h1", null, n(e.headline), 1)
|
|
2186
|
+
]),
|
|
2187
|
+
t("div", ei, [
|
|
2188
|
+
e.videoSrc !== "" ? (o(), A(G, {
|
|
2189
|
+
key: 0,
|
|
2190
|
+
play: "",
|
|
2191
|
+
"local-video": !0,
|
|
2192
|
+
src: e.videoSrc,
|
|
2193
|
+
"aria-label": e.ariaLabel,
|
|
2194
|
+
controls: !1,
|
|
2195
|
+
poster: e.imgSrc,
|
|
2196
|
+
autoplay: "",
|
|
2197
|
+
loop: "",
|
|
2198
|
+
muted: ""
|
|
2199
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (o(), A(C(V), { key: 1 }, {
|
|
2200
|
+
default: w(() => [
|
|
2201
|
+
p(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
2202
|
+
]),
|
|
2203
|
+
_: 3
|
|
2204
|
+
}))
|
|
2205
|
+
])
|
|
2206
|
+
])
|
|
2207
|
+
]));
|
|
2208
|
+
}
|
|
2209
|
+
}), ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-e394473d"]]), oi = {
|
|
2190
2210
|
install: (e) => {
|
|
2191
|
-
e.component("AtomButton", J), e.component("AtomCheckbox", Ae), e.component("AtomChip", Fe), e.component("AtomDropdown", je), e.component("AtomImage",
|
|
2211
|
+
e.component("AtomButton", J), e.component("AtomCheckbox", Ae), e.component("AtomChip", Fe), e.component("AtomDropdown", je), e.component("AtomImage", V), 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", Va), e.component("BlockFeatures", Na), 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", Dl), e.component("BlockPolicy", El), e.component("BlockProductHero", ai), e.component("BlockPromo", Yl), e.component("BlockQuote", ro), e.component("BlockRichText", po), e.component("BlockRichTextColumns", yo), e.component("BlockTimeline", Co), e.component("BlockCardDisplay", jl), e.component("BlockVimeo", Po), e.component("Organism404", zo), e.component("OrganismFilter", Yo), e.component("OrganismFooter", ms), e.component("OrganismHeader", Os), e.component("OrganismLanguageSwitcher", zs), e.component("OrganismPagination", Gs), e.component("OrganismSearch", Zs);
|
|
2192
2212
|
}
|
|
2193
2213
|
};
|
|
2194
2214
|
export {
|
|
@@ -2196,16 +2216,16 @@ export {
|
|
|
2196
2216
|
Ae as AtomCheckbox,
|
|
2197
2217
|
Fe as AtomChip,
|
|
2198
2218
|
je as AtomDropdown,
|
|
2199
|
-
|
|
2219
|
+
V as AtomImage,
|
|
2200
2220
|
Y as AtomLabel,
|
|
2201
|
-
|
|
2221
|
+
O as AtomLink,
|
|
2202
2222
|
lt as AtomRadioButton,
|
|
2203
2223
|
dt as AtomSelect,
|
|
2204
2224
|
bt as AtomSlider,
|
|
2205
2225
|
Et as AtomTextField,
|
|
2206
2226
|
qt as AtomTextarea,
|
|
2207
2227
|
G as AtomVideo,
|
|
2208
|
-
|
|
2228
|
+
jl as BlockCardDisplay,
|
|
2209
2229
|
Va as BlockFacts,
|
|
2210
2230
|
Na as BlockFeatures,
|
|
2211
2231
|
Wa as BlockFormScript,
|
|
@@ -2214,27 +2234,27 @@ export {
|
|
|
2214
2234
|
xa as BlockImage,
|
|
2215
2235
|
sl as BlockImageGallery,
|
|
2216
2236
|
Tl as BlockLogoWall,
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2237
|
+
Dl as BlockMicroStories,
|
|
2238
|
+
El as BlockPolicy,
|
|
2239
|
+
ai as BlockProductHero,
|
|
2240
|
+
Yl as BlockPromo,
|
|
2241
|
+
ro as BlockQuote,
|
|
2242
|
+
po as BlockRichText,
|
|
2243
|
+
yo as BlockRichTextColumns,
|
|
2244
|
+
Co as BlockTimeline,
|
|
2245
|
+
Po as BlockVimeo,
|
|
2226
2246
|
xt as MoleculeAddress,
|
|
2227
2247
|
oa as MoleculeBulletList,
|
|
2228
2248
|
da as MoleculeCard,
|
|
2229
2249
|
fa as MoleculeEventCard,
|
|
2230
2250
|
ue as MoleculeModal,
|
|
2231
2251
|
ka as MoleculeTextCard,
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2252
|
+
zo as Organism404,
|
|
2253
|
+
Yo as OrganismFilter,
|
|
2254
|
+
ms as OrganismFooter,
|
|
2255
|
+
Os as OrganismHeader,
|
|
2256
|
+
zs as OrganismLanguageSwitcher,
|
|
2257
|
+
Gs as OrganismPagination,
|
|
2258
|
+
Zs as OrganismSearch,
|
|
2259
|
+
oi as default
|
|
2240
2260
|
};
|