@mirweb/mir-web-components 0.10.3 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/main.d.ts +2 -1
- package/dist/components/organisms/404/404.vue.d.ts +12 -0
- package/dist/components/organisms/404/404.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 +205 -185
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as _, openBlock as i, createElementBlock as r, normalizeClass as
|
|
1
|
+
import { defineComponent as _, openBlock as i, createElementBlock as r, normalizeClass as c, toDisplayString as d, createElementVNode as t, renderSlot as u, pushScopeId as P, popScopeId as H, computed as N, createTextVNode as O, ref as x, withDirectives as U, Fragment as M, renderList as L, vShow as G, normalizeProps as T, guardReactiveProps as C, mergeProps as ie, createVNode as k, Transition as ke, withCtx as $, withModifiers as re, createCommentVNode as h, watchEffect as oe, withKeys as $e, createBlock as j, normalizeStyle as ne, isRef as Q, unref as p, watch as X, onMounted as we, onUnmounted as xe } from "vue";
|
|
2
2
|
const Se = ["aria-label"], Ie = /* @__PURE__ */ _({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -25,7 +25,7 @@ const Se = ["aria-label"], Ie = /* @__PURE__ */ _({
|
|
|
25
25
|
},
|
|
26
26
|
setup(e) {
|
|
27
27
|
return (l, a) => (i(), r("button", {
|
|
28
|
-
class:
|
|
28
|
+
class: c(["button", "button--" + e.variant]),
|
|
29
29
|
"aria-label": e.ariaLabel
|
|
30
30
|
}, d(e.variant == "close" ? "" : e.buttonText), 11, Se));
|
|
31
31
|
}
|
|
@@ -67,7 +67,7 @@ const v = (e, l) => {
|
|
|
67
67
|
l("input", n.checked);
|
|
68
68
|
};
|
|
69
69
|
return (o, n) => (i(), r("div", {
|
|
70
|
-
class:
|
|
70
|
+
class: c(["checkbox__wrapper", e.disabled ? "disabled" : ""])
|
|
71
71
|
}, [
|
|
72
72
|
t("input", {
|
|
73
73
|
type: "checkbox",
|
|
@@ -81,10 +81,10 @@ const v = (e, l) => {
|
|
|
81
81
|
}, null, 40, Me),
|
|
82
82
|
t("label", {
|
|
83
83
|
for: e.id,
|
|
84
|
-
class:
|
|
84
|
+
class: c(["checkbox__label", e.required ? "required" : ""])
|
|
85
85
|
}, [
|
|
86
86
|
Be,
|
|
87
|
-
|
|
87
|
+
u(o.$slots, "default", {}, void 0, !0)
|
|
88
88
|
], 10, De)
|
|
89
89
|
], 2));
|
|
90
90
|
}
|
|
@@ -100,7 +100,7 @@ const Le = /* @__PURE__ */ v(Ae, [["__scopeId", "data-v-f62bd17f"]]), Te = "data
|
|
|
100
100
|
emits: ["remove-chip"],
|
|
101
101
|
setup(e, { emit: l }) {
|
|
102
102
|
const a = e, o = N(() => `Chip: ${a.text}`);
|
|
103
|
-
return (n,
|
|
103
|
+
return (n, m) => (i(), r("div", Ce, [
|
|
104
104
|
t("span", {
|
|
105
105
|
class: "chip",
|
|
106
106
|
"aria-label": o.value
|
|
@@ -110,7 +110,7 @@ const Le = /* @__PURE__ */ v(Ae, [["__scopeId", "data-v-f62bd17f"]]), Te = "data
|
|
|
110
110
|
src: Te,
|
|
111
111
|
alt: "close",
|
|
112
112
|
class: "close-icon",
|
|
113
|
-
onClick:
|
|
113
|
+
onClick: m[0] || (m[0] = (S) => n.$emit("remove-chip"))
|
|
114
114
|
})
|
|
115
115
|
], 8, je)
|
|
116
116
|
]));
|
|
@@ -159,12 +159,12 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
159
159
|
},
|
|
160
160
|
emits: ["update:modelValue"],
|
|
161
161
|
setup(e, { emit: l }) {
|
|
162
|
-
const a = e, o = x(null), n = x(null),
|
|
162
|
+
const a = e, o = x(null), n = x(null), m = x([]), S = x(0), I = x(""), f = x(!0), b = x(0), q = N(() => {
|
|
163
163
|
const s = a.options.find(
|
|
164
164
|
(g) => g.value === a.modelValue
|
|
165
165
|
);
|
|
166
166
|
return s && s.label;
|
|
167
|
-
}),
|
|
167
|
+
}), ce = {
|
|
168
168
|
beforeMount(s, g) {
|
|
169
169
|
s.clickOutsideEvent = function(y) {
|
|
170
170
|
s === y.target || s.contains(y.target) || g.value(y);
|
|
@@ -174,7 +174,7 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
174
174
|
document.body.removeEventListener("click", s.clickOutsideEvent);
|
|
175
175
|
}
|
|
176
176
|
};
|
|
177
|
-
function
|
|
177
|
+
function ue(s) {
|
|
178
178
|
l("update:modelValue", s);
|
|
179
179
|
}
|
|
180
180
|
function me(s) {
|
|
@@ -192,8 +192,8 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
192
192
|
const w = a.options.findIndex(
|
|
193
193
|
(V) => V.value === a.modelValue
|
|
194
194
|
);
|
|
195
|
-
let B = w ?
|
|
196
|
-
g === "ArrowUp" ? w - 1 >= 0 && (B =
|
|
195
|
+
let B = w ? m.value[w] : m.value[0];
|
|
196
|
+
g === "ArrowUp" ? w - 1 >= 0 && (B = m.value[w - 1]) : w + 1 <= a.options.length && (B = m.value[w + 1]), B && Z(B);
|
|
197
197
|
break;
|
|
198
198
|
}
|
|
199
199
|
case "Home":
|
|
@@ -246,11 +246,11 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
246
246
|
function Y(s, g) {
|
|
247
247
|
for (let y = s; y < g; y++)
|
|
248
248
|
if (a.options[y].label && a.options[y].label.toUpperCase().indexOf(I.value.toUpperCase()) === 0)
|
|
249
|
-
return
|
|
249
|
+
return m.value[y];
|
|
250
250
|
return null;
|
|
251
251
|
}
|
|
252
252
|
function fe() {
|
|
253
|
-
Z(
|
|
253
|
+
Z(m.value[0]);
|
|
254
254
|
}
|
|
255
255
|
function Z(s) {
|
|
256
256
|
var y, w;
|
|
@@ -258,20 +258,20 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
258
258
|
if (a.modelValue) {
|
|
259
259
|
const B = a.options.findIndex(
|
|
260
260
|
(pe) => pe.value === a.modelValue
|
|
261
|
-
), V =
|
|
261
|
+
), V = m.value[B];
|
|
262
262
|
ve(V);
|
|
263
263
|
}
|
|
264
264
|
if (s.setAttribute("aria-selected", "true"), (y = n.value) == null || y.setAttribute(
|
|
265
265
|
"aria-activedescendant",
|
|
266
266
|
g || ""
|
|
267
|
-
),
|
|
267
|
+
), ue(g || ""), n.value && n.value.scrollHeight > n.value.clientHeight) {
|
|
268
268
|
const B = n.value.clientHeight + n.value.scrollTop, V = s.offsetTop + s.offsetHeight;
|
|
269
269
|
V > B ? n.value.scrollTop = V - ((w = n.value) == null ? void 0 : w.clientHeight) : s.offsetTop < n.value.scrollTop && (n.value.scrollTop = s.offsetTop);
|
|
270
270
|
}
|
|
271
271
|
}
|
|
272
272
|
function ye() {
|
|
273
273
|
var g;
|
|
274
|
-
const s = (g =
|
|
274
|
+
const s = (g = m.value) == null ? void 0 : g[a.options.length - 1];
|
|
275
275
|
Z(s);
|
|
276
276
|
}
|
|
277
277
|
function R() {
|
|
@@ -292,7 +292,7 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
292
292
|
}, [
|
|
293
293
|
t("label", {
|
|
294
294
|
id: `${e.name}-label`,
|
|
295
|
-
class:
|
|
295
|
+
class: c([{
|
|
296
296
|
"listbox__label--visually-hidden": !e.showLabel,
|
|
297
297
|
"is-disabled": e.disabled,
|
|
298
298
|
"is-required": e.required
|
|
@@ -330,13 +330,13 @@ const ze = /* @__PURE__ */ v(Ne, [["__scopeId", "data-v-11f9cdcd"]]), Ve = ["val
|
|
|
330
330
|
role: "option",
|
|
331
331
|
ref_for: !0,
|
|
332
332
|
ref_key: "listboxOptions",
|
|
333
|
-
ref:
|
|
333
|
+
ref: m
|
|
334
334
|
}, d(y.label), 9, Ee))), 128))
|
|
335
335
|
], 40, Ze), [
|
|
336
336
|
[G, !f.value]
|
|
337
337
|
])
|
|
338
338
|
])), [
|
|
339
|
-
[
|
|
339
|
+
[ce, R]
|
|
340
340
|
])
|
|
341
341
|
], 8, Ve));
|
|
342
342
|
}
|
|
@@ -380,7 +380,7 @@ const Ue = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-4824444a"]]), We = { cla
|
|
|
380
380
|
},
|
|
381
381
|
setup(e) {
|
|
382
382
|
return (l, a) => (i(), r("div", We, [
|
|
383
|
-
|
|
383
|
+
u(l.$slots, "default", T(C(l.$attrs)))
|
|
384
384
|
]));
|
|
385
385
|
}
|
|
386
386
|
});
|
|
@@ -403,7 +403,7 @@ const D = /* @__PURE__ */ v(Fe, [["__scopeId", "data-v-513b5384"]]), Ge = { clas
|
|
|
403
403
|
t("span", {
|
|
404
404
|
"aria-label": a.value,
|
|
405
405
|
"label-dark": e.labelDark,
|
|
406
|
-
class:
|
|
406
|
+
class: c(e.labelDark ? "label--dark" : "label--light")
|
|
407
407
|
}, d(e.text), 11, Je)
|
|
408
408
|
]));
|
|
409
409
|
}
|
|
@@ -462,7 +462,7 @@ const F = /* @__PURE__ */ v(Ye, [["__scopeId", "data-v-aacf01db"]]), Ke = { clas
|
|
|
462
462
|
e.arrow ? "link-arrow" : ""
|
|
463
463
|
]]
|
|
464
464
|
}), [
|
|
465
|
-
|
|
465
|
+
u(o.$slots, "default")
|
|
466
466
|
], 16)
|
|
467
467
|
]));
|
|
468
468
|
}
|
|
@@ -500,7 +500,7 @@ const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value"
|
|
|
500
500
|
l("input", n.checked);
|
|
501
501
|
};
|
|
502
502
|
return (o, n) => (i(), r("div", {
|
|
503
|
-
class:
|
|
503
|
+
class: c(["radio__wrapper", e.disabled ? "disabled" : ""])
|
|
504
504
|
}, [
|
|
505
505
|
t("input", {
|
|
506
506
|
type: "radio",
|
|
@@ -515,10 +515,10 @@ const Qe = (e) => (P("data-v-016da8d2"), e = e(), H(), e), Xe = ["name", "value"
|
|
|
515
515
|
}, null, 40, Xe),
|
|
516
516
|
t("label", {
|
|
517
517
|
for: e.id,
|
|
518
|
-
class:
|
|
518
|
+
class: c(["radio__label", e.required ? "required" : ""])
|
|
519
519
|
}, [
|
|
520
520
|
tt,
|
|
521
|
-
|
|
521
|
+
u(o.$slots, "default", {}, void 0, !0)
|
|
522
522
|
], 10, et)
|
|
523
523
|
], 2));
|
|
524
524
|
}
|
|
@@ -567,10 +567,10 @@ const lt = /* @__PURE__ */ v(at, [["__scopeId", "data-v-016da8d2"]]), it = { cla
|
|
|
567
567
|
return (l, a) => (i(), r("div", it, [
|
|
568
568
|
t("label", {
|
|
569
569
|
for: e.id,
|
|
570
|
-
class:
|
|
570
|
+
class: c([e.required ? "required" : "", e.disabled ? "disabled" : ""])
|
|
571
571
|
}, d(e.label), 11, rt),
|
|
572
572
|
t("select", {
|
|
573
|
-
class:
|
|
573
|
+
class: c(e.disabled ? "disabled" : ""),
|
|
574
574
|
disabled: e.disabled,
|
|
575
575
|
id: e.id,
|
|
576
576
|
name: e.name,
|
|
@@ -587,7 +587,7 @@ const lt = /* @__PURE__ */ v(at, [["__scopeId", "data-v-016da8d2"]]), it = { cla
|
|
|
587
587
|
]));
|
|
588
588
|
}
|
|
589
589
|
});
|
|
590
|
-
const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]),
|
|
590
|
+
const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]), ct = { class: "modal__wrapper" }, ut = /* @__PURE__ */ _({
|
|
591
591
|
__name: "modal",
|
|
592
592
|
props: {
|
|
593
593
|
show: { type: Boolean, default: !1 }
|
|
@@ -602,7 +602,7 @@ const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]), ut = { cla
|
|
|
602
602
|
const o = () => {
|
|
603
603
|
l("update:show", !a.show);
|
|
604
604
|
};
|
|
605
|
-
return (n,
|
|
605
|
+
return (n, m) => (i(), r("div", ct, [
|
|
606
606
|
k(ke, {
|
|
607
607
|
duration: 300,
|
|
608
608
|
name: "nested"
|
|
@@ -617,7 +617,7 @@ const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]), ut = { cla
|
|
|
617
617
|
}, [
|
|
618
618
|
t("div", {
|
|
619
619
|
id: "modal",
|
|
620
|
-
onClick:
|
|
620
|
+
onClick: m[0] || (m[0] = re(() => {
|
|
621
621
|
}, ["stop"]))
|
|
622
622
|
}, [
|
|
623
623
|
t("div", null, [
|
|
@@ -627,7 +627,7 @@ const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]), ut = { cla
|
|
|
627
627
|
onClick: o
|
|
628
628
|
})
|
|
629
629
|
]),
|
|
630
|
-
|
|
630
|
+
u(n.$slots, "default", {}, void 0, !0)
|
|
631
631
|
])
|
|
632
632
|
])) : h("", !0)
|
|
633
633
|
]),
|
|
@@ -636,7 +636,7 @@ const dt = /* @__PURE__ */ v(st, [["__scopeId", "data-v-d1d7a1e3"]]), ut = { cla
|
|
|
636
636
|
]));
|
|
637
637
|
}
|
|
638
638
|
});
|
|
639
|
-
const se = /* @__PURE__ */ v(
|
|
639
|
+
const se = /* @__PURE__ */ v(ut, [["__scopeId", "data-v-b5af91d8"]]), mt = { class: "slider__wrapper" }, _t = { class: "slider__label" }, vt = ["for"], ht = ["aria-label"], gt = { class: "slider__content" }, ft = ["id", "name", "value", "min", "step", "max"], yt = /* @__PURE__ */ _({
|
|
640
640
|
__name: "slider",
|
|
641
641
|
props: {
|
|
642
642
|
label: {
|
|
@@ -689,7 +689,7 @@ const se = /* @__PURE__ */ v(ct, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
689
689
|
},
|
|
690
690
|
emits: ["update:modelValue"],
|
|
691
691
|
setup(e, { emit: l }) {
|
|
692
|
-
const a = e, o = x(a.modelValue), n = x(),
|
|
692
|
+
const a = e, o = x(a.modelValue), n = x(), m = x(!1), S = (f, b, q) => (f - b) / (q - b) * 100, I = (f) => {
|
|
693
693
|
var b;
|
|
694
694
|
(b = n.value) == null || b.style.setProperty("--ProgressPercent", `${f}%`);
|
|
695
695
|
};
|
|
@@ -705,14 +705,14 @@ const se = /* @__PURE__ */ v(ct, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
705
705
|
t("div", _t, [
|
|
706
706
|
t("label", {
|
|
707
707
|
for: e.id,
|
|
708
|
-
class:
|
|
708
|
+
class: c([e.variant, ""])
|
|
709
709
|
}, d(e.label), 11, vt),
|
|
710
710
|
e.information ? (i(), r("i", {
|
|
711
711
|
key: 0,
|
|
712
712
|
role: "button",
|
|
713
|
-
class:
|
|
714
|
-
onClick: b[0] || (b[0] = (q) =>
|
|
715
|
-
onKeyup: b[1] || (b[1] = $e((q) =>
|
|
713
|
+
class: c([e.variant, "slider__information"]),
|
|
714
|
+
onClick: b[0] || (b[0] = (q) => m.value = !m.value),
|
|
715
|
+
onKeyup: b[1] || (b[1] = $e((q) => m.value = !m.value, ["enter"])),
|
|
716
716
|
"aria-label": e.informationLabel,
|
|
717
717
|
tabindex: "0",
|
|
718
718
|
"aria-haspopup": "dialog"
|
|
@@ -720,7 +720,7 @@ const se = /* @__PURE__ */ v(ct, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
720
720
|
]),
|
|
721
721
|
t("div", gt, [
|
|
722
722
|
t("span", {
|
|
723
|
-
class:
|
|
723
|
+
class: c([e.variant, "slider__minmax"])
|
|
724
724
|
}, d(e.min), 3),
|
|
725
725
|
t("input", {
|
|
726
726
|
type: "range",
|
|
@@ -730,23 +730,23 @@ const se = /* @__PURE__ */ v(ct, [["__scopeId", "data-v-b5af91d8"]]), mt = { cla
|
|
|
730
730
|
min: e.min,
|
|
731
731
|
step: e.step,
|
|
732
732
|
max: e.max,
|
|
733
|
-
class:
|
|
733
|
+
class: c(e.variant),
|
|
734
734
|
ref_key: "slider",
|
|
735
735
|
ref: n,
|
|
736
736
|
onInput: b[2] || (b[2] = ({ target: q }) => o.value = parseFloat(q.value))
|
|
737
737
|
}, null, 42, ft),
|
|
738
738
|
t("span", {
|
|
739
|
-
class:
|
|
739
|
+
class: c([e.variant, "slider__minmax"])
|
|
740
740
|
}, d(e.max), 3)
|
|
741
741
|
]),
|
|
742
742
|
t("span", {
|
|
743
|
-
class:
|
|
743
|
+
class: c([e.variant, "slider__value"])
|
|
744
744
|
}, d(e.modelValue), 3)
|
|
745
745
|
]),
|
|
746
746
|
e.information ? (i(), j(se, {
|
|
747
747
|
key: 0,
|
|
748
|
-
show:
|
|
749
|
-
"onUpdate:show": b[3] || (b[3] = (q) =>
|
|
748
|
+
show: m.value,
|
|
749
|
+
"onUpdate:show": b[3] || (b[3] = (q) => m.value = q)
|
|
750
750
|
}, {
|
|
751
751
|
default: $(() => [
|
|
752
752
|
O(d(e.information), 1)
|
|
@@ -799,7 +799,7 @@ const bt = /* @__PURE__ */ v(yt, [["__scopeId", "data-v-84385cf8"]]), pt = { id:
|
|
|
799
799
|
return (l, a) => (i(), r("div", pt, [
|
|
800
800
|
t("label", {
|
|
801
801
|
for: e.id,
|
|
802
|
-
class:
|
|
802
|
+
class: c({ required: e.required })
|
|
803
803
|
}, d(e.labelText) + d(e.required ? " *" : ""), 11, kt),
|
|
804
804
|
t("div", {
|
|
805
805
|
id: e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "textarea-wrapper__inner" : ""
|
|
@@ -815,7 +815,7 @@ const bt = /* @__PURE__ */ v(yt, [["__scopeId", "data-v-84385cf8"]]), pt = { id:
|
|
|
815
815
|
maxlength: e.maxLength,
|
|
816
816
|
value: e.modelValue,
|
|
817
817
|
onInput: a[0] || (a[0] = (o) => l.$emit("update:modelValue", o.target.value)),
|
|
818
|
-
class:
|
|
818
|
+
class: c(
|
|
819
819
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit" : "border"
|
|
820
820
|
)
|
|
821
821
|
}, null, 42, wt)
|
|
@@ -825,7 +825,7 @@ const bt = /* @__PURE__ */ v(yt, [["__scopeId", "data-v-84385cf8"]]), pt = { id:
|
|
|
825
825
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (i(), r("p", St, " Too many characters. Please make it shorter ")) : h("", !0)
|
|
826
826
|
]),
|
|
827
827
|
t("p", {
|
|
828
|
-
class:
|
|
828
|
+
class: c(
|
|
829
829
|
e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit-meter" : ""
|
|
830
830
|
)
|
|
831
831
|
}, d(e.maxLength !== void 0 && e.modelValue !== void 0 && e.maxLength - e.modelValue.length >= 0 ? e.modelValue.length : 0) + " / " + d(e.maxLength), 3)
|
|
@@ -914,10 +914,10 @@ const qt = /* @__PURE__ */ v(It, [["__scopeId", "data-v-28492b7a"]]), Mt = { cla
|
|
|
914
914
|
), o = N(
|
|
915
915
|
() => l.value ? "password" : "text"
|
|
916
916
|
);
|
|
917
|
-
return (n,
|
|
917
|
+
return (n, m) => (i(), r("div", Mt, [
|
|
918
918
|
t("label", {
|
|
919
919
|
for: e.id,
|
|
920
|
-
class:
|
|
920
|
+
class: c([
|
|
921
921
|
e.required ? "required" : "",
|
|
922
922
|
e.disabled ? "disabled" : "",
|
|
923
923
|
e.search ? "search" : ""
|
|
@@ -931,12 +931,12 @@ const qt = /* @__PURE__ */ v(It, [["__scopeId", "data-v-28492b7a"]]), Mt = { cla
|
|
|
931
931
|
placeholder: e.placeholder,
|
|
932
932
|
required: e.required,
|
|
933
933
|
disabled: e.disabled,
|
|
934
|
-
onInput:
|
|
934
|
+
onInput: m[0] || (m[0] = (S) => n.$emit("update:modelValue", S.target.value))
|
|
935
935
|
}, null, 40, At),
|
|
936
936
|
t("i", {
|
|
937
937
|
role: "button",
|
|
938
|
-
class:
|
|
939
|
-
onClick:
|
|
938
|
+
class: c([a.value]),
|
|
939
|
+
onClick: m[1] || (m[1] = (S) => l.value = !l.value),
|
|
940
940
|
"aria-controls": "password",
|
|
941
941
|
"aria-expanded": !l.value
|
|
942
942
|
}, null, 10, Lt)
|
|
@@ -947,13 +947,13 @@ const qt = /* @__PURE__ */ v(It, [["__scopeId", "data-v-28492b7a"]]), Mt = { cla
|
|
|
947
947
|
placeholder: e.placeholder,
|
|
948
948
|
id: e.id,
|
|
949
949
|
required: e.required,
|
|
950
|
-
class:
|
|
950
|
+
class: c([
|
|
951
951
|
e.invalid ? "invalid" : "",
|
|
952
952
|
e.valid ? "valid" : "",
|
|
953
953
|
e.search ? "search" : ""
|
|
954
954
|
]),
|
|
955
955
|
disabled: e.disabled,
|
|
956
|
-
onInput:
|
|
956
|
+
onInput: m[2] || (m[2] = (S) => n.$emit("update:modelValue", S.target.value))
|
|
957
957
|
}, null, 42, Tt)),
|
|
958
958
|
e.search ? (i(), r("i", Ct)) : h("", !0),
|
|
959
959
|
e.errorMessage ? (i(), r("strong", jt, d(e.errorMessage), 1)) : h("", !0),
|
|
@@ -1069,7 +1069,7 @@ const E = /* @__PURE__ */ v(Zt, [["__scopeId", "data-v-48adae09"]]), Et = (e) =>
|
|
|
1069
1069
|
setup(e) {
|
|
1070
1070
|
return (l, a) => (i(), r("div", Rt, [
|
|
1071
1071
|
t("div", {
|
|
1072
|
-
class:
|
|
1072
|
+
class: c(["bullet-list", e.variant])
|
|
1073
1073
|
}, [
|
|
1074
1074
|
t("ul", null, [
|
|
1075
1075
|
(i(!0), r(M, null, L(e.list, (o) => (i(), r("li", null, [
|
|
@@ -1139,7 +1139,7 @@ const Ft = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1139
1139
|
let a = x(!1);
|
|
1140
1140
|
return (o, n) => (i(), r("div", Gt, [
|
|
1141
1141
|
t("div", {
|
|
1142
|
-
class:
|
|
1142
|
+
class: c(["card", [
|
|
1143
1143
|
e.theme == "dark" ? "card--dark" : "card--light",
|
|
1144
1144
|
e.orientation == "vertical" ? "vertical" : "horizontal",
|
|
1145
1145
|
e.size == "small" ? "card--small" : e.size == "medium" ? "card--medium" : e.size == "large" ? "card--large" : "",
|
|
@@ -1150,12 +1150,12 @@ const Ft = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1150
1150
|
e.variant == "product" ? "font-weight: 700" : "font-weight: 300",
|
|
1151
1151
|
e.mediaType == "video" ? "width: 328px" : ""
|
|
1152
1152
|
]),
|
|
1153
|
-
onMouseover: n[0] || (n[0] = (
|
|
1154
|
-
onMouseout: n[1] || (n[1] = (
|
|
1153
|
+
onMouseover: n[0] || (n[0] = (m) => Q(a) ? a.value = !0 : a = !0),
|
|
1154
|
+
onMouseout: n[1] || (n[1] = (m) => Q(a) ? a.value = !1 : a = !1)
|
|
1155
1155
|
}, [
|
|
1156
1156
|
e.mediaType == "image" ? (i(), j(D, { key: 0 }, {
|
|
1157
1157
|
default: $(() => [
|
|
1158
|
-
|
|
1158
|
+
u(o.$slots, "card-image", ie({
|
|
1159
1159
|
src: e.imgSrc,
|
|
1160
1160
|
height: e.size == "small" ? "186" : e.size == "medium" ? "243" : e.size == "large" ? "335" : "",
|
|
1161
1161
|
width: e.size == "small" ? "298" : e.size == "medium" ? "432" : e.size == "large" ? "596" : "",
|
|
@@ -1167,7 +1167,7 @@ const Ft = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1167
1167
|
_: 3
|
|
1168
1168
|
})) : (i(), r("div", {
|
|
1169
1169
|
key: 1,
|
|
1170
|
-
class:
|
|
1170
|
+
class: c(["video-card__wrapper", p(a) == !0 ? "vimeoPlaying" : ""])
|
|
1171
1171
|
}, [
|
|
1172
1172
|
k(E, {
|
|
1173
1173
|
play: p(a),
|
|
@@ -1185,13 +1185,13 @@ const Ft = /* @__PURE__ */ v(Wt, [["__scopeId", "data-v-327e6c15"]]), Gt = { cla
|
|
|
1185
1185
|
], 2)),
|
|
1186
1186
|
e.variant === "product" ? (i(), r("h3", {
|
|
1187
1187
|
key: 2,
|
|
1188
|
-
class:
|
|
1188
|
+
class: c(e.theme == "dark" ? "regular-dark" : "regular-blue")
|
|
1189
1189
|
}, d(e.headline), 3)) : (i(), r("h3", {
|
|
1190
1190
|
key: 3,
|
|
1191
|
-
class:
|
|
1191
|
+
class: c(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
|
|
1192
1192
|
}, d(e.headline), 3)),
|
|
1193
1193
|
e.variant == "product" ? (i(), r("p", Jt, d(e.paragraph), 1)) : h("", !0),
|
|
1194
|
-
|
|
1194
|
+
u(o.$slots, "card-label")
|
|
1195
1195
|
], 38)
|
|
1196
1196
|
]));
|
|
1197
1197
|
}
|
|
@@ -1236,7 +1236,7 @@ const Kt = /* @__PURE__ */ v(Yt, [["__scopeId", "data-v-b50e8101"]]), Qt = (e) =
|
|
|
1236
1236
|
]));
|
|
1237
1237
|
}
|
|
1238
1238
|
});
|
|
1239
|
-
const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-f5acdf7e"]]), oa = { class: "facts__wrapper" }, na = { class: "facts__content" }, sa = { class: "facts__headline" }, da = { class: "facts" },
|
|
1239
|
+
const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-f5acdf7e"]]), oa = { class: "facts__wrapper" }, na = { class: "facts__content" }, sa = { class: "facts__headline" }, da = { class: "facts" }, ca = { class: "fact" }, ua = { class: "fact__value" }, ma = { class: "fact__metric" }, _a = {
|
|
1240
1240
|
key: 0,
|
|
1241
1241
|
class: "facts__link"
|
|
1242
1242
|
}, va = /* @__PURE__ */ _({
|
|
@@ -1261,8 +1261,8 @@ const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-f5acdf7e"]]), oa = { cla
|
|
|
1261
1261
|
t("div", na, [
|
|
1262
1262
|
t("h2", sa, d(e.headline), 1),
|
|
1263
1263
|
t("div", da, [
|
|
1264
|
-
(i(!0), r(M, null, L(e.facts, (o) => (i(), r("div",
|
|
1265
|
-
t("div",
|
|
1264
|
+
(i(!0), r(M, null, L(e.facts, (o) => (i(), r("div", ca, [
|
|
1265
|
+
t("div", ua, [
|
|
1266
1266
|
t("span", null, d(o.value), 1)
|
|
1267
1267
|
]),
|
|
1268
1268
|
t("div", ma, [
|
|
@@ -1276,7 +1276,7 @@ const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-f5acdf7e"]]), oa = { cla
|
|
|
1276
1276
|
arrow: ""
|
|
1277
1277
|
}, {
|
|
1278
1278
|
default: $(() => [
|
|
1279
|
-
|
|
1279
|
+
u(l.$slots, "facts-link", {}, void 0, !0)
|
|
1280
1280
|
]),
|
|
1281
1281
|
_: 3
|
|
1282
1282
|
})
|
|
@@ -1309,15 +1309,15 @@ const ha = /* @__PURE__ */ v(va, [["__scopeId", "data-v-7fd89b0c"]]), ga = { cla
|
|
|
1309
1309
|
t("h2", null, d(e.headline), 1)
|
|
1310
1310
|
])) : h("", !0),
|
|
1311
1311
|
t("div", ba, [
|
|
1312
|
-
|
|
1312
|
+
u(l.$slots, "features-body", {}, void 0, !0)
|
|
1313
1313
|
]),
|
|
1314
1314
|
t("div", {
|
|
1315
|
-
class:
|
|
1315
|
+
class: c(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
|
|
1316
1316
|
}, [
|
|
1317
1317
|
(i(!0), r(M, null, L(e.elements, (o) => (i(), r("div", pa, [
|
|
1318
1318
|
k(D, { class: "element__icon" }, {
|
|
1319
1319
|
default: $(() => [
|
|
1320
|
-
|
|
1320
|
+
u(l.$slots, "features-icon", T(C({
|
|
1321
1321
|
src: o.icon.src,
|
|
1322
1322
|
height: 30,
|
|
1323
1323
|
width: 30,
|
|
@@ -1356,7 +1356,7 @@ const xa = /* @__PURE__ */ v(wa, [["__scopeId", "data-v-782af0c4"]]), Sa = { cla
|
|
|
1356
1356
|
t("div", qa, [
|
|
1357
1357
|
k(D, null, {
|
|
1358
1358
|
default: $(() => [
|
|
1359
|
-
|
|
1359
|
+
u(l.$slots, "image", T(C({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1360
1360
|
]),
|
|
1361
1361
|
_: 3
|
|
1362
1362
|
})
|
|
@@ -1415,13 +1415,13 @@ const Ba = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-6dde0544"]]), Aa = { cla
|
|
|
1415
1415
|
},
|
|
1416
1416
|
setup(e) {
|
|
1417
1417
|
return (l, a) => (i(), r("div", {
|
|
1418
|
-
class:
|
|
1418
|
+
class: c([
|
|
1419
1419
|
"gallery__wrapper",
|
|
1420
1420
|
e.bgColor === "light" ? "gallery__wrapper--light" : e.bgColor === "dark" ? "gallery__wrapper--dark" : ""
|
|
1421
1421
|
])
|
|
1422
1422
|
}, [
|
|
1423
1423
|
t("div", {
|
|
1424
|
-
class:
|
|
1424
|
+
class: c([
|
|
1425
1425
|
"gallery__content",
|
|
1426
1426
|
e.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
|
|
1427
1427
|
])
|
|
@@ -1430,7 +1430,7 @@ const Ba = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-6dde0544"]]), Aa = { cla
|
|
|
1430
1430
|
e.mediaLarge && e.mediaType === "image" ? (i(), r("div", La, [
|
|
1431
1431
|
k(D, null, {
|
|
1432
1432
|
default: $(() => [
|
|
1433
|
-
|
|
1433
|
+
u(l.$slots, "image-large", T(C({
|
|
1434
1434
|
width: 617,
|
|
1435
1435
|
height: 530,
|
|
1436
1436
|
src: e.mediaLarge.src,
|
|
@@ -1457,7 +1457,7 @@ const Ba = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-6dde0544"]]), Aa = { cla
|
|
|
1457
1457
|
]),
|
|
1458
1458
|
t("div", {
|
|
1459
1459
|
style: ne([e.mediaSmall.length == 2 ? "grid-gap: 38px;" : ""]),
|
|
1460
|
-
class:
|
|
1460
|
+
class: c([
|
|
1461
1461
|
"gallery__small",
|
|
1462
1462
|
e.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
|
|
1463
1463
|
])
|
|
@@ -1465,7 +1465,7 @@ const Ba = /* @__PURE__ */ v(Da, [["__scopeId", "data-v-6dde0544"]]), Aa = { cla
|
|
|
1465
1465
|
(i(!0), r(M, null, L(e.mediaSmall, (o) => (i(), r("div", Ca, [
|
|
1466
1466
|
k(D, null, {
|
|
1467
1467
|
default: $(() => [
|
|
1468
|
-
|
|
1468
|
+
u(l.$slots, "image-small", T(C({
|
|
1469
1469
|
width: 328,
|
|
1470
1470
|
height: 246,
|
|
1471
1471
|
src: o.src,
|
|
@@ -1502,7 +1502,7 @@ const za = /* @__PURE__ */ v(Na, [["__scopeId", "data-v-047e5de9"]]), Va = { cla
|
|
|
1502
1502
|
setup(e) {
|
|
1503
1503
|
return (l, a) => (i(), r("div", Va, [
|
|
1504
1504
|
t("div", {
|
|
1505
|
-
class:
|
|
1505
|
+
class: c([
|
|
1506
1506
|
e.article ? "headline__content--article" : e.noSubMenu ? "headline__content--nosubmenu" : "headline__content--default"
|
|
1507
1507
|
])
|
|
1508
1508
|
}, [
|
|
@@ -1535,15 +1535,15 @@ const Ha = /* @__PURE__ */ v(Pa, [["__scopeId", "data-v-931bc5aa"]]), Za = { cla
|
|
|
1535
1535
|
},
|
|
1536
1536
|
setup(e) {
|
|
1537
1537
|
return (l, a) => (i(), r("div", {
|
|
1538
|
-
class:
|
|
1538
|
+
class: c([
|
|
1539
1539
|
"micro-stories__wrapper",
|
|
1540
1540
|
e.bgColor == "white" ? "micro-stories__wrapper--white" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
|
|
1541
1541
|
])
|
|
1542
1542
|
}, [
|
|
1543
1543
|
t("div", Za, [
|
|
1544
|
-
|
|
1544
|
+
u(l.$slots, "micro-stories-slides")
|
|
1545
1545
|
]),
|
|
1546
|
-
|
|
1546
|
+
u(l.$slots, "micro-stories-controls")
|
|
1547
1547
|
], 2));
|
|
1548
1548
|
}
|
|
1549
1549
|
});
|
|
@@ -1641,7 +1641,7 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1641
1641
|
},
|
|
1642
1642
|
setup(e) {
|
|
1643
1643
|
return (l, a) => (i(), r("div", {
|
|
1644
|
-
class:
|
|
1644
|
+
class: c([
|
|
1645
1645
|
"promo__wrapper",
|
|
1646
1646
|
e.variant === "dark" ? "promo__wrapper--dark" : e.variant === "light" ? "promo__wrapper--light" : ""
|
|
1647
1647
|
])
|
|
@@ -1649,21 +1649,21 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1649
1649
|
t("div", Ya, [
|
|
1650
1650
|
e.mediaType === "image" ? (i(), r("div", {
|
|
1651
1651
|
key: 0,
|
|
1652
|
-
class:
|
|
1652
|
+
class: c([
|
|
1653
1653
|
"promo__image",
|
|
1654
1654
|
e.reverse ? "promo__image--reverse" : "promo__image--default"
|
|
1655
1655
|
])
|
|
1656
1656
|
}, [
|
|
1657
1657
|
k(D, null, {
|
|
1658
1658
|
default: $(() => [
|
|
1659
|
-
|
|
1659
|
+
u(l.$slots, "promo-image", T(C({ src: e.src, width: 1920, alt: e.alt, height: 1080 })))
|
|
1660
1660
|
]),
|
|
1661
1661
|
_: 3
|
|
1662
1662
|
})
|
|
1663
1663
|
], 2)) : h("", !0),
|
|
1664
1664
|
e.mediaType === "video" ? (i(), r("div", {
|
|
1665
1665
|
key: 1,
|
|
1666
|
-
class:
|
|
1666
|
+
class: c([
|
|
1667
1667
|
"promo__video",
|
|
1668
1668
|
e.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1669
1669
|
])
|
|
@@ -1681,7 +1681,7 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1681
1681
|
}, null, 8, ["src", "ariaLabel", "poster"])
|
|
1682
1682
|
], 2)) : h("", !0),
|
|
1683
1683
|
t("div", {
|
|
1684
|
-
class:
|
|
1684
|
+
class: c([
|
|
1685
1685
|
"promo__text",
|
|
1686
1686
|
e.reverse ? "promo__text--reverse" : "promo__text--default"
|
|
1687
1687
|
])
|
|
@@ -1692,7 +1692,7 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1692
1692
|
labelDark: e.variant === "dark"
|
|
1693
1693
|
}, null, 8, ["text", "labelDark"])) : h("", !0),
|
|
1694
1694
|
t("h3", {
|
|
1695
|
-
class:
|
|
1695
|
+
class: c([
|
|
1696
1696
|
"promo__title",
|
|
1697
1697
|
e.variant === "dark" ? "promo__title--dark" : ""
|
|
1698
1698
|
])
|
|
@@ -1703,7 +1703,7 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1703
1703
|
arrow: ""
|
|
1704
1704
|
}, {
|
|
1705
1705
|
default: $(() => [
|
|
1706
|
-
|
|
1706
|
+
u(l.$slots, "promo-link")
|
|
1707
1707
|
]),
|
|
1708
1708
|
_: 3
|
|
1709
1709
|
}, 8, ["linkType"])) : h("", !0),
|
|
@@ -1712,7 +1712,7 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1712
1712
|
linkType: e.variant === "dark" ? "secondary-dark" : (e.variant === "light", "secondary")
|
|
1713
1713
|
}, {
|
|
1714
1714
|
default: $(() => [
|
|
1715
|
-
|
|
1715
|
+
u(l.$slots, "promo-link")
|
|
1716
1716
|
]),
|
|
1717
1717
|
_: 3
|
|
1718
1718
|
}, 8, ["linkType"])) : h("", !0)
|
|
@@ -1724,7 +1724,7 @@ const Ja = /* @__PURE__ */ v(Ga, [["__scopeId", "data-v-e492048b"]]), Ya = { cla
|
|
|
1724
1724
|
const Qa = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-06964f7d"]]), Xa = (e) => (P("data-v-3cc55dbf"), e = e(), H(), e), el = { class: "quote__wrapper" }, tl = { class: "quote__content" }, al = /* @__PURE__ */ Xa(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), ll = { class: "quote__quote" }, il = { class: "quote__quote-text" }, rl = { class: "quote__author" }, ol = {
|
|
1725
1725
|
key: 0,
|
|
1726
1726
|
class: "quote__image"
|
|
1727
|
-
}, nl = { class: "quote__text" }, sl = { class: "quote__author-name" }, dl = { class: "quote__author-title" },
|
|
1727
|
+
}, nl = { class: "quote__text" }, sl = { class: "quote__author-name" }, dl = { class: "quote__author-title" }, cl = /* @__PURE__ */ _({
|
|
1728
1728
|
__name: "quote",
|
|
1729
1729
|
props: {
|
|
1730
1730
|
quote: {
|
|
@@ -1754,7 +1754,7 @@ const Qa = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-06964f7d"]]), Xa = (e) =
|
|
|
1754
1754
|
e.authorImage ? (i(), r("div", ol, [
|
|
1755
1755
|
k(D, null, {
|
|
1756
1756
|
default: $(() => [
|
|
1757
|
-
|
|
1757
|
+
u(l.$slots, "author-image", T(C({
|
|
1758
1758
|
src: e.authorImage + "/m/100x100",
|
|
1759
1759
|
width: 60,
|
|
1760
1760
|
height: 60
|
|
@@ -1773,7 +1773,7 @@ const Qa = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-06964f7d"]]), Xa = (e) =
|
|
|
1773
1773
|
]));
|
|
1774
1774
|
}
|
|
1775
1775
|
});
|
|
1776
|
-
const
|
|
1776
|
+
const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-3cc55dbf"]]), ml = { class: "rich-text__wrapper" }, _l = {
|
|
1777
1777
|
key: 0,
|
|
1778
1778
|
class: "rich-text__links"
|
|
1779
1779
|
}, vl = {
|
|
@@ -1815,7 +1815,7 @@ const cl = /* @__PURE__ */ v(ul, [["__scopeId", "data-v-3cc55dbf"]]), ml = { cla
|
|
|
1815
1815
|
},
|
|
1816
1816
|
setup(e) {
|
|
1817
1817
|
return (l, a) => (i(), r("div", {
|
|
1818
|
-
class:
|
|
1818
|
+
class: c([
|
|
1819
1819
|
"rich-text",
|
|
1820
1820
|
e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
|
|
1821
1821
|
])
|
|
@@ -1828,41 +1828,41 @@ const cl = /* @__PURE__ */ v(ul, [["__scopeId", "data-v-3cc55dbf"]]), ml = { cla
|
|
|
1828
1828
|
}, null, 8, ["text"])) : h("", !0),
|
|
1829
1829
|
e.headline ? (i(), r("h2", {
|
|
1830
1830
|
key: 1,
|
|
1831
|
-
class:
|
|
1831
|
+
class: c([
|
|
1832
1832
|
"rich-text__headline",
|
|
1833
1833
|
e.leftAligned || e.bulletList || e.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
|
|
1834
1834
|
])
|
|
1835
1835
|
}, d(e.headline), 3)) : h("", !0),
|
|
1836
1836
|
t("div", {
|
|
1837
|
-
class:
|
|
1837
|
+
class: c([
|
|
1838
1838
|
"rich-text__content",
|
|
1839
1839
|
e.leftAligned || e.bulletList || e.image ? "rich-text__content--left-aligned" : "rich-text__content--centered"
|
|
1840
1840
|
])
|
|
1841
1841
|
}, [
|
|
1842
1842
|
t("div", {
|
|
1843
|
-
class:
|
|
1843
|
+
class: c([
|
|
1844
1844
|
"rich-text__body",
|
|
1845
1845
|
e.bulletList || e.image ? "rich-text__body--content-right" : ""
|
|
1846
1846
|
])
|
|
1847
1847
|
}, [
|
|
1848
|
-
|
|
1848
|
+
u(l.$slots, "rich-text-content"),
|
|
1849
1849
|
e.links ? (i(), r("div", _l, [
|
|
1850
|
-
|
|
1850
|
+
u(l.$slots, "rich-text-links")
|
|
1851
1851
|
])) : h("", !0)
|
|
1852
1852
|
], 2),
|
|
1853
1853
|
e.bulletList ? (i(), r("div", vl, [
|
|
1854
|
-
|
|
1854
|
+
u(l.$slots, "rich-text-bullet-list")
|
|
1855
1855
|
])) : h("", !0),
|
|
1856
1856
|
e.image ? (i(), r("div", {
|
|
1857
1857
|
key: 1,
|
|
1858
|
-
class:
|
|
1858
|
+
class: c([
|
|
1859
1859
|
"rich-text__image",
|
|
1860
1860
|
e.imageClip ? "rich-text__image--clip" : ""
|
|
1861
1861
|
])
|
|
1862
1862
|
}, [
|
|
1863
1863
|
k(D, null, {
|
|
1864
1864
|
default: $(() => [
|
|
1865
|
-
|
|
1865
|
+
u(l.$slots, "rich-text-image", T(C({ width: 865, height: 307 })))
|
|
1866
1866
|
]),
|
|
1867
1867
|
_: 3
|
|
1868
1868
|
})
|
|
@@ -1893,7 +1893,7 @@ const gl = /* @__PURE__ */ v(hl, [["__scopeId", "data-v-af32c667"]]), fl = { cla
|
|
|
1893
1893
|
},
|
|
1894
1894
|
setup(e) {
|
|
1895
1895
|
return (l, a) => (i(), r("div", {
|
|
1896
|
-
class:
|
|
1896
|
+
class: c([
|
|
1897
1897
|
"triple-card-display",
|
|
1898
1898
|
e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
|
|
1899
1899
|
])
|
|
@@ -1904,7 +1904,7 @@ const gl = /* @__PURE__ */ v(hl, [["__scopeId", "data-v-af32c667"]]), fl = { cla
|
|
|
1904
1904
|
e.paragraph ? (i(), r("p", pl, d(e.paragraph), 1)) : h("", !0)
|
|
1905
1905
|
])) : h("", !0),
|
|
1906
1906
|
t("div", kl, [
|
|
1907
|
-
|
|
1907
|
+
u(l.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
1908
1908
|
])
|
|
1909
1909
|
])
|
|
1910
1910
|
], 2));
|
|
@@ -1930,13 +1930,32 @@ const wl = /* @__PURE__ */ v($l, [["__scopeId", "data-v-10340ac8"]]), xl = { cla
|
|
|
1930
1930
|
return (l, a) => (i(), r("div", xl, [
|
|
1931
1931
|
t("div", Sl, [
|
|
1932
1932
|
e.headline ? (i(), r("h2", Il, d(e.headline), 1)) : h("", !0),
|
|
1933
|
-
|
|
1933
|
+
u(l.$slots, "vimeo-content", {}, void 0, !0),
|
|
1934
1934
|
e.description ? (i(), r("p", ql, d(e.description), 1)) : h("", !0)
|
|
1935
1935
|
])
|
|
1936
1936
|
]));
|
|
1937
1937
|
}
|
|
1938
1938
|
});
|
|
1939
|
-
const Dl = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-2fc0faf9"]]), Bl = { class: "
|
|
1939
|
+
const Dl = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-2fc0faf9"]]), Bl = { class: "not-found__wrapper" }, Al = { class: "not-found__content" }, Ll = { class: "not-found__headline" }, Tl = { class: "not-found__body" }, Cl = /* @__PURE__ */ _({
|
|
1940
|
+
__name: "404",
|
|
1941
|
+
props: {
|
|
1942
|
+
headline: {
|
|
1943
|
+
type: String,
|
|
1944
|
+
required: !0
|
|
1945
|
+
}
|
|
1946
|
+
},
|
|
1947
|
+
setup(e) {
|
|
1948
|
+
return (l, a) => (i(), r("div", Bl, [
|
|
1949
|
+
t("div", Al, [
|
|
1950
|
+
t("h1", Ll, d(e.headline), 1),
|
|
1951
|
+
t("div", Tl, [
|
|
1952
|
+
u(l.$slots, "not-found-body", {}, void 0, !0)
|
|
1953
|
+
])
|
|
1954
|
+
])
|
|
1955
|
+
]));
|
|
1956
|
+
}
|
|
1957
|
+
});
|
|
1958
|
+
const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-c2038fe4"]]), Nl = { class: "filter__wrapper" }, zl = { class: "filter__content" }, Vl = { class: "filter__dropdowns" }, Ol = { class: "filter__chips" }, Pl = /* @__PURE__ */ _({
|
|
1940
1959
|
__name: "filter",
|
|
1941
1960
|
props: {
|
|
1942
1961
|
hasChips: {
|
|
@@ -1946,13 +1965,13 @@ const Dl = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-2fc0faf9"]]), Bl = { cla
|
|
|
1946
1965
|
},
|
|
1947
1966
|
emits: ["clearFilters"],
|
|
1948
1967
|
setup(e) {
|
|
1949
|
-
return (l, a) => (i(), r("div",
|
|
1950
|
-
t("div",
|
|
1951
|
-
t("div",
|
|
1952
|
-
|
|
1968
|
+
return (l, a) => (i(), r("div", Nl, [
|
|
1969
|
+
t("div", zl, [
|
|
1970
|
+
t("div", Vl, [
|
|
1971
|
+
u(l.$slots, "filter-dropdowns", {}, void 0, !0)
|
|
1953
1972
|
]),
|
|
1954
|
-
t("div",
|
|
1955
|
-
|
|
1973
|
+
t("div", Ol, [
|
|
1974
|
+
u(l.$slots, "filter-chips", {}, void 0, !0),
|
|
1956
1975
|
e.hasChips ? (i(), r("button", {
|
|
1957
1976
|
key: 0,
|
|
1958
1977
|
class: "filter__clear",
|
|
@@ -1963,10 +1982,10 @@ const Dl = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-2fc0faf9"]]), Bl = { cla
|
|
|
1963
1982
|
]));
|
|
1964
1983
|
}
|
|
1965
1984
|
});
|
|
1966
|
-
const
|
|
1985
|
+
const Hl = /* @__PURE__ */ v(Pl, [["__scopeId", "data-v-cf46dae2"]]), z = (e) => (P("data-v-1da7210c"), e = e(), H(), e), Zl = { class: "footer__wrapper" }, El = { class: "footer__content" }, Rl = { class: "footer__sections" }, Ul = { class: "section" }, Wl = { class: "section__title" }, Fl = { class: "section__list" }, Gl = { class: "section" }, Jl = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), Yl = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), Kl = /* @__PURE__ */ z(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), Ql = /* @__PURE__ */ z(() => /* @__PURE__ */ t("br", null, null, -1)), Xl = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), ei = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), ti = { class: "footer__bottom" }, ai = { class: "footer__copyright-policy" }, li = { class: "copyright" }, ii = /* @__PURE__ */ z(() => /* @__PURE__ */ t("a", { href: "" }, [
|
|
1967
1986
|
/* @__PURE__ */ t("i", { class: "change-region" }),
|
|
1968
1987
|
/* @__PURE__ */ O("Change region")
|
|
1969
|
-
], -1)),
|
|
1988
|
+
], -1)), ri = { class: "footer__social" }, oi = ["href", "aria-label"], ni = /* @__PURE__ */ _({
|
|
1970
1989
|
__name: "footer",
|
|
1971
1990
|
props: {
|
|
1972
1991
|
footerSections: {
|
|
@@ -1995,32 +2014,32 @@ const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-cf46dae2"]]), z = (e) =>
|
|
|
1995
2014
|
}
|
|
1996
2015
|
},
|
|
1997
2016
|
setup(e) {
|
|
1998
|
-
return (l, a) => (i(), r("div",
|
|
1999
|
-
t("footer",
|
|
2000
|
-
t("div",
|
|
2001
|
-
(i(!0), r(M, null, L(e.footerSections, (o) => (i(), r("div",
|
|
2002
|
-
t("span",
|
|
2017
|
+
return (l, a) => (i(), r("div", Zl, [
|
|
2018
|
+
t("footer", El, [
|
|
2019
|
+
t("div", Rl, [
|
|
2020
|
+
(i(!0), r(M, null, L(e.footerSections, (o) => (i(), r("div", Ul, [
|
|
2021
|
+
t("span", Wl, d(o.title), 1),
|
|
2003
2022
|
t("nav", null, [
|
|
2004
|
-
t("ul",
|
|
2005
|
-
|
|
2023
|
+
t("ul", Fl, [
|
|
2024
|
+
u(l.$slots, "section-links", {
|
|
2006
2025
|
links: o.links
|
|
2007
2026
|
})
|
|
2008
2027
|
])
|
|
2009
2028
|
])
|
|
2010
2029
|
]))), 256)),
|
|
2011
|
-
t("div",
|
|
2012
|
-
|
|
2030
|
+
t("div", Gl, [
|
|
2031
|
+
Jl,
|
|
2013
2032
|
t("address", null, [
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2033
|
+
Yl,
|
|
2034
|
+
Kl,
|
|
2035
|
+
Ql,
|
|
2017
2036
|
k(A, {
|
|
2018
2037
|
class: "footer__contact",
|
|
2019
2038
|
linkType: "regular-light",
|
|
2020
2039
|
underline: "false"
|
|
2021
2040
|
}, {
|
|
2022
2041
|
default: $(() => [
|
|
2023
|
-
|
|
2042
|
+
Xl
|
|
2024
2043
|
]),
|
|
2025
2044
|
_: 1
|
|
2026
2045
|
}),
|
|
@@ -2030,26 +2049,26 @@ const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-cf46dae2"]]), z = (e) =>
|
|
|
2030
2049
|
underline: "false"
|
|
2031
2050
|
}, {
|
|
2032
2051
|
default: $(() => [
|
|
2033
|
-
|
|
2052
|
+
ei
|
|
2034
2053
|
]),
|
|
2035
2054
|
_: 1
|
|
2036
2055
|
})
|
|
2037
2056
|
])
|
|
2038
2057
|
])
|
|
2039
2058
|
]),
|
|
2040
|
-
t("div",
|
|
2041
|
-
t("div",
|
|
2042
|
-
t("p",
|
|
2059
|
+
t("div", ti, [
|
|
2060
|
+
t("div", ai, [
|
|
2061
|
+
t("p", li, "© MiR " + d((/* @__PURE__ */ new Date()).getFullYear()), 1),
|
|
2043
2062
|
k(A, { linkType: "regular-light" }, {
|
|
2044
2063
|
default: $(() => [
|
|
2045
|
-
|
|
2064
|
+
ii
|
|
2046
2065
|
]),
|
|
2047
2066
|
_: 1
|
|
2048
2067
|
}),
|
|
2049
|
-
|
|
2050
|
-
|
|
2068
|
+
u(l.$slots, "footer-privacy-link"),
|
|
2069
|
+
u(l.$slots, "footer-cookie-link")
|
|
2051
2070
|
]),
|
|
2052
|
-
t("div",
|
|
2071
|
+
t("div", ri, [
|
|
2053
2072
|
(i(!0), r(M, null, L(e.socialMedia, (o) => (i(), j(A, {
|
|
2054
2073
|
underline: "false",
|
|
2055
2074
|
linkType: "regular"
|
|
@@ -2062,11 +2081,11 @@ const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-cf46dae2"]]), z = (e) =>
|
|
|
2062
2081
|
t("i", {
|
|
2063
2082
|
width: "19",
|
|
2064
2083
|
height: "14",
|
|
2065
|
-
class:
|
|
2084
|
+
class: c(["footer__social--icon", [
|
|
2066
2085
|
o.title === "linkedin" ? "bg-linkedin" : o.title === "facebook" ? "bg-facebook" : o.title === "instagram" ? "bg-instagram" : o.title === "twitter" ? "bg-twitter" : o.title === "youtube" ? "bg-youtube" : ""
|
|
2067
2086
|
]])
|
|
2068
2087
|
}, null, 2)
|
|
2069
|
-
], 8,
|
|
2088
|
+
], 8, oi)
|
|
2070
2089
|
]),
|
|
2071
2090
|
_: 2
|
|
2072
2091
|
}, 1024))), 256))
|
|
@@ -2076,19 +2095,19 @@ const jl = /* @__PURE__ */ v(Cl, [["__scopeId", "data-v-cf46dae2"]]), z = (e) =>
|
|
|
2076
2095
|
]));
|
|
2077
2096
|
}
|
|
2078
2097
|
});
|
|
2079
|
-
const
|
|
2098
|
+
const si = /* @__PURE__ */ v(ni, [["__scopeId", "data-v-1da7210c"]]), 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=", di = { class: "header__wrapper" }, ci = { class: "nav-wrapper" }, ui = { class: "mir-link-logo" }, mi = { class: "main-nav-items" }, _i = {
|
|
2080
2099
|
id: "menu-dropdown",
|
|
2081
2100
|
ref: "dropdownDiv"
|
|
2082
|
-
},
|
|
2101
|
+
}, vi = {
|
|
2083
2102
|
key: 0,
|
|
2084
2103
|
src: de,
|
|
2085
2104
|
alt: "dropdownarrow"
|
|
2086
|
-
},
|
|
2105
|
+
}, hi = {
|
|
2087
2106
|
key: 1,
|
|
2088
2107
|
src: de,
|
|
2089
2108
|
alt: "dropdownarrow",
|
|
2090
2109
|
style: { transform: "rotate(180deg)" }
|
|
2091
|
-
},
|
|
2110
|
+
}, gi = { class: "dropdown-content" }, fi = { class: "nav-search-wrapper" }, yi = ["src"], bi = { class: "mobile-logo-search-burger-wrapper" }, pi = { class: "mobile-mir-link-logo" }, ki = { class: "mobile-search-wrapper" }, $i = ["src"], wi = ["onClick"], xi = ["src"], Si = ["src"], Ii = { class: "mobile-menu-content-wrapper" }, qi = { class: "mobile-dropdown-content" }, Mi = /* @__PURE__ */ _({
|
|
2092
2111
|
__name: "header",
|
|
2093
2112
|
props: {
|
|
2094
2113
|
burgerState: {
|
|
@@ -2104,71 +2123,71 @@ const ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-1da7210c"]]), de = "data
|
|
|
2104
2123
|
setup(e, { emit: l }) {
|
|
2105
2124
|
const a = e;
|
|
2106
2125
|
x("");
|
|
2107
|
-
let o = null, n = x(a.burgerState),
|
|
2126
|
+
let o = null, n = x(a.burgerState), m = x(a.showDropDown);
|
|
2108
2127
|
X(
|
|
2109
2128
|
() => a.burgerState,
|
|
2110
2129
|
(f) => n.value = f
|
|
2111
2130
|
), X(
|
|
2112
2131
|
() => a.showDropDown,
|
|
2113
|
-
(f) =>
|
|
2132
|
+
(f) => m.value = f
|
|
2114
2133
|
), we(() => {
|
|
2115
2134
|
o = (f) => {
|
|
2116
|
-
f.target.closest("#menu-dropdown") || (
|
|
2135
|
+
f.target.closest("#menu-dropdown") || (m.value = !1);
|
|
2117
2136
|
}, window.addEventListener("click", o);
|
|
2118
2137
|
}), xe(() => {
|
|
2119
2138
|
o !== null && window.removeEventListener("click", o);
|
|
2120
2139
|
});
|
|
2121
2140
|
function S() {
|
|
2122
|
-
|
|
2141
|
+
m.value = !m.value, l("update:showDropDown", m.value);
|
|
2123
2142
|
}
|
|
2124
2143
|
function I() {
|
|
2125
2144
|
n.value = !n.value, l("update:burgerState", n.value);
|
|
2126
2145
|
}
|
|
2127
|
-
return (f, b) => (i(), r("div",
|
|
2146
|
+
return (f, b) => (i(), r("div", di, [
|
|
2128
2147
|
t("nav", null, [
|
|
2129
|
-
t("div",
|
|
2130
|
-
t("div",
|
|
2131
|
-
|
|
2148
|
+
t("div", ci, [
|
|
2149
|
+
t("div", ui, [
|
|
2150
|
+
u(f.$slots, "link-logo", {}, void 0, !0)
|
|
2132
2151
|
]),
|
|
2133
|
-
t("ul",
|
|
2134
|
-
|
|
2152
|
+
t("ul", mi, [
|
|
2153
|
+
u(f.$slots, "main-nav-items", {}, void 0, !0)
|
|
2135
2154
|
]),
|
|
2136
|
-
t("div",
|
|
2155
|
+
t("div", _i, [
|
|
2137
2156
|
t("button", {
|
|
2138
2157
|
onClick: S,
|
|
2139
2158
|
class: "nav-dropdown-btn"
|
|
2140
2159
|
}, [
|
|
2141
|
-
|
|
2142
|
-
p(
|
|
2160
|
+
u(f.$slots, "dropdown-title", {}, void 0, !0),
|
|
2161
|
+
p(m) == !1 ? (i(), r("img", vi)) : (i(), r("img", hi))
|
|
2143
2162
|
]),
|
|
2144
|
-
U(t("div",
|
|
2145
|
-
|
|
2163
|
+
U(t("div", gi, [
|
|
2164
|
+
u(f.$slots, "dropdown-links", {}, void 0, !0)
|
|
2146
2165
|
], 512), [
|
|
2147
|
-
[G, p(
|
|
2166
|
+
[G, p(m)]
|
|
2148
2167
|
])
|
|
2149
2168
|
], 512),
|
|
2150
|
-
t("div",
|
|
2169
|
+
t("div", fi, [
|
|
2151
2170
|
t("button", null, [
|
|
2152
2171
|
t("img", {
|
|
2153
2172
|
src: p(n) == !0 ? p(le) : p(ae),
|
|
2154
2173
|
alt: "search icon"
|
|
2155
|
-
}, null, 8,
|
|
2174
|
+
}, null, 8, yi)
|
|
2156
2175
|
])
|
|
2157
2176
|
])
|
|
2158
2177
|
]),
|
|
2159
2178
|
t("div", {
|
|
2160
|
-
class:
|
|
2179
|
+
class: c(["mobile-nav-wrapper", p(n) == !0 ? "mirsaic-mobile-bg" : ""])
|
|
2161
2180
|
}, [
|
|
2162
|
-
t("div",
|
|
2163
|
-
t("div",
|
|
2164
|
-
|
|
2181
|
+
t("div", bi, [
|
|
2182
|
+
t("div", pi, [
|
|
2183
|
+
u(f.$slots, "link-logo", {}, void 0, !0)
|
|
2165
2184
|
]),
|
|
2166
|
-
t("div",
|
|
2185
|
+
t("div", ki, [
|
|
2167
2186
|
t("button", null, [
|
|
2168
2187
|
t("img", {
|
|
2169
2188
|
src: p(n) == !0 ? p(le) : p(ae),
|
|
2170
2189
|
alt: "search icon"
|
|
2171
|
-
}, null, 8,
|
|
2190
|
+
}, null, 8, $i)
|
|
2172
2191
|
])
|
|
2173
2192
|
]),
|
|
2174
2193
|
t("button", {
|
|
@@ -2176,22 +2195,22 @@ const ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-1da7210c"]]), de = "data
|
|
|
2176
2195
|
class: "mobile-burger-wrapper"
|
|
2177
2196
|
}, [
|
|
2178
2197
|
t("img", {
|
|
2179
|
-
class:
|
|
2198
|
+
class: c(["burger-line", p(n) == !0 ? "burger-top-line-open" : ""]),
|
|
2180
2199
|
src: p(n) == !0 ? p(te) : p(ee)
|
|
2181
|
-
}, null, 10,
|
|
2200
|
+
}, null, 10, xi),
|
|
2182
2201
|
t("img", {
|
|
2183
|
-
class:
|
|
2202
|
+
class: c(["burger-line", p(n) == !0 ? "burger-bottom-line-open" : ""]),
|
|
2184
2203
|
src: p(n) == !0 ? p(te) : p(ee)
|
|
2185
|
-
}, null, 10,
|
|
2186
|
-
], 8,
|
|
2204
|
+
}, null, 10, Si)
|
|
2205
|
+
], 8, wi)
|
|
2187
2206
|
]),
|
|
2188
|
-
U(t("div",
|
|
2207
|
+
U(t("div", Ii, [
|
|
2189
2208
|
t("ul", null, [
|
|
2190
|
-
|
|
2209
|
+
u(f.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2191
2210
|
]),
|
|
2192
|
-
t("ul",
|
|
2193
|
-
|
|
2194
|
-
|
|
2211
|
+
t("ul", qi, [
|
|
2212
|
+
u(f.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2213
|
+
u(f.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2195
2214
|
])
|
|
2196
2215
|
], 512), [
|
|
2197
2216
|
[G, p(n)]
|
|
@@ -2201,7 +2220,7 @@ const ai = /* @__PURE__ */ v(ti, [["__scopeId", "data-v-1da7210c"]]), de = "data
|
|
|
2201
2220
|
]));
|
|
2202
2221
|
}
|
|
2203
2222
|
});
|
|
2204
|
-
const
|
|
2223
|
+
const Di = /* @__PURE__ */ v(Mi, [["__scopeId", "data-v-8ff68823"]]), Bi = { class: "pagination__wrapper" }, Ai = { class: "pagination__content" }, Li = /* @__PURE__ */ _({
|
|
2205
2224
|
__name: "pagination",
|
|
2206
2225
|
props: {
|
|
2207
2226
|
isPreviousDisabled: {
|
|
@@ -2215,15 +2234,15 @@ const wi = /* @__PURE__ */ v($i, [["__scopeId", "data-v-8ff68823"]]), xi = { cla
|
|
|
2215
2234
|
},
|
|
2216
2235
|
emits: ["previous", "next"],
|
|
2217
2236
|
setup(e) {
|
|
2218
|
-
return (l, a) => (i(), r("div",
|
|
2219
|
-
t("div",
|
|
2237
|
+
return (l, a) => (i(), r("div", Bi, [
|
|
2238
|
+
t("div", Ai, [
|
|
2220
2239
|
k(W, {
|
|
2221
2240
|
onClick: a[0] || (a[0] = (o) => l.$emit("previous")),
|
|
2222
2241
|
disabled: e.isPreviousDisabled,
|
|
2223
2242
|
variant: "previous",
|
|
2224
2243
|
ariaLabel: "previous"
|
|
2225
2244
|
}, null, 8, ["disabled"]),
|
|
2226
|
-
|
|
2245
|
+
u(l.$slots, "pagination-numbers"),
|
|
2227
2246
|
k(W, {
|
|
2228
2247
|
onClick: a[1] || (a[1] = (o) => l.$emit("next")),
|
|
2229
2248
|
disabled: e.isNextDisabled,
|
|
@@ -2234,9 +2253,9 @@ const wi = /* @__PURE__ */ v($i, [["__scopeId", "data-v-8ff68823"]]), xi = { cla
|
|
|
2234
2253
|
]));
|
|
2235
2254
|
}
|
|
2236
2255
|
});
|
|
2237
|
-
const
|
|
2256
|
+
const Ti = /* @__PURE__ */ v(Li, [["__scopeId", "data-v-161faef3"]]), ji = {
|
|
2238
2257
|
install: (e) => {
|
|
2239
|
-
e.component("AtomButton", W), e.component("AtomCheckbox", Le), e.component("AtomChip", ze), e.component("AtomDropdown", Ue), e.component("AtomImage", D), e.component("AtomLabel", F), e.component("AtomLink", A), e.component("AtomRadioButton", lt), e.component("AtomSelect", dt), e.component("AtomSlider", bt), e.component("AtomTextarea", qt), e.component("AtomTextField", Vt), e.component("AtomVideo", E), e.component("MoleculeBulletList", Ft), e.component("MoleculeCard", Kt), e.component("MoleculeEventCard", ra), e.component("MoleculeModal", se), e.component("BlockFacts", ha), e.component("BlockFeatures", xa), e.component("BlockHeadline", Ha), e.component("BlockImage", Ba), e.component("BlockImageGallery", za), e.component("BlockMicroStories", Ea), e.component("BlockProductHero", Ja), e.component("BlockPromo", Qa), e.component("BlockQuote",
|
|
2258
|
+
e.component("AtomButton", W), e.component("AtomCheckbox", Le), e.component("AtomChip", ze), e.component("AtomDropdown", Ue), e.component("AtomImage", D), e.component("AtomLabel", F), e.component("AtomLink", A), e.component("AtomRadioButton", lt), e.component("AtomSelect", dt), e.component("AtomSlider", bt), e.component("AtomTextarea", qt), e.component("AtomTextField", Vt), e.component("AtomVideo", E), e.component("MoleculeBulletList", Ft), e.component("MoleculeCard", Kt), e.component("MoleculeEventCard", ra), e.component("MoleculeModal", se), e.component("BlockFacts", ha), e.component("BlockFeatures", xa), e.component("BlockHeadline", Ha), e.component("BlockImage", Ba), e.component("BlockImageGallery", za), e.component("BlockMicroStories", Ea), e.component("BlockProductHero", Ja), e.component("BlockPromo", Qa), e.component("BlockQuote", ul), e.component("BlockRichText", gl), e.component("BlockTripleCardDisplay", wl), e.component("BlockVimeo", Dl), e.component("Organism404", jl), e.component("OrganismFilter", Hl), e.component("OrganismFooter", si), e.component("OrganismHeader", Di), e.component("OrganismPagination", Ti);
|
|
2240
2259
|
}
|
|
2241
2260
|
};
|
|
2242
2261
|
export {
|
|
@@ -2261,7 +2280,7 @@ export {
|
|
|
2261
2280
|
Ea as BlockMicroStories,
|
|
2262
2281
|
Ja as BlockProductHero,
|
|
2263
2282
|
Qa as BlockPromo,
|
|
2264
|
-
|
|
2283
|
+
ul as BlockQuote,
|
|
2265
2284
|
gl as BlockRichText,
|
|
2266
2285
|
wl as BlockTripleCardDisplay,
|
|
2267
2286
|
Dl as BlockVimeo,
|
|
@@ -2269,9 +2288,10 @@ export {
|
|
|
2269
2288
|
Kt as MoleculeCard,
|
|
2270
2289
|
ra as MoleculeEventCard,
|
|
2271
2290
|
se as MoleculeModal,
|
|
2272
|
-
jl as
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2291
|
+
jl as Organism404,
|
|
2292
|
+
Hl as OrganismFilter,
|
|
2293
|
+
si as OrganismFooter,
|
|
2294
|
+
Di as OrganismHeader,
|
|
2295
|
+
Ti as OrganismPagination,
|
|
2296
|
+
ji as default
|
|
2277
2297
|
};
|