@mirweb/mir-web-components 0.15.65 → 0.15.67
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,7 +1685,10 @@ 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: {
|
|
1691
1694
|
headline: {
|
|
@@ -1701,28 +1704,28 @@ const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-c74d9be1"]]), _l = { cla
|
|
|
1701
1704
|
}
|
|
1702
1705
|
},
|
|
1703
1706
|
setup(e) {
|
|
1704
|
-
return (i, s) => (
|
|
1707
|
+
return (i, s) => (a(), r("div", _l, [
|
|
1705
1708
|
t("div", hl, [
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
]),
|
|
1710
|
-
t("div",
|
|
1711
|
-
(
|
|
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, [
|
|
1712
1715
|
p(L, null, {
|
|
1713
1716
|
default: $(() => [
|
|
1714
1717
|
u(i.$slots, "logo-wall-logo", V(A({
|
|
1715
1718
|
width: 130,
|
|
1716
1719
|
height: 130,
|
|
1717
|
-
src:
|
|
1718
|
-
alt:
|
|
1720
|
+
src: l.src,
|
|
1721
|
+
alt: l.alt
|
|
1719
1722
|
})), void 0, !0)
|
|
1720
1723
|
]),
|
|
1721
1724
|
_: 2
|
|
1722
1725
|
}, 1024)
|
|
1723
1726
|
]))), 256))
|
|
1724
1727
|
]),
|
|
1725
|
-
t("div",
|
|
1728
|
+
t("div", bl, [
|
|
1726
1729
|
p(C, {
|
|
1727
1730
|
linkType: "regular-light",
|
|
1728
1731
|
arrow: !0
|
|
@@ -1737,7 +1740,7 @@ const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-c74d9be1"]]), _l = { cla
|
|
|
1737
1740
|
]));
|
|
1738
1741
|
}
|
|
1739
1742
|
});
|
|
1740
|
-
const
|
|
1743
|
+
const $l = /* @__PURE__ */ v(pl, [["__scopeId", "data-v-aa7e6c2c"]]), kl = { class: "micro-stories__splide" }, wl = /* @__PURE__ */ h({
|
|
1741
1744
|
__name: "micro-stories",
|
|
1742
1745
|
props: {
|
|
1743
1746
|
stories: {
|
|
@@ -1762,28 +1765,28 @@ const bl = /* @__PURE__ */ v(yl, [["__scopeId", "data-v-963494db"]]), pl = { cla
|
|
|
1762
1765
|
}
|
|
1763
1766
|
},
|
|
1764
1767
|
setup(e) {
|
|
1765
|
-
return (i, s) => (
|
|
1768
|
+
return (i, s) => (a(), r("div", {
|
|
1766
1769
|
class: c([
|
|
1767
1770
|
"micro-stories__wrapper",
|
|
1768
1771
|
e.bgColor == "white" ? "micro-stories__wrapper--white" : e.bgColor == "dark" ? "micro-stories__wrapper--dark" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
|
|
1769
1772
|
])
|
|
1770
1773
|
}, [
|
|
1771
|
-
t("div",
|
|
1774
|
+
t("div", kl, [
|
|
1772
1775
|
u(i.$slots, "micro-stories-slides")
|
|
1773
1776
|
]),
|
|
1774
1777
|
u(i.$slots, "micro-stories-controls")
|
|
1775
1778
|
], 2));
|
|
1776
1779
|
}
|
|
1777
1780
|
});
|
|
1778
|
-
const
|
|
1779
|
-
function
|
|
1780
|
-
return
|
|
1781
|
-
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, [
|
|
1782
1785
|
u(e.$slots, "default", {}, void 0, !0)
|
|
1783
1786
|
])
|
|
1784
1787
|
]);
|
|
1785
1788
|
}
|
|
1786
|
-
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({
|
|
1787
1790
|
__name: "product-hero",
|
|
1788
1791
|
props: {
|
|
1789
1792
|
headline: {
|
|
@@ -1808,12 +1811,12 @@ const ql = /* @__PURE__ */ v(kl, [["render", Sl], ["__scopeId", "data-v-4ef880d9
|
|
|
1808
1811
|
}
|
|
1809
1812
|
},
|
|
1810
1813
|
setup(e) {
|
|
1811
|
-
return (i, s) => (
|
|
1812
|
-
t("div",
|
|
1813
|
-
t("div",
|
|
1814
|
+
return (i, s) => (a(), r("div", Ll, [
|
|
1815
|
+
t("div", Tl, [
|
|
1816
|
+
t("div", Cl, [
|
|
1814
1817
|
t("h1", null, o(e.headline), 1)
|
|
1815
1818
|
]),
|
|
1816
|
-
t("div",
|
|
1819
|
+
t("div", Vl, [
|
|
1817
1820
|
p(H, {
|
|
1818
1821
|
play: !0,
|
|
1819
1822
|
localVideo: !0,
|
|
@@ -1830,7 +1833,7 @@ const ql = /* @__PURE__ */ v(kl, [["render", Sl], ["__scopeId", "data-v-4ef880d9
|
|
|
1830
1833
|
]));
|
|
1831
1834
|
}
|
|
1832
1835
|
});
|
|
1833
|
-
const
|
|
1836
|
+
const Dl = /* @__PURE__ */ v(Al, [["__scopeId", "data-v-36aac1b0"]]), Ml = { class: "promo__content" }, Ol = /* @__PURE__ */ h({
|
|
1834
1837
|
__name: "promo",
|
|
1835
1838
|
props: {
|
|
1836
1839
|
label: {
|
|
@@ -1878,15 +1881,15 @@ const Vl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-36aac1b0"]]), Al = { cla
|
|
|
1878
1881
|
}
|
|
1879
1882
|
},
|
|
1880
1883
|
setup(e) {
|
|
1881
|
-
return (i, s) => (
|
|
1884
|
+
return (i, s) => (a(), r("div", {
|
|
1882
1885
|
class: c([
|
|
1883
1886
|
"promo__wrapper",
|
|
1884
1887
|
e.variant === "dark" ? "promo__wrapper--dark" : e.variant === "light" ? "promo__wrapper--light" : "",
|
|
1885
1888
|
e.teaser ? "promo__wrapper--teaser" : ""
|
|
1886
1889
|
])
|
|
1887
1890
|
}, [
|
|
1888
|
-
t("div",
|
|
1889
|
-
e.mediaType === "image" ? (
|
|
1891
|
+
t("div", Ml, [
|
|
1892
|
+
e.mediaType === "image" ? (a(), r("div", {
|
|
1890
1893
|
key: 0,
|
|
1891
1894
|
class: c([
|
|
1892
1895
|
"promo__image",
|
|
@@ -1900,7 +1903,7 @@ const Vl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-36aac1b0"]]), Al = { cla
|
|
|
1900
1903
|
_: 3
|
|
1901
1904
|
})
|
|
1902
1905
|
], 2)) : m("", !0),
|
|
1903
|
-
e.mediaType === "video" ? (
|
|
1906
|
+
e.mediaType === "video" ? (a(), r("div", {
|
|
1904
1907
|
key: 1,
|
|
1905
1908
|
class: c([
|
|
1906
1909
|
"promo__video",
|
|
@@ -1925,7 +1928,7 @@ const Vl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-36aac1b0"]]), Al = { cla
|
|
|
1925
1928
|
e.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1926
1929
|
])
|
|
1927
1930
|
}, [
|
|
1928
|
-
e.label ? (
|
|
1931
|
+
e.label ? (a(), z(j, {
|
|
1929
1932
|
key: 0,
|
|
1930
1933
|
text: e.label,
|
|
1931
1934
|
labelDark: e.variant === "dark"
|
|
@@ -1936,7 +1939,7 @@ const Vl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-36aac1b0"]]), Al = { cla
|
|
|
1936
1939
|
e.variant === "dark" ? "promo__title--dark" : ""
|
|
1937
1940
|
])
|
|
1938
1941
|
}, o(e.headline), 3),
|
|
1939
|
-
e.linkType === "link" ? (
|
|
1942
|
+
e.linkType === "link" ? (a(), z(C, {
|
|
1940
1943
|
key: 1,
|
|
1941
1944
|
linkType: e.variant === "dark" ? "regular-dark" : (e.variant === "light", "regular-light"),
|
|
1942
1945
|
arrow: ""
|
|
@@ -1946,7 +1949,7 @@ const Vl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-36aac1b0"]]), Al = { cla
|
|
|
1946
1949
|
]),
|
|
1947
1950
|
_: 3
|
|
1948
1951
|
}, 8, ["linkType"])) : m("", !0),
|
|
1949
|
-
e.linkType === "button" ? (
|
|
1952
|
+
e.linkType === "button" ? (a(), z(C, {
|
|
1950
1953
|
key: 2,
|
|
1951
1954
|
linkType: e.variant === "dark" ? "secondary-dark" : (e.variant === "light", "secondary")
|
|
1952
1955
|
}, {
|
|
@@ -1960,10 +1963,10 @@ const Vl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-36aac1b0"]]), Al = { cla
|
|
|
1960
1963
|
], 2));
|
|
1961
1964
|
}
|
|
1962
1965
|
});
|
|
1963
|
-
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 = {
|
|
1964
1967
|
key: 0,
|
|
1965
1968
|
class: "quote__image"
|
|
1966
|
-
},
|
|
1969
|
+
}, Ul = { class: "quote__text" }, Wl = { class: "quote__author-name" }, Gl = { class: "quote__author-title" }, Yl = /* @__PURE__ */ h({
|
|
1967
1970
|
__name: "quote",
|
|
1968
1971
|
props: {
|
|
1969
1972
|
quote: {
|
|
@@ -1984,13 +1987,13 @@ const Ml = /* @__PURE__ */ v(Dl, [["__scopeId", "data-v-988e52ee"]]), Ol = (e) =
|
|
|
1984
1987
|
}
|
|
1985
1988
|
},
|
|
1986
1989
|
setup(e) {
|
|
1987
|
-
return (i, s) => (
|
|
1988
|
-
t("div",
|
|
1989
|
-
|
|
1990
|
-
t("div",
|
|
1991
|
-
t("p",
|
|
1992
|
-
t("div",
|
|
1993
|
-
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, [
|
|
1994
1997
|
p(L, null, {
|
|
1995
1998
|
default: $(() => [
|
|
1996
1999
|
u(i.$slots, "author-image", V(A({
|
|
@@ -2002,9 +2005,9 @@ const Ml = /* @__PURE__ */ v(Dl, [["__scopeId", "data-v-988e52ee"]]), Ol = (e) =
|
|
|
2002
2005
|
_: 3
|
|
2003
2006
|
})
|
|
2004
2007
|
])) : m("", !0),
|
|
2005
|
-
t("div",
|
|
2006
|
-
t("p",
|
|
2007
|
-
t("p",
|
|
2008
|
+
t("div", Ul, [
|
|
2009
|
+
t("p", Wl, o(e.author), 1),
|
|
2010
|
+
t("p", Gl, o(e.authorTitle), 1)
|
|
2008
2011
|
])
|
|
2009
2012
|
])
|
|
2010
2013
|
])
|
|
@@ -2012,13 +2015,13 @@ const Ml = /* @__PURE__ */ v(Dl, [["__scopeId", "data-v-988e52ee"]]), Ol = (e) =
|
|
|
2012
2015
|
]));
|
|
2013
2016
|
}
|
|
2014
2017
|
});
|
|
2015
|
-
const
|
|
2018
|
+
const Ql = /* @__PURE__ */ v(Yl, [["__scopeId", "data-v-18440f83"]]), Jl = { class: "rich-text__wrapper" }, Xl = {
|
|
2016
2019
|
key: 0,
|
|
2017
2020
|
class: "rich-text__links"
|
|
2018
|
-
},
|
|
2021
|
+
}, Zl = {
|
|
2019
2022
|
key: 0,
|
|
2020
2023
|
class: "rich-text__bullet-list"
|
|
2021
|
-
},
|
|
2024
|
+
}, ei = /* @__PURE__ */ h({
|
|
2022
2025
|
__name: "rich-text",
|
|
2023
2026
|
props: {
|
|
2024
2027
|
headline: {
|
|
@@ -2053,19 +2056,19 @@ const Gl = /* @__PURE__ */ v(Wl, [["__scopeId", "data-v-18440f83"]]), Yl = { cla
|
|
|
2053
2056
|
}
|
|
2054
2057
|
},
|
|
2055
2058
|
setup(e) {
|
|
2056
|
-
return (i, s) => (
|
|
2059
|
+
return (i, s) => (a(), r("div", {
|
|
2057
2060
|
class: c([
|
|
2058
2061
|
"rich-text",
|
|
2059
2062
|
e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
2060
2063
|
])
|
|
2061
2064
|
}, [
|
|
2062
|
-
t("div",
|
|
2063
|
-
e.label ? (
|
|
2065
|
+
t("div", Jl, [
|
|
2066
|
+
e.label ? (a(), z(j, {
|
|
2064
2067
|
key: 0,
|
|
2065
2068
|
text: e.label,
|
|
2066
2069
|
labelDark: !1
|
|
2067
2070
|
}, null, 8, ["text"])) : m("", !0),
|
|
2068
|
-
e.headline ? (
|
|
2071
|
+
e.headline ? (a(), r("h2", {
|
|
2069
2072
|
key: 1,
|
|
2070
2073
|
class: c([
|
|
2071
2074
|
"rich-text__headline",
|
|
@@ -2085,14 +2088,14 @@ const Gl = /* @__PURE__ */ v(Wl, [["__scopeId", "data-v-18440f83"]]), Yl = { cla
|
|
|
2085
2088
|
])
|
|
2086
2089
|
}, [
|
|
2087
2090
|
u(i.$slots, "rich-text-content"),
|
|
2088
|
-
e.links ? (
|
|
2091
|
+
e.links ? (a(), r("div", Xl, [
|
|
2089
2092
|
u(i.$slots, "rich-text-links")
|
|
2090
2093
|
])) : m("", !0)
|
|
2091
2094
|
], 2),
|
|
2092
|
-
e.bulletList ? (
|
|
2095
|
+
e.bulletList ? (a(), r("div", Zl, [
|
|
2093
2096
|
u(i.$slots, "rich-text-bullet-list")
|
|
2094
2097
|
])) : m("", !0),
|
|
2095
|
-
e.image ? (
|
|
2098
|
+
e.image ? (a(), r("div", {
|
|
2096
2099
|
key: 1,
|
|
2097
2100
|
class: c([
|
|
2098
2101
|
"rich-text__image",
|
|
@@ -2111,10 +2114,10 @@ const Gl = /* @__PURE__ */ v(Wl, [["__scopeId", "data-v-18440f83"]]), Yl = { cla
|
|
|
2111
2114
|
], 2));
|
|
2112
2115
|
}
|
|
2113
2116
|
});
|
|
2114
|
-
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" }, [
|
|
2115
2118
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2116
2119
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2117
|
-
], -1)),
|
|
2120
|
+
], -1)), di = { class: "item__right" }, ci = ["innerHTML"], ui = /* @__PURE__ */ h({
|
|
2118
2121
|
__name: "timeline",
|
|
2119
2122
|
props: {
|
|
2120
2123
|
timelineItems: {
|
|
@@ -2125,8 +2128,8 @@ const Zl = /* @__PURE__ */ v(Xl, [["__scopeId", "data-v-7bf963a0"]]), ei = (e) =
|
|
|
2125
2128
|
setup(e) {
|
|
2126
2129
|
return ie(() => {
|
|
2127
2130
|
const i = document.querySelectorAll(".timeline__item"), s = new IntersectionObserver(
|
|
2128
|
-
(
|
|
2129
|
-
|
|
2131
|
+
(l) => {
|
|
2132
|
+
l.forEach((n) => {
|
|
2130
2133
|
n.isIntersecting && (n.target.classList.add("visible"), n.target.classList.remove("faded"), s.unobserve(n.target));
|
|
2131
2134
|
});
|
|
2132
2135
|
},
|
|
@@ -2134,27 +2137,27 @@ const Zl = /* @__PURE__ */ v(Xl, [["__scopeId", "data-v-7bf963a0"]]), ei = (e) =
|
|
|
2134
2137
|
threshold: 1
|
|
2135
2138
|
}
|
|
2136
2139
|
);
|
|
2137
|
-
i.forEach((
|
|
2138
|
-
s.observe(
|
|
2140
|
+
i.forEach((l) => {
|
|
2141
|
+
s.observe(l);
|
|
2139
2142
|
});
|
|
2140
|
-
}), (i, s) => (
|
|
2141
|
-
t("div",
|
|
2142
|
-
t("div",
|
|
2143
|
-
(
|
|
2144
|
-
t("div",
|
|
2145
|
-
|
|
2146
|
-
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, [
|
|
2147
2150
|
p(L, null, {
|
|
2148
2151
|
default: $(() => [
|
|
2149
|
-
|
|
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)
|
|
2150
2153
|
]),
|
|
2151
2154
|
_: 2
|
|
2152
2155
|
}, 1024),
|
|
2153
2156
|
t("div", {
|
|
2154
|
-
style: Q([
|
|
2157
|
+
style: Q([l.media.type === "none" ? "margin-top: 0px" : ""]),
|
|
2155
2158
|
class: "rich-text",
|
|
2156
|
-
innerHTML:
|
|
2157
|
-
}, null, 12,
|
|
2159
|
+
innerHTML: l.text
|
|
2160
|
+
}, null, 12, ci)
|
|
2158
2161
|
])
|
|
2159
2162
|
]))), 256))
|
|
2160
2163
|
])
|
|
@@ -2162,10 +2165,10 @@ const Zl = /* @__PURE__ */ v(Xl, [["__scopeId", "data-v-7bf963a0"]]), ei = (e) =
|
|
|
2162
2165
|
]));
|
|
2163
2166
|
}
|
|
2164
2167
|
});
|
|
2165
|
-
const
|
|
2168
|
+
const _i = /* @__PURE__ */ v(ui, [["__scopeId", "data-v-df182fbb"]]), hi = { class: "triple-card-display__wrapper" }, vi = {
|
|
2166
2169
|
key: 0,
|
|
2167
2170
|
class: "triple-card__content"
|
|
2168
|
-
},
|
|
2171
|
+
}, mi = { key: 0 }, gi = { key: 1 }, fi = { class: "triple-card__cards" }, yi = /* @__PURE__ */ h({
|
|
2169
2172
|
__name: "triple-card-display",
|
|
2170
2173
|
props: {
|
|
2171
2174
|
headline: {
|
|
@@ -2182,31 +2185,31 @@ const ci = /* @__PURE__ */ v(di, [["__scopeId", "data-v-df182fbb"]]), ui = { cla
|
|
|
2182
2185
|
}
|
|
2183
2186
|
},
|
|
2184
2187
|
setup(e) {
|
|
2185
|
-
return (i, s) => (
|
|
2188
|
+
return (i, s) => (a(), r("div", {
|
|
2186
2189
|
class: c([
|
|
2187
2190
|
"triple-card-display",
|
|
2188
2191
|
e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
|
|
2189
2192
|
])
|
|
2190
2193
|
}, [
|
|
2191
|
-
t("div",
|
|
2192
|
-
e.headline || e.paragraph ? (
|
|
2193
|
-
e.headline ? (
|
|
2194
|
-
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)
|
|
2195
2198
|
])) : m("", !0),
|
|
2196
|
-
t("div",
|
|
2199
|
+
t("div", fi, [
|
|
2197
2200
|
u(i.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
2198
2201
|
])
|
|
2199
2202
|
])
|
|
2200
2203
|
], 2));
|
|
2201
2204
|
}
|
|
2202
2205
|
});
|
|
2203
|
-
const
|
|
2206
|
+
const bi = /* @__PURE__ */ v(yi, [["__scopeId", "data-v-7920ee89"]]), pi = { class: "vimeo" }, $i = { class: "vimeo__wrapper" }, ki = {
|
|
2204
2207
|
key: 0,
|
|
2205
2208
|
class: "vimeo__headline"
|
|
2206
|
-
},
|
|
2209
|
+
}, wi = {
|
|
2207
2210
|
key: 1,
|
|
2208
2211
|
class: "vimeo__description"
|
|
2209
|
-
},
|
|
2212
|
+
}, xi = /* @__PURE__ */ h({
|
|
2210
2213
|
__name: "vimeo",
|
|
2211
2214
|
props: {
|
|
2212
2215
|
headline: {
|
|
@@ -2217,16 +2220,16 @@ const fi = /* @__PURE__ */ v(gi, [["__scopeId", "data-v-7920ee89"]]), yi = { cla
|
|
|
2217
2220
|
}
|
|
2218
2221
|
},
|
|
2219
2222
|
setup(e) {
|
|
2220
|
-
return (i, s) => (
|
|
2221
|
-
t("div",
|
|
2222
|
-
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),
|
|
2223
2226
|
u(i.$slots, "vimeo-content", {}, void 0, !0),
|
|
2224
|
-
e.description ? (
|
|
2227
|
+
e.description ? (a(), r("p", wi, o(e.description), 1)) : m("", !0)
|
|
2225
2228
|
])
|
|
2226
2229
|
]));
|
|
2227
2230
|
}
|
|
2228
2231
|
});
|
|
2229
|
-
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({
|
|
2230
2233
|
__name: "404",
|
|
2231
2234
|
props: {
|
|
2232
2235
|
headline: {
|
|
@@ -2235,17 +2238,17 @@ const wi = /* @__PURE__ */ v(ki, [["__scopeId", "data-v-e2b8ae73"]]), xi = { cla
|
|
|
2235
2238
|
}
|
|
2236
2239
|
},
|
|
2237
2240
|
setup(e) {
|
|
2238
|
-
return (i, s) => (
|
|
2239
|
-
t("div",
|
|
2240
|
-
t("h1",
|
|
2241
|
-
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, [
|
|
2242
2245
|
u(i.$slots, "not-found-body", {}, void 0, !0)
|
|
2243
2246
|
])
|
|
2244
2247
|
])
|
|
2245
2248
|
]));
|
|
2246
2249
|
}
|
|
2247
2250
|
});
|
|
2248
|
-
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({
|
|
2249
2252
|
__name: "filter",
|
|
2250
2253
|
props: {
|
|
2251
2254
|
hasChips: {
|
|
@@ -2255,29 +2258,29 @@ const Li = /* @__PURE__ */ v(Ii, [["__scopeId", "data-v-a4285ce0"]]), Ti = { cla
|
|
|
2255
2258
|
},
|
|
2256
2259
|
emits: ["clearFilters"],
|
|
2257
2260
|
setup(e) {
|
|
2258
|
-
return (i, s) => (
|
|
2259
|
-
t("div",
|
|
2260
|
-
t("div",
|
|
2261
|
+
return (i, s) => (a(), r("div", Vi, [
|
|
2262
|
+
t("div", Ai, [
|
|
2263
|
+
t("div", Di, [
|
|
2261
2264
|
u(i.$slots, "filter-dropdowns")
|
|
2262
2265
|
]),
|
|
2263
|
-
t("div",
|
|
2266
|
+
t("div", Mi, [
|
|
2264
2267
|
u(i.$slots, "filter-chips"),
|
|
2265
|
-
e.hasChips ? (
|
|
2268
|
+
e.hasChips ? (a(), r("button", {
|
|
2266
2269
|
key: 0,
|
|
2267
2270
|
class: "filter__clear",
|
|
2268
|
-
onClick: s[0] || (s[0] = (
|
|
2271
|
+
onClick: s[0] || (s[0] = (l) => i.$emit("clearFilters"))
|
|
2269
2272
|
}, " Remove all filters ")) : m("", !0)
|
|
2270
2273
|
])
|
|
2271
2274
|
])
|
|
2272
2275
|
]));
|
|
2273
2276
|
}
|
|
2274
2277
|
});
|
|
2275
|
-
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, [
|
|
2276
2279
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
2277
2280
|
/* @__PURE__ */ N("Change region")
|
|
2278
|
-
], -1)),
|
|
2279
|
-
|
|
2280
|
-
],
|
|
2281
|
+
], -1)), tr = [
|
|
2282
|
+
er
|
|
2283
|
+
], ar = { class: "footer__social" }, lr = ["href", "aria-label"], ir = /* @__PURE__ */ h({
|
|
2281
2284
|
__name: "footer",
|
|
2282
2285
|
props: {
|
|
2283
2286
|
footerSections: {
|
|
@@ -2307,32 +2310,32 @@ const Mi = /* @__PURE__ */ v(Di, [["__scopeId", "data-v-73ba9888"]]), F = (e) =>
|
|
|
2307
2310
|
},
|
|
2308
2311
|
emits: ["changeRegionClicked"],
|
|
2309
2312
|
setup(e) {
|
|
2310
|
-
return (i, s) => (
|
|
2311
|
-
t("footer",
|
|
2312
|
-
t("div",
|
|
2313
|
-
(
|
|
2314
|
-
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),
|
|
2315
2318
|
t("nav", null, [
|
|
2316
|
-
t("ul",
|
|
2319
|
+
t("ul", Ri, [
|
|
2317
2320
|
u(i.$slots, "section-links", {
|
|
2318
|
-
links:
|
|
2321
|
+
links: l.links
|
|
2319
2322
|
})
|
|
2320
2323
|
])
|
|
2321
2324
|
])
|
|
2322
2325
|
]))), 256)),
|
|
2323
|
-
t("div",
|
|
2324
|
-
|
|
2326
|
+
t("div", ji, [
|
|
2327
|
+
Ki,
|
|
2325
2328
|
t("address", null, [
|
|
2326
|
-
ji,
|
|
2327
|
-
Ki,
|
|
2328
2329
|
Ui,
|
|
2330
|
+
Wi,
|
|
2331
|
+
Gi,
|
|
2329
2332
|
p(C, {
|
|
2330
2333
|
class: "footer__contact",
|
|
2331
2334
|
linkType: "regular-light",
|
|
2332
2335
|
underline: "false"
|
|
2333
2336
|
}, {
|
|
2334
2337
|
default: $(() => [
|
|
2335
|
-
|
|
2338
|
+
Yi
|
|
2336
2339
|
]),
|
|
2337
2340
|
_: 1
|
|
2338
2341
|
}),
|
|
@@ -2342,41 +2345,41 @@ const Mi = /* @__PURE__ */ v(Di, [["__scopeId", "data-v-73ba9888"]]), F = (e) =>
|
|
|
2342
2345
|
underline: "false"
|
|
2343
2346
|
}, {
|
|
2344
2347
|
default: $(() => [
|
|
2345
|
-
|
|
2348
|
+
Qi
|
|
2346
2349
|
]),
|
|
2347
2350
|
_: 1
|
|
2348
2351
|
})
|
|
2349
2352
|
])
|
|
2350
2353
|
])
|
|
2351
2354
|
]),
|
|
2352
|
-
t("div",
|
|
2353
|
-
t("div",
|
|
2354
|
-
t("p",
|
|
2355
|
+
t("div", Ji, [
|
|
2356
|
+
t("div", Xi, [
|
|
2357
|
+
t("p", Zi, "© MiR " + o((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2355
2358
|
t("button", {
|
|
2356
2359
|
class: "footer__language-switcher",
|
|
2357
|
-
onClick: s[0] || (s[0] = (
|
|
2358
|
-
},
|
|
2360
|
+
onClick: s[0] || (s[0] = (l) => i.$emit("changeRegionClicked"))
|
|
2361
|
+
}, tr),
|
|
2359
2362
|
u(i.$slots, "footer-privacy-link"),
|
|
2360
2363
|
u(i.$slots, "footer-cookie-link")
|
|
2361
2364
|
]),
|
|
2362
|
-
t("div",
|
|
2363
|
-
(
|
|
2365
|
+
t("div", ar, [
|
|
2366
|
+
(a(!0), r(q, null, I(e.socialMedia, (l) => (a(), z(C, {
|
|
2364
2367
|
underline: "false",
|
|
2365
2368
|
linkType: "regular"
|
|
2366
2369
|
}, {
|
|
2367
2370
|
default: $(() => [
|
|
2368
2371
|
t("a", {
|
|
2369
|
-
href:
|
|
2370
|
-
"aria-label":
|
|
2372
|
+
href: l.url,
|
|
2373
|
+
"aria-label": l.title
|
|
2371
2374
|
}, [
|
|
2372
2375
|
t("i", {
|
|
2373
2376
|
width: "19",
|
|
2374
2377
|
height: "14",
|
|
2375
2378
|
class: c(["footer__social--icon", [
|
|
2376
|
-
|
|
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" : ""
|
|
2377
2380
|
]])
|
|
2378
2381
|
}, null, 2)
|
|
2379
|
-
], 8,
|
|
2382
|
+
], 8, lr)
|
|
2380
2383
|
]),
|
|
2381
2384
|
_: 2
|
|
2382
2385
|
}, 1024))), 256))
|
|
@@ -2386,19 +2389,19 @@ const Mi = /* @__PURE__ */ v(Di, [["__scopeId", "data-v-73ba9888"]]), F = (e) =>
|
|
|
2386
2389
|
]));
|
|
2387
2390
|
}
|
|
2388
2391
|
});
|
|
2389
|
-
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 = {
|
|
2390
2393
|
id: "menu-dropdown",
|
|
2391
2394
|
ref: "dropdownDiv"
|
|
2392
|
-
},
|
|
2395
|
+
}, ur = {
|
|
2393
2396
|
key: 0,
|
|
2394
2397
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2395
2398
|
alt: "dropdownarrow"
|
|
2396
|
-
},
|
|
2399
|
+
}, _r = {
|
|
2397
2400
|
key: 1,
|
|
2398
2401
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2399
2402
|
alt: "dropdownarrow",
|
|
2400
2403
|
style: { transform: "rotate(180deg)" }
|
|
2401
|
-
},
|
|
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({
|
|
2402
2405
|
__name: "header",
|
|
2403
2406
|
props: {
|
|
2404
2407
|
burgerState: {
|
|
@@ -2418,7 +2421,7 @@ const lr = /* @__PURE__ */ v(ar, [["__scopeId", "data-v-05446e77"]]), ir = { cla
|
|
|
2418
2421
|
setup(e, { emit: i }) {
|
|
2419
2422
|
const s = e;
|
|
2420
2423
|
x("");
|
|
2421
|
-
let
|
|
2424
|
+
let l = null, n = x(s.burgerState), _ = x(s.showDropDown);
|
|
2422
2425
|
te(
|
|
2423
2426
|
() => s.burgerState,
|
|
2424
2427
|
(g) => n.value = g
|
|
@@ -2426,11 +2429,11 @@ const lr = /* @__PURE__ */ v(ar, [["__scopeId", "data-v-05446e77"]]), ir = { cla
|
|
|
2426
2429
|
() => s.showDropDown,
|
|
2427
2430
|
(g) => _.value = g
|
|
2428
2431
|
), ie(() => {
|
|
2429
|
-
|
|
2432
|
+
l = (g) => {
|
|
2430
2433
|
g.target.closest("#menu-dropdown") || (_.value = !1);
|
|
2431
|
-
}, window.addEventListener("click",
|
|
2434
|
+
}, window.addEventListener("click", l);
|
|
2432
2435
|
}), pe(() => {
|
|
2433
|
-
|
|
2436
|
+
l !== null && window.removeEventListener("click", l);
|
|
2434
2437
|
});
|
|
2435
2438
|
function k() {
|
|
2436
2439
|
_.value = !_.value, i("update:showDropDown", _.value);
|
|
@@ -2438,55 +2441,55 @@ const lr = /* @__PURE__ */ v(ar, [["__scopeId", "data-v-05446e77"]]), ir = { cla
|
|
|
2438
2441
|
function T() {
|
|
2439
2442
|
n.value = !n.value, i("update:burgerState", n.value);
|
|
2440
2443
|
}
|
|
2441
|
-
return (g, y) => (
|
|
2444
|
+
return (g, y) => (a(), r("div", sr, [
|
|
2442
2445
|
t("nav", null, [
|
|
2443
|
-
t("div",
|
|
2444
|
-
t("div",
|
|
2446
|
+
t("div", or, [
|
|
2447
|
+
t("div", nr, [
|
|
2445
2448
|
u(g.$slots, "link-logo", {}, void 0, !0)
|
|
2446
2449
|
]),
|
|
2447
|
-
t("ul",
|
|
2450
|
+
t("ul", dr, [
|
|
2448
2451
|
u(g.$slots, "main-nav-items", {}, void 0, !0)
|
|
2449
2452
|
]),
|
|
2450
|
-
t("div",
|
|
2453
|
+
t("div", cr, [
|
|
2451
2454
|
t("button", {
|
|
2452
2455
|
onClick: k,
|
|
2453
2456
|
class: "nav-dropdown-btn"
|
|
2454
2457
|
}, [
|
|
2455
2458
|
u(g.$slots, "dropdown-title", {}, void 0, !0),
|
|
2456
|
-
S(_) == !1 ? (
|
|
2459
|
+
S(_) == !1 ? (a(), r("img", ur)) : (a(), r("img", _r))
|
|
2457
2460
|
]),
|
|
2458
|
-
U(t("div",
|
|
2461
|
+
U(t("div", hr, [
|
|
2459
2462
|
u(g.$slots, "dropdown-links", {}, void 0, !0)
|
|
2460
2463
|
], 512), [
|
|
2461
2464
|
[G, S(_)]
|
|
2462
2465
|
])
|
|
2463
2466
|
], 512),
|
|
2464
|
-
t("div",
|
|
2467
|
+
t("div", vr, [
|
|
2465
2468
|
t("button", {
|
|
2466
2469
|
onClick: y[0] || (y[0] = (B) => g.$emit("clickSearch"))
|
|
2467
2470
|
}, [
|
|
2468
2471
|
t("img", {
|
|
2469
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",
|
|
2470
2473
|
alt: "search icon"
|
|
2471
|
-
}, null, 8,
|
|
2474
|
+
}, null, 8, mr)
|
|
2472
2475
|
])
|
|
2473
2476
|
])
|
|
2474
2477
|
]),
|
|
2475
2478
|
t("div", {
|
|
2476
|
-
class: c(["mobile-nav-wrapper", S(n) == !0 ? "mirsaic-mobile-bg" : ""])
|
|
2479
|
+
class: c(["mobile-nav-wrapper", S(n) == !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2477
2480
|
}, [
|
|
2478
|
-
t("div",
|
|
2479
|
-
t("div",
|
|
2481
|
+
t("div", gr, [
|
|
2482
|
+
t("div", fr, [
|
|
2480
2483
|
u(g.$slots, "link-logo", {}, void 0, !0)
|
|
2481
2484
|
]),
|
|
2482
|
-
t("div",
|
|
2485
|
+
t("div", yr, [
|
|
2483
2486
|
t("button", {
|
|
2484
2487
|
onClick: y[1] || (y[1] = (B) => g.$emit("clickSearch"))
|
|
2485
2488
|
}, [
|
|
2486
2489
|
t("img", {
|
|
2487
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",
|
|
2488
2491
|
alt: "search icon"
|
|
2489
|
-
}, null, 8,
|
|
2492
|
+
}, null, 8, br)
|
|
2490
2493
|
])
|
|
2491
2494
|
]),
|
|
2492
2495
|
t("button", {
|
|
@@ -2496,18 +2499,18 @@ const lr = /* @__PURE__ */ v(ar, [["__scopeId", "data-v-05446e77"]]), ir = { cla
|
|
|
2496
2499
|
t("img", {
|
|
2497
2500
|
class: c(["burger-line", S(n) == !0 ? "burger-top-line-open" : ""]),
|
|
2498
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"
|
|
2499
|
-
}, null, 10,
|
|
2502
|
+
}, null, 10, $r),
|
|
2500
2503
|
t("img", {
|
|
2501
2504
|
class: c(["burger-line", S(n) == !0 ? "burger-bottom-line-open" : ""]),
|
|
2502
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"
|
|
2503
|
-
}, null, 10,
|
|
2504
|
-
], 8,
|
|
2506
|
+
}, null, 10, kr)
|
|
2507
|
+
], 8, pr)
|
|
2505
2508
|
]),
|
|
2506
|
-
U(t("div",
|
|
2509
|
+
U(t("div", wr, [
|
|
2507
2510
|
t("ul", null, [
|
|
2508
2511
|
u(g.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2509
2512
|
]),
|
|
2510
|
-
t("ul",
|
|
2513
|
+
t("ul", xr, [
|
|
2511
2514
|
u(g.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2512
2515
|
u(g.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2513
2516
|
])
|
|
@@ -2519,7 +2522,7 @@ const lr = /* @__PURE__ */ v(ar, [["__scopeId", "data-v-05446e77"]]), ir = { cla
|
|
|
2519
2522
|
]));
|
|
2520
2523
|
}
|
|
2521
2524
|
});
|
|
2522
|
-
const
|
|
2525
|
+
const qr = /* @__PURE__ */ v(Sr, [["__scopeId", "data-v-58805f5b"]]), Br = { class: "language__wrapper" }, Ir = { class: "language__content" }, Lr = { class: "language__headline" }, Tr = { class: "language__paragraph" }, Cr = /* @__PURE__ */ h({
|
|
2523
2526
|
__name: "language-switcher",
|
|
2524
2527
|
props: {
|
|
2525
2528
|
headline: {
|
|
@@ -2530,16 +2533,16 @@ const xr = /* @__PURE__ */ v(wr, [["__scopeId", "data-v-51070f6f"]]), Sr = { cla
|
|
|
2530
2533
|
}
|
|
2531
2534
|
},
|
|
2532
2535
|
setup(e) {
|
|
2533
|
-
return (i, s) => (
|
|
2534
|
-
t("div",
|
|
2535
|
-
t("h2",
|
|
2536
|
-
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),
|
|
2537
2540
|
u(i.$slots, "language-links", {}, void 0, !0)
|
|
2538
2541
|
])
|
|
2539
2542
|
]));
|
|
2540
2543
|
}
|
|
2541
2544
|
});
|
|
2542
|
-
const
|
|
2545
|
+
const Vr = /* @__PURE__ */ v(Cr, [["__scopeId", "data-v-a76ba727"]]), Ar = { class: "pagination__wrapper" }, Dr = { class: "pagination__content" }, Mr = /* @__PURE__ */ h({
|
|
2543
2546
|
__name: "pagination",
|
|
2544
2547
|
props: {
|
|
2545
2548
|
isPreviousDisabled: {
|
|
@@ -2553,17 +2556,17 @@ const Tr = /* @__PURE__ */ v(Lr, [["__scopeId", "data-v-a76ba727"]]), Cr = { cla
|
|
|
2553
2556
|
},
|
|
2554
2557
|
emits: ["previous", "next"],
|
|
2555
2558
|
setup(e) {
|
|
2556
|
-
return (i, s) => (
|
|
2557
|
-
t("div",
|
|
2559
|
+
return (i, s) => (a(), r("div", Ar, [
|
|
2560
|
+
t("div", Dr, [
|
|
2558
2561
|
p(W, {
|
|
2559
|
-
onClick: s[0] || (s[0] = (
|
|
2562
|
+
onClick: s[0] || (s[0] = (l) => i.$emit("previous")),
|
|
2560
2563
|
disabled: e.isPreviousDisabled,
|
|
2561
2564
|
variant: "previous",
|
|
2562
2565
|
ariaLabel: "previous"
|
|
2563
2566
|
}, null, 8, ["disabled"]),
|
|
2564
2567
|
u(i.$slots, "pagination-numbers"),
|
|
2565
2568
|
p(W, {
|
|
2566
|
-
onClick: s[1] || (s[1] = (
|
|
2569
|
+
onClick: s[1] || (s[1] = (l) => i.$emit("next")),
|
|
2567
2570
|
disabled: e.isNextDisabled,
|
|
2568
2571
|
variant: "next",
|
|
2569
2572
|
ariaLabel: "next"
|
|
@@ -2572,9 +2575,9 @@ const Tr = /* @__PURE__ */ v(Lr, [["__scopeId", "data-v-a76ba727"]]), Cr = { cla
|
|
|
2572
2575
|
]));
|
|
2573
2576
|
}
|
|
2574
2577
|
});
|
|
2575
|
-
const
|
|
2578
|
+
const Or = /* @__PURE__ */ v(Mr, [["__scopeId", "data-v-9f08dcf6"]]), Pr = {
|
|
2576
2579
|
install: (e) => {
|
|
2577
|
-
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);
|
|
2578
2581
|
}
|
|
2579
2582
|
};
|
|
2580
2583
|
export {
|
|
@@ -2597,27 +2600,27 @@ export {
|
|
|
2597
2600
|
ul as BlockHero,
|
|
2598
2601
|
Ra as BlockImage,
|
|
2599
2602
|
Qa as BlockImageGallery,
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
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,
|
|
2610
2613
|
Yt as MoleculeAddress,
|
|
2611
2614
|
ea as MoleculeBulletList,
|
|
2612
2615
|
ra as MoleculeCard,
|
|
2613
2616
|
ha as MoleculeEventCard,
|
|
2614
2617
|
re as MoleculeModal,
|
|
2615
2618
|
ya as MoleculeTextCard,
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
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
|
|
2623
2626
|
};
|