@mirweb/mir-web-components 0.15.82 → 0.15.83
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/search/search.vue.d.ts +2 -0
- package/dist/components/organisms/search/search.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 +69 -61
- package/dist/mir-web-components.umd.js +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as h, openBlock as a, createElementBlock as r, normalizeClass as c, toDisplayString as o, createElementVNode as t, renderSlot as _, pushScopeId as O, popScopeId as z, computed as E, createTextVNode as j, ref as w, withDirectives as Q, Fragment as I, renderList as L, vShow as Z, normalizeProps as A, guardReactiveProps as M, mergeProps as ee, createVNode as p, Transition as
|
|
1
|
+
import { defineComponent as h, openBlock as a, createElementBlock as r, normalizeClass as c, toDisplayString as o, createElementVNode as t, renderSlot as _, pushScopeId as O, popScopeId as z, computed as E, createTextVNode as j, ref as w, withDirectives as Q, Fragment as I, renderList as L, vShow as Z, normalizeProps as A, guardReactiveProps as M, mergeProps as ee, createVNode as p, Transition as ge, withCtx as $, withModifiers as se, createBlock as D, createCommentVNode as m, watchEffect as oe, withKeys as ye, useSlots as be, normalizeStyle as te, isRef as ie, unref as S, onMounted as ne, watch as re, onUnmounted as pe } from "vue";
|
|
2
2
|
const $e = ["aria-label"], ke = /* @__PURE__ */ h({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -168,15 +168,15 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
168
168
|
},
|
|
169
169
|
emits: ["update:modelValue"],
|
|
170
170
|
setup(e, { emit: i }) {
|
|
171
|
-
const s = e, l = w(null), n = w(null), u = w([]), b = w(0), C = w(""), q = w(!0),
|
|
171
|
+
const s = e, l = w(null), n = w(null), u = w([]), b = w(0), C = w(""), q = w(!0), g = w(0), B = E(() => {
|
|
172
172
|
const d = s.options.find(
|
|
173
|
-
(
|
|
173
|
+
(f) => f.value === s.modelValue
|
|
174
174
|
);
|
|
175
175
|
return d && d.label;
|
|
176
176
|
}), X = {
|
|
177
|
-
beforeMount(d,
|
|
177
|
+
beforeMount(d, f) {
|
|
178
178
|
d.clickOutsideEvent = function(y) {
|
|
179
|
-
d === y.target || d.contains(y.target) ||
|
|
179
|
+
d === y.target || d.contains(y.target) || f.value(y);
|
|
180
180
|
}, document.body.addEventListener("click", d.clickOutsideEvent);
|
|
181
181
|
},
|
|
182
182
|
unmounted(d) {
|
|
@@ -188,13 +188,13 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
188
188
|
}
|
|
189
189
|
function H(d) {
|
|
190
190
|
var y;
|
|
191
|
-
const
|
|
192
|
-
|
|
191
|
+
const f = d.target;
|
|
192
|
+
f.getAttribute("role") === "option" && (U(f), Y(), (y = l.value) == null || y.focus());
|
|
193
193
|
}
|
|
194
194
|
function G(d) {
|
|
195
195
|
var y;
|
|
196
|
-
const
|
|
197
|
-
switch (
|
|
196
|
+
const f = d.key;
|
|
197
|
+
switch (f) {
|
|
198
198
|
case "ArrowUp":
|
|
199
199
|
case "ArrowDown": {
|
|
200
200
|
d.preventDefault();
|
|
@@ -202,7 +202,7 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
202
202
|
(R) => R.value === s.modelValue
|
|
203
203
|
);
|
|
204
204
|
let P = x ? u.value[x] : u.value[0];
|
|
205
|
-
|
|
205
|
+
f === "ArrowUp" ? x - 1 >= 0 && (P = u.value[x - 1]) : x + 1 <= s.options.length && (P = u.value[x + 1]), P && U(P);
|
|
206
206
|
break;
|
|
207
207
|
}
|
|
208
208
|
case "Home":
|
|
@@ -218,7 +218,7 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
218
218
|
d.preventDefault(), Y(), (y = l.value) == null || y.focus();
|
|
219
219
|
break;
|
|
220
220
|
default: {
|
|
221
|
-
const x = _e(
|
|
221
|
+
const x = _e(f);
|
|
222
222
|
x && U(x);
|
|
223
223
|
break;
|
|
224
224
|
}
|
|
@@ -242,18 +242,18 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
242
242
|
}, 500);
|
|
243
243
|
}
|
|
244
244
|
function _e(d) {
|
|
245
|
-
let
|
|
246
|
-
(C.value === "" ||
|
|
245
|
+
let f = "";
|
|
246
|
+
(C.value === "" || f !== d) && (g.value = s.options.findIndex(
|
|
247
247
|
(x) => x.value === s.modelValue
|
|
248
|
-
)), C.value =
|
|
248
|
+
)), C.value = f === d ? d : C.value + d, f = d, ue();
|
|
249
249
|
let y = ae(
|
|
250
|
-
|
|
250
|
+
g.value + 1,
|
|
251
251
|
s.options.length
|
|
252
252
|
);
|
|
253
|
-
return !y && C.value.length === 1 && (y = ae(0,
|
|
253
|
+
return !y && C.value.length === 1 && (y = ae(0, g.value)), g.value = (g.value + 1) % s.options.length, y;
|
|
254
254
|
}
|
|
255
|
-
function ae(d,
|
|
256
|
-
for (let y = d; y <
|
|
255
|
+
function ae(d, f) {
|
|
256
|
+
for (let y = d; y < f; y++)
|
|
257
257
|
if (s.options[y].label && s.options[y].label.toUpperCase().indexOf(C.value.toUpperCase()) === 0)
|
|
258
258
|
return u.value[y];
|
|
259
259
|
return null;
|
|
@@ -263,24 +263,24 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
263
263
|
}
|
|
264
264
|
function U(d) {
|
|
265
265
|
var y, x;
|
|
266
|
-
const
|
|
266
|
+
const f = d.getAttribute("data-value");
|
|
267
267
|
if (s.modelValue) {
|
|
268
268
|
const P = s.options.findIndex(
|
|
269
|
-
(
|
|
269
|
+
(fe) => fe.value === s.modelValue
|
|
270
270
|
), R = u.value[P];
|
|
271
271
|
ce(R);
|
|
272
272
|
}
|
|
273
273
|
if (d.setAttribute("aria-selected", "true"), (y = n.value) == null || y.setAttribute(
|
|
274
274
|
"aria-activedescendant",
|
|
275
|
-
|
|
276
|
-
), k(
|
|
275
|
+
f || ""
|
|
276
|
+
), k(f || ""), n.value && n.value.scrollHeight > n.value.clientHeight) {
|
|
277
277
|
const P = n.value.clientHeight + n.value.scrollTop, R = d.offsetTop + d.offsetHeight;
|
|
278
278
|
R > P ? n.value.scrollTop = R - ((x = n.value) == null ? void 0 : x.clientHeight) : d.offsetTop < n.value.scrollTop && (n.value.scrollTop = d.offsetTop);
|
|
279
279
|
}
|
|
280
280
|
}
|
|
281
281
|
function ve() {
|
|
282
|
-
var
|
|
283
|
-
const d = (
|
|
282
|
+
var f;
|
|
283
|
+
const d = (f = u.value) == null ? void 0 : f[s.options.length - 1];
|
|
284
284
|
U(d);
|
|
285
285
|
}
|
|
286
286
|
function Y() {
|
|
@@ -288,13 +288,13 @@ const Ae = /* @__PURE__ */ v(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
|
|
|
288
288
|
q.value = !0, (d = l.value) == null || d.removeAttribute("aria-expanded");
|
|
289
289
|
}
|
|
290
290
|
function le() {
|
|
291
|
-
var d,
|
|
292
|
-
q.value = !1, (d = l.value) == null || d.setAttribute("aria-expanded", "true"), (
|
|
291
|
+
var d, f;
|
|
292
|
+
q.value = !1, (d = l.value) == null || d.setAttribute("aria-expanded", "true"), (f = n.value) == null || f.focus();
|
|
293
293
|
}
|
|
294
294
|
function me() {
|
|
295
295
|
s.disabled || (q.value ? le() : Y());
|
|
296
296
|
}
|
|
297
|
-
return (d,
|
|
297
|
+
return (d, f) => (a(), r("div", {
|
|
298
298
|
class: "listbox__wrapper",
|
|
299
299
|
value: e.modelValue,
|
|
300
300
|
ref: "listbox"
|
|
@@ -610,7 +610,7 @@ const rt = /* @__PURE__ */ v(it, [["__scopeId", "data-v-500637d5"]]), st = { cla
|
|
|
610
610
|
i("update:show", !s.show);
|
|
611
611
|
};
|
|
612
612
|
return (n, u) => (a(), r("div", st, [
|
|
613
|
-
p(
|
|
613
|
+
p(ge, {
|
|
614
614
|
duration: 300,
|
|
615
615
|
name: "nested"
|
|
616
616
|
}, {
|
|
@@ -645,7 +645,7 @@ const rt = /* @__PURE__ */ v(it, [["__scopeId", "data-v-500637d5"]]), st = { cla
|
|
|
645
645
|
]));
|
|
646
646
|
}
|
|
647
647
|
});
|
|
648
|
-
const de = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-
|
|
648
|
+
const de = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-e18c70fd"]]), nt = { class: "slider__wrapper" }, dt = { class: "slider__label" }, ct = ["for"], ut = ["aria-label"], _t = { class: "slider__content" }, ht = ["id", "name", "value", "min", "step", "max"], vt = /* @__PURE__ */ h({
|
|
649
649
|
__name: "slider",
|
|
650
650
|
props: {
|
|
651
651
|
label: {
|
|
@@ -698,18 +698,18 @@ const de = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-84d2402b"]]), nt = { cla
|
|
|
698
698
|
},
|
|
699
699
|
emits: ["update:modelValue"],
|
|
700
700
|
setup(e, { emit: i }) {
|
|
701
|
-
const s = e, l = w(s.modelValue), n = w(), u = w(!1), b = (q,
|
|
702
|
-
var
|
|
703
|
-
(
|
|
701
|
+
const s = e, l = w(s.modelValue), n = w(), u = w(!1), b = (q, g, B) => (q - g) / (B - g) * 100, C = (q) => {
|
|
702
|
+
var g;
|
|
703
|
+
(g = n.value) == null || g.style.setProperty("--ProgressPercent", `${q}%`);
|
|
704
704
|
};
|
|
705
705
|
return oe(() => {
|
|
706
706
|
if (n.value) {
|
|
707
707
|
i("update:modelValue", l.value);
|
|
708
708
|
const q = b(l.value, s.min, s.max);
|
|
709
|
-
let
|
|
710
|
-
C(q +
|
|
709
|
+
let g = (50 - q) / 100;
|
|
710
|
+
C(q + g);
|
|
711
711
|
}
|
|
712
|
-
}), (q,
|
|
712
|
+
}), (q, g) => (a(), r("div", null, [
|
|
713
713
|
t("div", nt, [
|
|
714
714
|
t("div", dt, [
|
|
715
715
|
t("label", {
|
|
@@ -720,8 +720,8 @@ const de = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-84d2402b"]]), nt = { cla
|
|
|
720
720
|
key: 0,
|
|
721
721
|
role: "button",
|
|
722
722
|
class: c([e.variant, "slider__information"]),
|
|
723
|
-
onClick:
|
|
724
|
-
onKeyup:
|
|
723
|
+
onClick: g[0] || (g[0] = (B) => u.value = !u.value),
|
|
724
|
+
onKeyup: g[1] || (g[1] = ye((B) => u.value = !u.value, ["enter"])),
|
|
725
725
|
"aria-label": e.informationLabel,
|
|
726
726
|
tabindex: "0",
|
|
727
727
|
"aria-haspopup": "dialog"
|
|
@@ -742,7 +742,7 @@ const de = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-84d2402b"]]), nt = { cla
|
|
|
742
742
|
class: c(e.variant),
|
|
743
743
|
ref_key: "slider",
|
|
744
744
|
ref: n,
|
|
745
|
-
onInput:
|
|
745
|
+
onInput: g[2] || (g[2] = ({ target: B }) => l.value = parseFloat(B.value))
|
|
746
746
|
}, null, 42, ht),
|
|
747
747
|
t("span", {
|
|
748
748
|
class: c([e.variant, "slider__minmax"])
|
|
@@ -755,7 +755,7 @@ const de = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-84d2402b"]]), nt = { cla
|
|
|
755
755
|
e.information ? (a(), D(de, {
|
|
756
756
|
key: 0,
|
|
757
757
|
show: u.value,
|
|
758
|
-
"onUpdate:show":
|
|
758
|
+
"onUpdate:show": g[3] || (g[3] = (B) => u.value = B)
|
|
759
759
|
}, {
|
|
760
760
|
default: $(() => [
|
|
761
761
|
j(o(e.information), 1)
|
|
@@ -765,7 +765,7 @@ const de = /* @__PURE__ */ v(ot, [["__scopeId", "data-v-84d2402b"]]), nt = { cla
|
|
|
765
765
|
]));
|
|
766
766
|
}
|
|
767
767
|
});
|
|
768
|
-
const mt = /* @__PURE__ */ v(vt, [["__scopeId", "data-v-6dbb2648"]]),
|
|
768
|
+
const mt = /* @__PURE__ */ v(vt, [["__scopeId", "data-v-6dbb2648"]]), ft = { id: "textarea-wrapper" }, gt = ["for"], yt = ["id"], bt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], pt = { class: "textarea-info" }, $t = { key: 0 }, kt = /* @__PURE__ */ h({
|
|
769
769
|
__name: "textarea",
|
|
770
770
|
props: {
|
|
771
771
|
id: {
|
|
@@ -805,11 +805,11 @@ const mt = /* @__PURE__ */ v(vt, [["__scopeId", "data-v-6dbb2648"]]), gt = { id:
|
|
|
805
805
|
},
|
|
806
806
|
emits: ["update:modelValue"],
|
|
807
807
|
setup(e) {
|
|
808
|
-
return (i, s) => (a(), r("div",
|
|
808
|
+
return (i, s) => (a(), r("div", ft, [
|
|
809
809
|
t("label", {
|
|
810
810
|
for: e.id,
|
|
811
811
|
class: c({ required: e.required })
|
|
812
|
-
}, o(e.labelText) + o(e.required ? " *" : ""), 11,
|
|
812
|
+
}, o(e.labelText) + o(e.required ? " *" : ""), 11, gt),
|
|
813
813
|
t("div", {
|
|
814
814
|
id: e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "textarea-wrapper__inner" : ""
|
|
815
815
|
}, [
|
|
@@ -1332,7 +1332,7 @@ const ra = /* @__PURE__ */ v(ia, [["__scopeId", "data-v-ed5d7a87"]]), sa = (e) =
|
|
|
1332
1332
|
]));
|
|
1333
1333
|
}
|
|
1334
1334
|
});
|
|
1335
|
-
const ha = /* @__PURE__ */ v(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { class: "text__wrapper" }, ma = { class: "text__headline" },
|
|
1335
|
+
const ha = /* @__PURE__ */ v(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { class: "text__wrapper" }, ma = { class: "text__headline" }, fa = { class: "text__paragraph" }, ga = /* @__PURE__ */ h({
|
|
1336
1336
|
__name: "text-card",
|
|
1337
1337
|
props: {
|
|
1338
1338
|
label: {
|
|
@@ -1355,13 +1355,13 @@ const ha = /* @__PURE__ */ v(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { cla
|
|
|
1355
1355
|
text: e.label ? e.label : ""
|
|
1356
1356
|
}, null, 8, ["text"]),
|
|
1357
1357
|
t("div", ma, o(e.headline), 1),
|
|
1358
|
-
t("div",
|
|
1358
|
+
t("div", fa, [
|
|
1359
1359
|
t("p", null, o(e.paragraph), 1)
|
|
1360
1360
|
])
|
|
1361
1361
|
]));
|
|
1362
1362
|
}
|
|
1363
1363
|
});
|
|
1364
|
-
const ya = /* @__PURE__ */ v(
|
|
1364
|
+
const ya = /* @__PURE__ */ v(ga, [["__scopeId", "data-v-b07d352b"]]), ba = { class: "facts__wrapper" }, pa = { class: "facts__content" }, $a = { class: "facts__headline" }, ka = { class: "facts" }, wa = { class: "fact" }, xa = { class: "fact__value" }, Sa = { class: "fact__metric" }, qa = {
|
|
1365
1365
|
key: 0,
|
|
1366
1366
|
class: "facts__link"
|
|
1367
1367
|
}, Ba = /* @__PURE__ */ h({
|
|
@@ -1699,7 +1699,7 @@ const el = /* @__PURE__ */ v(Za, [["__scopeId", "data-v-080238bd"]]), tl = (e) =
|
|
|
1699
1699
|
const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-de757e46"]]), _l = { class: "logo-wall__wrapper" }, hl = { class: "logo-wall__content" }, vl = {
|
|
1700
1700
|
key: 0,
|
|
1701
1701
|
class: "logo-wall__text"
|
|
1702
|
-
}, ml = { key: 0 },
|
|
1702
|
+
}, ml = { key: 0 }, fl = { key: 1 }, gl = { class: "logo-wall__logos" }, yl = { class: "logo-wall__logo" }, bl = { class: "logo-wall__link" }, pl = /* @__PURE__ */ h({
|
|
1703
1703
|
__name: "logo-wall",
|
|
1704
1704
|
props: {
|
|
1705
1705
|
headline: {
|
|
@@ -1719,9 +1719,9 @@ const ul = /* @__PURE__ */ v(cl, [["__scopeId", "data-v-de757e46"]]), _l = { cla
|
|
|
1719
1719
|
t("div", hl, [
|
|
1720
1720
|
e.headline || e.body ? (a(), r("div", vl, [
|
|
1721
1721
|
e.headline ? (a(), r("h2", ml, o(e.headline), 1)) : m("", !0),
|
|
1722
|
-
e.body ? (a(), r("p",
|
|
1722
|
+
e.body ? (a(), r("p", fl, o(e.body), 1)) : m("", !0)
|
|
1723
1723
|
])) : m("", !0),
|
|
1724
|
-
t("div",
|
|
1724
|
+
t("div", gl, [
|
|
1725
1725
|
(a(!0), r(I, null, L(e.logos, (l) => (a(), r("div", yl, [
|
|
1726
1726
|
p(T, null, {
|
|
1727
1727
|
default: $(() => [
|
|
@@ -2179,7 +2179,7 @@ const ti = /* @__PURE__ */ v(ei, [["__scopeId", "data-v-ab50f960"]]), ai = (e) =
|
|
|
2179
2179
|
const _i = /* @__PURE__ */ v(ui, [["__scopeId", "data-v-df182fbb"]]), hi = { class: "triple-card-display__wrapper" }, vi = {
|
|
2180
2180
|
key: 0,
|
|
2181
2181
|
class: "triple-card__content"
|
|
2182
|
-
}, mi = { key: 0 },
|
|
2182
|
+
}, mi = { key: 0 }, fi = { key: 1 }, gi = { class: "triple-card__cards" }, yi = /* @__PURE__ */ h({
|
|
2183
2183
|
__name: "triple-card-display",
|
|
2184
2184
|
props: {
|
|
2185
2185
|
headline: {
|
|
@@ -2205,9 +2205,9 @@ const _i = /* @__PURE__ */ v(ui, [["__scopeId", "data-v-df182fbb"]]), hi = { cla
|
|
|
2205
2205
|
t("div", hi, [
|
|
2206
2206
|
e.headline || e.paragraph ? (a(), r("div", vi, [
|
|
2207
2207
|
e.headline ? (a(), r("h2", mi, o(e.headline), 1)) : m("", !0),
|
|
2208
|
-
e.paragraph ? (a(), r("p",
|
|
2208
|
+
e.paragraph ? (a(), r("p", fi, o(e.paragraph), 1)) : m("", !0)
|
|
2209
2209
|
])) : m("", !0),
|
|
2210
|
-
t("div",
|
|
2210
|
+
t("div", gi, [
|
|
2211
2211
|
_(i.$slots, "triple-card-display-cards", {}, void 0, !0)
|
|
2212
2212
|
])
|
|
2213
2213
|
])
|
|
@@ -2412,7 +2412,7 @@ const rr = /* @__PURE__ */ v(ir, [["__scopeId", "data-v-d2cab33d"]]), sr = { cla
|
|
|
2412
2412
|
src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
|
|
2413
2413
|
alt: "dropdownarrow",
|
|
2414
2414
|
style: { transform: "rotate(180deg)" }
|
|
2415
|
-
}, hr = { class: "dropdown-content" }, vr = { class: "nav-search-wrapper" }, mr = ["src"],
|
|
2415
|
+
}, hr = { class: "dropdown-content" }, vr = { class: "nav-search-wrapper" }, mr = ["src"], fr = { class: "mobile-logo-search-burger-wrapper" }, gr = { class: "mobile-mir-link-logo" }, yr = { class: "mobile-search-wrapper" }, br = ["src"], pr = ["onClick"], $r = ["src"], kr = ["src"], wr = { class: "mobile-menu-content-wrapper" }, xr = { class: "mobile-dropdown-content" }, Sr = /* @__PURE__ */ h({
|
|
2416
2416
|
__name: "header",
|
|
2417
2417
|
props: {
|
|
2418
2418
|
burgerState: {
|
|
@@ -2452,9 +2452,9 @@ const rr = /* @__PURE__ */ v(ir, [["__scopeId", "data-v-d2cab33d"]]), sr = { cla
|
|
|
2452
2452
|
function q() {
|
|
2453
2453
|
u.value = !u.value, s("update:burgerState", u.value);
|
|
2454
2454
|
}
|
|
2455
|
-
let
|
|
2455
|
+
let g = w(null), B = w(null);
|
|
2456
2456
|
function X() {
|
|
2457
|
-
|
|
2457
|
+
g.value && g.value.blur();
|
|
2458
2458
|
}
|
|
2459
2459
|
return i({
|
|
2460
2460
|
defocusSearchButton: X
|
|
@@ -2486,10 +2486,10 @@ const rr = /* @__PURE__ */ v(ir, [["__scopeId", "data-v-d2cab33d"]]), sr = { cla
|
|
|
2486
2486
|
class: "search-icon",
|
|
2487
2487
|
onClick: H[0] || (H[0] = (G) => {
|
|
2488
2488
|
var F;
|
|
2489
|
-
return k.$emit("clickSearch"), (F = S(
|
|
2489
|
+
return k.$emit("clickSearch"), (F = S(g)) == null ? void 0 : F.blur();
|
|
2490
2490
|
}),
|
|
2491
2491
|
ref_key: "navSearchButton",
|
|
2492
|
-
ref:
|
|
2492
|
+
ref: g
|
|
2493
2493
|
}, [
|
|
2494
2494
|
t("img", {
|
|
2495
2495
|
src: S(u) == !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
|
|
@@ -2503,8 +2503,8 @@ const rr = /* @__PURE__ */ v(ir, [["__scopeId", "data-v-d2cab33d"]]), sr = { cla
|
|
|
2503
2503
|
t("div", {
|
|
2504
2504
|
class: c(["mobile-nav-wrapper", S(u) == !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
|
|
2505
2505
|
}, [
|
|
2506
|
-
t("div",
|
|
2507
|
-
t("div",
|
|
2506
|
+
t("div", fr, [
|
|
2507
|
+
t("div", gr, [
|
|
2508
2508
|
_(k.$slots, "link-logo", {}, void 0, !0)
|
|
2509
2509
|
]),
|
|
2510
2510
|
t("div", yr, [
|
|
@@ -2608,9 +2608,16 @@ const Vr = /* @__PURE__ */ v(Cr, [["__scopeId", "data-v-a76ba727"]]), Ar = { cla
|
|
|
2608
2608
|
]));
|
|
2609
2609
|
}
|
|
2610
2610
|
});
|
|
2611
|
-
const Or = /* @__PURE__ */ v(Mr, [["__scopeId", "data-v-9f08dcf6"]])
|
|
2611
|
+
const Or = /* @__PURE__ */ v(Mr, [["__scopeId", "data-v-9f08dcf6"]]);
|
|
2612
|
+
const zr = {}, Pr = { class: "search__wrapper" };
|
|
2613
|
+
function Fr(e, i) {
|
|
2614
|
+
return a(), r("div", Pr, [
|
|
2615
|
+
_(e.$slots, "default", { class: "search__content" })
|
|
2616
|
+
]);
|
|
2617
|
+
}
|
|
2618
|
+
const Er = /* @__PURE__ */ v(zr, [["render", Fr], ["__scopeId", "data-v-79fbf2ed"]]), Hr = {
|
|
2612
2619
|
install: (e) => {
|
|
2613
|
-
e.component("AtomButton", J), e.component("AtomCheckbox", Ie), e.component("AtomChip", Ae), e.component("AtomDropdown", Ne), e.component("AtomImage", T), e.component("AtomLabel", W), e.component("AtomLink", V), e.component("AtomRadioButton", Ze), e.component("AtomSelect", rt), e.component("AtomSlider", mt), e.component("AtomTextarea", wt), e.component("AtomTextField", Dt), e.component("AtomVideo", K), e.component("MoleculeAddress", Yt), e.component("MoleculeBulletList", ea), e.component("MoleculeCard", ra), e.component("MoleculeEventCard", ha), e.component("MoleculeModal", de), e.component("MoleculeTextCard", ya), e.component("BlockFacts", Ia), e.component("BlockFeatures", za), e.component("BlockHeadline", el), e.component("BlockHero", ul), e.component("BlockImage", Ra), e.component("BlockImageGallery", Qa), e.component("BlockLogoWall", $l), e.component("BlockMicroStories", wl), e.component("BlockPolicy", Il), e.component("BlockProductHero", Dl), e.component("BlockPromo", zl), e.component("BlockQuote", Ql), e.component("BlockRichText", ti), e.component("BlockTimeline", _i), e.component("BlockTripleCardDisplay", bi), e.component("BlockVimeo", Si), e.component("Organism404", Ci), e.component("OrganismFilter", zi), e.component("OrganismFooter", rr), e.component("OrganismHeader", qr), e.component("OrganismLanguageSwitcher", Vr), e.component("OrganismPagination", Or);
|
|
2620
|
+
e.component("AtomButton", J), e.component("AtomCheckbox", Ie), e.component("AtomChip", Ae), e.component("AtomDropdown", Ne), e.component("AtomImage", T), e.component("AtomLabel", W), e.component("AtomLink", V), e.component("AtomRadioButton", Ze), e.component("AtomSelect", rt), e.component("AtomSlider", mt), e.component("AtomTextarea", wt), e.component("AtomTextField", Dt), e.component("AtomVideo", K), e.component("MoleculeAddress", Yt), e.component("MoleculeBulletList", ea), e.component("MoleculeCard", ra), e.component("MoleculeEventCard", ha), e.component("MoleculeModal", de), e.component("MoleculeTextCard", ya), e.component("BlockFacts", Ia), e.component("BlockFeatures", za), e.component("BlockHeadline", el), e.component("BlockHero", ul), e.component("BlockImage", Ra), e.component("BlockImageGallery", Qa), e.component("BlockLogoWall", $l), e.component("BlockMicroStories", wl), e.component("BlockPolicy", Il), e.component("BlockProductHero", Dl), e.component("BlockPromo", zl), e.component("BlockQuote", Ql), e.component("BlockRichText", ti), e.component("BlockTimeline", _i), e.component("BlockTripleCardDisplay", bi), e.component("BlockVimeo", Si), e.component("Organism404", Ci), e.component("OrganismFilter", zi), e.component("OrganismFooter", rr), e.component("OrganismHeader", qr), e.component("OrganismLanguageSwitcher", Vr), e.component("OrganismPagination", Or), e.component("OrganismSearch", Er);
|
|
2614
2621
|
}
|
|
2615
2622
|
};
|
|
2616
2623
|
export {
|
|
@@ -2655,5 +2662,6 @@ export {
|
|
|
2655
2662
|
qr as OrganismHeader,
|
|
2656
2663
|
Vr as OrganismLanguageSwitcher,
|
|
2657
2664
|
Or as OrganismPagination,
|
|
2658
|
-
|
|
2665
|
+
Er as OrganismSearch,
|
|
2666
|
+
Hr as default
|
|
2659
2667
|
};
|