@mirweb/mir-web-components 1.6.14 → 1.7.0
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/column-grid/column-grid.vue.d.ts +1 -1
- 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 +1162 -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,121 @@ 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-06c7f817"), 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(["flashcard-side flashcard-back", {
|
|
1099
|
+
"flashcard-back--image": ((b = o.imagebackside) == null ? void 0 : b.filename) && !o.namebackside && !o.bodytextbackside
|
|
1100
|
+
}])
|
|
1101
|
+
}, [
|
|
1102
|
+
o.namebackside || o.bodytextbackside.length > 0 ? (s(), i("div", Fa, [
|
|
1103
|
+
o.namebackside ? (s(), i("h3", Ma, d(o.namebackside), 1)) : h("", !0),
|
|
1104
|
+
o.bodytextbackside ? (s(), i("div", za, [
|
|
1105
|
+
c(o.$slots, "flashcard-back-body", C(L({ bodytextbackside: o.bodytextbackside })), void 0, !0)
|
|
1106
|
+
])) : h("", !0),
|
|
1107
|
+
Oa
|
|
1108
|
+
])) : (s(), i("div", {
|
|
1109
|
+
key: 1,
|
|
1110
|
+
class: p(["flashcard-image", {
|
|
1111
|
+
contain: o.imageFitBack,
|
|
1112
|
+
cover: !o.imageFitBack
|
|
1113
|
+
}])
|
|
1114
|
+
}, [
|
|
1115
|
+
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),
|
|
1116
|
+
Ha
|
|
1117
|
+
], 2))
|
|
1118
|
+
], 2)
|
|
1119
|
+
], 2)
|
|
1120
|
+
]);
|
|
1121
|
+
};
|
|
1122
|
+
}
|
|
1123
|
+
}), be = /* @__PURE__ */ f(Ra, [["__scopeId", "data-v-06c7f817"]]), Na = { class: "text__wrapper" }, Ea = { class: "text__headline" }, ja = { class: "text__paragraph" }, Ka = /* @__PURE__ */ g({
|
|
1024
1124
|
__name: "text-card",
|
|
1025
1125
|
props: {
|
|
1026
1126
|
label: {
|
|
@@ -1037,60 +1137,60 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1037
1137
|
}
|
|
1038
1138
|
},
|
|
1039
1139
|
setup(e) {
|
|
1040
|
-
return (
|
|
1140
|
+
return (a, r) => (s(), i("div", Na, [
|
|
1041
1141
|
S(Z, {
|
|
1042
1142
|
"label-dark": !1,
|
|
1043
1143
|
text: e.label ? e.label : ""
|
|
1044
1144
|
}, null, 8, ["text"]),
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1145
|
+
t("div", Ea, d(e.headline), 1),
|
|
1146
|
+
t("div", ja, [
|
|
1147
|
+
t("p", null, d(e.paragraph), 1)
|
|
1048
1148
|
])
|
|
1049
1149
|
]));
|
|
1050
1150
|
}
|
|
1051
|
-
}),
|
|
1151
|
+
}), 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
1152
|
key: 0,
|
|
1053
1153
|
src: "https://a.storyblok.com/f/230581/21x21/42c9c3b5ba/icon_add.svg"
|
|
1054
|
-
},
|
|
1154
|
+
}, xa = {
|
|
1055
1155
|
key: 1,
|
|
1056
1156
|
src: "https://a.storyblok.com/f/230581/22x21/adfe5d1742/icon_substract.svg"
|
|
1057
|
-
},
|
|
1157
|
+
}, eo = { class: "accordion__bodytext" }, to = /* @__PURE__ */ g({
|
|
1058
1158
|
__name: "accordion",
|
|
1059
1159
|
props: {
|
|
1060
1160
|
accordions: {}
|
|
1061
1161
|
},
|
|
1062
1162
|
setup(e) {
|
|
1063
|
-
const
|
|
1064
|
-
const
|
|
1065
|
-
|
|
1066
|
-
},
|
|
1067
|
-
return (l,
|
|
1068
|
-
|
|
1069
|
-
(
|
|
1163
|
+
const a = q([]), r = (l) => {
|
|
1164
|
+
const _ = a.value.indexOf(l);
|
|
1165
|
+
_ > -1 ? a.value.splice(_, 1) : a.value.push(l);
|
|
1166
|
+
}, o = (l) => a.value.includes(l);
|
|
1167
|
+
return (l, _) => (s(), i("section", Ga, [
|
|
1168
|
+
t("div", Ja, [
|
|
1169
|
+
(s(!0), i(P, null, F(l.accordions, (n) => (s(), i("div", {
|
|
1070
1170
|
key: n._uid
|
|
1071
1171
|
}, [
|
|
1072
|
-
|
|
1073
|
-
|
|
1172
|
+
t("div", Wa, [
|
|
1173
|
+
t("div", {
|
|
1074
1174
|
class: "accordion__header",
|
|
1075
|
-
onClick: (
|
|
1175
|
+
onClick: (u) => r(n._uid)
|
|
1076
1176
|
}, [
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1177
|
+
t("h3", Qa, d(n.headline), 1),
|
|
1178
|
+
t("span", Za, [
|
|
1179
|
+
o(n._uid) ? (s(), i("img", xa)) : (s(), i("img", Xa))
|
|
1080
1180
|
])
|
|
1081
|
-
], 8,
|
|
1082
|
-
|
|
1083
|
-
class:
|
|
1181
|
+
], 8, Ya),
|
|
1182
|
+
t("div", {
|
|
1183
|
+
class: p(["accordion__content", { "accordion__content--reverse": n.imageFirst }]),
|
|
1084
1184
|
style: x({
|
|
1085
|
-
display:
|
|
1185
|
+
display: o(n._uid) ? "flex" : "none"
|
|
1086
1186
|
})
|
|
1087
1187
|
}, [
|
|
1088
|
-
|
|
1089
|
-
c(l.$slots, "accordion-body",
|
|
1188
|
+
t("div", eo, [
|
|
1189
|
+
c(l.$slots, "accordion-body", C(L({ body: n.bodytext })), void 0, !0)
|
|
1090
1190
|
]),
|
|
1091
|
-
S(
|
|
1191
|
+
S(z, null, {
|
|
1092
1192
|
default: y(() => [
|
|
1093
|
-
n.image ? c(l.$slots, "accordion-image",
|
|
1193
|
+
n.image ? c(l.$slots, "accordion-image", C(X({ key: 0 }, {
|
|
1094
1194
|
src: n.image.filename,
|
|
1095
1195
|
alt: n.image.alt,
|
|
1096
1196
|
class: "accordion__image"
|
|
@@ -1104,10 +1204,10 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1104
1204
|
])
|
|
1105
1205
|
]));
|
|
1106
1206
|
}
|
|
1107
|
-
}),
|
|
1207
|
+
}), ao = /* @__PURE__ */ f(to, [["__scopeId", "data-v-8e3c34ec"]]), oo = { class: "card-display__wrapper" }, so = {
|
|
1108
1208
|
key: 0,
|
|
1109
1209
|
class: "card__content"
|
|
1110
|
-
},
|
|
1210
|
+
}, lo = { key: 0 }, io = { key: 1 }, ro = { class: "card__cards" }, no = /* @__PURE__ */ g({
|
|
1111
1211
|
__name: "card-display",
|
|
1112
1212
|
props: {
|
|
1113
1213
|
headline: {
|
|
@@ -1124,30 +1224,30 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1124
1224
|
}
|
|
1125
1225
|
},
|
|
1126
1226
|
setup(e) {
|
|
1127
|
-
return (
|
|
1128
|
-
class:
|
|
1227
|
+
return (a, r) => (s(), i("div", {
|
|
1228
|
+
class: p([
|
|
1129
1229
|
"card-display",
|
|
1130
1230
|
e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
|
|
1131
1231
|
])
|
|
1132
1232
|
}, [
|
|
1133
|
-
|
|
1134
|
-
e.headline || e.paragraph ? (
|
|
1135
|
-
e.headline ? (
|
|
1136
|
-
e.paragraph ? (
|
|
1233
|
+
t("div", oo, [
|
|
1234
|
+
e.headline || e.paragraph ? (s(), i("div", so, [
|
|
1235
|
+
e.headline ? (s(), i("h2", lo, d(e.headline), 1)) : h("", !0),
|
|
1236
|
+
e.paragraph ? (s(), i("p", io, d(e.paragraph), 1)) : h("", !0)
|
|
1137
1237
|
])) : h("", !0),
|
|
1138
|
-
|
|
1139
|
-
c(
|
|
1238
|
+
t("div", ro, [
|
|
1239
|
+
c(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1140
1240
|
])
|
|
1141
1241
|
])
|
|
1142
1242
|
], 2));
|
|
1143
1243
|
}
|
|
1144
|
-
}),
|
|
1244
|
+
}), co = /* @__PURE__ */ f(no, [["__scopeId", "data-v-e8033cff"]]), uo = { class: "column-grid__top-section" }, _o = {
|
|
1145
1245
|
key: 0,
|
|
1146
1246
|
class: "column-grid__headline"
|
|
1147
|
-
},
|
|
1247
|
+
}, ho = {
|
|
1148
1248
|
key: 1,
|
|
1149
1249
|
class: "column-grid__bodytext"
|
|
1150
|
-
},
|
|
1250
|
+
}, po = { class: "column-grid__teaser-list" }, mo = /* @__PURE__ */ g({
|
|
1151
1251
|
__name: "column-grid",
|
|
1152
1252
|
props: {
|
|
1153
1253
|
headline: { default: "" },
|
|
@@ -1156,34 +1256,34 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1156
1256
|
columns: {}
|
|
1157
1257
|
},
|
|
1158
1258
|
setup(e) {
|
|
1159
|
-
return (
|
|
1160
|
-
class:
|
|
1259
|
+
return (a, r) => (s(), i("div", {
|
|
1260
|
+
class: p([
|
|
1161
1261
|
"column-grid",
|
|
1162
|
-
|
|
1262
|
+
a.bgColor === "dark" ? "column-grid--dark" : a.bgColor === "light" ? "column-grid--light" : "column-grid--white"
|
|
1163
1263
|
])
|
|
1164
1264
|
}, [
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
c(
|
|
1265
|
+
t("div", uo, [
|
|
1266
|
+
a.headline ? (s(), i("h2", _o, d(a.headline), 1)) : h("", !0),
|
|
1267
|
+
a.bodytext ? (s(), i("div", ho, [
|
|
1268
|
+
c(a.$slots, "column-grid-body", {}, void 0, !0)
|
|
1169
1269
|
])) : h("", !0)
|
|
1170
1270
|
]),
|
|
1171
|
-
|
|
1172
|
-
(
|
|
1173
|
-
key:
|
|
1174
|
-
headline:
|
|
1175
|
-
bodytext:
|
|
1176
|
-
image:
|
|
1177
|
-
"image-fit":
|
|
1271
|
+
t("div", po, [
|
|
1272
|
+
(s(!0), i(P, null, F(a.columns, (o) => (s(), T(ge, {
|
|
1273
|
+
key: o._uid,
|
|
1274
|
+
headline: o.headline,
|
|
1275
|
+
bodytext: o.bodytext,
|
|
1276
|
+
image: o.image,
|
|
1277
|
+
"image-fit": o.imageFit
|
|
1178
1278
|
}, {
|
|
1179
1279
|
"column-card-body": y(() => [
|
|
1180
|
-
c(
|
|
1280
|
+
c(a.$slots, "column-card-body", C(L({ body: o.bodytext })), void 0, !0)
|
|
1181
1281
|
]),
|
|
1182
1282
|
"column-card-image": y(() => [
|
|
1183
|
-
|
|
1184
|
-
src:
|
|
1185
|
-
alt:
|
|
1186
|
-
style: { "object-fit":
|
|
1283
|
+
o.image ? c(a.$slots, "column-card-image", C(X({ key: 0 }, {
|
|
1284
|
+
src: o.image.filename,
|
|
1285
|
+
alt: o.image.alt,
|
|
1286
|
+
style: { "object-fit": o.imageFit ? "cover" : "contain" }
|
|
1187
1287
|
})), void 0, !0) : h("", !0)
|
|
1188
1288
|
]),
|
|
1189
1289
|
_: 2
|
|
@@ -1191,10 +1291,10 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1191
1291
|
])
|
|
1192
1292
|
], 2));
|
|
1193
1293
|
}
|
|
1194
|
-
}),
|
|
1294
|
+
}), 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
1295
|
key: 0,
|
|
1196
1296
|
class: "facts__link"
|
|
1197
|
-
},
|
|
1297
|
+
}, Bo = /* @__PURE__ */ g({
|
|
1198
1298
|
__name: "facts",
|
|
1199
1299
|
props: {
|
|
1200
1300
|
headline: { default: "" },
|
|
@@ -1218,29 +1318,29 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1218
1318
|
}) }
|
|
1219
1319
|
},
|
|
1220
1320
|
setup(e) {
|
|
1221
|
-
return (
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
(
|
|
1226
|
-
key:
|
|
1321
|
+
return (a, r) => (s(), i("div", fo, [
|
|
1322
|
+
t("div", go, [
|
|
1323
|
+
t("h2", bo, d(a.headline), 1),
|
|
1324
|
+
t("div", yo, [
|
|
1325
|
+
(s(!0), i(P, null, F(a.facts, (o) => (s(), i("div", {
|
|
1326
|
+
key: o.value + o.metric,
|
|
1227
1327
|
class: "fact"
|
|
1228
1328
|
}, [
|
|
1229
|
-
|
|
1230
|
-
|
|
1329
|
+
t("div", ko, [
|
|
1330
|
+
t("span", null, d(o.value), 1)
|
|
1231
1331
|
]),
|
|
1232
|
-
|
|
1233
|
-
|
|
1332
|
+
t("div", $o, [
|
|
1333
|
+
t("span", null, d(o.metric), 1)
|
|
1234
1334
|
])
|
|
1235
1335
|
]))), 128))
|
|
1236
1336
|
]),
|
|
1237
|
-
|
|
1238
|
-
S(
|
|
1337
|
+
a.link ? (s(), i("div", wo, [
|
|
1338
|
+
S(M, {
|
|
1239
1339
|
"link-type": "regular_light",
|
|
1240
1340
|
arrow: ""
|
|
1241
1341
|
}, {
|
|
1242
1342
|
default: y(() => [
|
|
1243
|
-
c(
|
|
1343
|
+
c(a.$slots, "facts-link", {}, void 0, !0)
|
|
1244
1344
|
]),
|
|
1245
1345
|
_: 3
|
|
1246
1346
|
})
|
|
@@ -1248,13 +1348,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1248
1348
|
])
|
|
1249
1349
|
]));
|
|
1250
1350
|
}
|
|
1251
|
-
}),
|
|
1351
|
+
}), So = /* @__PURE__ */ f(Bo, [["__scopeId", "data-v-d2b231d4"]]), Io = { class: "features__wrapper" }, qo = { class: "features__content" }, Co = {
|
|
1252
1352
|
key: 0,
|
|
1253
1353
|
class: "features__headline"
|
|
1254
|
-
},
|
|
1354
|
+
}, Ao = {
|
|
1255
1355
|
key: 1,
|
|
1256
1356
|
class: "features__body"
|
|
1257
|
-
},
|
|
1357
|
+
}, Lo = { class: "element__headline" }, Do = { class: "element__body" }, To = /* @__PURE__ */ g({
|
|
1258
1358
|
__name: "features",
|
|
1259
1359
|
props: {
|
|
1260
1360
|
headline: { default: "" },
|
|
@@ -1262,40 +1362,107 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1262
1362
|
elements: { default: () => [] }
|
|
1263
1363
|
},
|
|
1264
1364
|
setup(e) {
|
|
1265
|
-
return (
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1365
|
+
return (a, r) => (s(), i("div", Io, [
|
|
1366
|
+
t("div", qo, [
|
|
1367
|
+
a.headline ? (s(), i("div", Co, [
|
|
1368
|
+
t("h2", null, d(a.headline), 1)
|
|
1269
1369
|
])) : h("", !0),
|
|
1270
|
-
|
|
1271
|
-
c(
|
|
1370
|
+
a.body ? (s(), i("div", Ao, [
|
|
1371
|
+
c(a.$slots, "features-body", {}, void 0, !0)
|
|
1272
1372
|
])) : h("", !0),
|
|
1273
|
-
|
|
1274
|
-
class:
|
|
1373
|
+
t("div", {
|
|
1374
|
+
class: p(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
1275
1375
|
}, [
|
|
1276
|
-
(
|
|
1277
|
-
key:
|
|
1376
|
+
(s(!0), i(P, null, F(a.elements, (o) => (s(), i("div", {
|
|
1377
|
+
key: o.headline,
|
|
1278
1378
|
class: "features__element"
|
|
1279
1379
|
}, [
|
|
1280
|
-
S(
|
|
1380
|
+
S(z, { class: "element__icon" }, {
|
|
1281
1381
|
default: y(() => [
|
|
1282
|
-
c(
|
|
1283
|
-
src:
|
|
1382
|
+
c(a.$slots, "features-icon", C(L({
|
|
1383
|
+
src: o.icon.src,
|
|
1284
1384
|
height: 30,
|
|
1285
1385
|
width: 30,
|
|
1286
|
-
alt:
|
|
1386
|
+
alt: o.icon.alt
|
|
1287
1387
|
})), void 0, !0)
|
|
1288
1388
|
]),
|
|
1289
1389
|
_: 2
|
|
1290
1390
|
}, 1024),
|
|
1291
|
-
|
|
1292
|
-
|
|
1391
|
+
t("p", Lo, d(o.headline), 1),
|
|
1392
|
+
t("p", Do, d(o.body), 1)
|
|
1293
1393
|
]))), 128))
|
|
1294
1394
|
], 2)
|
|
1295
1395
|
])
|
|
1296
1396
|
]));
|
|
1297
1397
|
}
|
|
1298
|
-
}),
|
|
1398
|
+
}), Vo = /* @__PURE__ */ f(To, [["__scopeId", "data-v-57a22df7"]]), Po = { class: "flashcard-wrapper" }, Fo = {
|
|
1399
|
+
key: 0,
|
|
1400
|
+
class: "flashcard-wrapper__headline"
|
|
1401
|
+
}, Mo = {
|
|
1402
|
+
key: 1,
|
|
1403
|
+
class: "flashcard-wrapper__bodytext"
|
|
1404
|
+
}, zo = /* @__PURE__ */ g({
|
|
1405
|
+
__name: "flashcards",
|
|
1406
|
+
props: {
|
|
1407
|
+
headline: {},
|
|
1408
|
+
body: {},
|
|
1409
|
+
flashcards: {}
|
|
1410
|
+
},
|
|
1411
|
+
setup(e) {
|
|
1412
|
+
const a = e, r = D(() => a.body.trim().length > 0), o = D(() => {
|
|
1413
|
+
var _;
|
|
1414
|
+
const l = (_ = a.flashcards) == null ? void 0 : _.length;
|
|
1415
|
+
return l === 4 || l === 5 ? "sm" : l === 6 || l === 3 ? "md" : l === 2 ? "lg" : "sm";
|
|
1416
|
+
});
|
|
1417
|
+
return (l, _) => (s(), i("div", Po, [
|
|
1418
|
+
t("div", {
|
|
1419
|
+
class: p([
|
|
1420
|
+
{ "no-bodytext": !r.value },
|
|
1421
|
+
"flashcard-wrapper__top-section"
|
|
1422
|
+
])
|
|
1423
|
+
}, [
|
|
1424
|
+
l.headline ? (s(), i("h2", Fo, d(l.headline), 1)) : h("", !0),
|
|
1425
|
+
l.body ? (s(), i("div", Mo, [
|
|
1426
|
+
c(l.$slots, "flashcard-wrapper-body", {}, void 0, !0)
|
|
1427
|
+
])) : h("", !0)
|
|
1428
|
+
], 2),
|
|
1429
|
+
t("div", {
|
|
1430
|
+
class: p(["flashcard-wrapper__teaser-list", {
|
|
1431
|
+
sm: o.value === "sm",
|
|
1432
|
+
md: o.value === "md",
|
|
1433
|
+
lg: o.value === "lg"
|
|
1434
|
+
}])
|
|
1435
|
+
}, [
|
|
1436
|
+
(s(!0), i(P, null, F(l.flashcards, (n) => (s(), T(I(be), {
|
|
1437
|
+
key: n._uid,
|
|
1438
|
+
name: n.name,
|
|
1439
|
+
bodytext: n.bodytext,
|
|
1440
|
+
image: n.image,
|
|
1441
|
+
namebackside: n.namebackside ? n.namebackside : "",
|
|
1442
|
+
bodytextbackside: n.bodytextbackside,
|
|
1443
|
+
imagebackside: n.imagebackside ? n.imagebackside : { filename: "", alt: "" },
|
|
1444
|
+
size: o.value,
|
|
1445
|
+
"image-fit": n.imageFit,
|
|
1446
|
+
"image-fit-back": n.imageFitBack
|
|
1447
|
+
}, {
|
|
1448
|
+
"flashcard-front-body": y(({ bodytext: u }) => [
|
|
1449
|
+
c(l.$slots, "flashcard-front-body", C(L({ bodytext: u })), void 0, !0)
|
|
1450
|
+
]),
|
|
1451
|
+
"flashcard-front-image": y(({ src: u, alt: b }) => [
|
|
1452
|
+
c(l.$slots, "flashcard-front-image", C(L({ src: u, alt: b })), void 0, !0)
|
|
1453
|
+
]),
|
|
1454
|
+
"flashcard-back-body": y(({ bodytextbackside: u }) => [
|
|
1455
|
+
c(l.$slots, "flashcard-back-body", C(L({ bodytextbackside: u })), void 0, !0)
|
|
1456
|
+
]),
|
|
1457
|
+
"flashcard-back-image": y(({ src: u, alt: b }) => [
|
|
1458
|
+
c(l.$slots, "flashcard-back-image", C(L({ src: u, alt: b })), void 0, !0)
|
|
1459
|
+
]),
|
|
1460
|
+
_: 2
|
|
1461
|
+
}, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
|
|
1462
|
+
], 2)
|
|
1463
|
+
]));
|
|
1464
|
+
}
|
|
1465
|
+
}), 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
1466
|
__name: "form-script",
|
|
1300
1467
|
props: {
|
|
1301
1468
|
headline: {
|
|
@@ -1304,21 +1471,21 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1304
1471
|
}
|
|
1305
1472
|
},
|
|
1306
1473
|
setup(e) {
|
|
1307
|
-
return (
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
c(
|
|
1474
|
+
return (a, r) => (s(), i("div", Ho, [
|
|
1475
|
+
t("div", Ro, [
|
|
1476
|
+
t("div", No, [
|
|
1477
|
+
t("h2", Eo, d(e.headline), 1),
|
|
1478
|
+
t("div", jo, [
|
|
1479
|
+
c(a.$slots, "form-body", {}, void 0, !0)
|
|
1313
1480
|
])
|
|
1314
1481
|
]),
|
|
1315
|
-
|
|
1316
|
-
c(
|
|
1482
|
+
t("div", Ko, [
|
|
1483
|
+
c(a.$slots, "form-script", {}, void 0, !0)
|
|
1317
1484
|
])
|
|
1318
1485
|
])
|
|
1319
1486
|
]));
|
|
1320
1487
|
}
|
|
1321
|
-
}),
|
|
1488
|
+
}), Go = /* @__PURE__ */ f(Uo, [["__scopeId", "data-v-87a67c13"]]), Jo = { class: "headline__wrapper" }, Wo = { class: "headline__h1" }, Yo = /* @__PURE__ */ g({
|
|
1322
1489
|
__name: "headline",
|
|
1323
1490
|
props: {
|
|
1324
1491
|
headline: {
|
|
@@ -1335,20 +1502,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1335
1502
|
}
|
|
1336
1503
|
},
|
|
1337
1504
|
setup(e) {
|
|
1338
|
-
return (
|
|
1339
|
-
|
|
1340
|
-
class:
|
|
1505
|
+
return (a, r) => (s(), i("div", Jo, [
|
|
1506
|
+
t("div", {
|
|
1507
|
+
class: p({
|
|
1341
1508
|
"headline__content--article-and-submenu": e.article && e.subMenu,
|
|
1342
1509
|
"headline__content--article": e.article && !e.subMenu,
|
|
1343
1510
|
"headline__content--default headline__content--submenu": !e.article && e.subMenu,
|
|
1344
1511
|
"headline__content--default": !e.article && !e.subMenu
|
|
1345
1512
|
})
|
|
1346
1513
|
}, [
|
|
1347
|
-
|
|
1514
|
+
t("h1", Wo, d(e.headline), 1)
|
|
1348
1515
|
], 2)
|
|
1349
1516
|
]));
|
|
1350
1517
|
}
|
|
1351
|
-
}),
|
|
1518
|
+
}), 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
1519
|
__name: "hero",
|
|
1353
1520
|
props: {
|
|
1354
1521
|
headline: {
|
|
@@ -1357,39 +1524,39 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1357
1524
|
}
|
|
1358
1525
|
},
|
|
1359
1526
|
setup(e) {
|
|
1360
|
-
return (
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1527
|
+
return (a, r) => (s(), i("div", Xo, [
|
|
1528
|
+
t("div", xo, [
|
|
1529
|
+
t("div", es, [
|
|
1530
|
+
t("div", ts, [
|
|
1531
|
+
t("div", as, [
|
|
1532
|
+
t("h1", null, d(e.headline), 1)
|
|
1366
1533
|
]),
|
|
1367
|
-
|
|
1368
|
-
S(
|
|
1534
|
+
t("div", os, [
|
|
1535
|
+
S(M, {
|
|
1369
1536
|
"link-type": "regular_light",
|
|
1370
1537
|
arrow: ""
|
|
1371
1538
|
}, {
|
|
1372
1539
|
default: y(() => [
|
|
1373
|
-
c(
|
|
1540
|
+
c(a.$slots, "hero-link", {}, void 0, !0)
|
|
1374
1541
|
]),
|
|
1375
1542
|
_: 3
|
|
1376
1543
|
})
|
|
1377
1544
|
])
|
|
1378
1545
|
])
|
|
1379
1546
|
]),
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
c(
|
|
1547
|
+
t("div", ss, [
|
|
1548
|
+
ls,
|
|
1549
|
+
t("div", is, [
|
|
1550
|
+
c(a.$slots, "hero-video", {}, void 0, !0)
|
|
1384
1551
|
]),
|
|
1385
|
-
|
|
1386
|
-
c(
|
|
1552
|
+
t("div", rs, [
|
|
1553
|
+
c(a.$slots, "hero-image", {}, void 0, !0)
|
|
1387
1554
|
])
|
|
1388
1555
|
])
|
|
1389
1556
|
])
|
|
1390
1557
|
]));
|
|
1391
1558
|
}
|
|
1392
|
-
}),
|
|
1559
|
+
}), 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
1560
|
inheritAttrs: !1,
|
|
1394
1561
|
__name: "image",
|
|
1395
1562
|
props: {
|
|
@@ -1413,12 +1580,12 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1413
1580
|
}
|
|
1414
1581
|
},
|
|
1415
1582
|
setup(e) {
|
|
1416
|
-
return (
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
S(
|
|
1583
|
+
return (a, r) => (s(), i("div", cs, [
|
|
1584
|
+
t("div", us, [
|
|
1585
|
+
t("div", _s, [
|
|
1586
|
+
S(z, null, {
|
|
1420
1587
|
default: y(() => [
|
|
1421
|
-
c(
|
|
1588
|
+
c(a.$slots, "image", C(L({
|
|
1422
1589
|
width: 984,
|
|
1423
1590
|
height: e.fullHeight ? "100%" : 554,
|
|
1424
1591
|
src: e.src,
|
|
@@ -1429,20 +1596,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1429
1596
|
_: 3
|
|
1430
1597
|
})
|
|
1431
1598
|
]),
|
|
1432
|
-
|
|
1599
|
+
t("p", hs, d(e.caption), 1)
|
|
1433
1600
|
])
|
|
1434
1601
|
]));
|
|
1435
1602
|
}
|
|
1436
|
-
}),
|
|
1603
|
+
}), ms = /* @__PURE__ */ f(ps, [["__scopeId", "data-v-c583d657"]]), vs = { class: "gallery__large" }, fs = {
|
|
1437
1604
|
key: 0,
|
|
1438
1605
|
class: "image image--large"
|
|
1439
|
-
},
|
|
1606
|
+
}, gs = {
|
|
1440
1607
|
key: 1,
|
|
1441
1608
|
class: "video"
|
|
1442
|
-
},
|
|
1609
|
+
}, bs = {
|
|
1443
1610
|
key: 0,
|
|
1444
1611
|
class: "body"
|
|
1445
|
-
},
|
|
1612
|
+
}, ys = /* @__PURE__ */ g({
|
|
1446
1613
|
__name: "image-gallery",
|
|
1447
1614
|
props: {
|
|
1448
1615
|
mediaLarge: {},
|
|
@@ -1454,25 +1621,25 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1454
1621
|
bgColor: { default: "white" }
|
|
1455
1622
|
},
|
|
1456
1623
|
setup(e) {
|
|
1457
|
-
const
|
|
1624
|
+
const a = {
|
|
1458
1625
|
white: "",
|
|
1459
1626
|
light: "gallery__wrapper--light",
|
|
1460
1627
|
dark: "gallery__wrapper--dark mirsaic--dark"
|
|
1461
|
-
}, r = e,
|
|
1462
|
-
return (l,
|
|
1463
|
-
class:
|
|
1628
|
+
}, r = e, o = D(() => a[r.bgColor]);
|
|
1629
|
+
return (l, _) => (s(), i("div", {
|
|
1630
|
+
class: p(["gallery__wrapper", o.value])
|
|
1464
1631
|
}, [
|
|
1465
|
-
|
|
1466
|
-
class:
|
|
1632
|
+
t("div", {
|
|
1633
|
+
class: p([
|
|
1467
1634
|
"gallery__content",
|
|
1468
1635
|
l.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1469
1636
|
])
|
|
1470
1637
|
}, [
|
|
1471
|
-
|
|
1472
|
-
l.mediaLarge && l.mediaType === "image" ? (
|
|
1473
|
-
S(
|
|
1638
|
+
t("div", vs, [
|
|
1639
|
+
l.mediaLarge && l.mediaType === "image" ? (s(), i("div", fs, [
|
|
1640
|
+
S(z, null, {
|
|
1474
1641
|
default: y(() => [
|
|
1475
|
-
c(l.$slots, "image-large",
|
|
1642
|
+
c(l.$slots, "image-large", C(L({
|
|
1476
1643
|
width: 617,
|
|
1477
1644
|
height: 530,
|
|
1478
1645
|
src: l.mediaLarge.src,
|
|
@@ -1482,7 +1649,7 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1482
1649
|
_: 3
|
|
1483
1650
|
})
|
|
1484
1651
|
])) : h("", !0),
|
|
1485
|
-
l.mediaLarge && l.mediaType === "video" ? (
|
|
1652
|
+
l.mediaLarge && l.mediaType === "video" ? (s(), i("div", gs, [
|
|
1486
1653
|
S(ee, {
|
|
1487
1654
|
src: l.mediaLarge.src,
|
|
1488
1655
|
"local-video": "",
|
|
@@ -1497,20 +1664,20 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1497
1664
|
}, null, 8, ["src", "aria-label"])
|
|
1498
1665
|
])) : h("", !0)
|
|
1499
1666
|
]),
|
|
1500
|
-
|
|
1667
|
+
t("div", {
|
|
1501
1668
|
style: x([l.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
|
|
1502
|
-
class:
|
|
1669
|
+
class: p([
|
|
1503
1670
|
"gallery__small",
|
|
1504
1671
|
l.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1505
1672
|
])
|
|
1506
1673
|
}, [
|
|
1507
|
-
(
|
|
1674
|
+
(s(!0), i(P, null, F(l.mediaSmall, (n) => (s(), i("div", {
|
|
1508
1675
|
key: n.src + n.alt,
|
|
1509
1676
|
class: "image image--small"
|
|
1510
1677
|
}, [
|
|
1511
|
-
S(
|
|
1678
|
+
S(z, null, {
|
|
1512
1679
|
default: y(() => [
|
|
1513
|
-
c(l.$slots, "image-small",
|
|
1680
|
+
c(l.$slots, "image-small", C(L({
|
|
1514
1681
|
width: 328,
|
|
1515
1682
|
height: 246,
|
|
1516
1683
|
src: n.src,
|
|
@@ -1520,17 +1687,17 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1520
1687
|
_: 2
|
|
1521
1688
|
}, 1024)
|
|
1522
1689
|
]))), 128)),
|
|
1523
|
-
l.mediaSmall.length < 2 ? (
|
|
1524
|
-
|
|
1690
|
+
l.mediaSmall.length < 2 ? (s(), i("div", bs, [
|
|
1691
|
+
t("p", null, d(l.body), 1)
|
|
1525
1692
|
])) : h("", !0)
|
|
1526
1693
|
], 6)
|
|
1527
1694
|
], 2)
|
|
1528
1695
|
], 2));
|
|
1529
1696
|
}
|
|
1530
|
-
}),
|
|
1697
|
+
}), ks = /* @__PURE__ */ f(ys, [["__scopeId", "data-v-0d271138"]]), $s = { class: "logo-wall__wrapper" }, ws = { class: "logo-wall__content" }, Bs = {
|
|
1531
1698
|
key: 0,
|
|
1532
1699
|
class: "logo-wall__text"
|
|
1533
|
-
},
|
|
1700
|
+
}, Ss = { key: 0 }, Is = { key: 1 }, qs = { class: "logo-wall__logos" }, Cs = { class: "logo-wall__link" }, As = /* @__PURE__ */ g({
|
|
1534
1701
|
__name: "logo-wall",
|
|
1535
1702
|
props: {
|
|
1536
1703
|
headline: {
|
|
@@ -1548,37 +1715,37 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1548
1715
|
}
|
|
1549
1716
|
},
|
|
1550
1717
|
setup(e) {
|
|
1551
|
-
return (
|
|
1552
|
-
|
|
1553
|
-
e.headline || e.body ? (
|
|
1554
|
-
e.headline ? (
|
|
1555
|
-
e.body ? (
|
|
1718
|
+
return (a, r) => (s(), i("div", $s, [
|
|
1719
|
+
t("div", ws, [
|
|
1720
|
+
e.headline || e.body ? (s(), i("div", Bs, [
|
|
1721
|
+
e.headline ? (s(), i("h2", Ss, d(e.headline), 1)) : h("", !0),
|
|
1722
|
+
e.body ? (s(), i("p", Is, d(e.body), 1)) : h("", !0)
|
|
1556
1723
|
])) : h("", !0),
|
|
1557
|
-
|
|
1558
|
-
(
|
|
1559
|
-
key:
|
|
1724
|
+
t("div", qs, [
|
|
1725
|
+
(s(!0), i(P, null, F(e.logos, (o) => (s(), i("div", {
|
|
1726
|
+
key: o.src + o.alt,
|
|
1560
1727
|
class: "logo-wall__logo"
|
|
1561
1728
|
}, [
|
|
1562
|
-
S(
|
|
1729
|
+
S(z, null, {
|
|
1563
1730
|
default: y(() => [
|
|
1564
|
-
c(
|
|
1731
|
+
c(a.$slots, "logo-wall-logo", C(L({
|
|
1565
1732
|
width: 130,
|
|
1566
1733
|
height: 130,
|
|
1567
|
-
src:
|
|
1568
|
-
alt:
|
|
1734
|
+
src: o.src,
|
|
1735
|
+
alt: o.alt
|
|
1569
1736
|
})), void 0, !0)
|
|
1570
1737
|
]),
|
|
1571
1738
|
_: 2
|
|
1572
1739
|
}, 1024)
|
|
1573
1740
|
]))), 128))
|
|
1574
1741
|
]),
|
|
1575
|
-
|
|
1576
|
-
S(
|
|
1742
|
+
t("div", Cs, [
|
|
1743
|
+
S(M, {
|
|
1577
1744
|
"link-type": "regular_light",
|
|
1578
1745
|
arrow: !0
|
|
1579
1746
|
}, {
|
|
1580
1747
|
default: y(() => [
|
|
1581
|
-
c(
|
|
1748
|
+
c(a.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1582
1749
|
]),
|
|
1583
1750
|
_: 3
|
|
1584
1751
|
})
|
|
@@ -1586,13 +1753,13 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1586
1753
|
])
|
|
1587
1754
|
]));
|
|
1588
1755
|
}
|
|
1589
|
-
}),
|
|
1756
|
+
}), Ls = /* @__PURE__ */ f(As, [["__scopeId", "data-v-fd489289"]]), Ds = { class: "micro-stories__top" }, Ts = {
|
|
1590
1757
|
key: 0,
|
|
1591
1758
|
class: "headline"
|
|
1592
|
-
},
|
|
1759
|
+
}, Vs = {
|
|
1593
1760
|
key: 1,
|
|
1594
1761
|
class: "body"
|
|
1595
|
-
},
|
|
1762
|
+
}, Ps = { class: "micro-stories__splide" }, Fs = /* @__PURE__ */ g({
|
|
1596
1763
|
__name: "micro-stories",
|
|
1597
1764
|
props: {
|
|
1598
1765
|
bgColor: { default: "blue" },
|
|
@@ -1600,43 +1767,43 @@ const Ce = ["aria-label"], Ae = /* @__PURE__ */ g({
|
|
|
1600
1767
|
body: { default: "" }
|
|
1601
1768
|
},
|
|
1602
1769
|
setup(e) {
|
|
1603
|
-
const
|
|
1770
|
+
const a = {
|
|
1604
1771
|
white: "micro-stories__wrapper--white",
|
|
1605
1772
|
blue: "micro-stories__wrapper--blue",
|
|
1606
1773
|
dark: "micro-stories__wrapper--dark"
|
|
1607
|
-
}, r = D(() =>
|
|
1608
|
-
return (l,
|
|
1609
|
-
class:
|
|
1774
|
+
}, r = D(() => a[o.bgColor]), o = e;
|
|
1775
|
+
return (l, _) => (s(), i("div", {
|
|
1776
|
+
class: p(["micro-stories__wrapper", r.value])
|
|
1610
1777
|
}, [
|
|
1611
|
-
|
|
1612
|
-
l.headline ? (
|
|
1613
|
-
|
|
1778
|
+
t("div", Ds, [
|
|
1779
|
+
l.headline ? (s(), i("div", Ts, [
|
|
1780
|
+
t("h2", null, d(l.headline), 1)
|
|
1614
1781
|
])) : h("", !0),
|
|
1615
|
-
l.body ? (
|
|
1616
|
-
|
|
1782
|
+
l.body ? (s(), i("div", Vs, [
|
|
1783
|
+
t("p", null, d(l.body), 1)
|
|
1617
1784
|
])) : h("", !0)
|
|
1618
1785
|
]),
|
|
1619
|
-
|
|
1786
|
+
t("div", Ps, [
|
|
1620
1787
|
c(l.$slots, "micro-stories-slides")
|
|
1621
1788
|
]),
|
|
1622
1789
|
c(l.$slots, "micro-stories-controls")
|
|
1623
1790
|
], 2));
|
|
1624
1791
|
}
|
|
1625
|
-
}),
|
|
1626
|
-
function
|
|
1627
|
-
return
|
|
1628
|
-
|
|
1792
|
+
}), Ms = {}, zs = { class: "policy__wrapper" }, Os = { class: "policy__content" };
|
|
1793
|
+
function Hs(e, a) {
|
|
1794
|
+
return s(), i("div", zs, [
|
|
1795
|
+
t("div", Os, [
|
|
1629
1796
|
c(e.$slots, "default", {}, void 0, !0)
|
|
1630
1797
|
])
|
|
1631
1798
|
]);
|
|
1632
1799
|
}
|
|
1633
|
-
const
|
|
1800
|
+
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
1801
|
key: 0,
|
|
1635
1802
|
class: "product-hero__logo"
|
|
1636
|
-
},
|
|
1803
|
+
}, Js = {
|
|
1637
1804
|
key: 1,
|
|
1638
1805
|
class: "product-hero__certification"
|
|
1639
|
-
},
|
|
1806
|
+
}, Ws = /* @__PURE__ */ g({
|
|
1640
1807
|
__name: "product-hero",
|
|
1641
1808
|
props: {
|
|
1642
1809
|
headline: {
|
|
@@ -1671,11 +1838,11 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1671
1838
|
}
|
|
1672
1839
|
},
|
|
1673
1840
|
setup(e) {
|
|
1674
|
-
return (
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
e.videoSrc !== "" ? (
|
|
1841
|
+
return (a, r) => (s(), i("div", Ns, [
|
|
1842
|
+
t("div", Es, [
|
|
1843
|
+
t("div", js, d(e.headline), 1),
|
|
1844
|
+
t("div", Ks, [
|
|
1845
|
+
e.videoSrc !== "" ? (s(), T(ee, {
|
|
1679
1846
|
key: 0,
|
|
1680
1847
|
play: "",
|
|
1681
1848
|
"local-video": !0,
|
|
@@ -1686,25 +1853,25 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1686
1853
|
autoplay: "",
|
|
1687
1854
|
loop: "",
|
|
1688
1855
|
muted: ""
|
|
1689
|
-
}, null, 8, ["src", "aria-label", "poster"])) : (
|
|
1856
|
+
}, null, 8, ["src", "aria-label", "poster"])) : (s(), T(I(z), { key: 1 }, {
|
|
1690
1857
|
default: y(() => [
|
|
1691
|
-
c(
|
|
1858
|
+
c(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
1692
1859
|
]),
|
|
1693
1860
|
_: 3
|
|
1694
1861
|
})),
|
|
1695
|
-
|
|
1696
|
-
e.logoSrc ? (
|
|
1697
|
-
S(I(
|
|
1862
|
+
t("div", Us, [
|
|
1863
|
+
e.logoSrc ? (s(), i("div", Gs, [
|
|
1864
|
+
S(I(z), null, {
|
|
1698
1865
|
default: y(() => [
|
|
1699
|
-
c(
|
|
1866
|
+
c(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
1700
1867
|
]),
|
|
1701
1868
|
_: 3
|
|
1702
1869
|
})
|
|
1703
1870
|
])) : h("", !0),
|
|
1704
|
-
e.isCertified ? (
|
|
1705
|
-
S(I(
|
|
1871
|
+
e.isCertified ? (s(), i("div", Js, [
|
|
1872
|
+
S(I(z), null, {
|
|
1706
1873
|
default: y(() => [
|
|
1707
|
-
c(
|
|
1874
|
+
c(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
1708
1875
|
]),
|
|
1709
1876
|
_: 3
|
|
1710
1877
|
})
|
|
@@ -1714,7 +1881,7 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1714
1881
|
])
|
|
1715
1882
|
]));
|
|
1716
1883
|
}
|
|
1717
|
-
}),
|
|
1884
|
+
}), Ys = /* @__PURE__ */ f(Ws, [["__scopeId", "data-v-deab9c3a"]]), Qs = { class: "promo__content" }, Zs = /* @__PURE__ */ g({
|
|
1718
1885
|
__name: "promo",
|
|
1719
1886
|
props: {
|
|
1720
1887
|
label: { default: "" },
|
|
@@ -1730,37 +1897,37 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1730
1897
|
multiply: { type: Boolean, default: !1 }
|
|
1731
1898
|
},
|
|
1732
1899
|
setup(e) {
|
|
1733
|
-
const
|
|
1900
|
+
const a = {
|
|
1734
1901
|
dark: "promo__wrapper--dark",
|
|
1735
1902
|
light: "promo__wrapper--light",
|
|
1736
1903
|
default: "promo__wrapper--default"
|
|
1737
|
-
}, r = e,
|
|
1738
|
-
return (l,
|
|
1739
|
-
class:
|
|
1904
|
+
}, r = e, o = D(() => a[r.variant]);
|
|
1905
|
+
return (l, _) => (s(), i("div", {
|
|
1906
|
+
class: p([
|
|
1740
1907
|
"promo__wrapper",
|
|
1741
|
-
|
|
1908
|
+
o.value,
|
|
1742
1909
|
l.teaser ? "promo__wrapper--teaser" : "",
|
|
1743
1910
|
l.multiply ? "promo__wrapper--multiply" : ""
|
|
1744
1911
|
])
|
|
1745
1912
|
}, [
|
|
1746
|
-
|
|
1747
|
-
l.mediaType === "image" ? (
|
|
1913
|
+
t("div", Qs, [
|
|
1914
|
+
l.mediaType === "image" ? (s(), i("div", {
|
|
1748
1915
|
key: 0,
|
|
1749
|
-
class:
|
|
1916
|
+
class: p([
|
|
1750
1917
|
"promo__image",
|
|
1751
1918
|
l.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1752
1919
|
])
|
|
1753
1920
|
}, [
|
|
1754
|
-
S(
|
|
1921
|
+
S(z, null, {
|
|
1755
1922
|
default: y(() => [
|
|
1756
|
-
c(l.$slots, "promo-image",
|
|
1923
|
+
c(l.$slots, "promo-image", C(L({ src: l.src, width: 1920, alt: l.alt, height: 1080 })))
|
|
1757
1924
|
]),
|
|
1758
1925
|
_: 3
|
|
1759
1926
|
})
|
|
1760
1927
|
], 2)) : h("", !0),
|
|
1761
|
-
l.mediaType === "video" ? (
|
|
1928
|
+
l.mediaType === "video" ? (s(), i("div", {
|
|
1762
1929
|
key: 1,
|
|
1763
|
-
class:
|
|
1930
|
+
class: p([
|
|
1764
1931
|
"promo__video",
|
|
1765
1932
|
l.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1766
1933
|
])
|
|
@@ -1777,26 +1944,26 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1777
1944
|
poster: l.fallbackImage
|
|
1778
1945
|
}, null, 8, ["src", "aria-label", "poster"])
|
|
1779
1946
|
], 2)) : h("", !0),
|
|
1780
|
-
|
|
1781
|
-
class:
|
|
1947
|
+
t("div", {
|
|
1948
|
+
class: p([
|
|
1782
1949
|
"promo__text",
|
|
1783
1950
|
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1784
1951
|
])
|
|
1785
1952
|
}, [
|
|
1786
|
-
l.label ? (
|
|
1953
|
+
l.label ? (s(), T(Z, {
|
|
1787
1954
|
key: 0,
|
|
1788
1955
|
text: l.label,
|
|
1789
1956
|
"label-dark": l.variant === "dark"
|
|
1790
1957
|
}, null, 8, ["text", "label-dark"])) : h("", !0),
|
|
1791
|
-
|
|
1792
|
-
class:
|
|
1958
|
+
t("div", {
|
|
1959
|
+
class: p([
|
|
1793
1960
|
"promo__title",
|
|
1794
1961
|
l.variant === "dark" ? "promo__title--dark" : ""
|
|
1795
1962
|
])
|
|
1796
1963
|
}, [
|
|
1797
1964
|
c(l.$slots, "promo-headline")
|
|
1798
1965
|
], 2),
|
|
1799
|
-
l.linkType === "link" ? (
|
|
1966
|
+
l.linkType === "link" ? (s(), T(M, {
|
|
1800
1967
|
key: 1,
|
|
1801
1968
|
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
1802
1969
|
arrow: ""
|
|
@@ -1806,7 +1973,7 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1806
1973
|
]),
|
|
1807
1974
|
_: 3
|
|
1808
1975
|
}, 8, ["link-type"])) : h("", !0),
|
|
1809
|
-
l.linkType === "button" ? (
|
|
1976
|
+
l.linkType === "button" ? (s(), T(M, {
|
|
1810
1977
|
key: 2,
|
|
1811
1978
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
1812
1979
|
}, {
|
|
@@ -1819,10 +1986,10 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1819
1986
|
])
|
|
1820
1987
|
], 2));
|
|
1821
1988
|
}
|
|
1822
|
-
}),
|
|
1989
|
+
}), 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
1990
|
key: 0,
|
|
1824
1991
|
class: "quote__image"
|
|
1825
|
-
},
|
|
1992
|
+
}, rl = { class: "quote__text" }, nl = { class: "quote__author-name" }, dl = { class: "quote__author-title" }, cl = /* @__PURE__ */ g({
|
|
1826
1993
|
__name: "quote",
|
|
1827
1994
|
props: {
|
|
1828
1995
|
quote: {
|
|
@@ -1844,16 +2011,16 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1844
2011
|
}
|
|
1845
2012
|
},
|
|
1846
2013
|
setup(e) {
|
|
1847
|
-
return (
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
e.authorImage ? (
|
|
1854
|
-
S(
|
|
2014
|
+
return (a, r) => (s(), i("div", el, [
|
|
2015
|
+
t("div", tl, [
|
|
2016
|
+
al,
|
|
2017
|
+
t("div", ol, [
|
|
2018
|
+
t("p", sl, d(e.quote), 1),
|
|
2019
|
+
t("div", ll, [
|
|
2020
|
+
e.authorImage ? (s(), i("div", il, [
|
|
2021
|
+
S(z, null, {
|
|
1855
2022
|
default: y(() => [
|
|
1856
|
-
c(
|
|
2023
|
+
c(a.$slots, "author-image", C(L({
|
|
1857
2024
|
src: e.authorImage + "/m/100x100",
|
|
1858
2025
|
width: 60,
|
|
1859
2026
|
height: 60
|
|
@@ -1862,22 +2029,22 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1862
2029
|
_: 3
|
|
1863
2030
|
})
|
|
1864
2031
|
])) : h("", !0),
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
2032
|
+
t("div", rl, [
|
|
2033
|
+
t("p", nl, d(e.author), 1),
|
|
2034
|
+
t("p", dl, d(e.authorTitle), 1)
|
|
1868
2035
|
])
|
|
1869
2036
|
])
|
|
1870
2037
|
])
|
|
1871
2038
|
])
|
|
1872
2039
|
]));
|
|
1873
2040
|
}
|
|
1874
|
-
}),
|
|
2041
|
+
}), ul = /* @__PURE__ */ f(cl, [["__scopeId", "data-v-e3cc8e27"]]), _l = { class: "rich-text__wrapper" }, hl = {
|
|
1875
2042
|
key: 0,
|
|
1876
2043
|
class: "rich-text__links"
|
|
1877
|
-
},
|
|
2044
|
+
}, pl = {
|
|
1878
2045
|
key: 0,
|
|
1879
2046
|
class: "rich-text__bullet-list"
|
|
1880
|
-
},
|
|
2047
|
+
}, ml = /* @__PURE__ */ g({
|
|
1881
2048
|
__name: "rich-text",
|
|
1882
2049
|
props: {
|
|
1883
2050
|
headline: { default: "" },
|
|
@@ -1890,55 +2057,55 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1890
2057
|
label: { default: "" }
|
|
1891
2058
|
},
|
|
1892
2059
|
setup(e) {
|
|
1893
|
-
return (
|
|
1894
|
-
class:
|
|
2060
|
+
return (a, r) => (s(), i("div", {
|
|
2061
|
+
class: p([
|
|
1895
2062
|
"rich-text",
|
|
1896
|
-
|
|
2063
|
+
a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1897
2064
|
])
|
|
1898
2065
|
}, [
|
|
1899
|
-
|
|
1900
|
-
|
|
2066
|
+
t("div", _l, [
|
|
2067
|
+
a.label ? (s(), T(Z, {
|
|
1901
2068
|
key: 0,
|
|
1902
|
-
text:
|
|
2069
|
+
text: a.label,
|
|
1903
2070
|
"label-dark": !1
|
|
1904
2071
|
}, null, 8, ["text"])) : h("", !0),
|
|
1905
|
-
|
|
2072
|
+
a.headline ? (s(), i("h2", {
|
|
1906
2073
|
key: 1,
|
|
1907
|
-
class:
|
|
2074
|
+
class: p([
|
|
1908
2075
|
"rich-text__headline",
|
|
1909
|
-
|
|
2076
|
+
a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
1910
2077
|
])
|
|
1911
|
-
}, d(
|
|
1912
|
-
|
|
1913
|
-
class:
|
|
2078
|
+
}, d(a.headline), 3)) : h("", !0),
|
|
2079
|
+
t("div", {
|
|
2080
|
+
class: p([
|
|
1914
2081
|
"rich-text__content",
|
|
1915
|
-
|
|
2082
|
+
a.leftAligned || a.bulletList || a.image ? "rich-text__content--left-aligned" : "rich-text__content--centered"
|
|
1916
2083
|
])
|
|
1917
2084
|
}, [
|
|
1918
|
-
|
|
1919
|
-
class:
|
|
2085
|
+
t("div", {
|
|
2086
|
+
class: p([
|
|
1920
2087
|
"rich-text__body",
|
|
1921
|
-
|
|
2088
|
+
a.bulletList || a.image ? "rich-text__body--content-right" : ""
|
|
1922
2089
|
])
|
|
1923
2090
|
}, [
|
|
1924
|
-
c(
|
|
1925
|
-
|
|
1926
|
-
c(
|
|
2091
|
+
c(a.$slots, "rich-text-content"),
|
|
2092
|
+
a.links ? (s(), i("div", hl, [
|
|
2093
|
+
c(a.$slots, "rich-text-links")
|
|
1927
2094
|
])) : h("", !0)
|
|
1928
2095
|
], 2),
|
|
1929
|
-
|
|
1930
|
-
c(
|
|
2096
|
+
a.bulletList ? (s(), i("div", pl, [
|
|
2097
|
+
c(a.$slots, "rich-text-bullet-list")
|
|
1931
2098
|
])) : h("", !0),
|
|
1932
|
-
|
|
2099
|
+
a.image ? (s(), i("div", {
|
|
1933
2100
|
key: 1,
|
|
1934
|
-
class:
|
|
2101
|
+
class: p([
|
|
1935
2102
|
"rich-text__image",
|
|
1936
|
-
|
|
2103
|
+
a.imageClip ? "rich-text__image--clip" : ""
|
|
1937
2104
|
])
|
|
1938
2105
|
}, [
|
|
1939
|
-
S(
|
|
2106
|
+
S(z, null, {
|
|
1940
2107
|
default: y(() => [
|
|
1941
|
-
c(
|
|
2108
|
+
c(a.$slots, "rich-text-image", C(L({ width: 865, height: 307 })))
|
|
1942
2109
|
]),
|
|
1943
2110
|
_: 3
|
|
1944
2111
|
})
|
|
@@ -1947,16 +2114,16 @@ const $l = /* @__PURE__ */ f(fl, [["render", yl], ["__scopeId", "data-v-ea887d7a
|
|
|
1947
2114
|
])
|
|
1948
2115
|
], 2));
|
|
1949
2116
|
}
|
|
1950
|
-
}),
|
|
1951
|
-
function
|
|
1952
|
-
return
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
2117
|
+
}), 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" };
|
|
2118
|
+
function $l(e, a) {
|
|
2119
|
+
return s(), i("div", gl, [
|
|
2120
|
+
t("div", bl, [
|
|
2121
|
+
t("div", yl, [
|
|
2122
|
+
t("div", kl, [
|
|
2123
|
+
t("div", null, [
|
|
1957
2124
|
c(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
1958
2125
|
]),
|
|
1959
|
-
|
|
2126
|
+
t("div", null, [
|
|
1960
2127
|
c(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
1961
2128
|
])
|
|
1962
2129
|
])
|
|
@@ -1964,10 +2131,10 @@ function os(e, t) {
|
|
|
1964
2131
|
])
|
|
1965
2132
|
]);
|
|
1966
2133
|
}
|
|
1967
|
-
const
|
|
1968
|
-
/* @__PURE__ */
|
|
1969
|
-
/* @__PURE__ */
|
|
1970
|
-
], -1)),
|
|
2134
|
+
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" }, [
|
|
2135
|
+
/* @__PURE__ */ t("div", { class: "circle" }),
|
|
2136
|
+
/* @__PURE__ */ t("div", { class: "line" })
|
|
2137
|
+
], -1)), Ll = { class: "item__right" }, Dl = ["innerHTML"], Tl = /* @__PURE__ */ g({
|
|
1971
2138
|
__name: "timeline",
|
|
1972
2139
|
props: {
|
|
1973
2140
|
timelineItems: {
|
|
@@ -1976,10 +2143,10 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
1976
2143
|
}
|
|
1977
2144
|
},
|
|
1978
2145
|
setup(e) {
|
|
1979
|
-
return
|
|
1980
|
-
const
|
|
1981
|
-
(
|
|
1982
|
-
|
|
2146
|
+
return me(() => {
|
|
2147
|
+
const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
|
|
2148
|
+
(o) => {
|
|
2149
|
+
o.forEach((l) => {
|
|
1983
2150
|
l.isIntersecting && (l.target.classList.add("visible"), l.target.classList.remove("faded"), r.unobserve(l.target));
|
|
1984
2151
|
});
|
|
1985
2152
|
},
|
|
@@ -1987,43 +2154,43 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
1987
2154
|
threshold: 1
|
|
1988
2155
|
}
|
|
1989
2156
|
);
|
|
1990
|
-
|
|
1991
|
-
r.observe(
|
|
2157
|
+
a.forEach((o) => {
|
|
2158
|
+
r.observe(o);
|
|
1992
2159
|
});
|
|
1993
|
-
}), (
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
(
|
|
1997
|
-
key:
|
|
2160
|
+
}), (a, r) => (s(), i("div", Sl, [
|
|
2161
|
+
t("div", Il, [
|
|
2162
|
+
t("div", ql, [
|
|
2163
|
+
(s(!0), i(P, null, F(e.timelineItems, (o) => (s(), i("div", {
|
|
2164
|
+
key: o.year,
|
|
1998
2165
|
class: "timeline__item faded"
|
|
1999
2166
|
}, [
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
S(
|
|
2167
|
+
t("div", Cl, d(o.year), 1),
|
|
2168
|
+
Al,
|
|
2169
|
+
t("div", Ll, [
|
|
2170
|
+
S(z, null, {
|
|
2004
2171
|
default: y(() => [
|
|
2005
|
-
|
|
2172
|
+
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
2173
|
]),
|
|
2007
2174
|
_: 2
|
|
2008
2175
|
}, 1024),
|
|
2009
|
-
|
|
2010
|
-
style: x([
|
|
2176
|
+
t("div", {
|
|
2177
|
+
style: x([o.media.src ? "" : "margin-top: 0px"]),
|
|
2011
2178
|
class: "rich-text",
|
|
2012
|
-
innerHTML:
|
|
2013
|
-
}, null, 12,
|
|
2179
|
+
innerHTML: o.text
|
|
2180
|
+
}, null, 12, Dl)
|
|
2014
2181
|
])
|
|
2015
2182
|
]))), 128))
|
|
2016
2183
|
])
|
|
2017
2184
|
])
|
|
2018
2185
|
]));
|
|
2019
2186
|
}
|
|
2020
|
-
}),
|
|
2187
|
+
}), Vl = /* @__PURE__ */ f(Tl, [["__scopeId", "data-v-e254e1e0"]]), Pl = { class: "vimeo" }, Fl = { class: "vimeo__wrapper" }, Ml = {
|
|
2021
2188
|
key: 0,
|
|
2022
2189
|
class: "vimeo__headline"
|
|
2023
|
-
},
|
|
2190
|
+
}, zl = {
|
|
2024
2191
|
key: 1,
|
|
2025
2192
|
class: "vimeo__description"
|
|
2026
|
-
},
|
|
2193
|
+
}, Ol = /* @__PURE__ */ g({
|
|
2027
2194
|
__name: "vimeo",
|
|
2028
2195
|
props: {
|
|
2029
2196
|
headline: {
|
|
@@ -2036,21 +2203,21 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2036
2203
|
}
|
|
2037
2204
|
},
|
|
2038
2205
|
setup(e) {
|
|
2039
|
-
return (
|
|
2040
|
-
|
|
2041
|
-
e.headline ? (
|
|
2042
|
-
c(
|
|
2043
|
-
e.description ? (
|
|
2206
|
+
return (a, r) => (s(), i("div", Pl, [
|
|
2207
|
+
t("div", Fl, [
|
|
2208
|
+
e.headline ? (s(), i("h2", Ml, d(e.headline), 1)) : h("", !0),
|
|
2209
|
+
c(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2210
|
+
e.description ? (s(), i("p", zl, d(e.description), 1)) : h("", !0)
|
|
2044
2211
|
])
|
|
2045
2212
|
]));
|
|
2046
2213
|
}
|
|
2047
|
-
}),
|
|
2214
|
+
}), 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
2215
|
key: 0,
|
|
2049
2216
|
class: "academy-overview__button-wrapper"
|
|
2050
|
-
},
|
|
2217
|
+
}, Gl = {
|
|
2051
2218
|
key: 0,
|
|
2052
2219
|
class: "academy-overview__stats"
|
|
2053
|
-
},
|
|
2220
|
+
}, 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
2221
|
__name: "frontpage-hero",
|
|
2055
2222
|
props: {
|
|
2056
2223
|
hero: { default: () => ({
|
|
@@ -2064,25 +2231,25 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2064
2231
|
}) }
|
|
2065
2232
|
},
|
|
2066
2233
|
setup(e) {
|
|
2067
|
-
return (
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
c(
|
|
2234
|
+
return (a, r) => (s(), i("div", Rl, [
|
|
2235
|
+
t("div", Nl, [
|
|
2236
|
+
t("div", El, [
|
|
2237
|
+
t("div", null, [
|
|
2238
|
+
t("h1", jl, d(a.hero.headline), 1),
|
|
2239
|
+
t("p", Kl, d(a.hero.description), 1),
|
|
2240
|
+
a.hero.showStats ? h("", !0) : (s(), i("div", Ul, [
|
|
2241
|
+
c(a.$slots, "button", {}, void 0, !0)
|
|
2075
2242
|
]))
|
|
2076
2243
|
]),
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2244
|
+
a.hero.showStats ? (s(), i("div", Gl, [
|
|
2245
|
+
t("div", Jl, [
|
|
2246
|
+
t("div", Wl, [
|
|
2247
|
+
t("div", Yl, d(a.hero.lessonValue), 1),
|
|
2248
|
+
t("div", Ql, d(a.hero.lessonLabel), 1)
|
|
2082
2249
|
]),
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2250
|
+
t("div", Zl, [
|
|
2251
|
+
t("div", Xl, d(a.hero.pointsValue), 1),
|
|
2252
|
+
t("div", xl, d(a.hero.pointsLabel), 1)
|
|
2086
2253
|
])
|
|
2087
2254
|
])
|
|
2088
2255
|
])) : h("", !0)
|
|
@@ -2090,7 +2257,7 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2090
2257
|
])
|
|
2091
2258
|
]));
|
|
2092
2259
|
}
|
|
2093
|
-
}),
|
|
2260
|
+
}), 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
2261
|
__name: "404",
|
|
2095
2262
|
props: {
|
|
2096
2263
|
headline: {
|
|
@@ -2099,16 +2266,16 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2099
2266
|
}
|
|
2100
2267
|
},
|
|
2101
2268
|
setup(e) {
|
|
2102
|
-
return (
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
c(
|
|
2269
|
+
return (a, r) => (s(), i("div", ai, [
|
|
2270
|
+
t("div", oi, [
|
|
2271
|
+
t("h1", si, d(e.headline), 1),
|
|
2272
|
+
t("div", li, [
|
|
2273
|
+
c(a.$slots, "not-found-body", {}, void 0, !0)
|
|
2107
2274
|
])
|
|
2108
2275
|
])
|
|
2109
2276
|
]));
|
|
2110
2277
|
}
|
|
2111
|
-
}),
|
|
2278
|
+
}), 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
2279
|
__name: "filter",
|
|
2113
2280
|
props: {
|
|
2114
2281
|
hasChips: {
|
|
@@ -2122,51 +2289,51 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2122
2289
|
},
|
|
2123
2290
|
emits: ["clearFilters"],
|
|
2124
2291
|
setup(e) {
|
|
2125
|
-
return (
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
c(
|
|
2292
|
+
return (a, r) => (s(), i("div", ni, [
|
|
2293
|
+
t("div", di, [
|
|
2294
|
+
t("div", ci, [
|
|
2295
|
+
c(a.$slots, "filter-dropdowns")
|
|
2129
2296
|
]),
|
|
2130
|
-
|
|
2131
|
-
c(
|
|
2132
|
-
e.hasChips ? (
|
|
2297
|
+
t("div", ui, [
|
|
2298
|
+
c(a.$slots, "filter-chips"),
|
|
2299
|
+
e.hasChips ? (s(), i("button", {
|
|
2133
2300
|
key: 0,
|
|
2134
2301
|
class: "filter__clear",
|
|
2135
|
-
onClick: r[0] || (r[0] = (
|
|
2302
|
+
onClick: r[0] || (r[0] = (o) => a.$emit("clearFilters"))
|
|
2136
2303
|
}, d(e.removeAll), 1)) : h("", !0)
|
|
2137
2304
|
])
|
|
2138
2305
|
])
|
|
2139
2306
|
]));
|
|
2140
2307
|
}
|
|
2141
|
-
}),
|
|
2308
|
+
}), 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
2309
|
key: 0,
|
|
2143
2310
|
src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
|
|
2144
2311
|
style: { margin: "0 auto" }
|
|
2145
|
-
},
|
|
2312
|
+
}, fi = { class: "footer__sections" }, gi = { class: "section__title" }, bi = { class: "section__list" }, yi = { class: "section" }, ki = {
|
|
2146
2313
|
key: 0,
|
|
2147
2314
|
class: "section__title"
|
|
2148
|
-
},
|
|
2315
|
+
}, $i = {
|
|
2149
2316
|
key: 1,
|
|
2150
2317
|
class: "section__title"
|
|
2151
|
-
},
|
|
2318
|
+
}, 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
2319
|
key: 0,
|
|
2153
2320
|
href: "mailto:china@mir-robots.com"
|
|
2154
|
-
},
|
|
2321
|
+
}, Li = {
|
|
2155
2322
|
key: 1,
|
|
2156
2323
|
href: "mailto:mail@mir-robots.com"
|
|
2157
|
-
},
|
|
2324
|
+
}, Di = {
|
|
2158
2325
|
key: 0,
|
|
2159
2326
|
href: "tel:+8613661856951"
|
|
2160
|
-
},
|
|
2327
|
+
}, Ti = {
|
|
2161
2328
|
key: 1,
|
|
2162
2329
|
href: "tel:+4520377577"
|
|
2163
|
-
},
|
|
2330
|
+
}, Vi = { class: "footer__bottom" }, Pi = { class: "copyright" }, Fi = { class: "footer__policy" }, Mi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), zi = {
|
|
2164
2331
|
key: 0,
|
|
2165
2332
|
class: "footer__social"
|
|
2166
|
-
},
|
|
2333
|
+
}, Oi = ["href", "aria-label"], Hi = {
|
|
2167
2334
|
key: 1,
|
|
2168
2335
|
class: "footer__social"
|
|
2169
|
-
},
|
|
2336
|
+
}, Ri = ["href", "aria-label"], Ni = /* @__PURE__ */ g({
|
|
2170
2337
|
__name: "footer",
|
|
2171
2338
|
props: {
|
|
2172
2339
|
language: { default: "" },
|
|
@@ -2179,107 +2346,107 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2179
2346
|
},
|
|
2180
2347
|
emits: ["changeRegionClicked"],
|
|
2181
2348
|
setup(e) {
|
|
2182
|
-
return (
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
(
|
|
2187
|
-
key:
|
|
2349
|
+
return (a, r) => (s(), i("div", pi, [
|
|
2350
|
+
t("footer", mi, [
|
|
2351
|
+
a.language === "zh" ? (s(), i("img", vi)) : h("", !0),
|
|
2352
|
+
t("div", fi, [
|
|
2353
|
+
(s(!0), i(P, null, F(a.footerSections, (o) => (s(), i("div", {
|
|
2354
|
+
key: o.title,
|
|
2188
2355
|
class: "section"
|
|
2189
2356
|
}, [
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
c(
|
|
2194
|
-
links:
|
|
2357
|
+
t("span", gi, d(o.title), 1),
|
|
2358
|
+
t("nav", null, [
|
|
2359
|
+
t("ul", bi, [
|
|
2360
|
+
c(a.$slots, "section-links", {
|
|
2361
|
+
links: o.links
|
|
2195
2362
|
})
|
|
2196
2363
|
])
|
|
2197
2364
|
])
|
|
2198
2365
|
]))), 128)),
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
S(
|
|
2366
|
+
t("div", yi, [
|
|
2367
|
+
a.language === "zh" ? (s(), i("span", ki, "名傲移动机器人(上海)有限公司")) : (s(), i("span", $i, "Mobile Industrial Robots A/S")),
|
|
2368
|
+
t("address", null, [
|
|
2369
|
+
a.language === "zh" ? (s(), i("span", wi, "上海浦东新区金桥出口加工区")) : (s(), i("span", Bi, "Energivej 51")),
|
|
2370
|
+
a.language === "zh" ? (s(), i("span", Si, "桂桥路1201号10栋2楼")) : (s(), i("span", Ii, "5260 Odense S")),
|
|
2371
|
+
a.language !== "zh" ? (s(), i("span", qi, "CVR: 35251235")) : h("", !0),
|
|
2372
|
+
Ci,
|
|
2373
|
+
S(M, {
|
|
2207
2374
|
class: "footer__contact",
|
|
2208
2375
|
"link-type": "regular_light",
|
|
2209
2376
|
underline: "false"
|
|
2210
2377
|
}, {
|
|
2211
2378
|
default: y(() => [
|
|
2212
|
-
|
|
2379
|
+
a.language === "zh" ? (s(), i("a", Ai, "china@mir-robots.com")) : (s(), i("a", Li, "mail@mir-robots.com"))
|
|
2213
2380
|
]),
|
|
2214
2381
|
_: 1
|
|
2215
2382
|
}),
|
|
2216
|
-
S(
|
|
2383
|
+
S(M, {
|
|
2217
2384
|
class: "footer__contact",
|
|
2218
2385
|
"link-type": "regular_light",
|
|
2219
2386
|
underline: "false"
|
|
2220
2387
|
}, {
|
|
2221
2388
|
default: y(() => [
|
|
2222
|
-
|
|
2389
|
+
a.language === "zh" ? (s(), i("a", Di, "+86 13661856951(微信同号)")) : (s(), i("a", Ti, "+45 20 377 577"))
|
|
2223
2390
|
]),
|
|
2224
2391
|
_: 1
|
|
2225
2392
|
})
|
|
2226
2393
|
])
|
|
2227
2394
|
])
|
|
2228
2395
|
]),
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2396
|
+
t("div", Vi, [
|
|
2397
|
+
t("p", Pi, " © Mobile Industrial Robots " + d((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2398
|
+
t("div", Fi, [
|
|
2399
|
+
t("button", {
|
|
2233
2400
|
class: "footer__language-switcher",
|
|
2234
|
-
onClick: r[0] || (r[0] = (
|
|
2401
|
+
onClick: r[0] || (r[0] = (o) => a.$emit("changeRegionClicked"))
|
|
2235
2402
|
}, [
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
G(d(
|
|
2403
|
+
t("span", null, [
|
|
2404
|
+
Mi,
|
|
2405
|
+
G(d(a.changeRegion), 1)
|
|
2239
2406
|
])
|
|
2240
2407
|
]),
|
|
2241
|
-
c(
|
|
2242
|
-
c(
|
|
2408
|
+
c(a.$slots, "footer-privacy-link"),
|
|
2409
|
+
c(a.$slots, "footer-cookie-link")
|
|
2243
2410
|
]),
|
|
2244
|
-
|
|
2245
|
-
(
|
|
2246
|
-
key:
|
|
2411
|
+
a.language !== "zh" ? (s(), i("div", zi, [
|
|
2412
|
+
(s(!0), i(P, null, F(a.socialMedia, (o) => (s(), T(M, {
|
|
2413
|
+
key: o.title,
|
|
2247
2414
|
underline: "false",
|
|
2248
2415
|
"link-type": "regular"
|
|
2249
2416
|
}, {
|
|
2250
2417
|
default: y(() => [
|
|
2251
|
-
|
|
2252
|
-
href:
|
|
2418
|
+
t("a", {
|
|
2419
|
+
href: o.url,
|
|
2253
2420
|
target: "_blank",
|
|
2254
|
-
"aria-label":
|
|
2421
|
+
"aria-label": o.title
|
|
2255
2422
|
}, [
|
|
2256
|
-
|
|
2423
|
+
t("i", {
|
|
2257
2424
|
width: "19",
|
|
2258
2425
|
height: "14",
|
|
2259
|
-
class:
|
|
2426
|
+
class: p(["footer__social--icon", [o.title ? "bg-" + o.title : ""]])
|
|
2260
2427
|
}, null, 2)
|
|
2261
|
-
], 8,
|
|
2428
|
+
], 8, Oi)
|
|
2262
2429
|
]),
|
|
2263
2430
|
_: 2
|
|
2264
2431
|
}, 1024))), 128))
|
|
2265
|
-
])) : (
|
|
2266
|
-
(
|
|
2267
|
-
key:
|
|
2432
|
+
])) : (s(), i("div", Hi, [
|
|
2433
|
+
(s(!0), i(P, null, F(a.socialMediaChina, (o) => (s(), T(M, {
|
|
2434
|
+
key: o.title,
|
|
2268
2435
|
underline: "false",
|
|
2269
2436
|
"link-type": "regular"
|
|
2270
2437
|
}, {
|
|
2271
2438
|
default: y(() => [
|
|
2272
|
-
|
|
2273
|
-
href:
|
|
2439
|
+
t("a", {
|
|
2440
|
+
href: o.url,
|
|
2274
2441
|
target: "_blank",
|
|
2275
|
-
"aria-label":
|
|
2442
|
+
"aria-label": o.title
|
|
2276
2443
|
}, [
|
|
2277
|
-
|
|
2444
|
+
t("i", {
|
|
2278
2445
|
width: "19",
|
|
2279
2446
|
height: "14",
|
|
2280
|
-
class:
|
|
2447
|
+
class: p(["footer__social--icon", [o.title ? "bg-" + o.title : ""]])
|
|
2281
2448
|
}, null, 2)
|
|
2282
|
-
], 8,
|
|
2449
|
+
], 8, Ri)
|
|
2283
2450
|
]),
|
|
2284
2451
|
_: 2
|
|
2285
2452
|
}, 1024))), 128))
|
|
@@ -2288,51 +2455,51 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2288
2455
|
])
|
|
2289
2456
|
]));
|
|
2290
2457
|
}
|
|
2291
|
-
}),
|
|
2458
|
+
}), 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
2459
|
key: 0,
|
|
2293
2460
|
id: "menu-dropdown",
|
|
2294
2461
|
ref: "dropdownDiv"
|
|
2295
|
-
},
|
|
2462
|
+
}, Wi = {
|
|
2296
2463
|
key: 0,
|
|
2297
2464
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2298
2465
|
alt: "dropdownarrow"
|
|
2299
|
-
},
|
|
2466
|
+
}, Yi = {
|
|
2300
2467
|
key: 1,
|
|
2301
2468
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2302
2469
|
alt: "dropdownarrow",
|
|
2303
2470
|
style: { transform: "rotate(180deg)" }
|
|
2304
|
-
},
|
|
2471
|
+
}, Qi = { class: "dropdown-content" }, Zi = {
|
|
2305
2472
|
key: 1,
|
|
2306
2473
|
class: "nav-search-wrapper"
|
|
2307
|
-
},
|
|
2474
|
+
}, Xi = ["src"], xi = {
|
|
2308
2475
|
key: 2,
|
|
2309
2476
|
id: "menu-portal-switcher",
|
|
2310
2477
|
class: "portal-switcher-wrapper"
|
|
2311
|
-
},
|
|
2478
|
+
}, er = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2312
2479
|
src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
|
|
2313
2480
|
alt: "portalswitchericon",
|
|
2314
2481
|
width: "15",
|
|
2315
2482
|
height: "15"
|
|
2316
|
-
}, null, -1)),
|
|
2317
|
-
|
|
2318
|
-
],
|
|
2483
|
+
}, null, -1)), tr = [
|
|
2484
|
+
er
|
|
2485
|
+
], ar = { class: "portal-switcher-content" }, or = { class: "portal-switcher-links" }, sr = ["href"], lr = ["src"], ir = {
|
|
2319
2486
|
key: 3,
|
|
2320
2487
|
id: "menu-profile-dropdown",
|
|
2321
2488
|
class: "profile-dropdown-wrapper"
|
|
2322
|
-
},
|
|
2489
|
+
}, rr = {
|
|
2323
2490
|
key: 0,
|
|
2324
2491
|
class: "profile-dropdown-sign-in"
|
|
2325
|
-
},
|
|
2492
|
+
}, nr = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
|
|
2326
2493
|
src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
|
|
2327
2494
|
alt: "profiledropdownicon",
|
|
2328
2495
|
width: "15",
|
|
2329
2496
|
height: "15"
|
|
2330
|
-
}, null, -1)),
|
|
2331
|
-
|
|
2332
|
-
],
|
|
2497
|
+
}, null, -1)), dr = [
|
|
2498
|
+
nr
|
|
2499
|
+
], cr = { class: "profile-dropdown-content" }, ur = { class: "mobile-logo-search-burger-wrapper" }, _r = { class: "mobile-mir-link-logo" }, hr = {
|
|
2333
2500
|
key: 0,
|
|
2334
2501
|
class: "mobile-search-wrapper"
|
|
2335
|
-
},
|
|
2502
|
+
}, pr = ["src"], mr = ["src"], vr = { class: "mobile-menu-content-wrapper" }, fr = { class: "mobile-dropdown-content" }, gr = /* @__PURE__ */ g({
|
|
2336
2503
|
__name: "header",
|
|
2337
2504
|
props: {
|
|
2338
2505
|
burgerState: {
|
|
@@ -2383,19 +2550,19 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2383
2550
|
"update:showProfileDropDown",
|
|
2384
2551
|
"clickSearch"
|
|
2385
2552
|
],
|
|
2386
|
-
setup(e, { expose:
|
|
2387
|
-
let
|
|
2553
|
+
setup(e, { expose: a, emit: r }) {
|
|
2554
|
+
let o = null;
|
|
2388
2555
|
const l = e;
|
|
2389
|
-
let
|
|
2556
|
+
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
2557
|
Y(
|
|
2391
2558
|
() => l.burgerState,
|
|
2392
|
-
($) =>
|
|
2559
|
+
($) => _.value = $
|
|
2393
2560
|
), Y(
|
|
2394
2561
|
() => l.search,
|
|
2395
2562
|
($) => n.value = $
|
|
2396
2563
|
), Y(
|
|
2397
2564
|
() => l.showDropDown,
|
|
2398
|
-
($) =>
|
|
2565
|
+
($) => u.value = $
|
|
2399
2566
|
), Y(
|
|
2400
2567
|
() => l.showPortalSwitcherDropDown,
|
|
2401
2568
|
($) => b.value = $
|
|
@@ -2405,57 +2572,57 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2405
2572
|
), Y(
|
|
2406
2573
|
() => l.isAuthenticated,
|
|
2407
2574
|
($) => k.value = $
|
|
2408
|
-
),
|
|
2409
|
-
|
|
2410
|
-
$.target.closest("#menu-dropdown") || (
|
|
2411
|
-
}, window.addEventListener("click",
|
|
2412
|
-
}),
|
|
2413
|
-
|
|
2575
|
+
), me(() => {
|
|
2576
|
+
o = ($) => {
|
|
2577
|
+
$.target.closest("#menu-dropdown") || (u.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (v.value = !1);
|
|
2578
|
+
}, window.addEventListener("click", o);
|
|
2579
|
+
}), Ae(() => {
|
|
2580
|
+
o !== null && window.removeEventListener("click", o);
|
|
2414
2581
|
});
|
|
2415
2582
|
const w = r;
|
|
2416
2583
|
function te() {
|
|
2417
|
-
|
|
2584
|
+
u.value = !u.value, w("update:showDropDown", u.value);
|
|
2418
2585
|
}
|
|
2419
|
-
function
|
|
2586
|
+
function ie() {
|
|
2420
2587
|
b.value = !b.value, w("update:showPortalSwitcherDropDown", b.value);
|
|
2421
2588
|
}
|
|
2422
|
-
function
|
|
2589
|
+
function re() {
|
|
2423
2590
|
v.value = !v.value, w("update:showProfileDropDown", v.value);
|
|
2424
2591
|
}
|
|
2425
|
-
function
|
|
2426
|
-
|
|
2592
|
+
function ne() {
|
|
2593
|
+
_.value = !_.value, w("update:burgerState", _.value);
|
|
2427
2594
|
}
|
|
2428
2595
|
let U = q(null), ae = q(null);
|
|
2429
|
-
function
|
|
2596
|
+
function de() {
|
|
2430
2597
|
U.value && U.value.blur();
|
|
2431
2598
|
}
|
|
2432
|
-
return
|
|
2433
|
-
defocusSearchButton:
|
|
2434
|
-
}), ($, E) => (
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2599
|
+
return a({
|
|
2600
|
+
defocusSearchButton: de
|
|
2601
|
+
}), ($, E) => (s(), i("div", ji, [
|
|
2602
|
+
t("nav", null, [
|
|
2603
|
+
t("div", Ki, [
|
|
2604
|
+
t("div", Ui, [
|
|
2438
2605
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2439
2606
|
]),
|
|
2440
|
-
|
|
2607
|
+
t("ul", Gi, [
|
|
2441
2608
|
c($.$slots, "main-nav-items", {}, void 0, !0)
|
|
2442
2609
|
]),
|
|
2443
|
-
e.useDropdown ? (
|
|
2444
|
-
|
|
2610
|
+
e.useDropdown ? (s(), i("div", Ji, [
|
|
2611
|
+
t("button", {
|
|
2445
2612
|
class: "nav-dropdown-btn",
|
|
2446
2613
|
onClick: te
|
|
2447
2614
|
}, [
|
|
2448
2615
|
c($.$slots, "dropdown-title", {}, void 0, !0),
|
|
2449
|
-
I(
|
|
2616
|
+
I(u) === !1 ? (s(), i("img", Wi)) : (s(), i("img", Yi))
|
|
2450
2617
|
]),
|
|
2451
|
-
K(
|
|
2618
|
+
K(t("div", Qi, [
|
|
2452
2619
|
c($.$slots, "dropdown-links", {}, void 0, !0)
|
|
2453
2620
|
], 512), [
|
|
2454
|
-
[Q, I(
|
|
2621
|
+
[Q, I(u)]
|
|
2455
2622
|
])
|
|
2456
2623
|
], 512)) : h("", !0),
|
|
2457
|
-
I(n) ? (
|
|
2458
|
-
|
|
2624
|
+
I(n) ? (s(), i("div", Zi, [
|
|
2625
|
+
t("button", {
|
|
2459
2626
|
ref_key: "navSearchButton",
|
|
2460
2627
|
ref: U,
|
|
2461
2628
|
class: "search-icon",
|
|
@@ -2464,36 +2631,36 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2464
2631
|
return $.$emit("clickSearch"), (N = I(U)) == null ? void 0 : N.blur();
|
|
2465
2632
|
})
|
|
2466
2633
|
}, [
|
|
2467
|
-
|
|
2468
|
-
src: I(
|
|
2634
|
+
t("img", {
|
|
2635
|
+
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
2636
|
alt: "search icon",
|
|
2470
2637
|
width: "20",
|
|
2471
2638
|
height: "20"
|
|
2472
|
-
}, null, 8,
|
|
2639
|
+
}, null, 8, Xi)
|
|
2473
2640
|
], 512)
|
|
2474
2641
|
])) : h("", !0),
|
|
2475
|
-
e.usePortalSwitcher ? (
|
|
2476
|
-
|
|
2642
|
+
e.usePortalSwitcher ? (s(), i("div", xi, [
|
|
2643
|
+
t("button", {
|
|
2477
2644
|
class: "nav-portal-switcher-btn",
|
|
2478
|
-
onClick:
|
|
2479
|
-
},
|
|
2480
|
-
K(
|
|
2481
|
-
|
|
2482
|
-
(
|
|
2645
|
+
onClick: ie
|
|
2646
|
+
}, tr),
|
|
2647
|
+
K(t("div", ar, [
|
|
2648
|
+
t("ul", or, [
|
|
2649
|
+
(s(!0), i(P, null, F(e.portals, (j, N) => (s(), i("li", {
|
|
2483
2650
|
key: N,
|
|
2484
2651
|
class: "portal-switcher-link"
|
|
2485
2652
|
}, [
|
|
2486
|
-
S(I(
|
|
2653
|
+
S(I(M), { "link-type": "regular" }, {
|
|
2487
2654
|
default: y(() => [
|
|
2488
|
-
|
|
2655
|
+
t("a", {
|
|
2489
2656
|
href: j.link,
|
|
2490
|
-
onClick: E[1] || (E[1] = (J) =>
|
|
2657
|
+
onClick: E[1] || (E[1] = (J) => ce(u) ? u.value = !1 : u = !1)
|
|
2491
2658
|
}, [
|
|
2492
|
-
|
|
2659
|
+
t("img", {
|
|
2493
2660
|
src: j.icon
|
|
2494
|
-
}, null, 8,
|
|
2495
|
-
|
|
2496
|
-
], 8,
|
|
2661
|
+
}, null, 8, lr),
|
|
2662
|
+
t("div", null, d(j.name), 1)
|
|
2663
|
+
], 8, sr)
|
|
2497
2664
|
]),
|
|
2498
2665
|
_: 2
|
|
2499
2666
|
}, 1024)
|
|
@@ -2503,31 +2670,31 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2503
2670
|
[Q, I(b)]
|
|
2504
2671
|
])
|
|
2505
2672
|
])) : h("", !0),
|
|
2506
|
-
e.useProfileDropdown ? (
|
|
2507
|
-
I(k) ? h("", !0) : (
|
|
2673
|
+
e.useProfileDropdown ? (s(), i("div", ir, [
|
|
2674
|
+
I(k) ? h("", !0) : (s(), i("div", rr, [
|
|
2508
2675
|
c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
|
|
2509
2676
|
])),
|
|
2510
|
-
I(k) ? (
|
|
2677
|
+
I(k) ? (s(), i("button", {
|
|
2511
2678
|
key: 1,
|
|
2512
2679
|
class: "nav-profile-dropdown-btn",
|
|
2513
|
-
onClick:
|
|
2514
|
-
},
|
|
2515
|
-
K(
|
|
2680
|
+
onClick: re
|
|
2681
|
+
}, dr)) : h("", !0),
|
|
2682
|
+
K(t("div", cr, [
|
|
2516
2683
|
c($.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2517
2684
|
], 512), [
|
|
2518
2685
|
[Q, I(v)]
|
|
2519
2686
|
])
|
|
2520
2687
|
])) : h("", !0)
|
|
2521
2688
|
]),
|
|
2522
|
-
|
|
2523
|
-
class:
|
|
2689
|
+
t("div", {
|
|
2690
|
+
class: p(["mobile-nav-wrapper", I(_) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2524
2691
|
}, [
|
|
2525
|
-
|
|
2526
|
-
|
|
2692
|
+
t("div", ur, [
|
|
2693
|
+
t("div", _r, [
|
|
2527
2694
|
c($.$slots, "link-logo", {}, void 0, !0)
|
|
2528
2695
|
]),
|
|
2529
|
-
I(n) ? (
|
|
2530
|
-
|
|
2696
|
+
I(n) ? (s(), i("div", hr, [
|
|
2697
|
+
t("button", {
|
|
2531
2698
|
ref_key: "mobileSearchButton",
|
|
2532
2699
|
ref: ae,
|
|
2533
2700
|
class: "search-icon",
|
|
@@ -2537,43 +2704,43 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2537
2704
|
return $.$emit("clickSearch"), (N = I(ae)) == null ? void 0 : N.blur();
|
|
2538
2705
|
})
|
|
2539
2706
|
}, [
|
|
2540
|
-
|
|
2541
|
-
src: I(
|
|
2707
|
+
t("img", {
|
|
2708
|
+
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
2709
|
alt: "search icon",
|
|
2543
2710
|
width: "20",
|
|
2544
2711
|
height: "20"
|
|
2545
|
-
}, null, 8,
|
|
2712
|
+
}, null, 8, pr)
|
|
2546
2713
|
], 512)
|
|
2547
2714
|
])) : h("", !0),
|
|
2548
|
-
|
|
2715
|
+
t("button", {
|
|
2549
2716
|
class: "mobile-burger-wrapper",
|
|
2550
2717
|
"aria-label": "Toggle menu",
|
|
2551
|
-
onClick:
|
|
2718
|
+
onClick: he(ne, ["prevent"])
|
|
2552
2719
|
}, [
|
|
2553
|
-
|
|
2720
|
+
t("img", {
|
|
2554
2721
|
width: "20",
|
|
2555
2722
|
height: "20",
|
|
2556
2723
|
alt: "burger menu line icon",
|
|
2557
|
-
src: I(
|
|
2558
|
-
}, null, 8,
|
|
2724
|
+
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"
|
|
2725
|
+
}, null, 8, mr)
|
|
2559
2726
|
])
|
|
2560
2727
|
]),
|
|
2561
|
-
K(
|
|
2562
|
-
|
|
2728
|
+
K(t("div", vr, [
|
|
2729
|
+
t("ul", null, [
|
|
2563
2730
|
c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2564
2731
|
]),
|
|
2565
|
-
|
|
2732
|
+
t("ul", fr, [
|
|
2566
2733
|
c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2567
2734
|
c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2568
2735
|
])
|
|
2569
2736
|
], 512), [
|
|
2570
|
-
[Q, I(
|
|
2737
|
+
[Q, I(_)]
|
|
2571
2738
|
])
|
|
2572
2739
|
], 2)
|
|
2573
2740
|
])
|
|
2574
2741
|
]));
|
|
2575
2742
|
}
|
|
2576
|
-
}),
|
|
2743
|
+
}), 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
2744
|
__name: "language-switcher",
|
|
2578
2745
|
props: {
|
|
2579
2746
|
headline: {
|
|
@@ -2586,17 +2753,17 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2586
2753
|
}
|
|
2587
2754
|
},
|
|
2588
2755
|
setup(e) {
|
|
2589
|
-
return (
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
c(
|
|
2756
|
+
return (a, r) => (s(), i("div", yr, [
|
|
2757
|
+
t("div", kr, [
|
|
2758
|
+
t("h2", $r, d(e.headline), 1),
|
|
2759
|
+
t("p", wr, d(e.paragraph), 1),
|
|
2760
|
+
t("div", Br, [
|
|
2761
|
+
c(a.$slots, "language-links", {}, void 0, !0)
|
|
2595
2762
|
])
|
|
2596
2763
|
])
|
|
2597
2764
|
]));
|
|
2598
2765
|
}
|
|
2599
|
-
}),
|
|
2766
|
+
}), Ir = /* @__PURE__ */ f(Sr, [["__scopeId", "data-v-dc8cc97e"]]), qr = { class: "pagination__wrapper" }, Cr = { class: "pagination__content" }, Ar = /* @__PURE__ */ g({
|
|
2600
2767
|
__name: "pagination",
|
|
2601
2768
|
props: {
|
|
2602
2769
|
isPreviousDisabled: {
|
|
@@ -2610,31 +2777,31 @@ const ls = /* @__PURE__ */ f(Xl, [["render", os], ["__scopeId", "data-v-449f3040
|
|
|
2610
2777
|
},
|
|
2611
2778
|
emits: ["previous", "next"],
|
|
2612
2779
|
setup(e) {
|
|
2613
|
-
return (
|
|
2614
|
-
|
|
2615
|
-
S(
|
|
2780
|
+
return (a, r) => (s(), i("div", qr, [
|
|
2781
|
+
t("div", Cr, [
|
|
2782
|
+
S(se, {
|
|
2616
2783
|
disabled: e.isPreviousDisabled,
|
|
2617
2784
|
variant: "previous",
|
|
2618
2785
|
"aria-label": "previous",
|
|
2619
|
-
onClick: r[0] || (r[0] = (
|
|
2786
|
+
onClick: r[0] || (r[0] = (o) => a.$emit("previous"))
|
|
2620
2787
|
}, null, 8, ["disabled"]),
|
|
2621
|
-
c(
|
|
2622
|
-
S(
|
|
2788
|
+
c(a.$slots, "pagination-numbers"),
|
|
2789
|
+
S(se, {
|
|
2623
2790
|
disabled: e.isNextDisabled,
|
|
2624
2791
|
variant: "next",
|
|
2625
2792
|
"aria-label": "next",
|
|
2626
|
-
onClick: r[1] || (r[1] = (
|
|
2793
|
+
onClick: r[1] || (r[1] = (o) => a.$emit("next"))
|
|
2627
2794
|
}, null, 8, ["disabled"])
|
|
2628
2795
|
])
|
|
2629
2796
|
]));
|
|
2630
2797
|
}
|
|
2631
|
-
}),
|
|
2632
|
-
function
|
|
2633
|
-
return
|
|
2798
|
+
}), Lr = /* @__PURE__ */ f(Ar, [["__scopeId", "data-v-da6d07c9"]]), Dr = {}, Tr = { class: "search__wrapper" };
|
|
2799
|
+
function Vr(e, a) {
|
|
2800
|
+
return s(), i("div", Tr, [
|
|
2634
2801
|
c(e.$slots, "default", { class: "search__content" })
|
|
2635
2802
|
]);
|
|
2636
2803
|
}
|
|
2637
|
-
const
|
|
2804
|
+
const Pr = /* @__PURE__ */ f(Dr, [["render", Vr], ["__scopeId", "data-v-c07a6cf3"]]), Fr = { class: "dropdown" }, Mr = ["aria-expanded"], zr = /* @__PURE__ */ g({
|
|
2638
2805
|
__name: "select-multiple",
|
|
2639
2806
|
props: {
|
|
2640
2807
|
label: { default: "" },
|
|
@@ -2642,19 +2809,19 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2642
2809
|
selectedOptions: { default: () => [] }
|
|
2643
2810
|
},
|
|
2644
2811
|
emits: ["filter", "remove-filter"],
|
|
2645
|
-
setup(e, { emit:
|
|
2646
|
-
const r = q(!1),
|
|
2647
|
-
function
|
|
2648
|
-
|
|
2812
|
+
setup(e, { emit: a }) {
|
|
2813
|
+
const r = q(!1), o = e, l = a;
|
|
2814
|
+
function _(b) {
|
|
2815
|
+
o.selectedOptions.includes(b) ? l("remove-filter", b) : l("filter", b);
|
|
2649
2816
|
}
|
|
2650
2817
|
function n() {
|
|
2651
2818
|
r.value = !1;
|
|
2652
2819
|
}
|
|
2653
|
-
const
|
|
2820
|
+
const u = D(() => o.options.length > 8);
|
|
2654
2821
|
return (b, v) => {
|
|
2655
|
-
const k =
|
|
2656
|
-
return K((
|
|
2657
|
-
|
|
2822
|
+
const k = _e("click-outside");
|
|
2823
|
+
return K((s(), i("div", Fr, [
|
|
2824
|
+
t("button", {
|
|
2658
2825
|
class: "dropdown-button",
|
|
2659
2826
|
style: x({ "z-index": r.value ? 2 : 0 }),
|
|
2660
2827
|
"aria-expanded": r.value ? "true" : "false",
|
|
@@ -2663,11 +2830,11 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2663
2830
|
c(b.$slots, "button", {}, () => [
|
|
2664
2831
|
G(d(b.label), 1)
|
|
2665
2832
|
], !0)
|
|
2666
|
-
], 12,
|
|
2667
|
-
|
|
2668
|
-
class:
|
|
2833
|
+
], 12, Mr),
|
|
2834
|
+
t("div", {
|
|
2835
|
+
class: p([{ hidden: !r.value, "adjust-height": u.value }, "dropdown-content"])
|
|
2669
2836
|
}, [
|
|
2670
|
-
(
|
|
2837
|
+
(s(!0), i(P, null, F(b.options, (w) => (s(), T(I(ve), {
|
|
2671
2838
|
id: w.value,
|
|
2672
2839
|
key: w.value,
|
|
2673
2840
|
name: w.text,
|
|
@@ -2675,7 +2842,7 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2675
2842
|
disabled: !1,
|
|
2676
2843
|
value: w.value,
|
|
2677
2844
|
checked: b.selectedOptions.includes(w.value),
|
|
2678
|
-
onInput: (te) =>
|
|
2845
|
+
onInput: (te) => _(w.value)
|
|
2679
2846
|
}, {
|
|
2680
2847
|
default: y(() => [
|
|
2681
2848
|
G(d(w.text), 1)
|
|
@@ -2688,7 +2855,7 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2688
2855
|
]);
|
|
2689
2856
|
};
|
|
2690
2857
|
}
|
|
2691
|
-
}),
|
|
2858
|
+
}), 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
2859
|
__name: "pallet-jack",
|
|
2693
2860
|
props: {
|
|
2694
2861
|
label: { default: "" },
|
|
@@ -2702,58 +2869,58 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2702
2869
|
text: { default: "" }
|
|
2703
2870
|
},
|
|
2704
2871
|
setup(e) {
|
|
2705
|
-
const
|
|
2872
|
+
const a = {
|
|
2706
2873
|
dark: "promo__wrapper--dark",
|
|
2707
2874
|
light: "promo__wrapper--light",
|
|
2708
2875
|
default: "promo__wrapper--default"
|
|
2709
|
-
}, r = e,
|
|
2710
|
-
return (l,
|
|
2711
|
-
class:
|
|
2876
|
+
}, r = e, o = D(() => a[r.variant]);
|
|
2877
|
+
return (l, _) => (s(), i("div", {
|
|
2878
|
+
class: p([
|
|
2712
2879
|
"promo__wrapper",
|
|
2713
|
-
|
|
2880
|
+
o.value,
|
|
2714
2881
|
l.teaser ? "promo__wrapper--teaser" : ""
|
|
2715
2882
|
])
|
|
2716
2883
|
}, [
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
class:
|
|
2884
|
+
t("div", Hr, [
|
|
2885
|
+
t("div", {
|
|
2886
|
+
class: p([
|
|
2720
2887
|
"promo__video",
|
|
2721
2888
|
l.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
2722
2889
|
])
|
|
2723
2890
|
}, [
|
|
2724
|
-
|
|
2725
|
-
|
|
2891
|
+
t("div", Rr, [
|
|
2892
|
+
t("div", Nr, [
|
|
2726
2893
|
c(l.$slots, "pallet-jack-link")
|
|
2727
2894
|
]),
|
|
2728
|
-
|
|
2895
|
+
t("div", Er, [
|
|
2729
2896
|
c(l.$slots, "pallet-jack-video")
|
|
2730
2897
|
]),
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2898
|
+
t("div", jr, [
|
|
2899
|
+
t("h3", Kr, d(l.headline), 1),
|
|
2900
|
+
t("p", null, d(l.shortDescription), 1)
|
|
2734
2901
|
])
|
|
2735
2902
|
])
|
|
2736
2903
|
], 2),
|
|
2737
|
-
|
|
2738
|
-
class:
|
|
2904
|
+
t("div", {
|
|
2905
|
+
class: p([
|
|
2739
2906
|
"promo__text",
|
|
2740
2907
|
l.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
2741
2908
|
])
|
|
2742
2909
|
}, [
|
|
2743
|
-
l.label ? (
|
|
2910
|
+
l.label ? (s(), T(Z, {
|
|
2744
2911
|
key: 0,
|
|
2745
2912
|
text: l.label,
|
|
2746
2913
|
"label-dark": l.variant === "dark"
|
|
2747
2914
|
}, null, 8, ["text", "label-dark"])) : h("", !0),
|
|
2748
|
-
|
|
2749
|
-
class:
|
|
2915
|
+
t("div", {
|
|
2916
|
+
class: p([
|
|
2750
2917
|
"promo__title",
|
|
2751
2918
|
l.variant === "dark" ? "promo__title--dark" : ""
|
|
2752
2919
|
])
|
|
2753
2920
|
}, [
|
|
2754
2921
|
c(l.$slots, "promo-text")
|
|
2755
2922
|
], 2),
|
|
2756
|
-
l.linkType === "link" ? (
|
|
2923
|
+
l.linkType === "link" ? (s(), T(M, {
|
|
2757
2924
|
key: 1,
|
|
2758
2925
|
"link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
|
|
2759
2926
|
arrow: ""
|
|
@@ -2763,7 +2930,7 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2763
2930
|
]),
|
|
2764
2931
|
_: 3
|
|
2765
2932
|
}, 8, ["link-type"])) : h("", !0),
|
|
2766
|
-
l.linkType === "button" ? (
|
|
2933
|
+
l.linkType === "button" ? (s(), T(M, {
|
|
2767
2934
|
key: 2,
|
|
2768
2935
|
"link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
|
|
2769
2936
|
}, {
|
|
@@ -2776,61 +2943,63 @@ const mr = /* @__PURE__ */ f(_r, [["render", pr], ["__scopeId", "data-v-c07a6cf3
|
|
|
2776
2943
|
])
|
|
2777
2944
|
], 2));
|
|
2778
2945
|
}
|
|
2779
|
-
}),
|
|
2946
|
+
}), Gr = /* @__PURE__ */ f(Ur, [["__scopeId", "data-v-00c0bad3"]]), Wr = {
|
|
2780
2947
|
install: (e) => {
|
|
2781
|
-
e.component("AtomButton",
|
|
2948
|
+
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
2949
|
}
|
|
2783
2950
|
};
|
|
2784
2951
|
export {
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2952
|
+
se as AtomButton,
|
|
2953
|
+
ve as AtomCheckbox,
|
|
2954
|
+
Ne as AtomChip,
|
|
2955
|
+
Ye as AtomDropdown,
|
|
2956
|
+
z as AtomImage,
|
|
2790
2957
|
Z as AtomLabel,
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2958
|
+
M as AtomLink,
|
|
2959
|
+
rt as AtomRadioButton,
|
|
2960
|
+
ht as AtomSelect,
|
|
2961
|
+
Or as AtomSelectMultiple,
|
|
2962
|
+
Bt as AtomSlider,
|
|
2963
|
+
jt as AtomTextField,
|
|
2964
|
+
Tt as AtomTextarea,
|
|
2798
2965
|
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
|
-
|
|
2966
|
+
ao as BlockAccordion,
|
|
2967
|
+
co as BlockCardDisplay,
|
|
2968
|
+
vo as BlockColumnGrid,
|
|
2969
|
+
So as BlockFacts,
|
|
2970
|
+
Vo as BlockFeatures,
|
|
2971
|
+
Oo as BlockFlashcards,
|
|
2972
|
+
Go as BlockFormScript,
|
|
2973
|
+
ti as BlockFrontPageHero,
|
|
2974
|
+
Qo as BlockHeadline,
|
|
2975
|
+
ds as BlockHero,
|
|
2976
|
+
ms as BlockImage,
|
|
2977
|
+
ks as BlockImageGallery,
|
|
2978
|
+
Ls as BlockLogoWall,
|
|
2979
|
+
Fs as BlockMicroStories,
|
|
2980
|
+
Gr as BlockPalletJack,
|
|
2981
|
+
Rs as BlockPolicy,
|
|
2982
|
+
Ys as BlockProductHero,
|
|
2983
|
+
Xs as BlockPromo,
|
|
2984
|
+
ul as BlockQuote,
|
|
2985
|
+
vl as BlockRichText,
|
|
2986
|
+
wl as BlockRichTextColumns,
|
|
2987
|
+
Vl as BlockTimeline,
|
|
2988
|
+
Hl as BlockVimeo,
|
|
2989
|
+
la as MoleculeAddress,
|
|
2990
|
+
ca as MoleculeBulletList,
|
|
2991
|
+
ma as MoleculeCard,
|
|
2992
|
+
ge as MoleculeColumnCard,
|
|
2993
|
+
Ca as MoleculeEventCard,
|
|
2994
|
+
be as MoleculeFlashcard,
|
|
2995
|
+
fe as MoleculeModal,
|
|
2996
|
+
Ua as MoleculeTextCard,
|
|
2997
|
+
ri as Organism404,
|
|
2998
|
+
hi as OrganismFilter,
|
|
2999
|
+
Ei as OrganismFooter,
|
|
3000
|
+
br as OrganismHeader,
|
|
3001
|
+
Ir as OrganismLanguageSwitcher,
|
|
3002
|
+
Lr as OrganismPagination,
|
|
3003
|
+
Pr as OrganismSearch,
|
|
3004
|
+
Wr as default
|
|
2836
3005
|
};
|