@mirweb/mir-web-components 0.16.5 → 0.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/dist/components/atoms/button/button.vue.d.ts +5 -32
- package/dist/components/atoms/checkbox/checkbox.vue.d.ts +26 -12
- package/dist/components/atoms/chip/chip.vue.d.ts +8 -2
- package/dist/components/atoms/image/image.vue.d.ts +7 -3
- package/dist/components/atoms/link/link.vue.d.ts +5 -61
- package/dist/components/atoms/radio-button/radio-button.vue.d.ts +17 -5
- package/dist/components/atoms/slider/slider.vue.d.ts +24 -9
- package/dist/components/atoms/text-field/text-field.vue.d.ts +6 -0
- package/dist/components/atoms/textarea/textarea.vue.d.ts +18 -0
- package/dist/components/atoms/video/video.vue.d.ts +9 -2
- package/dist/components/blocks/facts/facts.vue.d.ts +77 -41
- package/dist/components/blocks/features/features.vue.d.ts +22 -11
- package/dist/components/blocks/hero/hero.vue.d.ts +49 -35
- package/dist/components/blocks/image/image.vue.d.ts +12 -4
- package/dist/components/blocks/image-gallery/image-gallery.vue.d.ts +24 -10
- package/dist/components/blocks/logo-wall/logo-wall.vue.d.ts +57 -39
- package/dist/components/blocks/micro-stories/micro-stories.vue.d.ts +6 -8
- package/dist/components/blocks/product-hero/product-hero.vue.d.ts +9 -2
- package/dist/components/blocks/promo/promo.vue.d.ts +59 -35
- package/dist/components/blocks/quote/quote.vue.d.ts +12 -4
- package/dist/components/blocks/rich-text/rich-text.vue.d.ts +13 -3
- package/dist/components/blocks/timeline/timeline.vue.d.ts +10 -6
- package/dist/components/blocks/triple-card-display/triple-card-display.vue.d.ts +1 -3
- package/dist/components/blocks/vimeo/vimeo.vue.d.ts +8 -1
- package/dist/components/molecules/address/address.vue.d.ts +82 -41
- package/dist/components/molecules/bullet-list/bullet-list.vue.d.ts +10 -10
- package/dist/components/molecules/card/card.vue.d.ts +79 -22
- package/dist/components/molecules/modal/modal.vue.d.ts +24 -9
- package/dist/components/organisms/footer/footer.vue.d.ts +62 -49
- package/dist/components/organisms/header/header.vue.d.ts +0 -1
- package/dist/components/organisms/language-switcher/language-switcher.vue.d.ts +8 -1
- package/dist/components/organisms/pagination/pagination.vue.d.ts +24 -8
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +807 -768
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +10 -2
|
@@ -1,124 +1,95 @@
|
|
|
1
|
-
import { defineComponent as v, openBlock as
|
|
1
|
+
import { defineComponent as v, computed as D, openBlock as i, createElementBlock as s, normalizeClass as u, toDisplayString as r, createElementVNode as t, renderSlot as d, pushScopeId as z, popScopeId as F, createTextVNode as j, ref as w, withDirectives as Q, Fragment as L, renderList as C, vShow as Z, normalizeProps as V, guardReactiveProps as O, mergeProps as ee, createVNode as b, Transition as ge, withCtx as $, withModifiers as oe, createBlock as M, createCommentVNode as m, watchEffect as re, withKeys as ye, useSlots as be, normalizeStyle as te, isRef as ie, unref as I, onMounted as ne, watch as se, onUnmounted as pe } from "vue";
|
|
2
2
|
const $e = ["aria-label"], ke = /* @__PURE__ */ v({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
5
|
-
variant: {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
validator(e) {
|
|
9
|
-
return ["primary", "secondary", "close", "next", "previous"].includes(
|
|
10
|
-
e
|
|
11
|
-
);
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
ariaLabel: {
|
|
15
|
-
type: String,
|
|
16
|
-
required: !0
|
|
17
|
-
},
|
|
18
|
-
buttonText: {
|
|
19
|
-
type: String,
|
|
20
|
-
required: !1,
|
|
21
|
-
validator: (e) => (e.length > 15 && console.error(
|
|
22
|
-
"Button text is too long - must be 15 characters or less"
|
|
23
|
-
), !0)
|
|
24
|
-
}
|
|
5
|
+
variant: { default: "primary" },
|
|
6
|
+
ariaLabel: { default: "Button" },
|
|
7
|
+
buttonText: { default: "" }
|
|
25
8
|
},
|
|
26
9
|
setup(e) {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
10
|
+
const l = e, o = {
|
|
11
|
+
primary: "primary",
|
|
12
|
+
secondary: "secondary",
|
|
13
|
+
close: "close",
|
|
14
|
+
next: "next",
|
|
15
|
+
previous: "previous"
|
|
16
|
+
}, a = D(() => o[l.variant]);
|
|
17
|
+
return (n, _) => (i(), s("button", {
|
|
18
|
+
class: u(["button", "button--" + a.value]),
|
|
19
|
+
"aria-label": n.ariaLabel
|
|
20
|
+
}, r(a.value == "close" ? "" : n.buttonText), 11, $e));
|
|
31
21
|
}
|
|
32
22
|
});
|
|
33
23
|
const h = (e, l) => {
|
|
34
|
-
const
|
|
35
|
-
for (const [
|
|
36
|
-
|
|
37
|
-
return
|
|
38
|
-
}, J = /* @__PURE__ */ h(ke, [["__scopeId", "data-v-
|
|
24
|
+
const o = e.__vccOpts || e;
|
|
25
|
+
for (const [a, n] of l)
|
|
26
|
+
o[a] = n;
|
|
27
|
+
return o;
|
|
28
|
+
}, J = /* @__PURE__ */ h(ke, [["__scopeId", "data-v-22b26cbe"]]), we = (e) => (z("data-v-42c44141"), e = e(), F(), e), xe = ["id", "name", "value", "disabled", "required"], Se = ["for"], qe = /* @__PURE__ */ we(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Be = /* @__PURE__ */ v({
|
|
39
29
|
__name: "checkbox",
|
|
40
30
|
props: {
|
|
41
|
-
name:
|
|
42
|
-
value: {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
},
|
|
47
|
-
disabled: {
|
|
48
|
-
type: Boolean,
|
|
49
|
-
default: !1,
|
|
50
|
-
required: !1
|
|
51
|
-
},
|
|
52
|
-
id: {
|
|
53
|
-
type: String,
|
|
54
|
-
default: "checkbox",
|
|
55
|
-
required: !0
|
|
56
|
-
},
|
|
57
|
-
required: {
|
|
58
|
-
type: Boolean,
|
|
59
|
-
default: !1,
|
|
60
|
-
required: !0
|
|
61
|
-
}
|
|
31
|
+
name: { default: "checkbox" },
|
|
32
|
+
value: { type: [String, Number, Boolean], default: "value" },
|
|
33
|
+
disabled: { type: Boolean, default: !1 },
|
|
34
|
+
id: { default: "checkbox" },
|
|
35
|
+
required: { type: Boolean, default: !1 }
|
|
62
36
|
},
|
|
63
37
|
emits: ["input"],
|
|
64
38
|
setup(e, { emit: l }) {
|
|
65
|
-
const
|
|
66
|
-
const n =
|
|
39
|
+
const o = (a) => {
|
|
40
|
+
const n = a.target;
|
|
67
41
|
l("input", n.checked);
|
|
68
42
|
};
|
|
69
|
-
return (
|
|
70
|
-
class: u(["checkbox__wrapper",
|
|
43
|
+
return (a, n) => (i(), s("div", {
|
|
44
|
+
class: u(["checkbox__wrapper", a.disabled ? "disabled" : ""])
|
|
71
45
|
}, [
|
|
72
46
|
t("input", {
|
|
47
|
+
id: a.id,
|
|
73
48
|
type: "checkbox",
|
|
74
|
-
name:
|
|
75
|
-
value:
|
|
76
|
-
disabled:
|
|
77
|
-
required:
|
|
78
|
-
id: e.id,
|
|
49
|
+
name: a.name,
|
|
50
|
+
value: a.value,
|
|
51
|
+
disabled: a.disabled,
|
|
52
|
+
required: a.required,
|
|
79
53
|
class: "checkbox__checkbox",
|
|
80
|
-
onChange:
|
|
54
|
+
onChange: o
|
|
81
55
|
}, null, 40, xe),
|
|
82
56
|
t("label", {
|
|
83
|
-
for:
|
|
84
|
-
class: u(["checkbox__label",
|
|
57
|
+
for: a.id,
|
|
58
|
+
class: u(["checkbox__label", a.required ? "required" : ""])
|
|
85
59
|
}, [
|
|
86
60
|
qe,
|
|
87
|
-
d(
|
|
61
|
+
d(a.$slots, "default", {}, void 0, !0)
|
|
88
62
|
], 10, Se)
|
|
89
63
|
], 2));
|
|
90
64
|
}
|
|
91
65
|
});
|
|
92
|
-
const Ie = /* @__PURE__ */ h(Be, [["__scopeId", "data-v-
|
|
66
|
+
const Ie = /* @__PURE__ */ h(Be, [["__scopeId", "data-v-42c44141"]]), Le = (e) => (z("data-v-08813346"), e = e(), F(), e), Ce = ["aria-label"], Te = /* @__PURE__ */ Le(() => /* @__PURE__ */ t("img", {
|
|
93
67
|
src: "https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",
|
|
94
68
|
alt: "close",
|
|
95
69
|
class: "close-icon"
|
|
96
|
-
}, null, -1)),
|
|
70
|
+
}, null, -1)), Ae = /* @__PURE__ */ v({
|
|
97
71
|
__name: "chip",
|
|
98
72
|
props: {
|
|
99
|
-
text: {
|
|
100
|
-
type: String,
|
|
101
|
-
required: !0
|
|
102
|
-
}
|
|
73
|
+
text: { default: "" }
|
|
103
74
|
},
|
|
104
75
|
emits: ["remove-chip"],
|
|
105
|
-
setup(e
|
|
106
|
-
const
|
|
107
|
-
return (
|
|
76
|
+
setup(e) {
|
|
77
|
+
const l = e, o = D(() => `Chip: ${l.text}`);
|
|
78
|
+
return (a, n) => (i(), s("div", {
|
|
108
79
|
class: "chip__wrapper",
|
|
109
|
-
onClick:
|
|
80
|
+
onClick: n[0] || (n[0] = (_) => a.$emit("remove-chip"))
|
|
110
81
|
}, [
|
|
111
82
|
t("span", {
|
|
112
83
|
class: "chip",
|
|
113
|
-
"aria-label":
|
|
84
|
+
"aria-label": o.value
|
|
114
85
|
}, [
|
|
115
|
-
j(
|
|
116
|
-
|
|
117
|
-
], 8,
|
|
86
|
+
j(r(a.text) + " ", 1),
|
|
87
|
+
Te
|
|
88
|
+
], 8, Ce)
|
|
118
89
|
]));
|
|
119
90
|
}
|
|
120
91
|
});
|
|
121
|
-
const
|
|
92
|
+
const Ve = /* @__PURE__ */ h(Ae, [["__scopeId", "data-v-08813346"]]), De = ["value"], Me = ["id"], Oe = { class: "listbox__dropdown" }, ze = ["id", "aria-labelledby", "aria-disabled"], Fe = ["aria-labelledby", "aria-activedescendant"], Pe = ["aria-selected", "data-value"], Ne = /* @__PURE__ */ v({
|
|
122
93
|
__name: "dropdown",
|
|
123
94
|
props: {
|
|
124
95
|
modelValue: {
|
|
@@ -168,9 +139,9 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
168
139
|
},
|
|
169
140
|
emits: ["update:modelValue"],
|
|
170
141
|
setup(e, { emit: l }) {
|
|
171
|
-
const
|
|
172
|
-
const c =
|
|
173
|
-
(f) => f.value ===
|
|
142
|
+
const o = e, a = w(null), n = w(null), _ = w([]), p = w(0), x = w(""), q = w(!0), g = w(0), B = D(() => {
|
|
143
|
+
const c = o.options.find(
|
|
144
|
+
(f) => f.value === o.modelValue
|
|
174
145
|
);
|
|
175
146
|
return c && c.label;
|
|
176
147
|
}), X = {
|
|
@@ -186,10 +157,10 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
186
157
|
function k(c) {
|
|
187
158
|
l("update:modelValue", c);
|
|
188
159
|
}
|
|
189
|
-
function
|
|
160
|
+
function H(c) {
|
|
190
161
|
var y;
|
|
191
162
|
const f = c.target;
|
|
192
|
-
f.getAttribute("role") === "option" && (
|
|
163
|
+
f.getAttribute("role") === "option" && (K(f), Y(), (y = a.value) == null || y.focus());
|
|
193
164
|
}
|
|
194
165
|
function W(c) {
|
|
195
166
|
var y;
|
|
@@ -198,11 +169,11 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
198
169
|
case "ArrowUp":
|
|
199
170
|
case "ArrowDown": {
|
|
200
171
|
c.preventDefault();
|
|
201
|
-
const
|
|
202
|
-
(R) => R.value ===
|
|
172
|
+
const S = o.options.findIndex(
|
|
173
|
+
(R) => R.value === o.modelValue
|
|
203
174
|
);
|
|
204
|
-
let
|
|
205
|
-
f === "ArrowUp" ?
|
|
175
|
+
let P = S ? _.value[S] : _.value[0];
|
|
176
|
+
f === "ArrowUp" ? S - 1 >= 0 && (P = _.value[S - 1]) : S + 1 <= o.options.length && (P = _.value[S + 1]), P && K(P);
|
|
206
177
|
break;
|
|
207
178
|
}
|
|
208
179
|
case "Home":
|
|
@@ -215,17 +186,17 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
215
186
|
break;
|
|
216
187
|
case "Enter":
|
|
217
188
|
case "Escape":
|
|
218
|
-
c.preventDefault(),
|
|
189
|
+
c.preventDefault(), Y(), (y = a.value) == null || y.focus();
|
|
219
190
|
break;
|
|
220
191
|
default: {
|
|
221
|
-
const
|
|
222
|
-
|
|
192
|
+
const S = _e(f);
|
|
193
|
+
S && K(S);
|
|
223
194
|
break;
|
|
224
195
|
}
|
|
225
196
|
}
|
|
226
197
|
}
|
|
227
|
-
function
|
|
228
|
-
if (!
|
|
198
|
+
function N(c) {
|
|
199
|
+
if (!o.disabled)
|
|
229
200
|
switch (c.key) {
|
|
230
201
|
case "ArrowUp":
|
|
231
202
|
case "ArrowDown":
|
|
@@ -237,67 +208,67 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
237
208
|
c && c.removeAttribute("aria-selected");
|
|
238
209
|
}
|
|
239
210
|
function ue() {
|
|
240
|
-
|
|
241
|
-
|
|
211
|
+
p.value && (clearTimeout(p.value), p.value = 0), p.value = setTimeout(() => {
|
|
212
|
+
x.value = "", p.value = 0;
|
|
242
213
|
}, 500);
|
|
243
214
|
}
|
|
244
215
|
function _e(c) {
|
|
245
216
|
let f = "";
|
|
246
|
-
(
|
|
247
|
-
(
|
|
248
|
-
)),
|
|
217
|
+
(x.value === "" || f !== c) && (g.value = o.options.findIndex(
|
|
218
|
+
(S) => S.value === o.modelValue
|
|
219
|
+
)), x.value = f === c ? c : x.value + c, f = c, ue();
|
|
249
220
|
let y = ae(
|
|
250
221
|
g.value + 1,
|
|
251
|
-
|
|
222
|
+
o.options.length
|
|
252
223
|
);
|
|
253
|
-
return !y &&
|
|
224
|
+
return !y && x.value.length === 1 && (y = ae(0, g.value)), g.value = (g.value + 1) % o.options.length, y;
|
|
254
225
|
}
|
|
255
226
|
function ae(c, f) {
|
|
256
227
|
for (let y = c; y < f; y++)
|
|
257
|
-
if (
|
|
228
|
+
if (o.options[y].label && o.options[y].label.toUpperCase().indexOf(x.value.toUpperCase()) === 0)
|
|
258
229
|
return _.value[y];
|
|
259
230
|
return null;
|
|
260
231
|
}
|
|
261
232
|
function he() {
|
|
262
|
-
|
|
233
|
+
K(_.value[0]);
|
|
263
234
|
}
|
|
264
|
-
function
|
|
265
|
-
var y,
|
|
235
|
+
function K(c) {
|
|
236
|
+
var y, S;
|
|
266
237
|
const f = c.getAttribute("data-value");
|
|
267
|
-
if (
|
|
268
|
-
const
|
|
269
|
-
(fe) => fe.value ===
|
|
270
|
-
), R = _.value[
|
|
238
|
+
if (o.modelValue) {
|
|
239
|
+
const P = o.options.findIndex(
|
|
240
|
+
(fe) => fe.value === o.modelValue
|
|
241
|
+
), R = _.value[P];
|
|
271
242
|
ce(R);
|
|
272
243
|
}
|
|
273
244
|
if (c.setAttribute("aria-selected", "true"), (y = n.value) == null || y.setAttribute(
|
|
274
245
|
"aria-activedescendant",
|
|
275
246
|
f || ""
|
|
276
247
|
), k(f || ""), n.value && n.value.scrollHeight > n.value.clientHeight) {
|
|
277
|
-
const
|
|
278
|
-
R >
|
|
248
|
+
const P = n.value.clientHeight + n.value.scrollTop, R = c.offsetTop + c.offsetHeight;
|
|
249
|
+
R > P ? n.value.scrollTop = R - ((S = n.value) == null ? void 0 : S.clientHeight) : c.offsetTop < n.value.scrollTop && (n.value.scrollTop = c.offsetTop);
|
|
279
250
|
}
|
|
280
251
|
}
|
|
281
252
|
function ve() {
|
|
282
253
|
var f;
|
|
283
|
-
const c = (f = _.value) == null ? void 0 : f[
|
|
284
|
-
|
|
254
|
+
const c = (f = _.value) == null ? void 0 : f[o.options.length - 1];
|
|
255
|
+
K(c);
|
|
285
256
|
}
|
|
286
|
-
function
|
|
257
|
+
function Y() {
|
|
287
258
|
var c;
|
|
288
|
-
|
|
259
|
+
q.value = !0, (c = a.value) == null || c.removeAttribute("aria-expanded");
|
|
289
260
|
}
|
|
290
261
|
function le() {
|
|
291
262
|
var c, f;
|
|
292
|
-
|
|
263
|
+
q.value = !1, (c = a.value) == null || c.setAttribute("aria-expanded", "true"), (f = n.value) == null || f.focus();
|
|
293
264
|
}
|
|
294
265
|
function me() {
|
|
295
|
-
|
|
266
|
+
o.disabled || (q.value ? le() : Y());
|
|
296
267
|
}
|
|
297
|
-
return (c, f) => (
|
|
268
|
+
return (c, f) => (i(), s("div", {
|
|
269
|
+
ref: "listbox",
|
|
298
270
|
class: "listbox__wrapper",
|
|
299
|
-
value: e.modelValue
|
|
300
|
-
ref: "listbox"
|
|
271
|
+
value: e.modelValue
|
|
301
272
|
}, [
|
|
302
273
|
t("label", {
|
|
303
274
|
id: `${e.name}-label`,
|
|
@@ -306,10 +277,12 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
306
277
|
"is-disabled": e.disabled,
|
|
307
278
|
"is-required": e.required
|
|
308
279
|
}, "listbox__label"])
|
|
309
|
-
},
|
|
310
|
-
|
|
280
|
+
}, r(e.label), 11, Me),
|
|
281
|
+
Q((i(), s("div", Oe, [
|
|
311
282
|
t("button", {
|
|
312
283
|
id: `${e.name}-button-label`,
|
|
284
|
+
ref_key: "listboxButton",
|
|
285
|
+
ref: a,
|
|
313
286
|
"aria-labelledby": `${e.name}-label ${e.name}-button-label`,
|
|
314
287
|
type: "button",
|
|
315
288
|
"aria-haspopup": "listbox",
|
|
@@ -319,41 +292,39 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
319
292
|
e.variant === "dark" ? "dropdown-dark dropdown-dark-bg-dark" : "dropdown-dark-bg-primary"
|
|
320
293
|
]),
|
|
321
294
|
onClick: me,
|
|
322
|
-
onKeydown:
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
295
|
+
onKeydown: N
|
|
296
|
+
}, r(e.modelValue ? B.value : e.placeholder), 43, ze),
|
|
297
|
+
Q(t("ul", {
|
|
298
|
+
ref_key: "listboxNode",
|
|
299
|
+
ref: n,
|
|
327
300
|
"aria-labelledby": `${e.name}-label`,
|
|
328
301
|
"aria-activedescendant": e.modelValue,
|
|
329
302
|
tabindex: "0",
|
|
330
303
|
role: "listbox",
|
|
331
304
|
class: "listbox__list",
|
|
332
305
|
onKeydown: W,
|
|
333
|
-
onClick:
|
|
334
|
-
ref_key: "listboxNode",
|
|
335
|
-
ref: n
|
|
306
|
+
onClick: H
|
|
336
307
|
}, [
|
|
337
|
-
(
|
|
338
|
-
key: `${e.name}-option-${
|
|
308
|
+
(i(!0), s(L, null, C(e.options, (y, S) => (i(), s("li", {
|
|
309
|
+
key: `${e.name}-option-${S}`,
|
|
310
|
+
ref_for: !0,
|
|
311
|
+
ref_key: "listboxOptions",
|
|
312
|
+
ref: _,
|
|
339
313
|
"aria-selected": y.value === e.modelValue,
|
|
340
314
|
"data-value": y.value,
|
|
341
315
|
class: "listbox__option",
|
|
342
|
-
role: "option"
|
|
343
|
-
|
|
344
|
-
ref_key: "listboxOptions",
|
|
345
|
-
ref: _
|
|
346
|
-
}, o(y.label), 9, Pe))), 128))
|
|
316
|
+
role: "option"
|
|
317
|
+
}, r(y.label), 9, Pe))), 128))
|
|
347
318
|
], 40, Fe), [
|
|
348
|
-
[Z, !
|
|
319
|
+
[Z, !q.value]
|
|
349
320
|
])
|
|
350
321
|
])), [
|
|
351
|
-
[X,
|
|
322
|
+
[X, Y]
|
|
352
323
|
])
|
|
353
324
|
], 8, De));
|
|
354
325
|
}
|
|
355
326
|
});
|
|
356
|
-
const
|
|
327
|
+
const Ee = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-48b1733b"]]), He = { class: "image__wrapper" }, Re = /* @__PURE__ */ v({
|
|
357
328
|
__name: "image",
|
|
358
329
|
props: {
|
|
359
330
|
src: {
|
|
@@ -368,7 +339,8 @@ const He = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-f69f328c"]]), Ne = { cla
|
|
|
368
339
|
},
|
|
369
340
|
sizes: {
|
|
370
341
|
type: String,
|
|
371
|
-
required: !1
|
|
342
|
+
required: !1,
|
|
343
|
+
default: void 0
|
|
372
344
|
},
|
|
373
345
|
alt: {
|
|
374
346
|
type: String,
|
|
@@ -377,7 +349,8 @@ const He = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-f69f328c"]]), Ne = { cla
|
|
|
377
349
|
},
|
|
378
350
|
width: {
|
|
379
351
|
type: [String, Number],
|
|
380
|
-
required: !1
|
|
352
|
+
required: !1,
|
|
353
|
+
default: void 0
|
|
381
354
|
},
|
|
382
355
|
height: {
|
|
383
356
|
type: [String, Number],
|
|
@@ -391,12 +364,12 @@ const He = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-f69f328c"]]), Ne = { cla
|
|
|
391
364
|
}
|
|
392
365
|
},
|
|
393
366
|
setup(e) {
|
|
394
|
-
return (l,
|
|
395
|
-
d(l.$slots, "default",
|
|
367
|
+
return (l, o) => (i(), s("div", He, [
|
|
368
|
+
d(l.$slots, "default", V(O(l.$attrs)))
|
|
396
369
|
]));
|
|
397
370
|
}
|
|
398
371
|
});
|
|
399
|
-
const
|
|
372
|
+
const T = /* @__PURE__ */ h(Re, [["__scopeId", "data-v-f41d7358"]]), je = { class: "label__wrapper" }, Ue = ["aria-label", "label-dark"], Ke = /* @__PURE__ */ v({
|
|
400
373
|
__name: "label",
|
|
401
374
|
props: {
|
|
402
375
|
text: {
|
|
@@ -410,74 +383,66 @@ const L = /* @__PURE__ */ h(Re, [["__scopeId", "data-v-513b5384"]]), je = { clas
|
|
|
410
383
|
}
|
|
411
384
|
},
|
|
412
385
|
setup(e) {
|
|
413
|
-
const l = e,
|
|
414
|
-
return (
|
|
386
|
+
const l = e, o = D(() => `Label: ${l.text}`);
|
|
387
|
+
return (a, n) => (i(), s("div", je, [
|
|
415
388
|
t("span", {
|
|
416
|
-
"aria-label":
|
|
389
|
+
"aria-label": o.value,
|
|
417
390
|
"label-dark": e.labelDark,
|
|
418
391
|
class: u(e.labelDark ? "label--dark" : "label--light")
|
|
419
|
-
},
|
|
392
|
+
}, r(e.text), 11, Ue)
|
|
420
393
|
]));
|
|
421
394
|
}
|
|
422
395
|
});
|
|
423
|
-
const G = /* @__PURE__ */ h(
|
|
396
|
+
const G = /* @__PURE__ */ h(Ke, [["__scopeId", "data-v-e7a44d10"]]), Ge = { class: "link__wrapper" }, A = /* @__PURE__ */ v({
|
|
424
397
|
__name: "link",
|
|
425
398
|
props: {
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
default: "false"
|
|
431
|
-
},
|
|
432
|
-
linkType: {
|
|
433
|
-
type: String,
|
|
434
|
-
required: !1,
|
|
435
|
-
validator: (e) => [
|
|
436
|
-
"primary",
|
|
437
|
-
"secondary",
|
|
438
|
-
"secondary-dark",
|
|
439
|
-
"regular",
|
|
440
|
-
"regular-dark",
|
|
441
|
-
"regular-light",
|
|
442
|
-
"regular-blue"
|
|
443
|
-
].includes(e),
|
|
444
|
-
default: "regular"
|
|
445
|
-
},
|
|
446
|
-
disabled: {
|
|
447
|
-
type: Boolean,
|
|
448
|
-
required: !1,
|
|
449
|
-
default: !1
|
|
450
|
-
},
|
|
451
|
-
arrow: {
|
|
452
|
-
type: Boolean,
|
|
453
|
-
required: !1,
|
|
454
|
-
default: !1
|
|
455
|
-
}
|
|
399
|
+
linkType: { default: "regular" },
|
|
400
|
+
arrow: { type: Boolean, default: !1 },
|
|
401
|
+
underline: { default: "hover" },
|
|
402
|
+
disabled: { type: Boolean, default: !1 }
|
|
456
403
|
},
|
|
457
404
|
setup(e) {
|
|
458
|
-
const l = e,
|
|
459
|
-
|
|
460
|
-
|
|
405
|
+
const l = e, o = {
|
|
406
|
+
primary: "mir-link--btn button button--primary",
|
|
407
|
+
secondary: "mir-link--btn button button--secondary",
|
|
408
|
+
secondary_dark: "mir-link--btn button button--secondary-dark",
|
|
409
|
+
regular: "regular-link",
|
|
410
|
+
regular_dark: "regular-link-dark",
|
|
411
|
+
regular_light: "regular-link-light",
|
|
412
|
+
regular_blue: "regular-link-blue"
|
|
413
|
+
}, a = {
|
|
414
|
+
hover: "underline-hover",
|
|
415
|
+
true: "add-underline",
|
|
416
|
+
false: "remove-underline"
|
|
417
|
+
}, n = D(() => o[l.linkType]), _ = D(() => a[l.underline]), p = D(() => {
|
|
418
|
+
const { ...x } = l;
|
|
419
|
+
return x;
|
|
461
420
|
});
|
|
462
|
-
return (
|
|
463
|
-
t("div", ee(
|
|
421
|
+
return (x, q) => (i(), s("div", Ge, [
|
|
422
|
+
t("div", ee(p.value, {
|
|
464
423
|
class: ["mir-link", [
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
424
|
+
n.value,
|
|
425
|
+
x.disabled ? "disabled" : "",
|
|
426
|
+
_.value,
|
|
427
|
+
x.arrow ? "link-arrow" : ""
|
|
469
428
|
]]
|
|
470
429
|
}), [
|
|
471
|
-
d(
|
|
430
|
+
d(x.$slots, "default")
|
|
472
431
|
], 16)
|
|
473
432
|
]));
|
|
474
433
|
}
|
|
475
434
|
});
|
|
476
|
-
const We = (e) => (
|
|
435
|
+
const We = (e) => (z("data-v-eaed5b4f"), e = e(), F(), e), Ye = ["id", "name", "value", "checked", "disabled", "required"], Qe = ["for"], Je = /* @__PURE__ */ We(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), Xe = /* @__PURE__ */ v({
|
|
477
436
|
__name: "radio-button",
|
|
478
437
|
props: {
|
|
479
|
-
name:
|
|
480
|
-
|
|
438
|
+
name: {
|
|
439
|
+
type: String,
|
|
440
|
+
default: "radio"
|
|
441
|
+
},
|
|
442
|
+
value: {
|
|
443
|
+
type: [String, Number, Boolean],
|
|
444
|
+
required: !0
|
|
445
|
+
},
|
|
481
446
|
checked: {
|
|
482
447
|
type: Boolean,
|
|
483
448
|
default: !1,
|
|
@@ -501,35 +466,35 @@ const We = (e) => (O("data-v-69095414"), e = e(), z(), e), Qe = ["name", "value"
|
|
|
501
466
|
},
|
|
502
467
|
emits: ["input"],
|
|
503
468
|
setup(e, { emit: l }) {
|
|
504
|
-
const
|
|
505
|
-
const n =
|
|
469
|
+
const o = (a) => {
|
|
470
|
+
const n = a.target;
|
|
506
471
|
l("input", n.checked);
|
|
507
472
|
};
|
|
508
|
-
return (
|
|
473
|
+
return (a, n) => (i(), s("div", {
|
|
509
474
|
class: u(["radio__wrapper", e.disabled ? "disabled" : ""])
|
|
510
475
|
}, [
|
|
511
476
|
t("input", {
|
|
477
|
+
id: e.id,
|
|
512
478
|
type: "radio",
|
|
513
479
|
name: e.name,
|
|
514
480
|
value: e.value,
|
|
515
481
|
checked: e.checked,
|
|
516
482
|
disabled: e.disabled,
|
|
517
483
|
required: e.required,
|
|
518
|
-
id: e.id,
|
|
519
484
|
class: "radio__radio",
|
|
520
|
-
onChange:
|
|
521
|
-
}, null, 40,
|
|
485
|
+
onChange: o
|
|
486
|
+
}, null, 40, Ye),
|
|
522
487
|
t("label", {
|
|
523
488
|
for: e.id,
|
|
524
489
|
class: u(["radio__label", e.required ? "required" : ""])
|
|
525
490
|
}, [
|
|
526
491
|
Je,
|
|
527
|
-
d(
|
|
528
|
-
], 10,
|
|
492
|
+
d(a.$slots, "default", {}, void 0, !0)
|
|
493
|
+
], 10, Qe)
|
|
529
494
|
], 2));
|
|
530
495
|
}
|
|
531
496
|
});
|
|
532
|
-
const Ze = /* @__PURE__ */ h(Xe, [["__scopeId", "data-v-
|
|
497
|
+
const Ze = /* @__PURE__ */ h(Xe, [["__scopeId", "data-v-eaed5b4f"]]), et = { class: "select__wrapper" }, tt = ["for"], at = ["id", "disabled", "name", "value"], lt = ["value"], it = /* @__PURE__ */ v({
|
|
533
498
|
__name: "select",
|
|
534
499
|
props: {
|
|
535
500
|
id: {
|
|
@@ -570,30 +535,30 @@ const Ze = /* @__PURE__ */ h(Xe, [["__scopeId", "data-v-69095414"]]), et = { cla
|
|
|
570
535
|
},
|
|
571
536
|
emits: ["update:modelValue"],
|
|
572
537
|
setup(e) {
|
|
573
|
-
return (l,
|
|
538
|
+
return (l, o) => (i(), s("div", et, [
|
|
574
539
|
t("label", {
|
|
575
540
|
for: e.id,
|
|
576
541
|
class: u([e.required ? "required" : "", e.disabled ? "disabled" : ""])
|
|
577
|
-
},
|
|
542
|
+
}, r(e.label), 11, tt),
|
|
578
543
|
t("select", {
|
|
544
|
+
id: e.id,
|
|
579
545
|
class: u(e.disabled ? "disabled" : ""),
|
|
580
546
|
disabled: e.disabled,
|
|
581
|
-
id: e.id,
|
|
582
547
|
name: e.name,
|
|
583
548
|
value: e.modelValue,
|
|
584
|
-
onChange:
|
|
585
|
-
l.$emit("update:modelValue",
|
|
549
|
+
onChange: o[0] || (o[0] = (a) => {
|
|
550
|
+
l.$emit("update:modelValue", a.target.value), a.target.blur();
|
|
586
551
|
})
|
|
587
552
|
}, [
|
|
588
|
-
(
|
|
589
|
-
key:
|
|
590
|
-
value:
|
|
591
|
-
},
|
|
553
|
+
(i(!0), s(L, null, C(e.options, (a) => (i(), s("option", {
|
|
554
|
+
key: a.value,
|
|
555
|
+
value: a.value
|
|
556
|
+
}, r(a.text), 9, lt))), 128))
|
|
592
557
|
], 42, at)
|
|
593
558
|
]));
|
|
594
559
|
}
|
|
595
560
|
});
|
|
596
|
-
const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-
|
|
561
|
+
const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-4445d1ae"]]), ot = { class: "modal__wrapper" }, rt = /* @__PURE__ */ v({
|
|
597
562
|
__name: "modal",
|
|
598
563
|
props: {
|
|
599
564
|
show: { type: Boolean, default: !1 },
|
|
@@ -601,39 +566,34 @@ const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-500637d5"]]), rt = { cla
|
|
|
601
566
|
},
|
|
602
567
|
emits: ["update:show"],
|
|
603
568
|
setup(e, { emit: l }) {
|
|
604
|
-
const
|
|
605
|
-
|
|
606
|
-
get: () => r.show,
|
|
607
|
-
set: (n) => l("update:show", n)
|
|
608
|
-
});
|
|
609
|
-
const i = () => {
|
|
610
|
-
l("update:show", !r.show);
|
|
569
|
+
const o = e, a = () => {
|
|
570
|
+
l("update:show", !o.show);
|
|
611
571
|
};
|
|
612
|
-
return (n, _) => (
|
|
613
|
-
|
|
572
|
+
return (n, _) => (i(), s("div", ot, [
|
|
573
|
+
b(ge, {
|
|
614
574
|
duration: 300,
|
|
615
575
|
name: "nested"
|
|
616
576
|
}, {
|
|
617
577
|
default: $(() => [
|
|
618
|
-
n.show ? (
|
|
578
|
+
n.show ? (i(), s("div", {
|
|
619
579
|
key: 0,
|
|
620
580
|
class: u(["overlay", n.searchBar ? "overlay-search" : "overlay-default"]),
|
|
621
|
-
onClick: i,
|
|
622
581
|
ariaLabel: "modal",
|
|
623
|
-
role: "dialog"
|
|
582
|
+
role: "dialog",
|
|
583
|
+
onClick: a
|
|
624
584
|
}, [
|
|
625
585
|
t("div", {
|
|
626
586
|
id: "modal",
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
587
|
+
class: u([n.searchBar ? "search" : ""]),
|
|
588
|
+
onClick: _[0] || (_[0] = oe(() => {
|
|
589
|
+
}, ["stop"]))
|
|
630
590
|
}, [
|
|
631
591
|
t("div", null, [
|
|
632
|
-
n.searchBar ? m("", !0) : (
|
|
592
|
+
n.searchBar ? m("", !0) : (i(), M(J, {
|
|
633
593
|
key: 0,
|
|
634
|
-
|
|
594
|
+
"aria-label": "close",
|
|
635
595
|
variant: "close",
|
|
636
|
-
onClick:
|
|
596
|
+
onClick: a
|
|
637
597
|
}))
|
|
638
598
|
]),
|
|
639
599
|
d(n.$slots, "default", {}, void 0, !0)
|
|
@@ -645,7 +605,7 @@ const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-500637d5"]]), rt = { cla
|
|
|
645
605
|
]));
|
|
646
606
|
}
|
|
647
607
|
});
|
|
648
|
-
const de = /* @__PURE__ */ h(
|
|
608
|
+
const de = /* @__PURE__ */ h(rt, [["__scopeId", "data-v-ae81fb1e"]]), nt = { class: "slider__wrapper" }, dt = { class: "slider__label" }, ct = ["for"], ut = ["aria-label"], _t = { class: "slider__content" }, ht = ["id", "name", "value", "min", "step", "max"], vt = /* @__PURE__ */ v({
|
|
649
609
|
__name: "slider",
|
|
650
610
|
props: {
|
|
651
611
|
label: {
|
|
@@ -698,87 +658,90 @@ const de = /* @__PURE__ */ h(ot, [["__scopeId", "data-v-e18c70fd"]]), nt = { cla
|
|
|
698
658
|
},
|
|
699
659
|
emits: ["update:modelValue"],
|
|
700
660
|
setup(e, { emit: l }) {
|
|
701
|
-
const
|
|
661
|
+
const o = e, a = w(o.modelValue), n = w(), _ = w(!1), p = (q, g, B) => (q - g) / (B - g) * 100, x = (q) => {
|
|
702
662
|
var g;
|
|
703
|
-
(g = n.value) == null || g.style.setProperty("--ProgressPercent", `${
|
|
663
|
+
(g = n.value) == null || g.style.setProperty("--ProgressPercent", `${q}%`);
|
|
704
664
|
};
|
|
705
|
-
return
|
|
665
|
+
return re(() => {
|
|
706
666
|
if (n.value) {
|
|
707
|
-
l("update:modelValue",
|
|
708
|
-
const
|
|
709
|
-
let g = (50 -
|
|
710
|
-
|
|
667
|
+
l("update:modelValue", a.value);
|
|
668
|
+
const q = p(a.value, o.min, o.max);
|
|
669
|
+
let g = (50 - q) / 100;
|
|
670
|
+
x(q + g);
|
|
711
671
|
}
|
|
712
|
-
}), (
|
|
672
|
+
}), (q, g) => (i(), s("div", null, [
|
|
713
673
|
t("div", nt, [
|
|
714
674
|
t("div", dt, [
|
|
715
675
|
t("label", {
|
|
716
676
|
for: e.id,
|
|
717
677
|
class: u([e.variant, ""])
|
|
718
|
-
},
|
|
719
|
-
e.information ? (
|
|
678
|
+
}, r(e.label), 11, ct),
|
|
679
|
+
e.information ? (i(), s("i", {
|
|
720
680
|
key: 0,
|
|
721
681
|
role: "button",
|
|
722
682
|
class: u([e.variant, "slider__information"]),
|
|
723
|
-
onClick: g[0] || (g[0] = (q) => _.value = !_.value),
|
|
724
|
-
onKeyup: g[1] || (g[1] = ye((q) => _.value = !_.value, ["enter"])),
|
|
725
683
|
"aria-label": e.informationLabel,
|
|
726
684
|
tabindex: "0",
|
|
727
|
-
"aria-haspopup": "dialog"
|
|
685
|
+
"aria-haspopup": "dialog",
|
|
686
|
+
onClick: g[0] || (g[0] = (B) => _.value = !_.value),
|
|
687
|
+
onKeyup: g[1] || (g[1] = ye((B) => _.value = !_.value, ["enter"]))
|
|
728
688
|
}, null, 42, ut)) : m("", !0)
|
|
729
689
|
]),
|
|
730
690
|
t("div", _t, [
|
|
731
691
|
t("span", {
|
|
732
692
|
class: u([e.variant, "slider__minmax"])
|
|
733
|
-
},
|
|
693
|
+
}, r(e.min), 3),
|
|
734
694
|
t("input", {
|
|
735
|
-
type: "range",
|
|
736
695
|
id: e.id,
|
|
696
|
+
ref_key: "slider",
|
|
697
|
+
ref: n,
|
|
698
|
+
type: "range",
|
|
737
699
|
name: e.name,
|
|
738
700
|
value: e.modelValue,
|
|
739
701
|
min: e.min,
|
|
740
702
|
step: e.step,
|
|
741
703
|
max: e.max,
|
|
742
704
|
class: u(e.variant),
|
|
743
|
-
|
|
744
|
-
ref: n,
|
|
745
|
-
onInput: g[2] || (g[2] = ({ target: q }) => i.value = parseFloat(q.value))
|
|
705
|
+
onInput: g[2] || (g[2] = ({ target: B }) => a.value = parseFloat(B.value))
|
|
746
706
|
}, null, 42, ht),
|
|
747
707
|
t("span", {
|
|
748
708
|
class: u([e.variant, "slider__minmax"])
|
|
749
|
-
},
|
|
709
|
+
}, r(e.max), 3)
|
|
750
710
|
]),
|
|
751
711
|
t("span", {
|
|
752
712
|
class: u([e.variant, "slider__value"])
|
|
753
|
-
},
|
|
713
|
+
}, r(e.modelValue), 3)
|
|
754
714
|
]),
|
|
755
|
-
e.information ? (
|
|
715
|
+
e.information ? (i(), M(de, {
|
|
756
716
|
key: 0,
|
|
757
717
|
show: _.value,
|
|
758
|
-
"onUpdate:show": g[3] || (g[3] = (
|
|
718
|
+
"onUpdate:show": g[3] || (g[3] = (B) => _.value = B)
|
|
759
719
|
}, {
|
|
760
720
|
default: $(() => [
|
|
761
|
-
j(
|
|
721
|
+
j(r(e.information), 1)
|
|
762
722
|
]),
|
|
763
723
|
_: 1
|
|
764
724
|
}, 8, ["show"])) : m("", !0)
|
|
765
725
|
]));
|
|
766
726
|
}
|
|
767
727
|
});
|
|
768
|
-
const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-
|
|
728
|
+
const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-39b97f8e"]]), ft = { id: "textarea-wrapper" }, gt = ["for"], yt = ["id"], bt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], pt = { class: "textarea-info" }, $t = { key: 0 }, kt = /* @__PURE__ */ v({
|
|
769
729
|
__name: "textarea",
|
|
770
730
|
props: {
|
|
771
731
|
id: {
|
|
772
732
|
type: String,
|
|
773
|
-
required: !1
|
|
733
|
+
required: !1,
|
|
734
|
+
default: ""
|
|
774
735
|
},
|
|
775
736
|
name: {
|
|
776
737
|
type: String,
|
|
777
|
-
required: !1
|
|
738
|
+
required: !1,
|
|
739
|
+
default: ""
|
|
778
740
|
},
|
|
779
741
|
placeholder: {
|
|
780
742
|
type: String,
|
|
781
|
-
required: !1
|
|
743
|
+
required: !1,
|
|
744
|
+
default: ""
|
|
782
745
|
},
|
|
783
746
|
required: {
|
|
784
747
|
type: Boolean,
|
|
@@ -792,66 +755,69 @@ const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-6dbb2648"]]), ft = { id:
|
|
|
792
755
|
},
|
|
793
756
|
labelText: {
|
|
794
757
|
type: String,
|
|
795
|
-
required: !1
|
|
758
|
+
required: !1,
|
|
759
|
+
default: ""
|
|
796
760
|
},
|
|
797
761
|
maxLength: {
|
|
798
762
|
type: Number,
|
|
799
|
-
required: !1
|
|
763
|
+
required: !1,
|
|
764
|
+
default: void 0
|
|
800
765
|
},
|
|
801
766
|
modelValue: {
|
|
802
767
|
type: String,
|
|
803
|
-
required: !1
|
|
768
|
+
required: !1,
|
|
769
|
+
default: void 0
|
|
804
770
|
}
|
|
805
771
|
},
|
|
806
772
|
emits: ["update:modelValue"],
|
|
807
773
|
setup(e) {
|
|
808
|
-
return (l,
|
|
774
|
+
return (l, o) => (i(), s("div", ft, [
|
|
809
775
|
t("label", {
|
|
810
776
|
for: e.id,
|
|
811
777
|
class: u({ required: e.required })
|
|
812
|
-
},
|
|
778
|
+
}, r(e.labelText) + r(e.required ? " *" : ""), 11, gt),
|
|
813
779
|
t("div", {
|
|
814
780
|
id: e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "textarea-wrapper__inner" : ""
|
|
815
781
|
}, [
|
|
816
782
|
t("textarea", {
|
|
783
|
+
id: e.id,
|
|
817
784
|
rows: "10",
|
|
818
785
|
cols: "50",
|
|
819
|
-
id: e.id,
|
|
820
786
|
name: e.name,
|
|
821
787
|
placeholder: e.placeholder,
|
|
822
788
|
required: e.required,
|
|
823
789
|
disabled: e.disabled,
|
|
824
790
|
maxlength: e.maxLength,
|
|
825
791
|
value: e.modelValue,
|
|
826
|
-
onInput: r[0] || (r[0] = (i) => l.$emit("update:modelValue", i.target.value)),
|
|
827
792
|
class: u(
|
|
828
793
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit" : "border"
|
|
829
|
-
)
|
|
794
|
+
),
|
|
795
|
+
onInput: o[0] || (o[0] = (a) => l.$emit("update:modelValue", a.target.value))
|
|
830
796
|
}, null, 42, bt)
|
|
831
797
|
], 8, yt),
|
|
832
798
|
t("div", pt, [
|
|
833
799
|
t("div", null, [
|
|
834
|
-
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (
|
|
800
|
+
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (i(), s("p", $t, " Too many characters. Please make it shorter ")) : m("", !0)
|
|
835
801
|
]),
|
|
836
802
|
t("p", {
|
|
837
803
|
class: u(
|
|
838
804
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit-meter" : ""
|
|
839
805
|
)
|
|
840
|
-
},
|
|
806
|
+
}, r(e.maxLength !== void 0 && e.modelValue !== void 0 && e.maxLength - e.modelValue.length >= 0 ? e.modelValue.length : 0) + " / " + r(e.maxLength), 3)
|
|
841
807
|
])
|
|
842
808
|
]));
|
|
843
809
|
}
|
|
844
810
|
});
|
|
845
|
-
const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-
|
|
811
|
+
const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-05a5f31c"]]), xt = { class: "text-field__wrapper" }, St = ["for"], qt = { key: 0 }, Bt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], It = ["aria-expanded"], Lt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Ct = {
|
|
846
812
|
key: 2,
|
|
847
813
|
class: "search"
|
|
848
|
-
},
|
|
814
|
+
}, Tt = {
|
|
849
815
|
key: 3,
|
|
850
816
|
class: "errorMessage"
|
|
851
|
-
},
|
|
817
|
+
}, At = {
|
|
852
818
|
key: 4,
|
|
853
819
|
class: "helperText"
|
|
854
|
-
},
|
|
820
|
+
}, Vt = /* @__PURE__ */ v({
|
|
855
821
|
__name: "text-field",
|
|
856
822
|
props: {
|
|
857
823
|
type: {
|
|
@@ -910,11 +876,13 @@ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
910
876
|
},
|
|
911
877
|
errorMessage: {
|
|
912
878
|
type: String,
|
|
913
|
-
required: !1
|
|
879
|
+
required: !1,
|
|
880
|
+
default: ""
|
|
914
881
|
},
|
|
915
882
|
helperText: {
|
|
916
883
|
type: String,
|
|
917
|
-
required: !1
|
|
884
|
+
required: !1,
|
|
885
|
+
default: ""
|
|
918
886
|
},
|
|
919
887
|
search: {
|
|
920
888
|
type: Boolean,
|
|
@@ -929,12 +897,12 @@ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
929
897
|
},
|
|
930
898
|
emits: ["update:modelValue"],
|
|
931
899
|
setup(e) {
|
|
932
|
-
const l = w(!0),
|
|
900
|
+
const l = w(!0), o = D(
|
|
933
901
|
() => l.value ? "showPassword" : "hidePassword"
|
|
934
|
-
),
|
|
902
|
+
), a = D(
|
|
935
903
|
() => l.value ? "password" : "text"
|
|
936
904
|
);
|
|
937
|
-
return (n, _) => (
|
|
905
|
+
return (n, _) => (i(), s("div", xt, [
|
|
938
906
|
t("label", {
|
|
939
907
|
for: e.id,
|
|
940
908
|
class: u([
|
|
@@ -942,32 +910,33 @@ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
942
910
|
e.disabled ? "disabled" : "",
|
|
943
911
|
e.search ? "search" : ""
|
|
944
912
|
])
|
|
945
|
-
},
|
|
946
|
-
e.type === "password" ? (
|
|
913
|
+
}, r(e.label), 11, St),
|
|
914
|
+
e.type === "password" ? (i(), s("div", qt, [
|
|
947
915
|
t("input", {
|
|
948
916
|
id: e.id,
|
|
949
|
-
|
|
917
|
+
ref: "passwordField",
|
|
918
|
+
type: a.value,
|
|
950
919
|
value: e.modelValue,
|
|
951
920
|
placeholder: e.placeholder,
|
|
952
921
|
required: e.required,
|
|
953
922
|
disabled: e.disabled,
|
|
954
|
-
onInput: _[0] || (_[0] = (b) => n.$emit("update:modelValue", b.target.value)),
|
|
955
923
|
name: e.fieldName,
|
|
956
|
-
|
|
924
|
+
onInput: _[0] || (_[0] = (p) => n.$emit("update:modelValue", p.target.value))
|
|
957
925
|
}, null, 40, Bt),
|
|
958
926
|
t("i", {
|
|
959
927
|
role: "button",
|
|
960
|
-
class: u([
|
|
961
|
-
onClick: _[1] || (_[1] = (b) => l.value = !l.value),
|
|
928
|
+
class: u([o.value]),
|
|
962
929
|
"aria-controls": "password",
|
|
963
|
-
"aria-expanded": !l.value
|
|
930
|
+
"aria-expanded": !l.value,
|
|
931
|
+
onClick: _[1] || (_[1] = (p) => l.value = !l.value)
|
|
964
932
|
}, null, 10, It)
|
|
965
|
-
])) : (
|
|
933
|
+
])) : (i(), s("input", {
|
|
966
934
|
key: 1,
|
|
935
|
+
id: e.id,
|
|
936
|
+
ref: "textField",
|
|
967
937
|
type: e.type,
|
|
968
938
|
value: e.modelValue,
|
|
969
939
|
placeholder: e.placeholder,
|
|
970
|
-
id: e.id,
|
|
971
940
|
required: e.required,
|
|
972
941
|
class: u([
|
|
973
942
|
e.invalid ? "invalid" : "",
|
|
@@ -975,17 +944,16 @@ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
|
|
|
975
944
|
e.search ? "search" : ""
|
|
976
945
|
]),
|
|
977
946
|
disabled: e.disabled,
|
|
978
|
-
onInput: _[2] || (_[2] = (b) => n.$emit("update:modelValue", b.target.value)),
|
|
979
947
|
name: e.fieldName,
|
|
980
|
-
|
|
981
|
-
}, null, 42,
|
|
982
|
-
e.search ? (
|
|
983
|
-
e.errorMessage ? (
|
|
984
|
-
e.helperText ? (
|
|
948
|
+
onInput: _[2] || (_[2] = (p) => n.$emit("update:modelValue", p.target.value))
|
|
949
|
+
}, null, 42, Lt)),
|
|
950
|
+
e.search ? (i(), s("i", Ct)) : m("", !0),
|
|
951
|
+
e.errorMessage ? (i(), s("strong", Tt, r(e.errorMessage), 1)) : m("", !0),
|
|
952
|
+
e.helperText ? (i(), s("span", At, r(e.helperText), 1)) : m("", !0)
|
|
985
953
|
]));
|
|
986
954
|
}
|
|
987
955
|
});
|
|
988
|
-
const Dt = /* @__PURE__ */ h(
|
|
956
|
+
const Dt = /* @__PURE__ */ h(Vt, [["__scopeId", "data-v-c09f7900"]]), Mt = { class: "video__wrapper" }, Ot = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], zt = ["src", "aria-label", "title", "width", "height"], Ft = /* @__PURE__ */ v({
|
|
989
957
|
__name: "video",
|
|
990
958
|
props: {
|
|
991
959
|
play: {
|
|
@@ -1014,7 +982,10 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
|
|
|
1014
982
|
type: Boolean,
|
|
1015
983
|
default: !0
|
|
1016
984
|
},
|
|
1017
|
-
poster:
|
|
985
|
+
poster: {
|
|
986
|
+
type: String,
|
|
987
|
+
default: ""
|
|
988
|
+
},
|
|
1018
989
|
width: {
|
|
1019
990
|
type: [String, Number],
|
|
1020
991
|
default: "100%"
|
|
@@ -1037,19 +1008,19 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
|
|
|
1037
1008
|
}
|
|
1038
1009
|
},
|
|
1039
1010
|
setup(e, { expose: l }) {
|
|
1040
|
-
const
|
|
1041
|
-
let
|
|
1042
|
-
return
|
|
1043
|
-
|
|
1011
|
+
const o = e;
|
|
1012
|
+
let a = w(null);
|
|
1013
|
+
return re(() => {
|
|
1014
|
+
a.value && (o.play ? a.value.play() : o.play || a.value.pause());
|
|
1044
1015
|
}), l({
|
|
1045
1016
|
resetVideo: () => {
|
|
1046
|
-
|
|
1017
|
+
a.value && (a.value.currentTime = 0, a.value.play());
|
|
1047
1018
|
}
|
|
1048
|
-
}), (_,
|
|
1049
|
-
e.localVideo ? (
|
|
1019
|
+
}), (_, p) => (i(), s("div", Mt, [
|
|
1020
|
+
e.localVideo ? (i(), s("video", {
|
|
1050
1021
|
key: 0,
|
|
1051
1022
|
ref_key: "videoRef",
|
|
1052
|
-
ref:
|
|
1023
|
+
ref: a,
|
|
1053
1024
|
"aria-label": e.ariaLabel,
|
|
1054
1025
|
controls: e.controls,
|
|
1055
1026
|
poster: e.poster,
|
|
@@ -1061,7 +1032,7 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
|
|
|
1061
1032
|
type: "video/mp4",
|
|
1062
1033
|
playsinline: "",
|
|
1063
1034
|
src: e.src
|
|
1064
|
-
}, null, 8, Ot)) : (
|
|
1035
|
+
}, null, 8, Ot)) : (i(), s("iframe", {
|
|
1065
1036
|
key: 1,
|
|
1066
1037
|
src: e.src,
|
|
1067
1038
|
"aria-label": e.ariaLabel,
|
|
@@ -1075,7 +1046,7 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
|
|
|
1075
1046
|
]));
|
|
1076
1047
|
}
|
|
1077
1048
|
});
|
|
1078
|
-
const
|
|
1049
|
+
const U = /* @__PURE__ */ h(Ft, [["__scopeId", "data-v-30720f26"]]), Pt = { class: "address__wrapper" }, Nt = { class: "address__content" }, Et = { class: "address__flag" }, Ht = { class: "address__address" }, Rt = { class: "address__name" }, jt = { key: 0 }, Ut = { class: "address__contact" }, Kt = ["href"], Gt = ["href"], Wt = /* @__PURE__ */ v({
|
|
1079
1050
|
__name: "address",
|
|
1080
1051
|
props: {
|
|
1081
1052
|
name: {
|
|
@@ -1086,19 +1057,22 @@ const K = /* @__PURE__ */ h(Ft, [["__scopeId", "data-v-cc1144b9"]]), Pt = { clas
|
|
|
1086
1057
|
type: String,
|
|
1087
1058
|
required: !0
|
|
1088
1059
|
},
|
|
1089
|
-
|
|
1060
|
+
addressLine1: {
|
|
1090
1061
|
type: String,
|
|
1091
1062
|
required: !0
|
|
1092
1063
|
},
|
|
1093
|
-
|
|
1064
|
+
addressLine2: {
|
|
1094
1065
|
type: String,
|
|
1095
1066
|
required: !0
|
|
1096
1067
|
},
|
|
1097
|
-
|
|
1098
|
-
type: String
|
|
1068
|
+
addressLine3: {
|
|
1069
|
+
type: String,
|
|
1070
|
+
required: !1,
|
|
1071
|
+
default: void 0
|
|
1099
1072
|
},
|
|
1100
|
-
|
|
1101
|
-
type: Array
|
|
1073
|
+
phoneNumbers: {
|
|
1074
|
+
type: Array,
|
|
1075
|
+
required: !0
|
|
1102
1076
|
},
|
|
1103
1077
|
email: {
|
|
1104
1078
|
type: String,
|
|
@@ -1106,41 +1080,42 @@ const K = /* @__PURE__ */ h(Ft, [["__scopeId", "data-v-cc1144b9"]]), Pt = { clas
|
|
|
1106
1080
|
}
|
|
1107
1081
|
},
|
|
1108
1082
|
setup(e) {
|
|
1109
|
-
return (l,
|
|
1110
|
-
t("div",
|
|
1111
|
-
t("div",
|
|
1083
|
+
return (l, o) => (i(), s("div", Pt, [
|
|
1084
|
+
t("div", Nt, [
|
|
1085
|
+
t("div", Et, [
|
|
1112
1086
|
d(l.$slots, "address-flag", {}, void 0, !0)
|
|
1113
1087
|
]),
|
|
1114
|
-
t("div",
|
|
1115
|
-
t("p", Rt,
|
|
1116
|
-
t("p", null,
|
|
1117
|
-
t("p", null,
|
|
1118
|
-
t("p", null,
|
|
1119
|
-
e.
|
|
1088
|
+
t("div", Ht, [
|
|
1089
|
+
t("p", Rt, r(e.name), 1),
|
|
1090
|
+
t("p", null, r(e.company), 1),
|
|
1091
|
+
t("p", null, r(e.addressLine1), 1),
|
|
1092
|
+
t("p", null, r(e.addressLine2), 1),
|
|
1093
|
+
e.addressLine3 ? (i(), s("p", jt, r(e.addressLine3), 1)) : m("", !0)
|
|
1120
1094
|
]),
|
|
1121
|
-
t("div",
|
|
1122
|
-
(
|
|
1095
|
+
t("div", Ut, [
|
|
1096
|
+
(i(!0), s(L, null, C(e.phoneNumbers, (a) => (i(), M(A, {
|
|
1097
|
+
key: a,
|
|
1123
1098
|
underline: "false",
|
|
1124
|
-
|
|
1099
|
+
"link-type": "regular"
|
|
1125
1100
|
}, {
|
|
1126
1101
|
default: $(() => [
|
|
1127
1102
|
t("a", {
|
|
1128
|
-
href: "tel:" +
|
|
1103
|
+
href: "tel:" + a,
|
|
1129
1104
|
class: "address__phone"
|
|
1130
|
-
},
|
|
1105
|
+
}, r(a), 9, Kt)
|
|
1131
1106
|
]),
|
|
1132
1107
|
_: 2
|
|
1133
|
-
}, 1024))),
|
|
1108
|
+
}, 1024))), 128)),
|
|
1134
1109
|
t("a", {
|
|
1135
1110
|
href: "mailto:" + e.email,
|
|
1136
1111
|
class: "address__email"
|
|
1137
|
-
},
|
|
1112
|
+
}, r(e.email), 9, Gt)
|
|
1138
1113
|
])
|
|
1139
1114
|
])
|
|
1140
1115
|
]));
|
|
1141
1116
|
}
|
|
1142
1117
|
});
|
|
1143
|
-
const
|
|
1118
|
+
const Yt = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-dc337ec6"]]), Qt = (e) => (z("data-v-a44fd57d"), e = e(), F(), e), Jt = { class: "bullet-list__wrapper" }, Xt = /* @__PURE__ */ Qt(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), Zt = /* @__PURE__ */ v({
|
|
1144
1119
|
__name: "bullet-list",
|
|
1145
1120
|
props: {
|
|
1146
1121
|
list: {
|
|
@@ -1160,21 +1135,21 @@ const Qt = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-22ea3b79"]]), Yt = (e) =
|
|
|
1160
1135
|
}
|
|
1161
1136
|
},
|
|
1162
1137
|
setup(e) {
|
|
1163
|
-
return (l,
|
|
1138
|
+
return (l, o) => (i(), s("div", Jt, [
|
|
1164
1139
|
t("div", {
|
|
1165
1140
|
class: u(["bullet-list", e.variant])
|
|
1166
1141
|
}, [
|
|
1167
1142
|
t("ul", null, [
|
|
1168
|
-
(
|
|
1143
|
+
(i(!0), s(L, null, C(e.list, (a) => (i(), s("li", { key: a }, [
|
|
1169
1144
|
Xt,
|
|
1170
|
-
j(" " +
|
|
1171
|
-
]))),
|
|
1145
|
+
j(" " + r(a), 1)
|
|
1146
|
+
]))), 128))
|
|
1172
1147
|
])
|
|
1173
1148
|
], 2)
|
|
1174
1149
|
]));
|
|
1175
1150
|
}
|
|
1176
1151
|
});
|
|
1177
|
-
const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-
|
|
1152
|
+
const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a44fd57d"]]), ta = { class: "card__wrapper" }, aa = {
|
|
1178
1153
|
key: 2,
|
|
1179
1154
|
class: "card__label"
|
|
1180
1155
|
}, la = { key: 5 }, ia = /* @__PURE__ */ v({
|
|
@@ -1222,19 +1197,40 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1222
1197
|
type: String,
|
|
1223
1198
|
default: ""
|
|
1224
1199
|
},
|
|
1225
|
-
url:
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1200
|
+
url: {
|
|
1201
|
+
type: String,
|
|
1202
|
+
default: ""
|
|
1203
|
+
},
|
|
1204
|
+
imgSrc: {
|
|
1205
|
+
type: String,
|
|
1206
|
+
default: ""
|
|
1207
|
+
},
|
|
1208
|
+
videoSrc: {
|
|
1209
|
+
type: String,
|
|
1210
|
+
default: ""
|
|
1211
|
+
},
|
|
1212
|
+
arialabel: {
|
|
1213
|
+
type: String,
|
|
1214
|
+
default: ""
|
|
1215
|
+
},
|
|
1216
|
+
poster: {
|
|
1217
|
+
type: String,
|
|
1218
|
+
default: ""
|
|
1219
|
+
},
|
|
1220
|
+
labelText: {
|
|
1221
|
+
type: String,
|
|
1222
|
+
default: ""
|
|
1223
|
+
},
|
|
1224
|
+
alt: {
|
|
1225
|
+
type: String,
|
|
1226
|
+
default: ""
|
|
1227
|
+
}
|
|
1232
1228
|
},
|
|
1233
1229
|
emits: ["clicked"],
|
|
1234
|
-
setup(e
|
|
1235
|
-
const
|
|
1236
|
-
let
|
|
1237
|
-
return (
|
|
1230
|
+
setup(e) {
|
|
1231
|
+
const l = be();
|
|
1232
|
+
let o = w(!1);
|
|
1233
|
+
return (a, n) => (i(), s("div", ta, [
|
|
1238
1234
|
t("div", {
|
|
1239
1235
|
class: u(["card", [
|
|
1240
1236
|
e.theme == "dark" ? "card--dark" : "card--light",
|
|
@@ -1244,12 +1240,12 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1244
1240
|
e.variant == "product" ? "card--product" : "card--article"
|
|
1245
1241
|
]]),
|
|
1246
1242
|
style: te([e.variant == "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
1247
|
-
onMouseover:
|
|
1248
|
-
onMouseout:
|
|
1243
|
+
onMouseover: n[0] || (n[0] = (_) => ie(o) ? o.value = !0 : o = !0),
|
|
1244
|
+
onMouseout: n[1] || (n[1] = (_) => ie(o) ? o.value = !1 : o = !1)
|
|
1249
1245
|
}, [
|
|
1250
|
-
e.mediaType == "image" ? (
|
|
1246
|
+
e.mediaType == "image" ? (i(), M(T, { key: 0 }, {
|
|
1251
1247
|
default: $(() => [
|
|
1252
|
-
d(
|
|
1248
|
+
d(a.$slots, "card-image", ee({
|
|
1253
1249
|
src: e.imgSrc,
|
|
1254
1250
|
height: e.size == "small" ? "186" : e.size == "medium" ? "243" : e.size == "large" ? "335" : "",
|
|
1255
1251
|
width: e.size == "small" ? "298" : e.size == "medium" ? "432" : e.size == "large" ? "596" : "",
|
|
@@ -1259,13 +1255,13 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1259
1255
|
}, { srcset: e.srcSet }))
|
|
1260
1256
|
]),
|
|
1261
1257
|
_: 3
|
|
1262
|
-
})) : (
|
|
1258
|
+
})) : (i(), s("div", {
|
|
1263
1259
|
key: 1,
|
|
1264
|
-
class: u(["video-card__wrapper",
|
|
1260
|
+
class: u(["video-card__wrapper", I(o) == !0 ? "vimeoPlaying" : ""])
|
|
1265
1261
|
}, [
|
|
1266
|
-
|
|
1267
|
-
play:
|
|
1268
|
-
|
|
1262
|
+
b(U, {
|
|
1263
|
+
play: I(o),
|
|
1264
|
+
"local-video": !0,
|
|
1269
1265
|
src: e.videoSrc,
|
|
1270
1266
|
"aria-label": e.arialabel,
|
|
1271
1267
|
controls: !1,
|
|
@@ -1277,22 +1273,22 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
|
|
|
1277
1273
|
muted: !0
|
|
1278
1274
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
1279
1275
|
], 2)),
|
|
1280
|
-
|
|
1281
|
-
d(
|
|
1276
|
+
I(l)["card-label"] ? (i(), s("div", aa, [
|
|
1277
|
+
d(a.$slots, "card-label")
|
|
1282
1278
|
])) : m("", !0),
|
|
1283
|
-
e.variant === "product" ? (
|
|
1279
|
+
e.variant === "product" ? (i(), s("h3", {
|
|
1284
1280
|
key: 3,
|
|
1285
1281
|
class: u(e.theme == "dark" ? "regular-dark" : "regular-blue")
|
|
1286
|
-
},
|
|
1282
|
+
}, r(e.headline), 3)) : (i(), s("h3", {
|
|
1287
1283
|
key: 4,
|
|
1288
1284
|
class: u(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
|
|
1289
|
-
},
|
|
1290
|
-
e.variant == "product" ? (
|
|
1285
|
+
}, r(e.headline), 3)),
|
|
1286
|
+
e.variant == "product" ? (i(), s("p", la, r(e.paragraph), 1)) : m("", !0)
|
|
1291
1287
|
], 38)
|
|
1292
1288
|
]));
|
|
1293
1289
|
}
|
|
1294
1290
|
});
|
|
1295
|
-
const sa = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-
|
|
1291
|
+
const sa = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-02d9cef5"]]), oa = (e) => (z("data-v-1a97c019"), e = e(), F(), e), ra = { class: "event__wrapper" }, na = { class: "event__headline" }, da = { class: "event__date-location" }, ca = /* @__PURE__ */ oa(() => /* @__PURE__ */ t("br", null, null, -1)), ua = { class: "event__exhibitor" }, _a = /* @__PURE__ */ v({
|
|
1296
1292
|
__name: "event-card",
|
|
1297
1293
|
props: {
|
|
1298
1294
|
eventType: {
|
|
@@ -1317,22 +1313,22 @@ const sa = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-05c8a5c4"]]), ra = (e) =
|
|
|
1317
1313
|
}
|
|
1318
1314
|
},
|
|
1319
1315
|
setup(e) {
|
|
1320
|
-
return (l,
|
|
1321
|
-
|
|
1316
|
+
return (l, o) => (i(), s("div", ra, [
|
|
1317
|
+
b(G, {
|
|
1322
1318
|
"label-dark": !1,
|
|
1323
1319
|
text: e.eventType ? e.eventType : ""
|
|
1324
1320
|
}, null, 8, ["text"]),
|
|
1325
|
-
t("div", na,
|
|
1321
|
+
t("div", na, r(e.headline), 1),
|
|
1326
1322
|
t("div", da, [
|
|
1327
|
-
j(
|
|
1323
|
+
j(r(e.dateTime), 1),
|
|
1328
1324
|
ca,
|
|
1329
|
-
j(
|
|
1325
|
+
j(r(e.location), 1)
|
|
1330
1326
|
]),
|
|
1331
|
-
t("div", ua, "Exhibitor: " +
|
|
1327
|
+
t("div", ua, "Exhibitor: " + r(e.exhibitor), 1)
|
|
1332
1328
|
]));
|
|
1333
1329
|
}
|
|
1334
1330
|
});
|
|
1335
|
-
const ha = /* @__PURE__ */ h(_a, [["__scopeId", "data-v-
|
|
1331
|
+
const ha = /* @__PURE__ */ h(_a, [["__scopeId", "data-v-1a97c019"]]), va = { class: "text__wrapper" }, ma = { class: "text__headline" }, fa = { class: "text__paragraph" }, ga = /* @__PURE__ */ v({
|
|
1336
1332
|
__name: "text-card",
|
|
1337
1333
|
props: {
|
|
1338
1334
|
label: {
|
|
@@ -1349,55 +1345,64 @@ const ha = /* @__PURE__ */ h(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { cla
|
|
|
1349
1345
|
}
|
|
1350
1346
|
},
|
|
1351
1347
|
setup(e) {
|
|
1352
|
-
return (l,
|
|
1353
|
-
|
|
1348
|
+
return (l, o) => (i(), s("div", va, [
|
|
1349
|
+
b(G, {
|
|
1354
1350
|
"label-dark": !1,
|
|
1355
1351
|
text: e.label ? e.label : ""
|
|
1356
1352
|
}, null, 8, ["text"]),
|
|
1357
|
-
t("div", ma,
|
|
1353
|
+
t("div", ma, r(e.headline), 1),
|
|
1358
1354
|
t("div", fa, [
|
|
1359
|
-
t("p", null,
|
|
1355
|
+
t("p", null, r(e.paragraph), 1)
|
|
1360
1356
|
])
|
|
1361
1357
|
]));
|
|
1362
1358
|
}
|
|
1363
1359
|
});
|
|
1364
|
-
const ya = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-
|
|
1360
|
+
const ya = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-ebdea819"]]), ba = { class: "facts__wrapper" }, pa = { class: "facts__content" }, $a = { class: "facts__headline" }, ka = { class: "facts" }, wa = { class: "fact__value" }, xa = { class: "fact__metric" }, Sa = {
|
|
1365
1361
|
key: 0,
|
|
1366
1362
|
class: "facts__link"
|
|
1367
|
-
},
|
|
1363
|
+
}, qa = /* @__PURE__ */ v({
|
|
1368
1364
|
__name: "facts",
|
|
1369
1365
|
props: {
|
|
1370
|
-
headline: {
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1366
|
+
headline: { default: "" },
|
|
1367
|
+
facts: { default: () => [
|
|
1368
|
+
{
|
|
1369
|
+
value: "",
|
|
1370
|
+
metric: ""
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
value: "",
|
|
1374
|
+
metric: ""
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
value: "",
|
|
1378
|
+
metric: ""
|
|
1378
1379
|
}
|
|
1379
|
-
},
|
|
1380
|
-
link: {
|
|
1381
|
-
|
|
1382
|
-
|
|
1380
|
+
] },
|
|
1381
|
+
link: { default: () => ({
|
|
1382
|
+
title: "",
|
|
1383
|
+
url: ""
|
|
1384
|
+
}) }
|
|
1383
1385
|
},
|
|
1384
1386
|
setup(e) {
|
|
1385
|
-
return (l,
|
|
1387
|
+
return (l, o) => (i(), s("div", ba, [
|
|
1386
1388
|
t("div", pa, [
|
|
1387
|
-
t("h2", $a,
|
|
1389
|
+
t("h2", $a, r(l.headline), 1),
|
|
1388
1390
|
t("div", ka, [
|
|
1389
|
-
(
|
|
1390
|
-
|
|
1391
|
-
|
|
1391
|
+
(i(!0), s(L, null, C(l.facts, (a) => (i(), s("div", {
|
|
1392
|
+
key: a.value + a.metric,
|
|
1393
|
+
class: "fact"
|
|
1394
|
+
}, [
|
|
1395
|
+
t("div", wa, [
|
|
1396
|
+
t("span", null, r(a.value), 1)
|
|
1392
1397
|
]),
|
|
1393
|
-
t("div",
|
|
1394
|
-
t("span", null,
|
|
1398
|
+
t("div", xa, [
|
|
1399
|
+
t("span", null, r(a.metric), 1)
|
|
1395
1400
|
])
|
|
1396
|
-
]))),
|
|
1401
|
+
]))), 128))
|
|
1397
1402
|
]),
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1403
|
+
l.link ? (i(), s("div", Sa, [
|
|
1404
|
+
b(A, {
|
|
1405
|
+
"link-type": "regular_light",
|
|
1401
1406
|
arrow: ""
|
|
1402
1407
|
}, {
|
|
1403
1408
|
default: $(() => [
|
|
@@ -1410,20 +1415,22 @@ const ya = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-b07d352b"]]), ba = { cla
|
|
|
1410
1415
|
]));
|
|
1411
1416
|
}
|
|
1412
1417
|
});
|
|
1413
|
-
const
|
|
1418
|
+
const Ba = /* @__PURE__ */ h(qa, [["__scopeId", "data-v-d2b231d4"]]), Ia = { class: "features__wrapper" }, La = { class: "features__content" }, Ca = {
|
|
1414
1419
|
key: 0,
|
|
1415
1420
|
class: "features__headline"
|
|
1416
|
-
},
|
|
1421
|
+
}, Ta = {
|
|
1417
1422
|
key: 1,
|
|
1418
1423
|
class: "features__body"
|
|
1419
|
-
}, Aa = { class: "
|
|
1424
|
+
}, Aa = { class: "element__headline" }, Va = { class: "element__body" }, Da = /* @__PURE__ */ v({
|
|
1420
1425
|
__name: "features",
|
|
1421
1426
|
props: {
|
|
1422
1427
|
headline: {
|
|
1423
|
-
type: String
|
|
1428
|
+
type: String,
|
|
1429
|
+
default: ""
|
|
1424
1430
|
},
|
|
1425
1431
|
body: {
|
|
1426
|
-
type: String
|
|
1432
|
+
type: String,
|
|
1433
|
+
default: ""
|
|
1427
1434
|
},
|
|
1428
1435
|
elements: {
|
|
1429
1436
|
type: Array,
|
|
@@ -1434,38 +1441,41 @@ const Ia = /* @__PURE__ */ h(Ba, [["__scopeId", "data-v-97e48550"]]), Ta = { cla
|
|
|
1434
1441
|
}
|
|
1435
1442
|
},
|
|
1436
1443
|
setup(e) {
|
|
1437
|
-
return (l,
|
|
1444
|
+
return (l, o) => (i(), s("div", Ia, [
|
|
1438
1445
|
t("div", La, [
|
|
1439
|
-
e.headline ? (
|
|
1440
|
-
t("h2", null,
|
|
1446
|
+
e.headline ? (i(), s("div", Ca, [
|
|
1447
|
+
t("h2", null, r(e.headline), 1)
|
|
1441
1448
|
])) : m("", !0),
|
|
1442
|
-
e.body ? (
|
|
1443
|
-
t("p", null,
|
|
1449
|
+
e.body ? (i(), s("div", Ta, [
|
|
1450
|
+
t("p", null, r(e.body), 1)
|
|
1444
1451
|
])) : m("", !0),
|
|
1445
1452
|
t("div", {
|
|
1446
1453
|
class: u(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
|
|
1447
1454
|
}, [
|
|
1448
|
-
(
|
|
1449
|
-
|
|
1455
|
+
(i(!0), s(L, null, C(e.elements, (a) => (i(), s("div", {
|
|
1456
|
+
key: a.headline,
|
|
1457
|
+
class: "features__element"
|
|
1458
|
+
}, [
|
|
1459
|
+
b(T, { class: "element__icon" }, {
|
|
1450
1460
|
default: $(() => [
|
|
1451
|
-
d(l.$slots, "features-icon",
|
|
1452
|
-
src:
|
|
1461
|
+
d(l.$slots, "features-icon", V(O({
|
|
1462
|
+
src: a.icon.src,
|
|
1453
1463
|
height: 30,
|
|
1454
1464
|
width: 30,
|
|
1455
|
-
alt:
|
|
1465
|
+
alt: a.icon.alt
|
|
1456
1466
|
})), void 0, !0)
|
|
1457
1467
|
]),
|
|
1458
1468
|
_: 2
|
|
1459
1469
|
}, 1024),
|
|
1460
|
-
t("p",
|
|
1461
|
-
t("p",
|
|
1462
|
-
]))),
|
|
1470
|
+
t("p", Aa, r(a.headline), 1),
|
|
1471
|
+
t("p", Va, r(a.body), 1)
|
|
1472
|
+
]))), 128))
|
|
1463
1473
|
], 2)
|
|
1464
1474
|
])
|
|
1465
1475
|
]));
|
|
1466
1476
|
}
|
|
1467
1477
|
});
|
|
1468
|
-
const
|
|
1478
|
+
const Ma = /* @__PURE__ */ h(Da, [["__scopeId", "data-v-08d8509e"]]), Oa = { class: "form__wrapper" }, za = { class: "form__content" }, Fa = { class: "form__information" }, Pa = { class: "form__headline" }, Na = { class: "form__body" }, Ea = { class: "form__script" }, Ha = /* @__PURE__ */ v({
|
|
1469
1479
|
__name: "form-script",
|
|
1470
1480
|
props: {
|
|
1471
1481
|
headline: {
|
|
@@ -1474,27 +1484,28 @@ const za = /* @__PURE__ */ h(Oa, [["__scopeId", "data-v-35a864e7"]]), Fa = { cla
|
|
|
1474
1484
|
}
|
|
1475
1485
|
},
|
|
1476
1486
|
setup(e) {
|
|
1477
|
-
return (l,
|
|
1478
|
-
t("div",
|
|
1479
|
-
t("div",
|
|
1480
|
-
t("h2",
|
|
1487
|
+
return (l, o) => (i(), s("div", Oa, [
|
|
1488
|
+
t("div", za, [
|
|
1489
|
+
t("div", Fa, [
|
|
1490
|
+
t("h2", Pa, r(e.headline), 1),
|
|
1481
1491
|
t("div", Na, [
|
|
1482
1492
|
d(l.$slots, "form-body", {}, void 0, !0)
|
|
1483
1493
|
])
|
|
1484
1494
|
]),
|
|
1485
|
-
t("div",
|
|
1495
|
+
t("div", Ea, [
|
|
1486
1496
|
d(l.$slots, "form-script", {}, void 0, !0)
|
|
1487
1497
|
])
|
|
1488
1498
|
])
|
|
1489
1499
|
]));
|
|
1490
1500
|
}
|
|
1491
1501
|
});
|
|
1492
|
-
const
|
|
1502
|
+
const Ra = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-55d9c2fd"]]), ja = { class: "image__wrapper" }, Ua = { class: "image__content" }, Ka = { class: "image__image" }, Ga = { class: "image__caption" }, Wa = /* @__PURE__ */ v({
|
|
1493
1503
|
__name: "image",
|
|
1494
1504
|
props: {
|
|
1495
1505
|
caption: {
|
|
1496
1506
|
type: String,
|
|
1497
|
-
required: !1
|
|
1507
|
+
required: !1,
|
|
1508
|
+
default: ""
|
|
1498
1509
|
},
|
|
1499
1510
|
src: {
|
|
1500
1511
|
type: String,
|
|
@@ -1506,31 +1517,31 @@ const Ka = /* @__PURE__ */ h(ja, [["__scopeId", "data-v-f4741c9b"]]), Ua = { cla
|
|
|
1506
1517
|
}
|
|
1507
1518
|
},
|
|
1508
1519
|
setup(e) {
|
|
1509
|
-
return (l,
|
|
1510
|
-
t("div",
|
|
1511
|
-
t("div",
|
|
1512
|
-
|
|
1520
|
+
return (l, o) => (i(), s("div", ja, [
|
|
1521
|
+
t("div", Ua, [
|
|
1522
|
+
t("div", Ka, [
|
|
1523
|
+
b(T, null, {
|
|
1513
1524
|
default: $(() => [
|
|
1514
|
-
d(l.$slots, "image",
|
|
1525
|
+
d(l.$slots, "image", V(O({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1515
1526
|
]),
|
|
1516
1527
|
_: 3
|
|
1517
1528
|
})
|
|
1518
1529
|
]),
|
|
1519
|
-
t("p",
|
|
1530
|
+
t("p", Ga, r(e.caption), 1)
|
|
1520
1531
|
])
|
|
1521
1532
|
]));
|
|
1522
1533
|
}
|
|
1523
1534
|
});
|
|
1524
|
-
const
|
|
1535
|
+
const Ya = /* @__PURE__ */ h(Wa, [["__scopeId", "data-v-48563003"]]), Qa = { class: "gallery__large" }, Ja = {
|
|
1525
1536
|
key: 0,
|
|
1526
1537
|
class: "image image--large"
|
|
1527
|
-
},
|
|
1538
|
+
}, Xa = {
|
|
1528
1539
|
key: 1,
|
|
1529
1540
|
class: "video"
|
|
1530
|
-
},
|
|
1541
|
+
}, Za = {
|
|
1531
1542
|
key: 0,
|
|
1532
1543
|
class: "body"
|
|
1533
|
-
},
|
|
1544
|
+
}, el = /* @__PURE__ */ v({
|
|
1534
1545
|
__name: "image-gallery",
|
|
1535
1546
|
props: {
|
|
1536
1547
|
mediaLarge: {
|
|
@@ -1550,7 +1561,8 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
|
|
|
1550
1561
|
},
|
|
1551
1562
|
body: {
|
|
1552
1563
|
type: String,
|
|
1553
|
-
required: !1
|
|
1564
|
+
required: !1,
|
|
1565
|
+
default: ""
|
|
1554
1566
|
},
|
|
1555
1567
|
flipHorizontal: {
|
|
1556
1568
|
type: Boolean,
|
|
@@ -1569,7 +1581,7 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
|
|
|
1569
1581
|
}
|
|
1570
1582
|
},
|
|
1571
1583
|
setup(e) {
|
|
1572
|
-
return (l,
|
|
1584
|
+
return (l, o) => (i(), s("div", {
|
|
1573
1585
|
class: u([
|
|
1574
1586
|
"gallery__wrapper",
|
|
1575
1587
|
e.bgColor === "light" ? "gallery__wrapper--light" : e.bgColor === "dark" ? ["gallery__wrapper--dark", "mirsaic--dark"] : ""
|
|
@@ -1581,11 +1593,11 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
|
|
|
1581
1593
|
e.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1582
1594
|
])
|
|
1583
1595
|
}, [
|
|
1584
|
-
t("div",
|
|
1585
|
-
e.mediaLarge && e.mediaType === "image" ? (
|
|
1586
|
-
|
|
1596
|
+
t("div", Qa, [
|
|
1597
|
+
e.mediaLarge && e.mediaType === "image" ? (i(), s("div", Ja, [
|
|
1598
|
+
b(T, null, {
|
|
1587
1599
|
default: $(() => [
|
|
1588
|
-
d(l.$slots, "image-large",
|
|
1600
|
+
d(l.$slots, "image-large", V(O({
|
|
1589
1601
|
width: 617,
|
|
1590
1602
|
height: 530,
|
|
1591
1603
|
src: e.mediaLarge.src,
|
|
@@ -1595,11 +1607,11 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
|
|
|
1595
1607
|
_: 3
|
|
1596
1608
|
})
|
|
1597
1609
|
])) : m("", !0),
|
|
1598
|
-
e.mediaLarge && e.mediaType === "video" ? (
|
|
1599
|
-
|
|
1610
|
+
e.mediaLarge && e.mediaType === "video" ? (i(), s("div", Xa, [
|
|
1611
|
+
b(U, {
|
|
1600
1612
|
src: e.mediaLarge.src,
|
|
1601
|
-
|
|
1602
|
-
|
|
1613
|
+
"local-video": "",
|
|
1614
|
+
"aria-label": e.mediaLarge.alt,
|
|
1603
1615
|
controls: !1,
|
|
1604
1616
|
height: "530",
|
|
1605
1617
|
width: "617",
|
|
@@ -1607,7 +1619,7 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
|
|
|
1607
1619
|
loop: !0,
|
|
1608
1620
|
muted: !0,
|
|
1609
1621
|
play: !0
|
|
1610
|
-
}, null, 8, ["src", "
|
|
1622
|
+
}, null, 8, ["src", "aria-label"])
|
|
1611
1623
|
])) : m("", !0)
|
|
1612
1624
|
]),
|
|
1613
1625
|
t("div", {
|
|
@@ -1617,28 +1629,31 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
|
|
|
1617
1629
|
e.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1618
1630
|
])
|
|
1619
1631
|
}, [
|
|
1620
|
-
(
|
|
1621
|
-
|
|
1632
|
+
(i(!0), s(L, null, C(e.mediaSmall, (a) => (i(), s("div", {
|
|
1633
|
+
key: a.src + a.alt,
|
|
1634
|
+
class: "image image--small"
|
|
1635
|
+
}, [
|
|
1636
|
+
b(T, null, {
|
|
1622
1637
|
default: $(() => [
|
|
1623
|
-
d(l.$slots, "image-small",
|
|
1638
|
+
d(l.$slots, "image-small", V(O({
|
|
1624
1639
|
width: 328,
|
|
1625
1640
|
height: 246,
|
|
1626
|
-
src:
|
|
1627
|
-
alt:
|
|
1641
|
+
src: a.src,
|
|
1642
|
+
alt: a.alt
|
|
1628
1643
|
})))
|
|
1629
1644
|
]),
|
|
1630
1645
|
_: 2
|
|
1631
1646
|
}, 1024)
|
|
1632
|
-
]))),
|
|
1633
|
-
e.mediaSmall.length < 2 ? (
|
|
1634
|
-
t("p", null,
|
|
1647
|
+
]))), 128)),
|
|
1648
|
+
e.mediaSmall.length < 2 ? (i(), s("div", Za, [
|
|
1649
|
+
t("p", null, r(e.body), 1)
|
|
1635
1650
|
])) : m("", !0)
|
|
1636
1651
|
], 6)
|
|
1637
1652
|
], 2)
|
|
1638
1653
|
], 2));
|
|
1639
1654
|
}
|
|
1640
1655
|
});
|
|
1641
|
-
const
|
|
1656
|
+
const tl = /* @__PURE__ */ h(el, [["__scopeId", "data-v-4afd3b2e"]]), al = { class: "headline__wrapper" }, ll = { class: "headline__h1" }, il = /* @__PURE__ */ v({
|
|
1642
1657
|
__name: "headline",
|
|
1643
1658
|
props: {
|
|
1644
1659
|
headline: {
|
|
@@ -1655,7 +1670,7 @@ const il = /* @__PURE__ */ h(ll, [["__scopeId", "data-v-55b17073"]]), sl = { cla
|
|
|
1655
1670
|
}
|
|
1656
1671
|
},
|
|
1657
1672
|
setup(e) {
|
|
1658
|
-
return (l,
|
|
1673
|
+
return (l, o) => (i(), s("div", al, [
|
|
1659
1674
|
t("div", {
|
|
1660
1675
|
class: u({
|
|
1661
1676
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
@@ -1664,12 +1679,12 @@ const il = /* @__PURE__ */ h(ll, [["__scopeId", "data-v-55b17073"]]), sl = { cla
|
|
|
1664
1679
|
"headline__content--default": !e.article && !e.subMenu
|
|
1665
1680
|
})
|
|
1666
1681
|
}, [
|
|
1667
|
-
t("h1",
|
|
1682
|
+
t("h1", ll, r(e.headline), 1)
|
|
1668
1683
|
], 2)
|
|
1669
1684
|
]));
|
|
1670
1685
|
}
|
|
1671
1686
|
});
|
|
1672
|
-
const
|
|
1687
|
+
const sl = /* @__PURE__ */ h(il, [["__scopeId", "data-v-080238bd"]]), ol = (e) => (z("data-v-ad805b9b"), e = e(), F(), e), rl = { class: "hero__wrapper" }, nl = { class: "hero__content" }, dl = { class: "hero__top" }, cl = { class: "hero__elements" }, ul = { class: "hero__headline" }, _l = { class: "hero__link" }, hl = { class: "hero__video" }, vl = /* @__PURE__ */ ol(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), ml = /* @__PURE__ */ v({
|
|
1673
1688
|
__name: "hero",
|
|
1674
1689
|
props: {
|
|
1675
1690
|
headline: {
|
|
@@ -1682,16 +1697,16 @@ const nl = /* @__PURE__ */ h(ol, [["__scopeId", "data-v-080238bd"]]), dl = (e) =
|
|
|
1682
1697
|
}
|
|
1683
1698
|
},
|
|
1684
1699
|
setup(e) {
|
|
1685
|
-
return (l,
|
|
1686
|
-
t("div",
|
|
1687
|
-
t("div",
|
|
1688
|
-
t("div",
|
|
1689
|
-
t("div",
|
|
1690
|
-
t("h1", null,
|
|
1700
|
+
return (l, o) => (i(), s("div", rl, [
|
|
1701
|
+
t("div", nl, [
|
|
1702
|
+
t("div", dl, [
|
|
1703
|
+
t("div", cl, [
|
|
1704
|
+
t("div", ul, [
|
|
1705
|
+
t("h1", null, r(e.headline), 1)
|
|
1691
1706
|
]),
|
|
1692
|
-
t("div",
|
|
1693
|
-
|
|
1694
|
-
|
|
1707
|
+
t("div", _l, [
|
|
1708
|
+
b(A, {
|
|
1709
|
+
"link-type": "regular_light",
|
|
1695
1710
|
arrow: ""
|
|
1696
1711
|
}, {
|
|
1697
1712
|
default: $(() => [
|
|
@@ -1702,35 +1717,37 @@ const nl = /* @__PURE__ */ h(ol, [["__scopeId", "data-v-080238bd"]]), dl = (e) =
|
|
|
1702
1717
|
])
|
|
1703
1718
|
])
|
|
1704
1719
|
]),
|
|
1705
|
-
t("div",
|
|
1706
|
-
|
|
1707
|
-
|
|
1720
|
+
t("div", hl, [
|
|
1721
|
+
vl,
|
|
1722
|
+
b(U, {
|
|
1708
1723
|
src: e.video.src,
|
|
1709
|
-
|
|
1710
|
-
|
|
1724
|
+
"local-video": "",
|
|
1725
|
+
"aria-label": e.video.alt,
|
|
1711
1726
|
controls: !1,
|
|
1712
1727
|
autoplay: !0,
|
|
1713
1728
|
loop: !0,
|
|
1714
1729
|
muted: !0,
|
|
1715
1730
|
play: !0,
|
|
1716
1731
|
poster: e.video.poster
|
|
1717
|
-
}, null, 8, ["src", "
|
|
1732
|
+
}, null, 8, ["src", "aria-label", "poster"])
|
|
1718
1733
|
])
|
|
1719
1734
|
])
|
|
1720
1735
|
]));
|
|
1721
1736
|
}
|
|
1722
1737
|
});
|
|
1723
|
-
const
|
|
1738
|
+
const fl = /* @__PURE__ */ h(ml, [["__scopeId", "data-v-ad805b9b"]]), gl = { class: "logo-wall__wrapper" }, yl = { class: "logo-wall__content" }, bl = {
|
|
1724
1739
|
key: 0,
|
|
1725
1740
|
class: "logo-wall__text"
|
|
1726
|
-
},
|
|
1741
|
+
}, pl = { key: 0 }, $l = { key: 1 }, kl = { class: "logo-wall__logos" }, wl = { class: "logo-wall__link" }, xl = /* @__PURE__ */ v({
|
|
1727
1742
|
__name: "logo-wall",
|
|
1728
1743
|
props: {
|
|
1729
1744
|
headline: {
|
|
1730
|
-
type: String
|
|
1745
|
+
type: String,
|
|
1746
|
+
default: ""
|
|
1731
1747
|
},
|
|
1732
1748
|
body: {
|
|
1733
|
-
type: String
|
|
1749
|
+
type: String,
|
|
1750
|
+
default: ""
|
|
1734
1751
|
},
|
|
1735
1752
|
logos: {
|
|
1736
1753
|
type: Array,
|
|
@@ -1739,30 +1756,33 @@ const bl = /* @__PURE__ */ h(yl, [["__scopeId", "data-v-de757e46"]]), pl = { cla
|
|
|
1739
1756
|
}
|
|
1740
1757
|
},
|
|
1741
1758
|
setup(e) {
|
|
1742
|
-
return (l,
|
|
1743
|
-
t("div",
|
|
1744
|
-
e.headline || e.body ? (
|
|
1745
|
-
e.headline ? (
|
|
1746
|
-
e.body ? (
|
|
1759
|
+
return (l, o) => (i(), s("div", gl, [
|
|
1760
|
+
t("div", yl, [
|
|
1761
|
+
e.headline || e.body ? (i(), s("div", bl, [
|
|
1762
|
+
e.headline ? (i(), s("h2", pl, r(e.headline), 1)) : m("", !0),
|
|
1763
|
+
e.body ? (i(), s("p", $l, r(e.body), 1)) : m("", !0)
|
|
1747
1764
|
])) : m("", !0),
|
|
1748
|
-
t("div",
|
|
1749
|
-
(
|
|
1750
|
-
|
|
1765
|
+
t("div", kl, [
|
|
1766
|
+
(i(!0), s(L, null, C(e.logos, (a) => (i(), s("div", {
|
|
1767
|
+
key: a.src + a.alt,
|
|
1768
|
+
class: "logo-wall__logo"
|
|
1769
|
+
}, [
|
|
1770
|
+
b(T, null, {
|
|
1751
1771
|
default: $(() => [
|
|
1752
|
-
d(l.$slots, "logo-wall-logo",
|
|
1772
|
+
d(l.$slots, "logo-wall-logo", V(O({
|
|
1753
1773
|
width: 130,
|
|
1754
1774
|
height: 130,
|
|
1755
|
-
src:
|
|
1756
|
-
alt:
|
|
1775
|
+
src: a.src,
|
|
1776
|
+
alt: a.alt
|
|
1757
1777
|
})), void 0, !0)
|
|
1758
1778
|
]),
|
|
1759
1779
|
_: 2
|
|
1760
1780
|
}, 1024)
|
|
1761
|
-
]))),
|
|
1781
|
+
]))), 128))
|
|
1762
1782
|
]),
|
|
1763
|
-
t("div",
|
|
1764
|
-
|
|
1765
|
-
|
|
1783
|
+
t("div", wl, [
|
|
1784
|
+
b(A, {
|
|
1785
|
+
"link-type": "regular_light",
|
|
1766
1786
|
arrow: !0
|
|
1767
1787
|
}, {
|
|
1768
1788
|
default: $(() => [
|
|
@@ -1775,7 +1795,7 @@ const bl = /* @__PURE__ */ h(yl, [["__scopeId", "data-v-de757e46"]]), pl = { cla
|
|
|
1775
1795
|
]));
|
|
1776
1796
|
}
|
|
1777
1797
|
});
|
|
1778
|
-
const
|
|
1798
|
+
const Sl = /* @__PURE__ */ h(xl, [["__scopeId", "data-v-a8afd396"]]), ql = { class: "micro-stories__splide" }, Bl = /* @__PURE__ */ v({
|
|
1779
1799
|
__name: "micro-stories",
|
|
1780
1800
|
props: {
|
|
1781
1801
|
stories: {
|
|
@@ -1800,28 +1820,28 @@ const Tl = /* @__PURE__ */ h(Il, [["__scopeId", "data-v-299e5b4b"]]), Ll = { cla
|
|
|
1800
1820
|
}
|
|
1801
1821
|
},
|
|
1802
1822
|
setup(e) {
|
|
1803
|
-
return (l,
|
|
1823
|
+
return (l, o) => (i(), s("div", {
|
|
1804
1824
|
class: u([
|
|
1805
1825
|
"micro-stories__wrapper",
|
|
1806
1826
|
e.bgColor == "white" ? "micro-stories__wrapper--white" : e.bgColor == "dark" ? "micro-stories__wrapper--dark" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
|
|
1807
1827
|
])
|
|
1808
1828
|
}, [
|
|
1809
|
-
t("div",
|
|
1829
|
+
t("div", ql, [
|
|
1810
1830
|
d(l.$slots, "micro-stories-slides")
|
|
1811
1831
|
]),
|
|
1812
1832
|
d(l.$slots, "micro-stories-controls")
|
|
1813
1833
|
], 2));
|
|
1814
1834
|
}
|
|
1815
1835
|
});
|
|
1816
|
-
const
|
|
1817
|
-
function
|
|
1818
|
-
return
|
|
1819
|
-
t("div",
|
|
1836
|
+
const Il = {}, Ll = { class: "policy__wrapper" }, Cl = { class: "policy__content" };
|
|
1837
|
+
function Tl(e, l) {
|
|
1838
|
+
return i(), s("div", Ll, [
|
|
1839
|
+
t("div", Cl, [
|
|
1820
1840
|
d(e.$slots, "default", {}, void 0, !0)
|
|
1821
1841
|
])
|
|
1822
1842
|
]);
|
|
1823
1843
|
}
|
|
1824
|
-
const
|
|
1844
|
+
const Al = /* @__PURE__ */ h(Il, [["render", Tl], ["__scopeId", "data-v-8765ee0b"]]), Vl = { class: "product-hero__wrapper" }, Dl = { class: "product-hero__content" }, Ml = { class: "product-hero__headline" }, Ol = { class: "product-hero__video" }, zl = /* @__PURE__ */ v({
|
|
1825
1845
|
__name: "product-hero",
|
|
1826
1846
|
props: {
|
|
1827
1847
|
headline: {
|
|
@@ -1846,40 +1866,42 @@ const Ol = /* @__PURE__ */ h(Vl, [["render", Ml], ["__scopeId", "data-v-4ef880d9
|
|
|
1846
1866
|
}
|
|
1847
1867
|
},
|
|
1848
1868
|
setup(e) {
|
|
1849
|
-
return (l,
|
|
1850
|
-
t("div",
|
|
1851
|
-
t("div",
|
|
1852
|
-
t("h1", null,
|
|
1869
|
+
return (l, o) => (i(), s("div", Vl, [
|
|
1870
|
+
t("div", Dl, [
|
|
1871
|
+
t("div", Ml, [
|
|
1872
|
+
t("h1", null, r(e.headline), 1)
|
|
1853
1873
|
]),
|
|
1854
|
-
t("div",
|
|
1855
|
-
|
|
1874
|
+
t("div", Ol, [
|
|
1875
|
+
b(U, {
|
|
1856
1876
|
play: !0,
|
|
1857
|
-
|
|
1877
|
+
"local-video": !0,
|
|
1858
1878
|
src: e.videoSrc,
|
|
1859
|
-
|
|
1879
|
+
"aria-label": e.ariaLabel,
|
|
1860
1880
|
controls: !1,
|
|
1861
1881
|
poster: e.imgSrc,
|
|
1862
1882
|
autoplay: !0,
|
|
1863
1883
|
loop: !0,
|
|
1864
1884
|
muted: !0
|
|
1865
|
-
}, null, 8, ["src", "
|
|
1885
|
+
}, null, 8, ["src", "aria-label", "poster"])
|
|
1866
1886
|
])
|
|
1867
1887
|
])
|
|
1868
1888
|
]));
|
|
1869
1889
|
}
|
|
1870
1890
|
});
|
|
1871
|
-
const
|
|
1891
|
+
const Fl = /* @__PURE__ */ h(zl, [["__scopeId", "data-v-4272034e"]]), Pl = { class: "promo__content" }, Nl = /* @__PURE__ */ v({
|
|
1872
1892
|
__name: "promo",
|
|
1873
1893
|
props: {
|
|
1874
1894
|
label: {
|
|
1875
|
-
type: String
|
|
1895
|
+
type: String,
|
|
1896
|
+
default: ""
|
|
1876
1897
|
},
|
|
1877
1898
|
headline: {
|
|
1878
1899
|
type: String,
|
|
1879
1900
|
required: !0
|
|
1880
1901
|
},
|
|
1881
1902
|
linkText: {
|
|
1882
|
-
type: String
|
|
1903
|
+
type: String,
|
|
1904
|
+
default: ""
|
|
1883
1905
|
},
|
|
1884
1906
|
mediaType: {
|
|
1885
1907
|
type: String,
|
|
@@ -1916,46 +1938,46 @@ const Nl = /* @__PURE__ */ h(Hl, [["__scopeId", "data-v-2ca17b92"]]), Rl = { cla
|
|
|
1916
1938
|
}
|
|
1917
1939
|
},
|
|
1918
1940
|
setup(e) {
|
|
1919
|
-
return (l,
|
|
1941
|
+
return (l, o) => (i(), s("div", {
|
|
1920
1942
|
class: u([
|
|
1921
1943
|
"promo__wrapper",
|
|
1922
1944
|
e.variant === "dark" ? "promo__wrapper--dark" : e.variant === "light" ? "promo__wrapper--light" : "promo__wrapper--default",
|
|
1923
1945
|
e.teaser ? "promo__wrapper--teaser" : ""
|
|
1924
1946
|
])
|
|
1925
1947
|
}, [
|
|
1926
|
-
t("div",
|
|
1927
|
-
e.mediaType === "image" ? (
|
|
1948
|
+
t("div", Pl, [
|
|
1949
|
+
e.mediaType === "image" ? (i(), s("div", {
|
|
1928
1950
|
key: 0,
|
|
1929
1951
|
class: u([
|
|
1930
1952
|
"promo__image",
|
|
1931
1953
|
e.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1932
1954
|
])
|
|
1933
1955
|
}, [
|
|
1934
|
-
|
|
1956
|
+
b(T, null, {
|
|
1935
1957
|
default: $(() => [
|
|
1936
|
-
d(l.$slots, "promo-image",
|
|
1958
|
+
d(l.$slots, "promo-image", V(O({ src: e.src, width: 1920, alt: e.alt, height: 1080 })))
|
|
1937
1959
|
]),
|
|
1938
1960
|
_: 3
|
|
1939
1961
|
})
|
|
1940
1962
|
], 2)) : m("", !0),
|
|
1941
|
-
e.mediaType === "video" ? (
|
|
1963
|
+
e.mediaType === "video" ? (i(), s("div", {
|
|
1942
1964
|
key: 1,
|
|
1943
1965
|
class: u([
|
|
1944
1966
|
"promo__video",
|
|
1945
1967
|
e.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1946
1968
|
])
|
|
1947
1969
|
}, [
|
|
1948
|
-
|
|
1970
|
+
b(U, {
|
|
1949
1971
|
src: e.src,
|
|
1950
|
-
|
|
1951
|
-
|
|
1972
|
+
"local-video": "",
|
|
1973
|
+
"aria-label": e.alt,
|
|
1952
1974
|
controls: !1,
|
|
1953
1975
|
autoplay: !0,
|
|
1954
1976
|
loop: !0,
|
|
1955
1977
|
muted: !0,
|
|
1956
1978
|
play: !0,
|
|
1957
1979
|
poster: e.fallbackImage
|
|
1958
|
-
}, null, 8, ["src", "
|
|
1980
|
+
}, null, 8, ["src", "aria-label", "poster"])
|
|
1959
1981
|
], 2)) : m("", !0),
|
|
1960
1982
|
t("div", {
|
|
1961
1983
|
class: u([
|
|
@@ -1963,45 +1985,45 @@ const Nl = /* @__PURE__ */ h(Hl, [["__scopeId", "data-v-2ca17b92"]]), Rl = { cla
|
|
|
1963
1985
|
e.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1964
1986
|
])
|
|
1965
1987
|
}, [
|
|
1966
|
-
e.label ? (
|
|
1988
|
+
e.label ? (i(), M(G, {
|
|
1967
1989
|
key: 0,
|
|
1968
1990
|
text: e.label,
|
|
1969
|
-
|
|
1970
|
-
}, null, 8, ["text", "
|
|
1991
|
+
"label-dark": e.variant === "dark"
|
|
1992
|
+
}, null, 8, ["text", "label-dark"])) : m("", !0),
|
|
1971
1993
|
t("div", {
|
|
1972
1994
|
class: u([
|
|
1973
1995
|
"promo__title",
|
|
1974
1996
|
e.variant === "dark" ? "promo__title--dark" : ""
|
|
1975
1997
|
])
|
|
1976
|
-
},
|
|
1977
|
-
e.linkType === "link" ? (
|
|
1998
|
+
}, r(e.headline), 3),
|
|
1999
|
+
e.linkType === "link" ? (i(), M(A, {
|
|
1978
2000
|
key: 1,
|
|
1979
|
-
|
|
2001
|
+
"link-type": e.variant === "dark" ? "regular_dark" : (e.variant === "light", "regular_light"),
|
|
1980
2002
|
arrow: ""
|
|
1981
2003
|
}, {
|
|
1982
2004
|
default: $(() => [
|
|
1983
2005
|
d(l.$slots, "promo-link")
|
|
1984
2006
|
]),
|
|
1985
2007
|
_: 3
|
|
1986
|
-
}, 8, ["
|
|
1987
|
-
e.linkType === "button" ? (
|
|
2008
|
+
}, 8, ["link-type"])) : m("", !0),
|
|
2009
|
+
e.linkType === "button" ? (i(), M(A, {
|
|
1988
2010
|
key: 2,
|
|
1989
|
-
|
|
2011
|
+
"link-type": e.variant === "dark" ? "secondary_dark" : (e.variant === "light", "secondary")
|
|
1990
2012
|
}, {
|
|
1991
2013
|
default: $(() => [
|
|
1992
2014
|
d(l.$slots, "promo-link")
|
|
1993
2015
|
]),
|
|
1994
2016
|
_: 3
|
|
1995
|
-
}, 8, ["
|
|
2017
|
+
}, 8, ["link-type"])) : m("", !0)
|
|
1996
2018
|
], 2)
|
|
1997
2019
|
])
|
|
1998
2020
|
], 2));
|
|
1999
2021
|
}
|
|
2000
2022
|
});
|
|
2001
|
-
const
|
|
2023
|
+
const El = /* @__PURE__ */ h(Nl, [["__scopeId", "data-v-6a96c16e"]]), Hl = (e) => (z("data-v-e3cc8e27"), e = e(), F(), e), Rl = { class: "quote__wrapper" }, jl = { class: "quote__content" }, Ul = /* @__PURE__ */ Hl(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), Kl = { class: "quote__quote" }, Gl = { class: "quote__quote-text" }, Wl = { class: "quote__author" }, Yl = {
|
|
2002
2024
|
key: 0,
|
|
2003
2025
|
class: "quote__image"
|
|
2004
|
-
},
|
|
2026
|
+
}, Ql = { class: "quote__text" }, Jl = { class: "quote__author-name" }, Xl = { class: "quote__author-title" }, Zl = /* @__PURE__ */ v({
|
|
2005
2027
|
__name: "quote",
|
|
2006
2028
|
props: {
|
|
2007
2029
|
quote: {
|
|
@@ -2018,20 +2040,21 @@ const Kl = /* @__PURE__ */ h(jl, [["__scopeId", "data-v-3282904c"]]), Ul = (e) =
|
|
|
2018
2040
|
},
|
|
2019
2041
|
authorImage: {
|
|
2020
2042
|
type: String,
|
|
2021
|
-
required: !1
|
|
2043
|
+
required: !1,
|
|
2044
|
+
default: void 0
|
|
2022
2045
|
}
|
|
2023
2046
|
},
|
|
2024
2047
|
setup(e) {
|
|
2025
|
-
return (l,
|
|
2026
|
-
t("div",
|
|
2027
|
-
|
|
2028
|
-
t("div",
|
|
2029
|
-
t("p",
|
|
2030
|
-
t("div",
|
|
2031
|
-
e.authorImage ? (
|
|
2032
|
-
|
|
2048
|
+
return (l, o) => (i(), s("div", Rl, [
|
|
2049
|
+
t("div", jl, [
|
|
2050
|
+
Ul,
|
|
2051
|
+
t("div", Kl, [
|
|
2052
|
+
t("p", Gl, r(e.quote), 1),
|
|
2053
|
+
t("div", Wl, [
|
|
2054
|
+
e.authorImage ? (i(), s("div", Yl, [
|
|
2055
|
+
b(T, null, {
|
|
2033
2056
|
default: $(() => [
|
|
2034
|
-
d(l.$slots, "author-image",
|
|
2057
|
+
d(l.$slots, "author-image", V(O({
|
|
2035
2058
|
src: e.authorImage + "/m/100x100",
|
|
2036
2059
|
width: 60,
|
|
2037
2060
|
height: 60
|
|
@@ -2040,9 +2063,9 @@ const Kl = /* @__PURE__ */ h(jl, [["__scopeId", "data-v-3282904c"]]), Ul = (e) =
|
|
|
2040
2063
|
_: 3
|
|
2041
2064
|
})
|
|
2042
2065
|
])) : m("", !0),
|
|
2043
|
-
t("div",
|
|
2044
|
-
t("p",
|
|
2045
|
-
t("p",
|
|
2066
|
+
t("div", Ql, [
|
|
2067
|
+
t("p", Jl, r(e.author), 1),
|
|
2068
|
+
t("p", Xl, r(e.authorTitle), 1)
|
|
2046
2069
|
])
|
|
2047
2070
|
])
|
|
2048
2071
|
])
|
|
@@ -2050,17 +2073,18 @@ const Kl = /* @__PURE__ */ h(jl, [["__scopeId", "data-v-3282904c"]]), Ul = (e) =
|
|
|
2050
2073
|
]));
|
|
2051
2074
|
}
|
|
2052
2075
|
});
|
|
2053
|
-
const
|
|
2076
|
+
const ei = /* @__PURE__ */ h(Zl, [["__scopeId", "data-v-e3cc8e27"]]), ti = { class: "rich-text__wrapper" }, ai = {
|
|
2054
2077
|
key: 0,
|
|
2055
2078
|
class: "rich-text__links"
|
|
2056
|
-
},
|
|
2079
|
+
}, li = {
|
|
2057
2080
|
key: 0,
|
|
2058
2081
|
class: "rich-text__bullet-list"
|
|
2059
|
-
},
|
|
2082
|
+
}, ii = /* @__PURE__ */ v({
|
|
2060
2083
|
__name: "rich-text",
|
|
2061
2084
|
props: {
|
|
2062
2085
|
headline: {
|
|
2063
|
-
type: String
|
|
2086
|
+
type: String,
|
|
2087
|
+
default: ""
|
|
2064
2088
|
},
|
|
2065
2089
|
leftAligned: {
|
|
2066
2090
|
type: Boolean,
|
|
@@ -2087,29 +2111,30 @@ const ii = /* @__PURE__ */ h(li, [["__scopeId", "data-v-18440f83"]]), si = { cla
|
|
|
2087
2111
|
default: "white"
|
|
2088
2112
|
},
|
|
2089
2113
|
label: {
|
|
2090
|
-
type: String
|
|
2114
|
+
type: String,
|
|
2115
|
+
default: ""
|
|
2091
2116
|
}
|
|
2092
2117
|
},
|
|
2093
2118
|
setup(e) {
|
|
2094
|
-
return (l,
|
|
2119
|
+
return (l, o) => (i(), s("div", {
|
|
2095
2120
|
class: u([
|
|
2096
2121
|
"rich-text",
|
|
2097
2122
|
e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
2098
2123
|
])
|
|
2099
2124
|
}, [
|
|
2100
|
-
t("div",
|
|
2101
|
-
e.label ? (
|
|
2125
|
+
t("div", ti, [
|
|
2126
|
+
e.label ? (i(), M(G, {
|
|
2102
2127
|
key: 0,
|
|
2103
2128
|
text: e.label,
|
|
2104
|
-
|
|
2129
|
+
"label-dark": !1
|
|
2105
2130
|
}, null, 8, ["text"])) : m("", !0),
|
|
2106
|
-
e.headline ? (
|
|
2131
|
+
e.headline ? (i(), s("h2", {
|
|
2107
2132
|
key: 1,
|
|
2108
2133
|
class: u([
|
|
2109
2134
|
"rich-text__headline",
|
|
2110
2135
|
e.leftAligned || e.bulletList || e.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
2111
2136
|
])
|
|
2112
|
-
},
|
|
2137
|
+
}, r(e.headline), 3)) : m("", !0),
|
|
2113
2138
|
t("div", {
|
|
2114
2139
|
class: u([
|
|
2115
2140
|
"rich-text__content",
|
|
@@ -2123,23 +2148,23 @@ const ii = /* @__PURE__ */ h(li, [["__scopeId", "data-v-18440f83"]]), si = { cla
|
|
|
2123
2148
|
])
|
|
2124
2149
|
}, [
|
|
2125
2150
|
d(l.$slots, "rich-text-content"),
|
|
2126
|
-
e.links ? (
|
|
2151
|
+
e.links ? (i(), s("div", ai, [
|
|
2127
2152
|
d(l.$slots, "rich-text-links")
|
|
2128
2153
|
])) : m("", !0)
|
|
2129
2154
|
], 2),
|
|
2130
|
-
e.bulletList ? (
|
|
2155
|
+
e.bulletList ? (i(), s("div", li, [
|
|
2131
2156
|
d(l.$slots, "rich-text-bullet-list")
|
|
2132
2157
|
])) : m("", !0),
|
|
2133
|
-
e.image ? (
|
|
2158
|
+
e.image ? (i(), s("div", {
|
|
2134
2159
|
key: 1,
|
|
2135
2160
|
class: u([
|
|
2136
2161
|
"rich-text__image",
|
|
2137
2162
|
e.imageClip ? "rich-text__image--clip" : ""
|
|
2138
2163
|
])
|
|
2139
2164
|
}, [
|
|
2140
|
-
|
|
2165
|
+
b(T, null, {
|
|
2141
2166
|
default: $(() => [
|
|
2142
|
-
d(l.$slots, "rich-text-image",
|
|
2167
|
+
d(l.$slots, "rich-text-image", V(O({ width: 865, height: 307 })))
|
|
2143
2168
|
]),
|
|
2144
2169
|
_: 3
|
|
2145
2170
|
})
|
|
@@ -2149,13 +2174,13 @@ const ii = /* @__PURE__ */ h(li, [["__scopeId", "data-v-18440f83"]]), si = { cla
|
|
|
2149
2174
|
], 2));
|
|
2150
2175
|
}
|
|
2151
2176
|
});
|
|
2152
|
-
const
|
|
2153
|
-
const
|
|
2154
|
-
function
|
|
2155
|
-
return
|
|
2156
|
-
t("div",
|
|
2157
|
-
t("div",
|
|
2158
|
-
t("div",
|
|
2177
|
+
const si = /* @__PURE__ */ h(ii, [["__scopeId", "data-v-c2a5b795"]]);
|
|
2178
|
+
const oi = {}, ri = { class: "rich-text" }, ni = { class: "rich-text__wrapper" }, di = { class: "rich-text__content rich-text__content--left-aligned" }, ci = { class: "rich-text__body" };
|
|
2179
|
+
function ui(e, l) {
|
|
2180
|
+
return i(), s("div", ri, [
|
|
2181
|
+
t("div", ni, [
|
|
2182
|
+
t("div", di, [
|
|
2183
|
+
t("div", ci, [
|
|
2159
2184
|
t("div", null, [
|
|
2160
2185
|
d(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
2161
2186
|
]),
|
|
@@ -2167,10 +2192,10 @@ function mi(e, l) {
|
|
|
2167
2192
|
])
|
|
2168
2193
|
]);
|
|
2169
2194
|
}
|
|
2170
|
-
const
|
|
2195
|
+
const _i = /* @__PURE__ */ h(oi, [["render", ui], ["__scopeId", "data-v-3abe0bb4"]]), hi = (e) => (z("data-v-78d319df"), e = e(), F(), e), vi = { class: "timeline__wrapper" }, mi = { class: "timeline__content" }, fi = { class: "timeline__items" }, gi = { class: "item__left" }, yi = /* @__PURE__ */ hi(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2171
2196
|
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2172
2197
|
/* @__PURE__ */ t("div", { class: "line" })
|
|
2173
|
-
], -1)),
|
|
2198
|
+
], -1)), bi = { class: "item__right" }, pi = ["innerHTML"], $i = /* @__PURE__ */ v({
|
|
2174
2199
|
__name: "timeline",
|
|
2175
2200
|
props: {
|
|
2176
2201
|
timelineItems: {
|
|
@@ -2180,48 +2205,51 @@ const fi = /* @__PURE__ */ h(ci, [["render", mi], ["__scopeId", "data-v-86986bf2
|
|
|
2180
2205
|
},
|
|
2181
2206
|
setup(e) {
|
|
2182
2207
|
return ne(() => {
|
|
2183
|
-
const l = document.querySelectorAll(".timeline__item"),
|
|
2184
|
-
(
|
|
2185
|
-
|
|
2186
|
-
n.isIntersecting && (n.target.classList.add("visible"), n.target.classList.remove("faded"),
|
|
2208
|
+
const l = document.querySelectorAll(".timeline__item"), o = new IntersectionObserver(
|
|
2209
|
+
(a) => {
|
|
2210
|
+
a.forEach((n) => {
|
|
2211
|
+
n.isIntersecting && (n.target.classList.add("visible"), n.target.classList.remove("faded"), o.unobserve(n.target));
|
|
2187
2212
|
});
|
|
2188
2213
|
},
|
|
2189
2214
|
{
|
|
2190
2215
|
threshold: 1
|
|
2191
2216
|
}
|
|
2192
2217
|
);
|
|
2193
|
-
l.forEach((
|
|
2194
|
-
|
|
2218
|
+
l.forEach((a) => {
|
|
2219
|
+
o.observe(a);
|
|
2195
2220
|
});
|
|
2196
|
-
}), (l,
|
|
2197
|
-
t("div",
|
|
2198
|
-
t("div",
|
|
2199
|
-
(
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2221
|
+
}), (l, o) => (i(), s("div", vi, [
|
|
2222
|
+
t("div", mi, [
|
|
2223
|
+
t("div", fi, [
|
|
2224
|
+
(i(!0), s(L, null, C(e.timelineItems, (a) => (i(), s("div", {
|
|
2225
|
+
key: a.year,
|
|
2226
|
+
class: "timeline__item faded"
|
|
2227
|
+
}, [
|
|
2228
|
+
t("div", gi, r(a.year), 1),
|
|
2229
|
+
yi,
|
|
2230
|
+
t("div", bi, [
|
|
2231
|
+
b(T, null, {
|
|
2204
2232
|
default: $(() => [
|
|
2205
|
-
|
|
2233
|
+
a.media.type === "image" ? d(l.$slots, "timeline-image", V(ee({ key: 0 }, { src: a.media.src, alt: a.media.alt })), void 0, !0) : m("", !0)
|
|
2206
2234
|
]),
|
|
2207
2235
|
_: 2
|
|
2208
2236
|
}, 1024),
|
|
2209
2237
|
t("div", {
|
|
2210
|
-
style: te([
|
|
2238
|
+
style: te([a.media.type === "none" ? "margin-top: 0px" : ""]),
|
|
2211
2239
|
class: "rich-text",
|
|
2212
|
-
innerHTML:
|
|
2213
|
-
}, null, 12,
|
|
2240
|
+
innerHTML: a.text
|
|
2241
|
+
}, null, 12, pi)
|
|
2214
2242
|
])
|
|
2215
|
-
]))),
|
|
2243
|
+
]))), 128))
|
|
2216
2244
|
])
|
|
2217
2245
|
])
|
|
2218
2246
|
]));
|
|
2219
2247
|
}
|
|
2220
2248
|
});
|
|
2221
|
-
const
|
|
2249
|
+
const ki = /* @__PURE__ */ h($i, [["__scopeId", "data-v-78d319df"]]), wi = { class: "triple-card-display__wrapper" }, xi = {
|
|
2222
2250
|
key: 0,
|
|
2223
2251
|
class: "triple-card__content"
|
|
2224
|
-
},
|
|
2252
|
+
}, Si = { key: 0 }, qi = { key: 1 }, Bi = { class: "triple-card__cards" }, Ii = /* @__PURE__ */ v({
|
|
2225
2253
|
__name: "triple-card-display",
|
|
2226
2254
|
props: {
|
|
2227
2255
|
headline: {
|
|
@@ -2238,51 +2266,53 @@ const Bi = /* @__PURE__ */ h(qi, [["__scopeId", "data-v-df182fbb"]]), Ii = { cla
|
|
|
2238
2266
|
}
|
|
2239
2267
|
},
|
|
2240
2268
|
setup(e) {
|
|
2241
|
-
return (l,
|
|
2269
|
+
return (l, o) => (i(), s("div", {
|
|
2242
2270
|
class: u([
|
|
2243
2271
|
"triple-card-display",
|
|
2244
2272
|
e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
|
|
2245
2273
|
])
|
|
2246
2274
|
}, [
|
|
2247
|
-
t("div",
|
|
2248
|
-
e.headline || e.paragraph ? (
|
|
2249
|
-
e.headline ? (
|
|
2250
|
-
e.paragraph ? (
|
|
2275
|
+
t("div", wi, [
|
|
2276
|
+
e.headline || e.paragraph ? (i(), s("div", xi, [
|
|
2277
|
+
e.headline ? (i(), s("h2", Si, r(e.headline), 1)) : m("", !0),
|
|
2278
|
+
e.paragraph ? (i(), s("p", qi, r(e.paragraph), 1)) : m("", !0)
|
|
2251
2279
|
])) : m("", !0),
|
|
2252
|
-
t("div",
|
|
2280
|
+
t("div", Bi, [
|
|
2253
2281
|
d(l.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
2254
2282
|
])
|
|
2255
2283
|
])
|
|
2256
2284
|
], 2));
|
|
2257
2285
|
}
|
|
2258
2286
|
});
|
|
2259
|
-
const
|
|
2287
|
+
const Li = /* @__PURE__ */ h(Ii, [["__scopeId", "data-v-d77943df"]]), Ci = { class: "vimeo" }, Ti = { class: "vimeo__wrapper" }, Ai = {
|
|
2260
2288
|
key: 0,
|
|
2261
2289
|
class: "vimeo__headline"
|
|
2262
|
-
},
|
|
2290
|
+
}, Vi = {
|
|
2263
2291
|
key: 1,
|
|
2264
2292
|
class: "vimeo__description"
|
|
2265
|
-
},
|
|
2293
|
+
}, Di = /* @__PURE__ */ v({
|
|
2266
2294
|
__name: "vimeo",
|
|
2267
2295
|
props: {
|
|
2268
2296
|
headline: {
|
|
2269
|
-
type: String
|
|
2297
|
+
type: String,
|
|
2298
|
+
default: ""
|
|
2270
2299
|
},
|
|
2271
2300
|
description: {
|
|
2272
|
-
type: String
|
|
2301
|
+
type: String,
|
|
2302
|
+
default: ""
|
|
2273
2303
|
}
|
|
2274
2304
|
},
|
|
2275
2305
|
setup(e) {
|
|
2276
|
-
return (l,
|
|
2277
|
-
t("div",
|
|
2278
|
-
e.headline ? (
|
|
2306
|
+
return (l, o) => (i(), s("div", Ci, [
|
|
2307
|
+
t("div", Ti, [
|
|
2308
|
+
e.headline ? (i(), s("h2", Ai, r(e.headline), 1)) : m("", !0),
|
|
2279
2309
|
d(l.$slots, "vimeo-content", {}, void 0, !0),
|
|
2280
|
-
e.description ? (
|
|
2310
|
+
e.description ? (i(), s("p", Vi, r(e.description), 1)) : m("", !0)
|
|
2281
2311
|
])
|
|
2282
2312
|
]));
|
|
2283
2313
|
}
|
|
2284
2314
|
});
|
|
2285
|
-
const
|
|
2315
|
+
const Mi = /* @__PURE__ */ h(Di, [["__scopeId", "data-v-599c68c7"]]), Oi = { class: "not-found__wrapper" }, zi = { class: "not-found__content" }, Fi = { class: "not-found__headline" }, Pi = { class: "not-found__body" }, Ni = /* @__PURE__ */ v({
|
|
2286
2316
|
__name: "404",
|
|
2287
2317
|
props: {
|
|
2288
2318
|
headline: {
|
|
@@ -2291,17 +2321,17 @@ const Ei = /* @__PURE__ */ h(Pi, [["__scopeId", "data-v-59fa125d"]]), Hi = { cla
|
|
|
2291
2321
|
}
|
|
2292
2322
|
},
|
|
2293
2323
|
setup(e) {
|
|
2294
|
-
return (l,
|
|
2295
|
-
t("div",
|
|
2296
|
-
t("h1",
|
|
2297
|
-
t("div",
|
|
2324
|
+
return (l, o) => (i(), s("div", Oi, [
|
|
2325
|
+
t("div", zi, [
|
|
2326
|
+
t("h1", Fi, r(e.headline), 1),
|
|
2327
|
+
t("div", Pi, [
|
|
2298
2328
|
d(l.$slots, "not-found-body", {}, void 0, !0)
|
|
2299
2329
|
])
|
|
2300
2330
|
])
|
|
2301
2331
|
]));
|
|
2302
2332
|
}
|
|
2303
2333
|
});
|
|
2304
|
-
const
|
|
2334
|
+
const Ei = /* @__PURE__ */ h(Ni, [["__scopeId", "data-v-b829ca6c"]]), Hi = { class: "filter__wrapper" }, Ri = { class: "filter__content" }, ji = { class: "filter__dropdowns" }, Ui = { class: "filter__chips" }, Ki = /* @__PURE__ */ v({
|
|
2305
2335
|
__name: "filter",
|
|
2306
2336
|
props: {
|
|
2307
2337
|
hasChips: {
|
|
@@ -2311,44 +2341,48 @@ const Ui = /* @__PURE__ */ h(Ki, [["__scopeId", "data-v-dc0a59da"]]), Gi = { cla
|
|
|
2311
2341
|
},
|
|
2312
2342
|
emits: ["clearFilters"],
|
|
2313
2343
|
setup(e) {
|
|
2314
|
-
return (l,
|
|
2315
|
-
t("div",
|
|
2316
|
-
t("div",
|
|
2344
|
+
return (l, o) => (i(), s("div", Hi, [
|
|
2345
|
+
t("div", Ri, [
|
|
2346
|
+
t("div", ji, [
|
|
2317
2347
|
d(l.$slots, "filter-dropdowns")
|
|
2318
2348
|
]),
|
|
2319
|
-
t("div",
|
|
2349
|
+
t("div", Ui, [
|
|
2320
2350
|
d(l.$slots, "filter-chips"),
|
|
2321
|
-
e.hasChips ? (
|
|
2351
|
+
e.hasChips ? (i(), s("button", {
|
|
2322
2352
|
key: 0,
|
|
2323
2353
|
class: "filter__clear",
|
|
2324
|
-
onClick:
|
|
2354
|
+
onClick: o[0] || (o[0] = (a) => l.$emit("clearFilters"))
|
|
2325
2355
|
}, " Remove all filters ")) : m("", !0)
|
|
2326
2356
|
])
|
|
2327
2357
|
])
|
|
2328
2358
|
]));
|
|
2329
2359
|
}
|
|
2330
2360
|
});
|
|
2331
|
-
const
|
|
2361
|
+
const Gi = /* @__PURE__ */ h(Ki, [["__scopeId", "data-v-c11a3620"]]), E = (e) => (z("data-v-9d34b5e2"), e = e(), F(), e), Wi = { class: "footer__wrapper" }, Yi = { class: "footer__content" }, Qi = { class: "footer__sections" }, Ji = { class: "section__title" }, Xi = { class: "section__list" }, Zi = { class: "section" }, es = /* @__PURE__ */ E(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), ts = /* @__PURE__ */ E(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), as = /* @__PURE__ */ E(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), ls = /* @__PURE__ */ E(() => /* @__PURE__ */ t("br", null, null, -1)), is = /* @__PURE__ */ E(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), ss = /* @__PURE__ */ E(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), os = { class: "footer__bottom" }, rs = { class: "copyright" }, ns = { class: "footer__policy" }, ds = /* @__PURE__ */ E(() => /* @__PURE__ */ t("span", null, [
|
|
2332
2362
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
2333
2363
|
/* @__PURE__ */ j("Change region")
|
|
2334
|
-
], -1)),
|
|
2335
|
-
|
|
2336
|
-
],
|
|
2364
|
+
], -1)), cs = [
|
|
2365
|
+
ds
|
|
2366
|
+
], us = { class: "footer__social" }, _s = ["href", "aria-label"], hs = /* @__PURE__ */ v({
|
|
2337
2367
|
__name: "footer",
|
|
2338
2368
|
props: {
|
|
2339
2369
|
footerSections: {
|
|
2340
2370
|
type: Array,
|
|
2341
|
-
default: []
|
|
2371
|
+
default: () => []
|
|
2342
2372
|
},
|
|
2343
2373
|
privacyPolicy: {
|
|
2344
|
-
type: Object
|
|
2374
|
+
type: Object,
|
|
2375
|
+
default: () => {
|
|
2376
|
+
}
|
|
2345
2377
|
},
|
|
2346
2378
|
cookiePolicy: {
|
|
2347
|
-
type: Object
|
|
2379
|
+
type: Object,
|
|
2380
|
+
default: () => {
|
|
2381
|
+
}
|
|
2348
2382
|
},
|
|
2349
2383
|
socialMedia: {
|
|
2350
2384
|
type: Array,
|
|
2351
|
-
default: [],
|
|
2385
|
+
default: () => [],
|
|
2352
2386
|
validator: (e) => {
|
|
2353
2387
|
const l = [
|
|
2354
2388
|
"linkedin",
|
|
@@ -2357,104 +2391,108 @@ const Xi = /* @__PURE__ */ h(Ji, [["__scopeId", "data-v-73ba9888"]]), H = (e) =>
|
|
|
2357
2391
|
"twitter",
|
|
2358
2392
|
"youtube"
|
|
2359
2393
|
];
|
|
2360
|
-
return e.every((
|
|
2394
|
+
return e.every((o) => l.includes(o.title));
|
|
2361
2395
|
}
|
|
2362
2396
|
}
|
|
2363
2397
|
},
|
|
2364
2398
|
emits: ["changeRegionClicked"],
|
|
2365
2399
|
setup(e) {
|
|
2366
|
-
return (l,
|
|
2367
|
-
t("footer",
|
|
2368
|
-
t("div",
|
|
2369
|
-
(
|
|
2370
|
-
|
|
2400
|
+
return (l, o) => (i(), s("div", Wi, [
|
|
2401
|
+
t("footer", Yi, [
|
|
2402
|
+
t("div", Qi, [
|
|
2403
|
+
(i(!0), s(L, null, C(e.footerSections, (a) => (i(), s("div", {
|
|
2404
|
+
key: a.title,
|
|
2405
|
+
class: "section"
|
|
2406
|
+
}, [
|
|
2407
|
+
t("span", Ji, r(a.title), 1),
|
|
2371
2408
|
t("nav", null, [
|
|
2372
|
-
t("ul",
|
|
2409
|
+
t("ul", Xi, [
|
|
2373
2410
|
d(l.$slots, "section-links", {
|
|
2374
|
-
links:
|
|
2411
|
+
links: a.links
|
|
2375
2412
|
})
|
|
2376
2413
|
])
|
|
2377
2414
|
])
|
|
2378
|
-
]))),
|
|
2379
|
-
t("div",
|
|
2380
|
-
|
|
2415
|
+
]))), 128)),
|
|
2416
|
+
t("div", Zi, [
|
|
2417
|
+
es,
|
|
2381
2418
|
t("address", null, [
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2419
|
+
ts,
|
|
2420
|
+
as,
|
|
2421
|
+
ls,
|
|
2422
|
+
b(A, {
|
|
2386
2423
|
class: "footer__contact",
|
|
2387
|
-
|
|
2424
|
+
"link-type": "regular_light",
|
|
2388
2425
|
underline: "false"
|
|
2389
2426
|
}, {
|
|
2390
2427
|
default: $(() => [
|
|
2391
|
-
|
|
2428
|
+
is
|
|
2392
2429
|
]),
|
|
2393
2430
|
_: 1
|
|
2394
2431
|
}),
|
|
2395
|
-
|
|
2432
|
+
b(A, {
|
|
2396
2433
|
class: "footer__contact",
|
|
2397
|
-
|
|
2434
|
+
"link-type": "regular_light",
|
|
2398
2435
|
underline: "false"
|
|
2399
2436
|
}, {
|
|
2400
2437
|
default: $(() => [
|
|
2401
|
-
|
|
2438
|
+
ss
|
|
2402
2439
|
]),
|
|
2403
2440
|
_: 1
|
|
2404
2441
|
})
|
|
2405
2442
|
])
|
|
2406
2443
|
])
|
|
2407
2444
|
]),
|
|
2408
|
-
t("div",
|
|
2409
|
-
t("p",
|
|
2410
|
-
t("div",
|
|
2445
|
+
t("div", os, [
|
|
2446
|
+
t("p", rs, "© MiR " + r((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2447
|
+
t("div", ns, [
|
|
2411
2448
|
t("button", {
|
|
2412
2449
|
class: "footer__language-switcher",
|
|
2413
|
-
onClick:
|
|
2414
|
-
},
|
|
2450
|
+
onClick: o[0] || (o[0] = (a) => l.$emit("changeRegionClicked"))
|
|
2451
|
+
}, cs),
|
|
2415
2452
|
d(l.$slots, "footer-privacy-link"),
|
|
2416
2453
|
d(l.$slots, "footer-cookie-link")
|
|
2417
2454
|
]),
|
|
2418
|
-
t("div",
|
|
2419
|
-
(
|
|
2455
|
+
t("div", us, [
|
|
2456
|
+
(i(!0), s(L, null, C(e.socialMedia, (a) => (i(), M(A, {
|
|
2457
|
+
key: a.title,
|
|
2420
2458
|
underline: "false",
|
|
2421
|
-
|
|
2459
|
+
"link-type": "regular"
|
|
2422
2460
|
}, {
|
|
2423
2461
|
default: $(() => [
|
|
2424
2462
|
t("a", {
|
|
2425
|
-
href:
|
|
2426
|
-
"aria-label":
|
|
2463
|
+
href: a.url,
|
|
2464
|
+
"aria-label": a.title
|
|
2427
2465
|
}, [
|
|
2428
2466
|
t("i", {
|
|
2429
2467
|
width: "19",
|
|
2430
2468
|
height: "14",
|
|
2431
2469
|
class: u(["footer__social--icon", [
|
|
2432
|
-
|
|
2470
|
+
a.title === "linkedin" ? "bg-linkedin" : a.title === "facebook" ? "bg-facebook" : a.title === "instagram" ? "bg-instagram" : a.title === "twitter" ? "bg-twitter" : a.title === "youtube" ? "bg-youtube" : ""
|
|
2433
2471
|
]])
|
|
2434
2472
|
}, null, 2)
|
|
2435
|
-
], 8,
|
|
2473
|
+
], 8, _s)
|
|
2436
2474
|
]),
|
|
2437
2475
|
_: 2
|
|
2438
|
-
}, 1024))),
|
|
2476
|
+
}, 1024))), 128))
|
|
2439
2477
|
])
|
|
2440
2478
|
])
|
|
2441
2479
|
])
|
|
2442
2480
|
]));
|
|
2443
2481
|
}
|
|
2444
2482
|
});
|
|
2445
|
-
const
|
|
2483
|
+
const vs = /* @__PURE__ */ h(hs, [["__scopeId", "data-v-9d34b5e2"]]), ms = { class: "header__wrapper" }, fs = { class: "nav-wrapper" }, gs = { class: "mir-link-logo" }, ys = { class: "main-nav-items" }, bs = {
|
|
2446
2484
|
id: "menu-dropdown",
|
|
2447
2485
|
ref: "dropdownDiv"
|
|
2448
|
-
},
|
|
2486
|
+
}, ps = {
|
|
2449
2487
|
key: 0,
|
|
2450
2488
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2451
2489
|
alt: "dropdownarrow"
|
|
2452
|
-
},
|
|
2490
|
+
}, $s = {
|
|
2453
2491
|
key: 1,
|
|
2454
2492
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2455
2493
|
alt: "dropdownarrow",
|
|
2456
2494
|
style: { transform: "rotate(180deg)" }
|
|
2457
|
-
},
|
|
2495
|
+
}, ks = { class: "dropdown-content" }, ws = { class: "nav-search-wrapper" }, xs = ["src"], Ss = { class: "mobile-logo-search-burger-wrapper" }, qs = { class: "mobile-mir-link-logo" }, Bs = { class: "mobile-search-wrapper" }, Is = ["src"], Ls = ["onClick"], Cs = ["src"], Ts = { class: "mobile-menu-content-wrapper" }, As = { class: "mobile-dropdown-content" }, Vs = /* @__PURE__ */ v({
|
|
2458
2496
|
__name: "header",
|
|
2459
2497
|
props: {
|
|
2460
2498
|
burgerState: {
|
|
@@ -2471,153 +2509,154 @@ const ps = /* @__PURE__ */ h(bs, [["__scopeId", "data-v-d2cab33d"]]), $s = { cla
|
|
|
2471
2509
|
"update:showDropDown",
|
|
2472
2510
|
"clickSearch"
|
|
2473
2511
|
],
|
|
2474
|
-
setup(e, { expose: l, emit:
|
|
2475
|
-
const
|
|
2476
|
-
w(
|
|
2477
|
-
let n = null, _ = w(i.burgerState), b = w(i.showDropDown);
|
|
2512
|
+
setup(e, { expose: l, emit: o }) {
|
|
2513
|
+
const a = e;
|
|
2514
|
+
let n = null, _ = w(a.burgerState), p = w(a.showDropDown);
|
|
2478
2515
|
se(
|
|
2479
|
-
() =>
|
|
2516
|
+
() => a.burgerState,
|
|
2480
2517
|
(k) => _.value = k
|
|
2481
2518
|
), se(
|
|
2482
|
-
() =>
|
|
2483
|
-
(k) =>
|
|
2519
|
+
() => a.showDropDown,
|
|
2520
|
+
(k) => p.value = k
|
|
2484
2521
|
), ne(() => {
|
|
2485
2522
|
n = (k) => {
|
|
2486
|
-
k.target.closest("#menu-dropdown") || (
|
|
2523
|
+
k.target.closest("#menu-dropdown") || (p.value = !1);
|
|
2487
2524
|
}, window.addEventListener("click", n);
|
|
2488
2525
|
}), pe(() => {
|
|
2489
2526
|
n !== null && window.removeEventListener("click", n);
|
|
2490
2527
|
});
|
|
2491
|
-
function
|
|
2492
|
-
|
|
2528
|
+
function x() {
|
|
2529
|
+
p.value = !p.value, o("update:showDropDown", p.value);
|
|
2493
2530
|
}
|
|
2494
|
-
function
|
|
2495
|
-
_.value = !_.value,
|
|
2531
|
+
function q() {
|
|
2532
|
+
_.value = !_.value, o("update:burgerState", _.value);
|
|
2496
2533
|
}
|
|
2497
|
-
let g = w(null),
|
|
2534
|
+
let g = w(null), B = w(null);
|
|
2498
2535
|
function X() {
|
|
2499
2536
|
g.value && g.value.blur();
|
|
2500
2537
|
}
|
|
2501
2538
|
return l({
|
|
2502
2539
|
defocusSearchButton: X
|
|
2503
|
-
}), (k,
|
|
2540
|
+
}), (k, H) => (i(), s("div", ms, [
|
|
2504
2541
|
t("nav", null, [
|
|
2505
|
-
t("div",
|
|
2506
|
-
t("div",
|
|
2542
|
+
t("div", fs, [
|
|
2543
|
+
t("div", gs, [
|
|
2507
2544
|
d(k.$slots, "link-logo", {}, void 0, !0)
|
|
2508
2545
|
]),
|
|
2509
|
-
t("ul",
|
|
2546
|
+
t("ul", ys, [
|
|
2510
2547
|
d(k.$slots, "main-nav-items", {}, void 0, !0)
|
|
2511
2548
|
]),
|
|
2512
|
-
t("div",
|
|
2549
|
+
t("div", bs, [
|
|
2513
2550
|
t("button", {
|
|
2514
|
-
|
|
2515
|
-
|
|
2551
|
+
class: "nav-dropdown-btn",
|
|
2552
|
+
onClick: x
|
|
2516
2553
|
}, [
|
|
2517
2554
|
d(k.$slots, "dropdown-title", {}, void 0, !0),
|
|
2518
|
-
|
|
2555
|
+
I(p) == !1 ? (i(), s("img", ps)) : (i(), s("img", $s))
|
|
2519
2556
|
]),
|
|
2520
|
-
|
|
2557
|
+
Q(t("div", ks, [
|
|
2521
2558
|
d(k.$slots, "dropdown-links", {}, void 0, !0)
|
|
2522
2559
|
], 512), [
|
|
2523
|
-
[Z,
|
|
2560
|
+
[Z, I(p)]
|
|
2524
2561
|
])
|
|
2525
2562
|
], 512),
|
|
2526
|
-
t("div",
|
|
2563
|
+
t("div", ws, [
|
|
2527
2564
|
t("button", {
|
|
2528
|
-
class: "search-icon",
|
|
2529
|
-
onClick: N[0] || (N[0] = (W) => {
|
|
2530
|
-
var P;
|
|
2531
|
-
return k.$emit("clickSearch"), (P = B(g)) == null ? void 0 : P.blur();
|
|
2532
|
-
}),
|
|
2533
2565
|
ref_key: "navSearchButton",
|
|
2534
|
-
ref: g
|
|
2566
|
+
ref: g,
|
|
2567
|
+
class: "search-icon",
|
|
2568
|
+
onClick: H[0] || (H[0] = (W) => {
|
|
2569
|
+
var N;
|
|
2570
|
+
return k.$emit("clickSearch"), (N = I(g)) == null ? void 0 : N.blur();
|
|
2571
|
+
})
|
|
2535
2572
|
}, [
|
|
2536
2573
|
t("img", {
|
|
2537
|
-
src:
|
|
2574
|
+
src: I(_) == !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2538
2575
|
alt: "search icon",
|
|
2539
2576
|
width: "20",
|
|
2540
2577
|
height: "20"
|
|
2541
|
-
}, null, 8,
|
|
2578
|
+
}, null, 8, xs)
|
|
2542
2579
|
], 512)
|
|
2543
2580
|
])
|
|
2544
2581
|
]),
|
|
2545
2582
|
t("div", {
|
|
2546
|
-
class: u(["mobile-nav-wrapper",
|
|
2583
|
+
class: u(["mobile-nav-wrapper", I(_) == !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2547
2584
|
}, [
|
|
2548
|
-
t("div",
|
|
2549
|
-
t("div",
|
|
2585
|
+
t("div", Ss, [
|
|
2586
|
+
t("div", qs, [
|
|
2550
2587
|
d(k.$slots, "link-logo", {}, void 0, !0)
|
|
2551
2588
|
]),
|
|
2552
|
-
t("div",
|
|
2589
|
+
t("div", Bs, [
|
|
2553
2590
|
t("button", {
|
|
2554
|
-
class: "search-icon",
|
|
2555
|
-
onClick: N[1] || (N[1] = (W) => {
|
|
2556
|
-
var P;
|
|
2557
|
-
return k.$emit("clickSearch"), (P = B(q)) == null ? void 0 : P.blur();
|
|
2558
|
-
}),
|
|
2559
2591
|
ref_key: "mobileSearchButton",
|
|
2560
|
-
ref:
|
|
2561
|
-
|
|
2592
|
+
ref: B,
|
|
2593
|
+
class: "search-icon",
|
|
2594
|
+
"aria-label": "Toggle search",
|
|
2595
|
+
onClick: H[1] || (H[1] = (W) => {
|
|
2596
|
+
var N;
|
|
2597
|
+
return k.$emit("clickSearch"), (N = I(B)) == null ? void 0 : N.blur();
|
|
2598
|
+
})
|
|
2562
2599
|
}, [
|
|
2563
2600
|
t("img", {
|
|
2564
|
-
src:
|
|
2601
|
+
src: I(_) == !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2565
2602
|
alt: "search icon",
|
|
2566
2603
|
width: "20",
|
|
2567
2604
|
height: "20"
|
|
2568
|
-
}, null, 8,
|
|
2605
|
+
}, null, 8, Is)
|
|
2569
2606
|
], 512)
|
|
2570
2607
|
]),
|
|
2571
2608
|
t("button", {
|
|
2572
|
-
onClick: re(S, ["prevent"]),
|
|
2573
2609
|
class: "mobile-burger-wrapper",
|
|
2574
|
-
"aria-label": "Toggle menu"
|
|
2610
|
+
"aria-label": "Toggle menu",
|
|
2611
|
+
onClick: oe(q, ["prevent"])
|
|
2575
2612
|
}, [
|
|
2576
2613
|
t("img", {
|
|
2577
2614
|
width: "20",
|
|
2578
2615
|
height: "20",
|
|
2579
2616
|
alt: "burger menu line icon",
|
|
2580
|
-
src:
|
|
2581
|
-
}, null, 8,
|
|
2582
|
-
], 8,
|
|
2617
|
+
src: I(_) == !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"
|
|
2618
|
+
}, null, 8, Cs)
|
|
2619
|
+
], 8, Ls)
|
|
2583
2620
|
]),
|
|
2584
|
-
|
|
2621
|
+
Q(t("div", Ts, [
|
|
2585
2622
|
t("ul", null, [
|
|
2586
2623
|
d(k.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2587
2624
|
]),
|
|
2588
|
-
t("ul",
|
|
2625
|
+
t("ul", As, [
|
|
2589
2626
|
d(k.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2590
2627
|
d(k.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2591
2628
|
])
|
|
2592
2629
|
], 512), [
|
|
2593
|
-
[Z,
|
|
2630
|
+
[Z, I(_)]
|
|
2594
2631
|
])
|
|
2595
2632
|
], 2)
|
|
2596
2633
|
])
|
|
2597
2634
|
]));
|
|
2598
2635
|
}
|
|
2599
2636
|
});
|
|
2600
|
-
const
|
|
2637
|
+
const Ds = /* @__PURE__ */ h(Vs, [["__scopeId", "data-v-10e18de9"]]), Ms = { class: "language__wrapper" }, Os = { class: "language__content" }, zs = { class: "language__headline" }, Fs = { class: "language__paragraph" }, Ps = /* @__PURE__ */ v({
|
|
2601
2638
|
__name: "language-switcher",
|
|
2602
2639
|
props: {
|
|
2603
2640
|
headline: {
|
|
2604
|
-
type: String
|
|
2641
|
+
type: String,
|
|
2642
|
+
default: ""
|
|
2605
2643
|
},
|
|
2606
2644
|
paragraph: {
|
|
2607
|
-
type: String
|
|
2645
|
+
type: String,
|
|
2646
|
+
default: ""
|
|
2608
2647
|
}
|
|
2609
2648
|
},
|
|
2610
2649
|
setup(e) {
|
|
2611
|
-
return (l,
|
|
2612
|
-
t("div",
|
|
2613
|
-
t("h2",
|
|
2614
|
-
t("p",
|
|
2650
|
+
return (l, o) => (i(), s("div", Ms, [
|
|
2651
|
+
t("div", Os, [
|
|
2652
|
+
t("h2", zs, r(e.headline), 1),
|
|
2653
|
+
t("p", Fs, r(e.paragraph), 1),
|
|
2615
2654
|
d(l.$slots, "language-links", {}, void 0, !0)
|
|
2616
2655
|
])
|
|
2617
2656
|
]));
|
|
2618
2657
|
}
|
|
2619
2658
|
});
|
|
2620
|
-
const
|
|
2659
|
+
const Ns = /* @__PURE__ */ h(Ps, [["__scopeId", "data-v-f345ee1f"]]), Es = { class: "pagination__wrapper" }, Hs = { class: "pagination__content" }, Rs = /* @__PURE__ */ v({
|
|
2621
2660
|
__name: "pagination",
|
|
2622
2661
|
props: {
|
|
2623
2662
|
isPreviousDisabled: {
|
|
@@ -2631,81 +2670,81 @@ const Us = /* @__PURE__ */ h(Ks, [["__scopeId", "data-v-a76ba727"]]), Gs = { cla
|
|
|
2631
2670
|
},
|
|
2632
2671
|
emits: ["previous", "next"],
|
|
2633
2672
|
setup(e) {
|
|
2634
|
-
return (l,
|
|
2635
|
-
t("div",
|
|
2636
|
-
|
|
2637
|
-
onClick: r[0] || (r[0] = (i) => l.$emit("previous")),
|
|
2673
|
+
return (l, o) => (i(), s("div", Es, [
|
|
2674
|
+
t("div", Hs, [
|
|
2675
|
+
b(J, {
|
|
2638
2676
|
disabled: e.isPreviousDisabled,
|
|
2639
2677
|
variant: "previous",
|
|
2640
|
-
|
|
2678
|
+
"aria-label": "previous",
|
|
2679
|
+
onClick: o[0] || (o[0] = (a) => l.$emit("previous"))
|
|
2641
2680
|
}, null, 8, ["disabled"]),
|
|
2642
2681
|
d(l.$slots, "pagination-numbers"),
|
|
2643
|
-
|
|
2644
|
-
onClick: r[1] || (r[1] = (i) => l.$emit("next")),
|
|
2682
|
+
b(J, {
|
|
2645
2683
|
disabled: e.isNextDisabled,
|
|
2646
2684
|
variant: "next",
|
|
2647
|
-
|
|
2685
|
+
"aria-label": "next",
|
|
2686
|
+
onClick: o[1] || (o[1] = (a) => l.$emit("next"))
|
|
2648
2687
|
}, null, 8, ["disabled"])
|
|
2649
2688
|
])
|
|
2650
2689
|
]));
|
|
2651
2690
|
}
|
|
2652
2691
|
});
|
|
2653
|
-
const
|
|
2654
|
-
const
|
|
2655
|
-
function
|
|
2656
|
-
return
|
|
2692
|
+
const js = /* @__PURE__ */ h(Rs, [["__scopeId", "data-v-9eec8df7"]]);
|
|
2693
|
+
const Us = {}, Ks = { class: "search__wrapper" };
|
|
2694
|
+
function Gs(e, l) {
|
|
2695
|
+
return i(), s("div", Ks, [
|
|
2657
2696
|
d(e.$slots, "default", { class: "search__content" })
|
|
2658
2697
|
]);
|
|
2659
2698
|
}
|
|
2660
|
-
const
|
|
2699
|
+
const Ws = /* @__PURE__ */ h(Us, [["render", Gs], ["__scopeId", "data-v-623adb82"]]), Qs = {
|
|
2661
2700
|
install: (e) => {
|
|
2662
|
-
e.component("AtomButton", J), e.component("AtomCheckbox", Ie), e.component("AtomChip",
|
|
2701
|
+
e.component("AtomButton", J), e.component("AtomCheckbox", Ie), e.component("AtomChip", Ve), e.component("AtomDropdown", Ee), e.component("AtomImage", T), e.component("AtomLabel", G), e.component("AtomLink", A), e.component("AtomRadioButton", Ze), e.component("AtomSelect", st), e.component("AtomSlider", mt), e.component("AtomTextarea", wt), e.component("AtomTextField", Dt), e.component("AtomVideo", U), e.component("MoleculeAddress", Yt), e.component("MoleculeBulletList", ea), e.component("MoleculeCard", sa), e.component("MoleculeEventCard", ha), e.component("MoleculeModal", de), e.component("MoleculeTextCard", ya), e.component("BlockFacts", Ba), e.component("BlockFeatures", Ma), e.component("BlockFormScript", Ra), e.component("BlockHeadline", sl), e.component("BlockHero", fl), e.component("BlockImage", Ya), e.component("BlockImageGallery", tl), e.component("BlockLogoWall", Sl), e.component("BlockMicroStories", Bl), e.component("BlockPolicy", Al), e.component("BlockProductHero", Fl), e.component("BlockPromo", El), e.component("BlockQuote", ei), e.component("BlockRichText", si), e.component("BlockRichTextColumns", _i), e.component("BlockTimeline", ki), e.component("BlockTripleCardDisplay", Li), e.component("BlockVimeo", Mi), e.component("Organism404", Ei), e.component("OrganismFilter", Gi), e.component("OrganismFooter", vs), e.component("OrganismHeader", Ds), e.component("OrganismLanguageSwitcher", Ns), e.component("OrganismPagination", js), e.component("OrganismSearch", Ws);
|
|
2663
2702
|
}
|
|
2664
2703
|
};
|
|
2665
2704
|
export {
|
|
2666
2705
|
J as AtomButton,
|
|
2667
2706
|
Ie as AtomCheckbox,
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2707
|
+
Ve as AtomChip,
|
|
2708
|
+
Ee as AtomDropdown,
|
|
2709
|
+
T as AtomImage,
|
|
2671
2710
|
G as AtomLabel,
|
|
2672
|
-
|
|
2711
|
+
A as AtomLink,
|
|
2673
2712
|
Ze as AtomRadioButton,
|
|
2674
2713
|
st as AtomSelect,
|
|
2675
2714
|
mt as AtomSlider,
|
|
2676
2715
|
Dt as AtomTextField,
|
|
2677
2716
|
wt as AtomTextarea,
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2717
|
+
U as AtomVideo,
|
|
2718
|
+
Ba as BlockFacts,
|
|
2719
|
+
Ma as BlockFeatures,
|
|
2720
|
+
Ra as BlockFormScript,
|
|
2721
|
+
sl as BlockHeadline,
|
|
2722
|
+
fl as BlockHero,
|
|
2723
|
+
Ya as BlockImage,
|
|
2724
|
+
tl as BlockImageGallery,
|
|
2725
|
+
Sl as BlockLogoWall,
|
|
2726
|
+
Bl as BlockMicroStories,
|
|
2727
|
+
Al as BlockPolicy,
|
|
2728
|
+
Fl as BlockProductHero,
|
|
2729
|
+
El as BlockPromo,
|
|
2730
|
+
ei as BlockQuote,
|
|
2731
|
+
si as BlockRichText,
|
|
2732
|
+
_i as BlockRichTextColumns,
|
|
2733
|
+
ki as BlockTimeline,
|
|
2734
|
+
Li as BlockTripleCardDisplay,
|
|
2735
|
+
Mi as BlockVimeo,
|
|
2736
|
+
Yt as MoleculeAddress,
|
|
2698
2737
|
ea as MoleculeBulletList,
|
|
2699
2738
|
sa as MoleculeCard,
|
|
2700
2739
|
ha as MoleculeEventCard,
|
|
2701
2740
|
de as MoleculeModal,
|
|
2702
2741
|
ya as MoleculeTextCard,
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2742
|
+
Ei as Organism404,
|
|
2743
|
+
Gi as OrganismFilter,
|
|
2744
|
+
vs as OrganismFooter,
|
|
2745
|
+
Ds as OrganismHeader,
|
|
2746
|
+
Ns as OrganismLanguageSwitcher,
|
|
2747
|
+
js as OrganismPagination,
|
|
2748
|
+
Ws as OrganismSearch,
|
|
2749
|
+
Qs as default
|
|
2711
2750
|
};
|