@mirweb/mir-web-components 0.12.5 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/main.d.ts +2 -1
- package/dist/components/molecules/address/address.vue.d.ts +131 -0
- package/dist/components/molecules/address/address.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 +422 -356
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as m, openBlock as i, createElementBlock as r, normalizeClass as c, toDisplayString as s, createElementVNode as t, renderSlot as u, pushScopeId as P, popScopeId as H, computed as N, createTextVNode as O, ref as
|
|
1
|
+
import { defineComponent as m, openBlock as i, createElementBlock as r, normalizeClass as c, toDisplayString as s, createElementVNode as t, renderSlot as u, pushScopeId as P, popScopeId as H, computed as N, createTextVNode as O, 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 v, 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 (a, l) => (i(), 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, a) => {
|
|
34
|
+
const l = e.__vccOpts || e;
|
|
35
|
+
for (const [n, o] of a)
|
|
36
|
+
l[n] = o;
|
|
37
|
+
return l;
|
|
38
38
|
}, W = /* @__PURE__ */ h(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)), Le = /* @__PURE__ */ m({
|
|
39
39
|
__name: "checkbox",
|
|
40
40
|
props: {
|
|
@@ -61,10 +61,10 @@ const h = (e, l) => {
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
emits: ["input"],
|
|
64
|
-
setup(e, { emit:
|
|
65
|
-
const
|
|
64
|
+
setup(e, { emit: a }) {
|
|
65
|
+
const l = (n) => {
|
|
66
66
|
const o = n.target;
|
|
67
|
-
|
|
67
|
+
a("input", o.checked);
|
|
68
68
|
};
|
|
69
69
|
return (n, o) => (i(), r("div", {
|
|
70
70
|
class: c(["checkbox__wrapper", e.disabled ? "disabled" : ""])
|
|
@@ -77,7 +77,7 @@ const h = (e, l) => {
|
|
|
77
77
|
required: e.required,
|
|
78
78
|
id: e.id,
|
|
79
79
|
class: "checkbox__checkbox",
|
|
80
|
-
onChange:
|
|
80
|
+
onChange: l
|
|
81
81
|
}, null, 40, Me),
|
|
82
82
|
t("label", {
|
|
83
83
|
for: e.id,
|
|
@@ -98,8 +98,8 @@ const Ae = /* @__PURE__ */ h(Le, [["__scopeId", "data-v-f62bd17f"]]), Ce = "data
|
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
100
|
emits: ["remove-chip"],
|
|
101
|
-
setup(e, { emit:
|
|
102
|
-
const
|
|
101
|
+
setup(e, { emit: a }) {
|
|
102
|
+
const l = e, n = N(() => `Chip: ${l.text}`);
|
|
103
103
|
return (o, _) => (i(), r("div", Te, [
|
|
104
104
|
t("span", {
|
|
105
105
|
class: "chip",
|
|
@@ -132,7 +132,7 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
132
132
|
required: !0,
|
|
133
133
|
validator(e) {
|
|
134
134
|
return e.every(
|
|
135
|
-
(
|
|
135
|
+
(a) => typeof a.value < "u" && typeof a.label < "u"
|
|
136
136
|
);
|
|
137
137
|
}
|
|
138
138
|
},
|
|
@@ -158,10 +158,10 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
158
158
|
}
|
|
159
159
|
},
|
|
160
160
|
emits: ["update:modelValue"],
|
|
161
|
-
setup(e, { emit:
|
|
162
|
-
const
|
|
163
|
-
const d =
|
|
164
|
-
(g) => g.value ===
|
|
161
|
+
setup(e, { emit: a }) {
|
|
162
|
+
const l = e, n = S(null), o = S(null), _ = S([]), x = S(0), I = S(""), f = S(!0), b = S(0), M = N(() => {
|
|
163
|
+
const d = l.options.find(
|
|
164
|
+
(g) => g.value === l.modelValue
|
|
165
165
|
);
|
|
166
166
|
return d && d.label;
|
|
167
167
|
}), ce = {
|
|
@@ -175,7 +175,7 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
175
175
|
}
|
|
176
176
|
};
|
|
177
177
|
function ue(d) {
|
|
178
|
-
|
|
178
|
+
a("update:modelValue", d);
|
|
179
179
|
}
|
|
180
180
|
function _e(d) {
|
|
181
181
|
var y;
|
|
@@ -189,11 +189,11 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
189
189
|
case "ArrowUp":
|
|
190
190
|
case "ArrowDown": {
|
|
191
191
|
d.preventDefault();
|
|
192
|
-
const
|
|
193
|
-
(V) => V.value ===
|
|
192
|
+
const w = l.options.findIndex(
|
|
193
|
+
(V) => V.value === l.modelValue
|
|
194
194
|
);
|
|
195
|
-
let
|
|
196
|
-
g === "ArrowUp" ?
|
|
195
|
+
let L = w ? _.value[w] : _.value[0];
|
|
196
|
+
g === "ArrowUp" ? w - 1 >= 0 && (L = _.value[w - 1]) : w + 1 <= l.options.length && (L = _.value[w + 1]), L && Z(L);
|
|
197
197
|
break;
|
|
198
198
|
}
|
|
199
199
|
case "Home":
|
|
@@ -209,14 +209,14 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
209
209
|
d.preventDefault(), E(), (y = n.value) == null || y.focus();
|
|
210
210
|
break;
|
|
211
211
|
default: {
|
|
212
|
-
const
|
|
213
|
-
|
|
212
|
+
const w = ge(g);
|
|
213
|
+
w && Z(w);
|
|
214
214
|
break;
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
}
|
|
218
218
|
function me(d) {
|
|
219
|
-
if (!
|
|
219
|
+
if (!l.disabled)
|
|
220
220
|
switch (d.key) {
|
|
221
221
|
case "ArrowUp":
|
|
222
222
|
case "ArrowDown":
|
|
@@ -234,18 +234,18 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
234
234
|
}
|
|
235
235
|
function ge(d) {
|
|
236
236
|
let g = "";
|
|
237
|
-
(I.value === "" || g !== d) && (b.value =
|
|
238
|
-
(
|
|
237
|
+
(I.value === "" || g !== d) && (b.value = l.options.findIndex(
|
|
238
|
+
(w) => w.value === l.modelValue
|
|
239
239
|
)), I.value = g === d ? d : I.value + d, g = d, ve();
|
|
240
240
|
let y = Y(
|
|
241
241
|
b.value + 1,
|
|
242
|
-
|
|
242
|
+
l.options.length
|
|
243
243
|
);
|
|
244
|
-
return !y && I.value.length === 1 && (y = Y(0, b.value)), b.value = (b.value + 1) %
|
|
244
|
+
return !y && I.value.length === 1 && (y = Y(0, b.value)), b.value = (b.value + 1) % l.options.length, y;
|
|
245
245
|
}
|
|
246
246
|
function Y(d, g) {
|
|
247
247
|
for (let y = d; y < g; y++)
|
|
248
|
-
if (
|
|
248
|
+
if (l.options[y].label && l.options[y].label.toUpperCase().indexOf(I.value.toUpperCase()) === 0)
|
|
249
249
|
return _.value[y];
|
|
250
250
|
return null;
|
|
251
251
|
}
|
|
@@ -253,25 +253,25 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
253
253
|
Z(_.value[0]);
|
|
254
254
|
}
|
|
255
255
|
function Z(d) {
|
|
256
|
-
var y,
|
|
256
|
+
var y, w;
|
|
257
257
|
const g = d.getAttribute("data-value");
|
|
258
|
-
if (
|
|
259
|
-
const
|
|
260
|
-
(pe) => pe.value ===
|
|
261
|
-
), V = _.value[
|
|
258
|
+
if (l.modelValue) {
|
|
259
|
+
const L = l.options.findIndex(
|
|
260
|
+
(pe) => pe.value === l.modelValue
|
|
261
|
+
), V = _.value[L];
|
|
262
262
|
he(V);
|
|
263
263
|
}
|
|
264
264
|
if (d.setAttribute("aria-selected", "true"), (y = o.value) == null || y.setAttribute(
|
|
265
265
|
"aria-activedescendant",
|
|
266
266
|
g || ""
|
|
267
267
|
), ue(g || ""), o.value && o.value.scrollHeight > o.value.clientHeight) {
|
|
268
|
-
const
|
|
269
|
-
V >
|
|
268
|
+
const L = o.value.clientHeight + o.value.scrollTop, V = d.offsetTop + d.offsetHeight;
|
|
269
|
+
V > L ? o.value.scrollTop = V - ((w = o.value) == null ? void 0 : w.clientHeight) : d.offsetTop < o.value.scrollTop && (o.value.scrollTop = d.offsetTop);
|
|
270
270
|
}
|
|
271
271
|
}
|
|
272
272
|
function ye() {
|
|
273
273
|
var g;
|
|
274
|
-
const d = (g = _.value) == null ? void 0 : g[
|
|
274
|
+
const d = (g = _.value) == null ? void 0 : g[l.options.length - 1];
|
|
275
275
|
Z(d);
|
|
276
276
|
}
|
|
277
277
|
function E() {
|
|
@@ -283,7 +283,7 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
283
283
|
f.value = !1, (d = n.value) == null || d.setAttribute("aria-expanded", "true"), (g = o.value) == null || g.focus();
|
|
284
284
|
}
|
|
285
285
|
function be() {
|
|
286
|
-
|
|
286
|
+
l.disabled || (f.value ? K() : E());
|
|
287
287
|
}
|
|
288
288
|
return (d, g) => (i(), r("div", {
|
|
289
289
|
class: "listbox__wrapper",
|
|
@@ -310,7 +310,7 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
310
310
|
onKeydown: me,
|
|
311
311
|
ref_key: "listboxButton",
|
|
312
312
|
ref: n
|
|
313
|
-
}, s(e.modelValue ?
|
|
313
|
+
}, s(e.modelValue ? M.value : e.placeholder), 41, He),
|
|
314
314
|
U(t("ul", {
|
|
315
315
|
"aria-labelledby": `${e.name}-label`,
|
|
316
316
|
"aria-activedescendant": e.modelValue,
|
|
@@ -322,8 +322,8 @@ const ze = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
322
322
|
ref_key: "listboxNode",
|
|
323
323
|
ref: o
|
|
324
324
|
}, [
|
|
325
|
-
(i(!0), r(
|
|
326
|
-
key: `${e.name}-option-${
|
|
325
|
+
(i(!0), r(q, null, D(e.options, (y, w) => (i(), r("li", {
|
|
326
|
+
key: `${e.name}-option-${w}`,
|
|
327
327
|
"aria-selected": y.value === e.modelValue,
|
|
328
328
|
"data-value": y.value,
|
|
329
329
|
class: "listbox__option",
|
|
@@ -379,12 +379,12 @@ const Ue = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-4824444a"]]), We = { cla
|
|
|
379
379
|
}
|
|
380
380
|
},
|
|
381
381
|
setup(e) {
|
|
382
|
-
return (
|
|
383
|
-
u(
|
|
382
|
+
return (a, l) => (i(), r("div", We, [
|
|
383
|
+
u(a.$slots, "default", T(j(a.$attrs)))
|
|
384
384
|
]));
|
|
385
385
|
}
|
|
386
386
|
});
|
|
387
|
-
const
|
|
387
|
+
const B = /* @__PURE__ */ h(Fe, [["__scopeId", "data-v-513b5384"]]), Ge = { class: "label__wrapper" }, Je = ["aria-label", "label-dark"], Ye = /* @__PURE__ */ m({
|
|
388
388
|
__name: "label",
|
|
389
389
|
props: {
|
|
390
390
|
text: {
|
|
@@ -398,17 +398,17 @@ const D = /* @__PURE__ */ h(Fe, [["__scopeId", "data-v-513b5384"]]), Ge = { clas
|
|
|
398
398
|
}
|
|
399
399
|
},
|
|
400
400
|
setup(e) {
|
|
401
|
-
const
|
|
401
|
+
const a = e, l = N(() => `Label: ${a.text}`);
|
|
402
402
|
return (n, o) => (i(), r("div", Ge, [
|
|
403
403
|
t("span", {
|
|
404
|
-
"aria-label":
|
|
404
|
+
"aria-label": l.value,
|
|
405
405
|
"label-dark": e.labelDark,
|
|
406
406
|
class: c(e.labelDark ? "label--dark" : "label--light")
|
|
407
407
|
}, s(e.text), 11, Je)
|
|
408
408
|
]));
|
|
409
409
|
}
|
|
410
410
|
});
|
|
411
|
-
const F = /* @__PURE__ */ h(Ye, [["__scopeId", "data-v-aacf01db"]]), Ke = { class: "link__wrapper" },
|
|
411
|
+
const F = /* @__PURE__ */ h(Ye, [["__scopeId", "data-v-aacf01db"]]), Ke = { class: "link__wrapper" }, C = /* @__PURE__ */ m({
|
|
412
412
|
__name: "link",
|
|
413
413
|
props: {
|
|
414
414
|
url: {
|
|
@@ -449,12 +449,12 @@ const F = /* @__PURE__ */ h(Ye, [["__scopeId", "data-v-aacf01db"]]), Ke = { clas
|
|
|
449
449
|
}
|
|
450
450
|
},
|
|
451
451
|
setup(e) {
|
|
452
|
-
const
|
|
453
|
-
const { ...n } =
|
|
452
|
+
const a = e, l = N(() => {
|
|
453
|
+
const { ...n } = a;
|
|
454
454
|
return n;
|
|
455
455
|
});
|
|
456
456
|
return (n, o) => (i(), r("div", Ke, [
|
|
457
|
-
t("div", ie(
|
|
457
|
+
t("div", ie(l.value, {
|
|
458
458
|
class: ["mir-link", [
|
|
459
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" : "",
|
|
460
460
|
e.disabled ? "disabled" : "",
|
|
@@ -494,10 +494,10 @@ const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value"
|
|
|
494
494
|
}
|
|
495
495
|
},
|
|
496
496
|
emits: ["input"],
|
|
497
|
-
setup(e, { emit:
|
|
498
|
-
const
|
|
497
|
+
setup(e, { emit: a }) {
|
|
498
|
+
const l = (n) => {
|
|
499
499
|
const o = n.target;
|
|
500
|
-
|
|
500
|
+
a("input", o.checked);
|
|
501
501
|
};
|
|
502
502
|
return (n, o) => (i(), r("div", {
|
|
503
503
|
class: c(["radio__wrapper", e.disabled ? "disabled" : ""])
|
|
@@ -511,7 +511,7 @@ const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value"
|
|
|
511
511
|
required: e.required,
|
|
512
512
|
id: e.id,
|
|
513
513
|
class: "radio__radio",
|
|
514
|
-
onChange:
|
|
514
|
+
onChange: l
|
|
515
515
|
}, null, 40, Xe),
|
|
516
516
|
t("label", {
|
|
517
517
|
for: e.id,
|
|
@@ -523,7 +523,7 @@ const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value"
|
|
|
523
523
|
], 2));
|
|
524
524
|
}
|
|
525
525
|
});
|
|
526
|
-
const lt = /* @__PURE__ */ h(at, [["__scopeId", "data-v-016da8d2"]]), it = { class: "select__wrapper" }, rt = ["for"], nt = ["disabled", "id", "name", "value"],
|
|
526
|
+
const lt = /* @__PURE__ */ h(at, [["__scopeId", "data-v-016da8d2"]]), it = { class: "select__wrapper" }, rt = ["for"], nt = ["disabled", "id", "name", "value"], st = ["value"], ot = /* @__PURE__ */ m({
|
|
527
527
|
__name: "select",
|
|
528
528
|
props: {
|
|
529
529
|
id: {
|
|
@@ -539,7 +539,7 @@ const lt = /* @__PURE__ */ h(at, [["__scopeId", "data-v-016da8d2"]]), it = { cla
|
|
|
539
539
|
required: !0,
|
|
540
540
|
validator(e) {
|
|
541
541
|
return e.every(
|
|
542
|
-
(
|
|
542
|
+
(a) => typeof a.value < "u" && typeof a.text < "u"
|
|
543
543
|
);
|
|
544
544
|
}
|
|
545
545
|
},
|
|
@@ -564,7 +564,7 @@ const lt = /* @__PURE__ */ h(at, [["__scopeId", "data-v-016da8d2"]]), it = { cla
|
|
|
564
564
|
},
|
|
565
565
|
emits: ["update:modelValue"],
|
|
566
566
|
setup(e) {
|
|
567
|
-
return (
|
|
567
|
+
return (a, l) => (i(), r("div", it, [
|
|
568
568
|
t("label", {
|
|
569
569
|
for: e.id,
|
|
570
570
|
class: c([e.required ? "required" : "", e.disabled ? "disabled" : ""])
|
|
@@ -575,39 +575,39 @@ const lt = /* @__PURE__ */ h(at, [["__scopeId", "data-v-016da8d2"]]), it = { cla
|
|
|
575
575
|
id: e.id,
|
|
576
576
|
name: e.name,
|
|
577
577
|
value: e.modelValue,
|
|
578
|
-
onChange:
|
|
579
|
-
|
|
578
|
+
onChange: l[0] || (l[0] = (n) => {
|
|
579
|
+
a.$emit("update:modelValue", n.target.value), n.target.blur();
|
|
580
580
|
})
|
|
581
581
|
}, [
|
|
582
|
-
(i(!0), r(
|
|
582
|
+
(i(!0), r(q, null, D(e.options, (n) => (i(), r("option", {
|
|
583
583
|
key: n.value,
|
|
584
584
|
value: n.value
|
|
585
|
-
}, s(n.text), 9,
|
|
585
|
+
}, s(n.text), 9, st))), 128))
|
|
586
586
|
], 42, nt)
|
|
587
587
|
]));
|
|
588
588
|
}
|
|
589
589
|
});
|
|
590
|
-
const dt = /* @__PURE__ */ h(
|
|
590
|
+
const dt = /* @__PURE__ */ h(ot, [["__scopeId", "data-v-d1d7a1e3"]]), ct = { class: "modal__wrapper" }, ut = /* @__PURE__ */ m({
|
|
591
591
|
__name: "modal",
|
|
592
592
|
props: {
|
|
593
593
|
show: { type: Boolean, default: !1 }
|
|
594
594
|
},
|
|
595
595
|
emits: ["update:show"],
|
|
596
|
-
setup(e, { emit:
|
|
597
|
-
const
|
|
596
|
+
setup(e, { emit: a }) {
|
|
597
|
+
const l = e;
|
|
598
598
|
N({
|
|
599
|
-
get: () =>
|
|
600
|
-
set: (o) =>
|
|
599
|
+
get: () => l.show,
|
|
600
|
+
set: (o) => a("update:show", o)
|
|
601
601
|
});
|
|
602
602
|
const n = () => {
|
|
603
|
-
|
|
603
|
+
a("update:show", !l.show);
|
|
604
604
|
};
|
|
605
605
|
return (o, _) => (i(), r("div", ct, [
|
|
606
606
|
k(ke, {
|
|
607
607
|
duration: 300,
|
|
608
608
|
name: "nested"
|
|
609
609
|
}, {
|
|
610
|
-
default:
|
|
610
|
+
default: $(() => [
|
|
611
611
|
o.show ? (i(), r("div", {
|
|
612
612
|
key: 0,
|
|
613
613
|
class: "overlay",
|
|
@@ -636,7 +636,7 @@ const dt = /* @__PURE__ */ h(st, [["__scopeId", "data-v-d1d7a1e3"]]), ct = { cla
|
|
|
636
636
|
]));
|
|
637
637
|
}
|
|
638
638
|
});
|
|
639
|
-
const
|
|
639
|
+
const oe = /* @__PURE__ */ h(ut, [["__scopeId", "data-v-b5af91d8"]]), _t = { class: "slider__wrapper" }, mt = { class: "slider__label" }, ht = ["for"], vt = ["aria-label"], gt = { class: "slider__content" }, ft = ["id", "name", "value", "min", "step", "max"], yt = /* @__PURE__ */ m({
|
|
640
640
|
__name: "slider",
|
|
641
641
|
props: {
|
|
642
642
|
label: {
|
|
@@ -688,19 +688,19 @@ const se = /* @__PURE__ */ h(ut, [["__scopeId", "data-v-b5af91d8"]]), _t = { cla
|
|
|
688
688
|
}
|
|
689
689
|
},
|
|
690
690
|
emits: ["update:modelValue"],
|
|
691
|
-
setup(e, { emit:
|
|
692
|
-
const
|
|
691
|
+
setup(e, { emit: a }) {
|
|
692
|
+
const l = e, n = S(l.modelValue), o = S(), _ = S(!1), x = (f, b, M) => (f - b) / (M - b) * 100, I = (f) => {
|
|
693
693
|
var b;
|
|
694
694
|
(b = o.value) == null || b.style.setProperty("--ProgressPercent", `${f}%`);
|
|
695
695
|
};
|
|
696
696
|
return ne(() => {
|
|
697
697
|
if (o.value) {
|
|
698
|
-
|
|
699
|
-
const f = x(n.value,
|
|
698
|
+
a("update:modelValue", n.value);
|
|
699
|
+
const f = x(n.value, l.min, l.max);
|
|
700
700
|
let b = (50 - f) / 100;
|
|
701
701
|
I(f + b);
|
|
702
702
|
}
|
|
703
|
-
}), (f, b) => (i(), r(
|
|
703
|
+
}), (f, b) => (i(), r(q, null, [
|
|
704
704
|
t("div", _t, [
|
|
705
705
|
t("div", mt, [
|
|
706
706
|
t("label", {
|
|
@@ -711,8 +711,8 @@ const se = /* @__PURE__ */ h(ut, [["__scopeId", "data-v-b5af91d8"]]), _t = { cla
|
|
|
711
711
|
key: 0,
|
|
712
712
|
role: "button",
|
|
713
713
|
class: c([e.variant, "slider__information"]),
|
|
714
|
-
onClick: b[0] || (b[0] = (
|
|
715
|
-
onKeyup: b[1] || (b[1] = $e((
|
|
714
|
+
onClick: b[0] || (b[0] = (M) => _.value = !_.value),
|
|
715
|
+
onKeyup: b[1] || (b[1] = $e((M) => _.value = !_.value, ["enter"])),
|
|
716
716
|
"aria-label": e.informationLabel,
|
|
717
717
|
tabindex: "0",
|
|
718
718
|
"aria-haspopup": "dialog"
|
|
@@ -733,7 +733,7 @@ const se = /* @__PURE__ */ h(ut, [["__scopeId", "data-v-b5af91d8"]]), _t = { cla
|
|
|
733
733
|
class: c(e.variant),
|
|
734
734
|
ref_key: "slider",
|
|
735
735
|
ref: o,
|
|
736
|
-
onInput: b[2] || (b[2] = ({ target:
|
|
736
|
+
onInput: b[2] || (b[2] = ({ target: M }) => n.value = parseFloat(M.value))
|
|
737
737
|
}, null, 42, ft),
|
|
738
738
|
t("span", {
|
|
739
739
|
class: c([e.variant, "slider__minmax"])
|
|
@@ -743,12 +743,12 @@ const se = /* @__PURE__ */ h(ut, [["__scopeId", "data-v-b5af91d8"]]), _t = { cla
|
|
|
743
743
|
class: c([e.variant, "slider__value"])
|
|
744
744
|
}, s(e.modelValue), 3)
|
|
745
745
|
]),
|
|
746
|
-
e.information ? (i(),
|
|
746
|
+
e.information ? (i(), A(oe, {
|
|
747
747
|
key: 0,
|
|
748
748
|
show: _.value,
|
|
749
|
-
"onUpdate:show": b[3] || (b[3] = (
|
|
749
|
+
"onUpdate:show": b[3] || (b[3] = (M) => _.value = M)
|
|
750
750
|
}, {
|
|
751
|
-
default:
|
|
751
|
+
default: $(() => [
|
|
752
752
|
O(s(e.information), 1)
|
|
753
753
|
]),
|
|
754
754
|
_: 1
|
|
@@ -796,7 +796,7 @@ const bt = /* @__PURE__ */ h(yt, [["__scopeId", "data-v-84385cf8"]]), pt = { id:
|
|
|
796
796
|
},
|
|
797
797
|
emits: ["update:modelValue"],
|
|
798
798
|
setup(e) {
|
|
799
|
-
return (
|
|
799
|
+
return (a, l) => (i(), r("div", pt, [
|
|
800
800
|
t("label", {
|
|
801
801
|
for: e.id,
|
|
802
802
|
class: c({ required: e.required })
|
|
@@ -814,7 +814,7 @@ const bt = /* @__PURE__ */ h(yt, [["__scopeId", "data-v-84385cf8"]]), pt = { id:
|
|
|
814
814
|
disabled: e.disabled,
|
|
815
815
|
maxlength: e.maxLength,
|
|
816
816
|
value: e.modelValue,
|
|
817
|
-
onInput:
|
|
817
|
+
onInput: l[0] || (l[0] = (n) => a.$emit("update:modelValue", n.target.value)),
|
|
818
818
|
class: c(
|
|
819
819
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit" : "border"
|
|
820
820
|
)
|
|
@@ -909,10 +909,10 @@ const qt = /* @__PURE__ */ h(It, [["__scopeId", "data-v-28492b7a"]]), Mt = { cla
|
|
|
909
909
|
},
|
|
910
910
|
emits: ["update:modelValue"],
|
|
911
911
|
setup(e) {
|
|
912
|
-
const
|
|
913
|
-
() =>
|
|
912
|
+
const a = S(!0), l = N(
|
|
913
|
+
() => a.value ? "showPassword" : "hidePassword"
|
|
914
914
|
), n = N(
|
|
915
|
-
() =>
|
|
915
|
+
() => a.value ? "password" : "text"
|
|
916
916
|
);
|
|
917
917
|
return (o, _) => (i(), r("div", Mt, [
|
|
918
918
|
t("label", {
|
|
@@ -935,10 +935,10 @@ const qt = /* @__PURE__ */ h(It, [["__scopeId", "data-v-28492b7a"]]), Mt = { cla
|
|
|
935
935
|
}, null, 40, Lt),
|
|
936
936
|
t("i", {
|
|
937
937
|
role: "button",
|
|
938
|
-
class: c([
|
|
939
|
-
onClick: _[1] || (_[1] = (x) =>
|
|
938
|
+
class: c([l.value]),
|
|
939
|
+
onClick: _[1] || (_[1] = (x) => a.value = !a.value),
|
|
940
940
|
"aria-controls": "password",
|
|
941
|
-
"aria-expanded": !
|
|
941
|
+
"aria-expanded": !a.value
|
|
942
942
|
}, null, 10, At)
|
|
943
943
|
])) : (i(), r("input", {
|
|
944
944
|
key: 1,
|
|
@@ -1013,15 +1013,15 @@ const Vt = /* @__PURE__ */ h(zt, [["__scopeId", "data-v-4c2c5e23"]]), Ot = { cla
|
|
|
1013
1013
|
}
|
|
1014
1014
|
},
|
|
1015
1015
|
setup(e) {
|
|
1016
|
-
const
|
|
1017
|
-
let
|
|
1016
|
+
const a = e;
|
|
1017
|
+
let l = S(null);
|
|
1018
1018
|
return ne(() => {
|
|
1019
|
-
|
|
1019
|
+
a.play && l.value ? l.value.play() : !a.play && l.value && l.value.pause();
|
|
1020
1020
|
}), (n, o) => (i(), r("div", Ot, [
|
|
1021
1021
|
e.localVideo ? (i(), r("video", {
|
|
1022
1022
|
key: 0,
|
|
1023
1023
|
ref_key: "videoRef",
|
|
1024
|
-
ref:
|
|
1024
|
+
ref: l,
|
|
1025
1025
|
"aria-label": e.ariaLabel,
|
|
1026
1026
|
controls: e.controls,
|
|
1027
1027
|
poster: e.poster,
|
|
@@ -1047,7 +1047,72 @@ const Vt = /* @__PURE__ */ h(zt, [["__scopeId", "data-v-4c2c5e23"]]), Ot = { cla
|
|
|
1047
1047
|
]));
|
|
1048
1048
|
}
|
|
1049
1049
|
});
|
|
1050
|
-
const R = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-48adae09"]]), Rt =
|
|
1050
|
+
const R = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-48adae09"]]), Rt = { class: "address__wrapper" }, Et = { class: "address__content" }, Ut = { class: "address__flag" }, Wt = { class: "address__address" }, Ft = { class: "address__name" }, Gt = { key: 0 }, Jt = { class: "address__contact" }, Yt = ["href"], Kt = ["href"], Qt = /* @__PURE__ */ m({
|
|
1051
|
+
__name: "address",
|
|
1052
|
+
props: {
|
|
1053
|
+
name: {
|
|
1054
|
+
type: String,
|
|
1055
|
+
required: !0
|
|
1056
|
+
},
|
|
1057
|
+
company: {
|
|
1058
|
+
type: String,
|
|
1059
|
+
required: !0
|
|
1060
|
+
},
|
|
1061
|
+
addressLine_1: {
|
|
1062
|
+
type: String,
|
|
1063
|
+
required: !0
|
|
1064
|
+
},
|
|
1065
|
+
addressLine_2: {
|
|
1066
|
+
type: String,
|
|
1067
|
+
required: !0
|
|
1068
|
+
},
|
|
1069
|
+
addressLine_3: {
|
|
1070
|
+
type: String
|
|
1071
|
+
},
|
|
1072
|
+
phone_numbers: {
|
|
1073
|
+
type: Array
|
|
1074
|
+
},
|
|
1075
|
+
email: {
|
|
1076
|
+
type: String,
|
|
1077
|
+
required: !0
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
setup(e) {
|
|
1081
|
+
return (a, l) => (i(), r("div", Rt, [
|
|
1082
|
+
t("div", Et, [
|
|
1083
|
+
t("div", Ut, [
|
|
1084
|
+
u(a.$slots, "address-flag", {}, void 0, !0)
|
|
1085
|
+
]),
|
|
1086
|
+
t("div", Wt, [
|
|
1087
|
+
t("p", Ft, s(e.name), 1),
|
|
1088
|
+
t("p", null, s(e.company), 1),
|
|
1089
|
+
t("p", null, s(e.addressLine_1), 1),
|
|
1090
|
+
t("p", null, s(e.addressLine_2), 1),
|
|
1091
|
+
e.addressLine_3 ? (i(), r("p", Gt, s(e.addressLine_3), 1)) : v("", !0)
|
|
1092
|
+
]),
|
|
1093
|
+
t("div", Jt, [
|
|
1094
|
+
(i(!0), r(q, null, D(e.phone_numbers, (n) => (i(), A(C, {
|
|
1095
|
+
underline: "false",
|
|
1096
|
+
linkType: "regular"
|
|
1097
|
+
}, {
|
|
1098
|
+
default: $(() => [
|
|
1099
|
+
t("a", {
|
|
1100
|
+
href: "tel:" + n,
|
|
1101
|
+
class: "address__phone"
|
|
1102
|
+
}, s(n), 9, Yt)
|
|
1103
|
+
]),
|
|
1104
|
+
_: 2
|
|
1105
|
+
}, 1024))), 256)),
|
|
1106
|
+
t("a", {
|
|
1107
|
+
href: "mailto:" + e.email,
|
|
1108
|
+
class: "address__email"
|
|
1109
|
+
}, s(e.email), 9, Kt)
|
|
1110
|
+
])
|
|
1111
|
+
])
|
|
1112
|
+
]));
|
|
1113
|
+
}
|
|
1114
|
+
});
|
|
1115
|
+
const Xt = /* @__PURE__ */ h(Qt, [["__scopeId", "data-v-cdfd081f"]]), ea = (e) => (P("data-v-327e6c15"), e = e(), H(), e), ta = { class: "bullet-list__wrapper" }, aa = /* @__PURE__ */ ea(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), la = /* @__PURE__ */ m({
|
|
1051
1116
|
__name: "bullet-list",
|
|
1052
1117
|
props: {
|
|
1053
1118
|
list: {
|
|
@@ -1067,13 +1132,13 @@ const R = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-48adae09"]]), Rt = (e) =>
|
|
|
1067
1132
|
}
|
|
1068
1133
|
},
|
|
1069
1134
|
setup(e) {
|
|
1070
|
-
return (
|
|
1135
|
+
return (a, l) => (i(), r("div", ta, [
|
|
1071
1136
|
t("div", {
|
|
1072
1137
|
class: c(["bullet-list", e.variant])
|
|
1073
1138
|
}, [
|
|
1074
1139
|
t("ul", null, [
|
|
1075
|
-
(i(!0), r(
|
|
1076
|
-
|
|
1140
|
+
(i(!0), r(q, null, D(e.list, (n) => (i(), r("li", null, [
|
|
1141
|
+
aa,
|
|
1077
1142
|
O(" " + s(n), 1)
|
|
1078
1143
|
]))), 256))
|
|
1079
1144
|
])
|
|
@@ -1081,7 +1146,7 @@ const R = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-48adae09"]]), Rt = (e) =>
|
|
|
1081
1146
|
]));
|
|
1082
1147
|
}
|
|
1083
1148
|
});
|
|
1084
|
-
const
|
|
1149
|
+
const ia = /* @__PURE__ */ h(la, [["__scopeId", "data-v-327e6c15"]]), ra = { class: "card__wrapper" }, na = { key: 4 }, sa = /* @__PURE__ */ m({
|
|
1085
1150
|
__name: "card",
|
|
1086
1151
|
props: {
|
|
1087
1152
|
variant: {
|
|
@@ -1135,9 +1200,9 @@ const Ft = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1135
1200
|
alt: String
|
|
1136
1201
|
},
|
|
1137
1202
|
emits: ["clicked"],
|
|
1138
|
-
setup(e, { emit:
|
|
1139
|
-
let
|
|
1140
|
-
return (n, o) => (i(), r("div",
|
|
1203
|
+
setup(e, { emit: a }) {
|
|
1204
|
+
let l = S(!1);
|
|
1205
|
+
return (n, o) => (i(), r("div", ra, [
|
|
1141
1206
|
t("div", {
|
|
1142
1207
|
class: c(["card", [
|
|
1143
1208
|
e.theme == "dark" ? "card--dark" : "card--light",
|
|
@@ -1146,15 +1211,15 @@ const Ft = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1146
1211
|
e.size == "large" && e.variant == "article" ? "card--large-article" : "",
|
|
1147
1212
|
e.variant == "product" ? "card--product" : "card--article"
|
|
1148
1213
|
]]),
|
|
1149
|
-
style:
|
|
1214
|
+
style: se([
|
|
1150
1215
|
e.variant == "product" ? "font-weight: 700" : "font-weight: 300",
|
|
1151
1216
|
e.mediaType == "video" ? "width: 328px" : ""
|
|
1152
1217
|
]),
|
|
1153
|
-
onMouseover: o[0] || (o[0] = (_) => Q(
|
|
1154
|
-
onMouseout: o[1] || (o[1] = (_) => Q(
|
|
1218
|
+
onMouseover: o[0] || (o[0] = (_) => Q(l) ? l.value = !0 : l = !0),
|
|
1219
|
+
onMouseout: o[1] || (o[1] = (_) => Q(l) ? l.value = !1 : l = !1)
|
|
1155
1220
|
}, [
|
|
1156
|
-
e.mediaType == "image" ? (i(),
|
|
1157
|
-
default:
|
|
1221
|
+
e.mediaType == "image" ? (i(), A(B, { key: 0 }, {
|
|
1222
|
+
default: $(() => [
|
|
1158
1223
|
u(n.$slots, "card-image", ie({
|
|
1159
1224
|
src: e.imgSrc,
|
|
1160
1225
|
height: e.size == "small" ? "186" : e.size == "medium" ? "243" : e.size == "large" ? "335" : "",
|
|
@@ -1167,10 +1232,10 @@ const Ft = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1167
1232
|
_: 3
|
|
1168
1233
|
})) : (i(), r("div", {
|
|
1169
1234
|
key: 1,
|
|
1170
|
-
class: c(["video-card__wrapper", p(
|
|
1235
|
+
class: c(["video-card__wrapper", p(l) == !0 ? "vimeoPlaying" : ""])
|
|
1171
1236
|
}, [
|
|
1172
1237
|
k(R, {
|
|
1173
|
-
play: p(
|
|
1238
|
+
play: p(l),
|
|
1174
1239
|
localVideo: !0,
|
|
1175
1240
|
src: e.videoSrc,
|
|
1176
1241
|
"aria-label": e.arialabel,
|
|
@@ -1190,13 +1255,13 @@ const Ft = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1190
1255
|
key: 3,
|
|
1191
1256
|
class: c(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
|
|
1192
1257
|
}, s(e.headline), 3)),
|
|
1193
|
-
e.variant == "product" ? (i(), r("p",
|
|
1258
|
+
e.variant == "product" ? (i(), r("p", na, s(e.paragraph), 1)) : v("", !0),
|
|
1194
1259
|
u(n.$slots, "card-label")
|
|
1195
1260
|
], 38)
|
|
1196
1261
|
]));
|
|
1197
1262
|
}
|
|
1198
1263
|
});
|
|
1199
|
-
const
|
|
1264
|
+
const oa = /* @__PURE__ */ h(sa, [["__scopeId", "data-v-b50e8101"]]), da = (e) => (P("data-v-f5acdf7e"), e = e(), H(), e), ca = { class: "event__wrapper" }, ua = { class: "event__headline" }, _a = { class: "event__date-location" }, ma = /* @__PURE__ */ da(() => /* @__PURE__ */ t("br", null, null, -1)), ha = { class: "event__exhibitor" }, va = /* @__PURE__ */ m({
|
|
1200
1265
|
__name: "event-card",
|
|
1201
1266
|
props: {
|
|
1202
1267
|
eventType: {
|
|
@@ -1221,25 +1286,25 @@ const Kt = /* @__PURE__ */ h(Yt, [["__scopeId", "data-v-b50e8101"]]), Qt = (e) =
|
|
|
1221
1286
|
}
|
|
1222
1287
|
},
|
|
1223
1288
|
setup(e) {
|
|
1224
|
-
return (
|
|
1289
|
+
return (a, l) => (i(), r("div", ca, [
|
|
1225
1290
|
k(F, {
|
|
1226
1291
|
"label-dark": !1,
|
|
1227
1292
|
text: e.eventType ? e.eventType : ""
|
|
1228
1293
|
}, null, 8, ["text"]),
|
|
1229
|
-
t("div",
|
|
1230
|
-
t("div",
|
|
1294
|
+
t("div", ua, s(e.headline), 1),
|
|
1295
|
+
t("div", _a, [
|
|
1231
1296
|
O(s(e.dateTime), 1),
|
|
1232
|
-
|
|
1297
|
+
ma,
|
|
1233
1298
|
O(s(e.location), 1)
|
|
1234
1299
|
]),
|
|
1235
|
-
t("div",
|
|
1300
|
+
t("div", ha, "Exhibitor: " + s(e.exhibitor), 1)
|
|
1236
1301
|
]));
|
|
1237
1302
|
}
|
|
1238
1303
|
});
|
|
1239
|
-
const
|
|
1304
|
+
const ga = /* @__PURE__ */ h(va, [["__scopeId", "data-v-f5acdf7e"]]), fa = { class: "facts__wrapper" }, ya = { class: "facts__content" }, ba = { class: "facts__headline" }, pa = { class: "facts" }, ka = { class: "fact" }, $a = { class: "fact__value" }, wa = { class: "fact__metric" }, Sa = {
|
|
1240
1305
|
key: 0,
|
|
1241
1306
|
class: "facts__link"
|
|
1242
|
-
},
|
|
1307
|
+
}, xa = /* @__PURE__ */ m({
|
|
1243
1308
|
__name: "facts",
|
|
1244
1309
|
props: {
|
|
1245
1310
|
headline: {
|
|
@@ -1257,26 +1322,26 @@ const ra = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-f5acdf7e"]]), na = { cla
|
|
|
1257
1322
|
}
|
|
1258
1323
|
},
|
|
1259
1324
|
setup(e) {
|
|
1260
|
-
return (
|
|
1261
|
-
t("div",
|
|
1262
|
-
t("h2",
|
|
1263
|
-
t("div",
|
|
1264
|
-
(i(!0), r(
|
|
1265
|
-
t("div",
|
|
1325
|
+
return (a, l) => (i(), r("div", fa, [
|
|
1326
|
+
t("div", ya, [
|
|
1327
|
+
t("h2", ba, s(e.headline), 1),
|
|
1328
|
+
t("div", pa, [
|
|
1329
|
+
(i(!0), r(q, null, D(e.facts, (n) => (i(), r("div", ka, [
|
|
1330
|
+
t("div", $a, [
|
|
1266
1331
|
t("span", null, s(n.value), 1)
|
|
1267
1332
|
]),
|
|
1268
|
-
t("div",
|
|
1333
|
+
t("div", wa, [
|
|
1269
1334
|
t("span", null, s(n.metric), 1)
|
|
1270
1335
|
])
|
|
1271
1336
|
]))), 256))
|
|
1272
1337
|
]),
|
|
1273
|
-
e.link ? (i(), r("div",
|
|
1274
|
-
k(
|
|
1338
|
+
e.link ? (i(), r("div", Sa, [
|
|
1339
|
+
k(C, {
|
|
1275
1340
|
linkType: "regular-light",
|
|
1276
1341
|
arrow: ""
|
|
1277
1342
|
}, {
|
|
1278
|
-
default:
|
|
1279
|
-
u(
|
|
1343
|
+
default: $(() => [
|
|
1344
|
+
u(a.$slots, "facts-link", {}, void 0, !0)
|
|
1280
1345
|
]),
|
|
1281
1346
|
_: 3
|
|
1282
1347
|
})
|
|
@@ -1285,10 +1350,10 @@ const ra = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-f5acdf7e"]]), na = { cla
|
|
|
1285
1350
|
]));
|
|
1286
1351
|
}
|
|
1287
1352
|
});
|
|
1288
|
-
const
|
|
1353
|
+
const Ia = /* @__PURE__ */ h(xa, [["__scopeId", "data-v-7fd89b0c"]]), qa = { class: "features__wrapper" }, Ma = { class: "features__content" }, Da = {
|
|
1289
1354
|
key: 0,
|
|
1290
1355
|
class: "features__headline"
|
|
1291
|
-
},
|
|
1356
|
+
}, Ba = { class: "features__body" }, La = { class: "features__element" }, Aa = { class: "element__headline" }, Ca = { class: "element__body" }, Ta = /* @__PURE__ */ m({
|
|
1292
1357
|
__name: "features",
|
|
1293
1358
|
props: {
|
|
1294
1359
|
headline: {
|
|
@@ -1303,21 +1368,21 @@ const va = /* @__PURE__ */ h(ha, [["__scopeId", "data-v-7fd89b0c"]]), ga = { cla
|
|
|
1303
1368
|
}
|
|
1304
1369
|
},
|
|
1305
1370
|
setup(e) {
|
|
1306
|
-
return (
|
|
1307
|
-
t("div",
|
|
1308
|
-
e.headline ? (i(), r("div",
|
|
1371
|
+
return (a, l) => (i(), r("div", qa, [
|
|
1372
|
+
t("div", Ma, [
|
|
1373
|
+
e.headline ? (i(), r("div", Da, [
|
|
1309
1374
|
t("h2", null, s(e.headline), 1)
|
|
1310
1375
|
])) : v("", !0),
|
|
1311
|
-
t("div",
|
|
1312
|
-
u(
|
|
1376
|
+
t("div", Ba, [
|
|
1377
|
+
u(a.$slots, "features-body", {}, void 0, !0)
|
|
1313
1378
|
]),
|
|
1314
1379
|
t("div", {
|
|
1315
1380
|
class: c(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
|
|
1316
1381
|
}, [
|
|
1317
|
-
(i(!0), r(
|
|
1318
|
-
k(
|
|
1319
|
-
default:
|
|
1320
|
-
u(
|
|
1382
|
+
(i(!0), r(q, null, D(e.elements, (n) => (i(), r("div", La, [
|
|
1383
|
+
k(B, { class: "element__icon" }, {
|
|
1384
|
+
default: $(() => [
|
|
1385
|
+
u(a.$slots, "features-icon", T(j({
|
|
1321
1386
|
src: n.icon.src,
|
|
1322
1387
|
height: 30,
|
|
1323
1388
|
width: 30,
|
|
@@ -1326,15 +1391,15 @@ const va = /* @__PURE__ */ h(ha, [["__scopeId", "data-v-7fd89b0c"]]), ga = { cla
|
|
|
1326
1391
|
]),
|
|
1327
1392
|
_: 2
|
|
1328
1393
|
}, 1024),
|
|
1329
|
-
t("p",
|
|
1330
|
-
t("p",
|
|
1394
|
+
t("p", Aa, s(n.headline), 1),
|
|
1395
|
+
t("p", Ca, s(n.body), 1)
|
|
1331
1396
|
]))), 256))
|
|
1332
1397
|
], 2)
|
|
1333
1398
|
])
|
|
1334
1399
|
]));
|
|
1335
1400
|
}
|
|
1336
1401
|
});
|
|
1337
|
-
const
|
|
1402
|
+
const ja = /* @__PURE__ */ h(Ta, [["__scopeId", "data-v-782af0c4"]]), Na = { class: "image__wrapper" }, za = { class: "image__content" }, Va = { class: "image__image" }, Oa = { class: "image__caption" }, Pa = /* @__PURE__ */ m({
|
|
1338
1403
|
__name: "image",
|
|
1339
1404
|
props: {
|
|
1340
1405
|
caption: {
|
|
@@ -1351,31 +1416,31 @@ const Sa = /* @__PURE__ */ h(wa, [["__scopeId", "data-v-782af0c4"]]), xa = { cla
|
|
|
1351
1416
|
}
|
|
1352
1417
|
},
|
|
1353
1418
|
setup(e) {
|
|
1354
|
-
return (
|
|
1355
|
-
t("div",
|
|
1356
|
-
t("div",
|
|
1357
|
-
k(
|
|
1358
|
-
default:
|
|
1359
|
-
u(
|
|
1419
|
+
return (a, l) => (i(), r("div", Na, [
|
|
1420
|
+
t("div", za, [
|
|
1421
|
+
t("div", Va, [
|
|
1422
|
+
k(B, null, {
|
|
1423
|
+
default: $(() => [
|
|
1424
|
+
u(a.$slots, "image", T(j({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1360
1425
|
]),
|
|
1361
1426
|
_: 3
|
|
1362
1427
|
})
|
|
1363
1428
|
]),
|
|
1364
|
-
t("p",
|
|
1429
|
+
t("p", Oa, s(e.caption), 1)
|
|
1365
1430
|
])
|
|
1366
1431
|
]));
|
|
1367
1432
|
}
|
|
1368
1433
|
});
|
|
1369
|
-
const
|
|
1434
|
+
const Ha = /* @__PURE__ */ h(Pa, [["__scopeId", "data-v-6dde0544"]]), Za = { class: "gallery__large" }, Ra = {
|
|
1370
1435
|
key: 0,
|
|
1371
1436
|
class: "image image--large"
|
|
1372
|
-
},
|
|
1437
|
+
}, Ea = {
|
|
1373
1438
|
key: 1,
|
|
1374
1439
|
class: "video"
|
|
1375
|
-
},
|
|
1440
|
+
}, Ua = { class: "image image--small" }, Wa = {
|
|
1376
1441
|
key: 0,
|
|
1377
1442
|
class: "body"
|
|
1378
|
-
},
|
|
1443
|
+
}, Fa = /* @__PURE__ */ m({
|
|
1379
1444
|
__name: "image-gallery",
|
|
1380
1445
|
props: {
|
|
1381
1446
|
mediaLarge: {
|
|
@@ -1414,7 +1479,7 @@ const Ba = /* @__PURE__ */ h(Da, [["__scopeId", "data-v-6dde0544"]]), La = { cla
|
|
|
1414
1479
|
}
|
|
1415
1480
|
},
|
|
1416
1481
|
setup(e) {
|
|
1417
|
-
return (
|
|
1482
|
+
return (a, l) => (i(), r("div", {
|
|
1418
1483
|
class: c([
|
|
1419
1484
|
"gallery__wrapper",
|
|
1420
1485
|
e.bgColor === "light" ? "gallery__wrapper--light" : e.bgColor === "dark" ? "gallery__wrapper--dark" : ""
|
|
@@ -1426,11 +1491,11 @@ const Ba = /* @__PURE__ */ h(Da, [["__scopeId", "data-v-6dde0544"]]), La = { cla
|
|
|
1426
1491
|
e.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1427
1492
|
])
|
|
1428
1493
|
}, [
|
|
1429
|
-
t("div",
|
|
1430
|
-
e.mediaLarge && e.mediaType === "image" ? (i(), r("div",
|
|
1431
|
-
k(
|
|
1432
|
-
default:
|
|
1433
|
-
u(
|
|
1494
|
+
t("div", Za, [
|
|
1495
|
+
e.mediaLarge && e.mediaType === "image" ? (i(), r("div", Ra, [
|
|
1496
|
+
k(B, null, {
|
|
1497
|
+
default: $(() => [
|
|
1498
|
+
u(a.$slots, "image-large", T(j({
|
|
1434
1499
|
width: 617,
|
|
1435
1500
|
height: 530,
|
|
1436
1501
|
src: e.mediaLarge.src,
|
|
@@ -1440,7 +1505,7 @@ const Ba = /* @__PURE__ */ h(Da, [["__scopeId", "data-v-6dde0544"]]), La = { cla
|
|
|
1440
1505
|
_: 3
|
|
1441
1506
|
})
|
|
1442
1507
|
])) : v("", !0),
|
|
1443
|
-
e.mediaLarge && e.mediaType === "video" ? (i(), r("div",
|
|
1508
|
+
e.mediaLarge && e.mediaType === "video" ? (i(), r("div", Ea, [
|
|
1444
1509
|
k(R, {
|
|
1445
1510
|
src: e.mediaLarge.src,
|
|
1446
1511
|
localVideo: "",
|
|
@@ -1456,16 +1521,16 @@ const Ba = /* @__PURE__ */ h(Da, [["__scopeId", "data-v-6dde0544"]]), La = { cla
|
|
|
1456
1521
|
])) : v("", !0)
|
|
1457
1522
|
]),
|
|
1458
1523
|
t("div", {
|
|
1459
|
-
style:
|
|
1524
|
+
style: se([e.mediaSmall.length == 2 ? "grid-gap: 38px;" : ""]),
|
|
1460
1525
|
class: c([
|
|
1461
1526
|
"gallery__small",
|
|
1462
1527
|
e.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1463
1528
|
])
|
|
1464
1529
|
}, [
|
|
1465
|
-
(i(!0), r(
|
|
1466
|
-
k(
|
|
1467
|
-
default:
|
|
1468
|
-
u(
|
|
1530
|
+
(i(!0), r(q, null, D(e.mediaSmall, (n) => (i(), r("div", Ua, [
|
|
1531
|
+
k(B, null, {
|
|
1532
|
+
default: $(() => [
|
|
1533
|
+
u(a.$slots, "image-small", T(j({
|
|
1469
1534
|
width: 328,
|
|
1470
1535
|
height: 246,
|
|
1471
1536
|
src: n.src,
|
|
@@ -1475,7 +1540,7 @@ const Ba = /* @__PURE__ */ h(Da, [["__scopeId", "data-v-6dde0544"]]), La = { cla
|
|
|
1475
1540
|
_: 2
|
|
1476
1541
|
}, 1024)
|
|
1477
1542
|
]))), 256)),
|
|
1478
|
-
e.mediaSmall.length < 2 ? (i(), r("div",
|
|
1543
|
+
e.mediaSmall.length < 2 ? (i(), r("div", Wa, [
|
|
1479
1544
|
t("p", null, s(e.body), 1)
|
|
1480
1545
|
])) : v("", !0)
|
|
1481
1546
|
], 6)
|
|
@@ -1483,7 +1548,7 @@ const Ba = /* @__PURE__ */ h(Da, [["__scopeId", "data-v-6dde0544"]]), La = { cla
|
|
|
1483
1548
|
], 2));
|
|
1484
1549
|
}
|
|
1485
1550
|
});
|
|
1486
|
-
const
|
|
1551
|
+
const Ga = /* @__PURE__ */ h(Fa, [["__scopeId", "data-v-047e5de9"]]), Ja = { class: "headline__wrapper" }, Ya = { class: "headline__h1" }, Ka = /* @__PURE__ */ m({
|
|
1487
1552
|
__name: "headline",
|
|
1488
1553
|
props: {
|
|
1489
1554
|
headline: {
|
|
@@ -1500,18 +1565,18 @@ const za = /* @__PURE__ */ h(Na, [["__scopeId", "data-v-047e5de9"]]), Va = { cla
|
|
|
1500
1565
|
}
|
|
1501
1566
|
},
|
|
1502
1567
|
setup(e) {
|
|
1503
|
-
return (
|
|
1568
|
+
return (a, l) => (i(), r("div", Ja, [
|
|
1504
1569
|
t("div", {
|
|
1505
1570
|
class: c([
|
|
1506
1571
|
e.article ? "headline__content--article" : e.noSubMenu ? "headline__content--nosubmenu" : "headline__content--default"
|
|
1507
1572
|
])
|
|
1508
1573
|
}, [
|
|
1509
|
-
t("h1",
|
|
1574
|
+
t("h1", Ya, s(e.headline), 1)
|
|
1510
1575
|
], 2)
|
|
1511
1576
|
]));
|
|
1512
1577
|
}
|
|
1513
1578
|
});
|
|
1514
|
-
const
|
|
1579
|
+
const Qa = /* @__PURE__ */ h(Ka, [["__scopeId", "data-v-931bc5aa"]]), Xa = { class: "micro-stories__splide" }, el = /* @__PURE__ */ m({
|
|
1515
1580
|
__name: "micro-stories",
|
|
1516
1581
|
props: {
|
|
1517
1582
|
stories: {
|
|
@@ -1534,20 +1599,20 @@ const Ha = /* @__PURE__ */ h(Pa, [["__scopeId", "data-v-931bc5aa"]]), Za = { cla
|
|
|
1534
1599
|
}
|
|
1535
1600
|
},
|
|
1536
1601
|
setup(e) {
|
|
1537
|
-
return (
|
|
1602
|
+
return (a, l) => (i(), r("div", {
|
|
1538
1603
|
class: c([
|
|
1539
1604
|
"micro-stories__wrapper",
|
|
1540
1605
|
e.bgColor == "white" ? "micro-stories__wrapper--white" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
|
|
1541
1606
|
])
|
|
1542
1607
|
}, [
|
|
1543
|
-
t("div",
|
|
1544
|
-
u(
|
|
1608
|
+
t("div", Xa, [
|
|
1609
|
+
u(a.$slots, "micro-stories-slides")
|
|
1545
1610
|
]),
|
|
1546
|
-
u(
|
|
1611
|
+
u(a.$slots, "micro-stories-controls")
|
|
1547
1612
|
], 2));
|
|
1548
1613
|
}
|
|
1549
1614
|
});
|
|
1550
|
-
const
|
|
1615
|
+
const tl = { class: "product-hero__wrapper" }, al = { class: "product-hero__content" }, ll = { class: "product-hero__headline" }, il = { class: "product-hero__video" }, rl = /* @__PURE__ */ m({
|
|
1551
1616
|
__name: "product-hero",
|
|
1552
1617
|
props: {
|
|
1553
1618
|
headline: {
|
|
@@ -1572,12 +1637,12 @@ const Ea = { class: "product-hero__wrapper" }, Ua = { class: "product-hero__cont
|
|
|
1572
1637
|
}
|
|
1573
1638
|
},
|
|
1574
1639
|
setup(e) {
|
|
1575
|
-
return (
|
|
1576
|
-
t("div",
|
|
1577
|
-
t("div",
|
|
1640
|
+
return (a, l) => (i(), r("div", tl, [
|
|
1641
|
+
t("div", al, [
|
|
1642
|
+
t("div", ll, [
|
|
1578
1643
|
t("h1", null, s(e.headline), 1)
|
|
1579
1644
|
]),
|
|
1580
|
-
t("div",
|
|
1645
|
+
t("div", il, [
|
|
1581
1646
|
k(R, {
|
|
1582
1647
|
play: !0,
|
|
1583
1648
|
localVideo: !0,
|
|
@@ -1594,7 +1659,7 @@ const Ea = { class: "product-hero__wrapper" }, Ua = { class: "product-hero__cont
|
|
|
1594
1659
|
]));
|
|
1595
1660
|
}
|
|
1596
1661
|
});
|
|
1597
|
-
const
|
|
1662
|
+
const nl = /* @__PURE__ */ h(rl, [["__scopeId", "data-v-3ad48049"]]), sl = { class: "promo__content" }, ol = /* @__PURE__ */ m({
|
|
1598
1663
|
__name: "promo",
|
|
1599
1664
|
props: {
|
|
1600
1665
|
label: {
|
|
@@ -1642,14 +1707,14 @@ const Ja = /* @__PURE__ */ h(Ga, [["__scopeId", "data-v-3ad48049"]]), Ya = { cla
|
|
|
1642
1707
|
}
|
|
1643
1708
|
},
|
|
1644
1709
|
setup(e) {
|
|
1645
|
-
return (
|
|
1710
|
+
return (a, l) => (i(), r("div", {
|
|
1646
1711
|
class: c([
|
|
1647
1712
|
"promo__wrapper",
|
|
1648
1713
|
e.variant === "dark" ? "promo__wrapper--dark" : e.variant === "light" ? "promo__wrapper--light" : "",
|
|
1649
1714
|
e.teaser ? "promo__wrapper--teaser" : ""
|
|
1650
1715
|
])
|
|
1651
1716
|
}, [
|
|
1652
|
-
t("div",
|
|
1717
|
+
t("div", sl, [
|
|
1653
1718
|
e.mediaType === "image" ? (i(), r("div", {
|
|
1654
1719
|
key: 0,
|
|
1655
1720
|
class: c([
|
|
@@ -1657,9 +1722,9 @@ const Ja = /* @__PURE__ */ h(Ga, [["__scopeId", "data-v-3ad48049"]]), Ya = { cla
|
|
|
1657
1722
|
e.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1658
1723
|
])
|
|
1659
1724
|
}, [
|
|
1660
|
-
k(
|
|
1661
|
-
default:
|
|
1662
|
-
u(
|
|
1725
|
+
k(B, null, {
|
|
1726
|
+
default: $(() => [
|
|
1727
|
+
u(a.$slots, "promo-image", T(j({ src: e.src, width: 1920, alt: e.alt, height: 1080 })))
|
|
1663
1728
|
]),
|
|
1664
1729
|
_: 3
|
|
1665
1730
|
})
|
|
@@ -1689,7 +1754,7 @@ const Ja = /* @__PURE__ */ h(Ga, [["__scopeId", "data-v-3ad48049"]]), Ya = { cla
|
|
|
1689
1754
|
e.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1690
1755
|
])
|
|
1691
1756
|
}, [
|
|
1692
|
-
e.label ? (i(),
|
|
1757
|
+
e.label ? (i(), A(F, {
|
|
1693
1758
|
key: 0,
|
|
1694
1759
|
text: e.label,
|
|
1695
1760
|
labelDark: e.variant === "dark"
|
|
@@ -1700,22 +1765,22 @@ const Ja = /* @__PURE__ */ h(Ga, [["__scopeId", "data-v-3ad48049"]]), Ya = { cla
|
|
|
1700
1765
|
e.variant === "dark" ? "promo__title--dark" : ""
|
|
1701
1766
|
])
|
|
1702
1767
|
}, s(e.headline), 3),
|
|
1703
|
-
e.linkType === "link" ? (i(),
|
|
1768
|
+
e.linkType === "link" ? (i(), A(C, {
|
|
1704
1769
|
key: 1,
|
|
1705
1770
|
linkType: e.variant === "dark" ? "regular-dark" : (e.variant === "light", "regular-light"),
|
|
1706
1771
|
arrow: ""
|
|
1707
1772
|
}, {
|
|
1708
|
-
default:
|
|
1709
|
-
u(
|
|
1773
|
+
default: $(() => [
|
|
1774
|
+
u(a.$slots, "promo-link")
|
|
1710
1775
|
]),
|
|
1711
1776
|
_: 3
|
|
1712
1777
|
}, 8, ["linkType"])) : v("", !0),
|
|
1713
|
-
e.linkType === "button" ? (i(),
|
|
1778
|
+
e.linkType === "button" ? (i(), A(C, {
|
|
1714
1779
|
key: 2,
|
|
1715
1780
|
linkType: e.variant === "dark" ? "secondary-dark" : (e.variant === "light", "secondary")
|
|
1716
1781
|
}, {
|
|
1717
|
-
default:
|
|
1718
|
-
u(
|
|
1782
|
+
default: $(() => [
|
|
1783
|
+
u(a.$slots, "promo-link")
|
|
1719
1784
|
]),
|
|
1720
1785
|
_: 3
|
|
1721
1786
|
}, 8, ["linkType"])) : v("", !0)
|
|
@@ -1724,10 +1789,10 @@ const Ja = /* @__PURE__ */ h(Ga, [["__scopeId", "data-v-3ad48049"]]), Ya = { cla
|
|
|
1724
1789
|
], 2));
|
|
1725
1790
|
}
|
|
1726
1791
|
});
|
|
1727
|
-
const
|
|
1792
|
+
const dl = /* @__PURE__ */ h(ol, [["__scopeId", "data-v-24c28200"]]), cl = (e) => (P("data-v-3cc55dbf"), e = e(), H(), e), ul = { class: "quote__wrapper" }, _l = { class: "quote__content" }, ml = /* @__PURE__ */ cl(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), hl = { class: "quote__quote" }, vl = { class: "quote__quote-text" }, gl = { class: "quote__author" }, fl = {
|
|
1728
1793
|
key: 0,
|
|
1729
1794
|
class: "quote__image"
|
|
1730
|
-
},
|
|
1795
|
+
}, yl = { class: "quote__text" }, bl = { class: "quote__author-name" }, pl = { class: "quote__author-title" }, kl = /* @__PURE__ */ m({
|
|
1731
1796
|
__name: "quote",
|
|
1732
1797
|
props: {
|
|
1733
1798
|
quote: {
|
|
@@ -1748,16 +1813,16 @@ const Qa = /* @__PURE__ */ h(Ka, [["__scopeId", "data-v-24c28200"]]), Xa = (e) =
|
|
|
1748
1813
|
}
|
|
1749
1814
|
},
|
|
1750
1815
|
setup(e) {
|
|
1751
|
-
return (
|
|
1752
|
-
t("div",
|
|
1753
|
-
|
|
1754
|
-
t("div",
|
|
1755
|
-
t("p",
|
|
1756
|
-
t("div",
|
|
1757
|
-
e.authorImage ? (i(), r("div",
|
|
1758
|
-
k(
|
|
1759
|
-
default:
|
|
1760
|
-
u(
|
|
1816
|
+
return (a, l) => (i(), r("div", ul, [
|
|
1817
|
+
t("div", _l, [
|
|
1818
|
+
ml,
|
|
1819
|
+
t("div", hl, [
|
|
1820
|
+
t("p", vl, s(e.quote), 1),
|
|
1821
|
+
t("div", gl, [
|
|
1822
|
+
e.authorImage ? (i(), r("div", fl, [
|
|
1823
|
+
k(B, null, {
|
|
1824
|
+
default: $(() => [
|
|
1825
|
+
u(a.$slots, "author-image", T(j({
|
|
1761
1826
|
src: e.authorImage + "/m/100x100",
|
|
1762
1827
|
width: 60,
|
|
1763
1828
|
height: 60
|
|
@@ -1766,9 +1831,9 @@ const Qa = /* @__PURE__ */ h(Ka, [["__scopeId", "data-v-24c28200"]]), Xa = (e) =
|
|
|
1766
1831
|
_: 3
|
|
1767
1832
|
})
|
|
1768
1833
|
])) : v("", !0),
|
|
1769
|
-
t("div",
|
|
1770
|
-
t("p",
|
|
1771
|
-
t("p",
|
|
1834
|
+
t("div", yl, [
|
|
1835
|
+
t("p", bl, s(e.author), 1),
|
|
1836
|
+
t("p", pl, s(e.authorTitle), 1)
|
|
1772
1837
|
])
|
|
1773
1838
|
])
|
|
1774
1839
|
])
|
|
@@ -1776,13 +1841,13 @@ const Qa = /* @__PURE__ */ h(Ka, [["__scopeId", "data-v-24c28200"]]), Xa = (e) =
|
|
|
1776
1841
|
]));
|
|
1777
1842
|
}
|
|
1778
1843
|
});
|
|
1779
|
-
const
|
|
1844
|
+
const $l = /* @__PURE__ */ h(kl, [["__scopeId", "data-v-3cc55dbf"]]), wl = { class: "rich-text__wrapper" }, Sl = {
|
|
1780
1845
|
key: 0,
|
|
1781
1846
|
class: "rich-text__links"
|
|
1782
|
-
},
|
|
1847
|
+
}, xl = {
|
|
1783
1848
|
key: 0,
|
|
1784
1849
|
class: "rich-text__bullet-list"
|
|
1785
|
-
},
|
|
1850
|
+
}, Il = /* @__PURE__ */ m({
|
|
1786
1851
|
__name: "rich-text",
|
|
1787
1852
|
props: {
|
|
1788
1853
|
headline: {
|
|
@@ -1817,14 +1882,14 @@ const ul = /* @__PURE__ */ h(cl, [["__scopeId", "data-v-3cc55dbf"]]), _l = { cla
|
|
|
1817
1882
|
}
|
|
1818
1883
|
},
|
|
1819
1884
|
setup(e) {
|
|
1820
|
-
return (
|
|
1885
|
+
return (a, l) => (i(), r("div", {
|
|
1821
1886
|
class: c([
|
|
1822
1887
|
"rich-text",
|
|
1823
1888
|
e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1824
1889
|
])
|
|
1825
1890
|
}, [
|
|
1826
|
-
t("div",
|
|
1827
|
-
e.label ? (i(),
|
|
1891
|
+
t("div", wl, [
|
|
1892
|
+
e.label ? (i(), A(F, {
|
|
1828
1893
|
key: 0,
|
|
1829
1894
|
text: e.label,
|
|
1830
1895
|
labelDark: !1
|
|
@@ -1848,13 +1913,13 @@ const ul = /* @__PURE__ */ h(cl, [["__scopeId", "data-v-3cc55dbf"]]), _l = { cla
|
|
|
1848
1913
|
e.bulletList || e.image ? "rich-text__body--content-right" : ""
|
|
1849
1914
|
])
|
|
1850
1915
|
}, [
|
|
1851
|
-
u(
|
|
1852
|
-
e.links ? (i(), r("div",
|
|
1853
|
-
u(
|
|
1916
|
+
u(a.$slots, "rich-text-content"),
|
|
1917
|
+
e.links ? (i(), r("div", Sl, [
|
|
1918
|
+
u(a.$slots, "rich-text-links")
|
|
1854
1919
|
])) : v("", !0)
|
|
1855
1920
|
], 2),
|
|
1856
|
-
e.bulletList ? (i(), r("div",
|
|
1857
|
-
u(
|
|
1921
|
+
e.bulletList ? (i(), r("div", xl, [
|
|
1922
|
+
u(a.$slots, "rich-text-bullet-list")
|
|
1858
1923
|
])) : v("", !0),
|
|
1859
1924
|
e.image ? (i(), r("div", {
|
|
1860
1925
|
key: 1,
|
|
@@ -1863,9 +1928,9 @@ const ul = /* @__PURE__ */ h(cl, [["__scopeId", "data-v-3cc55dbf"]]), _l = { cla
|
|
|
1863
1928
|
e.imageClip ? "rich-text__image--clip" : ""
|
|
1864
1929
|
])
|
|
1865
1930
|
}, [
|
|
1866
|
-
k(
|
|
1867
|
-
default:
|
|
1868
|
-
u(
|
|
1931
|
+
k(B, null, {
|
|
1932
|
+
default: $(() => [
|
|
1933
|
+
u(a.$slots, "rich-text-image", T(j({ width: 865, height: 307 })))
|
|
1869
1934
|
]),
|
|
1870
1935
|
_: 3
|
|
1871
1936
|
})
|
|
@@ -1875,10 +1940,10 @@ const ul = /* @__PURE__ */ h(cl, [["__scopeId", "data-v-3cc55dbf"]]), _l = { cla
|
|
|
1875
1940
|
], 2));
|
|
1876
1941
|
}
|
|
1877
1942
|
});
|
|
1878
|
-
const
|
|
1943
|
+
const ql = /* @__PURE__ */ h(Il, [["__scopeId", "data-v-a94d5dd4"]]), Ml = { class: "triple-card-display__wrapper" }, Dl = {
|
|
1879
1944
|
key: 0,
|
|
1880
1945
|
class: "triple-card__content"
|
|
1881
|
-
},
|
|
1946
|
+
}, Bl = { key: 0 }, Ll = { key: 1 }, Al = { class: "triple-card__cards" }, Cl = /* @__PURE__ */ m({
|
|
1882
1947
|
__name: "triple-card-display",
|
|
1883
1948
|
props: {
|
|
1884
1949
|
headline: {
|
|
@@ -1895,31 +1960,31 @@ const gl = /* @__PURE__ */ h(vl, [["__scopeId", "data-v-a94d5dd4"]]), fl = { cla
|
|
|
1895
1960
|
}
|
|
1896
1961
|
},
|
|
1897
1962
|
setup(e) {
|
|
1898
|
-
return (
|
|
1963
|
+
return (a, l) => (i(), r("div", {
|
|
1899
1964
|
class: c([
|
|
1900
1965
|
"triple-card-display",
|
|
1901
1966
|
e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
|
|
1902
1967
|
])
|
|
1903
1968
|
}, [
|
|
1904
|
-
t("div",
|
|
1905
|
-
e.headline || e.paragraph ? (i(), r("div",
|
|
1906
|
-
e.headline ? (i(), r("h2",
|
|
1907
|
-
e.paragraph ? (i(), r("p",
|
|
1969
|
+
t("div", Ml, [
|
|
1970
|
+
e.headline || e.paragraph ? (i(), r("div", Dl, [
|
|
1971
|
+
e.headline ? (i(), r("h2", Bl, s(e.headline), 1)) : v("", !0),
|
|
1972
|
+
e.paragraph ? (i(), r("p", Ll, s(e.paragraph), 1)) : v("", !0)
|
|
1908
1973
|
])) : v("", !0),
|
|
1909
|
-
t("div",
|
|
1910
|
-
u(
|
|
1974
|
+
t("div", Al, [
|
|
1975
|
+
u(a.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
1911
1976
|
])
|
|
1912
1977
|
])
|
|
1913
1978
|
], 2));
|
|
1914
1979
|
}
|
|
1915
1980
|
});
|
|
1916
|
-
const
|
|
1981
|
+
const Tl = /* @__PURE__ */ h(Cl, [["__scopeId", "data-v-f0ce4135"]]), jl = { class: "vimeo" }, Nl = {
|
|
1917
1982
|
key: 0,
|
|
1918
1983
|
class: "vimeo__headline"
|
|
1919
|
-
},
|
|
1984
|
+
}, zl = {
|
|
1920
1985
|
key: 1,
|
|
1921
1986
|
class: "vimeo__description"
|
|
1922
|
-
},
|
|
1987
|
+
}, Vl = /* @__PURE__ */ m({
|
|
1923
1988
|
__name: "vimeo",
|
|
1924
1989
|
props: {
|
|
1925
1990
|
headline: {
|
|
@@ -1930,18 +1995,18 @@ const wl = /* @__PURE__ */ h($l, [["__scopeId", "data-v-f0ce4135"]]), Sl = { cla
|
|
|
1930
1995
|
}
|
|
1931
1996
|
},
|
|
1932
1997
|
setup(e) {
|
|
1933
|
-
return (
|
|
1998
|
+
return (a, l) => (i(), r("div", jl, [
|
|
1934
1999
|
t("div", {
|
|
1935
2000
|
class: c(["vimeo__wrapper", e.headline ? "vimeo__wrapper--headline" : ""])
|
|
1936
2001
|
}, [
|
|
1937
|
-
e.headline ? (i(), r("h2",
|
|
1938
|
-
u(
|
|
1939
|
-
e.description ? (i(), r("p",
|
|
2002
|
+
e.headline ? (i(), r("h2", Nl, s(e.headline), 1)) : v("", !0),
|
|
2003
|
+
u(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
2004
|
+
e.description ? (i(), r("p", zl, s(e.description), 1)) : v("", !0)
|
|
1940
2005
|
], 2)
|
|
1941
2006
|
]));
|
|
1942
2007
|
}
|
|
1943
2008
|
});
|
|
1944
|
-
const
|
|
2009
|
+
const Ol = /* @__PURE__ */ h(Vl, [["__scopeId", "data-v-a6c209f4"]]), Pl = { class: "not-found__wrapper" }, Hl = { class: "not-found__content" }, Zl = { class: "not-found__headline" }, Rl = { class: "not-found__body" }, El = /* @__PURE__ */ m({
|
|
1945
2010
|
__name: "404",
|
|
1946
2011
|
props: {
|
|
1947
2012
|
headline: {
|
|
@@ -1950,17 +2015,17 @@ const Ml = /* @__PURE__ */ h(ql, [["__scopeId", "data-v-a6c209f4"]]), Dl = { cla
|
|
|
1950
2015
|
}
|
|
1951
2016
|
},
|
|
1952
2017
|
setup(e) {
|
|
1953
|
-
return (
|
|
1954
|
-
t("div",
|
|
1955
|
-
t("h1",
|
|
1956
|
-
t("div",
|
|
1957
|
-
u(
|
|
2018
|
+
return (a, l) => (i(), r("div", Pl, [
|
|
2019
|
+
t("div", Hl, [
|
|
2020
|
+
t("h1", Zl, s(e.headline), 1),
|
|
2021
|
+
t("div", Rl, [
|
|
2022
|
+
u(a.$slots, "not-found-body", {}, void 0, !0)
|
|
1958
2023
|
])
|
|
1959
2024
|
])
|
|
1960
2025
|
]));
|
|
1961
2026
|
}
|
|
1962
2027
|
});
|
|
1963
|
-
const
|
|
2028
|
+
const Ul = /* @__PURE__ */ h(El, [["__scopeId", "data-v-c2038fe4"]]), Wl = { class: "filter__wrapper" }, Fl = { class: "filter__content" }, Gl = { class: "filter__dropdowns" }, Jl = { class: "filter__chips" }, Yl = /* @__PURE__ */ m({
|
|
1964
2029
|
__name: "filter",
|
|
1965
2030
|
props: {
|
|
1966
2031
|
hasChips: {
|
|
@@ -1970,29 +2035,29 @@ const Tl = /* @__PURE__ */ h(Cl, [["__scopeId", "data-v-c2038fe4"]]), jl = { cla
|
|
|
1970
2035
|
},
|
|
1971
2036
|
emits: ["clearFilters"],
|
|
1972
2037
|
setup(e) {
|
|
1973
|
-
return (
|
|
1974
|
-
t("div",
|
|
1975
|
-
t("div",
|
|
1976
|
-
u(
|
|
2038
|
+
return (a, l) => (i(), r("div", Wl, [
|
|
2039
|
+
t("div", Fl, [
|
|
2040
|
+
t("div", Gl, [
|
|
2041
|
+
u(a.$slots, "filter-dropdowns", {}, void 0, !0)
|
|
1977
2042
|
]),
|
|
1978
|
-
t("div",
|
|
1979
|
-
u(
|
|
2043
|
+
t("div", Jl, [
|
|
2044
|
+
u(a.$slots, "filter-chips", {}, void 0, !0),
|
|
1980
2045
|
e.hasChips ? (i(), r("button", {
|
|
1981
2046
|
key: 0,
|
|
1982
2047
|
class: "filter__clear",
|
|
1983
|
-
onClick:
|
|
2048
|
+
onClick: l[0] || (l[0] = (n) => a.$emit("clearFilters"))
|
|
1984
2049
|
}, " Remove all filters ")) : v("", !0)
|
|
1985
2050
|
])
|
|
1986
2051
|
])
|
|
1987
2052
|
]));
|
|
1988
2053
|
}
|
|
1989
2054
|
});
|
|
1990
|
-
const
|
|
2055
|
+
const Kl = /* @__PURE__ */ h(Yl, [["__scopeId", "data-v-cf46dae2"]]), z = (e) => (P("data-v-6d9c55d4"), e = e(), H(), e), Ql = { class: "footer__wrapper" }, Xl = { class: "footer__content" }, ei = { class: "footer__sections" }, ti = { class: "section" }, ai = { class: "section__title" }, li = { class: "section__list" }, ii = { class: "section" }, ri = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), ni = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), si = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), oi = /* @__PURE__ */ z(() => /* @__PURE__ */ t("br", null, null, -1)), di = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), ci = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), ui = { class: "footer__bottom" }, _i = { class: "footer__copyright-policy" }, mi = { class: "copyright" }, hi = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, [
|
|
1991
2056
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
1992
2057
|
/* @__PURE__ */ O("Change region")
|
|
1993
|
-
], -1)),
|
|
1994
|
-
|
|
1995
|
-
],
|
|
2058
|
+
], -1)), vi = [
|
|
2059
|
+
hi
|
|
2060
|
+
], gi = { class: "footer__social" }, fi = ["href", "aria-label"], yi = /* @__PURE__ */ m({
|
|
1996
2061
|
__name: "footer",
|
|
1997
2062
|
props: {
|
|
1998
2063
|
footerSections: {
|
|
@@ -2009,77 +2074,77 @@ const Pl = /* @__PURE__ */ h(Ol, [["__scopeId", "data-v-cf46dae2"]]), z = (e) =>
|
|
|
2009
2074
|
type: Array,
|
|
2010
2075
|
default: [],
|
|
2011
2076
|
validator: (e) => {
|
|
2012
|
-
const
|
|
2077
|
+
const a = [
|
|
2013
2078
|
"linkedin",
|
|
2014
2079
|
"facebook",
|
|
2015
2080
|
"instagram",
|
|
2016
2081
|
"twitter",
|
|
2017
2082
|
"youtube"
|
|
2018
2083
|
];
|
|
2019
|
-
return e.every((
|
|
2084
|
+
return e.every((l) => a.includes(l.title));
|
|
2020
2085
|
}
|
|
2021
2086
|
}
|
|
2022
2087
|
},
|
|
2023
2088
|
emits: ["changeRegionClicked"],
|
|
2024
2089
|
setup(e) {
|
|
2025
|
-
return (
|
|
2026
|
-
t("footer",
|
|
2027
|
-
t("div",
|
|
2028
|
-
(i(!0), r(
|
|
2029
|
-
t("span",
|
|
2090
|
+
return (a, l) => (i(), r("div", Ql, [
|
|
2091
|
+
t("footer", Xl, [
|
|
2092
|
+
t("div", ei, [
|
|
2093
|
+
(i(!0), r(q, null, D(e.footerSections, (n) => (i(), r("div", ti, [
|
|
2094
|
+
t("span", ai, s(n.title), 1),
|
|
2030
2095
|
t("nav", null, [
|
|
2031
|
-
t("ul",
|
|
2032
|
-
u(
|
|
2096
|
+
t("ul", li, [
|
|
2097
|
+
u(a.$slots, "section-links", {
|
|
2033
2098
|
links: n.links
|
|
2034
2099
|
})
|
|
2035
2100
|
])
|
|
2036
2101
|
])
|
|
2037
2102
|
]))), 256)),
|
|
2038
|
-
t("div",
|
|
2039
|
-
|
|
2103
|
+
t("div", ii, [
|
|
2104
|
+
ri,
|
|
2040
2105
|
t("address", null, [
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
k(
|
|
2106
|
+
ni,
|
|
2107
|
+
si,
|
|
2108
|
+
oi,
|
|
2109
|
+
k(C, {
|
|
2045
2110
|
class: "footer__contact",
|
|
2046
2111
|
linkType: "regular-light",
|
|
2047
2112
|
underline: "false"
|
|
2048
2113
|
}, {
|
|
2049
|
-
default:
|
|
2050
|
-
|
|
2114
|
+
default: $(() => [
|
|
2115
|
+
di
|
|
2051
2116
|
]),
|
|
2052
2117
|
_: 1
|
|
2053
2118
|
}),
|
|
2054
|
-
k(
|
|
2119
|
+
k(C, {
|
|
2055
2120
|
class: "footer__contact",
|
|
2056
2121
|
linkType: "regular-light",
|
|
2057
2122
|
underline: "false"
|
|
2058
2123
|
}, {
|
|
2059
|
-
default:
|
|
2060
|
-
|
|
2124
|
+
default: $(() => [
|
|
2125
|
+
ci
|
|
2061
2126
|
]),
|
|
2062
2127
|
_: 1
|
|
2063
2128
|
})
|
|
2064
2129
|
])
|
|
2065
2130
|
])
|
|
2066
2131
|
]),
|
|
2067
|
-
t("div",
|
|
2068
|
-
t("div",
|
|
2069
|
-
t("p",
|
|
2132
|
+
t("div", ui, [
|
|
2133
|
+
t("div", _i, [
|
|
2134
|
+
t("p", mi, "© MiR " + s((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2070
2135
|
t("button", {
|
|
2071
2136
|
class: "footer__language-switcher",
|
|
2072
|
-
onClick:
|
|
2073
|
-
},
|
|
2074
|
-
u(
|
|
2075
|
-
u(
|
|
2137
|
+
onClick: l[0] || (l[0] = (n) => a.$emit("changeRegionClicked"))
|
|
2138
|
+
}, vi),
|
|
2139
|
+
u(a.$slots, "footer-privacy-link"),
|
|
2140
|
+
u(a.$slots, "footer-cookie-link")
|
|
2076
2141
|
]),
|
|
2077
|
-
t("div",
|
|
2078
|
-
(i(!0), r(
|
|
2142
|
+
t("div", gi, [
|
|
2143
|
+
(i(!0), r(q, null, D(e.socialMedia, (n) => (i(), A(C, {
|
|
2079
2144
|
underline: "false",
|
|
2080
2145
|
linkType: "regular"
|
|
2081
2146
|
}, {
|
|
2082
|
-
default:
|
|
2147
|
+
default: $(() => [
|
|
2083
2148
|
t("a", {
|
|
2084
2149
|
href: n.url,
|
|
2085
2150
|
"aria-label": n.title
|
|
@@ -2091,7 +2156,7 @@ const Pl = /* @__PURE__ */ h(Ol, [["__scopeId", "data-v-cf46dae2"]]), z = (e) =>
|
|
|
2091
2156
|
n.title === "linkedin" ? "bg-linkedin" : n.title === "facebook" ? "bg-facebook" : n.title === "instagram" ? "bg-instagram" : n.title === "twitter" ? "bg-twitter" : n.title === "youtube" ? "bg-youtube" : ""
|
|
2092
2157
|
]])
|
|
2093
2158
|
}, null, 2)
|
|
2094
|
-
], 8,
|
|
2159
|
+
], 8, fi)
|
|
2095
2160
|
]),
|
|
2096
2161
|
_: 2
|
|
2097
2162
|
}, 1024))), 256))
|
|
@@ -2101,19 +2166,19 @@ const Pl = /* @__PURE__ */ h(Ol, [["__scopeId", "data-v-cf46dae2"]]), z = (e) =>
|
|
|
2101
2166
|
]));
|
|
2102
2167
|
}
|
|
2103
2168
|
});
|
|
2104
|
-
const
|
|
2169
|
+
const bi = /* @__PURE__ */ h(yi, [["__scopeId", "data-v-6d9c55d4"]]), 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=", pi = { class: "header__wrapper" }, ki = { class: "nav-wrapper" }, $i = { class: "mir-link-logo" }, wi = { class: "main-nav-items" }, Si = {
|
|
2105
2170
|
id: "menu-dropdown",
|
|
2106
2171
|
ref: "dropdownDiv"
|
|
2107
|
-
},
|
|
2172
|
+
}, xi = {
|
|
2108
2173
|
key: 0,
|
|
2109
2174
|
src: de,
|
|
2110
2175
|
alt: "dropdownarrow"
|
|
2111
|
-
},
|
|
2176
|
+
}, Ii = {
|
|
2112
2177
|
key: 1,
|
|
2113
2178
|
src: de,
|
|
2114
2179
|
alt: "dropdownarrow",
|
|
2115
2180
|
style: { transform: "rotate(180deg)" }
|
|
2116
|
-
},
|
|
2181
|
+
}, qi = { class: "dropdown-content" }, Mi = { class: "nav-search-wrapper" }, Di = ["src"], Bi = { class: "mobile-logo-search-burger-wrapper" }, Li = { class: "mobile-mir-link-logo" }, Ai = { class: "mobile-search-wrapper" }, Ci = ["src"], Ti = ["onClick"], ji = ["src"], Ni = ["src"], zi = { class: "mobile-menu-content-wrapper" }, Vi = { class: "mobile-dropdown-content" }, Oi = /* @__PURE__ */ m({
|
|
2117
2182
|
__name: "header",
|
|
2118
2183
|
props: {
|
|
2119
2184
|
burgerState: {
|
|
@@ -2126,15 +2191,15 @@ const si = /* @__PURE__ */ h(oi, [["__scopeId", "data-v-6d9c55d4"]]), de = "data
|
|
|
2126
2191
|
}
|
|
2127
2192
|
},
|
|
2128
2193
|
emits: ["update:burgerState", "update:showDropDown"],
|
|
2129
|
-
setup(e, { emit:
|
|
2130
|
-
const
|
|
2131
|
-
|
|
2132
|
-
let n = null, o =
|
|
2194
|
+
setup(e, { emit: a }) {
|
|
2195
|
+
const l = e;
|
|
2196
|
+
S("");
|
|
2197
|
+
let n = null, o = S(l.burgerState), _ = S(l.showDropDown);
|
|
2133
2198
|
X(
|
|
2134
|
-
() =>
|
|
2199
|
+
() => l.burgerState,
|
|
2135
2200
|
(f) => o.value = f
|
|
2136
2201
|
), X(
|
|
2137
|
-
() =>
|
|
2202
|
+
() => l.showDropDown,
|
|
2138
2203
|
(f) => _.value = f
|
|
2139
2204
|
), we(() => {
|
|
2140
2205
|
n = (f) => {
|
|
@@ -2144,56 +2209,56 @@ const si = /* @__PURE__ */ h(oi, [["__scopeId", "data-v-6d9c55d4"]]), de = "data
|
|
|
2144
2209
|
n !== null && window.removeEventListener("click", n);
|
|
2145
2210
|
});
|
|
2146
2211
|
function x() {
|
|
2147
|
-
_.value = !_.value,
|
|
2212
|
+
_.value = !_.value, a("update:showDropDown", _.value);
|
|
2148
2213
|
}
|
|
2149
2214
|
function I() {
|
|
2150
|
-
o.value = !o.value,
|
|
2215
|
+
o.value = !o.value, a("update:burgerState", o.value);
|
|
2151
2216
|
}
|
|
2152
|
-
return (f, b) => (i(), r("div",
|
|
2217
|
+
return (f, b) => (i(), r("div", pi, [
|
|
2153
2218
|
t("nav", null, [
|
|
2154
|
-
t("div",
|
|
2155
|
-
t("div",
|
|
2219
|
+
t("div", ki, [
|
|
2220
|
+
t("div", $i, [
|
|
2156
2221
|
u(f.$slots, "link-logo", {}, void 0, !0)
|
|
2157
2222
|
]),
|
|
2158
|
-
t("ul",
|
|
2223
|
+
t("ul", wi, [
|
|
2159
2224
|
u(f.$slots, "main-nav-items", {}, void 0, !0)
|
|
2160
2225
|
]),
|
|
2161
|
-
t("div",
|
|
2226
|
+
t("div", Si, [
|
|
2162
2227
|
t("button", {
|
|
2163
2228
|
onClick: x,
|
|
2164
2229
|
class: "nav-dropdown-btn"
|
|
2165
2230
|
}, [
|
|
2166
2231
|
u(f.$slots, "dropdown-title", {}, void 0, !0),
|
|
2167
|
-
p(_) == !1 ? (i(), r("img",
|
|
2232
|
+
p(_) == !1 ? (i(), r("img", xi)) : (i(), r("img", Ii))
|
|
2168
2233
|
]),
|
|
2169
|
-
U(t("div",
|
|
2234
|
+
U(t("div", qi, [
|
|
2170
2235
|
u(f.$slots, "dropdown-links", {}, void 0, !0)
|
|
2171
2236
|
], 512), [
|
|
2172
2237
|
[G, p(_)]
|
|
2173
2238
|
])
|
|
2174
2239
|
], 512),
|
|
2175
|
-
t("div",
|
|
2240
|
+
t("div", Mi, [
|
|
2176
2241
|
t("button", null, [
|
|
2177
2242
|
t("img", {
|
|
2178
2243
|
src: p(o) == !0 ? p(le) : p(ae),
|
|
2179
2244
|
alt: "search icon"
|
|
2180
|
-
}, null, 8,
|
|
2245
|
+
}, null, 8, Di)
|
|
2181
2246
|
])
|
|
2182
2247
|
])
|
|
2183
2248
|
]),
|
|
2184
2249
|
t("div", {
|
|
2185
2250
|
class: c(["mobile-nav-wrapper", p(o) == !0 ? "mirsaic-mobile-bg" : ""])
|
|
2186
2251
|
}, [
|
|
2187
|
-
t("div",
|
|
2188
|
-
t("div",
|
|
2252
|
+
t("div", Bi, [
|
|
2253
|
+
t("div", Li, [
|
|
2189
2254
|
u(f.$slots, "link-logo", {}, void 0, !0)
|
|
2190
2255
|
]),
|
|
2191
|
-
t("div",
|
|
2256
|
+
t("div", Ai, [
|
|
2192
2257
|
t("button", null, [
|
|
2193
2258
|
t("img", {
|
|
2194
2259
|
src: p(o) == !0 ? p(le) : p(ae),
|
|
2195
2260
|
alt: "search icon"
|
|
2196
|
-
}, null, 8,
|
|
2261
|
+
}, null, 8, Ci)
|
|
2197
2262
|
])
|
|
2198
2263
|
]),
|
|
2199
2264
|
t("button", {
|
|
@@ -2203,18 +2268,18 @@ const si = /* @__PURE__ */ h(oi, [["__scopeId", "data-v-6d9c55d4"]]), de = "data
|
|
|
2203
2268
|
t("img", {
|
|
2204
2269
|
class: c(["burger-line", p(o) == !0 ? "burger-top-line-open" : ""]),
|
|
2205
2270
|
src: p(o) == !0 ? p(te) : p(ee)
|
|
2206
|
-
}, null, 10,
|
|
2271
|
+
}, null, 10, ji),
|
|
2207
2272
|
t("img", {
|
|
2208
2273
|
class: c(["burger-line", p(o) == !0 ? "burger-bottom-line-open" : ""]),
|
|
2209
2274
|
src: p(o) == !0 ? p(te) : p(ee)
|
|
2210
|
-
}, null, 10,
|
|
2211
|
-
], 8,
|
|
2275
|
+
}, null, 10, Ni)
|
|
2276
|
+
], 8, Ti)
|
|
2212
2277
|
]),
|
|
2213
|
-
U(t("div",
|
|
2278
|
+
U(t("div", zi, [
|
|
2214
2279
|
t("ul", null, [
|
|
2215
2280
|
u(f.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2216
2281
|
]),
|
|
2217
|
-
t("ul",
|
|
2282
|
+
t("ul", Vi, [
|
|
2218
2283
|
u(f.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2219
2284
|
u(f.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2220
2285
|
])
|
|
@@ -2226,7 +2291,7 @@ const si = /* @__PURE__ */ h(oi, [["__scopeId", "data-v-6d9c55d4"]]), de = "data
|
|
|
2226
2291
|
]));
|
|
2227
2292
|
}
|
|
2228
2293
|
});
|
|
2229
|
-
const
|
|
2294
|
+
const Pi = /* @__PURE__ */ h(Oi, [["__scopeId", "data-v-8ff68823"]]), Hi = { class: "language__wrapper" }, Zi = { class: "language__content" }, Ri = { class: "language__headline" }, Ei = { class: "language__paragraph" }, Ui = /* @__PURE__ */ m({
|
|
2230
2295
|
__name: "language-switcher",
|
|
2231
2296
|
props: {
|
|
2232
2297
|
headline: {
|
|
@@ -2237,16 +2302,16 @@ const Di = /* @__PURE__ */ h(Mi, [["__scopeId", "data-v-8ff68823"]]), Bi = { cla
|
|
|
2237
2302
|
}
|
|
2238
2303
|
},
|
|
2239
2304
|
setup(e) {
|
|
2240
|
-
return (
|
|
2241
|
-
t("div",
|
|
2242
|
-
t("h2",
|
|
2243
|
-
t("p",
|
|
2244
|
-
u(
|
|
2305
|
+
return (a, l) => (i(), r("div", Hi, [
|
|
2306
|
+
t("div", Zi, [
|
|
2307
|
+
t("h2", Ri, s(e.headline), 1),
|
|
2308
|
+
t("p", Ei, s(e.paragraph), 1),
|
|
2309
|
+
u(a.$slots, "language-links", {}, void 0, !0)
|
|
2245
2310
|
])
|
|
2246
2311
|
]));
|
|
2247
2312
|
}
|
|
2248
2313
|
});
|
|
2249
|
-
const
|
|
2314
|
+
const Wi = /* @__PURE__ */ h(Ui, [["__scopeId", "data-v-9d085a10"]]), Fi = { class: "pagination__wrapper" }, Gi = { class: "pagination__content" }, Ji = /* @__PURE__ */ m({
|
|
2250
2315
|
__name: "pagination",
|
|
2251
2316
|
props: {
|
|
2252
2317
|
isPreviousDisabled: {
|
|
@@ -2260,17 +2325,17 @@ const ji = /* @__PURE__ */ h(Ti, [["__scopeId", "data-v-9d085a10"]]), Ni = { cla
|
|
|
2260
2325
|
},
|
|
2261
2326
|
emits: ["previous", "next"],
|
|
2262
2327
|
setup(e) {
|
|
2263
|
-
return (
|
|
2264
|
-
t("div",
|
|
2328
|
+
return (a, l) => (i(), r("div", Fi, [
|
|
2329
|
+
t("div", Gi, [
|
|
2265
2330
|
k(W, {
|
|
2266
|
-
onClick:
|
|
2331
|
+
onClick: l[0] || (l[0] = (n) => a.$emit("previous")),
|
|
2267
2332
|
disabled: e.isPreviousDisabled,
|
|
2268
2333
|
variant: "previous",
|
|
2269
2334
|
ariaLabel: "previous"
|
|
2270
2335
|
}, null, 8, ["disabled"]),
|
|
2271
|
-
u(
|
|
2336
|
+
u(a.$slots, "pagination-numbers"),
|
|
2272
2337
|
k(W, {
|
|
2273
|
-
onClick:
|
|
2338
|
+
onClick: l[1] || (l[1] = (n) => a.$emit("next")),
|
|
2274
2339
|
disabled: e.isNextDisabled,
|
|
2275
2340
|
variant: "next",
|
|
2276
2341
|
ariaLabel: "next"
|
|
@@ -2279,9 +2344,9 @@ const ji = /* @__PURE__ */ h(Ti, [["__scopeId", "data-v-9d085a10"]]), Ni = { cla
|
|
|
2279
2344
|
]));
|
|
2280
2345
|
}
|
|
2281
2346
|
});
|
|
2282
|
-
const
|
|
2347
|
+
const Yi = /* @__PURE__ */ h(Ji, [["__scopeId", "data-v-161faef3"]]), Qi = {
|
|
2283
2348
|
install: (e) => {
|
|
2284
|
-
e.component("AtomButton", W), e.component("AtomCheckbox", Ae), e.component("AtomChip", ze), e.component("AtomDropdown", Ue), e.component("AtomImage",
|
|
2349
|
+
e.component("AtomButton", W), e.component("AtomCheckbox", Ae), e.component("AtomChip", ze), e.component("AtomDropdown", Ue), e.component("AtomImage", B), e.component("AtomLabel", F), e.component("AtomLink", C), e.component("AtomRadioButton", lt), e.component("AtomSelect", dt), e.component("AtomSlider", bt), e.component("AtomTextarea", qt), e.component("AtomTextField", Vt), e.component("AtomVideo", R), e.component("MoleculeAddress", Xt), e.component("MoleculeBulletList", ia), e.component("MoleculeCard", oa), e.component("MoleculeEventCard", ga), e.component("MoleculeModal", oe), e.component("BlockFacts", Ia), e.component("BlockFeatures", ja), e.component("BlockHeadline", Qa), e.component("BlockImage", Ha), e.component("BlockImageGallery", Ga), e.component("BlockMicroStories", el), e.component("BlockProductHero", nl), e.component("BlockPromo", dl), e.component("BlockQuote", $l), e.component("BlockRichText", ql), e.component("BlockTripleCardDisplay", Tl), e.component("BlockVimeo", Ol), e.component("Organism404", Ul), e.component("OrganismFilter", Kl), e.component("OrganismFooter", bi), e.component("OrganismHeader", Pi), e.component("OrganismLanguageSwitcher", Wi), e.component("OrganismPagination", Yi);
|
|
2285
2350
|
}
|
|
2286
2351
|
};
|
|
2287
2352
|
export {
|
|
@@ -2289,36 +2354,37 @@ export {
|
|
|
2289
2354
|
Ae as AtomCheckbox,
|
|
2290
2355
|
ze as AtomChip,
|
|
2291
2356
|
Ue as AtomDropdown,
|
|
2292
|
-
|
|
2357
|
+
B as AtomImage,
|
|
2293
2358
|
F as AtomLabel,
|
|
2294
|
-
|
|
2359
|
+
C as AtomLink,
|
|
2295
2360
|
lt as AtomRadioButton,
|
|
2296
2361
|
dt as AtomSelect,
|
|
2297
2362
|
bt as AtomSlider,
|
|
2298
2363
|
Vt as AtomTextField,
|
|
2299
2364
|
qt as AtomTextarea,
|
|
2300
2365
|
R as AtomVideo,
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2366
|
+
Ia as BlockFacts,
|
|
2367
|
+
ja as BlockFeatures,
|
|
2368
|
+
Qa as BlockHeadline,
|
|
2369
|
+
Ha as BlockImage,
|
|
2370
|
+
Ga as BlockImageGallery,
|
|
2371
|
+
el as BlockMicroStories,
|
|
2372
|
+
nl as BlockProductHero,
|
|
2373
|
+
dl as BlockPromo,
|
|
2374
|
+
$l as BlockQuote,
|
|
2375
|
+
ql as BlockRichText,
|
|
2376
|
+
Tl as BlockTripleCardDisplay,
|
|
2377
|
+
Ol as BlockVimeo,
|
|
2378
|
+
Xt as MoleculeAddress,
|
|
2379
|
+
ia as MoleculeBulletList,
|
|
2380
|
+
oa as MoleculeCard,
|
|
2381
|
+
ga as MoleculeEventCard,
|
|
2382
|
+
oe as MoleculeModal,
|
|
2383
|
+
Ul as Organism404,
|
|
2384
|
+
Kl as OrganismFilter,
|
|
2385
|
+
bi as OrganismFooter,
|
|
2386
|
+
Pi as OrganismHeader,
|
|
2387
|
+
Wi as OrganismLanguageSwitcher,
|
|
2388
|
+
Yi as OrganismPagination,
|
|
2389
|
+
Qi as default
|
|
2324
2390
|
};
|