@mirweb/mir-web-components 1.6.15 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/blocks/flashcards/flashcards.vue.d.ts +5 -0
- package/dist/components/blocks/flashcards/flashcards.vue.d.ts.map +1 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/main.d.ts +3 -1
- package/dist/components/molecules/flashcard/flashcard.vue.d.ts +5 -0
- package/dist/components/molecules/flashcard/flashcard.vue.d.ts.map +1 -0
- package/dist/mir-web-components.cjs.js +1 -1
- package/dist/mir-web-components.css +1 -1
- package/dist/mir-web-components.es.js +1163 -993
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as g, computed as D, openBlock as
|
|
2
|
-
const
|
|
1
|
+
import { defineComponent as g, computed as D, openBlock as s, createElementBlock as i, normalizeClass as p, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as O, popScopeId as H, createTextVNode as G, ref as q, resolveDirective as _e, withDirectives as K, Fragment as P, renderList as F, vShow as Q, normalizeProps as C, guardReactiveProps as L, toRefs as Se, mergeProps as X, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as T, createCommentVNode as h, watchEffect as pe, withKeys as qe, useSlots as Ce, normalizeStyle as x, isRef as ce, unref as I, onMounted as me, watch as Y, onUnmounted as Ae } from "vue";
|
|
2
|
+
const Le = ["aria-label"], De = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
5
5
|
variant: { default: "primary" },
|
|
@@ -7,25 +7,25 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
7
7
|
buttonText: { default: "" }
|
|
8
8
|
},
|
|
9
9
|
setup(e) {
|
|
10
|
-
const
|
|
10
|
+
const a = {
|
|
11
11
|
primary: "primary",
|
|
12
12
|
primaryDark: "primary-dark",
|
|
13
13
|
secondary: "secondary",
|
|
14
14
|
close: "close",
|
|
15
15
|
next: "next",
|
|
16
16
|
previous: "previous"
|
|
17
|
-
}, r = e,
|
|
18
|
-
return (l,
|
|
19
|
-
class:
|
|
17
|
+
}, r = e, o = D(() => a[r.variant]);
|
|
18
|
+
return (l, _) => (s(), i("button", {
|
|
19
|
+
class: p(["button", "button--" + o.value]),
|
|
20
20
|
"aria-label": l.ariaLabel
|
|
21
|
-
}, d(
|
|
21
|
+
}, d(o.value === "close" ? "" : l.buttonText), 11, Le));
|
|
22
22
|
}
|
|
23
|
-
}), f = (e,
|
|
23
|
+
}), f = (e, a) => {
|
|
24
24
|
const r = e.__vccOpts || e;
|
|
25
|
-
for (const [
|
|
26
|
-
r[
|
|
25
|
+
for (const [o, l] of a)
|
|
26
|
+
r[o] = l;
|
|
27
27
|
return r;
|
|
28
|
-
},
|
|
28
|
+
}, se = /* @__PURE__ */ f(De, [["__scopeId", "data-v-f61b579c"]]), Te = (e) => (O("data-v-0c4c6d8e"), e = e(), H(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ Te(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
|
|
29
29
|
__name: "checkbox",
|
|
30
30
|
props: {
|
|
31
31
|
name: { default: "checkbox" },
|
|
@@ -36,15 +36,15 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
36
36
|
checked: { type: Boolean, default: !1 }
|
|
37
37
|
},
|
|
38
38
|
emits: ["input"],
|
|
39
|
-
setup(e, { emit:
|
|
40
|
-
const r =
|
|
41
|
-
const
|
|
42
|
-
r("input",
|
|
39
|
+
setup(e, { emit: a }) {
|
|
40
|
+
const r = a, o = (l) => {
|
|
41
|
+
const _ = l.target;
|
|
42
|
+
r("input", _.checked);
|
|
43
43
|
};
|
|
44
|
-
return (l,
|
|
45
|
-
class:
|
|
44
|
+
return (l, _) => (s(), i("div", {
|
|
45
|
+
class: p(["checkbox__wrapper", l.disabled ? "disabled" : ""])
|
|
46
46
|
}, [
|
|
47
|
-
|
|
47
|
+
t("input", {
|
|
48
48
|
id: l.id,
|
|
49
49
|
type: "checkbox",
|
|
50
50
|
name: l.name,
|
|
@@ -53,43 +53,43 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
53
53
|
required: l.required,
|
|
54
54
|
checked: l.checked,
|
|
55
55
|
class: "checkbox__checkbox",
|
|
56
|
-
onChange:
|
|
57
|
-
}, null, 40,
|
|
58
|
-
|
|
56
|
+
onChange: o
|
|
57
|
+
}, null, 40, Ve),
|
|
58
|
+
t("label", {
|
|
59
59
|
for: l.id,
|
|
60
|
-
class:
|
|
60
|
+
class: p(["checkbox__label", l.required ? "required" : ""])
|
|
61
61
|
}, [
|
|
62
|
-
|
|
62
|
+
Fe,
|
|
63
63
|
c(l.$slots, "default", {}, void 0, !0)
|
|
64
|
-
], 10,
|
|
64
|
+
], 10, Pe)
|
|
65
65
|
], 2));
|
|
66
66
|
}
|
|
67
|
-
}),
|
|
67
|
+
}), ve = /* @__PURE__ */ f(Me, [["__scopeId", "data-v-0c4c6d8e"]]), ze = (e) => (O("data-v-08813346"), e = e(), H(), e), Oe = ["aria-label"], He = /* @__PURE__ */ ze(() => /* @__PURE__ */ t("img", {
|
|
68
68
|
src: "https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",
|
|
69
69
|
alt: "close",
|
|
70
70
|
class: "close-icon"
|
|
71
|
-
}, null, -1)),
|
|
71
|
+
}, null, -1)), Re = /* @__PURE__ */ g({
|
|
72
72
|
__name: "chip",
|
|
73
73
|
props: {
|
|
74
74
|
text: { default: "" }
|
|
75
75
|
},
|
|
76
76
|
emits: ["remove-chip"],
|
|
77
77
|
setup(e) {
|
|
78
|
-
const
|
|
79
|
-
return (
|
|
78
|
+
const a = e, r = D(() => `Chip: ${a.text}`);
|
|
79
|
+
return (o, l) => (s(), i("div", {
|
|
80
80
|
class: "chip__wrapper",
|
|
81
|
-
onClick: l[0] || (l[0] = (
|
|
81
|
+
onClick: l[0] || (l[0] = (_) => o.$emit("remove-chip"))
|
|
82
82
|
}, [
|
|
83
|
-
|
|
83
|
+
t("span", {
|
|
84
84
|
class: "chip",
|
|
85
85
|
"aria-label": r.value
|
|
86
86
|
}, [
|
|
87
|
-
G(d(
|
|
88
|
-
|
|
89
|
-
], 8,
|
|
87
|
+
G(d(o.text) + " ", 1),
|
|
88
|
+
He
|
|
89
|
+
], 8, Oe)
|
|
90
90
|
]));
|
|
91
91
|
}
|
|
92
|
-
}),
|
|
92
|
+
}), Ne = /* @__PURE__ */ f(Re, [["__scopeId", "data-v-08813346"]]), Ee = ["value"], je = ["id"], Ke = { class: "listbox__dropdown" }, Ue = ["id", "aria-labelledby", "aria-disabled"], Ge = ["aria-labelledby", "aria-activedescendant"], Je = ["aria-selected", "data-value"], We = /* @__PURE__ */ g({
|
|
93
93
|
__name: "dropdown",
|
|
94
94
|
props: {
|
|
95
95
|
modelValue: {},
|
|
@@ -103,186 +103,186 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
103
103
|
variant: { default: "primary" }
|
|
104
104
|
},
|
|
105
105
|
emits: ["update:modelValue"],
|
|
106
|
-
setup(e, { emit:
|
|
106
|
+
setup(e, { emit: a }) {
|
|
107
107
|
const r = {
|
|
108
108
|
primary: "dropdown-dark-bg-primary",
|
|
109
109
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
110
|
-
},
|
|
111
|
-
const
|
|
112
|
-
(B) => B.value ===
|
|
110
|
+
}, o = e, l = D(() => r[o.variant]), _ = q(null), n = q(null), u = q([]), b = q(0), v = q(""), k = q(!0), w = q(0), te = a, ie = D(() => {
|
|
111
|
+
const m = o.options.find(
|
|
112
|
+
(B) => B.value === o.modelValue
|
|
113
113
|
);
|
|
114
|
-
return
|
|
114
|
+
return m && m.label;
|
|
115
115
|
});
|
|
116
|
-
function
|
|
117
|
-
te("update:modelValue",
|
|
116
|
+
function re(m) {
|
|
117
|
+
te("update:modelValue", m);
|
|
118
118
|
}
|
|
119
|
-
function
|
|
120
|
-
var
|
|
121
|
-
const B =
|
|
122
|
-
B.getAttribute("role") === "option" && (J(B), oe(), (
|
|
119
|
+
function ne(m) {
|
|
120
|
+
var A;
|
|
121
|
+
const B = m.target;
|
|
122
|
+
B.getAttribute("role") === "option" && (J(B), oe(), (A = _.value) == null || A.focus());
|
|
123
123
|
}
|
|
124
|
-
function U(
|
|
125
|
-
var
|
|
126
|
-
const B =
|
|
124
|
+
function U(m) {
|
|
125
|
+
var A;
|
|
126
|
+
const B = m.key;
|
|
127
127
|
switch (B) {
|
|
128
128
|
case "ArrowUp":
|
|
129
129
|
case "ArrowDown": {
|
|
130
|
-
|
|
131
|
-
const
|
|
132
|
-
(W) => W.value ===
|
|
130
|
+
m.preventDefault();
|
|
131
|
+
const V = o.options.findIndex(
|
|
132
|
+
(W) => W.value === o.modelValue
|
|
133
133
|
);
|
|
134
|
-
let
|
|
135
|
-
B === "ArrowUp" ?
|
|
134
|
+
let R = V ? u.value[V] : u.value[0];
|
|
135
|
+
B === "ArrowUp" ? V - 1 >= 0 && (R = u.value[V - 1]) : V + 1 <= o.options.length && (R = u.value[V + 1]), R && J(R);
|
|
136
136
|
break;
|
|
137
137
|
}
|
|
138
138
|
case "Home":
|
|
139
139
|
case "PageUp":
|
|
140
|
-
|
|
140
|
+
m.preventDefault(), N();
|
|
141
141
|
break;
|
|
142
142
|
case "End":
|
|
143
143
|
case "PageDown":
|
|
144
|
-
|
|
144
|
+
m.preventDefault(), $e();
|
|
145
145
|
break;
|
|
146
146
|
case "Enter":
|
|
147
147
|
case "Escape":
|
|
148
|
-
|
|
148
|
+
m.preventDefault(), oe(), (A = _.value) == null || A.focus();
|
|
149
149
|
break;
|
|
150
150
|
default: {
|
|
151
|
-
const
|
|
152
|
-
|
|
151
|
+
const V = E(B);
|
|
152
|
+
V && J(V);
|
|
153
153
|
break;
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
|
-
function ae(
|
|
158
|
-
if (!
|
|
159
|
-
switch (
|
|
157
|
+
function ae(m) {
|
|
158
|
+
if (!o.disabled)
|
|
159
|
+
switch (m.key) {
|
|
160
160
|
case "ArrowUp":
|
|
161
161
|
case "ArrowDown":
|
|
162
|
-
|
|
162
|
+
m.preventDefault(), ue(), U(m);
|
|
163
163
|
break;
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
|
-
function
|
|
167
|
-
|
|
166
|
+
function de(m) {
|
|
167
|
+
m && m.removeAttribute("aria-selected");
|
|
168
168
|
}
|
|
169
169
|
function $() {
|
|
170
170
|
b.value && (clearTimeout(b.value), b.value = 0), b.value = setTimeout(() => {
|
|
171
171
|
v.value = "", b.value = 0;
|
|
172
172
|
}, 500);
|
|
173
173
|
}
|
|
174
|
-
function E(
|
|
174
|
+
function E(m) {
|
|
175
175
|
let B = "";
|
|
176
|
-
(v.value === "" || B !==
|
|
177
|
-
(
|
|
178
|
-
)), v.value = B ===
|
|
179
|
-
let
|
|
176
|
+
(v.value === "" || B !== m) && (w.value = o.options.findIndex(
|
|
177
|
+
(V) => V.value === o.modelValue
|
|
178
|
+
)), v.value = B === m ? m : v.value + m, B = m, $();
|
|
179
|
+
let A = j(
|
|
180
180
|
w.value + 1,
|
|
181
|
-
|
|
181
|
+
o.options.length
|
|
182
182
|
);
|
|
183
|
-
return !
|
|
183
|
+
return !A && v.value.length === 1 && (A = j(0, w.value)), w.value = (w.value + 1) % o.options.length, A;
|
|
184
184
|
}
|
|
185
|
-
function j(
|
|
186
|
-
for (let
|
|
187
|
-
if (
|
|
188
|
-
return
|
|
185
|
+
function j(m, B) {
|
|
186
|
+
for (let A = m; A < B; A++)
|
|
187
|
+
if (o.options[A].label && o.options[A].label.toUpperCase().indexOf(v.value.toUpperCase()) === 0)
|
|
188
|
+
return u.value[A];
|
|
189
189
|
return null;
|
|
190
190
|
}
|
|
191
191
|
function N() {
|
|
192
|
-
J(
|
|
192
|
+
J(u.value[0]);
|
|
193
193
|
}
|
|
194
|
-
function J(
|
|
195
|
-
var
|
|
196
|
-
const B =
|
|
197
|
-
if (
|
|
198
|
-
const
|
|
199
|
-
(
|
|
200
|
-
), W =
|
|
201
|
-
|
|
194
|
+
function J(m) {
|
|
195
|
+
var A, V;
|
|
196
|
+
const B = m.getAttribute("data-value");
|
|
197
|
+
if (o.modelValue) {
|
|
198
|
+
const R = o.options.findIndex(
|
|
199
|
+
(Be) => Be.value === o.modelValue
|
|
200
|
+
), W = u.value[R];
|
|
201
|
+
de(W);
|
|
202
202
|
}
|
|
203
|
-
if (
|
|
203
|
+
if (m.setAttribute("aria-selected", "true"), (A = n.value) == null || A.setAttribute(
|
|
204
204
|
"aria-activedescendant",
|
|
205
205
|
B || ""
|
|
206
|
-
),
|
|
207
|
-
const
|
|
208
|
-
W >
|
|
206
|
+
), re(B || ""), n.value && n.value.scrollHeight > n.value.clientHeight) {
|
|
207
|
+
const R = n.value.clientHeight + n.value.scrollTop, W = m.offsetTop + m.offsetHeight;
|
|
208
|
+
W > R ? n.value.scrollTop = W - ((V = n.value) == null ? void 0 : V.clientHeight) : m.offsetTop < n.value.scrollTop && (n.value.scrollTop = m.offsetTop);
|
|
209
209
|
}
|
|
210
210
|
}
|
|
211
|
-
function
|
|
211
|
+
function $e() {
|
|
212
212
|
var B;
|
|
213
|
-
const
|
|
214
|
-
J(
|
|
213
|
+
const m = (B = u.value) == null ? void 0 : B[o.options.length - 1];
|
|
214
|
+
J(m);
|
|
215
215
|
}
|
|
216
216
|
function oe() {
|
|
217
|
-
var
|
|
218
|
-
k.value = !0, (
|
|
217
|
+
var m;
|
|
218
|
+
k.value = !0, (m = _.value) == null || m.removeAttribute("aria-expanded");
|
|
219
219
|
}
|
|
220
|
-
function
|
|
221
|
-
var
|
|
222
|
-
k.value = !1, (
|
|
220
|
+
function ue() {
|
|
221
|
+
var m, B;
|
|
222
|
+
k.value = !1, (m = _.value) == null || m.setAttribute("aria-expanded", "true"), (B = n.value) == null || B.focus();
|
|
223
223
|
}
|
|
224
|
-
function
|
|
225
|
-
|
|
224
|
+
function we() {
|
|
225
|
+
o.disabled || (k.value ? ue() : oe());
|
|
226
226
|
}
|
|
227
|
-
return (
|
|
228
|
-
const
|
|
229
|
-
return
|
|
227
|
+
return (m, B) => {
|
|
228
|
+
const A = _e("click-outside");
|
|
229
|
+
return s(), i("div", {
|
|
230
230
|
ref: "listbox",
|
|
231
231
|
class: "listbox__wrapper",
|
|
232
|
-
value:
|
|
232
|
+
value: m.modelValue
|
|
233
233
|
}, [
|
|
234
|
-
|
|
235
|
-
id: `${
|
|
236
|
-
class:
|
|
237
|
-
"listbox__label--visually-hidden": !
|
|
238
|
-
"is-disabled":
|
|
239
|
-
"is-required":
|
|
234
|
+
t("label", {
|
|
235
|
+
id: `${m.name}-label`,
|
|
236
|
+
class: p([{
|
|
237
|
+
"listbox__label--visually-hidden": !m.showLabel,
|
|
238
|
+
"is-disabled": m.disabled,
|
|
239
|
+
"is-required": m.required
|
|
240
240
|
}, "listbox__label"])
|
|
241
|
-
}, d(
|
|
242
|
-
K((
|
|
243
|
-
|
|
244
|
-
id: `${
|
|
241
|
+
}, d(m.label), 11, je),
|
|
242
|
+
K((s(), i("div", Ke, [
|
|
243
|
+
t("button", {
|
|
244
|
+
id: `${m.name}-button-label`,
|
|
245
245
|
ref_key: "listboxButton",
|
|
246
|
-
ref:
|
|
247
|
-
"aria-labelledby": `${
|
|
246
|
+
ref: _,
|
|
247
|
+
"aria-labelledby": `${m.name}-label ${m.name}-button-label`,
|
|
248
248
|
type: "button",
|
|
249
249
|
"aria-haspopup": "listbox",
|
|
250
|
-
"aria-disabled":
|
|
251
|
-
class:
|
|
252
|
-
onClick:
|
|
250
|
+
"aria-disabled": m.disabled,
|
|
251
|
+
class: p(["listbox__button", l.value]),
|
|
252
|
+
onClick: we,
|
|
253
253
|
onKeydown: ae
|
|
254
|
-
}, d(
|
|
255
|
-
K(
|
|
254
|
+
}, d(m.modelValue ? ie.value : m.placeholder), 43, Ue),
|
|
255
|
+
K(t("ul", {
|
|
256
256
|
ref_key: "listboxNode",
|
|
257
257
|
ref: n,
|
|
258
|
-
"aria-labelledby": `${
|
|
259
|
-
"aria-activedescendant":
|
|
258
|
+
"aria-labelledby": `${m.name}-label`,
|
|
259
|
+
"aria-activedescendant": m.modelValue,
|
|
260
260
|
tabindex: "0",
|
|
261
261
|
role: "listbox",
|
|
262
262
|
class: "listbox__list",
|
|
263
263
|
onKeydown: U,
|
|
264
|
-
onClick:
|
|
264
|
+
onClick: ne
|
|
265
265
|
}, [
|
|
266
|
-
(
|
|
267
|
-
key: `${
|
|
266
|
+
(s(!0), i(P, null, F(m.options, (V, R) => (s(), i("li", {
|
|
267
|
+
key: `${m.name}-option-${R}`,
|
|
268
268
|
ref_for: !0,
|
|
269
269
|
ref_key: "listboxOptions",
|
|
270
|
-
ref:
|
|
271
|
-
"aria-selected":
|
|
272
|
-
"data-value":
|
|
270
|
+
ref: u,
|
|
271
|
+
"aria-selected": V.value === m.modelValue,
|
|
272
|
+
"data-value": V.value,
|
|
273
273
|
class: "listbox__option",
|
|
274
274
|
role: "option"
|
|
275
|
-
}, d(
|
|
276
|
-
], 40,
|
|
275
|
+
}, d(V.label), 9, Je))), 128))
|
|
276
|
+
], 40, Ge), [
|
|
277
277
|
[Q, !k.value]
|
|
278
278
|
])
|
|
279
279
|
])), [
|
|
280
|
-
[
|
|
280
|
+
[A, oe]
|
|
281
281
|
])
|
|
282
|
-
], 8,
|
|
282
|
+
], 8, Ee);
|
|
283
283
|
};
|
|
284
284
|
}
|
|
285
|
-
}),
|
|
285
|
+
}), Ye = /* @__PURE__ */ f(We, [["__scopeId", "data-v-a17afd8c"]]), Qe = { class: "image__wrapper" }, Ze = /* @__PURE__ */ g({
|
|
286
286
|
__name: "image",
|
|
287
287
|
props: {
|
|
288
288
|
src: { default: void 0 },
|
|
@@ -294,27 +294,27 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
294
294
|
loading: { default: "auto" }
|
|
295
295
|
},
|
|
296
296
|
setup(e) {
|
|
297
|
-
return (
|
|
298
|
-
c(
|
|
297
|
+
return (a, r) => (s(), i("div", Qe, [
|
|
298
|
+
c(a.$slots, "default", C(L(a.$attrs)))
|
|
299
299
|
]));
|
|
300
300
|
}
|
|
301
|
-
}),
|
|
301
|
+
}), z = /* @__PURE__ */ f(Ze, [["__scopeId", "data-v-e10217bd"]]), Xe = { class: "label__wrapper" }, xe = ["aria-label", "label-dark"], et = /* @__PURE__ */ g({
|
|
302
302
|
__name: "label",
|
|
303
303
|
props: {
|
|
304
304
|
text: {},
|
|
305
305
|
labelDark: { type: Boolean, default: !1 }
|
|
306
306
|
},
|
|
307
307
|
setup(e) {
|
|
308
|
-
const
|
|
309
|
-
return (
|
|
310
|
-
|
|
308
|
+
const a = e, r = D(() => `Label: ${a.text}`);
|
|
309
|
+
return (o, l) => (s(), i("div", Xe, [
|
|
310
|
+
t("span", {
|
|
311
311
|
"aria-label": r.value,
|
|
312
|
-
"label-dark":
|
|
313
|
-
class:
|
|
314
|
-
}, d(
|
|
312
|
+
"label-dark": o.labelDark,
|
|
313
|
+
class: p(o.labelDark ? "label--dark" : "label--light")
|
|
314
|
+
}, d(o.text), 11, xe)
|
|
315
315
|
]));
|
|
316
316
|
}
|
|
317
|
-
}), Z = /* @__PURE__ */ f(
|
|
317
|
+
}), Z = /* @__PURE__ */ f(et, [["__scopeId", "data-v-7d9d3a8a"]]), tt = { class: "link__wrapper" }, M = /* @__PURE__ */ g({
|
|
318
318
|
__name: "link",
|
|
319
319
|
props: {
|
|
320
320
|
linkType: { default: "regular" },
|
|
@@ -323,7 +323,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
323
323
|
disabled: { type: Boolean, default: !1 }
|
|
324
324
|
},
|
|
325
325
|
setup(e) {
|
|
326
|
-
const
|
|
326
|
+
const a = {
|
|
327
327
|
primary: "mir-link--btn button button--primary",
|
|
328
328
|
primary_dark: "mir-link--btn button button--primary-dark",
|
|
329
329
|
secondary: "mir-link--btn button button--secondary",
|
|
@@ -336,24 +336,24 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
336
336
|
hover: "underline-hover",
|
|
337
337
|
true: "add-underline",
|
|
338
338
|
false: "remove-underline"
|
|
339
|
-
},
|
|
340
|
-
const { ...
|
|
341
|
-
return
|
|
339
|
+
}, o = e, l = D(() => a[o.linkType]), _ = D(() => r[o.underline]), n = D(() => {
|
|
340
|
+
const { ...u } = Se(o);
|
|
341
|
+
return u;
|
|
342
342
|
});
|
|
343
|
-
return (
|
|
344
|
-
|
|
343
|
+
return (u, b) => (s(), i("div", tt, [
|
|
344
|
+
t("div", X(n.value, {
|
|
345
345
|
class: ["mir-link", [
|
|
346
346
|
l.value,
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
347
|
+
u.disabled ? "disabled" : "",
|
|
348
|
+
_.value,
|
|
349
|
+
u.arrow ? "link-arrow" : ""
|
|
350
350
|
]]
|
|
351
351
|
}), [
|
|
352
|
-
c(
|
|
352
|
+
c(u.$slots, "default")
|
|
353
353
|
], 16)
|
|
354
354
|
]));
|
|
355
355
|
}
|
|
356
|
-
}),
|
|
356
|
+
}), at = (e) => (O("data-v-fa1bda9b"), e = e(), H(), e), ot = ["id", "name", "value", "checked", "disabled", "required"], st = ["for"], lt = /* @__PURE__ */ at(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), it = /* @__PURE__ */ g({
|
|
357
357
|
__name: "radio-button",
|
|
358
358
|
props: {
|
|
359
359
|
name: { default: "radio" },
|
|
@@ -364,15 +364,15 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
364
364
|
required: { type: Boolean, default: !1 }
|
|
365
365
|
},
|
|
366
366
|
emits: ["input"],
|
|
367
|
-
setup(e, { emit:
|
|
368
|
-
const r =
|
|
369
|
-
const
|
|
370
|
-
r("input",
|
|
367
|
+
setup(e, { emit: a }) {
|
|
368
|
+
const r = a, o = (l) => {
|
|
369
|
+
const _ = l.target;
|
|
370
|
+
r("input", _.checked);
|
|
371
371
|
};
|
|
372
|
-
return (l,
|
|
373
|
-
class:
|
|
372
|
+
return (l, _) => (s(), i("div", {
|
|
373
|
+
class: p(["radio__wrapper", l.disabled ? "disabled" : ""])
|
|
374
374
|
}, [
|
|
375
|
-
|
|
375
|
+
t("input", {
|
|
376
376
|
id: l.id,
|
|
377
377
|
type: "radio",
|
|
378
378
|
name: l.name,
|
|
@@ -381,18 +381,18 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
381
381
|
disabled: l.disabled,
|
|
382
382
|
required: l.required,
|
|
383
383
|
class: "radio__radio",
|
|
384
|
-
onChange:
|
|
385
|
-
}, null, 40,
|
|
386
|
-
|
|
384
|
+
onChange: o
|
|
385
|
+
}, null, 40, ot),
|
|
386
|
+
t("label", {
|
|
387
387
|
for: l.id,
|
|
388
|
-
class:
|
|
388
|
+
class: p(["radio__label", l.required ? "required" : ""])
|
|
389
389
|
}, [
|
|
390
|
-
|
|
390
|
+
lt,
|
|
391
391
|
c(l.$slots, "default", {}, void 0, !0)
|
|
392
|
-
], 10,
|
|
392
|
+
], 10, st)
|
|
393
393
|
], 2));
|
|
394
394
|
}
|
|
395
|
-
}),
|
|
395
|
+
}), rt = /* @__PURE__ */ f(it, [["__scopeId", "data-v-fa1bda9b"]]), nt = { class: "select__wrapper" }, dt = ["for"], ct = ["id", "disabled", "name", "value"], ut = ["value"], _t = /* @__PURE__ */ g({
|
|
396
396
|
__name: "select",
|
|
397
397
|
props: {
|
|
398
398
|
id: {},
|
|
@@ -405,76 +405,76 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
405
405
|
},
|
|
406
406
|
emits: ["update:modelValue"],
|
|
407
407
|
setup(e) {
|
|
408
|
-
return (
|
|
409
|
-
|
|
410
|
-
for:
|
|
411
|
-
class:
|
|
412
|
-
}, d(
|
|
413
|
-
|
|
414
|
-
id:
|
|
415
|
-
class:
|
|
416
|
-
disabled:
|
|
417
|
-
name:
|
|
418
|
-
value:
|
|
419
|
-
onChange: r[0] || (r[0] = (
|
|
420
|
-
|
|
408
|
+
return (a, r) => (s(), i("div", nt, [
|
|
409
|
+
t("label", {
|
|
410
|
+
for: a.id,
|
|
411
|
+
class: p([a.required ? "required" : "", a.disabled ? "disabled" : ""])
|
|
412
|
+
}, d(a.label), 11, dt),
|
|
413
|
+
t("select", {
|
|
414
|
+
id: a.id,
|
|
415
|
+
class: p(a.disabled ? "disabled" : ""),
|
|
416
|
+
disabled: a.disabled,
|
|
417
|
+
name: a.name,
|
|
418
|
+
value: a.modelValue,
|
|
419
|
+
onChange: r[0] || (r[0] = (o) => {
|
|
420
|
+
a.$emit("update:modelValue", o.target.value), o.target.blur();
|
|
421
421
|
})
|
|
422
422
|
}, [
|
|
423
|
-
(
|
|
424
|
-
key:
|
|
425
|
-
value:
|
|
426
|
-
}, d(
|
|
427
|
-
], 42,
|
|
423
|
+
(s(!0), i(P, null, F(a.options, (o) => (s(), i("option", {
|
|
424
|
+
key: o.value,
|
|
425
|
+
value: o.value
|
|
426
|
+
}, d(o.text), 9, ut))), 128))
|
|
427
|
+
], 42, ct)
|
|
428
428
|
]));
|
|
429
429
|
}
|
|
430
|
-
}),
|
|
430
|
+
}), ht = /* @__PURE__ */ f(_t, [["__scopeId", "data-v-d5c46463"]]), pt = { class: "modal__wrapper" }, mt = /* @__PURE__ */ g({
|
|
431
431
|
__name: "modal",
|
|
432
432
|
props: {
|
|
433
433
|
show: { type: Boolean, default: !1 },
|
|
434
434
|
searchBar: { type: Boolean, default: !1 }
|
|
435
435
|
},
|
|
436
436
|
emits: ["update:show"],
|
|
437
|
-
setup(e, { emit:
|
|
438
|
-
const r = e,
|
|
439
|
-
|
|
437
|
+
setup(e, { emit: a }) {
|
|
438
|
+
const r = e, o = a, l = () => {
|
|
439
|
+
o("update:show", !r.show);
|
|
440
440
|
};
|
|
441
|
-
return (
|
|
442
|
-
S(
|
|
441
|
+
return (_, n) => (s(), i("div", pt, [
|
|
442
|
+
S(Ie, {
|
|
443
443
|
duration: 300,
|
|
444
444
|
name: "nested"
|
|
445
445
|
}, {
|
|
446
446
|
default: y(() => [
|
|
447
|
-
K(
|
|
448
|
-
class:
|
|
447
|
+
K(t("div", {
|
|
448
|
+
class: p(["overlay", _.searchBar ? "overlay-search" : "overlay-default"]),
|
|
449
449
|
ariaLabel: "modal",
|
|
450
450
|
role: "dialog",
|
|
451
451
|
onClick: l
|
|
452
452
|
}, [
|
|
453
|
-
|
|
453
|
+
t("div", {
|
|
454
454
|
id: "modal",
|
|
455
|
-
class:
|
|
456
|
-
onClick: n[0] || (n[0] =
|
|
455
|
+
class: p([_.searchBar ? "search" : ""]),
|
|
456
|
+
onClick: n[0] || (n[0] = he(() => {
|
|
457
457
|
}, ["stop"]))
|
|
458
458
|
}, [
|
|
459
|
-
|
|
460
|
-
|
|
459
|
+
t("div", null, [
|
|
460
|
+
_.searchBar ? h("", !0) : (s(), T(se, {
|
|
461
461
|
key: 0,
|
|
462
462
|
"aria-label": "close",
|
|
463
463
|
variant: "close",
|
|
464
464
|
onClick: l
|
|
465
465
|
}))
|
|
466
466
|
]),
|
|
467
|
-
c(
|
|
467
|
+
c(_.$slots, "default", {}, void 0, !0)
|
|
468
468
|
], 2)
|
|
469
469
|
], 2), [
|
|
470
|
-
[Q,
|
|
470
|
+
[Q, _.show]
|
|
471
471
|
])
|
|
472
472
|
]),
|
|
473
473
|
_: 3
|
|
474
474
|
})
|
|
475
475
|
]));
|
|
476
476
|
}
|
|
477
|
-
}),
|
|
477
|
+
}), fe = /* @__PURE__ */ f(mt, [["__scopeId", "data-v-80f0fb08"]]), vt = { class: "slider__wrapper" }, ft = { class: "slider__label" }, gt = ["for"], bt = ["aria-label"], yt = { class: "slider__content" }, kt = ["id", "name", "value", "min", "step", "max"], $t = { class: "modal-information" }, wt = /* @__PURE__ */ g({
|
|
478
478
|
__name: "slider",
|
|
479
479
|
props: {
|
|
480
480
|
label: {},
|
|
@@ -489,74 +489,74 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
489
489
|
informationLabel: { default: "Additional information" }
|
|
490
490
|
},
|
|
491
491
|
emits: ["update:modelValue"],
|
|
492
|
-
setup(e, { emit:
|
|
493
|
-
const r = e,
|
|
492
|
+
setup(e, { emit: a }) {
|
|
493
|
+
const r = e, o = a, l = q(r.modelValue), _ = q(), n = q(!1), u = (v, k, w) => (v - k) / (w - k) * 100, b = (v) => {
|
|
494
494
|
var k;
|
|
495
|
-
(k =
|
|
495
|
+
(k = _.value) == null || k.style.setProperty("--ProgressPercent", `${v}%`);
|
|
496
496
|
};
|
|
497
|
-
return
|
|
498
|
-
if (
|
|
499
|
-
|
|
500
|
-
const v =
|
|
497
|
+
return pe(() => {
|
|
498
|
+
if (_.value) {
|
|
499
|
+
o("update:modelValue", l.value);
|
|
500
|
+
const v = u(l.value, r.min, r.max);
|
|
501
501
|
let k = (50 - v) / 100;
|
|
502
502
|
b(v + k);
|
|
503
503
|
}
|
|
504
|
-
}), (v, k) => (
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
504
|
+
}), (v, k) => (s(), i("div", null, [
|
|
505
|
+
t("div", vt, [
|
|
506
|
+
t("div", ft, [
|
|
507
|
+
t("label", {
|
|
508
508
|
for: v.id,
|
|
509
|
-
class:
|
|
510
|
-
}, d(v.label), 11,
|
|
511
|
-
v.information ? (
|
|
509
|
+
class: p([v.variant, ""])
|
|
510
|
+
}, d(v.label), 11, gt),
|
|
511
|
+
v.information ? (s(), i("i", {
|
|
512
512
|
key: 0,
|
|
513
513
|
role: "button",
|
|
514
|
-
class:
|
|
514
|
+
class: p([v.variant, "slider__information"]),
|
|
515
515
|
"aria-label": v.informationLabel,
|
|
516
516
|
tabindex: "0",
|
|
517
517
|
"aria-haspopup": "dialog",
|
|
518
518
|
onClick: k[0] || (k[0] = (w) => n.value = !n.value),
|
|
519
|
-
onKeyup: k[1] || (k[1] =
|
|
520
|
-
}, null, 42,
|
|
519
|
+
onKeyup: k[1] || (k[1] = qe((w) => n.value = !n.value, ["enter"]))
|
|
520
|
+
}, null, 42, bt)) : h("", !0)
|
|
521
521
|
]),
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
class:
|
|
522
|
+
t("div", yt, [
|
|
523
|
+
t("span", {
|
|
524
|
+
class: p([v.variant, "slider__minmax"])
|
|
525
525
|
}, d(v.min), 3),
|
|
526
|
-
|
|
526
|
+
t("input", {
|
|
527
527
|
id: v.id,
|
|
528
528
|
ref_key: "slider",
|
|
529
|
-
ref:
|
|
529
|
+
ref: _,
|
|
530
530
|
type: "range",
|
|
531
531
|
name: v.name,
|
|
532
532
|
value: v.modelValue,
|
|
533
533
|
min: v.min,
|
|
534
534
|
step: v.step,
|
|
535
535
|
max: v.max,
|
|
536
|
-
class:
|
|
536
|
+
class: p(v.variant),
|
|
537
537
|
onInput: k[2] || (k[2] = ({ target: w }) => l.value = parseFloat(w.value))
|
|
538
|
-
}, null, 42,
|
|
539
|
-
|
|
540
|
-
class:
|
|
538
|
+
}, null, 42, kt),
|
|
539
|
+
t("span", {
|
|
540
|
+
class: p([v.variant, "slider__minmax"])
|
|
541
541
|
}, d(v.max), 3)
|
|
542
542
|
]),
|
|
543
|
-
|
|
544
|
-
class:
|
|
543
|
+
t("span", {
|
|
544
|
+
class: p([v.variant, "slider__value"])
|
|
545
545
|
}, d(v.modelValue), 3)
|
|
546
546
|
]),
|
|
547
|
-
v.information ? (
|
|
547
|
+
v.information ? (s(), T(fe, {
|
|
548
548
|
key: 0,
|
|
549
549
|
show: n.value,
|
|
550
550
|
"onUpdate:show": k[3] || (k[3] = (w) => n.value = w)
|
|
551
551
|
}, {
|
|
552
552
|
default: y(() => [
|
|
553
|
-
|
|
553
|
+
t("p", $t, d(v.information), 1)
|
|
554
554
|
]),
|
|
555
555
|
_: 1
|
|
556
556
|
}, 8, ["show"])) : h("", !0)
|
|
557
557
|
]));
|
|
558
558
|
}
|
|
559
|
-
}),
|
|
559
|
+
}), Bt = /* @__PURE__ */ f(wt, [["__scopeId", "data-v-24a83011"]]), St = { id: "textarea-wrapper" }, It = ["for"], qt = ["id"], Ct = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], At = { class: "textarea-info" }, Lt = { key: 0 }, Dt = /* @__PURE__ */ g({
|
|
560
560
|
__name: "textarea",
|
|
561
561
|
props: {
|
|
562
562
|
id: { default: "" },
|
|
@@ -570,52 +570,52 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
570
570
|
},
|
|
571
571
|
emits: ["update:modelValue"],
|
|
572
572
|
setup(e) {
|
|
573
|
-
return (
|
|
574
|
-
|
|
575
|
-
for:
|
|
576
|
-
class:
|
|
577
|
-
}, d(
|
|
578
|
-
|
|
579
|
-
id:
|
|
573
|
+
return (a, r) => (s(), i("div", St, [
|
|
574
|
+
t("label", {
|
|
575
|
+
for: a.id,
|
|
576
|
+
class: p({ required: a.required })
|
|
577
|
+
}, d(a.labelText) + d(a.required ? " *" : ""), 11, It),
|
|
578
|
+
t("div", {
|
|
579
|
+
id: a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "textarea-wrapper__inner" : ""
|
|
580
580
|
}, [
|
|
581
|
-
|
|
582
|
-
id:
|
|
581
|
+
t("textarea", {
|
|
582
|
+
id: a.id,
|
|
583
583
|
rows: "10",
|
|
584
584
|
cols: "50",
|
|
585
|
-
name:
|
|
586
|
-
placeholder:
|
|
587
|
-
required:
|
|
588
|
-
disabled:
|
|
589
|
-
maxlength:
|
|
590
|
-
value:
|
|
591
|
-
class:
|
|
592
|
-
|
|
585
|
+
name: a.name,
|
|
586
|
+
placeholder: a.placeholder,
|
|
587
|
+
required: a.required,
|
|
588
|
+
disabled: a.disabled,
|
|
589
|
+
maxlength: a.maxLength,
|
|
590
|
+
value: a.modelValue,
|
|
591
|
+
class: p(
|
|
592
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit" : "border"
|
|
593
593
|
),
|
|
594
|
-
onInput: r[0] || (r[0] = (
|
|
595
|
-
}, null, 42,
|
|
596
|
-
], 8,
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
594
|
+
onInput: r[0] || (r[0] = (o) => a.$emit("update:modelValue", o.target.value))
|
|
595
|
+
}, null, 42, Ct)
|
|
596
|
+
], 8, qt),
|
|
597
|
+
t("div", At, [
|
|
598
|
+
t("div", null, [
|
|
599
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (s(), i("p", Lt, " Too many characters. Please make it shorter ")) : h("", !0)
|
|
600
600
|
]),
|
|
601
|
-
|
|
602
|
-
class:
|
|
603
|
-
|
|
601
|
+
t("p", {
|
|
602
|
+
class: p(
|
|
603
|
+
a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit-meter" : ""
|
|
604
604
|
)
|
|
605
|
-
}, d(
|
|
605
|
+
}, d(a.maxLength !== void 0 && a.modelValue !== void 0 && a.maxLength - a.modelValue.length >= 0 ? a.modelValue.length : 0) + " / " + d(a.maxLength), 3)
|
|
606
606
|
])
|
|
607
607
|
]));
|
|
608
608
|
}
|
|
609
|
-
}),
|
|
609
|
+
}), Tt = /* @__PURE__ */ f(Dt, [["__scopeId", "data-v-220a973c"]]), Vt = { class: "text-field__wrapper" }, Pt = ["for"], Ft = { key: 0 }, Mt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], zt = ["aria-expanded"], Ot = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Ht = {
|
|
610
610
|
key: 2,
|
|
611
611
|
class: "search"
|
|
612
|
-
},
|
|
612
|
+
}, Rt = {
|
|
613
613
|
key: 3,
|
|
614
614
|
class: "errorMessage"
|
|
615
|
-
},
|
|
615
|
+
}, Nt = {
|
|
616
616
|
key: 4,
|
|
617
617
|
class: "helperText"
|
|
618
|
-
},
|
|
618
|
+
}, Et = /* @__PURE__ */ g({
|
|
619
619
|
__name: "text-field",
|
|
620
620
|
props: {
|
|
621
621
|
type: { default: "text" },
|
|
@@ -634,7 +634,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
634
634
|
},
|
|
635
635
|
emits: ["update:modelValue"],
|
|
636
636
|
setup(e) {
|
|
637
|
-
const
|
|
637
|
+
const a = {
|
|
638
638
|
text: "text",
|
|
639
639
|
email: "email",
|
|
640
640
|
password: "password",
|
|
@@ -642,62 +642,62 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
642
642
|
tel: "tel",
|
|
643
643
|
url: "url",
|
|
644
644
|
search: "search"
|
|
645
|
-
}, r = e,
|
|
645
|
+
}, r = e, o = D(() => a[r.type]), l = q(!0), _ = D(
|
|
646
646
|
() => l.value ? "showPassword" : "hidePassword"
|
|
647
647
|
), n = D(
|
|
648
648
|
() => l.value ? "password" : "text"
|
|
649
649
|
);
|
|
650
|
-
return (
|
|
651
|
-
|
|
652
|
-
for:
|
|
653
|
-
class:
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
650
|
+
return (u, b) => (s(), i("div", Vt, [
|
|
651
|
+
t("label", {
|
|
652
|
+
for: u.id,
|
|
653
|
+
class: p([
|
|
654
|
+
u.required ? "required" : "",
|
|
655
|
+
u.disabled ? "disabled" : "",
|
|
656
|
+
u.search ? "search" : ""
|
|
657
657
|
])
|
|
658
|
-
}, d(
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
id:
|
|
658
|
+
}, d(u.label), 11, Pt),
|
|
659
|
+
o.value === "password" ? (s(), i("div", Ft, [
|
|
660
|
+
t("input", {
|
|
661
|
+
id: u.id,
|
|
662
662
|
ref: "passwordField",
|
|
663
663
|
type: n.value,
|
|
664
|
-
value:
|
|
665
|
-
placeholder:
|
|
666
|
-
required:
|
|
667
|
-
disabled:
|
|
668
|
-
name:
|
|
669
|
-
onInput: b[0] || (b[0] = (v) =>
|
|
670
|
-
}, null, 40,
|
|
671
|
-
|
|
664
|
+
value: u.modelValue,
|
|
665
|
+
placeholder: u.placeholder,
|
|
666
|
+
required: u.required,
|
|
667
|
+
disabled: u.disabled,
|
|
668
|
+
name: u.fieldName,
|
|
669
|
+
onInput: b[0] || (b[0] = (v) => u.$emit("update:modelValue", v.target.value))
|
|
670
|
+
}, null, 40, Mt),
|
|
671
|
+
t("i", {
|
|
672
672
|
role: "button",
|
|
673
|
-
class:
|
|
673
|
+
class: p([_.value]),
|
|
674
674
|
"aria-controls": "password",
|
|
675
675
|
"aria-expanded": !l.value,
|
|
676
676
|
onClick: b[1] || (b[1] = (v) => l.value = !l.value)
|
|
677
|
-
}, null, 10,
|
|
678
|
-
])) : (
|
|
677
|
+
}, null, 10, zt)
|
|
678
|
+
])) : (s(), i("input", {
|
|
679
679
|
key: 1,
|
|
680
|
-
id:
|
|
680
|
+
id: u.id,
|
|
681
681
|
ref: "textField",
|
|
682
|
-
type:
|
|
683
|
-
value:
|
|
684
|
-
placeholder:
|
|
685
|
-
required:
|
|
686
|
-
class:
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
682
|
+
type: o.value,
|
|
683
|
+
value: u.modelValue,
|
|
684
|
+
placeholder: u.placeholder,
|
|
685
|
+
required: u.required,
|
|
686
|
+
class: p([
|
|
687
|
+
u.invalid ? "invalid" : "",
|
|
688
|
+
u.valid ? "valid" : "",
|
|
689
|
+
u.search ? "search" : ""
|
|
690
690
|
]),
|
|
691
|
-
disabled:
|
|
692
|
-
name:
|
|
693
|
-
onInput: b[2] || (b[2] = (v) =>
|
|
694
|
-
}, null, 42,
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
691
|
+
disabled: u.disabled,
|
|
692
|
+
name: u.fieldName,
|
|
693
|
+
onInput: b[2] || (b[2] = (v) => u.$emit("update:modelValue", v.target.value))
|
|
694
|
+
}, null, 42, Ot)),
|
|
695
|
+
u.search ? (s(), i("i", Ht)) : h("", !0),
|
|
696
|
+
u.errorMessage ? (s(), i("strong", Rt, d(u.errorMessage), 1)) : h("", !0),
|
|
697
|
+
u.helperText ? (s(), i("span", Nt, d(u.helperText), 1)) : h("", !0)
|
|
698
698
|
]));
|
|
699
699
|
}
|
|
700
|
-
}),
|
|
700
|
+
}), jt = /* @__PURE__ */ f(Et, [["__scopeId", "data-v-414b9435"]]), Kt = { class: "video__wrapper" }, Ut = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Gt = ["src", "aria-label", "title", "width", "height"], Jt = /* @__PURE__ */ g({
|
|
701
701
|
__name: "video",
|
|
702
702
|
props: {
|
|
703
703
|
play: { type: Boolean, default: !1 },
|
|
@@ -713,45 +713,45 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
713
713
|
loop: { type: Boolean, default: !1 },
|
|
714
714
|
muted: { type: Boolean, default: !1 }
|
|
715
715
|
},
|
|
716
|
-
setup(e, { expose:
|
|
716
|
+
setup(e, { expose: a }) {
|
|
717
717
|
const r = e;
|
|
718
|
-
let
|
|
719
|
-
return
|
|
720
|
-
|
|
721
|
-
}),
|
|
718
|
+
let o = q(null);
|
|
719
|
+
return pe(() => {
|
|
720
|
+
o.value && (r.play ? o.value.play() : r.play || o.value.pause());
|
|
721
|
+
}), a({
|
|
722
722
|
resetVideo: () => {
|
|
723
|
-
|
|
723
|
+
o.value && (o.value.currentTime = 0, o.value.play());
|
|
724
724
|
}
|
|
725
|
-
}), (
|
|
726
|
-
|
|
725
|
+
}), (_, n) => (s(), i("div", Kt, [
|
|
726
|
+
_.localVideo ? (s(), i("video", {
|
|
727
727
|
key: 0,
|
|
728
728
|
ref_key: "videoRef",
|
|
729
|
-
ref:
|
|
730
|
-
"aria-label":
|
|
731
|
-
controls:
|
|
732
|
-
poster:
|
|
733
|
-
width:
|
|
734
|
-
height:
|
|
735
|
-
autoplay:
|
|
736
|
-
loop:
|
|
737
|
-
muted:
|
|
729
|
+
ref: o,
|
|
730
|
+
"aria-label": _.ariaLabel,
|
|
731
|
+
controls: _.controls,
|
|
732
|
+
poster: _.poster,
|
|
733
|
+
width: _.width,
|
|
734
|
+
height: _.height,
|
|
735
|
+
autoplay: _.autoplay,
|
|
736
|
+
loop: _.loop,
|
|
737
|
+
muted: _.muted,
|
|
738
738
|
type: "video/mp4",
|
|
739
739
|
playsinline: "",
|
|
740
|
-
src:
|
|
741
|
-
}, null, 8,
|
|
740
|
+
src: _.src
|
|
741
|
+
}, null, 8, Ut)) : (s(), i("iframe", {
|
|
742
742
|
key: 1,
|
|
743
|
-
src:
|
|
744
|
-
"aria-label":
|
|
745
|
-
title:
|
|
746
|
-
width:
|
|
747
|
-
height:
|
|
743
|
+
src: _.src,
|
|
744
|
+
"aria-label": _.ariaLabel,
|
|
745
|
+
title: _.title,
|
|
746
|
+
width: _.width,
|
|
747
|
+
height: _.height,
|
|
748
748
|
frameborder: "0",
|
|
749
749
|
allow: "autoplay; fullscreen",
|
|
750
750
|
allowfullscreen: ""
|
|
751
|
-
}, null, 8,
|
|
751
|
+
}, null, 8, Gt))
|
|
752
752
|
]));
|
|
753
753
|
}
|
|
754
|
-
}), ee = /* @__PURE__ */ f(
|
|
754
|
+
}), ee = /* @__PURE__ */ f(Jt, [["__scopeId", "data-v-c6a0feb6"]]), Wt = { class: "address__wrapper" }, Yt = { class: "address__content" }, Qt = { class: "address__flag" }, Zt = { class: "address__address" }, Xt = { class: "address__name" }, xt = { key: 0 }, ea = { class: "address__contact" }, ta = ["href"], aa = ["href"], oa = ["href"], sa = /* @__PURE__ */ g({
|
|
755
755
|
__name: "address",
|
|
756
756
|
props: {
|
|
757
757
|
name: {},
|
|
@@ -764,54 +764,54 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
764
764
|
email: {}
|
|
765
765
|
},
|
|
766
766
|
setup(e) {
|
|
767
|
-
return (
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
c(
|
|
767
|
+
return (a, r) => (s(), i("div", Wt, [
|
|
768
|
+
t("div", Yt, [
|
|
769
|
+
t("div", Qt, [
|
|
770
|
+
c(a.$slots, "address-flag", {}, void 0, !0)
|
|
771
771
|
]),
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
772
|
+
t("div", Zt, [
|
|
773
|
+
t("p", Xt, 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 ? (s(), i("p", xt, d(a.addressLine3), 1)) : h("", !0)
|
|
778
778
|
]),
|
|
779
|
-
|
|
780
|
-
|
|
779
|
+
t("div", ea, [
|
|
780
|
+
a.website ? (s(), T(M, {
|
|
781
781
|
key: 0,
|
|
782
782
|
underline: "false",
|
|
783
783
|
"link-type": "regular"
|
|
784
784
|
}, {
|
|
785
785
|
default: y(() => [
|
|
786
|
-
|
|
787
|
-
href: "https://" +
|
|
786
|
+
t("a", {
|
|
787
|
+
href: "https://" + a.website,
|
|
788
788
|
class: "address__website"
|
|
789
|
-
}, d(
|
|
789
|
+
}, d(a.website), 9, ta)
|
|
790
790
|
]),
|
|
791
791
|
_: 1
|
|
792
792
|
})) : h("", !0),
|
|
793
|
-
(
|
|
794
|
-
key:
|
|
793
|
+
(s(!0), i(P, null, F(a.phoneNumbers, (o) => (s(), T(M, {
|
|
794
|
+
key: o,
|
|
795
795
|
underline: "false",
|
|
796
796
|
"link-type": "regular"
|
|
797
797
|
}, {
|
|
798
798
|
default: y(() => [
|
|
799
|
-
|
|
800
|
-
href: "tel:" +
|
|
799
|
+
t("a", {
|
|
800
|
+
href: "tel:" + o,
|
|
801
801
|
class: "address__phone"
|
|
802
|
-
}, d(
|
|
802
|
+
}, d(o), 9, aa)
|
|
803
803
|
]),
|
|
804
804
|
_: 2
|
|
805
805
|
}, 1024))), 128)),
|
|
806
|
-
|
|
807
|
-
href: "mailto:" +
|
|
806
|
+
t("a", {
|
|
807
|
+
href: "mailto:" + a.email,
|
|
808
808
|
class: "address__email"
|
|
809
|
-
}, d(
|
|
809
|
+
}, d(a.email), 9, oa)
|
|
810
810
|
])
|
|
811
811
|
])
|
|
812
812
|
]));
|
|
813
813
|
}
|
|
814
|
-
}),
|
|
814
|
+
}), la = /* @__PURE__ */ f(sa, [["__scopeId", "data-v-e1c72a18"]]), ia = (e) => (O("data-v-a44fd57d"), e = e(), H(), e), ra = { class: "bullet-list__wrapper" }, na = /* @__PURE__ */ ia(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), da = /* @__PURE__ */ g({
|
|
815
815
|
__name: "bullet-list",
|
|
816
816
|
props: {
|
|
817
817
|
list: {
|
|
@@ -831,20 +831,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
831
831
|
}
|
|
832
832
|
},
|
|
833
833
|
setup(e) {
|
|
834
|
-
return (
|
|
835
|
-
|
|
836
|
-
class:
|
|
834
|
+
return (a, r) => (s(), i("div", ra, [
|
|
835
|
+
t("div", {
|
|
836
|
+
class: p(["bullet-list", e.variant])
|
|
837
837
|
}, [
|
|
838
|
-
|
|
839
|
-
(
|
|
840
|
-
|
|
841
|
-
G(" " + d(
|
|
838
|
+
t("ul", null, [
|
|
839
|
+
(s(!0), i(P, null, F(e.list, (o) => (s(), i("li", { key: o }, [
|
|
840
|
+
na,
|
|
841
|
+
G(" " + d(o), 1)
|
|
842
842
|
]))), 128))
|
|
843
843
|
])
|
|
844
844
|
], 2)
|
|
845
845
|
]));
|
|
846
846
|
}
|
|
847
|
-
}),
|
|
847
|
+
}), ca = /* @__PURE__ */ f(da, [["__scopeId", "data-v-a44fd57d"]]), ua = { class: "card__wrapper" }, _a = { key: 2 }, ha = { key: 5 }, pa = /* @__PURE__ */ g({
|
|
848
848
|
__name: "card",
|
|
849
849
|
props: {
|
|
850
850
|
variant: { default: "product" },
|
|
@@ -866,9 +866,9 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
866
866
|
},
|
|
867
867
|
emits: ["clicked"],
|
|
868
868
|
setup(e) {
|
|
869
|
-
const
|
|
869
|
+
const a = Ce();
|
|
870
870
|
let r = q(!1);
|
|
871
|
-
const
|
|
871
|
+
const o = {
|
|
872
872
|
xsmall: {
|
|
873
873
|
class: "card--xsmall",
|
|
874
874
|
width: "241",
|
|
@@ -889,21 +889,21 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
889
889
|
width: "596",
|
|
890
890
|
height: "335"
|
|
891
891
|
}
|
|
892
|
-
}, l = e,
|
|
893
|
-
return (n,
|
|
894
|
-
|
|
895
|
-
class:
|
|
892
|
+
}, l = e, _ = D(() => o[l.size]);
|
|
893
|
+
return (n, u) => (s(), i("div", ua, [
|
|
894
|
+
t("div", {
|
|
895
|
+
class: p(["card", [
|
|
896
896
|
n.theme === "dark" ? "card--dark" : "card--light",
|
|
897
897
|
n.orientation === "vertical" ? "vertical" : "horizontal",
|
|
898
|
-
|
|
898
|
+
_.value.class,
|
|
899
899
|
n.size === "large" && n.variant === "article" ? "card--large-article" : n.size === "small" && n.variant === "article" ? "card--small-article" : n.size === "xsmall" && n.variant === "article" ? "card--xsmall-article" : n.size === "medium" && n.variant === "article" ? "card--medium-article" : n.size === "large" && n.variant === "product" ? "card--large-product" : n.size === "small" && n.variant === "product" ? "card--small-product" : n.size === "xsmall" && n.variant === "product" ? "card--xsmall-product" : n.size === "medium" && n.variant === "product" ? "card--medium-product" : n.variant === "product" ? "card--product" : "card--article",
|
|
900
900
|
n.variant === "product" ? "card--product" : "card--article"
|
|
901
901
|
]]),
|
|
902
902
|
style: x([n.variant === "product" ? "font-weight: 700" : "font-weight: 300"]),
|
|
903
|
-
onMouseover:
|
|
904
|
-
onMouseout:
|
|
903
|
+
onMouseover: u[0] || (u[0] = (b) => ce(r) ? r.value = !0 : r = !0),
|
|
904
|
+
onMouseout: u[1] || (u[1] = (b) => ce(r) ? r.value = !1 : r = !1)
|
|
905
905
|
}, [
|
|
906
|
-
n.mediaType === "image" ? (
|
|
906
|
+
n.mediaType === "image" ? (s(), T(z, { key: 0 }, {
|
|
907
907
|
default: y(() => [
|
|
908
908
|
c(n.$slots, "card-image", X({
|
|
909
909
|
src: n.imgSrc,
|
|
@@ -915,9 +915,9 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
915
915
|
}, { srcset: n.srcSet }))
|
|
916
916
|
]),
|
|
917
917
|
_: 3
|
|
918
|
-
})) : (
|
|
918
|
+
})) : (s(), i("div", {
|
|
919
919
|
key: 1,
|
|
920
|
-
class:
|
|
920
|
+
class: p(["video-card__wrapper", I(r) === !0 ? "vimeoPlaying" : ""])
|
|
921
921
|
}, [
|
|
922
922
|
S(ee, {
|
|
923
923
|
play: I(r),
|
|
@@ -926,35 +926,35 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
926
926
|
"aria-label": n.arialabel,
|
|
927
927
|
controls: !1,
|
|
928
928
|
poster: n.imgSrc,
|
|
929
|
-
width:
|
|
930
|
-
height:
|
|
929
|
+
width: _.value.width,
|
|
930
|
+
height: _.value.height,
|
|
931
931
|
autoplay: !0,
|
|
932
932
|
loop: !0,
|
|
933
933
|
muted: !0
|
|
934
934
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
935
935
|
], 2)),
|
|
936
|
-
I(
|
|
936
|
+
I(a)["card-label"] ? (s(), i("div", _a, [
|
|
937
937
|
c(n.$slots, "card-label")
|
|
938
938
|
])) : h("", !0),
|
|
939
|
-
n.variant === "product" ? (
|
|
939
|
+
n.variant === "product" ? (s(), i("div", {
|
|
940
940
|
key: 3,
|
|
941
|
-
class:
|
|
941
|
+
class: p([
|
|
942
942
|
"card__headline",
|
|
943
943
|
n.theme === "dark" ? "regular-dark" : "regular-blue"
|
|
944
944
|
]),
|
|
945
945
|
style: { "font-weight": "700" }
|
|
946
|
-
}, d(n.headline), 3)) : (
|
|
946
|
+
}, d(n.headline), 3)) : (s(), i("div", {
|
|
947
947
|
key: 4,
|
|
948
|
-
class:
|
|
948
|
+
class: p([
|
|
949
949
|
"card__headline",
|
|
950
950
|
n.theme === "dark" ? "regular-dark" : "regular-dark-blue"
|
|
951
951
|
])
|
|
952
952
|
}, d(n.headline), 3)),
|
|
953
|
-
n.variant === "product" ? (
|
|
953
|
+
n.variant === "product" ? (s(), i("p", ha, d(n.paragraph), 1)) : h("", !0)
|
|
954
954
|
], 38)
|
|
955
955
|
]));
|
|
956
956
|
}
|
|
957
|
-
}),
|
|
957
|
+
}), ma = /* @__PURE__ */ f(pa, [["__scopeId", "data-v-f26b0595"]]), va = { class: "column-card" }, fa = { class: "column-card__content" }, ga = { class: "column-card__headline" }, ba = { class: "column-card__bodytext" }, ya = /* @__PURE__ */ g({
|
|
958
958
|
__name: "column-card",
|
|
959
959
|
props: {
|
|
960
960
|
headline: {},
|
|
@@ -963,25 +963,25 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
963
963
|
imageFit: { type: Boolean }
|
|
964
964
|
},
|
|
965
965
|
setup(e) {
|
|
966
|
-
return (
|
|
967
|
-
|
|
968
|
-
|
|
966
|
+
return (a, r) => (s(), i("div", va, [
|
|
967
|
+
t("div", fa, [
|
|
968
|
+
a.image.filename ? (s(), i("div", {
|
|
969
969
|
key: 0,
|
|
970
|
-
class:
|
|
970
|
+
class: p(["column-card__image", { cover: a.imageFit, contain: !a.imageFit }])
|
|
971
971
|
}, [
|
|
972
|
-
c(
|
|
973
|
-
src:
|
|
974
|
-
alt:
|
|
972
|
+
c(a.$slots, "column-card-image", C(L({
|
|
973
|
+
src: a.image.filename,
|
|
974
|
+
alt: a.image.alt
|
|
975
975
|
})), void 0, !0)
|
|
976
976
|
], 2)) : h("", !0),
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
c(
|
|
977
|
+
t("h3", ga, d(a.headline), 1),
|
|
978
|
+
t("div", ba, [
|
|
979
|
+
c(a.$slots, "column-card-body", {}, void 0, !0)
|
|
980
980
|
])
|
|
981
981
|
])
|
|
982
982
|
]));
|
|
983
983
|
}
|
|
984
|
-
}),
|
|
984
|
+
}), ge = /* @__PURE__ */ f(ya, [["__scopeId", "data-v-39d91624"]]), ka = (e) => (O("data-v-2c394add"), e = e(), H(), e), $a = { class: "event__wrapper" }, wa = { class: "event__headline" }, Ba = { class: "event__date-location" }, Sa = /* @__PURE__ */ ka(() => /* @__PURE__ */ t("br", null, null, -1)), Ia = { class: "event__exhibitor" }, qa = /* @__PURE__ */ g({
|
|
985
985
|
__name: "event-card",
|
|
986
986
|
props: {
|
|
987
987
|
eventType: {
|
|
@@ -1006,21 +1006,122 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1006
1006
|
}
|
|
1007
1007
|
},
|
|
1008
1008
|
setup(e) {
|
|
1009
|
-
return (
|
|
1009
|
+
return (a, r) => (s(), i("div", $a, [
|
|
1010
1010
|
S(Z, {
|
|
1011
1011
|
"label-dark": !1,
|
|
1012
1012
|
text: e.eventType ? e.eventType : ""
|
|
1013
1013
|
}, null, 8, ["text"]),
|
|
1014
|
-
|
|
1015
|
-
|
|
1014
|
+
t("div", wa, d(e.headline), 1),
|
|
1015
|
+
t("div", Ba, [
|
|
1016
1016
|
G(d(e.dateTime), 1),
|
|
1017
|
-
|
|
1017
|
+
Sa,
|
|
1018
1018
|
G(d(e.location), 1)
|
|
1019
1019
|
]),
|
|
1020
|
-
|
|
1020
|
+
t("div", Ia, d(e.exhibitor), 1)
|
|
1021
1021
|
]));
|
|
1022
1022
|
}
|
|
1023
|
-
}),
|
|
1023
|
+
}), Ca = /* @__PURE__ */ f(qa, [["__scopeId", "data-v-2c394add"]]), le = (e) => (O("data-v-bdaf11f9"), e = e(), H(), e), Aa = { class: "flashcard-side flashcard-front" }, La = {
|
|
1024
|
+
key: 0,
|
|
1025
|
+
class: "content"
|
|
1026
|
+
}, Da = { key: 0 }, Ta = {
|
|
1027
|
+
key: 1,
|
|
1028
|
+
class: "flashcard-body"
|
|
1029
|
+
}, Va = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
|
|
1030
|
+
class: "flip-icon",
|
|
1031
|
+
src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
|
|
1032
|
+
}, null, -1)), Pa = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
|
|
1033
|
+
class: "flip-icon",
|
|
1034
|
+
src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
|
|
1035
|
+
}, null, -1)), Fa = {
|
|
1036
|
+
key: 0,
|
|
1037
|
+
class: "content"
|
|
1038
|
+
}, Ma = { key: 0 }, za = {
|
|
1039
|
+
key: 1,
|
|
1040
|
+
class: "flashcard-body"
|
|
1041
|
+
}, Oa = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
|
|
1042
|
+
class: "flip-icon",
|
|
1043
|
+
src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
|
|
1044
|
+
}, null, -1)), Ha = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
|
|
1045
|
+
class: "flip-icon",
|
|
1046
|
+
src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
|
|
1047
|
+
}, null, -1)), Ra = /* @__PURE__ */ g({
|
|
1048
|
+
__name: "flashcard",
|
|
1049
|
+
props: {
|
|
1050
|
+
name: {},
|
|
1051
|
+
bodytext: {},
|
|
1052
|
+
image: {},
|
|
1053
|
+
namebackside: {},
|
|
1054
|
+
bodytextbackside: {},
|
|
1055
|
+
imagebackside: {},
|
|
1056
|
+
size: {},
|
|
1057
|
+
imageFit: { type: Boolean },
|
|
1058
|
+
imageFitBack: { type: Boolean }
|
|
1059
|
+
},
|
|
1060
|
+
setup(e) {
|
|
1061
|
+
const a = q(!1);
|
|
1062
|
+
function r() {
|
|
1063
|
+
a.value = !a.value;
|
|
1064
|
+
}
|
|
1065
|
+
return (o, l) => {
|
|
1066
|
+
var _, n, u, b, v, k;
|
|
1067
|
+
return s(), i("div", {
|
|
1068
|
+
class: "flashcard-container",
|
|
1069
|
+
onClick: r
|
|
1070
|
+
}, [
|
|
1071
|
+
t("div", {
|
|
1072
|
+
class: p(["flashcard", {
|
|
1073
|
+
flipped: a.value,
|
|
1074
|
+
"flashcard--sm": o.size === "sm",
|
|
1075
|
+
"flashcard--md": o.size === "md",
|
|
1076
|
+
"flashcard--lg": o.size === "lg"
|
|
1077
|
+
}])
|
|
1078
|
+
}, [
|
|
1079
|
+
t("div", Aa, [
|
|
1080
|
+
o.name || ((_ = o.bodytext) == null ? void 0 : _.length) > 0 ? (s(), i("div", La, [
|
|
1081
|
+
o.name ? (s(), i("h3", Da, d(o.name), 1)) : h("", !0),
|
|
1082
|
+
o.bodytext ? (s(), i("div", Ta, [
|
|
1083
|
+
c(o.$slots, "flashcard-front-body", C(L({ bodytext: o.bodytext })), void 0, !0)
|
|
1084
|
+
])) : h("", !0),
|
|
1085
|
+
Va
|
|
1086
|
+
])) : (s(), i("div", {
|
|
1087
|
+
key: 1,
|
|
1088
|
+
class: p(["flashcard-image", {
|
|
1089
|
+
contain: o.imageFit,
|
|
1090
|
+
cover: !o.imageFit
|
|
1091
|
+
}])
|
|
1092
|
+
}, [
|
|
1093
|
+
c(o.$slots, "flashcard-front-image", C(L({ src: (n = o.image) == null ? void 0 : n.filename, alt: (u = o.image) == null ? void 0 : u.alt })), void 0, !0),
|
|
1094
|
+
Pa
|
|
1095
|
+
], 2))
|
|
1096
|
+
]),
|
|
1097
|
+
t("div", {
|
|
1098
|
+
class: p([
|
|
1099
|
+
"flashcard-side flashcard-back",
|
|
1100
|
+
(b = o.imagebackside) != null && b.filename ? "flashcard-back--image" : "flashcard-back--no-image"
|
|
1101
|
+
])
|
|
1102
|
+
}, [
|
|
1103
|
+
o.namebackside || o.bodytextbackside.length > 0 ? (s(), i("div", Fa, [
|
|
1104
|
+
o.namebackside ? (s(), i("h3", Ma, d(o.namebackside), 1)) : h("", !0),
|
|
1105
|
+
o.bodytextbackside ? (s(), i("div", za, [
|
|
1106
|
+
c(o.$slots, "flashcard-back-body", C(L({ bodytextbackside: o.bodytextbackside })), void 0, !0)
|
|
1107
|
+
])) : h("", !0),
|
|
1108
|
+
Oa
|
|
1109
|
+
])) : (s(), i("div", {
|
|
1110
|
+
key: 1,
|
|
1111
|
+
class: p(["flashcard-image", {
|
|
1112
|
+
contain: o.imageFitBack,
|
|
1113
|
+
cover: !o.imageFitBack
|
|
1114
|
+
}])
|
|
1115
|
+
}, [
|
|
1116
|
+
c(o.$slots, "flashcard-back-image", C(L({ src: (v = o.imagebackside) == null ? void 0 : v.filename, alt: (k = o.imagebackside) == null ? void 0 : k.alt })), void 0, !0),
|
|
1117
|
+
Ha
|
|
1118
|
+
], 2))
|
|
1119
|
+
], 2)
|
|
1120
|
+
], 2)
|
|
1121
|
+
]);
|
|
1122
|
+
};
|
|
1123
|
+
}
|
|
1124
|
+
}), be = /* @__PURE__ */ f(Ra, [["__scopeId", "data-v-bdaf11f9"]]), Na = { class: "text__wrapper" }, Ea = { class: "text__headline" }, ja = { class: "text__paragraph" }, Ka = /* @__PURE__ */ g({
|
|
1024
1125
|
__name: "text-card",
|
|
1025
1126
|
props: {
|
|
1026
1127
|
label: {
|
|
@@ -1037,60 +1138,60 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1037
1138
|
}
|
|
1038
1139
|
},
|
|
1039
1140
|
setup(e) {
|
|
1040
|
-
return (
|
|
1141
|
+
return (a, r) => (s(), i("div", Na, [
|
|
1041
1142
|
S(Z, {
|
|
1042
1143
|
"label-dark": !1,
|
|
1043
1144
|
text: e.label ? e.label : ""
|
|
1044
1145
|
}, null, 8, ["text"]),
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1146
|
+
t("div", Ea, d(e.headline), 1),
|
|
1147
|
+
t("div", ja, [
|
|
1148
|
+
t("p", null, d(e.paragraph), 1)
|
|
1048
1149
|
])
|
|
1049
1150
|
]));
|
|
1050
1151
|
}
|
|
1051
|
-
}),
|
|
1152
|
+
}), Ua = /* @__PURE__ */ f(Ka, [["__scopeId", "data-v-ebdea819"]]), Ga = { class: "accordions" }, Ja = { class: "accordions__wrapper" }, Wa = { class: "accordion" }, Ya = ["onClick"], Qa = { class: "accordion__headline" }, Za = { class: "accordion__icon" }, Xa = {
|
|
1052
1153
|
key: 0,
|
|
1053
1154
|
src: "https://a.storyblok.com/f/230581/21x21/42c9c3b5ba/icon_add.svg"
|
|
1054
|
-
},
|
|
1155
|
+
}, xa = {
|
|
1055
1156
|
key: 1,
|
|
1056
1157
|
src: "https://a.storyblok.com/f/230581/22x21/adfe5d1742/icon_substract.svg"
|
|
1057
|
-
},
|
|
1158
|
+
}, eo = { class: "accordion__bodytext" }, to = /* @__PURE__ */ g({
|
|
1058
1159
|
__name: "accordion",
|
|
1059
1160
|
props: {
|
|
1060
1161
|
accordions: {}
|
|
1061
1162
|
},
|
|
1062
1163
|
setup(e) {
|
|
1063
|
-
const
|
|
1064
|
-
const
|
|
1065
|
-
|
|
1066
|
-
},
|
|
1067
|
-
return (l,
|
|
1068
|
-
|
|
1069
|
-
(
|
|
1164
|
+
const a = q([]), r = (l) => {
|
|
1165
|
+
const _ = a.value.indexOf(l);
|
|
1166
|
+
_ > -1 ? a.value.splice(_, 1) : a.value.push(l);
|
|
1167
|
+
}, o = (l) => a.value.includes(l);
|
|
1168
|
+
return (l, _) => (s(), i("section", Ga, [
|
|
1169
|
+
t("div", Ja, [
|
|
1170
|
+
(s(!0), i(P, null, F(l.accordions, (n) => (s(), i("div", {
|
|
1070
1171
|
key: n._uid
|
|
1071
1172
|
}, [
|
|
1072
|
-
|
|
1073
|
-
|
|
1173
|
+
t("div", Wa, [
|
|
1174
|
+
t("div", {
|
|
1074
1175
|
class: "accordion__header",
|
|
1075
|
-
onClick: (
|
|
1176
|
+
onClick: (u) => r(n._uid)
|
|
1076
1177
|
}, [
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1178
|
+
t("h3", Qa, d(n.headline), 1),
|
|
1179
|
+
t("span", Za, [
|
|
1180
|
+
o(n._uid) ? (s(), i("img", xa)) : (s(), i("img", Xa))
|
|
1080
1181
|
])
|
|
1081
|
-
], 8,
|
|
1082
|
-
|
|
1083
|
-
class:
|
|
1182
|
+
], 8, Ya),
|
|
1183
|
+
t("div", {
|
|
1184
|
+
class: p(["accordion__content", { "accordion__content--reverse": n.imageFirst }]),
|
|
1084
1185
|
style: x({
|
|
1085
|
-
display:
|
|
1186
|
+
display: o(n._uid) ? "flex" : "none"
|
|
1086
1187
|
})
|
|
1087
1188
|
}, [
|
|
1088
|
-
|
|
1089
|
-
c(l.$slots, "accordion-body",
|
|
1189
|
+
t("div", eo, [
|
|
1190
|
+
c(l.$slots, "accordion-body", C(L({ body: n.bodytext })), void 0, !0)
|
|
1090
1191
|
]),
|
|
1091
|
-
S(
|
|
1192
|
+
S(z, null, {
|
|
1092
1193
|
default: y(() => [
|
|
1093
|
-
n.image ? c(l.$slots, "accordion-image",
|
|
1194
|
+
n.image ? c(l.$slots, "accordion-image", C(X({ key: 0 }, {
|
|
1094
1195
|
src: n.image.filename,
|
|
1095
1196
|
alt: n.image.alt,
|
|
1096
1197
|
class: "accordion__image"
|
|
@@ -1104,10 +1205,10 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1104
1205
|
])
|
|
1105
1206
|
]));
|
|
1106
1207
|
}
|
|
1107
|
-
}),
|
|
1208
|
+
}), ao = /* @__PURE__ */ f(to, [["__scopeId", "data-v-8e3c34ec"]]), oo = { class: "card-display__wrapper" }, so = {
|
|
1108
1209
|
key: 0,
|
|
1109
1210
|
class: "card__content"
|
|
1110
|
-
},
|
|
1211
|
+
}, lo = { key: 0 }, io = { key: 1 }, ro = { class: "card__cards" }, no = /* @__PURE__ */ g({
|
|
1111
1212
|
__name: "card-display",
|
|
1112
1213
|
props: {
|
|
1113
1214
|
headline: {
|
|
@@ -1124,30 +1225,30 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1124
1225
|
}
|
|
1125
1226
|
},
|
|
1126
1227
|
setup(e) {
|
|
1127
|
-
return (
|
|
1128
|
-
class:
|
|
1228
|
+
return (a, r) => (s(), i("div", {
|
|
1229
|
+
class: p([
|
|
1129
1230
|
"card-display",
|
|
1130
1231
|
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1131
1232
|
])
|
|
1132
1233
|
}, [
|
|
1133
|
-
|
|
1134
|
-
e.headline || e.paragraph ? (
|
|
1135
|
-
e.headline ? (
|
|
1136
|
-
e.paragraph ? (
|
|
1234
|
+
t("div", oo, [
|
|
1235
|
+
e.headline || e.paragraph ? (s(), i("div", so, [
|
|
1236
|
+
e.headline ? (s(), i("h2", lo, d(e.headline), 1)) : h("", !0),
|
|
1237
|
+
e.paragraph ? (s(), i("p", io, d(e.paragraph), 1)) : h("", !0)
|
|
1137
1238
|
])) : h("", !0),
|
|
1138
|
-
|
|
1139
|
-
c(
|
|
1239
|
+
t("div", ro, [
|
|
1240
|
+
c(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1140
1241
|
])
|
|
1141
1242
|
])
|
|
1142
1243
|
], 2));
|
|
1143
1244
|
}
|
|
1144
|
-
}),
|
|
1245
|
+
}), co = /* @__PURE__ */ f(no, [["__scopeId", "data-v-e8033cff"]]), uo = { class: "column-grid__top-section" }, _o = {
|
|
1145
1246
|
key: 0,
|
|
1146
1247
|
class: "column-grid__headline"
|
|
1147
|
-
},
|
|
1248
|
+
}, ho = {
|
|
1148
1249
|
key: 1,
|
|
1149
1250
|
class: "column-grid__bodytext"
|
|
1150
|
-
},
|
|
1251
|
+
}, po = { class: "column-grid__teaser-list" }, mo = /* @__PURE__ */ g({
|
|
1151
1252
|
__name: "column-grid",
|
|
1152
1253
|
props: {
|
|
1153
1254
|
headline: { default: "" },
|
|
@@ -1156,34 +1257,34 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1156
1257
|
columns: {}
|
|
1157
1258
|
},
|
|
1158
1259
|
setup(e) {
|
|
1159
|
-
return (
|
|
1160
|
-
class:
|
|
1260
|
+
return (a, r) => (s(), i("div", {
|
|
1261
|
+
class: p([
|
|
1161
1262
|
"column-grid",
|
|
1162
|
-
|
|
1263
|
+
a.bgColor === "dark" ? "column-grid--dark" : a.bgColor === "light" ? "column-grid--light" : "column-grid--white"
|
|
1163
1264
|
])
|
|
1164
1265
|
}, [
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
c(
|
|
1266
|
+
t("div", uo, [
|
|
1267
|
+
a.headline ? (s(), i("h2", _o, d(a.headline), 1)) : h("", !0),
|
|
1268
|
+
a.bodytext ? (s(), i("div", ho, [
|
|
1269
|
+
c(a.$slots, "column-grid-body", {}, void 0, !0)
|
|
1169
1270
|
])) : h("", !0)
|
|
1170
1271
|
]),
|
|
1171
|
-
|
|
1172
|
-
(
|
|
1173
|
-
key:
|
|
1174
|
-
headline:
|
|
1175
|
-
bodytext:
|
|
1176
|
-
image:
|
|
1177
|
-
"image-fit":
|
|
1272
|
+
t("div", po, [
|
|
1273
|
+
(s(!0), i(P, null, F(a.columns, (o) => (s(), T(ge, {
|
|
1274
|
+
key: o._uid,
|
|
1275
|
+
headline: o.headline,
|
|
1276
|
+
bodytext: o.bodytext,
|
|
1277
|
+
image: o.image,
|
|
1278
|
+
"image-fit": o.imageFit
|
|
1178
1279
|
}, {
|
|
1179
1280
|
"column-card-body": y(() => [
|
|
1180
|
-
c(
|
|
1281
|
+
c(a.$slots, "column-card-body", C(L({ body: o.bodytext })), void 0, !0)
|
|
1181
1282
|
]),
|
|
1182
1283
|
"column-card-image": y(() => [
|
|
1183
|
-
|
|
1184
|
-
src:
|
|
1185
|
-
alt:
|
|
1186
|
-
style: { "object-fit":
|
|
1284
|
+
o.image ? c(a.$slots, "column-card-image", C(X({ key: 0 }, {
|
|
1285
|
+
src: o.image.filename,
|
|
1286
|
+
alt: o.image.alt,
|
|
1287
|
+
style: { "object-fit": o.imageFit ? "cover" : "contain" }
|
|
1187
1288
|
})), void 0, !0) : h("", !0)
|
|
1188
1289
|
]),
|
|
1189
1290
|
_: 2
|
|
@@ -1191,10 +1292,10 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1191
1292
|
])
|
|
1192
1293
|
], 2));
|
|
1193
1294
|
}
|
|
1194
|
-
}),
|
|
1295
|
+
}), vo = /* @__PURE__ */ f(mo, [["__scopeId", "data-v-c07b3f47"]]), fo = { class: "facts__wrapper" }, go = { class: "facts__content" }, bo = { class: "facts__headline" }, yo = { class: "facts" }, ko = { class: "fact__value" }, $o = { class: "fact__metric" }, wo = {
|
|
1195
1296
|
key: 0,
|
|
1196
1297
|
class: "facts__link"
|
|
1197
|
-
},
|
|
1298
|
+
}, Bo = /* @__PURE__ */ g({
|
|
1198
1299
|
__name: "facts",
|
|
1199
1300
|
props: {
|
|
1200
1301
|
headline: { default: "" },
|
|
@@ -1218,29 +1319,29 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1218
1319
|
}) }
|
|
1219
1320
|
},
|
|
1220
1321
|
setup(e) {
|
|
1221
|
-
return (
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
(
|
|
1226
|
-
key:
|
|
1322
|
+
return (a, r) => (s(), i("div", fo, [
|
|
1323
|
+
t("div", go, [
|
|
1324
|
+
t("h2", bo, d(a.headline), 1),
|
|
1325
|
+
t("div", yo, [
|
|
1326
|
+
(s(!0), i(P, null, F(a.facts, (o) => (s(), i("div", {
|
|
1327
|
+
key: o.value + o.metric,
|
|
1227
1328
|
class: "fact"
|
|
1228
1329
|
}, [
|
|
1229
|
-
|
|
1230
|
-
|
|
1330
|
+
t("div", ko, [
|
|
1331
|
+
t("span", null, d(o.value), 1)
|
|
1231
1332
|
]),
|
|
1232
|
-
|
|
1233
|
-
|
|
1333
|
+
t("div", $o, [
|
|
1334
|
+
t("span", null, d(o.metric), 1)
|
|
1234
1335
|
])
|
|
1235
1336
|
]))), 128))
|
|
1236
1337
|
]),
|
|
1237
|
-
|
|
1238
|
-
S(
|
|
1338
|
+
a.link ? (s(), i("div", wo, [
|
|
1339
|
+
S(M, {
|
|
1239
1340
|
"link-type": "regular_light",
|
|
1240
1341
|
arrow: ""
|
|
1241
1342
|
}, {
|
|
1242
1343
|
default: y(() => [
|
|
1243
|
-
c(
|
|
1344
|
+
c(a.$slots, "facts-link", {}, void 0, !0)
|
|
1244
1345
|
]),
|
|
1245
1346
|
_: 3
|
|
1246
1347
|
})
|
|
@@ -1248,13 +1349,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1248
1349
|
])
|
|
1249
1350
|
]));
|
|
1250
1351
|
}
|
|
1251
|
-
}),
|
|
1352
|
+
}), So = /* @__PURE__ */ f(Bo, [["__scopeId", "data-v-d2b231d4"]]), Io = { class: "features__wrapper" }, qo = { class: "features__content" }, Co = {
|
|
1252
1353
|
key: 0,
|
|
1253
1354
|
class: "features__headline"
|
|
1254
|
-
},
|
|
1355
|
+
}, Ao = {
|
|
1255
1356
|
key: 1,
|
|
1256
1357
|
class: "features__body"
|
|
1257
|
-
},
|
|
1358
|
+
}, Lo = { class: "element__headline" }, Do = { class: "element__body" }, To = /* @__PURE__ */ g({
|
|
1258
1359
|
__name: "features",
|
|
1259
1360
|
props: {
|
|
1260
1361
|
headline: { default: "" },
|
|
@@ -1262,40 +1363,107 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1262
1363
|
elements: { default: () => [] }
|
|
1263
1364
|
},
|
|
1264
1365
|
setup(e) {
|
|
1265
|
-
return (
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1366
|
+
return (a, r) => (s(), i("div", Io, [
|
|
1367
|
+
t("div", qo, [
|
|
1368
|
+
a.headline ? (s(), i("div", Co, [
|
|
1369
|
+
t("h2", null, d(a.headline), 1)
|
|
1269
1370
|
])) : h("", !0),
|
|
1270
|
-
|
|
1271
|
-
c(
|
|
1371
|
+
a.body ? (s(), i("div", Ao, [
|
|
1372
|
+
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1272
1373
|
])) : h("", !0),
|
|
1273
|
-
|
|
1274
|
-
class:
|
|
1374
|
+
t("div", {
|
|
1375
|
+
class: p(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1275
1376
|
}, [
|
|
1276
|
-
(
|
|
1277
|
-
key:
|
|
1377
|
+
(s(!0), i(P, null, F(a.elements, (o) => (s(), i("div", {
|
|
1378
|
+
key: o.headline,
|
|
1278
1379
|
class: "features__element"
|
|
1279
1380
|
}, [
|
|
1280
|
-
S(
|
|
1381
|
+
S(z, { class: "element__icon" }, {
|
|
1281
1382
|
default: y(() => [
|
|
1282
|
-
c(
|
|
1283
|
-
src:
|
|
1383
|
+
c(a.$slots, "features-icon", C(L({
|
|
1384
|
+
src: o.icon.src,
|
|
1284
1385
|
height: 30,
|
|
1285
1386
|
width: 30,
|
|
1286
|
-
alt:
|
|
1387
|
+
alt: o.icon.alt
|
|
1287
1388
|
})), void 0, !0)
|
|
1288
1389
|
]),
|
|
1289
1390
|
_: 2
|
|
1290
1391
|
}, 1024),
|
|
1291
|
-
|
|
1292
|
-
|
|
1392
|
+
t("p", Lo, d(o.headline), 1),
|
|
1393
|
+
t("p", Do, d(o.body), 1)
|
|
1293
1394
|
]))), 128))
|
|
1294
1395
|
], 2)
|
|
1295
1396
|
])
|
|
1296
1397
|
]));
|
|
1297
1398
|
}
|
|
1298
|
-
}),
|
|
1399
|
+
}), Vo = /* @__PURE__ */ f(To, [["__scopeId", "data-v-57a22df7"]]), Po = { class: "flashcard-wrapper" }, Fo = {
|
|
1400
|
+
key: 0,
|
|
1401
|
+
class: "flashcard-wrapper__headline"
|
|
1402
|
+
}, Mo = {
|
|
1403
|
+
key: 1,
|
|
1404
|
+
class: "flashcard-wrapper__bodytext"
|
|
1405
|
+
}, zo = /* @__PURE__ */ g({
|
|
1406
|
+
__name: "flashcards",
|
|
1407
|
+
props: {
|
|
1408
|
+
headline: {},
|
|
1409
|
+
body: {},
|
|
1410
|
+
flashcards: {}
|
|
1411
|
+
},
|
|
1412
|
+
setup(e) {
|
|
1413
|
+
const a = e, r = D(() => a.body.trim().length > 0), o = D(() => {
|
|
1414
|
+
var _;
|
|
1415
|
+
const l = (_ = a.flashcards) == null ? void 0 : _.length;
|
|
1416
|
+
return l === 4 || l === 5 ? "sm" : l === 6 || l === 3 ? "md" : l === 2 ? "lg" : "sm";
|
|
1417
|
+
});
|
|
1418
|
+
return (l, _) => (s(), i("div", Po, [
|
|
1419
|
+
t("div", {
|
|
1420
|
+
class: p([
|
|
1421
|
+
{ "no-bodytext": !r.value },
|
|
1422
|
+
"flashcard-wrapper__top-section"
|
|
1423
|
+
])
|
|
1424
|
+
}, [
|
|
1425
|
+
l.headline ? (s(), i("h2", Fo, d(l.headline), 1)) : h("", !0),
|
|
1426
|
+
l.body ? (s(), i("div", Mo, [
|
|
1427
|
+
c(l.$slots, "flashcard-wrapper-body", {}, void 0, !0)
|
|
1428
|
+
])) : h("", !0)
|
|
1429
|
+
], 2),
|
|
1430
|
+
t("div", {
|
|
1431
|
+
class: p(["flashcard-wrapper__teaser-list", {
|
|
1432
|
+
sm: o.value === "sm",
|
|
1433
|
+
md: o.value === "md",
|
|
1434
|
+
lg: o.value === "lg"
|
|
1435
|
+
}])
|
|
1436
|
+
}, [
|
|
1437
|
+
(s(!0), i(P, null, F(l.flashcards, (n) => (s(), T(I(be), {
|
|
1438
|
+
key: n._uid,
|
|
1439
|
+
name: n.name,
|
|
1440
|
+
bodytext: n.bodytext,
|
|
1441
|
+
image: n.image,
|
|
1442
|
+
namebackside: n.namebackside ? n.namebackside : "",
|
|
1443
|
+
bodytextbackside: n.bodytextbackside,
|
|
1444
|
+
imagebackside: n.imagebackside ? n.imagebackside : { filename: "", alt: "" },
|
|
1445
|
+
size: o.value,
|
|
1446
|
+
"image-fit": n.imageFit,
|
|
1447
|
+
"image-fit-back": n.imageFitBack
|
|
1448
|
+
}, {
|
|
1449
|
+
"flashcard-front-body": y(({ bodytext: u }) => [
|
|
1450
|
+
c(l.$slots, "flashcard-front-body", C(L({ bodytext: u })), void 0, !0)
|
|
1451
|
+
]),
|
|
1452
|
+
"flashcard-front-image": y(({ src: u, alt: b }) => [
|
|
1453
|
+
c(l.$slots, "flashcard-front-image", C(L({ src: u, alt: b })), void 0, !0)
|
|
1454
|
+
]),
|
|
1455
|
+
"flashcard-back-body": y(({ bodytextbackside: u }) => [
|
|
1456
|
+
c(l.$slots, "flashcard-back-body", C(L({ bodytextbackside: u })), void 0, !0)
|
|
1457
|
+
]),
|
|
1458
|
+
"flashcard-back-image": y(({ src: u, alt: b }) => [
|
|
1459
|
+
c(l.$slots, "flashcard-back-image", C(L({ src: u, alt: b })), void 0, !0)
|
|
1460
|
+
]),
|
|
1461
|
+
_: 2
|
|
1462
|
+
}, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
|
|
1463
|
+
], 2)
|
|
1464
|
+
]));
|
|
1465
|
+
}
|
|
1466
|
+
}), Oo = /* @__PURE__ */ f(zo, [["__scopeId", "data-v-6dc1e767"]]), Ho = { class: "form__wrapper" }, Ro = { class: "form__content" }, No = { class: "form__information" }, Eo = { class: "form__headline" }, jo = { class: "form__body" }, Ko = { class: "form__script" }, Uo = /* @__PURE__ */ g({
|
|
1299
1467
|
__name: "form-script",
|
|
1300
1468
|
props: {
|
|
1301
1469
|
headline: {
|
|
@@ -1304,21 +1472,21 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1304
1472
|
}
|
|
1305
1473
|
},
|
|
1306
1474
|
setup(e) {
|
|
1307
|
-
return (
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
c(
|
|
1475
|
+
return (a, r) => (s(), i("div", Ho, [
|
|
1476
|
+
t("div", Ro, [
|
|
1477
|
+
t("div", No, [
|
|
1478
|
+
t("h2", Eo, d(e.headline), 1),
|
|
1479
|
+
t("div", jo, [
|
|
1480
|
+
c(a.$slots, "form-body", {}, void 0, !0)
|
|
1313
1481
|
])
|
|
1314
1482
|
]),
|
|
1315
|
-
|
|
1316
|
-
c(
|
|
1483
|
+
t("div", Ko, [
|
|
1484
|
+
c(a.$slots, "form-script", {}, void 0, !0)
|
|
1317
1485
|
])
|
|
1318
1486
|
])
|
|
1319
1487
|
]));
|
|
1320
1488
|
}
|
|
1321
|
-
}),
|
|
1489
|
+
}), Go = /* @__PURE__ */ f(Uo, [["__scopeId", "data-v-87a67c13"]]), Jo = { class: "headline__wrapper" }, Wo = { class: "headline__h1" }, Yo = /* @__PURE__ */ g({
|
|
1322
1490
|
__name: "headline",
|
|
1323
1491
|
props: {
|
|
1324
1492
|
headline: {
|
|
@@ -1335,20 +1503,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1335
1503
|
}
|
|
1336
1504
|
},
|
|
1337
1505
|
setup(e) {
|
|
1338
|
-
return (
|
|
1339
|
-
|
|
1340
|
-
class:
|
|
1506
|
+
return (a, r) => (s(), i("div", Jo, [
|
|
1507
|
+
t("div", {
|
|
1508
|
+
class: p({
|
|
1341
1509
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
1342
1510
|
"headline__content--article": e.article && !e.subMenu,
|
|
1343
1511
|
"headline__content--default headline__content--submenu": !e.article && e.subMenu,
|
|
1344
1512
|
"headline__content--default": !e.article && !e.subMenu
|
|
1345
1513
|
})
|
|
1346
1514
|
}, [
|
|
1347
|
-
|
|
1515
|
+
t("h1", Wo, d(e.headline), 1)
|
|
1348
1516
|
], 2)
|
|
1349
1517
|
]));
|
|
1350
1518
|
}
|
|
1351
|
-
}),
|
|
1519
|
+
}), Qo = /* @__PURE__ */ f(Yo, [["__scopeId", "data-v-3ef1567e"]]), Zo = (e) => (O("data-v-22f9be13"), e = e(), H(), e), Xo = { class: "hero__wrapper" }, xo = { class: "hero__content" }, es = { class: "hero__top" }, ts = { class: "hero__elements" }, as = { class: "hero__headline" }, os = { class: "hero__link" }, ss = { class: "hero__video" }, ls = /* @__PURE__ */ Zo(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), is = { class: "hero__video__video" }, rs = { class: "hero__image" }, ns = /* @__PURE__ */ g({
|
|
1352
1520
|
__name: "hero",
|
|
1353
1521
|
props: {
|
|
1354
1522
|
headline: {
|
|
@@ -1357,39 +1525,39 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1357
1525
|
}
|
|
1358
1526
|
},
|
|
1359
1527
|
setup(e) {
|
|
1360
|
-
return (
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1528
|
+
return (a, r) => (s(), i("div", Xo, [
|
|
1529
|
+
t("div", xo, [
|
|
1530
|
+
t("div", es, [
|
|
1531
|
+
t("div", ts, [
|
|
1532
|
+
t("div", as, [
|
|
1533
|
+
t("h1", null, d(e.headline), 1)
|
|
1366
1534
|
]),
|
|
1367
|
-
|
|
1368
|
-
S(
|
|
1535
|
+
t("div", os, [
|
|
1536
|
+
S(M, {
|
|
1369
1537
|
"link-type": "regular_light",
|
|
1370
1538
|
arrow: ""
|
|
1371
1539
|
}, {
|
|
1372
1540
|
default: y(() => [
|
|
1373
|
-
c(
|
|
1541
|
+
c(a.$slots, "hero-link", {}, void 0, !0)
|
|
1374
1542
|
]),
|
|
1375
1543
|
_: 3
|
|
1376
1544
|
})
|
|
1377
1545
|
])
|
|
1378
1546
|
])
|
|
1379
1547
|
]),
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
c(
|
|
1548
|
+
t("div", ss, [
|
|
1549
|
+
ls,
|
|
1550
|
+
t("div", is, [
|
|
1551
|
+
c(a.$slots, "hero-video", {}, void 0, !0)
|
|
1384
1552
|
]),
|
|
1385
|
-
|
|
1386
|
-
c(
|
|
1553
|
+
t("div", rs, [
|
|
1554
|
+
c(a.$slots, "hero-image", {}, void 0, !0)
|
|
1387
1555
|
])
|
|
1388
1556
|
])
|
|
1389
1557
|
])
|
|
1390
1558
|
]));
|
|
1391
1559
|
}
|
|
1392
|
-
}),
|
|
1560
|
+
}), ds = /* @__PURE__ */ f(ns, [["__scopeId", "data-v-22f9be13"]]), cs = { class: "image__wrapper" }, us = { class: "image__content" }, _s = { class: "image__image" }, hs = { class: "image__caption" }, ps = /* @__PURE__ */ g({
|
|
1393
1561
|
inheritAttrs: !1,
|
|
1394
1562
|
__name: "image",
|
|
1395
1563
|
props: {
|
|
@@ -1413,12 +1581,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1413
1581
|
}
|
|
1414
1582
|
},
|
|
1415
1583
|
setup(e) {
|
|
1416
|
-
return (
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
S(
|
|
1584
|
+
return (a, r) => (s(), i("div", cs, [
|
|
1585
|
+
t("div", us, [
|
|
1586
|
+
t("div", _s, [
|
|
1587
|
+
S(z, null, {
|
|
1420
1588
|
default: y(() => [
|
|
1421
|
-
c(
|
|
1589
|
+
c(a.$slots, "image", C(L({
|
|
1422
1590
|
width: 984,
|
|
1423
1591
|
height: e.fullHeight ? "100%" : 554,
|
|
1424
1592
|
src: e.src,
|
|
@@ -1429,20 +1597,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1429
1597
|
_: 3
|
|
1430
1598
|
})
|
|
1431
1599
|
]),
|
|
1432
|
-
|
|
1600
|
+
t("p", hs, d(e.caption), 1)
|
|
1433
1601
|
])
|
|
1434
1602
|
]));
|
|
1435
1603
|
}
|
|
1436
|
-
}),
|
|
1604
|
+
}), ms = /* @__PURE__ */ f(ps, [["__scopeId", "data-v-c583d657"]]), vs = { class: "gallery__large" }, fs = {
|
|
1437
1605
|
key: 0,
|
|
1438
1606
|
class: "image image--large"
|
|
1439
|
-
},
|
|
1607
|
+
}, gs = {
|
|
1440
1608
|
key: 1,
|
|
1441
1609
|
class: "video"
|
|
1442
|
-
},
|
|
1610
|
+
}, bs = {
|
|
1443
1611
|
key: 0,
|
|
1444
1612
|
class: "body"
|
|
1445
|
-
},
|
|
1613
|
+
}, ys = /* @__PURE__ */ g({
|
|
1446
1614
|
__name: "image-gallery",
|
|
1447
1615
|
props: {
|
|
1448
1616
|
mediaLarge: {},
|
|
@@ -1454,25 +1622,25 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1454
1622
|
bgColor: { default: "white" }
|
|
1455
1623
|
},
|
|
1456
1624
|
setup(e) {
|
|
1457
|
-
const
|
|
1625
|
+
const a = {
|
|
1458
1626
|
white: "",
|
|
1459
1627
|
light: "gallery__wrapper--light",
|
|
1460
1628
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1461
|
-
}, r = e,
|
|
1462
|
-
return (l,
|
|
1463
|
-
class:
|
|
1629
|
+
}, r = e, o = D(() => a[r.bgColor]);
|
|
1630
|
+
return (l, _) => (s(), i("div", {
|
|
1631
|
+
class: p(["gallery__wrapper", o.value])
|
|
1464
1632
|
}, [
|
|
1465
|
-
|
|
1466
|
-
class:
|
|
1633
|
+
t("div", {
|
|
1634
|
+
class: p([
|
|
1467
1635
|
"gallery__content",
|
|
1468
1636
|
l.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1469
1637
|
])
|
|
1470
1638
|
}, [
|
|
1471
|
-
|
|
1472
|
-
l.mediaLarge && l.mediaType === "image" ? (
|
|
1473
|
-
S(
|
|
1639
|
+
t("div", vs, [
|
|
1640
|
+
l.mediaLarge && l.mediaType === "image" ? (s(), i("div", fs, [
|
|
1641
|
+
S(z, null, {
|
|
1474
1642
|
default: y(() => [
|
|
1475
|
-
c(l.$slots, "image-large",
|
|
1643
|
+
c(l.$slots, "image-large", C(L({
|
|
1476
1644
|
width: 617,
|
|
1477
1645
|
height: 530,
|
|
1478
1646
|
src: l.mediaLarge.src,
|
|
@@ -1482,7 +1650,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1482
1650
|
_: 3
|
|
1483
1651
|
})
|
|
1484
1652
|
])) : h("", !0),
|
|
1485
|
-
l.mediaLarge && l.mediaType === "video" ? (
|
|
1653
|
+
l.mediaLarge && l.mediaType === "video" ? (s(), i("div", gs, [
|
|
1486
1654
|
S(ee, {
|
|
1487
1655
|
src: l.mediaLarge.src,
|
|
1488
1656
|
"local-video": "",
|
|
@@ -1497,20 +1665,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1497
1665
|
}, null, 8, ["src", "aria-label"])
|
|
1498
1666
|
])) : h("", !0)
|
|
1499
1667
|
]),
|
|
1500
|
-
|
|
1668
|
+
t("div", {
|
|
1501
1669
|
style: x([l.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
1502
|
-
class:
|
|
1670
|
+
class: p([
|
|
1503
1671
|
"gallery__small",
|
|
1504
1672
|
l.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1505
1673
|
])
|
|
1506
1674
|
}, [
|
|
1507
|
-
(
|
|
1675
|
+
(s(!0), i(P, null, F(l.mediaSmall, (n) => (s(), i("div", {
|
|
1508
1676
|
key: n.src + n.alt,
|
|
1509
1677
|
class: "image image--small"
|
|
1510
1678
|
}, [
|
|
1511
|
-
S(
|
|
1679
|
+
S(z, null, {
|
|
1512
1680
|
default: y(() => [
|
|
1513
|
-
c(l.$slots, "image-small",
|
|
1681
|
+
c(l.$slots, "image-small", C(L({
|
|
1514
1682
|
width: 328,
|
|
1515
1683
|
height: 246,
|
|
1516
1684
|
src: n.src,
|
|
@@ -1520,17 +1688,17 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1520
1688
|
_: 2
|
|
1521
1689
|
}, 1024)
|
|
1522
1690
|
]))), 128)),
|
|
1523
|
-
l.mediaSmall.length < 2 ? (
|
|
1524
|
-
|
|
1691
|
+
l.mediaSmall.length < 2 ? (s(), i("div", bs, [
|
|
1692
|
+
t("p", null, d(l.body), 1)
|
|
1525
1693
|
])) : h("", !0)
|
|
1526
1694
|
], 6)
|
|
1527
1695
|
], 2)
|
|
1528
1696
|
], 2));
|
|
1529
1697
|
}
|
|
1530
|
-
}),
|
|
1698
|
+
}), ks = /* @__PURE__ */ f(ys, [["__scopeId", "data-v-0d271138"]]), $s = { class: "logo-wall__wrapper" }, ws = { class: "logo-wall__content" }, Bs = {
|
|
1531
1699
|
key: 0,
|
|
1532
1700
|
class: "logo-wall__text"
|
|
1533
|
-
},
|
|
1701
|
+
}, Ss = { key: 0 }, Is = { key: 1 }, qs = { class: "logo-wall__logos" }, Cs = { class: "logo-wall__link" }, As = /* @__PURE__ */ g({
|
|
1534
1702
|
__name: "logo-wall",
|
|
1535
1703
|
props: {
|
|
1536
1704
|
headline: {
|
|
@@ -1548,37 +1716,37 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1548
1716
|
}
|
|
1549
1717
|
},
|
|
1550
1718
|
setup(e) {
|
|
1551
|
-
return (
|
|
1552
|
-
|
|
1553
|
-
e.headline || e.body ? (
|
|
1554
|
-
e.headline ? (
|
|
1555
|
-
e.body ? (
|
|
1719
|
+
return (a, r) => (s(), i("div", $s, [
|
|
1720
|
+
t("div", ws, [
|
|
1721
|
+
e.headline || e.body ? (s(), i("div", Bs, [
|
|
1722
|
+
e.headline ? (s(), i("h2", Ss, d(e.headline), 1)) : h("", !0),
|
|
1723
|
+
e.body ? (s(), i("p", Is, d(e.body), 1)) : h("", !0)
|
|
1556
1724
|
])) : h("", !0),
|
|
1557
|
-
|
|
1558
|
-
(
|
|
1559
|
-
key:
|
|
1725
|
+
t("div", qs, [
|
|
1726
|
+
(s(!0), i(P, null, F(e.logos, (o) => (s(), i("div", {
|
|
1727
|
+
key: o.src + o.alt,
|
|
1560
1728
|
class: "logo-wall__logo"
|
|
1561
1729
|
}, [
|
|
1562
|
-
S(
|
|
1730
|
+
S(z, null, {
|
|
1563
1731
|
default: y(() => [
|
|
1564
|
-
c(
|
|
1732
|
+
c(a.$slots, "logo-wall-logo", C(L({
|
|
1565
1733
|
width: 130,
|
|
1566
1734
|
height: 130,
|
|
1567
|
-
src:
|
|
1568
|
-
alt:
|
|
1735
|
+
src: o.src,
|
|
1736
|
+
alt: o.alt
|
|
1569
1737
|
})), void 0, !0)
|
|
1570
1738
|
]),
|
|
1571
1739
|
_: 2
|
|
1572
1740
|
}, 1024)
|
|
1573
1741
|
]))), 128))
|
|
1574
1742
|
]),
|
|
1575
|
-
|
|
1576
|
-
S(
|
|
1743
|
+
t("div", Cs, [
|
|
1744
|
+
S(M, {
|
|
1577
1745
|
"link-type": "regular_light",
|
|
1578
1746
|
arrow: !0
|
|
1579
1747
|
}, {
|
|
1580
1748
|
default: y(() => [
|
|
1581
|
-
c(
|
|
1749
|
+
c(a.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1582
1750
|
]),
|
|
1583
1751
|
_: 3
|
|
1584
1752
|
})
|
|
@@ -1586,13 +1754,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1586
1754
|
])
|
|
1587
1755
|
]));
|
|
1588
1756
|
}
|
|
1589
|
-
}),
|
|
1757
|
+
}), Ls = /* @__PURE__ */ f(As, [["__scopeId", "data-v-fd489289"]]), Ds = { class: "micro-stories__top" }, Ts = {
|
|
1590
1758
|
key: 0,
|
|
1591
1759
|
class: "headline"
|
|
1592
|
-
},
|
|
1760
|
+
}, Vs = {
|
|
1593
1761
|
key: 1,
|
|
1594
1762
|
class: "body"
|
|
1595
|
-
},
|
|
1763
|
+
}, Ps = { class: "micro-stories__splide" }, Fs = /* @__PURE__ */ g({
|
|
1596
1764
|
__name: "micro-stories",
|
|
1597
1765
|
props: {
|
|
1598
1766
|
bgColor: { default: "blue" },
|
|
@@ -1600,43 +1768,43 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1600
1768
|
body: { default: "" }
|
|
1601
1769
|
},
|
|
1602
1770
|
setup(e) {
|
|
1603
|
-
const
|
|
1771
|
+
const a = {
|
|
1604
1772
|
white: "micro-stories__wrapper--white",
|
|
1605
1773
|
blue: "micro-stories__wrapper--blue",
|
|
1606
1774
|
dark: "micro-stories__wrapper--dark"
|
|
1607
|
-
}, r = D(() =>
|
|
1608
|
-
return (l,
|
|
1609
|
-
class:
|
|
1775
|
+
}, r = D(() => a[o.bgColor]), o = e;
|
|
1776
|
+
return (l, _) => (s(), i("div", {
|
|
1777
|
+
class: p(["micro-stories__wrapper", r.value])
|
|
1610
1778
|
}, [
|
|
1611
|
-
|
|
1612
|
-
l.headline ? (
|
|
1613
|
-
|
|
1779
|
+
t("div", Ds, [
|
|
1780
|
+
l.headline ? (s(), i("div", Ts, [
|
|
1781
|
+
t("h2", null, d(l.headline), 1)
|
|
1614
1782
|
])) : h("", !0),
|
|
1615
|
-
l.body ? (
|
|
1616
|
-
|
|
1783
|
+
l.body ? (s(), i("div", Vs, [
|
|
1784
|
+
t("p", null, d(l.body), 1)
|
|
1617
1785
|
])) : h("", !0)
|
|
1618
1786
|
]),
|
|
1619
|
-
|
|
1787
|
+
t("div", Ps, [
|
|
1620
1788
|
c(l.$slots, "micro-stories-slides")
|
|
1621
1789
|
]),
|
|
1622
1790
|
c(l.$slots, "micro-stories-controls")
|
|
1623
1791
|
], 2));
|
|
1624
1792
|
}
|
|
1625
|
-
}),
|
|
1626
|
-
function
|
|
1627
|
-
return
|
|
1628
|
-
|
|
1793
|
+
}), Ms = {}, zs = { class: "policy__wrapper" }, Os = { class: "policy__content" };
|
|
1794
|
+
function Hs(e, a) {
|
|
1795
|
+
return s(), i("div", zs, [
|
|
1796
|
+
t("div", Os, [
|
|
1629
1797
|
c(e.$slots, "default", {}, void 0, !0)
|
|
1630
1798
|
])
|
|
1631
1799
|
]);
|
|
1632
1800
|
}
|
|
1633
|
-
const
|
|
1801
|
+
const Rs = /* @__PURE__ */ f(Ms, [["render", Hs], ["__scopeId", "data-v-ea887d7a"]]), Ns = { class: "product-hero__wrapper" }, Es = { class: "product-hero__content" }, js = { class: "product-hero__headline" }, Ks = { class: "product-hero__video" }, Us = { class: "product-hero__insignia" }, Gs = {
|
|
1634
1802
|
key: 0,
|
|
1635
1803
|
class: "product-hero__logo"
|
|
1636
|
-
},
|
|
1804
|
+
}, Js = {
|
|
1637
1805
|
key: 1,
|
|
1638
1806
|
class: "product-hero__certification"
|
|
1639
|
-
},
|
|
1807
|
+
}, Ws = /* @__PURE__ */ g({
|
|
1640
1808
|
__name: "product-hero",
|
|
1641
1809
|
props: {
|
|
1642
1810
|
headline: {
|
|
@@ -1671,11 +1839,11 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1671
1839
|
}
|
|
1672
1840
|
},
|
|
1673
1841
|
setup(e) {
|
|
1674
|
-
return (
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
e.videoSrc !== "" ? (
|
|
1842
|
+
return (a, r) => (s(), i("div", Ns, [
|
|
1843
|
+
t("div", Es, [
|
|
1844
|
+
t("div", js, d(e.headline), 1),
|
|
1845
|
+
t("div", Ks, [
|
|
1846
|
+
e.videoSrc !== "" ? (s(), T(ee, {
|
|
1679
1847
|
key: 0,
|
|
1680
1848
|
play: "",
|
|
1681
1849
|
"local-video": !0,
|
|
@@ -1686,25 +1854,25 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1686
1854
|
autoplay: "",
|
|
1687
1855
|
loop: "",
|
|
1688
1856
|
muted: ""
|
|
1689
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (
|
|
1857
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (s(), T(I(z), { key: 1 }, {
|
|
1690
1858
|
default: y(() => [
|
|
1691
|
-
c(
|
|
1859
|
+
c(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1692
1860
|
]),
|
|
1693
1861
|
_: 3
|
|
1694
1862
|
})),
|
|
1695
|
-
|
|
1696
|
-
e.logoSrc ? (
|
|
1697
|
-
S(I(
|
|
1863
|
+
t("div", Us, [
|
|
1864
|
+
e.logoSrc ? (s(), i("div", Gs, [
|
|
1865
|
+
S(I(z), null, {
|
|
1698
1866
|
default: y(() => [
|
|
1699
|
-
c(
|
|
1867
|
+
c(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1700
1868
|
]),
|
|
1701
1869
|
_: 3
|
|
1702
1870
|
})
|
|
1703
1871
|
])) : h("", !0),
|
|
1704
|
-
e.isCertified ? (
|
|
1705
|
-
S(I(
|
|
1872
|
+
e.isCertified ? (s(), i("div", Js, [
|
|
1873
|
+
S(I(z), null, {
|
|
1706
1874
|
default: y(() => [
|
|
1707
|
-
c(
|
|
1875
|
+
c(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1708
1876
|
]),
|
|
1709
1877
|
_: 3
|
|
1710
1878
|
})
|
|
@@ -1714,7 +1882,7 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1714
1882
|
])
|
|
1715
1883
|
]));
|
|
1716
1884
|
}
|
|
1717
|
-
}),
|
|
1885
|
+
}), Ys = /* @__PURE__ */ f(Ws, [["__scopeId", "data-v-deab9c3a"]]), Qs = { class: "promo__content" }, Zs = /* @__PURE__ */ g({
|
|
1718
1886
|
__name: "promo",
|
|
1719
1887
|
props: {
|
|
1720
1888
|
label: { default: "" },
|
|
@@ -1730,37 +1898,37 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1730
1898
|
multiply: { type: Boolean, default: !1 }
|
|
1731
1899
|
},
|
|
1732
1900
|
setup(e) {
|
|
1733
|
-
const
|
|
1901
|
+
const a = {
|
|
1734
1902
|
dark: "promo__wrapper--dark",
|
|
1735
1903
|
light: "promo__wrapper--light",
|
|
1736
1904
|
default: "promo__wrapper--default"
|
|
1737
|
-
}, r = e,
|
|
1738
|
-
return (l,
|
|
1739
|
-
class:
|
|
1905
|
+
}, r = e, o = D(() => a[r.variant]);
|
|
1906
|
+
return (l, _) => (s(), i("div", {
|
|
1907
|
+
class: p([
|
|
1740
1908
|
"promo__wrapper",
|
|
1741
|
-
|
|
1909
|
+
o.value,
|
|
1742
1910
|
l.teaser ? "promo__wrapper--teaser" : "",
|
|
1743
1911
|
l.multiply ? "promo__wrapper--multiply" : ""
|
|
1744
1912
|
])
|
|
1745
1913
|
}, [
|
|
1746
|
-
|
|
1747
|
-
l.mediaType === "image" ? (
|
|
1914
|
+
t("div", Qs, [
|
|
1915
|
+
l.mediaType === "image" ? (s(), i("div", {
|
|
1748
1916
|
key: 0,
|
|
1749
|
-
class:
|
|
1917
|
+
class: p([
|
|
1750
1918
|
"promo__image",
|
|
1751
1919
|
l.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1752
1920
|
])
|
|
1753
1921
|
}, [
|
|
1754
|
-
S(
|
|
1922
|
+
S(z, null, {
|
|
1755
1923
|
default: y(() => [
|
|
1756
|
-
c(l.$slots, "promo-image",
|
|
1924
|
+
c(l.$slots, "promo-image", C(L({ src: l.src, width: 1920, alt: l.alt, height: 1080 })))
|
|
1757
1925
|
]),
|
|
1758
1926
|
_: 3
|
|
1759
1927
|
})
|
|
1760
1928
|
], 2)) : h("", !0),
|
|
1761
|
-
l.mediaType === "video" ? (
|
|
1929
|
+
l.mediaType === "video" ? (s(), i("div", {
|
|
1762
1930
|
key: 1,
|
|
1763
|
-
class:
|
|
1931
|
+
class: p([
|
|
1764
1932
|
"promo__video",
|
|
1765
1933
|
l.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1766
1934
|
])
|
|
@@ -1777,26 +1945,26 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1777
1945
|
poster: l.fallbackImage
|
|
1778
1946
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1779
1947
|
], 2)) : h("", !0),
|
|
1780
|
-
|
|
1781
|
-
class:
|
|
1948
|
+
t("div", {
|
|
1949
|
+
class: p([
|
|
1782
1950
|
"promo__text",
|
|
1783
1951
|
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1784
1952
|
])
|
|
1785
1953
|
}, [
|
|
1786
|
-
l.label ? (
|
|
1954
|
+
l.label ? (s(), T(Z, {
|
|
1787
1955
|
key: 0,
|
|
1788
1956
|
text: l.label,
|
|
1789
1957
|
"label-dark": l.variant === "dark"
|
|
1790
1958
|
}, null, 8, ["text", "label-dark"])) : h("", !0),
|
|
1791
|
-
|
|
1792
|
-
class:
|
|
1959
|
+
t("div", {
|
|
1960
|
+
class: p([
|
|
1793
1961
|
"promo__title",
|
|
1794
1962
|
l.variant === "dark" ? "promo__title--dark" : ""
|
|
1795
1963
|
])
|
|
1796
1964
|
}, [
|
|
1797
1965
|
c(l.$slots, "promo-headline")
|
|
1798
1966
|
], 2),
|
|
1799
|
-
l.linkType === "link" ? (
|
|
1967
|
+
l.linkType === "link" ? (s(), T(M, {
|
|
1800
1968
|
key: 1,
|
|
1801
1969
|
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
1802
1970
|
arrow: ""
|
|
@@ -1806,7 +1974,7 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1806
1974
|
]),
|
|
1807
1975
|
_: 3
|
|
1808
1976
|
}, 8, ["link-type"])) : h("", !0),
|
|
1809
|
-
l.linkType === "button" ? (
|
|
1977
|
+
l.linkType === "button" ? (s(), T(M, {
|
|
1810
1978
|
key: 2,
|
|
1811
1979
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
1812
1980
|
}, {
|
|
@@ -1819,10 +1987,10 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1819
1987
|
])
|
|
1820
1988
|
], 2));
|
|
1821
1989
|
}
|
|
1822
|
-
}),
|
|
1990
|
+
}), Xs = /* @__PURE__ */ f(Zs, [["__scopeId", "data-v-df54d965"]]), xs = (e) => (O("data-v-e3cc8e27"), e = e(), H(), e), el = { class: "quote__wrapper" }, tl = { class: "quote__content" }, al = /* @__PURE__ */ xs(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), ol = { class: "quote__quote" }, sl = { class: "quote__quote-text" }, ll = { class: "quote__author" }, il = {
|
|
1823
1991
|
key: 0,
|
|
1824
1992
|
class: "quote__image"
|
|
1825
|
-
},
|
|
1993
|
+
}, rl = { class: "quote__text" }, nl = { class: "quote__author-name" }, dl = { class: "quote__author-title" }, cl = /* @__PURE__ */ g({
|
|
1826
1994
|
__name: "quote",
|
|
1827
1995
|
props: {
|
|
1828
1996
|
quote: {
|
|
@@ -1844,16 +2012,16 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1844
2012
|
}
|
|
1845
2013
|
},
|
|
1846
2014
|
setup(e) {
|
|
1847
|
-
return (
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
e.authorImage ? (
|
|
1854
|
-
S(
|
|
2015
|
+
return (a, r) => (s(), i("div", el, [
|
|
2016
|
+
t("div", tl, [
|
|
2017
|
+
al,
|
|
2018
|
+
t("div", ol, [
|
|
2019
|
+
t("p", sl, d(e.quote), 1),
|
|
2020
|
+
t("div", ll, [
|
|
2021
|
+
e.authorImage ? (s(), i("div", il, [
|
|
2022
|
+
S(z, null, {
|
|
1855
2023
|
default: y(() => [
|
|
1856
|
-
c(
|
|
2024
|
+
c(a.$slots, "author-image", C(L({
|
|
1857
2025
|
src: e.authorImage + "/m/100x100",
|
|
1858
2026
|
width: 60,
|
|
1859
2027
|
height: 60
|
|
@@ -1862,22 +2030,22 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1862
2030
|
_: 3
|
|
1863
2031
|
})
|
|
1864
2032
|
])) : h("", !0),
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
2033
|
+
t("div", rl, [
|
|
2034
|
+
t("p", nl, d(e.author), 1),
|
|
2035
|
+
t("p", dl, d(e.authorTitle), 1)
|
|
1868
2036
|
])
|
|
1869
2037
|
])
|
|
1870
2038
|
])
|
|
1871
2039
|
])
|
|
1872
2040
|
]));
|
|
1873
2041
|
}
|
|
1874
|
-
}),
|
|
2042
|
+
}), ul = /* @__PURE__ */ f(cl, [["__scopeId", "data-v-e3cc8e27"]]), _l = { class: "rich-text__wrapper" }, hl = {
|
|
1875
2043
|
key: 0,
|
|
1876
2044
|
class: "rich-text__links"
|
|
1877
|
-
},
|
|
2045
|
+
}, pl = {
|
|
1878
2046
|
key: 0,
|
|
1879
2047
|
class: "rich-text__bullet-list"
|
|
1880
|
-
},
|
|
2048
|
+
}, ml = /* @__PURE__ */ g({
|
|
1881
2049
|
__name: "rich-text",
|
|
1882
2050
|
props: {
|
|
1883
2051
|
headline: { default: "" },
|
|
@@ -1890,55 +2058,55 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1890
2058
|
label: { default: "" }
|
|
1891
2059
|
},
|
|
1892
2060
|
setup(e) {
|
|
1893
|
-
return (
|
|
1894
|
-
class:
|
|
2061
|
+
return (a, r) => (s(), i("div", {
|
|
2062
|
+
class: p([
|
|
1895
2063
|
"rich-text",
|
|
1896
|
-
|
|
2064
|
+
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1897
2065
|
])
|
|
1898
2066
|
}, [
|
|
1899
|
-
|
|
1900
|
-
|
|
2067
|
+
t("div", _l, [
|
|
2068
|
+
a.label ? (s(), T(Z, {
|
|
1901
2069
|
key: 0,
|
|
1902
|
-
text:
|
|
2070
|
+
text: a.label,
|
|
1903
2071
|
"label-dark": !1
|
|
1904
2072
|
}, null, 8, ["text"])) : h("", !0),
|
|
1905
|
-
|
|
2073
|
+
a.headline ? (s(), i("h2", {
|
|
1906
2074
|
key: 1,
|
|
1907
|
-
class:
|
|
2075
|
+
class: p([
|
|
1908
2076
|
"rich-text__headline",
|
|
1909
|
-
|
|
2077
|
+
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
1910
2078
|
])
|
|
1911
|
-
}, d(
|
|
1912
|
-
|
|
1913
|
-
class:
|
|
2079
|
+
}, d(a.headline), 3)) : h("", !0),
|
|
2080
|
+
t("div", {
|
|
2081
|
+
class: p([
|
|
1914
2082
|
"rich-text__content",
|
|
1915
|
-
|
|
2083
|
+
a.leftAligned || a.bulletList || a.image ? "rich-text__content--left-aligned" : "rich-text__content--centered"
|
|
1916
2084
|
])
|
|
1917
2085
|
}, [
|
|
1918
|
-
|
|
1919
|
-
class:
|
|
2086
|
+
t("div", {
|
|
2087
|
+
class: p([
|
|
1920
2088
|
"rich-text__body",
|
|
1921
|
-
|
|
2089
|
+
a.bulletList || a.image ? "rich-text__body--content-right" : ""
|
|
1922
2090
|
])
|
|
1923
2091
|
}, [
|
|
1924
|
-
c(
|
|
1925
|
-
|
|
1926
|
-
c(
|
|
2092
|
+
c(a.$slots, "rich-text-content"),
|
|
2093
|
+
a.links ? (s(), i("div", hl, [
|
|
2094
|
+
c(a.$slots, "rich-text-links")
|
|
1927
2095
|
])) : h("", !0)
|
|
1928
2096
|
], 2),
|
|
1929
|
-
|
|
1930
|
-
c(
|
|
2097
|
+
a.bulletList ? (s(), i("div", pl, [
|
|
2098
|
+
c(a.$slots, "rich-text-bullet-list")
|
|
1931
2099
|
])) : h("", !0),
|
|
1932
|
-
|
|
2100
|
+
a.image ? (s(), i("div", {
|
|
1933
2101
|
key: 1,
|
|
1934
|
-
class:
|
|
2102
|
+
class: p([
|
|
1935
2103
|
"rich-text__image",
|
|
1936
|
-
|
|
2104
|
+
a.imageClip ? "rich-text__image--clip" : ""
|
|
1937
2105
|
])
|
|
1938
2106
|
}, [
|
|
1939
|
-
S(
|
|
2107
|
+
S(z, null, {
|
|
1940
2108
|
default: y(() => [
|
|
1941
|
-
c(
|
|
2109
|
+
c(a.$slots, "rich-text-image", C(L({ width: 865, height: 307 })))
|
|
1942
2110
|
]),
|
|
1943
2111
|
_: 3
|
|
1944
2112
|
})
|
|
@@ -1947,16 +2115,16 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1947
2115
|
])
|
|
1948
2116
|
], 2));
|
|
1949
2117
|
}
|
|
1950
|
-
}),
|
|
1951
|
-
function
|
|
1952
|
-
return
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
2118
|
+
}), vl = /* @__PURE__ */ f(ml, [["__scopeId", "data-v-16ba7206"]]), fl = {}, gl = { class: "rich-text" }, bl = { class: "rich-text__wrapper" }, yl = { class: "rich-text__content rich-text__content--left-aligned" }, kl = { class: "rich-text__body" };
|
|
2119
|
+
function $l(e, a) {
|
|
2120
|
+
return s(), i("div", gl, [
|
|
2121
|
+
t("div", bl, [
|
|
2122
|
+
t("div", yl, [
|
|
2123
|
+
t("div", kl, [
|
|
2124
|
+
t("div", null, [
|
|
1957
2125
|
c(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
1958
2126
|
]),
|
|
1959
|
-
|
|
2127
|
+
t("div", null, [
|
|
1960
2128
|
c(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
1961
2129
|
])
|
|
1962
2130
|
])
|
|
@@ -1964,10 +2132,10 @@ function os(e, t) {
|
|
|
1964
2132
|
])
|
|
1965
2133
|
]);
|
|
1966
2134
|
}
|
|
1967
|
-
const
|
|
1968
|
-
/* @__PURE__ */
|
|
1969
|
-
/* @__PURE__ */
|
|
1970
|
-
], -1)),
|
|
2135
|
+
const wl = /* @__PURE__ */ f(fl, [["render", $l], ["__scopeId", "data-v-449f3040"]]), Bl = (e) => (O("data-v-e254e1e0"), e = e(), H(), e), Sl = { class: "timeline__wrapper" }, Il = { class: "timeline__content" }, ql = { class: "timeline__items" }, Cl = { class: "item__left" }, Al = /* @__PURE__ */ Bl(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
|
|
2136
|
+
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2137
|
+
/* @__PURE__ */ t("div", { class: "line" })
|
|
2138
|
+
], -1)), Ll = { class: "item__right" }, Dl = ["innerHTML"], Tl = /* @__PURE__ */ g({
|
|
1971
2139
|
__name: "timeline",
|
|
1972
2140
|
props: {
|
|
1973
2141
|
timelineItems: {
|
|
@@ -1976,10 +2144,10 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
1976
2144
|
}
|
|
1977
2145
|
},
|
|
1978
2146
|
setup(e) {
|
|
1979
|
-
return
|
|
1980
|
-
const
|
|
1981
|
-
(
|
|
1982
|
-
|
|
2147
|
+
return me(() => {
|
|
2148
|
+
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
2149
|
+
(o) => {
|
|
2150
|
+
o.forEach((l) => {
|
|
1983
2151
|
l.isIntersecting && (l.target.classList.add("visible"), l.target.classList.remove("faded"), r.unobserve(l.target));
|
|
1984
2152
|
});
|
|
1985
2153
|
},
|
|
@@ -1987,43 +2155,43 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
1987
2155
|
threshold: 1
|
|
1988
2156
|
}
|
|
1989
2157
|
);
|
|
1990
|
-
|
|
1991
|
-
r.observe(
|
|
2158
|
+
a.forEach((o) => {
|
|
2159
|
+
r.observe(o);
|
|
1992
2160
|
});
|
|
1993
|
-
}), (
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
(
|
|
1997
|
-
key:
|
|
2161
|
+
}), (a, r) => (s(), i("div", Sl, [
|
|
2162
|
+
t("div", Il, [
|
|
2163
|
+
t("div", ql, [
|
|
2164
|
+
(s(!0), i(P, null, F(e.timelineItems, (o) => (s(), i("div", {
|
|
2165
|
+
key: o.year,
|
|
1998
2166
|
class: "timeline__item faded"
|
|
1999
2167
|
}, [
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
S(
|
|
2168
|
+
t("div", Cl, d(o.year), 1),
|
|
2169
|
+
Al,
|
|
2170
|
+
t("div", Ll, [
|
|
2171
|
+
S(z, null, {
|
|
2004
2172
|
default: y(() => [
|
|
2005
|
-
|
|
2173
|
+
o.media.src ? c(a.$slots, "timeline-image", C(X({ key: 0 }, { src: o.media.src, alt: o.media.alt })), void 0, !0) : h("", !0)
|
|
2006
2174
|
]),
|
|
2007
2175
|
_: 2
|
|
2008
2176
|
}, 1024),
|
|
2009
|
-
|
|
2010
|
-
style: x([
|
|
2177
|
+
t("div", {
|
|
2178
|
+
style: x([o.media.src ? "" : "margin-top: 0px"]),
|
|
2011
2179
|
class: "rich-text",
|
|
2012
|
-
innerHTML:
|
|
2013
|
-
}, null, 12,
|
|
2180
|
+
innerHTML: o.text
|
|
2181
|
+
}, null, 12, Dl)
|
|
2014
2182
|
])
|
|
2015
2183
|
]))), 128))
|
|
2016
2184
|
])
|
|
2017
2185
|
])
|
|
2018
2186
|
]));
|
|
2019
2187
|
}
|
|
2020
|
-
}),
|
|
2188
|
+
}), Vl = /* @__PURE__ */ f(Tl, [["__scopeId", "data-v-e254e1e0"]]), Pl = { class: "vimeo" }, Fl = { class: "vimeo__wrapper" }, Ml = {
|
|
2021
2189
|
key: 0,
|
|
2022
2190
|
class: "vimeo__headline"
|
|
2023
|
-
},
|
|
2191
|
+
}, zl = {
|
|
2024
2192
|
key: 1,
|
|
2025
2193
|
class: "vimeo__description"
|
|
2026
|
-
},
|
|
2194
|
+
}, Ol = /* @__PURE__ */ g({
|
|
2027
2195
|
__name: "vimeo",
|
|
2028
2196
|
props: {
|
|
2029
2197
|
headline: {
|
|
@@ -2036,21 +2204,21 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2036
2204
|
}
|
|
2037
2205
|
},
|
|
2038
2206
|
setup(e) {
|
|
2039
|
-
return (
|
|
2040
|
-
|
|
2041
|
-
e.headline ? (
|
|
2042
|
-
c(
|
|
2043
|
-
e.description ? (
|
|
2207
|
+
return (a, r) => (s(), i("div", Pl, [
|
|
2208
|
+
t("div", Fl, [
|
|
2209
|
+
e.headline ? (s(), i("h2", Ml, d(e.headline), 1)) : h("", !0),
|
|
2210
|
+
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2211
|
+
e.description ? (s(), i("p", zl, d(e.description), 1)) : h("", !0)
|
|
2044
2212
|
])
|
|
2045
2213
|
]));
|
|
2046
2214
|
}
|
|
2047
|
-
}),
|
|
2215
|
+
}), Hl = /* @__PURE__ */ f(Ol, [["__scopeId", "data-v-90a2b109"]]), Rl = { class: "academy-overview" }, Nl = { class: "academy-overview__content-wrapper" }, El = { class: "academy-overview__content" }, jl = { class: "academy-overview__title" }, Kl = { class: "academy-overview__description" }, Ul = {
|
|
2048
2216
|
key: 0,
|
|
2049
2217
|
class: "academy-overview__button-wrapper"
|
|
2050
|
-
},
|
|
2218
|
+
}, Gl = {
|
|
2051
2219
|
key: 0,
|
|
2052
2220
|
class: "academy-overview__stats"
|
|
2053
|
-
},
|
|
2221
|
+
}, Jl = { class: "academy-overview__stats-row" }, Wl = { class: "academy-overview__stat" }, Yl = { class: "academy-overview__value" }, Ql = { class: "academy-overview__label" }, Zl = { class: "academy-overview__stat" }, Xl = { class: "academy-overview__value" }, xl = { class: "academy-overview__label" }, ei = /* @__PURE__ */ g({
|
|
2054
2222
|
__name: "frontpage-hero",
|
|
2055
2223
|
props: {
|
|
2056
2224
|
hero: { default: () => ({
|
|
@@ -2064,25 +2232,25 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2064
2232
|
}) }
|
|
2065
2233
|
},
|
|
2066
2234
|
setup(e) {
|
|
2067
|
-
return (
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
c(
|
|
2235
|
+
return (a, r) => (s(), i("div", Rl, [
|
|
2236
|
+
t("div", Nl, [
|
|
2237
|
+
t("div", El, [
|
|
2238
|
+
t("div", null, [
|
|
2239
|
+
t("h1", jl, d(a.hero.headline), 1),
|
|
2240
|
+
t("p", Kl, d(a.hero.description), 1),
|
|
2241
|
+
a.hero.showStats ? h("", !0) : (s(), i("div", Ul, [
|
|
2242
|
+
c(a.$slots, "button", {}, void 0, !0)
|
|
2075
2243
|
]))
|
|
2076
2244
|
]),
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2245
|
+
a.hero.showStats ? (s(), i("div", Gl, [
|
|
2246
|
+
t("div", Jl, [
|
|
2247
|
+
t("div", Wl, [
|
|
2248
|
+
t("div", Yl, d(a.hero.lessonValue), 1),
|
|
2249
|
+
t("div", Ql, d(a.hero.lessonLabel), 1)
|
|
2082
2250
|
]),
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2251
|
+
t("div", Zl, [
|
|
2252
|
+
t("div", Xl, d(a.hero.pointsValue), 1),
|
|
2253
|
+
t("div", xl, d(a.hero.pointsLabel), 1)
|
|
2086
2254
|
])
|
|
2087
2255
|
])
|
|
2088
2256
|
])) : h("", !0)
|
|
@@ -2090,7 +2258,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2090
2258
|
])
|
|
2091
2259
|
]));
|
|
2092
2260
|
}
|
|
2093
|
-
}),
|
|
2261
|
+
}), ti = /* @__PURE__ */ f(ei, [["__scopeId", "data-v-98275425"]]), ai = { class: "not-found__wrapper" }, oi = { class: "not-found__content" }, si = { class: "not-found__headline" }, li = { class: "not-found__body" }, ii = /* @__PURE__ */ g({
|
|
2094
2262
|
__name: "404",
|
|
2095
2263
|
props: {
|
|
2096
2264
|
headline: {
|
|
@@ -2099,16 +2267,16 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2099
2267
|
}
|
|
2100
2268
|
},
|
|
2101
2269
|
setup(e) {
|
|
2102
|
-
return (
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
c(
|
|
2270
|
+
return (a, r) => (s(), i("div", ai, [
|
|
2271
|
+
t("div", oi, [
|
|
2272
|
+
t("h1", si, d(e.headline), 1),
|
|
2273
|
+
t("div", li, [
|
|
2274
|
+
c(a.$slots, "not-found-body", {}, void 0, !0)
|
|
2107
2275
|
])
|
|
2108
2276
|
])
|
|
2109
2277
|
]));
|
|
2110
2278
|
}
|
|
2111
|
-
}),
|
|
2279
|
+
}), ri = /* @__PURE__ */ f(ii, [["__scopeId", "data-v-b829ca6c"]]), ni = { class: "filter__wrapper" }, di = { class: "filter__content" }, ci = { class: "filter__dropdowns" }, ui = { class: "filter__chips" }, _i = /* @__PURE__ */ g({
|
|
2112
2280
|
__name: "filter",
|
|
2113
2281
|
props: {
|
|
2114
2282
|
hasChips: {
|
|
@@ -2122,51 +2290,51 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2122
2290
|
},
|
|
2123
2291
|
emits: ["clearFilters"],
|
|
2124
2292
|
setup(e) {
|
|
2125
|
-
return (
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
c(
|
|
2293
|
+
return (a, r) => (s(), i("div", ni, [
|
|
2294
|
+
t("div", di, [
|
|
2295
|
+
t("div", ci, [
|
|
2296
|
+
c(a.$slots, "filter-dropdowns")
|
|
2129
2297
|
]),
|
|
2130
|
-
|
|
2131
|
-
c(
|
|
2132
|
-
e.hasChips ? (
|
|
2298
|
+
t("div", ui, [
|
|
2299
|
+
c(a.$slots, "filter-chips"),
|
|
2300
|
+
e.hasChips ? (s(), i("button", {
|
|
2133
2301
|
key: 0,
|
|
2134
2302
|
class: "filter__clear",
|
|
2135
|
-
onClick: r[0] || (r[0] = (
|
|
2303
|
+
onClick: r[0] || (r[0] = (o) => a.$emit("clearFilters"))
|
|
2136
2304
|
}, d(e.removeAll), 1)) : h("", !0)
|
|
2137
2305
|
])
|
|
2138
2306
|
])
|
|
2139
2307
|
]));
|
|
2140
2308
|
}
|
|
2141
|
-
}),
|
|
2309
|
+
}), hi = /* @__PURE__ */ f(_i, [["__scopeId", "data-v-31c1ba00"]]), ye = (e) => (O("data-v-3d0cbbd5"), e = e(), H(), e), pi = { class: "footer__wrapper" }, mi = { class: "footer__content" }, vi = {
|
|
2142
2310
|
key: 0,
|
|
2143
2311
|
src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
|
|
2144
2312
|
style: { margin: "0 auto" }
|
|
2145
|
-
},
|
|
2313
|
+
}, fi = { class: "footer__sections" }, gi = { class: "section__title" }, bi = { class: "section__list" }, yi = { class: "section" }, ki = {
|
|
2146
2314
|
key: 0,
|
|
2147
2315
|
class: "section__title"
|
|
2148
|
-
},
|
|
2316
|
+
}, $i = {
|
|
2149
2317
|
key: 1,
|
|
2150
2318
|
class: "section__title"
|
|
2151
|
-
},
|
|
2319
|
+
}, wi = { key: 0 }, Bi = { key: 1 }, Si = { key: 2 }, Ii = { key: 3 }, qi = { key: 4 }, Ci = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("br", null, null, -1)), Ai = {
|
|
2152
2320
|
key: 0,
|
|
2153
2321
|
href: "mailto:china@mir-robots.com"
|
|
2154
|
-
},
|
|
2322
|
+
}, Li = {
|
|
2155
2323
|
key: 1,
|
|
2156
2324
|
href: "mailto:mail@mir-robots.com"
|
|
2157
|
-
},
|
|
2325
|
+
}, Di = {
|
|
2158
2326
|
key: 0,
|
|
2159
2327
|
href: "tel:+8613661856951"
|
|
2160
|
-
},
|
|
2328
|
+
}, Ti = {
|
|
2161
2329
|
key: 1,
|
|
2162
2330
|
href: "tel:+4520377577"
|
|
2163
|
-
},
|
|
2331
|
+
}, Vi = { class: "footer__bottom" }, Pi = { class: "copyright" }, Fi = { class: "footer__policy" }, Mi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), zi = {
|
|
2164
2332
|
key: 0,
|
|
2165
2333
|
class: "footer__social"
|
|
2166
|
-
},
|
|
2334
|
+
}, Oi = ["href", "aria-label"], Hi = {
|
|
2167
2335
|
key: 1,
|
|
2168
2336
|
class: "footer__social"
|
|
2169
|
-
},
|
|
2337
|
+
}, Ri = ["href", "aria-label"], Ni = /* @__PURE__ */ g({
|
|
2170
2338
|
__name: "footer",
|
|
2171
2339
|
props: {
|
|
2172
2340
|
language: { default: "" },
|
|
@@ -2179,107 +2347,107 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2179
2347
|
},
|
|
2180
2348
|
emits: ["changeRegionClicked"],
|
|
2181
2349
|
setup(e) {
|
|
2182
|
-
return (
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
(
|
|
2187
|
-
key:
|
|
2350
|
+
return (a, r) => (s(), i("div", pi, [
|
|
2351
|
+
t("footer", mi, [
|
|
2352
|
+
a.language === "zh" ? (s(), i("img", vi)) : h("", !0),
|
|
2353
|
+
t("div", fi, [
|
|
2354
|
+
(s(!0), i(P, null, F(a.footerSections, (o) => (s(), i("div", {
|
|
2355
|
+
key: o.title,
|
|
2188
2356
|
class: "section"
|
|
2189
2357
|
}, [
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
c(
|
|
2194
|
-
links:
|
|
2358
|
+
t("span", gi, d(o.title), 1),
|
|
2359
|
+
t("nav", null, [
|
|
2360
|
+
t("ul", bi, [
|
|
2361
|
+
c(a.$slots, "section-links", {
|
|
2362
|
+
links: o.links
|
|
2195
2363
|
})
|
|
2196
2364
|
])
|
|
2197
2365
|
])
|
|
2198
2366
|
]))), 128)),
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
S(
|
|
2367
|
+
t("div", yi, [
|
|
2368
|
+
a.language === "zh" ? (s(), i("span", ki, "名傲移动机器人(上海)有限公司")) : (s(), i("span", $i, "Mobile Industrial Robots A/S")),
|
|
2369
|
+
t("address", null, [
|
|
2370
|
+
a.language === "zh" ? (s(), i("span", wi, "上海浦东新区金桥出口加工区")) : (s(), i("span", Bi, "Energivej 51")),
|
|
2371
|
+
a.language === "zh" ? (s(), i("span", Si, "桂桥路1201号10栋2楼")) : (s(), i("span", Ii, "5260 Odense S")),
|
|
2372
|
+
a.language !== "zh" ? (s(), i("span", qi, "CVR: 35251235")) : h("", !0),
|
|
2373
|
+
Ci,
|
|
2374
|
+
S(M, {
|
|
2207
2375
|
class: "footer__contact",
|
|
2208
2376
|
"link-type": "regular_light",
|
|
2209
2377
|
underline: "false"
|
|
2210
2378
|
}, {
|
|
2211
2379
|
default: y(() => [
|
|
2212
|
-
|
|
2380
|
+
a.language === "zh" ? (s(), i("a", Ai, "china@mir-robots.com")) : (s(), i("a", Li, "mail@mir-robots.com"))
|
|
2213
2381
|
]),
|
|
2214
2382
|
_: 1
|
|
2215
2383
|
}),
|
|
2216
|
-
S(
|
|
2384
|
+
S(M, {
|
|
2217
2385
|
class: "footer__contact",
|
|
2218
2386
|
"link-type": "regular_light",
|
|
2219
2387
|
underline: "false"
|
|
2220
2388
|
}, {
|
|
2221
2389
|
default: y(() => [
|
|
2222
|
-
|
|
2390
|
+
a.language === "zh" ? (s(), i("a", Di, "+86 13661856951(微信同号)")) : (s(), i("a", Ti, "+45 20 377 577"))
|
|
2223
2391
|
]),
|
|
2224
2392
|
_: 1
|
|
2225
2393
|
})
|
|
2226
2394
|
])
|
|
2227
2395
|
])
|
|
2228
2396
|
]),
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2397
|
+
t("div", Vi, [
|
|
2398
|
+
t("p", Pi, " © Mobile Industrial Robots " + d((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2399
|
+
t("div", Fi, [
|
|
2400
|
+
t("button", {
|
|
2233
2401
|
class: "footer__language-switcher",
|
|
2234
|
-
onClick: r[0] || (r[0] = (
|
|
2402
|
+
onClick: r[0] || (r[0] = (o) => a.$emit("changeRegionClicked"))
|
|
2235
2403
|
}, [
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
G(d(
|
|
2404
|
+
t("span", null, [
|
|
2405
|
+
Mi,
|
|
2406
|
+
G(d(a.changeRegion), 1)
|
|
2239
2407
|
])
|
|
2240
2408
|
]),
|
|
2241
|
-
c(
|
|
2242
|
-
c(
|
|
2409
|
+
c(a.$slots, "footer-privacy-link"),
|
|
2410
|
+
c(a.$slots, "footer-cookie-link")
|
|
2243
2411
|
]),
|
|
2244
|
-
|
|
2245
|
-
(
|
|
2246
|
-
key:
|
|
2412
|
+
a.language !== "zh" ? (s(), i("div", zi, [
|
|
2413
|
+
(s(!0), i(P, null, F(a.socialMedia, (o) => (s(), T(M, {
|
|
2414
|
+
key: o.title,
|
|
2247
2415
|
underline: "false",
|
|
2248
2416
|
"link-type": "regular"
|
|
2249
2417
|
}, {
|
|
2250
2418
|
default: y(() => [
|
|
2251
|
-
|
|
2252
|
-
href:
|
|
2419
|
+
t("a", {
|
|
2420
|
+
href: o.url,
|
|
2253
2421
|
target: "_blank",
|
|
2254
|
-
"aria-label":
|
|
2422
|
+
"aria-label": o.title
|
|
2255
2423
|
}, [
|
|
2256
|
-
|
|
2424
|
+
t("i", {
|
|
2257
2425
|
width: "19",
|
|
2258
2426
|
height: "14",
|
|
2259
|
-
class:
|
|
2427
|
+
class: p(["footer__social--icon", [o.title ? "bg-" + o.title : ""]])
|
|
2260
2428
|
}, null, 2)
|
|
2261
|
-
], 8,
|
|
2429
|
+
], 8, Oi)
|
|
2262
2430
|
]),
|
|
2263
2431
|
_: 2
|
|
2264
2432
|
}, 1024))), 128))
|
|
2265
|
-
])) : (
|
|
2266
|
-
(
|
|
2267
|
-
key:
|
|
2433
|
+
])) : (s(), i("div", Hi, [
|
|
2434
|
+
(s(!0), i(P, null, F(a.socialMediaChina, (o) => (s(), T(M, {
|
|
2435
|
+
key: o.title,
|
|
2268
2436
|
underline: "false",
|
|
2269
2437
|
"link-type": "regular"
|
|
2270
2438
|
}, {
|
|
2271
2439
|
default: y(() => [
|
|
2272
|
-
|
|
2273
|
-
href:
|
|
2440
|
+
t("a", {
|
|
2441
|
+
href: o.url,
|
|
2274
2442
|
target: "_blank",
|
|
2275
|
-
"aria-label":
|
|
2443
|
+
"aria-label": o.title
|
|
2276
2444
|
}, [
|
|
2277
|
-
|
|
2445
|
+
t("i", {
|
|
2278
2446
|
width: "19",
|
|
2279
2447
|
height: "14",
|
|
2280
|
-
class:
|
|
2448
|
+
class: p(["footer__social--icon", [o.title ? "bg-" + o.title : ""]])
|
|
2281
2449
|
}, null, 2)
|
|
2282
|
-
], 8,
|
|
2450
|
+
], 8, Ri)
|
|
2283
2451
|
]),
|
|
2284
2452
|
_: 2
|
|
2285
2453
|
}, 1024))), 128))
|
|
@@ -2288,51 +2456,51 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2288
2456
|
])
|
|
2289
2457
|
]));
|
|
2290
2458
|
}
|
|
2291
|
-
}),
|
|
2459
|
+
}), Ei = /* @__PURE__ */ f(Ni, [["__scopeId", "data-v-3d0cbbd5"]]), ke = (e) => (O("data-v-766d3c80"), e = e(), H(), e), ji = { class: "header__wrapper" }, Ki = { class: "nav-wrapper" }, Ui = { class: "mir-link-logo" }, Gi = { class: "main-nav-items" }, Ji = {
|
|
2292
2460
|
key: 0,
|
|
2293
2461
|
id: "menu-dropdown",
|
|
2294
2462
|
ref: "dropdownDiv"
|
|
2295
|
-
},
|
|
2463
|
+
}, Wi = {
|
|
2296
2464
|
key: 0,
|
|
2297
2465
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2298
2466
|
alt: "dropdownarrow"
|
|
2299
|
-
},
|
|
2467
|
+
}, Yi = {
|
|
2300
2468
|
key: 1,
|
|
2301
2469
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2302
2470
|
alt: "dropdownarrow",
|
|
2303
2471
|
style: { transform: "rotate(180deg)" }
|
|
2304
|
-
},
|
|
2472
|
+
}, Qi = { class: "dropdown-content" }, Zi = {
|
|
2305
2473
|
key: 1,
|
|
2306
2474
|
class: "nav-search-wrapper"
|
|
2307
|
-
},
|
|
2475
|
+
}, Xi = ["src"], xi = {
|
|
2308
2476
|
key: 2,
|
|
2309
2477
|
id: "menu-portal-switcher",
|
|
2310
2478
|
class: "portal-switcher-wrapper"
|
|
2311
|
-
},
|
|
2479
|
+
}, er = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2312
2480
|
src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
|
|
2313
2481
|
alt: "portalswitchericon",
|
|
2314
2482
|
width: "15",
|
|
2315
2483
|
height: "15"
|
|
2316
|
-
}, null, -1)),
|
|
2317
|
-
|
|
2318
|
-
],
|
|
2484
|
+
}, null, -1)), tr = [
|
|
2485
|
+
er
|
|
2486
|
+
], ar = { class: "portal-switcher-content" }, or = { class: "portal-switcher-links" }, sr = ["href"], lr = ["src"], ir = {
|
|
2319
2487
|
key: 3,
|
|
2320
2488
|
id: "menu-profile-dropdown",
|
|
2321
2489
|
class: "profile-dropdown-wrapper"
|
|
2322
|
-
},
|
|
2490
|
+
}, rr = {
|
|
2323
2491
|
key: 0,
|
|
2324
2492
|
class: "profile-dropdown-sign-in"
|
|
2325
|
-
},
|
|
2493
|
+
}, nr = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2326
2494
|
src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
|
|
2327
2495
|
alt: "profiledropdownicon",
|
|
2328
2496
|
width: "15",
|
|
2329
2497
|
height: "15"
|
|
2330
|
-
}, null, -1)),
|
|
2331
|
-
|
|
2332
|
-
],
|
|
2498
|
+
}, null, -1)), dr = [
|
|
2499
|
+
nr
|
|
2500
|
+
], cr = { class: "profile-dropdown-content" }, ur = { class: "mobile-logo-search-burger-wrapper" }, _r = { class: "mobile-mir-link-logo" }, hr = {
|
|
2333
2501
|
key: 0,
|
|
2334
2502
|
class: "mobile-search-wrapper"
|
|
2335
|
-
},
|
|
2503
|
+
}, pr = ["src"], mr = ["src"], vr = { class: "mobile-menu-content-wrapper" }, fr = { class: "mobile-dropdown-content" }, gr = /* @__PURE__ */ g({
|
|
2336
2504
|
__name: "header",
|
|
2337
2505
|
props: {
|
|
2338
2506
|
burgerState: {
|
|
@@ -2383,19 +2551,19 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2383
2551
|
"update:showProfileDropDown",
|
|
2384
2552
|
"clickSearch"
|
|
2385
2553
|
],
|
|
2386
|
-
setup(e, { expose:
|
|
2387
|
-
let
|
|
2554
|
+
setup(e, { expose: a, emit: r }) {
|
|
2555
|
+
let o = null;
|
|
2388
2556
|
const l = e;
|
|
2389
|
-
let
|
|
2557
|
+
let _ = q(l.burgerState), n = q(l.search), u = q(l.showDropDown), b = q(l.showPortalSwitcherDropDown), v = q(l.showProfileDropDown), k = q(l.isAuthenticated);
|
|
2390
2558
|
Y(
|
|
2391
2559
|
() => l.burgerState,
|
|
2392
|
-
($) =>
|
|
2560
|
+
($) => _.value = $
|
|
2393
2561
|
), Y(
|
|
2394
2562
|
() => l.search,
|
|
2395
2563
|
($) => n.value = $
|
|
2396
2564
|
), Y(
|
|
2397
2565
|
() => l.showDropDown,
|
|
2398
|
-
($) =>
|
|
2566
|
+
($) => u.value = $
|
|
2399
2567
|
), Y(
|
|
2400
2568
|
() => l.showPortalSwitcherDropDown,
|
|
2401
2569
|
($) => b.value = $
|
|
@@ -2405,57 +2573,57 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2405
2573
|
), Y(
|
|
2406
2574
|
() => l.isAuthenticated,
|
|
2407
2575
|
($) => k.value = $
|
|
2408
|
-
),
|
|
2409
|
-
|
|
2410
|
-
$.target.closest("#menu-dropdown") || (
|
|
2411
|
-
}, window.addEventListener("click",
|
|
2412
|
-
}),
|
|
2413
|
-
|
|
2576
|
+
), me(() => {
|
|
2577
|
+
o = ($) => {
|
|
2578
|
+
$.target.closest("#menu-dropdown") || (u.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (v.value = !1);
|
|
2579
|
+
}, window.addEventListener("click", o);
|
|
2580
|
+
}), Ae(() => {
|
|
2581
|
+
o !== null && window.removeEventListener("click", o);
|
|
2414
2582
|
});
|
|
2415
2583
|
const w = r;
|
|
2416
2584
|
function te() {
|
|
2417
|
-
|
|
2585
|
+
u.value = !u.value, w("update:showDropDown", u.value);
|
|
2418
2586
|
}
|
|
2419
|
-
function
|
|
2587
|
+
function ie() {
|
|
2420
2588
|
b.value = !b.value, w("update:showPortalSwitcherDropDown", b.value);
|
|
2421
2589
|
}
|
|
2422
|
-
function
|
|
2590
|
+
function re() {
|
|
2423
2591
|
v.value = !v.value, w("update:showProfileDropDown", v.value);
|
|
2424
2592
|
}
|
|
2425
|
-
function
|
|
2426
|
-
|
|
2593
|
+
function ne() {
|
|
2594
|
+
_.value = !_.value, w("update:burgerState", _.value);
|
|
2427
2595
|
}
|
|
2428
2596
|
let U = q(null), ae = q(null);
|
|
2429
|
-
function
|
|
2597
|
+
function de() {
|
|
2430
2598
|
U.value && U.value.blur();
|
|
2431
2599
|
}
|
|
2432
|
-
return
|
|
2433
|
-
defocusSearchButton:
|
|
2434
|
-
}), ($, E) => (
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2600
|
+
return a({
|
|
2601
|
+
defocusSearchButton: de
|
|
2602
|
+
}), ($, E) => (s(), i("div", ji, [
|
|
2603
|
+
t("nav", null, [
|
|
2604
|
+
t("div", Ki, [
|
|
2605
|
+
t("div", Ui, [
|
|
2438
2606
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2439
2607
|
]),
|
|
2440
|
-
|
|
2608
|
+
t("ul", Gi, [
|
|
2441
2609
|
c($.$slots, "main-nav-items", {}, void 0, !0)
|
|
2442
2610
|
]),
|
|
2443
|
-
e.useDropdown ? (
|
|
2444
|
-
|
|
2611
|
+
e.useDropdown ? (s(), i("div", Ji, [
|
|
2612
|
+
t("button", {
|
|
2445
2613
|
class: "nav-dropdown-btn",
|
|
2446
2614
|
onClick: te
|
|
2447
2615
|
}, [
|
|
2448
2616
|
c($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2449
|
-
I(
|
|
2617
|
+
I(u) === !1 ? (s(), i("img", Wi)) : (s(), i("img", Yi))
|
|
2450
2618
|
]),
|
|
2451
|
-
K(
|
|
2619
|
+
K(t("div", Qi, [
|
|
2452
2620
|
c($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2453
2621
|
], 512), [
|
|
2454
|
-
[Q, I(
|
|
2622
|
+
[Q, I(u)]
|
|
2455
2623
|
])
|
|
2456
2624
|
], 512)) : h("", !0),
|
|
2457
|
-
I(n) ? (
|
|
2458
|
-
|
|
2625
|
+
I(n) ? (s(), i("div", Zi, [
|
|
2626
|
+
t("button", {
|
|
2459
2627
|
ref_key: "navSearchButton",
|
|
2460
2628
|
ref: U,
|
|
2461
2629
|
class: "search-icon",
|
|
@@ -2464,36 +2632,36 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2464
2632
|
return $.$emit("clickSearch"), (N = I(U)) == null ? void 0 : N.blur();
|
|
2465
2633
|
})
|
|
2466
2634
|
}, [
|
|
2467
|
-
|
|
2468
|
-
src: I(
|
|
2635
|
+
t("img", {
|
|
2636
|
+
src: I(_) === !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2469
2637
|
alt: "search icon",
|
|
2470
2638
|
width: "20",
|
|
2471
2639
|
height: "20"
|
|
2472
|
-
}, null, 8,
|
|
2640
|
+
}, null, 8, Xi)
|
|
2473
2641
|
], 512)
|
|
2474
2642
|
])) : h("", !0),
|
|
2475
|
-
e.usePortalSwitcher ? (
|
|
2476
|
-
|
|
2643
|
+
e.usePortalSwitcher ? (s(), i("div", xi, [
|
|
2644
|
+
t("button", {
|
|
2477
2645
|
class: "nav-portal-switcher-btn",
|
|
2478
|
-
onClick:
|
|
2479
|
-
},
|
|
2480
|
-
K(
|
|
2481
|
-
|
|
2482
|
-
(
|
|
2646
|
+
onClick: ie
|
|
2647
|
+
}, tr),
|
|
2648
|
+
K(t("div", ar, [
|
|
2649
|
+
t("ul", or, [
|
|
2650
|
+
(s(!0), i(P, null, F(e.portals, (j, N) => (s(), i("li", {
|
|
2483
2651
|
key: N,
|
|
2484
2652
|
class: "portal-switcher-link"
|
|
2485
2653
|
}, [
|
|
2486
|
-
S(I(
|
|
2654
|
+
S(I(M), { "link-type": "regular" }, {
|
|
2487
2655
|
default: y(() => [
|
|
2488
|
-
|
|
2656
|
+
t("a", {
|
|
2489
2657
|
href: j.link,
|
|
2490
|
-
onClick: E[1] || (E[1] = (J) =>
|
|
2658
|
+
onClick: E[1] || (E[1] = (J) => ce(u) ? u.value = !1 : u = !1)
|
|
2491
2659
|
}, [
|
|
2492
|
-
|
|
2660
|
+
t("img", {
|
|
2493
2661
|
src: j.icon
|
|
2494
|
-
}, null, 8,
|
|
2495
|
-
|
|
2496
|
-
], 8,
|
|
2662
|
+
}, null, 8, lr),
|
|
2663
|
+
t("div", null, d(j.name), 1)
|
|
2664
|
+
], 8, sr)
|
|
2497
2665
|
]),
|
|
2498
2666
|
_: 2
|
|
2499
2667
|
}, 1024)
|
|
@@ -2503,31 +2671,31 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2503
2671
|
[Q, I(b)]
|
|
2504
2672
|
])
|
|
2505
2673
|
])) : h("", !0),
|
|
2506
|
-
e.useProfileDropdown ? (
|
|
2507
|
-
I(k) ? h("", !0) : (
|
|
2674
|
+
e.useProfileDropdown ? (s(), i("div", ir, [
|
|
2675
|
+
I(k) ? h("", !0) : (s(), i("div", rr, [
|
|
2508
2676
|
c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2509
2677
|
])),
|
|
2510
|
-
I(k) ? (
|
|
2678
|
+
I(k) ? (s(), i("button", {
|
|
2511
2679
|
key: 1,
|
|
2512
2680
|
class: "nav-profile-dropdown-btn",
|
|
2513
|
-
onClick:
|
|
2514
|
-
},
|
|
2515
|
-
K(
|
|
2681
|
+
onClick: re
|
|
2682
|
+
}, dr)) : h("", !0),
|
|
2683
|
+
K(t("div", cr, [
|
|
2516
2684
|
c($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2517
2685
|
], 512), [
|
|
2518
2686
|
[Q, I(v)]
|
|
2519
2687
|
])
|
|
2520
2688
|
])) : h("", !0)
|
|
2521
2689
|
]),
|
|
2522
|
-
|
|
2523
|
-
class:
|
|
2690
|
+
t("div", {
|
|
2691
|
+
class: p(["mobile-nav-wrapper", I(_) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2524
2692
|
}, [
|
|
2525
|
-
|
|
2526
|
-
|
|
2693
|
+
t("div", ur, [
|
|
2694
|
+
t("div", _r, [
|
|
2527
2695
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2528
2696
|
]),
|
|
2529
|
-
I(n) ? (
|
|
2530
|
-
|
|
2697
|
+
I(n) ? (s(), i("div", hr, [
|
|
2698
|
+
t("button", {
|
|
2531
2699
|
ref_key: "mobileSearchButton",
|
|
2532
2700
|
ref: ae,
|
|
2533
2701
|
class: "search-icon",
|
|
@@ -2537,43 +2705,43 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2537
2705
|
return $.$emit("clickSearch"), (N = I(ae)) == null ? void 0 : N.blur();
|
|
2538
2706
|
})
|
|
2539
2707
|
}, [
|
|
2540
|
-
|
|
2541
|
-
src: I(
|
|
2708
|
+
t("img", {
|
|
2709
|
+
src: I(_) === !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
2542
2710
|
alt: "search icon",
|
|
2543
2711
|
width: "20",
|
|
2544
2712
|
height: "20"
|
|
2545
|
-
}, null, 8,
|
|
2713
|
+
}, null, 8, pr)
|
|
2546
2714
|
], 512)
|
|
2547
2715
|
])) : h("", !0),
|
|
2548
|
-
|
|
2716
|
+
t("button", {
|
|
2549
2717
|
class: "mobile-burger-wrapper",
|
|
2550
2718
|
"aria-label": "Toggle menu",
|
|
2551
|
-
onClick:
|
|
2719
|
+
onClick: he(ne, ["prevent"])
|
|
2552
2720
|
}, [
|
|
2553
|
-
|
|
2721
|
+
t("img", {
|
|
2554
2722
|
width: "20",
|
|
2555
2723
|
height: "20",
|
|
2556
2724
|
alt: "burger menu line icon",
|
|
2557
|
-
src: I(
|
|
2558
|
-
}, null, 8,
|
|
2725
|
+
src: I(_) === !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"
|
|
2726
|
+
}, null, 8, mr)
|
|
2559
2727
|
])
|
|
2560
2728
|
]),
|
|
2561
|
-
K(
|
|
2562
|
-
|
|
2729
|
+
K(t("div", vr, [
|
|
2730
|
+
t("ul", null, [
|
|
2563
2731
|
c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2564
2732
|
]),
|
|
2565
|
-
|
|
2733
|
+
t("ul", fr, [
|
|
2566
2734
|
c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2567
2735
|
c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2568
2736
|
])
|
|
2569
2737
|
], 512), [
|
|
2570
|
-
[Q, I(
|
|
2738
|
+
[Q, I(_)]
|
|
2571
2739
|
])
|
|
2572
2740
|
], 2)
|
|
2573
2741
|
])
|
|
2574
2742
|
]));
|
|
2575
2743
|
}
|
|
2576
|
-
}),
|
|
2744
|
+
}), br = /* @__PURE__ */ f(gr, [["__scopeId", "data-v-766d3c80"]]), yr = { class: "language__wrapper" }, kr = { class: "language__content" }, $r = { class: "language__headline" }, wr = { class: "language__paragraph" }, Br = { class: "language__links" }, Sr = /* @__PURE__ */ g({
|
|
2577
2745
|
__name: "language-switcher",
|
|
2578
2746
|
props: {
|
|
2579
2747
|
headline: {
|
|
@@ -2586,17 +2754,17 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2586
2754
|
}
|
|
2587
2755
|
},
|
|
2588
2756
|
setup(e) {
|
|
2589
|
-
return (
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
c(
|
|
2757
|
+
return (a, r) => (s(), i("div", yr, [
|
|
2758
|
+
t("div", kr, [
|
|
2759
|
+
t("h2", $r, d(e.headline), 1),
|
|
2760
|
+
t("p", wr, d(e.paragraph), 1),
|
|
2761
|
+
t("div", Br, [
|
|
2762
|
+
c(a.$slots, "language-links", {}, void 0, !0)
|
|
2595
2763
|
])
|
|
2596
2764
|
])
|
|
2597
2765
|
]));
|
|
2598
2766
|
}
|
|
2599
|
-
}),
|
|
2767
|
+
}), Ir = /* @__PURE__ */ f(Sr, [["__scopeId", "data-v-dc8cc97e"]]), qr = { class: "pagination__wrapper" }, Cr = { class: "pagination__content" }, Ar = /* @__PURE__ */ g({
|
|
2600
2768
|
__name: "pagination",
|
|
2601
2769
|
props: {
|
|
2602
2770
|
isPreviousDisabled: {
|
|
@@ -2610,31 +2778,31 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2610
2778
|
},
|
|
2611
2779
|
emits: ["previous", "next"],
|
|
2612
2780
|
setup(e) {
|
|
2613
|
-
return (
|
|
2614
|
-
|
|
2615
|
-
S(
|
|
2781
|
+
return (a, r) => (s(), i("div", qr, [
|
|
2782
|
+
t("div", Cr, [
|
|
2783
|
+
S(se, {
|
|
2616
2784
|
disabled: e.isPreviousDisabled,
|
|
2617
2785
|
variant: "previous",
|
|
2618
2786
|
"aria-label": "previous",
|
|
2619
|
-
onClick: r[0] || (r[0] = (
|
|
2787
|
+
onClick: r[0] || (r[0] = (o) => a.$emit("previous"))
|
|
2620
2788
|
}, null, 8, ["disabled"]),
|
|
2621
|
-
c(
|
|
2622
|
-
S(
|
|
2789
|
+
c(a.$slots, "pagination-numbers"),
|
|
2790
|
+
S(se, {
|
|
2623
2791
|
disabled: e.isNextDisabled,
|
|
2624
2792
|
variant: "next",
|
|
2625
2793
|
"aria-label": "next",
|
|
2626
|
-
onClick: r[1] || (r[1] = (
|
|
2794
|
+
onClick: r[1] || (r[1] = (o) => a.$emit("next"))
|
|
2627
2795
|
}, null, 8, ["disabled"])
|
|
2628
2796
|
])
|
|
2629
2797
|
]));
|
|
2630
2798
|
}
|
|
2631
|
-
}),
|
|
2632
|
-
function
|
|
2633
|
-
return
|
|
2799
|
+
}), Lr = /* @__PURE__ */ f(Ar, [["__scopeId", "data-v-da6d07c9"]]), Dr = {}, Tr = { class: "search__wrapper" };
|
|
2800
|
+
function Vr(e, a) {
|
|
2801
|
+
return s(), i("div", Tr, [
|
|
2634
2802
|
c(e.$slots, "default", { class: "search__content" })
|
|
2635
2803
|
]);
|
|
2636
2804
|
}
|
|
2637
|
-
const
|
|
2805
|
+
const Pr = /* @__PURE__ */ f(Dr, [["render", Vr], ["__scopeId", "data-v-c07a6cf3"]]), Fr = { class: "dropdown" }, Mr = ["aria-expanded"], zr = /* @__PURE__ */ g({
|
|
2638
2806
|
__name: "select-multiple",
|
|
2639
2807
|
props: {
|
|
2640
2808
|
label: { default: "" },
|
|
@@ -2642,19 +2810,19 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2642
2810
|
selectedOptions: { default: () => [] }
|
|
2643
2811
|
},
|
|
2644
2812
|
emits: ["filter", "remove-filter"],
|
|
2645
|
-
setup(e, { emit:
|
|
2646
|
-
const r = q(!1),
|
|
2647
|
-
function
|
|
2648
|
-
|
|
2813
|
+
setup(e, { emit: a }) {
|
|
2814
|
+
const r = q(!1), o = e, l = a;
|
|
2815
|
+
function _(b) {
|
|
2816
|
+
o.selectedOptions.includes(b) ? l("remove-filter", b) : l("filter", b);
|
|
2649
2817
|
}
|
|
2650
2818
|
function n() {
|
|
2651
2819
|
r.value = !1;
|
|
2652
2820
|
}
|
|
2653
|
-
const
|
|
2821
|
+
const u = D(() => o.options.length > 8);
|
|
2654
2822
|
return (b, v) => {
|
|
2655
|
-
const k =
|
|
2656
|
-
return K((
|
|
2657
|
-
|
|
2823
|
+
const k = _e("click-outside");
|
|
2824
|
+
return K((s(), i("div", Fr, [
|
|
2825
|
+
t("button", {
|
|
2658
2826
|
class: "dropdown-button",
|
|
2659
2827
|
style: x({ "z-index": r.value ? 2 : 0 }),
|
|
2660
2828
|
"aria-expanded": r.value ? "true" : "false",
|
|
@@ -2663,11 +2831,11 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2663
2831
|
c(b.$slots, "button", {}, () => [
|
|
2664
2832
|
G(d(b.label), 1)
|
|
2665
2833
|
], !0)
|
|
2666
|
-
], 12,
|
|
2667
|
-
|
|
2668
|
-
class:
|
|
2834
|
+
], 12, Mr),
|
|
2835
|
+
t("div", {
|
|
2836
|
+
class: p([{ hidden: !r.value, "adjust-height": u.value }, "dropdown-content"])
|
|
2669
2837
|
}, [
|
|
2670
|
-
(
|
|
2838
|
+
(s(!0), i(P, null, F(b.options, (w) => (s(), T(I(ve), {
|
|
2671
2839
|
id: w.value,
|
|
2672
2840
|
key: w.value,
|
|
2673
2841
|
name: w.text,
|
|
@@ -2675,7 +2843,7 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2675
2843
|
disabled: !1,
|
|
2676
2844
|
value: w.value,
|
|
2677
2845
|
checked: b.selectedOptions.includes(w.value),
|
|
2678
|
-
onInput: (te) =>
|
|
2846
|
+
onInput: (te) => _(w.value)
|
|
2679
2847
|
}, {
|
|
2680
2848
|
default: y(() => [
|
|
2681
2849
|
G(d(w.text), 1)
|
|
@@ -2688,7 +2856,7 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2688
2856
|
]);
|
|
2689
2857
|
};
|
|
2690
2858
|
}
|
|
2691
|
-
}),
|
|
2859
|
+
}), Or = /* @__PURE__ */ f(zr, [["__scopeId", "data-v-164647da"]]), Hr = { class: "promo__content" }, Rr = { class: "pallet-jack__media-wrap" }, Nr = { class: "pallet-jack-link" }, Er = { class: "pallet-jack__media-wrap__inner-wrap" }, jr = { class: "pallet-jack__media-wrap__content-wrap" }, Kr = { class: "regular-blue" }, Ur = /* @__PURE__ */ g({
|
|
2692
2860
|
__name: "pallet-jack",
|
|
2693
2861
|
props: {
|
|
2694
2862
|
label: { default: "" },
|
|
@@ -2702,58 +2870,58 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2702
2870
|
text: { default: "" }
|
|
2703
2871
|
},
|
|
2704
2872
|
setup(e) {
|
|
2705
|
-
const
|
|
2873
|
+
const a = {
|
|
2706
2874
|
dark: "promo__wrapper--dark",
|
|
2707
2875
|
light: "promo__wrapper--light",
|
|
2708
2876
|
default: "promo__wrapper--default"
|
|
2709
|
-
}, r = e,
|
|
2710
|
-
return (l,
|
|
2711
|
-
class:
|
|
2877
|
+
}, r = e, o = D(() => a[r.variant]);
|
|
2878
|
+
return (l, _) => (s(), i("div", {
|
|
2879
|
+
class: p([
|
|
2712
2880
|
"promo__wrapper",
|
|
2713
|
-
|
|
2881
|
+
o.value,
|
|
2714
2882
|
l.teaser ? "promo__wrapper--teaser" : ""
|
|
2715
2883
|
])
|
|
2716
2884
|
}, [
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
class:
|
|
2885
|
+
t("div", Hr, [
|
|
2886
|
+
t("div", {
|
|
2887
|
+
class: p([
|
|
2720
2888
|
"promo__video",
|
|
2721
2889
|
l.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2722
2890
|
])
|
|
2723
2891
|
}, [
|
|
2724
|
-
|
|
2725
|
-
|
|
2892
|
+
t("div", Rr, [
|
|
2893
|
+
t("div", Nr, [
|
|
2726
2894
|
c(l.$slots, "pallet-jack-link")
|
|
2727
2895
|
]),
|
|
2728
|
-
|
|
2896
|
+
t("div", Er, [
|
|
2729
2897
|
c(l.$slots, "pallet-jack-video")
|
|
2730
2898
|
]),
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2899
|
+
t("div", jr, [
|
|
2900
|
+
t("h3", Kr, d(l.headline), 1),
|
|
2901
|
+
t("p", null, d(l.shortDescription), 1)
|
|
2734
2902
|
])
|
|
2735
2903
|
])
|
|
2736
2904
|
], 2),
|
|
2737
|
-
|
|
2738
|
-
class:
|
|
2905
|
+
t("div", {
|
|
2906
|
+
class: p([
|
|
2739
2907
|
"promo__text",
|
|
2740
2908
|
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2741
2909
|
])
|
|
2742
2910
|
}, [
|
|
2743
|
-
l.label ? (
|
|
2911
|
+
l.label ? (s(), T(Z, {
|
|
2744
2912
|
key: 0,
|
|
2745
2913
|
text: l.label,
|
|
2746
2914
|
"label-dark": l.variant === "dark"
|
|
2747
2915
|
}, null, 8, ["text", "label-dark"])) : h("", !0),
|
|
2748
|
-
|
|
2749
|
-
class:
|
|
2916
|
+
t("div", {
|
|
2917
|
+
class: p([
|
|
2750
2918
|
"promo__title",
|
|
2751
2919
|
l.variant === "dark" ? "promo__title--dark" : ""
|
|
2752
2920
|
])
|
|
2753
2921
|
}, [
|
|
2754
2922
|
c(l.$slots, "promo-text")
|
|
2755
2923
|
], 2),
|
|
2756
|
-
l.linkType === "link" ? (
|
|
2924
|
+
l.linkType === "link" ? (s(), T(M, {
|
|
2757
2925
|
key: 1,
|
|
2758
2926
|
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
2759
2927
|
arrow: ""
|
|
@@ -2763,7 +2931,7 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2763
2931
|
]),
|
|
2764
2932
|
_: 3
|
|
2765
2933
|
}, 8, ["link-type"])) : h("", !0),
|
|
2766
|
-
l.linkType === "button" ? (
|
|
2934
|
+
l.linkType === "button" ? (s(), T(M, {
|
|
2767
2935
|
key: 2,
|
|
2768
2936
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
2769
2937
|
}, {
|
|
@@ -2776,61 +2944,63 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2776
2944
|
])
|
|
2777
2945
|
], 2));
|
|
2778
2946
|
}
|
|
2779
|
-
}),
|
|
2947
|
+
}), Gr = /* @__PURE__ */ f(Ur, [["__scopeId", "data-v-00c0bad3"]]), Wr = {
|
|
2780
2948
|
install: (e) => {
|
|
2781
|
-
e.component("AtomButton",
|
|
2949
|
+
e.component("AtomButton", se), e.component("AtomCheckbox", ve), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", z), e.component("AtomLabel", Z), e.component("AtomLink", M), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Or), e.component("AtomSlider", Bt), e.component("AtomTextarea", Tt), e.component("AtomTextField", jt), e.component("AtomVideo", ee), e.component("MoleculeAddress", la), e.component("MoleculeBulletList", ca), e.component("MoleculeCard", ma), e.component("MoleculeColumnCard", ge), e.component("MoleculeEventCard", Ca), e.component("MoleculeFlashcard", be), e.component("MoleculeModal", fe), e.component("MoleculeTextCard", Ua), e.component("BlockAccordion", ao), e.component("BlockFacts", So), e.component("BlockFeatures", Vo), e.component("BlockFlashcards", Oo), e.component("BlockFormScript", Go), e.component("BlockHeadline", Qo), e.component("BlockHero", ds), e.component("BlockImage", ms), e.component("BlockImageGallery", ks), e.component("BlockLogoWall", Ls), e.component("BlockMicroStories", Fs), e.component("BlockPolicy", Rs), e.component("BlockProductHero", Ys), e.component("BlockPromo", Xs), e.component("BlockQuote", ul), e.component("BlockRichText", vl), e.component("BlockRichTextColumns", wl), e.component("BlockTimeline", Vl), e.component("BlockCardDisplay", co), e.component("BlockColumnGrid", vo), e.component("BlockVimeo", Hl), e.component("BlockPalletJack", Gr), e.component("BlockFrontPageHero", ti), e.component("Organism404", ri), e.component("OrganismFilter", hi), e.component("OrganismFooter", Ei), e.component("OrganismHeader", br), e.component("OrganismLanguageSwitcher", Ir), e.component("OrganismPagination", Lr), e.component("OrganismSearch", Pr);
|
|
2782
2950
|
}
|
|
2783
2951
|
};
|
|
2784
2952
|
export {
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2953
|
+
se as AtomButton,
|
|
2954
|
+
ve as AtomCheckbox,
|
|
2955
|
+
Ne as AtomChip,
|
|
2956
|
+
Ye as AtomDropdown,
|
|
2957
|
+
z as AtomImage,
|
|
2790
2958
|
Z as AtomLabel,
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2959
|
+
M as AtomLink,
|
|
2960
|
+
rt as AtomRadioButton,
|
|
2961
|
+
ht as AtomSelect,
|
|
2962
|
+
Or as AtomSelectMultiple,
|
|
2963
|
+
Bt as AtomSlider,
|
|
2964
|
+
jt as AtomTextField,
|
|
2965
|
+
Tt as AtomTextarea,
|
|
2798
2966
|
ee as AtomVideo,
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2967
|
+
ao as BlockAccordion,
|
|
2968
|
+
co as BlockCardDisplay,
|
|
2969
|
+
vo as BlockColumnGrid,
|
|
2970
|
+
So as BlockFacts,
|
|
2971
|
+
Vo as BlockFeatures,
|
|
2972
|
+
Oo as BlockFlashcards,
|
|
2973
|
+
Go as BlockFormScript,
|
|
2974
|
+
ti as BlockFrontPageHero,
|
|
2975
|
+
Qo as BlockHeadline,
|
|
2976
|
+
ds as BlockHero,
|
|
2977
|
+
ms as BlockImage,
|
|
2978
|
+
ks as BlockImageGallery,
|
|
2979
|
+
Ls as BlockLogoWall,
|
|
2980
|
+
Fs as BlockMicroStories,
|
|
2981
|
+
Gr as BlockPalletJack,
|
|
2982
|
+
Rs as BlockPolicy,
|
|
2983
|
+
Ys as BlockProductHero,
|
|
2984
|
+
Xs as BlockPromo,
|
|
2985
|
+
ul as BlockQuote,
|
|
2986
|
+
vl as BlockRichText,
|
|
2987
|
+
wl as BlockRichTextColumns,
|
|
2988
|
+
Vl as BlockTimeline,
|
|
2989
|
+
Hl as BlockVimeo,
|
|
2990
|
+
la as MoleculeAddress,
|
|
2991
|
+
ca as MoleculeBulletList,
|
|
2992
|
+
ma as MoleculeCard,
|
|
2993
|
+
ge as MoleculeColumnCard,
|
|
2994
|
+
Ca as MoleculeEventCard,
|
|
2995
|
+
be as MoleculeFlashcard,
|
|
2996
|
+
fe as MoleculeModal,
|
|
2997
|
+
Ua as MoleculeTextCard,
|
|
2998
|
+
ri as Organism404,
|
|
2999
|
+
hi as OrganismFilter,
|
|
3000
|
+
Ei as OrganismFooter,
|
|
3001
|
+
br as OrganismHeader,
|
|
3002
|
+
Ir as OrganismLanguageSwitcher,
|
|
3003
|
+
Lr as OrganismPagination,
|
|
3004
|
+
Pr as OrganismSearch,
|
|
3005
|
+
Wr as default
|
|
2836
3006
|
};
|