@mirweb/mir-web-components 1.4.8 → 1.4.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as g, computed as C, openBlock as
|
|
1
|
+
import { defineComponent as g, computed as C, openBlock as o, createElementBlock as i, normalizeClass as m, toDisplayString as n, createElementVNode as t, renderSlot as d, pushScopeId as H, popScopeId as R, createTextVNode as G, ref as q, resolveDirective as _e, withDirectives as K, Fragment as A, renderList as P, vShow as Q, normalizeProps as F, guardReactiveProps as z, toRefs as ke, mergeProps as ce, createVNode as B, Transition as we, withCtx as $, withModifiers as he, createBlock as T, createCommentVNode as p, watchEffect as pe, withKeys as Se, useSlots as Be, normalizeStyle as le, isRef as de, unref as I, onMounted as me, watch as Y, onUnmounted as Ie } from "vue";
|
|
2
2
|
const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -15,15 +15,15 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
15
15
|
next: "next",
|
|
16
16
|
previous: "previous"
|
|
17
17
|
}, r = e, s = C(() => a[r.variant]);
|
|
18
|
-
return (
|
|
18
|
+
return (l, c) => (o(), i("button", {
|
|
19
19
|
class: m(["button", "button--" + s.value]),
|
|
20
|
-
"aria-label":
|
|
21
|
-
}, n(s.value === "close" ? "" :
|
|
20
|
+
"aria-label": l.ariaLabel
|
|
21
|
+
}, n(s.value === "close" ? "" : l.buttonText), 11, qe));
|
|
22
22
|
}
|
|
23
23
|
}), f = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
|
-
for (const [s,
|
|
26
|
-
r[s] =
|
|
25
|
+
for (const [s, l] of a)
|
|
26
|
+
r[s] = l;
|
|
27
27
|
return r;
|
|
28
28
|
}, oe = /* @__PURE__ */ f(Le, [["__scopeId", "data-v-f61b579c"]]), De = (e) => (H("data-v-0c4c6d8e"), e = e(), R(), e), Ce = ["id", "name", "value", "disabled", "required", "checked"], Te = ["for"], Ve = /* @__PURE__ */ De(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Ae = /* @__PURE__ */ g({
|
|
29
29
|
__name: "checkbox",
|
|
@@ -37,30 +37,30 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
37
37
|
},
|
|
38
38
|
emits: ["input"],
|
|
39
39
|
setup(e, { emit: a }) {
|
|
40
|
-
const r = a, s = (
|
|
41
|
-
const c =
|
|
40
|
+
const r = a, s = (l) => {
|
|
41
|
+
const c = l.target;
|
|
42
42
|
r("input", c.checked);
|
|
43
43
|
};
|
|
44
|
-
return (
|
|
45
|
-
class: m(["checkbox__wrapper",
|
|
44
|
+
return (l, c) => (o(), i("div", {
|
|
45
|
+
class: m(["checkbox__wrapper", l.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
47
|
t("input", {
|
|
48
|
-
id:
|
|
48
|
+
id: l.id,
|
|
49
49
|
type: "checkbox",
|
|
50
|
-
name:
|
|
51
|
-
value:
|
|
52
|
-
disabled:
|
|
53
|
-
required:
|
|
54
|
-
checked:
|
|
50
|
+
name: l.name,
|
|
51
|
+
value: l.value,
|
|
52
|
+
disabled: l.disabled,
|
|
53
|
+
required: l.required,
|
|
54
|
+
checked: l.checked,
|
|
55
55
|
class: "checkbox__checkbox",
|
|
56
56
|
onChange: s
|
|
57
57
|
}, null, 40, Ce),
|
|
58
58
|
t("label", {
|
|
59
|
-
for:
|
|
60
|
-
class: m(["checkbox__label",
|
|
59
|
+
for: l.id,
|
|
60
|
+
class: m(["checkbox__label", l.required ? "required" : ""])
|
|
61
61
|
}, [
|
|
62
62
|
Ve,
|
|
63
|
-
d(
|
|
63
|
+
d(l.$slots, "default", {}, void 0, !0)
|
|
64
64
|
], 10, Te)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
@@ -76,20 +76,20 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
76
76
|
emits: ["remove-chip"],
|
|
77
77
|
setup(e) {
|
|
78
78
|
const a = e, r = C(() => `Chip: ${a.text}`);
|
|
79
|
-
return (s,
|
|
79
|
+
return (s, l) => (o(), i("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick:
|
|
81
|
+
onClick: l[0] || (l[0] = (c) => s.$emit("remove-chip"))
|
|
82
82
|
}, [
|
|
83
83
|
t("span", {
|
|
84
84
|
class: "chip",
|
|
85
85
|
"aria-label": r.value
|
|
86
86
|
}, [
|
|
87
|
-
|
|
87
|
+
G(n(s.text) + " ", 1),
|
|
88
88
|
Oe
|
|
89
89
|
], 8, Me)
|
|
90
90
|
]));
|
|
91
91
|
}
|
|
92
|
-
}), He = /* @__PURE__ */ f(Fe, [["__scopeId", "data-v-08813346"]]), Re = ["value"], Ee = ["id"],
|
|
92
|
+
}), He = /* @__PURE__ */ f(Fe, [["__scopeId", "data-v-08813346"]]), Re = ["value"], Ee = ["id"], ze = { class: "listbox__dropdown" }, Ne = ["id", "aria-labelledby", "aria-disabled"], je = ["aria-labelledby", "aria-activedescendant"], Ke = ["aria-selected", "data-value"], Ue = /* @__PURE__ */ g({
|
|
93
93
|
__name: "dropdown",
|
|
94
94
|
props: {
|
|
95
95
|
modelValue: {},
|
|
@@ -107,174 +107,174 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
107
107
|
const r = {
|
|
108
108
|
primary: "dropdown-dark-bg-primary",
|
|
109
109
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
110
|
-
}, s = e,
|
|
111
|
-
const
|
|
110
|
+
}, s = e, l = C(() => r[s.variant]), c = q(null), _ = q(null), u = q([]), b = q(0), v = q(""), k = q(!0), w = q(0), ee = a, se = C(() => {
|
|
111
|
+
const h = s.options.find(
|
|
112
112
|
(S) => S.value === s.modelValue
|
|
113
113
|
);
|
|
114
|
-
return
|
|
114
|
+
return h && h.label;
|
|
115
115
|
});
|
|
116
|
-
function ie(
|
|
117
|
-
ee("update:modelValue",
|
|
116
|
+
function ie(h) {
|
|
117
|
+
ee("update:modelValue", h);
|
|
118
118
|
}
|
|
119
|
-
function re(
|
|
119
|
+
function re(h) {
|
|
120
120
|
var L;
|
|
121
|
-
const S =
|
|
122
|
-
S.getAttribute("role") === "option" && (
|
|
121
|
+
const S = h.target;
|
|
122
|
+
S.getAttribute("role") === "option" && (J(S), ae(), (L = c.value) == null || L.focus());
|
|
123
123
|
}
|
|
124
|
-
function
|
|
124
|
+
function U(h) {
|
|
125
125
|
var L;
|
|
126
|
-
const S =
|
|
126
|
+
const S = h.key;
|
|
127
127
|
switch (S) {
|
|
128
128
|
case "ArrowUp":
|
|
129
129
|
case "ArrowDown": {
|
|
130
|
-
|
|
130
|
+
h.preventDefault();
|
|
131
131
|
const D = s.options.findIndex(
|
|
132
|
-
(
|
|
132
|
+
(W) => W.value === s.modelValue
|
|
133
133
|
);
|
|
134
134
|
let O = D ? u.value[D] : u.value[0];
|
|
135
|
-
S === "ArrowUp" ? D - 1 >= 0 && (O = u.value[D - 1]) : D + 1 <= s.options.length && (O = u.value[D + 1]), O &&
|
|
135
|
+
S === "ArrowUp" ? D - 1 >= 0 && (O = u.value[D - 1]) : D + 1 <= s.options.length && (O = u.value[D + 1]), O && J(O);
|
|
136
136
|
break;
|
|
137
137
|
}
|
|
138
138
|
case "Home":
|
|
139
139
|
case "PageUp":
|
|
140
|
-
|
|
140
|
+
h.preventDefault(), E();
|
|
141
141
|
break;
|
|
142
142
|
case "End":
|
|
143
143
|
case "PageDown":
|
|
144
|
-
|
|
144
|
+
h.preventDefault(), be();
|
|
145
145
|
break;
|
|
146
146
|
case "Enter":
|
|
147
147
|
case "Escape":
|
|
148
|
-
|
|
148
|
+
h.preventDefault(), ae(), (L = c.value) == null || L.focus();
|
|
149
149
|
break;
|
|
150
150
|
default: {
|
|
151
|
-
const D =
|
|
152
|
-
D &&
|
|
151
|
+
const D = N(S);
|
|
152
|
+
D && J(D);
|
|
153
153
|
break;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
|
-
function te(
|
|
157
|
+
function te(h) {
|
|
158
158
|
if (!s.disabled)
|
|
159
|
-
switch (
|
|
159
|
+
switch (h.key) {
|
|
160
160
|
case "ArrowUp":
|
|
161
161
|
case "ArrowDown":
|
|
162
|
-
|
|
162
|
+
h.preventDefault(), ue(), U(h);
|
|
163
163
|
break;
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
|
-
function ne(
|
|
167
|
-
|
|
166
|
+
function ne(h) {
|
|
167
|
+
h && h.removeAttribute("aria-selected");
|
|
168
168
|
}
|
|
169
169
|
function y() {
|
|
170
170
|
b.value && (clearTimeout(b.value), b.value = 0), b.value = setTimeout(() => {
|
|
171
171
|
v.value = "", b.value = 0;
|
|
172
172
|
}, 500);
|
|
173
173
|
}
|
|
174
|
-
function
|
|
174
|
+
function N(h) {
|
|
175
175
|
let S = "";
|
|
176
|
-
(v.value === "" || S !==
|
|
176
|
+
(v.value === "" || S !== h) && (w.value = s.options.findIndex(
|
|
177
177
|
(D) => D.value === s.modelValue
|
|
178
|
-
)), v.value = S ===
|
|
178
|
+
)), v.value = S === h ? h : v.value + h, S = h, y();
|
|
179
179
|
let L = j(
|
|
180
180
|
w.value + 1,
|
|
181
181
|
s.options.length
|
|
182
182
|
);
|
|
183
183
|
return !L && v.value.length === 1 && (L = j(0, w.value)), w.value = (w.value + 1) % s.options.length, L;
|
|
184
184
|
}
|
|
185
|
-
function j(
|
|
186
|
-
for (let L =
|
|
185
|
+
function j(h, S) {
|
|
186
|
+
for (let L = h; L < S; L++)
|
|
187
187
|
if (s.options[L].label && s.options[L].label.toUpperCase().indexOf(v.value.toUpperCase()) === 0)
|
|
188
188
|
return u.value[L];
|
|
189
189
|
return null;
|
|
190
190
|
}
|
|
191
191
|
function E() {
|
|
192
|
-
|
|
192
|
+
J(u.value[0]);
|
|
193
193
|
}
|
|
194
|
-
function
|
|
194
|
+
function J(h) {
|
|
195
195
|
var L, D;
|
|
196
|
-
const S =
|
|
196
|
+
const S = h.getAttribute("data-value");
|
|
197
197
|
if (s.modelValue) {
|
|
198
198
|
const O = s.options.findIndex(
|
|
199
199
|
($e) => $e.value === s.modelValue
|
|
200
|
-
),
|
|
201
|
-
ne(
|
|
200
|
+
), W = u.value[O];
|
|
201
|
+
ne(W);
|
|
202
202
|
}
|
|
203
|
-
if (
|
|
203
|
+
if (h.setAttribute("aria-selected", "true"), (L = _.value) == null || L.setAttribute(
|
|
204
204
|
"aria-activedescendant",
|
|
205
205
|
S || ""
|
|
206
206
|
), ie(S || ""), _.value && _.value.scrollHeight > _.value.clientHeight) {
|
|
207
|
-
const O = _.value.clientHeight + _.value.scrollTop,
|
|
208
|
-
|
|
207
|
+
const O = _.value.clientHeight + _.value.scrollTop, W = h.offsetTop + h.offsetHeight;
|
|
208
|
+
W > O ? _.value.scrollTop = W - ((D = _.value) == null ? void 0 : D.clientHeight) : h.offsetTop < _.value.scrollTop && (_.value.scrollTop = h.offsetTop);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
function be() {
|
|
212
212
|
var S;
|
|
213
|
-
const
|
|
214
|
-
|
|
213
|
+
const h = (S = u.value) == null ? void 0 : S[s.options.length - 1];
|
|
214
|
+
J(h);
|
|
215
215
|
}
|
|
216
216
|
function ae() {
|
|
217
|
-
var
|
|
218
|
-
k.value = !0, (
|
|
217
|
+
var h;
|
|
218
|
+
k.value = !0, (h = c.value) == null || h.removeAttribute("aria-expanded");
|
|
219
219
|
}
|
|
220
220
|
function ue() {
|
|
221
|
-
var
|
|
222
|
-
k.value = !1, (
|
|
221
|
+
var h, S;
|
|
222
|
+
k.value = !1, (h = c.value) == null || h.setAttribute("aria-expanded", "true"), (S = _.value) == null || S.focus();
|
|
223
223
|
}
|
|
224
224
|
function ye() {
|
|
225
225
|
s.disabled || (k.value ? ue() : ae());
|
|
226
226
|
}
|
|
227
|
-
return (
|
|
227
|
+
return (h, S) => {
|
|
228
228
|
const L = _e("click-outside");
|
|
229
|
-
return
|
|
229
|
+
return o(), i("div", {
|
|
230
230
|
ref: "listbox",
|
|
231
231
|
class: "listbox__wrapper",
|
|
232
|
-
value:
|
|
232
|
+
value: h.modelValue
|
|
233
233
|
}, [
|
|
234
234
|
t("label", {
|
|
235
|
-
id: `${
|
|
235
|
+
id: `${h.name}-label`,
|
|
236
236
|
class: m([{
|
|
237
|
-
"listbox__label--visually-hidden": !
|
|
238
|
-
"is-disabled":
|
|
239
|
-
"is-required":
|
|
237
|
+
"listbox__label--visually-hidden": !h.showLabel,
|
|
238
|
+
"is-disabled": h.disabled,
|
|
239
|
+
"is-required": h.required
|
|
240
240
|
}, "listbox__label"])
|
|
241
|
-
}, n(
|
|
242
|
-
K((
|
|
241
|
+
}, n(h.label), 11, Ee),
|
|
242
|
+
K((o(), i("div", ze, [
|
|
243
243
|
t("button", {
|
|
244
|
-
id: `${
|
|
244
|
+
id: `${h.name}-button-label`,
|
|
245
245
|
ref_key: "listboxButton",
|
|
246
246
|
ref: c,
|
|
247
|
-
"aria-labelledby": `${
|
|
247
|
+
"aria-labelledby": `${h.name}-label ${h.name}-button-label`,
|
|
248
248
|
type: "button",
|
|
249
249
|
"aria-haspopup": "listbox",
|
|
250
|
-
"aria-disabled":
|
|
251
|
-
class: m(["listbox__button",
|
|
250
|
+
"aria-disabled": h.disabled,
|
|
251
|
+
class: m(["listbox__button", l.value]),
|
|
252
252
|
onClick: ye,
|
|
253
253
|
onKeydown: te
|
|
254
|
-
}, n(
|
|
254
|
+
}, n(h.modelValue ? se.value : h.placeholder), 43, Ne),
|
|
255
255
|
K(t("ul", {
|
|
256
256
|
ref_key: "listboxNode",
|
|
257
257
|
ref: _,
|
|
258
|
-
"aria-labelledby": `${
|
|
259
|
-
"aria-activedescendant":
|
|
258
|
+
"aria-labelledby": `${h.name}-label`,
|
|
259
|
+
"aria-activedescendant": h.modelValue,
|
|
260
260
|
tabindex: "0",
|
|
261
261
|
role: "listbox",
|
|
262
262
|
class: "listbox__list",
|
|
263
|
-
onKeydown:
|
|
263
|
+
onKeydown: U,
|
|
264
264
|
onClick: re
|
|
265
265
|
}, [
|
|
266
|
-
(
|
|
267
|
-
key: `${
|
|
266
|
+
(o(!0), i(A, null, P(h.options, (D, O) => (o(), i("li", {
|
|
267
|
+
key: `${h.name}-option-${O}`,
|
|
268
268
|
ref_for: !0,
|
|
269
269
|
ref_key: "listboxOptions",
|
|
270
270
|
ref: u,
|
|
271
|
-
"aria-selected": D.value ===
|
|
271
|
+
"aria-selected": D.value === h.modelValue,
|
|
272
272
|
"data-value": D.value,
|
|
273
273
|
class: "listbox__option",
|
|
274
274
|
role: "option"
|
|
275
275
|
}, n(D.label), 9, Ke))), 128))
|
|
276
276
|
], 40, je), [
|
|
277
|
-
[
|
|
277
|
+
[Q, !k.value]
|
|
278
278
|
])
|
|
279
279
|
])), [
|
|
280
280
|
[L, ae]
|
|
@@ -294,8 +294,8 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
294
294
|
loading: { default: "auto" }
|
|
295
295
|
},
|
|
296
296
|
setup(e) {
|
|
297
|
-
return (a, r) => (
|
|
298
|
-
d(a.$slots, "default", F(
|
|
297
|
+
return (a, r) => (o(), i("div", Je, [
|
|
298
|
+
d(a.$slots, "default", F(z(a.$attrs)))
|
|
299
299
|
]));
|
|
300
300
|
}
|
|
301
301
|
}), M = /* @__PURE__ */ f(We, [["__scopeId", "data-v-e10217bd"]]), Ye = { class: "label__wrapper" }, Qe = ["aria-label", "label-dark"], Ze = /* @__PURE__ */ g({
|
|
@@ -306,7 +306,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
306
306
|
},
|
|
307
307
|
setup(e) {
|
|
308
308
|
const a = e, r = C(() => `Label: ${a.text}`);
|
|
309
|
-
return (s,
|
|
309
|
+
return (s, l) => (o(), i("div", Ye, [
|
|
310
310
|
t("span", {
|
|
311
311
|
"aria-label": r.value,
|
|
312
312
|
"label-dark": s.labelDark,
|
|
@@ -314,7 +314,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
314
314
|
}, n(s.text), 11, Qe)
|
|
315
315
|
]));
|
|
316
316
|
}
|
|
317
|
-
}),
|
|
317
|
+
}), Z = /* @__PURE__ */ f(Ze, [["__scopeId", "data-v-7d9d3a8a"]]), Xe = { class: "link__wrapper" }, V = /* @__PURE__ */ g({
|
|
318
318
|
__name: "link",
|
|
319
319
|
props: {
|
|
320
320
|
linkType: { default: "regular" },
|
|
@@ -336,14 +336,14 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
336
336
|
hover: "underline-hover",
|
|
337
337
|
true: "add-underline",
|
|
338
338
|
false: "remove-underline"
|
|
339
|
-
}, s = e,
|
|
339
|
+
}, s = e, l = C(() => a[s.linkType]), c = C(() => r[s.underline]), _ = C(() => {
|
|
340
340
|
const { ...u } = ke(s);
|
|
341
341
|
return u;
|
|
342
342
|
});
|
|
343
|
-
return (u, b) => (
|
|
343
|
+
return (u, b) => (o(), i("div", Xe, [
|
|
344
344
|
t("div", ce(_.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
|
-
|
|
346
|
+
l.value,
|
|
347
347
|
u.disabled ? "disabled" : "",
|
|
348
348
|
c.value,
|
|
349
349
|
u.arrow ? "link-arrow" : ""
|
|
@@ -365,30 +365,30 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
365
365
|
},
|
|
366
366
|
emits: ["input"],
|
|
367
367
|
setup(e, { emit: a }) {
|
|
368
|
-
const r = a, s = (
|
|
369
|
-
const c =
|
|
368
|
+
const r = a, s = (l) => {
|
|
369
|
+
const c = l.target;
|
|
370
370
|
r("input", c.checked);
|
|
371
371
|
};
|
|
372
|
-
return (
|
|
373
|
-
class: m(["radio__wrapper",
|
|
372
|
+
return (l, c) => (o(), i("div", {
|
|
373
|
+
class: m(["radio__wrapper", l.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
375
|
t("input", {
|
|
376
|
-
id:
|
|
376
|
+
id: l.id,
|
|
377
377
|
type: "radio",
|
|
378
|
-
name:
|
|
379
|
-
value:
|
|
380
|
-
checked:
|
|
381
|
-
disabled:
|
|
382
|
-
required:
|
|
378
|
+
name: l.name,
|
|
379
|
+
value: l.value,
|
|
380
|
+
checked: l.checked,
|
|
381
|
+
disabled: l.disabled,
|
|
382
|
+
required: l.required,
|
|
383
383
|
class: "radio__radio",
|
|
384
384
|
onChange: s
|
|
385
385
|
}, null, 40, et),
|
|
386
386
|
t("label", {
|
|
387
|
-
for:
|
|
388
|
-
class: m(["radio__label",
|
|
387
|
+
for: l.id,
|
|
388
|
+
class: m(["radio__label", l.required ? "required" : ""])
|
|
389
389
|
}, [
|
|
390
390
|
at,
|
|
391
|
-
d(
|
|
391
|
+
d(l.$slots, "default", {}, void 0, !0)
|
|
392
392
|
], 10, tt)
|
|
393
393
|
], 2));
|
|
394
394
|
}
|
|
@@ -405,7 +405,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
405
405
|
},
|
|
406
406
|
emits: ["update:modelValue"],
|
|
407
407
|
setup(e) {
|
|
408
|
-
return (a, r) => (
|
|
408
|
+
return (a, r) => (o(), i("div", st, [
|
|
409
409
|
t("label", {
|
|
410
410
|
for: a.id,
|
|
411
411
|
class: m([a.required ? "required" : "", a.disabled ? "disabled" : ""])
|
|
@@ -420,7 +420,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
420
420
|
a.$emit("update:modelValue", s.target.value), s.target.blur();
|
|
421
421
|
})
|
|
422
422
|
}, [
|
|
423
|
-
(
|
|
423
|
+
(o(!0), i(A, null, P(a.options, (s) => (o(), i("option", {
|
|
424
424
|
key: s.value,
|
|
425
425
|
value: s.value
|
|
426
426
|
}, n(s.text), 9, nt))), 128))
|
|
@@ -435,10 +435,10 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
435
435
|
},
|
|
436
436
|
emits: ["update:show"],
|
|
437
437
|
setup(e, { emit: a }) {
|
|
438
|
-
const r = e, s = a,
|
|
438
|
+
const r = e, s = a, l = () => {
|
|
439
439
|
s("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (c, _) => (
|
|
441
|
+
return (c, _) => (o(), i("div", ut, [
|
|
442
442
|
B(we, {
|
|
443
443
|
duration: 300,
|
|
444
444
|
name: "nested"
|
|
@@ -448,33 +448,33 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
448
448
|
class: m(["overlay", c.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
451
|
-
onClick:
|
|
451
|
+
onClick: l
|
|
452
452
|
}, [
|
|
453
453
|
t("div", {
|
|
454
454
|
id: "modal",
|
|
455
455
|
class: m([c.searchBar ? "search" : ""]),
|
|
456
|
-
onClick: _[0] || (_[0] =
|
|
456
|
+
onClick: _[0] || (_[0] = he(() => {
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
459
|
t("div", null, [
|
|
460
|
-
c.searchBar ?
|
|
460
|
+
c.searchBar ? p("", !0) : (o(), T(oe, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
|
-
onClick:
|
|
464
|
+
onClick: l
|
|
465
465
|
}))
|
|
466
466
|
]),
|
|
467
467
|
d(c.$slots, "default", {}, void 0, !0)
|
|
468
468
|
], 2)
|
|
469
469
|
], 2), [
|
|
470
|
-
[
|
|
470
|
+
[Q, c.show]
|
|
471
471
|
])
|
|
472
472
|
]),
|
|
473
473
|
_: 3
|
|
474
474
|
})
|
|
475
475
|
]));
|
|
476
476
|
}
|
|
477
|
-
}), fe = /* @__PURE__ */ f(_t, [["__scopeId", "data-v-80f0fb08"]]),
|
|
477
|
+
}), fe = /* @__PURE__ */ f(_t, [["__scopeId", "data-v-80f0fb08"]]), ht = { class: "slider__wrapper" }, pt = { 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({
|
|
478
478
|
__name: "slider",
|
|
479
479
|
props: {
|
|
480
480
|
label: {},
|
|
@@ -490,25 +490,25 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
490
490
|
},
|
|
491
491
|
emits: ["update:modelValue"],
|
|
492
492
|
setup(e, { emit: a }) {
|
|
493
|
-
const r = e, s = a,
|
|
493
|
+
const r = e, s = a, l = q(r.modelValue), c = q(), _ = q(!1), u = (v, k, w) => (v - k) / (w - k) * 100, b = (v) => {
|
|
494
494
|
var k;
|
|
495
495
|
(k = c.value) == null || k.style.setProperty("--ProgressPercent", `${v}%`);
|
|
496
496
|
};
|
|
497
|
-
return
|
|
497
|
+
return pe(() => {
|
|
498
498
|
if (c.value) {
|
|
499
|
-
s("update:modelValue",
|
|
500
|
-
const v = u(
|
|
499
|
+
s("update:modelValue", l.value);
|
|
500
|
+
const v = u(l.value, r.min, r.max);
|
|
501
501
|
let k = (50 - v) / 100;
|
|
502
502
|
b(v + k);
|
|
503
503
|
}
|
|
504
|
-
}), (v, k) => (
|
|
505
|
-
t("div",
|
|
506
|
-
t("div",
|
|
504
|
+
}), (v, k) => (o(), i("div", null, [
|
|
505
|
+
t("div", ht, [
|
|
506
|
+
t("div", pt, [
|
|
507
507
|
t("label", {
|
|
508
508
|
for: v.id,
|
|
509
509
|
class: m([v.variant, ""])
|
|
510
510
|
}, n(v.label), 11, mt),
|
|
511
|
-
v.information ? (
|
|
511
|
+
v.information ? (o(), i("i", {
|
|
512
512
|
key: 0,
|
|
513
513
|
role: "button",
|
|
514
514
|
class: m([v.variant, "slider__information"]),
|
|
@@ -517,7 +517,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
517
517
|
"aria-haspopup": "dialog",
|
|
518
518
|
onClick: k[0] || (k[0] = (w) => _.value = !_.value),
|
|
519
519
|
onKeyup: k[1] || (k[1] = Se((w) => _.value = !_.value, ["enter"]))
|
|
520
|
-
}, null, 42, vt)) :
|
|
520
|
+
}, null, 42, vt)) : p("", !0)
|
|
521
521
|
]),
|
|
522
522
|
t("div", ft, [
|
|
523
523
|
t("span", {
|
|
@@ -534,7 +534,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
534
534
|
step: v.step,
|
|
535
535
|
max: v.max,
|
|
536
536
|
class: m(v.variant),
|
|
537
|
-
onInput: k[2] || (k[2] = ({ target: w }) =>
|
|
537
|
+
onInput: k[2] || (k[2] = ({ target: w }) => l.value = parseFloat(w.value))
|
|
538
538
|
}, null, 42, gt),
|
|
539
539
|
t("span", {
|
|
540
540
|
class: m([v.variant, "slider__minmax"])
|
|
@@ -544,7 +544,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
544
544
|
class: m([v.variant, "slider__value"])
|
|
545
545
|
}, n(v.modelValue), 3)
|
|
546
546
|
]),
|
|
547
|
-
v.information ? (
|
|
547
|
+
v.information ? (o(), T(fe, {
|
|
548
548
|
key: 0,
|
|
549
549
|
show: _.value,
|
|
550
550
|
"onUpdate:show": k[3] || (k[3] = (w) => _.value = w)
|
|
@@ -553,7 +553,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
553
553
|
t("p", bt, n(v.information), 1)
|
|
554
554
|
]),
|
|
555
555
|
_: 1
|
|
556
|
-
}, 8, ["show"])) :
|
|
556
|
+
}, 8, ["show"])) : p("", !0)
|
|
557
557
|
]));
|
|
558
558
|
}
|
|
559
559
|
}), $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({
|
|
@@ -570,7 +570,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
570
570
|
},
|
|
571
571
|
emits: ["update:modelValue"],
|
|
572
572
|
setup(e) {
|
|
573
|
-
return (a, r) => (
|
|
573
|
+
return (a, r) => (o(), i("div", kt, [
|
|
574
574
|
t("label", {
|
|
575
575
|
for: a.id,
|
|
576
576
|
class: m({ required: a.required })
|
|
@@ -596,7 +596,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
596
596
|
], 8, St),
|
|
597
597
|
t("div", It, [
|
|
598
598
|
t("div", null, [
|
|
599
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (
|
|
599
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (o(), i("p", qt, " Too many characters. Please make it shorter ")) : p("", !0)
|
|
600
600
|
]),
|
|
601
601
|
t("p", {
|
|
602
602
|
class: m(
|
|
@@ -642,12 +642,12 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
642
642
|
tel: "tel",
|
|
643
643
|
url: "url",
|
|
644
644
|
search: "search"
|
|
645
|
-
}, r = e, s = C(() => a[r.type]),
|
|
646
|
-
() =>
|
|
645
|
+
}, r = e, s = C(() => a[r.type]), l = q(!0), c = C(
|
|
646
|
+
() => l.value ? "showPassword" : "hidePassword"
|
|
647
647
|
), _ = C(
|
|
648
|
-
() =>
|
|
648
|
+
() => l.value ? "password" : "text"
|
|
649
649
|
);
|
|
650
|
-
return (u, b) => (
|
|
650
|
+
return (u, b) => (o(), i("div", Ct, [
|
|
651
651
|
t("label", {
|
|
652
652
|
for: u.id,
|
|
653
653
|
class: m([
|
|
@@ -656,7 +656,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
656
656
|
u.search ? "search" : ""
|
|
657
657
|
])
|
|
658
658
|
}, n(u.label), 11, Tt),
|
|
659
|
-
s.value === "password" ? (
|
|
659
|
+
s.value === "password" ? (o(), i("div", Vt, [
|
|
660
660
|
t("input", {
|
|
661
661
|
id: u.id,
|
|
662
662
|
ref: "passwordField",
|
|
@@ -672,10 +672,10 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
672
672
|
role: "button",
|
|
673
673
|
class: m([c.value]),
|
|
674
674
|
"aria-controls": "password",
|
|
675
|
-
"aria-expanded": !
|
|
676
|
-
onClick: b[1] || (b[1] = (v) =>
|
|
675
|
+
"aria-expanded": !l.value,
|
|
676
|
+
onClick: b[1] || (b[1] = (v) => l.value = !l.value)
|
|
677
677
|
}, null, 10, Pt)
|
|
678
|
-
])) : (
|
|
678
|
+
])) : (o(), i("input", {
|
|
679
679
|
key: 1,
|
|
680
680
|
id: u.id,
|
|
681
681
|
ref: "textField",
|
|
@@ -692,12 +692,12 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
692
692
|
name: u.fieldName,
|
|
693
693
|
onInput: b[2] || (b[2] = (v) => u.$emit("update:modelValue", v.target.value))
|
|
694
694
|
}, null, 42, Mt)),
|
|
695
|
-
u.search ? (
|
|
696
|
-
u.errorMessage ? (
|
|
697
|
-
u.helperText ? (
|
|
695
|
+
u.search ? (o(), i("i", Ot)) : p("", !0),
|
|
696
|
+
u.errorMessage ? (o(), i("strong", Ft, n(u.errorMessage), 1)) : p("", !0),
|
|
697
|
+
u.helperText ? (o(), i("span", Ht, n(u.helperText), 1)) : p("", !0)
|
|
698
698
|
]));
|
|
699
699
|
}
|
|
700
|
-
}), Et = /* @__PURE__ */ f(Rt, [["__scopeId", "data-v-414b9435"]]),
|
|
700
|
+
}), Et = /* @__PURE__ */ f(Rt, [["__scopeId", "data-v-414b9435"]]), zt = { class: "video__wrapper" }, Nt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], jt = ["src", "aria-label", "title", "width", "height"], Kt = /* @__PURE__ */ g({
|
|
701
701
|
__name: "video",
|
|
702
702
|
props: {
|
|
703
703
|
play: { type: Boolean, default: !1 },
|
|
@@ -716,14 +716,14 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
716
716
|
setup(e, { expose: a }) {
|
|
717
717
|
const r = e;
|
|
718
718
|
let s = q(null);
|
|
719
|
-
return
|
|
719
|
+
return pe(() => {
|
|
720
720
|
s.value && (r.play ? s.value.play() : r.play || s.value.pause());
|
|
721
721
|
}), a({
|
|
722
722
|
resetVideo: () => {
|
|
723
723
|
s.value && (s.value.currentTime = 0, s.value.play());
|
|
724
724
|
}
|
|
725
|
-
}), (c, _) => (
|
|
726
|
-
c.localVideo ? (
|
|
725
|
+
}), (c, _) => (o(), i("div", zt, [
|
|
726
|
+
c.localVideo ? (o(), i("video", {
|
|
727
727
|
key: 0,
|
|
728
728
|
ref_key: "videoRef",
|
|
729
729
|
ref: s,
|
|
@@ -738,7 +738,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
738
738
|
type: "video/mp4",
|
|
739
739
|
playsinline: "",
|
|
740
740
|
src: c.src
|
|
741
|
-
}, null, 8,
|
|
741
|
+
}, null, 8, Nt)) : (o(), i("iframe", {
|
|
742
742
|
key: 1,
|
|
743
743
|
src: c.src,
|
|
744
744
|
"aria-label": c.ariaLabel,
|
|
@@ -751,7 +751,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
751
751
|
}, null, 8, jt))
|
|
752
752
|
]));
|
|
753
753
|
}
|
|
754
|
-
}),
|
|
754
|
+
}), X = /* @__PURE__ */ f(Kt, [["__scopeId", "data-v-c6a0feb6"]]), Ut = { 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({
|
|
755
755
|
__name: "address",
|
|
756
756
|
props: {
|
|
757
757
|
name: {},
|
|
@@ -764,7 +764,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
764
764
|
email: {}
|
|
765
765
|
},
|
|
766
766
|
setup(e) {
|
|
767
|
-
return (a, r) => (
|
|
767
|
+
return (a, r) => (o(), i("div", Ut, [
|
|
768
768
|
t("div", Gt, [
|
|
769
769
|
t("div", Jt, [
|
|
770
770
|
d(a.$slots, "address-flag", {}, void 0, !0)
|
|
@@ -774,10 +774,10 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
774
774
|
t("p", null, n(a.company), 1),
|
|
775
775
|
t("p", null, n(a.addressLine1), 1),
|
|
776
776
|
t("p", null, n(a.addressLine2), 1),
|
|
777
|
-
a.addressLine3 ? (
|
|
777
|
+
a.addressLine3 ? (o(), i("p", Qt, n(a.addressLine3), 1)) : p("", !0)
|
|
778
778
|
]),
|
|
779
779
|
t("div", Zt, [
|
|
780
|
-
a.website ? (
|
|
780
|
+
a.website ? (o(), T(V, {
|
|
781
781
|
key: 0,
|
|
782
782
|
underline: "false",
|
|
783
783
|
"link-type": "regular"
|
|
@@ -789,8 +789,8 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
789
789
|
}, n(a.website), 9, Xt)
|
|
790
790
|
]),
|
|
791
791
|
_: 1
|
|
792
|
-
})) :
|
|
793
|
-
(
|
|
792
|
+
})) : p("", !0),
|
|
793
|
+
(o(!0), i(A, null, P(a.phoneNumbers, (s) => (o(), T(V, {
|
|
794
794
|
key: s,
|
|
795
795
|
underline: "false",
|
|
796
796
|
"link-type": "regular"
|
|
@@ -831,14 +831,14 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
831
831
|
}
|
|
832
832
|
},
|
|
833
833
|
setup(e) {
|
|
834
|
-
return (a, r) => (
|
|
834
|
+
return (a, r) => (o(), i("div", la, [
|
|
835
835
|
t("div", {
|
|
836
836
|
class: m(["bullet-list", e.variant])
|
|
837
837
|
}, [
|
|
838
838
|
t("ul", null, [
|
|
839
|
-
(
|
|
839
|
+
(o(!0), i(A, null, P(e.list, (s) => (o(), i("li", { key: s }, [
|
|
840
840
|
sa,
|
|
841
|
-
|
|
841
|
+
G(" " + n(s), 1)
|
|
842
842
|
]))), 128))
|
|
843
843
|
])
|
|
844
844
|
], 2)
|
|
@@ -884,8 +884,8 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
884
884
|
width: "596",
|
|
885
885
|
height: "335"
|
|
886
886
|
}
|
|
887
|
-
},
|
|
888
|
-
return (_, u) => (
|
|
887
|
+
}, l = e, c = C(() => s[l.size]);
|
|
888
|
+
return (_, u) => (o(), i("div", na, [
|
|
889
889
|
t("div", {
|
|
890
890
|
class: m(["card", [
|
|
891
891
|
_.theme === "dark" ? "card--dark" : "card--light",
|
|
@@ -898,7 +898,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
898
898
|
onMouseover: u[0] || (u[0] = (b) => de(r) ? r.value = !0 : r = !0),
|
|
899
899
|
onMouseout: u[1] || (u[1] = (b) => de(r) ? r.value = !1 : r = !1)
|
|
900
900
|
}, [
|
|
901
|
-
_.mediaType === "image" ? (
|
|
901
|
+
_.mediaType === "image" ? (o(), T(M, { key: 0 }, {
|
|
902
902
|
default: $(() => [
|
|
903
903
|
d(_.$slots, "card-image", ce({
|
|
904
904
|
src: _.imgSrc,
|
|
@@ -910,11 +910,11 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
910
910
|
}, { srcset: _.srcSet }))
|
|
911
911
|
]),
|
|
912
912
|
_: 3
|
|
913
|
-
})) : (
|
|
913
|
+
})) : (o(), i("div", {
|
|
914
914
|
key: 1,
|
|
915
915
|
class: m(["video-card__wrapper", I(r) === !0 ? "vimeoPlaying" : ""])
|
|
916
916
|
}, [
|
|
917
|
-
B(
|
|
917
|
+
B(X, {
|
|
918
918
|
play: I(r),
|
|
919
919
|
"local-video": !0,
|
|
920
920
|
src: _.videoSrc,
|
|
@@ -928,28 +928,28 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
928
928
|
muted: !0
|
|
929
929
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
930
930
|
], 2)),
|
|
931
|
-
I(a)["card-label"] ? (
|
|
931
|
+
I(a)["card-label"] ? (o(), i("div", da, [
|
|
932
932
|
d(_.$slots, "card-label")
|
|
933
|
-
])) :
|
|
934
|
-
_.variant === "product" ? (
|
|
933
|
+
])) : p("", !0),
|
|
934
|
+
_.variant === "product" ? (o(), i("div", {
|
|
935
935
|
key: 3,
|
|
936
936
|
class: m([
|
|
937
937
|
"card__headline",
|
|
938
938
|
_.theme === "dark" ? "regular-dark" : "regular-blue"
|
|
939
939
|
]),
|
|
940
940
|
style: { "font-weight": "700" }
|
|
941
|
-
}, n(_.headline), 3)) : (
|
|
941
|
+
}, n(_.headline), 3)) : (o(), i("div", {
|
|
942
942
|
key: 4,
|
|
943
943
|
class: m([
|
|
944
944
|
"card__headline",
|
|
945
945
|
_.theme === "dark" ? "regular-dark" : "regular-dark-blue"
|
|
946
946
|
])
|
|
947
947
|
}, n(_.headline), 3)),
|
|
948
|
-
_.variant === "product" ? (
|
|
948
|
+
_.variant === "product" ? (o(), i("p", ca, n(_.paragraph), 1)) : p("", !0)
|
|
949
949
|
], 38)
|
|
950
950
|
]));
|
|
951
951
|
}
|
|
952
|
-
}), _a = /* @__PURE__ */ f(ua, [["__scopeId", "data-v-351c5fbb"]]),
|
|
952
|
+
}), _a = /* @__PURE__ */ f(ua, [["__scopeId", "data-v-351c5fbb"]]), ha = (e) => (H("data-v-2c394add"), e = e(), R(), e), pa = { class: "event__wrapper" }, ma = { class: "event__headline" }, va = { class: "event__date-location" }, fa = /* @__PURE__ */ ha(() => /* @__PURE__ */ t("br", null, null, -1)), ga = { class: "event__exhibitor" }, ba = /* @__PURE__ */ g({
|
|
953
953
|
__name: "event-card",
|
|
954
954
|
props: {
|
|
955
955
|
eventType: {
|
|
@@ -974,16 +974,16 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
974
974
|
}
|
|
975
975
|
},
|
|
976
976
|
setup(e) {
|
|
977
|
-
return (a, r) => (
|
|
978
|
-
B(
|
|
977
|
+
return (a, r) => (o(), i("div", pa, [
|
|
978
|
+
B(Z, {
|
|
979
979
|
"label-dark": !1,
|
|
980
980
|
text: e.eventType ? e.eventType : ""
|
|
981
981
|
}, null, 8, ["text"]),
|
|
982
982
|
t("div", ma, n(e.headline), 1),
|
|
983
983
|
t("div", va, [
|
|
984
|
-
|
|
984
|
+
G(n(e.dateTime), 1),
|
|
985
985
|
fa,
|
|
986
|
-
|
|
986
|
+
G(n(e.location), 1)
|
|
987
987
|
]),
|
|
988
988
|
t("div", ga, n(e.exhibitor), 1)
|
|
989
989
|
]));
|
|
@@ -1005,8 +1005,8 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1005
1005
|
}
|
|
1006
1006
|
},
|
|
1007
1007
|
setup(e) {
|
|
1008
|
-
return (a, r) => (
|
|
1009
|
-
B(
|
|
1008
|
+
return (a, r) => (o(), i("div", $a, [
|
|
1009
|
+
B(Z, {
|
|
1010
1010
|
"label-dark": !1,
|
|
1011
1011
|
text: e.label ? e.label : ""
|
|
1012
1012
|
}, null, 8, ["text"]),
|
|
@@ -1036,17 +1036,17 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1036
1036
|
}
|
|
1037
1037
|
},
|
|
1038
1038
|
setup(e) {
|
|
1039
|
-
return (a, r) => (
|
|
1039
|
+
return (a, r) => (o(), i("div", {
|
|
1040
1040
|
class: m([
|
|
1041
1041
|
"card-display",
|
|
1042
1042
|
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1043
1043
|
])
|
|
1044
1044
|
}, [
|
|
1045
1045
|
t("div", Ia, [
|
|
1046
|
-
e.headline || e.paragraph ? (
|
|
1047
|
-
e.headline ? (
|
|
1048
|
-
e.paragraph ? (
|
|
1049
|
-
])) :
|
|
1046
|
+
e.headline || e.paragraph ? (o(), i("div", qa, [
|
|
1047
|
+
e.headline ? (o(), i("h2", La, n(e.headline), 1)) : p("", !0),
|
|
1048
|
+
e.paragraph ? (o(), i("p", Da, n(e.paragraph), 1)) : p("", !0)
|
|
1049
|
+
])) : p("", !0),
|
|
1050
1050
|
t("div", Ca, [
|
|
1051
1051
|
d(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1052
1052
|
])
|
|
@@ -1080,11 +1080,11 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1080
1080
|
}) }
|
|
1081
1081
|
},
|
|
1082
1082
|
setup(e) {
|
|
1083
|
-
return (a, r) => (
|
|
1083
|
+
return (a, r) => (o(), i("div", Aa, [
|
|
1084
1084
|
t("div", Pa, [
|
|
1085
1085
|
t("h2", Ma, n(a.headline), 1),
|
|
1086
1086
|
t("div", Oa, [
|
|
1087
|
-
(
|
|
1087
|
+
(o(!0), i(A, null, P(a.facts, (s) => (o(), i("div", {
|
|
1088
1088
|
key: s.value + s.metric,
|
|
1089
1089
|
class: "fact"
|
|
1090
1090
|
}, [
|
|
@@ -1096,7 +1096,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1096
1096
|
])
|
|
1097
1097
|
]))), 128))
|
|
1098
1098
|
]),
|
|
1099
|
-
a.link ? (
|
|
1099
|
+
a.link ? (o(), i("div", Ra, [
|
|
1100
1100
|
B(V, {
|
|
1101
1101
|
"link-type": "regular_light",
|
|
1102
1102
|
arrow: ""
|
|
@@ -1106,11 +1106,11 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1106
1106
|
]),
|
|
1107
1107
|
_: 3
|
|
1108
1108
|
})
|
|
1109
|
-
])) :
|
|
1109
|
+
])) : p("", !0)
|
|
1110
1110
|
])
|
|
1111
1111
|
]));
|
|
1112
1112
|
}
|
|
1113
|
-
}),
|
|
1113
|
+
}), za = /* @__PURE__ */ f(Ea, [["__scopeId", "data-v-d2b231d4"]]), Na = { class: "features__wrapper" }, ja = { class: "features__content" }, Ka = {
|
|
1114
1114
|
key: 0,
|
|
1115
1115
|
class: "features__headline"
|
|
1116
1116
|
}, Ua = {
|
|
@@ -1124,24 +1124,24 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1124
1124
|
elements: { default: () => [] }
|
|
1125
1125
|
},
|
|
1126
1126
|
setup(e) {
|
|
1127
|
-
return (a, r) => (
|
|
1127
|
+
return (a, r) => (o(), i("div", Na, [
|
|
1128
1128
|
t("div", ja, [
|
|
1129
|
-
a.headline ? (
|
|
1129
|
+
a.headline ? (o(), i("div", Ka, [
|
|
1130
1130
|
t("h2", null, n(a.headline), 1)
|
|
1131
|
-
])) :
|
|
1132
|
-
a.body ? (
|
|
1131
|
+
])) : p("", !0),
|
|
1132
|
+
a.body ? (o(), i("div", Ua, [
|
|
1133
1133
|
d(a.$slots, "features-body", {}, void 0, !0)
|
|
1134
|
-
])) :
|
|
1134
|
+
])) : p("", !0),
|
|
1135
1135
|
t("div", {
|
|
1136
1136
|
class: m(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1137
1137
|
}, [
|
|
1138
|
-
(
|
|
1138
|
+
(o(!0), i(A, null, P(a.elements, (s) => (o(), i("div", {
|
|
1139
1139
|
key: s.headline,
|
|
1140
1140
|
class: "features__element"
|
|
1141
1141
|
}, [
|
|
1142
1142
|
B(M, { class: "element__icon" }, {
|
|
1143
1143
|
default: $(() => [
|
|
1144
|
-
d(a.$slots, "features-icon", F(
|
|
1144
|
+
d(a.$slots, "features-icon", F(z({
|
|
1145
1145
|
src: s.icon.src,
|
|
1146
1146
|
height: 30,
|
|
1147
1147
|
width: 30,
|
|
@@ -1166,7 +1166,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1166
1166
|
}
|
|
1167
1167
|
},
|
|
1168
1168
|
setup(e) {
|
|
1169
|
-
return (a, r) => (
|
|
1169
|
+
return (a, r) => (o(), i("div", Qa, [
|
|
1170
1170
|
t("div", Za, [
|
|
1171
1171
|
t("div", Xa, [
|
|
1172
1172
|
t("h2", xa, n(e.headline), 1),
|
|
@@ -1197,7 +1197,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1197
1197
|
}
|
|
1198
1198
|
},
|
|
1199
1199
|
setup(e) {
|
|
1200
|
-
return (a, r) => (
|
|
1200
|
+
return (a, r) => (o(), i("div", lo, [
|
|
1201
1201
|
t("div", {
|
|
1202
1202
|
class: m({
|
|
1203
1203
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1210,7 +1210,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1210
1210
|
], 2)
|
|
1211
1211
|
]));
|
|
1212
1212
|
}
|
|
1213
|
-
}), ro = /* @__PURE__ */ f(io, [["__scopeId", "data-v-3ef1567e"]]), no = (e) => (H("data-v-22f9be13"), e = e(), R(), e), co = { class: "hero__wrapper" }, uo = { class: "hero__content" }, _o = { class: "hero__top" },
|
|
1213
|
+
}), ro = /* @__PURE__ */ f(io, [["__scopeId", "data-v-3ef1567e"]]), no = (e) => (H("data-v-22f9be13"), e = e(), R(), e), co = { class: "hero__wrapper" }, uo = { class: "hero__content" }, _o = { class: "hero__top" }, ho = { class: "hero__elements" }, po = { class: "hero__headline" }, mo = { class: "hero__link" }, vo = { class: "hero__video" }, fo = /* @__PURE__ */ no(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), go = { class: "hero__video__video" }, bo = { class: "hero__image" }, yo = /* @__PURE__ */ g({
|
|
1214
1214
|
__name: "hero",
|
|
1215
1215
|
props: {
|
|
1216
1216
|
headline: {
|
|
@@ -1219,11 +1219,11 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1219
1219
|
}
|
|
1220
1220
|
},
|
|
1221
1221
|
setup(e) {
|
|
1222
|
-
return (a, r) => (
|
|
1222
|
+
return (a, r) => (o(), i("div", co, [
|
|
1223
1223
|
t("div", uo, [
|
|
1224
1224
|
t("div", _o, [
|
|
1225
|
-
t("div",
|
|
1226
|
-
t("div",
|
|
1225
|
+
t("div", ho, [
|
|
1226
|
+
t("div", po, [
|
|
1227
1227
|
t("h1", null, n(e.headline), 1)
|
|
1228
1228
|
]),
|
|
1229
1229
|
t("div", mo, [
|
|
@@ -1275,12 +1275,12 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1275
1275
|
}
|
|
1276
1276
|
},
|
|
1277
1277
|
setup(e) {
|
|
1278
|
-
return (a, r) => (
|
|
1278
|
+
return (a, r) => (o(), i("div", ko, [
|
|
1279
1279
|
t("div", wo, [
|
|
1280
1280
|
t("div", So, [
|
|
1281
1281
|
B(M, null, {
|
|
1282
1282
|
default: $(() => [
|
|
1283
|
-
d(a.$slots, "image", F(
|
|
1283
|
+
d(a.$slots, "image", F(z({
|
|
1284
1284
|
width: 984,
|
|
1285
1285
|
height: e.fullHeight ? "100%" : 554,
|
|
1286
1286
|
src: e.src,
|
|
@@ -1321,34 +1321,34 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1321
1321
|
light: "gallery__wrapper--light",
|
|
1322
1322
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1323
1323
|
}, r = e, s = C(() => a[r.bgColor]);
|
|
1324
|
-
return (
|
|
1324
|
+
return (l, c) => (o(), i("div", {
|
|
1325
1325
|
class: m(["gallery__wrapper", s.value])
|
|
1326
1326
|
}, [
|
|
1327
1327
|
t("div", {
|
|
1328
1328
|
class: m([
|
|
1329
1329
|
"gallery__content",
|
|
1330
|
-
|
|
1330
|
+
l.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1331
1331
|
])
|
|
1332
1332
|
}, [
|
|
1333
1333
|
t("div", Lo, [
|
|
1334
|
-
|
|
1334
|
+
l.mediaLarge && l.mediaType === "image" ? (o(), i("div", Do, [
|
|
1335
1335
|
B(M, null, {
|
|
1336
1336
|
default: $(() => [
|
|
1337
|
-
d(
|
|
1337
|
+
d(l.$slots, "image-large", F(z({
|
|
1338
1338
|
width: 617,
|
|
1339
1339
|
height: 530,
|
|
1340
|
-
src:
|
|
1341
|
-
alt:
|
|
1340
|
+
src: l.mediaLarge.src,
|
|
1341
|
+
alt: l.mediaLarge.alt
|
|
1342
1342
|
})))
|
|
1343
1343
|
]),
|
|
1344
1344
|
_: 3
|
|
1345
1345
|
})
|
|
1346
|
-
])) :
|
|
1347
|
-
|
|
1348
|
-
B(
|
|
1349
|
-
src:
|
|
1346
|
+
])) : p("", !0),
|
|
1347
|
+
l.mediaLarge && l.mediaType === "video" ? (o(), i("div", Co, [
|
|
1348
|
+
B(X, {
|
|
1349
|
+
src: l.mediaLarge.src,
|
|
1350
1350
|
"local-video": "",
|
|
1351
|
-
"aria-label":
|
|
1351
|
+
"aria-label": l.mediaLarge.alt,
|
|
1352
1352
|
controls: !1,
|
|
1353
1353
|
height: "530",
|
|
1354
1354
|
width: "617",
|
|
@@ -1357,22 +1357,22 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1357
1357
|
muted: "",
|
|
1358
1358
|
play: ""
|
|
1359
1359
|
}, null, 8, ["src", "aria-label"])
|
|
1360
|
-
])) :
|
|
1360
|
+
])) : p("", !0)
|
|
1361
1361
|
]),
|
|
1362
1362
|
t("div", {
|
|
1363
|
-
style: le([
|
|
1363
|
+
style: le([l.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
1364
1364
|
class: m([
|
|
1365
1365
|
"gallery__small",
|
|
1366
|
-
|
|
1366
|
+
l.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1367
1367
|
])
|
|
1368
1368
|
}, [
|
|
1369
|
-
(
|
|
1369
|
+
(o(!0), i(A, null, P(l.mediaSmall, (_) => (o(), i("div", {
|
|
1370
1370
|
key: _.src + _.alt,
|
|
1371
1371
|
class: "image image--small"
|
|
1372
1372
|
}, [
|
|
1373
1373
|
B(M, null, {
|
|
1374
1374
|
default: $(() => [
|
|
1375
|
-
d(
|
|
1375
|
+
d(l.$slots, "image-small", F(z({
|
|
1376
1376
|
width: 328,
|
|
1377
1377
|
height: 246,
|
|
1378
1378
|
src: _.src,
|
|
@@ -1382,9 +1382,9 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1382
1382
|
_: 2
|
|
1383
1383
|
}, 1024)
|
|
1384
1384
|
]))), 128)),
|
|
1385
|
-
|
|
1386
|
-
t("p", null, n(
|
|
1387
|
-
])) :
|
|
1385
|
+
l.mediaSmall.length < 2 ? (o(), i("div", To, [
|
|
1386
|
+
t("p", null, n(l.body), 1)
|
|
1387
|
+
])) : p("", !0)
|
|
1388
1388
|
], 6)
|
|
1389
1389
|
], 2)
|
|
1390
1390
|
], 2));
|
|
@@ -1392,7 +1392,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1392
1392
|
}), Ao = /* @__PURE__ */ f(Vo, [["__scopeId", "data-v-0d271138"]]), Po = { class: "logo-wall__wrapper" }, Mo = { class: "logo-wall__content" }, Oo = {
|
|
1393
1393
|
key: 0,
|
|
1394
1394
|
class: "logo-wall__text"
|
|
1395
|
-
}, Fo = { key: 0 }, Ho = { key: 1 }, Ro = { class: "logo-wall__logos" }, Eo = { class: "logo-wall__link" },
|
|
1395
|
+
}, Fo = { key: 0 }, Ho = { key: 1 }, Ro = { class: "logo-wall__logos" }, Eo = { class: "logo-wall__link" }, zo = /* @__PURE__ */ g({
|
|
1396
1396
|
__name: "logo-wall",
|
|
1397
1397
|
props: {
|
|
1398
1398
|
headline: {
|
|
@@ -1410,20 +1410,20 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1410
1410
|
}
|
|
1411
1411
|
},
|
|
1412
1412
|
setup(e) {
|
|
1413
|
-
return (a, r) => (
|
|
1413
|
+
return (a, r) => (o(), i("div", Po, [
|
|
1414
1414
|
t("div", Mo, [
|
|
1415
|
-
e.headline || e.body ? (
|
|
1416
|
-
e.headline ? (
|
|
1417
|
-
e.body ? (
|
|
1418
|
-
])) :
|
|
1415
|
+
e.headline || e.body ? (o(), i("div", Oo, [
|
|
1416
|
+
e.headline ? (o(), i("h2", Fo, n(e.headline), 1)) : p("", !0),
|
|
1417
|
+
e.body ? (o(), i("p", Ho, n(e.body), 1)) : p("", !0)
|
|
1418
|
+
])) : p("", !0),
|
|
1419
1419
|
t("div", Ro, [
|
|
1420
|
-
(
|
|
1420
|
+
(o(!0), i(A, null, P(e.logos, (s) => (o(), i("div", {
|
|
1421
1421
|
key: s.src + s.alt,
|
|
1422
1422
|
class: "logo-wall__logo"
|
|
1423
1423
|
}, [
|
|
1424
1424
|
B(M, null, {
|
|
1425
1425
|
default: $(() => [
|
|
1426
|
-
d(a.$slots, "logo-wall-logo", F(
|
|
1426
|
+
d(a.$slots, "logo-wall-logo", F(z({
|
|
1427
1427
|
width: 130,
|
|
1428
1428
|
height: 130,
|
|
1429
1429
|
src: s.src,
|
|
@@ -1448,7 +1448,7 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1448
1448
|
])
|
|
1449
1449
|
]));
|
|
1450
1450
|
}
|
|
1451
|
-
}),
|
|
1451
|
+
}), No = /* @__PURE__ */ f(zo, [["__scopeId", "data-v-fd489289"]]), jo = { class: "micro-stories__top" }, Ko = {
|
|
1452
1452
|
key: 0,
|
|
1453
1453
|
class: "headline"
|
|
1454
1454
|
}, Uo = {
|
|
@@ -1467,26 +1467,26 @@ const qe = ["aria-label"], Le = /* @__PURE__ */ g({
|
|
|
1467
1467
|
blue: "micro-stories__wrapper--blue",
|
|
1468
1468
|
dark: "micro-stories__wrapper--dark"
|
|
1469
1469
|
}, r = C(() => a[s.bgColor]), s = e;
|
|
1470
|
-
return (
|
|
1470
|
+
return (l, c) => (o(), i("div", {
|
|
1471
1471
|
class: m(["micro-stories__wrapper", r.value])
|
|
1472
1472
|
}, [
|
|
1473
1473
|
t("div", jo, [
|
|
1474
|
-
|
|
1475
|
-
t("h2", null, n(
|
|
1476
|
-
])) :
|
|
1477
|
-
|
|
1478
|
-
t("p", null, n(
|
|
1479
|
-
])) :
|
|
1474
|
+
l.headline ? (o(), i("div", Ko, [
|
|
1475
|
+
t("h2", null, n(l.headline), 1)
|
|
1476
|
+
])) : p("", !0),
|
|
1477
|
+
l.body ? (o(), i("div", Uo, [
|
|
1478
|
+
t("p", null, n(l.body), 1)
|
|
1479
|
+
])) : p("", !0)
|
|
1480
1480
|
]),
|
|
1481
1481
|
t("div", Go, [
|
|
1482
|
-
d(
|
|
1482
|
+
d(l.$slots, "micro-stories-slides")
|
|
1483
1483
|
]),
|
|
1484
|
-
d(
|
|
1484
|
+
d(l.$slots, "micro-stories-controls")
|
|
1485
1485
|
], 2));
|
|
1486
1486
|
}
|
|
1487
1487
|
}), Wo = {}, Yo = { class: "policy__wrapper" }, Qo = { class: "policy__content" };
|
|
1488
1488
|
function Zo(e, a) {
|
|
1489
|
-
return
|
|
1489
|
+
return o(), i("div", Yo, [
|
|
1490
1490
|
t("div", Qo, [
|
|
1491
1491
|
d(e.$slots, "default", {}, void 0, !0)
|
|
1492
1492
|
])
|
|
@@ -1533,11 +1533,11 @@ const Xo = /* @__PURE__ */ f(Wo, [["render", Zo], ["__scopeId", "data-v-ea887d7a
|
|
|
1533
1533
|
}
|
|
1534
1534
|
},
|
|
1535
1535
|
setup(e) {
|
|
1536
|
-
return (a, r) => (
|
|
1536
|
+
return (a, r) => (o(), i("div", xo, [
|
|
1537
1537
|
t("div", el, [
|
|
1538
1538
|
t("div", tl, n(e.headline), 1),
|
|
1539
1539
|
t("div", al, [
|
|
1540
|
-
e.videoSrc !== "" ? (
|
|
1540
|
+
e.videoSrc !== "" ? (o(), T(X, {
|
|
1541
1541
|
key: 0,
|
|
1542
1542
|
play: "",
|
|
1543
1543
|
"local-video": !0,
|
|
@@ -1548,29 +1548,29 @@ const Xo = /* @__PURE__ */ f(Wo, [["render", Zo], ["__scopeId", "data-v-ea887d7a
|
|
|
1548
1548
|
autoplay: "",
|
|
1549
1549
|
loop: "",
|
|
1550
1550
|
muted: ""
|
|
1551
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (
|
|
1551
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (o(), T(I(M), { key: 1 }, {
|
|
1552
1552
|
default: $(() => [
|
|
1553
1553
|
d(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1554
1554
|
]),
|
|
1555
1555
|
_: 3
|
|
1556
1556
|
})),
|
|
1557
1557
|
t("div", ol, [
|
|
1558
|
-
e.logoSrc ? (
|
|
1558
|
+
e.logoSrc ? (o(), i("div", ll, [
|
|
1559
1559
|
B(I(M), null, {
|
|
1560
1560
|
default: $(() => [
|
|
1561
1561
|
d(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1562
1562
|
]),
|
|
1563
1563
|
_: 3
|
|
1564
1564
|
})
|
|
1565
|
-
])) :
|
|
1566
|
-
e.isCertified ? (
|
|
1565
|
+
])) : p("", !0),
|
|
1566
|
+
e.isCertified ? (o(), i("div", sl, [
|
|
1567
1567
|
B(I(M), null, {
|
|
1568
1568
|
default: $(() => [
|
|
1569
1569
|
d(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1570
1570
|
]),
|
|
1571
1571
|
_: 3
|
|
1572
1572
|
})
|
|
1573
|
-
])) :
|
|
1573
|
+
])) : p("", !0)
|
|
1574
1574
|
])
|
|
1575
1575
|
])
|
|
1576
1576
|
])
|
|
@@ -1597,91 +1597,91 @@ const Xo = /* @__PURE__ */ f(Wo, [["render", Zo], ["__scopeId", "data-v-ea887d7a
|
|
|
1597
1597
|
light: "promo__wrapper--light",
|
|
1598
1598
|
default: "promo__wrapper--default"
|
|
1599
1599
|
}, r = e, s = C(() => a[r.variant]);
|
|
1600
|
-
return (
|
|
1600
|
+
return (l, c) => (o(), i("div", {
|
|
1601
1601
|
class: m([
|
|
1602
1602
|
"promo__wrapper",
|
|
1603
1603
|
s.value,
|
|
1604
|
-
|
|
1605
|
-
|
|
1604
|
+
l.teaser ? "promo__wrapper--teaser" : "",
|
|
1605
|
+
l.multiply ? "promo__wrapper--multiply" : ""
|
|
1606
1606
|
])
|
|
1607
1607
|
}, [
|
|
1608
1608
|
t("div", nl, [
|
|
1609
|
-
|
|
1609
|
+
l.mediaType === "image" ? (o(), i("div", {
|
|
1610
1610
|
key: 0,
|
|
1611
1611
|
class: m([
|
|
1612
1612
|
"promo__image",
|
|
1613
|
-
|
|
1613
|
+
l.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1614
1614
|
])
|
|
1615
1615
|
}, [
|
|
1616
1616
|
B(M, null, {
|
|
1617
1617
|
default: $(() => [
|
|
1618
|
-
d(
|
|
1618
|
+
d(l.$slots, "promo-image", F(z({ src: l.src, width: 1920, alt: l.alt, height: 1080 })))
|
|
1619
1619
|
]),
|
|
1620
1620
|
_: 3
|
|
1621
1621
|
})
|
|
1622
|
-
], 2)) :
|
|
1623
|
-
|
|
1622
|
+
], 2)) : p("", !0),
|
|
1623
|
+
l.mediaType === "video" ? (o(), i("div", {
|
|
1624
1624
|
key: 1,
|
|
1625
1625
|
class: m([
|
|
1626
1626
|
"promo__video",
|
|
1627
|
-
|
|
1627
|
+
l.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1628
1628
|
])
|
|
1629
1629
|
}, [
|
|
1630
|
-
B(
|
|
1631
|
-
src:
|
|
1630
|
+
B(X, {
|
|
1631
|
+
src: l.src,
|
|
1632
1632
|
"local-video": "",
|
|
1633
|
-
"aria-label":
|
|
1633
|
+
"aria-label": l.alt,
|
|
1634
1634
|
controls: !1,
|
|
1635
1635
|
autoplay: "",
|
|
1636
1636
|
loop: "",
|
|
1637
1637
|
muted: "",
|
|
1638
1638
|
play: "",
|
|
1639
|
-
poster:
|
|
1639
|
+
poster: l.fallbackImage
|
|
1640
1640
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1641
|
-
], 2)) :
|
|
1641
|
+
], 2)) : p("", !0),
|
|
1642
1642
|
t("div", {
|
|
1643
1643
|
class: m([
|
|
1644
1644
|
"promo__text",
|
|
1645
|
-
|
|
1645
|
+
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1646
1646
|
])
|
|
1647
1647
|
}, [
|
|
1648
|
-
|
|
1648
|
+
l.label ? (o(), T(Z, {
|
|
1649
1649
|
key: 0,
|
|
1650
|
-
text:
|
|
1651
|
-
"label-dark":
|
|
1652
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
1650
|
+
text: l.label,
|
|
1651
|
+
"label-dark": l.variant === "dark"
|
|
1652
|
+
}, null, 8, ["text", "label-dark"])) : p("", !0),
|
|
1653
1653
|
t("div", {
|
|
1654
1654
|
class: m([
|
|
1655
1655
|
"promo__title",
|
|
1656
|
-
|
|
1656
|
+
l.variant === "dark" ? "promo__title--dark" : ""
|
|
1657
1657
|
])
|
|
1658
1658
|
}, [
|
|
1659
|
-
d(
|
|
1659
|
+
d(l.$slots, "promo-headline")
|
|
1660
1660
|
], 2),
|
|
1661
|
-
|
|
1661
|
+
l.linkType === "link" ? (o(), T(V, {
|
|
1662
1662
|
key: 1,
|
|
1663
|
-
"link-type":
|
|
1663
|
+
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
1664
1664
|
arrow: ""
|
|
1665
1665
|
}, {
|
|
1666
1666
|
default: $(() => [
|
|
1667
|
-
d(
|
|
1667
|
+
d(l.$slots, "promo-link")
|
|
1668
1668
|
]),
|
|
1669
1669
|
_: 3
|
|
1670
|
-
}, 8, ["link-type"])) :
|
|
1671
|
-
|
|
1670
|
+
}, 8, ["link-type"])) : p("", !0),
|
|
1671
|
+
l.linkType === "button" ? (o(), T(V, {
|
|
1672
1672
|
key: 2,
|
|
1673
|
-
"link-type":
|
|
1673
|
+
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
1674
1674
|
}, {
|
|
1675
1675
|
default: $(() => [
|
|
1676
|
-
d(
|
|
1676
|
+
d(l.$slots, "promo-link")
|
|
1677
1677
|
]),
|
|
1678
1678
|
_: 3
|
|
1679
|
-
}, 8, ["link-type"])) :
|
|
1679
|
+
}, 8, ["link-type"])) : p("", !0)
|
|
1680
1680
|
], 2)
|
|
1681
1681
|
])
|
|
1682
1682
|
], 2));
|
|
1683
1683
|
}
|
|
1684
|
-
}), cl = /* @__PURE__ */ f(dl, [["__scopeId", "data-v-df54d965"]]), ul = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), _l = { class: "quote__wrapper" },
|
|
1684
|
+
}), cl = /* @__PURE__ */ f(dl, [["__scopeId", "data-v-df54d965"]]), ul = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), _l = { class: "quote__wrapper" }, hl = { class: "quote__content" }, pl = /* @__PURE__ */ ul(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), ml = { class: "quote__quote" }, vl = { class: "quote__quote-text" }, fl = { class: "quote__author" }, gl = {
|
|
1685
1685
|
key: 0,
|
|
1686
1686
|
class: "quote__image"
|
|
1687
1687
|
}, bl = { class: "quote__text" }, yl = { class: "quote__author-name" }, $l = { class: "quote__author-title" }, kl = /* @__PURE__ */ g({
|
|
@@ -1706,16 +1706,16 @@ const Xo = /* @__PURE__ */ f(Wo, [["render", Zo], ["__scopeId", "data-v-ea887d7a
|
|
|
1706
1706
|
}
|
|
1707
1707
|
},
|
|
1708
1708
|
setup(e) {
|
|
1709
|
-
return (a, r) => (
|
|
1710
|
-
t("div",
|
|
1711
|
-
|
|
1709
|
+
return (a, r) => (o(), i("div", _l, [
|
|
1710
|
+
t("div", hl, [
|
|
1711
|
+
pl,
|
|
1712
1712
|
t("div", ml, [
|
|
1713
1713
|
t("p", vl, n(e.quote), 1),
|
|
1714
1714
|
t("div", fl, [
|
|
1715
|
-
e.authorImage ? (
|
|
1715
|
+
e.authorImage ? (o(), i("div", gl, [
|
|
1716
1716
|
B(M, null, {
|
|
1717
1717
|
default: $(() => [
|
|
1718
|
-
d(a.$slots, "author-image", F(
|
|
1718
|
+
d(a.$slots, "author-image", F(z({
|
|
1719
1719
|
src: e.authorImage + "/m/100x100",
|
|
1720
1720
|
width: 60,
|
|
1721
1721
|
height: 60
|
|
@@ -1723,7 +1723,7 @@ const Xo = /* @__PURE__ */ f(Wo, [["render", Zo], ["__scopeId", "data-v-ea887d7a
|
|
|
1723
1723
|
]),
|
|
1724
1724
|
_: 3
|
|
1725
1725
|
})
|
|
1726
|
-
])) :
|
|
1726
|
+
])) : p("", !0),
|
|
1727
1727
|
t("div", bl, [
|
|
1728
1728
|
t("p", yl, n(e.author), 1),
|
|
1729
1729
|
t("p", $l, n(e.authorTitle), 1)
|
|
@@ -1752,25 +1752,25 @@ const Xo = /* @__PURE__ */ f(Wo, [["render", Zo], ["__scopeId", "data-v-ea887d7a
|
|
|
1752
1752
|
label: { default: "" }
|
|
1753
1753
|
},
|
|
1754
1754
|
setup(e) {
|
|
1755
|
-
return (a, r) => (
|
|
1755
|
+
return (a, r) => (o(), i("div", {
|
|
1756
1756
|
class: m([
|
|
1757
1757
|
"rich-text",
|
|
1758
1758
|
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1759
1759
|
])
|
|
1760
1760
|
}, [
|
|
1761
1761
|
t("div", Sl, [
|
|
1762
|
-
a.label ? (
|
|
1762
|
+
a.label ? (o(), T(Z, {
|
|
1763
1763
|
key: 0,
|
|
1764
1764
|
text: a.label,
|
|
1765
1765
|
"label-dark": !1
|
|
1766
|
-
}, null, 8, ["text"])) :
|
|
1767
|
-
a.headline ? (
|
|
1766
|
+
}, null, 8, ["text"])) : p("", !0),
|
|
1767
|
+
a.headline ? (o(), i("h2", {
|
|
1768
1768
|
key: 1,
|
|
1769
1769
|
class: m([
|
|
1770
1770
|
"rich-text__headline",
|
|
1771
1771
|
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
1772
1772
|
])
|
|
1773
|
-
}, n(a.headline), 3)) :
|
|
1773
|
+
}, n(a.headline), 3)) : p("", !0),
|
|
1774
1774
|
t("div", {
|
|
1775
1775
|
class: m([
|
|
1776
1776
|
"rich-text__content",
|
|
@@ -1784,14 +1784,14 @@ const Xo = /* @__PURE__ */ f(Wo, [["render", Zo], ["__scopeId", "data-v-ea887d7a
|
|
|
1784
1784
|
])
|
|
1785
1785
|
}, [
|
|
1786
1786
|
d(a.$slots, "rich-text-content"),
|
|
1787
|
-
a.links ? (
|
|
1787
|
+
a.links ? (o(), i("div", Bl, [
|
|
1788
1788
|
d(a.$slots, "rich-text-links")
|
|
1789
|
-
])) :
|
|
1789
|
+
])) : p("", !0)
|
|
1790
1790
|
], 2),
|
|
1791
|
-
a.bulletList ? (
|
|
1791
|
+
a.bulletList ? (o(), i("div", Il, [
|
|
1792
1792
|
d(a.$slots, "rich-text-bullet-list")
|
|
1793
|
-
])) :
|
|
1794
|
-
a.image ? (
|
|
1793
|
+
])) : p("", !0),
|
|
1794
|
+
a.image ? (o(), i("div", {
|
|
1795
1795
|
key: 1,
|
|
1796
1796
|
class: m([
|
|
1797
1797
|
"rich-text__image",
|
|
@@ -1800,18 +1800,18 @@ const Xo = /* @__PURE__ */ f(Wo, [["render", Zo], ["__scopeId", "data-v-ea887d7a
|
|
|
1800
1800
|
}, [
|
|
1801
1801
|
B(M, null, {
|
|
1802
1802
|
default: $(() => [
|
|
1803
|
-
d(a.$slots, "rich-text-image", F(
|
|
1803
|
+
d(a.$slots, "rich-text-image", F(z({ width: 865, height: 307 })))
|
|
1804
1804
|
]),
|
|
1805
1805
|
_: 3
|
|
1806
1806
|
})
|
|
1807
|
-
], 2)) :
|
|
1807
|
+
], 2)) : p("", !0)
|
|
1808
1808
|
], 2)
|
|
1809
1809
|
])
|
|
1810
1810
|
], 2));
|
|
1811
1811
|
}
|
|
1812
1812
|
}), Ll = /* @__PURE__ */ f(ql, [["__scopeId", "data-v-16ba7206"]]), Dl = {}, Cl = { class: "rich-text" }, Tl = { class: "rich-text__wrapper" }, Vl = { class: "rich-text__content rich-text__content--left-aligned" }, Al = { class: "rich-text__body" };
|
|
1813
1813
|
function Pl(e, a) {
|
|
1814
|
-
return
|
|
1814
|
+
return o(), i("div", Cl, [
|
|
1815
1815
|
t("div", Tl, [
|
|
1816
1816
|
t("div", Vl, [
|
|
1817
1817
|
t("div", Al, [
|
|
@@ -1826,10 +1826,10 @@ function Pl(e, a) {
|
|
|
1826
1826
|
])
|
|
1827
1827
|
]);
|
|
1828
1828
|
}
|
|
1829
|
-
const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040"]]), Ol = (e) => (H("data-v-e254e1e0"), e = e(), R(), e), Fl = { class: "timeline__wrapper" }, Hl = { class: "timeline__content" }, Rl = { class: "timeline__items" }, El = { class: "item__left" },
|
|
1829
|
+
const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040"]]), Ol = (e) => (H("data-v-e254e1e0"), e = e(), R(), e), Fl = { class: "timeline__wrapper" }, Hl = { class: "timeline__content" }, Rl = { class: "timeline__items" }, El = { class: "item__left" }, zl = /* @__PURE__ */ Ol(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
1830
1830
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
1831
1831
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
1832
|
-
], -1)),
|
|
1832
|
+
], -1)), Nl = { class: "item__right" }, jl = ["innerHTML"], Kl = /* @__PURE__ */ g({
|
|
1833
1833
|
__name: "timeline",
|
|
1834
1834
|
props: {
|
|
1835
1835
|
timelineItems: {
|
|
@@ -1841,8 +1841,8 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
1841
1841
|
return me(() => {
|
|
1842
1842
|
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
1843
1843
|
(s) => {
|
|
1844
|
-
s.forEach((
|
|
1845
|
-
|
|
1844
|
+
s.forEach((l) => {
|
|
1845
|
+
l.isIntersecting && (l.target.classList.add("visible"), l.target.classList.remove("faded"), r.unobserve(l.target));
|
|
1846
1846
|
});
|
|
1847
1847
|
},
|
|
1848
1848
|
{
|
|
@@ -1852,19 +1852,19 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
1852
1852
|
a.forEach((s) => {
|
|
1853
1853
|
r.observe(s);
|
|
1854
1854
|
});
|
|
1855
|
-
}), (a, r) => (
|
|
1855
|
+
}), (a, r) => (o(), i("div", Fl, [
|
|
1856
1856
|
t("div", Hl, [
|
|
1857
1857
|
t("div", Rl, [
|
|
1858
|
-
(
|
|
1858
|
+
(o(!0), i(A, null, P(e.timelineItems, (s) => (o(), i("div", {
|
|
1859
1859
|
key: s.year,
|
|
1860
1860
|
class: "timeline__item faded"
|
|
1861
1861
|
}, [
|
|
1862
1862
|
t("div", El, n(s.year), 1),
|
|
1863
|
-
|
|
1864
|
-
t("div",
|
|
1863
|
+
zl,
|
|
1864
|
+
t("div", Nl, [
|
|
1865
1865
|
B(M, null, {
|
|
1866
1866
|
default: $(() => [
|
|
1867
|
-
s.media.src ? d(a.$slots, "timeline-image", F(ce({ key: 0 }, { src: s.media.src, alt: s.media.alt })), void 0, !0) :
|
|
1867
|
+
s.media.src ? d(a.$slots, "timeline-image", F(ce({ key: 0 }, { src: s.media.src, alt: s.media.alt })), void 0, !0) : p("", !0)
|
|
1868
1868
|
]),
|
|
1869
1869
|
_: 2
|
|
1870
1870
|
}, 1024),
|
|
@@ -1898,18 +1898,18 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
1898
1898
|
}
|
|
1899
1899
|
},
|
|
1900
1900
|
setup(e) {
|
|
1901
|
-
return (a, r) => (
|
|
1901
|
+
return (a, r) => (o(), i("div", Gl, [
|
|
1902
1902
|
t("div", Jl, [
|
|
1903
|
-
e.headline ? (
|
|
1903
|
+
e.headline ? (o(), i("h2", Wl, n(e.headline), 1)) : p("", !0),
|
|
1904
1904
|
d(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
1905
|
-
e.description ? (
|
|
1905
|
+
e.description ? (o(), i("p", Yl, n(e.description), 1)) : p("", !0)
|
|
1906
1906
|
])
|
|
1907
1907
|
]));
|
|
1908
1908
|
}
|
|
1909
1909
|
}), Zl = /* @__PURE__ */ f(Ql, [["__scopeId", "data-v-90a2b109"]]), Xl = { class: "academy-overview" }, xl = { class: "academy-overview__content-wrapper" }, es = { class: "academy-overview__content" }, ts = { class: "academy-overview__title" }, as = { class: "academy-overview__description" }, os = {
|
|
1910
1910
|
key: 0,
|
|
1911
1911
|
class: "academy-overview__stats"
|
|
1912
|
-
}, ls = { class: "academy-overview__stats-row" }, ss = { class: "academy-overview__stat" }, is = { class: "academy-overview__value" }, rs = { class: "academy-overview__label" }, ns = { class: "academy-overview__stat" }, ds = { class: "academy-overview__value" }, cs = { class: "academy-overview__label" }, us = { class: "academy-overview__stat" }, _s = { class: "academy-overview__value" },
|
|
1912
|
+
}, ls = { class: "academy-overview__stats-row" }, ss = { class: "academy-overview__stat" }, is = { class: "academy-overview__value" }, rs = { class: "academy-overview__label" }, ns = { class: "academy-overview__stat" }, ds = { class: "academy-overview__value" }, cs = { class: "academy-overview__label" }, us = { class: "academy-overview__stat" }, _s = { class: "academy-overview__value" }, hs = { class: "academy-overview__label" }, ps = {
|
|
1913
1913
|
key: 1,
|
|
1914
1914
|
class: "academy-overview__button-wrapper"
|
|
1915
1915
|
}, ms = /* @__PURE__ */ g({
|
|
@@ -1928,12 +1928,12 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
1928
1928
|
}) }
|
|
1929
1929
|
},
|
|
1930
1930
|
setup(e) {
|
|
1931
|
-
return (a, r) => (
|
|
1931
|
+
return (a, r) => (o(), i("div", Xl, [
|
|
1932
1932
|
t("div", xl, [
|
|
1933
1933
|
t("div", es, [
|
|
1934
1934
|
t("h1", ts, n(a.hero.headline), 1),
|
|
1935
1935
|
t("p", as, n(a.hero.description), 1),
|
|
1936
|
-
a.hero.showStats ? (
|
|
1936
|
+
a.hero.showStats ? (o(), i("div", os, [
|
|
1937
1937
|
t("div", ls, [
|
|
1938
1938
|
t("div", ss, [
|
|
1939
1939
|
t("div", is, n(a.hero.lessonValue), 1),
|
|
@@ -1945,11 +1945,11 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
1945
1945
|
]),
|
|
1946
1946
|
t("div", us, [
|
|
1947
1947
|
t("div", _s, n(a.hero.pointsValue), 1),
|
|
1948
|
-
t("div",
|
|
1948
|
+
t("div", hs, n(a.hero.pointsLabel), 1)
|
|
1949
1949
|
])
|
|
1950
1950
|
])
|
|
1951
|
-
])) :
|
|
1952
|
-
a.hero.showStats ?
|
|
1951
|
+
])) : p("", !0),
|
|
1952
|
+
a.hero.showStats ? p("", !0) : (o(), i("div", ps, [
|
|
1953
1953
|
d(a.$slots, "button", {}, void 0, !0)
|
|
1954
1954
|
]))
|
|
1955
1955
|
])
|
|
@@ -1965,7 +1965,7 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
1965
1965
|
}
|
|
1966
1966
|
},
|
|
1967
1967
|
setup(e) {
|
|
1968
|
-
return (a, r) => (
|
|
1968
|
+
return (a, r) => (o(), i("div", fs, [
|
|
1969
1969
|
t("div", gs, [
|
|
1970
1970
|
t("h1", bs, n(e.headline), 1),
|
|
1971
1971
|
t("div", ys, [
|
|
@@ -1988,29 +1988,51 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
1988
1988
|
},
|
|
1989
1989
|
emits: ["clearFilters"],
|
|
1990
1990
|
setup(e) {
|
|
1991
|
-
return (a, r) => (
|
|
1991
|
+
return (a, r) => (o(), i("div", ws, [
|
|
1992
1992
|
t("div", Ss, [
|
|
1993
1993
|
t("div", Bs, [
|
|
1994
1994
|
d(a.$slots, "filter-dropdowns")
|
|
1995
1995
|
]),
|
|
1996
1996
|
t("div", Is, [
|
|
1997
1997
|
d(a.$slots, "filter-chips"),
|
|
1998
|
-
e.hasChips ? (
|
|
1998
|
+
e.hasChips ? (o(), i("button", {
|
|
1999
1999
|
key: 0,
|
|
2000
2000
|
class: "filter__clear",
|
|
2001
2001
|
onClick: r[0] || (r[0] = (s) => a.$emit("clearFilters"))
|
|
2002
|
-
}, n(e.removeAll), 1)) :
|
|
2002
|
+
}, n(e.removeAll), 1)) : p("", !0)
|
|
2003
2003
|
])
|
|
2004
2004
|
])
|
|
2005
2005
|
]));
|
|
2006
2006
|
}
|
|
2007
|
-
}), Ls = /* @__PURE__ */ f(qs, [["__scopeId", "data-v-31c1ba00"]]),
|
|
2007
|
+
}), Ls = /* @__PURE__ */ f(qs, [["__scopeId", "data-v-31c1ba00"]]), x = (e) => (H("data-v-f7524816"), e = e(), R(), e), Ds = { class: "footer__wrapper" }, Cs = { class: "footer__content" }, Ts = {
|
|
2008
|
+
key: 0,
|
|
2009
|
+
src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
|
|
2010
|
+
style: { margin: "0 auto" }
|
|
2011
|
+
}, Vs = { class: "footer__sections" }, As = { class: "section__title" }, Ps = { class: "section__list" }, Ms = { class: "section" }, Os = {
|
|
2012
|
+
key: 0,
|
|
2013
|
+
class: "section__title"
|
|
2014
|
+
}, Fs = {
|
|
2015
|
+
key: 1,
|
|
2016
|
+
class: "section__title"
|
|
2017
|
+
}, Hs = /* @__PURE__ */ x(() => /* @__PURE__ */ t("span", null, "Energivej 51", -1)), Rs = /* @__PURE__ */ x(() => /* @__PURE__ */ t("span", null, "5260 Odense S", -1)), Es = /* @__PURE__ */ x(() => /* @__PURE__ */ t("span", null, "CVR: 35251235", -1)), zs = /* @__PURE__ */ x(() => /* @__PURE__ */ t("br", null, null, -1)), Ns = {
|
|
2018
|
+
key: 0,
|
|
2019
|
+
href: "mailto:china@mir-robots.com"
|
|
2020
|
+
}, js = {
|
|
2021
|
+
key: 1,
|
|
2022
|
+
href: "mailto:mail@mir-robots.com"
|
|
2023
|
+
}, Ks = {
|
|
2024
|
+
key: 0,
|
|
2025
|
+
href: "tel:+8613661856951"
|
|
2026
|
+
}, Us = {
|
|
2027
|
+
key: 1,
|
|
2028
|
+
href: "tel:+4520377577"
|
|
2029
|
+
}, Gs = { class: "footer__bottom" }, Js = { class: "copyright" }, Ws = { class: "footer__policy" }, Ys = /* @__PURE__ */ x(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), Qs = {
|
|
2008
2030
|
key: 0,
|
|
2009
2031
|
class: "footer__social"
|
|
2010
|
-
},
|
|
2032
|
+
}, Zs = ["href", "aria-label"], Xs = {
|
|
2011
2033
|
key: 1,
|
|
2012
2034
|
class: "footer__social"
|
|
2013
|
-
},
|
|
2035
|
+
}, xs = ["href", "aria-label"], ei = /* @__PURE__ */ g({
|
|
2014
2036
|
__name: "footer",
|
|
2015
2037
|
props: {
|
|
2016
2038
|
language: { default: "" },
|
|
@@ -2023,36 +2045,37 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2023
2045
|
},
|
|
2024
2046
|
emits: ["changeRegionClicked"],
|
|
2025
2047
|
setup(e) {
|
|
2026
|
-
return (a, r) => (
|
|
2048
|
+
return (a, r) => (o(), i("div", Ds, [
|
|
2027
2049
|
t("footer", Cs, [
|
|
2028
|
-
|
|
2029
|
-
|
|
2050
|
+
a.language === "zh" ? (o(), i("img", Ts)) : p("", !0),
|
|
2051
|
+
t("div", Vs, [
|
|
2052
|
+
(o(!0), i(A, null, P(a.footerSections, (s) => (o(), i("div", {
|
|
2030
2053
|
key: s.title,
|
|
2031
2054
|
class: "section"
|
|
2032
2055
|
}, [
|
|
2033
|
-
t("span",
|
|
2056
|
+
t("span", As, n(s.title), 1),
|
|
2034
2057
|
t("nav", null, [
|
|
2035
|
-
t("ul",
|
|
2058
|
+
t("ul", Ps, [
|
|
2036
2059
|
d(a.$slots, "section-links", {
|
|
2037
2060
|
links: s.links
|
|
2038
2061
|
})
|
|
2039
2062
|
])
|
|
2040
2063
|
])
|
|
2041
2064
|
]))), 128)),
|
|
2042
|
-
t("div",
|
|
2043
|
-
|
|
2065
|
+
t("div", Ms, [
|
|
2066
|
+
a.language === "zh" ? (o(), i("span", Os, "名傲移动机器人(上海)有限公司")) : (o(), i("span", Fs, "Mobile Industrial Robots A/S")),
|
|
2044
2067
|
t("address", null, [
|
|
2045
|
-
Os,
|
|
2046
|
-
Fs,
|
|
2047
2068
|
Hs,
|
|
2048
2069
|
Rs,
|
|
2070
|
+
Es,
|
|
2071
|
+
zs,
|
|
2049
2072
|
B(V, {
|
|
2050
2073
|
class: "footer__contact",
|
|
2051
2074
|
"link-type": "regular_light",
|
|
2052
2075
|
underline: "false"
|
|
2053
2076
|
}, {
|
|
2054
2077
|
default: $(() => [
|
|
2055
|
-
|
|
2078
|
+
a.language === "zh" ? (o(), i("a", Ns, "china@mir-robots.com")) : (o(), i("a", js, "mail@mir-robots.com"))
|
|
2056
2079
|
]),
|
|
2057
2080
|
_: 1
|
|
2058
2081
|
}),
|
|
@@ -2062,30 +2085,30 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2062
2085
|
underline: "false"
|
|
2063
2086
|
}, {
|
|
2064
2087
|
default: $(() => [
|
|
2065
|
-
|
|
2088
|
+
a.language === "zh" ? (o(), i("a", Ks, "+86 13661856951(微信同号)")) : (o(), i("a", Us, "+45 20 377 577"))
|
|
2066
2089
|
]),
|
|
2067
2090
|
_: 1
|
|
2068
2091
|
})
|
|
2069
2092
|
])
|
|
2070
2093
|
])
|
|
2071
2094
|
]),
|
|
2072
|
-
t("div",
|
|
2073
|
-
t("p",
|
|
2074
|
-
t("div",
|
|
2095
|
+
t("div", Gs, [
|
|
2096
|
+
t("p", Js, " © Mobile Industrial Robots " + n((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2097
|
+
t("div", Ws, [
|
|
2075
2098
|
t("button", {
|
|
2076
2099
|
class: "footer__language-switcher",
|
|
2077
2100
|
onClick: r[0] || (r[0] = (s) => a.$emit("changeRegionClicked"))
|
|
2078
2101
|
}, [
|
|
2079
2102
|
t("span", null, [
|
|
2080
|
-
|
|
2081
|
-
|
|
2103
|
+
Ys,
|
|
2104
|
+
G(n(a.changeRegion), 1)
|
|
2082
2105
|
])
|
|
2083
2106
|
]),
|
|
2084
2107
|
d(a.$slots, "footer-privacy-link"),
|
|
2085
2108
|
d(a.$slots, "footer-cookie-link")
|
|
2086
2109
|
]),
|
|
2087
|
-
a.language !== "zh" ? (
|
|
2088
|
-
(
|
|
2110
|
+
a.language !== "zh" ? (o(), i("div", Qs, [
|
|
2111
|
+
(o(!0), i(A, null, P(a.socialMedia, (s) => (o(), T(V, {
|
|
2089
2112
|
key: s.title,
|
|
2090
2113
|
underline: "false",
|
|
2091
2114
|
"link-type": "regular"
|
|
@@ -2101,12 +2124,12 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2101
2124
|
height: "14",
|
|
2102
2125
|
class: m(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
2103
2126
|
}, null, 2)
|
|
2104
|
-
], 8,
|
|
2127
|
+
], 8, Zs)
|
|
2105
2128
|
]),
|
|
2106
2129
|
_: 2
|
|
2107
2130
|
}, 1024))), 128))
|
|
2108
|
-
])) : (
|
|
2109
|
-
(
|
|
2131
|
+
])) : (o(), i("div", Xs, [
|
|
2132
|
+
(o(!0), i(A, null, P(a.socialMediaChina, (s) => (o(), T(V, {
|
|
2110
2133
|
key: s.title,
|
|
2111
2134
|
underline: "false",
|
|
2112
2135
|
"link-type": "regular"
|
|
@@ -2122,7 +2145,7 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2122
2145
|
height: "14",
|
|
2123
2146
|
class: m(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
|
|
2124
2147
|
}, null, 2)
|
|
2125
|
-
], 8,
|
|
2148
|
+
], 8, xs)
|
|
2126
2149
|
]),
|
|
2127
2150
|
_: 2
|
|
2128
2151
|
}, 1024))), 128))
|
|
@@ -2131,51 +2154,51 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2131
2154
|
])
|
|
2132
2155
|
]));
|
|
2133
2156
|
}
|
|
2134
|
-
}),
|
|
2157
|
+
}), ti = /* @__PURE__ */ f(ei, [["__scopeId", "data-v-f7524816"]]), ge = (e) => (H("data-v-766d3c80"), e = e(), R(), e), ai = { class: "header__wrapper" }, oi = { class: "nav-wrapper" }, li = { class: "mir-link-logo" }, si = { class: "main-nav-items" }, ii = {
|
|
2135
2158
|
key: 0,
|
|
2136
2159
|
id: "menu-dropdown",
|
|
2137
2160
|
ref: "dropdownDiv"
|
|
2138
|
-
},
|
|
2161
|
+
}, ri = {
|
|
2139
2162
|
key: 0,
|
|
2140
2163
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2141
2164
|
alt: "dropdownarrow"
|
|
2142
|
-
},
|
|
2165
|
+
}, ni = {
|
|
2143
2166
|
key: 1,
|
|
2144
2167
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2145
2168
|
alt: "dropdownarrow",
|
|
2146
2169
|
style: { transform: "rotate(180deg)" }
|
|
2147
|
-
},
|
|
2170
|
+
}, di = { class: "dropdown-content" }, ci = {
|
|
2148
2171
|
key: 1,
|
|
2149
2172
|
class: "nav-search-wrapper"
|
|
2150
|
-
},
|
|
2173
|
+
}, ui = ["src"], _i = {
|
|
2151
2174
|
key: 2,
|
|
2152
2175
|
id: "menu-portal-switcher",
|
|
2153
2176
|
class: "portal-switcher-wrapper"
|
|
2154
|
-
},
|
|
2177
|
+
}, hi = /* @__PURE__ */ ge(() => /* @__PURE__ */ t("img", {
|
|
2155
2178
|
src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
|
|
2156
2179
|
alt: "portalswitchericon",
|
|
2157
2180
|
width: "15",
|
|
2158
2181
|
height: "15"
|
|
2159
|
-
}, null, -1)),
|
|
2160
|
-
|
|
2161
|
-
],
|
|
2182
|
+
}, null, -1)), pi = [
|
|
2183
|
+
hi
|
|
2184
|
+
], mi = { class: "portal-switcher-content" }, vi = { class: "portal-switcher-links" }, fi = ["href"], gi = ["src"], bi = {
|
|
2162
2185
|
key: 3,
|
|
2163
2186
|
id: "menu-profile-dropdown",
|
|
2164
2187
|
class: "profile-dropdown-wrapper"
|
|
2165
|
-
},
|
|
2188
|
+
}, yi = {
|
|
2166
2189
|
key: 0,
|
|
2167
2190
|
class: "profile-dropdown-sign-in"
|
|
2168
|
-
},
|
|
2191
|
+
}, $i = /* @__PURE__ */ ge(() => /* @__PURE__ */ t("img", {
|
|
2169
2192
|
src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
|
|
2170
2193
|
alt: "profiledropdownicon",
|
|
2171
2194
|
width: "15",
|
|
2172
2195
|
height: "15"
|
|
2173
|
-
}, null, -1)),
|
|
2174
|
-
|
|
2175
|
-
],
|
|
2196
|
+
}, null, -1)), ki = [
|
|
2197
|
+
$i
|
|
2198
|
+
], wi = { class: "profile-dropdown-content" }, Si = { class: "mobile-logo-search-burger-wrapper" }, Bi = { class: "mobile-mir-link-logo" }, Ii = {
|
|
2176
2199
|
key: 0,
|
|
2177
2200
|
class: "mobile-search-wrapper"
|
|
2178
|
-
},
|
|
2201
|
+
}, qi = ["src"], Li = ["src"], Di = { class: "mobile-menu-content-wrapper" }, Ci = { class: "mobile-dropdown-content" }, Ti = /* @__PURE__ */ g({
|
|
2179
2202
|
__name: "header",
|
|
2180
2203
|
props: {
|
|
2181
2204
|
burgerState: {
|
|
@@ -2228,25 +2251,25 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2228
2251
|
],
|
|
2229
2252
|
setup(e, { expose: a, emit: r }) {
|
|
2230
2253
|
let s = null;
|
|
2231
|
-
const
|
|
2232
|
-
let c = q(
|
|
2233
|
-
|
|
2234
|
-
() =>
|
|
2254
|
+
const l = e;
|
|
2255
|
+
let c = q(l.burgerState), _ = q(l.search), u = q(l.showDropDown), b = q(l.showPortalSwitcherDropDown), v = q(l.showProfileDropDown), k = q(l.isAuthenticated);
|
|
2256
|
+
Y(
|
|
2257
|
+
() => l.burgerState,
|
|
2235
2258
|
(y) => c.value = y
|
|
2236
|
-
),
|
|
2237
|
-
() =>
|
|
2259
|
+
), Y(
|
|
2260
|
+
() => l.search,
|
|
2238
2261
|
(y) => _.value = y
|
|
2239
|
-
),
|
|
2240
|
-
() =>
|
|
2262
|
+
), Y(
|
|
2263
|
+
() => l.showDropDown,
|
|
2241
2264
|
(y) => u.value = y
|
|
2242
|
-
),
|
|
2243
|
-
() =>
|
|
2265
|
+
), Y(
|
|
2266
|
+
() => l.showPortalSwitcherDropDown,
|
|
2244
2267
|
(y) => b.value = y
|
|
2245
|
-
),
|
|
2246
|
-
() =>
|
|
2268
|
+
), Y(
|
|
2269
|
+
() => l.showProfileDropDown,
|
|
2247
2270
|
(y) => v.value = y
|
|
2248
|
-
),
|
|
2249
|
-
() =>
|
|
2271
|
+
), Y(
|
|
2272
|
+
() => l.isAuthenticated,
|
|
2250
2273
|
(y) => k.value = y
|
|
2251
2274
|
), me(() => {
|
|
2252
2275
|
s = (y) => {
|
|
@@ -2268,43 +2291,43 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2268
2291
|
function re() {
|
|
2269
2292
|
c.value = !c.value, w("update:burgerState", c.value);
|
|
2270
2293
|
}
|
|
2271
|
-
let
|
|
2294
|
+
let U = q(null), te = q(null);
|
|
2272
2295
|
function ne() {
|
|
2273
|
-
|
|
2296
|
+
U.value && U.value.blur();
|
|
2274
2297
|
}
|
|
2275
2298
|
return a({
|
|
2276
2299
|
defocusSearchButton: ne
|
|
2277
|
-
}), (y,
|
|
2300
|
+
}), (y, N) => (o(), i("div", ai, [
|
|
2278
2301
|
t("nav", null, [
|
|
2279
|
-
t("div",
|
|
2280
|
-
t("div",
|
|
2302
|
+
t("div", oi, [
|
|
2303
|
+
t("div", li, [
|
|
2281
2304
|
d(y.$slots, "link-logo", {}, void 0, !0)
|
|
2282
2305
|
]),
|
|
2283
|
-
t("ul",
|
|
2306
|
+
t("ul", si, [
|
|
2284
2307
|
d(y.$slots, "main-nav-items", {}, void 0, !0)
|
|
2285
2308
|
]),
|
|
2286
|
-
e.useDropdown ? (
|
|
2309
|
+
e.useDropdown ? (o(), i("div", ii, [
|
|
2287
2310
|
t("button", {
|
|
2288
2311
|
class: "nav-dropdown-btn",
|
|
2289
2312
|
onClick: ee
|
|
2290
2313
|
}, [
|
|
2291
2314
|
d(y.$slots, "dropdown-title", {}, void 0, !0),
|
|
2292
|
-
I(u) === !1 ? (
|
|
2315
|
+
I(u) === !1 ? (o(), i("img", ri)) : (o(), i("img", ni))
|
|
2293
2316
|
]),
|
|
2294
|
-
K(t("div",
|
|
2317
|
+
K(t("div", di, [
|
|
2295
2318
|
d(y.$slots, "dropdown-links", {}, void 0, !0)
|
|
2296
2319
|
], 512), [
|
|
2297
|
-
[
|
|
2320
|
+
[Q, I(u)]
|
|
2298
2321
|
])
|
|
2299
|
-
], 512)) :
|
|
2300
|
-
I(_) ? (
|
|
2322
|
+
], 512)) : p("", !0),
|
|
2323
|
+
I(_) ? (o(), i("div", ci, [
|
|
2301
2324
|
t("button", {
|
|
2302
2325
|
ref_key: "navSearchButton",
|
|
2303
|
-
ref:
|
|
2326
|
+
ref: U,
|
|
2304
2327
|
class: "search-icon",
|
|
2305
|
-
onClick:
|
|
2328
|
+
onClick: N[0] || (N[0] = (j) => {
|
|
2306
2329
|
var E;
|
|
2307
|
-
return y.$emit("clickSearch"), (E = I(
|
|
2330
|
+
return y.$emit("clickSearch"), (E = I(U)) == null ? void 0 : E.blur();
|
|
2308
2331
|
})
|
|
2309
2332
|
}, [
|
|
2310
2333
|
t("img", {
|
|
@@ -2312,17 +2335,17 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2312
2335
|
alt: "search icon",
|
|
2313
2336
|
width: "20",
|
|
2314
2337
|
height: "20"
|
|
2315
|
-
}, null, 8,
|
|
2338
|
+
}, null, 8, ui)
|
|
2316
2339
|
], 512)
|
|
2317
|
-
])) :
|
|
2318
|
-
e.usePortalSwitcher ? (
|
|
2340
|
+
])) : p("", !0),
|
|
2341
|
+
e.usePortalSwitcher ? (o(), i("div", _i, [
|
|
2319
2342
|
t("button", {
|
|
2320
2343
|
class: "nav-portal-switcher-btn",
|
|
2321
2344
|
onClick: se
|
|
2322
|
-
},
|
|
2323
|
-
K(t("div",
|
|
2324
|
-
t("ul",
|
|
2325
|
-
(
|
|
2345
|
+
}, pi),
|
|
2346
|
+
K(t("div", mi, [
|
|
2347
|
+
t("ul", vi, [
|
|
2348
|
+
(o(!0), i(A, null, P(e.portals, (j, E) => (o(), i("li", {
|
|
2326
2349
|
key: E,
|
|
2327
2350
|
class: "portal-switcher-link"
|
|
2328
2351
|
}, [
|
|
@@ -2330,52 +2353,52 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2330
2353
|
default: $(() => [
|
|
2331
2354
|
t("a", {
|
|
2332
2355
|
href: j.link,
|
|
2333
|
-
onClick:
|
|
2356
|
+
onClick: N[1] || (N[1] = (J) => de(u) ? u.value = !1 : u = !1)
|
|
2334
2357
|
}, [
|
|
2335
2358
|
t("img", {
|
|
2336
2359
|
src: j.icon
|
|
2337
|
-
}, null, 8,
|
|
2360
|
+
}, null, 8, gi),
|
|
2338
2361
|
t("div", null, n(j.name), 1)
|
|
2339
|
-
], 8,
|
|
2362
|
+
], 8, fi)
|
|
2340
2363
|
]),
|
|
2341
2364
|
_: 2
|
|
2342
2365
|
}, 1024)
|
|
2343
2366
|
]))), 128))
|
|
2344
2367
|
])
|
|
2345
2368
|
], 512), [
|
|
2346
|
-
[
|
|
2369
|
+
[Q, I(b)]
|
|
2347
2370
|
])
|
|
2348
|
-
])) :
|
|
2349
|
-
e.useProfileDropdown ? (
|
|
2350
|
-
I(k) ?
|
|
2371
|
+
])) : p("", !0),
|
|
2372
|
+
e.useProfileDropdown ? (o(), i("div", bi, [
|
|
2373
|
+
I(k) ? p("", !0) : (o(), i("div", yi, [
|
|
2351
2374
|
d(y.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2352
2375
|
])),
|
|
2353
|
-
I(k) ? (
|
|
2376
|
+
I(k) ? (o(), i("button", {
|
|
2354
2377
|
key: 1,
|
|
2355
2378
|
class: "nav-profile-dropdown-btn",
|
|
2356
2379
|
onClick: ie
|
|
2357
|
-
},
|
|
2358
|
-
K(t("div",
|
|
2380
|
+
}, ki)) : p("", !0),
|
|
2381
|
+
K(t("div", wi, [
|
|
2359
2382
|
d(y.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2360
2383
|
], 512), [
|
|
2361
|
-
[
|
|
2384
|
+
[Q, I(v)]
|
|
2362
2385
|
])
|
|
2363
|
-
])) :
|
|
2386
|
+
])) : p("", !0)
|
|
2364
2387
|
]),
|
|
2365
2388
|
t("div", {
|
|
2366
2389
|
class: m(["mobile-nav-wrapper", I(c) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2367
2390
|
}, [
|
|
2368
|
-
t("div",
|
|
2369
|
-
t("div",
|
|
2391
|
+
t("div", Si, [
|
|
2392
|
+
t("div", Bi, [
|
|
2370
2393
|
d(y.$slots, "link-logo", {}, void 0, !0)
|
|
2371
2394
|
]),
|
|
2372
|
-
I(_) ? (
|
|
2395
|
+
I(_) ? (o(), i("div", Ii, [
|
|
2373
2396
|
t("button", {
|
|
2374
2397
|
ref_key: "mobileSearchButton",
|
|
2375
2398
|
ref: te,
|
|
2376
2399
|
class: "search-icon",
|
|
2377
2400
|
"aria-label": "Toggle search",
|
|
2378
|
-
onClick:
|
|
2401
|
+
onClick: N[2] || (N[2] = (j) => {
|
|
2379
2402
|
var E;
|
|
2380
2403
|
return y.$emit("clickSearch"), (E = I(te)) == null ? void 0 : E.blur();
|
|
2381
2404
|
})
|
|
@@ -2385,38 +2408,38 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2385
2408
|
alt: "search icon",
|
|
2386
2409
|
width: "20",
|
|
2387
2410
|
height: "20"
|
|
2388
|
-
}, null, 8,
|
|
2411
|
+
}, null, 8, qi)
|
|
2389
2412
|
], 512)
|
|
2390
|
-
])) :
|
|
2413
|
+
])) : p("", !0),
|
|
2391
2414
|
t("button", {
|
|
2392
2415
|
class: "mobile-burger-wrapper",
|
|
2393
2416
|
"aria-label": "Toggle menu",
|
|
2394
|
-
onClick:
|
|
2417
|
+
onClick: he(re, ["prevent"])
|
|
2395
2418
|
}, [
|
|
2396
2419
|
t("img", {
|
|
2397
2420
|
width: "20",
|
|
2398
2421
|
height: "20",
|
|
2399
2422
|
alt: "burger menu line icon",
|
|
2400
2423
|
src: I(c) === !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"
|
|
2401
|
-
}, null, 8,
|
|
2424
|
+
}, null, 8, Li)
|
|
2402
2425
|
])
|
|
2403
2426
|
]),
|
|
2404
|
-
K(t("div",
|
|
2427
|
+
K(t("div", Di, [
|
|
2405
2428
|
t("ul", null, [
|
|
2406
2429
|
d(y.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2407
2430
|
]),
|
|
2408
|
-
t("ul",
|
|
2431
|
+
t("ul", Ci, [
|
|
2409
2432
|
d(y.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2410
2433
|
d(y.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2411
2434
|
])
|
|
2412
2435
|
], 512), [
|
|
2413
|
-
[
|
|
2436
|
+
[Q, I(c)]
|
|
2414
2437
|
])
|
|
2415
2438
|
], 2)
|
|
2416
2439
|
])
|
|
2417
2440
|
]));
|
|
2418
2441
|
}
|
|
2419
|
-
}),
|
|
2442
|
+
}), Vi = /* @__PURE__ */ f(Ti, [["__scopeId", "data-v-766d3c80"]]), Ai = { class: "language__wrapper" }, Pi = { class: "language__content" }, Mi = { class: "language__headline" }, Oi = { class: "language__paragraph" }, Fi = { class: "language__links" }, Hi = /* @__PURE__ */ g({
|
|
2420
2443
|
__name: "language-switcher",
|
|
2421
2444
|
props: {
|
|
2422
2445
|
headline: {
|
|
@@ -2429,17 +2452,17 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2429
2452
|
}
|
|
2430
2453
|
},
|
|
2431
2454
|
setup(e) {
|
|
2432
|
-
return (a, r) => (
|
|
2433
|
-
t("div",
|
|
2434
|
-
t("h2",
|
|
2435
|
-
t("p",
|
|
2436
|
-
t("div",
|
|
2455
|
+
return (a, r) => (o(), i("div", Ai, [
|
|
2456
|
+
t("div", Pi, [
|
|
2457
|
+
t("h2", Mi, n(e.headline), 1),
|
|
2458
|
+
t("p", Oi, n(e.paragraph), 1),
|
|
2459
|
+
t("div", Fi, [
|
|
2437
2460
|
d(a.$slots, "language-links", {}, void 0, !0)
|
|
2438
2461
|
])
|
|
2439
2462
|
])
|
|
2440
2463
|
]));
|
|
2441
2464
|
}
|
|
2442
|
-
}),
|
|
2465
|
+
}), Ri = /* @__PURE__ */ f(Hi, [["__scopeId", "data-v-dc8cc97e"]]), Ei = { class: "pagination__wrapper" }, zi = { class: "pagination__content" }, Ni = /* @__PURE__ */ g({
|
|
2443
2466
|
__name: "pagination",
|
|
2444
2467
|
props: {
|
|
2445
2468
|
isPreviousDisabled: {
|
|
@@ -2453,8 +2476,8 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2453
2476
|
},
|
|
2454
2477
|
emits: ["previous", "next"],
|
|
2455
2478
|
setup(e) {
|
|
2456
|
-
return (a, r) => (
|
|
2457
|
-
t("div",
|
|
2479
|
+
return (a, r) => (o(), i("div", Ei, [
|
|
2480
|
+
t("div", zi, [
|
|
2458
2481
|
B(oe, {
|
|
2459
2482
|
disabled: e.isPreviousDisabled,
|
|
2460
2483
|
variant: "previous",
|
|
@@ -2471,13 +2494,13 @@ const Ml = /* @__PURE__ */ f(Dl, [["render", Pl], ["__scopeId", "data-v-449f3040
|
|
|
2471
2494
|
])
|
|
2472
2495
|
]));
|
|
2473
2496
|
}
|
|
2474
|
-
}),
|
|
2475
|
-
function
|
|
2476
|
-
return
|
|
2497
|
+
}), ji = /* @__PURE__ */ f(Ni, [["__scopeId", "data-v-da6d07c9"]]), Ki = {}, Ui = { class: "search__wrapper" };
|
|
2498
|
+
function Gi(e, a) {
|
|
2499
|
+
return o(), i("div", Ui, [
|
|
2477
2500
|
d(e.$slots, "default", { class: "search__content" })
|
|
2478
2501
|
]);
|
|
2479
2502
|
}
|
|
2480
|
-
const
|
|
2503
|
+
const Ji = /* @__PURE__ */ f(Ki, [["render", Gi], ["__scopeId", "data-v-c07a6cf3"]]), Wi = { class: "dropdown" }, Yi = ["aria-expanded"], Qi = /* @__PURE__ */ g({
|
|
2481
2504
|
__name: "select-multiple",
|
|
2482
2505
|
props: {
|
|
2483
2506
|
label: { default: "" },
|
|
@@ -2486,9 +2509,9 @@ const ji = /* @__PURE__ */ f(Ei, [["render", zi], ["__scopeId", "data-v-c07a6cf3
|
|
|
2486
2509
|
},
|
|
2487
2510
|
emits: ["filter", "remove-filter"],
|
|
2488
2511
|
setup(e, { emit: a }) {
|
|
2489
|
-
const r = q(!1), s = e,
|
|
2512
|
+
const r = q(!1), s = e, l = a;
|
|
2490
2513
|
function c(b) {
|
|
2491
|
-
s.selectedOptions.includes(b) ?
|
|
2514
|
+
s.selectedOptions.includes(b) ? l("remove-filter", b) : l("filter", b);
|
|
2492
2515
|
}
|
|
2493
2516
|
function _() {
|
|
2494
2517
|
r.value = !1;
|
|
@@ -2496,7 +2519,7 @@ const ji = /* @__PURE__ */ f(Ei, [["render", zi], ["__scopeId", "data-v-c07a6cf3
|
|
|
2496
2519
|
const u = C(() => s.options.length > 8);
|
|
2497
2520
|
return (b, v) => {
|
|
2498
2521
|
const k = _e("click-outside");
|
|
2499
|
-
return K((
|
|
2522
|
+
return K((o(), i("div", Wi, [
|
|
2500
2523
|
t("button", {
|
|
2501
2524
|
class: "dropdown-button",
|
|
2502
2525
|
style: le({ "z-index": r.value ? 2 : 0 }),
|
|
@@ -2504,13 +2527,13 @@ const ji = /* @__PURE__ */ f(Ei, [["render", zi], ["__scopeId", "data-v-c07a6cf3
|
|
|
2504
2527
|
onClick: v[0] || (v[0] = (w) => r.value = !r.value)
|
|
2505
2528
|
}, [
|
|
2506
2529
|
d(b.$slots, "button", {}, () => [
|
|
2507
|
-
|
|
2530
|
+
G(n(b.label), 1)
|
|
2508
2531
|
], !0)
|
|
2509
|
-
], 12,
|
|
2532
|
+
], 12, Yi),
|
|
2510
2533
|
t("div", {
|
|
2511
2534
|
class: m([{ hidden: !r.value, "adjust-height": u.value }, "dropdown-content"])
|
|
2512
2535
|
}, [
|
|
2513
|
-
(
|
|
2536
|
+
(o(!0), i(A, null, P(b.options, (w) => (o(), T(I(ve), {
|
|
2514
2537
|
id: w.value,
|
|
2515
2538
|
key: w.value,
|
|
2516
2539
|
name: w.text,
|
|
@@ -2521,7 +2544,7 @@ const ji = /* @__PURE__ */ f(Ei, [["render", zi], ["__scopeId", "data-v-c07a6cf3
|
|
|
2521
2544
|
onInput: (ee) => c(w.value)
|
|
2522
2545
|
}, {
|
|
2523
2546
|
default: $(() => [
|
|
2524
|
-
|
|
2547
|
+
G(n(w.text), 1)
|
|
2525
2548
|
]),
|
|
2526
2549
|
_: 2
|
|
2527
2550
|
}, 1032, ["id", "name", "value", "checked", "onInput"]))), 128))
|
|
@@ -2531,7 +2554,7 @@ const ji = /* @__PURE__ */ f(Ei, [["render", zi], ["__scopeId", "data-v-c07a6cf3
|
|
|
2531
2554
|
]);
|
|
2532
2555
|
};
|
|
2533
2556
|
}
|
|
2534
|
-
}),
|
|
2557
|
+
}), Zi = /* @__PURE__ */ f(Qi, [["__scopeId", "data-v-164647da"]]), Xi = { class: "promo__content" }, xi = { class: "pallet-jack__media-wrap" }, er = { class: "pallet-jack-link" }, tr = { class: "pallet-jack__media-wrap__inner-wrap" }, ar = { class: "pallet-jack__media-wrap__content-wrap" }, or = { class: "regular-blue" }, lr = /* @__PURE__ */ g({
|
|
2535
2558
|
__name: "pallet-jack",
|
|
2536
2559
|
props: {
|
|
2537
2560
|
label: { default: "" },
|
|
@@ -2550,78 +2573,78 @@ const ji = /* @__PURE__ */ f(Ei, [["render", zi], ["__scopeId", "data-v-c07a6cf3
|
|
|
2550
2573
|
light: "promo__wrapper--light",
|
|
2551
2574
|
default: "promo__wrapper--default"
|
|
2552
2575
|
}, r = e, s = C(() => a[r.variant]);
|
|
2553
|
-
return (
|
|
2576
|
+
return (l, c) => (o(), i("div", {
|
|
2554
2577
|
class: m([
|
|
2555
2578
|
"promo__wrapper",
|
|
2556
2579
|
s.value,
|
|
2557
|
-
|
|
2580
|
+
l.teaser ? "promo__wrapper--teaser" : ""
|
|
2558
2581
|
])
|
|
2559
2582
|
}, [
|
|
2560
|
-
t("div",
|
|
2583
|
+
t("div", Xi, [
|
|
2561
2584
|
t("div", {
|
|
2562
2585
|
class: m([
|
|
2563
2586
|
"promo__video",
|
|
2564
|
-
|
|
2587
|
+
l.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2565
2588
|
])
|
|
2566
2589
|
}, [
|
|
2567
|
-
t("div",
|
|
2568
|
-
t("div",
|
|
2569
|
-
d(
|
|
2590
|
+
t("div", xi, [
|
|
2591
|
+
t("div", er, [
|
|
2592
|
+
d(l.$slots, "pallet-jack-link")
|
|
2570
2593
|
]),
|
|
2571
|
-
t("div",
|
|
2572
|
-
d(
|
|
2594
|
+
t("div", tr, [
|
|
2595
|
+
d(l.$slots, "pallet-jack-video")
|
|
2573
2596
|
]),
|
|
2574
|
-
t("div",
|
|
2575
|
-
t("h3",
|
|
2576
|
-
t("p", null, n(
|
|
2597
|
+
t("div", ar, [
|
|
2598
|
+
t("h3", or, n(l.headline), 1),
|
|
2599
|
+
t("p", null, n(l.shortDescription), 1)
|
|
2577
2600
|
])
|
|
2578
2601
|
])
|
|
2579
2602
|
], 2),
|
|
2580
2603
|
t("div", {
|
|
2581
2604
|
class: m([
|
|
2582
2605
|
"promo__text",
|
|
2583
|
-
|
|
2606
|
+
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2584
2607
|
])
|
|
2585
2608
|
}, [
|
|
2586
|
-
|
|
2609
|
+
l.label ? (o(), T(Z, {
|
|
2587
2610
|
key: 0,
|
|
2588
|
-
text:
|
|
2589
|
-
"label-dark":
|
|
2590
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
2611
|
+
text: l.label,
|
|
2612
|
+
"label-dark": l.variant === "dark"
|
|
2613
|
+
}, null, 8, ["text", "label-dark"])) : p("", !0),
|
|
2591
2614
|
t("div", {
|
|
2592
2615
|
class: m([
|
|
2593
2616
|
"promo__title",
|
|
2594
|
-
|
|
2617
|
+
l.variant === "dark" ? "promo__title--dark" : ""
|
|
2595
2618
|
])
|
|
2596
2619
|
}, [
|
|
2597
|
-
d(
|
|
2620
|
+
d(l.$slots, "promo-text")
|
|
2598
2621
|
], 2),
|
|
2599
|
-
|
|
2622
|
+
l.linkType === "link" ? (o(), T(V, {
|
|
2600
2623
|
key: 1,
|
|
2601
|
-
"link-type":
|
|
2624
|
+
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
2602
2625
|
arrow: ""
|
|
2603
2626
|
}, {
|
|
2604
2627
|
default: $(() => [
|
|
2605
|
-
d(
|
|
2628
|
+
d(l.$slots, "promo-link")
|
|
2606
2629
|
]),
|
|
2607
2630
|
_: 3
|
|
2608
|
-
}, 8, ["link-type"])) :
|
|
2609
|
-
|
|
2631
|
+
}, 8, ["link-type"])) : p("", !0),
|
|
2632
|
+
l.linkType === "button" ? (o(), T(V, {
|
|
2610
2633
|
key: 2,
|
|
2611
|
-
"link-type":
|
|
2634
|
+
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
2612
2635
|
}, {
|
|
2613
2636
|
default: $(() => [
|
|
2614
|
-
d(
|
|
2637
|
+
d(l.$slots, "promo-link")
|
|
2615
2638
|
]),
|
|
2616
2639
|
_: 3
|
|
2617
|
-
}, 8, ["link-type"])) :
|
|
2640
|
+
}, 8, ["link-type"])) : p("", !0)
|
|
2618
2641
|
], 2)
|
|
2619
2642
|
])
|
|
2620
2643
|
], 2));
|
|
2621
2644
|
}
|
|
2622
|
-
}),
|
|
2645
|
+
}), sr = /* @__PURE__ */ f(lr, [["__scopeId", "data-v-00c0bad3"]]), rr = {
|
|
2623
2646
|
install: (e) => {
|
|
2624
|
-
e.component("AtomButton", oe), e.component("AtomCheckbox", ve), e.component("AtomChip", He), e.component("AtomDropdown", Ge), e.component("AtomImage", M), e.component("AtomLabel",
|
|
2647
|
+
e.component("AtomButton", oe), e.component("AtomCheckbox", ve), e.component("AtomChip", He), e.component("AtomDropdown", Ge), e.component("AtomImage", M), e.component("AtomLabel", Z), e.component("AtomLink", V), e.component("AtomRadioButton", lt), e.component("AtomSelect", ct), e.component("AtomSelectMultiple", Zi), e.component("AtomSlider", $t), e.component("AtomTextarea", Dt), e.component("AtomTextField", Et), e.component("AtomVideo", X), e.component("MoleculeAddress", aa), e.component("MoleculeBulletList", ra), e.component("MoleculeCard", _a), e.component("MoleculeEventCard", ya), e.component("MoleculeModal", fe), e.component("MoleculeTextCard", Ba), e.component("BlockFacts", za), e.component("BlockFeatures", Ya), e.component("BlockFormScript", oo), e.component("BlockHeadline", ro), e.component("BlockHero", $o), e.component("BlockImage", qo), e.component("BlockImageGallery", Ao), e.component("BlockLogoWall", No), e.component("BlockMicroStories", Jo), e.component("BlockPolicy", Xo), e.component("BlockProductHero", rl), e.component("BlockPromo", cl), e.component("BlockQuote", wl), e.component("BlockRichText", Ll), e.component("BlockRichTextColumns", Ml), e.component("BlockTimeline", Ul), e.component("BlockCardDisplay", Va), e.component("BlockVimeo", Zl), e.component("BlockPalletJack", sr), e.component("BlockFrontPageHero", vs), e.component("Organism404", ks), e.component("OrganismFilter", Ls), e.component("OrganismFooter", ti), e.component("OrganismHeader", Vi), e.component("OrganismLanguageSwitcher", Ri), e.component("OrganismPagination", ji), e.component("OrganismSearch", Ji);
|
|
2625
2648
|
}
|
|
2626
2649
|
};
|
|
2627
2650
|
export {
|
|
@@ -2630,17 +2653,17 @@ export {
|
|
|
2630
2653
|
He as AtomChip,
|
|
2631
2654
|
Ge as AtomDropdown,
|
|
2632
2655
|
M as AtomImage,
|
|
2633
|
-
|
|
2656
|
+
Z as AtomLabel,
|
|
2634
2657
|
V as AtomLink,
|
|
2635
2658
|
lt as AtomRadioButton,
|
|
2636
2659
|
ct as AtomSelect,
|
|
2637
|
-
|
|
2660
|
+
Zi as AtomSelectMultiple,
|
|
2638
2661
|
$t as AtomSlider,
|
|
2639
2662
|
Et as AtomTextField,
|
|
2640
2663
|
Dt as AtomTextarea,
|
|
2641
|
-
|
|
2664
|
+
X as AtomVideo,
|
|
2642
2665
|
Va as BlockCardDisplay,
|
|
2643
|
-
|
|
2666
|
+
za as BlockFacts,
|
|
2644
2667
|
Ya as BlockFeatures,
|
|
2645
2668
|
oo as BlockFormScript,
|
|
2646
2669
|
vs as BlockFrontPageHero,
|
|
@@ -2648,9 +2671,9 @@ export {
|
|
|
2648
2671
|
$o as BlockHero,
|
|
2649
2672
|
qo as BlockImage,
|
|
2650
2673
|
Ao as BlockImageGallery,
|
|
2651
|
-
|
|
2674
|
+
No as BlockLogoWall,
|
|
2652
2675
|
Jo as BlockMicroStories,
|
|
2653
|
-
|
|
2676
|
+
sr as BlockPalletJack,
|
|
2654
2677
|
Xo as BlockPolicy,
|
|
2655
2678
|
rl as BlockProductHero,
|
|
2656
2679
|
cl as BlockPromo,
|
|
@@ -2667,10 +2690,10 @@ export {
|
|
|
2667
2690
|
Ba as MoleculeTextCard,
|
|
2668
2691
|
ks as Organism404,
|
|
2669
2692
|
Ls as OrganismFilter,
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2693
|
+
ti as OrganismFooter,
|
|
2694
|
+
Vi as OrganismHeader,
|
|
2695
|
+
Ri as OrganismLanguageSwitcher,
|
|
2696
|
+
ji as OrganismPagination,
|
|
2697
|
+
Ji as OrganismSearch,
|
|
2698
|
+
rr as default
|
|
2676
2699
|
};
|