@mirweb/mir-web-components 0.9.11 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/main.d.ts +2 -1
- package/dist/components/organisms/pagination/pagination.vue.d.ts +55 -0
- package/dist/components/organisms/pagination/pagination.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 +399 -363
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
const
|
|
1
|
+
import { defineComponent as _, openBlock as i, createElementBlock as r, normalizeClass as u, toDisplayString as d, createElementVNode as t, renderSlot as m, pushScopeId as P, popScopeId as H, computed as N, createTextVNode as O, ref as x, withDirectives as U, Fragment as M, renderList as L, vShow as G, normalizeProps as T, guardReactiveProps as C, mergeProps as ie, createVNode as k, Transition as ke, withCtx as $, withModifiers as re, createCommentVNode as h, watchEffect as oe, withKeys as $e, createBlock as j, normalizeStyle as ne, isRef as Q, unref as p, watch as X, onMounted as we, onUnmounted as xe } from "vue";
|
|
2
|
+
const Se = ["aria-label"], Ie = /* @__PURE__ */ _({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
5
5
|
variant: {
|
|
6
6
|
type: String,
|
|
7
7
|
required: !0,
|
|
8
8
|
validator(e) {
|
|
9
|
-
return ["primary", "secondary", "close"].includes(
|
|
9
|
+
return ["primary", "secondary", "close", "next", "previous"].includes(
|
|
10
|
+
e
|
|
11
|
+
);
|
|
10
12
|
}
|
|
11
13
|
},
|
|
12
14
|
ariaLabel: {
|
|
@@ -22,18 +24,18 @@ const xe = ["aria-label"], Ie = /* @__PURE__ */ h({
|
|
|
22
24
|
}
|
|
23
25
|
},
|
|
24
26
|
setup(e) {
|
|
25
|
-
return (
|
|
26
|
-
class:
|
|
27
|
+
return (l, a) => (i(), r("button", {
|
|
28
|
+
class: u(["button", "button--" + e.variant]),
|
|
27
29
|
"aria-label": e.ariaLabel
|
|
28
|
-
}, d(e.variant == "close" ? "" : e.buttonText), 11,
|
|
30
|
+
}, d(e.variant == "close" ? "" : e.buttonText), 11, Se));
|
|
29
31
|
}
|
|
30
32
|
});
|
|
31
|
-
const v = (e,
|
|
32
|
-
const
|
|
33
|
-
for (const [o, n] of
|
|
34
|
-
|
|
35
|
-
return
|
|
36
|
-
},
|
|
33
|
+
const v = (e, l) => {
|
|
34
|
+
const a = e.__vccOpts || e;
|
|
35
|
+
for (const [o, n] of l)
|
|
36
|
+
a[o] = n;
|
|
37
|
+
return a;
|
|
38
|
+
}, W = /* @__PURE__ */ v(Ie, [["__scopeId", "data-v-f195a839"]]), qe = (e) => (P("data-v-f62bd17f"), e = e(), H(), e), Me = ["name", "value", "disabled", "required", "id"], De = ["for"], Be = /* @__PURE__ */ qe(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Ae = /* @__PURE__ */ _({
|
|
37
39
|
__name: "checkbox",
|
|
38
40
|
props: {
|
|
39
41
|
name: String,
|
|
@@ -59,13 +61,13 @@ const v = (e, i) => {
|
|
|
59
61
|
}
|
|
60
62
|
},
|
|
61
63
|
emits: ["input"],
|
|
62
|
-
setup(e, { emit:
|
|
63
|
-
const
|
|
64
|
+
setup(e, { emit: l }) {
|
|
65
|
+
const a = (o) => {
|
|
64
66
|
const n = o.target;
|
|
65
|
-
|
|
67
|
+
l("input", n.checked);
|
|
66
68
|
};
|
|
67
|
-
return (o, n) => (
|
|
68
|
-
class:
|
|
69
|
+
return (o, n) => (i(), r("div", {
|
|
70
|
+
class: u(["checkbox__wrapper", e.disabled ? "disabled" : ""])
|
|
69
71
|
}, [
|
|
70
72
|
t("input", {
|
|
71
73
|
type: "checkbox",
|
|
@@ -75,11 +77,11 @@ const v = (e, i) => {
|
|
|
75
77
|
required: e.required,
|
|
76
78
|
id: e.id,
|
|
77
79
|
class: "checkbox__checkbox",
|
|
78
|
-
onChange:
|
|
80
|
+
onChange: a
|
|
79
81
|
}, null, 40, Me),
|
|
80
82
|
t("label", {
|
|
81
83
|
for: e.id,
|
|
82
|
-
class:
|
|
84
|
+
class: u(["checkbox__label", e.required ? "required" : ""])
|
|
83
85
|
}, [
|
|
84
86
|
Be,
|
|
85
87
|
m(o.$slots, "default", {}, void 0, !0)
|
|
@@ -87,7 +89,7 @@ const v = (e, i) => {
|
|
|
87
89
|
], 2));
|
|
88
90
|
}
|
|
89
91
|
});
|
|
90
|
-
const Le = /* @__PURE__ */ v(Ae, [["__scopeId", "data-v-f62bd17f"]]), Te = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgOSA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSA4TDggMU0xIDFMOCA4IiBzdHJva2U9IiMwQzA5MzEiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=", Ce = { class: "chip__wrapper" }, je = ["aria-label"], Ne = /* @__PURE__ */
|
|
92
|
+
const Le = /* @__PURE__ */ v(Ae, [["__scopeId", "data-v-f62bd17f"]]), Te = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgOSA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSA4TDggMU0xIDFMOCA4IiBzdHJva2U9IiMwQzA5MzEiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=", Ce = { class: "chip__wrapper" }, je = ["aria-label"], Ne = /* @__PURE__ */ _({
|
|
91
93
|
__name: "chip",
|
|
92
94
|
props: {
|
|
93
95
|
text: {
|
|
@@ -96,9 +98,9 @@ const Le = /* @__PURE__ */ v(Ae, [["__scopeId", "data-v-f62bd17f"]]), Te = "data
|
|
|
96
98
|
}
|
|
97
99
|
},
|
|
98
100
|
emits: ["remove-chip"],
|
|
99
|
-
setup(e, { emit:
|
|
100
|
-
const
|
|
101
|
-
return (n,
|
|
101
|
+
setup(e, { emit: l }) {
|
|
102
|
+
const a = e, o = N(() => `Chip: ${a.text}`);
|
|
103
|
+
return (n, c) => (i(), r("div", Ce, [
|
|
102
104
|
t("span", {
|
|
103
105
|
class: "chip",
|
|
104
106
|
"aria-label": o.value
|
|
@@ -108,13 +110,13 @@ const Le = /* @__PURE__ */ v(Ae, [["__scopeId", "data-v-f62bd17f"]]), Te = "data
|
|
|
108
110
|
src: Te,
|
|
109
111
|
alt: "close",
|
|
110
112
|
class: "close-icon",
|
|
111
|
-
onClick:
|
|
113
|
+
onClick: c[0] || (c[0] = (S) => n.$emit("remove-chip"))
|
|
112
114
|
})
|
|
113
115
|
], 8, je)
|
|
114
116
|
]));
|
|
115
117
|
}
|
|
116
118
|
});
|
|
117
|
-
const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["value"], Oe = ["id"], Pe = { class: "listbox__dropdown" }, He = ["id", "aria-labelledby", "aria-disabled"], Ze = ["aria-labelledby", "aria-activedescendant"], Ee = ["aria-selected", "data-value"], Re = /* @__PURE__ */
|
|
119
|
+
const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["value"], Oe = ["id"], Pe = { class: "listbox__dropdown" }, He = ["id", "aria-labelledby", "aria-disabled"], Ze = ["aria-labelledby", "aria-activedescendant"], Ee = ["aria-selected", "data-value"], Re = /* @__PURE__ */ _({
|
|
118
120
|
__name: "dropdown",
|
|
119
121
|
props: {
|
|
120
122
|
modelValue: {
|
|
@@ -130,7 +132,7 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
130
132
|
required: !0,
|
|
131
133
|
validator(e) {
|
|
132
134
|
return e.every(
|
|
133
|
-
(
|
|
135
|
+
(l) => typeof l.value < "u" && typeof l.label < "u"
|
|
134
136
|
);
|
|
135
137
|
}
|
|
136
138
|
},
|
|
@@ -156,13 +158,13 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
156
158
|
}
|
|
157
159
|
},
|
|
158
160
|
emits: ["update:modelValue"],
|
|
159
|
-
setup(e, { emit:
|
|
160
|
-
const
|
|
161
|
-
const s =
|
|
162
|
-
(g) => g.value ===
|
|
161
|
+
setup(e, { emit: l }) {
|
|
162
|
+
const a = e, o = x(null), n = x(null), c = x([]), S = x(0), I = x(""), f = x(!0), b = x(0), q = N(() => {
|
|
163
|
+
const s = a.options.find(
|
|
164
|
+
(g) => g.value === a.modelValue
|
|
163
165
|
);
|
|
164
166
|
return s && s.label;
|
|
165
|
-
}),
|
|
167
|
+
}), ue = {
|
|
166
168
|
beforeMount(s, g) {
|
|
167
169
|
s.clickOutsideEvent = function(y) {
|
|
168
170
|
s === y.target || s.contains(y.target) || g.value(y);
|
|
@@ -172,26 +174,26 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
172
174
|
document.body.removeEventListener("click", s.clickOutsideEvent);
|
|
173
175
|
}
|
|
174
176
|
};
|
|
175
|
-
function
|
|
176
|
-
|
|
177
|
+
function ce(s) {
|
|
178
|
+
l("update:modelValue", s);
|
|
177
179
|
}
|
|
178
180
|
function me(s) {
|
|
179
181
|
var y;
|
|
180
182
|
const g = s.target;
|
|
181
183
|
g.getAttribute("role") === "option" && (Z(g), R(), (y = o.value) == null || y.focus());
|
|
182
184
|
}
|
|
183
|
-
function
|
|
185
|
+
function J(s) {
|
|
184
186
|
var y;
|
|
185
187
|
const g = s.key;
|
|
186
188
|
switch (g) {
|
|
187
189
|
case "ArrowUp":
|
|
188
190
|
case "ArrowDown": {
|
|
189
191
|
s.preventDefault();
|
|
190
|
-
const w =
|
|
191
|
-
(V) => V.value ===
|
|
192
|
+
const w = a.options.findIndex(
|
|
193
|
+
(V) => V.value === a.modelValue
|
|
192
194
|
);
|
|
193
|
-
let B = w ?
|
|
194
|
-
g === "ArrowUp" ? w - 1 >= 0 && (B =
|
|
195
|
+
let B = w ? c.value[w] : c.value[0];
|
|
196
|
+
g === "ArrowUp" ? w - 1 >= 0 && (B = c.value[w - 1]) : w + 1 <= a.options.length && (B = c.value[w + 1]), B && Z(B);
|
|
195
197
|
break;
|
|
196
198
|
}
|
|
197
199
|
case "Home":
|
|
@@ -213,90 +215,90 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
213
215
|
}
|
|
214
216
|
}
|
|
215
217
|
}
|
|
216
|
-
function
|
|
217
|
-
if (!
|
|
218
|
+
function _e(s) {
|
|
219
|
+
if (!a.disabled)
|
|
218
220
|
switch (s.key) {
|
|
219
221
|
case "ArrowUp":
|
|
220
222
|
case "ArrowDown":
|
|
221
|
-
s.preventDefault(),
|
|
223
|
+
s.preventDefault(), K(), J(s);
|
|
222
224
|
break;
|
|
223
225
|
}
|
|
224
226
|
}
|
|
225
|
-
function
|
|
227
|
+
function ve(s) {
|
|
226
228
|
s && s.removeAttribute("aria-selected");
|
|
227
229
|
}
|
|
228
|
-
function
|
|
229
|
-
|
|
230
|
-
I.value = "",
|
|
230
|
+
function he() {
|
|
231
|
+
S && (clearTimeout(S.value), S.value = 0), S.value = setTimeout(() => {
|
|
232
|
+
I.value = "", S.value = 0;
|
|
231
233
|
}, 500);
|
|
232
234
|
}
|
|
233
235
|
function ge(s) {
|
|
234
236
|
let g = "";
|
|
235
|
-
(I.value === "" || g !== s) && (b.value =
|
|
236
|
-
(w) => w.value ===
|
|
237
|
-
)), I.value = g === s ? s : I.value + s, g = s,
|
|
238
|
-
let y =
|
|
237
|
+
(I.value === "" || g !== s) && (b.value = a.options.findIndex(
|
|
238
|
+
(w) => w.value === a.modelValue
|
|
239
|
+
)), I.value = g === s ? s : I.value + s, g = s, he();
|
|
240
|
+
let y = Y(
|
|
239
241
|
b.value + 1,
|
|
240
|
-
|
|
242
|
+
a.options.length
|
|
241
243
|
);
|
|
242
|
-
return !y && I.value.length === 1 && (y =
|
|
244
|
+
return !y && I.value.length === 1 && (y = Y(0, b.value)), b.value = (b.value + 1) % a.options.length, y;
|
|
243
245
|
}
|
|
244
|
-
function
|
|
246
|
+
function Y(s, g) {
|
|
245
247
|
for (let y = s; y < g; y++)
|
|
246
|
-
if (
|
|
247
|
-
return
|
|
248
|
+
if (a.options[y].label && a.options[y].label.toUpperCase().indexOf(I.value.toUpperCase()) === 0)
|
|
249
|
+
return c.value[y];
|
|
248
250
|
return null;
|
|
249
251
|
}
|
|
250
252
|
function fe() {
|
|
251
|
-
Z(
|
|
253
|
+
Z(c.value[0]);
|
|
252
254
|
}
|
|
253
255
|
function Z(s) {
|
|
254
256
|
var y, w;
|
|
255
257
|
const g = s.getAttribute("data-value");
|
|
256
|
-
if (
|
|
257
|
-
const B =
|
|
258
|
-
(pe) => pe.value ===
|
|
259
|
-
), V =
|
|
260
|
-
|
|
258
|
+
if (a.modelValue) {
|
|
259
|
+
const B = a.options.findIndex(
|
|
260
|
+
(pe) => pe.value === a.modelValue
|
|
261
|
+
), V = c.value[B];
|
|
262
|
+
ve(V);
|
|
261
263
|
}
|
|
262
264
|
if (s.setAttribute("aria-selected", "true"), (y = n.value) == null || y.setAttribute(
|
|
263
265
|
"aria-activedescendant",
|
|
264
266
|
g || ""
|
|
265
|
-
),
|
|
267
|
+
), ce(g || ""), n.value && n.value.scrollHeight > n.value.clientHeight) {
|
|
266
268
|
const B = n.value.clientHeight + n.value.scrollTop, V = s.offsetTop + s.offsetHeight;
|
|
267
269
|
V > B ? n.value.scrollTop = V - ((w = n.value) == null ? void 0 : w.clientHeight) : s.offsetTop < n.value.scrollTop && (n.value.scrollTop = s.offsetTop);
|
|
268
270
|
}
|
|
269
271
|
}
|
|
270
272
|
function ye() {
|
|
271
273
|
var g;
|
|
272
|
-
const s = (g =
|
|
274
|
+
const s = (g = c.value) == null ? void 0 : g[a.options.length - 1];
|
|
273
275
|
Z(s);
|
|
274
276
|
}
|
|
275
277
|
function R() {
|
|
276
278
|
var s;
|
|
277
279
|
f.value = !0, (s = o.value) == null || s.removeAttribute("aria-expanded");
|
|
278
280
|
}
|
|
279
|
-
function
|
|
281
|
+
function K() {
|
|
280
282
|
var s, g;
|
|
281
283
|
f.value = !1, (s = o.value) == null || s.setAttribute("aria-expanded", "true"), (g = n.value) == null || g.focus();
|
|
282
284
|
}
|
|
283
285
|
function be() {
|
|
284
|
-
|
|
286
|
+
a.disabled || (f.value ? K() : R());
|
|
285
287
|
}
|
|
286
|
-
return (s, g) => (
|
|
288
|
+
return (s, g) => (i(), r("div", {
|
|
287
289
|
class: "listbox__wrapper",
|
|
288
290
|
value: e.modelValue,
|
|
289
291
|
ref: "listbox"
|
|
290
292
|
}, [
|
|
291
293
|
t("label", {
|
|
292
294
|
id: `${e.name}-label`,
|
|
293
|
-
class:
|
|
295
|
+
class: u([{
|
|
294
296
|
"listbox__label--visually-hidden": !e.showLabel,
|
|
295
297
|
"is-disabled": e.disabled,
|
|
296
298
|
"is-required": e.required
|
|
297
299
|
}, "listbox__label"])
|
|
298
300
|
}, d(e.label), 11, Oe),
|
|
299
|
-
U((
|
|
301
|
+
U((i(), r("div", Pe, [
|
|
300
302
|
t("button", {
|
|
301
303
|
id: `${e.name}-button-label`,
|
|
302
304
|
"aria-labelledby": `${e.name}-label ${e.name}-button-label`,
|
|
@@ -305,7 +307,7 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
305
307
|
"aria-disabled": e.disabled,
|
|
306
308
|
class: "listbox__button",
|
|
307
309
|
onClick: be,
|
|
308
|
-
onKeydown:
|
|
310
|
+
onKeydown: _e,
|
|
309
311
|
ref_key: "listboxButton",
|
|
310
312
|
ref: o
|
|
311
313
|
}, d(e.modelValue ? q.value : e.placeholder), 41, He),
|
|
@@ -315,12 +317,12 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
315
317
|
tabindex: "0",
|
|
316
318
|
role: "listbox",
|
|
317
319
|
class: "listbox__list",
|
|
318
|
-
onKeydown:
|
|
320
|
+
onKeydown: J,
|
|
319
321
|
onClick: me,
|
|
320
322
|
ref_key: "listboxNode",
|
|
321
323
|
ref: n
|
|
322
324
|
}, [
|
|
323
|
-
(
|
|
325
|
+
(i(!0), r(M, null, L(e.options, (y, w) => (i(), r("li", {
|
|
324
326
|
key: `${e.name}-option-${w}`,
|
|
325
327
|
"aria-selected": y.value === e.modelValue,
|
|
326
328
|
"data-value": y.value,
|
|
@@ -328,18 +330,18 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
328
330
|
role: "option",
|
|
329
331
|
ref_for: !0,
|
|
330
332
|
ref_key: "listboxOptions",
|
|
331
|
-
ref:
|
|
333
|
+
ref: c
|
|
332
334
|
}, d(y.label), 9, Ee))), 128))
|
|
333
335
|
], 40, Ze), [
|
|
334
|
-
[
|
|
336
|
+
[G, !f.value]
|
|
335
337
|
])
|
|
336
338
|
])), [
|
|
337
|
-
[
|
|
339
|
+
[ue, R]
|
|
338
340
|
])
|
|
339
341
|
], 8, Ve));
|
|
340
342
|
}
|
|
341
343
|
});
|
|
342
|
-
const Ue = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-4824444a"]]), We = { class: "image__wrapper" }, Fe = /* @__PURE__ */
|
|
344
|
+
const Ue = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-4824444a"]]), We = { class: "image__wrapper" }, Fe = /* @__PURE__ */ _({
|
|
343
345
|
__name: "image",
|
|
344
346
|
props: {
|
|
345
347
|
src: {
|
|
@@ -377,12 +379,12 @@ const Ue = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-4824444a"]]), We = { cla
|
|
|
377
379
|
}
|
|
378
380
|
},
|
|
379
381
|
setup(e) {
|
|
380
|
-
return (
|
|
381
|
-
m(
|
|
382
|
+
return (l, a) => (i(), r("div", We, [
|
|
383
|
+
m(l.$slots, "default", T(C(l.$attrs)))
|
|
382
384
|
]));
|
|
383
385
|
}
|
|
384
386
|
});
|
|
385
|
-
const D = /* @__PURE__ */ v(Fe, [["__scopeId", "data-v-513b5384"]]), Ge = { class: "label__wrapper" }, Je = ["aria-label", "label-dark"], Ye = /* @__PURE__ */
|
|
387
|
+
const D = /* @__PURE__ */ v(Fe, [["__scopeId", "data-v-513b5384"]]), Ge = { class: "label__wrapper" }, Je = ["aria-label", "label-dark"], Ye = /* @__PURE__ */ _({
|
|
386
388
|
__name: "label",
|
|
387
389
|
props: {
|
|
388
390
|
text: {
|
|
@@ -396,17 +398,17 @@ const D = /* @__PURE__ */ v(Fe, [["__scopeId", "data-v-513b5384"]]), Ge = { clas
|
|
|
396
398
|
}
|
|
397
399
|
},
|
|
398
400
|
setup(e) {
|
|
399
|
-
const
|
|
400
|
-
return (o, n) => (
|
|
401
|
+
const l = e, a = N(() => `Label: ${l.text}`);
|
|
402
|
+
return (o, n) => (i(), r("div", Ge, [
|
|
401
403
|
t("span", {
|
|
402
|
-
"aria-label":
|
|
404
|
+
"aria-label": a.value,
|
|
403
405
|
"label-dark": e.labelDark,
|
|
404
|
-
class:
|
|
406
|
+
class: u(e.labelDark ? "label--dark" : "label--light")
|
|
405
407
|
}, d(e.text), 11, Je)
|
|
406
408
|
]));
|
|
407
409
|
}
|
|
408
410
|
});
|
|
409
|
-
const
|
|
411
|
+
const F = /* @__PURE__ */ v(Ye, [["__scopeId", "data-v-aacf01db"]]), Ke = { class: "link__wrapper" }, A = /* @__PURE__ */ _({
|
|
410
412
|
__name: "link",
|
|
411
413
|
props: {
|
|
412
414
|
url: {
|
|
@@ -447,12 +449,12 @@ const W = /* @__PURE__ */ v(Ye, [["__scopeId", "data-v-aacf01db"]]), Ke = { clas
|
|
|
447
449
|
}
|
|
448
450
|
},
|
|
449
451
|
setup(e) {
|
|
450
|
-
const
|
|
451
|
-
const { ...o } =
|
|
452
|
+
const l = e, a = N(() => {
|
|
453
|
+
const { ...o } = l;
|
|
452
454
|
return o;
|
|
453
455
|
});
|
|
454
|
-
return (o, n) => (
|
|
455
|
-
t("div",
|
|
456
|
+
return (o, n) => (i(), r("div", Ke, [
|
|
457
|
+
t("div", ie(a.value, {
|
|
456
458
|
class: ["mir-link", [
|
|
457
459
|
e.linkType === "primary" ? "mir-link--btn button button--primary" : e.linkType === "secondary" ? "mir-link--btn button button--secondary" : e.linkType === "secondary-dark" ? "mir-link--btn button button--secondary-dark" : e.linkType === "regular" ? "regular-link" : e.linkType === "regular-dark" ? "regular-link-dark" : e.linkType === "regular-light" ? "regular-link-light" : e.linkType === "regular-blue" ? "regular-link-blue" : "",
|
|
458
460
|
e.disabled ? "disabled" : "",
|
|
@@ -465,7 +467,7 @@ const W = /* @__PURE__ */ v(Ye, [["__scopeId", "data-v-aacf01db"]]), Ke = { clas
|
|
|
465
467
|
]));
|
|
466
468
|
}
|
|
467
469
|
});
|
|
468
|
-
const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value", "checked", "disabled", "required", "id"], et = ["for"], tt = /* @__PURE__ */ Qe(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), at = /* @__PURE__ */
|
|
470
|
+
const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value", "checked", "disabled", "required", "id"], et = ["for"], tt = /* @__PURE__ */ Qe(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), at = /* @__PURE__ */ _({
|
|
469
471
|
__name: "radio-button",
|
|
470
472
|
props: {
|
|
471
473
|
name: String,
|
|
@@ -492,13 +494,13 @@ const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value"
|
|
|
492
494
|
}
|
|
493
495
|
},
|
|
494
496
|
emits: ["input"],
|
|
495
|
-
setup(e, { emit:
|
|
496
|
-
const
|
|
497
|
+
setup(e, { emit: l }) {
|
|
498
|
+
const a = (o) => {
|
|
497
499
|
const n = o.target;
|
|
498
|
-
|
|
500
|
+
l("input", n.checked);
|
|
499
501
|
};
|
|
500
|
-
return (o, n) => (
|
|
501
|
-
class:
|
|
502
|
+
return (o, n) => (i(), r("div", {
|
|
503
|
+
class: u(["radio__wrapper", e.disabled ? "disabled" : ""])
|
|
502
504
|
}, [
|
|
503
505
|
t("input", {
|
|
504
506
|
type: "radio",
|
|
@@ -509,11 +511,11 @@ const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value"
|
|
|
509
511
|
required: e.required,
|
|
510
512
|
id: e.id,
|
|
511
513
|
class: "radio__radio",
|
|
512
|
-
onChange:
|
|
514
|
+
onChange: a
|
|
513
515
|
}, null, 40, Xe),
|
|
514
516
|
t("label", {
|
|
515
517
|
for: e.id,
|
|
516
|
-
class:
|
|
518
|
+
class: u(["radio__label", e.required ? "required" : ""])
|
|
517
519
|
}, [
|
|
518
520
|
tt,
|
|
519
521
|
m(o.$slots, "default", {}, void 0, !0)
|
|
@@ -521,7 +523,7 @@ const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value"
|
|
|
521
523
|
], 2));
|
|
522
524
|
}
|
|
523
525
|
});
|
|
524
|
-
const lt = /* @__PURE__ */ v(at, [["__scopeId", "data-v-016da8d2"]]), it = { class: "select__wrapper" }, rt = ["for"], ot = ["disabled", "id", "name", "value"], nt = ["value"], st = /* @__PURE__ */
|
|
526
|
+
const lt = /* @__PURE__ */ v(at, [["__scopeId", "data-v-016da8d2"]]), it = { class: "select__wrapper" }, rt = ["for"], ot = ["disabled", "id", "name", "value"], nt = ["value"], st = /* @__PURE__ */ _({
|
|
525
527
|
__name: "select",
|
|
526
528
|
props: {
|
|
527
529
|
id: {
|
|
@@ -537,7 +539,7 @@ const lt = /* @__PURE__ */ v(at, [["__scopeId", "data-v-016da8d2"]]), it = { cla
|
|
|
537
539
|
required: !0,
|
|
538
540
|
validator(e) {
|
|
539
541
|
return e.every(
|
|
540
|
-
(
|
|
542
|
+
(l) => typeof l.value < "u" && typeof l.text < "u"
|
|
541
543
|
);
|
|
542
544
|
}
|
|
543
545
|
},
|
|
@@ -562,22 +564,22 @@ const lt = /* @__PURE__ */ v(at, [["__scopeId", "data-v-016da8d2"]]), it = { cla
|
|
|
562
564
|
},
|
|
563
565
|
emits: ["update:modelValue"],
|
|
564
566
|
setup(e) {
|
|
565
|
-
return (
|
|
567
|
+
return (l, a) => (i(), r("div", it, [
|
|
566
568
|
t("label", {
|
|
567
569
|
for: e.id,
|
|
568
|
-
class:
|
|
570
|
+
class: u([e.required ? "required" : "", e.disabled ? "disabled" : ""])
|
|
569
571
|
}, d(e.label), 11, rt),
|
|
570
572
|
t("select", {
|
|
571
|
-
class:
|
|
573
|
+
class: u(e.disabled ? "disabled" : ""),
|
|
572
574
|
disabled: e.disabled,
|
|
573
575
|
id: e.id,
|
|
574
576
|
name: e.name,
|
|
575
577
|
value: e.modelValue,
|
|
576
|
-
onChange:
|
|
577
|
-
|
|
578
|
+
onChange: a[0] || (a[0] = (o) => {
|
|
579
|
+
l.$emit("update:modelValue", o.target.value), o.target.blur();
|
|
578
580
|
})
|
|
579
581
|
}, [
|
|
580
|
-
(
|
|
582
|
+
(i(!0), r(M, null, L(e.options, (o) => (i(), r("option", {
|
|
581
583
|
key: o.value,
|
|
582
584
|
value: o.value
|
|
583
585
|
}, d(o.text), 9, nt))), 128))
|
|
@@ -585,28 +587,28 @@ const lt = /* @__PURE__ */ v(at, [["__scopeId", "data-v-016da8d2"]]), it = { cla
|
|
|
585
587
|
]));
|
|
586
588
|
}
|
|
587
589
|
});
|
|
588
|
-
const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]),
|
|
590
|
+
const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]), ut = { class: "modal__wrapper" }, ct = /* @__PURE__ */ _({
|
|
589
591
|
__name: "modal",
|
|
590
592
|
props: {
|
|
591
593
|
show: { type: Boolean, default: !1 }
|
|
592
594
|
},
|
|
593
595
|
emits: ["update:show"],
|
|
594
|
-
setup(e, { emit:
|
|
595
|
-
const
|
|
596
|
+
setup(e, { emit: l }) {
|
|
597
|
+
const a = e;
|
|
596
598
|
N({
|
|
597
|
-
get: () =>
|
|
598
|
-
set: (n) =>
|
|
599
|
+
get: () => a.show,
|
|
600
|
+
set: (n) => l("update:show", n)
|
|
599
601
|
});
|
|
600
602
|
const o = () => {
|
|
601
|
-
|
|
603
|
+
l("update:show", !a.show);
|
|
602
604
|
};
|
|
603
|
-
return (n,
|
|
605
|
+
return (n, c) => (i(), r("div", ut, [
|
|
604
606
|
k(ke, {
|
|
605
607
|
duration: 300,
|
|
606
608
|
name: "nested"
|
|
607
609
|
}, {
|
|
608
610
|
default: $(() => [
|
|
609
|
-
n.show ? (
|
|
611
|
+
n.show ? (i(), r("div", {
|
|
610
612
|
key: 0,
|
|
611
613
|
class: "overlay",
|
|
612
614
|
onClick: o,
|
|
@@ -615,11 +617,11 @@ const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]), ct = { cla
|
|
|
615
617
|
}, [
|
|
616
618
|
t("div", {
|
|
617
619
|
id: "modal",
|
|
618
|
-
onClick:
|
|
620
|
+
onClick: c[0] || (c[0] = re(() => {
|
|
619
621
|
}, ["stop"]))
|
|
620
622
|
}, [
|
|
621
623
|
t("div", null, [
|
|
622
|
-
k(
|
|
624
|
+
k(W, {
|
|
623
625
|
ariaLabel: "close",
|
|
624
626
|
variant: "close",
|
|
625
627
|
onClick: o
|
|
@@ -627,14 +629,14 @@ const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]), ct = { cla
|
|
|
627
629
|
]),
|
|
628
630
|
m(n.$slots, "default", {}, void 0, !0)
|
|
629
631
|
])
|
|
630
|
-
])) :
|
|
632
|
+
])) : h("", !0)
|
|
631
633
|
]),
|
|
632
634
|
_: 3
|
|
633
635
|
})
|
|
634
636
|
]));
|
|
635
637
|
}
|
|
636
638
|
});
|
|
637
|
-
const se = /* @__PURE__ */ v(
|
|
639
|
+
const se = /* @__PURE__ */ v(ct, [["__scopeId", "data-v-b5af91d8"]]), mt = { class: "slider__wrapper" }, _t = { class: "slider__label" }, vt = ["for"], ht = ["aria-label"], gt = { class: "slider__content" }, ft = ["id", "name", "value", "min", "step", "max"], yt = /* @__PURE__ */ _({
|
|
638
640
|
__name: "slider",
|
|
639
641
|
props: {
|
|
640
642
|
label: {
|
|
@@ -686,39 +688,39 @@ const se = /* @__PURE__ */ v(ut, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
686
688
|
}
|
|
687
689
|
},
|
|
688
690
|
emits: ["update:modelValue"],
|
|
689
|
-
setup(e, { emit:
|
|
690
|
-
const
|
|
691
|
+
setup(e, { emit: l }) {
|
|
692
|
+
const a = e, o = x(a.modelValue), n = x(), c = x(!1), S = (f, b, q) => (f - b) / (q - b) * 100, I = (f) => {
|
|
691
693
|
var b;
|
|
692
694
|
(b = n.value) == null || b.style.setProperty("--ProgressPercent", `${f}%`);
|
|
693
695
|
};
|
|
694
|
-
return
|
|
696
|
+
return oe(() => {
|
|
695
697
|
if (n.value) {
|
|
696
|
-
|
|
697
|
-
const f =
|
|
698
|
+
l("update:modelValue", o.value);
|
|
699
|
+
const f = S(o.value, a.min, a.max);
|
|
698
700
|
let b = (50 - f) / 100;
|
|
699
701
|
I(f + b);
|
|
700
702
|
}
|
|
701
|
-
}), (f, b) => (
|
|
703
|
+
}), (f, b) => (i(), r(M, null, [
|
|
702
704
|
t("div", mt, [
|
|
703
|
-
t("div",
|
|
705
|
+
t("div", _t, [
|
|
704
706
|
t("label", {
|
|
705
707
|
for: e.id,
|
|
706
|
-
class:
|
|
707
|
-
}, d(e.label), 11,
|
|
708
|
-
e.information ? (
|
|
708
|
+
class: u([e.variant, ""])
|
|
709
|
+
}, d(e.label), 11, vt),
|
|
710
|
+
e.information ? (i(), r("i", {
|
|
709
711
|
key: 0,
|
|
710
712
|
role: "button",
|
|
711
|
-
class:
|
|
712
|
-
onClick: b[0] || (b[0] = (q) =>
|
|
713
|
-
onKeyup: b[1] || (b[1] = $e((q) =>
|
|
713
|
+
class: u([e.variant, "slider__information"]),
|
|
714
|
+
onClick: b[0] || (b[0] = (q) => c.value = !c.value),
|
|
715
|
+
onKeyup: b[1] || (b[1] = $e((q) => c.value = !c.value, ["enter"])),
|
|
714
716
|
"aria-label": e.informationLabel,
|
|
715
717
|
tabindex: "0",
|
|
716
718
|
"aria-haspopup": "dialog"
|
|
717
|
-
}, null, 42,
|
|
719
|
+
}, null, 42, ht)) : h("", !0)
|
|
718
720
|
]),
|
|
719
721
|
t("div", gt, [
|
|
720
722
|
t("span", {
|
|
721
|
-
class:
|
|
723
|
+
class: u([e.variant, "slider__minmax"])
|
|
722
724
|
}, d(e.min), 3),
|
|
723
725
|
t("input", {
|
|
724
726
|
type: "range",
|
|
@@ -728,33 +730,33 @@ const se = /* @__PURE__ */ v(ut, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
728
730
|
min: e.min,
|
|
729
731
|
step: e.step,
|
|
730
732
|
max: e.max,
|
|
731
|
-
class:
|
|
733
|
+
class: u(e.variant),
|
|
732
734
|
ref_key: "slider",
|
|
733
735
|
ref: n,
|
|
734
736
|
onInput: b[2] || (b[2] = ({ target: q }) => o.value = parseFloat(q.value))
|
|
735
737
|
}, null, 42, ft),
|
|
736
738
|
t("span", {
|
|
737
|
-
class:
|
|
739
|
+
class: u([e.variant, "slider__minmax"])
|
|
738
740
|
}, d(e.max), 3)
|
|
739
741
|
]),
|
|
740
742
|
t("span", {
|
|
741
|
-
class:
|
|
743
|
+
class: u([e.variant, "slider__value"])
|
|
742
744
|
}, d(e.modelValue), 3)
|
|
743
745
|
]),
|
|
744
|
-
e.information ? (
|
|
746
|
+
e.information ? (i(), j(se, {
|
|
745
747
|
key: 0,
|
|
746
|
-
show:
|
|
747
|
-
"onUpdate:show": b[3] || (b[3] = (q) =>
|
|
748
|
+
show: c.value,
|
|
749
|
+
"onUpdate:show": b[3] || (b[3] = (q) => c.value = q)
|
|
748
750
|
}, {
|
|
749
751
|
default: $(() => [
|
|
750
752
|
O(d(e.information), 1)
|
|
751
753
|
]),
|
|
752
754
|
_: 1
|
|
753
|
-
}, 8, ["show"])) :
|
|
755
|
+
}, 8, ["show"])) : h("", !0)
|
|
754
756
|
], 64));
|
|
755
757
|
}
|
|
756
758
|
});
|
|
757
|
-
const bt = /* @__PURE__ */ v(yt, [["__scopeId", "data-v-84385cf8"]]), pt = { id: "textarea-wrapper" }, kt = ["for"], $t = ["id"], wt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"],
|
|
759
|
+
const bt = /* @__PURE__ */ v(yt, [["__scopeId", "data-v-84385cf8"]]), pt = { id: "textarea-wrapper" }, kt = ["for"], $t = ["id"], wt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], xt = { class: "textarea-info" }, St = { key: 0 }, It = /* @__PURE__ */ _({
|
|
758
760
|
__name: "textarea",
|
|
759
761
|
props: {
|
|
760
762
|
id: {
|
|
@@ -794,10 +796,10 @@ const bt = /* @__PURE__ */ v(yt, [["__scopeId", "data-v-84385cf8"]]), pt = { id:
|
|
|
794
796
|
},
|
|
795
797
|
emits: ["update:modelValue"],
|
|
796
798
|
setup(e) {
|
|
797
|
-
return (
|
|
799
|
+
return (l, a) => (i(), r("div", pt, [
|
|
798
800
|
t("label", {
|
|
799
801
|
for: e.id,
|
|
800
|
-
class:
|
|
802
|
+
class: u({ required: e.required })
|
|
801
803
|
}, d(e.labelText) + d(e.required ? " *" : ""), 11, kt),
|
|
802
804
|
t("div", {
|
|
803
805
|
id: e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "textarea-wrapper__inner" : ""
|
|
@@ -812,18 +814,18 @@ const bt = /* @__PURE__ */ v(yt, [["__scopeId", "data-v-84385cf8"]]), pt = { id:
|
|
|
812
814
|
disabled: e.disabled,
|
|
813
815
|
maxlength: e.maxLength,
|
|
814
816
|
value: e.modelValue,
|
|
815
|
-
onInput:
|
|
816
|
-
class:
|
|
817
|
+
onInput: a[0] || (a[0] = (o) => l.$emit("update:modelValue", o.target.value)),
|
|
818
|
+
class: u(
|
|
817
819
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit" : "border"
|
|
818
820
|
)
|
|
819
821
|
}, null, 42, wt)
|
|
820
822
|
], 8, $t),
|
|
821
|
-
t("div",
|
|
823
|
+
t("div", xt, [
|
|
822
824
|
t("div", null, [
|
|
823
|
-
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (
|
|
825
|
+
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (i(), r("p", St, " Too many characters. Please make it shorter ")) : h("", !0)
|
|
824
826
|
]),
|
|
825
827
|
t("p", {
|
|
826
|
-
class:
|
|
828
|
+
class: u(
|
|
827
829
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit-meter" : ""
|
|
828
830
|
)
|
|
829
831
|
}, d(e.maxLength !== void 0 && e.modelValue !== void 0 && e.maxLength - e.modelValue.length >= 0 ? e.modelValue.length : 0) + " / " + d(e.maxLength), 3)
|
|
@@ -840,7 +842,7 @@ const qt = /* @__PURE__ */ v(It, [["__scopeId", "data-v-28492b7a"]]), Mt = { cla
|
|
|
840
842
|
}, Nt = {
|
|
841
843
|
key: 4,
|
|
842
844
|
class: "helperText"
|
|
843
|
-
}, zt = /* @__PURE__ */
|
|
845
|
+
}, zt = /* @__PURE__ */ _({
|
|
844
846
|
__name: "text-field",
|
|
845
847
|
props: {
|
|
846
848
|
type: {
|
|
@@ -907,21 +909,21 @@ const qt = /* @__PURE__ */ v(It, [["__scopeId", "data-v-28492b7a"]]), Mt = { cla
|
|
|
907
909
|
},
|
|
908
910
|
emits: ["update:modelValue"],
|
|
909
911
|
setup(e) {
|
|
910
|
-
const
|
|
911
|
-
() =>
|
|
912
|
+
const l = x(!0), a = N(
|
|
913
|
+
() => l.value ? "showPassword" : "hidePassword"
|
|
912
914
|
), o = N(
|
|
913
|
-
() =>
|
|
915
|
+
() => l.value ? "password" : "text"
|
|
914
916
|
);
|
|
915
|
-
return (n,
|
|
917
|
+
return (n, c) => (i(), r("div", Mt, [
|
|
916
918
|
t("label", {
|
|
917
919
|
for: e.id,
|
|
918
|
-
class:
|
|
920
|
+
class: u([
|
|
919
921
|
e.required ? "required" : "",
|
|
920
922
|
e.disabled ? "disabled" : "",
|
|
921
923
|
e.search ? "search" : ""
|
|
922
924
|
])
|
|
923
925
|
}, d(e.label), 11, Dt),
|
|
924
|
-
e.type === "password" ? (
|
|
926
|
+
e.type === "password" ? (i(), r("div", Bt, [
|
|
925
927
|
t("input", {
|
|
926
928
|
id: e.id,
|
|
927
929
|
type: o.value,
|
|
@@ -929,37 +931,37 @@ const qt = /* @__PURE__ */ v(It, [["__scopeId", "data-v-28492b7a"]]), Mt = { cla
|
|
|
929
931
|
placeholder: e.placeholder,
|
|
930
932
|
required: e.required,
|
|
931
933
|
disabled: e.disabled,
|
|
932
|
-
onInput:
|
|
934
|
+
onInput: c[0] || (c[0] = (S) => n.$emit("update:modelValue", S.target.value))
|
|
933
935
|
}, null, 40, At),
|
|
934
936
|
t("i", {
|
|
935
937
|
role: "button",
|
|
936
|
-
class:
|
|
937
|
-
onClick:
|
|
938
|
+
class: u([a.value]),
|
|
939
|
+
onClick: c[1] || (c[1] = (S) => l.value = !l.value),
|
|
938
940
|
"aria-controls": "password",
|
|
939
|
-
"aria-expanded": !
|
|
941
|
+
"aria-expanded": !l.value
|
|
940
942
|
}, null, 10, Lt)
|
|
941
|
-
])) : (
|
|
943
|
+
])) : (i(), r("input", {
|
|
942
944
|
key: 1,
|
|
943
945
|
type: e.type,
|
|
944
946
|
value: e.modelValue,
|
|
945
947
|
placeholder: e.placeholder,
|
|
946
948
|
id: e.id,
|
|
947
949
|
required: e.required,
|
|
948
|
-
class:
|
|
950
|
+
class: u([
|
|
949
951
|
e.invalid ? "invalid" : "",
|
|
950
952
|
e.valid ? "valid" : "",
|
|
951
953
|
e.search ? "search" : ""
|
|
952
954
|
]),
|
|
953
955
|
disabled: e.disabled,
|
|
954
|
-
onInput:
|
|
956
|
+
onInput: c[2] || (c[2] = (S) => n.$emit("update:modelValue", S.target.value))
|
|
955
957
|
}, null, 42, Tt)),
|
|
956
|
-
e.search ? (
|
|
957
|
-
e.errorMessage ? (
|
|
958
|
-
e.helperText ? (
|
|
958
|
+
e.search ? (i(), r("i", Ct)) : h("", !0),
|
|
959
|
+
e.errorMessage ? (i(), r("strong", jt, d(e.errorMessage), 1)) : h("", !0),
|
|
960
|
+
e.helperText ? (i(), r("span", Nt, d(e.helperText), 1)) : h("", !0)
|
|
959
961
|
]));
|
|
960
962
|
}
|
|
961
963
|
});
|
|
962
|
-
const Vt = /* @__PURE__ */ v(zt, [["__scopeId", "data-v-4c2c5e23"]]), Ot = { class: "video__wrapper" }, Pt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Ht = ["src", "aria-label", "title", "width", "height"], Zt = /* @__PURE__ */
|
|
964
|
+
const Vt = /* @__PURE__ */ v(zt, [["__scopeId", "data-v-4c2c5e23"]]), Ot = { class: "video__wrapper" }, Pt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Ht = ["src", "aria-label", "title", "width", "height"], Zt = /* @__PURE__ */ _({
|
|
963
965
|
__name: "video",
|
|
964
966
|
props: {
|
|
965
967
|
play: {
|
|
@@ -1011,15 +1013,15 @@ const Vt = /* @__PURE__ */ v(zt, [["__scopeId", "data-v-4c2c5e23"]]), Ot = { cla
|
|
|
1011
1013
|
}
|
|
1012
1014
|
},
|
|
1013
1015
|
setup(e) {
|
|
1014
|
-
const
|
|
1015
|
-
let
|
|
1016
|
-
return
|
|
1017
|
-
|
|
1018
|
-
}), (o, n) => (
|
|
1019
|
-
e.localVideo ? (
|
|
1016
|
+
const l = e;
|
|
1017
|
+
let a = x(null);
|
|
1018
|
+
return oe(() => {
|
|
1019
|
+
l.play && a.value ? a.value.play() : !l.play && a.value && a.value.pause();
|
|
1020
|
+
}), (o, n) => (i(), r("div", Ot, [
|
|
1021
|
+
e.localVideo ? (i(), r("video", {
|
|
1020
1022
|
key: 0,
|
|
1021
1023
|
ref_key: "videoRef",
|
|
1022
|
-
ref:
|
|
1024
|
+
ref: a,
|
|
1023
1025
|
"aria-label": e.ariaLabel,
|
|
1024
1026
|
controls: e.controls,
|
|
1025
1027
|
poster: e.poster,
|
|
@@ -1031,7 +1033,7 @@ const Vt = /* @__PURE__ */ v(zt, [["__scopeId", "data-v-4c2c5e23"]]), Ot = { cla
|
|
|
1031
1033
|
type: "video/mp4",
|
|
1032
1034
|
playsinline: "",
|
|
1033
1035
|
src: e.src
|
|
1034
|
-
}, " Your browser does not support HTML video. ", 8, Pt)) : (
|
|
1036
|
+
}, " Your browser does not support HTML video. ", 8, Pt)) : (i(), r("iframe", {
|
|
1035
1037
|
key: 1,
|
|
1036
1038
|
src: e.src,
|
|
1037
1039
|
"aria-label": e.ariaLabel,
|
|
@@ -1045,7 +1047,7 @@ const Vt = /* @__PURE__ */ v(zt, [["__scopeId", "data-v-4c2c5e23"]]), Ot = { cla
|
|
|
1045
1047
|
]));
|
|
1046
1048
|
}
|
|
1047
1049
|
});
|
|
1048
|
-
const E = /* @__PURE__ */ v(Zt, [["__scopeId", "data-v-48adae09"]]), Et = (e) => (P("data-v-327e6c15"), e = e(), H(), e), Rt = { class: "bullet-list__wrapper" }, Ut = /* @__PURE__ */ Et(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), Wt = /* @__PURE__ */
|
|
1050
|
+
const E = /* @__PURE__ */ v(Zt, [["__scopeId", "data-v-48adae09"]]), Et = (e) => (P("data-v-327e6c15"), e = e(), H(), e), Rt = { class: "bullet-list__wrapper" }, Ut = /* @__PURE__ */ Et(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), Wt = /* @__PURE__ */ _({
|
|
1049
1051
|
__name: "bullet-list",
|
|
1050
1052
|
props: {
|
|
1051
1053
|
list: {
|
|
@@ -1065,12 +1067,12 @@ const E = /* @__PURE__ */ v(Zt, [["__scopeId", "data-v-48adae09"]]), Et = (e) =>
|
|
|
1065
1067
|
}
|
|
1066
1068
|
},
|
|
1067
1069
|
setup(e) {
|
|
1068
|
-
return (
|
|
1070
|
+
return (l, a) => (i(), r("div", Rt, [
|
|
1069
1071
|
t("div", {
|
|
1070
|
-
class:
|
|
1072
|
+
class: u(["bullet-list", e.variant])
|
|
1071
1073
|
}, [
|
|
1072
1074
|
t("ul", null, [
|
|
1073
|
-
(
|
|
1075
|
+
(i(!0), r(M, null, L(e.list, (o) => (i(), r("li", null, [
|
|
1074
1076
|
Ut,
|
|
1075
1077
|
O(" " + d(o), 1)
|
|
1076
1078
|
]))), 256))
|
|
@@ -1079,7 +1081,7 @@ const E = /* @__PURE__ */ v(Zt, [["__scopeId", "data-v-48adae09"]]), Et = (e) =>
|
|
|
1079
1081
|
]));
|
|
1080
1082
|
}
|
|
1081
1083
|
});
|
|
1082
|
-
const Ft = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { class: "card__wrapper" }, Jt = { key: 4 }, Yt = /* @__PURE__ */
|
|
1084
|
+
const Ft = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { class: "card__wrapper" }, Jt = { key: 4 }, Yt = /* @__PURE__ */ _({
|
|
1083
1085
|
__name: "card",
|
|
1084
1086
|
props: {
|
|
1085
1087
|
variant: {
|
|
@@ -1133,27 +1135,27 @@ const Ft = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1133
1135
|
alt: String
|
|
1134
1136
|
},
|
|
1135
1137
|
emits: ["clicked"],
|
|
1136
|
-
setup(e, { emit:
|
|
1137
|
-
let
|
|
1138
|
-
return (o, n) => (
|
|
1138
|
+
setup(e, { emit: l }) {
|
|
1139
|
+
let a = x(!1);
|
|
1140
|
+
return (o, n) => (i(), r("div", Gt, [
|
|
1139
1141
|
t("div", {
|
|
1140
|
-
class:
|
|
1142
|
+
class: u(["card", [
|
|
1141
1143
|
e.theme == "dark" ? "card--dark" : "card--light",
|
|
1142
1144
|
e.orientation == "vertical" ? "vertical" : "horizontal",
|
|
1143
1145
|
e.size == "small" ? "card--small" : e.size == "medium" ? "card--medium" : e.size == "large" ? "card--large" : "",
|
|
1144
1146
|
e.size == "large" && e.variant == "article" ? "card--large-article" : "",
|
|
1145
1147
|
e.variant == "product" ? "card--product" : "card--article"
|
|
1146
1148
|
]]),
|
|
1147
|
-
style:
|
|
1149
|
+
style: ne([
|
|
1148
1150
|
e.variant == "product" ? "font-weight: 700" : "font-weight: 300",
|
|
1149
1151
|
e.mediaType == "video" ? "width: 328px" : ""
|
|
1150
1152
|
]),
|
|
1151
|
-
onMouseover: n[0] || (n[0] = (
|
|
1152
|
-
onMouseout: n[1] || (n[1] = (
|
|
1153
|
+
onMouseover: n[0] || (n[0] = (c) => Q(a) ? a.value = !0 : a = !0),
|
|
1154
|
+
onMouseout: n[1] || (n[1] = (c) => Q(a) ? a.value = !1 : a = !1)
|
|
1153
1155
|
}, [
|
|
1154
|
-
e.mediaType == "image" ? (
|
|
1156
|
+
e.mediaType == "image" ? (i(), j(D, { key: 0 }, {
|
|
1155
1157
|
default: $(() => [
|
|
1156
|
-
m(o.$slots, "card-image",
|
|
1158
|
+
m(o.$slots, "card-image", ie({
|
|
1157
1159
|
src: e.imgSrc,
|
|
1158
1160
|
height: e.size == "small" ? "186" : e.size == "medium" ? "243" : e.size == "large" ? "335" : "",
|
|
1159
1161
|
width: e.size == "small" ? "298" : e.size == "medium" ? "432" : e.size == "large" ? "596" : "",
|
|
@@ -1163,12 +1165,12 @@ const Ft = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1163
1165
|
}, { srcset: e.srcSet }))
|
|
1164
1166
|
]),
|
|
1165
1167
|
_: 3
|
|
1166
|
-
})) : (
|
|
1168
|
+
})) : (i(), r("div", {
|
|
1167
1169
|
key: 1,
|
|
1168
|
-
class:
|
|
1170
|
+
class: u(["video-card__wrapper", p(a) == !0 ? "vimeoPlaying" : ""])
|
|
1169
1171
|
}, [
|
|
1170
1172
|
k(E, {
|
|
1171
|
-
play: p(
|
|
1173
|
+
play: p(a),
|
|
1172
1174
|
localVideo: !0,
|
|
1173
1175
|
src: e.videoSrc,
|
|
1174
1176
|
"aria-label": e.arialabel,
|
|
@@ -1181,20 +1183,20 @@ const Ft = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1181
1183
|
muted: !0
|
|
1182
1184
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
1183
1185
|
], 2)),
|
|
1184
|
-
e.variant === "product" ? (
|
|
1186
|
+
e.variant === "product" ? (i(), r("h3", {
|
|
1185
1187
|
key: 2,
|
|
1186
|
-
class:
|
|
1187
|
-
}, d(e.headline), 3)) : (
|
|
1188
|
+
class: u(e.theme == "dark" ? "regular-dark" : "regular-blue")
|
|
1189
|
+
}, d(e.headline), 3)) : (i(), r("h3", {
|
|
1188
1190
|
key: 3,
|
|
1189
|
-
class:
|
|
1191
|
+
class: u(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
|
|
1190
1192
|
}, d(e.headline), 3)),
|
|
1191
|
-
e.variant == "product" ? (
|
|
1193
|
+
e.variant == "product" ? (i(), r("p", Jt, d(e.paragraph), 1)) : h("", !0),
|
|
1192
1194
|
m(o.$slots, "card-label")
|
|
1193
1195
|
], 38)
|
|
1194
1196
|
]));
|
|
1195
1197
|
}
|
|
1196
1198
|
});
|
|
1197
|
-
const Kt = /* @__PURE__ */ v(Yt, [["__scopeId", "data-v-b50e8101"]]), Qt = (e) => (P("data-v-f5acdf7e"), e = e(), H(), e), Xt = { class: "event__wrapper" }, ea = { class: "event__headline" }, ta = { class: "event__date-location" }, aa = /* @__PURE__ */ Qt(() => /* @__PURE__ */ t("br", null, null, -1)), la = { class: "event__exhibitor" }, ia = /* @__PURE__ */
|
|
1199
|
+
const Kt = /* @__PURE__ */ v(Yt, [["__scopeId", "data-v-b50e8101"]]), Qt = (e) => (P("data-v-f5acdf7e"), e = e(), H(), e), Xt = { class: "event__wrapper" }, ea = { class: "event__headline" }, ta = { class: "event__date-location" }, aa = /* @__PURE__ */ Qt(() => /* @__PURE__ */ t("br", null, null, -1)), la = { class: "event__exhibitor" }, ia = /* @__PURE__ */ _({
|
|
1198
1200
|
__name: "event-card",
|
|
1199
1201
|
props: {
|
|
1200
1202
|
eventType: {
|
|
@@ -1219,8 +1221,8 @@ const Kt = /* @__PURE__ */ v(Yt, [["__scopeId", "data-v-b50e8101"]]), Qt = (e) =
|
|
|
1219
1221
|
}
|
|
1220
1222
|
},
|
|
1221
1223
|
setup(e) {
|
|
1222
|
-
return (
|
|
1223
|
-
k(
|
|
1224
|
+
return (l, a) => (i(), r("div", Xt, [
|
|
1225
|
+
k(F, {
|
|
1224
1226
|
"label-dark": !1,
|
|
1225
1227
|
text: e.eventType ? e.eventType : ""
|
|
1226
1228
|
}, null, 8, ["text"]),
|
|
@@ -1234,10 +1236,10 @@ const Kt = /* @__PURE__ */ v(Yt, [["__scopeId", "data-v-b50e8101"]]), Qt = (e) =
|
|
|
1234
1236
|
]));
|
|
1235
1237
|
}
|
|
1236
1238
|
});
|
|
1237
|
-
const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-f5acdf7e"]]), oa = { class: "facts__wrapper" }, na = { class: "facts__content" }, sa = { class: "facts__headline" }, da = { class: "facts" },
|
|
1239
|
+
const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-f5acdf7e"]]), oa = { class: "facts__wrapper" }, na = { class: "facts__content" }, sa = { class: "facts__headline" }, da = { class: "facts" }, ua = { class: "fact" }, ca = { class: "fact__value" }, ma = { class: "fact__metric" }, _a = {
|
|
1238
1240
|
key: 0,
|
|
1239
1241
|
class: "facts__link"
|
|
1240
|
-
},
|
|
1242
|
+
}, va = /* @__PURE__ */ _({
|
|
1241
1243
|
__name: "facts",
|
|
1242
1244
|
props: {
|
|
1243
1245
|
headline: {
|
|
@@ -1255,12 +1257,12 @@ const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-f5acdf7e"]]), oa = { cla
|
|
|
1255
1257
|
}
|
|
1256
1258
|
},
|
|
1257
1259
|
setup(e) {
|
|
1258
|
-
return (
|
|
1260
|
+
return (l, a) => (i(), r("div", oa, [
|
|
1259
1261
|
t("div", na, [
|
|
1260
1262
|
t("h2", sa, d(e.headline), 1),
|
|
1261
1263
|
t("div", da, [
|
|
1262
|
-
(
|
|
1263
|
-
t("div",
|
|
1264
|
+
(i(!0), r(M, null, L(e.facts, (o) => (i(), r("div", ua, [
|
|
1265
|
+
t("div", ca, [
|
|
1264
1266
|
t("span", null, d(o.value), 1)
|
|
1265
1267
|
]),
|
|
1266
1268
|
t("div", ma, [
|
|
@@ -1268,25 +1270,25 @@ const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-f5acdf7e"]]), oa = { cla
|
|
|
1268
1270
|
])
|
|
1269
1271
|
]))), 256))
|
|
1270
1272
|
]),
|
|
1271
|
-
e.link ? (
|
|
1273
|
+
e.link ? (i(), r("div", _a, [
|
|
1272
1274
|
k(A, {
|
|
1273
1275
|
linkType: "regular-light",
|
|
1274
1276
|
arrow: ""
|
|
1275
1277
|
}, {
|
|
1276
1278
|
default: $(() => [
|
|
1277
|
-
m(
|
|
1279
|
+
m(l.$slots, "facts-link", {}, void 0, !0)
|
|
1278
1280
|
]),
|
|
1279
1281
|
_: 3
|
|
1280
1282
|
})
|
|
1281
|
-
])) :
|
|
1283
|
+
])) : h("", !0)
|
|
1282
1284
|
])
|
|
1283
1285
|
]));
|
|
1284
1286
|
}
|
|
1285
1287
|
});
|
|
1286
|
-
const
|
|
1288
|
+
const ha = /* @__PURE__ */ v(va, [["__scopeId", "data-v-17bdc477"]]), ga = { class: "features__wrapper" }, fa = { class: "features__content" }, ya = {
|
|
1287
1289
|
key: 0,
|
|
1288
1290
|
class: "features__headline"
|
|
1289
|
-
}, ba = { class: "features__body" }, pa = { class: "features__element" }, ka = { class: "element__headline" }, $a = { class: "element__body" }, wa = /* @__PURE__ */
|
|
1291
|
+
}, ba = { class: "features__body" }, pa = { class: "features__element" }, ka = { class: "element__headline" }, $a = { class: "element__body" }, wa = /* @__PURE__ */ _({
|
|
1290
1292
|
__name: "features",
|
|
1291
1293
|
props: {
|
|
1292
1294
|
headline: {
|
|
@@ -1301,21 +1303,21 @@ const va = /* @__PURE__ */ v(_a, [["__scopeId", "data-v-17bdc477"]]), ga = { cla
|
|
|
1301
1303
|
}
|
|
1302
1304
|
},
|
|
1303
1305
|
setup(e) {
|
|
1304
|
-
return (
|
|
1306
|
+
return (l, a) => (i(), r("div", ga, [
|
|
1305
1307
|
t("div", fa, [
|
|
1306
|
-
e.headline ? (
|
|
1308
|
+
e.headline ? (i(), r("div", ya, [
|
|
1307
1309
|
t("h2", null, d(e.headline), 1)
|
|
1308
|
-
])) :
|
|
1310
|
+
])) : h("", !0),
|
|
1309
1311
|
t("div", ba, [
|
|
1310
|
-
m(
|
|
1312
|
+
m(l.$slots, "features-body", {}, void 0, !0)
|
|
1311
1313
|
]),
|
|
1312
1314
|
t("div", {
|
|
1313
|
-
class:
|
|
1315
|
+
class: u(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
|
|
1314
1316
|
}, [
|
|
1315
|
-
(
|
|
1317
|
+
(i(!0), r(M, null, L(e.elements, (o) => (i(), r("div", pa, [
|
|
1316
1318
|
k(D, { class: "element__icon" }, {
|
|
1317
1319
|
default: $(() => [
|
|
1318
|
-
m(
|
|
1320
|
+
m(l.$slots, "features-icon", T(C({
|
|
1319
1321
|
src: o.icon.src,
|
|
1320
1322
|
height: 30,
|
|
1321
1323
|
width: 30,
|
|
@@ -1332,7 +1334,7 @@ const va = /* @__PURE__ */ v(_a, [["__scopeId", "data-v-17bdc477"]]), ga = { cla
|
|
|
1332
1334
|
]));
|
|
1333
1335
|
}
|
|
1334
1336
|
});
|
|
1335
|
-
const
|
|
1337
|
+
const xa = /* @__PURE__ */ v(wa, [["__scopeId", "data-v-782af0c4"]]), Sa = { class: "image__wrapper" }, Ia = { class: "image__content" }, qa = { class: "image__image" }, Ma = { class: "image__caption" }, Da = /* @__PURE__ */ _({
|
|
1336
1338
|
__name: "image",
|
|
1337
1339
|
props: {
|
|
1338
1340
|
caption: {
|
|
@@ -1349,12 +1351,12 @@ const Sa = /* @__PURE__ */ v(wa, [["__scopeId", "data-v-782af0c4"]]), xa = { cla
|
|
|
1349
1351
|
}
|
|
1350
1352
|
},
|
|
1351
1353
|
setup(e) {
|
|
1352
|
-
return (
|
|
1354
|
+
return (l, a) => (i(), r("div", Sa, [
|
|
1353
1355
|
t("div", Ia, [
|
|
1354
1356
|
t("div", qa, [
|
|
1355
1357
|
k(D, null, {
|
|
1356
1358
|
default: $(() => [
|
|
1357
|
-
m(
|
|
1359
|
+
m(l.$slots, "image", T(C({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1358
1360
|
]),
|
|
1359
1361
|
_: 3
|
|
1360
1362
|
})
|
|
@@ -1373,7 +1375,7 @@ const Ba = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-6dde0544"]]), Aa = { cla
|
|
|
1373
1375
|
}, Ca = { class: "image image--small" }, ja = {
|
|
1374
1376
|
key: 0,
|
|
1375
1377
|
class: "body"
|
|
1376
|
-
}, Na = /* @__PURE__ */
|
|
1378
|
+
}, Na = /* @__PURE__ */ _({
|
|
1377
1379
|
__name: "image-gallery",
|
|
1378
1380
|
props: {
|
|
1379
1381
|
mediaLarge: {
|
|
@@ -1412,23 +1414,23 @@ const Ba = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-6dde0544"]]), Aa = { cla
|
|
|
1412
1414
|
}
|
|
1413
1415
|
},
|
|
1414
1416
|
setup(e) {
|
|
1415
|
-
return (
|
|
1416
|
-
class:
|
|
1417
|
+
return (l, a) => (i(), r("div", {
|
|
1418
|
+
class: u([
|
|
1417
1419
|
"gallery__wrapper",
|
|
1418
1420
|
e.bgColor === "light" ? "gallery__wrapper--light" : e.bgColor === "dark" ? "gallery__wrapper--dark" : ""
|
|
1419
1421
|
])
|
|
1420
1422
|
}, [
|
|
1421
1423
|
t("div", {
|
|
1422
|
-
class:
|
|
1424
|
+
class: u([
|
|
1423
1425
|
"gallery__content",
|
|
1424
1426
|
e.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1425
1427
|
])
|
|
1426
1428
|
}, [
|
|
1427
1429
|
t("div", Aa, [
|
|
1428
|
-
e.mediaLarge && e.mediaType === "image" ? (
|
|
1430
|
+
e.mediaLarge && e.mediaType === "image" ? (i(), r("div", La, [
|
|
1429
1431
|
k(D, null, {
|
|
1430
1432
|
default: $(() => [
|
|
1431
|
-
m(
|
|
1433
|
+
m(l.$slots, "image-large", T(C({
|
|
1432
1434
|
width: 617,
|
|
1433
1435
|
height: 530,
|
|
1434
1436
|
src: e.mediaLarge.src,
|
|
@@ -1437,8 +1439,8 @@ const Ba = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-6dde0544"]]), Aa = { cla
|
|
|
1437
1439
|
]),
|
|
1438
1440
|
_: 3
|
|
1439
1441
|
})
|
|
1440
|
-
])) :
|
|
1441
|
-
e.mediaLarge && e.mediaType === "video" ? (
|
|
1442
|
+
])) : h("", !0),
|
|
1443
|
+
e.mediaLarge && e.mediaType === "video" ? (i(), r("div", Ta, [
|
|
1442
1444
|
k(E, {
|
|
1443
1445
|
src: e.mediaLarge.src,
|
|
1444
1446
|
localVideo: "",
|
|
@@ -1451,19 +1453,19 @@ const Ba = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-6dde0544"]]), Aa = { cla
|
|
|
1451
1453
|
muted: !0,
|
|
1452
1454
|
play: !0
|
|
1453
1455
|
}, null, 8, ["src", "ariaLabel"])
|
|
1454
|
-
])) :
|
|
1456
|
+
])) : h("", !0)
|
|
1455
1457
|
]),
|
|
1456
1458
|
t("div", {
|
|
1457
|
-
style:
|
|
1458
|
-
class:
|
|
1459
|
+
style: ne([e.mediaSmall.length == 2 ? "grid-gap: 38px;" : ""]),
|
|
1460
|
+
class: u([
|
|
1459
1461
|
"gallery__small",
|
|
1460
1462
|
e.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1461
1463
|
])
|
|
1462
1464
|
}, [
|
|
1463
|
-
(
|
|
1465
|
+
(i(!0), r(M, null, L(e.mediaSmall, (o) => (i(), r("div", Ca, [
|
|
1464
1466
|
k(D, null, {
|
|
1465
1467
|
default: $(() => [
|
|
1466
|
-
m(
|
|
1468
|
+
m(l.$slots, "image-small", T(C({
|
|
1467
1469
|
width: 328,
|
|
1468
1470
|
height: 246,
|
|
1469
1471
|
src: o.src,
|
|
@@ -1473,15 +1475,15 @@ const Ba = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-6dde0544"]]), Aa = { cla
|
|
|
1473
1475
|
_: 2
|
|
1474
1476
|
}, 1024)
|
|
1475
1477
|
]))), 256)),
|
|
1476
|
-
e.mediaSmall.length < 2 ? (
|
|
1478
|
+
e.mediaSmall.length < 2 ? (i(), r("div", ja, [
|
|
1477
1479
|
t("p", null, d(e.body), 1)
|
|
1478
|
-
])) :
|
|
1480
|
+
])) : h("", !0)
|
|
1479
1481
|
], 6)
|
|
1480
1482
|
], 2)
|
|
1481
1483
|
], 2));
|
|
1482
1484
|
}
|
|
1483
1485
|
});
|
|
1484
|
-
const za = /* @__PURE__ */ v(Na, [["__scopeId", "data-v-9000454c"]]), Va = { class: "headline__wrapper" }, Oa = { class: "headline__h1" }, Pa = /* @__PURE__ */
|
|
1486
|
+
const za = /* @__PURE__ */ v(Na, [["__scopeId", "data-v-9000454c"]]), Va = { class: "headline__wrapper" }, Oa = { class: "headline__h1" }, Pa = /* @__PURE__ */ _({
|
|
1485
1487
|
__name: "headline",
|
|
1486
1488
|
props: {
|
|
1487
1489
|
headline: {
|
|
@@ -1498,9 +1500,9 @@ const za = /* @__PURE__ */ v(Na, [["__scopeId", "data-v-9000454c"]]), Va = { cla
|
|
|
1498
1500
|
}
|
|
1499
1501
|
},
|
|
1500
1502
|
setup(e) {
|
|
1501
|
-
return (
|
|
1503
|
+
return (l, a) => (i(), r("div", Va, [
|
|
1502
1504
|
t("div", {
|
|
1503
|
-
class:
|
|
1505
|
+
class: u([
|
|
1504
1506
|
e.article ? "headline__content--article" : e.noSubMenu ? "headline__content--nosubmenu" : "headline__content--default"
|
|
1505
1507
|
])
|
|
1506
1508
|
}, [
|
|
@@ -1509,7 +1511,7 @@ const za = /* @__PURE__ */ v(Na, [["__scopeId", "data-v-9000454c"]]), Va = { cla
|
|
|
1509
1511
|
]));
|
|
1510
1512
|
}
|
|
1511
1513
|
});
|
|
1512
|
-
const Ha = /* @__PURE__ */ v(Pa, [["__scopeId", "data-v-931bc5aa"]]), Za = { class: "micro-stories__splide" }, Ea = /* @__PURE__ */
|
|
1514
|
+
const Ha = /* @__PURE__ */ v(Pa, [["__scopeId", "data-v-931bc5aa"]]), Za = { class: "micro-stories__splide" }, Ea = /* @__PURE__ */ _({
|
|
1513
1515
|
__name: "micro-stories",
|
|
1514
1516
|
props: {
|
|
1515
1517
|
stories: {
|
|
@@ -1532,20 +1534,20 @@ const Ha = /* @__PURE__ */ v(Pa, [["__scopeId", "data-v-931bc5aa"]]), Za = { cla
|
|
|
1532
1534
|
}
|
|
1533
1535
|
},
|
|
1534
1536
|
setup(e) {
|
|
1535
|
-
return (
|
|
1536
|
-
class:
|
|
1537
|
+
return (l, a) => (i(), r("div", {
|
|
1538
|
+
class: u([
|
|
1537
1539
|
"micro-stories__wrapper",
|
|
1538
1540
|
e.bgColor == "white" ? "micro-stories__wrapper--white" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
|
|
1539
1541
|
])
|
|
1540
1542
|
}, [
|
|
1541
1543
|
t("div", Za, [
|
|
1542
|
-
m(
|
|
1544
|
+
m(l.$slots, "micro-stories-slides")
|
|
1543
1545
|
]),
|
|
1544
|
-
m(
|
|
1546
|
+
m(l.$slots, "micro-stories-controls")
|
|
1545
1547
|
], 2));
|
|
1546
1548
|
}
|
|
1547
1549
|
});
|
|
1548
|
-
const Ra = { class: "product-hero__wrapper" }, Ua = { class: "product-hero__content" }, Wa = { class: "product-hero__headline" }, Fa = { class: "product-hero__video" }, Ga = /* @__PURE__ */
|
|
1550
|
+
const Ra = { class: "product-hero__wrapper" }, Ua = { class: "product-hero__content" }, Wa = { class: "product-hero__headline" }, Fa = { class: "product-hero__video" }, Ga = /* @__PURE__ */ _({
|
|
1549
1551
|
__name: "product-hero",
|
|
1550
1552
|
props: {
|
|
1551
1553
|
headline: {
|
|
@@ -1570,7 +1572,7 @@ const Ra = { class: "product-hero__wrapper" }, Ua = { class: "product-hero__cont
|
|
|
1570
1572
|
}
|
|
1571
1573
|
},
|
|
1572
1574
|
setup(e) {
|
|
1573
|
-
return (
|
|
1575
|
+
return (l, a) => (i(), r("div", Ra, [
|
|
1574
1576
|
t("div", Ua, [
|
|
1575
1577
|
t("div", Wa, [
|
|
1576
1578
|
t("h1", null, d(e.headline), 1)
|
|
@@ -1592,7 +1594,7 @@ const Ra = { class: "product-hero__wrapper" }, Ua = { class: "product-hero__cont
|
|
|
1592
1594
|
]));
|
|
1593
1595
|
}
|
|
1594
1596
|
});
|
|
1595
|
-
const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { class: "promo__content" }, Ka = /* @__PURE__ */
|
|
1597
|
+
const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { class: "promo__content" }, Ka = /* @__PURE__ */ _({
|
|
1596
1598
|
__name: "promo",
|
|
1597
1599
|
props: {
|
|
1598
1600
|
label: {
|
|
@@ -1638,30 +1640,30 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1638
1640
|
}
|
|
1639
1641
|
},
|
|
1640
1642
|
setup(e) {
|
|
1641
|
-
return (
|
|
1642
|
-
class:
|
|
1643
|
+
return (l, a) => (i(), r("div", {
|
|
1644
|
+
class: u([
|
|
1643
1645
|
"promo__wrapper",
|
|
1644
1646
|
e.variant === "dark" ? "promo__wrapper--dark" : e.variant === "light" ? "promo__wrapper--light" : ""
|
|
1645
1647
|
])
|
|
1646
1648
|
}, [
|
|
1647
1649
|
t("div", Ya, [
|
|
1648
|
-
e.mediaType === "image" ? (
|
|
1650
|
+
e.mediaType === "image" ? (i(), r("div", {
|
|
1649
1651
|
key: 0,
|
|
1650
|
-
class:
|
|
1652
|
+
class: u([
|
|
1651
1653
|
"promo__image",
|
|
1652
1654
|
e.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1653
1655
|
])
|
|
1654
1656
|
}, [
|
|
1655
1657
|
k(D, null, {
|
|
1656
1658
|
default: $(() => [
|
|
1657
|
-
m(
|
|
1659
|
+
m(l.$slots, "promo-image", T(C({ src: e.src, width: 1920, alt: e.alt, height: 1080 })))
|
|
1658
1660
|
]),
|
|
1659
1661
|
_: 3
|
|
1660
1662
|
})
|
|
1661
|
-
], 2)) :
|
|
1662
|
-
e.mediaType === "video" ? (
|
|
1663
|
+
], 2)) : h("", !0),
|
|
1664
|
+
e.mediaType === "video" ? (i(), r("div", {
|
|
1663
1665
|
key: 1,
|
|
1664
|
-
class:
|
|
1666
|
+
class: u([
|
|
1665
1667
|
"promo__video",
|
|
1666
1668
|
e.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1667
1669
|
])
|
|
@@ -1677,43 +1679,43 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1677
1679
|
play: !0,
|
|
1678
1680
|
poster: e.fallbackImage
|
|
1679
1681
|
}, null, 8, ["src", "ariaLabel", "poster"])
|
|
1680
|
-
], 2)) :
|
|
1682
|
+
], 2)) : h("", !0),
|
|
1681
1683
|
t("div", {
|
|
1682
|
-
class:
|
|
1684
|
+
class: u([
|
|
1683
1685
|
"promo__text",
|
|
1684
1686
|
e.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1685
1687
|
])
|
|
1686
1688
|
}, [
|
|
1687
|
-
e.label ? (
|
|
1689
|
+
e.label ? (i(), j(F, {
|
|
1688
1690
|
key: 0,
|
|
1689
1691
|
text: e.label,
|
|
1690
1692
|
labelDark: e.variant === "dark"
|
|
1691
|
-
}, null, 8, ["text", "labelDark"])) :
|
|
1693
|
+
}, null, 8, ["text", "labelDark"])) : h("", !0),
|
|
1692
1694
|
t("h3", {
|
|
1693
|
-
class:
|
|
1695
|
+
class: u([
|
|
1694
1696
|
"promo__title",
|
|
1695
1697
|
e.variant === "dark" ? "promo__title--dark" : ""
|
|
1696
1698
|
])
|
|
1697
1699
|
}, d(e.headline), 3),
|
|
1698
|
-
e.linkType === "link" ? (
|
|
1700
|
+
e.linkType === "link" ? (i(), j(A, {
|
|
1699
1701
|
key: 1,
|
|
1700
1702
|
linkType: e.variant === "dark" ? "regular-dark" : (e.variant === "light", "regular-light"),
|
|
1701
1703
|
arrow: ""
|
|
1702
1704
|
}, {
|
|
1703
1705
|
default: $(() => [
|
|
1704
|
-
m(
|
|
1706
|
+
m(l.$slots, "promo-link")
|
|
1705
1707
|
]),
|
|
1706
1708
|
_: 3
|
|
1707
|
-
}, 8, ["linkType"])) :
|
|
1708
|
-
e.linkType === "button" ? (
|
|
1709
|
+
}, 8, ["linkType"])) : h("", !0),
|
|
1710
|
+
e.linkType === "button" ? (i(), j(A, {
|
|
1709
1711
|
key: 2,
|
|
1710
1712
|
linkType: e.variant === "dark" ? "secondary-dark" : (e.variant === "light", "secondary")
|
|
1711
1713
|
}, {
|
|
1712
1714
|
default: $(() => [
|
|
1713
|
-
m(
|
|
1715
|
+
m(l.$slots, "promo-link")
|
|
1714
1716
|
]),
|
|
1715
1717
|
_: 3
|
|
1716
|
-
}, 8, ["linkType"])) :
|
|
1718
|
+
}, 8, ["linkType"])) : h("", !0)
|
|
1717
1719
|
], 2)
|
|
1718
1720
|
])
|
|
1719
1721
|
], 2));
|
|
@@ -1722,7 +1724,7 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1722
1724
|
const Qa = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-d4f4d294"]]), Xa = (e) => (P("data-v-3cc55dbf"), e = e(), H(), e), el = { class: "quote__wrapper" }, tl = { class: "quote__content" }, al = /* @__PURE__ */ Xa(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), ll = { class: "quote__quote" }, il = { class: "quote__quote-text" }, rl = { class: "quote__author" }, ol = {
|
|
1723
1725
|
key: 0,
|
|
1724
1726
|
class: "quote__image"
|
|
1725
|
-
}, nl = { class: "quote__text" }, sl = { class: "quote__author-name" }, dl = { class: "quote__author-title" },
|
|
1727
|
+
}, nl = { class: "quote__text" }, sl = { class: "quote__author-name" }, dl = { class: "quote__author-title" }, ul = /* @__PURE__ */ _({
|
|
1726
1728
|
__name: "quote",
|
|
1727
1729
|
props: {
|
|
1728
1730
|
quote: {
|
|
@@ -1743,16 +1745,16 @@ const Qa = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-d4f4d294"]]), Xa = (e) =
|
|
|
1743
1745
|
}
|
|
1744
1746
|
},
|
|
1745
1747
|
setup(e) {
|
|
1746
|
-
return (
|
|
1748
|
+
return (l, a) => (i(), r("div", el, [
|
|
1747
1749
|
t("div", tl, [
|
|
1748
1750
|
al,
|
|
1749
1751
|
t("div", ll, [
|
|
1750
1752
|
t("p", il, d(e.quote), 1),
|
|
1751
1753
|
t("div", rl, [
|
|
1752
|
-
e.authorImage ? (
|
|
1754
|
+
e.authorImage ? (i(), r("div", ol, [
|
|
1753
1755
|
k(D, null, {
|
|
1754
1756
|
default: $(() => [
|
|
1755
|
-
m(
|
|
1757
|
+
m(l.$slots, "author-image", T(C({
|
|
1756
1758
|
src: e.authorImage + "/m/100x100",
|
|
1757
1759
|
width: 60,
|
|
1758
1760
|
height: 60
|
|
@@ -1760,7 +1762,7 @@ const Qa = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-d4f4d294"]]), Xa = (e) =
|
|
|
1760
1762
|
]),
|
|
1761
1763
|
_: 3
|
|
1762
1764
|
})
|
|
1763
|
-
])) :
|
|
1765
|
+
])) : h("", !0),
|
|
1764
1766
|
t("div", nl, [
|
|
1765
1767
|
t("p", sl, d(e.author), 1),
|
|
1766
1768
|
t("p", dl, d(e.authorTitle), 1)
|
|
@@ -1771,13 +1773,13 @@ const Qa = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-d4f4d294"]]), Xa = (e) =
|
|
|
1771
1773
|
]));
|
|
1772
1774
|
}
|
|
1773
1775
|
});
|
|
1774
|
-
const
|
|
1776
|
+
const cl = /* @__PURE__ */ v(ul, [["__scopeId", "data-v-3cc55dbf"]]), ml = { class: "rich-text__wrapper" }, _l = {
|
|
1775
1777
|
key: 0,
|
|
1776
1778
|
class: "rich-text__links"
|
|
1777
|
-
},
|
|
1779
|
+
}, vl = {
|
|
1778
1780
|
key: 0,
|
|
1779
1781
|
class: "rich-text__bullet-list"
|
|
1780
|
-
},
|
|
1782
|
+
}, hl = /* @__PURE__ */ _({
|
|
1781
1783
|
__name: "rich-text",
|
|
1782
1784
|
props: {
|
|
1783
1785
|
headline: {
|
|
@@ -1812,68 +1814,68 @@ const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-3cc55dbf"]]), ml = { cla
|
|
|
1812
1814
|
}
|
|
1813
1815
|
},
|
|
1814
1816
|
setup(e) {
|
|
1815
|
-
return (
|
|
1816
|
-
class:
|
|
1817
|
+
return (l, a) => (i(), r("div", {
|
|
1818
|
+
class: u([
|
|
1817
1819
|
"rich-text",
|
|
1818
1820
|
e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1819
1821
|
])
|
|
1820
1822
|
}, [
|
|
1821
1823
|
t("div", ml, [
|
|
1822
|
-
e.label ? (
|
|
1824
|
+
e.label ? (i(), j(F, {
|
|
1823
1825
|
key: 0,
|
|
1824
1826
|
text: e.label,
|
|
1825
1827
|
labelDark: !1
|
|
1826
|
-
}, null, 8, ["text"])) :
|
|
1827
|
-
e.headline ? (
|
|
1828
|
+
}, null, 8, ["text"])) : h("", !0),
|
|
1829
|
+
e.headline ? (i(), r("h2", {
|
|
1828
1830
|
key: 1,
|
|
1829
|
-
class:
|
|
1831
|
+
class: u([
|
|
1830
1832
|
"rich-text__headline",
|
|
1831
1833
|
e.leftAligned || e.bulletList || e.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
1832
1834
|
])
|
|
1833
|
-
}, d(e.headline), 3)) :
|
|
1835
|
+
}, d(e.headline), 3)) : h("", !0),
|
|
1834
1836
|
t("div", {
|
|
1835
|
-
class:
|
|
1837
|
+
class: u([
|
|
1836
1838
|
"rich-text__content",
|
|
1837
1839
|
e.leftAligned || e.bulletList || e.image ? "rich-text__content--left-aligned" : "rich-text__content--centered"
|
|
1838
1840
|
])
|
|
1839
1841
|
}, [
|
|
1840
1842
|
t("div", {
|
|
1841
|
-
class:
|
|
1843
|
+
class: u([
|
|
1842
1844
|
"rich-text__body",
|
|
1843
1845
|
e.bulletList || e.image ? "rich-text__body--content-right" : ""
|
|
1844
1846
|
])
|
|
1845
1847
|
}, [
|
|
1846
|
-
m(
|
|
1847
|
-
e.links ? (
|
|
1848
|
-
m(
|
|
1849
|
-
])) :
|
|
1848
|
+
m(l.$slots, "rich-text-content"),
|
|
1849
|
+
e.links ? (i(), r("div", _l, [
|
|
1850
|
+
m(l.$slots, "rich-text-links")
|
|
1851
|
+
])) : h("", !0)
|
|
1850
1852
|
], 2),
|
|
1851
|
-
e.bulletList ? (
|
|
1852
|
-
m(
|
|
1853
|
-
])) :
|
|
1854
|
-
e.image ? (
|
|
1853
|
+
e.bulletList ? (i(), r("div", vl, [
|
|
1854
|
+
m(l.$slots, "rich-text-bullet-list")
|
|
1855
|
+
])) : h("", !0),
|
|
1856
|
+
e.image ? (i(), r("div", {
|
|
1855
1857
|
key: 1,
|
|
1856
|
-
class:
|
|
1858
|
+
class: u([
|
|
1857
1859
|
"rich-text__image",
|
|
1858
1860
|
e.imageClip ? "rich-text__image--clip" : ""
|
|
1859
1861
|
])
|
|
1860
1862
|
}, [
|
|
1861
1863
|
k(D, null, {
|
|
1862
1864
|
default: $(() => [
|
|
1863
|
-
m(
|
|
1865
|
+
m(l.$slots, "rich-text-image", T(C({ width: 865, height: 307 })))
|
|
1864
1866
|
]),
|
|
1865
1867
|
_: 3
|
|
1866
1868
|
})
|
|
1867
|
-
], 2)) :
|
|
1869
|
+
], 2)) : h("", !0)
|
|
1868
1870
|
], 2)
|
|
1869
1871
|
])
|
|
1870
1872
|
], 2));
|
|
1871
1873
|
}
|
|
1872
1874
|
});
|
|
1873
|
-
const gl = /* @__PURE__ */ v(
|
|
1875
|
+
const gl = /* @__PURE__ */ v(hl, [["__scopeId", "data-v-af32c667"]]), fl = { class: "triple-card-display__wrapper" }, yl = {
|
|
1874
1876
|
key: 0,
|
|
1875
1877
|
class: "triple-card__content"
|
|
1876
|
-
}, bl = { key: 0 }, pl = { key: 1 }, kl = { class: "triple-card__cards" }, $l = /* @__PURE__ */
|
|
1878
|
+
}, bl = { key: 0 }, pl = { key: 1 }, kl = { class: "triple-card__cards" }, $l = /* @__PURE__ */ _({
|
|
1877
1879
|
__name: "triple-card-display",
|
|
1878
1880
|
props: {
|
|
1879
1881
|
headline: {
|
|
@@ -1890,31 +1892,31 @@ const gl = /* @__PURE__ */ v(vl, [["__scopeId", "data-v-af32c667"]]), fl = { cla
|
|
|
1890
1892
|
}
|
|
1891
1893
|
},
|
|
1892
1894
|
setup(e) {
|
|
1893
|
-
return (
|
|
1894
|
-
class:
|
|
1895
|
+
return (l, a) => (i(), r("div", {
|
|
1896
|
+
class: u([
|
|
1895
1897
|
"triple-card-display",
|
|
1896
1898
|
e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
|
|
1897
1899
|
])
|
|
1898
1900
|
}, [
|
|
1899
1901
|
t("div", fl, [
|
|
1900
|
-
e.headline || e.paragraph ? (
|
|
1901
|
-
e.headline ? (
|
|
1902
|
-
e.paragraph ? (
|
|
1903
|
-
])) :
|
|
1902
|
+
e.headline || e.paragraph ? (i(), r("div", yl, [
|
|
1903
|
+
e.headline ? (i(), r("h2", bl, d(e.headline), 1)) : h("", !0),
|
|
1904
|
+
e.paragraph ? (i(), r("p", pl, d(e.paragraph), 1)) : h("", !0)
|
|
1905
|
+
])) : h("", !0),
|
|
1904
1906
|
t("div", kl, [
|
|
1905
|
-
m(
|
|
1907
|
+
m(l.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
1906
1908
|
])
|
|
1907
1909
|
])
|
|
1908
1910
|
], 2));
|
|
1909
1911
|
}
|
|
1910
1912
|
});
|
|
1911
|
-
const wl = /* @__PURE__ */ v($l, [["__scopeId", "data-v-1842eb9a"]]),
|
|
1913
|
+
const wl = /* @__PURE__ */ v($l, [["__scopeId", "data-v-1842eb9a"]]), xl = { class: "vimeo" }, Sl = { class: "vimeo__wrapper" }, Il = {
|
|
1912
1914
|
key: 0,
|
|
1913
1915
|
class: "vimeo__headline"
|
|
1914
1916
|
}, ql = {
|
|
1915
1917
|
key: 1,
|
|
1916
1918
|
class: "vimeo__description"
|
|
1917
|
-
}, Ml = /* @__PURE__ */
|
|
1919
|
+
}, Ml = /* @__PURE__ */ _({
|
|
1918
1920
|
__name: "vimeo",
|
|
1919
1921
|
props: {
|
|
1920
1922
|
headline: {
|
|
@@ -1925,16 +1927,16 @@ const wl = /* @__PURE__ */ v($l, [["__scopeId", "data-v-1842eb9a"]]), Sl = { cla
|
|
|
1925
1927
|
}
|
|
1926
1928
|
},
|
|
1927
1929
|
setup(e) {
|
|
1928
|
-
return (
|
|
1929
|
-
t("div",
|
|
1930
|
-
e.headline ? (
|
|
1931
|
-
m(
|
|
1932
|
-
e.description ? (
|
|
1930
|
+
return (l, a) => (i(), r("div", xl, [
|
|
1931
|
+
t("div", Sl, [
|
|
1932
|
+
e.headline ? (i(), r("h2", Il, d(e.headline), 1)) : h("", !0),
|
|
1933
|
+
m(l.$slots, "vimeo-content", {}, void 0, !0),
|
|
1934
|
+
e.description ? (i(), r("p", ql, d(e.description), 1)) : h("", !0)
|
|
1933
1935
|
])
|
|
1934
1936
|
]));
|
|
1935
1937
|
}
|
|
1936
1938
|
});
|
|
1937
|
-
const Dl = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-2fc0faf9"]]), Bl = { class: "filter__wrapper" }, Al = { class: "filter__content" }, Ll = { class: "filter__dropdowns" }, Tl = { class: "filter__chips" }, Cl = /* @__PURE__ */
|
|
1939
|
+
const Dl = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-2fc0faf9"]]), Bl = { class: "filter__wrapper" }, Al = { class: "filter__content" }, Ll = { class: "filter__dropdowns" }, Tl = { class: "filter__chips" }, Cl = /* @__PURE__ */ _({
|
|
1938
1940
|
__name: "filter",
|
|
1939
1941
|
props: {
|
|
1940
1942
|
hasChips: {
|
|
@@ -1944,18 +1946,18 @@ const Dl = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-2fc0faf9"]]), Bl = { cla
|
|
|
1944
1946
|
},
|
|
1945
1947
|
emits: ["clearFilters"],
|
|
1946
1948
|
setup(e) {
|
|
1947
|
-
return (
|
|
1949
|
+
return (l, a) => (i(), r("div", Bl, [
|
|
1948
1950
|
t("div", Al, [
|
|
1949
1951
|
t("div", Ll, [
|
|
1950
|
-
m(
|
|
1952
|
+
m(l.$slots, "filter-dropdowns", {}, void 0, !0)
|
|
1951
1953
|
]),
|
|
1952
1954
|
t("div", Tl, [
|
|
1953
|
-
m(
|
|
1954
|
-
e.hasChips ? (
|
|
1955
|
+
m(l.$slots, "filter-chips", {}, void 0, !0),
|
|
1956
|
+
e.hasChips ? (i(), r("button", {
|
|
1955
1957
|
key: 0,
|
|
1956
1958
|
class: "filter__clear",
|
|
1957
|
-
onClick:
|
|
1958
|
-
}, " Remove all filters ")) :
|
|
1959
|
+
onClick: a[0] || (a[0] = (o) => l.$emit("clearFilters"))
|
|
1960
|
+
}, " Remove all filters ")) : h("", !0)
|
|
1959
1961
|
])
|
|
1960
1962
|
])
|
|
1961
1963
|
]));
|
|
@@ -1964,7 +1966,7 @@ const Dl = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-2fc0faf9"]]), Bl = { cla
|
|
|
1964
1966
|
const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-502dce5b"]]), z = (e) => (P("data-v-85ce0923"), e = e(), H(), e), Nl = { class: "footer__wrapper" }, zl = { class: "footer__content" }, Vl = { class: "footer__sections" }, Ol = { class: "section" }, Pl = { class: "section__title" }, Hl = { class: "section__list" }, Zl = { class: "section" }, El = /* @__PURE__ */ z(() => /* @__PURE__ */ t("h5", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), Rl = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), Ul = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), Wl = /* @__PURE__ */ z(() => /* @__PURE__ */ t("br", null, null, -1)), Fl = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), Gl = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), Jl = { class: "footer__bottom" }, Yl = { class: "footer__copyright-policy" }, Kl = { class: "copyright" }, Ql = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "" }, [
|
|
1965
1967
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
1966
1968
|
/* @__PURE__ */ O("Change region")
|
|
1967
|
-
], -1)), Xl = { class: "footer__social" }, ei = ["href", "aria-label"], ti = /* @__PURE__ */
|
|
1969
|
+
], -1)), Xl = { class: "footer__social" }, ei = ["href", "aria-label"], ti = /* @__PURE__ */ _({
|
|
1968
1970
|
__name: "footer",
|
|
1969
1971
|
props: {
|
|
1970
1972
|
footerSections: {
|
|
@@ -1981,26 +1983,26 @@ const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-502dce5b"]]), z = (e) =>
|
|
|
1981
1983
|
type: Array,
|
|
1982
1984
|
default: [],
|
|
1983
1985
|
validator: (e) => {
|
|
1984
|
-
const
|
|
1986
|
+
const l = [
|
|
1985
1987
|
"linkedin",
|
|
1986
1988
|
"facebook",
|
|
1987
1989
|
"instagram",
|
|
1988
1990
|
"twitter",
|
|
1989
1991
|
"youtube"
|
|
1990
1992
|
];
|
|
1991
|
-
return e.every((
|
|
1993
|
+
return e.every((a) => l.includes(a.title));
|
|
1992
1994
|
}
|
|
1993
1995
|
}
|
|
1994
1996
|
},
|
|
1995
1997
|
setup(e) {
|
|
1996
|
-
return (
|
|
1998
|
+
return (l, a) => (i(), r("div", Nl, [
|
|
1997
1999
|
t("footer", zl, [
|
|
1998
2000
|
t("div", Vl, [
|
|
1999
|
-
(
|
|
2001
|
+
(i(!0), r(M, null, L(e.footerSections, (o) => (i(), r("div", Ol, [
|
|
2000
2002
|
t("span", Pl, d(o.title), 1),
|
|
2001
2003
|
t("nav", null, [
|
|
2002
2004
|
t("ul", Hl, [
|
|
2003
|
-
m(
|
|
2005
|
+
m(l.$slots, "section-links", {
|
|
2004
2006
|
links: o.links
|
|
2005
2007
|
})
|
|
2006
2008
|
])
|
|
@@ -2044,11 +2046,11 @@ const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-502dce5b"]]), z = (e) =>
|
|
|
2044
2046
|
]),
|
|
2045
2047
|
_: 1
|
|
2046
2048
|
}),
|
|
2047
|
-
m(
|
|
2048
|
-
m(
|
|
2049
|
+
m(l.$slots, "footer-privacy-link"),
|
|
2050
|
+
m(l.$slots, "footer-cookie-link")
|
|
2049
2051
|
]),
|
|
2050
2052
|
t("div", Xl, [
|
|
2051
|
-
(
|
|
2053
|
+
(i(!0), r(M, null, L(e.socialMedia, (o) => (i(), j(A, {
|
|
2052
2054
|
underline: "false",
|
|
2053
2055
|
linkType: "regular"
|
|
2054
2056
|
}, {
|
|
@@ -2060,7 +2062,7 @@ const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-502dce5b"]]), z = (e) =>
|
|
|
2060
2062
|
t("i", {
|
|
2061
2063
|
width: "19",
|
|
2062
2064
|
height: "14",
|
|
2063
|
-
class:
|
|
2065
|
+
class: u(["footer__social--icon", [
|
|
2064
2066
|
o.title === "linkedin" ? "bg-linkedin" : o.title === "facebook" ? "bg-facebook" : o.title === "instagram" ? "bg-instagram" : o.title === "twitter" ? "bg-twitter" : o.title === "youtube" ? "bg-youtube" : ""
|
|
2065
2067
|
]])
|
|
2066
2068
|
}, null, 2)
|
|
@@ -2074,7 +2076,7 @@ const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-502dce5b"]]), z = (e) =>
|
|
|
2074
2076
|
]));
|
|
2075
2077
|
}
|
|
2076
2078
|
});
|
|
2077
|
-
const ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-85ce0923"]]), de = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgOSA2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNy44MjUxOSAwLjYxMzI4MUM3LjU2MjY5IDAuNjEzMjgxIDcuMzg3NjkgMC43MDA3ODIgNy4yMTI2OSAwLjg3NTc4Mkw0LjU4NzY5IDMuNTAwNzhMMS45NjI2OSAwLjg3NTc4MkMxLjYxMjY5IDAuNTI1NzgyIDEuMDAwMTkgMC41MjU3ODIgMC42NTAxOTUgMC44NzU3ODJDMC4zMDAxOTUgMS4yMjU3OCAwLjMwMDE5NSAxLjgzODI4IDAuNjUwMTk1IDIuMTg4MjhMMy45NzUxOSA1LjUxMzI4QzQuMzI1MTkgNS44NjMyOCA0LjkzNzY5IDUuODYzMjggNS4yODc2OSA1LjUxMzI4TDguNjEyNjkgMi4xODgyOEM4Ljk2MjY4IDEuODM4MjggOC45NjI2OCAxLjIyNTc4IDguNjEyNjkgMC44NzU3ODJDOC4yNjI2OSAwLjcwMDc4MiA4LjAwMDE5IDAuNjEzMjgxIDcuODI1MTkgMC42MTMyODFaIiBmaWxsPSIjMEMwOTMxIi8+Cjwvc3ZnPgo=",
|
|
2079
|
+
const ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-85ce0923"]]), de = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgOSA2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNy44MjUxOSAwLjYxMzI4MUM3LjU2MjY5IDAuNjEzMjgxIDcuMzg3NjkgMC43MDA3ODIgNy4yMTI2OSAwLjg3NTc4Mkw0LjU4NzY5IDMuNTAwNzhMMS45NjI2OSAwLjg3NTc4MkMxLjYxMjY5IDAuNTI1NzgyIDEuMDAwMTkgMC41MjU3ODIgMC42NTAxOTUgMC44NzU3ODJDMC4zMDAxOTUgMS4yMjU3OCAwLjMwMDE5NSAxLjgzODI4IDAuNjUwMTk1IDIuMTg4MjhMMy45NzUxOSA1LjUxMzI4QzQuMzI1MTkgNS44NjMyOCA0LjkzNzY5IDUuODYzMjggNS4yODc2OSA1LjUxMzI4TDguNjEyNjkgMi4xODgyOEM4Ljk2MjY4IDEuODM4MjggOC45NjI2OCAxLjIyNTc4IDguNjEyNjkgMC44NzU3ODJDOC4yNjI2OSAwLjcwMDc4MiA4LjAwMDE5IDAuNjEzMjgxIDcuODI1MTkgMC42MTMyODFaIiBmaWxsPSIjMEMwOTMxIi8+Cjwvc3ZnPgo=", ee = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDIzIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFIMjIiIHN0cm9rZT0iIzBDMDkzMSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==", te = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMyIgdmlld0JveD0iMCAwIDIzIDMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xLjA3MDMxIDEuMjI2NTZMMjEuMDcwMyAxLjIyNjU2IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K", ae = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iOC41IiBjeT0iOC41IiByPSI3LjUiIHN0cm9rZT0iIzBDMDkzMSIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik0xNCAxNEwyMCAyMCIgc3Ryb2tlPSIjMEMwOTMxIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K", le = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iOC41IiBjeT0iOC41IiByPSI3LjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIvPgo8cGF0aCBkPSJNMTQgMTRMMjAgMjAiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=", li = { class: "header__wrapper" }, ii = { class: "nav-wrapper" }, ri = { class: "mir-link-logo" }, oi = { class: "main-nav-items" }, ni = {
|
|
2078
2080
|
id: "menu-dropdown",
|
|
2079
2081
|
ref: "dropdownDiv"
|
|
2080
2082
|
}, si = {
|
|
@@ -2086,7 +2088,7 @@ const ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-85ce0923"]]), de = "data
|
|
|
2086
2088
|
src: de,
|
|
2087
2089
|
alt: "dropdownarrow",
|
|
2088
2090
|
style: { transform: "rotate(180deg)" }
|
|
2089
|
-
},
|
|
2091
|
+
}, ui = { class: "dropdown-content" }, ci = { class: "nav-search-wrapper" }, mi = ["src"], _i = { class: "mobile-logo-search-burger-wrapper" }, vi = { class: "mobile-mir-link-logo" }, hi = { class: "mobile-search-wrapper" }, gi = ["src"], fi = ["onClick"], yi = ["src"], bi = ["src"], pi = { class: "mobile-menu-content-wrapper" }, ki = { class: "mobile-dropdown-content" }, $i = /* @__PURE__ */ _({
|
|
2090
2092
|
__name: "header",
|
|
2091
2093
|
props: {
|
|
2092
2094
|
burgerState: {
|
|
@@ -2099,30 +2101,30 @@ const ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-85ce0923"]]), de = "data
|
|
|
2099
2101
|
}
|
|
2100
2102
|
},
|
|
2101
2103
|
emits: ["update:burgerState", "update:showDropDown"],
|
|
2102
|
-
setup(e, { emit:
|
|
2103
|
-
const
|
|
2104
|
-
|
|
2105
|
-
let o = null, n =
|
|
2106
|
-
|
|
2107
|
-
() =>
|
|
2104
|
+
setup(e, { emit: l }) {
|
|
2105
|
+
const a = e;
|
|
2106
|
+
x("");
|
|
2107
|
+
let o = null, n = x(a.burgerState), c = x(a.showDropDown);
|
|
2108
|
+
X(
|
|
2109
|
+
() => a.burgerState,
|
|
2108
2110
|
(f) => n.value = f
|
|
2109
|
-
),
|
|
2110
|
-
() =>
|
|
2111
|
-
(f) =>
|
|
2111
|
+
), X(
|
|
2112
|
+
() => a.showDropDown,
|
|
2113
|
+
(f) => c.value = f
|
|
2112
2114
|
), we(() => {
|
|
2113
2115
|
o = (f) => {
|
|
2114
|
-
f.target.closest("#menu-dropdown") || (
|
|
2116
|
+
f.target.closest("#menu-dropdown") || (c.value = !1);
|
|
2115
2117
|
}, window.addEventListener("click", o);
|
|
2116
|
-
}),
|
|
2118
|
+
}), xe(() => {
|
|
2117
2119
|
o !== null && window.removeEventListener("click", o);
|
|
2118
2120
|
});
|
|
2119
|
-
function
|
|
2120
|
-
|
|
2121
|
+
function S() {
|
|
2122
|
+
c.value = !c.value, l("update:showDropDown", c.value);
|
|
2121
2123
|
}
|
|
2122
2124
|
function I() {
|
|
2123
|
-
n.value = !n.value,
|
|
2125
|
+
n.value = !n.value, l("update:burgerState", n.value);
|
|
2124
2126
|
}
|
|
2125
|
-
return (f, b) => (
|
|
2127
|
+
return (f, b) => (i(), r("div", li, [
|
|
2126
2128
|
t("nav", null, [
|
|
2127
2129
|
t("div", ii, [
|
|
2128
2130
|
t("div", ri, [
|
|
@@ -2133,53 +2135,53 @@ const ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-85ce0923"]]), de = "data
|
|
|
2133
2135
|
]),
|
|
2134
2136
|
t("div", ni, [
|
|
2135
2137
|
t("button", {
|
|
2136
|
-
onClick:
|
|
2138
|
+
onClick: S,
|
|
2137
2139
|
class: "nav-dropdown-btn"
|
|
2138
2140
|
}, [
|
|
2139
2141
|
m(f.$slots, "dropdown-title", {}, void 0, !0),
|
|
2140
|
-
p(
|
|
2142
|
+
p(c) == !1 ? (i(), r("img", si)) : (i(), r("img", di))
|
|
2141
2143
|
]),
|
|
2142
|
-
U(t("div",
|
|
2144
|
+
U(t("div", ui, [
|
|
2143
2145
|
m(f.$slots, "dropdown-links", {}, void 0, !0)
|
|
2144
2146
|
], 512), [
|
|
2145
|
-
[
|
|
2147
|
+
[G, p(c)]
|
|
2146
2148
|
])
|
|
2147
2149
|
], 512),
|
|
2148
|
-
t("div",
|
|
2150
|
+
t("div", ci, [
|
|
2149
2151
|
t("button", null, [
|
|
2150
2152
|
t("img", {
|
|
2151
|
-
src: p(n) == !0 ? p(
|
|
2153
|
+
src: p(n) == !0 ? p(le) : p(ae),
|
|
2152
2154
|
alt: "search icon"
|
|
2153
2155
|
}, null, 8, mi)
|
|
2154
2156
|
])
|
|
2155
2157
|
])
|
|
2156
2158
|
]),
|
|
2157
2159
|
t("div", {
|
|
2158
|
-
class:
|
|
2160
|
+
class: u(["mobile-nav-wrapper", p(n) == !0 ? "mirsaic-mobile-bg" : ""])
|
|
2159
2161
|
}, [
|
|
2160
|
-
t("div",
|
|
2161
|
-
t("div",
|
|
2162
|
+
t("div", _i, [
|
|
2163
|
+
t("div", vi, [
|
|
2162
2164
|
m(f.$slots, "link-logo", {}, void 0, !0)
|
|
2163
2165
|
]),
|
|
2164
|
-
t("div",
|
|
2166
|
+
t("div", hi, [
|
|
2165
2167
|
t("button", null, [
|
|
2166
2168
|
t("img", {
|
|
2167
|
-
src: p(n) == !0 ? p(
|
|
2169
|
+
src: p(n) == !0 ? p(le) : p(ae),
|
|
2168
2170
|
alt: "search icon"
|
|
2169
2171
|
}, null, 8, gi)
|
|
2170
2172
|
])
|
|
2171
2173
|
]),
|
|
2172
2174
|
t("button", {
|
|
2173
|
-
onClick:
|
|
2175
|
+
onClick: re(I, ["prevent"]),
|
|
2174
2176
|
class: "mobile-burger-wrapper"
|
|
2175
2177
|
}, [
|
|
2176
2178
|
t("img", {
|
|
2177
|
-
class:
|
|
2178
|
-
src: p(n) == !0 ? p(
|
|
2179
|
+
class: u(["burger-line", p(n) == !0 ? "burger-top-line-open" : ""]),
|
|
2180
|
+
src: p(n) == !0 ? p(te) : p(ee)
|
|
2179
2181
|
}, null, 10, yi),
|
|
2180
2182
|
t("img", {
|
|
2181
|
-
class:
|
|
2182
|
-
src: p(n) == !0 ? p(
|
|
2183
|
+
class: u(["burger-line", p(n) == !0 ? "burger-bottom-line-open" : ""]),
|
|
2184
|
+
src: p(n) == !0 ? p(te) : p(ee)
|
|
2183
2185
|
}, null, 10, bi)
|
|
2184
2186
|
], 8, fi)
|
|
2185
2187
|
]),
|
|
@@ -2192,25 +2194,58 @@ const ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-85ce0923"]]), de = "data
|
|
|
2192
2194
|
m(f.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2193
2195
|
])
|
|
2194
2196
|
], 512), [
|
|
2195
|
-
[
|
|
2197
|
+
[G, p(n)]
|
|
2196
2198
|
])
|
|
2197
2199
|
], 2)
|
|
2198
2200
|
])
|
|
2199
2201
|
]));
|
|
2200
2202
|
}
|
|
2201
2203
|
});
|
|
2202
|
-
const wi = /* @__PURE__ */ v($i, [["__scopeId", "data-v-8ff68823"]]), xi = {
|
|
2204
|
+
const wi = /* @__PURE__ */ v($i, [["__scopeId", "data-v-8ff68823"]]), xi = { class: "pagination__wrapper" }, Si = { class: "pagination__content" }, Ii = /* @__PURE__ */ _({
|
|
2205
|
+
__name: "pagination",
|
|
2206
|
+
props: {
|
|
2207
|
+
isPreviousDisabled: {
|
|
2208
|
+
type: Boolean,
|
|
2209
|
+
required: !0
|
|
2210
|
+
},
|
|
2211
|
+
isNextDisabled: {
|
|
2212
|
+
type: Boolean,
|
|
2213
|
+
required: !0
|
|
2214
|
+
}
|
|
2215
|
+
},
|
|
2216
|
+
emits: ["previous", "next"],
|
|
2217
|
+
setup(e) {
|
|
2218
|
+
return (l, a) => (i(), r("div", xi, [
|
|
2219
|
+
t("div", Si, [
|
|
2220
|
+
k(W, {
|
|
2221
|
+
onClick: a[0] || (a[0] = (o) => l.$emit("previous")),
|
|
2222
|
+
disabled: e.isPreviousDisabled,
|
|
2223
|
+
variant: "previous",
|
|
2224
|
+
ariaLabel: "previous"
|
|
2225
|
+
}, null, 8, ["disabled"]),
|
|
2226
|
+
m(l.$slots, "pagination-numbers"),
|
|
2227
|
+
k(W, {
|
|
2228
|
+
onClick: a[1] || (a[1] = (o) => l.$emit("next")),
|
|
2229
|
+
disabled: e.isNextDisabled,
|
|
2230
|
+
variant: "next",
|
|
2231
|
+
ariaLabel: "next"
|
|
2232
|
+
}, null, 8, ["disabled"])
|
|
2233
|
+
])
|
|
2234
|
+
]));
|
|
2235
|
+
}
|
|
2236
|
+
});
|
|
2237
|
+
const qi = /* @__PURE__ */ v(Ii, [["__scopeId", "data-v-161faef3"]]), Di = {
|
|
2203
2238
|
install: (e) => {
|
|
2204
|
-
e.component("AtomButton",
|
|
2239
|
+
e.component("AtomButton", W), e.component("AtomCheckbox", Le), e.component("AtomChip", ze), e.component("AtomDropdown", Ue), e.component("AtomImage", D), e.component("AtomLabel", F), e.component("AtomLink", A), e.component("AtomRadioButton", lt), e.component("AtomSelect", dt), e.component("AtomSlider", bt), e.component("AtomTextarea", qt), e.component("AtomTextField", Vt), e.component("AtomVideo", E), e.component("MoleculeBulletList", Ft), e.component("MoleculeCard", Kt), e.component("MoleculeEventCard", ra), e.component("MoleculeModal", se), e.component("BlockFacts", ha), e.component("BlockFeatures", xa), e.component("BlockHeadline", Ha), e.component("BlockImage", Ba), e.component("BlockImageGallery", za), e.component("BlockMicroStories", Ea), e.component("BlockProductHero", Ja), e.component("BlockPromo", Qa), e.component("BlockQuote", cl), e.component("BlockRichText", gl), e.component("BlockTripleCardDisplay", wl), e.component("BlockVimeo", Dl), e.component("OrganismFilter", jl), e.component("OrganismFooter", ai), e.component("OrganismHeader", wi), e.component("OrganismPagination", qi);
|
|
2205
2240
|
}
|
|
2206
2241
|
};
|
|
2207
2242
|
export {
|
|
2208
|
-
|
|
2243
|
+
W as AtomButton,
|
|
2209
2244
|
Le as AtomCheckbox,
|
|
2210
2245
|
ze as AtomChip,
|
|
2211
2246
|
Ue as AtomDropdown,
|
|
2212
2247
|
D as AtomImage,
|
|
2213
|
-
|
|
2248
|
+
F as AtomLabel,
|
|
2214
2249
|
A as AtomLink,
|
|
2215
2250
|
lt as AtomRadioButton,
|
|
2216
2251
|
dt as AtomSelect,
|
|
@@ -2218,15 +2253,15 @@ export {
|
|
|
2218
2253
|
Vt as AtomTextField,
|
|
2219
2254
|
qt as AtomTextarea,
|
|
2220
2255
|
E as AtomVideo,
|
|
2221
|
-
|
|
2222
|
-
|
|
2256
|
+
ha as BlockFacts,
|
|
2257
|
+
xa as BlockFeatures,
|
|
2223
2258
|
Ha as BlockHeadline,
|
|
2224
2259
|
Ba as BlockImage,
|
|
2225
2260
|
za as BlockImageGallery,
|
|
2226
2261
|
Ea as BlockMicroStories,
|
|
2227
2262
|
Ja as BlockProductHero,
|
|
2228
2263
|
Qa as BlockPromo,
|
|
2229
|
-
|
|
2264
|
+
cl as BlockQuote,
|
|
2230
2265
|
gl as BlockRichText,
|
|
2231
2266
|
wl as BlockTripleCardDisplay,
|
|
2232
2267
|
Dl as BlockVimeo,
|
|
@@ -2237,5 +2272,6 @@ export {
|
|
|
2237
2272
|
jl as OrganismFilter,
|
|
2238
2273
|
ai as OrganismFooter,
|
|
2239
2274
|
wi as OrganismHeader,
|
|
2240
|
-
|
|
2275
|
+
qi as OrganismPagination,
|
|
2276
|
+
Di as default
|
|
2241
2277
|
};
|