@mirweb/mir-web-components 0.13.4 → 0.13.6
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as m, openBlock as
|
|
1
|
+
import { defineComponent as m, openBlock as l, createElementBlock as r, normalizeClass as c, toDisplayString as s, createElementVNode as t, renderSlot as u, pushScopeId as z, popScopeId as V, computed as N, createTextVNode as H, ref as S, withDirectives as U, Fragment as q, renderList as D, vShow as G, normalizeProps as T, guardReactiveProps as j, mergeProps as ie, createVNode as k, Transition as ke, withCtx as $, withModifiers as re, createCommentVNode as g, watchEffect as ne, withKeys as $e, createBlock as A, normalizeStyle as se, isRef as Q, unref as p, watch as X, onMounted as we, onUnmounted as Se } from "vue";
|
|
2
2
|
const xe = ["aria-label"], Ie = /* @__PURE__ */ m({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -24,17 +24,17 @@ const xe = ["aria-label"], Ie = /* @__PURE__ */ m({
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
setup(e) {
|
|
27
|
-
return (
|
|
27
|
+
return (i, a) => (l(), r("button", {
|
|
28
28
|
class: c(["button", "button--" + e.variant]),
|
|
29
29
|
"aria-label": e.ariaLabel
|
|
30
30
|
}, s(e.variant == "close" ? "" : e.buttonText), 11, xe));
|
|
31
31
|
}
|
|
32
32
|
});
|
|
33
|
-
const h = (e,
|
|
34
|
-
const
|
|
35
|
-
for (const [n, o] of
|
|
36
|
-
|
|
37
|
-
return
|
|
33
|
+
const h = (e, i) => {
|
|
34
|
+
const a = e.__vccOpts || e;
|
|
35
|
+
for (const [n, o] of i)
|
|
36
|
+
a[n] = o;
|
|
37
|
+
return a;
|
|
38
38
|
}, W = /* @__PURE__ */ h(Ie, [["__scopeId", "data-v-f195a839"]]), qe = (e) => (z("data-v-f62bd17f"), e = e(), V(), e), Me = ["name", "value", "disabled", "required", "id"], De = ["for"], Be = /* @__PURE__ */ qe(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Le = /* @__PURE__ */ m({
|
|
39
39
|
__name: "checkbox",
|
|
40
40
|
props: {
|
|
@@ -61,12 +61,12 @@ const h = (e, a) => {
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
emits: ["input"],
|
|
64
|
-
setup(e, { emit:
|
|
65
|
-
const
|
|
64
|
+
setup(e, { emit: i }) {
|
|
65
|
+
const a = (n) => {
|
|
66
66
|
const o = n.target;
|
|
67
|
-
|
|
67
|
+
i("input", o.checked);
|
|
68
68
|
};
|
|
69
|
-
return (n, o) => (
|
|
69
|
+
return (n, o) => (l(), r("div", {
|
|
70
70
|
class: c(["checkbox__wrapper", e.disabled ? "disabled" : ""])
|
|
71
71
|
}, [
|
|
72
72
|
t("input", {
|
|
@@ -77,7 +77,7 @@ const h = (e, a) => {
|
|
|
77
77
|
required: e.required,
|
|
78
78
|
id: e.id,
|
|
79
79
|
class: "checkbox__checkbox",
|
|
80
|
-
onChange:
|
|
80
|
+
onChange: a
|
|
81
81
|
}, null, 40, Me),
|
|
82
82
|
t("label", {
|
|
83
83
|
for: e.id,
|
|
@@ -102,9 +102,9 @@ const Ae = /* @__PURE__ */ h(Le, [["__scopeId", "data-v-f62bd17f"]]), Ce = "data
|
|
|
102
102
|
}
|
|
103
103
|
},
|
|
104
104
|
emits: ["remove-chip"],
|
|
105
|
-
setup(e, { emit:
|
|
106
|
-
const
|
|
107
|
-
return (o, _) => (
|
|
105
|
+
setup(e, { emit: i }) {
|
|
106
|
+
const a = e, n = N(() => `Chip: ${a.text}`);
|
|
107
|
+
return (o, _) => (l(), r("div", {
|
|
108
108
|
class: "chip__wrapper",
|
|
109
109
|
onClick: _[0] || (_[0] = (x) => o.$emit("remove-chip"))
|
|
110
110
|
}, [
|
|
@@ -134,7 +134,7 @@ const Ve = /* @__PURE__ */ h(ze, [["__scopeId", "data-v-e7768ff8"]]), Oe = ["val
|
|
|
134
134
|
required: !0,
|
|
135
135
|
validator(e) {
|
|
136
136
|
return e.every(
|
|
137
|
-
(
|
|
137
|
+
(i) => typeof i.value < "u" && typeof i.label < "u"
|
|
138
138
|
);
|
|
139
139
|
}
|
|
140
140
|
},
|
|
@@ -160,16 +160,16 @@ const Ve = /* @__PURE__ */ h(ze, [["__scopeId", "data-v-e7768ff8"]]), Oe = ["val
|
|
|
160
160
|
}
|
|
161
161
|
},
|
|
162
162
|
emits: ["update:modelValue"],
|
|
163
|
-
setup(e, { emit:
|
|
164
|
-
const
|
|
165
|
-
const d =
|
|
166
|
-
(
|
|
163
|
+
setup(e, { emit: i }) {
|
|
164
|
+
const a = e, n = S(null), o = S(null), _ = S([]), x = S(0), I = S(""), f = S(!0), b = S(0), M = N(() => {
|
|
165
|
+
const d = a.options.find(
|
|
166
|
+
(v) => v.value === a.modelValue
|
|
167
167
|
);
|
|
168
168
|
return d && d.label;
|
|
169
169
|
}), ce = {
|
|
170
|
-
beforeMount(d,
|
|
170
|
+
beforeMount(d, v) {
|
|
171
171
|
d.clickOutsideEvent = function(y) {
|
|
172
|
-
d === y.target || d.contains(y.target) ||
|
|
172
|
+
d === y.target || d.contains(y.target) || v.value(y);
|
|
173
173
|
}, document.body.addEventListener("click", d.clickOutsideEvent);
|
|
174
174
|
},
|
|
175
175
|
unmounted(d) {
|
|
@@ -177,25 +177,25 @@ const Ve = /* @__PURE__ */ h(ze, [["__scopeId", "data-v-e7768ff8"]]), Oe = ["val
|
|
|
177
177
|
}
|
|
178
178
|
};
|
|
179
179
|
function ue(d) {
|
|
180
|
-
|
|
180
|
+
i("update:modelValue", d);
|
|
181
181
|
}
|
|
182
182
|
function _e(d) {
|
|
183
183
|
var y;
|
|
184
|
-
const
|
|
185
|
-
|
|
184
|
+
const v = d.target;
|
|
185
|
+
v.getAttribute("role") === "option" && (Z(v), E(), (y = n.value) == null || y.focus());
|
|
186
186
|
}
|
|
187
187
|
function J(d) {
|
|
188
188
|
var y;
|
|
189
|
-
const
|
|
190
|
-
switch (
|
|
189
|
+
const v = d.key;
|
|
190
|
+
switch (v) {
|
|
191
191
|
case "ArrowUp":
|
|
192
192
|
case "ArrowDown": {
|
|
193
193
|
d.preventDefault();
|
|
194
|
-
const w =
|
|
195
|
-
(P) => P.value ===
|
|
194
|
+
const w = a.options.findIndex(
|
|
195
|
+
(P) => P.value === a.modelValue
|
|
196
196
|
);
|
|
197
197
|
let L = w ? _.value[w] : _.value[0];
|
|
198
|
-
|
|
198
|
+
v === "ArrowUp" ? w - 1 >= 0 && (L = _.value[w - 1]) : w + 1 <= a.options.length && (L = _.value[w + 1]), L && Z(L);
|
|
199
199
|
break;
|
|
200
200
|
}
|
|
201
201
|
case "Home":
|
|
@@ -211,14 +211,14 @@ const Ve = /* @__PURE__ */ h(ze, [["__scopeId", "data-v-e7768ff8"]]), Oe = ["val
|
|
|
211
211
|
d.preventDefault(), E(), (y = n.value) == null || y.focus();
|
|
212
212
|
break;
|
|
213
213
|
default: {
|
|
214
|
-
const w =
|
|
214
|
+
const w = ve(v);
|
|
215
215
|
w && Z(w);
|
|
216
216
|
break;
|
|
217
217
|
}
|
|
218
218
|
}
|
|
219
219
|
}
|
|
220
220
|
function me(d) {
|
|
221
|
-
if (!
|
|
221
|
+
if (!a.disabled)
|
|
222
222
|
switch (d.key) {
|
|
223
223
|
case "ArrowUp":
|
|
224
224
|
case "ArrowDown":
|
|
@@ -229,25 +229,25 @@ const Ve = /* @__PURE__ */ h(ze, [["__scopeId", "data-v-e7768ff8"]]), Oe = ["val
|
|
|
229
229
|
function he(d) {
|
|
230
230
|
d && d.removeAttribute("aria-selected");
|
|
231
231
|
}
|
|
232
|
-
function
|
|
232
|
+
function ge() {
|
|
233
233
|
x && (clearTimeout(x.value), x.value = 0), x.value = setTimeout(() => {
|
|
234
234
|
I.value = "", x.value = 0;
|
|
235
235
|
}, 500);
|
|
236
236
|
}
|
|
237
|
-
function
|
|
238
|
-
let
|
|
239
|
-
(I.value === "" ||
|
|
240
|
-
(w) => w.value ===
|
|
241
|
-
)), I.value =
|
|
237
|
+
function ve(d) {
|
|
238
|
+
let v = "";
|
|
239
|
+
(I.value === "" || v !== d) && (b.value = a.options.findIndex(
|
|
240
|
+
(w) => w.value === a.modelValue
|
|
241
|
+
)), I.value = v === d ? d : I.value + d, v = d, ge();
|
|
242
242
|
let y = Y(
|
|
243
243
|
b.value + 1,
|
|
244
|
-
|
|
244
|
+
a.options.length
|
|
245
245
|
);
|
|
246
|
-
return !y && I.value.length === 1 && (y = Y(0, b.value)), b.value = (b.value + 1) %
|
|
246
|
+
return !y && I.value.length === 1 && (y = Y(0, b.value)), b.value = (b.value + 1) % a.options.length, y;
|
|
247
247
|
}
|
|
248
|
-
function Y(d,
|
|
249
|
-
for (let y = d; y <
|
|
250
|
-
if (
|
|
248
|
+
function Y(d, v) {
|
|
249
|
+
for (let y = d; y < v; y++)
|
|
250
|
+
if (a.options[y].label && a.options[y].label.toUpperCase().indexOf(I.value.toUpperCase()) === 0)
|
|
251
251
|
return _.value[y];
|
|
252
252
|
return null;
|
|
253
253
|
}
|
|
@@ -256,24 +256,24 @@ const Ve = /* @__PURE__ */ h(ze, [["__scopeId", "data-v-e7768ff8"]]), Oe = ["val
|
|
|
256
256
|
}
|
|
257
257
|
function Z(d) {
|
|
258
258
|
var y, w;
|
|
259
|
-
const
|
|
260
|
-
if (
|
|
261
|
-
const L =
|
|
262
|
-
(pe) => pe.value ===
|
|
259
|
+
const v = d.getAttribute("data-value");
|
|
260
|
+
if (a.modelValue) {
|
|
261
|
+
const L = a.options.findIndex(
|
|
262
|
+
(pe) => pe.value === a.modelValue
|
|
263
263
|
), P = _.value[L];
|
|
264
264
|
he(P);
|
|
265
265
|
}
|
|
266
266
|
if (d.setAttribute("aria-selected", "true"), (y = o.value) == null || y.setAttribute(
|
|
267
267
|
"aria-activedescendant",
|
|
268
|
-
|
|
269
|
-
), ue(
|
|
268
|
+
v || ""
|
|
269
|
+
), ue(v || ""), o.value && o.value.scrollHeight > o.value.clientHeight) {
|
|
270
270
|
const L = o.value.clientHeight + o.value.scrollTop, P = d.offsetTop + d.offsetHeight;
|
|
271
271
|
P > L ? o.value.scrollTop = P - ((w = o.value) == null ? void 0 : w.clientHeight) : d.offsetTop < o.value.scrollTop && (o.value.scrollTop = d.offsetTop);
|
|
272
272
|
}
|
|
273
273
|
}
|
|
274
274
|
function ye() {
|
|
275
|
-
var
|
|
276
|
-
const d = (
|
|
275
|
+
var v;
|
|
276
|
+
const d = (v = _.value) == null ? void 0 : v[a.options.length - 1];
|
|
277
277
|
Z(d);
|
|
278
278
|
}
|
|
279
279
|
function E() {
|
|
@@ -281,13 +281,13 @@ const Ve = /* @__PURE__ */ h(ze, [["__scopeId", "data-v-e7768ff8"]]), Oe = ["val
|
|
|
281
281
|
f.value = !0, (d = n.value) == null || d.removeAttribute("aria-expanded");
|
|
282
282
|
}
|
|
283
283
|
function K() {
|
|
284
|
-
var d,
|
|
285
|
-
f.value = !1, (d = n.value) == null || d.setAttribute("aria-expanded", "true"), (
|
|
284
|
+
var d, v;
|
|
285
|
+
f.value = !1, (d = n.value) == null || d.setAttribute("aria-expanded", "true"), (v = o.value) == null || v.focus();
|
|
286
286
|
}
|
|
287
287
|
function be() {
|
|
288
|
-
|
|
288
|
+
a.disabled || (f.value ? K() : E());
|
|
289
289
|
}
|
|
290
|
-
return (d,
|
|
290
|
+
return (d, v) => (l(), r("div", {
|
|
291
291
|
class: "listbox__wrapper",
|
|
292
292
|
value: e.modelValue,
|
|
293
293
|
ref: "listbox"
|
|
@@ -300,7 +300,7 @@ const Ve = /* @__PURE__ */ h(ze, [["__scopeId", "data-v-e7768ff8"]]), Oe = ["val
|
|
|
300
300
|
"is-required": e.required
|
|
301
301
|
}, "listbox__label"])
|
|
302
302
|
}, s(e.label), 11, Pe),
|
|
303
|
-
U((
|
|
303
|
+
U((l(), r("div", He, [
|
|
304
304
|
t("button", {
|
|
305
305
|
id: `${e.name}-button-label`,
|
|
306
306
|
"aria-labelledby": `${e.name}-label ${e.name}-button-label`,
|
|
@@ -324,7 +324,7 @@ const Ve = /* @__PURE__ */ h(ze, [["__scopeId", "data-v-e7768ff8"]]), Oe = ["val
|
|
|
324
324
|
ref_key: "listboxNode",
|
|
325
325
|
ref: o
|
|
326
326
|
}, [
|
|
327
|
-
(
|
|
327
|
+
(l(!0), r(q, null, D(e.options, (y, w) => (l(), r("li", {
|
|
328
328
|
key: `${e.name}-option-${w}`,
|
|
329
329
|
"aria-selected": y.value === e.modelValue,
|
|
330
330
|
"data-value": y.value,
|
|
@@ -381,8 +381,8 @@ const We = /* @__PURE__ */ h(Ue, [["__scopeId", "data-v-4824444a"]]), Fe = { cla
|
|
|
381
381
|
}
|
|
382
382
|
},
|
|
383
383
|
setup(e) {
|
|
384
|
-
return (
|
|
385
|
-
u(
|
|
384
|
+
return (i, a) => (l(), r("div", Fe, [
|
|
385
|
+
u(i.$slots, "default", T(j(i.$attrs)))
|
|
386
386
|
]));
|
|
387
387
|
}
|
|
388
388
|
});
|
|
@@ -400,10 +400,10 @@ const B = /* @__PURE__ */ h(Ge, [["__scopeId", "data-v-513b5384"]]), Je = { clas
|
|
|
400
400
|
}
|
|
401
401
|
},
|
|
402
402
|
setup(e) {
|
|
403
|
-
const
|
|
404
|
-
return (n, o) => (
|
|
403
|
+
const i = e, a = N(() => `Label: ${i.text}`);
|
|
404
|
+
return (n, o) => (l(), r("div", Je, [
|
|
405
405
|
t("span", {
|
|
406
|
-
"aria-label":
|
|
406
|
+
"aria-label": a.value,
|
|
407
407
|
"label-dark": e.labelDark,
|
|
408
408
|
class: c(e.labelDark ? "label--dark" : "label--light")
|
|
409
409
|
}, s(e.text), 11, Ye)
|
|
@@ -451,12 +451,12 @@ const F = /* @__PURE__ */ h(Ke, [["__scopeId", "data-v-aacf01db"]]), Qe = { clas
|
|
|
451
451
|
}
|
|
452
452
|
},
|
|
453
453
|
setup(e) {
|
|
454
|
-
const
|
|
455
|
-
const { ...n } =
|
|
454
|
+
const i = e, a = N(() => {
|
|
455
|
+
const { ...n } = i;
|
|
456
456
|
return n;
|
|
457
457
|
});
|
|
458
|
-
return (n, o) => (
|
|
459
|
-
t("div", ie(
|
|
458
|
+
return (n, o) => (l(), r("div", Qe, [
|
|
459
|
+
t("div", ie(a.value, {
|
|
460
460
|
class: ["mir-link", [
|
|
461
461
|
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" : "",
|
|
462
462
|
e.disabled ? "disabled" : "",
|
|
@@ -496,12 +496,12 @@ const Xe = (e) => (z("data-v-016da8d2"), e = e(), V(), e), et = ["name", "value"
|
|
|
496
496
|
}
|
|
497
497
|
},
|
|
498
498
|
emits: ["input"],
|
|
499
|
-
setup(e, { emit:
|
|
500
|
-
const
|
|
499
|
+
setup(e, { emit: i }) {
|
|
500
|
+
const a = (n) => {
|
|
501
501
|
const o = n.target;
|
|
502
|
-
|
|
502
|
+
i("input", o.checked);
|
|
503
503
|
};
|
|
504
|
-
return (n, o) => (
|
|
504
|
+
return (n, o) => (l(), r("div", {
|
|
505
505
|
class: c(["radio__wrapper", e.disabled ? "disabled" : ""])
|
|
506
506
|
}, [
|
|
507
507
|
t("input", {
|
|
@@ -513,7 +513,7 @@ const Xe = (e) => (z("data-v-016da8d2"), e = e(), V(), e), et = ["name", "value"
|
|
|
513
513
|
required: e.required,
|
|
514
514
|
id: e.id,
|
|
515
515
|
class: "radio__radio",
|
|
516
|
-
onChange:
|
|
516
|
+
onChange: a
|
|
517
517
|
}, null, 40, et),
|
|
518
518
|
t("label", {
|
|
519
519
|
for: e.id,
|
|
@@ -541,7 +541,7 @@ const it = /* @__PURE__ */ h(lt, [["__scopeId", "data-v-016da8d2"]]), rt = { cla
|
|
|
541
541
|
required: !0,
|
|
542
542
|
validator(e) {
|
|
543
543
|
return e.every(
|
|
544
|
-
(
|
|
544
|
+
(i) => typeof i.value < "u" && typeof i.text < "u"
|
|
545
545
|
);
|
|
546
546
|
}
|
|
547
547
|
},
|
|
@@ -566,7 +566,7 @@ const it = /* @__PURE__ */ h(lt, [["__scopeId", "data-v-016da8d2"]]), rt = { cla
|
|
|
566
566
|
},
|
|
567
567
|
emits: ["update:modelValue"],
|
|
568
568
|
setup(e) {
|
|
569
|
-
return (
|
|
569
|
+
return (i, a) => (l(), r("div", rt, [
|
|
570
570
|
t("label", {
|
|
571
571
|
for: e.id,
|
|
572
572
|
class: c([e.required ? "required" : "", e.disabled ? "disabled" : ""])
|
|
@@ -577,11 +577,11 @@ const it = /* @__PURE__ */ h(lt, [["__scopeId", "data-v-016da8d2"]]), rt = { cla
|
|
|
577
577
|
id: e.id,
|
|
578
578
|
name: e.name,
|
|
579
579
|
value: e.modelValue,
|
|
580
|
-
onChange:
|
|
581
|
-
|
|
580
|
+
onChange: a[0] || (a[0] = (n) => {
|
|
581
|
+
i.$emit("update:modelValue", n.target.value), n.target.blur();
|
|
582
582
|
})
|
|
583
583
|
}, [
|
|
584
|
-
(
|
|
584
|
+
(l(!0), r(q, null, D(e.options, (n) => (l(), r("option", {
|
|
585
585
|
key: n.value,
|
|
586
586
|
value: n.value
|
|
587
587
|
}, s(n.text), 9, ot))), 128))
|
|
@@ -595,22 +595,22 @@ const ct = /* @__PURE__ */ h(dt, [["__scopeId", "data-v-d1d7a1e3"]]), ut = { cla
|
|
|
595
595
|
show: { type: Boolean, default: !1 }
|
|
596
596
|
},
|
|
597
597
|
emits: ["update:show"],
|
|
598
|
-
setup(e, { emit:
|
|
599
|
-
const
|
|
598
|
+
setup(e, { emit: i }) {
|
|
599
|
+
const a = e;
|
|
600
600
|
N({
|
|
601
|
-
get: () =>
|
|
602
|
-
set: (o) =>
|
|
601
|
+
get: () => a.show,
|
|
602
|
+
set: (o) => i("update:show", o)
|
|
603
603
|
});
|
|
604
604
|
const n = () => {
|
|
605
|
-
|
|
605
|
+
i("update:show", !a.show);
|
|
606
606
|
};
|
|
607
|
-
return (o, _) => (
|
|
607
|
+
return (o, _) => (l(), r("div", ut, [
|
|
608
608
|
k(ke, {
|
|
609
609
|
duration: 300,
|
|
610
610
|
name: "nested"
|
|
611
611
|
}, {
|
|
612
612
|
default: $(() => [
|
|
613
|
-
o.show ? (
|
|
613
|
+
o.show ? (l(), r("div", {
|
|
614
614
|
key: 0,
|
|
615
615
|
class: "overlay",
|
|
616
616
|
onClick: n,
|
|
@@ -631,14 +631,14 @@ const ct = /* @__PURE__ */ h(dt, [["__scopeId", "data-v-d1d7a1e3"]]), ut = { cla
|
|
|
631
631
|
]),
|
|
632
632
|
u(o.$slots, "default", {}, void 0, !0)
|
|
633
633
|
])
|
|
634
|
-
])) :
|
|
634
|
+
])) : g("", !0)
|
|
635
635
|
]),
|
|
636
636
|
_: 3
|
|
637
637
|
})
|
|
638
638
|
]));
|
|
639
639
|
}
|
|
640
640
|
});
|
|
641
|
-
const oe = /* @__PURE__ */ h(_t, [["__scopeId", "data-v-b5af91d8"]]), mt = { class: "slider__wrapper" }, ht = { class: "slider__label" },
|
|
641
|
+
const oe = /* @__PURE__ */ h(_t, [["__scopeId", "data-v-b5af91d8"]]), mt = { class: "slider__wrapper" }, ht = { class: "slider__label" }, gt = ["for"], vt = ["aria-label"], ft = { class: "slider__content" }, yt = ["id", "name", "value", "min", "step", "max"], bt = /* @__PURE__ */ m({
|
|
642
642
|
__name: "slider",
|
|
643
643
|
props: {
|
|
644
644
|
label: {
|
|
@@ -690,26 +690,26 @@ const oe = /* @__PURE__ */ h(_t, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
690
690
|
}
|
|
691
691
|
},
|
|
692
692
|
emits: ["update:modelValue"],
|
|
693
|
-
setup(e, { emit:
|
|
694
|
-
const
|
|
693
|
+
setup(e, { emit: i }) {
|
|
694
|
+
const a = e, n = S(a.modelValue), o = S(), _ = S(!1), x = (f, b, M) => (f - b) / (M - b) * 100, I = (f) => {
|
|
695
695
|
var b;
|
|
696
696
|
(b = o.value) == null || b.style.setProperty("--ProgressPercent", `${f}%`);
|
|
697
697
|
};
|
|
698
698
|
return ne(() => {
|
|
699
699
|
if (o.value) {
|
|
700
|
-
|
|
701
|
-
const f = x(n.value,
|
|
700
|
+
i("update:modelValue", n.value);
|
|
701
|
+
const f = x(n.value, a.min, a.max);
|
|
702
702
|
let b = (50 - f) / 100;
|
|
703
703
|
I(f + b);
|
|
704
704
|
}
|
|
705
|
-
}), (f, b) => (
|
|
705
|
+
}), (f, b) => (l(), r(q, null, [
|
|
706
706
|
t("div", mt, [
|
|
707
707
|
t("div", ht, [
|
|
708
708
|
t("label", {
|
|
709
709
|
for: e.id,
|
|
710
710
|
class: c([e.variant, ""])
|
|
711
|
-
}, s(e.label), 11,
|
|
712
|
-
e.information ? (
|
|
711
|
+
}, s(e.label), 11, gt),
|
|
712
|
+
e.information ? (l(), r("i", {
|
|
713
713
|
key: 0,
|
|
714
714
|
role: "button",
|
|
715
715
|
class: c([e.variant, "slider__information"]),
|
|
@@ -718,7 +718,7 @@ const oe = /* @__PURE__ */ h(_t, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
718
718
|
"aria-label": e.informationLabel,
|
|
719
719
|
tabindex: "0",
|
|
720
720
|
"aria-haspopup": "dialog"
|
|
721
|
-
}, null, 42,
|
|
721
|
+
}, null, 42, vt)) : g("", !0)
|
|
722
722
|
]),
|
|
723
723
|
t("div", ft, [
|
|
724
724
|
t("span", {
|
|
@@ -745,7 +745,7 @@ const oe = /* @__PURE__ */ h(_t, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
745
745
|
class: c([e.variant, "slider__value"])
|
|
746
746
|
}, s(e.modelValue), 3)
|
|
747
747
|
]),
|
|
748
|
-
e.information ? (
|
|
748
|
+
e.information ? (l(), A(oe, {
|
|
749
749
|
key: 0,
|
|
750
750
|
show: _.value,
|
|
751
751
|
"onUpdate:show": b[3] || (b[3] = (M) => _.value = M)
|
|
@@ -754,7 +754,7 @@ const oe = /* @__PURE__ */ h(_t, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
754
754
|
H(s(e.information), 1)
|
|
755
755
|
]),
|
|
756
756
|
_: 1
|
|
757
|
-
}, 8, ["show"])) :
|
|
757
|
+
}, 8, ["show"])) : g("", !0)
|
|
758
758
|
], 64));
|
|
759
759
|
}
|
|
760
760
|
});
|
|
@@ -798,7 +798,7 @@ const pt = /* @__PURE__ */ h(bt, [["__scopeId", "data-v-84385cf8"]]), kt = { id:
|
|
|
798
798
|
},
|
|
799
799
|
emits: ["update:modelValue"],
|
|
800
800
|
setup(e) {
|
|
801
|
-
return (
|
|
801
|
+
return (i, a) => (l(), r("div", kt, [
|
|
802
802
|
t("label", {
|
|
803
803
|
for: e.id,
|
|
804
804
|
class: c({ required: e.required })
|
|
@@ -816,7 +816,7 @@ const pt = /* @__PURE__ */ h(bt, [["__scopeId", "data-v-84385cf8"]]), kt = { id:
|
|
|
816
816
|
disabled: e.disabled,
|
|
817
817
|
maxlength: e.maxLength,
|
|
818
818
|
value: e.modelValue,
|
|
819
|
-
onInput:
|
|
819
|
+
onInput: a[0] || (a[0] = (n) => i.$emit("update:modelValue", n.target.value)),
|
|
820
820
|
class: c(
|
|
821
821
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit" : "border"
|
|
822
822
|
)
|
|
@@ -824,7 +824,7 @@ const pt = /* @__PURE__ */ h(bt, [["__scopeId", "data-v-84385cf8"]]), kt = { id:
|
|
|
824
824
|
], 8, wt),
|
|
825
825
|
t("div", xt, [
|
|
826
826
|
t("div", null, [
|
|
827
|
-
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (
|
|
827
|
+
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (l(), r("p", It, " Too many characters. Please make it shorter ")) : g("", !0)
|
|
828
828
|
]),
|
|
829
829
|
t("p", {
|
|
830
830
|
class: c(
|
|
@@ -911,12 +911,12 @@ const Mt = /* @__PURE__ */ h(qt, [["__scopeId", "data-v-28492b7a"]]), Dt = { cla
|
|
|
911
911
|
},
|
|
912
912
|
emits: ["update:modelValue"],
|
|
913
913
|
setup(e) {
|
|
914
|
-
const
|
|
915
|
-
() =>
|
|
914
|
+
const i = S(!0), a = N(
|
|
915
|
+
() => i.value ? "showPassword" : "hidePassword"
|
|
916
916
|
), n = N(
|
|
917
|
-
() =>
|
|
917
|
+
() => i.value ? "password" : "text"
|
|
918
918
|
);
|
|
919
|
-
return (o, _) => (
|
|
919
|
+
return (o, _) => (l(), r("div", Dt, [
|
|
920
920
|
t("label", {
|
|
921
921
|
for: e.id,
|
|
922
922
|
class: c([
|
|
@@ -925,7 +925,7 @@ const Mt = /* @__PURE__ */ h(qt, [["__scopeId", "data-v-28492b7a"]]), Dt = { cla
|
|
|
925
925
|
e.search ? "search" : ""
|
|
926
926
|
])
|
|
927
927
|
}, s(e.label), 11, Bt),
|
|
928
|
-
e.type === "password" ? (
|
|
928
|
+
e.type === "password" ? (l(), r("div", Lt, [
|
|
929
929
|
t("input", {
|
|
930
930
|
id: e.id,
|
|
931
931
|
type: n.value,
|
|
@@ -937,12 +937,12 @@ const Mt = /* @__PURE__ */ h(qt, [["__scopeId", "data-v-28492b7a"]]), Dt = { cla
|
|
|
937
937
|
}, null, 40, At),
|
|
938
938
|
t("i", {
|
|
939
939
|
role: "button",
|
|
940
|
-
class: c([
|
|
941
|
-
onClick: _[1] || (_[1] = (x) =>
|
|
940
|
+
class: c([a.value]),
|
|
941
|
+
onClick: _[1] || (_[1] = (x) => i.value = !i.value),
|
|
942
942
|
"aria-controls": "password",
|
|
943
|
-
"aria-expanded": !
|
|
943
|
+
"aria-expanded": !i.value
|
|
944
944
|
}, null, 10, Ct)
|
|
945
|
-
])) : (
|
|
945
|
+
])) : (l(), r("input", {
|
|
946
946
|
key: 1,
|
|
947
947
|
type: e.type,
|
|
948
948
|
value: e.modelValue,
|
|
@@ -957,9 +957,9 @@ const Mt = /* @__PURE__ */ h(qt, [["__scopeId", "data-v-28492b7a"]]), Dt = { cla
|
|
|
957
957
|
disabled: e.disabled,
|
|
958
958
|
onInput: _[2] || (_[2] = (x) => o.$emit("update:modelValue", x.target.value))
|
|
959
959
|
}, null, 42, Tt)),
|
|
960
|
-
e.search ? (
|
|
961
|
-
e.errorMessage ? (
|
|
962
|
-
e.helperText ? (
|
|
960
|
+
e.search ? (l(), r("i", jt)) : g("", !0),
|
|
961
|
+
e.errorMessage ? (l(), r("strong", Nt, s(e.errorMessage), 1)) : g("", !0),
|
|
962
|
+
e.helperText ? (l(), r("span", zt, s(e.helperText), 1)) : g("", !0)
|
|
963
963
|
]));
|
|
964
964
|
}
|
|
965
965
|
});
|
|
@@ -1015,15 +1015,15 @@ const Ot = /* @__PURE__ */ h(Vt, [["__scopeId", "data-v-4c2c5e23"]]), Pt = { cla
|
|
|
1015
1015
|
}
|
|
1016
1016
|
},
|
|
1017
1017
|
setup(e) {
|
|
1018
|
-
const
|
|
1019
|
-
let
|
|
1018
|
+
const i = e;
|
|
1019
|
+
let a = S(null);
|
|
1020
1020
|
return ne(() => {
|
|
1021
|
-
|
|
1022
|
-
}), (n, o) => (
|
|
1023
|
-
e.localVideo ? (
|
|
1021
|
+
i.play && a.value ? a.value.play() : !i.play && a.value && a.value.pause();
|
|
1022
|
+
}), (n, o) => (l(), r("div", Pt, [
|
|
1023
|
+
e.localVideo ? (l(), r("video", {
|
|
1024
1024
|
key: 0,
|
|
1025
1025
|
ref_key: "videoRef",
|
|
1026
|
-
ref:
|
|
1026
|
+
ref: a,
|
|
1027
1027
|
"aria-label": e.ariaLabel,
|
|
1028
1028
|
controls: e.controls,
|
|
1029
1029
|
poster: e.poster,
|
|
@@ -1035,7 +1035,7 @@ const Ot = /* @__PURE__ */ h(Vt, [["__scopeId", "data-v-4c2c5e23"]]), Pt = { cla
|
|
|
1035
1035
|
type: "video/mp4",
|
|
1036
1036
|
playsinline: "",
|
|
1037
1037
|
src: e.src
|
|
1038
|
-
}, " Your browser does not support HTML video. ", 8, Ht)) : (
|
|
1038
|
+
}, " Your browser does not support HTML video. ", 8, Ht)) : (l(), r("iframe", {
|
|
1039
1039
|
key: 1,
|
|
1040
1040
|
src: e.src,
|
|
1041
1041
|
"aria-label": e.ariaLabel,
|
|
@@ -1080,20 +1080,20 @@ const R = /* @__PURE__ */ h(Rt, [["__scopeId", "data-v-48adae09"]]), Et = { clas
|
|
|
1080
1080
|
}
|
|
1081
1081
|
},
|
|
1082
1082
|
setup(e) {
|
|
1083
|
-
return (
|
|
1083
|
+
return (i, a) => (l(), r("div", Et, [
|
|
1084
1084
|
t("div", Ut, [
|
|
1085
1085
|
t("div", Wt, [
|
|
1086
|
-
u(
|
|
1086
|
+
u(i.$slots, "address-flag", {}, void 0, !0)
|
|
1087
1087
|
]),
|
|
1088
1088
|
t("div", Ft, [
|
|
1089
1089
|
t("p", Gt, s(e.name), 1),
|
|
1090
1090
|
t("p", null, s(e.company), 1),
|
|
1091
1091
|
t("p", null, s(e.addressLine_1), 1),
|
|
1092
1092
|
t("p", null, s(e.addressLine_2), 1),
|
|
1093
|
-
e.addressLine_3 ? (
|
|
1093
|
+
e.addressLine_3 ? (l(), r("p", Jt, s(e.addressLine_3), 1)) : g("", !0)
|
|
1094
1094
|
]),
|
|
1095
1095
|
t("div", Yt, [
|
|
1096
|
-
(
|
|
1096
|
+
(l(!0), r(q, null, D(e.phone_numbers, (n) => (l(), A(C, {
|
|
1097
1097
|
underline: "false",
|
|
1098
1098
|
linkType: "regular"
|
|
1099
1099
|
}, {
|
|
@@ -1134,12 +1134,12 @@ const ea = /* @__PURE__ */ h(Xt, [["__scopeId", "data-v-a87ec518"]]), ta = (e) =
|
|
|
1134
1134
|
}
|
|
1135
1135
|
},
|
|
1136
1136
|
setup(e) {
|
|
1137
|
-
return (
|
|
1137
|
+
return (i, a) => (l(), r("div", aa, [
|
|
1138
1138
|
t("div", {
|
|
1139
1139
|
class: c(["bullet-list", e.variant])
|
|
1140
1140
|
}, [
|
|
1141
1141
|
t("ul", null, [
|
|
1142
|
-
(
|
|
1142
|
+
(l(!0), r(q, null, D(e.list, (n) => (l(), r("li", null, [
|
|
1143
1143
|
la,
|
|
1144
1144
|
H(" " + s(n), 1)
|
|
1145
1145
|
]))), 256))
|
|
@@ -1202,9 +1202,9 @@ const ra = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-327e6c15"]]), na = { cla
|
|
|
1202
1202
|
alt: String
|
|
1203
1203
|
},
|
|
1204
1204
|
emits: ["clicked"],
|
|
1205
|
-
setup(e, { emit:
|
|
1206
|
-
let
|
|
1207
|
-
return (n, o) => (
|
|
1205
|
+
setup(e, { emit: i }) {
|
|
1206
|
+
let a = S(!1);
|
|
1207
|
+
return (n, o) => (l(), r("div", na, [
|
|
1208
1208
|
t("div", {
|
|
1209
1209
|
class: c(["card", [
|
|
1210
1210
|
e.theme == "dark" ? "card--dark" : "card--light",
|
|
@@ -1217,10 +1217,10 @@ const ra = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-327e6c15"]]), na = { cla
|
|
|
1217
1217
|
e.variant == "product" ? "font-weight: 700" : "font-weight: 300",
|
|
1218
1218
|
e.mediaType == "video" ? "width: 328px" : ""
|
|
1219
1219
|
]),
|
|
1220
|
-
onMouseover: o[0] || (o[0] = (_) => Q(
|
|
1221
|
-
onMouseout: o[1] || (o[1] = (_) => Q(
|
|
1220
|
+
onMouseover: o[0] || (o[0] = (_) => Q(a) ? a.value = !0 : a = !0),
|
|
1221
|
+
onMouseout: o[1] || (o[1] = (_) => Q(a) ? a.value = !1 : a = !1)
|
|
1222
1222
|
}, [
|
|
1223
|
-
e.mediaType == "image" ? (
|
|
1223
|
+
e.mediaType == "image" ? (l(), A(B, { key: 0 }, {
|
|
1224
1224
|
default: $(() => [
|
|
1225
1225
|
u(n.$slots, "card-image", ie({
|
|
1226
1226
|
src: e.imgSrc,
|
|
@@ -1232,12 +1232,12 @@ const ra = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-327e6c15"]]), na = { cla
|
|
|
1232
1232
|
}, { srcset: e.srcSet }))
|
|
1233
1233
|
]),
|
|
1234
1234
|
_: 3
|
|
1235
|
-
})) : (
|
|
1235
|
+
})) : (l(), r("div", {
|
|
1236
1236
|
key: 1,
|
|
1237
|
-
class: c(["video-card__wrapper", p(
|
|
1237
|
+
class: c(["video-card__wrapper", p(a) == !0 ? "vimeoPlaying" : ""])
|
|
1238
1238
|
}, [
|
|
1239
1239
|
k(R, {
|
|
1240
|
-
play: p(
|
|
1240
|
+
play: p(a),
|
|
1241
1241
|
localVideo: !0,
|
|
1242
1242
|
src: e.videoSrc,
|
|
1243
1243
|
"aria-label": e.arialabel,
|
|
@@ -1250,20 +1250,20 @@ const ra = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-327e6c15"]]), na = { cla
|
|
|
1250
1250
|
muted: !0
|
|
1251
1251
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
1252
1252
|
], 2)),
|
|
1253
|
-
e.variant === "product" ? (
|
|
1253
|
+
e.variant === "product" ? (l(), r("h3", {
|
|
1254
1254
|
key: 2,
|
|
1255
1255
|
class: c(e.theme == "dark" ? "regular-dark" : "regular-blue")
|
|
1256
|
-
}, s(e.headline), 3)) : (
|
|
1256
|
+
}, s(e.headline), 3)) : (l(), r("h3", {
|
|
1257
1257
|
key: 3,
|
|
1258
1258
|
class: c(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
|
|
1259
1259
|
}, s(e.headline), 3)),
|
|
1260
|
-
e.variant == "product" ? (
|
|
1260
|
+
e.variant == "product" ? (l(), r("p", sa, s(e.paragraph), 1)) : g("", !0),
|
|
1261
1261
|
u(n.$slots, "card-label")
|
|
1262
1262
|
], 38)
|
|
1263
1263
|
]));
|
|
1264
1264
|
}
|
|
1265
1265
|
});
|
|
1266
|
-
const da = /* @__PURE__ */ h(oa, [["__scopeId", "data-v-b50e8101"]]), ca = (e) => (z("data-v-f5acdf7e"), e = e(), V(), e), ua = { class: "event__wrapper" }, _a = { class: "event__headline" }, ma = { class: "event__date-location" }, ha = /* @__PURE__ */ ca(() => /* @__PURE__ */ t("br", null, null, -1)),
|
|
1266
|
+
const da = /* @__PURE__ */ h(oa, [["__scopeId", "data-v-b50e8101"]]), ca = (e) => (z("data-v-f5acdf7e"), e = e(), V(), e), ua = { class: "event__wrapper" }, _a = { class: "event__headline" }, ma = { class: "event__date-location" }, ha = /* @__PURE__ */ ca(() => /* @__PURE__ */ t("br", null, null, -1)), ga = { class: "event__exhibitor" }, va = /* @__PURE__ */ m({
|
|
1267
1267
|
__name: "event-card",
|
|
1268
1268
|
props: {
|
|
1269
1269
|
eventType: {
|
|
@@ -1288,7 +1288,7 @@ const da = /* @__PURE__ */ h(oa, [["__scopeId", "data-v-b50e8101"]]), ca = (e) =
|
|
|
1288
1288
|
}
|
|
1289
1289
|
},
|
|
1290
1290
|
setup(e) {
|
|
1291
|
-
return (
|
|
1291
|
+
return (i, a) => (l(), r("div", ua, [
|
|
1292
1292
|
k(F, {
|
|
1293
1293
|
"label-dark": !1,
|
|
1294
1294
|
text: e.eventType ? e.eventType : ""
|
|
@@ -1299,11 +1299,11 @@ const da = /* @__PURE__ */ h(oa, [["__scopeId", "data-v-b50e8101"]]), ca = (e) =
|
|
|
1299
1299
|
ha,
|
|
1300
1300
|
H(s(e.location), 1)
|
|
1301
1301
|
]),
|
|
1302
|
-
t("div",
|
|
1302
|
+
t("div", ga, "Exhibitor: " + s(e.exhibitor), 1)
|
|
1303
1303
|
]));
|
|
1304
1304
|
}
|
|
1305
1305
|
});
|
|
1306
|
-
const fa = /* @__PURE__ */ h(
|
|
1306
|
+
const fa = /* @__PURE__ */ h(va, [["__scopeId", "data-v-f5acdf7e"]]), ya = { class: "facts__wrapper" }, ba = { class: "facts__content" }, pa = { class: "facts__headline" }, ka = { class: "facts" }, $a = { class: "fact" }, wa = { class: "fact__value" }, Sa = { class: "fact__metric" }, xa = {
|
|
1307
1307
|
key: 0,
|
|
1308
1308
|
class: "facts__link"
|
|
1309
1309
|
}, Ia = /* @__PURE__ */ m({
|
|
@@ -1324,11 +1324,11 @@ const fa = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-f5acdf7e"]]), ya = { cla
|
|
|
1324
1324
|
}
|
|
1325
1325
|
},
|
|
1326
1326
|
setup(e) {
|
|
1327
|
-
return (
|
|
1327
|
+
return (i, a) => (l(), r("div", ya, [
|
|
1328
1328
|
t("div", ba, [
|
|
1329
1329
|
t("h2", pa, s(e.headline), 1),
|
|
1330
1330
|
t("div", ka, [
|
|
1331
|
-
(
|
|
1331
|
+
(l(!0), r(q, null, D(e.facts, (n) => (l(), r("div", $a, [
|
|
1332
1332
|
t("div", wa, [
|
|
1333
1333
|
t("span", null, s(n.value), 1)
|
|
1334
1334
|
]),
|
|
@@ -1337,17 +1337,17 @@ const fa = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-f5acdf7e"]]), ya = { cla
|
|
|
1337
1337
|
])
|
|
1338
1338
|
]))), 256))
|
|
1339
1339
|
]),
|
|
1340
|
-
e.link ? (
|
|
1340
|
+
e.link ? (l(), r("div", xa, [
|
|
1341
1341
|
k(C, {
|
|
1342
1342
|
linkType: "regular-light",
|
|
1343
1343
|
arrow: ""
|
|
1344
1344
|
}, {
|
|
1345
1345
|
default: $(() => [
|
|
1346
|
-
u(
|
|
1346
|
+
u(i.$slots, "facts-link", {}, void 0, !0)
|
|
1347
1347
|
]),
|
|
1348
1348
|
_: 3
|
|
1349
1349
|
})
|
|
1350
|
-
])) :
|
|
1350
|
+
])) : g("", !0)
|
|
1351
1351
|
])
|
|
1352
1352
|
]));
|
|
1353
1353
|
}
|
|
@@ -1355,12 +1355,18 @@ const fa = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-f5acdf7e"]]), ya = { cla
|
|
|
1355
1355
|
const qa = /* @__PURE__ */ h(Ia, [["__scopeId", "data-v-7fd89b0c"]]), Ma = { class: "features__wrapper" }, Da = { class: "features__content" }, Ba = {
|
|
1356
1356
|
key: 0,
|
|
1357
1357
|
class: "features__headline"
|
|
1358
|
-
}, La = {
|
|
1358
|
+
}, La = {
|
|
1359
|
+
key: 1,
|
|
1360
|
+
class: "features__body"
|
|
1361
|
+
}, Aa = { class: "features__element" }, Ca = { class: "element__headline" }, Ta = { class: "element__body" }, ja = /* @__PURE__ */ m({
|
|
1359
1362
|
__name: "features",
|
|
1360
1363
|
props: {
|
|
1361
1364
|
headline: {
|
|
1362
1365
|
type: String
|
|
1363
1366
|
},
|
|
1367
|
+
body: {
|
|
1368
|
+
type: String
|
|
1369
|
+
},
|
|
1364
1370
|
elements: {
|
|
1365
1371
|
type: Array,
|
|
1366
1372
|
required: !0,
|
|
@@ -1370,21 +1376,21 @@ const qa = /* @__PURE__ */ h(Ia, [["__scopeId", "data-v-7fd89b0c"]]), Ma = { cla
|
|
|
1370
1376
|
}
|
|
1371
1377
|
},
|
|
1372
1378
|
setup(e) {
|
|
1373
|
-
return (
|
|
1379
|
+
return (i, a) => (l(), r("div", Ma, [
|
|
1374
1380
|
t("div", Da, [
|
|
1375
|
-
e.headline ? (
|
|
1381
|
+
e.headline ? (l(), r("div", Ba, [
|
|
1376
1382
|
t("h2", null, s(e.headline), 1)
|
|
1377
|
-
])) :
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
]),
|
|
1383
|
+
])) : g("", !0),
|
|
1384
|
+
e.body ? (l(), r("div", La, [
|
|
1385
|
+
t("p", null, s(e.body), 1)
|
|
1386
|
+
])) : g("", !0),
|
|
1381
1387
|
t("div", {
|
|
1382
1388
|
class: c(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
|
|
1383
1389
|
}, [
|
|
1384
|
-
(
|
|
1390
|
+
(l(!0), r(q, null, D(e.elements, (n) => (l(), r("div", Aa, [
|
|
1385
1391
|
k(B, { class: "element__icon" }, {
|
|
1386
1392
|
default: $(() => [
|
|
1387
|
-
u(
|
|
1393
|
+
u(i.$slots, "features-icon", T(j({
|
|
1388
1394
|
src: n.icon.src,
|
|
1389
1395
|
height: 30,
|
|
1390
1396
|
width: 30,
|
|
@@ -1401,7 +1407,7 @@ const qa = /* @__PURE__ */ h(Ia, [["__scopeId", "data-v-7fd89b0c"]]), Ma = { cla
|
|
|
1401
1407
|
]));
|
|
1402
1408
|
}
|
|
1403
1409
|
});
|
|
1404
|
-
const Na = /* @__PURE__ */ h(ja, [["__scopeId", "data-v-
|
|
1410
|
+
const Na = /* @__PURE__ */ h(ja, [["__scopeId", "data-v-0990b89f"]]), za = { class: "image__wrapper" }, Va = { class: "image__content" }, Oa = { class: "image__image" }, Pa = { class: "image__caption" }, Ha = /* @__PURE__ */ m({
|
|
1405
1411
|
__name: "image",
|
|
1406
1412
|
props: {
|
|
1407
1413
|
caption: {
|
|
@@ -1418,12 +1424,12 @@ const Na = /* @__PURE__ */ h(ja, [["__scopeId", "data-v-782af0c4"]]), za = { cla
|
|
|
1418
1424
|
}
|
|
1419
1425
|
},
|
|
1420
1426
|
setup(e) {
|
|
1421
|
-
return (
|
|
1427
|
+
return (i, a) => (l(), r("div", za, [
|
|
1422
1428
|
t("div", Va, [
|
|
1423
1429
|
t("div", Oa, [
|
|
1424
1430
|
k(B, null, {
|
|
1425
1431
|
default: $(() => [
|
|
1426
|
-
u(
|
|
1432
|
+
u(i.$slots, "image", T(j({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1427
1433
|
]),
|
|
1428
1434
|
_: 3
|
|
1429
1435
|
})
|
|
@@ -1481,7 +1487,7 @@ const Za = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-6dde0544"]]), Ra = { cla
|
|
|
1481
1487
|
}
|
|
1482
1488
|
},
|
|
1483
1489
|
setup(e) {
|
|
1484
|
-
return (
|
|
1490
|
+
return (i, a) => (l(), r("div", {
|
|
1485
1491
|
class: c([
|
|
1486
1492
|
"gallery__wrapper",
|
|
1487
1493
|
e.bgColor === "light" ? "gallery__wrapper--light" : e.bgColor === "dark" ? "gallery__wrapper--dark" : ""
|
|
@@ -1494,10 +1500,10 @@ const Za = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-6dde0544"]]), Ra = { cla
|
|
|
1494
1500
|
])
|
|
1495
1501
|
}, [
|
|
1496
1502
|
t("div", Ra, [
|
|
1497
|
-
e.mediaLarge && e.mediaType === "image" ? (
|
|
1503
|
+
e.mediaLarge && e.mediaType === "image" ? (l(), r("div", Ea, [
|
|
1498
1504
|
k(B, null, {
|
|
1499
1505
|
default: $(() => [
|
|
1500
|
-
u(
|
|
1506
|
+
u(i.$slots, "image-large", T(j({
|
|
1501
1507
|
width: 617,
|
|
1502
1508
|
height: 530,
|
|
1503
1509
|
src: e.mediaLarge.src,
|
|
@@ -1506,8 +1512,8 @@ const Za = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-6dde0544"]]), Ra = { cla
|
|
|
1506
1512
|
]),
|
|
1507
1513
|
_: 3
|
|
1508
1514
|
})
|
|
1509
|
-
])) :
|
|
1510
|
-
e.mediaLarge && e.mediaType === "video" ? (
|
|
1515
|
+
])) : g("", !0),
|
|
1516
|
+
e.mediaLarge && e.mediaType === "video" ? (l(), r("div", Ua, [
|
|
1511
1517
|
k(R, {
|
|
1512
1518
|
src: e.mediaLarge.src,
|
|
1513
1519
|
localVideo: "",
|
|
@@ -1520,7 +1526,7 @@ const Za = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-6dde0544"]]), Ra = { cla
|
|
|
1520
1526
|
muted: !0,
|
|
1521
1527
|
play: !0
|
|
1522
1528
|
}, null, 8, ["src", "ariaLabel"])
|
|
1523
|
-
])) :
|
|
1529
|
+
])) : g("", !0)
|
|
1524
1530
|
]),
|
|
1525
1531
|
t("div", {
|
|
1526
1532
|
style: se([e.mediaSmall.length == 2 ? "grid-gap: 38px;" : ""]),
|
|
@@ -1529,10 +1535,10 @@ const Za = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-6dde0544"]]), Ra = { cla
|
|
|
1529
1535
|
e.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1530
1536
|
])
|
|
1531
1537
|
}, [
|
|
1532
|
-
(
|
|
1538
|
+
(l(!0), r(q, null, D(e.mediaSmall, (n) => (l(), r("div", Wa, [
|
|
1533
1539
|
k(B, null, {
|
|
1534
1540
|
default: $(() => [
|
|
1535
|
-
u(
|
|
1541
|
+
u(i.$slots, "image-small", T(j({
|
|
1536
1542
|
width: 328,
|
|
1537
1543
|
height: 246,
|
|
1538
1544
|
src: n.src,
|
|
@@ -1542,9 +1548,9 @@ const Za = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-6dde0544"]]), Ra = { cla
|
|
|
1542
1548
|
_: 2
|
|
1543
1549
|
}, 1024)
|
|
1544
1550
|
]))), 256)),
|
|
1545
|
-
e.mediaSmall.length < 2 ? (
|
|
1551
|
+
e.mediaSmall.length < 2 ? (l(), r("div", Fa, [
|
|
1546
1552
|
t("p", null, s(e.body), 1)
|
|
1547
|
-
])) :
|
|
1553
|
+
])) : g("", !0)
|
|
1548
1554
|
], 6)
|
|
1549
1555
|
], 2)
|
|
1550
1556
|
], 2));
|
|
@@ -1567,7 +1573,7 @@ const Ja = /* @__PURE__ */ h(Ga, [["__scopeId", "data-v-047e5de9"]]), Ya = { cla
|
|
|
1567
1573
|
}
|
|
1568
1574
|
},
|
|
1569
1575
|
setup(e) {
|
|
1570
|
-
return (
|
|
1576
|
+
return (i, a) => (l(), r("div", Ya, [
|
|
1571
1577
|
t("div", {
|
|
1572
1578
|
class: c([
|
|
1573
1579
|
e.article ? "headline__content--article" : e.noSubMenu ? "headline__content--nosubmenu" : "headline__content--default"
|
|
@@ -1601,16 +1607,16 @@ const Xa = /* @__PURE__ */ h(Qa, [["__scopeId", "data-v-931bc5aa"]]), el = { cla
|
|
|
1601
1607
|
}
|
|
1602
1608
|
},
|
|
1603
1609
|
setup(e) {
|
|
1604
|
-
return (
|
|
1610
|
+
return (i, a) => (l(), r("div", {
|
|
1605
1611
|
class: c([
|
|
1606
1612
|
"micro-stories__wrapper",
|
|
1607
1613
|
e.bgColor == "white" ? "micro-stories__wrapper--white" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
|
|
1608
1614
|
])
|
|
1609
1615
|
}, [
|
|
1610
1616
|
t("div", el, [
|
|
1611
|
-
u(
|
|
1617
|
+
u(i.$slots, "micro-stories-slides")
|
|
1612
1618
|
]),
|
|
1613
|
-
u(
|
|
1619
|
+
u(i.$slots, "micro-stories-controls")
|
|
1614
1620
|
], 2));
|
|
1615
1621
|
}
|
|
1616
1622
|
});
|
|
@@ -1639,7 +1645,7 @@ const al = { class: "product-hero__wrapper" }, ll = { class: "product-hero__cont
|
|
|
1639
1645
|
}
|
|
1640
1646
|
},
|
|
1641
1647
|
setup(e) {
|
|
1642
|
-
return (
|
|
1648
|
+
return (i, a) => (l(), r("div", al, [
|
|
1643
1649
|
t("div", ll, [
|
|
1644
1650
|
t("div", il, [
|
|
1645
1651
|
t("h1", null, s(e.headline), 1)
|
|
@@ -1709,7 +1715,7 @@ const sl = /* @__PURE__ */ h(nl, [["__scopeId", "data-v-3ad48049"]]), ol = { cla
|
|
|
1709
1715
|
}
|
|
1710
1716
|
},
|
|
1711
1717
|
setup(e) {
|
|
1712
|
-
return (
|
|
1718
|
+
return (i, a) => (l(), r("div", {
|
|
1713
1719
|
class: c([
|
|
1714
1720
|
"promo__wrapper",
|
|
1715
1721
|
e.variant === "dark" ? "promo__wrapper--dark" : e.variant === "light" ? "promo__wrapper--light" : "",
|
|
@@ -1717,7 +1723,7 @@ const sl = /* @__PURE__ */ h(nl, [["__scopeId", "data-v-3ad48049"]]), ol = { cla
|
|
|
1717
1723
|
])
|
|
1718
1724
|
}, [
|
|
1719
1725
|
t("div", ol, [
|
|
1720
|
-
e.mediaType === "image" ? (
|
|
1726
|
+
e.mediaType === "image" ? (l(), r("div", {
|
|
1721
1727
|
key: 0,
|
|
1722
1728
|
class: c([
|
|
1723
1729
|
"promo__image",
|
|
@@ -1726,12 +1732,12 @@ const sl = /* @__PURE__ */ h(nl, [["__scopeId", "data-v-3ad48049"]]), ol = { cla
|
|
|
1726
1732
|
}, [
|
|
1727
1733
|
k(B, null, {
|
|
1728
1734
|
default: $(() => [
|
|
1729
|
-
u(
|
|
1735
|
+
u(i.$slots, "promo-image", T(j({ src: e.src, width: 1920, alt: e.alt, height: 1080 })))
|
|
1730
1736
|
]),
|
|
1731
1737
|
_: 3
|
|
1732
1738
|
})
|
|
1733
|
-
], 2)) :
|
|
1734
|
-
e.mediaType === "video" ? (
|
|
1739
|
+
], 2)) : g("", !0),
|
|
1740
|
+
e.mediaType === "video" ? (l(), r("div", {
|
|
1735
1741
|
key: 1,
|
|
1736
1742
|
class: c([
|
|
1737
1743
|
"promo__video",
|
|
@@ -1749,49 +1755,49 @@ const sl = /* @__PURE__ */ h(nl, [["__scopeId", "data-v-3ad48049"]]), ol = { cla
|
|
|
1749
1755
|
play: !0,
|
|
1750
1756
|
poster: e.fallbackImage
|
|
1751
1757
|
}, null, 8, ["src", "ariaLabel", "poster"])
|
|
1752
|
-
], 2)) :
|
|
1758
|
+
], 2)) : g("", !0),
|
|
1753
1759
|
t("div", {
|
|
1754
1760
|
class: c([
|
|
1755
1761
|
"promo__text",
|
|
1756
1762
|
e.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1757
1763
|
])
|
|
1758
1764
|
}, [
|
|
1759
|
-
e.label ? (
|
|
1765
|
+
e.label ? (l(), A(F, {
|
|
1760
1766
|
key: 0,
|
|
1761
1767
|
text: e.label,
|
|
1762
1768
|
labelDark: e.variant === "dark"
|
|
1763
|
-
}, null, 8, ["text", "labelDark"])) :
|
|
1769
|
+
}, null, 8, ["text", "labelDark"])) : g("", !0),
|
|
1764
1770
|
t("h3", {
|
|
1765
1771
|
class: c([
|
|
1766
1772
|
"promo__title",
|
|
1767
1773
|
e.variant === "dark" ? "promo__title--dark" : ""
|
|
1768
1774
|
])
|
|
1769
1775
|
}, s(e.headline), 3),
|
|
1770
|
-
e.linkType === "link" ? (
|
|
1776
|
+
e.linkType === "link" ? (l(), A(C, {
|
|
1771
1777
|
key: 1,
|
|
1772
1778
|
linkType: e.variant === "dark" ? "regular-dark" : (e.variant === "light", "regular-light"),
|
|
1773
1779
|
arrow: ""
|
|
1774
1780
|
}, {
|
|
1775
1781
|
default: $(() => [
|
|
1776
|
-
u(
|
|
1782
|
+
u(i.$slots, "promo-link")
|
|
1777
1783
|
]),
|
|
1778
1784
|
_: 3
|
|
1779
|
-
}, 8, ["linkType"])) :
|
|
1780
|
-
e.linkType === "button" ? (
|
|
1785
|
+
}, 8, ["linkType"])) : g("", !0),
|
|
1786
|
+
e.linkType === "button" ? (l(), A(C, {
|
|
1781
1787
|
key: 2,
|
|
1782
1788
|
linkType: e.variant === "dark" ? "secondary-dark" : (e.variant === "light", "secondary")
|
|
1783
1789
|
}, {
|
|
1784
1790
|
default: $(() => [
|
|
1785
|
-
u(
|
|
1791
|
+
u(i.$slots, "promo-link")
|
|
1786
1792
|
]),
|
|
1787
1793
|
_: 3
|
|
1788
|
-
}, 8, ["linkType"])) :
|
|
1794
|
+
}, 8, ["linkType"])) : g("", !0)
|
|
1789
1795
|
], 2)
|
|
1790
1796
|
])
|
|
1791
1797
|
], 2));
|
|
1792
1798
|
}
|
|
1793
1799
|
});
|
|
1794
|
-
const cl = /* @__PURE__ */ h(dl, [["__scopeId", "data-v-24c28200"]]), ul = (e) => (z("data-v-3cc55dbf"), e = e(), V(), e), _l = { class: "quote__wrapper" }, ml = { class: "quote__content" }, hl = /* @__PURE__ */ ul(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)),
|
|
1800
|
+
const cl = /* @__PURE__ */ h(dl, [["__scopeId", "data-v-24c28200"]]), ul = (e) => (z("data-v-3cc55dbf"), e = e(), V(), e), _l = { class: "quote__wrapper" }, ml = { class: "quote__content" }, hl = /* @__PURE__ */ ul(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), gl = { class: "quote__quote" }, vl = { class: "quote__quote-text" }, fl = { class: "quote__author" }, yl = {
|
|
1795
1801
|
key: 0,
|
|
1796
1802
|
class: "quote__image"
|
|
1797
1803
|
}, bl = { class: "quote__text" }, pl = { class: "quote__author-name" }, kl = { class: "quote__author-title" }, $l = /* @__PURE__ */ m({
|
|
@@ -1815,16 +1821,16 @@ const cl = /* @__PURE__ */ h(dl, [["__scopeId", "data-v-24c28200"]]), ul = (e) =
|
|
|
1815
1821
|
}
|
|
1816
1822
|
},
|
|
1817
1823
|
setup(e) {
|
|
1818
|
-
return (
|
|
1824
|
+
return (i, a) => (l(), r("div", _l, [
|
|
1819
1825
|
t("div", ml, [
|
|
1820
1826
|
hl,
|
|
1821
|
-
t("div",
|
|
1822
|
-
t("p",
|
|
1827
|
+
t("div", gl, [
|
|
1828
|
+
t("p", vl, s(e.quote), 1),
|
|
1823
1829
|
t("div", fl, [
|
|
1824
|
-
e.authorImage ? (
|
|
1830
|
+
e.authorImage ? (l(), r("div", yl, [
|
|
1825
1831
|
k(B, null, {
|
|
1826
1832
|
default: $(() => [
|
|
1827
|
-
u(
|
|
1833
|
+
u(i.$slots, "author-image", T(j({
|
|
1828
1834
|
src: e.authorImage + "/m/100x100",
|
|
1829
1835
|
width: 60,
|
|
1830
1836
|
height: 60
|
|
@@ -1832,7 +1838,7 @@ const cl = /* @__PURE__ */ h(dl, [["__scopeId", "data-v-24c28200"]]), ul = (e) =
|
|
|
1832
1838
|
]),
|
|
1833
1839
|
_: 3
|
|
1834
1840
|
})
|
|
1835
|
-
])) :
|
|
1841
|
+
])) : g("", !0),
|
|
1836
1842
|
t("div", bl, [
|
|
1837
1843
|
t("p", pl, s(e.author), 1),
|
|
1838
1844
|
t("p", kl, s(e.authorTitle), 1)
|
|
@@ -1884,25 +1890,25 @@ const wl = /* @__PURE__ */ h($l, [["__scopeId", "data-v-3cc55dbf"]]), Sl = { cla
|
|
|
1884
1890
|
}
|
|
1885
1891
|
},
|
|
1886
1892
|
setup(e) {
|
|
1887
|
-
return (
|
|
1893
|
+
return (i, a) => (l(), r("div", {
|
|
1888
1894
|
class: c([
|
|
1889
1895
|
"rich-text",
|
|
1890
1896
|
e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1891
1897
|
])
|
|
1892
1898
|
}, [
|
|
1893
1899
|
t("div", Sl, [
|
|
1894
|
-
e.label ? (
|
|
1900
|
+
e.label ? (l(), A(F, {
|
|
1895
1901
|
key: 0,
|
|
1896
1902
|
text: e.label,
|
|
1897
1903
|
labelDark: !1
|
|
1898
|
-
}, null, 8, ["text"])) :
|
|
1899
|
-
e.headline ? (
|
|
1904
|
+
}, null, 8, ["text"])) : g("", !0),
|
|
1905
|
+
e.headline ? (l(), r("h2", {
|
|
1900
1906
|
key: 1,
|
|
1901
1907
|
class: c([
|
|
1902
1908
|
"rich-text__headline",
|
|
1903
1909
|
e.leftAligned || e.bulletList || e.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
1904
1910
|
])
|
|
1905
|
-
}, s(e.headline), 3)) :
|
|
1911
|
+
}, s(e.headline), 3)) : g("", !0),
|
|
1906
1912
|
t("div", {
|
|
1907
1913
|
class: c([
|
|
1908
1914
|
"rich-text__content",
|
|
@@ -1915,15 +1921,15 @@ const wl = /* @__PURE__ */ h($l, [["__scopeId", "data-v-3cc55dbf"]]), Sl = { cla
|
|
|
1915
1921
|
e.bulletList || e.image ? "rich-text__body--content-right" : ""
|
|
1916
1922
|
])
|
|
1917
1923
|
}, [
|
|
1918
|
-
u(
|
|
1919
|
-
e.links ? (
|
|
1920
|
-
u(
|
|
1921
|
-
])) :
|
|
1924
|
+
u(i.$slots, "rich-text-content"),
|
|
1925
|
+
e.links ? (l(), r("div", xl, [
|
|
1926
|
+
u(i.$slots, "rich-text-links")
|
|
1927
|
+
])) : g("", !0)
|
|
1922
1928
|
], 2),
|
|
1923
|
-
e.bulletList ? (
|
|
1924
|
-
u(
|
|
1925
|
-
])) :
|
|
1926
|
-
e.image ? (
|
|
1929
|
+
e.bulletList ? (l(), r("div", Il, [
|
|
1930
|
+
u(i.$slots, "rich-text-bullet-list")
|
|
1931
|
+
])) : g("", !0),
|
|
1932
|
+
e.image ? (l(), r("div", {
|
|
1927
1933
|
key: 1,
|
|
1928
1934
|
class: c([
|
|
1929
1935
|
"rich-text__image",
|
|
@@ -1932,11 +1938,11 @@ const wl = /* @__PURE__ */ h($l, [["__scopeId", "data-v-3cc55dbf"]]), Sl = { cla
|
|
|
1932
1938
|
}, [
|
|
1933
1939
|
k(B, null, {
|
|
1934
1940
|
default: $(() => [
|
|
1935
|
-
u(
|
|
1941
|
+
u(i.$slots, "rich-text-image", T(j({ width: 865, height: 307 })))
|
|
1936
1942
|
]),
|
|
1937
1943
|
_: 3
|
|
1938
1944
|
})
|
|
1939
|
-
], 2)) :
|
|
1945
|
+
], 2)) : g("", !0)
|
|
1940
1946
|
], 2)
|
|
1941
1947
|
])
|
|
1942
1948
|
], 2));
|
|
@@ -1962,19 +1968,19 @@ const Ml = /* @__PURE__ */ h(ql, [["__scopeId", "data-v-a94d5dd4"]]), Dl = { cla
|
|
|
1962
1968
|
}
|
|
1963
1969
|
},
|
|
1964
1970
|
setup(e) {
|
|
1965
|
-
return (
|
|
1971
|
+
return (i, a) => (l(), r("div", {
|
|
1966
1972
|
class: c([
|
|
1967
1973
|
"triple-card-display",
|
|
1968
1974
|
e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
|
|
1969
1975
|
])
|
|
1970
1976
|
}, [
|
|
1971
1977
|
t("div", Dl, [
|
|
1972
|
-
e.headline || e.paragraph ? (
|
|
1973
|
-
e.headline ? (
|
|
1974
|
-
e.paragraph ? (
|
|
1975
|
-
])) :
|
|
1978
|
+
e.headline || e.paragraph ? (l(), r("div", Bl, [
|
|
1979
|
+
e.headline ? (l(), r("h2", Ll, s(e.headline), 1)) : g("", !0),
|
|
1980
|
+
e.paragraph ? (l(), r("p", Al, s(e.paragraph), 1)) : g("", !0)
|
|
1981
|
+
])) : g("", !0),
|
|
1976
1982
|
t("div", Cl, [
|
|
1977
|
-
u(
|
|
1983
|
+
u(i.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
1978
1984
|
])
|
|
1979
1985
|
])
|
|
1980
1986
|
], 2));
|
|
@@ -1997,13 +2003,13 @@ const jl = /* @__PURE__ */ h(Tl, [["__scopeId", "data-v-f0ce4135"]]), Nl = { cla
|
|
|
1997
2003
|
}
|
|
1998
2004
|
},
|
|
1999
2005
|
setup(e) {
|
|
2000
|
-
return (
|
|
2006
|
+
return (i, a) => (l(), r("div", Nl, [
|
|
2001
2007
|
t("div", {
|
|
2002
2008
|
class: c(["vimeo__wrapper", e.headline ? "vimeo__wrapper--headline" : ""])
|
|
2003
2009
|
}, [
|
|
2004
|
-
e.headline ? (
|
|
2005
|
-
u(
|
|
2006
|
-
e.description ? (
|
|
2010
|
+
e.headline ? (l(), r("h2", zl, s(e.headline), 1)) : g("", !0),
|
|
2011
|
+
u(i.$slots, "vimeo-content", {}, void 0, !0),
|
|
2012
|
+
e.description ? (l(), r("p", Vl, s(e.description), 1)) : g("", !0)
|
|
2007
2013
|
], 2)
|
|
2008
2014
|
]));
|
|
2009
2015
|
}
|
|
@@ -2017,11 +2023,11 @@ const Pl = /* @__PURE__ */ h(Ol, [["__scopeId", "data-v-a6c209f4"]]), Hl = { cla
|
|
|
2017
2023
|
}
|
|
2018
2024
|
},
|
|
2019
2025
|
setup(e) {
|
|
2020
|
-
return (
|
|
2026
|
+
return (i, a) => (l(), r("div", Hl, [
|
|
2021
2027
|
t("div", Zl, [
|
|
2022
2028
|
t("h1", Rl, s(e.headline), 1),
|
|
2023
2029
|
t("div", El, [
|
|
2024
|
-
u(
|
|
2030
|
+
u(i.$slots, "not-found-body", {}, void 0, !0)
|
|
2025
2031
|
])
|
|
2026
2032
|
])
|
|
2027
2033
|
]));
|
|
@@ -2037,28 +2043,28 @@ const Wl = /* @__PURE__ */ h(Ul, [["__scopeId", "data-v-c2038fe4"]]), Fl = { cla
|
|
|
2037
2043
|
},
|
|
2038
2044
|
emits: ["clearFilters"],
|
|
2039
2045
|
setup(e) {
|
|
2040
|
-
return (
|
|
2046
|
+
return (i, a) => (l(), r("div", Fl, [
|
|
2041
2047
|
t("div", Gl, [
|
|
2042
2048
|
t("div", Jl, [
|
|
2043
|
-
u(
|
|
2049
|
+
u(i.$slots, "filter-dropdowns", {}, void 0, !0)
|
|
2044
2050
|
]),
|
|
2045
2051
|
t("div", Yl, [
|
|
2046
|
-
u(
|
|
2047
|
-
e.hasChips ? (
|
|
2052
|
+
u(i.$slots, "filter-chips", {}, void 0, !0),
|
|
2053
|
+
e.hasChips ? (l(), r("button", {
|
|
2048
2054
|
key: 0,
|
|
2049
2055
|
class: "filter__clear",
|
|
2050
|
-
onClick:
|
|
2051
|
-
}, " Remove all filters ")) :
|
|
2056
|
+
onClick: a[0] || (a[0] = (n) => i.$emit("clearFilters"))
|
|
2057
|
+
}, " Remove all filters ")) : g("", !0)
|
|
2052
2058
|
])
|
|
2053
2059
|
])
|
|
2054
2060
|
]));
|
|
2055
2061
|
}
|
|
2056
2062
|
});
|
|
2057
|
-
const Ql = /* @__PURE__ */ h(Kl, [["__scopeId", "data-v-cf46dae2"]]), O = (e) => (z("data-v-6d9c55d4"), e = e(), V(), e), Xl = { class: "footer__wrapper" }, ei = { class: "footer__content" }, ti = { class: "footer__sections" }, ai = { class: "section" }, li = { class: "section__title" }, ii = { class: "section__list" }, ri = { class: "section" }, ni = /* @__PURE__ */ O(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), si = /* @__PURE__ */ O(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), oi = /* @__PURE__ */ O(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), di = /* @__PURE__ */ O(() => /* @__PURE__ */ t("br", null, null, -1)), ci = /* @__PURE__ */ O(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), ui = /* @__PURE__ */ O(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), _i = { class: "footer__bottom" }, mi = { class: "footer__copyright-policy" }, hi = { class: "copyright" },
|
|
2063
|
+
const Ql = /* @__PURE__ */ h(Kl, [["__scopeId", "data-v-cf46dae2"]]), O = (e) => (z("data-v-6d9c55d4"), e = e(), V(), e), Xl = { class: "footer__wrapper" }, ei = { class: "footer__content" }, ti = { class: "footer__sections" }, ai = { class: "section" }, li = { class: "section__title" }, ii = { class: "section__list" }, ri = { class: "section" }, ni = /* @__PURE__ */ O(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), si = /* @__PURE__ */ O(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), oi = /* @__PURE__ */ O(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), di = /* @__PURE__ */ O(() => /* @__PURE__ */ t("br", null, null, -1)), ci = /* @__PURE__ */ O(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), ui = /* @__PURE__ */ O(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), _i = { class: "footer__bottom" }, mi = { class: "footer__copyright-policy" }, hi = { class: "copyright" }, gi = /* @__PURE__ */ O(() => /* @__PURE__ */ t("span", null, [
|
|
2058
2064
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
2059
2065
|
/* @__PURE__ */ H("Change region")
|
|
2060
|
-
], -1)),
|
|
2061
|
-
|
|
2066
|
+
], -1)), vi = [
|
|
2067
|
+
gi
|
|
2062
2068
|
], fi = { class: "footer__social" }, yi = ["href", "aria-label"], bi = /* @__PURE__ */ m({
|
|
2063
2069
|
__name: "footer",
|
|
2064
2070
|
props: {
|
|
@@ -2076,27 +2082,27 @@ const Ql = /* @__PURE__ */ h(Kl, [["__scopeId", "data-v-cf46dae2"]]), O = (e) =>
|
|
|
2076
2082
|
type: Array,
|
|
2077
2083
|
default: [],
|
|
2078
2084
|
validator: (e) => {
|
|
2079
|
-
const
|
|
2085
|
+
const i = [
|
|
2080
2086
|
"linkedin",
|
|
2081
2087
|
"facebook",
|
|
2082
2088
|
"instagram",
|
|
2083
2089
|
"twitter",
|
|
2084
2090
|
"youtube"
|
|
2085
2091
|
];
|
|
2086
|
-
return e.every((
|
|
2092
|
+
return e.every((a) => i.includes(a.title));
|
|
2087
2093
|
}
|
|
2088
2094
|
}
|
|
2089
2095
|
},
|
|
2090
2096
|
emits: ["changeRegionClicked"],
|
|
2091
2097
|
setup(e) {
|
|
2092
|
-
return (
|
|
2098
|
+
return (i, a) => (l(), r("div", Xl, [
|
|
2093
2099
|
t("footer", ei, [
|
|
2094
2100
|
t("div", ti, [
|
|
2095
|
-
(
|
|
2101
|
+
(l(!0), r(q, null, D(e.footerSections, (n) => (l(), r("div", ai, [
|
|
2096
2102
|
t("span", li, s(n.title), 1),
|
|
2097
2103
|
t("nav", null, [
|
|
2098
2104
|
t("ul", ii, [
|
|
2099
|
-
u(
|
|
2105
|
+
u(i.$slots, "section-links", {
|
|
2100
2106
|
links: n.links
|
|
2101
2107
|
})
|
|
2102
2108
|
])
|
|
@@ -2136,13 +2142,13 @@ const Ql = /* @__PURE__ */ h(Kl, [["__scopeId", "data-v-cf46dae2"]]), O = (e) =>
|
|
|
2136
2142
|
t("p", hi, "© MiR " + s((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2137
2143
|
t("button", {
|
|
2138
2144
|
class: "footer__language-switcher",
|
|
2139
|
-
onClick:
|
|
2140
|
-
},
|
|
2141
|
-
u(
|
|
2142
|
-
u(
|
|
2145
|
+
onClick: a[0] || (a[0] = (n) => i.$emit("changeRegionClicked"))
|
|
2146
|
+
}, vi),
|
|
2147
|
+
u(i.$slots, "footer-privacy-link"),
|
|
2148
|
+
u(i.$slots, "footer-cookie-link")
|
|
2143
2149
|
]),
|
|
2144
2150
|
t("div", fi, [
|
|
2145
|
-
(
|
|
2151
|
+
(l(!0), r(q, null, D(e.socialMedia, (n) => (l(), A(C, {
|
|
2146
2152
|
underline: "false",
|
|
2147
2153
|
linkType: "regular"
|
|
2148
2154
|
}, {
|
|
@@ -2193,15 +2199,15 @@ const pi = /* @__PURE__ */ h(bi, [["__scopeId", "data-v-6d9c55d4"]]), de = "data
|
|
|
2193
2199
|
}
|
|
2194
2200
|
},
|
|
2195
2201
|
emits: ["update:burgerState", "update:showDropDown"],
|
|
2196
|
-
setup(e, { emit:
|
|
2197
|
-
const
|
|
2202
|
+
setup(e, { emit: i }) {
|
|
2203
|
+
const a = e;
|
|
2198
2204
|
S("");
|
|
2199
|
-
let n = null, o = S(
|
|
2205
|
+
let n = null, o = S(a.burgerState), _ = S(a.showDropDown);
|
|
2200
2206
|
X(
|
|
2201
|
-
() =>
|
|
2207
|
+
() => a.burgerState,
|
|
2202
2208
|
(f) => o.value = f
|
|
2203
2209
|
), X(
|
|
2204
|
-
() =>
|
|
2210
|
+
() => a.showDropDown,
|
|
2205
2211
|
(f) => _.value = f
|
|
2206
2212
|
), we(() => {
|
|
2207
2213
|
n = (f) => {
|
|
@@ -2211,12 +2217,12 @@ const pi = /* @__PURE__ */ h(bi, [["__scopeId", "data-v-6d9c55d4"]]), de = "data
|
|
|
2211
2217
|
n !== null && window.removeEventListener("click", n);
|
|
2212
2218
|
});
|
|
2213
2219
|
function x() {
|
|
2214
|
-
_.value = !_.value,
|
|
2220
|
+
_.value = !_.value, i("update:showDropDown", _.value);
|
|
2215
2221
|
}
|
|
2216
2222
|
function I() {
|
|
2217
|
-
o.value = !o.value,
|
|
2223
|
+
o.value = !o.value, i("update:burgerState", o.value);
|
|
2218
2224
|
}
|
|
2219
|
-
return (f, b) => (
|
|
2225
|
+
return (f, b) => (l(), r("div", ki, [
|
|
2220
2226
|
t("nav", null, [
|
|
2221
2227
|
t("div", $i, [
|
|
2222
2228
|
t("div", wi, [
|
|
@@ -2231,7 +2237,7 @@ const pi = /* @__PURE__ */ h(bi, [["__scopeId", "data-v-6d9c55d4"]]), de = "data
|
|
|
2231
2237
|
class: "nav-dropdown-btn"
|
|
2232
2238
|
}, [
|
|
2233
2239
|
u(f.$slots, "dropdown-title", {}, void 0, !0),
|
|
2234
|
-
p(_) == !1 ? (
|
|
2240
|
+
p(_) == !1 ? (l(), r("img", Ii)) : (l(), r("img", qi))
|
|
2235
2241
|
]),
|
|
2236
2242
|
U(t("div", Mi, [
|
|
2237
2243
|
u(f.$slots, "dropdown-links", {}, void 0, !0)
|
|
@@ -2304,11 +2310,11 @@ const Hi = /* @__PURE__ */ h(Pi, [["__scopeId", "data-v-8ff68823"]]), Zi = { cla
|
|
|
2304
2310
|
}
|
|
2305
2311
|
},
|
|
2306
2312
|
setup(e) {
|
|
2307
|
-
return (
|
|
2313
|
+
return (i, a) => (l(), r("div", Zi, [
|
|
2308
2314
|
t("div", Ri, [
|
|
2309
2315
|
t("h2", Ei, s(e.headline), 1),
|
|
2310
2316
|
t("p", Ui, s(e.paragraph), 1),
|
|
2311
|
-
u(
|
|
2317
|
+
u(i.$slots, "language-links", {}, void 0, !0)
|
|
2312
2318
|
])
|
|
2313
2319
|
]));
|
|
2314
2320
|
}
|
|
@@ -2327,17 +2333,17 @@ const Fi = /* @__PURE__ */ h(Wi, [["__scopeId", "data-v-9d085a10"]]), Gi = { cla
|
|
|
2327
2333
|
},
|
|
2328
2334
|
emits: ["previous", "next"],
|
|
2329
2335
|
setup(e) {
|
|
2330
|
-
return (
|
|
2336
|
+
return (i, a) => (l(), r("div", Gi, [
|
|
2331
2337
|
t("div", Ji, [
|
|
2332
2338
|
k(W, {
|
|
2333
|
-
onClick:
|
|
2339
|
+
onClick: a[0] || (a[0] = (n) => i.$emit("previous")),
|
|
2334
2340
|
disabled: e.isPreviousDisabled,
|
|
2335
2341
|
variant: "previous",
|
|
2336
2342
|
ariaLabel: "previous"
|
|
2337
2343
|
}, null, 8, ["disabled"]),
|
|
2338
|
-
u(
|
|
2344
|
+
u(i.$slots, "pagination-numbers"),
|
|
2339
2345
|
k(W, {
|
|
2340
|
-
onClick:
|
|
2346
|
+
onClick: a[1] || (a[1] = (n) => i.$emit("next")),
|
|
2341
2347
|
disabled: e.isNextDisabled,
|
|
2342
2348
|
variant: "next",
|
|
2343
2349
|
ariaLabel: "next"
|
|
@@ -2346,7 +2352,7 @@ const Fi = /* @__PURE__ */ h(Wi, [["__scopeId", "data-v-9d085a10"]]), Gi = { cla
|
|
|
2346
2352
|
]));
|
|
2347
2353
|
}
|
|
2348
2354
|
});
|
|
2349
|
-
const Ki = /* @__PURE__ */ h(Yi, [["__scopeId", "data-v-
|
|
2355
|
+
const Ki = /* @__PURE__ */ h(Yi, [["__scopeId", "data-v-c9ac7abf"]]), Xi = {
|
|
2350
2356
|
install: (e) => {
|
|
2351
2357
|
e.component("AtomButton", W), e.component("AtomCheckbox", Ae), e.component("AtomChip", Ve), e.component("AtomDropdown", We), e.component("AtomImage", B), e.component("AtomLabel", F), e.component("AtomLink", C), e.component("AtomRadioButton", it), e.component("AtomSelect", ct), e.component("AtomSlider", pt), e.component("AtomTextarea", Mt), e.component("AtomTextField", Ot), e.component("AtomVideo", R), e.component("MoleculeAddress", ea), e.component("MoleculeBulletList", ra), e.component("MoleculeCard", da), e.component("MoleculeEventCard", fa), e.component("MoleculeModal", oe), e.component("BlockFacts", qa), e.component("BlockFeatures", Na), e.component("BlockHeadline", Xa), e.component("BlockImage", Za), e.component("BlockImageGallery", Ja), e.component("BlockMicroStories", tl), e.component("BlockProductHero", sl), e.component("BlockPromo", cl), e.component("BlockQuote", wl), e.component("BlockRichText", Ml), e.component("BlockTripleCardDisplay", jl), e.component("BlockVimeo", Pl), e.component("Organism404", Wl), e.component("OrganismFilter", Ql), e.component("OrganismFooter", pi), e.component("OrganismHeader", Hi), e.component("OrganismLanguageSwitcher", Fi), e.component("OrganismPagination", Ki);
|
|
2352
2358
|
}
|