@mirweb/mir-web-components 0.15.64 → 0.15.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as h, openBlock as
|
|
1
|
+
import { defineComponent as h, openBlock as a, createElementBlock as r, normalizeClass as c, toDisplayString as o, createElementVNode as t, renderSlot as u, pushScopeId as D, popScopeId as M, computed as P, createTextVNode as N, ref as x, withDirectives as U, Fragment as q, renderList as I, vShow as G, normalizeProps as V, guardReactiveProps as A, mergeProps as Y, createVNode as p, Transition as fe, withCtx as $, withModifiers as ae, createCommentVNode as m, watchEffect as le, withKeys as ye, createBlock as z, useSlots as be, normalizeStyle as Q, isRef as ee, unref as S, onMounted as ie, watch as te, onUnmounted as pe } from "vue";
|
|
2
2
|
const $e = ["aria-label"], ke = /* @__PURE__ */ h({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -24,7 +24,7 @@ const $e = ["aria-label"], ke = /* @__PURE__ */ h({
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
setup(e) {
|
|
27
|
-
return (i, s) => (
|
|
27
|
+
return (i, s) => (a(), r("button", {
|
|
28
28
|
class: c(["button", "button--" + e.variant]),
|
|
29
29
|
"aria-label": e.ariaLabel
|
|
30
30
|
}, o(e.variant == "close" ? "" : e.buttonText), 11, $e));
|
|
@@ -32,8 +32,8 @@ const $e = ["aria-label"], ke = /* @__PURE__ */ h({
|
|
|
32
32
|
});
|
|
33
33
|
const v = (e, i) => {
|
|
34
34
|
const s = e.__vccOpts || e;
|
|
35
|
-
for (const [
|
|
36
|
-
s[
|
|
35
|
+
for (const [l, n] of i)
|
|
36
|
+
s[l] = n;
|
|
37
37
|
return s;
|
|
38
38
|
}, W = /* @__PURE__ */ v(ke, [["__scopeId", "data-v-c2f14f04"]]), we = (e) => (D("data-v-c5f3542e"), e = e(), M(), e), xe = ["name", "value", "disabled", "required", "id"], Se = ["for"], qe = /* @__PURE__ */ we(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Be = /* @__PURE__ */ h({
|
|
39
39
|
__name: "checkbox",
|
|
@@ -62,11 +62,11 @@ const v = (e, i) => {
|
|
|
62
62
|
},
|
|
63
63
|
emits: ["input"],
|
|
64
64
|
setup(e, { emit: i }) {
|
|
65
|
-
const s = (
|
|
66
|
-
const n =
|
|
65
|
+
const s = (l) => {
|
|
66
|
+
const n = l.target;
|
|
67
67
|
i("input", n.checked);
|
|
68
68
|
};
|
|
69
|
-
return (
|
|
69
|
+
return (l, n) => (a(), r("div", {
|
|
70
70
|
class: c(["checkbox__wrapper", e.disabled ? "disabled" : ""])
|
|
71
71
|
}, [
|
|
72
72
|
t("input", {
|
|
@@ -84,7 +84,7 @@ const v = (e, i) => {
|
|
|
84
84
|
class: c(["checkbox__label", e.required ? "required" : ""])
|
|
85
85
|
}, [
|
|
86
86
|
qe,
|
|
87
|
-
u(
|
|
87
|
+
u(l.$slots, "default", {}, void 0, !0)
|
|
88
88
|
], 10, Se)
|
|
89
89
|
], 2));
|
|
90
90
|
}
|
|
@@ -103,14 +103,14 @@ const Ie = /* @__PURE__ */ v(Be, [["__scopeId", "data-v-c5f3542e"]]), Le = (e) =
|
|
|
103
103
|
},
|
|
104
104
|
emits: ["remove-chip"],
|
|
105
105
|
setup(e, { emit: i }) {
|
|
106
|
-
const s = e,
|
|
107
|
-
return (n, _) => (
|
|
106
|
+
const s = e, l = P(() => `Chip: ${s.text}`);
|
|
107
|
+
return (n, _) => (a(), r("div", {
|
|
108
108
|
class: "chip__wrapper",
|
|
109
109
|
onClick: _[0] || (_[0] = (k) => n.$emit("remove-chip"))
|
|
110
110
|
}, [
|
|
111
111
|
t("span", {
|
|
112
112
|
class: "chip",
|
|
113
|
-
"aria-label":
|
|
113
|
+
"aria-label": l.value
|
|
114
114
|
}, [
|
|
115
115
|
N(o(e.text) + " ", 1),
|
|
116
116
|
Ce
|
|
@@ -168,7 +168,7 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
168
168
|
},
|
|
169
169
|
emits: ["update:modelValue"],
|
|
170
170
|
setup(e, { emit: i }) {
|
|
171
|
-
const s = e,
|
|
171
|
+
const s = e, l = x(null), n = x(null), _ = x([]), k = x(0), T = x(""), g = x(!0), y = x(0), B = P(() => {
|
|
172
172
|
const d = s.options.find(
|
|
173
173
|
(f) => f.value === s.modelValue
|
|
174
174
|
);
|
|
@@ -189,7 +189,7 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
189
189
|
function ne(d) {
|
|
190
190
|
var b;
|
|
191
191
|
const f = d.target;
|
|
192
|
-
f.getAttribute("role") === "option" && (R(f), K(), (b =
|
|
192
|
+
f.getAttribute("role") === "option" && (R(f), K(), (b = l.value) == null || b.focus());
|
|
193
193
|
}
|
|
194
194
|
function J(d) {
|
|
195
195
|
var b;
|
|
@@ -215,7 +215,7 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
215
215
|
break;
|
|
216
216
|
case "Enter":
|
|
217
217
|
case "Escape":
|
|
218
|
-
d.preventDefault(), K(), (b =
|
|
218
|
+
d.preventDefault(), K(), (b = l.value) == null || b.focus();
|
|
219
219
|
break;
|
|
220
220
|
default: {
|
|
221
221
|
const w = _e(f);
|
|
@@ -285,16 +285,16 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
285
285
|
}
|
|
286
286
|
function K() {
|
|
287
287
|
var d;
|
|
288
|
-
g.value = !0, (d =
|
|
288
|
+
g.value = !0, (d = l.value) == null || d.removeAttribute("aria-expanded");
|
|
289
289
|
}
|
|
290
290
|
function Z() {
|
|
291
291
|
var d, f;
|
|
292
|
-
g.value = !1, (d =
|
|
292
|
+
g.value = !1, (d = l.value) == null || d.setAttribute("aria-expanded", "true"), (f = n.value) == null || f.focus();
|
|
293
293
|
}
|
|
294
294
|
function me() {
|
|
295
295
|
s.disabled || (g.value ? Z() : K());
|
|
296
296
|
}
|
|
297
|
-
return (d, f) => (
|
|
297
|
+
return (d, f) => (a(), r("div", {
|
|
298
298
|
class: "listbox__wrapper",
|
|
299
299
|
value: e.modelValue,
|
|
300
300
|
ref: "listbox"
|
|
@@ -307,7 +307,7 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
307
307
|
"is-required": e.required
|
|
308
308
|
}, "listbox__label"])
|
|
309
309
|
}, o(e.label), 11, Me),
|
|
310
|
-
U((
|
|
310
|
+
U((a(), r("div", Oe, [
|
|
311
311
|
t("button", {
|
|
312
312
|
id: `${e.name}-button-label`,
|
|
313
313
|
"aria-labelledby": `${e.name}-label ${e.name}-button-label`,
|
|
@@ -321,7 +321,7 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
321
321
|
onClick: me,
|
|
322
322
|
onKeydown: de,
|
|
323
323
|
ref_key: "listboxButton",
|
|
324
|
-
ref:
|
|
324
|
+
ref: l
|
|
325
325
|
}, o(e.modelValue ? B.value : e.placeholder), 43, ze),
|
|
326
326
|
U(t("ul", {
|
|
327
327
|
"aria-labelledby": `${e.name}-label`,
|
|
@@ -334,7 +334,7 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
334
334
|
ref_key: "listboxNode",
|
|
335
335
|
ref: n
|
|
336
336
|
}, [
|
|
337
|
-
(
|
|
337
|
+
(a(!0), r(q, null, I(e.options, (b, w) => (a(), r("li", {
|
|
338
338
|
key: `${e.name}-option-${w}`,
|
|
339
339
|
"aria-selected": b.value === e.modelValue,
|
|
340
340
|
"data-value": b.value,
|
|
@@ -391,7 +391,7 @@ const Ne = /* @__PURE__ */ v(Ee, [["__scopeId", "data-v-f69f328c"]]), He = { cla
|
|
|
391
391
|
}
|
|
392
392
|
},
|
|
393
393
|
setup(e) {
|
|
394
|
-
return (i, s) => (
|
|
394
|
+
return (i, s) => (a(), r("div", He, [
|
|
395
395
|
u(i.$slots, "default", V(A(i.$attrs)))
|
|
396
396
|
]));
|
|
397
397
|
}
|
|
@@ -411,7 +411,7 @@ const L = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-513b5384"]]), je = { clas
|
|
|
411
411
|
},
|
|
412
412
|
setup(e) {
|
|
413
413
|
const i = e, s = P(() => `Label: ${i.text}`);
|
|
414
|
-
return (
|
|
414
|
+
return (l, n) => (a(), r("div", je, [
|
|
415
415
|
t("span", {
|
|
416
416
|
"aria-label": s.value,
|
|
417
417
|
"label-dark": e.labelDark,
|
|
@@ -456,10 +456,10 @@ const j = /* @__PURE__ */ v(Ue, [["__scopeId", "data-v-d9cdf57c"]]), We = { clas
|
|
|
456
456
|
},
|
|
457
457
|
setup(e) {
|
|
458
458
|
const i = e, s = P(() => {
|
|
459
|
-
const { ...
|
|
460
|
-
return
|
|
459
|
+
const { ...l } = i;
|
|
460
|
+
return l;
|
|
461
461
|
});
|
|
462
|
-
return (
|
|
462
|
+
return (l, n) => (a(), r("div", We, [
|
|
463
463
|
t("div", Y(s.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 j = /* @__PURE__ */ v(Ue, [["__scopeId", "data-v-d9cdf57c"]]), We = { clas
|
|
|
468
468
|
e.arrow ? "link-arrow" : ""
|
|
469
469
|
]]
|
|
470
470
|
}), [
|
|
471
|
-
u(
|
|
471
|
+
u(l.$slots, "default")
|
|
472
472
|
], 16)
|
|
473
473
|
]));
|
|
474
474
|
}
|
|
@@ -501,11 +501,11 @@ const Ge = (e) => (D("data-v-69095414"), e = e(), M(), e), Ye = ["name", "value"
|
|
|
501
501
|
},
|
|
502
502
|
emits: ["input"],
|
|
503
503
|
setup(e, { emit: i }) {
|
|
504
|
-
const s = (
|
|
505
|
-
const n =
|
|
504
|
+
const s = (l) => {
|
|
505
|
+
const n = l.target;
|
|
506
506
|
i("input", n.checked);
|
|
507
507
|
};
|
|
508
|
-
return (
|
|
508
|
+
return (l, n) => (a(), r("div", {
|
|
509
509
|
class: c(["radio__wrapper", e.disabled ? "disabled" : ""])
|
|
510
510
|
}, [
|
|
511
511
|
t("input", {
|
|
@@ -524,7 +524,7 @@ const Ge = (e) => (D("data-v-69095414"), e = e(), M(), e), Ye = ["name", "value"
|
|
|
524
524
|
class: c(["radio__label", e.required ? "required" : ""])
|
|
525
525
|
}, [
|
|
526
526
|
Je,
|
|
527
|
-
u(
|
|
527
|
+
u(l.$slots, "default", {}, void 0, !0)
|
|
528
528
|
], 10, Qe)
|
|
529
529
|
], 2));
|
|
530
530
|
}
|
|
@@ -570,7 +570,7 @@ const Ze = /* @__PURE__ */ v(Xe, [["__scopeId", "data-v-69095414"]]), et = { cla
|
|
|
570
570
|
},
|
|
571
571
|
emits: ["update:modelValue"],
|
|
572
572
|
setup(e) {
|
|
573
|
-
return (i, s) => (
|
|
573
|
+
return (i, s) => (a(), r("div", et, [
|
|
574
574
|
t("label", {
|
|
575
575
|
for: e.id,
|
|
576
576
|
class: c([e.required ? "required" : "", e.disabled ? "disabled" : ""])
|
|
@@ -581,14 +581,14 @@ const Ze = /* @__PURE__ */ v(Xe, [["__scopeId", "data-v-69095414"]]), et = { cla
|
|
|
581
581
|
id: e.id,
|
|
582
582
|
name: e.name,
|
|
583
583
|
value: e.modelValue,
|
|
584
|
-
onChange: s[0] || (s[0] = (
|
|
585
|
-
i.$emit("update:modelValue",
|
|
584
|
+
onChange: s[0] || (s[0] = (l) => {
|
|
585
|
+
i.$emit("update:modelValue", l.target.value), l.target.blur();
|
|
586
586
|
})
|
|
587
587
|
}, [
|
|
588
|
-
(
|
|
589
|
-
key:
|
|
590
|
-
value:
|
|
591
|
-
}, o(
|
|
588
|
+
(a(!0), r(q, null, I(e.options, (l) => (a(), r("option", {
|
|
589
|
+
key: l.value,
|
|
590
|
+
value: l.value
|
|
591
|
+
}, o(l.text), 9, lt))), 128))
|
|
592
592
|
], 42, at)
|
|
593
593
|
]));
|
|
594
594
|
}
|
|
@@ -605,19 +605,19 @@ const rt = /* @__PURE__ */ v(it, [["__scopeId", "data-v-2d0a5b51"]]), st = { cla
|
|
|
605
605
|
get: () => s.show,
|
|
606
606
|
set: (n) => i("update:show", n)
|
|
607
607
|
});
|
|
608
|
-
const
|
|
608
|
+
const l = () => {
|
|
609
609
|
i("update:show", !s.show);
|
|
610
610
|
};
|
|
611
|
-
return (n, _) => (
|
|
611
|
+
return (n, _) => (a(), r("div", st, [
|
|
612
612
|
p(fe, {
|
|
613
613
|
duration: 300,
|
|
614
614
|
name: "nested"
|
|
615
615
|
}, {
|
|
616
616
|
default: $(() => [
|
|
617
|
-
n.show ? (
|
|
617
|
+
n.show ? (a(), r("div", {
|
|
618
618
|
key: 0,
|
|
619
619
|
class: "overlay",
|
|
620
|
-
onClick:
|
|
620
|
+
onClick: l,
|
|
621
621
|
ariaLabel: "modal",
|
|
622
622
|
role: "dialog"
|
|
623
623
|
}, [
|
|
@@ -630,7 +630,7 @@ const rt = /* @__PURE__ */ v(it, [["__scopeId", "data-v-2d0a5b51"]]), st = { cla
|
|
|
630
630
|
p(W, {
|
|
631
631
|
ariaLabel: "close",
|
|
632
632
|
variant: "close",
|
|
633
|
-
onClick:
|
|
633
|
+
onClick: l
|
|
634
634
|
})
|
|
635
635
|
]),
|
|
636
636
|
u(n.$slots, "default", {}, void 0, !0)
|
|
@@ -695,25 +695,25 @@ const re = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-b763a084"]]), nt = { cla
|
|
|
695
695
|
},
|
|
696
696
|
emits: ["update:modelValue"],
|
|
697
697
|
setup(e, { emit: i }) {
|
|
698
|
-
const s = e,
|
|
698
|
+
const s = e, l = x(s.modelValue), n = x(), _ = x(!1), k = (g, y, B) => (g - y) / (B - y) * 100, T = (g) => {
|
|
699
699
|
var y;
|
|
700
700
|
(y = n.value) == null || y.style.setProperty("--ProgressPercent", `${g}%`);
|
|
701
701
|
};
|
|
702
702
|
return le(() => {
|
|
703
703
|
if (n.value) {
|
|
704
|
-
i("update:modelValue",
|
|
705
|
-
const g = k(
|
|
704
|
+
i("update:modelValue", l.value);
|
|
705
|
+
const g = k(l.value, s.min, s.max);
|
|
706
706
|
let y = (50 - g) / 100;
|
|
707
707
|
T(g + y);
|
|
708
708
|
}
|
|
709
|
-
}), (g, y) => (
|
|
709
|
+
}), (g, y) => (a(), r(q, null, [
|
|
710
710
|
t("div", nt, [
|
|
711
711
|
t("div", dt, [
|
|
712
712
|
t("label", {
|
|
713
713
|
for: e.id,
|
|
714
714
|
class: c([e.variant, ""])
|
|
715
715
|
}, o(e.label), 11, ct),
|
|
716
|
-
e.information ? (
|
|
716
|
+
e.information ? (a(), r("i", {
|
|
717
717
|
key: 0,
|
|
718
718
|
role: "button",
|
|
719
719
|
class: c([e.variant, "slider__information"]),
|
|
@@ -739,7 +739,7 @@ const re = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-b763a084"]]), nt = { cla
|
|
|
739
739
|
class: c(e.variant),
|
|
740
740
|
ref_key: "slider",
|
|
741
741
|
ref: n,
|
|
742
|
-
onInput: y[2] || (y[2] = ({ target: B }) =>
|
|
742
|
+
onInput: y[2] || (y[2] = ({ target: B }) => l.value = parseFloat(B.value))
|
|
743
743
|
}, null, 42, ht),
|
|
744
744
|
t("span", {
|
|
745
745
|
class: c([e.variant, "slider__minmax"])
|
|
@@ -749,7 +749,7 @@ const re = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-b763a084"]]), nt = { cla
|
|
|
749
749
|
class: c([e.variant, "slider__value"])
|
|
750
750
|
}, o(e.modelValue), 3)
|
|
751
751
|
]),
|
|
752
|
-
e.information ? (
|
|
752
|
+
e.information ? (a(), z(re, {
|
|
753
753
|
key: 0,
|
|
754
754
|
show: _.value,
|
|
755
755
|
"onUpdate:show": y[3] || (y[3] = (B) => _.value = B)
|
|
@@ -802,7 +802,7 @@ const mt = /* @__PURE__ */ v(vt, [["__scopeId", "data-v-b6e6a153"]]), gt = { id:
|
|
|
802
802
|
},
|
|
803
803
|
emits: ["update:modelValue"],
|
|
804
804
|
setup(e) {
|
|
805
|
-
return (i, s) => (
|
|
805
|
+
return (i, s) => (a(), r("div", gt, [
|
|
806
806
|
t("label", {
|
|
807
807
|
for: e.id,
|
|
808
808
|
class: c({ required: e.required })
|
|
@@ -820,7 +820,7 @@ const mt = /* @__PURE__ */ v(vt, [["__scopeId", "data-v-b6e6a153"]]), gt = { id:
|
|
|
820
820
|
disabled: e.disabled,
|
|
821
821
|
maxlength: e.maxLength,
|
|
822
822
|
value: e.modelValue,
|
|
823
|
-
onInput: s[0] || (s[0] = (
|
|
823
|
+
onInput: s[0] || (s[0] = (l) => i.$emit("update:modelValue", l.target.value)),
|
|
824
824
|
class: c(
|
|
825
825
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit" : "border"
|
|
826
826
|
)
|
|
@@ -828,7 +828,7 @@ const mt = /* @__PURE__ */ v(vt, [["__scopeId", "data-v-b6e6a153"]]), gt = { id:
|
|
|
828
828
|
], 8, yt),
|
|
829
829
|
t("div", pt, [
|
|
830
830
|
t("div", null, [
|
|
831
|
-
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (
|
|
831
|
+
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (a(), r("p", $t, " Too many characters. Please make it shorter ")) : m("", !0)
|
|
832
832
|
]),
|
|
833
833
|
t("p", {
|
|
834
834
|
class: c(
|
|
@@ -922,10 +922,10 @@ const wt = /* @__PURE__ */ v(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
922
922
|
setup(e) {
|
|
923
923
|
const i = x(!0), s = P(
|
|
924
924
|
() => i.value ? "showPassword" : "hidePassword"
|
|
925
|
-
),
|
|
925
|
+
), l = P(
|
|
926
926
|
() => i.value ? "password" : "text"
|
|
927
927
|
);
|
|
928
|
-
return (n, _) => (
|
|
928
|
+
return (n, _) => (a(), r("div", xt, [
|
|
929
929
|
t("label", {
|
|
930
930
|
for: e.id,
|
|
931
931
|
class: c([
|
|
@@ -934,10 +934,10 @@ const wt = /* @__PURE__ */ v(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
934
934
|
e.search ? "search" : ""
|
|
935
935
|
])
|
|
936
936
|
}, o(e.label), 11, St),
|
|
937
|
-
e.type === "password" ? (
|
|
937
|
+
e.type === "password" ? (a(), r("div", qt, [
|
|
938
938
|
t("input", {
|
|
939
939
|
id: e.id,
|
|
940
|
-
type:
|
|
940
|
+
type: l.value,
|
|
941
941
|
value: e.modelValue,
|
|
942
942
|
placeholder: e.placeholder,
|
|
943
943
|
required: e.required,
|
|
@@ -952,7 +952,7 @@ const wt = /* @__PURE__ */ v(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
952
952
|
"aria-controls": "password",
|
|
953
953
|
"aria-expanded": !i.value
|
|
954
954
|
}, null, 10, It)
|
|
955
|
-
])) : (
|
|
955
|
+
])) : (a(), r("input", {
|
|
956
956
|
key: 1,
|
|
957
957
|
type: e.type,
|
|
958
958
|
value: e.modelValue,
|
|
@@ -968,9 +968,9 @@ const wt = /* @__PURE__ */ v(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
968
968
|
onInput: _[2] || (_[2] = (k) => n.$emit("update:modelValue", k.target.value)),
|
|
969
969
|
name: e.fieldName
|
|
970
970
|
}, null, 42, Lt)),
|
|
971
|
-
e.search ? (
|
|
972
|
-
e.errorMessage ? (
|
|
973
|
-
e.helperText ? (
|
|
971
|
+
e.search ? (a(), r("i", Tt)) : m("", !0),
|
|
972
|
+
e.errorMessage ? (a(), r("strong", Ct, o(e.errorMessage), 1)) : m("", !0),
|
|
973
|
+
e.helperText ? (a(), r("span", Vt, o(e.helperText), 1)) : m("", !0)
|
|
974
974
|
]));
|
|
975
975
|
}
|
|
976
976
|
});
|
|
@@ -1027,18 +1027,18 @@ const Dt = /* @__PURE__ */ v(At, [["__scopeId", "data-v-9d2f6b3b"]]), Mt = { cla
|
|
|
1027
1027
|
},
|
|
1028
1028
|
setup(e, { expose: i }) {
|
|
1029
1029
|
const s = e;
|
|
1030
|
-
let
|
|
1030
|
+
let l = x(null);
|
|
1031
1031
|
return le(() => {
|
|
1032
|
-
s.play &&
|
|
1032
|
+
s.play && l.value ? l.value.play() : !s.play && l.value && l.value.pause();
|
|
1033
1033
|
}), i({
|
|
1034
1034
|
resetVideo: () => {
|
|
1035
|
-
|
|
1035
|
+
l.value && (l.value.currentTime = 0, l.value.play());
|
|
1036
1036
|
}
|
|
1037
|
-
}), (_, k) => (
|
|
1038
|
-
e.localVideo ? (
|
|
1037
|
+
}), (_, k) => (a(), r("div", Mt, [
|
|
1038
|
+
e.localVideo ? (a(), r("video", {
|
|
1039
1039
|
key: 0,
|
|
1040
1040
|
ref_key: "videoRef",
|
|
1041
|
-
ref:
|
|
1041
|
+
ref: l,
|
|
1042
1042
|
"aria-label": e.ariaLabel,
|
|
1043
1043
|
controls: e.controls,
|
|
1044
1044
|
poster: e.poster,
|
|
@@ -1050,7 +1050,7 @@ const Dt = /* @__PURE__ */ v(At, [["__scopeId", "data-v-9d2f6b3b"]]), Mt = { cla
|
|
|
1050
1050
|
type: "video/mp4",
|
|
1051
1051
|
playsinline: "",
|
|
1052
1052
|
src: e.src
|
|
1053
|
-
}, " Your browser does not support HTML video. ", 8, Ot)) : (
|
|
1053
|
+
}, " Your browser does not support HTML video. ", 8, Ot)) : (a(), r("iframe", {
|
|
1054
1054
|
key: 1,
|
|
1055
1055
|
src: e.src,
|
|
1056
1056
|
"aria-label": e.ariaLabel,
|
|
@@ -1095,7 +1095,7 @@ const H = /* @__PURE__ */ v(Pt, [["__scopeId", "data-v-c449311a"]]), Ft = { clas
|
|
|
1095
1095
|
}
|
|
1096
1096
|
},
|
|
1097
1097
|
setup(e) {
|
|
1098
|
-
return (i, s) => (
|
|
1098
|
+
return (i, s) => (a(), r("div", Ft, [
|
|
1099
1099
|
t("div", Et, [
|
|
1100
1100
|
t("div", Nt, [
|
|
1101
1101
|
u(i.$slots, "address-flag", {}, void 0, !0)
|
|
@@ -1105,18 +1105,18 @@ const H = /* @__PURE__ */ v(Pt, [["__scopeId", "data-v-c449311a"]]), Ft = { clas
|
|
|
1105
1105
|
t("p", null, o(e.company), 1),
|
|
1106
1106
|
t("p", null, o(e.addressLine_1), 1),
|
|
1107
1107
|
t("p", null, o(e.addressLine_2), 1),
|
|
1108
|
-
e.addressLine_3 ? (
|
|
1108
|
+
e.addressLine_3 ? (a(), r("p", jt, o(e.addressLine_3), 1)) : m("", !0)
|
|
1109
1109
|
]),
|
|
1110
1110
|
t("div", Kt, [
|
|
1111
|
-
(
|
|
1111
|
+
(a(!0), r(q, null, I(e.phone_numbers, (l) => (a(), z(C, {
|
|
1112
1112
|
underline: "false",
|
|
1113
1113
|
linkType: "regular"
|
|
1114
1114
|
}, {
|
|
1115
1115
|
default: $(() => [
|
|
1116
1116
|
t("a", {
|
|
1117
|
-
href: "tel:" +
|
|
1117
|
+
href: "tel:" + l,
|
|
1118
1118
|
class: "address__phone"
|
|
1119
|
-
}, o(
|
|
1119
|
+
}, o(l), 9, Ut)
|
|
1120
1120
|
]),
|
|
1121
1121
|
_: 2
|
|
1122
1122
|
}, 1024))), 256)),
|
|
@@ -1149,14 +1149,14 @@ const Yt = /* @__PURE__ */ v(Gt, [["__scopeId", "data-v-22ea3b79"]]), Qt = (e) =
|
|
|
1149
1149
|
}
|
|
1150
1150
|
},
|
|
1151
1151
|
setup(e) {
|
|
1152
|
-
return (i, s) => (
|
|
1152
|
+
return (i, s) => (a(), r("div", Jt, [
|
|
1153
1153
|
t("div", {
|
|
1154
1154
|
class: c(["bullet-list", e.variant])
|
|
1155
1155
|
}, [
|
|
1156
1156
|
t("ul", null, [
|
|
1157
|
-
(
|
|
1157
|
+
(a(!0), r(q, null, I(e.list, (l) => (a(), r("li", null, [
|
|
1158
1158
|
Xt,
|
|
1159
|
-
N(" " + o(
|
|
1159
|
+
N(" " + o(l), 1)
|
|
1160
1160
|
]))), 256))
|
|
1161
1161
|
])
|
|
1162
1162
|
], 2)
|
|
@@ -1222,8 +1222,8 @@ const ea = /* @__PURE__ */ v(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1222
1222
|
emits: ["clicked"],
|
|
1223
1223
|
setup(e, { emit: i }) {
|
|
1224
1224
|
const s = be();
|
|
1225
|
-
let
|
|
1226
|
-
return (n, _) => (
|
|
1225
|
+
let l = x(!1);
|
|
1226
|
+
return (n, _) => (a(), r("div", ta, [
|
|
1227
1227
|
t("div", {
|
|
1228
1228
|
class: c(["card", [
|
|
1229
1229
|
e.theme == "dark" ? "card--dark" : "card--light",
|
|
@@ -1233,10 +1233,10 @@ const ea = /* @__PURE__ */ v(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1233
1233
|
e.variant == "product" ? "card--product" : "card--article"
|
|
1234
1234
|
]]),
|
|
1235
1235
|
style: Q([e.variant == "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
1236
|
-
onMouseover: _[0] || (_[0] = (k) => ee(
|
|
1237
|
-
onMouseout: _[1] || (_[1] = (k) => ee(
|
|
1236
|
+
onMouseover: _[0] || (_[0] = (k) => ee(l) ? l.value = !0 : l = !0),
|
|
1237
|
+
onMouseout: _[1] || (_[1] = (k) => ee(l) ? l.value = !1 : l = !1)
|
|
1238
1238
|
}, [
|
|
1239
|
-
e.mediaType == "image" ? (
|
|
1239
|
+
e.mediaType == "image" ? (a(), z(L, { key: 0 }, {
|
|
1240
1240
|
default: $(() => [
|
|
1241
1241
|
u(n.$slots, "card-image", Y({
|
|
1242
1242
|
src: e.imgSrc,
|
|
@@ -1248,12 +1248,12 @@ const ea = /* @__PURE__ */ v(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1248
1248
|
}, { srcset: e.srcSet }))
|
|
1249
1249
|
]),
|
|
1250
1250
|
_: 3
|
|
1251
|
-
})) : (
|
|
1251
|
+
})) : (a(), r("div", {
|
|
1252
1252
|
key: 1,
|
|
1253
|
-
class: c(["video-card__wrapper", S(
|
|
1253
|
+
class: c(["video-card__wrapper", S(l) == !0 ? "vimeoPlaying" : ""])
|
|
1254
1254
|
}, [
|
|
1255
1255
|
p(H, {
|
|
1256
|
-
play: S(
|
|
1256
|
+
play: S(l),
|
|
1257
1257
|
localVideo: !0,
|
|
1258
1258
|
src: e.videoSrc,
|
|
1259
1259
|
"aria-label": e.arialabel,
|
|
@@ -1266,17 +1266,17 @@ const ea = /* @__PURE__ */ v(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1266
1266
|
muted: !0
|
|
1267
1267
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
1268
1268
|
], 2)),
|
|
1269
|
-
S(s)["card-label"] ? (
|
|
1269
|
+
S(s)["card-label"] ? (a(), r("div", aa, [
|
|
1270
1270
|
u(n.$slots, "card-label")
|
|
1271
1271
|
])) : m("", !0),
|
|
1272
|
-
e.variant === "product" ? (
|
|
1272
|
+
e.variant === "product" ? (a(), r("h3", {
|
|
1273
1273
|
key: 3,
|
|
1274
1274
|
class: c(e.theme == "dark" ? "regular-dark" : "regular-blue")
|
|
1275
|
-
}, o(e.headline), 3)) : (
|
|
1275
|
+
}, o(e.headline), 3)) : (a(), r("h3", {
|
|
1276
1276
|
key: 4,
|
|
1277
1277
|
class: c(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
|
|
1278
1278
|
}, o(e.headline), 3)),
|
|
1279
|
-
e.variant == "product" ? (
|
|
1279
|
+
e.variant == "product" ? (a(), r("p", la, o(e.paragraph), 1)) : m("", !0)
|
|
1280
1280
|
], 38)
|
|
1281
1281
|
]));
|
|
1282
1282
|
}
|
|
@@ -1306,7 +1306,7 @@ const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-ed5d7a87"]]), sa = (e) =
|
|
|
1306
1306
|
}
|
|
1307
1307
|
},
|
|
1308
1308
|
setup(e) {
|
|
1309
|
-
return (i, s) => (
|
|
1309
|
+
return (i, s) => (a(), r("div", oa, [
|
|
1310
1310
|
p(j, {
|
|
1311
1311
|
"label-dark": !1,
|
|
1312
1312
|
text: e.eventType ? e.eventType : ""
|
|
@@ -1338,7 +1338,7 @@ const ha = /* @__PURE__ */ v(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { cla
|
|
|
1338
1338
|
}
|
|
1339
1339
|
},
|
|
1340
1340
|
setup(e) {
|
|
1341
|
-
return (i, s) => (
|
|
1341
|
+
return (i, s) => (a(), r("div", va, [
|
|
1342
1342
|
p(j, {
|
|
1343
1343
|
"label-dark": !1,
|
|
1344
1344
|
text: e.label ? e.label : ""
|
|
@@ -1371,20 +1371,20 @@ const ya = /* @__PURE__ */ v(fa, [["__scopeId", "data-v-b07d352b"]]), ba = { cla
|
|
|
1371
1371
|
}
|
|
1372
1372
|
},
|
|
1373
1373
|
setup(e) {
|
|
1374
|
-
return (i, s) => (
|
|
1374
|
+
return (i, s) => (a(), r("div", ba, [
|
|
1375
1375
|
t("div", pa, [
|
|
1376
1376
|
t("h2", $a, o(e.headline), 1),
|
|
1377
1377
|
t("div", ka, [
|
|
1378
|
-
(
|
|
1378
|
+
(a(!0), r(q, null, I(e.facts, (l) => (a(), r("div", wa, [
|
|
1379
1379
|
t("div", xa, [
|
|
1380
|
-
t("span", null, o(
|
|
1380
|
+
t("span", null, o(l.value), 1)
|
|
1381
1381
|
]),
|
|
1382
1382
|
t("div", Sa, [
|
|
1383
|
-
t("span", null, o(
|
|
1383
|
+
t("span", null, o(l.metric), 1)
|
|
1384
1384
|
])
|
|
1385
1385
|
]))), 256))
|
|
1386
1386
|
]),
|
|
1387
|
-
e.link ? (
|
|
1387
|
+
e.link ? (a(), r("div", qa, [
|
|
1388
1388
|
p(C, {
|
|
1389
1389
|
linkType: "regular-light",
|
|
1390
1390
|
arrow: ""
|
|
@@ -1423,31 +1423,31 @@ const Ia = /* @__PURE__ */ v(Ba, [["__scopeId", "data-v-f0b38c5d"]]), La = { cla
|
|
|
1423
1423
|
}
|
|
1424
1424
|
},
|
|
1425
1425
|
setup(e) {
|
|
1426
|
-
return (i, s) => (
|
|
1426
|
+
return (i, s) => (a(), r("div", La, [
|
|
1427
1427
|
t("div", Ta, [
|
|
1428
|
-
e.headline ? (
|
|
1428
|
+
e.headline ? (a(), r("div", Ca, [
|
|
1429
1429
|
t("h2", null, o(e.headline), 1)
|
|
1430
1430
|
])) : m("", !0),
|
|
1431
|
-
e.body ? (
|
|
1431
|
+
e.body ? (a(), r("div", Va, [
|
|
1432
1432
|
t("p", null, o(e.body), 1)
|
|
1433
1433
|
])) : m("", !0),
|
|
1434
1434
|
t("div", {
|
|
1435
1435
|
class: c(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
|
|
1436
1436
|
}, [
|
|
1437
|
-
(
|
|
1437
|
+
(a(!0), r(q, null, I(e.elements, (l) => (a(), r("div", Aa, [
|
|
1438
1438
|
p(L, { class: "element__icon" }, {
|
|
1439
1439
|
default: $(() => [
|
|
1440
1440
|
u(i.$slots, "features-icon", V(A({
|
|
1441
|
-
src:
|
|
1441
|
+
src: l.icon.src,
|
|
1442
1442
|
height: 30,
|
|
1443
1443
|
width: 30,
|
|
1444
|
-
alt:
|
|
1444
|
+
alt: l.icon.alt
|
|
1445
1445
|
})), void 0, !0)
|
|
1446
1446
|
]),
|
|
1447
1447
|
_: 2
|
|
1448
1448
|
}, 1024),
|
|
1449
|
-
t("p", Da, o(
|
|
1450
|
-
t("p", Ma, o(
|
|
1449
|
+
t("p", Da, o(l.headline), 1),
|
|
1450
|
+
t("p", Ma, o(l.body), 1)
|
|
1451
1451
|
]))), 256))
|
|
1452
1452
|
], 2)
|
|
1453
1453
|
])
|
|
@@ -1471,7 +1471,7 @@ const za = /* @__PURE__ */ v(Oa, [["__scopeId", "data-v-95c61c54"]]), Pa = { cla
|
|
|
1471
1471
|
}
|
|
1472
1472
|
},
|
|
1473
1473
|
setup(e) {
|
|
1474
|
-
return (i, s) => (
|
|
1474
|
+
return (i, s) => (a(), r("div", Pa, [
|
|
1475
1475
|
t("div", Fa, [
|
|
1476
1476
|
t("div", Ea, [
|
|
1477
1477
|
p(L, null, {
|
|
@@ -1534,7 +1534,7 @@ const Ra = /* @__PURE__ */ v(Ha, [["__scopeId", "data-v-fc71b085"]]), ja = { cla
|
|
|
1534
1534
|
}
|
|
1535
1535
|
},
|
|
1536
1536
|
setup(e) {
|
|
1537
|
-
return (i, s) => (
|
|
1537
|
+
return (i, s) => (a(), r("div", {
|
|
1538
1538
|
class: c([
|
|
1539
1539
|
"gallery__wrapper",
|
|
1540
1540
|
e.bgColor === "light" ? "gallery__wrapper--light" : e.bgColor === "dark" ? ["gallery__wrapper--dark", "mirsaic--dark"] : ""
|
|
@@ -1547,7 +1547,7 @@ const Ra = /* @__PURE__ */ v(Ha, [["__scopeId", "data-v-fc71b085"]]), ja = { cla
|
|
|
1547
1547
|
])
|
|
1548
1548
|
}, [
|
|
1549
1549
|
t("div", ja, [
|
|
1550
|
-
e.mediaLarge && e.mediaType === "image" ? (
|
|
1550
|
+
e.mediaLarge && e.mediaType === "image" ? (a(), r("div", Ka, [
|
|
1551
1551
|
p(L, null, {
|
|
1552
1552
|
default: $(() => [
|
|
1553
1553
|
u(i.$slots, "image-large", V(A({
|
|
@@ -1560,7 +1560,7 @@ const Ra = /* @__PURE__ */ v(Ha, [["__scopeId", "data-v-fc71b085"]]), ja = { cla
|
|
|
1560
1560
|
_: 3
|
|
1561
1561
|
})
|
|
1562
1562
|
])) : m("", !0),
|
|
1563
|
-
e.mediaLarge && e.mediaType === "video" ? (
|
|
1563
|
+
e.mediaLarge && e.mediaType === "video" ? (a(), r("div", Ua, [
|
|
1564
1564
|
p(H, {
|
|
1565
1565
|
src: e.mediaLarge.src,
|
|
1566
1566
|
localVideo: "",
|
|
@@ -1582,20 +1582,20 @@ const Ra = /* @__PURE__ */ v(Ha, [["__scopeId", "data-v-fc71b085"]]), ja = { cla
|
|
|
1582
1582
|
e.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1583
1583
|
])
|
|
1584
1584
|
}, [
|
|
1585
|
-
(
|
|
1585
|
+
(a(!0), r(q, null, I(e.mediaSmall, (l) => (a(), r("div", Wa, [
|
|
1586
1586
|
p(L, null, {
|
|
1587
1587
|
default: $(() => [
|
|
1588
1588
|
u(i.$slots, "image-small", V(A({
|
|
1589
1589
|
width: 328,
|
|
1590
1590
|
height: 246,
|
|
1591
|
-
src:
|
|
1592
|
-
alt:
|
|
1591
|
+
src: l.src,
|
|
1592
|
+
alt: l.alt
|
|
1593
1593
|
})))
|
|
1594
1594
|
]),
|
|
1595
1595
|
_: 2
|
|
1596
1596
|
}, 1024)
|
|
1597
1597
|
]))), 256)),
|
|
1598
|
-
e.mediaSmall.length < 2 ? (
|
|
1598
|
+
e.mediaSmall.length < 2 ? (a(), r("div", Ga, [
|
|
1599
1599
|
t("p", null, o(e.body), 1)
|
|
1600
1600
|
])) : m("", !0)
|
|
1601
1601
|
], 6)
|
|
@@ -1620,7 +1620,7 @@ const Qa = /* @__PURE__ */ v(Ya, [["__scopeId", "data-v-131a090a"]]), Ja = { cla
|
|
|
1620
1620
|
}
|
|
1621
1621
|
},
|
|
1622
1622
|
setup(e) {
|
|
1623
|
-
return (i, s) => (
|
|
1623
|
+
return (i, s) => (a(), r("div", Ja, [
|
|
1624
1624
|
t("div", {
|
|
1625
1625
|
class: c({
|
|
1626
1626
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1647,7 +1647,7 @@ const el = /* @__PURE__ */ v(Za, [["__scopeId", "data-v-080238bd"]]), tl = (e) =
|
|
|
1647
1647
|
}
|
|
1648
1648
|
},
|
|
1649
1649
|
setup(e) {
|
|
1650
|
-
return (i, s) => (
|
|
1650
|
+
return (i, s) => (a(), r("div", al, [
|
|
1651
1651
|
t("div", ll, [
|
|
1652
1652
|
t("div", il, [
|
|
1653
1653
|
t("div", rl, [
|
|
@@ -1685,9 +1685,18 @@ const el = /* @__PURE__ */ v(Za, [["__scopeId", "data-v-080238bd"]]), tl = (e) =
|
|
|
1685
1685
|
]));
|
|
1686
1686
|
}
|
|
1687
1687
|
});
|
|
1688
|
-
const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-c74d9be1"]]), _l = { class: "logo-wall__wrapper" }, hl = { class: "logo-wall__content" }, vl = {
|
|
1688
|
+
const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-c74d9be1"]]), _l = { class: "logo-wall__wrapper" }, hl = { class: "logo-wall__content" }, vl = {
|
|
1689
|
+
key: 0,
|
|
1690
|
+
class: "logo-wall__text"
|
|
1691
|
+
}, ml = { key: 0 }, gl = { key: 1 }, fl = { class: "logo-wall__logos" }, yl = { class: "logo-wall__logo" }, bl = { class: "logo-wall__link" }, pl = /* @__PURE__ */ h({
|
|
1689
1692
|
__name: "logo-wall",
|
|
1690
1693
|
props: {
|
|
1694
|
+
headline: {
|
|
1695
|
+
type: String
|
|
1696
|
+
},
|
|
1697
|
+
body: {
|
|
1698
|
+
type: String
|
|
1699
|
+
},
|
|
1691
1700
|
logos: {
|
|
1692
1701
|
type: Array,
|
|
1693
1702
|
required: !0,
|
|
@@ -1695,24 +1704,28 @@ const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-c74d9be1"]]), _l = { cla
|
|
|
1695
1704
|
}
|
|
1696
1705
|
},
|
|
1697
1706
|
setup(e) {
|
|
1698
|
-
return (i, s) => (
|
|
1707
|
+
return (i, s) => (a(), r("div", _l, [
|
|
1699
1708
|
t("div", hl, [
|
|
1700
|
-
|
|
1701
|
-
(
|
|
1709
|
+
e.headline || e.body ? (a(), r("div", vl, [
|
|
1710
|
+
e.headline ? (a(), r("h2", ml, o(e.headline), 1)) : m("", !0),
|
|
1711
|
+
e.body ? (a(), r("p", gl, o(e.body), 1)) : m("", !0)
|
|
1712
|
+
])) : m("", !0),
|
|
1713
|
+
t("div", fl, [
|
|
1714
|
+
(a(!0), r(q, null, I(e.logos, (l) => (a(), r("div", yl, [
|
|
1702
1715
|
p(L, null, {
|
|
1703
1716
|
default: $(() => [
|
|
1704
1717
|
u(i.$slots, "logo-wall-logo", V(A({
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
src:
|
|
1708
|
-
alt:
|
|
1718
|
+
width: 130,
|
|
1719
|
+
height: 130,
|
|
1720
|
+
src: l.src,
|
|
1721
|
+
alt: l.alt
|
|
1709
1722
|
})), void 0, !0)
|
|
1710
1723
|
]),
|
|
1711
1724
|
_: 2
|
|
1712
1725
|
}, 1024)
|
|
1713
1726
|
]))), 256))
|
|
1714
1727
|
]),
|
|
1715
|
-
t("div",
|
|
1728
|
+
t("div", bl, [
|
|
1716
1729
|
p(C, {
|
|
1717
1730
|
linkType: "regular-light",
|
|
1718
1731
|
arrow: !0
|
|
@@ -1727,7 +1740,7 @@ const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-c74d9be1"]]), _l = { cla
|
|
|
1727
1740
|
]));
|
|
1728
1741
|
}
|
|
1729
1742
|
});
|
|
1730
|
-
const
|
|
1743
|
+
const $l = /* @__PURE__ */ v(pl, [["__scopeId", "data-v-aa7e6c2c"]]), kl = { class: "micro-stories__splide" }, wl = /* @__PURE__ */ h({
|
|
1731
1744
|
__name: "micro-stories",
|
|
1732
1745
|
props: {
|
|
1733
1746
|
stories: {
|
|
@@ -1752,28 +1765,28 @@ const yl = /* @__PURE__ */ v(fl, [["__scopeId", "data-v-2d8157c7"]]), bl = { cla
|
|
|
1752
1765
|
}
|
|
1753
1766
|
},
|
|
1754
1767
|
setup(e) {
|
|
1755
|
-
return (i, s) => (
|
|
1768
|
+
return (i, s) => (a(), r("div", {
|
|
1756
1769
|
class: c([
|
|
1757
1770
|
"micro-stories__wrapper",
|
|
1758
1771
|
e.bgColor == "white" ? "micro-stories__wrapper--white" : e.bgColor == "dark" ? "micro-stories__wrapper--dark" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
|
|
1759
1772
|
])
|
|
1760
1773
|
}, [
|
|
1761
|
-
t("div",
|
|
1774
|
+
t("div", kl, [
|
|
1762
1775
|
u(i.$slots, "micro-stories-slides")
|
|
1763
1776
|
]),
|
|
1764
1777
|
u(i.$slots, "micro-stories-controls")
|
|
1765
1778
|
], 2));
|
|
1766
1779
|
}
|
|
1767
1780
|
});
|
|
1768
|
-
const
|
|
1769
|
-
function
|
|
1770
|
-
return
|
|
1771
|
-
t("div",
|
|
1781
|
+
const xl = {}, Sl = { class: "policy__wrapper" }, ql = { class: "policy__content" };
|
|
1782
|
+
function Bl(e, i) {
|
|
1783
|
+
return a(), r("div", Sl, [
|
|
1784
|
+
t("div", ql, [
|
|
1772
1785
|
u(e.$slots, "default", {}, void 0, !0)
|
|
1773
1786
|
])
|
|
1774
1787
|
]);
|
|
1775
1788
|
}
|
|
1776
|
-
const
|
|
1789
|
+
const Il = /* @__PURE__ */ v(xl, [["render", Bl], ["__scopeId", "data-v-4ef880d9"]]), Ll = { class: "product-hero__wrapper" }, Tl = { class: "product-hero__content" }, Cl = { class: "product-hero__headline" }, Vl = { class: "product-hero__video" }, Al = /* @__PURE__ */ h({
|
|
1777
1790
|
__name: "product-hero",
|
|
1778
1791
|
props: {
|
|
1779
1792
|
headline: {
|
|
@@ -1798,12 +1811,12 @@ const Sl = /* @__PURE__ */ v($l, [["render", xl], ["__scopeId", "data-v-4ef880d9
|
|
|
1798
1811
|
}
|
|
1799
1812
|
},
|
|
1800
1813
|
setup(e) {
|
|
1801
|
-
return (i, s) => (
|
|
1802
|
-
t("div",
|
|
1803
|
-
t("div",
|
|
1814
|
+
return (i, s) => (a(), r("div", Ll, [
|
|
1815
|
+
t("div", Tl, [
|
|
1816
|
+
t("div", Cl, [
|
|
1804
1817
|
t("h1", null, o(e.headline), 1)
|
|
1805
1818
|
]),
|
|
1806
|
-
t("div",
|
|
1819
|
+
t("div", Vl, [
|
|
1807
1820
|
p(H, {
|
|
1808
1821
|
play: !0,
|
|
1809
1822
|
localVideo: !0,
|
|
@@ -1820,7 +1833,7 @@ const Sl = /* @__PURE__ */ v($l, [["render", xl], ["__scopeId", "data-v-4ef880d9
|
|
|
1820
1833
|
]));
|
|
1821
1834
|
}
|
|
1822
1835
|
});
|
|
1823
|
-
const
|
|
1836
|
+
const Dl = /* @__PURE__ */ v(Al, [["__scopeId", "data-v-36aac1b0"]]), Ml = { class: "promo__content" }, Ol = /* @__PURE__ */ h({
|
|
1824
1837
|
__name: "promo",
|
|
1825
1838
|
props: {
|
|
1826
1839
|
label: {
|
|
@@ -1868,15 +1881,15 @@ const Cl = /* @__PURE__ */ v(Tl, [["__scopeId", "data-v-36aac1b0"]]), Vl = { cla
|
|
|
1868
1881
|
}
|
|
1869
1882
|
},
|
|
1870
1883
|
setup(e) {
|
|
1871
|
-
return (i, s) => (
|
|
1884
|
+
return (i, s) => (a(), r("div", {
|
|
1872
1885
|
class: c([
|
|
1873
1886
|
"promo__wrapper",
|
|
1874
1887
|
e.variant === "dark" ? "promo__wrapper--dark" : e.variant === "light" ? "promo__wrapper--light" : "",
|
|
1875
1888
|
e.teaser ? "promo__wrapper--teaser" : ""
|
|
1876
1889
|
])
|
|
1877
1890
|
}, [
|
|
1878
|
-
t("div",
|
|
1879
|
-
e.mediaType === "image" ? (
|
|
1891
|
+
t("div", Ml, [
|
|
1892
|
+
e.mediaType === "image" ? (a(), r("div", {
|
|
1880
1893
|
key: 0,
|
|
1881
1894
|
class: c([
|
|
1882
1895
|
"promo__image",
|
|
@@ -1890,7 +1903,7 @@ const Cl = /* @__PURE__ */ v(Tl, [["__scopeId", "data-v-36aac1b0"]]), Vl = { cla
|
|
|
1890
1903
|
_: 3
|
|
1891
1904
|
})
|
|
1892
1905
|
], 2)) : m("", !0),
|
|
1893
|
-
e.mediaType === "video" ? (
|
|
1906
|
+
e.mediaType === "video" ? (a(), r("div", {
|
|
1894
1907
|
key: 1,
|
|
1895
1908
|
class: c([
|
|
1896
1909
|
"promo__video",
|
|
@@ -1915,7 +1928,7 @@ const Cl = /* @__PURE__ */ v(Tl, [["__scopeId", "data-v-36aac1b0"]]), Vl = { cla
|
|
|
1915
1928
|
e.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1916
1929
|
])
|
|
1917
1930
|
}, [
|
|
1918
|
-
e.label ? (
|
|
1931
|
+
e.label ? (a(), z(j, {
|
|
1919
1932
|
key: 0,
|
|
1920
1933
|
text: e.label,
|
|
1921
1934
|
labelDark: e.variant === "dark"
|
|
@@ -1926,7 +1939,7 @@ const Cl = /* @__PURE__ */ v(Tl, [["__scopeId", "data-v-36aac1b0"]]), Vl = { cla
|
|
|
1926
1939
|
e.variant === "dark" ? "promo__title--dark" : ""
|
|
1927
1940
|
])
|
|
1928
1941
|
}, o(e.headline), 3),
|
|
1929
|
-
e.linkType === "link" ? (
|
|
1942
|
+
e.linkType === "link" ? (a(), z(C, {
|
|
1930
1943
|
key: 1,
|
|
1931
1944
|
linkType: e.variant === "dark" ? "regular-dark" : (e.variant === "light", "regular-light"),
|
|
1932
1945
|
arrow: ""
|
|
@@ -1936,7 +1949,7 @@ const Cl = /* @__PURE__ */ v(Tl, [["__scopeId", "data-v-36aac1b0"]]), Vl = { cla
|
|
|
1936
1949
|
]),
|
|
1937
1950
|
_: 3
|
|
1938
1951
|
}, 8, ["linkType"])) : m("", !0),
|
|
1939
|
-
e.linkType === "button" ? (
|
|
1952
|
+
e.linkType === "button" ? (a(), z(C, {
|
|
1940
1953
|
key: 2,
|
|
1941
1954
|
linkType: e.variant === "dark" ? "secondary-dark" : (e.variant === "light", "secondary")
|
|
1942
1955
|
}, {
|
|
@@ -1950,10 +1963,10 @@ const Cl = /* @__PURE__ */ v(Tl, [["__scopeId", "data-v-36aac1b0"]]), Vl = { cla
|
|
|
1950
1963
|
], 2));
|
|
1951
1964
|
}
|
|
1952
1965
|
});
|
|
1953
|
-
const
|
|
1966
|
+
const zl = /* @__PURE__ */ v(Ol, [["__scopeId", "data-v-988e52ee"]]), Pl = (e) => (D("data-v-18440f83"), e = e(), M(), e), Fl = { class: "quote__wrapper" }, El = { class: "quote__content" }, Nl = /* @__PURE__ */ Pl(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), Hl = { class: "quote__quote" }, Rl = { class: "quote__quote-text" }, jl = { class: "quote__author" }, Kl = {
|
|
1954
1967
|
key: 0,
|
|
1955
1968
|
class: "quote__image"
|
|
1956
|
-
},
|
|
1969
|
+
}, Ul = { class: "quote__text" }, Wl = { class: "quote__author-name" }, Gl = { class: "quote__author-title" }, Yl = /* @__PURE__ */ h({
|
|
1957
1970
|
__name: "quote",
|
|
1958
1971
|
props: {
|
|
1959
1972
|
quote: {
|
|
@@ -1974,13 +1987,13 @@ const Dl = /* @__PURE__ */ v(Al, [["__scopeId", "data-v-988e52ee"]]), Ml = (e) =
|
|
|
1974
1987
|
}
|
|
1975
1988
|
},
|
|
1976
1989
|
setup(e) {
|
|
1977
|
-
return (i, s) => (
|
|
1978
|
-
t("div",
|
|
1979
|
-
|
|
1980
|
-
t("div",
|
|
1981
|
-
t("p",
|
|
1982
|
-
t("div",
|
|
1983
|
-
e.authorImage ? (
|
|
1990
|
+
return (i, s) => (a(), r("div", Fl, [
|
|
1991
|
+
t("div", El, [
|
|
1992
|
+
Nl,
|
|
1993
|
+
t("div", Hl, [
|
|
1994
|
+
t("p", Rl, o(e.quote), 1),
|
|
1995
|
+
t("div", jl, [
|
|
1996
|
+
e.authorImage ? (a(), r("div", Kl, [
|
|
1984
1997
|
p(L, null, {
|
|
1985
1998
|
default: $(() => [
|
|
1986
1999
|
u(i.$slots, "author-image", V(A({
|
|
@@ -1992,9 +2005,9 @@ const Dl = /* @__PURE__ */ v(Al, [["__scopeId", "data-v-988e52ee"]]), Ml = (e) =
|
|
|
1992
2005
|
_: 3
|
|
1993
2006
|
})
|
|
1994
2007
|
])) : m("", !0),
|
|
1995
|
-
t("div",
|
|
1996
|
-
t("p",
|
|
1997
|
-
t("p",
|
|
2008
|
+
t("div", Ul, [
|
|
2009
|
+
t("p", Wl, o(e.author), 1),
|
|
2010
|
+
t("p", Gl, o(e.authorTitle), 1)
|
|
1998
2011
|
])
|
|
1999
2012
|
])
|
|
2000
2013
|
])
|
|
@@ -2002,13 +2015,13 @@ const Dl = /* @__PURE__ */ v(Al, [["__scopeId", "data-v-988e52ee"]]), Ml = (e) =
|
|
|
2002
2015
|
]));
|
|
2003
2016
|
}
|
|
2004
2017
|
});
|
|
2005
|
-
const
|
|
2018
|
+
const Ql = /* @__PURE__ */ v(Yl, [["__scopeId", "data-v-18440f83"]]), Jl = { class: "rich-text__wrapper" }, Xl = {
|
|
2006
2019
|
key: 0,
|
|
2007
2020
|
class: "rich-text__links"
|
|
2008
|
-
},
|
|
2021
|
+
}, Zl = {
|
|
2009
2022
|
key: 0,
|
|
2010
2023
|
class: "rich-text__bullet-list"
|
|
2011
|
-
},
|
|
2024
|
+
}, ei = /* @__PURE__ */ h({
|
|
2012
2025
|
__name: "rich-text",
|
|
2013
2026
|
props: {
|
|
2014
2027
|
headline: {
|
|
@@ -2043,19 +2056,19 @@ const Wl = /* @__PURE__ */ v(Ul, [["__scopeId", "data-v-18440f83"]]), Gl = { cla
|
|
|
2043
2056
|
}
|
|
2044
2057
|
},
|
|
2045
2058
|
setup(e) {
|
|
2046
|
-
return (i, s) => (
|
|
2059
|
+
return (i, s) => (a(), r("div", {
|
|
2047
2060
|
class: c([
|
|
2048
2061
|
"rich-text",
|
|
2049
2062
|
e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
2050
2063
|
])
|
|
2051
2064
|
}, [
|
|
2052
|
-
t("div",
|
|
2053
|
-
e.label ? (
|
|
2065
|
+
t("div", Jl, [
|
|
2066
|
+
e.label ? (a(), z(j, {
|
|
2054
2067
|
key: 0,
|
|
2055
2068
|
text: e.label,
|
|
2056
2069
|
labelDark: !1
|
|
2057
2070
|
}, null, 8, ["text"])) : m("", !0),
|
|
2058
|
-
e.headline ? (
|
|
2071
|
+
e.headline ? (a(), r("h2", {
|
|
2059
2072
|
key: 1,
|
|
2060
2073
|
class: c([
|
|
2061
2074
|
"rich-text__headline",
|
|
@@ -2075,14 +2088,14 @@ const Wl = /* @__PURE__ */ v(Ul, [["__scopeId", "data-v-18440f83"]]), Gl = { cla
|
|
|
2075
2088
|
])
|
|
2076
2089
|
}, [
|
|
2077
2090
|
u(i.$slots, "rich-text-content"),
|
|
2078
|
-
e.links ? (
|
|
2091
|
+
e.links ? (a(), r("div", Xl, [
|
|
2079
2092
|
u(i.$slots, "rich-text-links")
|
|
2080
2093
|
])) : m("", !0)
|
|
2081
2094
|
], 2),
|
|
2082
|
-
e.bulletList ? (
|
|
2095
|
+
e.bulletList ? (a(), r("div", Zl, [
|
|
2083
2096
|
u(i.$slots, "rich-text-bullet-list")
|
|
2084
2097
|
])) : m("", !0),
|
|
2085
|
-
e.image ? (
|
|
2098
|
+
e.image ? (a(), r("div", {
|
|
2086
2099
|
key: 1,
|
|
2087
2100
|
class: c([
|
|
2088
2101
|
"rich-text__image",
|
|
@@ -2101,10 +2114,10 @@ const Wl = /* @__PURE__ */ v(Ul, [["__scopeId", "data-v-18440f83"]]), Gl = { cla
|
|
|
2101
2114
|
], 2));
|
|
2102
2115
|
}
|
|
2103
2116
|
});
|
|
2104
|
-
const
|
|
2117
|
+
const ti = /* @__PURE__ */ v(ei, [["__scopeId", "data-v-7bf963a0"]]), ai = (e) => (D("data-v-df182fbb"), e = e(), M(), e), li = { class: "timeline__wrapper" }, ii = { class: "timeline__content" }, ri = { class: "timeline__items" }, si = { class: "timeline__item faded" }, oi = { class: "item__left" }, ni = /* @__PURE__ */ ai(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2105
2118
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2106
2119
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2107
|
-
], -1)),
|
|
2120
|
+
], -1)), di = { class: "item__right" }, ci = ["innerHTML"], ui = /* @__PURE__ */ h({
|
|
2108
2121
|
__name: "timeline",
|
|
2109
2122
|
props: {
|
|
2110
2123
|
timelineItems: {
|
|
@@ -2115,8 +2128,8 @@ const Xl = /* @__PURE__ */ v(Jl, [["__scopeId", "data-v-7bf963a0"]]), Zl = (e) =
|
|
|
2115
2128
|
setup(e) {
|
|
2116
2129
|
return ie(() => {
|
|
2117
2130
|
const i = document.querySelectorAll(".timeline__item"), s = new IntersectionObserver(
|
|
2118
|
-
(
|
|
2119
|
-
|
|
2131
|
+
(l) => {
|
|
2132
|
+
l.forEach((n) => {
|
|
2120
2133
|
n.isIntersecting && (n.target.classList.add("visible"), n.target.classList.remove("faded"), s.unobserve(n.target));
|
|
2121
2134
|
});
|
|
2122
2135
|
},
|
|
@@ -2124,27 +2137,27 @@ const Xl = /* @__PURE__ */ v(Jl, [["__scopeId", "data-v-7bf963a0"]]), Zl = (e) =
|
|
|
2124
2137
|
threshold: 1
|
|
2125
2138
|
}
|
|
2126
2139
|
);
|
|
2127
|
-
i.forEach((
|
|
2128
|
-
s.observe(
|
|
2140
|
+
i.forEach((l) => {
|
|
2141
|
+
s.observe(l);
|
|
2129
2142
|
});
|
|
2130
|
-
}), (i, s) => (
|
|
2131
|
-
t("div",
|
|
2132
|
-
t("div",
|
|
2133
|
-
(
|
|
2134
|
-
t("div",
|
|
2135
|
-
|
|
2136
|
-
t("div",
|
|
2143
|
+
}), (i, s) => (a(), r("div", li, [
|
|
2144
|
+
t("div", ii, [
|
|
2145
|
+
t("div", ri, [
|
|
2146
|
+
(a(!0), r(q, null, I(e.timelineItems, (l) => (a(), r("div", si, [
|
|
2147
|
+
t("div", oi, o(l.year), 1),
|
|
2148
|
+
ni,
|
|
2149
|
+
t("div", di, [
|
|
2137
2150
|
p(L, null, {
|
|
2138
2151
|
default: $(() => [
|
|
2139
|
-
|
|
2152
|
+
l.media.type === "image" ? u(i.$slots, "timeline-image", V(Y({ key: 0 }, { src: l.media.src, alt: l.media.alt })), void 0, !0) : m("", !0)
|
|
2140
2153
|
]),
|
|
2141
2154
|
_: 2
|
|
2142
2155
|
}, 1024),
|
|
2143
2156
|
t("div", {
|
|
2144
|
-
style: Q([
|
|
2157
|
+
style: Q([l.media.type === "none" ? "margin-top: 0px" : ""]),
|
|
2145
2158
|
class: "rich-text",
|
|
2146
|
-
innerHTML:
|
|
2147
|
-
}, null, 12,
|
|
2159
|
+
innerHTML: l.text
|
|
2160
|
+
}, null, 12, ci)
|
|
2148
2161
|
])
|
|
2149
2162
|
]))), 256))
|
|
2150
2163
|
])
|
|
@@ -2152,10 +2165,10 @@ const Xl = /* @__PURE__ */ v(Jl, [["__scopeId", "data-v-7bf963a0"]]), Zl = (e) =
|
|
|
2152
2165
|
]));
|
|
2153
2166
|
}
|
|
2154
2167
|
});
|
|
2155
|
-
const
|
|
2168
|
+
const _i = /* @__PURE__ */ v(ui, [["__scopeId", "data-v-df182fbb"]]), hi = { class: "triple-card-display__wrapper" }, vi = {
|
|
2156
2169
|
key: 0,
|
|
2157
2170
|
class: "triple-card__content"
|
|
2158
|
-
},
|
|
2171
|
+
}, mi = { key: 0 }, gi = { key: 1 }, fi = { class: "triple-card__cards" }, yi = /* @__PURE__ */ h({
|
|
2159
2172
|
__name: "triple-card-display",
|
|
2160
2173
|
props: {
|
|
2161
2174
|
headline: {
|
|
@@ -2172,31 +2185,31 @@ const di = /* @__PURE__ */ v(ni, [["__scopeId", "data-v-df182fbb"]]), ci = { cla
|
|
|
2172
2185
|
}
|
|
2173
2186
|
},
|
|
2174
2187
|
setup(e) {
|
|
2175
|
-
return (i, s) => (
|
|
2188
|
+
return (i, s) => (a(), r("div", {
|
|
2176
2189
|
class: c([
|
|
2177
2190
|
"triple-card-display",
|
|
2178
2191
|
e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
|
|
2179
2192
|
])
|
|
2180
2193
|
}, [
|
|
2181
|
-
t("div",
|
|
2182
|
-
e.headline || e.paragraph ? (
|
|
2183
|
-
e.headline ? (
|
|
2184
|
-
e.paragraph ? (
|
|
2194
|
+
t("div", hi, [
|
|
2195
|
+
e.headline || e.paragraph ? (a(), r("div", vi, [
|
|
2196
|
+
e.headline ? (a(), r("h2", mi, o(e.headline), 1)) : m("", !0),
|
|
2197
|
+
e.paragraph ? (a(), r("p", gi, o(e.paragraph), 1)) : m("", !0)
|
|
2185
2198
|
])) : m("", !0),
|
|
2186
|
-
t("div",
|
|
2199
|
+
t("div", fi, [
|
|
2187
2200
|
u(i.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
2188
2201
|
])
|
|
2189
2202
|
])
|
|
2190
2203
|
], 2));
|
|
2191
2204
|
}
|
|
2192
2205
|
});
|
|
2193
|
-
const
|
|
2206
|
+
const bi = /* @__PURE__ */ v(yi, [["__scopeId", "data-v-7920ee89"]]), pi = { class: "vimeo" }, $i = { class: "vimeo__wrapper" }, ki = {
|
|
2194
2207
|
key: 0,
|
|
2195
2208
|
class: "vimeo__headline"
|
|
2196
|
-
},
|
|
2209
|
+
}, wi = {
|
|
2197
2210
|
key: 1,
|
|
2198
2211
|
class: "vimeo__description"
|
|
2199
|
-
},
|
|
2212
|
+
}, xi = /* @__PURE__ */ h({
|
|
2200
2213
|
__name: "vimeo",
|
|
2201
2214
|
props: {
|
|
2202
2215
|
headline: {
|
|
@@ -2207,16 +2220,16 @@ const gi = /* @__PURE__ */ v(mi, [["__scopeId", "data-v-7920ee89"]]), fi = { cla
|
|
|
2207
2220
|
}
|
|
2208
2221
|
},
|
|
2209
2222
|
setup(e) {
|
|
2210
|
-
return (i, s) => (
|
|
2211
|
-
t("div",
|
|
2212
|
-
e.headline ? (
|
|
2223
|
+
return (i, s) => (a(), r("div", pi, [
|
|
2224
|
+
t("div", $i, [
|
|
2225
|
+
e.headline ? (a(), r("h2", ki, o(e.headline), 1)) : m("", !0),
|
|
2213
2226
|
u(i.$slots, "vimeo-content", {}, void 0, !0),
|
|
2214
|
-
e.description ? (
|
|
2227
|
+
e.description ? (a(), r("p", wi, o(e.description), 1)) : m("", !0)
|
|
2215
2228
|
])
|
|
2216
2229
|
]));
|
|
2217
2230
|
}
|
|
2218
2231
|
});
|
|
2219
|
-
const
|
|
2232
|
+
const Si = /* @__PURE__ */ v(xi, [["__scopeId", "data-v-e2b8ae73"]]), qi = { class: "not-found__wrapper" }, Bi = { class: "not-found__content" }, Ii = { class: "not-found__headline" }, Li = { class: "not-found__body" }, Ti = /* @__PURE__ */ h({
|
|
2220
2233
|
__name: "404",
|
|
2221
2234
|
props: {
|
|
2222
2235
|
headline: {
|
|
@@ -2225,17 +2238,17 @@ const ki = /* @__PURE__ */ v($i, [["__scopeId", "data-v-e2b8ae73"]]), wi = { cla
|
|
|
2225
2238
|
}
|
|
2226
2239
|
},
|
|
2227
2240
|
setup(e) {
|
|
2228
|
-
return (i, s) => (
|
|
2229
|
-
t("div",
|
|
2230
|
-
t("h1",
|
|
2231
|
-
t("div",
|
|
2241
|
+
return (i, s) => (a(), r("div", qi, [
|
|
2242
|
+
t("div", Bi, [
|
|
2243
|
+
t("h1", Ii, o(e.headline), 1),
|
|
2244
|
+
t("div", Li, [
|
|
2232
2245
|
u(i.$slots, "not-found-body", {}, void 0, !0)
|
|
2233
2246
|
])
|
|
2234
2247
|
])
|
|
2235
2248
|
]));
|
|
2236
2249
|
}
|
|
2237
2250
|
});
|
|
2238
|
-
const
|
|
2251
|
+
const Ci = /* @__PURE__ */ v(Ti, [["__scopeId", "data-v-a4285ce0"]]), Vi = { class: "filter__wrapper" }, Ai = { class: "filter__content" }, Di = { class: "filter__dropdowns" }, Mi = { class: "filter__chips" }, Oi = /* @__PURE__ */ h({
|
|
2239
2252
|
__name: "filter",
|
|
2240
2253
|
props: {
|
|
2241
2254
|
hasChips: {
|
|
@@ -2245,29 +2258,29 @@ const Ii = /* @__PURE__ */ v(Bi, [["__scopeId", "data-v-a4285ce0"]]), Li = { cla
|
|
|
2245
2258
|
},
|
|
2246
2259
|
emits: ["clearFilters"],
|
|
2247
2260
|
setup(e) {
|
|
2248
|
-
return (i, s) => (
|
|
2249
|
-
t("div",
|
|
2250
|
-
t("div",
|
|
2261
|
+
return (i, s) => (a(), r("div", Vi, [
|
|
2262
|
+
t("div", Ai, [
|
|
2263
|
+
t("div", Di, [
|
|
2251
2264
|
u(i.$slots, "filter-dropdowns")
|
|
2252
2265
|
]),
|
|
2253
|
-
t("div",
|
|
2266
|
+
t("div", Mi, [
|
|
2254
2267
|
u(i.$slots, "filter-chips"),
|
|
2255
|
-
e.hasChips ? (
|
|
2268
|
+
e.hasChips ? (a(), r("button", {
|
|
2256
2269
|
key: 0,
|
|
2257
2270
|
class: "filter__clear",
|
|
2258
|
-
onClick: s[0] || (s[0] = (
|
|
2271
|
+
onClick: s[0] || (s[0] = (l) => i.$emit("clearFilters"))
|
|
2259
2272
|
}, " Remove all filters ")) : m("", !0)
|
|
2260
2273
|
])
|
|
2261
2274
|
])
|
|
2262
2275
|
]));
|
|
2263
2276
|
}
|
|
2264
2277
|
});
|
|
2265
|
-
const
|
|
2278
|
+
const zi = /* @__PURE__ */ v(Oi, [["__scopeId", "data-v-73ba9888"]]), F = (e) => (D("data-v-05446e77"), e = e(), M(), e), Pi = { class: "footer__wrapper" }, Fi = { class: "footer__content" }, Ei = { class: "footer__sections" }, Ni = { class: "section" }, Hi = { class: "section__title" }, Ri = { class: "section__list" }, ji = { class: "section" }, Ki = /* @__PURE__ */ F(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), Ui = /* @__PURE__ */ F(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), Wi = /* @__PURE__ */ F(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), Gi = /* @__PURE__ */ F(() => /* @__PURE__ */ t("br", null, null, -1)), Yi = /* @__PURE__ */ F(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), Qi = /* @__PURE__ */ F(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), Ji = { class: "footer__bottom" }, Xi = { class: "footer__copyright-policy" }, Zi = { class: "copyright" }, er = /* @__PURE__ */ F(() => /* @__PURE__ */ t("span", null, [
|
|
2266
2279
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
2267
2280
|
/* @__PURE__ */ N("Change region")
|
|
2268
|
-
], -1)),
|
|
2269
|
-
|
|
2270
|
-
],
|
|
2281
|
+
], -1)), tr = [
|
|
2282
|
+
er
|
|
2283
|
+
], ar = { class: "footer__social" }, lr = ["href", "aria-label"], ir = /* @__PURE__ */ h({
|
|
2271
2284
|
__name: "footer",
|
|
2272
2285
|
props: {
|
|
2273
2286
|
footerSections: {
|
|
@@ -2297,32 +2310,32 @@ const Di = /* @__PURE__ */ v(Ai, [["__scopeId", "data-v-73ba9888"]]), F = (e) =>
|
|
|
2297
2310
|
},
|
|
2298
2311
|
emits: ["changeRegionClicked"],
|
|
2299
2312
|
setup(e) {
|
|
2300
|
-
return (i, s) => (
|
|
2301
|
-
t("footer",
|
|
2302
|
-
t("div",
|
|
2303
|
-
(
|
|
2304
|
-
t("span",
|
|
2313
|
+
return (i, s) => (a(), r("div", Pi, [
|
|
2314
|
+
t("footer", Fi, [
|
|
2315
|
+
t("div", Ei, [
|
|
2316
|
+
(a(!0), r(q, null, I(e.footerSections, (l) => (a(), r("div", Ni, [
|
|
2317
|
+
t("span", Hi, o(l.title), 1),
|
|
2305
2318
|
t("nav", null, [
|
|
2306
|
-
t("ul",
|
|
2319
|
+
t("ul", Ri, [
|
|
2307
2320
|
u(i.$slots, "section-links", {
|
|
2308
|
-
links:
|
|
2321
|
+
links: l.links
|
|
2309
2322
|
})
|
|
2310
2323
|
])
|
|
2311
2324
|
])
|
|
2312
2325
|
]))), 256)),
|
|
2313
|
-
t("div",
|
|
2314
|
-
|
|
2326
|
+
t("div", ji, [
|
|
2327
|
+
Ki,
|
|
2315
2328
|
t("address", null, [
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2329
|
+
Ui,
|
|
2330
|
+
Wi,
|
|
2331
|
+
Gi,
|
|
2319
2332
|
p(C, {
|
|
2320
2333
|
class: "footer__contact",
|
|
2321
2334
|
linkType: "regular-light",
|
|
2322
2335
|
underline: "false"
|
|
2323
2336
|
}, {
|
|
2324
2337
|
default: $(() => [
|
|
2325
|
-
|
|
2338
|
+
Yi
|
|
2326
2339
|
]),
|
|
2327
2340
|
_: 1
|
|
2328
2341
|
}),
|
|
@@ -2332,41 +2345,41 @@ const Di = /* @__PURE__ */ v(Ai, [["__scopeId", "data-v-73ba9888"]]), F = (e) =>
|
|
|
2332
2345
|
underline: "false"
|
|
2333
2346
|
}, {
|
|
2334
2347
|
default: $(() => [
|
|
2335
|
-
|
|
2348
|
+
Qi
|
|
2336
2349
|
]),
|
|
2337
2350
|
_: 1
|
|
2338
2351
|
})
|
|
2339
2352
|
])
|
|
2340
2353
|
])
|
|
2341
2354
|
]),
|
|
2342
|
-
t("div",
|
|
2343
|
-
t("div",
|
|
2344
|
-
t("p",
|
|
2355
|
+
t("div", Ji, [
|
|
2356
|
+
t("div", Xi, [
|
|
2357
|
+
t("p", Zi, "© MiR " + o((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2345
2358
|
t("button", {
|
|
2346
2359
|
class: "footer__language-switcher",
|
|
2347
|
-
onClick: s[0] || (s[0] = (
|
|
2348
|
-
},
|
|
2360
|
+
onClick: s[0] || (s[0] = (l) => i.$emit("changeRegionClicked"))
|
|
2361
|
+
}, tr),
|
|
2349
2362
|
u(i.$slots, "footer-privacy-link"),
|
|
2350
2363
|
u(i.$slots, "footer-cookie-link")
|
|
2351
2364
|
]),
|
|
2352
|
-
t("div",
|
|
2353
|
-
(
|
|
2365
|
+
t("div", ar, [
|
|
2366
|
+
(a(!0), r(q, null, I(e.socialMedia, (l) => (a(), z(C, {
|
|
2354
2367
|
underline: "false",
|
|
2355
2368
|
linkType: "regular"
|
|
2356
2369
|
}, {
|
|
2357
2370
|
default: $(() => [
|
|
2358
2371
|
t("a", {
|
|
2359
|
-
href:
|
|
2360
|
-
"aria-label":
|
|
2372
|
+
href: l.url,
|
|
2373
|
+
"aria-label": l.title
|
|
2361
2374
|
}, [
|
|
2362
2375
|
t("i", {
|
|
2363
2376
|
width: "19",
|
|
2364
2377
|
height: "14",
|
|
2365
2378
|
class: c(["footer__social--icon", [
|
|
2366
|
-
|
|
2379
|
+
l.title === "linkedin" ? "bg-linkedin" : l.title === "facebook" ? "bg-facebook" : l.title === "instagram" ? "bg-instagram" : l.title === "twitter" ? "bg-twitter" : l.title === "youtube" ? "bg-youtube" : ""
|
|
2367
2380
|
]])
|
|
2368
2381
|
}, null, 2)
|
|
2369
|
-
], 8,
|
|
2382
|
+
], 8, lr)
|
|
2370
2383
|
]),
|
|
2371
2384
|
_: 2
|
|
2372
2385
|
}, 1024))), 256))
|
|
@@ -2376,19 +2389,19 @@ const Di = /* @__PURE__ */ v(Ai, [["__scopeId", "data-v-73ba9888"]]), F = (e) =>
|
|
|
2376
2389
|
]));
|
|
2377
2390
|
}
|
|
2378
2391
|
});
|
|
2379
|
-
const
|
|
2392
|
+
const rr = /* @__PURE__ */ v(ir, [["__scopeId", "data-v-05446e77"]]), sr = { class: "header__wrapper" }, or = { class: "nav-wrapper" }, nr = { class: "mir-link-logo" }, dr = { class: "main-nav-items" }, cr = {
|
|
2380
2393
|
id: "menu-dropdown",
|
|
2381
2394
|
ref: "dropdownDiv"
|
|
2382
|
-
},
|
|
2395
|
+
}, ur = {
|
|
2383
2396
|
key: 0,
|
|
2384
2397
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2385
2398
|
alt: "dropdownarrow"
|
|
2386
|
-
},
|
|
2399
|
+
}, _r = {
|
|
2387
2400
|
key: 1,
|
|
2388
2401
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2389
2402
|
alt: "dropdownarrow",
|
|
2390
2403
|
style: { transform: "rotate(180deg)" }
|
|
2391
|
-
},
|
|
2404
|
+
}, hr = { class: "dropdown-content" }, vr = { class: "nav-search-wrapper" }, mr = ["src"], gr = { class: "mobile-logo-search-burger-wrapper" }, fr = { class: "mobile-mir-link-logo" }, yr = { class: "mobile-search-wrapper" }, br = ["src"], pr = ["onClick"], $r = ["src"], kr = ["src"], wr = { class: "mobile-menu-content-wrapper" }, xr = { class: "mobile-dropdown-content" }, Sr = /* @__PURE__ */ h({
|
|
2392
2405
|
__name: "header",
|
|
2393
2406
|
props: {
|
|
2394
2407
|
burgerState: {
|
|
@@ -2408,7 +2421,7 @@ const ar = /* @__PURE__ */ v(tr, [["__scopeId", "data-v-05446e77"]]), lr = { cla
|
|
|
2408
2421
|
setup(e, { emit: i }) {
|
|
2409
2422
|
const s = e;
|
|
2410
2423
|
x("");
|
|
2411
|
-
let
|
|
2424
|
+
let l = null, n = x(s.burgerState), _ = x(s.showDropDown);
|
|
2412
2425
|
te(
|
|
2413
2426
|
() => s.burgerState,
|
|
2414
2427
|
(g) => n.value = g
|
|
@@ -2416,11 +2429,11 @@ const ar = /* @__PURE__ */ v(tr, [["__scopeId", "data-v-05446e77"]]), lr = { cla
|
|
|
2416
2429
|
() => s.showDropDown,
|
|
2417
2430
|
(g) => _.value = g
|
|
2418
2431
|
), ie(() => {
|
|
2419
|
-
|
|
2432
|
+
l = (g) => {
|
|
2420
2433
|
g.target.closest("#menu-dropdown") || (_.value = !1);
|
|
2421
|
-
}, window.addEventListener("click",
|
|
2434
|
+
}, window.addEventListener("click", l);
|
|
2422
2435
|
}), pe(() => {
|
|
2423
|
-
|
|
2436
|
+
l !== null && window.removeEventListener("click", l);
|
|
2424
2437
|
});
|
|
2425
2438
|
function k() {
|
|
2426
2439
|
_.value = !_.value, i("update:showDropDown", _.value);
|
|
@@ -2428,55 +2441,55 @@ const ar = /* @__PURE__ */ v(tr, [["__scopeId", "data-v-05446e77"]]), lr = { cla
|
|
|
2428
2441
|
function T() {
|
|
2429
2442
|
n.value = !n.value, i("update:burgerState", n.value);
|
|
2430
2443
|
}
|
|
2431
|
-
return (g, y) => (
|
|
2444
|
+
return (g, y) => (a(), r("div", sr, [
|
|
2432
2445
|
t("nav", null, [
|
|
2433
|
-
t("div",
|
|
2434
|
-
t("div",
|
|
2446
|
+
t("div", or, [
|
|
2447
|
+
t("div", nr, [
|
|
2435
2448
|
u(g.$slots, "link-logo", {}, void 0, !0)
|
|
2436
2449
|
]),
|
|
2437
|
-
t("ul",
|
|
2450
|
+
t("ul", dr, [
|
|
2438
2451
|
u(g.$slots, "main-nav-items", {}, void 0, !0)
|
|
2439
2452
|
]),
|
|
2440
|
-
t("div",
|
|
2453
|
+
t("div", cr, [
|
|
2441
2454
|
t("button", {
|
|
2442
2455
|
onClick: k,
|
|
2443
2456
|
class: "nav-dropdown-btn"
|
|
2444
2457
|
}, [
|
|
2445
2458
|
u(g.$slots, "dropdown-title", {}, void 0, !0),
|
|
2446
|
-
S(_) == !1 ? (
|
|
2459
|
+
S(_) == !1 ? (a(), r("img", ur)) : (a(), r("img", _r))
|
|
2447
2460
|
]),
|
|
2448
|
-
U(t("div",
|
|
2461
|
+
U(t("div", hr, [
|
|
2449
2462
|
u(g.$slots, "dropdown-links", {}, void 0, !0)
|
|
2450
2463
|
], 512), [
|
|
2451
2464
|
[G, S(_)]
|
|
2452
2465
|
])
|
|
2453
2466
|
], 512),
|
|
2454
|
-
t("div",
|
|
2467
|
+
t("div", vr, [
|
|
2455
2468
|
t("button", {
|
|
2456
2469
|
onClick: y[0] || (y[0] = (B) => g.$emit("clickSearch"))
|
|
2457
2470
|
}, [
|
|
2458
2471
|
t("img", {
|
|
2459
2472
|
src: S(n) == !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2460
2473
|
alt: "search icon"
|
|
2461
|
-
}, null, 8,
|
|
2474
|
+
}, null, 8, mr)
|
|
2462
2475
|
])
|
|
2463
2476
|
])
|
|
2464
2477
|
]),
|
|
2465
2478
|
t("div", {
|
|
2466
2479
|
class: c(["mobile-nav-wrapper", S(n) == !0 ? "mirsaic-mobile-bg" : ""])
|
|
2467
2480
|
}, [
|
|
2468
|
-
t("div",
|
|
2469
|
-
t("div",
|
|
2481
|
+
t("div", gr, [
|
|
2482
|
+
t("div", fr, [
|
|
2470
2483
|
u(g.$slots, "link-logo", {}, void 0, !0)
|
|
2471
2484
|
]),
|
|
2472
|
-
t("div",
|
|
2485
|
+
t("div", yr, [
|
|
2473
2486
|
t("button", {
|
|
2474
2487
|
onClick: y[1] || (y[1] = (B) => g.$emit("clickSearch"))
|
|
2475
2488
|
}, [
|
|
2476
2489
|
t("img", {
|
|
2477
2490
|
src: S(n) == !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2478
2491
|
alt: "search icon"
|
|
2479
|
-
}, null, 8,
|
|
2492
|
+
}, null, 8, br)
|
|
2480
2493
|
])
|
|
2481
2494
|
]),
|
|
2482
2495
|
t("button", {
|
|
@@ -2486,18 +2499,18 @@ const ar = /* @__PURE__ */ v(tr, [["__scopeId", "data-v-05446e77"]]), lr = { cla
|
|
|
2486
2499
|
t("img", {
|
|
2487
2500
|
class: c(["burger-line", S(n) == !0 ? "burger-top-line-open" : ""]),
|
|
2488
2501
|
src: S(n) == !0 ? "https://a.storyblok.com/f/230581/23x3/bf4bfb3a50/burger-line-white.svg?cv=1695125714410" : "https://a.storyblok.com/f/230581/23x2/63423a4523/burger-line.svg?cv=1695125714081"
|
|
2489
|
-
}, null, 10,
|
|
2502
|
+
}, null, 10, $r),
|
|
2490
2503
|
t("img", {
|
|
2491
2504
|
class: c(["burger-line", S(n) == !0 ? "burger-bottom-line-open" : ""]),
|
|
2492
2505
|
src: S(n) == !0 ? "https://a.storyblok.com/f/230581/23x3/bf4bfb3a50/burger-line-white.svg?cv=1695125714410" : "https://a.storyblok.com/f/230581/23x2/63423a4523/burger-line.svg?cv=1695125714081"
|
|
2493
|
-
}, null, 10,
|
|
2494
|
-
], 8,
|
|
2506
|
+
}, null, 10, kr)
|
|
2507
|
+
], 8, pr)
|
|
2495
2508
|
]),
|
|
2496
|
-
U(t("div",
|
|
2509
|
+
U(t("div", wr, [
|
|
2497
2510
|
t("ul", null, [
|
|
2498
2511
|
u(g.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2499
2512
|
]),
|
|
2500
|
-
t("ul",
|
|
2513
|
+
t("ul", xr, [
|
|
2501
2514
|
u(g.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2502
2515
|
u(g.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2503
2516
|
])
|
|
@@ -2509,7 +2522,7 @@ const ar = /* @__PURE__ */ v(tr, [["__scopeId", "data-v-05446e77"]]), lr = { cla
|
|
|
2509
2522
|
]));
|
|
2510
2523
|
}
|
|
2511
2524
|
});
|
|
2512
|
-
const
|
|
2525
|
+
const qr = /* @__PURE__ */ v(Sr, [["__scopeId", "data-v-51070f6f"]]), Br = { class: "language__wrapper" }, Ir = { class: "language__content" }, Lr = { class: "language__headline" }, Tr = { class: "language__paragraph" }, Cr = /* @__PURE__ */ h({
|
|
2513
2526
|
__name: "language-switcher",
|
|
2514
2527
|
props: {
|
|
2515
2528
|
headline: {
|
|
@@ -2520,16 +2533,16 @@ const wr = /* @__PURE__ */ v(kr, [["__scopeId", "data-v-51070f6f"]]), xr = { cla
|
|
|
2520
2533
|
}
|
|
2521
2534
|
},
|
|
2522
2535
|
setup(e) {
|
|
2523
|
-
return (i, s) => (
|
|
2524
|
-
t("div",
|
|
2525
|
-
t("h2",
|
|
2526
|
-
t("p",
|
|
2536
|
+
return (i, s) => (a(), r("div", Br, [
|
|
2537
|
+
t("div", Ir, [
|
|
2538
|
+
t("h2", Lr, o(e.headline), 1),
|
|
2539
|
+
t("p", Tr, o(e.paragraph), 1),
|
|
2527
2540
|
u(i.$slots, "language-links", {}, void 0, !0)
|
|
2528
2541
|
])
|
|
2529
2542
|
]));
|
|
2530
2543
|
}
|
|
2531
2544
|
});
|
|
2532
|
-
const
|
|
2545
|
+
const Vr = /* @__PURE__ */ v(Cr, [["__scopeId", "data-v-a76ba727"]]), Ar = { class: "pagination__wrapper" }, Dr = { class: "pagination__content" }, Mr = /* @__PURE__ */ h({
|
|
2533
2546
|
__name: "pagination",
|
|
2534
2547
|
props: {
|
|
2535
2548
|
isPreviousDisabled: {
|
|
@@ -2543,17 +2556,17 @@ const Lr = /* @__PURE__ */ v(Ir, [["__scopeId", "data-v-a76ba727"]]), Tr = { cla
|
|
|
2543
2556
|
},
|
|
2544
2557
|
emits: ["previous", "next"],
|
|
2545
2558
|
setup(e) {
|
|
2546
|
-
return (i, s) => (
|
|
2547
|
-
t("div",
|
|
2559
|
+
return (i, s) => (a(), r("div", Ar, [
|
|
2560
|
+
t("div", Dr, [
|
|
2548
2561
|
p(W, {
|
|
2549
|
-
onClick: s[0] || (s[0] = (
|
|
2562
|
+
onClick: s[0] || (s[0] = (l) => i.$emit("previous")),
|
|
2550
2563
|
disabled: e.isPreviousDisabled,
|
|
2551
2564
|
variant: "previous",
|
|
2552
2565
|
ariaLabel: "previous"
|
|
2553
2566
|
}, null, 8, ["disabled"]),
|
|
2554
2567
|
u(i.$slots, "pagination-numbers"),
|
|
2555
2568
|
p(W, {
|
|
2556
|
-
onClick: s[1] || (s[1] = (
|
|
2569
|
+
onClick: s[1] || (s[1] = (l) => i.$emit("next")),
|
|
2557
2570
|
disabled: e.isNextDisabled,
|
|
2558
2571
|
variant: "next",
|
|
2559
2572
|
ariaLabel: "next"
|
|
@@ -2562,9 +2575,9 @@ const Lr = /* @__PURE__ */ v(Ir, [["__scopeId", "data-v-a76ba727"]]), Tr = { cla
|
|
|
2562
2575
|
]));
|
|
2563
2576
|
}
|
|
2564
2577
|
});
|
|
2565
|
-
const
|
|
2578
|
+
const Or = /* @__PURE__ */ v(Mr, [["__scopeId", "data-v-9f08dcf6"]]), Pr = {
|
|
2566
2579
|
install: (e) => {
|
|
2567
|
-
e.component("AtomButton", W), e.component("AtomCheckbox", Ie), e.component("AtomChip", Ae), e.component("AtomDropdown", Ne), e.component("AtomImage", L), e.component("AtomLabel", j), e.component("AtomLink", C), e.component("AtomRadioButton", Ze), e.component("AtomSelect", rt), e.component("AtomSlider", mt), e.component("AtomTextarea", wt), e.component("AtomTextField", Dt), e.component("AtomVideo", H), e.component("MoleculeAddress", Yt), e.component("MoleculeBulletList", ea), e.component("MoleculeCard", ra), e.component("MoleculeEventCard", ha), e.component("MoleculeModal", re), e.component("MoleculeTextCard", ya), e.component("BlockFacts", Ia), e.component("BlockFeatures", za), e.component("BlockHeadline", el), e.component("BlockHero", ul), e.component("BlockImage", Ra), e.component("BlockImageGallery", Qa), e.component("BlockLogoWall",
|
|
2580
|
+
e.component("AtomButton", W), e.component("AtomCheckbox", Ie), e.component("AtomChip", Ae), e.component("AtomDropdown", Ne), e.component("AtomImage", L), e.component("AtomLabel", j), e.component("AtomLink", C), e.component("AtomRadioButton", Ze), e.component("AtomSelect", rt), e.component("AtomSlider", mt), e.component("AtomTextarea", wt), e.component("AtomTextField", Dt), e.component("AtomVideo", H), e.component("MoleculeAddress", Yt), e.component("MoleculeBulletList", ea), e.component("MoleculeCard", ra), e.component("MoleculeEventCard", ha), e.component("MoleculeModal", re), e.component("MoleculeTextCard", ya), e.component("BlockFacts", Ia), e.component("BlockFeatures", za), e.component("BlockHeadline", el), e.component("BlockHero", ul), e.component("BlockImage", Ra), e.component("BlockImageGallery", Qa), e.component("BlockLogoWall", $l), e.component("BlockMicroStories", wl), e.component("BlockPolicy", Il), e.component("BlockProductHero", Dl), e.component("BlockPromo", zl), e.component("BlockQuote", Ql), e.component("BlockRichText", ti), e.component("BlockTimeline", _i), e.component("BlockTripleCardDisplay", bi), e.component("BlockVimeo", Si), e.component("Organism404", Ci), e.component("OrganismFilter", zi), e.component("OrganismFooter", rr), e.component("OrganismHeader", qr), e.component("OrganismLanguageSwitcher", Vr), e.component("OrganismPagination", Or);
|
|
2568
2581
|
}
|
|
2569
2582
|
};
|
|
2570
2583
|
export {
|
|
@@ -2587,27 +2600,27 @@ export {
|
|
|
2587
2600
|
ul as BlockHero,
|
|
2588
2601
|
Ra as BlockImage,
|
|
2589
2602
|
Qa as BlockImageGallery,
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2603
|
+
$l as BlockLogoWall,
|
|
2604
|
+
wl as BlockMicroStories,
|
|
2605
|
+
Il as BlockPolicy,
|
|
2606
|
+
Dl as BlockProductHero,
|
|
2607
|
+
zl as BlockPromo,
|
|
2608
|
+
Ql as BlockQuote,
|
|
2609
|
+
ti as BlockRichText,
|
|
2610
|
+
_i as BlockTimeline,
|
|
2611
|
+
bi as BlockTripleCardDisplay,
|
|
2612
|
+
Si as BlockVimeo,
|
|
2600
2613
|
Yt as MoleculeAddress,
|
|
2601
2614
|
ea as MoleculeBulletList,
|
|
2602
2615
|
ra as MoleculeCard,
|
|
2603
2616
|
ha as MoleculeEventCard,
|
|
2604
2617
|
re as MoleculeModal,
|
|
2605
2618
|
ya as MoleculeTextCard,
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2619
|
+
Ci as Organism404,
|
|
2620
|
+
zi as OrganismFilter,
|
|
2621
|
+
rr as OrganismFooter,
|
|
2622
|
+
qr as OrganismHeader,
|
|
2623
|
+
Vr as OrganismLanguageSwitcher,
|
|
2624
|
+
Or as OrganismPagination,
|
|
2625
|
+
Pr as default
|
|
2613
2626
|
};
|