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