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