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