@mirweb/mir-web-components 0.15.109 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/blocks/form-script/form-script.vue.d.ts +14 -0
- package/dist/components/blocks/form-script/form-script.vue.d.ts.map +1 -0
- package/dist/components/main.d.ts +2 -1
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +537 -512
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as v, openBlock as a, createElementBlock as s, normalizeClass as u, toDisplayString as
|
|
1
|
+
import { defineComponent as v, openBlock as a, createElementBlock as s, normalizeClass as u, toDisplayString as o, createElementVNode as t, renderSlot as d, pushScopeId as O, popScopeId as z, computed as E, createTextVNode as j, ref as w, withDirectives as Y, Fragment as I, renderList as T, vShow as Z, normalizeProps as A, guardReactiveProps as M, mergeProps as ee, createVNode as p, Transition as ge, withCtx as $, withModifiers as re, createBlock as D, createCommentVNode as m, watchEffect as oe, withKeys as ye, useSlots as be, normalizeStyle as te, isRef as ie, unref as B, onMounted as ne, watch as se, onUnmounted as pe } from "vue";
|
|
2
2
|
const $e = ["aria-label"], ke = /* @__PURE__ */ v({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -24,16 +24,16 @@ const $e = ["aria-label"], ke = /* @__PURE__ */ v({
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
setup(e) {
|
|
27
|
-
return (
|
|
27
|
+
return (l, r) => (a(), s("button", {
|
|
28
28
|
class: u(["button", "button--" + e.variant]),
|
|
29
29
|
"aria-label": e.ariaLabel
|
|
30
|
-
},
|
|
30
|
+
}, o(e.variant == "close" ? "" : e.buttonText), 11, $e));
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
|
-
const h = (e,
|
|
33
|
+
const h = (e, l) => {
|
|
34
34
|
const r = e.__vccOpts || e;
|
|
35
|
-
for (const [
|
|
36
|
-
r[
|
|
35
|
+
for (const [i, n] of l)
|
|
36
|
+
r[i] = n;
|
|
37
37
|
return r;
|
|
38
38
|
}, J = /* @__PURE__ */ h(ke, [["__scopeId", "data-v-c2f14f04"]]), we = (e) => (O("data-v-c5f3542e"), e = e(), z(), e), xe = ["name", "value", "disabled", "required", "id"], Se = ["for"], qe = /* @__PURE__ */ we(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Be = /* @__PURE__ */ v({
|
|
39
39
|
__name: "checkbox",
|
|
@@ -61,12 +61,12 @@ const h = (e, i) => {
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
emits: ["input"],
|
|
64
|
-
setup(e, { emit:
|
|
65
|
-
const r = (
|
|
66
|
-
const
|
|
67
|
-
|
|
64
|
+
setup(e, { emit: l }) {
|
|
65
|
+
const r = (i) => {
|
|
66
|
+
const n = i.target;
|
|
67
|
+
l("input", n.checked);
|
|
68
68
|
};
|
|
69
|
-
return (
|
|
69
|
+
return (i, n) => (a(), s("div", {
|
|
70
70
|
class: u(["checkbox__wrapper", e.disabled ? "disabled" : ""])
|
|
71
71
|
}, [
|
|
72
72
|
t("input", {
|
|
@@ -84,7 +84,7 @@ const h = (e, i) => {
|
|
|
84
84
|
class: u(["checkbox__label", e.required ? "required" : ""])
|
|
85
85
|
}, [
|
|
86
86
|
qe,
|
|
87
|
-
|
|
87
|
+
d(i.$slots, "default", {}, void 0, !0)
|
|
88
88
|
], 10, Se)
|
|
89
89
|
], 2));
|
|
90
90
|
}
|
|
@@ -102,23 +102,23 @@ const Ie = /* @__PURE__ */ h(Be, [["__scopeId", "data-v-c5f3542e"]]), Te = (e) =
|
|
|
102
102
|
}
|
|
103
103
|
},
|
|
104
104
|
emits: ["remove-chip"],
|
|
105
|
-
setup(e, { emit:
|
|
106
|
-
const r = e,
|
|
107
|
-
return (
|
|
105
|
+
setup(e, { emit: l }) {
|
|
106
|
+
const r = e, i = E(() => `Chip: ${r.text}`);
|
|
107
|
+
return (n, _) => (a(), s("div", {
|
|
108
108
|
class: "chip__wrapper",
|
|
109
|
-
onClick: _[0] || (_[0] = (b) =>
|
|
109
|
+
onClick: _[0] || (_[0] = (b) => n.$emit("remove-chip"))
|
|
110
110
|
}, [
|
|
111
111
|
t("span", {
|
|
112
112
|
class: "chip",
|
|
113
|
-
"aria-label":
|
|
113
|
+
"aria-label": i.value
|
|
114
114
|
}, [
|
|
115
|
-
j(
|
|
115
|
+
j(o(e.text) + " ", 1),
|
|
116
116
|
Ce
|
|
117
117
|
], 8, Le)
|
|
118
118
|
]));
|
|
119
119
|
}
|
|
120
120
|
});
|
|
121
|
-
const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["value"], Me = ["id"], Oe = { class: "listbox__dropdown" }, ze = ["id", "aria-labelledby", "aria-disabled"],
|
|
121
|
+
const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["value"], Me = ["id"], Oe = { class: "listbox__dropdown" }, ze = ["id", "aria-labelledby", "aria-disabled"], Fe = ["aria-labelledby", "aria-activedescendant"], Pe = ["aria-selected", "data-value"], Ee = /* @__PURE__ */ v({
|
|
122
122
|
__name: "dropdown",
|
|
123
123
|
props: {
|
|
124
124
|
modelValue: {
|
|
@@ -134,7 +134,7 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
134
134
|
required: !0,
|
|
135
135
|
validator(e) {
|
|
136
136
|
return e.every(
|
|
137
|
-
(
|
|
137
|
+
(l) => typeof l.value < "u" && typeof l.label < "u"
|
|
138
138
|
);
|
|
139
139
|
}
|
|
140
140
|
},
|
|
@@ -167,93 +167,93 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
167
167
|
}
|
|
168
168
|
},
|
|
169
169
|
emits: ["update:modelValue"],
|
|
170
|
-
setup(e, { emit:
|
|
171
|
-
const r = e,
|
|
172
|
-
const
|
|
173
|
-
(
|
|
170
|
+
setup(e, { emit: l }) {
|
|
171
|
+
const r = e, i = w(null), n = w(null), _ = w([]), b = w(0), C = w(""), S = w(!0), g = w(0), q = E(() => {
|
|
172
|
+
const c = r.options.find(
|
|
173
|
+
(f) => f.value === r.modelValue
|
|
174
174
|
);
|
|
175
|
-
return
|
|
175
|
+
return c && c.label;
|
|
176
176
|
}), X = {
|
|
177
|
-
beforeMount(
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
}, document.body.addEventListener("click",
|
|
177
|
+
beforeMount(c, f) {
|
|
178
|
+
c.clickOutsideEvent = function(y) {
|
|
179
|
+
c === y.target || c.contains(y.target) || f.value(y);
|
|
180
|
+
}, document.body.addEventListener("click", c.clickOutsideEvent);
|
|
181
181
|
},
|
|
182
|
-
unmounted(
|
|
183
|
-
document.body.removeEventListener("click",
|
|
182
|
+
unmounted(c) {
|
|
183
|
+
document.body.removeEventListener("click", c.clickOutsideEvent);
|
|
184
184
|
}
|
|
185
185
|
};
|
|
186
|
-
function k(
|
|
187
|
-
|
|
186
|
+
function k(c) {
|
|
187
|
+
l("update:modelValue", c);
|
|
188
188
|
}
|
|
189
|
-
function
|
|
189
|
+
function N(c) {
|
|
190
190
|
var y;
|
|
191
|
-
const
|
|
192
|
-
|
|
191
|
+
const f = c.target;
|
|
192
|
+
f.getAttribute("role") === "option" && (U(f), Q(), (y = i.value) == null || y.focus());
|
|
193
193
|
}
|
|
194
|
-
function W(
|
|
194
|
+
function W(c) {
|
|
195
195
|
var y;
|
|
196
|
-
const
|
|
197
|
-
switch (
|
|
196
|
+
const f = c.key;
|
|
197
|
+
switch (f) {
|
|
198
198
|
case "ArrowUp":
|
|
199
199
|
case "ArrowDown": {
|
|
200
|
-
|
|
200
|
+
c.preventDefault();
|
|
201
201
|
const x = r.options.findIndex(
|
|
202
202
|
(R) => R.value === r.modelValue
|
|
203
203
|
);
|
|
204
|
-
let
|
|
205
|
-
|
|
204
|
+
let F = x ? _.value[x] : _.value[0];
|
|
205
|
+
f === "ArrowUp" ? x - 1 >= 0 && (F = _.value[x - 1]) : x + 1 <= r.options.length && (F = _.value[x + 1]), F && U(F);
|
|
206
206
|
break;
|
|
207
207
|
}
|
|
208
208
|
case "Home":
|
|
209
209
|
case "PageUp":
|
|
210
|
-
|
|
210
|
+
c.preventDefault(), he();
|
|
211
211
|
break;
|
|
212
212
|
case "End":
|
|
213
213
|
case "PageDown":
|
|
214
|
-
|
|
214
|
+
c.preventDefault(), ve();
|
|
215
215
|
break;
|
|
216
216
|
case "Enter":
|
|
217
217
|
case "Escape":
|
|
218
|
-
|
|
218
|
+
c.preventDefault(), Q(), (y = i.value) == null || y.focus();
|
|
219
219
|
break;
|
|
220
220
|
default: {
|
|
221
|
-
const x = _e(
|
|
221
|
+
const x = _e(f);
|
|
222
222
|
x && U(x);
|
|
223
223
|
break;
|
|
224
224
|
}
|
|
225
225
|
}
|
|
226
226
|
}
|
|
227
|
-
function
|
|
227
|
+
function P(c) {
|
|
228
228
|
if (!r.disabled)
|
|
229
|
-
switch (
|
|
229
|
+
switch (c.key) {
|
|
230
230
|
case "ArrowUp":
|
|
231
231
|
case "ArrowDown":
|
|
232
|
-
|
|
232
|
+
c.preventDefault(), le(), W(c);
|
|
233
233
|
break;
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
|
-
function ce(
|
|
237
|
-
|
|
236
|
+
function ce(c) {
|
|
237
|
+
c && c.removeAttribute("aria-selected");
|
|
238
238
|
}
|
|
239
239
|
function ue() {
|
|
240
240
|
b && (clearTimeout(b.value), b.value = 0), b.value = setTimeout(() => {
|
|
241
241
|
C.value = "", b.value = 0;
|
|
242
242
|
}, 500);
|
|
243
243
|
}
|
|
244
|
-
function _e(
|
|
245
|
-
let
|
|
246
|
-
(C.value === "" ||
|
|
244
|
+
function _e(c) {
|
|
245
|
+
let f = "";
|
|
246
|
+
(C.value === "" || f !== c) && (g.value = r.options.findIndex(
|
|
247
247
|
(x) => x.value === r.modelValue
|
|
248
|
-
)), C.value =
|
|
248
|
+
)), C.value = f === c ? c : C.value + c, f = c, ue();
|
|
249
249
|
let y = ae(
|
|
250
|
-
|
|
250
|
+
g.value + 1,
|
|
251
251
|
r.options.length
|
|
252
252
|
);
|
|
253
|
-
return !y && C.value.length === 1 && (y = ae(0,
|
|
253
|
+
return !y && C.value.length === 1 && (y = ae(0, g.value)), g.value = (g.value + 1) % r.options.length, y;
|
|
254
254
|
}
|
|
255
|
-
function ae(
|
|
256
|
-
for (let y =
|
|
255
|
+
function ae(c, f) {
|
|
256
|
+
for (let y = c; y < f; y++)
|
|
257
257
|
if (r.options[y].label && r.options[y].label.toUpperCase().indexOf(C.value.toUpperCase()) === 0)
|
|
258
258
|
return _.value[y];
|
|
259
259
|
return null;
|
|
@@ -261,40 +261,40 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
261
261
|
function he() {
|
|
262
262
|
U(_.value[0]);
|
|
263
263
|
}
|
|
264
|
-
function U(
|
|
264
|
+
function U(c) {
|
|
265
265
|
var y, x;
|
|
266
|
-
const
|
|
266
|
+
const f = c.getAttribute("data-value");
|
|
267
267
|
if (r.modelValue) {
|
|
268
|
-
const
|
|
269
|
-
(
|
|
270
|
-
), R = _.value[
|
|
268
|
+
const F = r.options.findIndex(
|
|
269
|
+
(fe) => fe.value === r.modelValue
|
|
270
|
+
), R = _.value[F];
|
|
271
271
|
ce(R);
|
|
272
272
|
}
|
|
273
|
-
if (
|
|
273
|
+
if (c.setAttribute("aria-selected", "true"), (y = n.value) == null || y.setAttribute(
|
|
274
274
|
"aria-activedescendant",
|
|
275
|
-
|
|
276
|
-
), k(
|
|
277
|
-
const
|
|
278
|
-
R >
|
|
275
|
+
f || ""
|
|
276
|
+
), k(f || ""), n.value && n.value.scrollHeight > n.value.clientHeight) {
|
|
277
|
+
const F = n.value.clientHeight + n.value.scrollTop, R = c.offsetTop + c.offsetHeight;
|
|
278
|
+
R > F ? n.value.scrollTop = R - ((x = n.value) == null ? void 0 : x.clientHeight) : c.offsetTop < n.value.scrollTop && (n.value.scrollTop = c.offsetTop);
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
281
|
function ve() {
|
|
282
|
-
var
|
|
283
|
-
const
|
|
284
|
-
U(
|
|
282
|
+
var f;
|
|
283
|
+
const c = (f = _.value) == null ? void 0 : f[r.options.length - 1];
|
|
284
|
+
U(c);
|
|
285
285
|
}
|
|
286
286
|
function Q() {
|
|
287
|
-
var
|
|
288
|
-
S.value = !0, (
|
|
287
|
+
var c;
|
|
288
|
+
S.value = !0, (c = i.value) == null || c.removeAttribute("aria-expanded");
|
|
289
289
|
}
|
|
290
290
|
function le() {
|
|
291
|
-
var
|
|
292
|
-
S.value = !1, (
|
|
291
|
+
var c, f;
|
|
292
|
+
S.value = !1, (c = i.value) == null || c.setAttribute("aria-expanded", "true"), (f = n.value) == null || f.focus();
|
|
293
293
|
}
|
|
294
294
|
function me() {
|
|
295
295
|
r.disabled || (S.value ? le() : Q());
|
|
296
296
|
}
|
|
297
|
-
return (
|
|
297
|
+
return (c, f) => (a(), s("div", {
|
|
298
298
|
class: "listbox__wrapper",
|
|
299
299
|
value: e.modelValue,
|
|
300
300
|
ref: "listbox"
|
|
@@ -306,7 +306,7 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
306
306
|
"is-disabled": e.disabled,
|
|
307
307
|
"is-required": e.required
|
|
308
308
|
}, "listbox__label"])
|
|
309
|
-
},
|
|
309
|
+
}, o(e.label), 11, Me),
|
|
310
310
|
Y((a(), s("div", Oe, [
|
|
311
311
|
t("button", {
|
|
312
312
|
id: `${e.name}-button-label`,
|
|
@@ -319,10 +319,10 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
319
319
|
e.variant === "dark" ? "dropdown-dark dropdown-dark-bg-dark" : "dropdown-dark-bg-primary"
|
|
320
320
|
]),
|
|
321
321
|
onClick: me,
|
|
322
|
-
onKeydown:
|
|
322
|
+
onKeydown: P,
|
|
323
323
|
ref_key: "listboxButton",
|
|
324
|
-
ref:
|
|
325
|
-
},
|
|
324
|
+
ref: i
|
|
325
|
+
}, o(e.modelValue ? q.value : e.placeholder), 43, ze),
|
|
326
326
|
Y(t("ul", {
|
|
327
327
|
"aria-labelledby": `${e.name}-label`,
|
|
328
328
|
"aria-activedescendant": e.modelValue,
|
|
@@ -330,9 +330,9 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
330
330
|
role: "listbox",
|
|
331
331
|
class: "listbox__list",
|
|
332
332
|
onKeydown: W,
|
|
333
|
-
onClick:
|
|
333
|
+
onClick: N,
|
|
334
334
|
ref_key: "listboxNode",
|
|
335
|
-
ref:
|
|
335
|
+
ref: n
|
|
336
336
|
}, [
|
|
337
337
|
(a(!0), s(I, null, T(e.options, (y, x) => (a(), s("li", {
|
|
338
338
|
key: `${e.name}-option-${x}`,
|
|
@@ -343,8 +343,8 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
343
343
|
ref_for: !0,
|
|
344
344
|
ref_key: "listboxOptions",
|
|
345
345
|
ref: _
|
|
346
|
-
},
|
|
347
|
-
], 40,
|
|
346
|
+
}, o(y.label), 9, Pe))), 128))
|
|
347
|
+
], 40, Fe), [
|
|
348
348
|
[Z, !S.value]
|
|
349
349
|
])
|
|
350
350
|
])), [
|
|
@@ -353,7 +353,7 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
353
353
|
], 8, De));
|
|
354
354
|
}
|
|
355
355
|
});
|
|
356
|
-
const
|
|
356
|
+
const He = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-f69f328c"]]), Ne = { class: "image__wrapper" }, Re = /* @__PURE__ */ v({
|
|
357
357
|
__name: "image",
|
|
358
358
|
props: {
|
|
359
359
|
src: {
|
|
@@ -391,8 +391,8 @@ const Ne = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-f69f328c"]]), He = { cla
|
|
|
391
391
|
}
|
|
392
392
|
},
|
|
393
393
|
setup(e) {
|
|
394
|
-
return (
|
|
395
|
-
|
|
394
|
+
return (l, r) => (a(), s("div", Ne, [
|
|
395
|
+
d(l.$slots, "default", A(M(l.$attrs)))
|
|
396
396
|
]));
|
|
397
397
|
}
|
|
398
398
|
});
|
|
@@ -410,13 +410,13 @@ const L = /* @__PURE__ */ h(Re, [["__scopeId", "data-v-513b5384"]]), je = { clas
|
|
|
410
410
|
}
|
|
411
411
|
},
|
|
412
412
|
setup(e) {
|
|
413
|
-
const
|
|
414
|
-
return (
|
|
413
|
+
const l = e, r = E(() => `Label: ${l.text}`);
|
|
414
|
+
return (i, n) => (a(), s("div", je, [
|
|
415
415
|
t("span", {
|
|
416
416
|
"aria-label": r.value,
|
|
417
417
|
"label-dark": e.labelDark,
|
|
418
418
|
class: u(e.labelDark ? "label--dark" : "label--light")
|
|
419
|
-
},
|
|
419
|
+
}, o(e.text), 11, Ke)
|
|
420
420
|
]));
|
|
421
421
|
}
|
|
422
422
|
});
|
|
@@ -455,11 +455,11 @@ const G = /* @__PURE__ */ h(Ue, [["__scopeId", "data-v-e7a44d10"]]), Ge = { clas
|
|
|
455
455
|
}
|
|
456
456
|
},
|
|
457
457
|
setup(e) {
|
|
458
|
-
const
|
|
459
|
-
const { ...
|
|
460
|
-
return
|
|
458
|
+
const l = e, r = E(() => {
|
|
459
|
+
const { ...i } = l;
|
|
460
|
+
return i;
|
|
461
461
|
});
|
|
462
|
-
return (
|
|
462
|
+
return (i, n) => (a(), s("div", Ge, [
|
|
463
463
|
t("div", ee(r.value, {
|
|
464
464
|
class: ["mir-link", [
|
|
465
465
|
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" : "",
|
|
@@ -468,7 +468,7 @@ const G = /* @__PURE__ */ h(Ue, [["__scopeId", "data-v-e7a44d10"]]), Ge = { clas
|
|
|
468
468
|
e.arrow ? "link-arrow" : ""
|
|
469
469
|
]]
|
|
470
470
|
}), [
|
|
471
|
-
|
|
471
|
+
d(i.$slots, "default")
|
|
472
472
|
], 16)
|
|
473
473
|
]));
|
|
474
474
|
}
|
|
@@ -500,12 +500,12 @@ const We = (e) => (O("data-v-69095414"), e = e(), z(), e), Qe = ["name", "value"
|
|
|
500
500
|
}
|
|
501
501
|
},
|
|
502
502
|
emits: ["input"],
|
|
503
|
-
setup(e, { emit:
|
|
504
|
-
const r = (
|
|
505
|
-
const
|
|
506
|
-
|
|
503
|
+
setup(e, { emit: l }) {
|
|
504
|
+
const r = (i) => {
|
|
505
|
+
const n = i.target;
|
|
506
|
+
l("input", n.checked);
|
|
507
507
|
};
|
|
508
|
-
return (
|
|
508
|
+
return (i, n) => (a(), s("div", {
|
|
509
509
|
class: u(["radio__wrapper", e.disabled ? "disabled" : ""])
|
|
510
510
|
}, [
|
|
511
511
|
t("input", {
|
|
@@ -524,7 +524,7 @@ const We = (e) => (O("data-v-69095414"), e = e(), z(), e), Qe = ["name", "value"
|
|
|
524
524
|
class: u(["radio__label", e.required ? "required" : ""])
|
|
525
525
|
}, [
|
|
526
526
|
Je,
|
|
527
|
-
|
|
527
|
+
d(i.$slots, "default", {}, void 0, !0)
|
|
528
528
|
], 10, Ye)
|
|
529
529
|
], 2));
|
|
530
530
|
}
|
|
@@ -545,7 +545,7 @@ const Ze = /* @__PURE__ */ h(Xe, [["__scopeId", "data-v-69095414"]]), et = { cla
|
|
|
545
545
|
required: !0,
|
|
546
546
|
validator(e) {
|
|
547
547
|
return e.every(
|
|
548
|
-
(
|
|
548
|
+
(l) => typeof l.value < "u" && typeof l.text < "u"
|
|
549
549
|
);
|
|
550
550
|
}
|
|
551
551
|
},
|
|
@@ -570,55 +570,55 @@ const Ze = /* @__PURE__ */ h(Xe, [["__scopeId", "data-v-69095414"]]), et = { cla
|
|
|
570
570
|
},
|
|
571
571
|
emits: ["update:modelValue"],
|
|
572
572
|
setup(e) {
|
|
573
|
-
return (
|
|
573
|
+
return (l, r) => (a(), s("div", et, [
|
|
574
574
|
t("label", {
|
|
575
575
|
for: e.id,
|
|
576
576
|
class: u([e.required ? "required" : "", e.disabled ? "disabled" : ""])
|
|
577
|
-
},
|
|
577
|
+
}, o(e.label), 11, tt),
|
|
578
578
|
t("select", {
|
|
579
579
|
class: u(e.disabled ? "disabled" : ""),
|
|
580
580
|
disabled: e.disabled,
|
|
581
581
|
id: e.id,
|
|
582
582
|
name: e.name,
|
|
583
583
|
value: e.modelValue,
|
|
584
|
-
onChange: r[0] || (r[0] = (
|
|
585
|
-
|
|
584
|
+
onChange: r[0] || (r[0] = (i) => {
|
|
585
|
+
l.$emit("update:modelValue", i.target.value), i.target.blur();
|
|
586
586
|
})
|
|
587
587
|
}, [
|
|
588
|
-
(a(!0), s(I, null, T(e.options, (
|
|
589
|
-
key:
|
|
590
|
-
value:
|
|
591
|
-
},
|
|
588
|
+
(a(!0), s(I, null, T(e.options, (i) => (a(), s("option", {
|
|
589
|
+
key: i.value,
|
|
590
|
+
value: i.value
|
|
591
|
+
}, o(i.text), 9, lt))), 128))
|
|
592
592
|
], 42, at)
|
|
593
593
|
]));
|
|
594
594
|
}
|
|
595
595
|
});
|
|
596
|
-
const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-500637d5"]]), rt = { class: "modal__wrapper" },
|
|
596
|
+
const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-500637d5"]]), rt = { class: "modal__wrapper" }, ot = /* @__PURE__ */ v({
|
|
597
597
|
__name: "modal",
|
|
598
598
|
props: {
|
|
599
599
|
show: { type: Boolean, default: !1 },
|
|
600
600
|
searchBar: { type: Boolean, default: !1 }
|
|
601
601
|
},
|
|
602
602
|
emits: ["update:show"],
|
|
603
|
-
setup(e, { emit:
|
|
603
|
+
setup(e, { emit: l }) {
|
|
604
604
|
const r = e;
|
|
605
605
|
E({
|
|
606
606
|
get: () => r.show,
|
|
607
|
-
set: (
|
|
607
|
+
set: (n) => l("update:show", n)
|
|
608
608
|
});
|
|
609
|
-
const
|
|
610
|
-
|
|
609
|
+
const i = () => {
|
|
610
|
+
l("update:show", !r.show);
|
|
611
611
|
};
|
|
612
|
-
return (
|
|
613
|
-
p(
|
|
612
|
+
return (n, _) => (a(), s("div", rt, [
|
|
613
|
+
p(ge, {
|
|
614
614
|
duration: 300,
|
|
615
615
|
name: "nested"
|
|
616
616
|
}, {
|
|
617
617
|
default: $(() => [
|
|
618
|
-
|
|
618
|
+
n.show ? (a(), s("div", {
|
|
619
619
|
key: 0,
|
|
620
|
-
class: u(["overlay",
|
|
621
|
-
onClick:
|
|
620
|
+
class: u(["overlay", n.searchBar ? "overlay-search" : "overlay-default"]),
|
|
621
|
+
onClick: i,
|
|
622
622
|
ariaLabel: "modal",
|
|
623
623
|
role: "dialog"
|
|
624
624
|
}, [
|
|
@@ -626,17 +626,17 @@ const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-500637d5"]]), rt = { cla
|
|
|
626
626
|
id: "modal",
|
|
627
627
|
onClick: _[0] || (_[0] = re(() => {
|
|
628
628
|
}, ["stop"])),
|
|
629
|
-
class: u([
|
|
629
|
+
class: u([n.searchBar ? "search" : ""])
|
|
630
630
|
}, [
|
|
631
631
|
t("div", null, [
|
|
632
|
-
|
|
632
|
+
n.searchBar ? m("", !0) : (a(), D(J, {
|
|
633
633
|
key: 0,
|
|
634
634
|
ariaLabel: "close",
|
|
635
635
|
variant: "close",
|
|
636
|
-
onClick:
|
|
636
|
+
onClick: i
|
|
637
637
|
}))
|
|
638
638
|
]),
|
|
639
|
-
|
|
639
|
+
d(n.$slots, "default", {}, void 0, !0)
|
|
640
640
|
], 2)
|
|
641
641
|
], 2)) : m("", !0)
|
|
642
642
|
]),
|
|
@@ -645,7 +645,7 @@ const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-500637d5"]]), rt = { cla
|
|
|
645
645
|
]));
|
|
646
646
|
}
|
|
647
647
|
});
|
|
648
|
-
const de = /* @__PURE__ */ h(
|
|
648
|
+
const de = /* @__PURE__ */ h(ot, [["__scopeId", "data-v-e18c70fd"]]), nt = { class: "slider__wrapper" }, dt = { class: "slider__label" }, ct = ["for"], ut = ["aria-label"], _t = { class: "slider__content" }, ht = ["id", "name", "value", "min", "step", "max"], vt = /* @__PURE__ */ v({
|
|
649
649
|
__name: "slider",
|
|
650
650
|
props: {
|
|
651
651
|
label: {
|
|
@@ -697,31 +697,31 @@ const de = /* @__PURE__ */ h(nt, [["__scopeId", "data-v-e18c70fd"]]), ot = { cla
|
|
|
697
697
|
}
|
|
698
698
|
},
|
|
699
699
|
emits: ["update:modelValue"],
|
|
700
|
-
setup(e, { emit:
|
|
701
|
-
const r = e,
|
|
702
|
-
var
|
|
703
|
-
(
|
|
700
|
+
setup(e, { emit: l }) {
|
|
701
|
+
const r = e, i = w(r.modelValue), n = w(), _ = w(!1), b = (S, g, q) => (S - g) / (q - g) * 100, C = (S) => {
|
|
702
|
+
var g;
|
|
703
|
+
(g = n.value) == null || g.style.setProperty("--ProgressPercent", `${S}%`);
|
|
704
704
|
};
|
|
705
|
-
return
|
|
706
|
-
if (
|
|
707
|
-
|
|
708
|
-
const S = b(
|
|
709
|
-
let
|
|
710
|
-
C(S +
|
|
705
|
+
return oe(() => {
|
|
706
|
+
if (n.value) {
|
|
707
|
+
l("update:modelValue", i.value);
|
|
708
|
+
const S = b(i.value, r.min, r.max);
|
|
709
|
+
let g = (50 - S) / 100;
|
|
710
|
+
C(S + g);
|
|
711
711
|
}
|
|
712
|
-
}), (S,
|
|
713
|
-
t("div",
|
|
712
|
+
}), (S, g) => (a(), s("div", null, [
|
|
713
|
+
t("div", nt, [
|
|
714
714
|
t("div", dt, [
|
|
715
715
|
t("label", {
|
|
716
716
|
for: e.id,
|
|
717
717
|
class: u([e.variant, ""])
|
|
718
|
-
},
|
|
718
|
+
}, o(e.label), 11, ct),
|
|
719
719
|
e.information ? (a(), s("i", {
|
|
720
720
|
key: 0,
|
|
721
721
|
role: "button",
|
|
722
722
|
class: u([e.variant, "slider__information"]),
|
|
723
|
-
onClick:
|
|
724
|
-
onKeyup:
|
|
723
|
+
onClick: g[0] || (g[0] = (q) => _.value = !_.value),
|
|
724
|
+
onKeyup: g[1] || (g[1] = ye((q) => _.value = !_.value, ["enter"])),
|
|
725
725
|
"aria-label": e.informationLabel,
|
|
726
726
|
tabindex: "0",
|
|
727
727
|
"aria-haspopup": "dialog"
|
|
@@ -730,7 +730,7 @@ const de = /* @__PURE__ */ h(nt, [["__scopeId", "data-v-e18c70fd"]]), ot = { cla
|
|
|
730
730
|
t("div", _t, [
|
|
731
731
|
t("span", {
|
|
732
732
|
class: u([e.variant, "slider__minmax"])
|
|
733
|
-
},
|
|
733
|
+
}, o(e.min), 3),
|
|
734
734
|
t("input", {
|
|
735
735
|
type: "range",
|
|
736
736
|
id: e.id,
|
|
@@ -741,31 +741,31 @@ const de = /* @__PURE__ */ h(nt, [["__scopeId", "data-v-e18c70fd"]]), ot = { cla
|
|
|
741
741
|
max: e.max,
|
|
742
742
|
class: u(e.variant),
|
|
743
743
|
ref_key: "slider",
|
|
744
|
-
ref:
|
|
745
|
-
onInput:
|
|
744
|
+
ref: n,
|
|
745
|
+
onInput: g[2] || (g[2] = ({ target: q }) => i.value = parseFloat(q.value))
|
|
746
746
|
}, null, 42, ht),
|
|
747
747
|
t("span", {
|
|
748
748
|
class: u([e.variant, "slider__minmax"])
|
|
749
|
-
},
|
|
749
|
+
}, o(e.max), 3)
|
|
750
750
|
]),
|
|
751
751
|
t("span", {
|
|
752
752
|
class: u([e.variant, "slider__value"])
|
|
753
|
-
},
|
|
753
|
+
}, o(e.modelValue), 3)
|
|
754
754
|
]),
|
|
755
755
|
e.information ? (a(), D(de, {
|
|
756
756
|
key: 0,
|
|
757
757
|
show: _.value,
|
|
758
|
-
"onUpdate:show":
|
|
758
|
+
"onUpdate:show": g[3] || (g[3] = (q) => _.value = q)
|
|
759
759
|
}, {
|
|
760
760
|
default: $(() => [
|
|
761
|
-
j(
|
|
761
|
+
j(o(e.information), 1)
|
|
762
762
|
]),
|
|
763
763
|
_: 1
|
|
764
764
|
}, 8, ["show"])) : m("", !0)
|
|
765
765
|
]));
|
|
766
766
|
}
|
|
767
767
|
});
|
|
768
|
-
const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-6dbb2648"]]),
|
|
768
|
+
const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-6dbb2648"]]), ft = { id: "textarea-wrapper" }, gt = ["for"], yt = ["id"], bt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], pt = { class: "textarea-info" }, $t = { key: 0 }, kt = /* @__PURE__ */ v({
|
|
769
769
|
__name: "textarea",
|
|
770
770
|
props: {
|
|
771
771
|
id: {
|
|
@@ -805,11 +805,11 @@ const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-6dbb2648"]]), gt = { id:
|
|
|
805
805
|
},
|
|
806
806
|
emits: ["update:modelValue"],
|
|
807
807
|
setup(e) {
|
|
808
|
-
return (
|
|
808
|
+
return (l, r) => (a(), s("div", ft, [
|
|
809
809
|
t("label", {
|
|
810
810
|
for: e.id,
|
|
811
811
|
class: u({ required: e.required })
|
|
812
|
-
},
|
|
812
|
+
}, o(e.labelText) + o(e.required ? " *" : ""), 11, gt),
|
|
813
813
|
t("div", {
|
|
814
814
|
id: e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "textarea-wrapper__inner" : ""
|
|
815
815
|
}, [
|
|
@@ -823,7 +823,7 @@ const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-6dbb2648"]]), gt = { id:
|
|
|
823
823
|
disabled: e.disabled,
|
|
824
824
|
maxlength: e.maxLength,
|
|
825
825
|
value: e.modelValue,
|
|
826
|
-
onInput: r[0] || (r[0] = (
|
|
826
|
+
onInput: r[0] || (r[0] = (i) => l.$emit("update:modelValue", i.target.value)),
|
|
827
827
|
class: u(
|
|
828
828
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit" : "border"
|
|
829
829
|
)
|
|
@@ -837,7 +837,7 @@ const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-6dbb2648"]]), gt = { id:
|
|
|
837
837
|
class: u(
|
|
838
838
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit-meter" : ""
|
|
839
839
|
)
|
|
840
|
-
},
|
|
840
|
+
}, o(e.maxLength !== void 0 && e.modelValue !== void 0 && e.maxLength - e.modelValue.length >= 0 ? e.modelValue.length : 0) + " / " + o(e.maxLength), 3)
|
|
841
841
|
])
|
|
842
842
|
]));
|
|
843
843
|
}
|
|
@@ -929,12 +929,12 @@ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
929
929
|
},
|
|
930
930
|
emits: ["update:modelValue"],
|
|
931
931
|
setup(e) {
|
|
932
|
-
const
|
|
933
|
-
() =>
|
|
934
|
-
),
|
|
935
|
-
() =>
|
|
932
|
+
const l = w(!0), r = E(
|
|
933
|
+
() => l.value ? "showPassword" : "hidePassword"
|
|
934
|
+
), i = E(
|
|
935
|
+
() => l.value ? "password" : "text"
|
|
936
936
|
);
|
|
937
|
-
return (
|
|
937
|
+
return (n, _) => (a(), s("div", xt, [
|
|
938
938
|
t("label", {
|
|
939
939
|
for: e.id,
|
|
940
940
|
class: u([
|
|
@@ -942,25 +942,25 @@ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
942
942
|
e.disabled ? "disabled" : "",
|
|
943
943
|
e.search ? "search" : ""
|
|
944
944
|
])
|
|
945
|
-
},
|
|
945
|
+
}, o(e.label), 11, St),
|
|
946
946
|
e.type === "password" ? (a(), s("div", qt, [
|
|
947
947
|
t("input", {
|
|
948
948
|
id: e.id,
|
|
949
|
-
type:
|
|
949
|
+
type: i.value,
|
|
950
950
|
value: e.modelValue,
|
|
951
951
|
placeholder: e.placeholder,
|
|
952
952
|
required: e.required,
|
|
953
953
|
disabled: e.disabled,
|
|
954
|
-
onInput: _[0] || (_[0] = (b) =>
|
|
954
|
+
onInput: _[0] || (_[0] = (b) => n.$emit("update:modelValue", b.target.value)),
|
|
955
955
|
name: e.fieldName,
|
|
956
956
|
ref: "passwordField"
|
|
957
957
|
}, null, 40, Bt),
|
|
958
958
|
t("i", {
|
|
959
959
|
role: "button",
|
|
960
960
|
class: u([r.value]),
|
|
961
|
-
onClick: _[1] || (_[1] = (b) =>
|
|
961
|
+
onClick: _[1] || (_[1] = (b) => l.value = !l.value),
|
|
962
962
|
"aria-controls": "password",
|
|
963
|
-
"aria-expanded": !
|
|
963
|
+
"aria-expanded": !l.value
|
|
964
964
|
}, null, 10, It)
|
|
965
965
|
])) : (a(), s("input", {
|
|
966
966
|
key: 1,
|
|
@@ -975,17 +975,17 @@ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
975
975
|
e.search ? "search" : ""
|
|
976
976
|
]),
|
|
977
977
|
disabled: e.disabled,
|
|
978
|
-
onInput: _[2] || (_[2] = (b) =>
|
|
978
|
+
onInput: _[2] || (_[2] = (b) => n.$emit("update:modelValue", b.target.value)),
|
|
979
979
|
name: e.fieldName,
|
|
980
980
|
ref: "textField"
|
|
981
981
|
}, null, 42, Tt)),
|
|
982
982
|
e.search ? (a(), s("i", Lt)) : m("", !0),
|
|
983
|
-
e.errorMessage ? (a(), s("strong", Ct,
|
|
984
|
-
e.helperText ? (a(), s("span", Vt,
|
|
983
|
+
e.errorMessage ? (a(), s("strong", Ct, o(e.errorMessage), 1)) : m("", !0),
|
|
984
|
+
e.helperText ? (a(), s("span", Vt, o(e.helperText), 1)) : m("", !0)
|
|
985
985
|
]));
|
|
986
986
|
}
|
|
987
987
|
});
|
|
988
|
-
const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { class: "video__wrapper" }, Ot = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], zt = ["src", "aria-label", "title", "width", "height"],
|
|
988
|
+
const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { class: "video__wrapper" }, Ot = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], zt = ["src", "aria-label", "title", "width", "height"], Ft = /* @__PURE__ */ v({
|
|
989
989
|
__name: "video",
|
|
990
990
|
props: {
|
|
991
991
|
play: {
|
|
@@ -1036,20 +1036,20 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
|
|
|
1036
1036
|
default: !1
|
|
1037
1037
|
}
|
|
1038
1038
|
},
|
|
1039
|
-
setup(e, { expose:
|
|
1039
|
+
setup(e, { expose: l }) {
|
|
1040
1040
|
const r = e;
|
|
1041
|
-
let
|
|
1042
|
-
return
|
|
1043
|
-
r.play &&
|
|
1044
|
-
}),
|
|
1041
|
+
let i = w(null);
|
|
1042
|
+
return oe(() => {
|
|
1043
|
+
r.play && i.value ? i.value.play() : !r.play && i.value && i.value.pause();
|
|
1044
|
+
}), l({
|
|
1045
1045
|
resetVideo: () => {
|
|
1046
|
-
|
|
1046
|
+
i.value && (i.value.currentTime = 0, i.value.play());
|
|
1047
1047
|
}
|
|
1048
1048
|
}), (_, b) => (a(), s("div", Mt, [
|
|
1049
1049
|
e.localVideo ? (a(), s("video", {
|
|
1050
1050
|
key: 0,
|
|
1051
1051
|
ref_key: "videoRef",
|
|
1052
|
-
ref:
|
|
1052
|
+
ref: i,
|
|
1053
1053
|
"aria-label": e.ariaLabel,
|
|
1054
1054
|
controls: e.controls,
|
|
1055
1055
|
poster: e.poster,
|
|
@@ -1075,7 +1075,7 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
|
|
|
1075
1075
|
]));
|
|
1076
1076
|
}
|
|
1077
1077
|
});
|
|
1078
|
-
const K = /* @__PURE__ */ h(
|
|
1078
|
+
const K = /* @__PURE__ */ h(Ft, [["__scopeId", "data-v-cc1144b9"]]), Pt = { class: "address__wrapper" }, Et = { class: "address__content" }, Ht = { class: "address__flag" }, Nt = { class: "address__address" }, Rt = { class: "address__name" }, jt = { key: 0 }, Kt = { class: "address__contact" }, Ut = ["href"], Gt = ["href"], Wt = /* @__PURE__ */ v({
|
|
1079
1079
|
__name: "address",
|
|
1080
1080
|
props: {
|
|
1081
1081
|
name: {
|
|
@@ -1106,35 +1106,35 @@ const K = /* @__PURE__ */ h(Pt, [["__scopeId", "data-v-cc1144b9"]]), Ft = { clas
|
|
|
1106
1106
|
}
|
|
1107
1107
|
},
|
|
1108
1108
|
setup(e) {
|
|
1109
|
-
return (
|
|
1109
|
+
return (l, r) => (a(), s("div", Pt, [
|
|
1110
1110
|
t("div", Et, [
|
|
1111
|
-
t("div", Nt, [
|
|
1112
|
-
c(i.$slots, "address-flag", {}, void 0, !0)
|
|
1113
|
-
]),
|
|
1114
1111
|
t("div", Ht, [
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
t("p",
|
|
1119
|
-
|
|
1112
|
+
d(l.$slots, "address-flag", {}, void 0, !0)
|
|
1113
|
+
]),
|
|
1114
|
+
t("div", Nt, [
|
|
1115
|
+
t("p", Rt, o(e.name), 1),
|
|
1116
|
+
t("p", null, o(e.company), 1),
|
|
1117
|
+
t("p", null, o(e.addressLine_1), 1),
|
|
1118
|
+
t("p", null, o(e.addressLine_2), 1),
|
|
1119
|
+
e.addressLine_3 ? (a(), s("p", jt, o(e.addressLine_3), 1)) : m("", !0)
|
|
1120
1120
|
]),
|
|
1121
1121
|
t("div", Kt, [
|
|
1122
|
-
(a(!0), s(I, null, T(e.phone_numbers, (
|
|
1122
|
+
(a(!0), s(I, null, T(e.phone_numbers, (i) => (a(), D(V, {
|
|
1123
1123
|
underline: "false",
|
|
1124
1124
|
linkType: "regular"
|
|
1125
1125
|
}, {
|
|
1126
1126
|
default: $(() => [
|
|
1127
1127
|
t("a", {
|
|
1128
|
-
href: "tel:" +
|
|
1128
|
+
href: "tel:" + i,
|
|
1129
1129
|
class: "address__phone"
|
|
1130
|
-
},
|
|
1130
|
+
}, o(i), 9, Ut)
|
|
1131
1131
|
]),
|
|
1132
1132
|
_: 2
|
|
1133
1133
|
}, 1024))), 256)),
|
|
1134
1134
|
t("a", {
|
|
1135
1135
|
href: "mailto:" + e.email,
|
|
1136
1136
|
class: "address__email"
|
|
1137
|
-
},
|
|
1137
|
+
}, o(e.email), 9, Gt)
|
|
1138
1138
|
])
|
|
1139
1139
|
])
|
|
1140
1140
|
]));
|
|
@@ -1160,14 +1160,14 @@ const Qt = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-22ea3b79"]]), Yt = (e) =
|
|
|
1160
1160
|
}
|
|
1161
1161
|
},
|
|
1162
1162
|
setup(e) {
|
|
1163
|
-
return (
|
|
1163
|
+
return (l, r) => (a(), s("div", Jt, [
|
|
1164
1164
|
t("div", {
|
|
1165
1165
|
class: u(["bullet-list", e.variant])
|
|
1166
1166
|
}, [
|
|
1167
1167
|
t("ul", null, [
|
|
1168
|
-
(a(!0), s(I, null, T(e.list, (
|
|
1168
|
+
(a(!0), s(I, null, T(e.list, (i) => (a(), s("li", null, [
|
|
1169
1169
|
Xt,
|
|
1170
|
-
j(" " +
|
|
1170
|
+
j(" " + o(i), 1)
|
|
1171
1171
|
]))), 256))
|
|
1172
1172
|
])
|
|
1173
1173
|
], 2)
|
|
@@ -1231,10 +1231,10 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1231
1231
|
alt: String
|
|
1232
1232
|
},
|
|
1233
1233
|
emits: ["clicked"],
|
|
1234
|
-
setup(e, { emit:
|
|
1234
|
+
setup(e, { emit: l }) {
|
|
1235
1235
|
const r = be();
|
|
1236
|
-
let
|
|
1237
|
-
return (
|
|
1236
|
+
let i = w(!1);
|
|
1237
|
+
return (n, _) => (a(), s("div", ta, [
|
|
1238
1238
|
t("div", {
|
|
1239
1239
|
class: u(["card", [
|
|
1240
1240
|
e.theme == "dark" ? "card--dark" : "card--light",
|
|
@@ -1244,12 +1244,12 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1244
1244
|
e.variant == "product" ? "card--product" : "card--article"
|
|
1245
1245
|
]]),
|
|
1246
1246
|
style: te([e.variant == "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
1247
|
-
onMouseover: _[0] || (_[0] = (b) => ie(
|
|
1248
|
-
onMouseout: _[1] || (_[1] = (b) => ie(
|
|
1247
|
+
onMouseover: _[0] || (_[0] = (b) => ie(i) ? i.value = !0 : i = !0),
|
|
1248
|
+
onMouseout: _[1] || (_[1] = (b) => ie(i) ? i.value = !1 : i = !1)
|
|
1249
1249
|
}, [
|
|
1250
1250
|
e.mediaType == "image" ? (a(), D(L, { key: 0 }, {
|
|
1251
1251
|
default: $(() => [
|
|
1252
|
-
|
|
1252
|
+
d(n.$slots, "card-image", ee({
|
|
1253
1253
|
src: e.imgSrc,
|
|
1254
1254
|
height: e.size == "small" ? "186" : e.size == "medium" ? "243" : e.size == "large" ? "335" : "",
|
|
1255
1255
|
width: e.size == "small" ? "298" : e.size == "medium" ? "432" : e.size == "large" ? "596" : "",
|
|
@@ -1261,10 +1261,10 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1261
1261
|
_: 3
|
|
1262
1262
|
})) : (a(), s("div", {
|
|
1263
1263
|
key: 1,
|
|
1264
|
-
class: u(["video-card__wrapper", B(
|
|
1264
|
+
class: u(["video-card__wrapper", B(i) == !0 ? "vimeoPlaying" : ""])
|
|
1265
1265
|
}, [
|
|
1266
1266
|
p(K, {
|
|
1267
|
-
play: B(
|
|
1267
|
+
play: B(i),
|
|
1268
1268
|
localVideo: !0,
|
|
1269
1269
|
src: e.videoSrc,
|
|
1270
1270
|
"aria-label": e.arialabel,
|
|
@@ -1278,21 +1278,21 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1278
1278
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
1279
1279
|
], 2)),
|
|
1280
1280
|
B(r)["card-label"] ? (a(), s("div", aa, [
|
|
1281
|
-
|
|
1281
|
+
d(n.$slots, "card-label")
|
|
1282
1282
|
])) : m("", !0),
|
|
1283
1283
|
e.variant === "product" ? (a(), s("h3", {
|
|
1284
1284
|
key: 3,
|
|
1285
1285
|
class: u(e.theme == "dark" ? "regular-dark" : "regular-blue")
|
|
1286
|
-
},
|
|
1286
|
+
}, o(e.headline), 3)) : (a(), s("h3", {
|
|
1287
1287
|
key: 4,
|
|
1288
1288
|
class: u(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
|
|
1289
|
-
},
|
|
1290
|
-
e.variant == "product" ? (a(), s("p", la,
|
|
1289
|
+
}, o(e.headline), 3)),
|
|
1290
|
+
e.variant == "product" ? (a(), s("p", la, o(e.paragraph), 1)) : m("", !0)
|
|
1291
1291
|
], 38)
|
|
1292
1292
|
]));
|
|
1293
1293
|
}
|
|
1294
1294
|
});
|
|
1295
|
-
const sa = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-ed5d7a87"]]), ra = (e) => (O("data-v-b0f9972c"), e = e(), z(), e),
|
|
1295
|
+
const sa = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-ed5d7a87"]]), ra = (e) => (O("data-v-b0f9972c"), e = e(), z(), e), oa = { class: "event__wrapper" }, na = { class: "event__headline" }, da = { class: "event__date-location" }, ca = /* @__PURE__ */ ra(() => /* @__PURE__ */ t("br", null, null, -1)), ua = { class: "event__exhibitor" }, _a = /* @__PURE__ */ v({
|
|
1296
1296
|
__name: "event-card",
|
|
1297
1297
|
props: {
|
|
1298
1298
|
eventType: {
|
|
@@ -1317,22 +1317,22 @@ const sa = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-ed5d7a87"]]), ra = (e) =
|
|
|
1317
1317
|
}
|
|
1318
1318
|
},
|
|
1319
1319
|
setup(e) {
|
|
1320
|
-
return (
|
|
1320
|
+
return (l, r) => (a(), s("div", oa, [
|
|
1321
1321
|
p(G, {
|
|
1322
1322
|
"label-dark": !1,
|
|
1323
1323
|
text: e.eventType ? e.eventType : ""
|
|
1324
1324
|
}, null, 8, ["text"]),
|
|
1325
|
-
t("div",
|
|
1325
|
+
t("div", na, o(e.headline), 1),
|
|
1326
1326
|
t("div", da, [
|
|
1327
|
-
j(
|
|
1327
|
+
j(o(e.dateTime), 1),
|
|
1328
1328
|
ca,
|
|
1329
|
-
j(
|
|
1329
|
+
j(o(e.location), 1)
|
|
1330
1330
|
]),
|
|
1331
|
-
t("div", ua, "Exhibitor: " +
|
|
1331
|
+
t("div", ua, "Exhibitor: " + o(e.exhibitor), 1)
|
|
1332
1332
|
]));
|
|
1333
1333
|
}
|
|
1334
1334
|
});
|
|
1335
|
-
const ha = /* @__PURE__ */ h(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { class: "text__wrapper" }, ma = { class: "text__headline" },
|
|
1335
|
+
const ha = /* @__PURE__ */ h(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { class: "text__wrapper" }, ma = { class: "text__headline" }, fa = { class: "text__paragraph" }, ga = /* @__PURE__ */ v({
|
|
1336
1336
|
__name: "text-card",
|
|
1337
1337
|
props: {
|
|
1338
1338
|
label: {
|
|
@@ -1349,19 +1349,19 @@ const ha = /* @__PURE__ */ h(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { cla
|
|
|
1349
1349
|
}
|
|
1350
1350
|
},
|
|
1351
1351
|
setup(e) {
|
|
1352
|
-
return (
|
|
1352
|
+
return (l, r) => (a(), s("div", va, [
|
|
1353
1353
|
p(G, {
|
|
1354
1354
|
"label-dark": !1,
|
|
1355
1355
|
text: e.label ? e.label : ""
|
|
1356
1356
|
}, null, 8, ["text"]),
|
|
1357
|
-
t("div", ma,
|
|
1358
|
-
t("div",
|
|
1359
|
-
t("p", null,
|
|
1357
|
+
t("div", ma, o(e.headline), 1),
|
|
1358
|
+
t("div", fa, [
|
|
1359
|
+
t("p", null, o(e.paragraph), 1)
|
|
1360
1360
|
])
|
|
1361
1361
|
]));
|
|
1362
1362
|
}
|
|
1363
1363
|
});
|
|
1364
|
-
const ya = /* @__PURE__ */ h(
|
|
1364
|
+
const ya = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-b07d352b"]]), ba = { class: "facts__wrapper" }, pa = { class: "facts__content" }, $a = { class: "facts__headline" }, ka = { class: "facts" }, wa = { class: "fact" }, xa = { class: "fact__value" }, Sa = { class: "fact__metric" }, qa = {
|
|
1365
1365
|
key: 0,
|
|
1366
1366
|
class: "facts__link"
|
|
1367
1367
|
}, Ba = /* @__PURE__ */ v({
|
|
@@ -1382,16 +1382,16 @@ const ya = /* @__PURE__ */ h(fa, [["__scopeId", "data-v-b07d352b"]]), ba = { cla
|
|
|
1382
1382
|
}
|
|
1383
1383
|
},
|
|
1384
1384
|
setup(e) {
|
|
1385
|
-
return (
|
|
1385
|
+
return (l, r) => (a(), s("div", ba, [
|
|
1386
1386
|
t("div", pa, [
|
|
1387
|
-
t("h2", $a,
|
|
1387
|
+
t("h2", $a, o(e.headline), 1),
|
|
1388
1388
|
t("div", ka, [
|
|
1389
|
-
(a(!0), s(I, null, T(e.facts, (
|
|
1389
|
+
(a(!0), s(I, null, T(e.facts, (i) => (a(), s("div", wa, [
|
|
1390
1390
|
t("div", xa, [
|
|
1391
|
-
t("span", null,
|
|
1391
|
+
t("span", null, o(i.value), 1)
|
|
1392
1392
|
]),
|
|
1393
1393
|
t("div", Sa, [
|
|
1394
|
-
t("span", null,
|
|
1394
|
+
t("span", null, o(i.metric), 1)
|
|
1395
1395
|
])
|
|
1396
1396
|
]))), 256))
|
|
1397
1397
|
]),
|
|
@@ -1401,7 +1401,7 @@ const ya = /* @__PURE__ */ h(fa, [["__scopeId", "data-v-b07d352b"]]), ba = { cla
|
|
|
1401
1401
|
arrow: ""
|
|
1402
1402
|
}, {
|
|
1403
1403
|
default: $(() => [
|
|
1404
|
-
|
|
1404
|
+
d(l.$slots, "facts-link", {}, void 0, !0)
|
|
1405
1405
|
]),
|
|
1406
1406
|
_: 3
|
|
1407
1407
|
})
|
|
@@ -1434,38 +1434,62 @@ const Ia = /* @__PURE__ */ h(Ba, [["__scopeId", "data-v-7db53845"]]), Ta = { cla
|
|
|
1434
1434
|
}
|
|
1435
1435
|
},
|
|
1436
1436
|
setup(e) {
|
|
1437
|
-
return (
|
|
1437
|
+
return (l, r) => (a(), s("div", Ta, [
|
|
1438
1438
|
t("div", La, [
|
|
1439
1439
|
e.headline ? (a(), s("div", Ca, [
|
|
1440
|
-
t("h2", null,
|
|
1440
|
+
t("h2", null, o(e.headline), 1)
|
|
1441
1441
|
])) : m("", !0),
|
|
1442
1442
|
e.body ? (a(), s("div", Va, [
|
|
1443
|
-
t("p", null,
|
|
1443
|
+
t("p", null, o(e.body), 1)
|
|
1444
1444
|
])) : m("", !0),
|
|
1445
1445
|
t("div", {
|
|
1446
1446
|
class: u(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
|
|
1447
1447
|
}, [
|
|
1448
|
-
(a(!0), s(I, null, T(e.elements, (
|
|
1448
|
+
(a(!0), s(I, null, T(e.elements, (i) => (a(), s("div", Aa, [
|
|
1449
1449
|
p(L, { class: "element__icon" }, {
|
|
1450
1450
|
default: $(() => [
|
|
1451
|
-
|
|
1452
|
-
src:
|
|
1451
|
+
d(l.$slots, "features-icon", A(M({
|
|
1452
|
+
src: i.icon.src,
|
|
1453
1453
|
height: 30,
|
|
1454
1454
|
width: 30,
|
|
1455
|
-
alt:
|
|
1455
|
+
alt: i.icon.alt
|
|
1456
1456
|
})), void 0, !0)
|
|
1457
1457
|
]),
|
|
1458
1458
|
_: 2
|
|
1459
1459
|
}, 1024),
|
|
1460
|
-
t("p", Da,
|
|
1461
|
-
t("p", Ma,
|
|
1460
|
+
t("p", Da, o(i.headline), 1),
|
|
1461
|
+
t("p", Ma, o(i.body), 1)
|
|
1462
1462
|
]))), 256))
|
|
1463
1463
|
], 2)
|
|
1464
1464
|
])
|
|
1465
1465
|
]));
|
|
1466
1466
|
}
|
|
1467
1467
|
});
|
|
1468
|
-
const za = /* @__PURE__ */ h(Oa, [["__scopeId", "data-v-35a864e7"]]),
|
|
1468
|
+
const za = /* @__PURE__ */ h(Oa, [["__scopeId", "data-v-35a864e7"]]), Fa = { class: "form__wrapper" }, Pa = { class: "form__content" }, Ea = { class: "form__information" }, Ha = { class: "form__headline" }, Na = { class: "form__body" }, Ra = { class: "form__script" }, ja = /* @__PURE__ */ v({
|
|
1469
|
+
__name: "form-script",
|
|
1470
|
+
props: {
|
|
1471
|
+
headline: {
|
|
1472
|
+
type: String,
|
|
1473
|
+
default: ""
|
|
1474
|
+
}
|
|
1475
|
+
},
|
|
1476
|
+
setup(e) {
|
|
1477
|
+
return (l, r) => (a(), s("div", Fa, [
|
|
1478
|
+
t("div", Pa, [
|
|
1479
|
+
t("div", Ea, [
|
|
1480
|
+
t("h2", Ha, o(e.headline), 1),
|
|
1481
|
+
t("div", Na, [
|
|
1482
|
+
d(l.$slots, "form-body", {}, void 0, !0)
|
|
1483
|
+
])
|
|
1484
|
+
]),
|
|
1485
|
+
t("div", Ra, [
|
|
1486
|
+
d(l.$slots, "form-script", {}, void 0, !0)
|
|
1487
|
+
])
|
|
1488
|
+
])
|
|
1489
|
+
]));
|
|
1490
|
+
}
|
|
1491
|
+
});
|
|
1492
|
+
const Ka = /* @__PURE__ */ h(ja, [["__scopeId", "data-v-7998a1c7"]]), Ua = { class: "image__wrapper" }, Ga = { class: "image__content" }, Wa = { class: "image__image" }, Qa = { class: "image__caption" }, Ya = /* @__PURE__ */ v({
|
|
1469
1493
|
__name: "image",
|
|
1470
1494
|
props: {
|
|
1471
1495
|
caption: {
|
|
@@ -1482,31 +1506,31 @@ const za = /* @__PURE__ */ h(Oa, [["__scopeId", "data-v-35a864e7"]]), Pa = { cla
|
|
|
1482
1506
|
}
|
|
1483
1507
|
},
|
|
1484
1508
|
setup(e) {
|
|
1485
|
-
return (
|
|
1486
|
-
t("div",
|
|
1487
|
-
t("div",
|
|
1509
|
+
return (l, r) => (a(), s("div", Ua, [
|
|
1510
|
+
t("div", Ga, [
|
|
1511
|
+
t("div", Wa, [
|
|
1488
1512
|
p(L, null, {
|
|
1489
1513
|
default: $(() => [
|
|
1490
|
-
|
|
1514
|
+
d(l.$slots, "image", A(M({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1491
1515
|
]),
|
|
1492
1516
|
_: 3
|
|
1493
1517
|
})
|
|
1494
1518
|
]),
|
|
1495
|
-
t("p",
|
|
1519
|
+
t("p", Qa, o(e.caption), 1)
|
|
1496
1520
|
])
|
|
1497
1521
|
]));
|
|
1498
1522
|
}
|
|
1499
1523
|
});
|
|
1500
|
-
const
|
|
1524
|
+
const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { class: "gallery__large" }, Za = {
|
|
1501
1525
|
key: 0,
|
|
1502
1526
|
class: "image image--large"
|
|
1503
|
-
},
|
|
1527
|
+
}, el = {
|
|
1504
1528
|
key: 1,
|
|
1505
1529
|
class: "video"
|
|
1506
|
-
},
|
|
1530
|
+
}, tl = { class: "image image--small" }, al = {
|
|
1507
1531
|
key: 0,
|
|
1508
1532
|
class: "body"
|
|
1509
|
-
},
|
|
1533
|
+
}, ll = /* @__PURE__ */ v({
|
|
1510
1534
|
__name: "image-gallery",
|
|
1511
1535
|
props: {
|
|
1512
1536
|
mediaLarge: {
|
|
@@ -1545,7 +1569,7 @@ const Ra = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-624f5b56"]]), ja = { cla
|
|
|
1545
1569
|
}
|
|
1546
1570
|
},
|
|
1547
1571
|
setup(e) {
|
|
1548
|
-
return (
|
|
1572
|
+
return (l, r) => (a(), s("div", {
|
|
1549
1573
|
class: u([
|
|
1550
1574
|
"gallery__wrapper",
|
|
1551
1575
|
e.bgColor === "light" ? "gallery__wrapper--light" : e.bgColor === "dark" ? ["gallery__wrapper--dark", "mirsaic--dark"] : ""
|
|
@@ -1557,11 +1581,11 @@ const Ra = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-624f5b56"]]), ja = { cla
|
|
|
1557
1581
|
e.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1558
1582
|
])
|
|
1559
1583
|
}, [
|
|
1560
|
-
t("div",
|
|
1561
|
-
e.mediaLarge && e.mediaType === "image" ? (a(), s("div",
|
|
1584
|
+
t("div", Xa, [
|
|
1585
|
+
e.mediaLarge && e.mediaType === "image" ? (a(), s("div", Za, [
|
|
1562
1586
|
p(L, null, {
|
|
1563
1587
|
default: $(() => [
|
|
1564
|
-
|
|
1588
|
+
d(l.$slots, "image-large", A(M({
|
|
1565
1589
|
width: 617,
|
|
1566
1590
|
height: 530,
|
|
1567
1591
|
src: e.mediaLarge.src,
|
|
@@ -1571,7 +1595,7 @@ const Ra = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-624f5b56"]]), ja = { cla
|
|
|
1571
1595
|
_: 3
|
|
1572
1596
|
})
|
|
1573
1597
|
])) : m("", !0),
|
|
1574
|
-
e.mediaLarge && e.mediaType === "video" ? (a(), s("div",
|
|
1598
|
+
e.mediaLarge && e.mediaType === "video" ? (a(), s("div", el, [
|
|
1575
1599
|
p(K, {
|
|
1576
1600
|
src: e.mediaLarge.src,
|
|
1577
1601
|
localVideo: "",
|
|
@@ -1593,28 +1617,28 @@ const Ra = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-624f5b56"]]), ja = { cla
|
|
|
1593
1617
|
e.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1594
1618
|
])
|
|
1595
1619
|
}, [
|
|
1596
|
-
(a(!0), s(I, null, T(e.mediaSmall, (
|
|
1620
|
+
(a(!0), s(I, null, T(e.mediaSmall, (i) => (a(), s("div", tl, [
|
|
1597
1621
|
p(L, null, {
|
|
1598
1622
|
default: $(() => [
|
|
1599
|
-
|
|
1623
|
+
d(l.$slots, "image-small", A(M({
|
|
1600
1624
|
width: 328,
|
|
1601
1625
|
height: 246,
|
|
1602
|
-
src:
|
|
1603
|
-
alt:
|
|
1626
|
+
src: i.src,
|
|
1627
|
+
alt: i.alt
|
|
1604
1628
|
})))
|
|
1605
1629
|
]),
|
|
1606
1630
|
_: 2
|
|
1607
1631
|
}, 1024)
|
|
1608
1632
|
]))), 256)),
|
|
1609
|
-
e.mediaSmall.length < 2 ? (a(), s("div",
|
|
1610
|
-
t("p", null,
|
|
1633
|
+
e.mediaSmall.length < 2 ? (a(), s("div", al, [
|
|
1634
|
+
t("p", null, o(e.body), 1)
|
|
1611
1635
|
])) : m("", !0)
|
|
1612
1636
|
], 6)
|
|
1613
1637
|
], 2)
|
|
1614
1638
|
], 2));
|
|
1615
1639
|
}
|
|
1616
1640
|
});
|
|
1617
|
-
const
|
|
1641
|
+
const il = /* @__PURE__ */ h(ll, [["__scopeId", "data-v-55b17073"]]), sl = { class: "headline__wrapper" }, rl = { class: "headline__h1" }, ol = /* @__PURE__ */ v({
|
|
1618
1642
|
__name: "headline",
|
|
1619
1643
|
props: {
|
|
1620
1644
|
headline: {
|
|
@@ -1631,7 +1655,7 @@ const Ya = /* @__PURE__ */ h(Qa, [["__scopeId", "data-v-55b17073"]]), Ja = { cla
|
|
|
1631
1655
|
}
|
|
1632
1656
|
},
|
|
1633
1657
|
setup(e) {
|
|
1634
|
-
return (
|
|
1658
|
+
return (l, r) => (a(), s("div", sl, [
|
|
1635
1659
|
t("div", {
|
|
1636
1660
|
class: u({
|
|
1637
1661
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1640,12 +1664,12 @@ const Ya = /* @__PURE__ */ h(Qa, [["__scopeId", "data-v-55b17073"]]), Ja = { cla
|
|
|
1640
1664
|
"headline__content--default": !e.article && !e.subMenu
|
|
1641
1665
|
})
|
|
1642
1666
|
}, [
|
|
1643
|
-
t("h1",
|
|
1667
|
+
t("h1", rl, o(e.headline), 1)
|
|
1644
1668
|
], 2)
|
|
1645
1669
|
]));
|
|
1646
1670
|
}
|
|
1647
1671
|
});
|
|
1648
|
-
const
|
|
1672
|
+
const nl = /* @__PURE__ */ h(ol, [["__scopeId", "data-v-080238bd"]]), dl = (e) => (O("data-v-de757e46"), e = e(), z(), e), cl = { class: "hero__wrapper" }, ul = { class: "hero__content" }, _l = { class: "hero__top" }, hl = { class: "hero__elements" }, vl = { class: "hero__headline" }, ml = { class: "hero__link" }, fl = { class: "hero__video" }, gl = /* @__PURE__ */ dl(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), yl = /* @__PURE__ */ v({
|
|
1649
1673
|
__name: "hero",
|
|
1650
1674
|
props: {
|
|
1651
1675
|
headline: {
|
|
@@ -1658,28 +1682,28 @@ const el = /* @__PURE__ */ h(Za, [["__scopeId", "data-v-080238bd"]]), tl = (e) =
|
|
|
1658
1682
|
}
|
|
1659
1683
|
},
|
|
1660
1684
|
setup(e) {
|
|
1661
|
-
return (
|
|
1662
|
-
t("div",
|
|
1663
|
-
t("div",
|
|
1664
|
-
t("div",
|
|
1665
|
-
t("div",
|
|
1666
|
-
t("h1", null,
|
|
1685
|
+
return (l, r) => (a(), s("div", cl, [
|
|
1686
|
+
t("div", ul, [
|
|
1687
|
+
t("div", _l, [
|
|
1688
|
+
t("div", hl, [
|
|
1689
|
+
t("div", vl, [
|
|
1690
|
+
t("h1", null, o(e.headline), 1)
|
|
1667
1691
|
]),
|
|
1668
|
-
t("div",
|
|
1692
|
+
t("div", ml, [
|
|
1669
1693
|
p(V, {
|
|
1670
1694
|
linkType: "regular-light",
|
|
1671
1695
|
arrow: ""
|
|
1672
1696
|
}, {
|
|
1673
1697
|
default: $(() => [
|
|
1674
|
-
|
|
1698
|
+
d(l.$slots, "hero-link", {}, void 0, !0)
|
|
1675
1699
|
]),
|
|
1676
1700
|
_: 3
|
|
1677
1701
|
})
|
|
1678
1702
|
])
|
|
1679
1703
|
])
|
|
1680
1704
|
]),
|
|
1681
|
-
t("div",
|
|
1682
|
-
|
|
1705
|
+
t("div", fl, [
|
|
1706
|
+
gl,
|
|
1683
1707
|
p(K, {
|
|
1684
1708
|
src: e.video.src,
|
|
1685
1709
|
localVideo: "",
|
|
@@ -1696,10 +1720,10 @@ const el = /* @__PURE__ */ h(Za, [["__scopeId", "data-v-080238bd"]]), tl = (e) =
|
|
|
1696
1720
|
]));
|
|
1697
1721
|
}
|
|
1698
1722
|
});
|
|
1699
|
-
const
|
|
1723
|
+
const bl = /* @__PURE__ */ h(yl, [["__scopeId", "data-v-de757e46"]]), pl = { class: "logo-wall__wrapper" }, $l = { class: "logo-wall__content" }, kl = {
|
|
1700
1724
|
key: 0,
|
|
1701
1725
|
class: "logo-wall__text"
|
|
1702
|
-
},
|
|
1726
|
+
}, wl = { key: 0 }, xl = { key: 1 }, Sl = { class: "logo-wall__logos" }, ql = { class: "logo-wall__logo" }, Bl = { class: "logo-wall__link" }, Il = /* @__PURE__ */ v({
|
|
1703
1727
|
__name: "logo-wall",
|
|
1704
1728
|
props: {
|
|
1705
1729
|
headline: {
|
|
@@ -1715,34 +1739,34 @@ const ul = /* @__PURE__ */ h(cl, [["__scopeId", "data-v-de757e46"]]), _l = { cla
|
|
|
1715
1739
|
}
|
|
1716
1740
|
},
|
|
1717
1741
|
setup(e) {
|
|
1718
|
-
return (
|
|
1719
|
-
t("div",
|
|
1720
|
-
e.headline || e.body ? (a(), s("div",
|
|
1721
|
-
e.headline ? (a(), s("h2",
|
|
1722
|
-
e.body ? (a(), s("p",
|
|
1742
|
+
return (l, r) => (a(), s("div", pl, [
|
|
1743
|
+
t("div", $l, [
|
|
1744
|
+
e.headline || e.body ? (a(), s("div", kl, [
|
|
1745
|
+
e.headline ? (a(), s("h2", wl, o(e.headline), 1)) : m("", !0),
|
|
1746
|
+
e.body ? (a(), s("p", xl, o(e.body), 1)) : m("", !0)
|
|
1723
1747
|
])) : m("", !0),
|
|
1724
|
-
t("div",
|
|
1725
|
-
(a(!0), s(I, null, T(e.logos, (
|
|
1748
|
+
t("div", Sl, [
|
|
1749
|
+
(a(!0), s(I, null, T(e.logos, (i) => (a(), s("div", ql, [
|
|
1726
1750
|
p(L, null, {
|
|
1727
1751
|
default: $(() => [
|
|
1728
|
-
|
|
1752
|
+
d(l.$slots, "logo-wall-logo", A(M({
|
|
1729
1753
|
width: 130,
|
|
1730
1754
|
height: 130,
|
|
1731
|
-
src:
|
|
1732
|
-
alt:
|
|
1755
|
+
src: i.src,
|
|
1756
|
+
alt: i.alt
|
|
1733
1757
|
})), void 0, !0)
|
|
1734
1758
|
]),
|
|
1735
1759
|
_: 2
|
|
1736
1760
|
}, 1024)
|
|
1737
1761
|
]))), 256))
|
|
1738
1762
|
]),
|
|
1739
|
-
t("div",
|
|
1763
|
+
t("div", Bl, [
|
|
1740
1764
|
p(V, {
|
|
1741
1765
|
linkType: "regular-light",
|
|
1742
1766
|
arrow: !0
|
|
1743
1767
|
}, {
|
|
1744
1768
|
default: $(() => [
|
|
1745
|
-
|
|
1769
|
+
d(l.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1746
1770
|
]),
|
|
1747
1771
|
_: 3
|
|
1748
1772
|
})
|
|
@@ -1751,7 +1775,7 @@ const ul = /* @__PURE__ */ h(cl, [["__scopeId", "data-v-de757e46"]]), _l = { cla
|
|
|
1751
1775
|
]));
|
|
1752
1776
|
}
|
|
1753
1777
|
});
|
|
1754
|
-
const
|
|
1778
|
+
const Tl = /* @__PURE__ */ h(Il, [["__scopeId", "data-v-299e5b4b"]]), Ll = { class: "micro-stories__splide" }, Cl = /* @__PURE__ */ v({
|
|
1755
1779
|
__name: "micro-stories",
|
|
1756
1780
|
props: {
|
|
1757
1781
|
stories: {
|
|
@@ -1776,28 +1800,28 @@ const $l = /* @__PURE__ */ h(pl, [["__scopeId", "data-v-299e5b4b"]]), kl = { cla
|
|
|
1776
1800
|
}
|
|
1777
1801
|
},
|
|
1778
1802
|
setup(e) {
|
|
1779
|
-
return (
|
|
1803
|
+
return (l, r) => (a(), s("div", {
|
|
1780
1804
|
class: u([
|
|
1781
1805
|
"micro-stories__wrapper",
|
|
1782
1806
|
e.bgColor == "white" ? "micro-stories__wrapper--white" : e.bgColor == "dark" ? "micro-stories__wrapper--dark" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
|
|
1783
1807
|
])
|
|
1784
1808
|
}, [
|
|
1785
|
-
t("div",
|
|
1786
|
-
|
|
1809
|
+
t("div", Ll, [
|
|
1810
|
+
d(l.$slots, "micro-stories-slides")
|
|
1787
1811
|
]),
|
|
1788
|
-
|
|
1812
|
+
d(l.$slots, "micro-stories-controls")
|
|
1789
1813
|
], 2));
|
|
1790
1814
|
}
|
|
1791
1815
|
});
|
|
1792
|
-
const
|
|
1793
|
-
function
|
|
1794
|
-
return a(), s("div",
|
|
1795
|
-
t("div",
|
|
1796
|
-
|
|
1816
|
+
const Vl = {}, Al = { class: "policy__wrapper" }, Dl = { class: "policy__content" };
|
|
1817
|
+
function Ml(e, l) {
|
|
1818
|
+
return a(), s("div", Al, [
|
|
1819
|
+
t("div", Dl, [
|
|
1820
|
+
d(e.$slots, "default", {}, void 0, !0)
|
|
1797
1821
|
])
|
|
1798
1822
|
]);
|
|
1799
1823
|
}
|
|
1800
|
-
const
|
|
1824
|
+
const Ol = /* @__PURE__ */ h(Vl, [["render", Ml], ["__scopeId", "data-v-4ef880d9"]]), zl = { class: "product-hero__wrapper" }, Fl = { class: "product-hero__content" }, Pl = { class: "product-hero__headline" }, El = { class: "product-hero__video" }, Hl = /* @__PURE__ */ v({
|
|
1801
1825
|
__name: "product-hero",
|
|
1802
1826
|
props: {
|
|
1803
1827
|
headline: {
|
|
@@ -1822,12 +1846,12 @@ const Il = /* @__PURE__ */ h(xl, [["render", Bl], ["__scopeId", "data-v-4ef880d9
|
|
|
1822
1846
|
}
|
|
1823
1847
|
},
|
|
1824
1848
|
setup(e) {
|
|
1825
|
-
return (
|
|
1826
|
-
t("div",
|
|
1827
|
-
t("div",
|
|
1828
|
-
t("h1", null,
|
|
1849
|
+
return (l, r) => (a(), s("div", zl, [
|
|
1850
|
+
t("div", Fl, [
|
|
1851
|
+
t("div", Pl, [
|
|
1852
|
+
t("h1", null, o(e.headline), 1)
|
|
1829
1853
|
]),
|
|
1830
|
-
t("div",
|
|
1854
|
+
t("div", El, [
|
|
1831
1855
|
p(K, {
|
|
1832
1856
|
play: !0,
|
|
1833
1857
|
localVideo: !0,
|
|
@@ -1844,7 +1868,7 @@ const Il = /* @__PURE__ */ h(xl, [["render", Bl], ["__scopeId", "data-v-4ef880d9
|
|
|
1844
1868
|
]));
|
|
1845
1869
|
}
|
|
1846
1870
|
});
|
|
1847
|
-
const
|
|
1871
|
+
const Nl = /* @__PURE__ */ h(Hl, [["__scopeId", "data-v-2ca17b92"]]), Rl = { class: "promo__content" }, jl = /* @__PURE__ */ v({
|
|
1848
1872
|
__name: "promo",
|
|
1849
1873
|
props: {
|
|
1850
1874
|
label: {
|
|
@@ -1892,14 +1916,14 @@ const Dl = /* @__PURE__ */ h(Al, [["__scopeId", "data-v-2ca17b92"]]), Ml = { cla
|
|
|
1892
1916
|
}
|
|
1893
1917
|
},
|
|
1894
1918
|
setup(e) {
|
|
1895
|
-
return (
|
|
1919
|
+
return (l, r) => (a(), s("div", {
|
|
1896
1920
|
class: u([
|
|
1897
1921
|
"promo__wrapper",
|
|
1898
1922
|
e.variant === "dark" ? "promo__wrapper--dark" : e.variant === "light" ? "promo__wrapper--light" : "promo__wrapper--default",
|
|
1899
1923
|
e.teaser ? "promo__wrapper--teaser" : ""
|
|
1900
1924
|
])
|
|
1901
1925
|
}, [
|
|
1902
|
-
t("div",
|
|
1926
|
+
t("div", Rl, [
|
|
1903
1927
|
e.mediaType === "image" ? (a(), s("div", {
|
|
1904
1928
|
key: 0,
|
|
1905
1929
|
class: u([
|
|
@@ -1909,7 +1933,7 @@ const Dl = /* @__PURE__ */ h(Al, [["__scopeId", "data-v-2ca17b92"]]), Ml = { cla
|
|
|
1909
1933
|
}, [
|
|
1910
1934
|
p(L, null, {
|
|
1911
1935
|
default: $(() => [
|
|
1912
|
-
|
|
1936
|
+
d(l.$slots, "promo-image", A(M({ src: e.src, width: 1920, alt: e.alt, height: 1080 })))
|
|
1913
1937
|
]),
|
|
1914
1938
|
_: 3
|
|
1915
1939
|
})
|
|
@@ -1949,14 +1973,14 @@ const Dl = /* @__PURE__ */ h(Al, [["__scopeId", "data-v-2ca17b92"]]), Ml = { cla
|
|
|
1949
1973
|
"promo__title",
|
|
1950
1974
|
e.variant === "dark" ? "promo__title--dark" : ""
|
|
1951
1975
|
])
|
|
1952
|
-
},
|
|
1976
|
+
}, o(e.headline), 3),
|
|
1953
1977
|
e.linkType === "link" ? (a(), D(V, {
|
|
1954
1978
|
key: 1,
|
|
1955
1979
|
linkType: e.variant === "dark" ? "regular-dark" : (e.variant === "light", "regular-light"),
|
|
1956
1980
|
arrow: ""
|
|
1957
1981
|
}, {
|
|
1958
1982
|
default: $(() => [
|
|
1959
|
-
|
|
1983
|
+
d(l.$slots, "promo-link")
|
|
1960
1984
|
]),
|
|
1961
1985
|
_: 3
|
|
1962
1986
|
}, 8, ["linkType"])) : m("", !0),
|
|
@@ -1965,7 +1989,7 @@ const Dl = /* @__PURE__ */ h(Al, [["__scopeId", "data-v-2ca17b92"]]), Ml = { cla
|
|
|
1965
1989
|
linkType: e.variant === "dark" ? "secondary-dark" : (e.variant === "light", "secondary")
|
|
1966
1990
|
}, {
|
|
1967
1991
|
default: $(() => [
|
|
1968
|
-
|
|
1992
|
+
d(l.$slots, "promo-link")
|
|
1969
1993
|
]),
|
|
1970
1994
|
_: 3
|
|
1971
1995
|
}, 8, ["linkType"])) : m("", !0)
|
|
@@ -1974,10 +1998,10 @@ const Dl = /* @__PURE__ */ h(Al, [["__scopeId", "data-v-2ca17b92"]]), Ml = { cla
|
|
|
1974
1998
|
], 2));
|
|
1975
1999
|
}
|
|
1976
2000
|
});
|
|
1977
|
-
const
|
|
2001
|
+
const Kl = /* @__PURE__ */ h(jl, [["__scopeId", "data-v-3282904c"]]), Ul = (e) => (O("data-v-18440f83"), e = e(), z(), e), Gl = { class: "quote__wrapper" }, Wl = { class: "quote__content" }, Ql = /* @__PURE__ */ Ul(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), Yl = { class: "quote__quote" }, Jl = { class: "quote__quote-text" }, Xl = { class: "quote__author" }, Zl = {
|
|
1978
2002
|
key: 0,
|
|
1979
2003
|
class: "quote__image"
|
|
1980
|
-
},
|
|
2004
|
+
}, ei = { class: "quote__text" }, ti = { class: "quote__author-name" }, ai = { class: "quote__author-title" }, li = /* @__PURE__ */ v({
|
|
1981
2005
|
__name: "quote",
|
|
1982
2006
|
props: {
|
|
1983
2007
|
quote: {
|
|
@@ -1998,16 +2022,16 @@ const zl = /* @__PURE__ */ h(Ol, [["__scopeId", "data-v-3282904c"]]), Pl = (e) =
|
|
|
1998
2022
|
}
|
|
1999
2023
|
},
|
|
2000
2024
|
setup(e) {
|
|
2001
|
-
return (
|
|
2002
|
-
t("div",
|
|
2003
|
-
|
|
2004
|
-
t("div",
|
|
2005
|
-
t("p",
|
|
2006
|
-
t("div",
|
|
2007
|
-
e.authorImage ? (a(), s("div",
|
|
2025
|
+
return (l, r) => (a(), s("div", Gl, [
|
|
2026
|
+
t("div", Wl, [
|
|
2027
|
+
Ql,
|
|
2028
|
+
t("div", Yl, [
|
|
2029
|
+
t("p", Jl, o(e.quote), 1),
|
|
2030
|
+
t("div", Xl, [
|
|
2031
|
+
e.authorImage ? (a(), s("div", Zl, [
|
|
2008
2032
|
p(L, null, {
|
|
2009
2033
|
default: $(() => [
|
|
2010
|
-
|
|
2034
|
+
d(l.$slots, "author-image", A(M({
|
|
2011
2035
|
src: e.authorImage + "/m/100x100",
|
|
2012
2036
|
width: 60,
|
|
2013
2037
|
height: 60
|
|
@@ -2016,9 +2040,9 @@ const zl = /* @__PURE__ */ h(Ol, [["__scopeId", "data-v-3282904c"]]), Pl = (e) =
|
|
|
2016
2040
|
_: 3
|
|
2017
2041
|
})
|
|
2018
2042
|
])) : m("", !0),
|
|
2019
|
-
t("div",
|
|
2020
|
-
t("p",
|
|
2021
|
-
t("p",
|
|
2043
|
+
t("div", ei, [
|
|
2044
|
+
t("p", ti, o(e.author), 1),
|
|
2045
|
+
t("p", ai, o(e.authorTitle), 1)
|
|
2022
2046
|
])
|
|
2023
2047
|
])
|
|
2024
2048
|
])
|
|
@@ -2026,13 +2050,13 @@ const zl = /* @__PURE__ */ h(Ol, [["__scopeId", "data-v-3282904c"]]), Pl = (e) =
|
|
|
2026
2050
|
]));
|
|
2027
2051
|
}
|
|
2028
2052
|
});
|
|
2029
|
-
const
|
|
2053
|
+
const ii = /* @__PURE__ */ h(li, [["__scopeId", "data-v-18440f83"]]), si = { class: "rich-text__wrapper" }, ri = {
|
|
2030
2054
|
key: 0,
|
|
2031
2055
|
class: "rich-text__links"
|
|
2032
|
-
},
|
|
2056
|
+
}, oi = {
|
|
2033
2057
|
key: 0,
|
|
2034
2058
|
class: "rich-text__bullet-list"
|
|
2035
|
-
},
|
|
2059
|
+
}, ni = /* @__PURE__ */ v({
|
|
2036
2060
|
__name: "rich-text",
|
|
2037
2061
|
props: {
|
|
2038
2062
|
headline: {
|
|
@@ -2067,13 +2091,13 @@ const Yl = /* @__PURE__ */ h(Ql, [["__scopeId", "data-v-18440f83"]]), Jl = { cla
|
|
|
2067
2091
|
}
|
|
2068
2092
|
},
|
|
2069
2093
|
setup(e) {
|
|
2070
|
-
return (
|
|
2094
|
+
return (l, r) => (a(), s("div", {
|
|
2071
2095
|
class: u([
|
|
2072
2096
|
"rich-text",
|
|
2073
2097
|
e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
2074
2098
|
])
|
|
2075
2099
|
}, [
|
|
2076
|
-
t("div",
|
|
2100
|
+
t("div", si, [
|
|
2077
2101
|
e.label ? (a(), D(G, {
|
|
2078
2102
|
key: 0,
|
|
2079
2103
|
text: e.label,
|
|
@@ -2085,7 +2109,7 @@ const Yl = /* @__PURE__ */ h(Ql, [["__scopeId", "data-v-18440f83"]]), Jl = { cla
|
|
|
2085
2109
|
"rich-text__headline",
|
|
2086
2110
|
e.leftAligned || e.bulletList || e.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
2087
2111
|
])
|
|
2088
|
-
},
|
|
2112
|
+
}, o(e.headline), 3)) : m("", !0),
|
|
2089
2113
|
t("div", {
|
|
2090
2114
|
class: u([
|
|
2091
2115
|
"rich-text__content",
|
|
@@ -2098,13 +2122,13 @@ const Yl = /* @__PURE__ */ h(Ql, [["__scopeId", "data-v-18440f83"]]), Jl = { cla
|
|
|
2098
2122
|
e.bulletList || e.image ? "rich-text__body--content-right" : ""
|
|
2099
2123
|
])
|
|
2100
2124
|
}, [
|
|
2101
|
-
|
|
2102
|
-
e.links ? (a(), s("div",
|
|
2103
|
-
|
|
2125
|
+
d(l.$slots, "rich-text-content"),
|
|
2126
|
+
e.links ? (a(), s("div", ri, [
|
|
2127
|
+
d(l.$slots, "rich-text-links")
|
|
2104
2128
|
])) : m("", !0)
|
|
2105
2129
|
], 2),
|
|
2106
|
-
e.bulletList ? (a(), s("div",
|
|
2107
|
-
|
|
2130
|
+
e.bulletList ? (a(), s("div", oi, [
|
|
2131
|
+
d(l.$slots, "rich-text-bullet-list")
|
|
2108
2132
|
])) : m("", !0),
|
|
2109
2133
|
e.image ? (a(), s("div", {
|
|
2110
2134
|
key: 1,
|
|
@@ -2115,7 +2139,7 @@ const Yl = /* @__PURE__ */ h(Ql, [["__scopeId", "data-v-18440f83"]]), Jl = { cla
|
|
|
2115
2139
|
}, [
|
|
2116
2140
|
p(L, null, {
|
|
2117
2141
|
default: $(() => [
|
|
2118
|
-
|
|
2142
|
+
d(l.$slots, "rich-text-image", A(M({ width: 865, height: 307 })))
|
|
2119
2143
|
]),
|
|
2120
2144
|
_: 3
|
|
2121
2145
|
})
|
|
@@ -2125,28 +2149,28 @@ const Yl = /* @__PURE__ */ h(Ql, [["__scopeId", "data-v-18440f83"]]), Jl = { cla
|
|
|
2125
2149
|
], 2));
|
|
2126
2150
|
}
|
|
2127
2151
|
});
|
|
2128
|
-
const
|
|
2129
|
-
const
|
|
2130
|
-
function
|
|
2131
|
-
return a(), s("div",
|
|
2132
|
-
t("div",
|
|
2133
|
-
t("div",
|
|
2134
|
-
t("div",
|
|
2152
|
+
const di = /* @__PURE__ */ h(ni, [["__scopeId", "data-v-7ecdc272"]]);
|
|
2153
|
+
const ci = {}, ui = { class: "rich-text" }, _i = { class: "rich-text__wrapper" }, hi = { class: "rich-text__content rich-text__content--left-aligned" }, vi = { class: "rich-text__body" };
|
|
2154
|
+
function mi(e, l) {
|
|
2155
|
+
return a(), s("div", ui, [
|
|
2156
|
+
t("div", _i, [
|
|
2157
|
+
t("div", hi, [
|
|
2158
|
+
t("div", vi, [
|
|
2135
2159
|
t("div", null, [
|
|
2136
|
-
|
|
2160
|
+
d(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
2137
2161
|
]),
|
|
2138
2162
|
t("div", null, [
|
|
2139
|
-
|
|
2163
|
+
d(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
2140
2164
|
])
|
|
2141
2165
|
])
|
|
2142
2166
|
])
|
|
2143
2167
|
])
|
|
2144
2168
|
]);
|
|
2145
2169
|
}
|
|
2146
|
-
const
|
|
2170
|
+
const fi = /* @__PURE__ */ h(ci, [["render", mi], ["__scopeId", "data-v-86986bf2"]]), gi = (e) => (O("data-v-df182fbb"), e = e(), z(), e), yi = { class: "timeline__wrapper" }, bi = { class: "timeline__content" }, pi = { class: "timeline__items" }, $i = { class: "timeline__item faded" }, ki = { class: "item__left" }, wi = /* @__PURE__ */ gi(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2147
2171
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2148
2172
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2149
|
-
], -1)),
|
|
2173
|
+
], -1)), xi = { class: "item__right" }, Si = ["innerHTML"], qi = /* @__PURE__ */ v({
|
|
2150
2174
|
__name: "timeline",
|
|
2151
2175
|
props: {
|
|
2152
2176
|
timelineItems: {
|
|
@@ -2155,38 +2179,38 @@ const oi = /* @__PURE__ */ h(ai, [["render", ni], ["__scopeId", "data-v-86986bf2
|
|
|
2155
2179
|
}
|
|
2156
2180
|
},
|
|
2157
2181
|
setup(e) {
|
|
2158
|
-
return
|
|
2159
|
-
const
|
|
2160
|
-
(
|
|
2161
|
-
|
|
2162
|
-
|
|
2182
|
+
return ne(() => {
|
|
2183
|
+
const l = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
2184
|
+
(i) => {
|
|
2185
|
+
i.forEach((n) => {
|
|
2186
|
+
n.isIntersecting && (n.target.classList.add("visible"), n.target.classList.remove("faded"), r.unobserve(n.target));
|
|
2163
2187
|
});
|
|
2164
2188
|
},
|
|
2165
2189
|
{
|
|
2166
2190
|
threshold: 1
|
|
2167
2191
|
}
|
|
2168
2192
|
);
|
|
2169
|
-
|
|
2170
|
-
r.observe(
|
|
2193
|
+
l.forEach((i) => {
|
|
2194
|
+
r.observe(i);
|
|
2171
2195
|
});
|
|
2172
|
-
}), (
|
|
2173
|
-
t("div",
|
|
2174
|
-
t("div",
|
|
2175
|
-
(a(!0), s(I, null, T(e.timelineItems, (
|
|
2176
|
-
t("div",
|
|
2177
|
-
|
|
2178
|
-
t("div",
|
|
2196
|
+
}), (l, r) => (a(), s("div", yi, [
|
|
2197
|
+
t("div", bi, [
|
|
2198
|
+
t("div", pi, [
|
|
2199
|
+
(a(!0), s(I, null, T(e.timelineItems, (i) => (a(), s("div", $i, [
|
|
2200
|
+
t("div", ki, o(i.year), 1),
|
|
2201
|
+
wi,
|
|
2202
|
+
t("div", xi, [
|
|
2179
2203
|
p(L, null, {
|
|
2180
2204
|
default: $(() => [
|
|
2181
|
-
|
|
2205
|
+
i.media.type === "image" ? d(l.$slots, "timeline-image", A(ee({ key: 0 }, { src: i.media.src, alt: i.media.alt })), void 0, !0) : m("", !0)
|
|
2182
2206
|
]),
|
|
2183
2207
|
_: 2
|
|
2184
2208
|
}, 1024),
|
|
2185
2209
|
t("div", {
|
|
2186
|
-
style: te([
|
|
2210
|
+
style: te([i.media.type === "none" ? "margin-top: 0px" : ""]),
|
|
2187
2211
|
class: "rich-text",
|
|
2188
|
-
innerHTML:
|
|
2189
|
-
}, null, 12,
|
|
2212
|
+
innerHTML: i.text
|
|
2213
|
+
}, null, 12, Si)
|
|
2190
2214
|
])
|
|
2191
2215
|
]))), 256))
|
|
2192
2216
|
])
|
|
@@ -2194,10 +2218,10 @@ const oi = /* @__PURE__ */ h(ai, [["render", ni], ["__scopeId", "data-v-86986bf2
|
|
|
2194
2218
|
]));
|
|
2195
2219
|
}
|
|
2196
2220
|
});
|
|
2197
|
-
const
|
|
2221
|
+
const Bi = /* @__PURE__ */ h(qi, [["__scopeId", "data-v-df182fbb"]]), Ii = { class: "triple-card-display__wrapper" }, Ti = {
|
|
2198
2222
|
key: 0,
|
|
2199
2223
|
class: "triple-card__content"
|
|
2200
|
-
},
|
|
2224
|
+
}, Li = { key: 0 }, Ci = { key: 1 }, Vi = { class: "triple-card__cards" }, Ai = /* @__PURE__ */ v({
|
|
2201
2225
|
__name: "triple-card-display",
|
|
2202
2226
|
props: {
|
|
2203
2227
|
headline: {
|
|
@@ -2214,31 +2238,31 @@ const bi = /* @__PURE__ */ h(yi, [["__scopeId", "data-v-df182fbb"]]), pi = { cla
|
|
|
2214
2238
|
}
|
|
2215
2239
|
},
|
|
2216
2240
|
setup(e) {
|
|
2217
|
-
return (
|
|
2241
|
+
return (l, r) => (a(), s("div", {
|
|
2218
2242
|
class: u([
|
|
2219
2243
|
"triple-card-display",
|
|
2220
2244
|
e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
|
|
2221
2245
|
])
|
|
2222
2246
|
}, [
|
|
2223
|
-
t("div",
|
|
2224
|
-
e.headline || e.paragraph ? (a(), s("div",
|
|
2225
|
-
e.headline ? (a(), s("h2",
|
|
2226
|
-
e.paragraph ? (a(), s("p",
|
|
2247
|
+
t("div", Ii, [
|
|
2248
|
+
e.headline || e.paragraph ? (a(), s("div", Ti, [
|
|
2249
|
+
e.headline ? (a(), s("h2", Li, o(e.headline), 1)) : m("", !0),
|
|
2250
|
+
e.paragraph ? (a(), s("p", Ci, o(e.paragraph), 1)) : m("", !0)
|
|
2227
2251
|
])) : m("", !0),
|
|
2228
|
-
t("div",
|
|
2229
|
-
|
|
2252
|
+
t("div", Vi, [
|
|
2253
|
+
d(l.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
2230
2254
|
])
|
|
2231
2255
|
])
|
|
2232
2256
|
], 2));
|
|
2233
2257
|
}
|
|
2234
2258
|
});
|
|
2235
|
-
const
|
|
2259
|
+
const Di = /* @__PURE__ */ h(Ai, [["__scopeId", "data-v-e7b427f6"]]), Mi = { class: "vimeo" }, Oi = { class: "vimeo__wrapper" }, zi = {
|
|
2236
2260
|
key: 0,
|
|
2237
2261
|
class: "vimeo__headline"
|
|
2238
|
-
},
|
|
2262
|
+
}, Fi = {
|
|
2239
2263
|
key: 1,
|
|
2240
2264
|
class: "vimeo__description"
|
|
2241
|
-
},
|
|
2265
|
+
}, Pi = /* @__PURE__ */ v({
|
|
2242
2266
|
__name: "vimeo",
|
|
2243
2267
|
props: {
|
|
2244
2268
|
headline: {
|
|
@@ -2249,16 +2273,16 @@ const qi = /* @__PURE__ */ h(Si, [["__scopeId", "data-v-e7b427f6"]]), Bi = { cla
|
|
|
2249
2273
|
}
|
|
2250
2274
|
},
|
|
2251
2275
|
setup(e) {
|
|
2252
|
-
return (
|
|
2253
|
-
t("div",
|
|
2254
|
-
e.headline ? (a(), s("h2",
|
|
2255
|
-
|
|
2256
|
-
e.description ? (a(), s("p",
|
|
2276
|
+
return (l, r) => (a(), s("div", Mi, [
|
|
2277
|
+
t("div", Oi, [
|
|
2278
|
+
e.headline ? (a(), s("h2", zi, o(e.headline), 1)) : m("", !0),
|
|
2279
|
+
d(l.$slots, "vimeo-content", {}, void 0, !0),
|
|
2280
|
+
e.description ? (a(), s("p", Fi, o(e.description), 1)) : m("", !0)
|
|
2257
2281
|
])
|
|
2258
2282
|
]));
|
|
2259
2283
|
}
|
|
2260
2284
|
});
|
|
2261
|
-
const
|
|
2285
|
+
const Ei = /* @__PURE__ */ h(Pi, [["__scopeId", "data-v-59fa125d"]]), Hi = { class: "not-found__wrapper" }, Ni = { class: "not-found__content" }, Ri = { class: "not-found__headline" }, ji = { class: "not-found__body" }, Ki = /* @__PURE__ */ v({
|
|
2262
2286
|
__name: "404",
|
|
2263
2287
|
props: {
|
|
2264
2288
|
headline: {
|
|
@@ -2267,17 +2291,17 @@ const Vi = /* @__PURE__ */ h(Ci, [["__scopeId", "data-v-59fa125d"]]), Ai = { cla
|
|
|
2267
2291
|
}
|
|
2268
2292
|
},
|
|
2269
2293
|
setup(e) {
|
|
2270
|
-
return (
|
|
2271
|
-
t("div",
|
|
2272
|
-
t("h1",
|
|
2273
|
-
t("div",
|
|
2274
|
-
|
|
2294
|
+
return (l, r) => (a(), s("div", Hi, [
|
|
2295
|
+
t("div", Ni, [
|
|
2296
|
+
t("h1", Ri, o(e.headline), 1),
|
|
2297
|
+
t("div", ji, [
|
|
2298
|
+
d(l.$slots, "not-found-body", {}, void 0, !0)
|
|
2275
2299
|
])
|
|
2276
2300
|
])
|
|
2277
2301
|
]));
|
|
2278
2302
|
}
|
|
2279
2303
|
});
|
|
2280
|
-
const
|
|
2304
|
+
const Ui = /* @__PURE__ */ h(Ki, [["__scopeId", "data-v-dc0a59da"]]), Gi = { class: "filter__wrapper" }, Wi = { class: "filter__content" }, Qi = { class: "filter__dropdowns" }, Yi = { class: "filter__chips" }, Ji = /* @__PURE__ */ v({
|
|
2281
2305
|
__name: "filter",
|
|
2282
2306
|
props: {
|
|
2283
2307
|
hasChips: {
|
|
@@ -2287,29 +2311,29 @@ const Pi = /* @__PURE__ */ h(zi, [["__scopeId", "data-v-dc0a59da"]]), Fi = { cla
|
|
|
2287
2311
|
},
|
|
2288
2312
|
emits: ["clearFilters"],
|
|
2289
2313
|
setup(e) {
|
|
2290
|
-
return (
|
|
2291
|
-
t("div",
|
|
2292
|
-
t("div",
|
|
2293
|
-
|
|
2314
|
+
return (l, r) => (a(), s("div", Gi, [
|
|
2315
|
+
t("div", Wi, [
|
|
2316
|
+
t("div", Qi, [
|
|
2317
|
+
d(l.$slots, "filter-dropdowns")
|
|
2294
2318
|
]),
|
|
2295
|
-
t("div",
|
|
2296
|
-
|
|
2319
|
+
t("div", Yi, [
|
|
2320
|
+
d(l.$slots, "filter-chips"),
|
|
2297
2321
|
e.hasChips ? (a(), s("button", {
|
|
2298
2322
|
key: 0,
|
|
2299
2323
|
class: "filter__clear",
|
|
2300
|
-
onClick: r[0] || (r[0] = (
|
|
2324
|
+
onClick: r[0] || (r[0] = (i) => l.$emit("clearFilters"))
|
|
2301
2325
|
}, " Remove all filters ")) : m("", !0)
|
|
2302
2326
|
])
|
|
2303
2327
|
])
|
|
2304
2328
|
]));
|
|
2305
2329
|
}
|
|
2306
2330
|
});
|
|
2307
|
-
const
|
|
2331
|
+
const Xi = /* @__PURE__ */ h(Ji, [["__scopeId", "data-v-73ba9888"]]), H = (e) => (O("data-v-d2cab33d"), e = e(), z(), e), Zi = { class: "footer__wrapper" }, es = { class: "footer__content" }, ts = { class: "footer__sections" }, as = { class: "section" }, ls = { class: "section__title" }, is = { class: "section__list" }, ss = { class: "section" }, rs = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), os = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), ns = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), ds = /* @__PURE__ */ H(() => /* @__PURE__ */ t("br", null, null, -1)), cs = /* @__PURE__ */ H(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), us = /* @__PURE__ */ H(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), _s = { class: "footer__bottom" }, hs = { class: "copyright" }, vs = { class: "footer__policy" }, ms = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", null, [
|
|
2308
2332
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
2309
2333
|
/* @__PURE__ */ j("Change region")
|
|
2310
|
-
], -1)),
|
|
2311
|
-
|
|
2312
|
-
],
|
|
2334
|
+
], -1)), fs = [
|
|
2335
|
+
ms
|
|
2336
|
+
], gs = { class: "footer__social" }, ys = ["href", "aria-label"], bs = /* @__PURE__ */ v({
|
|
2313
2337
|
__name: "footer",
|
|
2314
2338
|
props: {
|
|
2315
2339
|
footerSections: {
|
|
@@ -2326,45 +2350,45 @@ const ji = /* @__PURE__ */ h(Ri, [["__scopeId", "data-v-73ba9888"]]), N = (e) =>
|
|
|
2326
2350
|
type: Array,
|
|
2327
2351
|
default: [],
|
|
2328
2352
|
validator: (e) => {
|
|
2329
|
-
const
|
|
2353
|
+
const l = [
|
|
2330
2354
|
"linkedin",
|
|
2331
2355
|
"facebook",
|
|
2332
2356
|
"instagram",
|
|
2333
2357
|
"twitter",
|
|
2334
2358
|
"youtube"
|
|
2335
2359
|
];
|
|
2336
|
-
return e.every((r) =>
|
|
2360
|
+
return e.every((r) => l.includes(r.title));
|
|
2337
2361
|
}
|
|
2338
2362
|
}
|
|
2339
2363
|
},
|
|
2340
2364
|
emits: ["changeRegionClicked"],
|
|
2341
2365
|
setup(e) {
|
|
2342
|
-
return (
|
|
2343
|
-
t("footer",
|
|
2344
|
-
t("div",
|
|
2345
|
-
(a(!0), s(I, null, T(e.footerSections, (
|
|
2346
|
-
t("span",
|
|
2366
|
+
return (l, r) => (a(), s("div", Zi, [
|
|
2367
|
+
t("footer", es, [
|
|
2368
|
+
t("div", ts, [
|
|
2369
|
+
(a(!0), s(I, null, T(e.footerSections, (i) => (a(), s("div", as, [
|
|
2370
|
+
t("span", ls, o(i.title), 1),
|
|
2347
2371
|
t("nav", null, [
|
|
2348
|
-
t("ul",
|
|
2349
|
-
|
|
2350
|
-
links:
|
|
2372
|
+
t("ul", is, [
|
|
2373
|
+
d(l.$slots, "section-links", {
|
|
2374
|
+
links: i.links
|
|
2351
2375
|
})
|
|
2352
2376
|
])
|
|
2353
2377
|
])
|
|
2354
2378
|
]))), 256)),
|
|
2355
|
-
t("div",
|
|
2356
|
-
|
|
2379
|
+
t("div", ss, [
|
|
2380
|
+
rs,
|
|
2357
2381
|
t("address", null, [
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2382
|
+
os,
|
|
2383
|
+
ns,
|
|
2384
|
+
ds,
|
|
2361
2385
|
p(V, {
|
|
2362
2386
|
class: "footer__contact",
|
|
2363
2387
|
linkType: "regular-light",
|
|
2364
2388
|
underline: "false"
|
|
2365
2389
|
}, {
|
|
2366
2390
|
default: $(() => [
|
|
2367
|
-
|
|
2391
|
+
cs
|
|
2368
2392
|
]),
|
|
2369
2393
|
_: 1
|
|
2370
2394
|
}),
|
|
@@ -2374,41 +2398,41 @@ const ji = /* @__PURE__ */ h(Ri, [["__scopeId", "data-v-73ba9888"]]), N = (e) =>
|
|
|
2374
2398
|
underline: "false"
|
|
2375
2399
|
}, {
|
|
2376
2400
|
default: $(() => [
|
|
2377
|
-
|
|
2401
|
+
us
|
|
2378
2402
|
]),
|
|
2379
2403
|
_: 1
|
|
2380
2404
|
})
|
|
2381
2405
|
])
|
|
2382
2406
|
])
|
|
2383
2407
|
]),
|
|
2384
|
-
t("div",
|
|
2385
|
-
t("p",
|
|
2386
|
-
t("div",
|
|
2408
|
+
t("div", _s, [
|
|
2409
|
+
t("p", hs, "© MiR " + o((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2410
|
+
t("div", vs, [
|
|
2387
2411
|
t("button", {
|
|
2388
2412
|
class: "footer__language-switcher",
|
|
2389
|
-
onClick: r[0] || (r[0] = (
|
|
2390
|
-
},
|
|
2391
|
-
|
|
2392
|
-
|
|
2413
|
+
onClick: r[0] || (r[0] = (i) => l.$emit("changeRegionClicked"))
|
|
2414
|
+
}, fs),
|
|
2415
|
+
d(l.$slots, "footer-privacy-link"),
|
|
2416
|
+
d(l.$slots, "footer-cookie-link")
|
|
2393
2417
|
]),
|
|
2394
|
-
t("div",
|
|
2395
|
-
(a(!0), s(I, null, T(e.socialMedia, (
|
|
2418
|
+
t("div", gs, [
|
|
2419
|
+
(a(!0), s(I, null, T(e.socialMedia, (i) => (a(), D(V, {
|
|
2396
2420
|
underline: "false",
|
|
2397
2421
|
linkType: "regular"
|
|
2398
2422
|
}, {
|
|
2399
2423
|
default: $(() => [
|
|
2400
2424
|
t("a", {
|
|
2401
|
-
href:
|
|
2402
|
-
"aria-label":
|
|
2425
|
+
href: i.url,
|
|
2426
|
+
"aria-label": i.title
|
|
2403
2427
|
}, [
|
|
2404
2428
|
t("i", {
|
|
2405
2429
|
width: "19",
|
|
2406
2430
|
height: "14",
|
|
2407
2431
|
class: u(["footer__social--icon", [
|
|
2408
|
-
|
|
2432
|
+
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" : ""
|
|
2409
2433
|
]])
|
|
2410
2434
|
}, null, 2)
|
|
2411
|
-
], 8,
|
|
2435
|
+
], 8, ys)
|
|
2412
2436
|
]),
|
|
2413
2437
|
_: 2
|
|
2414
2438
|
}, 1024))), 256))
|
|
@@ -2418,19 +2442,19 @@ const ji = /* @__PURE__ */ h(Ri, [["__scopeId", "data-v-73ba9888"]]), N = (e) =>
|
|
|
2418
2442
|
]));
|
|
2419
2443
|
}
|
|
2420
2444
|
});
|
|
2421
|
-
const
|
|
2445
|
+
const ps = /* @__PURE__ */ h(bs, [["__scopeId", "data-v-d2cab33d"]]), $s = { class: "header__wrapper" }, ks = { class: "nav-wrapper" }, ws = { class: "mir-link-logo" }, xs = { class: "main-nav-items" }, Ss = {
|
|
2422
2446
|
id: "menu-dropdown",
|
|
2423
2447
|
ref: "dropdownDiv"
|
|
2424
|
-
},
|
|
2448
|
+
}, qs = {
|
|
2425
2449
|
key: 0,
|
|
2426
2450
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2427
2451
|
alt: "dropdownarrow"
|
|
2428
|
-
},
|
|
2452
|
+
}, Bs = {
|
|
2429
2453
|
key: 1,
|
|
2430
2454
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2431
2455
|
alt: "dropdownarrow",
|
|
2432
2456
|
style: { transform: "rotate(180deg)" }
|
|
2433
|
-
},
|
|
2457
|
+
}, Is = { class: "dropdown-content" }, Ts = { class: "nav-search-wrapper" }, Ls = ["src"], Cs = { class: "mobile-logo-search-burger-wrapper" }, Vs = { class: "mobile-mir-link-logo" }, As = { class: "mobile-search-wrapper" }, Ds = ["src"], Ms = ["onClick"], Os = ["src"], zs = { class: "mobile-menu-content-wrapper" }, Fs = { class: "mobile-dropdown-content" }, Ps = /* @__PURE__ */ v({
|
|
2434
2458
|
__name: "header",
|
|
2435
2459
|
props: {
|
|
2436
2460
|
burgerState: {
|
|
@@ -2447,22 +2471,22 @@ const _s = /* @__PURE__ */ h(us, [["__scopeId", "data-v-d2cab33d"]]), hs = { cla
|
|
|
2447
2471
|
"update:showDropDown",
|
|
2448
2472
|
"clickSearch"
|
|
2449
2473
|
],
|
|
2450
|
-
setup(e, { expose:
|
|
2451
|
-
const
|
|
2474
|
+
setup(e, { expose: l, emit: r }) {
|
|
2475
|
+
const i = e;
|
|
2452
2476
|
w("");
|
|
2453
|
-
let
|
|
2477
|
+
let n = null, _ = w(i.burgerState), b = w(i.showDropDown);
|
|
2454
2478
|
se(
|
|
2455
|
-
() =>
|
|
2479
|
+
() => i.burgerState,
|
|
2456
2480
|
(k) => _.value = k
|
|
2457
2481
|
), se(
|
|
2458
|
-
() =>
|
|
2482
|
+
() => i.showDropDown,
|
|
2459
2483
|
(k) => b.value = k
|
|
2460
|
-
),
|
|
2461
|
-
|
|
2484
|
+
), ne(() => {
|
|
2485
|
+
n = (k) => {
|
|
2462
2486
|
k.target.closest("#menu-dropdown") || (b.value = !1);
|
|
2463
|
-
}, window.addEventListener("click",
|
|
2487
|
+
}, window.addEventListener("click", n);
|
|
2464
2488
|
}), pe(() => {
|
|
2465
|
-
|
|
2489
|
+
n !== null && window.removeEventListener("click", n);
|
|
2466
2490
|
});
|
|
2467
2491
|
function C() {
|
|
2468
2492
|
b.value = !b.value, r("update:showDropDown", b.value);
|
|
@@ -2470,67 +2494,67 @@ const _s = /* @__PURE__ */ h(us, [["__scopeId", "data-v-d2cab33d"]]), hs = { cla
|
|
|
2470
2494
|
function S() {
|
|
2471
2495
|
_.value = !_.value, r("update:burgerState", _.value);
|
|
2472
2496
|
}
|
|
2473
|
-
let
|
|
2497
|
+
let g = w(null), q = w(null);
|
|
2474
2498
|
function X() {
|
|
2475
|
-
|
|
2499
|
+
g.value && g.value.blur();
|
|
2476
2500
|
}
|
|
2477
|
-
return
|
|
2501
|
+
return l({
|
|
2478
2502
|
defocusSearchButton: X
|
|
2479
|
-
}), (k,
|
|
2503
|
+
}), (k, N) => (a(), s("div", $s, [
|
|
2480
2504
|
t("nav", null, [
|
|
2481
|
-
t("div",
|
|
2482
|
-
t("div",
|
|
2483
|
-
|
|
2505
|
+
t("div", ks, [
|
|
2506
|
+
t("div", ws, [
|
|
2507
|
+
d(k.$slots, "link-logo", {}, void 0, !0)
|
|
2484
2508
|
]),
|
|
2485
|
-
t("ul",
|
|
2486
|
-
|
|
2509
|
+
t("ul", xs, [
|
|
2510
|
+
d(k.$slots, "main-nav-items", {}, void 0, !0)
|
|
2487
2511
|
]),
|
|
2488
|
-
t("div",
|
|
2512
|
+
t("div", Ss, [
|
|
2489
2513
|
t("button", {
|
|
2490
2514
|
onClick: C,
|
|
2491
2515
|
class: "nav-dropdown-btn"
|
|
2492
2516
|
}, [
|
|
2493
|
-
|
|
2494
|
-
B(b) == !1 ? (a(), s("img",
|
|
2517
|
+
d(k.$slots, "dropdown-title", {}, void 0, !0),
|
|
2518
|
+
B(b) == !1 ? (a(), s("img", qs)) : (a(), s("img", Bs))
|
|
2495
2519
|
]),
|
|
2496
|
-
Y(t("div",
|
|
2497
|
-
|
|
2520
|
+
Y(t("div", Is, [
|
|
2521
|
+
d(k.$slots, "dropdown-links", {}, void 0, !0)
|
|
2498
2522
|
], 512), [
|
|
2499
2523
|
[Z, B(b)]
|
|
2500
2524
|
])
|
|
2501
2525
|
], 512),
|
|
2502
|
-
t("div",
|
|
2526
|
+
t("div", Ts, [
|
|
2503
2527
|
t("button", {
|
|
2504
2528
|
class: "search-icon",
|
|
2505
|
-
onClick:
|
|
2506
|
-
var
|
|
2507
|
-
return k.$emit("clickSearch"), (
|
|
2529
|
+
onClick: N[0] || (N[0] = (W) => {
|
|
2530
|
+
var P;
|
|
2531
|
+
return k.$emit("clickSearch"), (P = B(g)) == null ? void 0 : P.blur();
|
|
2508
2532
|
}),
|
|
2509
2533
|
ref_key: "navSearchButton",
|
|
2510
|
-
ref:
|
|
2534
|
+
ref: g
|
|
2511
2535
|
}, [
|
|
2512
2536
|
t("img", {
|
|
2513
2537
|
src: B(_) == !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",
|
|
2514
2538
|
alt: "search icon",
|
|
2515
2539
|
width: "20",
|
|
2516
2540
|
height: "20"
|
|
2517
|
-
}, null, 8,
|
|
2541
|
+
}, null, 8, Ls)
|
|
2518
2542
|
], 512)
|
|
2519
2543
|
])
|
|
2520
2544
|
]),
|
|
2521
2545
|
t("div", {
|
|
2522
2546
|
class: u(["mobile-nav-wrapper", B(_) == !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2523
2547
|
}, [
|
|
2524
|
-
t("div",
|
|
2525
|
-
t("div",
|
|
2526
|
-
|
|
2548
|
+
t("div", Cs, [
|
|
2549
|
+
t("div", Vs, [
|
|
2550
|
+
d(k.$slots, "link-logo", {}, void 0, !0)
|
|
2527
2551
|
]),
|
|
2528
|
-
t("div",
|
|
2552
|
+
t("div", As, [
|
|
2529
2553
|
t("button", {
|
|
2530
2554
|
class: "search-icon",
|
|
2531
|
-
onClick:
|
|
2532
|
-
var
|
|
2533
|
-
return k.$emit("clickSearch"), (
|
|
2555
|
+
onClick: N[1] || (N[1] = (W) => {
|
|
2556
|
+
var P;
|
|
2557
|
+
return k.$emit("clickSearch"), (P = B(q)) == null ? void 0 : P.blur();
|
|
2534
2558
|
}),
|
|
2535
2559
|
ref_key: "mobileSearchButton",
|
|
2536
2560
|
ref: q,
|
|
@@ -2541,7 +2565,7 @@ const _s = /* @__PURE__ */ h(us, [["__scopeId", "data-v-d2cab33d"]]), hs = { cla
|
|
|
2541
2565
|
alt: "search icon",
|
|
2542
2566
|
width: "20",
|
|
2543
2567
|
height: "20"
|
|
2544
|
-
}, null, 8,
|
|
2568
|
+
}, null, 8, Ds)
|
|
2545
2569
|
], 512)
|
|
2546
2570
|
]),
|
|
2547
2571
|
t("button", {
|
|
@@ -2554,16 +2578,16 @@ const _s = /* @__PURE__ */ h(us, [["__scopeId", "data-v-d2cab33d"]]), hs = { cla
|
|
|
2554
2578
|
height: "20",
|
|
2555
2579
|
alt: "burger menu line icon",
|
|
2556
2580
|
src: B(_) == !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"
|
|
2557
|
-
}, null, 8,
|
|
2558
|
-
], 8,
|
|
2581
|
+
}, null, 8, Os)
|
|
2582
|
+
], 8, Ms)
|
|
2559
2583
|
]),
|
|
2560
|
-
Y(t("div",
|
|
2584
|
+
Y(t("div", zs, [
|
|
2561
2585
|
t("ul", null, [
|
|
2562
|
-
|
|
2586
|
+
d(k.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2563
2587
|
]),
|
|
2564
|
-
t("ul",
|
|
2565
|
-
|
|
2566
|
-
|
|
2588
|
+
t("ul", Fs, [
|
|
2589
|
+
d(k.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2590
|
+
d(k.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2567
2591
|
])
|
|
2568
2592
|
], 512), [
|
|
2569
2593
|
[Z, B(_)]
|
|
@@ -2573,7 +2597,7 @@ const _s = /* @__PURE__ */ h(us, [["__scopeId", "data-v-d2cab33d"]]), hs = { cla
|
|
|
2573
2597
|
]));
|
|
2574
2598
|
}
|
|
2575
2599
|
});
|
|
2576
|
-
const
|
|
2600
|
+
const Es = /* @__PURE__ */ h(Ps, [["__scopeId", "data-v-98560ea5"]]), Hs = { class: "language__wrapper" }, Ns = { class: "language__content" }, Rs = { class: "language__headline" }, js = { class: "language__paragraph" }, Ks = /* @__PURE__ */ v({
|
|
2577
2601
|
__name: "language-switcher",
|
|
2578
2602
|
props: {
|
|
2579
2603
|
headline: {
|
|
@@ -2584,16 +2608,16 @@ const Vs = /* @__PURE__ */ h(Cs, [["__scopeId", "data-v-98560ea5"]]), As = { cla
|
|
|
2584
2608
|
}
|
|
2585
2609
|
},
|
|
2586
2610
|
setup(e) {
|
|
2587
|
-
return (
|
|
2588
|
-
t("div",
|
|
2589
|
-
t("h2",
|
|
2590
|
-
t("p",
|
|
2591
|
-
|
|
2611
|
+
return (l, r) => (a(), s("div", Hs, [
|
|
2612
|
+
t("div", Ns, [
|
|
2613
|
+
t("h2", Rs, o(e.headline), 1),
|
|
2614
|
+
t("p", js, o(e.paragraph), 1),
|
|
2615
|
+
d(l.$slots, "language-links", {}, void 0, !0)
|
|
2592
2616
|
])
|
|
2593
2617
|
]));
|
|
2594
2618
|
}
|
|
2595
2619
|
});
|
|
2596
|
-
const
|
|
2620
|
+
const Us = /* @__PURE__ */ h(Ks, [["__scopeId", "data-v-a76ba727"]]), Gs = { class: "pagination__wrapper" }, Ws = { class: "pagination__content" }, Qs = /* @__PURE__ */ v({
|
|
2597
2621
|
__name: "pagination",
|
|
2598
2622
|
props: {
|
|
2599
2623
|
isPreviousDisabled: {
|
|
@@ -2607,17 +2631,17 @@ const Ps = /* @__PURE__ */ h(zs, [["__scopeId", "data-v-a76ba727"]]), Fs = { cla
|
|
|
2607
2631
|
},
|
|
2608
2632
|
emits: ["previous", "next"],
|
|
2609
2633
|
setup(e) {
|
|
2610
|
-
return (
|
|
2611
|
-
t("div",
|
|
2634
|
+
return (l, r) => (a(), s("div", Gs, [
|
|
2635
|
+
t("div", Ws, [
|
|
2612
2636
|
p(J, {
|
|
2613
|
-
onClick: r[0] || (r[0] = (
|
|
2637
|
+
onClick: r[0] || (r[0] = (i) => l.$emit("previous")),
|
|
2614
2638
|
disabled: e.isPreviousDisabled,
|
|
2615
2639
|
variant: "previous",
|
|
2616
2640
|
ariaLabel: "previous"
|
|
2617
2641
|
}, null, 8, ["disabled"]),
|
|
2618
|
-
|
|
2642
|
+
d(l.$slots, "pagination-numbers"),
|
|
2619
2643
|
p(J, {
|
|
2620
|
-
onClick: r[1] || (r[1] = (
|
|
2644
|
+
onClick: r[1] || (r[1] = (i) => l.$emit("next")),
|
|
2621
2645
|
disabled: e.isNextDisabled,
|
|
2622
2646
|
variant: "next",
|
|
2623
2647
|
ariaLabel: "next"
|
|
@@ -2626,23 +2650,23 @@ const Ps = /* @__PURE__ */ h(zs, [["__scopeId", "data-v-a76ba727"]]), Fs = { cla
|
|
|
2626
2650
|
]));
|
|
2627
2651
|
}
|
|
2628
2652
|
});
|
|
2629
|
-
const
|
|
2630
|
-
const
|
|
2631
|
-
function
|
|
2632
|
-
return a(), s("div",
|
|
2633
|
-
|
|
2653
|
+
const Ys = /* @__PURE__ */ h(Qs, [["__scopeId", "data-v-9f08dcf6"]]);
|
|
2654
|
+
const Js = {}, Xs = { class: "search__wrapper" };
|
|
2655
|
+
function Zs(e, l) {
|
|
2656
|
+
return a(), s("div", Xs, [
|
|
2657
|
+
d(e.$slots, "default", { class: "search__content" })
|
|
2634
2658
|
]);
|
|
2635
2659
|
}
|
|
2636
|
-
const
|
|
2660
|
+
const er = /* @__PURE__ */ h(Js, [["render", Zs], ["__scopeId", "data-v-31f35da9"]]), ar = {
|
|
2637
2661
|
install: (e) => {
|
|
2638
|
-
e.component("AtomButton", J), e.component("AtomCheckbox", Ie), e.component("AtomChip", Ae), e.component("AtomDropdown",
|
|
2662
|
+
e.component("AtomButton", J), e.component("AtomCheckbox", Ie), e.component("AtomChip", Ae), e.component("AtomDropdown", He), e.component("AtomImage", L), e.component("AtomLabel", G), e.component("AtomLink", V), e.component("AtomRadioButton", Ze), e.component("AtomSelect", st), e.component("AtomSlider", mt), e.component("AtomTextarea", wt), e.component("AtomTextField", Dt), e.component("AtomVideo", K), e.component("MoleculeAddress", Qt), e.component("MoleculeBulletList", ea), e.component("MoleculeCard", sa), e.component("MoleculeEventCard", ha), e.component("MoleculeModal", de), e.component("MoleculeTextCard", ya), e.component("BlockFacts", Ia), e.component("BlockFeatures", za), e.component("BlockFormScript", Ka), e.component("BlockHeadline", nl), e.component("BlockHero", bl), e.component("BlockImage", Ja), e.component("BlockImageGallery", il), e.component("BlockLogoWall", Tl), e.component("BlockMicroStories", Cl), e.component("BlockPolicy", Ol), e.component("BlockProductHero", Nl), e.component("BlockPromo", Kl), e.component("BlockQuote", ii), e.component("BlockRichText", di), e.component("BlockRichTextColumns", fi), e.component("BlockTimeline", Bi), e.component("BlockTripleCardDisplay", Di), e.component("BlockVimeo", Ei), e.component("Organism404", Ui), e.component("OrganismFilter", Xi), e.component("OrganismFooter", ps), e.component("OrganismHeader", Es), e.component("OrganismLanguageSwitcher", Us), e.component("OrganismPagination", Ys), e.component("OrganismSearch", er);
|
|
2639
2663
|
}
|
|
2640
2664
|
};
|
|
2641
2665
|
export {
|
|
2642
2666
|
J as AtomButton,
|
|
2643
2667
|
Ie as AtomCheckbox,
|
|
2644
2668
|
Ae as AtomChip,
|
|
2645
|
-
|
|
2669
|
+
He as AtomDropdown,
|
|
2646
2670
|
L as AtomImage,
|
|
2647
2671
|
G as AtomLabel,
|
|
2648
2672
|
V as AtomLink,
|
|
@@ -2654,33 +2678,34 @@ export {
|
|
|
2654
2678
|
K as AtomVideo,
|
|
2655
2679
|
Ia as BlockFacts,
|
|
2656
2680
|
za as BlockFeatures,
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2681
|
+
Ka as BlockFormScript,
|
|
2682
|
+
nl as BlockHeadline,
|
|
2683
|
+
bl as BlockHero,
|
|
2684
|
+
Ja as BlockImage,
|
|
2685
|
+
il as BlockImageGallery,
|
|
2686
|
+
Tl as BlockLogoWall,
|
|
2687
|
+
Cl as BlockMicroStories,
|
|
2688
|
+
Ol as BlockPolicy,
|
|
2689
|
+
Nl as BlockProductHero,
|
|
2690
|
+
Kl as BlockPromo,
|
|
2691
|
+
ii as BlockQuote,
|
|
2692
|
+
di as BlockRichText,
|
|
2693
|
+
fi as BlockRichTextColumns,
|
|
2694
|
+
Bi as BlockTimeline,
|
|
2695
|
+
Di as BlockTripleCardDisplay,
|
|
2696
|
+
Ei as BlockVimeo,
|
|
2672
2697
|
Qt as MoleculeAddress,
|
|
2673
2698
|
ea as MoleculeBulletList,
|
|
2674
2699
|
sa as MoleculeCard,
|
|
2675
2700
|
ha as MoleculeEventCard,
|
|
2676
2701
|
de as MoleculeModal,
|
|
2677
2702
|
ya as MoleculeTextCard,
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2703
|
+
Ui as Organism404,
|
|
2704
|
+
Xi as OrganismFilter,
|
|
2705
|
+
ps as OrganismFooter,
|
|
2706
|
+
Es as OrganismHeader,
|
|
2707
|
+
Us as OrganismLanguageSwitcher,
|
|
2708
|
+
Ys as OrganismPagination,
|
|
2709
|
+
er as OrganismSearch,
|
|
2710
|
+
ar as default
|
|
2686
2711
|
};
|