@mirweb/mir-web-components 1.8.5 → 1.8.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/atoms/text-field/text-field.vue.d.ts +1 -1
- package/dist/components/atoms/textarea/textarea.vue.d.ts +1 -1
- package/dist/components/molecules/modal/modal.vue.d.ts +1 -1
- package/dist/components/organisms/header/header.vue.d.ts +1 -1
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +455 -449
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +6 -6
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as g, computed as q, openBlock as l, createElementBlock as i, normalizeClass as h, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as U, Fragment as D, renderList as V, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as M, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as
|
|
2
|
-
const
|
|
1
|
+
import { defineComponent as g, computed as q, openBlock as l, createElementBlock as i, normalizeClass as h, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as U, Fragment as D, renderList as V, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as M, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as A, createCommentVNode as _, watchEffect as pe, withKeys as Ce, useSlots as qe, normalizeStyle as ee, isRef as x, unref as I, onMounted as me, watch as Q, onUnmounted as Te } from "vue";
|
|
2
|
+
const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
5
5
|
variant: { default: "primary" },
|
|
@@ -18,14 +18,14 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
18
18
|
return (o, u) => (l(), i("button", {
|
|
19
19
|
class: h(["button", "button--" + s.value]),
|
|
20
20
|
"aria-label": o.ariaLabel
|
|
21
|
-
}, d(s.value === "close" ? "" : o.buttonText), 11,
|
|
21
|
+
}, d(s.value === "close" ? "" : o.buttonText), 11, Ae));
|
|
22
22
|
}
|
|
23
23
|
}), v = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
25
|
for (const [s, o] of a)
|
|
26
26
|
r[s] = o;
|
|
27
27
|
return r;
|
|
28
|
-
}, le = /* @__PURE__ */ v(
|
|
28
|
+
}, le = /* @__PURE__ */ v(Le, [["__scopeId", "data-v-f61b579c"]]), De = (e) => (H("data-v-d8d77aaf"), e = e(), R(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ De(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
|
|
29
29
|
__name: "checkbox",
|
|
30
30
|
props: {
|
|
31
31
|
name: { default: "checkbox" },
|
|
@@ -117,22 +117,22 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
117
117
|
ae("update:modelValue", m);
|
|
118
118
|
}
|
|
119
119
|
function de(m) {
|
|
120
|
-
var
|
|
120
|
+
var T;
|
|
121
121
|
const B = m.target;
|
|
122
|
-
B.getAttribute("role") === "option" && (W(B), se(), (
|
|
122
|
+
B.getAttribute("role") === "option" && (W(B), se(), (T = u.value) == null || T.focus());
|
|
123
123
|
}
|
|
124
124
|
function G(m) {
|
|
125
|
-
var
|
|
125
|
+
var T;
|
|
126
126
|
const B = m.key;
|
|
127
127
|
switch (B) {
|
|
128
128
|
case "ArrowUp":
|
|
129
129
|
case "ArrowDown": {
|
|
130
130
|
m.preventDefault();
|
|
131
|
-
const
|
|
131
|
+
const L = s.options.findIndex(
|
|
132
132
|
(Y) => Y.value === s.modelValue
|
|
133
133
|
);
|
|
134
|
-
let N =
|
|
135
|
-
B === "ArrowUp" ?
|
|
134
|
+
let N = L ? n.value[L] : n.value[0];
|
|
135
|
+
B === "ArrowUp" ? L - 1 >= 0 && (N = n.value[L - 1]) : L + 1 <= s.options.length && (N = n.value[L + 1]), N && W(N);
|
|
136
136
|
break;
|
|
137
137
|
}
|
|
138
138
|
case "Home":
|
|
@@ -145,11 +145,11 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
145
145
|
break;
|
|
146
146
|
case "Enter":
|
|
147
147
|
case "Escape":
|
|
148
|
-
m.preventDefault(), se(), (
|
|
148
|
+
m.preventDefault(), se(), (T = u.value) == null || T.focus();
|
|
149
149
|
break;
|
|
150
150
|
default: {
|
|
151
|
-
const
|
|
152
|
-
|
|
151
|
+
const L = j(B);
|
|
152
|
+
L && W(L);
|
|
153
153
|
break;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
@@ -174,25 +174,25 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
174
174
|
function j(m) {
|
|
175
175
|
let B = "";
|
|
176
176
|
(f.value === "" || B !== m) && (w.value = s.options.findIndex(
|
|
177
|
-
(
|
|
177
|
+
(L) => L.value === s.modelValue
|
|
178
178
|
)), f.value = B === m ? m : f.value + m, B = m, $();
|
|
179
|
-
let
|
|
179
|
+
let T = K(
|
|
180
180
|
w.value + 1,
|
|
181
181
|
s.options.length
|
|
182
182
|
);
|
|
183
|
-
return !
|
|
183
|
+
return !T && f.value.length === 1 && (T = K(0, w.value)), w.value = (w.value + 1) % s.options.length, T;
|
|
184
184
|
}
|
|
185
185
|
function K(m, B) {
|
|
186
|
-
for (let
|
|
187
|
-
if (s.options[
|
|
188
|
-
return n.value[
|
|
186
|
+
for (let T = m; T < B; T++)
|
|
187
|
+
if (s.options[T].label && s.options[T].label.toUpperCase().indexOf(f.value.toUpperCase()) === 0)
|
|
188
|
+
return n.value[T];
|
|
189
189
|
return null;
|
|
190
190
|
}
|
|
191
191
|
function E() {
|
|
192
192
|
W(n.value[0]);
|
|
193
193
|
}
|
|
194
194
|
function W(m) {
|
|
195
|
-
var
|
|
195
|
+
var T, L;
|
|
196
196
|
const B = m.getAttribute("data-value");
|
|
197
197
|
if (s.modelValue) {
|
|
198
198
|
const N = s.options.findIndex(
|
|
@@ -200,12 +200,12 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
200
200
|
), Y = n.value[N];
|
|
201
201
|
ce(Y);
|
|
202
202
|
}
|
|
203
|
-
if (m.setAttribute("aria-selected", "true"), (
|
|
203
|
+
if (m.setAttribute("aria-selected", "true"), (T = p.value) == null || T.setAttribute(
|
|
204
204
|
"aria-activedescendant",
|
|
205
205
|
B || ""
|
|
206
206
|
), ne(B || ""), p.value && p.value.scrollHeight > p.value.clientHeight) {
|
|
207
207
|
const N = p.value.clientHeight + p.value.scrollTop, Y = m.offsetTop + m.offsetHeight;
|
|
208
|
-
Y > N ? p.value.scrollTop = Y - ((
|
|
208
|
+
Y > N ? p.value.scrollTop = Y - ((L = p.value) == null ? void 0 : L.clientHeight) : m.offsetTop < p.value.scrollTop && (p.value.scrollTop = m.offsetTop);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
function $e() {
|
|
@@ -225,7 +225,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
225
225
|
s.disabled || (k.value ? ue() : se());
|
|
226
226
|
}
|
|
227
227
|
return (m, B) => {
|
|
228
|
-
const
|
|
228
|
+
const T = _e("click-outside");
|
|
229
229
|
return l(), i("div", {
|
|
230
230
|
ref: "listbox",
|
|
231
231
|
class: "listbox__wrapper",
|
|
@@ -263,21 +263,21 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
263
263
|
onKeydown: G,
|
|
264
264
|
onClick: de
|
|
265
265
|
}, [
|
|
266
|
-
(l(!0), i(D, null, V(m.options, (
|
|
266
|
+
(l(!0), i(D, null, V(m.options, (L, N) => (l(), i("li", {
|
|
267
267
|
key: `${m.name}-option-${N}`,
|
|
268
268
|
ref_for: !0,
|
|
269
269
|
ref_key: "listboxOptions",
|
|
270
270
|
ref: n,
|
|
271
|
-
"aria-selected":
|
|
272
|
-
"data-value":
|
|
271
|
+
"aria-selected": L.value === m.modelValue,
|
|
272
|
+
"data-value": L.value,
|
|
273
273
|
class: "listbox__option",
|
|
274
274
|
role: "option"
|
|
275
|
-
}, d(
|
|
275
|
+
}, d(L.label), 9, Je))), 128))
|
|
276
276
|
], 40, Ge), [
|
|
277
277
|
[Z, !k.value]
|
|
278
278
|
])
|
|
279
279
|
])), [
|
|
280
|
-
[
|
|
280
|
+
[T, se]
|
|
281
281
|
])
|
|
282
282
|
], 8, Ee);
|
|
283
283
|
};
|
|
@@ -444,7 +444,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
444
444
|
name: "nested"
|
|
445
445
|
}, {
|
|
446
446
|
default: y(() => [
|
|
447
|
-
U(t("
|
|
447
|
+
U(t("dialog", {
|
|
448
448
|
class: h(["overlay", u.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
@@ -457,7 +457,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
459
|
t("div", null, [
|
|
460
|
-
u.searchBar ? _("", !0) : (l(),
|
|
460
|
+
u.searchBar ? _("", !0) : (l(), A(le, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
@@ -474,7 +474,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
474
474
|
})
|
|
475
475
|
]));
|
|
476
476
|
}
|
|
477
|
-
}), ve = /* @__PURE__ */ v(mt, [["__scopeId", "data-v-
|
|
477
|
+
}), ve = /* @__PURE__ */ v(mt, [["__scopeId", "data-v-0c868c23"]]), ft = { class: "slider__wrapper" }, vt = { class: "slider__label" }, gt = ["for"], bt = ["aria-label"], yt = { class: "slider__content" }, kt = ["id", "name", "value", "min", "step", "max"], $t = { class: "modal-information" }, wt = /* @__PURE__ */ g({
|
|
478
478
|
__name: "slider",
|
|
479
479
|
props: {
|
|
480
480
|
label: {},
|
|
@@ -544,7 +544,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
544
544
|
class: h([f.variant, "slider__value"])
|
|
545
545
|
}, d(f.modelValue), 3)
|
|
546
546
|
]),
|
|
547
|
-
f.information ? (l(),
|
|
547
|
+
f.information ? (l(), A(ve, {
|
|
548
548
|
key: 0,
|
|
549
549
|
show: p.value,
|
|
550
550
|
"onUpdate:show": k[3] || (k[3] = (w) => p.value = w)
|
|
@@ -556,7 +556,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
556
556
|
}, 8, ["show"])) : _("", !0)
|
|
557
557
|
]));
|
|
558
558
|
}
|
|
559
|
-
}), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = {
|
|
559
|
+
}), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { class: "textarea-wrapper" }, It = ["for"], Ct = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], qt = { class: "textarea-info" }, Tt = { key: 0 }, At = /* @__PURE__ */ g({
|
|
560
560
|
__name: "textarea",
|
|
561
561
|
props: {
|
|
562
562
|
id: { default: "" },
|
|
@@ -576,7 +576,9 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
576
576
|
class: h({ required: a.required })
|
|
577
577
|
}, d(a.labelText) + d(a.required ? " *" : ""), 11, It),
|
|
578
578
|
t("div", {
|
|
579
|
-
|
|
579
|
+
class: h(
|
|
580
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "textarea-wrapper__inner" : ""
|
|
581
|
+
)
|
|
580
582
|
}, [
|
|
581
583
|
t("textarea", {
|
|
582
584
|
id: a.id,
|
|
@@ -592,11 +594,11 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
592
594
|
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit" : "border"
|
|
593
595
|
),
|
|
594
596
|
onInput: r[0] || (r[0] = (s) => a.$emit("update:modelValue", s.target.value))
|
|
595
|
-
}, null, 42,
|
|
596
|
-
],
|
|
597
|
-
t("div",
|
|
597
|
+
}, null, 42, Ct)
|
|
598
|
+
], 2),
|
|
599
|
+
t("div", qt, [
|
|
598
600
|
t("div", null, [
|
|
599
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (l(), i("p",
|
|
601
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (l(), i("p", Tt, " Too many characters. Please make it shorter ")) : _("", !0)
|
|
600
602
|
]),
|
|
601
603
|
t("p", {
|
|
602
604
|
class: h(
|
|
@@ -606,16 +608,16 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
606
608
|
])
|
|
607
609
|
]));
|
|
608
610
|
}
|
|
609
|
-
}),
|
|
611
|
+
}), Lt = /* @__PURE__ */ v(At, [["__scopeId", "data-v-7ecd7bf5"]]), Dt = { class: "text-field__wrapper" }, Vt = ["for"], Pt = { key: 0 }, Ft = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Mt = ["aria-expanded"], Ot = ["id", "type", "value", "placeholder", "required", "disabled", "name"], zt = {
|
|
610
612
|
key: 2,
|
|
611
613
|
class: "search"
|
|
612
|
-
},
|
|
614
|
+
}, Ht = {
|
|
613
615
|
key: 3,
|
|
614
616
|
class: "errorMessage"
|
|
615
|
-
},
|
|
617
|
+
}, Rt = {
|
|
616
618
|
key: 4,
|
|
617
619
|
class: "helperText"
|
|
618
|
-
},
|
|
620
|
+
}, Nt = /* @__PURE__ */ g({
|
|
619
621
|
__name: "text-field",
|
|
620
622
|
props: {
|
|
621
623
|
type: { default: "text" },
|
|
@@ -647,7 +649,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
647
649
|
), p = q(
|
|
648
650
|
() => o.value ? "password" : "text"
|
|
649
651
|
);
|
|
650
|
-
return (n, b) => (l(), i("div",
|
|
652
|
+
return (n, b) => (l(), i("div", Dt, [
|
|
651
653
|
t("label", {
|
|
652
654
|
for: n.id,
|
|
653
655
|
class: h([
|
|
@@ -655,8 +657,8 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
655
657
|
n.disabled ? "disabled" : "",
|
|
656
658
|
n.search ? "search" : ""
|
|
657
659
|
])
|
|
658
|
-
}, d(n.label), 11,
|
|
659
|
-
s.value === "password" ? (l(), i("div",
|
|
660
|
+
}, d(n.label), 11, Vt),
|
|
661
|
+
s.value === "password" ? (l(), i("div", Pt, [
|
|
660
662
|
t("input", {
|
|
661
663
|
id: n.id,
|
|
662
664
|
ref: "passwordField",
|
|
@@ -667,14 +669,14 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
667
669
|
disabled: n.disabled,
|
|
668
670
|
name: n.fieldName,
|
|
669
671
|
onInput: b[0] || (b[0] = (f) => n.$emit("update:modelValue", f.target.value))
|
|
670
|
-
}, null, 40,
|
|
672
|
+
}, null, 40, Ft),
|
|
671
673
|
t("i", {
|
|
672
674
|
role: "button",
|
|
673
675
|
class: h([u.value]),
|
|
674
676
|
"aria-controls": "password",
|
|
675
677
|
"aria-expanded": !o.value,
|
|
676
678
|
onClick: b[1] || (b[1] = (f) => o.value = !o.value)
|
|
677
|
-
}, null, 10,
|
|
679
|
+
}, null, 10, Mt)
|
|
678
680
|
])) : (l(), i("input", {
|
|
679
681
|
key: 1,
|
|
680
682
|
id: n.id,
|
|
@@ -691,13 +693,13 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
691
693
|
disabled: n.disabled,
|
|
692
694
|
name: n.fieldName,
|
|
693
695
|
onInput: b[2] || (b[2] = (f) => n.$emit("update:modelValue", f.target.value))
|
|
694
|
-
}, null, 42,
|
|
695
|
-
n.search ? (l(), i("
|
|
696
|
-
n.errorMessage ? (l(), i("strong",
|
|
697
|
-
n.helperText ? (l(), i("span",
|
|
696
|
+
}, null, 42, Ot)),
|
|
697
|
+
n.search ? (l(), i("button", zt)) : _("", !0),
|
|
698
|
+
n.errorMessage ? (l(), i("strong", Ht, d(n.errorMessage), 1)) : _("", !0),
|
|
699
|
+
n.helperText ? (l(), i("span", Rt, d(n.helperText), 1)) : _("", !0)
|
|
698
700
|
]));
|
|
699
701
|
}
|
|
700
|
-
}),
|
|
702
|
+
}), Et = /* @__PURE__ */ v(Nt, [["__scopeId", "data-v-1d92973b"]]), jt = { class: "video__wrapper" }, Kt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Ut = ["src", "aria-label", "title", "width", "height"], Gt = /* @__PURE__ */ g({
|
|
701
703
|
__name: "video",
|
|
702
704
|
props: {
|
|
703
705
|
play: { type: Boolean, default: !1 },
|
|
@@ -722,7 +724,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
722
724
|
resetVideo: () => {
|
|
723
725
|
s.value && (s.value.currentTime = 0, s.value.play());
|
|
724
726
|
}
|
|
725
|
-
}), (u, p) => (l(), i("div",
|
|
727
|
+
}), (u, p) => (l(), i("div", jt, [
|
|
726
728
|
u.localVideo ? (l(), i("video", {
|
|
727
729
|
key: 0,
|
|
728
730
|
ref_key: "videoRef",
|
|
@@ -738,7 +740,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
738
740
|
type: "video/mp4",
|
|
739
741
|
playsinline: "",
|
|
740
742
|
src: u.src
|
|
741
|
-
}, null, 8,
|
|
743
|
+
}, null, 8, Kt)) : (l(), i("iframe", {
|
|
742
744
|
key: 1,
|
|
743
745
|
src: u.src,
|
|
744
746
|
"aria-label": u.ariaLabel,
|
|
@@ -748,10 +750,10 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
748
750
|
frameborder: "0",
|
|
749
751
|
allow: "autoplay; fullscreen",
|
|
750
752
|
allowfullscreen: ""
|
|
751
|
-
}, null, 8,
|
|
753
|
+
}, null, 8, Ut))
|
|
752
754
|
]));
|
|
753
755
|
}
|
|
754
|
-
}), te = /* @__PURE__ */ v(
|
|
756
|
+
}), te = /* @__PURE__ */ v(Gt, [["__scopeId", "data-v-c6a0feb6"]]), Jt = { class: "address__wrapper" }, Wt = { class: "address__content" }, Yt = { class: "address__flag" }, Qt = { class: "address__address" }, Zt = { class: "address__name" }, Xt = { key: 0 }, xt = { class: "address__contact" }, ea = ["href"], ta = ["href"], aa = ["href"], oa = /* @__PURE__ */ g({
|
|
755
757
|
__name: "address",
|
|
756
758
|
props: {
|
|
757
759
|
name: {},
|
|
@@ -764,20 +766,20 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
764
766
|
email: {}
|
|
765
767
|
},
|
|
766
768
|
setup(e) {
|
|
767
|
-
return (a, r) => (l(), i("div",
|
|
768
|
-
t("div",
|
|
769
|
-
t("div",
|
|
769
|
+
return (a, r) => (l(), i("div", Jt, [
|
|
770
|
+
t("div", Wt, [
|
|
771
|
+
t("div", Yt, [
|
|
770
772
|
c(a.$slots, "address-flag", {}, void 0, !0)
|
|
771
773
|
]),
|
|
772
|
-
t("div",
|
|
773
|
-
t("p",
|
|
774
|
+
t("div", Qt, [
|
|
775
|
+
t("p", Zt, d(a.name), 1),
|
|
774
776
|
t("p", null, d(a.company), 1),
|
|
775
777
|
t("p", null, d(a.addressLine1), 1),
|
|
776
778
|
t("p", null, d(a.addressLine2), 1),
|
|
777
|
-
a.addressLine3 ? (l(), i("p",
|
|
779
|
+
a.addressLine3 ? (l(), i("p", Xt, d(a.addressLine3), 1)) : _("", !0)
|
|
778
780
|
]),
|
|
779
|
-
t("div",
|
|
780
|
-
a.website ? (l(),
|
|
781
|
+
t("div", xt, [
|
|
782
|
+
a.website ? (l(), A(P, {
|
|
781
783
|
key: 0,
|
|
782
784
|
underline: "false",
|
|
783
785
|
"link-type": "regular"
|
|
@@ -786,11 +788,11 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
786
788
|
t("a", {
|
|
787
789
|
href: "https://" + a.website,
|
|
788
790
|
class: "address__website"
|
|
789
|
-
}, d(a.website), 9,
|
|
791
|
+
}, d(a.website), 9, ea)
|
|
790
792
|
]),
|
|
791
793
|
_: 1
|
|
792
794
|
})) : _("", !0),
|
|
793
|
-
(l(!0), i(D, null, V(a.phoneNumbers, (s) => (l(),
|
|
795
|
+
(l(!0), i(D, null, V(a.phoneNumbers, (s) => (l(), A(P, {
|
|
794
796
|
key: s,
|
|
795
797
|
underline: "false",
|
|
796
798
|
"link-type": "regular"
|
|
@@ -799,19 +801,19 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
799
801
|
t("a", {
|
|
800
802
|
href: "tel:" + s,
|
|
801
803
|
class: "address__phone"
|
|
802
|
-
}, d(s), 9,
|
|
804
|
+
}, d(s), 9, ta)
|
|
803
805
|
]),
|
|
804
806
|
_: 2
|
|
805
807
|
}, 1024))), 128)),
|
|
806
808
|
t("a", {
|
|
807
809
|
href: "mailto:" + a.email,
|
|
808
810
|
class: "address__email"
|
|
809
|
-
}, d(a.email), 9,
|
|
811
|
+
}, d(a.email), 9, aa)
|
|
810
812
|
])
|
|
811
813
|
])
|
|
812
814
|
]));
|
|
813
815
|
}
|
|
814
|
-
}),
|
|
816
|
+
}), sa = /* @__PURE__ */ v(oa, [["__scopeId", "data-v-6f5f6a44"]]), la = (e) => (H("data-v-a44fd57d"), e = e(), R(), e), ia = { class: "bullet-list__wrapper" }, ra = /* @__PURE__ */ la(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), na = /* @__PURE__ */ g({
|
|
815
817
|
__name: "bullet-list",
|
|
816
818
|
props: {
|
|
817
819
|
list: {
|
|
@@ -831,20 +833,20 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
831
833
|
}
|
|
832
834
|
},
|
|
833
835
|
setup(e) {
|
|
834
|
-
return (a, r) => (l(), i("div",
|
|
836
|
+
return (a, r) => (l(), i("div", ia, [
|
|
835
837
|
t("div", {
|
|
836
838
|
class: h(["bullet-list", e.variant])
|
|
837
839
|
}, [
|
|
838
840
|
t("ul", null, [
|
|
839
841
|
(l(!0), i(D, null, V(e.list, (s) => (l(), i("li", { key: s }, [
|
|
840
|
-
|
|
842
|
+
ra,
|
|
841
843
|
J(" " + d(s), 1)
|
|
842
844
|
]))), 128))
|
|
843
845
|
])
|
|
844
846
|
], 2)
|
|
845
847
|
]));
|
|
846
848
|
}
|
|
847
|
-
}),
|
|
849
|
+
}), da = /* @__PURE__ */ v(na, [["__scopeId", "data-v-a44fd57d"]]), ca = { class: "card__wrapper" }, ua = { key: 2 }, _a = { key: 5 }, ha = /* @__PURE__ */ g({
|
|
848
850
|
__name: "card",
|
|
849
851
|
props: {
|
|
850
852
|
variant: { default: "product" },
|
|
@@ -890,7 +892,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
890
892
|
height: "335"
|
|
891
893
|
}
|
|
892
894
|
}, o = e, u = q(() => s[o.size]), p = q(() => o.variant === "article" || o.variant === "product" ? `card--${o.size}-${o.variant}` : `card--${o.variant}`);
|
|
893
|
-
return (n, b) => (l(), i("div",
|
|
895
|
+
return (n, b) => (l(), i("div", ca, [
|
|
894
896
|
t("div", {
|
|
895
897
|
class: h(["card", [
|
|
896
898
|
n.theme === "dark" ? "card--dark" : "card--light",
|
|
@@ -905,7 +907,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
905
907
|
onFocus: b[2] || (b[2] = (f) => x(r) ? r.value = !0 : r = !0),
|
|
906
908
|
onBlur: b[3] || (b[3] = (f) => x(r) ? r.value = !1 : r = !1)
|
|
907
909
|
}, [
|
|
908
|
-
n.mediaType === "image" ? (l(),
|
|
910
|
+
n.mediaType === "image" ? (l(), A(F, { key: 0 }, {
|
|
909
911
|
default: y(() => [
|
|
910
912
|
c(n.$slots, "card-image", M({
|
|
911
913
|
src: n.imgSrc,
|
|
@@ -935,7 +937,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
935
937
|
muted: !0
|
|
936
938
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
937
939
|
], 2)),
|
|
938
|
-
I(a)["card-label"] ? (l(), i("div",
|
|
940
|
+
I(a)["card-label"] ? (l(), i("div", ua, [
|
|
939
941
|
c(n.$slots, "card-label")
|
|
940
942
|
])) : _("", !0),
|
|
941
943
|
n.variant === "product" ? (l(), i("div", {
|
|
@@ -952,11 +954,11 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
952
954
|
n.theme === "dark" ? "regular-dark" : "regular-dark-blue"
|
|
953
955
|
])
|
|
954
956
|
}, d(n.headline), 3)),
|
|
955
|
-
n.variant === "product" ? (l(), i("p",
|
|
957
|
+
n.variant === "product" ? (l(), i("p", _a, d(n.paragraph), 1)) : _("", !0)
|
|
956
958
|
], 38)
|
|
957
959
|
]));
|
|
958
960
|
}
|
|
959
|
-
}),
|
|
961
|
+
}), pa = /* @__PURE__ */ v(ha, [["__scopeId", "data-v-364d219c"]]), ma = { class: "column-card" }, fa = { class: "column-card__content" }, va = { class: "column-card__headline" }, ga = { class: "column-card__bodytext" }, ba = /* @__PURE__ */ g({
|
|
960
962
|
__name: "column-card",
|
|
961
963
|
props: {
|
|
962
964
|
headline: {},
|
|
@@ -965,8 +967,8 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
965
967
|
imageFit: { type: Boolean }
|
|
966
968
|
},
|
|
967
969
|
setup(e) {
|
|
968
|
-
return (a, r) => (l(), i("div",
|
|
969
|
-
t("div",
|
|
970
|
+
return (a, r) => (l(), i("div", ma, [
|
|
971
|
+
t("div", fa, [
|
|
970
972
|
a.image.filename ? (l(), i("div", {
|
|
971
973
|
key: 0,
|
|
972
974
|
class: h(["column-card__image", { cover: a.imageFit, contain: !a.imageFit }])
|
|
@@ -976,17 +978,17 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
976
978
|
alt: a.image.alt
|
|
977
979
|
})), void 0, !0)
|
|
978
980
|
], 2)) : _("", !0),
|
|
979
|
-
t("h3",
|
|
980
|
-
t("div",
|
|
981
|
+
t("h3", va, d(a.headline), 1),
|
|
982
|
+
t("div", ga, [
|
|
981
983
|
c(a.$slots, "column-card-body", {}, void 0, !0)
|
|
982
984
|
])
|
|
983
985
|
])
|
|
984
986
|
]));
|
|
985
987
|
}
|
|
986
|
-
}), ge = /* @__PURE__ */ v(
|
|
988
|
+
}), ge = /* @__PURE__ */ v(ba, [["__scopeId", "data-v-9e2246f0"]]), ya = (e) => (H("data-v-e4a362a9"), e = e(), R(), e), ka = { class: "event__wrapper" }, $a = { class: "event__headline" }, wa = { class: "event__date-location" }, Ba = /* @__PURE__ */ ya(() => /* @__PURE__ */ t("br", null, null, -1)), Sa = {
|
|
987
989
|
key: 0,
|
|
988
990
|
class: "event__info"
|
|
989
|
-
},
|
|
991
|
+
}, Ia = { class: "event__exhibitor" }, Ca = /* @__PURE__ */ g({
|
|
990
992
|
__name: "event-card",
|
|
991
993
|
props: {
|
|
992
994
|
eventType: {
|
|
@@ -1016,46 +1018,46 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1016
1018
|
}
|
|
1017
1019
|
},
|
|
1018
1020
|
setup(e) {
|
|
1019
|
-
return (a, r) => (l(), i("div",
|
|
1021
|
+
return (a, r) => (l(), i("div", ka, [
|
|
1020
1022
|
S(X, {
|
|
1021
1023
|
"label-dark": !1,
|
|
1022
1024
|
text: e.eventType ? e.eventType : ""
|
|
1023
1025
|
}, null, 8, ["text"]),
|
|
1024
|
-
t("div",
|
|
1025
|
-
t("div",
|
|
1026
|
+
t("div", $a, d(e.headline), 1),
|
|
1027
|
+
t("div", wa, [
|
|
1026
1028
|
J(d(e.dateTime) + " ", 1),
|
|
1027
|
-
|
|
1028
|
-
e.info ? (l(), i("div",
|
|
1029
|
+
Ba,
|
|
1030
|
+
e.info ? (l(), i("div", Sa, d(e.info), 1)) : _("", !0),
|
|
1029
1031
|
J(" " + d(e.location), 1)
|
|
1030
1032
|
]),
|
|
1031
|
-
t("div",
|
|
1033
|
+
t("div", Ia, d(e.exhibitor), 1)
|
|
1032
1034
|
]));
|
|
1033
1035
|
}
|
|
1034
|
-
}),
|
|
1036
|
+
}), qa = /* @__PURE__ */ v(Ca, [["__scopeId", "data-v-e4a362a9"]]), ie = (e) => (H("data-v-93ee37aa"), e = e(), R(), e), Ta = { class: "flashcard-side flashcard-front" }, Aa = {
|
|
1035
1037
|
key: 0,
|
|
1036
1038
|
class: "content"
|
|
1037
|
-
},
|
|
1039
|
+
}, La = { key: 0 }, Da = {
|
|
1038
1040
|
key: 1,
|
|
1039
1041
|
class: "flashcard-body"
|
|
1040
|
-
},
|
|
1042
|
+
}, Va = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
|
|
1041
1043
|
class: "flip-icon",
|
|
1042
1044
|
src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
|
|
1043
|
-
}, null, -1)),
|
|
1045
|
+
}, null, -1)), Pa = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
|
|
1044
1046
|
class: "flip-icon",
|
|
1045
1047
|
src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
|
|
1046
|
-
}, null, -1)),
|
|
1048
|
+
}, null, -1)), Fa = {
|
|
1047
1049
|
key: 0,
|
|
1048
1050
|
class: "content"
|
|
1049
|
-
},
|
|
1051
|
+
}, Ma = { key: 0 }, Oa = {
|
|
1050
1052
|
key: 1,
|
|
1051
1053
|
class: "flashcard-body"
|
|
1052
|
-
},
|
|
1054
|
+
}, za = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
|
|
1053
1055
|
class: "flip-icon",
|
|
1054
1056
|
src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
|
|
1055
|
-
}, null, -1)),
|
|
1057
|
+
}, null, -1)), Ha = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
|
|
1056
1058
|
class: "flip-icon",
|
|
1057
1059
|
src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
|
|
1058
|
-
}, null, -1)),
|
|
1060
|
+
}, null, -1)), Ra = /* @__PURE__ */ g({
|
|
1059
1061
|
__name: "flashcard",
|
|
1060
1062
|
props: {
|
|
1061
1063
|
name: {},
|
|
@@ -1087,13 +1089,13 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1087
1089
|
"flashcard--lg": s.size === "lg"
|
|
1088
1090
|
}])
|
|
1089
1091
|
}, [
|
|
1090
|
-
t("div",
|
|
1091
|
-
s.name || ((u = s.bodytext) == null ? void 0 : u.length) > 0 ? (l(), i("div",
|
|
1092
|
-
s.name ? (l(), i("h3",
|
|
1093
|
-
s.bodytext ? (l(), i("div",
|
|
1092
|
+
t("div", Ta, [
|
|
1093
|
+
s.name || ((u = s.bodytext) == null ? void 0 : u.length) > 0 ? (l(), i("div", Aa, [
|
|
1094
|
+
s.name ? (l(), i("h3", La, d(s.name), 1)) : _("", !0),
|
|
1095
|
+
s.bodytext ? (l(), i("div", Da, [
|
|
1094
1096
|
c(s.$slots, "flashcard-front-body", O(z({ bodytext: s.bodytext })), void 0, !0)
|
|
1095
1097
|
])) : _("", !0),
|
|
1096
|
-
|
|
1098
|
+
Va
|
|
1097
1099
|
])) : (l(), i("div", {
|
|
1098
1100
|
key: 1,
|
|
1099
1101
|
class: h(["flashcard-image", {
|
|
@@ -1102,7 +1104,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1102
1104
|
}])
|
|
1103
1105
|
}, [
|
|
1104
1106
|
c(s.$slots, "flashcard-front-image", O(z({ src: (p = s.image) == null ? void 0 : p.filename, alt: (n = s.image) == null ? void 0 : n.alt })), void 0, !0),
|
|
1105
|
-
|
|
1107
|
+
Pa
|
|
1106
1108
|
], 2))
|
|
1107
1109
|
]),
|
|
1108
1110
|
t("div", {
|
|
@@ -1111,12 +1113,12 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1111
1113
|
(b = s.imagebackside) != null && b.filename ? "flashcard-back--image" : "flashcard-back--no-image"
|
|
1112
1114
|
])
|
|
1113
1115
|
}, [
|
|
1114
|
-
s.namebackside || s.bodytextbackside.length > 0 ? (l(), i("div",
|
|
1115
|
-
s.namebackside ? (l(), i("h3",
|
|
1116
|
-
s.bodytextbackside ? (l(), i("div",
|
|
1116
|
+
s.namebackside || s.bodytextbackside.length > 0 ? (l(), i("div", Fa, [
|
|
1117
|
+
s.namebackside ? (l(), i("h3", Ma, d(s.namebackside), 1)) : _("", !0),
|
|
1118
|
+
s.bodytextbackside ? (l(), i("div", Oa, [
|
|
1117
1119
|
c(s.$slots, "flashcard-back-body", O(z({ bodytextbackside: s.bodytextbackside })), void 0, !0)
|
|
1118
1120
|
])) : _("", !0),
|
|
1119
|
-
|
|
1121
|
+
za
|
|
1120
1122
|
])) : (l(), i("div", {
|
|
1121
1123
|
key: 1,
|
|
1122
1124
|
class: h(["flashcard-image", {
|
|
@@ -1125,14 +1127,14 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1125
1127
|
}])
|
|
1126
1128
|
}, [
|
|
1127
1129
|
c(s.$slots, "flashcard-back-image", O(z({ src: (f = s.imagebackside) == null ? void 0 : f.filename, alt: (k = s.imagebackside) == null ? void 0 : k.alt })), void 0, !0),
|
|
1128
|
-
|
|
1130
|
+
Ha
|
|
1129
1131
|
], 2))
|
|
1130
1132
|
], 2)
|
|
1131
1133
|
], 2)
|
|
1132
1134
|
]);
|
|
1133
1135
|
};
|
|
1134
1136
|
}
|
|
1135
|
-
}), be = /* @__PURE__ */ v(
|
|
1137
|
+
}), be = /* @__PURE__ */ v(Ra, [["__scopeId", "data-v-93ee37aa"]]), Na = { class: "text__wrapper" }, Ea = { class: "text__headline" }, ja = { class: "text__paragraph" }, Ka = /* @__PURE__ */ g({
|
|
1136
1138
|
__name: "text-card",
|
|
1137
1139
|
props: {
|
|
1138
1140
|
label: {
|
|
@@ -1149,24 +1151,24 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1149
1151
|
}
|
|
1150
1152
|
},
|
|
1151
1153
|
setup(e) {
|
|
1152
|
-
return (a, r) => (l(), i("div",
|
|
1154
|
+
return (a, r) => (l(), i("div", Na, [
|
|
1153
1155
|
S(X, {
|
|
1154
1156
|
"label-dark": !1,
|
|
1155
1157
|
text: e.label ? e.label : ""
|
|
1156
1158
|
}, null, 8, ["text"]),
|
|
1157
|
-
t("div",
|
|
1158
|
-
t("div",
|
|
1159
|
+
t("div", Ea, d(e.headline), 1),
|
|
1160
|
+
t("div", ja, [
|
|
1159
1161
|
t("p", null, d(e.paragraph), 1)
|
|
1160
1162
|
])
|
|
1161
1163
|
]));
|
|
1162
1164
|
}
|
|
1163
|
-
}),
|
|
1165
|
+
}), Ua = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-ebdea819"]]), Ga = { class: "accordions" }, Ja = { class: "accordions__wrapper" }, Wa = { class: "accordion" }, Ya = ["onClick"], Qa = { class: "accordion__headline" }, Za = { class: "accordion__icon" }, Xa = {
|
|
1164
1166
|
key: 0,
|
|
1165
1167
|
src: "https://a.storyblok.com/f/230581/21x21/42c9c3b5ba/icon_add.svg"
|
|
1166
|
-
},
|
|
1168
|
+
}, xa = {
|
|
1167
1169
|
key: 1,
|
|
1168
1170
|
src: "https://a.storyblok.com/f/230581/22x21/adfe5d1742/icon_substract.svg"
|
|
1169
|
-
},
|
|
1171
|
+
}, eo = { class: "accordion__bodytext" }, to = /* @__PURE__ */ g({
|
|
1170
1172
|
__name: "accordion",
|
|
1171
1173
|
props: {
|
|
1172
1174
|
accordions: {}
|
|
@@ -1176,28 +1178,28 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1176
1178
|
const u = a.value.indexOf(o);
|
|
1177
1179
|
u > -1 ? a.value.splice(u, 1) : a.value.push(o);
|
|
1178
1180
|
}, s = (o) => a.value.includes(o);
|
|
1179
|
-
return (o, u) => (l(), i("section",
|
|
1180
|
-
t("div",
|
|
1181
|
+
return (o, u) => (l(), i("section", Ga, [
|
|
1182
|
+
t("div", Ja, [
|
|
1181
1183
|
(l(!0), i(D, null, V(o.accordions, (p) => (l(), i("div", {
|
|
1182
1184
|
key: p._uid
|
|
1183
1185
|
}, [
|
|
1184
|
-
t("div",
|
|
1186
|
+
t("div", Wa, [
|
|
1185
1187
|
t("div", {
|
|
1186
1188
|
class: "accordion__header",
|
|
1187
1189
|
onClick: (n) => r(p._uid)
|
|
1188
1190
|
}, [
|
|
1189
|
-
t("h3",
|
|
1190
|
-
t("span",
|
|
1191
|
-
s(p._uid) ? (l(), i("img",
|
|
1191
|
+
t("h3", Qa, d(p.headline), 1),
|
|
1192
|
+
t("span", Za, [
|
|
1193
|
+
s(p._uid) ? (l(), i("img", xa)) : (l(), i("img", Xa))
|
|
1192
1194
|
])
|
|
1193
|
-
], 8,
|
|
1195
|
+
], 8, Ya),
|
|
1194
1196
|
t("div", {
|
|
1195
1197
|
class: h(["accordion__content", { "accordion__content--reverse": p.imageFirst }]),
|
|
1196
1198
|
style: ee({
|
|
1197
1199
|
display: s(p._uid) ? "flex" : "none"
|
|
1198
1200
|
})
|
|
1199
1201
|
}, [
|
|
1200
|
-
t("div",
|
|
1202
|
+
t("div", eo, [
|
|
1201
1203
|
c(o.$slots, "accordion-body", M({ ref_for: !0 }, { body: p.bodytext }), void 0, !0)
|
|
1202
1204
|
]),
|
|
1203
1205
|
S(F, null, {
|
|
@@ -1219,10 +1221,10 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1219
1221
|
])
|
|
1220
1222
|
]));
|
|
1221
1223
|
}
|
|
1222
|
-
}),
|
|
1224
|
+
}), ao = /* @__PURE__ */ v(to, [["__scopeId", "data-v-0e6f6da8"]]), oo = { class: "card-display__wrapper" }, so = {
|
|
1223
1225
|
key: 0,
|
|
1224
1226
|
class: "card__content"
|
|
1225
|
-
},
|
|
1227
|
+
}, lo = { key: 0 }, io = { key: 1 }, ro = { class: "card__cards" }, no = /* @__PURE__ */ g({
|
|
1226
1228
|
__name: "card-display",
|
|
1227
1229
|
props: {
|
|
1228
1230
|
headline: {
|
|
@@ -1245,24 +1247,24 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1245
1247
|
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1246
1248
|
])
|
|
1247
1249
|
}, [
|
|
1248
|
-
t("div",
|
|
1249
|
-
e.headline || e.paragraph ? (l(), i("div",
|
|
1250
|
-
e.headline ? (l(), i("h2",
|
|
1251
|
-
e.paragraph ? (l(), i("p",
|
|
1250
|
+
t("div", oo, [
|
|
1251
|
+
e.headline || e.paragraph ? (l(), i("div", so, [
|
|
1252
|
+
e.headline ? (l(), i("h2", lo, d(e.headline), 1)) : _("", !0),
|
|
1253
|
+
e.paragraph ? (l(), i("p", io, d(e.paragraph), 1)) : _("", !0)
|
|
1252
1254
|
])) : _("", !0),
|
|
1253
|
-
t("div",
|
|
1255
|
+
t("div", ro, [
|
|
1254
1256
|
c(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1255
1257
|
])
|
|
1256
1258
|
])
|
|
1257
1259
|
], 2));
|
|
1258
1260
|
}
|
|
1259
|
-
}),
|
|
1261
|
+
}), co = /* @__PURE__ */ v(no, [["__scopeId", "data-v-e5d1b11a"]]), uo = { class: "column-grid__top-section" }, _o = {
|
|
1260
1262
|
key: 0,
|
|
1261
1263
|
class: "column-grid__headline"
|
|
1262
|
-
},
|
|
1264
|
+
}, ho = {
|
|
1263
1265
|
key: 1,
|
|
1264
1266
|
class: "column-grid__bodytext"
|
|
1265
|
-
},
|
|
1267
|
+
}, po = { class: "column-grid__teaser-list" }, mo = /* @__PURE__ */ g({
|
|
1266
1268
|
__name: "column-grid",
|
|
1267
1269
|
props: {
|
|
1268
1270
|
headline: { default: "" },
|
|
@@ -1277,14 +1279,14 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1277
1279
|
a.bgColor === "dark" ? "column-grid--dark" : a.bgColor === "light" ? "column-grid--light" : "column-grid--white"
|
|
1278
1280
|
])
|
|
1279
1281
|
}, [
|
|
1280
|
-
t("div",
|
|
1281
|
-
a.headline ? (l(), i("h2",
|
|
1282
|
-
a.bodytext ? (l(), i("div",
|
|
1282
|
+
t("div", uo, [
|
|
1283
|
+
a.headline ? (l(), i("h2", _o, d(a.headline), 1)) : _("", !0),
|
|
1284
|
+
a.bodytext ? (l(), i("div", ho, [
|
|
1283
1285
|
c(a.$slots, "column-grid-body", {}, void 0, !0)
|
|
1284
1286
|
])) : _("", !0)
|
|
1285
1287
|
]),
|
|
1286
|
-
t("div",
|
|
1287
|
-
(l(!0), i(D, null, V(a.columns, (s) => (l(),
|
|
1288
|
+
t("div", po, [
|
|
1289
|
+
(l(!0), i(D, null, V(a.columns, (s) => (l(), A(ge, {
|
|
1288
1290
|
key: s._uid,
|
|
1289
1291
|
headline: s.headline,
|
|
1290
1292
|
bodytext: s.bodytext,
|
|
@@ -1309,10 +1311,10 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1309
1311
|
])
|
|
1310
1312
|
], 2));
|
|
1311
1313
|
}
|
|
1312
|
-
}),
|
|
1314
|
+
}), fo = /* @__PURE__ */ v(mo, [["__scopeId", "data-v-ef81db4d"]]), vo = { class: "facts__wrapper" }, go = { class: "facts__content" }, bo = { class: "facts__headline" }, yo = { class: "facts" }, ko = { class: "fact__value" }, $o = { class: "fact__metric" }, wo = {
|
|
1313
1315
|
key: 0,
|
|
1314
1316
|
class: "facts__link"
|
|
1315
|
-
},
|
|
1317
|
+
}, Bo = /* @__PURE__ */ g({
|
|
1316
1318
|
__name: "facts",
|
|
1317
1319
|
props: {
|
|
1318
1320
|
headline: { default: "" },
|
|
@@ -1336,23 +1338,23 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1336
1338
|
}) }
|
|
1337
1339
|
},
|
|
1338
1340
|
setup(e) {
|
|
1339
|
-
return (a, r) => (l(), i("div",
|
|
1340
|
-
t("div",
|
|
1341
|
-
t("h2",
|
|
1342
|
-
t("div",
|
|
1341
|
+
return (a, r) => (l(), i("div", vo, [
|
|
1342
|
+
t("div", go, [
|
|
1343
|
+
t("h2", bo, d(a.headline), 1),
|
|
1344
|
+
t("div", yo, [
|
|
1343
1345
|
(l(!0), i(D, null, V(a.facts, (s) => (l(), i("div", {
|
|
1344
1346
|
key: s.value + s.metric,
|
|
1345
1347
|
class: "fact"
|
|
1346
1348
|
}, [
|
|
1347
|
-
t("div",
|
|
1349
|
+
t("div", ko, [
|
|
1348
1350
|
t("span", null, d(s.value), 1)
|
|
1349
1351
|
]),
|
|
1350
|
-
t("div",
|
|
1352
|
+
t("div", $o, [
|
|
1351
1353
|
t("span", null, d(s.metric), 1)
|
|
1352
1354
|
])
|
|
1353
1355
|
]))), 128))
|
|
1354
1356
|
]),
|
|
1355
|
-
a.link ? (l(), i("div",
|
|
1357
|
+
a.link ? (l(), i("div", wo, [
|
|
1356
1358
|
S(P, {
|
|
1357
1359
|
"link-type": "regular_light",
|
|
1358
1360
|
arrow: ""
|
|
@@ -1366,13 +1368,13 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1366
1368
|
])
|
|
1367
1369
|
]));
|
|
1368
1370
|
}
|
|
1369
|
-
}),
|
|
1371
|
+
}), So = /* @__PURE__ */ v(Bo, [["__scopeId", "data-v-d2b231d4"]]), Io = { class: "features__wrapper" }, Co = { class: "features__content" }, qo = {
|
|
1370
1372
|
key: 0,
|
|
1371
1373
|
class: "features__headline"
|
|
1372
|
-
},
|
|
1374
|
+
}, To = {
|
|
1373
1375
|
key: 1,
|
|
1374
1376
|
class: "features__body"
|
|
1375
|
-
},
|
|
1377
|
+
}, Ao = { class: "element__headline" }, Lo = { class: "element__body" }, Do = /* @__PURE__ */ g({
|
|
1376
1378
|
__name: "features",
|
|
1377
1379
|
props: {
|
|
1378
1380
|
headline: { default: "" },
|
|
@@ -1380,12 +1382,12 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1380
1382
|
elements: { default: () => [] }
|
|
1381
1383
|
},
|
|
1382
1384
|
setup(e) {
|
|
1383
|
-
return (a, r) => (l(), i("div",
|
|
1384
|
-
t("div",
|
|
1385
|
-
a.headline ? (l(), i("div",
|
|
1385
|
+
return (a, r) => (l(), i("div", Io, [
|
|
1386
|
+
t("div", Co, [
|
|
1387
|
+
a.headline ? (l(), i("div", qo, [
|
|
1386
1388
|
t("h2", null, d(a.headline), 1)
|
|
1387
1389
|
])) : _("", !0),
|
|
1388
|
-
a.body ? (l(), i("div",
|
|
1390
|
+
a.body ? (l(), i("div", To, [
|
|
1389
1391
|
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1390
1392
|
])) : _("", !0),
|
|
1391
1393
|
t("div", {
|
|
@@ -1406,20 +1408,20 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1406
1408
|
]),
|
|
1407
1409
|
_: 2
|
|
1408
1410
|
}, 1024),
|
|
1409
|
-
t("p",
|
|
1410
|
-
t("p",
|
|
1411
|
+
t("p", Ao, d(s.headline), 1),
|
|
1412
|
+
t("p", Lo, d(s.body), 1)
|
|
1411
1413
|
]))), 128))
|
|
1412
1414
|
], 2)
|
|
1413
1415
|
])
|
|
1414
1416
|
]));
|
|
1415
1417
|
}
|
|
1416
|
-
}),
|
|
1418
|
+
}), Vo = /* @__PURE__ */ v(Do, [["__scopeId", "data-v-57a22df7"]]), Po = { class: "flashcard-wrapper" }, Fo = {
|
|
1417
1419
|
key: 0,
|
|
1418
1420
|
class: "flashcard-wrapper__headline"
|
|
1419
|
-
},
|
|
1421
|
+
}, Mo = {
|
|
1420
1422
|
key: 1,
|
|
1421
1423
|
class: "flashcard-wrapper__bodytext"
|
|
1422
|
-
},
|
|
1424
|
+
}, Oo = /* @__PURE__ */ g({
|
|
1423
1425
|
__name: "flashcards",
|
|
1424
1426
|
props: {
|
|
1425
1427
|
headline: {},
|
|
@@ -1436,15 +1438,15 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1436
1438
|
return (o, u) => (l(), i("div", {
|
|
1437
1439
|
class: h(["flashcards", o.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
|
|
1438
1440
|
}, [
|
|
1439
|
-
t("div",
|
|
1441
|
+
t("div", Po, [
|
|
1440
1442
|
t("div", {
|
|
1441
1443
|
class: h([
|
|
1442
1444
|
{ "no-bodytext": !r.value },
|
|
1443
1445
|
"flashcard-wrapper__top-section"
|
|
1444
1446
|
])
|
|
1445
1447
|
}, [
|
|
1446
|
-
o.headline ? (l(), i("h2",
|
|
1447
|
-
o.body ? (l(), i("div",
|
|
1448
|
+
o.headline ? (l(), i("h2", Fo, d(o.headline), 1)) : _("", !0),
|
|
1449
|
+
o.body ? (l(), i("div", Mo, [
|
|
1448
1450
|
c(o.$slots, "flashcard-wrapper-body", {}, void 0, !0)
|
|
1449
1451
|
])) : _("", !0)
|
|
1450
1452
|
], 2),
|
|
@@ -1455,7 +1457,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1455
1457
|
lg: s.value === "lg"
|
|
1456
1458
|
}])
|
|
1457
1459
|
}, [
|
|
1458
|
-
(l(!0), i(D, null, V(o.flashcards, (p) => (l(),
|
|
1460
|
+
(l(!0), i(D, null, V(o.flashcards, (p) => (l(), A(I(be), {
|
|
1459
1461
|
key: p._uid,
|
|
1460
1462
|
name: p.name,
|
|
1461
1463
|
bodytext: p.bodytext,
|
|
@@ -1485,7 +1487,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1485
1487
|
])
|
|
1486
1488
|
], 2));
|
|
1487
1489
|
}
|
|
1488
|
-
}),
|
|
1490
|
+
}), zo = /* @__PURE__ */ v(Oo, [["__scopeId", "data-v-de3c8751"]]), Ho = { class: "form__content" }, Ro = { class: "form__information" }, No = { class: "form__headline" }, Eo = { class: "form__body" }, jo = { class: "form__script" }, Ko = /* @__PURE__ */ g({
|
|
1489
1491
|
__name: "form-script",
|
|
1490
1492
|
props: {
|
|
1491
1493
|
headline: { default: "" },
|
|
@@ -1502,13 +1504,13 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1502
1504
|
return (o, u) => (l(), i("div", {
|
|
1503
1505
|
class: h(["form__wrapper", s.value])
|
|
1504
1506
|
}, [
|
|
1505
|
-
t("div",
|
|
1506
|
-
t("div",
|
|
1507
|
-
t("h2",
|
|
1508
|
-
t("div",
|
|
1507
|
+
t("div", Ho, [
|
|
1508
|
+
t("div", Ro, [
|
|
1509
|
+
t("h2", No, d(o.headline), 1),
|
|
1510
|
+
t("div", Eo, [
|
|
1509
1511
|
c(o.$slots, "form-body", {}, void 0, !0)
|
|
1510
1512
|
]),
|
|
1511
|
-
o.linkType === "link" ? (l(),
|
|
1513
|
+
o.linkType === "link" ? (l(), A(P, {
|
|
1512
1514
|
key: 0,
|
|
1513
1515
|
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
1514
1516
|
arrow: ""
|
|
@@ -1519,13 +1521,13 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1519
1521
|
_: 3
|
|
1520
1522
|
}, 8, ["link-type"])) : _("", !0)
|
|
1521
1523
|
]),
|
|
1522
|
-
t("div",
|
|
1524
|
+
t("div", jo, [
|
|
1523
1525
|
c(o.$slots, "form-script", {}, void 0, !0)
|
|
1524
1526
|
])
|
|
1525
1527
|
])
|
|
1526
1528
|
], 2));
|
|
1527
1529
|
}
|
|
1528
|
-
}),
|
|
1530
|
+
}), Uo = /* @__PURE__ */ v(Ko, [["__scopeId", "data-v-b8b02bae"]]), Go = { class: "headline__wrapper" }, Jo = { class: "headline__h1" }, Wo = /* @__PURE__ */ g({
|
|
1529
1531
|
__name: "headline",
|
|
1530
1532
|
props: {
|
|
1531
1533
|
headline: {
|
|
@@ -1542,7 +1544,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1542
1544
|
}
|
|
1543
1545
|
},
|
|
1544
1546
|
setup(e) {
|
|
1545
|
-
return (a, r) => (l(), i("div",
|
|
1547
|
+
return (a, r) => (l(), i("div", Go, [
|
|
1546
1548
|
t("div", {
|
|
1547
1549
|
class: h({
|
|
1548
1550
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1551,11 +1553,11 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1551
1553
|
"headline__content--default": !e.article && !e.subMenu
|
|
1552
1554
|
})
|
|
1553
1555
|
}, [
|
|
1554
|
-
t("h1",
|
|
1556
|
+
t("h1", Jo, d(e.headline), 1)
|
|
1555
1557
|
], 2)
|
|
1556
1558
|
]));
|
|
1557
1559
|
}
|
|
1558
|
-
}),
|
|
1560
|
+
}), Yo = /* @__PURE__ */ v(Wo, [["__scopeId", "data-v-3ef1567e"]]), Qo = (e) => (H("data-v-22f9be13"), e = e(), R(), e), Zo = { class: "hero__wrapper" }, Xo = { class: "hero__content" }, xo = { class: "hero__top" }, es = { class: "hero__elements" }, ts = { class: "hero__headline" }, as = { class: "hero__link" }, os = { class: "hero__video" }, ss = /* @__PURE__ */ Qo(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), ls = { class: "hero__video__video" }, is = { class: "hero__image" }, rs = /* @__PURE__ */ g({
|
|
1559
1561
|
__name: "hero",
|
|
1560
1562
|
props: {
|
|
1561
1563
|
headline: {
|
|
@@ -1564,14 +1566,14 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1564
1566
|
}
|
|
1565
1567
|
},
|
|
1566
1568
|
setup(e) {
|
|
1567
|
-
return (a, r) => (l(), i("div",
|
|
1568
|
-
t("div",
|
|
1569
|
-
t("div",
|
|
1570
|
-
t("div",
|
|
1571
|
-
t("div",
|
|
1569
|
+
return (a, r) => (l(), i("div", Zo, [
|
|
1570
|
+
t("div", Xo, [
|
|
1571
|
+
t("div", xo, [
|
|
1572
|
+
t("div", es, [
|
|
1573
|
+
t("div", ts, [
|
|
1572
1574
|
t("h1", null, d(e.headline), 1)
|
|
1573
1575
|
]),
|
|
1574
|
-
t("div",
|
|
1576
|
+
t("div", as, [
|
|
1575
1577
|
S(P, {
|
|
1576
1578
|
"link-type": "regular_light",
|
|
1577
1579
|
arrow: ""
|
|
@@ -1584,19 +1586,19 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1584
1586
|
])
|
|
1585
1587
|
])
|
|
1586
1588
|
]),
|
|
1587
|
-
t("div",
|
|
1588
|
-
|
|
1589
|
-
t("div",
|
|
1589
|
+
t("div", os, [
|
|
1590
|
+
ss,
|
|
1591
|
+
t("div", ls, [
|
|
1590
1592
|
c(a.$slots, "hero-video", {}, void 0, !0)
|
|
1591
1593
|
]),
|
|
1592
|
-
t("div",
|
|
1594
|
+
t("div", is, [
|
|
1593
1595
|
c(a.$slots, "hero-image", {}, void 0, !0)
|
|
1594
1596
|
])
|
|
1595
1597
|
])
|
|
1596
1598
|
])
|
|
1597
1599
|
]));
|
|
1598
1600
|
}
|
|
1599
|
-
}),
|
|
1601
|
+
}), ns = /* @__PURE__ */ v(rs, [["__scopeId", "data-v-22f9be13"]]), ds = { class: "image__wrapper" }, cs = { class: "image__content" }, us = { class: "image__image" }, _s = { class: "image__caption" }, hs = /* @__PURE__ */ g({
|
|
1600
1602
|
inheritAttrs: !1,
|
|
1601
1603
|
__name: "image",
|
|
1602
1604
|
props: {
|
|
@@ -1620,9 +1622,9 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1620
1622
|
}
|
|
1621
1623
|
},
|
|
1622
1624
|
setup(e) {
|
|
1623
|
-
return (a, r) => (l(), i("div",
|
|
1624
|
-
t("div",
|
|
1625
|
-
t("div",
|
|
1625
|
+
return (a, r) => (l(), i("div", ds, [
|
|
1626
|
+
t("div", cs, [
|
|
1627
|
+
t("div", us, [
|
|
1626
1628
|
S(F, null, {
|
|
1627
1629
|
default: y(() => [
|
|
1628
1630
|
c(a.$slots, "image", O(z({
|
|
@@ -1636,17 +1638,17 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1636
1638
|
_: 3
|
|
1637
1639
|
})
|
|
1638
1640
|
]),
|
|
1639
|
-
t("p",
|
|
1641
|
+
t("p", _s, d(e.caption), 1)
|
|
1640
1642
|
])
|
|
1641
1643
|
]));
|
|
1642
1644
|
}
|
|
1643
|
-
}),
|
|
1645
|
+
}), ps = /* @__PURE__ */ v(hs, [["__scopeId", "data-v-c583d657"]]), ms = { class: "gallery__large" }, fs = {
|
|
1644
1646
|
key: 0,
|
|
1645
1647
|
class: "image image--large"
|
|
1646
|
-
},
|
|
1648
|
+
}, vs = {
|
|
1647
1649
|
key: 1,
|
|
1648
1650
|
class: "video"
|
|
1649
|
-
},
|
|
1651
|
+
}, gs = /* @__PURE__ */ g({
|
|
1650
1652
|
__name: "image-gallery",
|
|
1651
1653
|
props: {
|
|
1652
1654
|
mediaLarge: {},
|
|
@@ -1672,8 +1674,8 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1672
1674
|
o.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1673
1675
|
])
|
|
1674
1676
|
}, [
|
|
1675
|
-
t("div",
|
|
1676
|
-
o.mediaLarge && o.mediaType === "image" ? (l(), i("div",
|
|
1677
|
+
t("div", ms, [
|
|
1678
|
+
o.mediaLarge && o.mediaType === "image" ? (l(), i("div", fs, [
|
|
1677
1679
|
S(F, null, {
|
|
1678
1680
|
default: y(() => [
|
|
1679
1681
|
c(o.$slots, "image-large", O(z({
|
|
@@ -1686,7 +1688,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1686
1688
|
_: 3
|
|
1687
1689
|
})
|
|
1688
1690
|
])) : _("", !0),
|
|
1689
|
-
o.mediaLarge && o.mediaType === "video" ? (l(), i("div",
|
|
1691
|
+
o.mediaLarge && o.mediaType === "video" ? (l(), i("div", vs, [
|
|
1690
1692
|
S(te, {
|
|
1691
1693
|
src: o.mediaLarge.src,
|
|
1692
1694
|
"local-video": "",
|
|
@@ -1734,10 +1736,10 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1734
1736
|
], 2)
|
|
1735
1737
|
], 2));
|
|
1736
1738
|
}
|
|
1737
|
-
}),
|
|
1739
|
+
}), bs = /* @__PURE__ */ v(gs, [["__scopeId", "data-v-4997f83a"]]), ys = { class: "logo-wall__wrapper" }, ks = { class: "logo-wall__content" }, $s = {
|
|
1738
1740
|
key: 0,
|
|
1739
1741
|
class: "logo-wall__text"
|
|
1740
|
-
},
|
|
1742
|
+
}, ws = { key: 0 }, Bs = { key: 1 }, Ss = { class: "logo-wall__logos" }, Is = { class: "logo-wall__link" }, Cs = /* @__PURE__ */ g({
|
|
1741
1743
|
__name: "logo-wall",
|
|
1742
1744
|
props: {
|
|
1743
1745
|
headline: {
|
|
@@ -1755,13 +1757,13 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1755
1757
|
}
|
|
1756
1758
|
},
|
|
1757
1759
|
setup(e) {
|
|
1758
|
-
return (a, r) => (l(), i("div",
|
|
1759
|
-
t("div",
|
|
1760
|
-
e.headline || e.body ? (l(), i("div",
|
|
1761
|
-
e.headline ? (l(), i("h2",
|
|
1762
|
-
e.body ? (l(), i("p",
|
|
1760
|
+
return (a, r) => (l(), i("div", ys, [
|
|
1761
|
+
t("div", ks, [
|
|
1762
|
+
e.headline || e.body ? (l(), i("div", $s, [
|
|
1763
|
+
e.headline ? (l(), i("h2", ws, d(e.headline), 1)) : _("", !0),
|
|
1764
|
+
e.body ? (l(), i("p", Bs, d(e.body), 1)) : _("", !0)
|
|
1763
1765
|
])) : _("", !0),
|
|
1764
|
-
t("div",
|
|
1766
|
+
t("div", Ss, [
|
|
1765
1767
|
(l(!0), i(D, null, V(e.logos, (s) => (l(), i("div", {
|
|
1766
1768
|
key: s.src + s.alt,
|
|
1767
1769
|
class: "logo-wall__logo"
|
|
@@ -1779,7 +1781,7 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1779
1781
|
}, 1024)
|
|
1780
1782
|
]))), 128))
|
|
1781
1783
|
]),
|
|
1782
|
-
t("div",
|
|
1784
|
+
t("div", Is, [
|
|
1783
1785
|
S(P, {
|
|
1784
1786
|
"link-type": "regular_light",
|
|
1785
1787
|
arrow: !0
|
|
@@ -1793,13 +1795,13 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1793
1795
|
])
|
|
1794
1796
|
]));
|
|
1795
1797
|
}
|
|
1796
|
-
}),
|
|
1798
|
+
}), qs = /* @__PURE__ */ v(Cs, [["__scopeId", "data-v-fd489289"]]), Ts = { class: "micro-stories__top" }, As = {
|
|
1797
1799
|
key: 0,
|
|
1798
1800
|
class: "micro-stories__headline"
|
|
1799
|
-
},
|
|
1801
|
+
}, Ls = {
|
|
1800
1802
|
key: 1,
|
|
1801
1803
|
class: "micro-stories__body"
|
|
1802
|
-
},
|
|
1804
|
+
}, Ds = { class: "micro-stories__splide" }, Vs = /* @__PURE__ */ g({
|
|
1803
1805
|
__name: "micro-stories",
|
|
1804
1806
|
props: {
|
|
1805
1807
|
bgColor: { default: "blue" },
|
|
@@ -1815,35 +1817,35 @@ const Le = ["aria-label"], Te = /* @__PURE__ */ g({
|
|
|
1815
1817
|
return (o, u) => (l(), i("div", {
|
|
1816
1818
|
class: h(["micro-stories__wrapper", r.value])
|
|
1817
1819
|
}, [
|
|
1818
|
-
t("div",
|
|
1819
|
-
o.headline ? (l(), i("div",
|
|
1820
|
+
t("div", Ts, [
|
|
1821
|
+
o.headline ? (l(), i("div", As, [
|
|
1820
1822
|
t("h2", null, d(o.headline), 1)
|
|
1821
1823
|
])) : _("", !0),
|
|
1822
|
-
o.body ? (l(), i("div",
|
|
1824
|
+
o.body ? (l(), i("div", Ls, [
|
|
1823
1825
|
c(o.$slots, "micro-stories-body")
|
|
1824
1826
|
])) : _("", !0)
|
|
1825
1827
|
]),
|
|
1826
|
-
t("div",
|
|
1828
|
+
t("div", Ds, [
|
|
1827
1829
|
c(o.$slots, "micro-stories-slides")
|
|
1828
1830
|
]),
|
|
1829
1831
|
c(o.$slots, "micro-stories-controls")
|
|
1830
1832
|
], 2));
|
|
1831
1833
|
}
|
|
1832
|
-
}),
|
|
1833
|
-
function
|
|
1834
|
-
return l(), i("div",
|
|
1835
|
-
t("div",
|
|
1834
|
+
}), Ps = {}, Fs = { class: "policy__wrapper" }, Ms = { class: "policy__content" };
|
|
1835
|
+
function Os(e, a) {
|
|
1836
|
+
return l(), i("div", Fs, [
|
|
1837
|
+
t("div", Ms, [
|
|
1836
1838
|
c(e.$slots, "default", {}, void 0, !0)
|
|
1837
1839
|
])
|
|
1838
1840
|
]);
|
|
1839
1841
|
}
|
|
1840
|
-
const
|
|
1842
|
+
const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a"]]), Hs = { class: "product-hero__wrapper" }, Rs = { class: "product-hero__content" }, Ns = { class: "product-hero__headline" }, Es = { class: "product-hero__video" }, js = { class: "product-hero__insignia" }, Ks = {
|
|
1841
1843
|
key: 0,
|
|
1842
1844
|
class: "product-hero__logo"
|
|
1843
|
-
},
|
|
1845
|
+
}, Us = {
|
|
1844
1846
|
key: 1,
|
|
1845
1847
|
class: "product-hero__certification"
|
|
1846
|
-
},
|
|
1848
|
+
}, Gs = /* @__PURE__ */ g({
|
|
1847
1849
|
__name: "product-hero",
|
|
1848
1850
|
props: {
|
|
1849
1851
|
headline: {
|
|
@@ -1878,11 +1880,11 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1878
1880
|
}
|
|
1879
1881
|
},
|
|
1880
1882
|
setup(e) {
|
|
1881
|
-
return (a, r) => (l(), i("div",
|
|
1882
|
-
t("div",
|
|
1883
|
-
t("div",
|
|
1884
|
-
t("div",
|
|
1885
|
-
e.videoSrc !== "" ? (l(),
|
|
1883
|
+
return (a, r) => (l(), i("div", Hs, [
|
|
1884
|
+
t("div", Rs, [
|
|
1885
|
+
t("div", Ns, d(e.headline), 1),
|
|
1886
|
+
t("div", Es, [
|
|
1887
|
+
e.videoSrc !== "" ? (l(), A(te, {
|
|
1886
1888
|
key: 0,
|
|
1887
1889
|
play: "",
|
|
1888
1890
|
"local-video": !0,
|
|
@@ -1893,14 +1895,14 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1893
1895
|
autoplay: "",
|
|
1894
1896
|
loop: "",
|
|
1895
1897
|
muted: ""
|
|
1896
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (l(),
|
|
1898
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (l(), A(I(F), { key: 1 }, {
|
|
1897
1899
|
default: y(() => [
|
|
1898
1900
|
c(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1899
1901
|
]),
|
|
1900
1902
|
_: 3
|
|
1901
1903
|
})),
|
|
1902
|
-
t("div",
|
|
1903
|
-
e.logoSrc ? (l(), i("div",
|
|
1904
|
+
t("div", js, [
|
|
1905
|
+
e.logoSrc ? (l(), i("div", Ks, [
|
|
1904
1906
|
S(I(F), null, {
|
|
1905
1907
|
default: y(() => [
|
|
1906
1908
|
c(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
@@ -1908,7 +1910,7 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1908
1910
|
_: 3
|
|
1909
1911
|
})
|
|
1910
1912
|
])) : _("", !0),
|
|
1911
|
-
e.isCertified ? (l(), i("div",
|
|
1913
|
+
e.isCertified ? (l(), i("div", Us, [
|
|
1912
1914
|
S(I(F), null, {
|
|
1913
1915
|
default: y(() => [
|
|
1914
1916
|
c(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
@@ -1921,7 +1923,7 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1921
1923
|
])
|
|
1922
1924
|
]));
|
|
1923
1925
|
}
|
|
1924
|
-
}),
|
|
1926
|
+
}), Js = /* @__PURE__ */ v(Gs, [["__scopeId", "data-v-deab9c3a"]]), Ws = { class: "promo__content" }, Ys = /* @__PURE__ */ g({
|
|
1925
1927
|
__name: "promo",
|
|
1926
1928
|
props: {
|
|
1927
1929
|
label: { default: "" },
|
|
@@ -1950,7 +1952,7 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1950
1952
|
o.multiply ? "promo__wrapper--multiply" : ""
|
|
1951
1953
|
])
|
|
1952
1954
|
}, [
|
|
1953
|
-
t("div",
|
|
1955
|
+
t("div", Ws, [
|
|
1954
1956
|
o.mediaType === "image" ? (l(), i("div", {
|
|
1955
1957
|
key: 0,
|
|
1956
1958
|
class: h([
|
|
@@ -1990,7 +1992,7 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
1990
1992
|
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1991
1993
|
])
|
|
1992
1994
|
}, [
|
|
1993
|
-
o.label ? (l(),
|
|
1995
|
+
o.label ? (l(), A(X, {
|
|
1994
1996
|
key: 0,
|
|
1995
1997
|
text: o.label,
|
|
1996
1998
|
"label-dark": o.variant === "dark"
|
|
@@ -2003,7 +2005,7 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2003
2005
|
}, [
|
|
2004
2006
|
c(o.$slots, "promo-headline")
|
|
2005
2007
|
], 2),
|
|
2006
|
-
o.linkType === "link" ? (l(),
|
|
2008
|
+
o.linkType === "link" ? (l(), A(P, {
|
|
2007
2009
|
key: 1,
|
|
2008
2010
|
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
2009
2011
|
arrow: ""
|
|
@@ -2013,7 +2015,7 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2013
2015
|
]),
|
|
2014
2016
|
_: 3
|
|
2015
2017
|
}, 8, ["link-type"])) : _("", !0),
|
|
2016
|
-
o.linkType === "button" ? (l(),
|
|
2018
|
+
o.linkType === "button" ? (l(), A(P, {
|
|
2017
2019
|
key: 2,
|
|
2018
2020
|
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
2019
2021
|
}, {
|
|
@@ -2026,10 +2028,10 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2026
2028
|
])
|
|
2027
2029
|
], 2));
|
|
2028
2030
|
}
|
|
2029
|
-
}),
|
|
2031
|
+
}), Qs = /* @__PURE__ */ v(Ys, [["__scopeId", "data-v-df54d965"]]), Zs = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), Xs = { class: "quote__wrapper" }, xs = { class: "quote__content" }, el = /* @__PURE__ */ Zs(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), tl = { class: "quote__quote" }, al = { class: "quote__quote-text" }, ol = { class: "quote__author" }, sl = {
|
|
2030
2032
|
key: 0,
|
|
2031
2033
|
class: "quote__image"
|
|
2032
|
-
},
|
|
2034
|
+
}, ll = { class: "quote__text" }, il = { class: "quote__author-name" }, rl = { class: "quote__author-title" }, nl = /* @__PURE__ */ g({
|
|
2033
2035
|
__name: "quote",
|
|
2034
2036
|
props: {
|
|
2035
2037
|
quote: {
|
|
@@ -2051,13 +2053,13 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2051
2053
|
}
|
|
2052
2054
|
},
|
|
2053
2055
|
setup(e) {
|
|
2054
|
-
return (a, r) => (l(), i("div",
|
|
2055
|
-
t("div",
|
|
2056
|
-
|
|
2057
|
-
t("div",
|
|
2058
|
-
t("p",
|
|
2059
|
-
t("div",
|
|
2060
|
-
e.authorImage ? (l(), i("div",
|
|
2056
|
+
return (a, r) => (l(), i("div", Xs, [
|
|
2057
|
+
t("div", xs, [
|
|
2058
|
+
el,
|
|
2059
|
+
t("div", tl, [
|
|
2060
|
+
t("p", al, d(e.quote), 1),
|
|
2061
|
+
t("div", ol, [
|
|
2062
|
+
e.authorImage ? (l(), i("div", sl, [
|
|
2061
2063
|
S(F, null, {
|
|
2062
2064
|
default: y(() => [
|
|
2063
2065
|
c(a.$slots, "author-image", O(z({
|
|
@@ -2069,22 +2071,22 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2069
2071
|
_: 3
|
|
2070
2072
|
})
|
|
2071
2073
|
])) : _("", !0),
|
|
2072
|
-
t("div",
|
|
2073
|
-
t("p",
|
|
2074
|
-
t("p",
|
|
2074
|
+
t("div", ll, [
|
|
2075
|
+
t("p", il, d(e.author), 1),
|
|
2076
|
+
t("p", rl, d(e.authorTitle), 1)
|
|
2075
2077
|
])
|
|
2076
2078
|
])
|
|
2077
2079
|
])
|
|
2078
2080
|
])
|
|
2079
2081
|
]));
|
|
2080
2082
|
}
|
|
2081
|
-
}),
|
|
2083
|
+
}), dl = /* @__PURE__ */ v(nl, [["__scopeId", "data-v-e3cc8e27"]]), cl = { class: "rich-text__wrapper" }, ul = {
|
|
2082
2084
|
key: 0,
|
|
2083
2085
|
class: "rich-text__links"
|
|
2084
|
-
},
|
|
2086
|
+
}, _l = {
|
|
2085
2087
|
key: 0,
|
|
2086
2088
|
class: "rich-text__bullet-list"
|
|
2087
|
-
},
|
|
2089
|
+
}, hl = /* @__PURE__ */ g({
|
|
2088
2090
|
__name: "rich-text",
|
|
2089
2091
|
props: {
|
|
2090
2092
|
headline: { default: "" },
|
|
@@ -2103,8 +2105,8 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2103
2105
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
2104
2106
|
])
|
|
2105
2107
|
}, [
|
|
2106
|
-
t("div",
|
|
2107
|
-
a.label ? (l(),
|
|
2108
|
+
t("div", cl, [
|
|
2109
|
+
a.label ? (l(), A(X, {
|
|
2108
2110
|
key: 0,
|
|
2109
2111
|
text: a.label,
|
|
2110
2112
|
"label-dark": !1
|
|
@@ -2129,11 +2131,11 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2129
2131
|
])
|
|
2130
2132
|
}, [
|
|
2131
2133
|
c(a.$slots, "rich-text-content"),
|
|
2132
|
-
a.links ? (l(), i("div",
|
|
2134
|
+
a.links ? (l(), i("div", ul, [
|
|
2133
2135
|
c(a.$slots, "rich-text-links")
|
|
2134
2136
|
])) : _("", !0)
|
|
2135
2137
|
], 2),
|
|
2136
|
-
a.bulletList ? (l(), i("div",
|
|
2138
|
+
a.bulletList ? (l(), i("div", _l, [
|
|
2137
2139
|
c(a.$slots, "rich-text-bullet-list")
|
|
2138
2140
|
])) : _("", !0),
|
|
2139
2141
|
a.image ? (l(), i("div", {
|
|
@@ -2154,12 +2156,12 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
|
|
|
2154
2156
|
])
|
|
2155
2157
|
], 2));
|
|
2156
2158
|
}
|
|
2157
|
-
}),
|
|
2158
|
-
function
|
|
2159
|
-
return l(), i("div",
|
|
2160
|
-
t("div",
|
|
2161
|
-
t("div",
|
|
2162
|
-
t("div",
|
|
2159
|
+
}), pl = /* @__PURE__ */ v(hl, [["__scopeId", "data-v-5441d67a"]]), ml = {}, fl = { class: "rich-text" }, vl = { class: "rich-text__wrapper" }, gl = { class: "rich-text__content rich-text__content--left-aligned" }, bl = { class: "rich-text__body" };
|
|
2160
|
+
function yl(e, a) {
|
|
2161
|
+
return l(), i("div", fl, [
|
|
2162
|
+
t("div", vl, [
|
|
2163
|
+
t("div", gl, [
|
|
2164
|
+
t("div", bl, [
|
|
2163
2165
|
t("div", null, [
|
|
2164
2166
|
c(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
2165
2167
|
]),
|
|
@@ -2171,10 +2173,10 @@ function kl(e, a) {
|
|
|
2171
2173
|
])
|
|
2172
2174
|
]);
|
|
2173
2175
|
}
|
|
2174
|
-
const
|
|
2176
|
+
const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2"]]), $l = (e) => (H("data-v-798e7a06"), e = e(), R(), e), wl = { class: "timeline__wrapper" }, Bl = { class: "timeline__content" }, Sl = { class: "timeline__items" }, Il = { class: "item__left" }, Cl = /* @__PURE__ */ $l(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2175
2177
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2176
2178
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2177
|
-
], -1)),
|
|
2179
|
+
], -1)), ql = { class: "item__right" }, Tl = ["innerHTML"], Al = /* @__PURE__ */ g({
|
|
2178
2180
|
__name: "timeline",
|
|
2179
2181
|
props: {
|
|
2180
2182
|
timelineItems: {
|
|
@@ -2197,16 +2199,16 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2197
2199
|
a.forEach((s) => {
|
|
2198
2200
|
r.observe(s);
|
|
2199
2201
|
});
|
|
2200
|
-
}), (a, r) => (l(), i("div",
|
|
2201
|
-
t("div",
|
|
2202
|
-
t("div",
|
|
2202
|
+
}), (a, r) => (l(), i("div", wl, [
|
|
2203
|
+
t("div", Bl, [
|
|
2204
|
+
t("div", Sl, [
|
|
2203
2205
|
(l(!0), i(D, null, V(e.timelineItems, (s) => (l(), i("div", {
|
|
2204
2206
|
key: s.year,
|
|
2205
2207
|
class: "timeline__item faded"
|
|
2206
2208
|
}, [
|
|
2207
|
-
t("div",
|
|
2208
|
-
|
|
2209
|
-
t("div",
|
|
2209
|
+
t("div", Il, d(s.year), 1),
|
|
2210
|
+
Cl,
|
|
2211
|
+
t("div", ql, [
|
|
2210
2212
|
S(F, null, {
|
|
2211
2213
|
default: y(() => [
|
|
2212
2214
|
s.media.src ? c(a.$slots, "timeline-image", M({
|
|
@@ -2220,20 +2222,20 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2220
2222
|
style: ee([s.media.src ? "" : "margin-top: 0px"]),
|
|
2221
2223
|
class: "rich-text",
|
|
2222
2224
|
innerHTML: s.text
|
|
2223
|
-
}, null, 12,
|
|
2225
|
+
}, null, 12, Tl)
|
|
2224
2226
|
])
|
|
2225
2227
|
]))), 128))
|
|
2226
2228
|
])
|
|
2227
2229
|
])
|
|
2228
2230
|
]));
|
|
2229
2231
|
}
|
|
2230
|
-
}),
|
|
2232
|
+
}), Ll = /* @__PURE__ */ v(Al, [["__scopeId", "data-v-798e7a06"]]), Dl = { class: "vimeo" }, Vl = { class: "vimeo__wrapper" }, Pl = {
|
|
2231
2233
|
key: 0,
|
|
2232
2234
|
class: "vimeo__headline"
|
|
2233
|
-
},
|
|
2235
|
+
}, Fl = {
|
|
2234
2236
|
key: 1,
|
|
2235
2237
|
class: "vimeo__description"
|
|
2236
|
-
},
|
|
2238
|
+
}, Ml = /* @__PURE__ */ g({
|
|
2237
2239
|
__name: "vimeo",
|
|
2238
2240
|
props: {
|
|
2239
2241
|
headline: {
|
|
@@ -2246,18 +2248,18 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2246
2248
|
}
|
|
2247
2249
|
},
|
|
2248
2250
|
setup(e) {
|
|
2249
|
-
return (a, r) => (l(), i("div",
|
|
2250
|
-
t("div",
|
|
2251
|
-
e.headline ? (l(), i("h2",
|
|
2251
|
+
return (a, r) => (l(), i("div", Dl, [
|
|
2252
|
+
t("div", Vl, [
|
|
2253
|
+
e.headline ? (l(), i("h2", Pl, d(e.headline), 1)) : _("", !0),
|
|
2252
2254
|
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2253
|
-
e.description ? (l(), i("p",
|
|
2255
|
+
e.description ? (l(), i("p", Fl, d(e.description), 1)) : _("", !0)
|
|
2254
2256
|
])
|
|
2255
2257
|
]));
|
|
2256
2258
|
}
|
|
2257
|
-
}),
|
|
2259
|
+
}), Ol = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-90a2b109"]]), zl = { class: "academy-overview" }, Hl = { class: "academy-overview__content-wrapper" }, Rl = { class: "academy-overview__content" }, Nl = { class: "academy-overview__title" }, El = { class: "academy-overview__description" }, jl = { class: "academy-overview__button-wrapper" }, Kl = {
|
|
2258
2260
|
key: 0,
|
|
2259
2261
|
class: "academy-overview__stats"
|
|
2260
|
-
},
|
|
2262
|
+
}, Ul = { class: "academy-overview__stats-row" }, Gl = { class: "academy-overview__stat" }, Jl = { class: "academy-overview__value" }, Wl = { class: "academy-overview__label" }, Yl = { class: "academy-overview__stat" }, Ql = { class: "academy-overview__value" }, Zl = { class: "academy-overview__label" }, Xl = /* @__PURE__ */ g({
|
|
2261
2263
|
__name: "frontpage-hero",
|
|
2262
2264
|
props: {
|
|
2263
2265
|
hero: { default: () => ({
|
|
@@ -2271,25 +2273,25 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2271
2273
|
}) }
|
|
2272
2274
|
},
|
|
2273
2275
|
setup(e) {
|
|
2274
|
-
return (a, r) => (l(), i("div",
|
|
2275
|
-
t("div",
|
|
2276
|
-
t("div",
|
|
2276
|
+
return (a, r) => (l(), i("div", zl, [
|
|
2277
|
+
t("div", Hl, [
|
|
2278
|
+
t("div", Rl, [
|
|
2277
2279
|
t("div", null, [
|
|
2278
|
-
t("h1",
|
|
2279
|
-
t("p",
|
|
2280
|
-
t("div",
|
|
2280
|
+
t("h1", Nl, d(a.hero.headline), 1),
|
|
2281
|
+
t("p", El, d(a.hero.description), 1),
|
|
2282
|
+
t("div", jl, [
|
|
2281
2283
|
c(a.$slots, "button", {}, void 0, !0)
|
|
2282
2284
|
])
|
|
2283
2285
|
]),
|
|
2284
|
-
a.hero.showStats ? (l(), i("div",
|
|
2285
|
-
t("div",
|
|
2286
|
-
t("div",
|
|
2287
|
-
t("div",
|
|
2288
|
-
t("div",
|
|
2286
|
+
a.hero.showStats ? (l(), i("div", Kl, [
|
|
2287
|
+
t("div", Ul, [
|
|
2288
|
+
t("div", Gl, [
|
|
2289
|
+
t("div", Jl, d(a.hero.lessonValue), 1),
|
|
2290
|
+
t("div", Wl, d(a.hero.lessonLabel), 1)
|
|
2289
2291
|
]),
|
|
2290
|
-
t("div",
|
|
2291
|
-
t("div",
|
|
2292
|
-
t("div",
|
|
2292
|
+
t("div", Yl, [
|
|
2293
|
+
t("div", Ql, d(a.hero.pointsValue), 1),
|
|
2294
|
+
t("div", Zl, d(a.hero.pointsLabel), 1)
|
|
2293
2295
|
])
|
|
2294
2296
|
])
|
|
2295
2297
|
])) : _("", !0)
|
|
@@ -2297,7 +2299,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2297
2299
|
])
|
|
2298
2300
|
]));
|
|
2299
2301
|
}
|
|
2300
|
-
}),
|
|
2302
|
+
}), xl = /* @__PURE__ */ v(Xl, [["__scopeId", "data-v-1594f3e8"]]), ei = { class: "not-found__wrapper" }, ti = { class: "not-found__content" }, ai = { class: "not-found__headline" }, oi = { class: "not-found__body" }, si = /* @__PURE__ */ g({
|
|
2301
2303
|
__name: "404",
|
|
2302
2304
|
props: {
|
|
2303
2305
|
headline: {
|
|
@@ -2306,16 +2308,16 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2306
2308
|
}
|
|
2307
2309
|
},
|
|
2308
2310
|
setup(e) {
|
|
2309
|
-
return (a, r) => (l(), i("div",
|
|
2310
|
-
t("div",
|
|
2311
|
-
t("h1",
|
|
2312
|
-
t("div",
|
|
2311
|
+
return (a, r) => (l(), i("div", ei, [
|
|
2312
|
+
t("div", ti, [
|
|
2313
|
+
t("h1", ai, d(e.headline), 1),
|
|
2314
|
+
t("div", oi, [
|
|
2313
2315
|
c(a.$slots, "not-found-body", {}, void 0, !0)
|
|
2314
2316
|
])
|
|
2315
2317
|
])
|
|
2316
2318
|
]));
|
|
2317
2319
|
}
|
|
2318
|
-
}),
|
|
2320
|
+
}), li = /* @__PURE__ */ v(si, [["__scopeId", "data-v-b829ca6c"]]), ii = { class: "filter__wrapper" }, ri = { class: "filter__content" }, ni = { class: "filter__dropdowns" }, di = { class: "filter__chips" }, ci = /* @__PURE__ */ g({
|
|
2319
2321
|
__name: "filter",
|
|
2320
2322
|
props: {
|
|
2321
2323
|
hasChips: {
|
|
@@ -2329,12 +2331,12 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2329
2331
|
},
|
|
2330
2332
|
emits: ["clearFilters"],
|
|
2331
2333
|
setup(e) {
|
|
2332
|
-
return (a, r) => (l(), i("div",
|
|
2333
|
-
t("div",
|
|
2334
|
-
t("div",
|
|
2334
|
+
return (a, r) => (l(), i("div", ii, [
|
|
2335
|
+
t("div", ri, [
|
|
2336
|
+
t("div", ni, [
|
|
2335
2337
|
c(a.$slots, "filter-dropdowns")
|
|
2336
2338
|
]),
|
|
2337
|
-
t("div",
|
|
2339
|
+
t("div", di, [
|
|
2338
2340
|
c(a.$slots, "filter-chips"),
|
|
2339
2341
|
e.hasChips ? (l(), i("button", {
|
|
2340
2342
|
key: 0,
|
|
@@ -2345,35 +2347,35 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2345
2347
|
])
|
|
2346
2348
|
]));
|
|
2347
2349
|
}
|
|
2348
|
-
}),
|
|
2350
|
+
}), ui = /* @__PURE__ */ v(ci, [["__scopeId", "data-v-b2ccb954"]]), ye = (e) => (H("data-v-e1f05c51"), e = e(), R(), e), _i = { class: "footer__wrapper" }, hi = { class: "footer__content" }, pi = {
|
|
2349
2351
|
key: 0,
|
|
2350
2352
|
src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
|
|
2351
2353
|
style: { margin: "0 auto" }
|
|
2352
|
-
},
|
|
2354
|
+
}, mi = { class: "footer__sections" }, fi = { class: "section__title" }, vi = { class: "section__list" }, gi = { class: "section" }, bi = {
|
|
2353
2355
|
key: 0,
|
|
2354
2356
|
class: "section__title"
|
|
2355
|
-
},
|
|
2357
|
+
}, yi = {
|
|
2356
2358
|
key: 1,
|
|
2357
2359
|
class: "section__title"
|
|
2358
|
-
},
|
|
2360
|
+
}, ki = { key: 0 }, $i = { key: 1 }, wi = { key: 2 }, Bi = { key: 3 }, Si = { key: 4 }, Ii = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("br", null, null, -1)), Ci = {
|
|
2359
2361
|
key: 0,
|
|
2360
2362
|
href: "mailto:china@mir-robots.com"
|
|
2361
|
-
},
|
|
2363
|
+
}, qi = {
|
|
2362
2364
|
key: 1,
|
|
2363
2365
|
href: "mailto:mail@mir-robots.com"
|
|
2364
|
-
},
|
|
2366
|
+
}, Ti = {
|
|
2365
2367
|
key: 0,
|
|
2366
2368
|
href: "tel:+8613661856951"
|
|
2367
|
-
},
|
|
2369
|
+
}, Ai = {
|
|
2368
2370
|
key: 1,
|
|
2369
2371
|
href: "tel:+4520377577"
|
|
2370
|
-
},
|
|
2372
|
+
}, Li = { class: "footer__bottom" }, Di = { class: "copyright" }, Vi = { class: "footer__policy" }, Pi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), Fi = {
|
|
2371
2373
|
key: 0,
|
|
2372
2374
|
class: "footer__social"
|
|
2373
|
-
},
|
|
2375
|
+
}, Mi = ["href", "aria-label"], Oi = {
|
|
2374
2376
|
key: 1,
|
|
2375
2377
|
class: "footer__social"
|
|
2376
|
-
},
|
|
2378
|
+
}, zi = ["href", "aria-label"], Hi = /* @__PURE__ */ g({
|
|
2377
2379
|
__name: "footer",
|
|
2378
2380
|
props: {
|
|
2379
2381
|
language: { default: "" },
|
|
@@ -2386,37 +2388,37 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2386
2388
|
},
|
|
2387
2389
|
emits: ["changeRegionClicked"],
|
|
2388
2390
|
setup(e) {
|
|
2389
|
-
return (a, r) => (l(), i("div",
|
|
2390
|
-
t("footer",
|
|
2391
|
-
a.language === "zh" ? (l(), i("img",
|
|
2392
|
-
t("div",
|
|
2391
|
+
return (a, r) => (l(), i("div", _i, [
|
|
2392
|
+
t("footer", hi, [
|
|
2393
|
+
a.language === "zh" ? (l(), i("img", pi)) : _("", !0),
|
|
2394
|
+
t("div", mi, [
|
|
2393
2395
|
(l(!0), i(D, null, V(a.footerSections, (s) => (l(), i("div", {
|
|
2394
2396
|
key: s.title,
|
|
2395
2397
|
class: "section"
|
|
2396
2398
|
}, [
|
|
2397
|
-
t("span",
|
|
2399
|
+
t("span", fi, d(s.title), 1),
|
|
2398
2400
|
t("nav", null, [
|
|
2399
|
-
t("ul",
|
|
2401
|
+
t("ul", vi, [
|
|
2400
2402
|
c(a.$slots, "section-links", {
|
|
2401
2403
|
links: s.links
|
|
2402
2404
|
})
|
|
2403
2405
|
])
|
|
2404
2406
|
])
|
|
2405
2407
|
]))), 128)),
|
|
2406
|
-
t("div",
|
|
2407
|
-
a.language === "zh" ? (l(), i("span",
|
|
2408
|
+
t("div", gi, [
|
|
2409
|
+
a.language === "zh" ? (l(), i("span", bi, "名傲移动机器人(上海)有限公司")) : (l(), i("span", yi, "Mobile Industrial Robots A/S")),
|
|
2408
2410
|
t("address", null, [
|
|
2409
|
-
a.language === "zh" ? (l(), i("span",
|
|
2410
|
-
a.language === "zh" ? (l(), i("span",
|
|
2411
|
-
a.language !== "zh" ? (l(), i("span",
|
|
2412
|
-
|
|
2411
|
+
a.language === "zh" ? (l(), i("span", ki, "上海浦东新区金桥出口加工区")) : (l(), i("span", $i, "Energivej 51")),
|
|
2412
|
+
a.language === "zh" ? (l(), i("span", wi, "桂桥路1201号10栋2楼")) : (l(), i("span", Bi, "5260 Odense S")),
|
|
2413
|
+
a.language !== "zh" ? (l(), i("span", Si, "CVR: 35251235")) : _("", !0),
|
|
2414
|
+
Ii,
|
|
2413
2415
|
S(P, {
|
|
2414
2416
|
class: "footer__contact",
|
|
2415
2417
|
"link-type": "regular_light",
|
|
2416
2418
|
underline: "false"
|
|
2417
2419
|
}, {
|
|
2418
2420
|
default: y(() => [
|
|
2419
|
-
a.language === "zh" ? (l(), i("a",
|
|
2421
|
+
a.language === "zh" ? (l(), i("a", Ci, "china@mir-robots.com")) : (l(), i("a", qi, "mail@mir-robots.com"))
|
|
2420
2422
|
]),
|
|
2421
2423
|
_: 1
|
|
2422
2424
|
}),
|
|
@@ -2426,30 +2428,30 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2426
2428
|
underline: "false"
|
|
2427
2429
|
}, {
|
|
2428
2430
|
default: y(() => [
|
|
2429
|
-
a.language === "zh" ? (l(), i("a",
|
|
2431
|
+
a.language === "zh" ? (l(), i("a", Ti, "+86 13661856951(微信同号)")) : (l(), i("a", Ai, "+45 20 377 577"))
|
|
2430
2432
|
]),
|
|
2431
2433
|
_: 1
|
|
2432
2434
|
})
|
|
2433
2435
|
])
|
|
2434
2436
|
])
|
|
2435
2437
|
]),
|
|
2436
|
-
t("div",
|
|
2437
|
-
t("p",
|
|
2438
|
-
t("div",
|
|
2438
|
+
t("div", Li, [
|
|
2439
|
+
t("p", Di, " © Mobile Industrial Robots " + d((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2440
|
+
t("div", Vi, [
|
|
2439
2441
|
t("button", {
|
|
2440
2442
|
class: "footer__language-switcher",
|
|
2441
2443
|
onClick: r[0] || (r[0] = (s) => a.$emit("changeRegionClicked"))
|
|
2442
2444
|
}, [
|
|
2443
2445
|
t("span", null, [
|
|
2444
|
-
|
|
2446
|
+
Pi,
|
|
2445
2447
|
J(d(a.changeRegion), 1)
|
|
2446
2448
|
])
|
|
2447
2449
|
]),
|
|
2448
2450
|
c(a.$slots, "footer-privacy-link"),
|
|
2449
2451
|
c(a.$slots, "footer-cookie-link")
|
|
2450
2452
|
]),
|
|
2451
|
-
a.language !== "zh" ? (l(), i("div",
|
|
2452
|
-
(l(!0), i(D, null, V(a.socialMedia, (s) => (l(),
|
|
2453
|
+
a.language !== "zh" ? (l(), i("div", Fi, [
|
|
2454
|
+
(l(!0), i(D, null, V(a.socialMedia, (s) => (l(), A(P, {
|
|
2453
2455
|
key: s.title,
|
|
2454
2456
|
underline: "false",
|
|
2455
2457
|
"link-type": "regular"
|
|
@@ -2465,12 +2467,12 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2465
2467
|
height: "14",
|
|
2466
2468
|
class: h(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
2467
2469
|
}, null, 2)
|
|
2468
|
-
], 8,
|
|
2470
|
+
], 8, Mi)
|
|
2469
2471
|
]),
|
|
2470
2472
|
_: 2
|
|
2471
2473
|
}, 1024))), 128))
|
|
2472
|
-
])) : (l(), i("div",
|
|
2473
|
-
(l(!0), i(D, null, V(a.socialMediaChina, (s) => (l(),
|
|
2474
|
+
])) : (l(), i("div", Oi, [
|
|
2475
|
+
(l(!0), i(D, null, V(a.socialMediaChina, (s) => (l(), A(P, {
|
|
2474
2476
|
key: s.title,
|
|
2475
2477
|
underline: "false",
|
|
2476
2478
|
"link-type": "regular"
|
|
@@ -2486,7 +2488,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2486
2488
|
height: "14",
|
|
2487
2489
|
class: h(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
2488
2490
|
}, null, 2)
|
|
2489
|
-
], 8,
|
|
2491
|
+
], 8, zi)
|
|
2490
2492
|
]),
|
|
2491
2493
|
_: 2
|
|
2492
2494
|
}, 1024))), 128))
|
|
@@ -2495,51 +2497,51 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2495
2497
|
])
|
|
2496
2498
|
]));
|
|
2497
2499
|
}
|
|
2498
|
-
}),
|
|
2500
|
+
}), Ri = /* @__PURE__ */ v(Hi, [["__scopeId", "data-v-e1f05c51"]]), ke = (e) => (H("data-v-0b00b9f2"), e = e(), R(), e), Ni = { class: "header__wrapper" }, Ei = { class: "nav-wrapper" }, ji = { class: "mir-link-logo" }, Ki = { class: "main-nav-items" }, Ui = {
|
|
2499
2501
|
key: 0,
|
|
2500
2502
|
id: "menu-dropdown",
|
|
2501
2503
|
ref: "dropdownDiv"
|
|
2502
|
-
},
|
|
2504
|
+
}, Gi = {
|
|
2503
2505
|
key: 0,
|
|
2504
2506
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2505
|
-
alt: "
|
|
2506
|
-
},
|
|
2507
|
+
alt: "dropdown arrow"
|
|
2508
|
+
}, Ji = {
|
|
2507
2509
|
key: 1,
|
|
2508
2510
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2509
|
-
alt: "
|
|
2511
|
+
alt: "dropdown arrow",
|
|
2510
2512
|
style: { transform: "rotate(180deg)" }
|
|
2511
|
-
},
|
|
2513
|
+
}, Wi = { class: "dropdown-content" }, Yi = {
|
|
2512
2514
|
key: 1,
|
|
2513
2515
|
class: "nav-search-wrapper"
|
|
2514
|
-
},
|
|
2516
|
+
}, Qi = ["src"], Zi = {
|
|
2515
2517
|
key: 2,
|
|
2516
2518
|
id: "menu-portal-switcher",
|
|
2517
2519
|
class: "portal-switcher-wrapper"
|
|
2518
|
-
},
|
|
2520
|
+
}, Xi = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2519
2521
|
src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
|
|
2520
|
-
alt: "
|
|
2522
|
+
alt: "portal switcher icon",
|
|
2521
2523
|
width: "20",
|
|
2522
2524
|
height: "20"
|
|
2523
|
-
}, null, -1)),
|
|
2524
|
-
|
|
2525
|
-
],
|
|
2525
|
+
}, null, -1)), xi = [
|
|
2526
|
+
Xi
|
|
2527
|
+
], er = { class: "portal-switcher-content" }, tr = { class: "portal-switcher-links" }, ar = ["href"], or = ["src"], sr = {
|
|
2526
2528
|
key: 3,
|
|
2527
2529
|
id: "menu-profile-dropdown",
|
|
2528
2530
|
class: "profile-dropdown-wrapper"
|
|
2529
|
-
},
|
|
2531
|
+
}, lr = {
|
|
2530
2532
|
key: 0,
|
|
2531
2533
|
class: "profile-dropdown-sign-in"
|
|
2532
|
-
},
|
|
2534
|
+
}, ir = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2533
2535
|
src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
|
|
2534
|
-
alt: "
|
|
2536
|
+
alt: "profile dropdown icon",
|
|
2535
2537
|
width: "20",
|
|
2536
2538
|
height: "20"
|
|
2537
|
-
}, null, -1)),
|
|
2538
|
-
|
|
2539
|
-
],
|
|
2539
|
+
}, null, -1)), rr = [
|
|
2540
|
+
ir
|
|
2541
|
+
], nr = { class: "profile-dropdown-content" }, dr = { class: "mobile-logo-search-burger-wrapper" }, cr = { class: "mobile-mir-link-logo" }, ur = {
|
|
2540
2542
|
key: 0,
|
|
2541
2543
|
class: "mobile-search-wrapper"
|
|
2542
|
-
},
|
|
2544
|
+
}, _r = ["src"], hr = ["src"], pr = { class: "mobile-menu-content-wrapper" }, mr = { class: "mobile-dropdown-content" }, fr = /* @__PURE__ */ g({
|
|
2543
2545
|
__name: "header",
|
|
2544
2546
|
props: {
|
|
2545
2547
|
burgerState: {
|
|
@@ -2616,7 +2618,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2616
2618
|
s = ($) => {
|
|
2617
2619
|
$.target.closest("#menu-dropdown") || (n.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (f.value = !1);
|
|
2618
2620
|
}, window.addEventListener("click", s);
|
|
2619
|
-
}),
|
|
2621
|
+
}), Te(() => {
|
|
2620
2622
|
s !== null && window.removeEventListener("click", s);
|
|
2621
2623
|
});
|
|
2622
2624
|
const w = r;
|
|
@@ -2638,34 +2640,36 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2638
2640
|
}
|
|
2639
2641
|
return a({
|
|
2640
2642
|
defocusSearchButton: ce
|
|
2641
|
-
}), ($, j) => (l(), i("div",
|
|
2643
|
+
}), ($, j) => (l(), i("div", Ni, [
|
|
2642
2644
|
t("nav", null, [
|
|
2643
|
-
t("div",
|
|
2644
|
-
t("div",
|
|
2645
|
+
t("div", Ei, [
|
|
2646
|
+
t("div", ji, [
|
|
2645
2647
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2646
2648
|
]),
|
|
2647
|
-
t("ul",
|
|
2649
|
+
t("ul", Ki, [
|
|
2648
2650
|
c($.$slots, "main-nav-items", {}, void 0, !0)
|
|
2649
2651
|
]),
|
|
2650
|
-
e.useDropdown ? (l(), i("div",
|
|
2652
|
+
e.useDropdown ? (l(), i("div", Ui, [
|
|
2651
2653
|
t("button", {
|
|
2652
2654
|
class: "nav-dropdown-btn",
|
|
2655
|
+
"aria-label": "Toggle Dropdown",
|
|
2653
2656
|
onClick: ae
|
|
2654
2657
|
}, [
|
|
2655
2658
|
c($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2656
|
-
I(n) === !1 ? (l(), i("img",
|
|
2659
|
+
I(n) === !1 ? (l(), i("img", Gi)) : (l(), i("img", Ji))
|
|
2657
2660
|
]),
|
|
2658
|
-
U(t("div",
|
|
2661
|
+
U(t("div", Wi, [
|
|
2659
2662
|
c($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2660
2663
|
], 512), [
|
|
2661
2664
|
[Z, I(n)]
|
|
2662
2665
|
])
|
|
2663
2666
|
], 512)) : _("", !0),
|
|
2664
|
-
I(p) ? (l(), i("div",
|
|
2667
|
+
I(p) ? (l(), i("div", Yi, [
|
|
2665
2668
|
t("button", {
|
|
2666
2669
|
ref_key: "navSearchButton",
|
|
2667
2670
|
ref: G,
|
|
2668
2671
|
class: "search-icon",
|
|
2672
|
+
"aria-label": "Toggle search",
|
|
2669
2673
|
onClick: j[0] || (j[0] = (K) => {
|
|
2670
2674
|
var E;
|
|
2671
2675
|
return $.$emit("clickSearch"), (E = I(G)) == null ? void 0 : E.blur();
|
|
@@ -2676,16 +2680,17 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2676
2680
|
alt: "search icon",
|
|
2677
2681
|
width: "20",
|
|
2678
2682
|
height: "20"
|
|
2679
|
-
}, null, 8,
|
|
2683
|
+
}, null, 8, Qi)
|
|
2680
2684
|
], 512)
|
|
2681
2685
|
])) : _("", !0),
|
|
2682
|
-
e.usePortalSwitcher ? (l(), i("div",
|
|
2686
|
+
e.usePortalSwitcher ? (l(), i("div", Zi, [
|
|
2683
2687
|
t("button", {
|
|
2684
2688
|
class: "nav-portal-switcher-btn",
|
|
2689
|
+
"aria-label": "Toggle Portal",
|
|
2685
2690
|
onClick: re
|
|
2686
|
-
},
|
|
2687
|
-
U(t("div",
|
|
2688
|
-
t("ul",
|
|
2691
|
+
}, xi),
|
|
2692
|
+
U(t("div", er, [
|
|
2693
|
+
t("ul", tr, [
|
|
2689
2694
|
(l(!0), i(D, null, V(e.portals, (K, E) => (l(), i("li", {
|
|
2690
2695
|
key: E,
|
|
2691
2696
|
class: "portal-switcher-link"
|
|
@@ -2698,9 +2703,9 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2698
2703
|
}, [
|
|
2699
2704
|
t("img", {
|
|
2700
2705
|
src: K.icon
|
|
2701
|
-
}, null, 8,
|
|
2706
|
+
}, null, 8, or),
|
|
2702
2707
|
t("div", null, d(K.name), 1)
|
|
2703
|
-
], 8,
|
|
2708
|
+
], 8, ar)
|
|
2704
2709
|
]),
|
|
2705
2710
|
_: 2
|
|
2706
2711
|
}, 1024)
|
|
@@ -2710,16 +2715,17 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2710
2715
|
[Z, I(b)]
|
|
2711
2716
|
])
|
|
2712
2717
|
])) : _("", !0),
|
|
2713
|
-
e.useProfileDropdown ? (l(), i("div",
|
|
2714
|
-
I(k) ? _("", !0) : (l(), i("div",
|
|
2718
|
+
e.useProfileDropdown ? (l(), i("div", sr, [
|
|
2719
|
+
I(k) ? _("", !0) : (l(), i("div", lr, [
|
|
2715
2720
|
c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2716
2721
|
])),
|
|
2717
2722
|
I(k) ? (l(), i("button", {
|
|
2718
2723
|
key: 1,
|
|
2724
|
+
"aria-label": "Toggle Profile",
|
|
2719
2725
|
class: "nav-profile-dropdown-btn",
|
|
2720
2726
|
onClick: ne
|
|
2721
|
-
},
|
|
2722
|
-
U(t("div",
|
|
2727
|
+
}, rr)) : _("", !0),
|
|
2728
|
+
U(t("div", nr, [
|
|
2723
2729
|
c($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2724
2730
|
], 512), [
|
|
2725
2731
|
[Z, I(f)]
|
|
@@ -2729,11 +2735,11 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2729
2735
|
t("div", {
|
|
2730
2736
|
class: h(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2731
2737
|
}, [
|
|
2732
|
-
t("div",
|
|
2733
|
-
t("div",
|
|
2738
|
+
t("div", dr, [
|
|
2739
|
+
t("div", cr, [
|
|
2734
2740
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2735
2741
|
]),
|
|
2736
|
-
I(p) ? (l(), i("div",
|
|
2742
|
+
I(p) ? (l(), i("div", ur, [
|
|
2737
2743
|
t("button", {
|
|
2738
2744
|
ref_key: "mobileSearchButton",
|
|
2739
2745
|
ref: oe,
|
|
@@ -2749,7 +2755,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2749
2755
|
alt: "search icon",
|
|
2750
2756
|
width: "20",
|
|
2751
2757
|
height: "20"
|
|
2752
|
-
}, null, 8,
|
|
2758
|
+
}, null, 8, _r)
|
|
2753
2759
|
], 512)
|
|
2754
2760
|
])) : _("", !0),
|
|
2755
2761
|
t("button", {
|
|
@@ -2760,16 +2766,16 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2760
2766
|
t("img", {
|
|
2761
2767
|
width: "20",
|
|
2762
2768
|
height: "20",
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
}, null, 8,
|
|
2769
|
+
src: I(u) === !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg",
|
|
2770
|
+
alt: "burger menu icon"
|
|
2771
|
+
}, null, 8, hr)
|
|
2766
2772
|
])
|
|
2767
2773
|
]),
|
|
2768
|
-
U(t("div",
|
|
2774
|
+
U(t("div", pr, [
|
|
2769
2775
|
t("ul", null, [
|
|
2770
2776
|
c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2771
2777
|
]),
|
|
2772
|
-
t("ul",
|
|
2778
|
+
t("ul", mr, [
|
|
2773
2779
|
c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2774
2780
|
c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2775
2781
|
])
|
|
@@ -2780,7 +2786,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2780
2786
|
])
|
|
2781
2787
|
]));
|
|
2782
2788
|
}
|
|
2783
|
-
}),
|
|
2789
|
+
}), vr = /* @__PURE__ */ v(fr, [["__scopeId", "data-v-0b00b9f2"]]), gr = { class: "language__wrapper" }, br = { class: "language__content" }, yr = { class: "language__headline" }, kr = { class: "language__paragraph" }, $r = { class: "language__links" }, wr = /* @__PURE__ */ g({
|
|
2784
2790
|
__name: "language-switcher",
|
|
2785
2791
|
props: {
|
|
2786
2792
|
headline: {
|
|
@@ -2793,17 +2799,17 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2793
2799
|
}
|
|
2794
2800
|
},
|
|
2795
2801
|
setup(e) {
|
|
2796
|
-
return (a, r) => (l(), i("div",
|
|
2797
|
-
t("div",
|
|
2798
|
-
t("h2",
|
|
2799
|
-
t("p",
|
|
2800
|
-
t("div",
|
|
2802
|
+
return (a, r) => (l(), i("div", gr, [
|
|
2803
|
+
t("div", br, [
|
|
2804
|
+
t("h2", yr, d(e.headline), 1),
|
|
2805
|
+
t("p", kr, d(e.paragraph), 1),
|
|
2806
|
+
t("div", $r, [
|
|
2801
2807
|
c(a.$slots, "language-links", {}, void 0, !0)
|
|
2802
2808
|
])
|
|
2803
2809
|
])
|
|
2804
2810
|
]));
|
|
2805
2811
|
}
|
|
2806
|
-
}),
|
|
2812
|
+
}), Br = /* @__PURE__ */ v(wr, [["__scopeId", "data-v-dc8cc97e"]]), Sr = { class: "pagination__wrapper" }, Ir = { class: "pagination__content" }, Cr = /* @__PURE__ */ g({
|
|
2807
2813
|
__name: "pagination",
|
|
2808
2814
|
props: {
|
|
2809
2815
|
isPreviousDisabled: {
|
|
@@ -2817,8 +2823,8 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2817
2823
|
},
|
|
2818
2824
|
emits: ["previous", "next"],
|
|
2819
2825
|
setup(e) {
|
|
2820
|
-
return (a, r) => (l(), i("div",
|
|
2821
|
-
t("div",
|
|
2826
|
+
return (a, r) => (l(), i("div", Sr, [
|
|
2827
|
+
t("div", Ir, [
|
|
2822
2828
|
S(le, {
|
|
2823
2829
|
disabled: e.isPreviousDisabled,
|
|
2824
2830
|
variant: "previous",
|
|
@@ -2835,13 +2841,13 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2835
2841
|
])
|
|
2836
2842
|
]));
|
|
2837
2843
|
}
|
|
2838
|
-
}),
|
|
2839
|
-
function
|
|
2840
|
-
return l(), i("div",
|
|
2844
|
+
}), qr = /* @__PURE__ */ v(Cr, [["__scopeId", "data-v-da6d07c9"]]), Tr = {}, Ar = { class: "search__wrapper" };
|
|
2845
|
+
function Lr(e, a) {
|
|
2846
|
+
return l(), i("div", Ar, [
|
|
2841
2847
|
c(e.$slots, "default", { class: "search__content" })
|
|
2842
2848
|
]);
|
|
2843
2849
|
}
|
|
2844
|
-
const
|
|
2850
|
+
const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3"]]), Vr = { class: "dropdown" }, Pr = ["aria-expanded"], Fr = /* @__PURE__ */ g({
|
|
2845
2851
|
__name: "select-multiple",
|
|
2846
2852
|
props: {
|
|
2847
2853
|
label: { default: "" },
|
|
@@ -2860,7 +2866,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Dr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2860
2866
|
const n = q(() => s.options.length > 8);
|
|
2861
2867
|
return (b, f) => {
|
|
2862
2868
|
const k = _e("click-outside");
|
|
2863
|
-
return U((l(), i("div",
|
|
2869
|
+
return U((l(), i("div", Vr, [
|
|
2864
2870
|
t("button", {
|
|
2865
2871
|
class: h(["dropdown-button", { clicked: r.value }]),
|
|
2866
2872
|
style: ee({ "z-index": r.value ? 2 : 0 }),
|
|
@@ -2870,11 +2876,11 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Dr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2870
2876
|
c(b.$slots, "button", {}, () => [
|
|
2871
2877
|
J(d(b.label), 1)
|
|
2872
2878
|
], !0)
|
|
2873
|
-
], 14,
|
|
2879
|
+
], 14, Pr),
|
|
2874
2880
|
t("div", {
|
|
2875
2881
|
class: h([{ hidden: !r.value, "adjust-height": n.value }, "dropdown-content"])
|
|
2876
2882
|
}, [
|
|
2877
|
-
(l(!0), i(D, null, V(b.options, (w) => (l(),
|
|
2883
|
+
(l(!0), i(D, null, V(b.options, (w) => (l(), A(I(fe), {
|
|
2878
2884
|
id: w.value,
|
|
2879
2885
|
key: w.value,
|
|
2880
2886
|
name: w.text,
|
|
@@ -2895,7 +2901,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Dr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2895
2901
|
]);
|
|
2896
2902
|
};
|
|
2897
2903
|
}
|
|
2898
|
-
}),
|
|
2904
|
+
}), Mr = /* @__PURE__ */ v(Fr, [["__scopeId", "data-v-678cc92e"]]), Or = { class: "promo__content" }, zr = { class: "pallet-jack__media-wrap" }, Hr = { class: "pallet-jack-link" }, Rr = { class: "pallet-jack__media-wrap__inner-wrap" }, Nr = { class: "pallet-jack__media-wrap__content-wrap" }, Er = { class: "regular-blue" }, jr = /* @__PURE__ */ g({
|
|
2899
2905
|
__name: "pallet-jack",
|
|
2900
2906
|
props: {
|
|
2901
2907
|
label: { default: "" },
|
|
@@ -2921,22 +2927,22 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Dr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2921
2927
|
o.teaser ? "promo__wrapper--teaser" : ""
|
|
2922
2928
|
])
|
|
2923
2929
|
}, [
|
|
2924
|
-
t("div",
|
|
2930
|
+
t("div", Or, [
|
|
2925
2931
|
t("div", {
|
|
2926
2932
|
class: h([
|
|
2927
2933
|
"promo__video",
|
|
2928
2934
|
o.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2929
2935
|
])
|
|
2930
2936
|
}, [
|
|
2931
|
-
t("div",
|
|
2932
|
-
t("div",
|
|
2937
|
+
t("div", zr, [
|
|
2938
|
+
t("div", Hr, [
|
|
2933
2939
|
c(o.$slots, "pallet-jack-link")
|
|
2934
2940
|
]),
|
|
2935
|
-
t("div",
|
|
2941
|
+
t("div", Rr, [
|
|
2936
2942
|
c(o.$slots, "pallet-jack-video")
|
|
2937
2943
|
]),
|
|
2938
|
-
t("div",
|
|
2939
|
-
t("h3",
|
|
2944
|
+
t("div", Nr, [
|
|
2945
|
+
t("h3", Er, d(o.headline), 1),
|
|
2940
2946
|
t("p", null, d(o.shortDescription), 1)
|
|
2941
2947
|
])
|
|
2942
2948
|
])
|
|
@@ -2947,7 +2953,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Dr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2947
2953
|
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2948
2954
|
])
|
|
2949
2955
|
}, [
|
|
2950
|
-
o.label ? (l(),
|
|
2956
|
+
o.label ? (l(), A(X, {
|
|
2951
2957
|
key: 0,
|
|
2952
2958
|
text: o.label,
|
|
2953
2959
|
"label-dark": o.variant === "dark"
|
|
@@ -2960,7 +2966,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Dr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2960
2966
|
}, [
|
|
2961
2967
|
c(o.$slots, "promo-text")
|
|
2962
2968
|
], 2),
|
|
2963
|
-
o.linkType === "link" ? (l(),
|
|
2969
|
+
o.linkType === "link" ? (l(), A(P, {
|
|
2964
2970
|
key: 1,
|
|
2965
2971
|
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
2966
2972
|
arrow: ""
|
|
@@ -2970,7 +2976,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Dr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2970
2976
|
]),
|
|
2971
2977
|
_: 3
|
|
2972
2978
|
}, 8, ["link-type"])) : _("", !0),
|
|
2973
|
-
o.linkType === "button" ? (l(),
|
|
2979
|
+
o.linkType === "button" ? (l(), A(P, {
|
|
2974
2980
|
key: 2,
|
|
2975
2981
|
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
2976
2982
|
}, {
|
|
@@ -2983,9 +2989,9 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Dr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2983
2989
|
])
|
|
2984
2990
|
], 2));
|
|
2985
2991
|
}
|
|
2986
|
-
}),
|
|
2992
|
+
}), Kr = /* @__PURE__ */ v(jr, [["__scopeId", "data-v-00c0bad3"]]), Gr = {
|
|
2987
2993
|
install: (e) => {
|
|
2988
|
-
e.component("AtomButton", le), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", F), e.component("AtomLabel", X), e.component("AtomLink", P), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple",
|
|
2994
|
+
e.component("AtomButton", le), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", F), e.component("AtomLabel", X), e.component("AtomLink", P), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Mr), e.component("AtomSlider", Bt), e.component("AtomTextarea", Lt), e.component("AtomTextField", Et), e.component("AtomVideo", te), e.component("MoleculeAddress", sa), e.component("MoleculeBulletList", da), e.component("MoleculeCard", pa), e.component("MoleculeColumnCard", ge), e.component("MoleculeEventCard", qa), e.component("MoleculeFlashcard", be), e.component("MoleculeModal", ve), e.component("MoleculeTextCard", Ua), e.component("BlockAccordion", ao), e.component("BlockFacts", So), e.component("BlockFeatures", Vo), e.component("BlockFlashcards", zo), e.component("BlockFormScript", Uo), e.component("BlockHeadline", Yo), e.component("BlockHero", ns), e.component("BlockImage", ps), e.component("BlockImageGallery", bs), e.component("BlockLogoWall", qs), e.component("BlockMicroStories", Vs), e.component("BlockPolicy", zs), e.component("BlockProductHero", Js), e.component("BlockPromo", Qs), e.component("BlockQuote", dl), e.component("BlockRichText", pl), e.component("BlockRichTextColumns", kl), e.component("BlockTimeline", Ll), e.component("BlockCardDisplay", co), e.component("BlockColumnGrid", fo), e.component("BlockVimeo", Ol), e.component("BlockPalletJack", Kr), e.component("BlockFrontPageHero", xl), e.component("Organism404", li), e.component("OrganismFilter", ui), e.component("OrganismFooter", Ri), e.component("OrganismHeader", vr), e.component("OrganismLanguageSwitcher", Br), e.component("OrganismPagination", qr), e.component("OrganismSearch", Dr);
|
|
2989
2995
|
}
|
|
2990
2996
|
};
|
|
2991
2997
|
export {
|
|
@@ -2998,48 +3004,48 @@ export {
|
|
|
2998
3004
|
P as AtomLink,
|
|
2999
3005
|
rt as AtomRadioButton,
|
|
3000
3006
|
ht as AtomSelect,
|
|
3001
|
-
|
|
3007
|
+
Mr as AtomSelectMultiple,
|
|
3002
3008
|
Bt as AtomSlider,
|
|
3003
|
-
|
|
3004
|
-
|
|
3009
|
+
Et as AtomTextField,
|
|
3010
|
+
Lt as AtomTextarea,
|
|
3005
3011
|
te as AtomVideo,
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3012
|
+
ao as BlockAccordion,
|
|
3013
|
+
co as BlockCardDisplay,
|
|
3014
|
+
fo as BlockColumnGrid,
|
|
3015
|
+
So as BlockFacts,
|
|
3016
|
+
Vo as BlockFeatures,
|
|
3017
|
+
zo as BlockFlashcards,
|
|
3018
|
+
Uo as BlockFormScript,
|
|
3019
|
+
xl as BlockFrontPageHero,
|
|
3020
|
+
Yo as BlockHeadline,
|
|
3021
|
+
ns as BlockHero,
|
|
3022
|
+
ps as BlockImage,
|
|
3023
|
+
bs as BlockImageGallery,
|
|
3024
|
+
qs as BlockLogoWall,
|
|
3025
|
+
Vs as BlockMicroStories,
|
|
3026
|
+
Kr as BlockPalletJack,
|
|
3027
|
+
zs as BlockPolicy,
|
|
3028
|
+
Js as BlockProductHero,
|
|
3029
|
+
Qs as BlockPromo,
|
|
3030
|
+
dl as BlockQuote,
|
|
3031
|
+
pl as BlockRichText,
|
|
3032
|
+
kl as BlockRichTextColumns,
|
|
3033
|
+
Ll as BlockTimeline,
|
|
3034
|
+
Ol as BlockVimeo,
|
|
3035
|
+
sa as MoleculeAddress,
|
|
3036
|
+
da as MoleculeBulletList,
|
|
3037
|
+
pa as MoleculeCard,
|
|
3032
3038
|
ge as MoleculeColumnCard,
|
|
3033
|
-
|
|
3039
|
+
qa as MoleculeEventCard,
|
|
3034
3040
|
be as MoleculeFlashcard,
|
|
3035
3041
|
ve as MoleculeModal,
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3042
|
+
Ua as MoleculeTextCard,
|
|
3043
|
+
li as Organism404,
|
|
3044
|
+
ui as OrganismFilter,
|
|
3045
|
+
Ri as OrganismFooter,
|
|
3046
|
+
vr as OrganismHeader,
|
|
3047
|
+
Br as OrganismLanguageSwitcher,
|
|
3048
|
+
qr as OrganismPagination,
|
|
3049
|
+
Dr as OrganismSearch,
|
|
3050
|
+
Gr as default
|
|
3045
3051
|
};
|