@mirweb/mir-web-components 1.7.13 → 1.7.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -6
- package/dist/components/blocks/card-display/card-display.vue.d.ts +1 -1
- package/dist/components/blocks/image-gallery/image-gallery.vue.d.ts +1 -1
- package/dist/components/blocks/timeline/timeline.vue.d.ts +1 -1
- package/dist/components/index.d.ts +51 -51
- package/dist/components/main.d.ts +54 -53
- package/dist/components/molecules/card/card.vue.d.ts +1 -1
- package/dist/components/organisms/header/header.vue.d.ts +1 -1
- package/dist/directives/clickOutside.d.ts +2 -1
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +509 -500
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +19 -19
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as g, computed as
|
|
1
|
+
import { defineComponent as g, computed as A, openBlock as s, createElementBlock as i, normalizeClass as p, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as U, Fragment as T, renderList as V, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as M, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as L, createCommentVNode as _, watchEffect as pe, withKeys as Ce, useSlots as qe, normalizeStyle as x, isRef as ce, unref as I, onMounted as me, watch as Q, onUnmounted as Ae } from "vue";
|
|
2
2
|
const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -14,18 +14,18 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
14
14
|
close: "close",
|
|
15
15
|
next: "next",
|
|
16
16
|
previous: "previous"
|
|
17
|
-
}, r = e, o =
|
|
18
|
-
return (l,
|
|
17
|
+
}, r = e, o = A(() => a[r.variant]);
|
|
18
|
+
return (l, u) => (s(), i("button", {
|
|
19
19
|
class: p(["button", "button--" + o.value]),
|
|
20
20
|
"aria-label": l.ariaLabel
|
|
21
21
|
}, d(o.value === "close" ? "" : l.buttonText), 11, Le));
|
|
22
22
|
}
|
|
23
|
-
}),
|
|
23
|
+
}), v = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
25
|
for (const [o, l] of a)
|
|
26
26
|
r[o] = l;
|
|
27
27
|
return r;
|
|
28
|
-
}, se = /* @__PURE__ */
|
|
28
|
+
}, se = /* @__PURE__ */ v(De, [["__scopeId", "data-v-f61b579c"]]), Te = (e) => (H("data-v-0c4c6d8e"), e = e(), R(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ Te(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
|
|
29
29
|
__name: "checkbox",
|
|
30
30
|
props: {
|
|
31
31
|
name: { default: "checkbox" },
|
|
@@ -38,10 +38,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
38
38
|
emits: ["input"],
|
|
39
39
|
setup(e, { emit: a }) {
|
|
40
40
|
const r = a, o = (l) => {
|
|
41
|
-
const
|
|
42
|
-
r("input",
|
|
41
|
+
const u = l.target;
|
|
42
|
+
r("input", u.checked);
|
|
43
43
|
};
|
|
44
|
-
return (l,
|
|
44
|
+
return (l, u) => (s(), i("div", {
|
|
45
45
|
class: p(["checkbox__wrapper", l.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
47
|
t("input", {
|
|
@@ -64,7 +64,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
64
64
|
], 10, Pe)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
67
|
-
}),
|
|
67
|
+
}), fe = /* @__PURE__ */ v(Me, [["__scopeId", "data-v-0c4c6d8e"]]), Oe = (e) => (H("data-v-08813346"), e = e(), R(), e), ze = ["aria-label"], He = /* @__PURE__ */ Oe(() => /* @__PURE__ */ t("img", {
|
|
68
68
|
src: "https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",
|
|
69
69
|
alt: "close",
|
|
70
70
|
class: "close-icon"
|
|
@@ -75,21 +75,21 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
75
75
|
},
|
|
76
76
|
emits: ["remove-chip"],
|
|
77
77
|
setup(e) {
|
|
78
|
-
const a = e, r =
|
|
78
|
+
const a = e, r = A(() => `Chip: ${a.text}`);
|
|
79
79
|
return (o, l) => (s(), i("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick: l[0] || (l[0] = (
|
|
81
|
+
onClick: l[0] || (l[0] = (u) => o.$emit("remove-chip"))
|
|
82
82
|
}, [
|
|
83
83
|
t("span", {
|
|
84
84
|
class: "chip",
|
|
85
85
|
"aria-label": r.value
|
|
86
86
|
}, [
|
|
87
|
-
|
|
87
|
+
J(d(o.text) + " ", 1),
|
|
88
88
|
He
|
|
89
|
-
], 8,
|
|
89
|
+
], 8, ze)
|
|
90
90
|
]));
|
|
91
91
|
}
|
|
92
|
-
}), Ne = /* @__PURE__ */
|
|
92
|
+
}), Ne = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-08813346"]]), Ee = ["value"], je = ["id"], Ke = { class: "listbox__dropdown" }, Ue = ["id", "aria-labelledby", "aria-disabled"], Ge = ["aria-labelledby", "aria-activedescendant"], Je = ["aria-selected", "data-value"], We = /* @__PURE__ */ g({
|
|
93
93
|
__name: "dropdown",
|
|
94
94
|
props: {
|
|
95
95
|
modelValue: {},
|
|
@@ -107,7 +107,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
107
107
|
const r = {
|
|
108
108
|
primary: "dropdown-dark-bg-primary",
|
|
109
109
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
110
|
-
}, o = e, l =
|
|
110
|
+
}, o = e, l = A(() => r[o.variant]), u = C(null), h = C(null), n = C([]), b = C(0), f = C(""), k = C(!0), w = C(0), te = a, ie = A(() => {
|
|
111
111
|
const m = o.options.find(
|
|
112
112
|
(B) => B.value === o.modelValue
|
|
113
113
|
);
|
|
@@ -117,27 +117,27 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
117
117
|
te("update:modelValue", m);
|
|
118
118
|
}
|
|
119
119
|
function ne(m) {
|
|
120
|
-
var
|
|
120
|
+
var q;
|
|
121
121
|
const B = m.target;
|
|
122
|
-
B.getAttribute("role") === "option" && (
|
|
122
|
+
B.getAttribute("role") === "option" && (W(B), oe(), (q = u.value) == null || q.focus());
|
|
123
123
|
}
|
|
124
|
-
function
|
|
125
|
-
var
|
|
124
|
+
function G(m) {
|
|
125
|
+
var q;
|
|
126
126
|
const B = m.key;
|
|
127
127
|
switch (B) {
|
|
128
128
|
case "ArrowUp":
|
|
129
129
|
case "ArrowDown": {
|
|
130
130
|
m.preventDefault();
|
|
131
|
-
const
|
|
132
|
-
(
|
|
131
|
+
const D = o.options.findIndex(
|
|
132
|
+
(Y) => Y.value === o.modelValue
|
|
133
133
|
);
|
|
134
|
-
let
|
|
135
|
-
B === "ArrowUp" ?
|
|
134
|
+
let N = D ? n.value[D] : n.value[0];
|
|
135
|
+
B === "ArrowUp" ? D - 1 >= 0 && (N = n.value[D - 1]) : D + 1 <= o.options.length && (N = n.value[D + 1]), N && W(N);
|
|
136
136
|
break;
|
|
137
137
|
}
|
|
138
138
|
case "Home":
|
|
139
139
|
case "PageUp":
|
|
140
|
-
m.preventDefault(),
|
|
140
|
+
m.preventDefault(), E();
|
|
141
141
|
break;
|
|
142
142
|
case "End":
|
|
143
143
|
case "PageDown":
|
|
@@ -145,11 +145,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
145
145
|
break;
|
|
146
146
|
case "Enter":
|
|
147
147
|
case "Escape":
|
|
148
|
-
m.preventDefault(), oe(), (
|
|
148
|
+
m.preventDefault(), oe(), (q = u.value) == null || q.focus();
|
|
149
149
|
break;
|
|
150
150
|
default: {
|
|
151
|
-
const
|
|
152
|
-
|
|
151
|
+
const D = j(B);
|
|
152
|
+
D && W(D);
|
|
153
153
|
break;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
@@ -159,7 +159,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
159
159
|
switch (m.key) {
|
|
160
160
|
case "ArrowUp":
|
|
161
161
|
case "ArrowDown":
|
|
162
|
-
m.preventDefault(), ue(),
|
|
162
|
+
m.preventDefault(), ue(), G(m);
|
|
163
163
|
break;
|
|
164
164
|
}
|
|
165
165
|
}
|
|
@@ -168,64 +168,64 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
168
168
|
}
|
|
169
169
|
function $() {
|
|
170
170
|
b.value && (clearTimeout(b.value), b.value = 0), b.value = setTimeout(() => {
|
|
171
|
-
|
|
171
|
+
f.value = "", b.value = 0;
|
|
172
172
|
}, 500);
|
|
173
173
|
}
|
|
174
|
-
function
|
|
174
|
+
function j(m) {
|
|
175
175
|
let B = "";
|
|
176
|
-
(
|
|
177
|
-
(
|
|
178
|
-
)),
|
|
179
|
-
let
|
|
176
|
+
(f.value === "" || B !== m) && (w.value = o.options.findIndex(
|
|
177
|
+
(D) => D.value === o.modelValue
|
|
178
|
+
)), f.value = B === m ? m : f.value + m, B = m, $();
|
|
179
|
+
let q = K(
|
|
180
180
|
w.value + 1,
|
|
181
181
|
o.options.length
|
|
182
182
|
);
|
|
183
|
-
return !
|
|
183
|
+
return !q && f.value.length === 1 && (q = K(0, w.value)), w.value = (w.value + 1) % o.options.length, q;
|
|
184
184
|
}
|
|
185
|
-
function
|
|
186
|
-
for (let
|
|
187
|
-
if (o.options[
|
|
188
|
-
return
|
|
185
|
+
function K(m, B) {
|
|
186
|
+
for (let q = m; q < B; q++)
|
|
187
|
+
if (o.options[q].label && o.options[q].label.toUpperCase().indexOf(f.value.toUpperCase()) === 0)
|
|
188
|
+
return n.value[q];
|
|
189
189
|
return null;
|
|
190
190
|
}
|
|
191
|
-
function
|
|
192
|
-
|
|
191
|
+
function E() {
|
|
192
|
+
W(n.value[0]);
|
|
193
193
|
}
|
|
194
|
-
function
|
|
195
|
-
var
|
|
194
|
+
function W(m) {
|
|
195
|
+
var q, D;
|
|
196
196
|
const B = m.getAttribute("data-value");
|
|
197
197
|
if (o.modelValue) {
|
|
198
|
-
const
|
|
198
|
+
const N = o.options.findIndex(
|
|
199
199
|
(Be) => Be.value === o.modelValue
|
|
200
|
-
),
|
|
201
|
-
de(
|
|
200
|
+
), Y = n.value[N];
|
|
201
|
+
de(Y);
|
|
202
202
|
}
|
|
203
|
-
if (m.setAttribute("aria-selected", "true"), (
|
|
203
|
+
if (m.setAttribute("aria-selected", "true"), (q = h.value) == null || q.setAttribute(
|
|
204
204
|
"aria-activedescendant",
|
|
205
205
|
B || ""
|
|
206
|
-
), re(B || ""),
|
|
207
|
-
const
|
|
208
|
-
|
|
206
|
+
), re(B || ""), h.value && h.value.scrollHeight > h.value.clientHeight) {
|
|
207
|
+
const N = h.value.clientHeight + h.value.scrollTop, Y = m.offsetTop + m.offsetHeight;
|
|
208
|
+
Y > N ? h.value.scrollTop = Y - ((D = h.value) == null ? void 0 : D.clientHeight) : m.offsetTop < h.value.scrollTop && (h.value.scrollTop = m.offsetTop);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
211
|
function $e() {
|
|
212
212
|
var B;
|
|
213
|
-
const m = (B =
|
|
214
|
-
|
|
213
|
+
const m = (B = n.value) == null ? void 0 : B[o.options.length - 1];
|
|
214
|
+
W(m);
|
|
215
215
|
}
|
|
216
216
|
function oe() {
|
|
217
217
|
var m;
|
|
218
|
-
k.value = !0, (m =
|
|
218
|
+
k.value = !0, (m = u.value) == null || m.removeAttribute("aria-expanded");
|
|
219
219
|
}
|
|
220
220
|
function ue() {
|
|
221
221
|
var m, B;
|
|
222
|
-
k.value = !1, (m =
|
|
222
|
+
k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B = h.value) == null || B.focus();
|
|
223
223
|
}
|
|
224
224
|
function we() {
|
|
225
225
|
o.disabled || (k.value ? ue() : oe());
|
|
226
226
|
}
|
|
227
227
|
return (m, B) => {
|
|
228
|
-
const
|
|
228
|
+
const q = _e("click-outside");
|
|
229
229
|
return s(), i("div", {
|
|
230
230
|
ref: "listbox",
|
|
231
231
|
class: "listbox__wrapper",
|
|
@@ -239,11 +239,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
239
239
|
"is-required": m.required
|
|
240
240
|
}, "listbox__label"])
|
|
241
241
|
}, d(m.label), 11, je),
|
|
242
|
-
|
|
242
|
+
U((s(), i("div", Ke, [
|
|
243
243
|
t("button", {
|
|
244
244
|
id: `${m.name}-button-label`,
|
|
245
245
|
ref_key: "listboxButton",
|
|
246
|
-
ref:
|
|
246
|
+
ref: u,
|
|
247
247
|
"aria-labelledby": `${m.name}-label ${m.name}-button-label`,
|
|
248
248
|
type: "button",
|
|
249
249
|
"aria-haspopup": "listbox",
|
|
@@ -252,37 +252,37 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
252
252
|
onClick: we,
|
|
253
253
|
onKeydown: ae
|
|
254
254
|
}, d(m.modelValue ? ie.value : m.placeholder), 43, Ue),
|
|
255
|
-
|
|
255
|
+
U(t("ul", {
|
|
256
256
|
ref_key: "listboxNode",
|
|
257
|
-
ref:
|
|
257
|
+
ref: h,
|
|
258
258
|
"aria-labelledby": `${m.name}-label`,
|
|
259
259
|
"aria-activedescendant": m.modelValue,
|
|
260
260
|
tabindex: "0",
|
|
261
261
|
role: "listbox",
|
|
262
262
|
class: "listbox__list",
|
|
263
|
-
onKeydown:
|
|
263
|
+
onKeydown: G,
|
|
264
264
|
onClick: ne
|
|
265
265
|
}, [
|
|
266
|
-
(s(!0), i(
|
|
267
|
-
key: `${m.name}-option-${
|
|
266
|
+
(s(!0), i(T, null, V(m.options, (D, N) => (s(), i("li", {
|
|
267
|
+
key: `${m.name}-option-${N}`,
|
|
268
268
|
ref_for: !0,
|
|
269
269
|
ref_key: "listboxOptions",
|
|
270
|
-
ref:
|
|
271
|
-
"aria-selected":
|
|
272
|
-
"data-value":
|
|
270
|
+
ref: n,
|
|
271
|
+
"aria-selected": D.value === m.modelValue,
|
|
272
|
+
"data-value": D.value,
|
|
273
273
|
class: "listbox__option",
|
|
274
274
|
role: "option"
|
|
275
|
-
}, d(
|
|
275
|
+
}, d(D.label), 9, Je))), 128))
|
|
276
276
|
], 40, Ge), [
|
|
277
|
-
[
|
|
277
|
+
[Z, !k.value]
|
|
278
278
|
])
|
|
279
279
|
])), [
|
|
280
|
-
[
|
|
280
|
+
[q, oe]
|
|
281
281
|
])
|
|
282
282
|
], 8, Ee);
|
|
283
283
|
};
|
|
284
284
|
}
|
|
285
|
-
}), Ye = /* @__PURE__ */
|
|
285
|
+
}), Ye = /* @__PURE__ */ v(We, [["__scopeId", "data-v-a17afd8c"]]), Qe = { class: "image__wrapper" }, Ze = /* @__PURE__ */ g({
|
|
286
286
|
__name: "image",
|
|
287
287
|
props: {
|
|
288
288
|
src: { default: void 0 },
|
|
@@ -295,17 +295,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
295
295
|
},
|
|
296
296
|
setup(e) {
|
|
297
297
|
return (a, r) => (s(), i("div", Qe, [
|
|
298
|
-
c(a.$slots, "default",
|
|
298
|
+
c(a.$slots, "default", O(z(a.$attrs)))
|
|
299
299
|
]));
|
|
300
300
|
}
|
|
301
|
-
}),
|
|
301
|
+
}), F = /* @__PURE__ */ v(Ze, [["__scopeId", "data-v-e10217bd"]]), Xe = { class: "label__wrapper" }, xe = ["aria-label", "label-dark"], et = /* @__PURE__ */ g({
|
|
302
302
|
__name: "label",
|
|
303
303
|
props: {
|
|
304
304
|
text: {},
|
|
305
305
|
labelDark: { type: Boolean, default: !1 }
|
|
306
306
|
},
|
|
307
307
|
setup(e) {
|
|
308
|
-
const a = e, r =
|
|
308
|
+
const a = e, r = A(() => `Label: ${a.text}`);
|
|
309
309
|
return (o, l) => (s(), i("div", Xe, [
|
|
310
310
|
t("span", {
|
|
311
311
|
"aria-label": r.value,
|
|
@@ -314,7 +314,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
314
314
|
}, d(o.text), 11, xe)
|
|
315
315
|
]));
|
|
316
316
|
}
|
|
317
|
-
}),
|
|
317
|
+
}), X = /* @__PURE__ */ v(et, [["__scopeId", "data-v-7d9d3a8a"]]), tt = { class: "link__wrapper" }, P = /* @__PURE__ */ g({
|
|
318
318
|
__name: "link",
|
|
319
319
|
props: {
|
|
320
320
|
linkType: { default: "regular" },
|
|
@@ -336,24 +336,24 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
336
336
|
hover: "underline-hover",
|
|
337
337
|
true: "add-underline",
|
|
338
338
|
false: "remove-underline"
|
|
339
|
-
}, o = e, l =
|
|
340
|
-
const { ...
|
|
341
|
-
return
|
|
339
|
+
}, o = e, l = A(() => a[o.linkType]), u = A(() => r[o.underline]), h = A(() => {
|
|
340
|
+
const { ...n } = Se(o);
|
|
341
|
+
return n;
|
|
342
342
|
});
|
|
343
|
-
return (
|
|
344
|
-
t("div",
|
|
343
|
+
return (n, b) => (s(), i("div", tt, [
|
|
344
|
+
t("div", M(h.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
346
|
l.value,
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
347
|
+
n.disabled ? "disabled" : "",
|
|
348
|
+
u.value,
|
|
349
|
+
n.arrow ? "link-arrow" : ""
|
|
350
350
|
]]
|
|
351
351
|
}), [
|
|
352
|
-
c(
|
|
352
|
+
c(n.$slots, "default")
|
|
353
353
|
], 16)
|
|
354
354
|
]));
|
|
355
355
|
}
|
|
356
|
-
}), at = (e) => (
|
|
356
|
+
}), at = (e) => (H("data-v-60c6ff7e"), e = e(), R(), e), ot = ["id", "name", "value", "checked", "disabled", "required"], st = ["for"], lt = /* @__PURE__ */ at(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), it = /* @__PURE__ */ g({
|
|
357
357
|
__name: "radio-button",
|
|
358
358
|
props: {
|
|
359
359
|
name: { default: "radio" },
|
|
@@ -366,10 +366,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
366
366
|
emits: ["input"],
|
|
367
367
|
setup(e, { emit: a }) {
|
|
368
368
|
const r = a, o = (l) => {
|
|
369
|
-
const
|
|
370
|
-
r("input",
|
|
369
|
+
const u = l.target;
|
|
370
|
+
r("input", u.checked);
|
|
371
371
|
};
|
|
372
|
-
return (l,
|
|
372
|
+
return (l, u) => (s(), i("div", {
|
|
373
373
|
class: p(["radio__wrapper", l.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
375
|
t("input", {
|
|
@@ -392,7 +392,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
392
392
|
], 10, st)
|
|
393
393
|
], 2));
|
|
394
394
|
}
|
|
395
|
-
}), rt = /* @__PURE__ */
|
|
395
|
+
}), rt = /* @__PURE__ */ v(it, [["__scopeId", "data-v-60c6ff7e"]]), nt = { class: "select__wrapper" }, dt = ["for"], ct = ["id", "disabled", "name", "value"], ut = ["value"], _t = /* @__PURE__ */ g({
|
|
396
396
|
__name: "select",
|
|
397
397
|
props: {
|
|
398
398
|
id: {},
|
|
@@ -420,14 +420,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
420
420
|
a.$emit("update:modelValue", o.target.value), o.target.blur();
|
|
421
421
|
})
|
|
422
422
|
}, [
|
|
423
|
-
(s(!0), i(
|
|
423
|
+
(s(!0), i(T, null, V(a.options, (o) => (s(), i("option", {
|
|
424
424
|
key: o.value,
|
|
425
425
|
value: o.value
|
|
426
426
|
}, d(o.text), 9, ut))), 128))
|
|
427
427
|
], 42, ct)
|
|
428
428
|
]));
|
|
429
429
|
}
|
|
430
|
-
}), ht = /* @__PURE__ */
|
|
430
|
+
}), ht = /* @__PURE__ */ v(_t, [["__scopeId", "data-v-d5c46463"]]), pt = { class: "modal__wrapper" }, mt = /* @__PURE__ */ g({
|
|
431
431
|
__name: "modal",
|
|
432
432
|
props: {
|
|
433
433
|
show: { type: Boolean, default: !1 },
|
|
@@ -438,43 +438,43 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
438
438
|
const r = e, o = a, l = () => {
|
|
439
439
|
o("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (
|
|
441
|
+
return (u, h) => (s(), i("div", pt, [
|
|
442
442
|
S(Ie, {
|
|
443
443
|
duration: 300,
|
|
444
444
|
name: "nested"
|
|
445
445
|
}, {
|
|
446
446
|
default: y(() => [
|
|
447
|
-
|
|
448
|
-
class: p(["overlay",
|
|
447
|
+
U(t("div", {
|
|
448
|
+
class: p(["overlay", u.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
451
451
|
onClick: l
|
|
452
452
|
}, [
|
|
453
453
|
t("div", {
|
|
454
454
|
id: "modal",
|
|
455
|
-
class: p([
|
|
456
|
-
onClick:
|
|
455
|
+
class: p([u.searchBar ? "search" : ""]),
|
|
456
|
+
onClick: h[0] || (h[0] = he(() => {
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
459
|
t("div", null, [
|
|
460
|
-
|
|
460
|
+
u.searchBar ? _("", !0) : (s(), L(se, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
464
|
onClick: l
|
|
465
465
|
}))
|
|
466
466
|
]),
|
|
467
|
-
c(
|
|
467
|
+
c(u.$slots, "default", {}, void 0, !0)
|
|
468
468
|
], 2)
|
|
469
469
|
], 2), [
|
|
470
|
-
[
|
|
470
|
+
[Z, u.show]
|
|
471
471
|
])
|
|
472
472
|
]),
|
|
473
473
|
_: 3
|
|
474
474
|
})
|
|
475
475
|
]));
|
|
476
476
|
}
|
|
477
|
-
}),
|
|
477
|
+
}), ve = /* @__PURE__ */ v(mt, [["__scopeId", "data-v-80f0fb08"]]), ft = { class: "slider__wrapper" }, vt = { class: "slider__label" }, gt = ["for"], bt = ["aria-label"], yt = { class: "slider__content" }, kt = ["id", "name", "value", "min", "step", "max"], $t = { class: "modal-information" }, wt = /* @__PURE__ */ g({
|
|
478
478
|
__name: "slider",
|
|
479
479
|
props: {
|
|
480
480
|
label: {},
|
|
@@ -490,73 +490,73 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
490
490
|
},
|
|
491
491
|
emits: ["update:modelValue"],
|
|
492
492
|
setup(e, { emit: a }) {
|
|
493
|
-
const r = e, o = a, l = C(r.modelValue),
|
|
493
|
+
const r = e, o = a, l = C(r.modelValue), u = C(), h = C(!1), n = (f, k, w) => (f - k) / (w - k) * 100, b = (f) => {
|
|
494
494
|
var k;
|
|
495
|
-
(k =
|
|
495
|
+
(k = u.value) == null || k.style.setProperty("--ProgressPercent", `${f}%`);
|
|
496
496
|
};
|
|
497
497
|
return pe(() => {
|
|
498
|
-
if (
|
|
498
|
+
if (u.value) {
|
|
499
499
|
o("update:modelValue", l.value);
|
|
500
|
-
const
|
|
501
|
-
let k = (50 -
|
|
502
|
-
b(
|
|
500
|
+
const f = n(l.value, r.min, r.max);
|
|
501
|
+
let k = (50 - f) / 100;
|
|
502
|
+
b(f + k);
|
|
503
503
|
}
|
|
504
|
-
}), (
|
|
505
|
-
t("div",
|
|
506
|
-
t("div",
|
|
504
|
+
}), (f, k) => (s(), i("div", null, [
|
|
505
|
+
t("div", ft, [
|
|
506
|
+
t("div", vt, [
|
|
507
507
|
t("label", {
|
|
508
|
-
for:
|
|
509
|
-
class: p([
|
|
510
|
-
}, d(
|
|
511
|
-
|
|
508
|
+
for: f.id,
|
|
509
|
+
class: p([f.variant, ""])
|
|
510
|
+
}, d(f.label), 11, gt),
|
|
511
|
+
f.information ? (s(), i("i", {
|
|
512
512
|
key: 0,
|
|
513
513
|
role: "button",
|
|
514
|
-
class: p([
|
|
515
|
-
"aria-label":
|
|
514
|
+
class: p([f.variant, "slider__information"]),
|
|
515
|
+
"aria-label": f.informationLabel,
|
|
516
516
|
tabindex: "0",
|
|
517
517
|
"aria-haspopup": "dialog",
|
|
518
|
-
onClick: k[0] || (k[0] = (w) =>
|
|
519
|
-
onKeyup: k[1] || (k[1] = Ce((w) =>
|
|
520
|
-
}, null, 42, bt)) :
|
|
518
|
+
onClick: k[0] || (k[0] = (w) => h.value = !h.value),
|
|
519
|
+
onKeyup: k[1] || (k[1] = Ce((w) => h.value = !h.value, ["enter"]))
|
|
520
|
+
}, null, 42, bt)) : _("", !0)
|
|
521
521
|
]),
|
|
522
522
|
t("div", yt, [
|
|
523
523
|
t("span", {
|
|
524
|
-
class: p([
|
|
525
|
-
}, d(
|
|
524
|
+
class: p([f.variant, "slider__minmax"])
|
|
525
|
+
}, d(f.min), 3),
|
|
526
526
|
t("input", {
|
|
527
|
-
id:
|
|
527
|
+
id: f.id,
|
|
528
528
|
ref_key: "slider",
|
|
529
|
-
ref:
|
|
529
|
+
ref: u,
|
|
530
530
|
type: "range",
|
|
531
|
-
name:
|
|
532
|
-
value:
|
|
533
|
-
min:
|
|
534
|
-
step:
|
|
535
|
-
max:
|
|
536
|
-
class: p(
|
|
531
|
+
name: f.name,
|
|
532
|
+
value: f.modelValue,
|
|
533
|
+
min: f.min,
|
|
534
|
+
step: f.step,
|
|
535
|
+
max: f.max,
|
|
536
|
+
class: p(f.variant),
|
|
537
537
|
onInput: k[2] || (k[2] = ({ target: w }) => l.value = parseFloat(w.value))
|
|
538
538
|
}, null, 42, kt),
|
|
539
539
|
t("span", {
|
|
540
|
-
class: p([
|
|
541
|
-
}, d(
|
|
540
|
+
class: p([f.variant, "slider__minmax"])
|
|
541
|
+
}, d(f.max), 3)
|
|
542
542
|
]),
|
|
543
543
|
t("span", {
|
|
544
|
-
class: p([
|
|
545
|
-
}, d(
|
|
544
|
+
class: p([f.variant, "slider__value"])
|
|
545
|
+
}, d(f.modelValue), 3)
|
|
546
546
|
]),
|
|
547
|
-
|
|
547
|
+
f.information ? (s(), L(ve, {
|
|
548
548
|
key: 0,
|
|
549
|
-
show:
|
|
550
|
-
"onUpdate:show": k[3] || (k[3] = (w) =>
|
|
549
|
+
show: h.value,
|
|
550
|
+
"onUpdate:show": k[3] || (k[3] = (w) => h.value = w)
|
|
551
551
|
}, {
|
|
552
552
|
default: y(() => [
|
|
553
|
-
t("p", $t, d(
|
|
553
|
+
t("p", $t, d(f.information), 1)
|
|
554
554
|
]),
|
|
555
555
|
_: 1
|
|
556
|
-
}, 8, ["show"])) :
|
|
556
|
+
}, 8, ["show"])) : _("", !0)
|
|
557
557
|
]));
|
|
558
558
|
}
|
|
559
|
-
}), Bt = /* @__PURE__ */
|
|
559
|
+
}), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { id: "textarea-wrapper" }, It = ["for"], Ct = ["id"], qt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], At = { class: "textarea-info" }, Lt = { key: 0 }, Dt = /* @__PURE__ */ g({
|
|
560
560
|
__name: "textarea",
|
|
561
561
|
props: {
|
|
562
562
|
id: { default: "" },
|
|
@@ -596,7 +596,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
596
596
|
], 8, Ct),
|
|
597
597
|
t("div", At, [
|
|
598
598
|
t("div", null, [
|
|
599
|
-
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (s(), i("p", Lt, " Too many characters. Please make it shorter ")) :
|
|
599
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (s(), i("p", Lt, " Too many characters. Please make it shorter ")) : _("", !0)
|
|
600
600
|
]),
|
|
601
601
|
t("p", {
|
|
602
602
|
class: p(
|
|
@@ -606,7 +606,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
606
606
|
])
|
|
607
607
|
]));
|
|
608
608
|
}
|
|
609
|
-
}), Tt = /* @__PURE__ */
|
|
609
|
+
}), Tt = /* @__PURE__ */ v(Dt, [["__scopeId", "data-v-220a973c"]]), Vt = { class: "text-field__wrapper" }, Pt = ["for"], Ft = { key: 0 }, Mt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Ot = ["aria-expanded"], zt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Ht = {
|
|
610
610
|
key: 2,
|
|
611
611
|
class: "search"
|
|
612
612
|
}, Rt = {
|
|
@@ -642,62 +642,62 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
642
642
|
tel: "tel",
|
|
643
643
|
url: "url",
|
|
644
644
|
search: "search"
|
|
645
|
-
}, r = e, o =
|
|
645
|
+
}, r = e, o = A(() => a[r.type]), l = C(!0), u = A(
|
|
646
646
|
() => l.value ? "showPassword" : "hidePassword"
|
|
647
|
-
),
|
|
647
|
+
), h = A(
|
|
648
648
|
() => l.value ? "password" : "text"
|
|
649
649
|
);
|
|
650
|
-
return (
|
|
650
|
+
return (n, b) => (s(), i("div", Vt, [
|
|
651
651
|
t("label", {
|
|
652
|
-
for:
|
|
652
|
+
for: n.id,
|
|
653
653
|
class: p([
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
654
|
+
n.required ? "required" : "",
|
|
655
|
+
n.disabled ? "disabled" : "",
|
|
656
|
+
n.search ? "search" : ""
|
|
657
657
|
])
|
|
658
|
-
}, d(
|
|
658
|
+
}, d(n.label), 11, Pt),
|
|
659
659
|
o.value === "password" ? (s(), i("div", Ft, [
|
|
660
660
|
t("input", {
|
|
661
|
-
id:
|
|
661
|
+
id: n.id,
|
|
662
662
|
ref: "passwordField",
|
|
663
|
-
type:
|
|
664
|
-
value:
|
|
665
|
-
placeholder:
|
|
666
|
-
required:
|
|
667
|
-
disabled:
|
|
668
|
-
name:
|
|
669
|
-
onInput: b[0] || (b[0] = (
|
|
663
|
+
type: h.value,
|
|
664
|
+
value: n.modelValue,
|
|
665
|
+
placeholder: n.placeholder,
|
|
666
|
+
required: n.required,
|
|
667
|
+
disabled: n.disabled,
|
|
668
|
+
name: n.fieldName,
|
|
669
|
+
onInput: b[0] || (b[0] = (f) => n.$emit("update:modelValue", f.target.value))
|
|
670
670
|
}, null, 40, Mt),
|
|
671
671
|
t("i", {
|
|
672
672
|
role: "button",
|
|
673
|
-
class: p([
|
|
673
|
+
class: p([u.value]),
|
|
674
674
|
"aria-controls": "password",
|
|
675
675
|
"aria-expanded": !l.value,
|
|
676
|
-
onClick: b[1] || (b[1] = (
|
|
677
|
-
}, null, 10,
|
|
676
|
+
onClick: b[1] || (b[1] = (f) => l.value = !l.value)
|
|
677
|
+
}, null, 10, Ot)
|
|
678
678
|
])) : (s(), i("input", {
|
|
679
679
|
key: 1,
|
|
680
|
-
id:
|
|
680
|
+
id: n.id,
|
|
681
681
|
ref: "textField",
|
|
682
682
|
type: o.value,
|
|
683
|
-
value:
|
|
684
|
-
placeholder:
|
|
685
|
-
required:
|
|
683
|
+
value: n.modelValue,
|
|
684
|
+
placeholder: n.placeholder,
|
|
685
|
+
required: n.required,
|
|
686
686
|
class: p([
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
687
|
+
n.invalid ? "invalid" : "",
|
|
688
|
+
n.valid ? "valid" : "",
|
|
689
|
+
n.search ? "search" : ""
|
|
690
690
|
]),
|
|
691
|
-
disabled:
|
|
692
|
-
name:
|
|
693
|
-
onInput: b[2] || (b[2] = (
|
|
694
|
-
}, null, 42,
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
691
|
+
disabled: n.disabled,
|
|
692
|
+
name: n.fieldName,
|
|
693
|
+
onInput: b[2] || (b[2] = (f) => n.$emit("update:modelValue", f.target.value))
|
|
694
|
+
}, null, 42, zt)),
|
|
695
|
+
n.search ? (s(), i("i", Ht)) : _("", !0),
|
|
696
|
+
n.errorMessage ? (s(), i("strong", Rt, d(n.errorMessage), 1)) : _("", !0),
|
|
697
|
+
n.helperText ? (s(), i("span", Nt, d(n.helperText), 1)) : _("", !0)
|
|
698
698
|
]));
|
|
699
699
|
}
|
|
700
|
-
}), jt = /* @__PURE__ */
|
|
700
|
+
}), jt = /* @__PURE__ */ v(Et, [["__scopeId", "data-v-414b9435"]]), Kt = { class: "video__wrapper" }, Ut = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Gt = ["src", "aria-label", "title", "width", "height"], Jt = /* @__PURE__ */ g({
|
|
701
701
|
__name: "video",
|
|
702
702
|
props: {
|
|
703
703
|
play: { type: Boolean, default: !1 },
|
|
@@ -722,36 +722,36 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
722
722
|
resetVideo: () => {
|
|
723
723
|
o.value && (o.value.currentTime = 0, o.value.play());
|
|
724
724
|
}
|
|
725
|
-
}), (
|
|
726
|
-
|
|
725
|
+
}), (u, h) => (s(), i("div", Kt, [
|
|
726
|
+
u.localVideo ? (s(), i("video", {
|
|
727
727
|
key: 0,
|
|
728
728
|
ref_key: "videoRef",
|
|
729
729
|
ref: o,
|
|
730
|
-
"aria-label":
|
|
731
|
-
controls:
|
|
732
|
-
poster:
|
|
733
|
-
width:
|
|
734
|
-
height:
|
|
735
|
-
autoplay:
|
|
736
|
-
loop:
|
|
737
|
-
muted:
|
|
730
|
+
"aria-label": u.ariaLabel,
|
|
731
|
+
controls: u.controls,
|
|
732
|
+
poster: u.poster,
|
|
733
|
+
width: u.width,
|
|
734
|
+
height: u.height,
|
|
735
|
+
autoplay: u.autoplay,
|
|
736
|
+
loop: u.loop,
|
|
737
|
+
muted: u.muted,
|
|
738
738
|
type: "video/mp4",
|
|
739
739
|
playsinline: "",
|
|
740
|
-
src:
|
|
740
|
+
src: u.src
|
|
741
741
|
}, null, 8, Ut)) : (s(), i("iframe", {
|
|
742
742
|
key: 1,
|
|
743
|
-
src:
|
|
744
|
-
"aria-label":
|
|
745
|
-
title:
|
|
746
|
-
width:
|
|
747
|
-
height:
|
|
743
|
+
src: u.src,
|
|
744
|
+
"aria-label": u.ariaLabel,
|
|
745
|
+
title: u.title,
|
|
746
|
+
width: u.width,
|
|
747
|
+
height: u.height,
|
|
748
748
|
frameborder: "0",
|
|
749
749
|
allow: "autoplay; fullscreen",
|
|
750
750
|
allowfullscreen: ""
|
|
751
751
|
}, null, 8, Gt))
|
|
752
752
|
]));
|
|
753
753
|
}
|
|
754
|
-
}), ee = /* @__PURE__ */
|
|
754
|
+
}), ee = /* @__PURE__ */ v(Jt, [["__scopeId", "data-v-c6a0feb6"]]), Wt = { class: "address__wrapper" }, Yt = { class: "address__content" }, Qt = { class: "address__flag" }, Zt = { class: "address__address" }, Xt = { class: "address__name" }, xt = { key: 0 }, ea = { class: "address__contact" }, ta = ["href"], aa = ["href"], oa = ["href"], sa = /* @__PURE__ */ g({
|
|
755
755
|
__name: "address",
|
|
756
756
|
props: {
|
|
757
757
|
name: {},
|
|
@@ -774,10 +774,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
774
774
|
t("p", null, d(a.company), 1),
|
|
775
775
|
t("p", null, d(a.addressLine1), 1),
|
|
776
776
|
t("p", null, d(a.addressLine2), 1),
|
|
777
|
-
a.addressLine3 ? (s(), i("p", xt, d(a.addressLine3), 1)) :
|
|
777
|
+
a.addressLine3 ? (s(), i("p", xt, d(a.addressLine3), 1)) : _("", !0)
|
|
778
778
|
]),
|
|
779
779
|
t("div", ea, [
|
|
780
|
-
a.website ? (s(),
|
|
780
|
+
a.website ? (s(), L(P, {
|
|
781
781
|
key: 0,
|
|
782
782
|
underline: "false",
|
|
783
783
|
"link-type": "regular"
|
|
@@ -789,8 +789,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
789
789
|
}, d(a.website), 9, ta)
|
|
790
790
|
]),
|
|
791
791
|
_: 1
|
|
792
|
-
})) :
|
|
793
|
-
(s(!0), i(
|
|
792
|
+
})) : _("", !0),
|
|
793
|
+
(s(!0), i(T, null, V(a.phoneNumbers, (o) => (s(), L(P, {
|
|
794
794
|
key: o,
|
|
795
795
|
underline: "false",
|
|
796
796
|
"link-type": "regular"
|
|
@@ -811,7 +811,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
811
811
|
])
|
|
812
812
|
]));
|
|
813
813
|
}
|
|
814
|
-
}), la = /* @__PURE__ */
|
|
814
|
+
}), la = /* @__PURE__ */ v(sa, [["__scopeId", "data-v-e1c72a18"]]), ia = (e) => (H("data-v-a44fd57d"), e = e(), R(), e), ra = { class: "bullet-list__wrapper" }, na = /* @__PURE__ */ ia(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), da = /* @__PURE__ */ g({
|
|
815
815
|
__name: "bullet-list",
|
|
816
816
|
props: {
|
|
817
817
|
list: {
|
|
@@ -836,15 +836,15 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
836
836
|
class: p(["bullet-list", e.variant])
|
|
837
837
|
}, [
|
|
838
838
|
t("ul", null, [
|
|
839
|
-
(s(!0), i(
|
|
839
|
+
(s(!0), i(T, null, V(e.list, (o) => (s(), i("li", { key: o }, [
|
|
840
840
|
na,
|
|
841
|
-
|
|
841
|
+
J(" " + d(o), 1)
|
|
842
842
|
]))), 128))
|
|
843
843
|
])
|
|
844
844
|
], 2)
|
|
845
845
|
]));
|
|
846
846
|
}
|
|
847
|
-
}), ca = /* @__PURE__ */
|
|
847
|
+
}), ca = /* @__PURE__ */ v(da, [["__scopeId", "data-v-a44fd57d"]]), ua = { class: "card__wrapper" }, _a = { key: 2 }, ha = { key: 5 }, pa = /* @__PURE__ */ g({
|
|
848
848
|
__name: "card",
|
|
849
849
|
props: {
|
|
850
850
|
variant: { default: "product" },
|
|
@@ -889,23 +889,23 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
889
889
|
width: "596",
|
|
890
890
|
height: "335"
|
|
891
891
|
}
|
|
892
|
-
}, l = e,
|
|
893
|
-
return (n,
|
|
892
|
+
}, l = e, u = A(() => o[l.size]), h = A(() => l.variant === "article" || l.variant === "product" ? `card--${l.size}-${l.variant}` : `card--${l.variant}`);
|
|
893
|
+
return (n, b) => (s(), i("div", ua, [
|
|
894
894
|
t("div", {
|
|
895
895
|
class: p(["card", [
|
|
896
896
|
n.theme === "dark" ? "card--dark" : "card--light",
|
|
897
897
|
n.orientation === "vertical" ? "vertical" : "horizontal",
|
|
898
|
-
|
|
899
|
-
|
|
898
|
+
u.value.class,
|
|
899
|
+
h.value,
|
|
900
900
|
n.variant === "product" ? "card--product" : "card--article"
|
|
901
901
|
]]),
|
|
902
902
|
style: x([n.variant === "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
903
|
-
onMouseover:
|
|
904
|
-
onMouseout:
|
|
903
|
+
onMouseover: b[0] || (b[0] = (f) => ce(r) ? r.value = !0 : r = !0),
|
|
904
|
+
onMouseout: b[1] || (b[1] = (f) => ce(r) ? r.value = !1 : r = !1)
|
|
905
905
|
}, [
|
|
906
|
-
n.mediaType === "image" ? (s(),
|
|
906
|
+
n.mediaType === "image" ? (s(), L(F, { key: 0 }, {
|
|
907
907
|
default: y(() => [
|
|
908
|
-
c(n.$slots, "card-image",
|
|
908
|
+
c(n.$slots, "card-image", M({
|
|
909
909
|
src: n.imgSrc,
|
|
910
910
|
width: "596",
|
|
911
911
|
height: "335",
|
|
@@ -926,8 +926,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
926
926
|
"aria-label": n.arialabel,
|
|
927
927
|
controls: !1,
|
|
928
928
|
poster: n.imgSrc,
|
|
929
|
-
width:
|
|
930
|
-
height:
|
|
929
|
+
width: u.value.width,
|
|
930
|
+
height: u.value.height,
|
|
931
931
|
autoplay: !0,
|
|
932
932
|
loop: !0,
|
|
933
933
|
muted: !0
|
|
@@ -935,7 +935,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
935
935
|
], 2)),
|
|
936
936
|
I(a)["card-label"] ? (s(), i("div", _a, [
|
|
937
937
|
c(n.$slots, "card-label")
|
|
938
|
-
])) :
|
|
938
|
+
])) : _("", !0),
|
|
939
939
|
n.variant === "product" ? (s(), i("div", {
|
|
940
940
|
key: 3,
|
|
941
941
|
class: p([
|
|
@@ -950,11 +950,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
950
950
|
n.theme === "dark" ? "regular-dark" : "regular-dark-blue"
|
|
951
951
|
])
|
|
952
952
|
}, d(n.headline), 3)),
|
|
953
|
-
n.variant === "product" ? (s(), i("p", ha, d(n.paragraph), 1)) :
|
|
953
|
+
n.variant === "product" ? (s(), i("p", ha, d(n.paragraph), 1)) : _("", !0)
|
|
954
954
|
], 38)
|
|
955
955
|
]));
|
|
956
956
|
}
|
|
957
|
-
}), ma = /* @__PURE__ */
|
|
957
|
+
}), ma = /* @__PURE__ */ v(pa, [["__scopeId", "data-v-cb201b36"]]), fa = { class: "column-card" }, va = { class: "column-card__content" }, ga = { class: "column-card__headline" }, ba = { class: "column-card__bodytext" }, ya = /* @__PURE__ */ g({
|
|
958
958
|
__name: "column-card",
|
|
959
959
|
props: {
|
|
960
960
|
headline: {},
|
|
@@ -963,17 +963,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
963
963
|
imageFit: { type: Boolean }
|
|
964
964
|
},
|
|
965
965
|
setup(e) {
|
|
966
|
-
return (a, r) => (s(), i("div",
|
|
967
|
-
t("div",
|
|
966
|
+
return (a, r) => (s(), i("div", fa, [
|
|
967
|
+
t("div", va, [
|
|
968
968
|
a.image.filename ? (s(), i("div", {
|
|
969
969
|
key: 0,
|
|
970
970
|
class: p(["column-card__image", { cover: a.imageFit, contain: !a.imageFit }])
|
|
971
971
|
}, [
|
|
972
|
-
c(a.$slots, "column-card-image",
|
|
972
|
+
c(a.$slots, "column-card-image", O(z({
|
|
973
973
|
src: a.image.filename,
|
|
974
974
|
alt: a.image.alt
|
|
975
975
|
})), void 0, !0)
|
|
976
|
-
], 2)) :
|
|
976
|
+
], 2)) : _("", !0),
|
|
977
977
|
t("h3", ga, d(a.headline), 1),
|
|
978
978
|
t("div", ba, [
|
|
979
979
|
c(a.$slots, "column-card-body", {}, void 0, !0)
|
|
@@ -981,7 +981,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
981
981
|
])
|
|
982
982
|
]));
|
|
983
983
|
}
|
|
984
|
-
}), ge = /* @__PURE__ */
|
|
984
|
+
}), ge = /* @__PURE__ */ v(ya, [["__scopeId", "data-v-fc3755f9"]]), ka = (e) => (H("data-v-2c394add"), e = e(), R(), e), $a = { class: "event__wrapper" }, wa = { class: "event__headline" }, Ba = { class: "event__date-location" }, Sa = /* @__PURE__ */ ka(() => /* @__PURE__ */ t("br", null, null, -1)), Ia = { class: "event__exhibitor" }, Ca = /* @__PURE__ */ g({
|
|
985
985
|
__name: "event-card",
|
|
986
986
|
props: {
|
|
987
987
|
eventType: {
|
|
@@ -1007,20 +1007,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1007
1007
|
},
|
|
1008
1008
|
setup(e) {
|
|
1009
1009
|
return (a, r) => (s(), i("div", $a, [
|
|
1010
|
-
S(
|
|
1010
|
+
S(X, {
|
|
1011
1011
|
"label-dark": !1,
|
|
1012
1012
|
text: e.eventType ? e.eventType : ""
|
|
1013
1013
|
}, null, 8, ["text"]),
|
|
1014
1014
|
t("div", wa, d(e.headline), 1),
|
|
1015
1015
|
t("div", Ba, [
|
|
1016
|
-
|
|
1016
|
+
J(d(e.dateTime), 1),
|
|
1017
1017
|
Sa,
|
|
1018
|
-
|
|
1018
|
+
J(d(e.location), 1)
|
|
1019
1019
|
]),
|
|
1020
1020
|
t("div", Ia, d(e.exhibitor), 1)
|
|
1021
1021
|
]));
|
|
1022
1022
|
}
|
|
1023
|
-
}), qa = /* @__PURE__ */
|
|
1023
|
+
}), qa = /* @__PURE__ */ v(Ca, [["__scopeId", "data-v-2c394add"]]), le = (e) => (H("data-v-93ee37aa"), e = e(), R(), e), Aa = { class: "flashcard-side flashcard-front" }, La = {
|
|
1024
1024
|
key: 0,
|
|
1025
1025
|
class: "content"
|
|
1026
1026
|
}, Da = { key: 0 }, Ta = {
|
|
@@ -1035,10 +1035,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1035
1035
|
}, null, -1)), Fa = {
|
|
1036
1036
|
key: 0,
|
|
1037
1037
|
class: "content"
|
|
1038
|
-
}, Ma = { key: 0 },
|
|
1038
|
+
}, Ma = { key: 0 }, Oa = {
|
|
1039
1039
|
key: 1,
|
|
1040
1040
|
class: "flashcard-body"
|
|
1041
|
-
},
|
|
1041
|
+
}, za = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
|
|
1042
1042
|
class: "flip-icon",
|
|
1043
1043
|
src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
|
|
1044
1044
|
}, null, -1)), Ha = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
|
|
@@ -1063,7 +1063,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1063
1063
|
a.value = !a.value;
|
|
1064
1064
|
}
|
|
1065
1065
|
return (o, l) => {
|
|
1066
|
-
var
|
|
1066
|
+
var u, h, n, b, f, k;
|
|
1067
1067
|
return s(), i("div", {
|
|
1068
1068
|
class: "flashcard-container",
|
|
1069
1069
|
onClick: r
|
|
@@ -1077,11 +1077,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1077
1077
|
}])
|
|
1078
1078
|
}, [
|
|
1079
1079
|
t("div", Aa, [
|
|
1080
|
-
o.name || ((
|
|
1081
|
-
o.name ? (s(), i("h3", Da, d(o.name), 1)) :
|
|
1080
|
+
o.name || ((u = o.bodytext) == null ? void 0 : u.length) > 0 ? (s(), i("div", La, [
|
|
1081
|
+
o.name ? (s(), i("h3", Da, d(o.name), 1)) : _("", !0),
|
|
1082
1082
|
o.bodytext ? (s(), i("div", Ta, [
|
|
1083
|
-
c(o.$slots, "flashcard-front-body",
|
|
1084
|
-
])) :
|
|
1083
|
+
c(o.$slots, "flashcard-front-body", O(z({ bodytext: o.bodytext })), void 0, !0)
|
|
1084
|
+
])) : _("", !0),
|
|
1085
1085
|
Va
|
|
1086
1086
|
])) : (s(), i("div", {
|
|
1087
1087
|
key: 1,
|
|
@@ -1090,7 +1090,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1090
1090
|
cover: !o.imageFit
|
|
1091
1091
|
}])
|
|
1092
1092
|
}, [
|
|
1093
|
-
c(o.$slots, "flashcard-front-image",
|
|
1093
|
+
c(o.$slots, "flashcard-front-image", O(z({ src: (h = o.image) == null ? void 0 : h.filename, alt: (n = o.image) == null ? void 0 : n.alt })), void 0, !0),
|
|
1094
1094
|
Pa
|
|
1095
1095
|
], 2))
|
|
1096
1096
|
]),
|
|
@@ -1101,11 +1101,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1101
1101
|
])
|
|
1102
1102
|
}, [
|
|
1103
1103
|
o.namebackside || o.bodytextbackside.length > 0 ? (s(), i("div", Fa, [
|
|
1104
|
-
o.namebackside ? (s(), i("h3", Ma, d(o.namebackside), 1)) :
|
|
1105
|
-
o.bodytextbackside ? (s(), i("div",
|
|
1106
|
-
c(o.$slots, "flashcard-back-body",
|
|
1107
|
-
])) :
|
|
1108
|
-
|
|
1104
|
+
o.namebackside ? (s(), i("h3", Ma, d(o.namebackside), 1)) : _("", !0),
|
|
1105
|
+
o.bodytextbackside ? (s(), i("div", Oa, [
|
|
1106
|
+
c(o.$slots, "flashcard-back-body", O(z({ bodytextbackside: o.bodytextbackside })), void 0, !0)
|
|
1107
|
+
])) : _("", !0),
|
|
1108
|
+
za
|
|
1109
1109
|
])) : (s(), i("div", {
|
|
1110
1110
|
key: 1,
|
|
1111
1111
|
class: p(["flashcard-image", {
|
|
@@ -1113,7 +1113,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1113
1113
|
cover: !o.imageFitBack
|
|
1114
1114
|
}])
|
|
1115
1115
|
}, [
|
|
1116
|
-
c(o.$slots, "flashcard-back-image",
|
|
1116
|
+
c(o.$slots, "flashcard-back-image", O(z({ src: (f = o.imagebackside) == null ? void 0 : f.filename, alt: (k = o.imagebackside) == null ? void 0 : k.alt })), void 0, !0),
|
|
1117
1117
|
Ha
|
|
1118
1118
|
], 2))
|
|
1119
1119
|
], 2)
|
|
@@ -1121,7 +1121,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1121
1121
|
]);
|
|
1122
1122
|
};
|
|
1123
1123
|
}
|
|
1124
|
-
}), be = /* @__PURE__ */
|
|
1124
|
+
}), be = /* @__PURE__ */ v(Ra, [["__scopeId", "data-v-93ee37aa"]]), Na = { class: "text__wrapper" }, Ea = { class: "text__headline" }, ja = { class: "text__paragraph" }, Ka = /* @__PURE__ */ g({
|
|
1125
1125
|
__name: "text-card",
|
|
1126
1126
|
props: {
|
|
1127
1127
|
label: {
|
|
@@ -1139,7 +1139,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1139
1139
|
},
|
|
1140
1140
|
setup(e) {
|
|
1141
1141
|
return (a, r) => (s(), i("div", Na, [
|
|
1142
|
-
S(
|
|
1142
|
+
S(X, {
|
|
1143
1143
|
"label-dark": !1,
|
|
1144
1144
|
text: e.label ? e.label : ""
|
|
1145
1145
|
}, null, 8, ["text"]),
|
|
@@ -1149,7 +1149,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1149
1149
|
])
|
|
1150
1150
|
]));
|
|
1151
1151
|
}
|
|
1152
|
-
}), Ua = /* @__PURE__ */
|
|
1152
|
+
}), Ua = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-ebdea819"]]), Ga = { class: "accordions" }, Ja = { class: "accordions__wrapper" }, Wa = { class: "accordion" }, Ya = ["onClick"], Qa = { class: "accordion__headline" }, Za = { class: "accordion__icon" }, Xa = {
|
|
1153
1153
|
key: 0,
|
|
1154
1154
|
src: "https://a.storyblok.com/f/230581/21x21/42c9c3b5ba/icon_add.svg"
|
|
1155
1155
|
}, xa = {
|
|
@@ -1162,40 +1162,43 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1162
1162
|
},
|
|
1163
1163
|
setup(e) {
|
|
1164
1164
|
const a = C([]), r = (l) => {
|
|
1165
|
-
const
|
|
1166
|
-
|
|
1165
|
+
const u = a.value.indexOf(l);
|
|
1166
|
+
u > -1 ? a.value.splice(u, 1) : a.value.push(l);
|
|
1167
1167
|
}, o = (l) => a.value.includes(l);
|
|
1168
|
-
return (l,
|
|
1168
|
+
return (l, u) => (s(), i("section", Ga, [
|
|
1169
1169
|
t("div", Ja, [
|
|
1170
|
-
(s(!0), i(
|
|
1171
|
-
key:
|
|
1170
|
+
(s(!0), i(T, null, V(l.accordions, (h) => (s(), i("div", {
|
|
1171
|
+
key: h._uid
|
|
1172
1172
|
}, [
|
|
1173
1173
|
t("div", Wa, [
|
|
1174
1174
|
t("div", {
|
|
1175
1175
|
class: "accordion__header",
|
|
1176
|
-
onClick: (
|
|
1176
|
+
onClick: (n) => r(h._uid)
|
|
1177
1177
|
}, [
|
|
1178
|
-
t("h3", Qa, d(
|
|
1178
|
+
t("h3", Qa, d(h.headline), 1),
|
|
1179
1179
|
t("span", Za, [
|
|
1180
|
-
o(
|
|
1180
|
+
o(h._uid) ? (s(), i("img", xa)) : (s(), i("img", Xa))
|
|
1181
1181
|
])
|
|
1182
1182
|
], 8, Ya),
|
|
1183
1183
|
t("div", {
|
|
1184
|
-
class: p(["accordion__content", { "accordion__content--reverse":
|
|
1184
|
+
class: p(["accordion__content", { "accordion__content--reverse": h.imageFirst }]),
|
|
1185
1185
|
style: x({
|
|
1186
|
-
display: o(
|
|
1186
|
+
display: o(h._uid) ? "flex" : "none"
|
|
1187
1187
|
})
|
|
1188
1188
|
}, [
|
|
1189
1189
|
t("div", eo, [
|
|
1190
|
-
c(l.$slots, "accordion-body",
|
|
1190
|
+
c(l.$slots, "accordion-body", M({ ref_for: !0 }, { body: h.bodytext }), void 0, !0)
|
|
1191
1191
|
]),
|
|
1192
|
-
S(
|
|
1192
|
+
S(F, null, {
|
|
1193
1193
|
default: y(() => [
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1194
|
+
h.image ? c(l.$slots, "accordion-image", M({
|
|
1195
|
+
key: 0,
|
|
1196
|
+
ref_for: !0
|
|
1197
|
+
}, {
|
|
1198
|
+
src: h.image.filename,
|
|
1199
|
+
alt: h.image.alt,
|
|
1197
1200
|
class: "accordion__image"
|
|
1198
|
-
})
|
|
1201
|
+
}), void 0, !0) : _("", !0)
|
|
1199
1202
|
]),
|
|
1200
1203
|
_: 2
|
|
1201
1204
|
}, 1024)
|
|
@@ -1205,7 +1208,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1205
1208
|
])
|
|
1206
1209
|
]));
|
|
1207
1210
|
}
|
|
1208
|
-
}), ao = /* @__PURE__ */
|
|
1211
|
+
}), ao = /* @__PURE__ */ v(to, [["__scopeId", "data-v-0e6f6da8"]]), oo = { class: "card-display__wrapper" }, so = {
|
|
1209
1212
|
key: 0,
|
|
1210
1213
|
class: "card__content"
|
|
1211
1214
|
}, lo = { key: 0 }, io = { key: 1 }, ro = { class: "card__cards" }, no = /* @__PURE__ */ g({
|
|
@@ -1233,16 +1236,16 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1233
1236
|
}, [
|
|
1234
1237
|
t("div", oo, [
|
|
1235
1238
|
e.headline || e.paragraph ? (s(), i("div", so, [
|
|
1236
|
-
e.headline ? (s(), i("h2", lo, d(e.headline), 1)) :
|
|
1237
|
-
e.paragraph ? (s(), i("p", io, d(e.paragraph), 1)) :
|
|
1238
|
-
])) :
|
|
1239
|
+
e.headline ? (s(), i("h2", lo, d(e.headline), 1)) : _("", !0),
|
|
1240
|
+
e.paragraph ? (s(), i("p", io, d(e.paragraph), 1)) : _("", !0)
|
|
1241
|
+
])) : _("", !0),
|
|
1239
1242
|
t("div", ro, [
|
|
1240
1243
|
c(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1241
1244
|
])
|
|
1242
1245
|
])
|
|
1243
1246
|
], 2));
|
|
1244
1247
|
}
|
|
1245
|
-
}), co = /* @__PURE__ */
|
|
1248
|
+
}), co = /* @__PURE__ */ v(no, [["__scopeId", "data-v-e5d1b11a"]]), uo = { class: "column-grid__top-section" }, _o = {
|
|
1246
1249
|
key: 0,
|
|
1247
1250
|
class: "column-grid__headline"
|
|
1248
1251
|
}, ho = {
|
|
@@ -1264,13 +1267,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1264
1267
|
])
|
|
1265
1268
|
}, [
|
|
1266
1269
|
t("div", uo, [
|
|
1267
|
-
a.headline ? (s(), i("h2", _o, d(a.headline), 1)) :
|
|
1270
|
+
a.headline ? (s(), i("h2", _o, d(a.headline), 1)) : _("", !0),
|
|
1268
1271
|
a.bodytext ? (s(), i("div", ho, [
|
|
1269
1272
|
c(a.$slots, "column-grid-body", {}, void 0, !0)
|
|
1270
|
-
])) :
|
|
1273
|
+
])) : _("", !0)
|
|
1271
1274
|
]),
|
|
1272
1275
|
t("div", po, [
|
|
1273
|
-
(s(!0), i(
|
|
1276
|
+
(s(!0), i(T, null, V(a.columns, (o) => (s(), L(ge, {
|
|
1274
1277
|
key: o._uid,
|
|
1275
1278
|
headline: o.headline,
|
|
1276
1279
|
bodytext: o.bodytext,
|
|
@@ -1278,21 +1281,24 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1278
1281
|
"image-fit": o.imageFit
|
|
1279
1282
|
}, {
|
|
1280
1283
|
"column-card-body": y(() => [
|
|
1281
|
-
c(a.$slots, "column-card-body",
|
|
1284
|
+
c(a.$slots, "column-card-body", M({ ref_for: !0 }, { body: o.bodytext }), void 0, !0)
|
|
1282
1285
|
]),
|
|
1283
1286
|
"column-card-image": y(() => [
|
|
1284
|
-
o.image ? c(a.$slots, "column-card-image",
|
|
1287
|
+
o.image ? c(a.$slots, "column-card-image", M({
|
|
1288
|
+
key: 0,
|
|
1289
|
+
ref_for: !0
|
|
1290
|
+
}, {
|
|
1285
1291
|
src: o.image.filename,
|
|
1286
1292
|
alt: o.image.alt,
|
|
1287
1293
|
style: { "object-fit": o.imageFit ? "cover" : "contain" }
|
|
1288
|
-
})
|
|
1294
|
+
}), void 0, !0) : _("", !0)
|
|
1289
1295
|
]),
|
|
1290
1296
|
_: 2
|
|
1291
1297
|
}, 1032, ["headline", "bodytext", "image", "image-fit"]))), 128))
|
|
1292
1298
|
])
|
|
1293
1299
|
], 2));
|
|
1294
1300
|
}
|
|
1295
|
-
}),
|
|
1301
|
+
}), fo = /* @__PURE__ */ v(mo, [["__scopeId", "data-v-c07b3f47"]]), vo = { class: "facts__wrapper" }, go = { class: "facts__content" }, bo = { class: "facts__headline" }, yo = { class: "facts" }, ko = { class: "fact__value" }, $o = { class: "fact__metric" }, wo = {
|
|
1296
1302
|
key: 0,
|
|
1297
1303
|
class: "facts__link"
|
|
1298
1304
|
}, Bo = /* @__PURE__ */ g({
|
|
@@ -1319,11 +1325,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1319
1325
|
}) }
|
|
1320
1326
|
},
|
|
1321
1327
|
setup(e) {
|
|
1322
|
-
return (a, r) => (s(), i("div",
|
|
1328
|
+
return (a, r) => (s(), i("div", vo, [
|
|
1323
1329
|
t("div", go, [
|
|
1324
1330
|
t("h2", bo, d(a.headline), 1),
|
|
1325
1331
|
t("div", yo, [
|
|
1326
|
-
(s(!0), i(
|
|
1332
|
+
(s(!0), i(T, null, V(a.facts, (o) => (s(), i("div", {
|
|
1327
1333
|
key: o.value + o.metric,
|
|
1328
1334
|
class: "fact"
|
|
1329
1335
|
}, [
|
|
@@ -1336,7 +1342,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1336
1342
|
]))), 128))
|
|
1337
1343
|
]),
|
|
1338
1344
|
a.link ? (s(), i("div", wo, [
|
|
1339
|
-
S(
|
|
1345
|
+
S(P, {
|
|
1340
1346
|
"link-type": "regular_light",
|
|
1341
1347
|
arrow: ""
|
|
1342
1348
|
}, {
|
|
@@ -1345,11 +1351,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1345
1351
|
]),
|
|
1346
1352
|
_: 3
|
|
1347
1353
|
})
|
|
1348
|
-
])) :
|
|
1354
|
+
])) : _("", !0)
|
|
1349
1355
|
])
|
|
1350
1356
|
]));
|
|
1351
1357
|
}
|
|
1352
|
-
}), So = /* @__PURE__ */
|
|
1358
|
+
}), So = /* @__PURE__ */ v(Bo, [["__scopeId", "data-v-d2b231d4"]]), Io = { class: "features__wrapper" }, Co = { class: "features__content" }, qo = {
|
|
1353
1359
|
key: 0,
|
|
1354
1360
|
class: "features__headline"
|
|
1355
1361
|
}, Ao = {
|
|
@@ -1367,25 +1373,25 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1367
1373
|
t("div", Co, [
|
|
1368
1374
|
a.headline ? (s(), i("div", qo, [
|
|
1369
1375
|
t("h2", null, d(a.headline), 1)
|
|
1370
|
-
])) :
|
|
1376
|
+
])) : _("", !0),
|
|
1371
1377
|
a.body ? (s(), i("div", Ao, [
|
|
1372
1378
|
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1373
|
-
])) :
|
|
1379
|
+
])) : _("", !0),
|
|
1374
1380
|
t("div", {
|
|
1375
1381
|
class: p(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1376
1382
|
}, [
|
|
1377
|
-
(s(!0), i(
|
|
1383
|
+
(s(!0), i(T, null, V(a.elements, (o) => (s(), i("div", {
|
|
1378
1384
|
key: o.headline,
|
|
1379
1385
|
class: "features__element"
|
|
1380
1386
|
}, [
|
|
1381
|
-
S(
|
|
1387
|
+
S(F, { class: "element__icon" }, {
|
|
1382
1388
|
default: y(() => [
|
|
1383
|
-
c(a.$slots, "features-icon",
|
|
1389
|
+
c(a.$slots, "features-icon", M({ ref_for: !0 }, {
|
|
1384
1390
|
src: o.icon.src,
|
|
1385
1391
|
height: 30,
|
|
1386
1392
|
width: 30,
|
|
1387
1393
|
alt: o.icon.alt
|
|
1388
|
-
})
|
|
1394
|
+
}), void 0, !0)
|
|
1389
1395
|
]),
|
|
1390
1396
|
_: 2
|
|
1391
1397
|
}, 1024),
|
|
@@ -1396,13 +1402,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1396
1402
|
])
|
|
1397
1403
|
]));
|
|
1398
1404
|
}
|
|
1399
|
-
}), Vo = /* @__PURE__ */
|
|
1405
|
+
}), Vo = /* @__PURE__ */ v(To, [["__scopeId", "data-v-57a22df7"]]), Po = { class: "flashcard-wrapper" }, Fo = {
|
|
1400
1406
|
key: 0,
|
|
1401
1407
|
class: "flashcard-wrapper__headline"
|
|
1402
1408
|
}, Mo = {
|
|
1403
1409
|
key: 1,
|
|
1404
1410
|
class: "flashcard-wrapper__bodytext"
|
|
1405
|
-
},
|
|
1411
|
+
}, Oo = /* @__PURE__ */ g({
|
|
1406
1412
|
__name: "flashcards",
|
|
1407
1413
|
props: {
|
|
1408
1414
|
headline: {},
|
|
@@ -1411,12 +1417,12 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1411
1417
|
flashcards: {}
|
|
1412
1418
|
},
|
|
1413
1419
|
setup(e) {
|
|
1414
|
-
const a = e, r =
|
|
1415
|
-
var
|
|
1416
|
-
const l = (
|
|
1420
|
+
const a = e, r = A(() => a.body.trim().length > 0), o = A(() => {
|
|
1421
|
+
var u;
|
|
1422
|
+
const l = (u = a.flashcards) == null ? void 0 : u.length;
|
|
1417
1423
|
return l === 4 || l === 5 ? "sm" : l === 6 || l === 3 ? "md" : l === 2 ? "lg" : "sm";
|
|
1418
1424
|
});
|
|
1419
|
-
return (l,
|
|
1425
|
+
return (l, u) => (s(), i("div", {
|
|
1420
1426
|
class: p(["flashcards", l.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
|
|
1421
1427
|
}, [
|
|
1422
1428
|
t("div", Po, [
|
|
@@ -1426,10 +1432,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1426
1432
|
"flashcard-wrapper__top-section"
|
|
1427
1433
|
])
|
|
1428
1434
|
}, [
|
|
1429
|
-
l.headline ? (s(), i("h2", Fo, d(l.headline), 1)) :
|
|
1435
|
+
l.headline ? (s(), i("h2", Fo, d(l.headline), 1)) : _("", !0),
|
|
1430
1436
|
l.body ? (s(), i("div", Mo, [
|
|
1431
1437
|
c(l.$slots, "flashcard-wrapper-body", {}, void 0, !0)
|
|
1432
|
-
])) :
|
|
1438
|
+
])) : _("", !0)
|
|
1433
1439
|
], 2),
|
|
1434
1440
|
t("div", {
|
|
1435
1441
|
class: p(["flashcard-wrapper__teaser-list", {
|
|
@@ -1438,29 +1444,29 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1438
1444
|
lg: o.value === "lg"
|
|
1439
1445
|
}])
|
|
1440
1446
|
}, [
|
|
1441
|
-
(s(!0), i(
|
|
1442
|
-
key:
|
|
1443
|
-
name:
|
|
1444
|
-
bodytext:
|
|
1445
|
-
image:
|
|
1446
|
-
namebackside:
|
|
1447
|
-
bodytextbackside:
|
|
1448
|
-
imagebackside:
|
|
1447
|
+
(s(!0), i(T, null, V(l.flashcards, (h) => (s(), L(I(be), {
|
|
1448
|
+
key: h._uid,
|
|
1449
|
+
name: h.name,
|
|
1450
|
+
bodytext: h.bodytext,
|
|
1451
|
+
image: h.image,
|
|
1452
|
+
namebackside: h.namebackside ? h.namebackside : "",
|
|
1453
|
+
bodytextbackside: h.bodytextbackside,
|
|
1454
|
+
imagebackside: h.imagebackside ? h.imagebackside : { filename: "", alt: "" },
|
|
1449
1455
|
size: o.value,
|
|
1450
|
-
"image-fit":
|
|
1451
|
-
"image-fit-back":
|
|
1456
|
+
"image-fit": h.imageFit,
|
|
1457
|
+
"image-fit-back": h.imageFitBack
|
|
1452
1458
|
}, {
|
|
1453
|
-
"flashcard-front-body": y(({ bodytext:
|
|
1454
|
-
c(l.$slots, "flashcard-front-body",
|
|
1459
|
+
"flashcard-front-body": y(({ bodytext: n }) => [
|
|
1460
|
+
c(l.$slots, "flashcard-front-body", M({ ref_for: !0 }, { bodytext: n }), void 0, !0)
|
|
1455
1461
|
]),
|
|
1456
|
-
"flashcard-front-image": y(({ src:
|
|
1457
|
-
c(l.$slots, "flashcard-front-image",
|
|
1462
|
+
"flashcard-front-image": y(({ src: n, alt: b }) => [
|
|
1463
|
+
c(l.$slots, "flashcard-front-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1458
1464
|
]),
|
|
1459
|
-
"flashcard-back-body": y(({ bodytextbackside:
|
|
1460
|
-
c(l.$slots, "flashcard-back-body",
|
|
1465
|
+
"flashcard-back-body": y(({ bodytextbackside: n }) => [
|
|
1466
|
+
c(l.$slots, "flashcard-back-body", M({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
|
|
1461
1467
|
]),
|
|
1462
|
-
"flashcard-back-image": y(({ src:
|
|
1463
|
-
c(l.$slots, "flashcard-back-image",
|
|
1468
|
+
"flashcard-back-image": y(({ src: n, alt: b }) => [
|
|
1469
|
+
c(l.$slots, "flashcard-back-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
|
|
1464
1470
|
]),
|
|
1465
1471
|
_: 2
|
|
1466
1472
|
}, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
|
|
@@ -1468,7 +1474,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1468
1474
|
])
|
|
1469
1475
|
], 2));
|
|
1470
1476
|
}
|
|
1471
|
-
}),
|
|
1477
|
+
}), zo = /* @__PURE__ */ v(Oo, [["__scopeId", "data-v-de3c8751"]]), Ho = { class: "form__wrapper" }, Ro = { class: "form__content" }, No = { class: "form__information" }, Eo = { class: "form__headline" }, jo = { class: "form__body" }, Ko = { class: "form__script" }, Uo = /* @__PURE__ */ g({
|
|
1472
1478
|
__name: "form-script",
|
|
1473
1479
|
props: {
|
|
1474
1480
|
headline: {
|
|
@@ -1491,7 +1497,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1491
1497
|
])
|
|
1492
1498
|
]));
|
|
1493
1499
|
}
|
|
1494
|
-
}), Go = /* @__PURE__ */
|
|
1500
|
+
}), Go = /* @__PURE__ */ v(Uo, [["__scopeId", "data-v-87a67c13"]]), Jo = { class: "headline__wrapper" }, Wo = { class: "headline__h1" }, Yo = /* @__PURE__ */ g({
|
|
1495
1501
|
__name: "headline",
|
|
1496
1502
|
props: {
|
|
1497
1503
|
headline: {
|
|
@@ -1521,7 +1527,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1521
1527
|
], 2)
|
|
1522
1528
|
]));
|
|
1523
1529
|
}
|
|
1524
|
-
}), Qo = /* @__PURE__ */
|
|
1530
|
+
}), Qo = /* @__PURE__ */ v(Yo, [["__scopeId", "data-v-3ef1567e"]]), Zo = (e) => (H("data-v-22f9be13"), e = e(), R(), e), Xo = { class: "hero__wrapper" }, xo = { class: "hero__content" }, es = { class: "hero__top" }, ts = { class: "hero__elements" }, as = { class: "hero__headline" }, os = { class: "hero__link" }, ss = { class: "hero__video" }, ls = /* @__PURE__ */ Zo(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), is = { class: "hero__video__video" }, rs = { class: "hero__image" }, ns = /* @__PURE__ */ g({
|
|
1525
1531
|
__name: "hero",
|
|
1526
1532
|
props: {
|
|
1527
1533
|
headline: {
|
|
@@ -1538,7 +1544,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1538
1544
|
t("h1", null, d(e.headline), 1)
|
|
1539
1545
|
]),
|
|
1540
1546
|
t("div", os, [
|
|
1541
|
-
S(
|
|
1547
|
+
S(P, {
|
|
1542
1548
|
"link-type": "regular_light",
|
|
1543
1549
|
arrow: ""
|
|
1544
1550
|
}, {
|
|
@@ -1562,7 +1568,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1562
1568
|
])
|
|
1563
1569
|
]));
|
|
1564
1570
|
}
|
|
1565
|
-
}), ds = /* @__PURE__ */
|
|
1571
|
+
}), ds = /* @__PURE__ */ v(ns, [["__scopeId", "data-v-22f9be13"]]), cs = { class: "image__wrapper" }, us = { class: "image__content" }, _s = { class: "image__image" }, hs = { class: "image__caption" }, ps = /* @__PURE__ */ g({
|
|
1566
1572
|
inheritAttrs: !1,
|
|
1567
1573
|
__name: "image",
|
|
1568
1574
|
props: {
|
|
@@ -1589,9 +1595,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1589
1595
|
return (a, r) => (s(), i("div", cs, [
|
|
1590
1596
|
t("div", us, [
|
|
1591
1597
|
t("div", _s, [
|
|
1592
|
-
S(
|
|
1598
|
+
S(F, null, {
|
|
1593
1599
|
default: y(() => [
|
|
1594
|
-
c(a.$slots, "image",
|
|
1600
|
+
c(a.$slots, "image", O(z({
|
|
1595
1601
|
width: 984,
|
|
1596
1602
|
height: e.fullHeight ? "100%" : 554,
|
|
1597
1603
|
src: e.src,
|
|
@@ -1606,7 +1612,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1606
1612
|
])
|
|
1607
1613
|
]));
|
|
1608
1614
|
}
|
|
1609
|
-
}), ms = /* @__PURE__ */
|
|
1615
|
+
}), ms = /* @__PURE__ */ v(ps, [["__scopeId", "data-v-c583d657"]]), fs = { class: "gallery__large" }, vs = {
|
|
1610
1616
|
key: 0,
|
|
1611
1617
|
class: "image image--large"
|
|
1612
1618
|
}, gs = {
|
|
@@ -1628,8 +1634,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1628
1634
|
white: "",
|
|
1629
1635
|
light: "gallery__wrapper--light",
|
|
1630
1636
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1631
|
-
}, r = e, o =
|
|
1632
|
-
return (l,
|
|
1637
|
+
}, r = e, o = A(() => a[r.bgColor]);
|
|
1638
|
+
return (l, u) => (s(), i("div", {
|
|
1633
1639
|
class: p(["gallery__wrapper", o.value])
|
|
1634
1640
|
}, [
|
|
1635
1641
|
t("div", {
|
|
@@ -1638,11 +1644,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1638
1644
|
l.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1639
1645
|
])
|
|
1640
1646
|
}, [
|
|
1641
|
-
t("div",
|
|
1642
|
-
l.mediaLarge && l.mediaType === "image" ? (s(), i("div",
|
|
1643
|
-
S(
|
|
1647
|
+
t("div", fs, [
|
|
1648
|
+
l.mediaLarge && l.mediaType === "image" ? (s(), i("div", vs, [
|
|
1649
|
+
S(F, null, {
|
|
1644
1650
|
default: y(() => [
|
|
1645
|
-
c(l.$slots, "image-large",
|
|
1651
|
+
c(l.$slots, "image-large", O(z({
|
|
1646
1652
|
width: 617,
|
|
1647
1653
|
height: 530,
|
|
1648
1654
|
src: l.mediaLarge.src,
|
|
@@ -1651,7 +1657,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1651
1657
|
]),
|
|
1652
1658
|
_: 3
|
|
1653
1659
|
})
|
|
1654
|
-
])) :
|
|
1660
|
+
])) : _("", !0),
|
|
1655
1661
|
l.mediaLarge && l.mediaType === "video" ? (s(), i("div", gs, [
|
|
1656
1662
|
S(ee, {
|
|
1657
1663
|
src: l.mediaLarge.src,
|
|
@@ -1665,7 +1671,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1665
1671
|
muted: "",
|
|
1666
1672
|
play: ""
|
|
1667
1673
|
}, null, 8, ["src", "aria-label"])
|
|
1668
|
-
])) :
|
|
1674
|
+
])) : _("", !0)
|
|
1669
1675
|
]),
|
|
1670
1676
|
t("div", {
|
|
1671
1677
|
style: x([l.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
@@ -1674,18 +1680,18 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1674
1680
|
l.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1675
1681
|
])
|
|
1676
1682
|
}, [
|
|
1677
|
-
(s(!0), i(
|
|
1678
|
-
key:
|
|
1683
|
+
(s(!0), i(T, null, V(l.mediaSmall, (h) => (s(), i("div", {
|
|
1684
|
+
key: h.src + h.alt,
|
|
1679
1685
|
class: "image image--small"
|
|
1680
1686
|
}, [
|
|
1681
|
-
S(
|
|
1687
|
+
S(F, null, {
|
|
1682
1688
|
default: y(() => [
|
|
1683
|
-
c(l.$slots, "image-small",
|
|
1689
|
+
c(l.$slots, "image-small", M({ ref_for: !0 }, {
|
|
1684
1690
|
width: 328,
|
|
1685
1691
|
height: 246,
|
|
1686
|
-
src:
|
|
1687
|
-
alt:
|
|
1688
|
-
}))
|
|
1692
|
+
src: h.src,
|
|
1693
|
+
alt: h.alt
|
|
1694
|
+
}))
|
|
1689
1695
|
]),
|
|
1690
1696
|
_: 2
|
|
1691
1697
|
}, 1024)
|
|
@@ -1695,12 +1701,12 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1695
1701
|
class: p(["body", l.bgColor === "dark" ? "body--dark" : ""])
|
|
1696
1702
|
}, [
|
|
1697
1703
|
t("p", null, d(l.body), 1)
|
|
1698
|
-
], 2)) :
|
|
1704
|
+
], 2)) : _("", !0)
|
|
1699
1705
|
], 6)
|
|
1700
1706
|
], 2)
|
|
1701
1707
|
], 2));
|
|
1702
1708
|
}
|
|
1703
|
-
}), ys = /* @__PURE__ */
|
|
1709
|
+
}), ys = /* @__PURE__ */ v(bs, [["__scopeId", "data-v-4997f83a"]]), ks = { class: "logo-wall__wrapper" }, $s = { class: "logo-wall__content" }, ws = {
|
|
1704
1710
|
key: 0,
|
|
1705
1711
|
class: "logo-wall__text"
|
|
1706
1712
|
}, Bs = { key: 0 }, Ss = { key: 1 }, Is = { class: "logo-wall__logos" }, Cs = { class: "logo-wall__link" }, qs = /* @__PURE__ */ g({
|
|
@@ -1724,29 +1730,29 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1724
1730
|
return (a, r) => (s(), i("div", ks, [
|
|
1725
1731
|
t("div", $s, [
|
|
1726
1732
|
e.headline || e.body ? (s(), i("div", ws, [
|
|
1727
|
-
e.headline ? (s(), i("h2", Bs, d(e.headline), 1)) :
|
|
1728
|
-
e.body ? (s(), i("p", Ss, d(e.body), 1)) :
|
|
1729
|
-
])) :
|
|
1733
|
+
e.headline ? (s(), i("h2", Bs, d(e.headline), 1)) : _("", !0),
|
|
1734
|
+
e.body ? (s(), i("p", Ss, d(e.body), 1)) : _("", !0)
|
|
1735
|
+
])) : _("", !0),
|
|
1730
1736
|
t("div", Is, [
|
|
1731
|
-
(s(!0), i(
|
|
1737
|
+
(s(!0), i(T, null, V(e.logos, (o) => (s(), i("div", {
|
|
1732
1738
|
key: o.src + o.alt,
|
|
1733
1739
|
class: "logo-wall__logo"
|
|
1734
1740
|
}, [
|
|
1735
|
-
S(
|
|
1741
|
+
S(F, null, {
|
|
1736
1742
|
default: y(() => [
|
|
1737
|
-
c(a.$slots, "logo-wall-logo",
|
|
1743
|
+
c(a.$slots, "logo-wall-logo", M({ ref_for: !0 }, {
|
|
1738
1744
|
width: 130,
|
|
1739
1745
|
height: 130,
|
|
1740
1746
|
src: o.src,
|
|
1741
1747
|
alt: o.alt
|
|
1742
|
-
})
|
|
1748
|
+
}), void 0, !0)
|
|
1743
1749
|
]),
|
|
1744
1750
|
_: 2
|
|
1745
1751
|
}, 1024)
|
|
1746
1752
|
]))), 128))
|
|
1747
1753
|
]),
|
|
1748
1754
|
t("div", Cs, [
|
|
1749
|
-
S(
|
|
1755
|
+
S(P, {
|
|
1750
1756
|
"link-type": "regular_light",
|
|
1751
1757
|
arrow: !0
|
|
1752
1758
|
}, {
|
|
@@ -1759,7 +1765,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1759
1765
|
])
|
|
1760
1766
|
]));
|
|
1761
1767
|
}
|
|
1762
|
-
}), As = /* @__PURE__ */
|
|
1768
|
+
}), As = /* @__PURE__ */ v(qs, [["__scopeId", "data-v-fd489289"]]), Ls = { class: "micro-stories__top" }, Ds = {
|
|
1763
1769
|
key: 0,
|
|
1764
1770
|
class: "headline"
|
|
1765
1771
|
}, Ts = {
|
|
@@ -1777,17 +1783,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1777
1783
|
white: "micro-stories__wrapper--white",
|
|
1778
1784
|
blue: "micro-stories__wrapper--blue",
|
|
1779
1785
|
dark: "micro-stories__wrapper--dark"
|
|
1780
|
-
}, r =
|
|
1781
|
-
return (l,
|
|
1786
|
+
}, r = A(() => a[o.bgColor]), o = e;
|
|
1787
|
+
return (l, u) => (s(), i("div", {
|
|
1782
1788
|
class: p(["micro-stories__wrapper", r.value])
|
|
1783
1789
|
}, [
|
|
1784
1790
|
t("div", Ls, [
|
|
1785
1791
|
l.headline ? (s(), i("div", Ds, [
|
|
1786
1792
|
t("h2", null, d(l.headline), 1)
|
|
1787
|
-
])) :
|
|
1793
|
+
])) : _("", !0),
|
|
1788
1794
|
l.body ? (s(), i("div", Ts, [
|
|
1789
1795
|
t("p", null, d(l.body), 1)
|
|
1790
|
-
])) :
|
|
1796
|
+
])) : _("", !0)
|
|
1791
1797
|
]),
|
|
1792
1798
|
t("div", Vs, [
|
|
1793
1799
|
c(l.$slots, "micro-stories-slides")
|
|
@@ -1795,15 +1801,15 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
|
1795
1801
|
c(l.$slots, "micro-stories-controls")
|
|
1796
1802
|
], 2));
|
|
1797
1803
|
}
|
|
1798
|
-
}), Fs = {}, Ms = { class: "policy__wrapper" },
|
|
1799
|
-
function
|
|
1804
|
+
}), Fs = {}, Ms = { class: "policy__wrapper" }, Os = { class: "policy__content" };
|
|
1805
|
+
function zs(e, a) {
|
|
1800
1806
|
return s(), i("div", Ms, [
|
|
1801
|
-
t("div",
|
|
1807
|
+
t("div", Os, [
|
|
1802
1808
|
c(e.$slots, "default", {}, void 0, !0)
|
|
1803
1809
|
])
|
|
1804
1810
|
]);
|
|
1805
1811
|
}
|
|
1806
|
-
const Hs = /* @__PURE__ */
|
|
1812
|
+
const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a"]]), Rs = { class: "product-hero__wrapper" }, Ns = { class: "product-hero__content" }, Es = { class: "product-hero__headline" }, js = { class: "product-hero__video" }, Ks = { class: "product-hero__insignia" }, Us = {
|
|
1807
1813
|
key: 0,
|
|
1808
1814
|
class: "product-hero__logo"
|
|
1809
1815
|
}, Gs = {
|
|
@@ -1848,7 +1854,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1848
1854
|
t("div", Ns, [
|
|
1849
1855
|
t("div", Es, d(e.headline), 1),
|
|
1850
1856
|
t("div", js, [
|
|
1851
|
-
e.videoSrc !== "" ? (s(),
|
|
1857
|
+
e.videoSrc !== "" ? (s(), L(ee, {
|
|
1852
1858
|
key: 0,
|
|
1853
1859
|
play: "",
|
|
1854
1860
|
"local-video": !0,
|
|
@@ -1859,7 +1865,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1859
1865
|
autoplay: "",
|
|
1860
1866
|
loop: "",
|
|
1861
1867
|
muted: ""
|
|
1862
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (s(),
|
|
1868
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (s(), L(I(F), { key: 1 }, {
|
|
1863
1869
|
default: y(() => [
|
|
1864
1870
|
c(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1865
1871
|
]),
|
|
@@ -1867,27 +1873,27 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1867
1873
|
})),
|
|
1868
1874
|
t("div", Ks, [
|
|
1869
1875
|
e.logoSrc ? (s(), i("div", Us, [
|
|
1870
|
-
S(I(
|
|
1876
|
+
S(I(F), null, {
|
|
1871
1877
|
default: y(() => [
|
|
1872
1878
|
c(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1873
1879
|
]),
|
|
1874
1880
|
_: 3
|
|
1875
1881
|
})
|
|
1876
|
-
])) :
|
|
1882
|
+
])) : _("", !0),
|
|
1877
1883
|
e.isCertified ? (s(), i("div", Gs, [
|
|
1878
|
-
S(I(
|
|
1884
|
+
S(I(F), null, {
|
|
1879
1885
|
default: y(() => [
|
|
1880
1886
|
c(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1881
1887
|
]),
|
|
1882
1888
|
_: 3
|
|
1883
1889
|
})
|
|
1884
|
-
])) :
|
|
1890
|
+
])) : _("", !0)
|
|
1885
1891
|
])
|
|
1886
1892
|
])
|
|
1887
1893
|
])
|
|
1888
1894
|
]));
|
|
1889
1895
|
}
|
|
1890
|
-
}), Ws = /* @__PURE__ */
|
|
1896
|
+
}), Ws = /* @__PURE__ */ v(Js, [["__scopeId", "data-v-deab9c3a"]]), Ys = { class: "promo__content" }, Qs = /* @__PURE__ */ g({
|
|
1891
1897
|
__name: "promo",
|
|
1892
1898
|
props: {
|
|
1893
1899
|
label: { default: "" },
|
|
@@ -1907,8 +1913,8 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1907
1913
|
dark: "promo__wrapper--dark",
|
|
1908
1914
|
light: "promo__wrapper--light",
|
|
1909
1915
|
default: "promo__wrapper--default"
|
|
1910
|
-
}, r = e, o =
|
|
1911
|
-
return (l,
|
|
1916
|
+
}, r = e, o = A(() => a[r.variant]);
|
|
1917
|
+
return (l, u) => (s(), i("div", {
|
|
1912
1918
|
class: p([
|
|
1913
1919
|
"promo__wrapper",
|
|
1914
1920
|
o.value,
|
|
@@ -1924,13 +1930,13 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1924
1930
|
l.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1925
1931
|
])
|
|
1926
1932
|
}, [
|
|
1927
|
-
S(
|
|
1933
|
+
S(F, null, {
|
|
1928
1934
|
default: y(() => [
|
|
1929
|
-
c(l.$slots, "promo-image",
|
|
1935
|
+
c(l.$slots, "promo-image", O(z({ src: l.src, width: 1920, alt: l.alt, height: 1080 })))
|
|
1930
1936
|
]),
|
|
1931
1937
|
_: 3
|
|
1932
1938
|
})
|
|
1933
|
-
], 2)) :
|
|
1939
|
+
], 2)) : _("", !0),
|
|
1934
1940
|
l.mediaType === "video" ? (s(), i("div", {
|
|
1935
1941
|
key: 1,
|
|
1936
1942
|
class: p([
|
|
@@ -1949,18 +1955,18 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1949
1955
|
play: "",
|
|
1950
1956
|
poster: l.fallbackImage
|
|
1951
1957
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1952
|
-
], 2)) :
|
|
1958
|
+
], 2)) : _("", !0),
|
|
1953
1959
|
t("div", {
|
|
1954
1960
|
class: p([
|
|
1955
1961
|
"promo__text",
|
|
1956
1962
|
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1957
1963
|
])
|
|
1958
1964
|
}, [
|
|
1959
|
-
l.label ? (s(),
|
|
1965
|
+
l.label ? (s(), L(X, {
|
|
1960
1966
|
key: 0,
|
|
1961
1967
|
text: l.label,
|
|
1962
1968
|
"label-dark": l.variant === "dark"
|
|
1963
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
1969
|
+
}, null, 8, ["text", "label-dark"])) : _("", !0),
|
|
1964
1970
|
t("div", {
|
|
1965
1971
|
class: p([
|
|
1966
1972
|
"promo__title",
|
|
@@ -1969,7 +1975,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1969
1975
|
}, [
|
|
1970
1976
|
c(l.$slots, "promo-headline")
|
|
1971
1977
|
], 2),
|
|
1972
|
-
l.linkType === "link" ? (s(),
|
|
1978
|
+
l.linkType === "link" ? (s(), L(P, {
|
|
1973
1979
|
key: 1,
|
|
1974
1980
|
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
1975
1981
|
arrow: ""
|
|
@@ -1978,8 +1984,8 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1978
1984
|
c(l.$slots, "promo-link")
|
|
1979
1985
|
]),
|
|
1980
1986
|
_: 3
|
|
1981
|
-
}, 8, ["link-type"])) :
|
|
1982
|
-
l.linkType === "button" ? (s(),
|
|
1987
|
+
}, 8, ["link-type"])) : _("", !0),
|
|
1988
|
+
l.linkType === "button" ? (s(), L(P, {
|
|
1983
1989
|
key: 2,
|
|
1984
1990
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
1985
1991
|
}, {
|
|
@@ -1987,12 +1993,12 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
1987
1993
|
c(l.$slots, "promo-link")
|
|
1988
1994
|
]),
|
|
1989
1995
|
_: 3
|
|
1990
|
-
}, 8, ["link-type"])) :
|
|
1996
|
+
}, 8, ["link-type"])) : _("", !0)
|
|
1991
1997
|
], 2)
|
|
1992
1998
|
])
|
|
1993
1999
|
], 2));
|
|
1994
2000
|
}
|
|
1995
|
-
}), Zs = /* @__PURE__ */
|
|
2001
|
+
}), Zs = /* @__PURE__ */ v(Qs, [["__scopeId", "data-v-df54d965"]]), Xs = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), xs = { class: "quote__wrapper" }, el = { class: "quote__content" }, tl = /* @__PURE__ */ Xs(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), al = { class: "quote__quote" }, ol = { class: "quote__quote-text" }, sl = { class: "quote__author" }, ll = {
|
|
1996
2002
|
key: 0,
|
|
1997
2003
|
class: "quote__image"
|
|
1998
2004
|
}, il = { class: "quote__text" }, rl = { class: "quote__author-name" }, nl = { class: "quote__author-title" }, dl = /* @__PURE__ */ g({
|
|
@@ -2024,9 +2030,9 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2024
2030
|
t("p", ol, d(e.quote), 1),
|
|
2025
2031
|
t("div", sl, [
|
|
2026
2032
|
e.authorImage ? (s(), i("div", ll, [
|
|
2027
|
-
S(
|
|
2033
|
+
S(F, null, {
|
|
2028
2034
|
default: y(() => [
|
|
2029
|
-
c(a.$slots, "author-image",
|
|
2035
|
+
c(a.$slots, "author-image", O(z({
|
|
2030
2036
|
src: e.authorImage + "/m/100x100",
|
|
2031
2037
|
width: 60,
|
|
2032
2038
|
height: 60
|
|
@@ -2034,7 +2040,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2034
2040
|
]),
|
|
2035
2041
|
_: 3
|
|
2036
2042
|
})
|
|
2037
|
-
])) :
|
|
2043
|
+
])) : _("", !0),
|
|
2038
2044
|
t("div", il, [
|
|
2039
2045
|
t("p", rl, d(e.author), 1),
|
|
2040
2046
|
t("p", nl, d(e.authorTitle), 1)
|
|
@@ -2044,7 +2050,7 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2044
2050
|
])
|
|
2045
2051
|
]));
|
|
2046
2052
|
}
|
|
2047
|
-
}), cl = /* @__PURE__ */
|
|
2053
|
+
}), cl = /* @__PURE__ */ v(dl, [["__scopeId", "data-v-e3cc8e27"]]), ul = { class: "rich-text__wrapper" }, _l = {
|
|
2048
2054
|
key: 0,
|
|
2049
2055
|
class: "rich-text__links"
|
|
2050
2056
|
}, hl = {
|
|
@@ -2070,18 +2076,18 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2070
2076
|
])
|
|
2071
2077
|
}, [
|
|
2072
2078
|
t("div", ul, [
|
|
2073
|
-
a.label ? (s(),
|
|
2079
|
+
a.label ? (s(), L(X, {
|
|
2074
2080
|
key: 0,
|
|
2075
2081
|
text: a.label,
|
|
2076
2082
|
"label-dark": !1
|
|
2077
|
-
}, null, 8, ["text"])) :
|
|
2083
|
+
}, null, 8, ["text"])) : _("", !0),
|
|
2078
2084
|
a.headline ? (s(), i("h2", {
|
|
2079
2085
|
key: 1,
|
|
2080
2086
|
class: p([
|
|
2081
2087
|
"rich-text__headline",
|
|
2082
2088
|
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
2083
2089
|
])
|
|
2084
|
-
}, d(a.headline), 3)) :
|
|
2090
|
+
}, d(a.headline), 3)) : _("", !0),
|
|
2085
2091
|
t("div", {
|
|
2086
2092
|
class: p([
|
|
2087
2093
|
"rich-text__content",
|
|
@@ -2097,11 +2103,11 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2097
2103
|
c(a.$slots, "rich-text-content"),
|
|
2098
2104
|
a.links ? (s(), i("div", _l, [
|
|
2099
2105
|
c(a.$slots, "rich-text-links")
|
|
2100
|
-
])) :
|
|
2106
|
+
])) : _("", !0)
|
|
2101
2107
|
], 2),
|
|
2102
2108
|
a.bulletList ? (s(), i("div", hl, [
|
|
2103
2109
|
c(a.$slots, "rich-text-bullet-list")
|
|
2104
|
-
])) :
|
|
2110
|
+
])) : _("", !0),
|
|
2105
2111
|
a.image ? (s(), i("div", {
|
|
2106
2112
|
key: 1,
|
|
2107
2113
|
class: p([
|
|
@@ -2109,20 +2115,20 @@ const Hs = /* @__PURE__ */ f(Fs, [["render", Os], ["__scopeId", "data-v-ea887d7a
|
|
|
2109
2115
|
a.imageClip ? "rich-text__image--clip" : ""
|
|
2110
2116
|
])
|
|
2111
2117
|
}, [
|
|
2112
|
-
S(
|
|
2118
|
+
S(F, null, {
|
|
2113
2119
|
default: y(() => [
|
|
2114
|
-
c(a.$slots, "rich-text-image",
|
|
2120
|
+
c(a.$slots, "rich-text-image", O(z({ width: 865, height: 307 })))
|
|
2115
2121
|
]),
|
|
2116
2122
|
_: 3
|
|
2117
2123
|
})
|
|
2118
|
-
], 2)) :
|
|
2124
|
+
], 2)) : _("", !0)
|
|
2119
2125
|
], 2)
|
|
2120
2126
|
])
|
|
2121
2127
|
], 2));
|
|
2122
2128
|
}
|
|
2123
|
-
}), ml = /* @__PURE__ */
|
|
2129
|
+
}), ml = /* @__PURE__ */ v(pl, [["__scopeId", "data-v-db485b9d"]]), fl = {}, vl = { class: "rich-text" }, gl = { class: "rich-text__wrapper" }, bl = { class: "rich-text__content rich-text__content--left-aligned" }, yl = { class: "rich-text__body" };
|
|
2124
2130
|
function kl(e, a) {
|
|
2125
|
-
return s(), i("div",
|
|
2131
|
+
return s(), i("div", vl, [
|
|
2126
2132
|
t("div", gl, [
|
|
2127
2133
|
t("div", bl, [
|
|
2128
2134
|
t("div", yl, [
|
|
@@ -2137,7 +2143,7 @@ function kl(e, a) {
|
|
|
2137
2143
|
])
|
|
2138
2144
|
]);
|
|
2139
2145
|
}
|
|
2140
|
-
const $l = /* @__PURE__ */
|
|
2146
|
+
const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2"]]), wl = (e) => (H("data-v-798e7a06"), e = e(), R(), e), Bl = { class: "timeline__wrapper" }, Sl = { class: "timeline__content" }, Il = { class: "timeline__items" }, Cl = { class: "item__left" }, ql = /* @__PURE__ */ wl(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2141
2147
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2142
2148
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2143
2149
|
], -1)), Al = { class: "item__right" }, Ll = ["innerHTML"], Dl = /* @__PURE__ */ g({
|
|
@@ -2166,16 +2172,19 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2166
2172
|
}), (a, r) => (s(), i("div", Bl, [
|
|
2167
2173
|
t("div", Sl, [
|
|
2168
2174
|
t("div", Il, [
|
|
2169
|
-
(s(!0), i(
|
|
2175
|
+
(s(!0), i(T, null, V(e.timelineItems, (o) => (s(), i("div", {
|
|
2170
2176
|
key: o.year,
|
|
2171
2177
|
class: "timeline__item faded"
|
|
2172
2178
|
}, [
|
|
2173
2179
|
t("div", Cl, d(o.year), 1),
|
|
2174
2180
|
ql,
|
|
2175
2181
|
t("div", Al, [
|
|
2176
|
-
S(
|
|
2182
|
+
S(F, null, {
|
|
2177
2183
|
default: y(() => [
|
|
2178
|
-
o.media.src ? c(a.$slots, "timeline-image",
|
|
2184
|
+
o.media.src ? c(a.$slots, "timeline-image", M({
|
|
2185
|
+
key: 0,
|
|
2186
|
+
ref_for: !0
|
|
2187
|
+
}, { src: o.media.src, alt: o.media.alt }), void 0, !0) : _("", !0)
|
|
2179
2188
|
]),
|
|
2180
2189
|
_: 2
|
|
2181
2190
|
}, 1024),
|
|
@@ -2190,13 +2199,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2190
2199
|
])
|
|
2191
2200
|
]));
|
|
2192
2201
|
}
|
|
2193
|
-
}), Tl = /* @__PURE__ */
|
|
2202
|
+
}), Tl = /* @__PURE__ */ v(Dl, [["__scopeId", "data-v-798e7a06"]]), Vl = { class: "vimeo" }, Pl = { class: "vimeo__wrapper" }, Fl = {
|
|
2194
2203
|
key: 0,
|
|
2195
2204
|
class: "vimeo__headline"
|
|
2196
2205
|
}, Ml = {
|
|
2197
2206
|
key: 1,
|
|
2198
2207
|
class: "vimeo__description"
|
|
2199
|
-
},
|
|
2208
|
+
}, Ol = /* @__PURE__ */ g({
|
|
2200
2209
|
__name: "vimeo",
|
|
2201
2210
|
props: {
|
|
2202
2211
|
headline: {
|
|
@@ -2211,13 +2220,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2211
2220
|
setup(e) {
|
|
2212
2221
|
return (a, r) => (s(), i("div", Vl, [
|
|
2213
2222
|
t("div", Pl, [
|
|
2214
|
-
e.headline ? (s(), i("h2", Fl, d(e.headline), 1)) :
|
|
2223
|
+
e.headline ? (s(), i("h2", Fl, d(e.headline), 1)) : _("", !0),
|
|
2215
2224
|
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2216
|
-
e.description ? (s(), i("p", Ml, d(e.description), 1)) :
|
|
2225
|
+
e.description ? (s(), i("p", Ml, d(e.description), 1)) : _("", !0)
|
|
2217
2226
|
])
|
|
2218
2227
|
]));
|
|
2219
2228
|
}
|
|
2220
|
-
}),
|
|
2229
|
+
}), zl = /* @__PURE__ */ v(Ol, [["__scopeId", "data-v-90a2b109"]]), Hl = { class: "academy-overview" }, Rl = { class: "academy-overview__content-wrapper" }, Nl = { class: "academy-overview__content" }, El = { class: "academy-overview__title" }, jl = { class: "academy-overview__description" }, Kl = {
|
|
2221
2230
|
key: 0,
|
|
2222
2231
|
class: "academy-overview__button-wrapper"
|
|
2223
2232
|
}, Ul = {
|
|
@@ -2243,7 +2252,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2243
2252
|
t("div", null, [
|
|
2244
2253
|
t("h1", El, d(a.hero.headline), 1),
|
|
2245
2254
|
t("p", jl, d(a.hero.description), 1),
|
|
2246
|
-
a.hero.showStats ?
|
|
2255
|
+
a.hero.showStats ? _("", !0) : (s(), i("div", Kl, [
|
|
2247
2256
|
c(a.$slots, "button", {}, void 0, !0)
|
|
2248
2257
|
]))
|
|
2249
2258
|
]),
|
|
@@ -2258,12 +2267,12 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2258
2267
|
t("div", Xl, d(a.hero.pointsLabel), 1)
|
|
2259
2268
|
])
|
|
2260
2269
|
])
|
|
2261
|
-
])) :
|
|
2270
|
+
])) : _("", !0)
|
|
2262
2271
|
])
|
|
2263
2272
|
])
|
|
2264
2273
|
]));
|
|
2265
2274
|
}
|
|
2266
|
-
}), ei = /* @__PURE__ */
|
|
2275
|
+
}), ei = /* @__PURE__ */ v(xl, [["__scopeId", "data-v-98275425"]]), ti = { class: "not-found__wrapper" }, ai = { class: "not-found__content" }, oi = { class: "not-found__headline" }, si = { class: "not-found__body" }, li = /* @__PURE__ */ g({
|
|
2267
2276
|
__name: "404",
|
|
2268
2277
|
props: {
|
|
2269
2278
|
headline: {
|
|
@@ -2281,7 +2290,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2281
2290
|
])
|
|
2282
2291
|
]));
|
|
2283
2292
|
}
|
|
2284
|
-
}), ii = /* @__PURE__ */
|
|
2293
|
+
}), ii = /* @__PURE__ */ v(li, [["__scopeId", "data-v-b829ca6c"]]), ri = { class: "filter__wrapper" }, ni = { class: "filter__content" }, di = { class: "filter__dropdowns" }, ci = { class: "filter__chips" }, ui = /* @__PURE__ */ g({
|
|
2285
2294
|
__name: "filter",
|
|
2286
2295
|
props: {
|
|
2287
2296
|
hasChips: {
|
|
@@ -2306,16 +2315,16 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2306
2315
|
key: 0,
|
|
2307
2316
|
class: "filter__clear",
|
|
2308
2317
|
onClick: r[0] || (r[0] = (o) => a.$emit("clearFilters"))
|
|
2309
|
-
}, d(e.removeAll), 1)) :
|
|
2318
|
+
}, d(e.removeAll), 1)) : _("", !0)
|
|
2310
2319
|
])
|
|
2311
2320
|
])
|
|
2312
2321
|
]));
|
|
2313
2322
|
}
|
|
2314
|
-
}), _i = /* @__PURE__ */
|
|
2323
|
+
}), _i = /* @__PURE__ */ v(ui, [["__scopeId", "data-v-31c1ba00"]]), ye = (e) => (H("data-v-3d0cbbd5"), e = e(), R(), e), hi = { class: "footer__wrapper" }, pi = { class: "footer__content" }, mi = {
|
|
2315
2324
|
key: 0,
|
|
2316
2325
|
src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
|
|
2317
2326
|
style: { margin: "0 auto" }
|
|
2318
|
-
},
|
|
2327
|
+
}, fi = { class: "footer__sections" }, vi = { class: "section__title" }, gi = { class: "section__list" }, bi = { class: "section" }, yi = {
|
|
2319
2328
|
key: 0,
|
|
2320
2329
|
class: "section__title"
|
|
2321
2330
|
}, ki = {
|
|
@@ -2336,7 +2345,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2336
2345
|
}, Ti = { class: "footer__bottom" }, Vi = { class: "copyright" }, Pi = { class: "footer__policy" }, Fi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), Mi = {
|
|
2337
2346
|
key: 0,
|
|
2338
2347
|
class: "footer__social"
|
|
2339
|
-
},
|
|
2348
|
+
}, Oi = ["href", "aria-label"], zi = {
|
|
2340
2349
|
key: 1,
|
|
2341
2350
|
class: "footer__social"
|
|
2342
2351
|
}, Hi = ["href", "aria-label"], Ri = /* @__PURE__ */ g({
|
|
@@ -2354,13 +2363,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2354
2363
|
setup(e) {
|
|
2355
2364
|
return (a, r) => (s(), i("div", hi, [
|
|
2356
2365
|
t("footer", pi, [
|
|
2357
|
-
a.language === "zh" ? (s(), i("img", mi)) :
|
|
2358
|
-
t("div",
|
|
2359
|
-
(s(!0), i(
|
|
2366
|
+
a.language === "zh" ? (s(), i("img", mi)) : _("", !0),
|
|
2367
|
+
t("div", fi, [
|
|
2368
|
+
(s(!0), i(T, null, V(a.footerSections, (o) => (s(), i("div", {
|
|
2360
2369
|
key: o.title,
|
|
2361
2370
|
class: "section"
|
|
2362
2371
|
}, [
|
|
2363
|
-
t("span",
|
|
2372
|
+
t("span", vi, d(o.title), 1),
|
|
2364
2373
|
t("nav", null, [
|
|
2365
2374
|
t("ul", gi, [
|
|
2366
2375
|
c(a.$slots, "section-links", {
|
|
@@ -2374,9 +2383,9 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2374
2383
|
t("address", null, [
|
|
2375
2384
|
a.language === "zh" ? (s(), i("span", $i, "上海浦东新区金桥出口加工区")) : (s(), i("span", wi, "Energivej 51")),
|
|
2376
2385
|
a.language === "zh" ? (s(), i("span", Bi, "桂桥路1201号10栋2楼")) : (s(), i("span", Si, "5260 Odense S")),
|
|
2377
|
-
a.language !== "zh" ? (s(), i("span", Ii, "CVR: 35251235")) :
|
|
2386
|
+
a.language !== "zh" ? (s(), i("span", Ii, "CVR: 35251235")) : _("", !0),
|
|
2378
2387
|
Ci,
|
|
2379
|
-
S(
|
|
2388
|
+
S(P, {
|
|
2380
2389
|
class: "footer__contact",
|
|
2381
2390
|
"link-type": "regular_light",
|
|
2382
2391
|
underline: "false"
|
|
@@ -2386,7 +2395,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2386
2395
|
]),
|
|
2387
2396
|
_: 1
|
|
2388
2397
|
}),
|
|
2389
|
-
S(
|
|
2398
|
+
S(P, {
|
|
2390
2399
|
class: "footer__contact",
|
|
2391
2400
|
"link-type": "regular_light",
|
|
2392
2401
|
underline: "false"
|
|
@@ -2408,14 +2417,14 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2408
2417
|
}, [
|
|
2409
2418
|
t("span", null, [
|
|
2410
2419
|
Fi,
|
|
2411
|
-
|
|
2420
|
+
J(d(a.changeRegion), 1)
|
|
2412
2421
|
])
|
|
2413
2422
|
]),
|
|
2414
2423
|
c(a.$slots, "footer-privacy-link"),
|
|
2415
2424
|
c(a.$slots, "footer-cookie-link")
|
|
2416
2425
|
]),
|
|
2417
2426
|
a.language !== "zh" ? (s(), i("div", Mi, [
|
|
2418
|
-
(s(!0), i(
|
|
2427
|
+
(s(!0), i(T, null, V(a.socialMedia, (o) => (s(), L(P, {
|
|
2419
2428
|
key: o.title,
|
|
2420
2429
|
underline: "false",
|
|
2421
2430
|
"link-type": "regular"
|
|
@@ -2431,12 +2440,12 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2431
2440
|
height: "14",
|
|
2432
2441
|
class: p(["footer__social--icon", [o.title ? "bg-" + o.title : ""]])
|
|
2433
2442
|
}, null, 2)
|
|
2434
|
-
], 8,
|
|
2443
|
+
], 8, Oi)
|
|
2435
2444
|
]),
|
|
2436
2445
|
_: 2
|
|
2437
2446
|
}, 1024))), 128))
|
|
2438
|
-
])) : (s(), i("div",
|
|
2439
|
-
(s(!0), i(
|
|
2447
|
+
])) : (s(), i("div", zi, [
|
|
2448
|
+
(s(!0), i(T, null, V(a.socialMediaChina, (o) => (s(), L(P, {
|
|
2440
2449
|
key: o.title,
|
|
2441
2450
|
underline: "false",
|
|
2442
2451
|
"link-type": "regular"
|
|
@@ -2461,7 +2470,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2461
2470
|
])
|
|
2462
2471
|
]));
|
|
2463
2472
|
}
|
|
2464
|
-
}), Ni = /* @__PURE__ */
|
|
2473
|
+
}), Ni = /* @__PURE__ */ v(Ri, [["__scopeId", "data-v-3d0cbbd5"]]), ke = (e) => (H("data-v-ca578d77"), e = e(), R(), e), Ei = { class: "header__wrapper" }, ji = { class: "nav-wrapper" }, Ki = { class: "mir-link-logo" }, Ui = { class: "main-nav-items" }, Gi = {
|
|
2465
2474
|
key: 0,
|
|
2466
2475
|
id: "menu-dropdown",
|
|
2467
2476
|
ref: "dropdownDiv"
|
|
@@ -2505,7 +2514,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2505
2514
|
], dr = { class: "profile-dropdown-content" }, cr = { class: "mobile-logo-search-burger-wrapper" }, ur = { class: "mobile-mir-link-logo" }, _r = {
|
|
2506
2515
|
key: 0,
|
|
2507
2516
|
class: "mobile-search-wrapper"
|
|
2508
|
-
}, hr = ["src"], pr = ["src"], mr = { class: "mobile-menu-content-wrapper" },
|
|
2517
|
+
}, hr = ["src"], pr = ["src"], mr = { class: "mobile-menu-content-wrapper" }, fr = { class: "mobile-dropdown-content" }, vr = /* @__PURE__ */ g({
|
|
2509
2518
|
__name: "header",
|
|
2510
2519
|
props: {
|
|
2511
2520
|
burgerState: {
|
|
@@ -2559,52 +2568,52 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2559
2568
|
setup(e, { expose: a, emit: r }) {
|
|
2560
2569
|
let o = null;
|
|
2561
2570
|
const l = e;
|
|
2562
|
-
let
|
|
2563
|
-
|
|
2571
|
+
let u = C(l.burgerState), h = C(l.search), n = C(l.showDropDown), b = C(l.showPortalSwitcherDropDown), f = C(l.showProfileDropDown), k = C(l.isAuthenticated);
|
|
2572
|
+
Q(
|
|
2564
2573
|
() => l.burgerState,
|
|
2565
|
-
($) =>
|
|
2566
|
-
),
|
|
2574
|
+
($) => u.value = $
|
|
2575
|
+
), Q(
|
|
2567
2576
|
() => l.search,
|
|
2568
|
-
($) =>
|
|
2569
|
-
),
|
|
2577
|
+
($) => h.value = $
|
|
2578
|
+
), Q(
|
|
2570
2579
|
() => l.showDropDown,
|
|
2571
|
-
($) =>
|
|
2572
|
-
),
|
|
2580
|
+
($) => n.value = $
|
|
2581
|
+
), Q(
|
|
2573
2582
|
() => l.showPortalSwitcherDropDown,
|
|
2574
2583
|
($) => b.value = $
|
|
2575
|
-
),
|
|
2584
|
+
), Q(
|
|
2576
2585
|
() => l.showProfileDropDown,
|
|
2577
|
-
($) =>
|
|
2578
|
-
),
|
|
2586
|
+
($) => f.value = $
|
|
2587
|
+
), Q(
|
|
2579
2588
|
() => l.isAuthenticated,
|
|
2580
2589
|
($) => k.value = $
|
|
2581
2590
|
), me(() => {
|
|
2582
2591
|
o = ($) => {
|
|
2583
|
-
$.target.closest("#menu-dropdown") || (
|
|
2592
|
+
$.target.closest("#menu-dropdown") || (n.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (f.value = !1);
|
|
2584
2593
|
}, window.addEventListener("click", o);
|
|
2585
2594
|
}), Ae(() => {
|
|
2586
2595
|
o !== null && window.removeEventListener("click", o);
|
|
2587
2596
|
});
|
|
2588
2597
|
const w = r;
|
|
2589
2598
|
function te() {
|
|
2590
|
-
|
|
2599
|
+
n.value = !n.value, w("update:showDropDown", n.value);
|
|
2591
2600
|
}
|
|
2592
2601
|
function ie() {
|
|
2593
2602
|
b.value = !b.value, w("update:showPortalSwitcherDropDown", b.value);
|
|
2594
2603
|
}
|
|
2595
2604
|
function re() {
|
|
2596
|
-
|
|
2605
|
+
f.value = !f.value, w("update:showProfileDropDown", f.value);
|
|
2597
2606
|
}
|
|
2598
2607
|
function ne() {
|
|
2599
|
-
|
|
2608
|
+
u.value = !u.value, w("update:burgerState", u.value);
|
|
2600
2609
|
}
|
|
2601
|
-
let
|
|
2610
|
+
let G = C(null), ae = C(null);
|
|
2602
2611
|
function de() {
|
|
2603
|
-
|
|
2612
|
+
G.value && G.value.blur();
|
|
2604
2613
|
}
|
|
2605
2614
|
return a({
|
|
2606
2615
|
defocusSearchButton: de
|
|
2607
|
-
}), ($,
|
|
2616
|
+
}), ($, j) => (s(), i("div", Ei, [
|
|
2608
2617
|
t("nav", null, [
|
|
2609
2618
|
t("div", ji, [
|
|
2610
2619
|
t("div", Ki, [
|
|
@@ -2619,53 +2628,53 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2619
2628
|
onClick: te
|
|
2620
2629
|
}, [
|
|
2621
2630
|
c($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2622
|
-
I(
|
|
2631
|
+
I(n) === !1 ? (s(), i("img", Ji)) : (s(), i("img", Wi))
|
|
2623
2632
|
]),
|
|
2624
|
-
|
|
2633
|
+
U(t("div", Yi, [
|
|
2625
2634
|
c($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2626
2635
|
], 512), [
|
|
2627
|
-
[
|
|
2636
|
+
[Z, I(n)]
|
|
2628
2637
|
])
|
|
2629
|
-
], 512)) :
|
|
2630
|
-
I(
|
|
2638
|
+
], 512)) : _("", !0),
|
|
2639
|
+
I(h) ? (s(), i("div", Qi, [
|
|
2631
2640
|
t("button", {
|
|
2632
2641
|
ref_key: "navSearchButton",
|
|
2633
|
-
ref:
|
|
2642
|
+
ref: G,
|
|
2634
2643
|
class: "search-icon",
|
|
2635
|
-
onClick:
|
|
2636
|
-
var
|
|
2637
|
-
return $.$emit("clickSearch"), (
|
|
2644
|
+
onClick: j[0] || (j[0] = (K) => {
|
|
2645
|
+
var E;
|
|
2646
|
+
return $.$emit("clickSearch"), (E = I(G)) == null ? void 0 : E.blur();
|
|
2638
2647
|
})
|
|
2639
2648
|
}, [
|
|
2640
2649
|
t("img", {
|
|
2641
|
-
src: I(
|
|
2650
|
+
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",
|
|
2642
2651
|
alt: "search icon",
|
|
2643
2652
|
width: "20",
|
|
2644
2653
|
height: "20"
|
|
2645
2654
|
}, null, 8, Zi)
|
|
2646
2655
|
], 512)
|
|
2647
|
-
])) :
|
|
2656
|
+
])) : _("", !0),
|
|
2648
2657
|
e.usePortalSwitcher ? (s(), i("div", Xi, [
|
|
2649
2658
|
t("button", {
|
|
2650
2659
|
class: "nav-portal-switcher-btn",
|
|
2651
2660
|
onClick: ie
|
|
2652
2661
|
}, er),
|
|
2653
|
-
|
|
2662
|
+
U(t("div", tr, [
|
|
2654
2663
|
t("ul", ar, [
|
|
2655
|
-
(s(!0), i(
|
|
2656
|
-
key:
|
|
2664
|
+
(s(!0), i(T, null, V(e.portals, (K, E) => (s(), i("li", {
|
|
2665
|
+
key: E,
|
|
2657
2666
|
class: "portal-switcher-link"
|
|
2658
2667
|
}, [
|
|
2659
|
-
S(I(
|
|
2668
|
+
S(I(P), { "link-type": "regular" }, {
|
|
2660
2669
|
default: y(() => [
|
|
2661
2670
|
t("a", {
|
|
2662
|
-
href:
|
|
2663
|
-
onClick:
|
|
2671
|
+
href: K.link,
|
|
2672
|
+
onClick: j[1] || (j[1] = (W) => ce(n) ? n.value = !1 : n = !1)
|
|
2664
2673
|
}, [
|
|
2665
2674
|
t("img", {
|
|
2666
|
-
src:
|
|
2675
|
+
src: K.icon
|
|
2667
2676
|
}, null, 8, sr),
|
|
2668
|
-
t("div", null, d(
|
|
2677
|
+
t("div", null, d(K.name), 1)
|
|
2669
2678
|
], 8, or)
|
|
2670
2679
|
]),
|
|
2671
2680
|
_: 2
|
|
@@ -2673,51 +2682,51 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2673
2682
|
]))), 128))
|
|
2674
2683
|
])
|
|
2675
2684
|
], 512), [
|
|
2676
|
-
[
|
|
2685
|
+
[Z, I(b)]
|
|
2677
2686
|
])
|
|
2678
|
-
])) :
|
|
2687
|
+
])) : _("", !0),
|
|
2679
2688
|
e.useProfileDropdown ? (s(), i("div", lr, [
|
|
2680
|
-
I(k) ?
|
|
2689
|
+
I(k) ? _("", !0) : (s(), i("div", ir, [
|
|
2681
2690
|
c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2682
2691
|
])),
|
|
2683
2692
|
I(k) ? (s(), i("button", {
|
|
2684
2693
|
key: 1,
|
|
2685
2694
|
class: "nav-profile-dropdown-btn",
|
|
2686
2695
|
onClick: re
|
|
2687
|
-
}, nr)) :
|
|
2688
|
-
|
|
2696
|
+
}, nr)) : _("", !0),
|
|
2697
|
+
U(t("div", dr, [
|
|
2689
2698
|
c($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2690
2699
|
], 512), [
|
|
2691
|
-
[
|
|
2700
|
+
[Z, I(f)]
|
|
2692
2701
|
])
|
|
2693
|
-
])) :
|
|
2702
|
+
])) : _("", !0)
|
|
2694
2703
|
]),
|
|
2695
2704
|
t("div", {
|
|
2696
|
-
class: p(["mobile-nav-wrapper", I(
|
|
2705
|
+
class: p(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2697
2706
|
}, [
|
|
2698
2707
|
t("div", cr, [
|
|
2699
2708
|
t("div", ur, [
|
|
2700
2709
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2701
2710
|
]),
|
|
2702
|
-
I(
|
|
2711
|
+
I(h) ? (s(), i("div", _r, [
|
|
2703
2712
|
t("button", {
|
|
2704
2713
|
ref_key: "mobileSearchButton",
|
|
2705
2714
|
ref: ae,
|
|
2706
2715
|
class: "search-icon",
|
|
2707
2716
|
"aria-label": "Toggle search",
|
|
2708
|
-
onClick:
|
|
2709
|
-
var
|
|
2710
|
-
return $.$emit("clickSearch"), (
|
|
2717
|
+
onClick: j[2] || (j[2] = (K) => {
|
|
2718
|
+
var E;
|
|
2719
|
+
return $.$emit("clickSearch"), (E = I(ae)) == null ? void 0 : E.blur();
|
|
2711
2720
|
})
|
|
2712
2721
|
}, [
|
|
2713
2722
|
t("img", {
|
|
2714
|
-
src: I(
|
|
2723
|
+
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",
|
|
2715
2724
|
alt: "search icon",
|
|
2716
2725
|
width: "20",
|
|
2717
2726
|
height: "20"
|
|
2718
2727
|
}, null, 8, hr)
|
|
2719
2728
|
], 512)
|
|
2720
|
-
])) :
|
|
2729
|
+
])) : _("", !0),
|
|
2721
2730
|
t("button", {
|
|
2722
2731
|
class: "mobile-burger-wrapper",
|
|
2723
2732
|
"aria-label": "Toggle menu",
|
|
@@ -2727,26 +2736,26 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2727
2736
|
width: "20",
|
|
2728
2737
|
height: "20",
|
|
2729
2738
|
alt: "burger menu line icon",
|
|
2730
|
-
src: I(
|
|
2739
|
+
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"
|
|
2731
2740
|
}, null, 8, pr)
|
|
2732
2741
|
])
|
|
2733
2742
|
]),
|
|
2734
|
-
|
|
2743
|
+
U(t("div", mr, [
|
|
2735
2744
|
t("ul", null, [
|
|
2736
2745
|
c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2737
2746
|
]),
|
|
2738
|
-
t("ul",
|
|
2747
|
+
t("ul", fr, [
|
|
2739
2748
|
c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2740
2749
|
c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2741
2750
|
])
|
|
2742
2751
|
], 512), [
|
|
2743
|
-
[
|
|
2752
|
+
[Z, I(u)]
|
|
2744
2753
|
])
|
|
2745
2754
|
], 2)
|
|
2746
2755
|
])
|
|
2747
2756
|
]));
|
|
2748
2757
|
}
|
|
2749
|
-
}), gr = /* @__PURE__ */
|
|
2758
|
+
}), gr = /* @__PURE__ */ v(vr, [["__scopeId", "data-v-ca578d77"]]), br = { class: "language__wrapper" }, yr = { class: "language__content" }, kr = { class: "language__headline" }, $r = { class: "language__paragraph" }, wr = { class: "language__links" }, Br = /* @__PURE__ */ g({
|
|
2750
2759
|
__name: "language-switcher",
|
|
2751
2760
|
props: {
|
|
2752
2761
|
headline: {
|
|
@@ -2769,7 +2778,7 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2769
2778
|
])
|
|
2770
2779
|
]));
|
|
2771
2780
|
}
|
|
2772
|
-
}), Sr = /* @__PURE__ */
|
|
2781
|
+
}), Sr = /* @__PURE__ */ v(Br, [["__scopeId", "data-v-dc8cc97e"]]), Ir = { class: "pagination__wrapper" }, Cr = { class: "pagination__content" }, qr = /* @__PURE__ */ g({
|
|
2773
2782
|
__name: "pagination",
|
|
2774
2783
|
props: {
|
|
2775
2784
|
isPreviousDisabled: {
|
|
@@ -2801,13 +2810,13 @@ const $l = /* @__PURE__ */ f(vl, [["render", kl], ["__scopeId", "data-v-776750d2
|
|
|
2801
2810
|
])
|
|
2802
2811
|
]));
|
|
2803
2812
|
}
|
|
2804
|
-
}), Ar = /* @__PURE__ */
|
|
2813
|
+
}), Ar = /* @__PURE__ */ v(qr, [["__scopeId", "data-v-da6d07c9"]]), Lr = {}, Dr = { class: "search__wrapper" };
|
|
2805
2814
|
function Tr(e, a) {
|
|
2806
2815
|
return s(), i("div", Dr, [
|
|
2807
2816
|
c(e.$slots, "default", { class: "search__content" })
|
|
2808
2817
|
]);
|
|
2809
2818
|
}
|
|
2810
|
-
const Vr = /* @__PURE__ */
|
|
2819
|
+
const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3"]]), Pr = { class: "dropdown" }, Fr = ["aria-expanded"], Mr = /* @__PURE__ */ g({
|
|
2811
2820
|
__name: "select-multiple",
|
|
2812
2821
|
props: {
|
|
2813
2822
|
label: { default: "" },
|
|
@@ -2817,30 +2826,30 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2817
2826
|
emits: ["filter", "remove-filter"],
|
|
2818
2827
|
setup(e, { emit: a }) {
|
|
2819
2828
|
const r = C(!1), o = e, l = a;
|
|
2820
|
-
function
|
|
2829
|
+
function u(b) {
|
|
2821
2830
|
o.selectedOptions.includes(b) ? l("remove-filter", b) : l("filter", b);
|
|
2822
2831
|
}
|
|
2823
|
-
function
|
|
2832
|
+
function h() {
|
|
2824
2833
|
r.value = !1;
|
|
2825
2834
|
}
|
|
2826
|
-
const
|
|
2827
|
-
return (b,
|
|
2835
|
+
const n = A(() => o.options.length > 8);
|
|
2836
|
+
return (b, f) => {
|
|
2828
2837
|
const k = _e("click-outside");
|
|
2829
|
-
return
|
|
2838
|
+
return U((s(), i("div", Pr, [
|
|
2830
2839
|
t("button", {
|
|
2831
2840
|
class: "dropdown-button",
|
|
2832
2841
|
style: x({ "z-index": r.value ? 2 : 0 }),
|
|
2833
2842
|
"aria-expanded": r.value ? "true" : "false",
|
|
2834
|
-
onClick:
|
|
2843
|
+
onClick: f[0] || (f[0] = (w) => r.value = !r.value)
|
|
2835
2844
|
}, [
|
|
2836
2845
|
c(b.$slots, "button", {}, () => [
|
|
2837
|
-
|
|
2846
|
+
J(d(b.label), 1)
|
|
2838
2847
|
], !0)
|
|
2839
2848
|
], 12, Fr),
|
|
2840
2849
|
t("div", {
|
|
2841
|
-
class: p([{ hidden: !r.value, "adjust-height":
|
|
2850
|
+
class: p([{ hidden: !r.value, "adjust-height": n.value }, "dropdown-content"])
|
|
2842
2851
|
}, [
|
|
2843
|
-
(s(!0), i(
|
|
2852
|
+
(s(!0), i(T, null, V(b.options, (w) => (s(), L(I(fe), {
|
|
2844
2853
|
id: w.value,
|
|
2845
2854
|
key: w.value,
|
|
2846
2855
|
name: w.text,
|
|
@@ -2848,20 +2857,20 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2848
2857
|
disabled: !1,
|
|
2849
2858
|
value: w.value,
|
|
2850
2859
|
checked: b.selectedOptions.includes(w.value),
|
|
2851
|
-
onInput: (te) =>
|
|
2860
|
+
onInput: (te) => u(w.value)
|
|
2852
2861
|
}, {
|
|
2853
2862
|
default: y(() => [
|
|
2854
|
-
|
|
2863
|
+
J(d(w.text), 1)
|
|
2855
2864
|
]),
|
|
2856
2865
|
_: 2
|
|
2857
2866
|
}, 1032, ["id", "name", "value", "checked", "onInput"]))), 128))
|
|
2858
2867
|
], 2)
|
|
2859
2868
|
])), [
|
|
2860
|
-
[k,
|
|
2869
|
+
[k, h]
|
|
2861
2870
|
]);
|
|
2862
2871
|
};
|
|
2863
2872
|
}
|
|
2864
|
-
}),
|
|
2873
|
+
}), Or = /* @__PURE__ */ v(Mr, [["__scopeId", "data-v-164647da"]]), zr = { class: "promo__content" }, Hr = { class: "pallet-jack__media-wrap" }, Rr = { class: "pallet-jack-link" }, Nr = { class: "pallet-jack__media-wrap__inner-wrap" }, Er = { class: "pallet-jack__media-wrap__content-wrap" }, jr = { class: "regular-blue" }, Kr = /* @__PURE__ */ g({
|
|
2865
2874
|
__name: "pallet-jack",
|
|
2866
2875
|
props: {
|
|
2867
2876
|
label: { default: "" },
|
|
@@ -2879,15 +2888,15 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2879
2888
|
dark: "promo__wrapper--dark",
|
|
2880
2889
|
light: "promo__wrapper--light",
|
|
2881
2890
|
default: "promo__wrapper--default"
|
|
2882
|
-
}, r = e, o =
|
|
2883
|
-
return (l,
|
|
2891
|
+
}, r = e, o = A(() => a[r.variant]);
|
|
2892
|
+
return (l, u) => (s(), i("div", {
|
|
2884
2893
|
class: p([
|
|
2885
2894
|
"promo__wrapper",
|
|
2886
2895
|
o.value,
|
|
2887
2896
|
l.teaser ? "promo__wrapper--teaser" : ""
|
|
2888
2897
|
])
|
|
2889
2898
|
}, [
|
|
2890
|
-
t("div",
|
|
2899
|
+
t("div", zr, [
|
|
2891
2900
|
t("div", {
|
|
2892
2901
|
class: p([
|
|
2893
2902
|
"promo__video",
|
|
@@ -2913,11 +2922,11 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2913
2922
|
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2914
2923
|
])
|
|
2915
2924
|
}, [
|
|
2916
|
-
l.label ? (s(),
|
|
2925
|
+
l.label ? (s(), L(X, {
|
|
2917
2926
|
key: 0,
|
|
2918
2927
|
text: l.label,
|
|
2919
2928
|
"label-dark": l.variant === "dark"
|
|
2920
|
-
}, null, 8, ["text", "label-dark"])) :
|
|
2929
|
+
}, null, 8, ["text", "label-dark"])) : _("", !0),
|
|
2921
2930
|
t("div", {
|
|
2922
2931
|
class: p([
|
|
2923
2932
|
"promo__title",
|
|
@@ -2926,7 +2935,7 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2926
2935
|
}, [
|
|
2927
2936
|
c(l.$slots, "promo-text")
|
|
2928
2937
|
], 2),
|
|
2929
|
-
l.linkType === "link" ? (s(),
|
|
2938
|
+
l.linkType === "link" ? (s(), L(P, {
|
|
2930
2939
|
key: 1,
|
|
2931
2940
|
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
2932
2941
|
arrow: ""
|
|
@@ -2935,8 +2944,8 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2935
2944
|
c(l.$slots, "promo-link")
|
|
2936
2945
|
]),
|
|
2937
2946
|
_: 3
|
|
2938
|
-
}, 8, ["link-type"])) :
|
|
2939
|
-
l.linkType === "button" ? (s(),
|
|
2947
|
+
}, 8, ["link-type"])) : _("", !0),
|
|
2948
|
+
l.linkType === "button" ? (s(), L(P, {
|
|
2940
2949
|
key: 2,
|
|
2941
2950
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
2942
2951
|
}, {
|
|
@@ -2944,37 +2953,37 @@ const Vr = /* @__PURE__ */ f(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2944
2953
|
c(l.$slots, "promo-link")
|
|
2945
2954
|
]),
|
|
2946
2955
|
_: 3
|
|
2947
|
-
}, 8, ["link-type"])) :
|
|
2956
|
+
}, 8, ["link-type"])) : _("", !0)
|
|
2948
2957
|
], 2)
|
|
2949
2958
|
])
|
|
2950
2959
|
], 2));
|
|
2951
2960
|
}
|
|
2952
|
-
}), Ur = /* @__PURE__ */
|
|
2961
|
+
}), Ur = /* @__PURE__ */ v(Kr, [["__scopeId", "data-v-00c0bad3"]]), Jr = {
|
|
2953
2962
|
install: (e) => {
|
|
2954
|
-
e.component("AtomButton", se), e.component("AtomCheckbox",
|
|
2963
|
+
e.component("AtomButton", se), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", F), e.component("AtomLabel", X), e.component("AtomLink", P), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Or), e.component("AtomSlider", Bt), e.component("AtomTextarea", Tt), e.component("AtomTextField", jt), e.component("AtomVideo", ee), e.component("MoleculeAddress", la), e.component("MoleculeBulletList", ca), e.component("MoleculeCard", ma), e.component("MoleculeColumnCard", ge), e.component("MoleculeEventCard", qa), e.component("MoleculeFlashcard", be), e.component("MoleculeModal", ve), e.component("MoleculeTextCard", Ua), e.component("BlockAccordion", ao), e.component("BlockFacts", So), e.component("BlockFeatures", Vo), e.component("BlockFlashcards", zo), e.component("BlockFormScript", Go), e.component("BlockHeadline", Qo), e.component("BlockHero", ds), e.component("BlockImage", ms), e.component("BlockImageGallery", ys), e.component("BlockLogoWall", As), e.component("BlockMicroStories", Ps), e.component("BlockPolicy", Hs), e.component("BlockProductHero", Ws), e.component("BlockPromo", Zs), e.component("BlockQuote", cl), e.component("BlockRichText", ml), e.component("BlockRichTextColumns", $l), e.component("BlockTimeline", Tl), e.component("BlockCardDisplay", co), e.component("BlockColumnGrid", fo), e.component("BlockVimeo", zl), e.component("BlockPalletJack", Ur), e.component("BlockFrontPageHero", ei), e.component("Organism404", ii), e.component("OrganismFilter", _i), e.component("OrganismFooter", Ni), e.component("OrganismHeader", gr), e.component("OrganismLanguageSwitcher", Sr), e.component("OrganismPagination", Ar), e.component("OrganismSearch", Vr);
|
|
2955
2964
|
}
|
|
2956
2965
|
};
|
|
2957
2966
|
export {
|
|
2958
2967
|
se as AtomButton,
|
|
2959
|
-
|
|
2968
|
+
fe as AtomCheckbox,
|
|
2960
2969
|
Ne as AtomChip,
|
|
2961
2970
|
Ye as AtomDropdown,
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2971
|
+
F as AtomImage,
|
|
2972
|
+
X as AtomLabel,
|
|
2973
|
+
P as AtomLink,
|
|
2965
2974
|
rt as AtomRadioButton,
|
|
2966
2975
|
ht as AtomSelect,
|
|
2967
|
-
|
|
2976
|
+
Or as AtomSelectMultiple,
|
|
2968
2977
|
Bt as AtomSlider,
|
|
2969
2978
|
jt as AtomTextField,
|
|
2970
2979
|
Tt as AtomTextarea,
|
|
2971
2980
|
ee as AtomVideo,
|
|
2972
2981
|
ao as BlockAccordion,
|
|
2973
2982
|
co as BlockCardDisplay,
|
|
2974
|
-
|
|
2983
|
+
fo as BlockColumnGrid,
|
|
2975
2984
|
So as BlockFacts,
|
|
2976
2985
|
Vo as BlockFeatures,
|
|
2977
|
-
|
|
2986
|
+
zo as BlockFlashcards,
|
|
2978
2987
|
Go as BlockFormScript,
|
|
2979
2988
|
ei as BlockFrontPageHero,
|
|
2980
2989
|
Qo as BlockHeadline,
|
|
@@ -2991,14 +3000,14 @@ export {
|
|
|
2991
3000
|
ml as BlockRichText,
|
|
2992
3001
|
$l as BlockRichTextColumns,
|
|
2993
3002
|
Tl as BlockTimeline,
|
|
2994
|
-
|
|
3003
|
+
zl as BlockVimeo,
|
|
2995
3004
|
la as MoleculeAddress,
|
|
2996
3005
|
ca as MoleculeBulletList,
|
|
2997
3006
|
ma as MoleculeCard,
|
|
2998
3007
|
ge as MoleculeColumnCard,
|
|
2999
3008
|
qa as MoleculeEventCard,
|
|
3000
3009
|
be as MoleculeFlashcard,
|
|
3001
|
-
|
|
3010
|
+
ve as MoleculeModal,
|
|
3002
3011
|
Ua as MoleculeTextCard,
|
|
3003
3012
|
ii as Organism404,
|
|
3004
3013
|
_i as OrganismFilter,
|