@mirweb/mir-web-components 0.17.102 → 0.17.104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/blocks/policy/policy.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 +829 -734
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as g, computed as
|
|
2
|
-
const
|
|
1
|
+
import { defineComponent as g, computed as D, openBlock as l, createElementBlock as i, normalizeClass as h, toDisplayString as n, createElementVNode as t, renderSlot as c, pushScopeId as E, popScopeId as R, createTextVNode as Q, ref as q, withDirectives as j, Fragment as P, renderList as M, vShow as W, normalizeProps as O, guardReactiveProps as F, toRefs as ye, mergeProps as ie, createVNode as S, Transition as $e, withCtx as $, withModifiers as ue, createBlock as L, createCommentVNode as m, watchEffect as _e, withKeys as ke, useSlots as we, normalizeStyle as re, isRef as ce, unref as I, onMounted as pe, watch as ee, onUnmounted as Se } from "vue";
|
|
2
|
+
const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
5
5
|
variant: { default: "primary" },
|
|
@@ -13,18 +13,18 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
13
13
|
close: "close",
|
|
14
14
|
next: "next",
|
|
15
15
|
previous: "previous"
|
|
16
|
-
}, r = e,
|
|
17
|
-
return (
|
|
18
|
-
class: h(["button", "button--" +
|
|
19
|
-
"aria-label":
|
|
20
|
-
}, n(
|
|
16
|
+
}, r = e, s = D(() => a[r.variant]);
|
|
17
|
+
return (o, _) => (l(), i("button", {
|
|
18
|
+
class: h(["button", "button--" + s.value]),
|
|
19
|
+
"aria-label": o.ariaLabel
|
|
20
|
+
}, n(s.value === "close" ? "" : o.buttonText), 11, Be));
|
|
21
21
|
}
|
|
22
|
-
}),
|
|
22
|
+
}), f = (e, a) => {
|
|
23
23
|
const r = e.__vccOpts || e;
|
|
24
|
-
for (const [
|
|
25
|
-
r[
|
|
24
|
+
for (const [s, o] of a)
|
|
25
|
+
r[s] = o;
|
|
26
26
|
return r;
|
|
27
|
-
},
|
|
27
|
+
}, te = /* @__PURE__ */ f(Ie, [["__scopeId", "data-v-a3e038ec"]]), qe = (e) => (E("data-v-42c44141"), e = e(), R(), e), Te = ["id", "name", "value", "disabled", "required"], De = ["for"], Le = /* @__PURE__ */ qe(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Ce = /* @__PURE__ */ g({
|
|
28
28
|
__name: "checkbox",
|
|
29
29
|
props: {
|
|
30
30
|
name: { default: "checkbox" },
|
|
@@ -35,58 +35,58 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
35
35
|
},
|
|
36
36
|
emits: ["input"],
|
|
37
37
|
setup(e, { emit: a }) {
|
|
38
|
-
const r = a,
|
|
39
|
-
const _ =
|
|
38
|
+
const r = a, s = (o) => {
|
|
39
|
+
const _ = o.target;
|
|
40
40
|
r("input", _.checked);
|
|
41
41
|
};
|
|
42
|
-
return (
|
|
43
|
-
class: h(["checkbox__wrapper",
|
|
42
|
+
return (o, _) => (l(), i("div", {
|
|
43
|
+
class: h(["checkbox__wrapper", o.disabled ? "disabled" : ""])
|
|
44
44
|
}, [
|
|
45
45
|
t("input", {
|
|
46
|
-
id:
|
|
46
|
+
id: o.id,
|
|
47
47
|
type: "checkbox",
|
|
48
|
-
name:
|
|
49
|
-
value:
|
|
50
|
-
disabled:
|
|
51
|
-
required:
|
|
48
|
+
name: o.name,
|
|
49
|
+
value: o.value,
|
|
50
|
+
disabled: o.disabled,
|
|
51
|
+
required: o.required,
|
|
52
52
|
class: "checkbox__checkbox",
|
|
53
|
-
onChange:
|
|
53
|
+
onChange: s
|
|
54
54
|
}, null, 40, Te),
|
|
55
55
|
t("label", {
|
|
56
|
-
for:
|
|
57
|
-
class: h(["checkbox__label",
|
|
56
|
+
for: o.id,
|
|
57
|
+
class: h(["checkbox__label", o.required ? "required" : ""])
|
|
58
58
|
}, [
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
], 10,
|
|
59
|
+
Le,
|
|
60
|
+
c(o.$slots, "default", {}, void 0, !0)
|
|
61
|
+
], 10, De)
|
|
62
62
|
], 2));
|
|
63
63
|
}
|
|
64
|
-
}),
|
|
64
|
+
}), Ve = /* @__PURE__ */ f(Ce, [["__scopeId", "data-v-42c44141"]]), Ae = (e) => (E("data-v-08813346"), e = e(), R(), e), Pe = ["aria-label"], Me = /* @__PURE__ */ Ae(() => /* @__PURE__ */ t("img", {
|
|
65
65
|
src: "https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",
|
|
66
66
|
alt: "close",
|
|
67
67
|
class: "close-icon"
|
|
68
|
-
}, null, -1)),
|
|
68
|
+
}, null, -1)), Oe = /* @__PURE__ */ g({
|
|
69
69
|
__name: "chip",
|
|
70
70
|
props: {
|
|
71
71
|
text: { default: "" }
|
|
72
72
|
},
|
|
73
73
|
emits: ["remove-chip"],
|
|
74
74
|
setup(e) {
|
|
75
|
-
const a = e, r =
|
|
76
|
-
return (
|
|
75
|
+
const a = e, r = D(() => `Chip: ${a.text}`);
|
|
76
|
+
return (s, o) => (l(), i("div", {
|
|
77
77
|
class: "chip__wrapper",
|
|
78
|
-
onClick:
|
|
78
|
+
onClick: o[0] || (o[0] = (_) => s.$emit("remove-chip"))
|
|
79
79
|
}, [
|
|
80
80
|
t("span", {
|
|
81
81
|
class: "chip",
|
|
82
82
|
"aria-label": r.value
|
|
83
83
|
}, [
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
], 8,
|
|
84
|
+
Q(n(s.text) + " ", 1),
|
|
85
|
+
Me
|
|
86
|
+
], 8, Pe)
|
|
87
87
|
]));
|
|
88
88
|
}
|
|
89
|
-
}), Fe = /* @__PURE__ */
|
|
89
|
+
}), Fe = /* @__PURE__ */ f(Oe, [["__scopeId", "data-v-08813346"]]), Ee = ["value"], Re = ["id"], Ne = { class: "listbox__dropdown" }, He = ["id", "aria-labelledby", "aria-disabled"], ze = ["aria-labelledby", "aria-activedescendant"], je = ["aria-selected", "data-value"], Ue = /* @__PURE__ */ g({
|
|
90
90
|
__name: "dropdown",
|
|
91
91
|
props: {
|
|
92
92
|
modelValue: {},
|
|
@@ -104,41 +104,41 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
104
104
|
const r = {
|
|
105
105
|
primary: "dropdown-dark-bg-primary",
|
|
106
106
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
107
|
-
},
|
|
108
|
-
const d =
|
|
109
|
-
(
|
|
107
|
+
}, s = e, o = D(() => r[s.variant]), _ = q(null), u = q(null), p = q([]), w = q(0), v = q(""), B = q(!0), C = q(0), ae = a, oe = D(() => {
|
|
108
|
+
const d = s.options.find(
|
|
109
|
+
(y) => y.value === s.modelValue
|
|
110
110
|
);
|
|
111
111
|
return d && d.label;
|
|
112
|
-
}),
|
|
113
|
-
beforeMount(d,
|
|
112
|
+
}), U = {
|
|
113
|
+
beforeMount(d, y) {
|
|
114
114
|
d.clickOutsideEvent = function(k) {
|
|
115
|
-
d === k.target || d.contains(k.target) ||
|
|
115
|
+
d === k.target || d.contains(k.target) || y.value(k);
|
|
116
116
|
}, document.body.addEventListener("click", d.clickOutsideEvent);
|
|
117
117
|
},
|
|
118
118
|
unmounted(d) {
|
|
119
119
|
document.body.removeEventListener("click", d.clickOutsideEvent);
|
|
120
120
|
}
|
|
121
121
|
};
|
|
122
|
-
function
|
|
123
|
-
|
|
122
|
+
function X(d) {
|
|
123
|
+
ae("update:modelValue", d);
|
|
124
124
|
}
|
|
125
|
-
function
|
|
125
|
+
function le(d) {
|
|
126
126
|
var k;
|
|
127
|
-
const
|
|
128
|
-
|
|
127
|
+
const y = d.target;
|
|
128
|
+
y.getAttribute("role") === "option" && (J(y), x(), (k = _.value) == null || k.focus());
|
|
129
129
|
}
|
|
130
|
-
function
|
|
130
|
+
function b(d) {
|
|
131
131
|
var k;
|
|
132
|
-
const
|
|
133
|
-
switch (
|
|
132
|
+
const y = d.key;
|
|
133
|
+
switch (y) {
|
|
134
134
|
case "ArrowUp":
|
|
135
135
|
case "ArrowDown": {
|
|
136
136
|
d.preventDefault();
|
|
137
|
-
const T =
|
|
138
|
-
(
|
|
137
|
+
const T = s.options.findIndex(
|
|
138
|
+
(G) => G.value === s.modelValue
|
|
139
139
|
);
|
|
140
140
|
let N = T ? p.value[T] : p.value[0];
|
|
141
|
-
|
|
141
|
+
y === "ArrowUp" ? T - 1 >= 0 && (N = p.value[T - 1]) : T + 1 <= s.options.length && (N = p.value[T + 1]), N && J(N);
|
|
142
142
|
break;
|
|
143
143
|
}
|
|
144
144
|
case "Home":
|
|
@@ -151,86 +151,86 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
151
151
|
break;
|
|
152
152
|
case "Enter":
|
|
153
153
|
case "Escape":
|
|
154
|
-
d.preventDefault(),
|
|
154
|
+
d.preventDefault(), x(), (k = _.value) == null || k.focus();
|
|
155
155
|
break;
|
|
156
156
|
default: {
|
|
157
|
-
const T = me(
|
|
158
|
-
T &&
|
|
157
|
+
const T = me(y);
|
|
158
|
+
T && J(T);
|
|
159
159
|
break;
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
|
-
function
|
|
164
|
-
if (!
|
|
163
|
+
function K(d) {
|
|
164
|
+
if (!s.disabled)
|
|
165
165
|
switch (d.key) {
|
|
166
166
|
case "ArrowUp":
|
|
167
167
|
case "ArrowDown":
|
|
168
|
-
d.preventDefault(),
|
|
168
|
+
d.preventDefault(), de(), b(d);
|
|
169
169
|
break;
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
|
-
function
|
|
172
|
+
function se(d) {
|
|
173
173
|
d && d.removeAttribute("aria-selected");
|
|
174
174
|
}
|
|
175
|
-
function
|
|
176
|
-
|
|
177
|
-
|
|
175
|
+
function z() {
|
|
176
|
+
w.value && (clearTimeout(w.value), w.value = 0), w.value = setTimeout(() => {
|
|
177
|
+
v.value = "", w.value = 0;
|
|
178
178
|
}, 500);
|
|
179
179
|
}
|
|
180
180
|
function me(d) {
|
|
181
|
-
let
|
|
182
|
-
(
|
|
183
|
-
(T) => T.value ===
|
|
184
|
-
)),
|
|
185
|
-
let k =
|
|
186
|
-
|
|
187
|
-
|
|
181
|
+
let y = "";
|
|
182
|
+
(v.value === "" || y !== d) && (C.value = s.options.findIndex(
|
|
183
|
+
(T) => T.value === s.modelValue
|
|
184
|
+
)), v.value = y === d ? d : v.value + d, y = d, z();
|
|
185
|
+
let k = ne(
|
|
186
|
+
C.value + 1,
|
|
187
|
+
s.options.length
|
|
188
188
|
);
|
|
189
|
-
return !k &&
|
|
189
|
+
return !k && v.value.length === 1 && (k = ne(0, C.value)), C.value = (C.value + 1) % s.options.length, k;
|
|
190
190
|
}
|
|
191
|
-
function
|
|
192
|
-
for (let k = d; k <
|
|
193
|
-
if (
|
|
191
|
+
function ne(d, y) {
|
|
192
|
+
for (let k = d; k < y; k++)
|
|
193
|
+
if (s.options[k].label && s.options[k].label.toUpperCase().indexOf(v.value.toUpperCase()) === 0)
|
|
194
194
|
return p.value[k];
|
|
195
195
|
return null;
|
|
196
196
|
}
|
|
197
197
|
function ve() {
|
|
198
|
-
|
|
198
|
+
J(p.value[0]);
|
|
199
199
|
}
|
|
200
|
-
function
|
|
200
|
+
function J(d) {
|
|
201
201
|
var k, T;
|
|
202
|
-
const
|
|
203
|
-
if (
|
|
204
|
-
const N =
|
|
205
|
-
(be) => be.value ===
|
|
206
|
-
),
|
|
207
|
-
|
|
202
|
+
const y = d.getAttribute("data-value");
|
|
203
|
+
if (s.modelValue) {
|
|
204
|
+
const N = s.options.findIndex(
|
|
205
|
+
(be) => be.value === s.modelValue
|
|
206
|
+
), G = p.value[N];
|
|
207
|
+
se(G);
|
|
208
208
|
}
|
|
209
|
-
if (d.setAttribute("aria-selected", "true"), (k =
|
|
209
|
+
if (d.setAttribute("aria-selected", "true"), (k = u.value) == null || k.setAttribute(
|
|
210
210
|
"aria-activedescendant",
|
|
211
|
-
|
|
212
|
-
),
|
|
213
|
-
const N =
|
|
214
|
-
|
|
211
|
+
y || ""
|
|
212
|
+
), X(y || ""), u.value && u.value.scrollHeight > u.value.clientHeight) {
|
|
213
|
+
const N = u.value.clientHeight + u.value.scrollTop, G = d.offsetTop + d.offsetHeight;
|
|
214
|
+
G > N ? u.value.scrollTop = G - ((T = u.value) == null ? void 0 : T.clientHeight) : d.offsetTop < u.value.scrollTop && (u.value.scrollTop = d.offsetTop);
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
function fe() {
|
|
218
|
-
var
|
|
219
|
-
const d = (
|
|
220
|
-
|
|
218
|
+
var y;
|
|
219
|
+
const d = (y = p.value) == null ? void 0 : y[s.options.length - 1];
|
|
220
|
+
J(d);
|
|
221
221
|
}
|
|
222
|
-
function
|
|
222
|
+
function x() {
|
|
223
223
|
var d;
|
|
224
|
-
|
|
224
|
+
B.value = !0, (d = _.value) == null || d.removeAttribute("aria-expanded");
|
|
225
225
|
}
|
|
226
|
-
function
|
|
227
|
-
var d,
|
|
228
|
-
|
|
226
|
+
function de() {
|
|
227
|
+
var d, y;
|
|
228
|
+
B.value = !1, (d = _.value) == null || d.setAttribute("aria-expanded", "true"), (y = u.value) == null || y.focus();
|
|
229
229
|
}
|
|
230
230
|
function ge() {
|
|
231
|
-
|
|
231
|
+
s.disabled || (B.value ? de() : x());
|
|
232
232
|
}
|
|
233
|
-
return (d,
|
|
233
|
+
return (d, y) => (l(), i("div", {
|
|
234
234
|
ref: "listbox",
|
|
235
235
|
class: "listbox__wrapper",
|
|
236
236
|
value: d.modelValue
|
|
@@ -243,7 +243,7 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
243
243
|
"is-required": d.required
|
|
244
244
|
}, "listbox__label"])
|
|
245
245
|
}, n(d.label), 11, Re),
|
|
246
|
-
|
|
246
|
+
j((l(), i("div", Ne, [
|
|
247
247
|
t("button", {
|
|
248
248
|
id: `${d.name}-button-label`,
|
|
249
249
|
ref_key: "listboxButton",
|
|
@@ -252,22 +252,22 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
252
252
|
type: "button",
|
|
253
253
|
"aria-haspopup": "listbox",
|
|
254
254
|
"aria-disabled": d.disabled,
|
|
255
|
-
class: h(["listbox__button",
|
|
255
|
+
class: h(["listbox__button", o.value]),
|
|
256
256
|
onClick: ge,
|
|
257
|
-
onKeydown:
|
|
258
|
-
}, n(d.modelValue ?
|
|
259
|
-
|
|
257
|
+
onKeydown: K
|
|
258
|
+
}, n(d.modelValue ? oe.value : d.placeholder), 43, He),
|
|
259
|
+
j(t("ul", {
|
|
260
260
|
ref_key: "listboxNode",
|
|
261
|
-
ref:
|
|
261
|
+
ref: u,
|
|
262
262
|
"aria-labelledby": `${d.name}-label`,
|
|
263
263
|
"aria-activedescendant": d.modelValue,
|
|
264
264
|
tabindex: "0",
|
|
265
265
|
role: "listbox",
|
|
266
266
|
class: "listbox__list",
|
|
267
|
-
onKeydown:
|
|
268
|
-
onClick:
|
|
267
|
+
onKeydown: b,
|
|
268
|
+
onClick: le
|
|
269
269
|
}, [
|
|
270
|
-
(
|
|
270
|
+
(l(!0), i(P, null, M(d.options, (k, T) => (l(), i("li", {
|
|
271
271
|
key: `${d.name}-option-${T}`,
|
|
272
272
|
ref_for: !0,
|
|
273
273
|
ref_key: "listboxOptions",
|
|
@@ -278,14 +278,14 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
278
278
|
role: "option"
|
|
279
279
|
}, n(k.label), 9, je))), 128))
|
|
280
280
|
], 40, ze), [
|
|
281
|
-
[
|
|
281
|
+
[W, !B.value]
|
|
282
282
|
])
|
|
283
283
|
])), [
|
|
284
|
-
[
|
|
284
|
+
[U, x]
|
|
285
285
|
])
|
|
286
286
|
], 8, Ee));
|
|
287
287
|
}
|
|
288
|
-
}), Ke = /* @__PURE__ */
|
|
288
|
+
}), Ke = /* @__PURE__ */ f(Ue, [["__scopeId", "data-v-6a8da7a4"]]), Ge = { class: "image__wrapper" }, We = /* @__PURE__ */ g({
|
|
289
289
|
__name: "image",
|
|
290
290
|
props: {
|
|
291
291
|
src: { default: void 0 },
|
|
@@ -297,27 +297,27 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
297
297
|
loading: { default: "auto" }
|
|
298
298
|
},
|
|
299
299
|
setup(e) {
|
|
300
|
-
return (a, r) => (
|
|
301
|
-
|
|
300
|
+
return (a, r) => (l(), i("div", Ge, [
|
|
301
|
+
c(a.$slots, "default", O(F(a.$attrs)))
|
|
302
302
|
]));
|
|
303
303
|
}
|
|
304
|
-
}),
|
|
304
|
+
}), A = /* @__PURE__ */ f(We, [["__scopeId", "data-v-e10217bd"]]), Ye = { class: "label__wrapper" }, Je = ["aria-label", "label-dark"], Qe = /* @__PURE__ */ g({
|
|
305
305
|
__name: "label",
|
|
306
306
|
props: {
|
|
307
307
|
text: {},
|
|
308
308
|
labelDark: { type: Boolean, default: !1 }
|
|
309
309
|
},
|
|
310
310
|
setup(e) {
|
|
311
|
-
const a = e, r =
|
|
312
|
-
return (
|
|
311
|
+
const a = e, r = D(() => `Label: ${a.text}`);
|
|
312
|
+
return (s, o) => (l(), i("div", Ye, [
|
|
313
313
|
t("span", {
|
|
314
314
|
"aria-label": r.value,
|
|
315
|
-
"label-dark":
|
|
316
|
-
class: h(
|
|
317
|
-
}, n(
|
|
315
|
+
"label-dark": s.labelDark,
|
|
316
|
+
class: h(s.labelDark ? "label--dark" : "label--light")
|
|
317
|
+
}, n(s.text), 11, Je)
|
|
318
318
|
]));
|
|
319
319
|
}
|
|
320
|
-
}),
|
|
320
|
+
}), Y = /* @__PURE__ */ f(Qe, [["__scopeId", "data-v-7d9d3a8a"]]), Ze = { class: "link__wrapper" }, V = /* @__PURE__ */ g({
|
|
321
321
|
__name: "link",
|
|
322
322
|
props: {
|
|
323
323
|
linkType: { default: "regular" },
|
|
@@ -338,20 +338,20 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
338
338
|
hover: "underline-hover",
|
|
339
339
|
true: "add-underline",
|
|
340
340
|
false: "remove-underline"
|
|
341
|
-
},
|
|
342
|
-
const { ...p } = ye(
|
|
341
|
+
}, s = e, o = D(() => a[s.linkType]), _ = D(() => r[s.underline]), u = D(() => {
|
|
342
|
+
const { ...p } = ye(s);
|
|
343
343
|
return p;
|
|
344
344
|
});
|
|
345
|
-
return (p,
|
|
346
|
-
t("div",
|
|
345
|
+
return (p, w) => (l(), i("div", Ze, [
|
|
346
|
+
t("div", ie(u.value, {
|
|
347
347
|
class: ["mir-link", [
|
|
348
|
-
|
|
348
|
+
o.value,
|
|
349
349
|
p.disabled ? "disabled" : "",
|
|
350
350
|
_.value,
|
|
351
351
|
p.arrow ? "link-arrow" : ""
|
|
352
352
|
]]
|
|
353
353
|
}), [
|
|
354
|
-
|
|
354
|
+
c(p.$slots, "default")
|
|
355
355
|
], 16)
|
|
356
356
|
]));
|
|
357
357
|
}
|
|
@@ -367,34 +367,34 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
367
367
|
},
|
|
368
368
|
emits: ["input"],
|
|
369
369
|
setup(e, { emit: a }) {
|
|
370
|
-
const r = a,
|
|
371
|
-
const _ =
|
|
370
|
+
const r = a, s = (o) => {
|
|
371
|
+
const _ = o.target;
|
|
372
372
|
r("input", _.checked);
|
|
373
373
|
};
|
|
374
|
-
return (
|
|
375
|
-
class: h(["radio__wrapper",
|
|
374
|
+
return (o, _) => (l(), i("div", {
|
|
375
|
+
class: h(["radio__wrapper", o.disabled ? "disabled" : ""])
|
|
376
376
|
}, [
|
|
377
377
|
t("input", {
|
|
378
|
-
id:
|
|
378
|
+
id: o.id,
|
|
379
379
|
type: "radio",
|
|
380
|
-
name:
|
|
381
|
-
value:
|
|
382
|
-
checked:
|
|
383
|
-
disabled:
|
|
384
|
-
required:
|
|
380
|
+
name: o.name,
|
|
381
|
+
value: o.value,
|
|
382
|
+
checked: o.checked,
|
|
383
|
+
disabled: o.disabled,
|
|
384
|
+
required: o.required,
|
|
385
385
|
class: "radio__radio",
|
|
386
|
-
onChange:
|
|
386
|
+
onChange: s
|
|
387
387
|
}, null, 40, xe),
|
|
388
388
|
t("label", {
|
|
389
|
-
for:
|
|
390
|
-
class: h(["radio__label",
|
|
389
|
+
for: o.id,
|
|
390
|
+
class: h(["radio__label", o.required ? "required" : ""])
|
|
391
391
|
}, [
|
|
392
392
|
tt,
|
|
393
|
-
|
|
393
|
+
c(o.$slots, "default", {}, void 0, !0)
|
|
394
394
|
], 10, et)
|
|
395
395
|
], 2));
|
|
396
396
|
}
|
|
397
|
-
}),
|
|
397
|
+
}), ot = /* @__PURE__ */ f(at, [["__scopeId", "data-v-fa1bda9b"]]), lt = { class: "select__wrapper" }, st = ["for"], it = ["id", "disabled", "name", "value"], rt = ["value"], nt = /* @__PURE__ */ g({
|
|
398
398
|
__name: "select",
|
|
399
399
|
props: {
|
|
400
400
|
id: {},
|
|
@@ -407,7 +407,7 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
407
407
|
},
|
|
408
408
|
emits: ["update:modelValue"],
|
|
409
409
|
setup(e) {
|
|
410
|
-
return (a, r) => (
|
|
410
|
+
return (a, r) => (l(), i("div", lt, [
|
|
411
411
|
t("label", {
|
|
412
412
|
for: a.id,
|
|
413
413
|
class: h([a.required ? "required" : "", a.disabled ? "disabled" : ""])
|
|
@@ -418,18 +418,18 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
418
418
|
disabled: a.disabled,
|
|
419
419
|
name: a.name,
|
|
420
420
|
value: a.modelValue,
|
|
421
|
-
onChange: r[0] || (r[0] = (
|
|
422
|
-
a.$emit("update:modelValue",
|
|
421
|
+
onChange: r[0] || (r[0] = (s) => {
|
|
422
|
+
a.$emit("update:modelValue", s.target.value), s.target.blur();
|
|
423
423
|
})
|
|
424
424
|
}, [
|
|
425
|
-
(
|
|
426
|
-
key:
|
|
427
|
-
value:
|
|
428
|
-
}, n(
|
|
425
|
+
(l(!0), i(P, null, M(a.options, (s) => (l(), i("option", {
|
|
426
|
+
key: s.value,
|
|
427
|
+
value: s.value
|
|
428
|
+
}, n(s.text), 9, rt))), 128))
|
|
429
429
|
], 42, it)
|
|
430
430
|
]));
|
|
431
431
|
}
|
|
432
|
-
}), dt = /* @__PURE__ */
|
|
432
|
+
}), dt = /* @__PURE__ */ f(nt, [["__scopeId", "data-v-d5c46463"]]), ct = { class: "modal__wrapper" }, ut = /* @__PURE__ */ g({
|
|
433
433
|
__name: "modal",
|
|
434
434
|
props: {
|
|
435
435
|
show: { type: Boolean, default: !1 },
|
|
@@ -437,46 +437,46 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
437
437
|
},
|
|
438
438
|
emits: ["update:show"],
|
|
439
439
|
setup(e, { emit: a }) {
|
|
440
|
-
const r = e,
|
|
441
|
-
|
|
440
|
+
const r = e, s = a, o = () => {
|
|
441
|
+
s("update:show", !r.show);
|
|
442
442
|
};
|
|
443
|
-
return (_,
|
|
444
|
-
|
|
443
|
+
return (_, u) => (l(), i("div", ct, [
|
|
444
|
+
S($e, {
|
|
445
445
|
duration: 300,
|
|
446
446
|
name: "nested"
|
|
447
447
|
}, {
|
|
448
|
-
default:
|
|
449
|
-
|
|
448
|
+
default: $(() => [
|
|
449
|
+
j(t("div", {
|
|
450
450
|
class: h(["overlay", _.searchBar ? "overlay-search" : "overlay-default"]),
|
|
451
451
|
ariaLabel: "modal",
|
|
452
452
|
role: "dialog",
|
|
453
|
-
onClick:
|
|
453
|
+
onClick: o
|
|
454
454
|
}, [
|
|
455
455
|
t("div", {
|
|
456
456
|
id: "modal",
|
|
457
457
|
class: h([_.searchBar ? "search" : ""]),
|
|
458
|
-
onClick:
|
|
458
|
+
onClick: u[0] || (u[0] = ue(() => {
|
|
459
459
|
}, ["stop"]))
|
|
460
460
|
}, [
|
|
461
461
|
t("div", null, [
|
|
462
|
-
_.searchBar ? m("", !0) : (
|
|
462
|
+
_.searchBar ? m("", !0) : (l(), L(te, {
|
|
463
463
|
key: 0,
|
|
464
464
|
"aria-label": "close",
|
|
465
465
|
variant: "close",
|
|
466
|
-
onClick:
|
|
466
|
+
onClick: o
|
|
467
467
|
}))
|
|
468
468
|
]),
|
|
469
|
-
|
|
469
|
+
c(_.$slots, "default", {}, void 0, !0)
|
|
470
470
|
], 2)
|
|
471
471
|
], 2), [
|
|
472
|
-
[
|
|
472
|
+
[W, _.show]
|
|
473
473
|
])
|
|
474
474
|
]),
|
|
475
475
|
_: 3
|
|
476
476
|
})
|
|
477
477
|
]));
|
|
478
478
|
}
|
|
479
|
-
}),
|
|
479
|
+
}), he = /* @__PURE__ */ f(ut, [["__scopeId", "data-v-80f0fb08"]]), _t = { class: "slider__wrapper" }, pt = { class: "slider__label" }, ht = ["for"], mt = ["aria-label"], vt = { class: "slider__content" }, ft = ["id", "name", "value", "min", "step", "max"], gt = { class: "modal-information" }, bt = /* @__PURE__ */ g({
|
|
480
480
|
__name: "slider",
|
|
481
481
|
props: {
|
|
482
482
|
label: {},
|
|
@@ -492,73 +492,73 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
492
492
|
},
|
|
493
493
|
emits: ["update:modelValue"],
|
|
494
494
|
setup(e, { emit: a }) {
|
|
495
|
-
const r = e,
|
|
496
|
-
var
|
|
497
|
-
(
|
|
495
|
+
const r = e, s = a, o = q(r.modelValue), _ = q(), u = q(!1), p = (v, B, C) => (v - B) / (C - B) * 100, w = (v) => {
|
|
496
|
+
var B;
|
|
497
|
+
(B = _.value) == null || B.style.setProperty("--ProgressPercent", `${v}%`);
|
|
498
498
|
};
|
|
499
|
-
return
|
|
499
|
+
return _e(() => {
|
|
500
500
|
if (_.value) {
|
|
501
|
-
|
|
502
|
-
const
|
|
503
|
-
let
|
|
504
|
-
|
|
501
|
+
s("update:modelValue", o.value);
|
|
502
|
+
const v = p(o.value, r.min, r.max);
|
|
503
|
+
let B = (50 - v) / 100;
|
|
504
|
+
w(v + B);
|
|
505
505
|
}
|
|
506
|
-
}), (
|
|
506
|
+
}), (v, B) => (l(), i("div", null, [
|
|
507
507
|
t("div", _t, [
|
|
508
508
|
t("div", pt, [
|
|
509
509
|
t("label", {
|
|
510
|
-
for:
|
|
511
|
-
class: h([
|
|
512
|
-
}, n(
|
|
513
|
-
|
|
510
|
+
for: v.id,
|
|
511
|
+
class: h([v.variant, ""])
|
|
512
|
+
}, n(v.label), 11, ht),
|
|
513
|
+
v.information ? (l(), i("i", {
|
|
514
514
|
key: 0,
|
|
515
515
|
role: "button",
|
|
516
|
-
class: h([
|
|
517
|
-
"aria-label":
|
|
516
|
+
class: h([v.variant, "slider__information"]),
|
|
517
|
+
"aria-label": v.informationLabel,
|
|
518
518
|
tabindex: "0",
|
|
519
519
|
"aria-haspopup": "dialog",
|
|
520
|
-
onClick:
|
|
521
|
-
onKeyup:
|
|
520
|
+
onClick: B[0] || (B[0] = (C) => u.value = !u.value),
|
|
521
|
+
onKeyup: B[1] || (B[1] = ke((C) => u.value = !u.value, ["enter"]))
|
|
522
522
|
}, null, 42, mt)) : m("", !0)
|
|
523
523
|
]),
|
|
524
524
|
t("div", vt, [
|
|
525
525
|
t("span", {
|
|
526
|
-
class: h([
|
|
527
|
-
}, n(
|
|
526
|
+
class: h([v.variant, "slider__minmax"])
|
|
527
|
+
}, n(v.min), 3),
|
|
528
528
|
t("input", {
|
|
529
|
-
id:
|
|
529
|
+
id: v.id,
|
|
530
530
|
ref_key: "slider",
|
|
531
531
|
ref: _,
|
|
532
532
|
type: "range",
|
|
533
|
-
name:
|
|
534
|
-
value:
|
|
535
|
-
min:
|
|
536
|
-
step:
|
|
537
|
-
max:
|
|
538
|
-
class: h(
|
|
539
|
-
onInput:
|
|
533
|
+
name: v.name,
|
|
534
|
+
value: v.modelValue,
|
|
535
|
+
min: v.min,
|
|
536
|
+
step: v.step,
|
|
537
|
+
max: v.max,
|
|
538
|
+
class: h(v.variant),
|
|
539
|
+
onInput: B[2] || (B[2] = ({ target: C }) => o.value = parseFloat(C.value))
|
|
540
540
|
}, null, 42, ft),
|
|
541
541
|
t("span", {
|
|
542
|
-
class: h([
|
|
543
|
-
}, n(
|
|
542
|
+
class: h([v.variant, "slider__minmax"])
|
|
543
|
+
}, n(v.max), 3)
|
|
544
544
|
]),
|
|
545
545
|
t("span", {
|
|
546
|
-
class: h([
|
|
547
|
-
}, n(
|
|
546
|
+
class: h([v.variant, "slider__value"])
|
|
547
|
+
}, n(v.modelValue), 3)
|
|
548
548
|
]),
|
|
549
|
-
|
|
549
|
+
v.information ? (l(), L(he, {
|
|
550
550
|
key: 0,
|
|
551
|
-
show:
|
|
552
|
-
"onUpdate:show":
|
|
551
|
+
show: u.value,
|
|
552
|
+
"onUpdate:show": B[3] || (B[3] = (C) => u.value = C)
|
|
553
553
|
}, {
|
|
554
|
-
default:
|
|
555
|
-
t("p", gt, n(
|
|
554
|
+
default: $(() => [
|
|
555
|
+
t("p", gt, n(v.information), 1)
|
|
556
556
|
]),
|
|
557
557
|
_: 1
|
|
558
558
|
}, 8, ["show"])) : m("", !0)
|
|
559
559
|
]));
|
|
560
560
|
}
|
|
561
|
-
}), yt = /* @__PURE__ */
|
|
561
|
+
}), yt = /* @__PURE__ */ f(bt, [["__scopeId", "data-v-24a83011"]]), $t = { id: "textarea-wrapper" }, kt = ["for"], wt = ["id"], St = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], Bt = { class: "textarea-info" }, It = { key: 0 }, qt = /* @__PURE__ */ g({
|
|
562
562
|
__name: "textarea",
|
|
563
563
|
props: {
|
|
564
564
|
id: { default: "" },
|
|
@@ -572,7 +572,7 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
572
572
|
},
|
|
573
573
|
emits: ["update:modelValue"],
|
|
574
574
|
setup(e) {
|
|
575
|
-
return (a, r) => (
|
|
575
|
+
return (a, r) => (l(), i("div", $t, [
|
|
576
576
|
t("label", {
|
|
577
577
|
for: a.id,
|
|
578
578
|
class: h({ required: a.required })
|
|
@@ -593,12 +593,12 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
593
593
|
class: h(
|
|
594
594
|
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit" : "border"
|
|
595
595
|
),
|
|
596
|
-
onInput: r[0] || (r[0] = (
|
|
597
|
-
}, null, 42,
|
|
596
|
+
onInput: r[0] || (r[0] = (s) => a.$emit("update:modelValue", s.target.value))
|
|
597
|
+
}, null, 42, St)
|
|
598
598
|
], 8, wt),
|
|
599
|
-
t("div",
|
|
599
|
+
t("div", Bt, [
|
|
600
600
|
t("div", null, [
|
|
601
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (
|
|
601
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (l(), i("p", It, " Too many characters. Please make it shorter ")) : m("", !0)
|
|
602
602
|
]),
|
|
603
603
|
t("p", {
|
|
604
604
|
class: h(
|
|
@@ -608,10 +608,10 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
608
608
|
])
|
|
609
609
|
]));
|
|
610
610
|
}
|
|
611
|
-
}), Tt = /* @__PURE__ */
|
|
611
|
+
}), Tt = /* @__PURE__ */ f(qt, [["__scopeId", "data-v-220a973c"]]), Dt = { class: "text-field__wrapper" }, Lt = ["for"], Ct = { key: 0 }, Vt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], At = ["aria-expanded"], Pt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Mt = {
|
|
612
612
|
key: 2,
|
|
613
613
|
class: "search"
|
|
614
|
-
},
|
|
614
|
+
}, Ot = {
|
|
615
615
|
key: 3,
|
|
616
616
|
class: "errorMessage"
|
|
617
617
|
}, Ft = {
|
|
@@ -644,12 +644,12 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
644
644
|
tel: "tel",
|
|
645
645
|
url: "url",
|
|
646
646
|
search: "search"
|
|
647
|
-
}, r = e,
|
|
648
|
-
() =>
|
|
649
|
-
),
|
|
650
|
-
() =>
|
|
647
|
+
}, r = e, s = D(() => a[r.type]), o = q(!0), _ = D(
|
|
648
|
+
() => o.value ? "showPassword" : "hidePassword"
|
|
649
|
+
), u = D(
|
|
650
|
+
() => o.value ? "password" : "text"
|
|
651
651
|
);
|
|
652
|
-
return (p,
|
|
652
|
+
return (p, w) => (l(), i("div", Dt, [
|
|
653
653
|
t("label", {
|
|
654
654
|
for: p.id,
|
|
655
655
|
class: h([
|
|
@@ -657,31 +657,31 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
657
657
|
p.disabled ? "disabled" : "",
|
|
658
658
|
p.search ? "search" : ""
|
|
659
659
|
])
|
|
660
|
-
}, n(p.label), 11,
|
|
661
|
-
|
|
660
|
+
}, n(p.label), 11, Lt),
|
|
661
|
+
s.value === "password" ? (l(), i("div", Ct, [
|
|
662
662
|
t("input", {
|
|
663
663
|
id: p.id,
|
|
664
664
|
ref: "passwordField",
|
|
665
|
-
type:
|
|
665
|
+
type: u.value,
|
|
666
666
|
value: p.modelValue,
|
|
667
667
|
placeholder: p.placeholder,
|
|
668
668
|
required: p.required,
|
|
669
669
|
disabled: p.disabled,
|
|
670
670
|
name: p.fieldName,
|
|
671
|
-
onInput:
|
|
672
|
-
}, null, 40,
|
|
671
|
+
onInput: w[0] || (w[0] = (v) => p.$emit("update:modelValue", v.target.value))
|
|
672
|
+
}, null, 40, Vt),
|
|
673
673
|
t("i", {
|
|
674
674
|
role: "button",
|
|
675
675
|
class: h([_.value]),
|
|
676
676
|
"aria-controls": "password",
|
|
677
|
-
"aria-expanded": !
|
|
678
|
-
onClick:
|
|
679
|
-
}, null, 10,
|
|
680
|
-
])) : (
|
|
677
|
+
"aria-expanded": !o.value,
|
|
678
|
+
onClick: w[1] || (w[1] = (v) => o.value = !o.value)
|
|
679
|
+
}, null, 10, At)
|
|
680
|
+
])) : (l(), i("input", {
|
|
681
681
|
key: 1,
|
|
682
682
|
id: p.id,
|
|
683
683
|
ref: "textField",
|
|
684
|
-
type:
|
|
684
|
+
type: s.value,
|
|
685
685
|
value: p.modelValue,
|
|
686
686
|
placeholder: p.placeholder,
|
|
687
687
|
required: p.required,
|
|
@@ -692,14 +692,14 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
692
692
|
]),
|
|
693
693
|
disabled: p.disabled,
|
|
694
694
|
name: p.fieldName,
|
|
695
|
-
onInput:
|
|
696
|
-
}, null, 42,
|
|
697
|
-
p.search ? (
|
|
698
|
-
p.errorMessage ? (
|
|
699
|
-
p.helperText ? (
|
|
695
|
+
onInput: w[2] || (w[2] = (v) => p.$emit("update:modelValue", v.target.value))
|
|
696
|
+
}, null, 42, Pt)),
|
|
697
|
+
p.search ? (l(), i("i", Mt)) : m("", !0),
|
|
698
|
+
p.errorMessage ? (l(), i("strong", Ot, n(p.errorMessage), 1)) : m("", !0),
|
|
699
|
+
p.helperText ? (l(), i("span", Ft, n(p.helperText), 1)) : m("", !0)
|
|
700
700
|
]));
|
|
701
701
|
}
|
|
702
|
-
}), Rt = /* @__PURE__ */
|
|
702
|
+
}), Rt = /* @__PURE__ */ f(Et, [["__scopeId", "data-v-414b9435"]]), Nt = { class: "video__wrapper" }, Ht = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], zt = ["src", "aria-label", "title", "width", "height"], jt = /* @__PURE__ */ g({
|
|
703
703
|
__name: "video",
|
|
704
704
|
props: {
|
|
705
705
|
play: { type: Boolean, default: !1 },
|
|
@@ -717,18 +717,18 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
717
717
|
},
|
|
718
718
|
setup(e, { expose: a }) {
|
|
719
719
|
const r = e;
|
|
720
|
-
let
|
|
721
|
-
return
|
|
722
|
-
|
|
720
|
+
let s = q(null);
|
|
721
|
+
return _e(() => {
|
|
722
|
+
s.value && (r.play ? s.value.play() : r.play || s.value.pause());
|
|
723
723
|
}), a({
|
|
724
724
|
resetVideo: () => {
|
|
725
|
-
|
|
725
|
+
s.value && (s.value.currentTime = 0, s.value.play());
|
|
726
726
|
}
|
|
727
|
-
}), (_,
|
|
728
|
-
_.localVideo ? (
|
|
727
|
+
}), (_, u) => (l(), i("div", Nt, [
|
|
728
|
+
_.localVideo ? (l(), i("video", {
|
|
729
729
|
key: 0,
|
|
730
730
|
ref_key: "videoRef",
|
|
731
|
-
ref:
|
|
731
|
+
ref: s,
|
|
732
732
|
"aria-label": _.ariaLabel,
|
|
733
733
|
controls: _.controls,
|
|
734
734
|
poster: _.poster,
|
|
@@ -740,7 +740,7 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
740
740
|
type: "video/mp4",
|
|
741
741
|
playsinline: "",
|
|
742
742
|
src: _.src
|
|
743
|
-
}, null, 8, Ht)) : (
|
|
743
|
+
}, null, 8, Ht)) : (l(), i("iframe", {
|
|
744
744
|
key: 1,
|
|
745
745
|
src: _.src,
|
|
746
746
|
"aria-label": _.ariaLabel,
|
|
@@ -753,7 +753,7 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
753
753
|
}, null, 8, zt))
|
|
754
754
|
]));
|
|
755
755
|
}
|
|
756
|
-
}),
|
|
756
|
+
}), Z = /* @__PURE__ */ f(jt, [["__scopeId", "data-v-c6a0feb6"]]), Ut = { class: "address__wrapper" }, Kt = { class: "address__content" }, Gt = { class: "address__flag" }, Wt = { class: "address__address" }, Yt = { class: "address__name" }, Jt = { key: 0 }, Qt = { class: "address__contact" }, Zt = ["href"], Xt = ["href"], xt = ["href"], ea = /* @__PURE__ */ g({
|
|
757
757
|
__name: "address",
|
|
758
758
|
props: {
|
|
759
759
|
name: {},
|
|
@@ -766,25 +766,25 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
766
766
|
email: {}
|
|
767
767
|
},
|
|
768
768
|
setup(e) {
|
|
769
|
-
return (a, r) => (
|
|
769
|
+
return (a, r) => (l(), i("div", Ut, [
|
|
770
770
|
t("div", Kt, [
|
|
771
771
|
t("div", Gt, [
|
|
772
|
-
|
|
772
|
+
c(a.$slots, "address-flag", {}, void 0, !0)
|
|
773
773
|
]),
|
|
774
774
|
t("div", Wt, [
|
|
775
775
|
t("p", Yt, n(a.name), 1),
|
|
776
776
|
t("p", null, n(a.company), 1),
|
|
777
777
|
t("p", null, n(a.addressLine1), 1),
|
|
778
778
|
t("p", null, n(a.addressLine2), 1),
|
|
779
|
-
a.addressLine3 ? (
|
|
779
|
+
a.addressLine3 ? (l(), i("p", Jt, n(a.addressLine3), 1)) : m("", !0)
|
|
780
780
|
]),
|
|
781
781
|
t("div", Qt, [
|
|
782
|
-
a.website ? (
|
|
782
|
+
a.website ? (l(), L(V, {
|
|
783
783
|
key: 0,
|
|
784
784
|
underline: "false",
|
|
785
785
|
"link-type": "regular"
|
|
786
786
|
}, {
|
|
787
|
-
default:
|
|
787
|
+
default: $(() => [
|
|
788
788
|
t("a", {
|
|
789
789
|
href: "https://" + a.website,
|
|
790
790
|
class: "address__website"
|
|
@@ -792,16 +792,16 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
792
792
|
]),
|
|
793
793
|
_: 1
|
|
794
794
|
})) : m("", !0),
|
|
795
|
-
(
|
|
796
|
-
key:
|
|
795
|
+
(l(!0), i(P, null, M(a.phoneNumbers, (s) => (l(), L(V, {
|
|
796
|
+
key: s,
|
|
797
797
|
underline: "false",
|
|
798
798
|
"link-type": "regular"
|
|
799
799
|
}, {
|
|
800
|
-
default:
|
|
800
|
+
default: $(() => [
|
|
801
801
|
t("a", {
|
|
802
|
-
href: "tel:" +
|
|
802
|
+
href: "tel:" + s,
|
|
803
803
|
class: "address__phone"
|
|
804
|
-
}, n(
|
|
804
|
+
}, n(s), 9, Xt)
|
|
805
805
|
]),
|
|
806
806
|
_: 2
|
|
807
807
|
}, 1024))), 128)),
|
|
@@ -813,7 +813,7 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
813
813
|
])
|
|
814
814
|
]));
|
|
815
815
|
}
|
|
816
|
-
}), ta = /* @__PURE__ */
|
|
816
|
+
}), ta = /* @__PURE__ */ f(ea, [["__scopeId", "data-v-e1c72a18"]]), aa = (e) => (E("data-v-a44fd57d"), e = e(), R(), e), oa = { class: "bullet-list__wrapper" }, la = /* @__PURE__ */ aa(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), sa = /* @__PURE__ */ g({
|
|
817
817
|
__name: "bullet-list",
|
|
818
818
|
props: {
|
|
819
819
|
list: {
|
|
@@ -833,20 +833,20 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
833
833
|
}
|
|
834
834
|
},
|
|
835
835
|
setup(e) {
|
|
836
|
-
return (a, r) => (
|
|
836
|
+
return (a, r) => (l(), i("div", oa, [
|
|
837
837
|
t("div", {
|
|
838
838
|
class: h(["bullet-list", e.variant])
|
|
839
839
|
}, [
|
|
840
840
|
t("ul", null, [
|
|
841
|
-
(
|
|
842
|
-
|
|
843
|
-
|
|
841
|
+
(l(!0), i(P, null, M(e.list, (s) => (l(), i("li", { key: s }, [
|
|
842
|
+
la,
|
|
843
|
+
Q(" " + n(s), 1)
|
|
844
844
|
]))), 128))
|
|
845
845
|
])
|
|
846
846
|
], 2)
|
|
847
847
|
]));
|
|
848
848
|
}
|
|
849
|
-
}), ia = /* @__PURE__ */
|
|
849
|
+
}), ia = /* @__PURE__ */ f(sa, [["__scopeId", "data-v-a44fd57d"]]), ra = { class: "card__wrapper" }, na = { key: 2 }, da = { key: 5 }, ca = /* @__PURE__ */ g({
|
|
850
850
|
__name: "card",
|
|
851
851
|
props: {
|
|
852
852
|
variant: { default: "product" },
|
|
@@ -869,8 +869,8 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
869
869
|
emits: ["clicked"],
|
|
870
870
|
setup(e) {
|
|
871
871
|
const a = we();
|
|
872
|
-
let r =
|
|
873
|
-
const
|
|
872
|
+
let r = q(!1);
|
|
873
|
+
const s = {
|
|
874
874
|
small: {
|
|
875
875
|
class: "card--small",
|
|
876
876
|
width: "298",
|
|
@@ -886,43 +886,43 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
886
886
|
width: "596",
|
|
887
887
|
height: "335"
|
|
888
888
|
}
|
|
889
|
-
},
|
|
890
|
-
return (
|
|
889
|
+
}, o = e, _ = D(() => s[o.size]);
|
|
890
|
+
return (u, p) => (l(), i("div", ra, [
|
|
891
891
|
t("div", {
|
|
892
892
|
class: h(["card", [
|
|
893
|
-
|
|
894
|
-
|
|
893
|
+
u.theme === "dark" ? "card--dark" : "card--light",
|
|
894
|
+
u.orientation === "vertical" ? "vertical" : "horizontal",
|
|
895
895
|
_.value.class,
|
|
896
|
-
|
|
897
|
-
|
|
896
|
+
u.size === "large" && u.variant === "article" ? "card--large-article" : "",
|
|
897
|
+
u.variant === "product" ? "card--product" : "card--article"
|
|
898
898
|
]]),
|
|
899
|
-
style:
|
|
900
|
-
onMouseover: p[0] || (p[0] = (
|
|
901
|
-
onMouseout: p[1] || (p[1] = (
|
|
899
|
+
style: re([u.variant === "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
900
|
+
onMouseover: p[0] || (p[0] = (w) => ce(r) ? r.value = !0 : r = !0),
|
|
901
|
+
onMouseout: p[1] || (p[1] = (w) => ce(r) ? r.value = !1 : r = !1)
|
|
902
902
|
}, [
|
|
903
|
-
|
|
904
|
-
default:
|
|
905
|
-
u
|
|
906
|
-
src:
|
|
903
|
+
u.mediaType === "image" ? (l(), L(A, { key: 0 }, {
|
|
904
|
+
default: $(() => [
|
|
905
|
+
c(u.$slots, "card-image", ie({
|
|
906
|
+
src: u.imgSrc,
|
|
907
907
|
width: "596",
|
|
908
908
|
height: "335",
|
|
909
|
-
alt:
|
|
909
|
+
alt: u.alt,
|
|
910
910
|
loading: "auto",
|
|
911
911
|
sizes: "(min-width: 581px) 582px, 100vw"
|
|
912
|
-
}, { srcset:
|
|
912
|
+
}, { srcset: u.srcSet }))
|
|
913
913
|
]),
|
|
914
914
|
_: 3
|
|
915
|
-
})) : (
|
|
915
|
+
})) : (l(), i("div", {
|
|
916
916
|
key: 1,
|
|
917
|
-
class: h(["video-card__wrapper",
|
|
917
|
+
class: h(["video-card__wrapper", I(r) === !0 ? "vimeoPlaying" : ""])
|
|
918
918
|
}, [
|
|
919
|
-
|
|
920
|
-
play:
|
|
919
|
+
S(Z, {
|
|
920
|
+
play: I(r),
|
|
921
921
|
"local-video": !0,
|
|
922
|
-
src:
|
|
923
|
-
"aria-label":
|
|
922
|
+
src: u.videoSrc,
|
|
923
|
+
"aria-label": u.arialabel,
|
|
924
924
|
controls: !1,
|
|
925
|
-
poster:
|
|
925
|
+
poster: u.imgSrc,
|
|
926
926
|
width: _.value.width,
|
|
927
927
|
height: _.value.height,
|
|
928
928
|
autoplay: !0,
|
|
@@ -930,28 +930,28 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
930
930
|
muted: !0
|
|
931
931
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
932
932
|
], 2)),
|
|
933
|
-
|
|
934
|
-
u
|
|
933
|
+
I(a)["card-label"] ? (l(), i("div", na, [
|
|
934
|
+
c(u.$slots, "card-label")
|
|
935
935
|
])) : m("", !0),
|
|
936
|
-
|
|
936
|
+
u.variant === "product" ? (l(), i("div", {
|
|
937
937
|
key: 3,
|
|
938
938
|
class: h([
|
|
939
939
|
"card__headline",
|
|
940
|
-
|
|
940
|
+
u.theme === "dark" ? "regular-dark" : "regular-blue"
|
|
941
941
|
]),
|
|
942
942
|
style: { "font-weight": "700" }
|
|
943
|
-
}, n(
|
|
943
|
+
}, n(u.headline), 3)) : (l(), i("div", {
|
|
944
944
|
key: 4,
|
|
945
945
|
class: h([
|
|
946
946
|
"card__headline",
|
|
947
|
-
|
|
947
|
+
u.theme === "dark" ? "regular-dark" : "regular-dark-blue"
|
|
948
948
|
])
|
|
949
|
-
}, n(
|
|
950
|
-
|
|
949
|
+
}, n(u.headline), 3)),
|
|
950
|
+
u.variant === "product" ? (l(), i("p", da, n(u.paragraph), 1)) : m("", !0)
|
|
951
951
|
], 38)
|
|
952
952
|
]));
|
|
953
953
|
}
|
|
954
|
-
}), ua = /* @__PURE__ */
|
|
954
|
+
}), ua = /* @__PURE__ */ f(ca, [["__scopeId", "data-v-351c5fbb"]]), _a = (e) => (E("data-v-2c394add"), e = e(), R(), e), pa = { class: "event__wrapper" }, ha = { class: "event__headline" }, ma = { class: "event__date-location" }, va = /* @__PURE__ */ _a(() => /* @__PURE__ */ t("br", null, null, -1)), fa = { class: "event__exhibitor" }, ga = /* @__PURE__ */ g({
|
|
955
955
|
__name: "event-card",
|
|
956
956
|
props: {
|
|
957
957
|
eventType: {
|
|
@@ -976,21 +976,21 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
976
976
|
}
|
|
977
977
|
},
|
|
978
978
|
setup(e) {
|
|
979
|
-
return (a, r) => (
|
|
980
|
-
|
|
979
|
+
return (a, r) => (l(), i("div", pa, [
|
|
980
|
+
S(Y, {
|
|
981
981
|
"label-dark": !1,
|
|
982
982
|
text: e.eventType ? e.eventType : ""
|
|
983
983
|
}, null, 8, ["text"]),
|
|
984
984
|
t("div", ha, n(e.headline), 1),
|
|
985
985
|
t("div", ma, [
|
|
986
|
-
|
|
986
|
+
Q(n(e.dateTime), 1),
|
|
987
987
|
va,
|
|
988
|
-
|
|
988
|
+
Q(n(e.location), 1)
|
|
989
989
|
]),
|
|
990
990
|
t("div", fa, n(e.exhibitor), 1)
|
|
991
991
|
]));
|
|
992
992
|
}
|
|
993
|
-
}), ba = /* @__PURE__ */
|
|
993
|
+
}), ba = /* @__PURE__ */ f(ga, [["__scopeId", "data-v-2c394add"]]), ya = { class: "text__wrapper" }, $a = { class: "text__headline" }, ka = { class: "text__paragraph" }, wa = /* @__PURE__ */ g({
|
|
994
994
|
__name: "text-card",
|
|
995
995
|
props: {
|
|
996
996
|
label: {
|
|
@@ -1007,8 +1007,8 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1007
1007
|
}
|
|
1008
1008
|
},
|
|
1009
1009
|
setup(e) {
|
|
1010
|
-
return (a, r) => (
|
|
1011
|
-
|
|
1010
|
+
return (a, r) => (l(), i("div", ya, [
|
|
1011
|
+
S(Y, {
|
|
1012
1012
|
"label-dark": !1,
|
|
1013
1013
|
text: e.label ? e.label : ""
|
|
1014
1014
|
}, null, 8, ["text"]),
|
|
@@ -1018,10 +1018,10 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1018
1018
|
])
|
|
1019
1019
|
]));
|
|
1020
1020
|
}
|
|
1021
|
-
}),
|
|
1021
|
+
}), Sa = /* @__PURE__ */ f(wa, [["__scopeId", "data-v-ebdea819"]]), Ba = { class: "facts__wrapper" }, Ia = { class: "facts__content" }, qa = { class: "facts__headline" }, Ta = { class: "facts" }, Da = { class: "fact__value" }, La = { class: "fact__metric" }, Ca = {
|
|
1022
1022
|
key: 0,
|
|
1023
1023
|
class: "facts__link"
|
|
1024
|
-
},
|
|
1024
|
+
}, Va = /* @__PURE__ */ g({
|
|
1025
1025
|
__name: "facts",
|
|
1026
1026
|
props: {
|
|
1027
1027
|
headline: { default: "" },
|
|
@@ -1045,29 +1045,29 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1045
1045
|
}) }
|
|
1046
1046
|
},
|
|
1047
1047
|
setup(e) {
|
|
1048
|
-
return (a, r) => (
|
|
1048
|
+
return (a, r) => (l(), i("div", Ba, [
|
|
1049
1049
|
t("div", Ia, [
|
|
1050
1050
|
t("h2", qa, n(a.headline), 1),
|
|
1051
1051
|
t("div", Ta, [
|
|
1052
|
-
(
|
|
1053
|
-
key:
|
|
1052
|
+
(l(!0), i(P, null, M(a.facts, (s) => (l(), i("div", {
|
|
1053
|
+
key: s.value + s.metric,
|
|
1054
1054
|
class: "fact"
|
|
1055
1055
|
}, [
|
|
1056
|
-
t("div",
|
|
1057
|
-
t("span", null, n(
|
|
1056
|
+
t("div", Da, [
|
|
1057
|
+
t("span", null, n(s.value), 1)
|
|
1058
1058
|
]),
|
|
1059
|
-
t("div",
|
|
1060
|
-
t("span", null, n(
|
|
1059
|
+
t("div", La, [
|
|
1060
|
+
t("span", null, n(s.metric), 1)
|
|
1061
1061
|
])
|
|
1062
1062
|
]))), 128))
|
|
1063
1063
|
]),
|
|
1064
|
-
a.link ? (
|
|
1065
|
-
|
|
1064
|
+
a.link ? (l(), i("div", Ca, [
|
|
1065
|
+
S(V, {
|
|
1066
1066
|
"link-type": "regular_light",
|
|
1067
1067
|
arrow: ""
|
|
1068
1068
|
}, {
|
|
1069
|
-
default:
|
|
1070
|
-
|
|
1069
|
+
default: $(() => [
|
|
1070
|
+
c(a.$slots, "facts-link", {}, void 0, !0)
|
|
1071
1071
|
]),
|
|
1072
1072
|
_: 3
|
|
1073
1073
|
})
|
|
@@ -1075,7 +1075,7 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1075
1075
|
])
|
|
1076
1076
|
]));
|
|
1077
1077
|
}
|
|
1078
|
-
}),
|
|
1078
|
+
}), Aa = /* @__PURE__ */ f(Va, [["__scopeId", "data-v-d2b231d4"]]), Pa = { class: "features__wrapper" }, Ma = { class: "features__content" }, Oa = {
|
|
1079
1079
|
key: 0,
|
|
1080
1080
|
class: "features__headline"
|
|
1081
1081
|
}, Fa = {
|
|
@@ -1089,40 +1089,40 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1089
1089
|
elements: { default: () => [] }
|
|
1090
1090
|
},
|
|
1091
1091
|
setup(e) {
|
|
1092
|
-
return (a, r) => (
|
|
1093
|
-
t("div",
|
|
1094
|
-
a.headline ? (
|
|
1092
|
+
return (a, r) => (l(), i("div", Pa, [
|
|
1093
|
+
t("div", Ma, [
|
|
1094
|
+
a.headline ? (l(), i("div", Oa, [
|
|
1095
1095
|
t("h2", null, n(a.headline), 1)
|
|
1096
1096
|
])) : m("", !0),
|
|
1097
|
-
a.body ? (
|
|
1098
|
-
|
|
1097
|
+
a.body ? (l(), i("div", Fa, [
|
|
1098
|
+
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1099
1099
|
])) : m("", !0),
|
|
1100
1100
|
t("div", {
|
|
1101
1101
|
class: h(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1102
1102
|
}, [
|
|
1103
|
-
(
|
|
1104
|
-
key:
|
|
1103
|
+
(l(!0), i(P, null, M(a.elements, (s) => (l(), i("div", {
|
|
1104
|
+
key: s.headline,
|
|
1105
1105
|
class: "features__element"
|
|
1106
1106
|
}, [
|
|
1107
|
-
|
|
1108
|
-
default:
|
|
1109
|
-
|
|
1110
|
-
src:
|
|
1107
|
+
S(A, { class: "element__icon" }, {
|
|
1108
|
+
default: $(() => [
|
|
1109
|
+
c(a.$slots, "features-icon", O(F({
|
|
1110
|
+
src: s.icon.src,
|
|
1111
1111
|
height: 30,
|
|
1112
1112
|
width: 30,
|
|
1113
|
-
alt:
|
|
1113
|
+
alt: s.icon.alt
|
|
1114
1114
|
})), void 0, !0)
|
|
1115
1115
|
]),
|
|
1116
1116
|
_: 2
|
|
1117
1117
|
}, 1024),
|
|
1118
|
-
t("p", Ea, n(
|
|
1119
|
-
t("p", Ra, n(
|
|
1118
|
+
t("p", Ea, n(s.headline), 1),
|
|
1119
|
+
t("p", Ra, n(s.body), 1)
|
|
1120
1120
|
]))), 128))
|
|
1121
1121
|
], 2)
|
|
1122
1122
|
])
|
|
1123
1123
|
]));
|
|
1124
1124
|
}
|
|
1125
|
-
}), Ha = /* @__PURE__ */
|
|
1125
|
+
}), Ha = /* @__PURE__ */ f(Na, [["__scopeId", "data-v-57a22df7"]]), za = { class: "form__wrapper" }, ja = { class: "form__content" }, Ua = { class: "form__information" }, Ka = { class: "form__headline" }, Ga = { class: "form__body" }, Wa = { class: "form__script" }, Ya = /* @__PURE__ */ g({
|
|
1126
1126
|
__name: "form-script",
|
|
1127
1127
|
props: {
|
|
1128
1128
|
headline: {
|
|
@@ -1131,21 +1131,21 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1131
1131
|
}
|
|
1132
1132
|
},
|
|
1133
1133
|
setup(e) {
|
|
1134
|
-
return (a, r) => (
|
|
1134
|
+
return (a, r) => (l(), i("div", za, [
|
|
1135
1135
|
t("div", ja, [
|
|
1136
1136
|
t("div", Ua, [
|
|
1137
1137
|
t("h2", Ka, n(e.headline), 1),
|
|
1138
1138
|
t("div", Ga, [
|
|
1139
|
-
|
|
1139
|
+
c(a.$slots, "form-body", {}, void 0, !0)
|
|
1140
1140
|
])
|
|
1141
1141
|
]),
|
|
1142
1142
|
t("div", Wa, [
|
|
1143
|
-
|
|
1143
|
+
c(a.$slots, "form-script", {}, void 0, !0)
|
|
1144
1144
|
])
|
|
1145
1145
|
])
|
|
1146
1146
|
]));
|
|
1147
1147
|
}
|
|
1148
|
-
}), Ja = /* @__PURE__ */
|
|
1148
|
+
}), Ja = /* @__PURE__ */ f(Ya, [["__scopeId", "data-v-87a67c13"]]), Qa = { class: "image__wrapper" }, Za = { class: "image__content" }, Xa = { class: "image__image" }, xa = { class: "image__caption" }, eo = /* @__PURE__ */ g({
|
|
1149
1149
|
inheritAttrs: !1,
|
|
1150
1150
|
__name: "image",
|
|
1151
1151
|
props: {
|
|
@@ -1164,12 +1164,12 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1164
1164
|
}
|
|
1165
1165
|
},
|
|
1166
1166
|
setup(e) {
|
|
1167
|
-
return (a, r) => (
|
|
1167
|
+
return (a, r) => (l(), i("div", Qa, [
|
|
1168
1168
|
t("div", Za, [
|
|
1169
1169
|
t("div", Xa, [
|
|
1170
|
-
|
|
1171
|
-
default:
|
|
1172
|
-
|
|
1170
|
+
S(A, null, {
|
|
1171
|
+
default: $(() => [
|
|
1172
|
+
c(a.$slots, "image", O(F({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1173
1173
|
]),
|
|
1174
1174
|
_: 3
|
|
1175
1175
|
})
|
|
@@ -1178,16 +1178,16 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1178
1178
|
])
|
|
1179
1179
|
]));
|
|
1180
1180
|
}
|
|
1181
|
-
}),
|
|
1181
|
+
}), to = /* @__PURE__ */ f(eo, [["__scopeId", "data-v-79ce0bb6"]]), ao = { class: "gallery__large" }, oo = {
|
|
1182
1182
|
key: 0,
|
|
1183
1183
|
class: "image image--large"
|
|
1184
|
-
},
|
|
1184
|
+
}, lo = {
|
|
1185
1185
|
key: 1,
|
|
1186
1186
|
class: "video"
|
|
1187
|
-
},
|
|
1187
|
+
}, so = {
|
|
1188
1188
|
key: 0,
|
|
1189
1189
|
class: "body"
|
|
1190
|
-
},
|
|
1190
|
+
}, io = /* @__PURE__ */ g({
|
|
1191
1191
|
__name: "image-gallery",
|
|
1192
1192
|
props: {
|
|
1193
1193
|
mediaLarge: {},
|
|
@@ -1203,35 +1203,35 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1203
1203
|
white: "",
|
|
1204
1204
|
light: "gallery__wrapper--light",
|
|
1205
1205
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1206
|
-
}, r = e,
|
|
1207
|
-
return (
|
|
1208
|
-
class: h(["gallery__wrapper",
|
|
1206
|
+
}, r = e, s = D(() => a[r.bgColor]);
|
|
1207
|
+
return (o, _) => (l(), i("div", {
|
|
1208
|
+
class: h(["gallery__wrapper", s.value])
|
|
1209
1209
|
}, [
|
|
1210
1210
|
t("div", {
|
|
1211
1211
|
class: h([
|
|
1212
1212
|
"gallery__content",
|
|
1213
|
-
|
|
1213
|
+
o.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1214
1214
|
])
|
|
1215
1215
|
}, [
|
|
1216
|
-
t("div",
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
default:
|
|
1220
|
-
|
|
1216
|
+
t("div", ao, [
|
|
1217
|
+
o.mediaLarge && o.mediaType === "image" ? (l(), i("div", oo, [
|
|
1218
|
+
S(A, null, {
|
|
1219
|
+
default: $(() => [
|
|
1220
|
+
c(o.$slots, "image-large", O(F({
|
|
1221
1221
|
width: 617,
|
|
1222
1222
|
height: 530,
|
|
1223
|
-
src:
|
|
1224
|
-
alt:
|
|
1223
|
+
src: o.mediaLarge.src,
|
|
1224
|
+
alt: o.mediaLarge.alt
|
|
1225
1225
|
})))
|
|
1226
1226
|
]),
|
|
1227
1227
|
_: 3
|
|
1228
1228
|
})
|
|
1229
1229
|
])) : m("", !0),
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
src:
|
|
1230
|
+
o.mediaLarge && o.mediaType === "video" ? (l(), i("div", lo, [
|
|
1231
|
+
S(Z, {
|
|
1232
|
+
src: o.mediaLarge.src,
|
|
1233
1233
|
"local-video": "",
|
|
1234
|
-
"aria-label":
|
|
1234
|
+
"aria-label": o.mediaLarge.alt,
|
|
1235
1235
|
controls: !1,
|
|
1236
1236
|
height: "530",
|
|
1237
1237
|
width: "617",
|
|
@@ -1243,36 +1243,36 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1243
1243
|
])) : m("", !0)
|
|
1244
1244
|
]),
|
|
1245
1245
|
t("div", {
|
|
1246
|
-
style:
|
|
1246
|
+
style: re([o.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
1247
1247
|
class: h([
|
|
1248
1248
|
"gallery__small",
|
|
1249
|
-
|
|
1249
|
+
o.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1250
1250
|
])
|
|
1251
1251
|
}, [
|
|
1252
|
-
(
|
|
1253
|
-
key:
|
|
1252
|
+
(l(!0), i(P, null, M(o.mediaSmall, (u) => (l(), i("div", {
|
|
1253
|
+
key: u.src + u.alt,
|
|
1254
1254
|
class: "image image--small"
|
|
1255
1255
|
}, [
|
|
1256
|
-
|
|
1257
|
-
default:
|
|
1258
|
-
|
|
1256
|
+
S(A, null, {
|
|
1257
|
+
default: $(() => [
|
|
1258
|
+
c(o.$slots, "image-small", O(F({
|
|
1259
1259
|
width: 328,
|
|
1260
1260
|
height: 246,
|
|
1261
|
-
src:
|
|
1262
|
-
alt:
|
|
1261
|
+
src: u.src,
|
|
1262
|
+
alt: u.alt
|
|
1263
1263
|
})))
|
|
1264
1264
|
]),
|
|
1265
1265
|
_: 2
|
|
1266
1266
|
}, 1024)
|
|
1267
1267
|
]))), 128)),
|
|
1268
|
-
|
|
1269
|
-
t("p", null, n(
|
|
1268
|
+
o.mediaSmall.length < 2 ? (l(), i("div", so, [
|
|
1269
|
+
t("p", null, n(o.body), 1)
|
|
1270
1270
|
])) : m("", !0)
|
|
1271
1271
|
], 6)
|
|
1272
1272
|
], 2)
|
|
1273
1273
|
], 2));
|
|
1274
1274
|
}
|
|
1275
|
-
}),
|
|
1275
|
+
}), ro = /* @__PURE__ */ f(io, [["__scopeId", "data-v-0d271138"]]), no = { class: "headline__wrapper" }, co = { class: "headline__h1" }, uo = /* @__PURE__ */ g({
|
|
1276
1276
|
__name: "headline",
|
|
1277
1277
|
props: {
|
|
1278
1278
|
headline: {
|
|
@@ -1289,7 +1289,7 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1289
1289
|
}
|
|
1290
1290
|
},
|
|
1291
1291
|
setup(e) {
|
|
1292
|
-
return (a, r) => (
|
|
1292
|
+
return (a, r) => (l(), i("div", no, [
|
|
1293
1293
|
t("div", {
|
|
1294
1294
|
class: h({
|
|
1295
1295
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1298,11 +1298,11 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1298
1298
|
"headline__content--default": !e.article && !e.subMenu
|
|
1299
1299
|
})
|
|
1300
1300
|
}, [
|
|
1301
|
-
t("h1",
|
|
1301
|
+
t("h1", co, n(e.headline), 1)
|
|
1302
1302
|
], 2)
|
|
1303
1303
|
]));
|
|
1304
1304
|
}
|
|
1305
|
-
}),
|
|
1305
|
+
}), _o = /* @__PURE__ */ f(uo, [["__scopeId", "data-v-3ef1567e"]]), po = (e) => (E("data-v-22f9be13"), e = e(), R(), e), ho = { class: "hero__wrapper" }, mo = { class: "hero__content" }, vo = { class: "hero__top" }, fo = { class: "hero__elements" }, go = { class: "hero__headline" }, bo = { class: "hero__link" }, yo = { class: "hero__video" }, $o = /* @__PURE__ */ po(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), ko = { class: "hero__video__video" }, wo = { class: "hero__image" }, So = /* @__PURE__ */ g({
|
|
1306
1306
|
__name: "hero",
|
|
1307
1307
|
props: {
|
|
1308
1308
|
headline: {
|
|
@@ -1311,42 +1311,42 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1311
1311
|
}
|
|
1312
1312
|
},
|
|
1313
1313
|
setup(e) {
|
|
1314
|
-
return (a, r) => (
|
|
1315
|
-
t("div",
|
|
1316
|
-
t("div",
|
|
1317
|
-
t("div",
|
|
1318
|
-
t("div",
|
|
1314
|
+
return (a, r) => (l(), i("div", ho, [
|
|
1315
|
+
t("div", mo, [
|
|
1316
|
+
t("div", vo, [
|
|
1317
|
+
t("div", fo, [
|
|
1318
|
+
t("div", go, [
|
|
1319
1319
|
t("h1", null, n(e.headline), 1)
|
|
1320
1320
|
]),
|
|
1321
|
-
t("div",
|
|
1322
|
-
|
|
1321
|
+
t("div", bo, [
|
|
1322
|
+
S(V, {
|
|
1323
1323
|
"link-type": "regular_light",
|
|
1324
1324
|
arrow: ""
|
|
1325
1325
|
}, {
|
|
1326
|
-
default:
|
|
1327
|
-
|
|
1326
|
+
default: $(() => [
|
|
1327
|
+
c(a.$slots, "hero-link", {}, void 0, !0)
|
|
1328
1328
|
]),
|
|
1329
1329
|
_: 3
|
|
1330
1330
|
})
|
|
1331
1331
|
])
|
|
1332
1332
|
])
|
|
1333
1333
|
]),
|
|
1334
|
-
t("div",
|
|
1335
|
-
|
|
1336
|
-
t("div",
|
|
1337
|
-
|
|
1334
|
+
t("div", yo, [
|
|
1335
|
+
$o,
|
|
1336
|
+
t("div", ko, [
|
|
1337
|
+
c(a.$slots, "hero-video", {}, void 0, !0)
|
|
1338
1338
|
]),
|
|
1339
|
-
t("div",
|
|
1340
|
-
|
|
1339
|
+
t("div", wo, [
|
|
1340
|
+
c(a.$slots, "hero-image", {}, void 0, !0)
|
|
1341
1341
|
])
|
|
1342
1342
|
])
|
|
1343
1343
|
])
|
|
1344
1344
|
]));
|
|
1345
1345
|
}
|
|
1346
|
-
}),
|
|
1346
|
+
}), Bo = /* @__PURE__ */ f(So, [["__scopeId", "data-v-22f9be13"]]), Io = { class: "logo-wall__wrapper" }, qo = { class: "logo-wall__content" }, To = {
|
|
1347
1347
|
key: 0,
|
|
1348
1348
|
class: "logo-wall__text"
|
|
1349
|
-
},
|
|
1349
|
+
}, Do = { key: 0 }, Lo = { key: 1 }, Co = { class: "logo-wall__logos" }, Vo = { class: "logo-wall__link" }, Ao = /* @__PURE__ */ g({
|
|
1350
1350
|
__name: "logo-wall",
|
|
1351
1351
|
props: {
|
|
1352
1352
|
headline: {
|
|
@@ -1364,37 +1364,37 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1364
1364
|
}
|
|
1365
1365
|
},
|
|
1366
1366
|
setup(e) {
|
|
1367
|
-
return (a, r) => (
|
|
1368
|
-
t("div",
|
|
1369
|
-
e.headline || e.body ? (
|
|
1370
|
-
e.headline ? (
|
|
1371
|
-
e.body ? (
|
|
1367
|
+
return (a, r) => (l(), i("div", Io, [
|
|
1368
|
+
t("div", qo, [
|
|
1369
|
+
e.headline || e.body ? (l(), i("div", To, [
|
|
1370
|
+
e.headline ? (l(), i("h2", Do, n(e.headline), 1)) : m("", !0),
|
|
1371
|
+
e.body ? (l(), i("p", Lo, n(e.body), 1)) : m("", !0)
|
|
1372
1372
|
])) : m("", !0),
|
|
1373
|
-
t("div",
|
|
1374
|
-
(
|
|
1375
|
-
key:
|
|
1373
|
+
t("div", Co, [
|
|
1374
|
+
(l(!0), i(P, null, M(e.logos, (s) => (l(), i("div", {
|
|
1375
|
+
key: s.src + s.alt,
|
|
1376
1376
|
class: "logo-wall__logo"
|
|
1377
1377
|
}, [
|
|
1378
|
-
|
|
1379
|
-
default:
|
|
1380
|
-
|
|
1378
|
+
S(A, null, {
|
|
1379
|
+
default: $(() => [
|
|
1380
|
+
c(a.$slots, "logo-wall-logo", O(F({
|
|
1381
1381
|
width: 130,
|
|
1382
1382
|
height: 130,
|
|
1383
|
-
src:
|
|
1384
|
-
alt:
|
|
1383
|
+
src: s.src,
|
|
1384
|
+
alt: s.alt
|
|
1385
1385
|
})), void 0, !0)
|
|
1386
1386
|
]),
|
|
1387
1387
|
_: 2
|
|
1388
1388
|
}, 1024)
|
|
1389
1389
|
]))), 128))
|
|
1390
1390
|
]),
|
|
1391
|
-
t("div",
|
|
1392
|
-
|
|
1391
|
+
t("div", Vo, [
|
|
1392
|
+
S(V, {
|
|
1393
1393
|
"link-type": "regular_light",
|
|
1394
1394
|
arrow: !0
|
|
1395
1395
|
}, {
|
|
1396
|
-
default:
|
|
1397
|
-
|
|
1396
|
+
default: $(() => [
|
|
1397
|
+
c(a.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1398
1398
|
]),
|
|
1399
1399
|
_: 3
|
|
1400
1400
|
})
|
|
@@ -1402,13 +1402,13 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1402
1402
|
])
|
|
1403
1403
|
]));
|
|
1404
1404
|
}
|
|
1405
|
-
}),
|
|
1405
|
+
}), Po = /* @__PURE__ */ f(Ao, [["__scopeId", "data-v-fd489289"]]), Mo = { class: "micro-stories__top" }, Oo = {
|
|
1406
1406
|
key: 0,
|
|
1407
1407
|
class: "headline"
|
|
1408
|
-
},
|
|
1408
|
+
}, Fo = {
|
|
1409
1409
|
key: 1,
|
|
1410
1410
|
class: "body"
|
|
1411
|
-
},
|
|
1411
|
+
}, Eo = { class: "micro-stories__splide" }, Ro = /* @__PURE__ */ g({
|
|
1412
1412
|
__name: "micro-stories",
|
|
1413
1413
|
props: {
|
|
1414
1414
|
bgColor: { default: "blue" },
|
|
@@ -1420,36 +1420,36 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1420
1420
|
white: "micro-stories__wrapper--white",
|
|
1421
1421
|
blue: "micro-stories__wrapper--blue",
|
|
1422
1422
|
dark: "micro-stories__wrapper--dark"
|
|
1423
|
-
}, r =
|
|
1424
|
-
return (
|
|
1423
|
+
}, r = D(() => a[s.bgColor]), s = e;
|
|
1424
|
+
return (o, _) => (l(), i("div", {
|
|
1425
1425
|
class: h(["micro-stories__wrapper", r.value])
|
|
1426
1426
|
}, [
|
|
1427
|
-
t("div",
|
|
1428
|
-
|
|
1429
|
-
t("h2", null, n(
|
|
1427
|
+
t("div", Mo, [
|
|
1428
|
+
o.headline ? (l(), i("div", Oo, [
|
|
1429
|
+
t("h2", null, n(o.headline), 1)
|
|
1430
1430
|
])) : m("", !0),
|
|
1431
|
-
|
|
1432
|
-
t("p", null, n(
|
|
1431
|
+
o.body ? (l(), i("div", Fo, [
|
|
1432
|
+
t("p", null, n(o.body), 1)
|
|
1433
1433
|
])) : m("", !0)
|
|
1434
1434
|
]),
|
|
1435
|
-
t("div",
|
|
1436
|
-
|
|
1435
|
+
t("div", Eo, [
|
|
1436
|
+
c(o.$slots, "micro-stories-slides")
|
|
1437
1437
|
]),
|
|
1438
|
-
|
|
1438
|
+
c(o.$slots, "micro-stories-controls")
|
|
1439
1439
|
], 2));
|
|
1440
1440
|
}
|
|
1441
|
-
}),
|
|
1442
|
-
function
|
|
1443
|
-
return
|
|
1444
|
-
t("div",
|
|
1445
|
-
|
|
1441
|
+
}), No = {}, Ho = { class: "policy__wrapper" }, zo = { class: "policy__content" };
|
|
1442
|
+
function jo(e, a) {
|
|
1443
|
+
return l(), i("div", Ho, [
|
|
1444
|
+
t("div", zo, [
|
|
1445
|
+
c(e.$slots, "default", {}, void 0, !0)
|
|
1446
1446
|
])
|
|
1447
1447
|
]);
|
|
1448
1448
|
}
|
|
1449
|
-
const
|
|
1449
|
+
const Uo = /* @__PURE__ */ f(No, [["render", jo], ["__scopeId", "data-v-ea887d7a"]]), Ko = { class: "card-display__wrapper" }, Go = {
|
|
1450
1450
|
key: 0,
|
|
1451
1451
|
class: "card__content"
|
|
1452
|
-
},
|
|
1452
|
+
}, Wo = { key: 0 }, Yo = { key: 1 }, Jo = { class: "card__cards" }, Qo = /* @__PURE__ */ g({
|
|
1453
1453
|
__name: "card-display",
|
|
1454
1454
|
props: {
|
|
1455
1455
|
headline: {
|
|
@@ -1466,24 +1466,24 @@ const jl = /* @__PURE__ */ v(Rl, [["render", zl], ["__scopeId", "data-v-9d5712e7
|
|
|
1466
1466
|
}
|
|
1467
1467
|
},
|
|
1468
1468
|
setup(e) {
|
|
1469
|
-
return (a, r) => (
|
|
1469
|
+
return (a, r) => (l(), i("div", {
|
|
1470
1470
|
class: h([
|
|
1471
1471
|
"card-display",
|
|
1472
1472
|
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1473
1473
|
])
|
|
1474
1474
|
}, [
|
|
1475
|
-
t("div",
|
|
1476
|
-
e.headline || e.paragraph ? (
|
|
1477
|
-
e.headline ? (
|
|
1478
|
-
e.paragraph ? (
|
|
1475
|
+
t("div", Ko, [
|
|
1476
|
+
e.headline || e.paragraph ? (l(), i("div", Go, [
|
|
1477
|
+
e.headline ? (l(), i("h2", Wo, n(e.headline), 1)) : m("", !0),
|
|
1478
|
+
e.paragraph ? (l(), i("p", Yo, n(e.paragraph), 1)) : m("", !0)
|
|
1479
1479
|
])) : m("", !0),
|
|
1480
|
-
t("div",
|
|
1481
|
-
|
|
1480
|
+
t("div", Jo, [
|
|
1481
|
+
c(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1482
1482
|
])
|
|
1483
1483
|
])
|
|
1484
1484
|
], 2));
|
|
1485
1485
|
}
|
|
1486
|
-
}),
|
|
1486
|
+
}), Zo = /* @__PURE__ */ f(Qo, [["__scopeId", "data-v-e8033cff"]]), Xo = { class: "promo__content" }, xo = /* @__PURE__ */ g({
|
|
1487
1487
|
__name: "promo",
|
|
1488
1488
|
props: {
|
|
1489
1489
|
label: { default: "" },
|
|
@@ -1503,84 +1503,84 @@ const jl = /* @__PURE__ */ v(Rl, [["render", zl], ["__scopeId", "data-v-9d5712e7
|
|
|
1503
1503
|
dark: "promo__wrapper--dark",
|
|
1504
1504
|
light: "promo__wrapper--light",
|
|
1505
1505
|
default: "promo__wrapper--default"
|
|
1506
|
-
}, r = e,
|
|
1507
|
-
return (
|
|
1506
|
+
}, r = e, s = D(() => a[r.variant]);
|
|
1507
|
+
return (o, _) => (l(), i("div", {
|
|
1508
1508
|
class: h([
|
|
1509
1509
|
"promo__wrapper",
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1510
|
+
s.value,
|
|
1511
|
+
o.teaser ? "promo__wrapper--teaser" : "",
|
|
1512
|
+
o.multiply ? "promo__wrapper--multiply" : ""
|
|
1513
1513
|
])
|
|
1514
1514
|
}, [
|
|
1515
|
-
t("div",
|
|
1516
|
-
|
|
1515
|
+
t("div", Xo, [
|
|
1516
|
+
o.mediaType === "image" ? (l(), i("div", {
|
|
1517
1517
|
key: 0,
|
|
1518
1518
|
class: h([
|
|
1519
1519
|
"promo__image",
|
|
1520
|
-
|
|
1520
|
+
o.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1521
1521
|
])
|
|
1522
1522
|
}, [
|
|
1523
|
-
|
|
1524
|
-
default:
|
|
1525
|
-
|
|
1523
|
+
S(A, null, {
|
|
1524
|
+
default: $(() => [
|
|
1525
|
+
c(o.$slots, "promo-image", O(F({ src: o.src, width: 1920, alt: o.alt, height: 1080 })))
|
|
1526
1526
|
]),
|
|
1527
1527
|
_: 3
|
|
1528
1528
|
})
|
|
1529
1529
|
], 2)) : m("", !0),
|
|
1530
|
-
|
|
1530
|
+
o.mediaType === "video" ? (l(), i("div", {
|
|
1531
1531
|
key: 1,
|
|
1532
1532
|
class: h([
|
|
1533
1533
|
"promo__video",
|
|
1534
|
-
|
|
1534
|
+
o.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1535
1535
|
])
|
|
1536
1536
|
}, [
|
|
1537
|
-
|
|
1538
|
-
src:
|
|
1537
|
+
S(Z, {
|
|
1538
|
+
src: o.src,
|
|
1539
1539
|
"local-video": "",
|
|
1540
|
-
"aria-label":
|
|
1540
|
+
"aria-label": o.alt,
|
|
1541
1541
|
controls: !1,
|
|
1542
1542
|
autoplay: "",
|
|
1543
1543
|
loop: "",
|
|
1544
1544
|
muted: "",
|
|
1545
1545
|
play: "",
|
|
1546
|
-
poster:
|
|
1546
|
+
poster: o.fallbackImage
|
|
1547
1547
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1548
1548
|
], 2)) : m("", !0),
|
|
1549
1549
|
t("div", {
|
|
1550
1550
|
class: h([
|
|
1551
1551
|
"promo__text",
|
|
1552
|
-
|
|
1552
|
+
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1553
1553
|
])
|
|
1554
1554
|
}, [
|
|
1555
|
-
|
|
1555
|
+
o.label ? (l(), L(Y, {
|
|
1556
1556
|
key: 0,
|
|
1557
|
-
text:
|
|
1558
|
-
"label-dark":
|
|
1557
|
+
text: o.label,
|
|
1558
|
+
"label-dark": o.variant === "dark"
|
|
1559
1559
|
}, null, 8, ["text", "label-dark"])) : m("", !0),
|
|
1560
1560
|
t("div", {
|
|
1561
1561
|
class: h([
|
|
1562
1562
|
"promo__title",
|
|
1563
|
-
|
|
1563
|
+
o.variant === "dark" ? "promo__title--dark" : ""
|
|
1564
1564
|
])
|
|
1565
1565
|
}, [
|
|
1566
|
-
|
|
1566
|
+
c(o.$slots, "promo-headline")
|
|
1567
1567
|
], 2),
|
|
1568
|
-
|
|
1568
|
+
o.linkType === "link" ? (l(), L(V, {
|
|
1569
1569
|
key: 1,
|
|
1570
|
-
"link-type":
|
|
1570
|
+
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
1571
1571
|
arrow: ""
|
|
1572
1572
|
}, {
|
|
1573
|
-
default:
|
|
1574
|
-
|
|
1573
|
+
default: $(() => [
|
|
1574
|
+
c(o.$slots, "promo-link")
|
|
1575
1575
|
]),
|
|
1576
1576
|
_: 3
|
|
1577
1577
|
}, 8, ["link-type"])) : m("", !0),
|
|
1578
|
-
|
|
1578
|
+
o.linkType === "button" ? (l(), L(V, {
|
|
1579
1579
|
key: 2,
|
|
1580
|
-
"link-type":
|
|
1580
|
+
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
1581
1581
|
}, {
|
|
1582
|
-
default:
|
|
1583
|
-
|
|
1582
|
+
default: $(() => [
|
|
1583
|
+
c(o.$slots, "promo-link")
|
|
1584
1584
|
]),
|
|
1585
1585
|
_: 3
|
|
1586
1586
|
}, 8, ["link-type"])) : m("", !0)
|
|
@@ -1588,10 +1588,10 @@ const jl = /* @__PURE__ */ v(Rl, [["render", zl], ["__scopeId", "data-v-9d5712e7
|
|
|
1588
1588
|
])
|
|
1589
1589
|
], 2));
|
|
1590
1590
|
}
|
|
1591
|
-
}),
|
|
1591
|
+
}), el = /* @__PURE__ */ f(xo, [["__scopeId", "data-v-df54d965"]]), tl = (e) => (E("data-v-e3cc8e27"), e = e(), R(), e), al = { class: "quote__wrapper" }, ol = { class: "quote__content" }, ll = /* @__PURE__ */ tl(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), sl = { class: "quote__quote" }, il = { class: "quote__quote-text" }, rl = { class: "quote__author" }, nl = {
|
|
1592
1592
|
key: 0,
|
|
1593
1593
|
class: "quote__image"
|
|
1594
|
-
},
|
|
1594
|
+
}, dl = { class: "quote__text" }, cl = { class: "quote__author-name" }, ul = { class: "quote__author-title" }, _l = /* @__PURE__ */ g({
|
|
1595
1595
|
__name: "quote",
|
|
1596
1596
|
props: {
|
|
1597
1597
|
quote: {
|
|
@@ -1613,16 +1613,16 @@ const jl = /* @__PURE__ */ v(Rl, [["render", zl], ["__scopeId", "data-v-9d5712e7
|
|
|
1613
1613
|
}
|
|
1614
1614
|
},
|
|
1615
1615
|
setup(e) {
|
|
1616
|
-
return (a, r) => (
|
|
1617
|
-
t("div",
|
|
1618
|
-
|
|
1619
|
-
t("div",
|
|
1620
|
-
t("p",
|
|
1621
|
-
t("div",
|
|
1622
|
-
e.authorImage ? (
|
|
1623
|
-
|
|
1624
|
-
default:
|
|
1625
|
-
|
|
1616
|
+
return (a, r) => (l(), i("div", al, [
|
|
1617
|
+
t("div", ol, [
|
|
1618
|
+
ll,
|
|
1619
|
+
t("div", sl, [
|
|
1620
|
+
t("p", il, n(e.quote), 1),
|
|
1621
|
+
t("div", rl, [
|
|
1622
|
+
e.authorImage ? (l(), i("div", nl, [
|
|
1623
|
+
S(A, null, {
|
|
1624
|
+
default: $(() => [
|
|
1625
|
+
c(a.$slots, "author-image", O(F({
|
|
1626
1626
|
src: e.authorImage + "/m/100x100",
|
|
1627
1627
|
width: 60,
|
|
1628
1628
|
height: 60
|
|
@@ -1631,22 +1631,22 @@ const jl = /* @__PURE__ */ v(Rl, [["render", zl], ["__scopeId", "data-v-9d5712e7
|
|
|
1631
1631
|
_: 3
|
|
1632
1632
|
})
|
|
1633
1633
|
])) : m("", !0),
|
|
1634
|
-
t("div",
|
|
1635
|
-
t("p",
|
|
1636
|
-
t("p",
|
|
1634
|
+
t("div", dl, [
|
|
1635
|
+
t("p", cl, n(e.author), 1),
|
|
1636
|
+
t("p", ul, n(e.authorTitle), 1)
|
|
1637
1637
|
])
|
|
1638
1638
|
])
|
|
1639
1639
|
])
|
|
1640
1640
|
])
|
|
1641
1641
|
]));
|
|
1642
1642
|
}
|
|
1643
|
-
}),
|
|
1643
|
+
}), pl = /* @__PURE__ */ f(_l, [["__scopeId", "data-v-e3cc8e27"]]), hl = { class: "rich-text__wrapper" }, ml = {
|
|
1644
1644
|
key: 0,
|
|
1645
1645
|
class: "rich-text__links"
|
|
1646
|
-
},
|
|
1646
|
+
}, vl = {
|
|
1647
1647
|
key: 0,
|
|
1648
1648
|
class: "rich-text__bullet-list"
|
|
1649
|
-
},
|
|
1649
|
+
}, fl = /* @__PURE__ */ g({
|
|
1650
1650
|
__name: "rich-text",
|
|
1651
1651
|
props: {
|
|
1652
1652
|
headline: { default: "" },
|
|
@@ -1659,19 +1659,19 @@ const jl = /* @__PURE__ */ v(Rl, [["render", zl], ["__scopeId", "data-v-9d5712e7
|
|
|
1659
1659
|
label: { default: "" }
|
|
1660
1660
|
},
|
|
1661
1661
|
setup(e) {
|
|
1662
|
-
return (a, r) => (
|
|
1662
|
+
return (a, r) => (l(), i("div", {
|
|
1663
1663
|
class: h([
|
|
1664
1664
|
"rich-text",
|
|
1665
1665
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1666
1666
|
])
|
|
1667
1667
|
}, [
|
|
1668
|
-
t("div",
|
|
1669
|
-
a.label ? (
|
|
1668
|
+
t("div", hl, [
|
|
1669
|
+
a.label ? (l(), L(Y, {
|
|
1670
1670
|
key: 0,
|
|
1671
1671
|
text: a.label,
|
|
1672
1672
|
"label-dark": !1
|
|
1673
1673
|
}, null, 8, ["text"])) : m("", !0),
|
|
1674
|
-
a.headline ? (
|
|
1674
|
+
a.headline ? (l(), i("h2", {
|
|
1675
1675
|
key: 1,
|
|
1676
1676
|
class: h([
|
|
1677
1677
|
"rich-text__headline",
|
|
@@ -1690,24 +1690,24 @@ const jl = /* @__PURE__ */ v(Rl, [["render", zl], ["__scopeId", "data-v-9d5712e7
|
|
|
1690
1690
|
a.bulletList || a.image ? "rich-text__body--content-right" : ""
|
|
1691
1691
|
])
|
|
1692
1692
|
}, [
|
|
1693
|
-
|
|
1694
|
-
a.links ? (
|
|
1695
|
-
|
|
1693
|
+
c(a.$slots, "rich-text-content"),
|
|
1694
|
+
a.links ? (l(), i("div", ml, [
|
|
1695
|
+
c(a.$slots, "rich-text-links")
|
|
1696
1696
|
])) : m("", !0)
|
|
1697
1697
|
], 2),
|
|
1698
|
-
a.bulletList ? (
|
|
1699
|
-
|
|
1698
|
+
a.bulletList ? (l(), i("div", vl, [
|
|
1699
|
+
c(a.$slots, "rich-text-bullet-list")
|
|
1700
1700
|
])) : m("", !0),
|
|
1701
|
-
a.image ? (
|
|
1701
|
+
a.image ? (l(), i("div", {
|
|
1702
1702
|
key: 1,
|
|
1703
1703
|
class: h([
|
|
1704
1704
|
"rich-text__image",
|
|
1705
1705
|
a.imageClip ? "rich-text__image--clip" : ""
|
|
1706
1706
|
])
|
|
1707
1707
|
}, [
|
|
1708
|
-
|
|
1709
|
-
default:
|
|
1710
|
-
|
|
1708
|
+
S(A, null, {
|
|
1709
|
+
default: $(() => [
|
|
1710
|
+
c(a.$slots, "rich-text-image", O(F({ width: 865, height: 307 })))
|
|
1711
1711
|
]),
|
|
1712
1712
|
_: 3
|
|
1713
1713
|
})
|
|
@@ -1716,27 +1716,27 @@ const jl = /* @__PURE__ */ v(Rl, [["render", zl], ["__scopeId", "data-v-9d5712e7
|
|
|
1716
1716
|
])
|
|
1717
1717
|
], 2));
|
|
1718
1718
|
}
|
|
1719
|
-
}),
|
|
1720
|
-
function
|
|
1721
|
-
return
|
|
1722
|
-
t("div", $
|
|
1723
|
-
t("div",
|
|
1724
|
-
t("div",
|
|
1719
|
+
}), gl = /* @__PURE__ */ f(fl, [["__scopeId", "data-v-8bb69ea4"]]), bl = {}, yl = { class: "rich-text" }, $l = { class: "rich-text__wrapper" }, kl = { class: "rich-text__content rich-text__content--left-aligned" }, wl = { class: "rich-text__body" };
|
|
1720
|
+
function Sl(e, a) {
|
|
1721
|
+
return l(), i("div", yl, [
|
|
1722
|
+
t("div", $l, [
|
|
1723
|
+
t("div", kl, [
|
|
1724
|
+
t("div", wl, [
|
|
1725
1725
|
t("div", null, [
|
|
1726
|
-
|
|
1726
|
+
c(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
1727
1727
|
]),
|
|
1728
1728
|
t("div", null, [
|
|
1729
|
-
|
|
1729
|
+
c(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
1730
1730
|
])
|
|
1731
1731
|
])
|
|
1732
1732
|
])
|
|
1733
1733
|
])
|
|
1734
1734
|
]);
|
|
1735
1735
|
}
|
|
1736
|
-
const
|
|
1736
|
+
const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194"]]), Il = (e) => (E("data-v-e254e1e0"), e = e(), R(), e), ql = { class: "timeline__wrapper" }, Tl = { class: "timeline__content" }, Dl = { class: "timeline__items" }, Ll = { class: "item__left" }, Cl = /* @__PURE__ */ Il(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
1737
1737
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
1738
1738
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
1739
|
-
], -1)),
|
|
1739
|
+
], -1)), Vl = { class: "item__right" }, Al = ["innerHTML"], Pl = /* @__PURE__ */ g({
|
|
1740
1740
|
__name: "timeline",
|
|
1741
1741
|
props: {
|
|
1742
1742
|
timelineItems: {
|
|
@@ -1745,54 +1745,54 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
1745
1745
|
}
|
|
1746
1746
|
},
|
|
1747
1747
|
setup(e) {
|
|
1748
|
-
return
|
|
1748
|
+
return pe(() => {
|
|
1749
1749
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
1750
|
-
(
|
|
1751
|
-
|
|
1752
|
-
|
|
1750
|
+
(s) => {
|
|
1751
|
+
s.forEach((o) => {
|
|
1752
|
+
o.isIntersecting && (o.target.classList.add("visible"), o.target.classList.remove("faded"), r.unobserve(o.target));
|
|
1753
1753
|
});
|
|
1754
1754
|
},
|
|
1755
1755
|
{
|
|
1756
1756
|
threshold: 1
|
|
1757
1757
|
}
|
|
1758
1758
|
);
|
|
1759
|
-
a.forEach((
|
|
1760
|
-
r.observe(
|
|
1759
|
+
a.forEach((s) => {
|
|
1760
|
+
r.observe(s);
|
|
1761
1761
|
});
|
|
1762
|
-
}), (a, r) => (
|
|
1763
|
-
t("div",
|
|
1764
|
-
t("div",
|
|
1765
|
-
(
|
|
1766
|
-
key:
|
|
1762
|
+
}), (a, r) => (l(), i("div", ql, [
|
|
1763
|
+
t("div", Tl, [
|
|
1764
|
+
t("div", Dl, [
|
|
1765
|
+
(l(!0), i(P, null, M(e.timelineItems, (s) => (l(), i("div", {
|
|
1766
|
+
key: s.year,
|
|
1767
1767
|
class: "timeline__item faded"
|
|
1768
1768
|
}, [
|
|
1769
|
-
t("div",
|
|
1770
|
-
|
|
1771
|
-
t("div",
|
|
1772
|
-
|
|
1773
|
-
default:
|
|
1774
|
-
|
|
1769
|
+
t("div", Ll, n(s.year), 1),
|
|
1770
|
+
Cl,
|
|
1771
|
+
t("div", Vl, [
|
|
1772
|
+
S(A, null, {
|
|
1773
|
+
default: $(() => [
|
|
1774
|
+
s.media.src ? c(a.$slots, "timeline-image", O(ie({ key: 0 }, { src: s.media.src, alt: s.media.alt })), void 0, !0) : m("", !0)
|
|
1775
1775
|
]),
|
|
1776
1776
|
_: 2
|
|
1777
1777
|
}, 1024),
|
|
1778
1778
|
t("div", {
|
|
1779
|
-
style:
|
|
1779
|
+
style: re([s.media.src ? "" : "margin-top: 0px"]),
|
|
1780
1780
|
class: "rich-text",
|
|
1781
|
-
innerHTML:
|
|
1782
|
-
}, null, 12,
|
|
1781
|
+
innerHTML: s.text
|
|
1782
|
+
}, null, 12, Al)
|
|
1783
1783
|
])
|
|
1784
1784
|
]))), 128))
|
|
1785
1785
|
])
|
|
1786
1786
|
])
|
|
1787
1787
|
]));
|
|
1788
1788
|
}
|
|
1789
|
-
}),
|
|
1789
|
+
}), Ml = /* @__PURE__ */ f(Pl, [["__scopeId", "data-v-e254e1e0"]]), Ol = { class: "vimeo" }, Fl = { class: "vimeo__wrapper" }, El = {
|
|
1790
1790
|
key: 0,
|
|
1791
1791
|
class: "vimeo__headline"
|
|
1792
|
-
},
|
|
1792
|
+
}, Rl = {
|
|
1793
1793
|
key: 1,
|
|
1794
1794
|
class: "vimeo__description"
|
|
1795
|
-
},
|
|
1795
|
+
}, Nl = /* @__PURE__ */ g({
|
|
1796
1796
|
__name: "vimeo",
|
|
1797
1797
|
props: {
|
|
1798
1798
|
headline: {
|
|
@@ -1805,15 +1805,15 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
1805
1805
|
}
|
|
1806
1806
|
},
|
|
1807
1807
|
setup(e) {
|
|
1808
|
-
return (a, r) => (
|
|
1809
|
-
t("div",
|
|
1810
|
-
e.headline ? (
|
|
1811
|
-
|
|
1812
|
-
e.description ? (
|
|
1808
|
+
return (a, r) => (l(), i("div", Ol, [
|
|
1809
|
+
t("div", Fl, [
|
|
1810
|
+
e.headline ? (l(), i("h2", El, n(e.headline), 1)) : m("", !0),
|
|
1811
|
+
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
1812
|
+
e.description ? (l(), i("p", Rl, n(e.description), 1)) : m("", !0)
|
|
1813
1813
|
])
|
|
1814
1814
|
]));
|
|
1815
1815
|
}
|
|
1816
|
-
}),
|
|
1816
|
+
}), Hl = /* @__PURE__ */ f(Nl, [["__scopeId", "data-v-90a2b109"]]), zl = { class: "not-found__wrapper" }, jl = { class: "not-found__content" }, Ul = { class: "not-found__headline" }, Kl = { class: "not-found__body" }, Gl = /* @__PURE__ */ g({
|
|
1817
1817
|
__name: "404",
|
|
1818
1818
|
props: {
|
|
1819
1819
|
headline: {
|
|
@@ -1822,16 +1822,16 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
1822
1822
|
}
|
|
1823
1823
|
},
|
|
1824
1824
|
setup(e) {
|
|
1825
|
-
return (a, r) => (
|
|
1826
|
-
t("div",
|
|
1827
|
-
t("h1",
|
|
1828
|
-
t("div",
|
|
1829
|
-
|
|
1825
|
+
return (a, r) => (l(), i("div", zl, [
|
|
1826
|
+
t("div", jl, [
|
|
1827
|
+
t("h1", Ul, n(e.headline), 1),
|
|
1828
|
+
t("div", Kl, [
|
|
1829
|
+
c(a.$slots, "not-found-body", {}, void 0, !0)
|
|
1830
1830
|
])
|
|
1831
1831
|
])
|
|
1832
1832
|
]));
|
|
1833
1833
|
}
|
|
1834
|
-
}),
|
|
1834
|
+
}), Wl = /* @__PURE__ */ f(Gl, [["__scopeId", "data-v-b829ca6c"]]), Yl = { class: "filter__wrapper" }, Jl = { class: "filter__content" }, Ql = { class: "filter__dropdowns" }, Zl = { class: "filter__chips" }, Xl = /* @__PURE__ */ g({
|
|
1835
1835
|
__name: "filter",
|
|
1836
1836
|
props: {
|
|
1837
1837
|
hasChips: {
|
|
@@ -1845,23 +1845,23 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
1845
1845
|
},
|
|
1846
1846
|
emits: ["clearFilters"],
|
|
1847
1847
|
setup(e) {
|
|
1848
|
-
return (a, r) => (
|
|
1849
|
-
t("div",
|
|
1850
|
-
t("div",
|
|
1851
|
-
|
|
1848
|
+
return (a, r) => (l(), i("div", Yl, [
|
|
1849
|
+
t("div", Jl, [
|
|
1850
|
+
t("div", Ql, [
|
|
1851
|
+
c(a.$slots, "filter-dropdowns")
|
|
1852
1852
|
]),
|
|
1853
|
-
t("div",
|
|
1854
|
-
|
|
1855
|
-
e.hasChips ? (
|
|
1853
|
+
t("div", Zl, [
|
|
1854
|
+
c(a.$slots, "filter-chips"),
|
|
1855
|
+
e.hasChips ? (l(), i("button", {
|
|
1856
1856
|
key: 0,
|
|
1857
1857
|
class: "filter__clear",
|
|
1858
|
-
onClick: r[0] || (r[0] = (
|
|
1858
|
+
onClick: r[0] || (r[0] = (s) => a.$emit("clearFilters"))
|
|
1859
1859
|
}, n(e.removeAll), 1)) : m("", !0)
|
|
1860
1860
|
])
|
|
1861
1861
|
])
|
|
1862
1862
|
]));
|
|
1863
1863
|
}
|
|
1864
|
-
}),
|
|
1864
|
+
}), xl = /* @__PURE__ */ f(Xl, [["__scopeId", "data-v-31c1ba00"]]), H = (e) => (E("data-v-aa82b03d"), e = e(), R(), e), es = { class: "footer__wrapper" }, ts = { class: "footer__content" }, as = { class: "footer__sections" }, os = { class: "section__title" }, ls = { class: "section__list" }, ss = { class: "section" }, is = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), rs = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), ns = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), ds = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", null, "CVR: 35251235", -1)), cs = /* @__PURE__ */ H(() => /* @__PURE__ */ t("br", null, null, -1)), us = /* @__PURE__ */ H(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), _s = /* @__PURE__ */ H(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), ps = { class: "footer__bottom" }, hs = { class: "copyright" }, ms = { class: "footer__policy" }, vs = /* @__PURE__ */ H(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), fs = {
|
|
1865
1865
|
key: 0,
|
|
1866
1866
|
class: "footer__social"
|
|
1867
1867
|
}, gs = ["href", "aria-label"], bs = {
|
|
@@ -1880,18 +1880,18 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
1880
1880
|
},
|
|
1881
1881
|
emits: ["changeRegionClicked"],
|
|
1882
1882
|
setup(e) {
|
|
1883
|
-
return (a, r) => (
|
|
1883
|
+
return (a, r) => (l(), i("div", es, [
|
|
1884
1884
|
t("footer", ts, [
|
|
1885
1885
|
t("div", as, [
|
|
1886
|
-
(
|
|
1887
|
-
key:
|
|
1886
|
+
(l(!0), i(P, null, M(a.footerSections, (s) => (l(), i("div", {
|
|
1887
|
+
key: s.title,
|
|
1888
1888
|
class: "section"
|
|
1889
1889
|
}, [
|
|
1890
|
-
t("span",
|
|
1890
|
+
t("span", os, n(s.title), 1),
|
|
1891
1891
|
t("nav", null, [
|
|
1892
|
-
t("ul",
|
|
1893
|
-
|
|
1894
|
-
links:
|
|
1892
|
+
t("ul", ls, [
|
|
1893
|
+
c(a.$slots, "section-links", {
|
|
1894
|
+
links: s.links
|
|
1895
1895
|
})
|
|
1896
1896
|
])
|
|
1897
1897
|
])
|
|
@@ -1903,22 +1903,22 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
1903
1903
|
ns,
|
|
1904
1904
|
ds,
|
|
1905
1905
|
cs,
|
|
1906
|
-
|
|
1906
|
+
S(V, {
|
|
1907
1907
|
class: "footer__contact",
|
|
1908
1908
|
"link-type": "regular_light",
|
|
1909
1909
|
underline: "false"
|
|
1910
1910
|
}, {
|
|
1911
|
-
default:
|
|
1911
|
+
default: $(() => [
|
|
1912
1912
|
us
|
|
1913
1913
|
]),
|
|
1914
1914
|
_: 1
|
|
1915
1915
|
}),
|
|
1916
|
-
|
|
1916
|
+
S(V, {
|
|
1917
1917
|
class: "footer__contact",
|
|
1918
1918
|
"link-type": "regular_light",
|
|
1919
1919
|
underline: "false"
|
|
1920
1920
|
}, {
|
|
1921
|
-
default:
|
|
1921
|
+
default: $(() => [
|
|
1922
1922
|
_s
|
|
1923
1923
|
]),
|
|
1924
1924
|
_: 1
|
|
@@ -1931,53 +1931,53 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
1931
1931
|
t("div", ms, [
|
|
1932
1932
|
t("button", {
|
|
1933
1933
|
class: "footer__language-switcher",
|
|
1934
|
-
onClick: r[0] || (r[0] = (
|
|
1934
|
+
onClick: r[0] || (r[0] = (s) => a.$emit("changeRegionClicked"))
|
|
1935
1935
|
}, [
|
|
1936
1936
|
t("span", null, [
|
|
1937
1937
|
vs,
|
|
1938
|
-
|
|
1938
|
+
Q(n(a.changeRegion), 1)
|
|
1939
1939
|
])
|
|
1940
1940
|
]),
|
|
1941
|
-
|
|
1942
|
-
|
|
1941
|
+
c(a.$slots, "footer-privacy-link"),
|
|
1942
|
+
c(a.$slots, "footer-cookie-link")
|
|
1943
1943
|
]),
|
|
1944
|
-
a.language !== "zh" ? (
|
|
1945
|
-
(
|
|
1946
|
-
key:
|
|
1944
|
+
a.language !== "zh" ? (l(), i("div", fs, [
|
|
1945
|
+
(l(!0), i(P, null, M(a.socialMedia, (s) => (l(), L(V, {
|
|
1946
|
+
key: s.title,
|
|
1947
1947
|
underline: "false",
|
|
1948
1948
|
"link-type": "regular"
|
|
1949
1949
|
}, {
|
|
1950
|
-
default:
|
|
1950
|
+
default: $(() => [
|
|
1951
1951
|
t("a", {
|
|
1952
|
-
href:
|
|
1952
|
+
href: s.url,
|
|
1953
1953
|
target: "_blank",
|
|
1954
|
-
"aria-label":
|
|
1954
|
+
"aria-label": s.title
|
|
1955
1955
|
}, [
|
|
1956
1956
|
t("i", {
|
|
1957
1957
|
width: "19",
|
|
1958
1958
|
height: "14",
|
|
1959
|
-
class: h(["footer__social--icon", [
|
|
1959
|
+
class: h(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
1960
1960
|
}, null, 2)
|
|
1961
1961
|
], 8, gs)
|
|
1962
1962
|
]),
|
|
1963
1963
|
_: 2
|
|
1964
1964
|
}, 1024))), 128))
|
|
1965
|
-
])) : (
|
|
1966
|
-
(
|
|
1967
|
-
key:
|
|
1965
|
+
])) : (l(), i("div", bs, [
|
|
1966
|
+
(l(!0), i(P, null, M(a.socialMediaChina, (s) => (l(), L(V, {
|
|
1967
|
+
key: s.title,
|
|
1968
1968
|
underline: "false",
|
|
1969
1969
|
"link-type": "regular"
|
|
1970
1970
|
}, {
|
|
1971
|
-
default:
|
|
1971
|
+
default: $(() => [
|
|
1972
1972
|
t("a", {
|
|
1973
|
-
href:
|
|
1973
|
+
href: s.url,
|
|
1974
1974
|
target: "_blank",
|
|
1975
|
-
"aria-label":
|
|
1975
|
+
"aria-label": s.title
|
|
1976
1976
|
}, [
|
|
1977
1977
|
t("i", {
|
|
1978
1978
|
width: "19",
|
|
1979
1979
|
height: "14",
|
|
1980
|
-
class: h(["footer__social--icon", [
|
|
1980
|
+
class: h(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
1981
1981
|
}, null, 2)
|
|
1982
1982
|
], 8, ys)
|
|
1983
1983
|
]),
|
|
@@ -1988,19 +1988,52 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
1988
1988
|
])
|
|
1989
1989
|
]));
|
|
1990
1990
|
}
|
|
1991
|
-
}), ks = /* @__PURE__ */
|
|
1991
|
+
}), ks = /* @__PURE__ */ f($s, [["__scopeId", "data-v-aa82b03d"]]), ws = { class: "header__wrapper" }, Ss = { class: "nav-wrapper" }, Bs = { class: "mir-link-logo" }, Is = { class: "main-nav-items" }, qs = {
|
|
1992
|
+
key: 0,
|
|
1992
1993
|
id: "menu-dropdown",
|
|
1993
1994
|
ref: "dropdownDiv"
|
|
1994
1995
|
}, Ts = {
|
|
1995
1996
|
key: 0,
|
|
1996
1997
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
1997
1998
|
alt: "dropdownarrow"
|
|
1998
|
-
},
|
|
1999
|
+
}, Ds = {
|
|
1999
2000
|
key: 1,
|
|
2000
2001
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2001
2002
|
alt: "dropdownarrow",
|
|
2002
2003
|
style: { transform: "rotate(180deg)" }
|
|
2003
|
-
},
|
|
2004
|
+
}, Ls = { class: "dropdown-content" }, Cs = { class: "nav-search-wrapper" }, Vs = ["src"], As = {
|
|
2005
|
+
key: 1,
|
|
2006
|
+
id: "menu-portal-switcher",
|
|
2007
|
+
class: "portal-switcher-wrapper"
|
|
2008
|
+
}, Ps = {
|
|
2009
|
+
key: 0,
|
|
2010
|
+
src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
|
|
2011
|
+
alt: "portalswitchericon",
|
|
2012
|
+
width: "20",
|
|
2013
|
+
height: "20"
|
|
2014
|
+
}, Ms = {
|
|
2015
|
+
key: 1,
|
|
2016
|
+
src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
|
|
2017
|
+
alt: "portalswitchericon",
|
|
2018
|
+
width: "20",
|
|
2019
|
+
height: "20"
|
|
2020
|
+
}, Os = { class: "portal-switcher-content" }, Fs = {
|
|
2021
|
+
key: 2,
|
|
2022
|
+
id: "menu-profile-dropdown",
|
|
2023
|
+
class: "profile-dropdown-wrapper"
|
|
2024
|
+
}, Es = {
|
|
2025
|
+
key: 0,
|
|
2026
|
+
src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
|
|
2027
|
+
alt: "profiledropdownicon",
|
|
2028
|
+
width: "20",
|
|
2029
|
+
height: "20"
|
|
2030
|
+
}, Rs = {
|
|
2031
|
+
key: 1,
|
|
2032
|
+
src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
|
|
2033
|
+
alt: "profiledropdownicon",
|
|
2034
|
+
width: "20",
|
|
2035
|
+
height: "20"
|
|
2036
|
+
}, Ns = { class: "profile-dropdown-content" }, Hs = { class: "mobile-logo-search-burger-wrapper" }, zs = { class: "mobile-mir-link-logo" }, js = { class: "mobile-search-wrapper" }, Us = ["src"], Ks = ["src"], Gs = { class: "mobile-menu-content-wrapper" }, Ws = { class: "mobile-dropdown-content" }, Ys = /* @__PURE__ */ g({
|
|
2004
2037
|
__name: "header",
|
|
2005
2038
|
props: {
|
|
2006
2039
|
burgerState: {
|
|
@@ -2010,140 +2043,202 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
2010
2043
|
showDropDown: {
|
|
2011
2044
|
type: Boolean,
|
|
2012
2045
|
default: !1
|
|
2046
|
+
},
|
|
2047
|
+
useDropdown: {
|
|
2048
|
+
type: Boolean,
|
|
2049
|
+
default: !1
|
|
2050
|
+
},
|
|
2051
|
+
showPortalSwitcherDropDown: {
|
|
2052
|
+
type: Boolean,
|
|
2053
|
+
default: !1
|
|
2054
|
+
},
|
|
2055
|
+
usePortalSwitcher: {
|
|
2056
|
+
type: Boolean,
|
|
2057
|
+
default: !1
|
|
2058
|
+
},
|
|
2059
|
+
showProfileDropDown: {
|
|
2060
|
+
type: Boolean,
|
|
2061
|
+
default: !1
|
|
2062
|
+
},
|
|
2063
|
+
useProfileDropdown: {
|
|
2064
|
+
type: Boolean,
|
|
2065
|
+
default: !1
|
|
2013
2066
|
}
|
|
2014
2067
|
},
|
|
2015
2068
|
emits: [
|
|
2016
2069
|
"update:burgerState",
|
|
2017
2070
|
"update:showDropDown",
|
|
2071
|
+
"update:showPortalSwitcherDropDown",
|
|
2072
|
+
"update:showProfileDropDown",
|
|
2018
2073
|
"clickSearch"
|
|
2019
2074
|
],
|
|
2020
2075
|
setup(e, { expose: a, emit: r }) {
|
|
2021
|
-
let
|
|
2022
|
-
const
|
|
2023
|
-
let _ =
|
|
2024
|
-
|
|
2025
|
-
() =>
|
|
2026
|
-
(
|
|
2027
|
-
),
|
|
2028
|
-
() =>
|
|
2029
|
-
(
|
|
2030
|
-
),
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2076
|
+
let s = null;
|
|
2077
|
+
const o = e;
|
|
2078
|
+
let _ = q(o.burgerState), u = q(o.showDropDown), p = q(o.showPortalSwitcherDropDown), w = q(o.showProfileDropDown);
|
|
2079
|
+
ee(
|
|
2080
|
+
() => o.burgerState,
|
|
2081
|
+
(b) => _.value = b
|
|
2082
|
+
), ee(
|
|
2083
|
+
() => o.showDropDown,
|
|
2084
|
+
(b) => u.value = b
|
|
2085
|
+
), ee(
|
|
2086
|
+
() => o.showPortalSwitcherDropDown,
|
|
2087
|
+
(b) => p.value = b
|
|
2088
|
+
), ee(
|
|
2089
|
+
() => o.showProfileDropDown,
|
|
2090
|
+
(b) => w.value = b
|
|
2091
|
+
), pe(() => {
|
|
2092
|
+
s = (b) => {
|
|
2093
|
+
b.target.closest("#menu-dropdown") || (u.value = !1), b.target.closest("#menu-portal-switcher") || (p.value = !1), b.target.closest("#menu-profile-dropdown") || (w.value = !1);
|
|
2094
|
+
}, window.addEventListener("click", s);
|
|
2095
|
+
}), Se(() => {
|
|
2096
|
+
s !== null && window.removeEventListener("click", s);
|
|
2036
2097
|
});
|
|
2037
|
-
const
|
|
2098
|
+
const v = r;
|
|
2038
2099
|
function B() {
|
|
2039
|
-
|
|
2100
|
+
u.value = !u.value, v("update:showDropDown", u.value);
|
|
2040
2101
|
}
|
|
2041
|
-
function
|
|
2042
|
-
|
|
2102
|
+
function C() {
|
|
2103
|
+
p.value = !p.value, v("update:showPortalSwitcherDropDown", p.value);
|
|
2043
2104
|
}
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2105
|
+
function ae() {
|
|
2106
|
+
w.value = !w.value, v("update:showProfileDropDown", w.value);
|
|
2107
|
+
}
|
|
2108
|
+
function oe() {
|
|
2109
|
+
_.value = !_.value, v("update:burgerState", _.value);
|
|
2110
|
+
}
|
|
2111
|
+
let U = q(null), X = q(null);
|
|
2112
|
+
function le() {
|
|
2113
|
+
U.value && U.value.blur();
|
|
2047
2114
|
}
|
|
2048
2115
|
return a({
|
|
2049
|
-
defocusSearchButton:
|
|
2050
|
-
}), (
|
|
2116
|
+
defocusSearchButton: le
|
|
2117
|
+
}), (b, K) => (l(), i("div", ws, [
|
|
2051
2118
|
t("nav", null, [
|
|
2052
|
-
t("div",
|
|
2053
|
-
t("div",
|
|
2054
|
-
|
|
2119
|
+
t("div", Ss, [
|
|
2120
|
+
t("div", Bs, [
|
|
2121
|
+
c(b.$slots, "link-logo", {}, void 0, !0)
|
|
2055
2122
|
]),
|
|
2056
2123
|
t("ul", Is, [
|
|
2057
|
-
|
|
2124
|
+
c(b.$slots, "main-nav-items", {}, void 0, !0)
|
|
2058
2125
|
]),
|
|
2059
|
-
|
|
2126
|
+
e.useDropdown ? (l(), i("div", qs, [
|
|
2060
2127
|
t("button", {
|
|
2061
2128
|
class: "nav-dropdown-btn",
|
|
2062
2129
|
onClick: B
|
|
2063
2130
|
}, [
|
|
2064
|
-
|
|
2065
|
-
|
|
2131
|
+
c(b.$slots, "dropdown-title", {}, void 0, !0),
|
|
2132
|
+
I(u) === !1 ? (l(), i("img", Ts)) : (l(), i("img", Ds))
|
|
2066
2133
|
]),
|
|
2067
|
-
|
|
2068
|
-
|
|
2134
|
+
j(t("div", Ls, [
|
|
2135
|
+
c(b.$slots, "dropdown-links", {}, void 0, !0)
|
|
2069
2136
|
], 512), [
|
|
2070
|
-
[
|
|
2137
|
+
[W, I(u)]
|
|
2071
2138
|
])
|
|
2072
|
-
], 512),
|
|
2073
|
-
t("div",
|
|
2139
|
+
], 512)) : m("", !0),
|
|
2140
|
+
t("div", Cs, [
|
|
2074
2141
|
t("button", {
|
|
2075
2142
|
ref_key: "navSearchButton",
|
|
2076
|
-
ref:
|
|
2143
|
+
ref: U,
|
|
2077
2144
|
class: "search-icon",
|
|
2078
|
-
onClick:
|
|
2145
|
+
onClick: K[0] || (K[0] = (se) => {
|
|
2079
2146
|
var z;
|
|
2080
|
-
return
|
|
2147
|
+
return b.$emit("clickSearch"), (z = I(U)) == null ? void 0 : z.blur();
|
|
2081
2148
|
})
|
|
2082
2149
|
}, [
|
|
2083
2150
|
t("img", {
|
|
2084
|
-
src:
|
|
2151
|
+
src: I(_) === !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2085
2152
|
alt: "search icon",
|
|
2086
2153
|
width: "20",
|
|
2087
2154
|
height: "20"
|
|
2088
|
-
}, null, 8,
|
|
2155
|
+
}, null, 8, Vs)
|
|
2089
2156
|
], 512)
|
|
2090
|
-
])
|
|
2157
|
+
]),
|
|
2158
|
+
e.usePortalSwitcher ? (l(), i("div", As, [
|
|
2159
|
+
t("button", {
|
|
2160
|
+
class: "nav-portal-switcher-btn",
|
|
2161
|
+
onClick: C
|
|
2162
|
+
}, [
|
|
2163
|
+
c(b.$slots, "portal-switcher-title", {}, void 0, !0),
|
|
2164
|
+
I(p) === !1 ? (l(), i("img", Ps)) : (l(), i("img", Ms))
|
|
2165
|
+
]),
|
|
2166
|
+
j(t("div", Os, [
|
|
2167
|
+
c(b.$slots, "portal-switcher-links", {}, void 0, !0)
|
|
2168
|
+
], 512), [
|
|
2169
|
+
[W, I(p)]
|
|
2170
|
+
])
|
|
2171
|
+
])) : m("", !0),
|
|
2172
|
+
e.useProfileDropdown ? (l(), i("div", Fs, [
|
|
2173
|
+
t("button", {
|
|
2174
|
+
class: "nav-profile-dropdown-btn",
|
|
2175
|
+
onClick: ae
|
|
2176
|
+
}, [
|
|
2177
|
+
c(b.$slots, "porfile-dropdown-title", {}, void 0, !0),
|
|
2178
|
+
I(w) === !1 ? (l(), i("img", Es)) : (l(), i("img", Rs))
|
|
2179
|
+
]),
|
|
2180
|
+
j(t("div", Ns, [
|
|
2181
|
+
c(b.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2182
|
+
], 512), [
|
|
2183
|
+
[W, I(w)]
|
|
2184
|
+
])
|
|
2185
|
+
])) : m("", !0)
|
|
2091
2186
|
]),
|
|
2092
2187
|
t("div", {
|
|
2093
|
-
class: h(["mobile-nav-wrapper",
|
|
2188
|
+
class: h(["mobile-nav-wrapper", I(_) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2094
2189
|
}, [
|
|
2095
|
-
t("div",
|
|
2096
|
-
t("div",
|
|
2097
|
-
|
|
2190
|
+
t("div", Hs, [
|
|
2191
|
+
t("div", zs, [
|
|
2192
|
+
c(b.$slots, "link-logo", {}, void 0, !0)
|
|
2098
2193
|
]),
|
|
2099
|
-
t("div",
|
|
2194
|
+
t("div", js, [
|
|
2100
2195
|
t("button", {
|
|
2101
2196
|
ref_key: "mobileSearchButton",
|
|
2102
|
-
ref:
|
|
2197
|
+
ref: X,
|
|
2103
2198
|
class: "search-icon",
|
|
2104
2199
|
"aria-label": "Toggle search",
|
|
2105
|
-
onClick:
|
|
2200
|
+
onClick: K[1] || (K[1] = (se) => {
|
|
2106
2201
|
var z;
|
|
2107
|
-
return
|
|
2202
|
+
return b.$emit("clickSearch"), (z = I(X)) == null ? void 0 : z.blur();
|
|
2108
2203
|
})
|
|
2109
2204
|
}, [
|
|
2110
2205
|
t("img", {
|
|
2111
|
-
src:
|
|
2206
|
+
src: I(_) === !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2112
2207
|
alt: "search icon",
|
|
2113
2208
|
width: "20",
|
|
2114
2209
|
height: "20"
|
|
2115
|
-
}, null, 8,
|
|
2210
|
+
}, null, 8, Us)
|
|
2116
2211
|
], 512)
|
|
2117
2212
|
]),
|
|
2118
2213
|
t("button", {
|
|
2119
2214
|
class: "mobile-burger-wrapper",
|
|
2120
2215
|
"aria-label": "Toggle menu",
|
|
2121
|
-
onClick:
|
|
2216
|
+
onClick: ue(oe, ["prevent"])
|
|
2122
2217
|
}, [
|
|
2123
2218
|
t("img", {
|
|
2124
2219
|
width: "20",
|
|
2125
2220
|
height: "20",
|
|
2126
2221
|
alt: "burger menu line icon",
|
|
2127
|
-
src:
|
|
2128
|
-
}, null, 8,
|
|
2222
|
+
src: I(_) === !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"
|
|
2223
|
+
}, null, 8, Ks)
|
|
2129
2224
|
])
|
|
2130
2225
|
]),
|
|
2131
|
-
|
|
2226
|
+
j(t("div", Gs, [
|
|
2132
2227
|
t("ul", null, [
|
|
2133
|
-
|
|
2228
|
+
c(b.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2134
2229
|
]),
|
|
2135
|
-
t("ul",
|
|
2136
|
-
|
|
2137
|
-
|
|
2230
|
+
t("ul", Ws, [
|
|
2231
|
+
c(b.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2232
|
+
c(b.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2138
2233
|
])
|
|
2139
2234
|
], 512), [
|
|
2140
|
-
[
|
|
2235
|
+
[W, I(_)]
|
|
2141
2236
|
])
|
|
2142
2237
|
], 2)
|
|
2143
2238
|
])
|
|
2144
2239
|
]));
|
|
2145
2240
|
}
|
|
2146
|
-
}),
|
|
2241
|
+
}), Js = /* @__PURE__ */ f(Ys, [["__scopeId", "data-v-415acd08"]]), Qs = { class: "language__wrapper" }, Zs = { class: "language__content" }, Xs = { class: "language__headline" }, xs = { class: "language__paragraph" }, ei = { class: "language__links" }, ti = /* @__PURE__ */ g({
|
|
2147
2242
|
__name: "language-switcher",
|
|
2148
2243
|
props: {
|
|
2149
2244
|
headline: {
|
|
@@ -2156,17 +2251,17 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
2156
2251
|
}
|
|
2157
2252
|
},
|
|
2158
2253
|
setup(e) {
|
|
2159
|
-
return (a, r) => (
|
|
2160
|
-
t("div",
|
|
2161
|
-
t("h2",
|
|
2162
|
-
t("p",
|
|
2163
|
-
t("div",
|
|
2164
|
-
|
|
2254
|
+
return (a, r) => (l(), i("div", Qs, [
|
|
2255
|
+
t("div", Zs, [
|
|
2256
|
+
t("h2", Xs, n(e.headline), 1),
|
|
2257
|
+
t("p", xs, n(e.paragraph), 1),
|
|
2258
|
+
t("div", ei, [
|
|
2259
|
+
c(a.$slots, "language-links", {}, void 0, !0)
|
|
2165
2260
|
])
|
|
2166
2261
|
])
|
|
2167
2262
|
]));
|
|
2168
2263
|
}
|
|
2169
|
-
}),
|
|
2264
|
+
}), ai = /* @__PURE__ */ f(ti, [["__scopeId", "data-v-dc8cc97e"]]), oi = { class: "pagination__wrapper" }, li = { class: "pagination__content" }, si = /* @__PURE__ */ g({
|
|
2170
2265
|
__name: "pagination",
|
|
2171
2266
|
props: {
|
|
2172
2267
|
isPreviousDisabled: {
|
|
@@ -2180,37 +2275,37 @@ const So = /* @__PURE__ */ v(bo, [["render", Bo], ["__scopeId", "data-v-2881b194
|
|
|
2180
2275
|
},
|
|
2181
2276
|
emits: ["previous", "next"],
|
|
2182
2277
|
setup(e) {
|
|
2183
|
-
return (a, r) => (
|
|
2184
|
-
t("div",
|
|
2185
|
-
|
|
2278
|
+
return (a, r) => (l(), i("div", oi, [
|
|
2279
|
+
t("div", li, [
|
|
2280
|
+
S(te, {
|
|
2186
2281
|
disabled: e.isPreviousDisabled,
|
|
2187
2282
|
variant: "previous",
|
|
2188
2283
|
"aria-label": "previous",
|
|
2189
|
-
onClick: r[0] || (r[0] = (
|
|
2284
|
+
onClick: r[0] || (r[0] = (s) => a.$emit("previous"))
|
|
2190
2285
|
}, null, 8, ["disabled"]),
|
|
2191
|
-
|
|
2192
|
-
|
|
2286
|
+
c(a.$slots, "pagination-numbers"),
|
|
2287
|
+
S(te, {
|
|
2193
2288
|
disabled: e.isNextDisabled,
|
|
2194
2289
|
variant: "next",
|
|
2195
2290
|
"aria-label": "next",
|
|
2196
|
-
onClick: r[1] || (r[1] = (
|
|
2291
|
+
onClick: r[1] || (r[1] = (s) => a.$emit("next"))
|
|
2197
2292
|
}, null, 8, ["disabled"])
|
|
2198
2293
|
])
|
|
2199
2294
|
]));
|
|
2200
2295
|
}
|
|
2201
|
-
}),
|
|
2202
|
-
function
|
|
2203
|
-
return
|
|
2204
|
-
|
|
2296
|
+
}), ii = /* @__PURE__ */ f(si, [["__scopeId", "data-v-da6d07c9"]]), ri = {}, ni = { class: "search__wrapper" };
|
|
2297
|
+
function di(e, a) {
|
|
2298
|
+
return l(), i("div", ni, [
|
|
2299
|
+
c(e.$slots, "default", { class: "search__content" })
|
|
2205
2300
|
]);
|
|
2206
2301
|
}
|
|
2207
|
-
const
|
|
2302
|
+
const ci = /* @__PURE__ */ f(ri, [["render", di], ["__scopeId", "data-v-623adb82"]]), ui = { class: "product-hero__wrapper" }, _i = { class: "product-hero__content" }, pi = { class: "product-hero__headline" }, hi = { class: "product-hero__video" }, mi = { class: "product-hero__insignia" }, vi = {
|
|
2208
2303
|
key: 0,
|
|
2209
2304
|
class: "product-hero__logo"
|
|
2210
|
-
},
|
|
2305
|
+
}, fi = {
|
|
2211
2306
|
key: 1,
|
|
2212
2307
|
class: "product-hero__certification"
|
|
2213
|
-
},
|
|
2308
|
+
}, gi = /* @__PURE__ */ g({
|
|
2214
2309
|
__name: "product-hero",
|
|
2215
2310
|
props: {
|
|
2216
2311
|
headline: {
|
|
@@ -2245,11 +2340,11 @@ const ai = /* @__PURE__ */ v(xs, [["render", ti], ["__scopeId", "data-v-623adb82
|
|
|
2245
2340
|
}
|
|
2246
2341
|
},
|
|
2247
2342
|
setup(e) {
|
|
2248
|
-
return (a, r) => (
|
|
2249
|
-
t("div",
|
|
2250
|
-
t("div",
|
|
2251
|
-
t("div",
|
|
2252
|
-
e.videoSrc !== "" ? (
|
|
2343
|
+
return (a, r) => (l(), i("div", ui, [
|
|
2344
|
+
t("div", _i, [
|
|
2345
|
+
t("div", pi, n(e.headline), 1),
|
|
2346
|
+
t("div", hi, [
|
|
2347
|
+
e.videoSrc !== "" ? (l(), L(Z, {
|
|
2253
2348
|
key: 0,
|
|
2254
2349
|
play: "",
|
|
2255
2350
|
"local-video": !0,
|
|
@@ -2260,25 +2355,25 @@ const ai = /* @__PURE__ */ v(xs, [["render", ti], ["__scopeId", "data-v-623adb82
|
|
|
2260
2355
|
autoplay: "",
|
|
2261
2356
|
loop: "",
|
|
2262
2357
|
muted: ""
|
|
2263
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (
|
|
2264
|
-
default:
|
|
2265
|
-
|
|
2358
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (l(), L(I(A), { key: 1 }, {
|
|
2359
|
+
default: $(() => [
|
|
2360
|
+
c(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
2266
2361
|
]),
|
|
2267
2362
|
_: 3
|
|
2268
2363
|
})),
|
|
2269
|
-
t("div",
|
|
2270
|
-
e.logoSrc ? (
|
|
2271
|
-
|
|
2272
|
-
default:
|
|
2273
|
-
|
|
2364
|
+
t("div", mi, [
|
|
2365
|
+
e.logoSrc ? (l(), i("div", vi, [
|
|
2366
|
+
S(I(A), null, {
|
|
2367
|
+
default: $(() => [
|
|
2368
|
+
c(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
2274
2369
|
]),
|
|
2275
2370
|
_: 3
|
|
2276
2371
|
})
|
|
2277
2372
|
])) : m("", !0),
|
|
2278
|
-
e.isCertified ? (
|
|
2279
|
-
|
|
2280
|
-
default:
|
|
2281
|
-
|
|
2373
|
+
e.isCertified ? (l(), i("div", fi, [
|
|
2374
|
+
S(I(A), null, {
|
|
2375
|
+
default: $(() => [
|
|
2376
|
+
c(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
2282
2377
|
]),
|
|
2283
2378
|
_: 3
|
|
2284
2379
|
})
|
|
@@ -2288,7 +2383,7 @@ const ai = /* @__PURE__ */ v(xs, [["render", ti], ["__scopeId", "data-v-623adb82
|
|
|
2288
2383
|
])
|
|
2289
2384
|
]));
|
|
2290
2385
|
}
|
|
2291
|
-
}),
|
|
2386
|
+
}), bi = /* @__PURE__ */ f(gi, [["__scopeId", "data-v-deab9c3a"]]), yi = { class: "promo__content" }, $i = { class: "pallet-jack__media-wrap" }, ki = { class: "pallet-jack-link" }, wi = { class: "pallet-jack__media-wrap__inner-wrap" }, Si = { class: "pallet-jack__media-wrap__content-wrap" }, Bi = { class: "regular-blue" }, Ii = /* @__PURE__ */ g({
|
|
2292
2387
|
__name: "pallet-jack",
|
|
2293
2388
|
props: {
|
|
2294
2389
|
label: { default: "" },
|
|
@@ -2306,69 +2401,69 @@ const ai = /* @__PURE__ */ v(xs, [["render", ti], ["__scopeId", "data-v-623adb82
|
|
|
2306
2401
|
dark: "promo__wrapper--dark",
|
|
2307
2402
|
light: "promo__wrapper--light",
|
|
2308
2403
|
default: "promo__wrapper--default"
|
|
2309
|
-
}, r = e,
|
|
2310
|
-
return (
|
|
2404
|
+
}, r = e, s = D(() => a[r.variant]);
|
|
2405
|
+
return (o, _) => (l(), i("div", {
|
|
2311
2406
|
class: h([
|
|
2312
2407
|
"promo__wrapper",
|
|
2313
|
-
|
|
2314
|
-
|
|
2408
|
+
s.value,
|
|
2409
|
+
o.teaser ? "promo__wrapper--teaser" : ""
|
|
2315
2410
|
])
|
|
2316
2411
|
}, [
|
|
2317
|
-
t("div",
|
|
2412
|
+
t("div", yi, [
|
|
2318
2413
|
t("div", {
|
|
2319
2414
|
class: h([
|
|
2320
2415
|
"promo__video",
|
|
2321
|
-
|
|
2416
|
+
o.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2322
2417
|
])
|
|
2323
2418
|
}, [
|
|
2324
|
-
t("div",
|
|
2325
|
-
t("div",
|
|
2326
|
-
|
|
2419
|
+
t("div", $i, [
|
|
2420
|
+
t("div", ki, [
|
|
2421
|
+
c(o.$slots, "pallet-jack-link")
|
|
2327
2422
|
]),
|
|
2328
|
-
t("div",
|
|
2329
|
-
|
|
2423
|
+
t("div", wi, [
|
|
2424
|
+
c(o.$slots, "pallet-jack-video")
|
|
2330
2425
|
]),
|
|
2331
|
-
t("div",
|
|
2332
|
-
t("h3",
|
|
2333
|
-
t("p", null, n(
|
|
2426
|
+
t("div", Si, [
|
|
2427
|
+
t("h3", Bi, n(o.headline), 1),
|
|
2428
|
+
t("p", null, n(o.shortDescription), 1)
|
|
2334
2429
|
])
|
|
2335
2430
|
])
|
|
2336
2431
|
], 2),
|
|
2337
2432
|
t("div", {
|
|
2338
2433
|
class: h([
|
|
2339
2434
|
"promo__text",
|
|
2340
|
-
|
|
2435
|
+
o.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2341
2436
|
])
|
|
2342
2437
|
}, [
|
|
2343
|
-
|
|
2438
|
+
o.label ? (l(), L(Y, {
|
|
2344
2439
|
key: 0,
|
|
2345
|
-
text:
|
|
2346
|
-
"label-dark":
|
|
2440
|
+
text: o.label,
|
|
2441
|
+
"label-dark": o.variant === "dark"
|
|
2347
2442
|
}, null, 8, ["text", "label-dark"])) : m("", !0),
|
|
2348
2443
|
t("div", {
|
|
2349
2444
|
class: h([
|
|
2350
2445
|
"promo__title",
|
|
2351
|
-
|
|
2446
|
+
o.variant === "dark" ? "promo__title--dark" : ""
|
|
2352
2447
|
])
|
|
2353
2448
|
}, [
|
|
2354
|
-
|
|
2449
|
+
c(o.$slots, "promo-text")
|
|
2355
2450
|
], 2),
|
|
2356
|
-
|
|
2451
|
+
o.linkType === "link" ? (l(), L(V, {
|
|
2357
2452
|
key: 1,
|
|
2358
|
-
"link-type":
|
|
2453
|
+
"link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
|
|
2359
2454
|
arrow: ""
|
|
2360
2455
|
}, {
|
|
2361
|
-
default:
|
|
2362
|
-
|
|
2456
|
+
default: $(() => [
|
|
2457
|
+
c(o.$slots, "promo-link")
|
|
2363
2458
|
]),
|
|
2364
2459
|
_: 3
|
|
2365
2460
|
}, 8, ["link-type"])) : m("", !0),
|
|
2366
|
-
|
|
2461
|
+
o.linkType === "button" ? (l(), L(V, {
|
|
2367
2462
|
key: 2,
|
|
2368
|
-
"link-type":
|
|
2463
|
+
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
2369
2464
|
}, {
|
|
2370
|
-
default:
|
|
2371
|
-
|
|
2465
|
+
default: $(() => [
|
|
2466
|
+
c(o.$slots, "promo-link")
|
|
2372
2467
|
]),
|
|
2373
2468
|
_: 3
|
|
2374
2469
|
}, 8, ["link-type"])) : m("", !0)
|
|
@@ -2376,56 +2471,56 @@ const ai = /* @__PURE__ */ v(xs, [["render", ti], ["__scopeId", "data-v-623adb82
|
|
|
2376
2471
|
])
|
|
2377
2472
|
], 2));
|
|
2378
2473
|
}
|
|
2379
|
-
}),
|
|
2474
|
+
}), qi = /* @__PURE__ */ f(Ii, [["__scopeId", "data-v-00c0bad3"]]), Di = {
|
|
2380
2475
|
install: (e) => {
|
|
2381
|
-
e.component("AtomButton",
|
|
2476
|
+
e.component("AtomButton", te), e.component("AtomCheckbox", Ve), e.component("AtomChip", Fe), e.component("AtomDropdown", Ke), e.component("AtomImage", A), e.component("AtomLabel", Y), e.component("AtomLink", V), e.component("AtomRadioButton", ot), e.component("AtomSelect", dt), e.component("AtomSlider", yt), e.component("AtomTextarea", Tt), e.component("AtomTextField", Rt), e.component("AtomVideo", Z), e.component("MoleculeAddress", ta), e.component("MoleculeBulletList", ia), e.component("MoleculeCard", ua), e.component("MoleculeEventCard", ba), e.component("MoleculeModal", he), e.component("MoleculeTextCard", Sa), e.component("BlockFacts", Aa), e.component("BlockFeatures", Ha), e.component("BlockFormScript", Ja), e.component("BlockHeadline", _o), e.component("BlockHero", Bo), e.component("BlockImage", to), e.component("BlockImageGallery", ro), e.component("BlockLogoWall", Po), e.component("BlockMicroStories", Ro), e.component("BlockPolicy", Uo), e.component("BlockProductHero", bi), e.component("BlockPromo", el), e.component("BlockQuote", pl), e.component("BlockRichText", gl), e.component("BlockRichTextColumns", Bl), e.component("BlockTimeline", Ml), e.component("BlockCardDisplay", Zo), e.component("BlockVimeo", Hl), e.component("BlockPalletJack", qi), e.component("Organism404", Wl), e.component("OrganismFilter", xl), e.component("OrganismFooter", ks), e.component("OrganismHeader", Js), e.component("OrganismLanguageSwitcher", ai), e.component("OrganismPagination", ii), e.component("OrganismSearch", ci);
|
|
2382
2477
|
}
|
|
2383
2478
|
};
|
|
2384
2479
|
export {
|
|
2385
|
-
|
|
2386
|
-
|
|
2480
|
+
te as AtomButton,
|
|
2481
|
+
Ve as AtomCheckbox,
|
|
2387
2482
|
Fe as AtomChip,
|
|
2388
2483
|
Ke as AtomDropdown,
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2484
|
+
A as AtomImage,
|
|
2485
|
+
Y as AtomLabel,
|
|
2486
|
+
V as AtomLink,
|
|
2487
|
+
ot as AtomRadioButton,
|
|
2393
2488
|
dt as AtomSelect,
|
|
2394
2489
|
yt as AtomSlider,
|
|
2395
2490
|
Rt as AtomTextField,
|
|
2396
2491
|
Tt as AtomTextarea,
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2492
|
+
Z as AtomVideo,
|
|
2493
|
+
Zo as BlockCardDisplay,
|
|
2494
|
+
Aa as BlockFacts,
|
|
2400
2495
|
Ha as BlockFeatures,
|
|
2401
2496
|
Ja as BlockFormScript,
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2497
|
+
_o as BlockHeadline,
|
|
2498
|
+
Bo as BlockHero,
|
|
2499
|
+
to as BlockImage,
|
|
2500
|
+
ro as BlockImageGallery,
|
|
2501
|
+
Po as BlockLogoWall,
|
|
2502
|
+
Ro as BlockMicroStories,
|
|
2503
|
+
qi as BlockPalletJack,
|
|
2504
|
+
Uo as BlockPolicy,
|
|
2505
|
+
bi as BlockProductHero,
|
|
2506
|
+
el as BlockPromo,
|
|
2507
|
+
pl as BlockQuote,
|
|
2508
|
+
gl as BlockRichText,
|
|
2509
|
+
Bl as BlockRichTextColumns,
|
|
2510
|
+
Ml as BlockTimeline,
|
|
2511
|
+
Hl as BlockVimeo,
|
|
2417
2512
|
ta as MoleculeAddress,
|
|
2418
2513
|
ia as MoleculeBulletList,
|
|
2419
2514
|
ua as MoleculeCard,
|
|
2420
2515
|
ba as MoleculeEventCard,
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2516
|
+
he as MoleculeModal,
|
|
2517
|
+
Sa as MoleculeTextCard,
|
|
2518
|
+
Wl as Organism404,
|
|
2519
|
+
xl as OrganismFilter,
|
|
2425
2520
|
ks as OrganismFooter,
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2521
|
+
Js as OrganismHeader,
|
|
2522
|
+
ai as OrganismLanguageSwitcher,
|
|
2523
|
+
ii as OrganismPagination,
|
|
2524
|
+
ci as OrganismSearch,
|
|
2525
|
+
Di as default
|
|
2431
2526
|
};
|