@mirweb/mir-web-components 1.7.15 → 1.7.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { defineComponent as g, computed as A, openBlock as s, createElementBlock as i, normalizeClass as p, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as U, Fragment as T, renderList as V, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as M, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as L, createCommentVNode as _, watchEffect as pe, withKeys as Ce, useSlots as qe, normalizeStyle as x, isRef as ce, unref as I, onMounted as me, watch as Q, onUnmounted as Ae } from "vue";
1
+ import { defineComponent as g, computed as A, openBlock as l, createElementBlock as i, normalizeClass as p, toDisplayString as d, createElementVNode as t, renderSlot as c, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as U, Fragment as T, renderList as V, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as M, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as L, createCommentVNode as h, watchEffect as pe, withKeys as Ce, useSlots as qe, normalizeStyle as ee, isRef as x, unref as I, onMounted as me, watch as Q, onUnmounted as Ae } from "vue";
2
2
  const Le = ["aria-label"], De = /* @__PURE__ */ g({
3
3
  __name: "button",
4
4
  props: {
@@ -15,17 +15,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
15
15
  next: "next",
16
16
  previous: "previous"
17
17
  }, r = e, o = A(() => a[r.variant]);
18
- return (l, u) => (s(), i("button", {
18
+ return (s, u) => (l(), i("button", {
19
19
  class: p(["button", "button--" + o.value]),
20
- "aria-label": l.ariaLabel
21
- }, d(o.value === "close" ? "" : l.buttonText), 11, Le));
20
+ "aria-label": s.ariaLabel
21
+ }, d(o.value === "close" ? "" : s.buttonText), 11, Le));
22
22
  }
23
23
  }), v = (e, a) => {
24
24
  const r = e.__vccOpts || e;
25
- for (const [o, l] of a)
26
- r[o] = l;
25
+ for (const [o, s] of a)
26
+ r[o] = s;
27
27
  return r;
28
- }, se = /* @__PURE__ */ v(De, [["__scopeId", "data-v-f61b579c"]]), Te = (e) => (H("data-v-0c4c6d8e"), e = e(), R(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ Te(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
28
+ }, le = /* @__PURE__ */ v(De, [["__scopeId", "data-v-f61b579c"]]), Te = (e) => (H("data-v-0c4c6d8e"), e = e(), R(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ Te(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
29
29
  __name: "checkbox",
30
30
  props: {
31
31
  name: { default: "checkbox" },
@@ -37,30 +37,30 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
37
37
  },
38
38
  emits: ["input"],
39
39
  setup(e, { emit: a }) {
40
- const r = a, o = (l) => {
41
- const u = l.target;
40
+ const r = a, o = (s) => {
41
+ const u = s.target;
42
42
  r("input", u.checked);
43
43
  };
44
- return (l, u) => (s(), i("div", {
45
- class: p(["checkbox__wrapper", l.disabled ? "disabled" : ""])
44
+ return (s, u) => (l(), i("div", {
45
+ class: p(["checkbox__wrapper", s.disabled ? "disabled" : ""])
46
46
  }, [
47
47
  t("input", {
48
- id: l.id,
48
+ id: s.id,
49
49
  type: "checkbox",
50
- name: l.name,
51
- value: l.value,
52
- disabled: l.disabled,
53
- required: l.required,
54
- checked: l.checked,
50
+ name: s.name,
51
+ value: s.value,
52
+ disabled: s.disabled,
53
+ required: s.required,
54
+ checked: s.checked,
55
55
  class: "checkbox__checkbox",
56
56
  onChange: o
57
57
  }, null, 40, Ve),
58
58
  t("label", {
59
- for: l.id,
60
- class: p(["checkbox__label", l.required ? "required" : ""])
59
+ for: s.id,
60
+ class: p(["checkbox__label", s.required ? "required" : ""])
61
61
  }, [
62
62
  Fe,
63
- c(l.$slots, "default", {}, void 0, !0)
63
+ c(s.$slots, "default", {}, void 0, !0)
64
64
  ], 10, Pe)
65
65
  ], 2));
66
66
  }
@@ -76,9 +76,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
76
76
  emits: ["remove-chip"],
77
77
  setup(e) {
78
78
  const a = e, r = A(() => `Chip: ${a.text}`);
79
- return (o, l) => (s(), i("div", {
79
+ return (o, s) => (l(), i("div", {
80
80
  class: "chip__wrapper",
81
- onClick: l[0] || (l[0] = (u) => o.$emit("remove-chip"))
81
+ onClick: s[0] || (s[0] = (u) => o.$emit("remove-chip"))
82
82
  }, [
83
83
  t("span", {
84
84
  class: "chip",
@@ -107,19 +107,19 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
107
107
  const r = {
108
108
  primary: "dropdown-dark-bg-primary",
109
109
  dark: "dropdown-dark dropdown-dark-bg-dark"
110
- }, o = e, l = A(() => r[o.variant]), u = C(null), h = C(null), n = C([]), b = C(0), f = C(""), k = C(!0), w = C(0), te = a, ie = A(() => {
110
+ }, o = e, s = A(() => r[o.variant]), u = C(null), _ = C(null), n = C([]), b = C(0), f = C(""), k = C(!0), w = C(0), ae = a, re = A(() => {
111
111
  const m = o.options.find(
112
112
  (B) => B.value === o.modelValue
113
113
  );
114
114
  return m && m.label;
115
115
  });
116
- function re(m) {
117
- te("update:modelValue", m);
118
- }
119
116
  function ne(m) {
117
+ ae("update:modelValue", m);
118
+ }
119
+ function de(m) {
120
120
  var q;
121
121
  const B = m.target;
122
- B.getAttribute("role") === "option" && (W(B), oe(), (q = u.value) == null || q.focus());
122
+ B.getAttribute("role") === "option" && (W(B), se(), (q = u.value) == null || q.focus());
123
123
  }
124
124
  function G(m) {
125
125
  var q;
@@ -145,7 +145,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
145
145
  break;
146
146
  case "Enter":
147
147
  case "Escape":
148
- m.preventDefault(), oe(), (q = u.value) == null || q.focus();
148
+ m.preventDefault(), se(), (q = u.value) == null || q.focus();
149
149
  break;
150
150
  default: {
151
151
  const D = j(B);
@@ -154,7 +154,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
154
154
  }
155
155
  }
156
156
  }
157
- function ae(m) {
157
+ function oe(m) {
158
158
  if (!o.disabled)
159
159
  switch (m.key) {
160
160
  case "ArrowUp":
@@ -163,7 +163,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
163
163
  break;
164
164
  }
165
165
  }
166
- function de(m) {
166
+ function ce(m) {
167
167
  m && m.removeAttribute("aria-selected");
168
168
  }
169
169
  function $() {
@@ -198,14 +198,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
198
198
  const N = o.options.findIndex(
199
199
  (Be) => Be.value === o.modelValue
200
200
  ), Y = n.value[N];
201
- de(Y);
201
+ ce(Y);
202
202
  }
203
- if (m.setAttribute("aria-selected", "true"), (q = h.value) == null || q.setAttribute(
203
+ if (m.setAttribute("aria-selected", "true"), (q = _.value) == null || q.setAttribute(
204
204
  "aria-activedescendant",
205
205
  B || ""
206
- ), re(B || ""), h.value && h.value.scrollHeight > h.value.clientHeight) {
207
- const N = h.value.clientHeight + h.value.scrollTop, Y = m.offsetTop + m.offsetHeight;
208
- Y > N ? h.value.scrollTop = Y - ((D = h.value) == null ? void 0 : D.clientHeight) : m.offsetTop < h.value.scrollTop && (h.value.scrollTop = m.offsetTop);
206
+ ), ne(B || ""), _.value && _.value.scrollHeight > _.value.clientHeight) {
207
+ const N = _.value.clientHeight + _.value.scrollTop, Y = m.offsetTop + m.offsetHeight;
208
+ Y > N ? _.value.scrollTop = Y - ((D = _.value) == null ? void 0 : D.clientHeight) : m.offsetTop < _.value.scrollTop && (_.value.scrollTop = m.offsetTop);
209
209
  }
210
210
  }
211
211
  function $e() {
@@ -213,20 +213,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
213
213
  const m = (B = n.value) == null ? void 0 : B[o.options.length - 1];
214
214
  W(m);
215
215
  }
216
- function oe() {
216
+ function se() {
217
217
  var m;
218
218
  k.value = !0, (m = u.value) == null || m.removeAttribute("aria-expanded");
219
219
  }
220
220
  function ue() {
221
221
  var m, B;
222
- k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B = h.value) == null || B.focus();
222
+ k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B = _.value) == null || B.focus();
223
223
  }
224
224
  function we() {
225
- o.disabled || (k.value ? ue() : oe());
225
+ o.disabled || (k.value ? ue() : se());
226
226
  }
227
227
  return (m, B) => {
228
228
  const q = _e("click-outside");
229
- return s(), i("div", {
229
+ return l(), i("div", {
230
230
  ref: "listbox",
231
231
  class: "listbox__wrapper",
232
232
  value: m.modelValue
@@ -239,7 +239,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
239
239
  "is-required": m.required
240
240
  }, "listbox__label"])
241
241
  }, d(m.label), 11, je),
242
- U((s(), i("div", Ke, [
242
+ U((l(), i("div", Ke, [
243
243
  t("button", {
244
244
  id: `${m.name}-button-label`,
245
245
  ref_key: "listboxButton",
@@ -248,22 +248,22 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
248
248
  type: "button",
249
249
  "aria-haspopup": "listbox",
250
250
  "aria-disabled": m.disabled,
251
- class: p(["listbox__button", l.value]),
251
+ class: p(["listbox__button", s.value]),
252
252
  onClick: we,
253
- onKeydown: ae
254
- }, d(m.modelValue ? ie.value : m.placeholder), 43, Ue),
253
+ onKeydown: oe
254
+ }, d(m.modelValue ? re.value : m.placeholder), 43, Ue),
255
255
  U(t("ul", {
256
256
  ref_key: "listboxNode",
257
- ref: h,
257
+ ref: _,
258
258
  "aria-labelledby": `${m.name}-label`,
259
259
  "aria-activedescendant": m.modelValue,
260
260
  tabindex: "0",
261
261
  role: "listbox",
262
262
  class: "listbox__list",
263
263
  onKeydown: G,
264
- onClick: ne
264
+ onClick: de
265
265
  }, [
266
- (s(!0), i(T, null, V(m.options, (D, N) => (s(), i("li", {
266
+ (l(!0), i(T, null, V(m.options, (D, N) => (l(), i("li", {
267
267
  key: `${m.name}-option-${N}`,
268
268
  ref_for: !0,
269
269
  ref_key: "listboxOptions",
@@ -277,7 +277,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
277
277
  [Z, !k.value]
278
278
  ])
279
279
  ])), [
280
- [q, oe]
280
+ [q, se]
281
281
  ])
282
282
  ], 8, Ee);
283
283
  };
@@ -294,7 +294,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
294
294
  loading: { default: "auto" }
295
295
  },
296
296
  setup(e) {
297
- return (a, r) => (s(), i("div", Qe, [
297
+ return (a, r) => (l(), i("div", Qe, [
298
298
  c(a.$slots, "default", O(z(a.$attrs)))
299
299
  ]));
300
300
  }
@@ -306,7 +306,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
306
306
  },
307
307
  setup(e) {
308
308
  const a = e, r = A(() => `Label: ${a.text}`);
309
- return (o, l) => (s(), i("div", Xe, [
309
+ return (o, s) => (l(), i("div", Xe, [
310
310
  t("span", {
311
311
  "aria-label": r.value,
312
312
  "label-dark": o.labelDark,
@@ -336,14 +336,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
336
336
  hover: "underline-hover",
337
337
  true: "add-underline",
338
338
  false: "remove-underline"
339
- }, o = e, l = A(() => a[o.linkType]), u = A(() => r[o.underline]), h = A(() => {
339
+ }, o = e, s = A(() => a[o.linkType]), u = A(() => r[o.underline]), _ = A(() => {
340
340
  const { ...n } = Se(o);
341
341
  return n;
342
342
  });
343
- return (n, b) => (s(), i("div", tt, [
344
- t("div", M(h.value, {
343
+ return (n, b) => (l(), i("div", tt, [
344
+ t("div", M(_.value, {
345
345
  class: ["mir-link", [
346
- l.value,
346
+ s.value,
347
347
  n.disabled ? "disabled" : "",
348
348
  u.value,
349
349
  n.arrow ? "link-arrow" : ""
@@ -365,30 +365,30 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
365
365
  },
366
366
  emits: ["input"],
367
367
  setup(e, { emit: a }) {
368
- const r = a, o = (l) => {
369
- const u = l.target;
368
+ const r = a, o = (s) => {
369
+ const u = s.target;
370
370
  r("input", u.checked);
371
371
  };
372
- return (l, u) => (s(), i("div", {
373
- class: p(["radio__wrapper", l.disabled ? "disabled" : ""])
372
+ return (s, u) => (l(), i("div", {
373
+ class: p(["radio__wrapper", s.disabled ? "disabled" : ""])
374
374
  }, [
375
375
  t("input", {
376
- id: l.id,
376
+ id: s.id,
377
377
  type: "radio",
378
- name: l.name,
379
- value: l.value,
380
- checked: l.checked,
381
- disabled: l.disabled,
382
- required: l.required,
378
+ name: s.name,
379
+ value: s.value,
380
+ checked: s.checked,
381
+ disabled: s.disabled,
382
+ required: s.required,
383
383
  class: "radio__radio",
384
384
  onChange: o
385
385
  }, null, 40, ot),
386
386
  t("label", {
387
- for: l.id,
388
- class: p(["radio__label", l.required ? "required" : ""])
387
+ for: s.id,
388
+ class: p(["radio__label", s.required ? "required" : ""])
389
389
  }, [
390
390
  lt,
391
- c(l.$slots, "default", {}, void 0, !0)
391
+ c(s.$slots, "default", {}, void 0, !0)
392
392
  ], 10, st)
393
393
  ], 2));
394
394
  }
@@ -405,7 +405,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
405
405
  },
406
406
  emits: ["update:modelValue"],
407
407
  setup(e) {
408
- return (a, r) => (s(), i("div", nt, [
408
+ return (a, r) => (l(), i("div", nt, [
409
409
  t("label", {
410
410
  for: a.id,
411
411
  class: p([a.required ? "required" : "", a.disabled ? "disabled" : ""])
@@ -420,7 +420,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
420
420
  a.$emit("update:modelValue", o.target.value), o.target.blur();
421
421
  })
422
422
  }, [
423
- (s(!0), i(T, null, V(a.options, (o) => (s(), i("option", {
423
+ (l(!0), i(T, null, V(a.options, (o) => (l(), i("option", {
424
424
  key: o.value,
425
425
  value: o.value
426
426
  }, d(o.text), 9, ut))), 128))
@@ -435,10 +435,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
435
435
  },
436
436
  emits: ["update:show"],
437
437
  setup(e, { emit: a }) {
438
- const r = e, o = a, l = () => {
438
+ const r = e, o = a, s = () => {
439
439
  o("update:show", !r.show);
440
440
  };
441
- return (u, h) => (s(), i("div", pt, [
441
+ return (u, _) => (l(), i("div", pt, [
442
442
  S(Ie, {
443
443
  duration: 300,
444
444
  name: "nested"
@@ -448,20 +448,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
448
448
  class: p(["overlay", u.searchBar ? "overlay-search" : "overlay-default"]),
449
449
  ariaLabel: "modal",
450
450
  role: "dialog",
451
- onClick: l
451
+ onClick: s
452
452
  }, [
453
453
  t("div", {
454
454
  id: "modal",
455
455
  class: p([u.searchBar ? "search" : ""]),
456
- onClick: h[0] || (h[0] = he(() => {
456
+ onClick: _[0] || (_[0] = he(() => {
457
457
  }, ["stop"]))
458
458
  }, [
459
459
  t("div", null, [
460
- u.searchBar ? _("", !0) : (s(), L(se, {
460
+ u.searchBar ? h("", !0) : (l(), L(le, {
461
461
  key: 0,
462
462
  "aria-label": "close",
463
463
  variant: "close",
464
- onClick: l
464
+ onClick: s
465
465
  }))
466
466
  ]),
467
467
  c(u.$slots, "default", {}, void 0, !0)
@@ -490,34 +490,34 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
490
490
  },
491
491
  emits: ["update:modelValue"],
492
492
  setup(e, { emit: a }) {
493
- const r = e, o = a, l = C(r.modelValue), u = C(), h = C(!1), n = (f, k, w) => (f - k) / (w - k) * 100, b = (f) => {
493
+ const r = e, o = a, s = C(r.modelValue), u = C(), _ = C(!1), n = (f, k, w) => (f - k) / (w - k) * 100, b = (f) => {
494
494
  var k;
495
495
  (k = u.value) == null || k.style.setProperty("--ProgressPercent", `${f}%`);
496
496
  };
497
497
  return pe(() => {
498
498
  if (u.value) {
499
- o("update:modelValue", l.value);
500
- const f = n(l.value, r.min, r.max);
499
+ o("update:modelValue", s.value);
500
+ const f = n(s.value, r.min, r.max);
501
501
  let k = (50 - f) / 100;
502
502
  b(f + k);
503
503
  }
504
- }), (f, k) => (s(), i("div", null, [
504
+ }), (f, k) => (l(), i("div", null, [
505
505
  t("div", ft, [
506
506
  t("div", vt, [
507
507
  t("label", {
508
508
  for: f.id,
509
509
  class: p([f.variant, ""])
510
510
  }, d(f.label), 11, gt),
511
- f.information ? (s(), i("i", {
511
+ f.information ? (l(), i("i", {
512
512
  key: 0,
513
513
  role: "button",
514
514
  class: p([f.variant, "slider__information"]),
515
515
  "aria-label": f.informationLabel,
516
516
  tabindex: "0",
517
517
  "aria-haspopup": "dialog",
518
- onClick: k[0] || (k[0] = (w) => h.value = !h.value),
519
- onKeyup: k[1] || (k[1] = Ce((w) => h.value = !h.value, ["enter"]))
520
- }, null, 42, bt)) : _("", !0)
518
+ onClick: k[0] || (k[0] = (w) => _.value = !_.value),
519
+ onKeyup: k[1] || (k[1] = Ce((w) => _.value = !_.value, ["enter"]))
520
+ }, null, 42, bt)) : h("", !0)
521
521
  ]),
522
522
  t("div", yt, [
523
523
  t("span", {
@@ -534,7 +534,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
534
534
  step: f.step,
535
535
  max: f.max,
536
536
  class: p(f.variant),
537
- onInput: k[2] || (k[2] = ({ target: w }) => l.value = parseFloat(w.value))
537
+ onInput: k[2] || (k[2] = ({ target: w }) => s.value = parseFloat(w.value))
538
538
  }, null, 42, kt),
539
539
  t("span", {
540
540
  class: p([f.variant, "slider__minmax"])
@@ -544,16 +544,16 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
544
544
  class: p([f.variant, "slider__value"])
545
545
  }, d(f.modelValue), 3)
546
546
  ]),
547
- f.information ? (s(), L(ve, {
547
+ f.information ? (l(), L(ve, {
548
548
  key: 0,
549
- show: h.value,
550
- "onUpdate:show": k[3] || (k[3] = (w) => h.value = w)
549
+ show: _.value,
550
+ "onUpdate:show": k[3] || (k[3] = (w) => _.value = w)
551
551
  }, {
552
552
  default: y(() => [
553
553
  t("p", $t, d(f.information), 1)
554
554
  ]),
555
555
  _: 1
556
- }, 8, ["show"])) : _("", !0)
556
+ }, 8, ["show"])) : h("", !0)
557
557
  ]));
558
558
  }
559
559
  }), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { id: "textarea-wrapper" }, It = ["for"], Ct = ["id"], qt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], At = { class: "textarea-info" }, Lt = { key: 0 }, Dt = /* @__PURE__ */ g({
@@ -570,7 +570,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
570
570
  },
571
571
  emits: ["update:modelValue"],
572
572
  setup(e) {
573
- return (a, r) => (s(), i("div", St, [
573
+ return (a, r) => (l(), i("div", St, [
574
574
  t("label", {
575
575
  for: a.id,
576
576
  class: p({ required: a.required })
@@ -596,7 +596,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
596
596
  ], 8, Ct),
597
597
  t("div", At, [
598
598
  t("div", null, [
599
- a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (s(), i("p", Lt, " Too many characters. Please make it shorter ")) : _("", !0)
599
+ a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (l(), i("p", Lt, " Too many characters. Please make it shorter ")) : h("", !0)
600
600
  ]),
601
601
  t("p", {
602
602
  class: p(
@@ -642,12 +642,12 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
642
642
  tel: "tel",
643
643
  url: "url",
644
644
  search: "search"
645
- }, r = e, o = A(() => a[r.type]), l = C(!0), u = A(
646
- () => l.value ? "showPassword" : "hidePassword"
647
- ), h = A(
648
- () => l.value ? "password" : "text"
645
+ }, r = e, o = A(() => a[r.type]), s = C(!0), u = A(
646
+ () => s.value ? "showPassword" : "hidePassword"
647
+ ), _ = A(
648
+ () => s.value ? "password" : "text"
649
649
  );
650
- return (n, b) => (s(), i("div", Vt, [
650
+ return (n, b) => (l(), i("div", Vt, [
651
651
  t("label", {
652
652
  for: n.id,
653
653
  class: p([
@@ -656,11 +656,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
656
656
  n.search ? "search" : ""
657
657
  ])
658
658
  }, d(n.label), 11, Pt),
659
- o.value === "password" ? (s(), i("div", Ft, [
659
+ o.value === "password" ? (l(), i("div", Ft, [
660
660
  t("input", {
661
661
  id: n.id,
662
662
  ref: "passwordField",
663
- type: h.value,
663
+ type: _.value,
664
664
  value: n.modelValue,
665
665
  placeholder: n.placeholder,
666
666
  required: n.required,
@@ -672,10 +672,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
672
672
  role: "button",
673
673
  class: p([u.value]),
674
674
  "aria-controls": "password",
675
- "aria-expanded": !l.value,
676
- onClick: b[1] || (b[1] = (f) => l.value = !l.value)
675
+ "aria-expanded": !s.value,
676
+ onClick: b[1] || (b[1] = (f) => s.value = !s.value)
677
677
  }, null, 10, Ot)
678
- ])) : (s(), i("input", {
678
+ ])) : (l(), i("input", {
679
679
  key: 1,
680
680
  id: n.id,
681
681
  ref: "textField",
@@ -692,9 +692,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
692
692
  name: n.fieldName,
693
693
  onInput: b[2] || (b[2] = (f) => n.$emit("update:modelValue", f.target.value))
694
694
  }, null, 42, zt)),
695
- n.search ? (s(), i("i", Ht)) : _("", !0),
696
- n.errorMessage ? (s(), i("strong", Rt, d(n.errorMessage), 1)) : _("", !0),
697
- n.helperText ? (s(), i("span", Nt, d(n.helperText), 1)) : _("", !0)
695
+ n.search ? (l(), i("i", Ht)) : h("", !0),
696
+ n.errorMessage ? (l(), i("strong", Rt, d(n.errorMessage), 1)) : h("", !0),
697
+ n.helperText ? (l(), i("span", Nt, d(n.helperText), 1)) : h("", !0)
698
698
  ]));
699
699
  }
700
700
  }), jt = /* @__PURE__ */ v(Et, [["__scopeId", "data-v-414b9435"]]), Kt = { class: "video__wrapper" }, Ut = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Gt = ["src", "aria-label", "title", "width", "height"], Jt = /* @__PURE__ */ g({
@@ -722,8 +722,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
722
722
  resetVideo: () => {
723
723
  o.value && (o.value.currentTime = 0, o.value.play());
724
724
  }
725
- }), (u, h) => (s(), i("div", Kt, [
726
- u.localVideo ? (s(), i("video", {
725
+ }), (u, _) => (l(), i("div", Kt, [
726
+ u.localVideo ? (l(), i("video", {
727
727
  key: 0,
728
728
  ref_key: "videoRef",
729
729
  ref: o,
@@ -738,7 +738,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
738
738
  type: "video/mp4",
739
739
  playsinline: "",
740
740
  src: u.src
741
- }, null, 8, Ut)) : (s(), i("iframe", {
741
+ }, null, 8, Ut)) : (l(), i("iframe", {
742
742
  key: 1,
743
743
  src: u.src,
744
744
  "aria-label": u.ariaLabel,
@@ -751,7 +751,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
751
751
  }, null, 8, Gt))
752
752
  ]));
753
753
  }
754
- }), ee = /* @__PURE__ */ v(Jt, [["__scopeId", "data-v-c6a0feb6"]]), Wt = { class: "address__wrapper" }, Yt = { class: "address__content" }, Qt = { class: "address__flag" }, Zt = { class: "address__address" }, Xt = { class: "address__name" }, xt = { key: 0 }, ea = { class: "address__contact" }, ta = ["href"], aa = ["href"], oa = ["href"], sa = /* @__PURE__ */ g({
754
+ }), te = /* @__PURE__ */ v(Jt, [["__scopeId", "data-v-c6a0feb6"]]), Wt = { class: "address__wrapper" }, Yt = { class: "address__content" }, Qt = { class: "address__flag" }, Zt = { class: "address__address" }, Xt = { class: "address__name" }, xt = { key: 0 }, ea = { class: "address__contact" }, ta = ["href"], aa = ["href"], oa = ["href"], sa = /* @__PURE__ */ g({
755
755
  __name: "address",
756
756
  props: {
757
757
  name: {},
@@ -764,7 +764,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
764
764
  email: {}
765
765
  },
766
766
  setup(e) {
767
- return (a, r) => (s(), i("div", Wt, [
767
+ return (a, r) => (l(), i("div", Wt, [
768
768
  t("div", Yt, [
769
769
  t("div", Qt, [
770
770
  c(a.$slots, "address-flag", {}, void 0, !0)
@@ -774,10 +774,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
774
774
  t("p", null, d(a.company), 1),
775
775
  t("p", null, d(a.addressLine1), 1),
776
776
  t("p", null, d(a.addressLine2), 1),
777
- a.addressLine3 ? (s(), i("p", xt, d(a.addressLine3), 1)) : _("", !0)
777
+ a.addressLine3 ? (l(), i("p", xt, d(a.addressLine3), 1)) : h("", !0)
778
778
  ]),
779
779
  t("div", ea, [
780
- a.website ? (s(), L(P, {
780
+ a.website ? (l(), L(P, {
781
781
  key: 0,
782
782
  underline: "false",
783
783
  "link-type": "regular"
@@ -789,8 +789,8 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
789
789
  }, d(a.website), 9, ta)
790
790
  ]),
791
791
  _: 1
792
- })) : _("", !0),
793
- (s(!0), i(T, null, V(a.phoneNumbers, (o) => (s(), L(P, {
792
+ })) : h("", !0),
793
+ (l(!0), i(T, null, V(a.phoneNumbers, (o) => (l(), L(P, {
794
794
  key: o,
795
795
  underline: "false",
796
796
  "link-type": "regular"
@@ -831,12 +831,12 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
831
831
  }
832
832
  },
833
833
  setup(e) {
834
- return (a, r) => (s(), i("div", ra, [
834
+ return (a, r) => (l(), i("div", ra, [
835
835
  t("div", {
836
836
  class: p(["bullet-list", e.variant])
837
837
  }, [
838
838
  t("ul", null, [
839
- (s(!0), i(T, null, V(e.list, (o) => (s(), i("li", { key: o }, [
839
+ (l(!0), i(T, null, V(e.list, (o) => (l(), i("li", { key: o }, [
840
840
  na,
841
841
  J(" " + d(o), 1)
842
842
  ]))), 128))
@@ -889,21 +889,24 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
889
889
  width: "596",
890
890
  height: "335"
891
891
  }
892
- }, l = e, u = A(() => o[l.size]), h = A(() => l.variant === "article" || l.variant === "product" ? `card--${l.size}-${l.variant}` : `card--${l.variant}`);
893
- return (n, b) => (s(), i("div", ua, [
892
+ }, s = e, u = A(() => o[s.size]), _ = A(() => s.variant === "article" || s.variant === "product" ? `card--${s.size}-${s.variant}` : `card--${s.variant}`);
893
+ return (n, b) => (l(), i("div", ua, [
894
894
  t("div", {
895
895
  class: p(["card", [
896
896
  n.theme === "dark" ? "card--dark" : "card--light",
897
897
  n.orientation === "vertical" ? "vertical" : "horizontal",
898
898
  u.value.class,
899
- h.value,
899
+ _.value,
900
900
  n.variant === "product" ? "card--product" : "card--article"
901
901
  ]]),
902
- style: x([n.variant === "product" ? "font-weight: 700" : "font-weight: 300"]),
903
- onMouseover: b[0] || (b[0] = (f) => ce(r) ? r.value = !0 : r = !0),
904
- onMouseout: b[1] || (b[1] = (f) => ce(r) ? r.value = !1 : r = !1)
902
+ style: ee([n.variant === "product" ? "font-weight: 700" : "font-weight: 300"]),
903
+ tabindex: "0",
904
+ onMouseover: b[0] || (b[0] = (f) => x(r) ? r.value = !0 : r = !0),
905
+ onMouseout: b[1] || (b[1] = (f) => x(r) ? r.value = !1 : r = !1),
906
+ onFocus: b[2] || (b[2] = (f) => x(r) ? r.value = !0 : r = !0),
907
+ onBlur: b[3] || (b[3] = (f) => x(r) ? r.value = !1 : r = !1)
905
908
  }, [
906
- n.mediaType === "image" ? (s(), L(F, { key: 0 }, {
909
+ n.mediaType === "image" ? (l(), L(F, { key: 0 }, {
907
910
  default: y(() => [
908
911
  c(n.$slots, "card-image", M({
909
912
  src: n.imgSrc,
@@ -915,11 +918,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
915
918
  }, { srcset: n.srcSet }))
916
919
  ]),
917
920
  _: 3
918
- })) : (s(), i("div", {
921
+ })) : (l(), i("div", {
919
922
  key: 1,
920
923
  class: p(["video-card__wrapper", I(r) === !0 ? "vimeoPlaying" : ""])
921
924
  }, [
922
- S(ee, {
925
+ S(te, {
923
926
  play: I(r),
924
927
  "local-video": !0,
925
928
  src: n.videoSrc,
@@ -933,28 +936,28 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
933
936
  muted: !0
934
937
  }, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
935
938
  ], 2)),
936
- I(a)["card-label"] ? (s(), i("div", _a, [
939
+ I(a)["card-label"] ? (l(), i("div", _a, [
937
940
  c(n.$slots, "card-label")
938
- ])) : _("", !0),
939
- n.variant === "product" ? (s(), i("div", {
941
+ ])) : h("", !0),
942
+ n.variant === "product" ? (l(), i("div", {
940
943
  key: 3,
941
944
  class: p([
942
945
  "card__headline",
943
946
  n.theme === "dark" ? "regular-dark" : "regular-blue"
944
947
  ]),
945
948
  style: { "font-weight": "700" }
946
- }, d(n.headline), 3)) : (s(), i("div", {
949
+ }, d(n.headline), 3)) : (l(), i("div", {
947
950
  key: 4,
948
951
  class: p([
949
952
  "card__headline",
950
953
  n.theme === "dark" ? "regular-dark" : "regular-dark-blue"
951
954
  ])
952
955
  }, d(n.headline), 3)),
953
- n.variant === "product" ? (s(), i("p", ha, d(n.paragraph), 1)) : _("", !0)
956
+ n.variant === "product" ? (l(), i("p", ha, d(n.paragraph), 1)) : h("", !0)
954
957
  ], 38)
955
958
  ]));
956
959
  }
957
- }), ma = /* @__PURE__ */ v(pa, [["__scopeId", "data-v-cb201b36"]]), fa = { class: "column-card" }, va = { class: "column-card__content" }, ga = { class: "column-card__headline" }, ba = { class: "column-card__bodytext" }, ya = /* @__PURE__ */ g({
960
+ }), ma = /* @__PURE__ */ v(pa, [["__scopeId", "data-v-30238efa"]]), fa = { class: "column-card" }, va = { class: "column-card__content" }, ga = { class: "column-card__headline" }, ba = { class: "column-card__bodytext" }, ya = /* @__PURE__ */ g({
958
961
  __name: "column-card",
959
962
  props: {
960
963
  headline: {},
@@ -963,9 +966,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
963
966
  imageFit: { type: Boolean }
964
967
  },
965
968
  setup(e) {
966
- return (a, r) => (s(), i("div", fa, [
969
+ return (a, r) => (l(), i("div", fa, [
967
970
  t("div", va, [
968
- a.image.filename ? (s(), i("div", {
971
+ a.image.filename ? (l(), i("div", {
969
972
  key: 0,
970
973
  class: p(["column-card__image", { cover: a.imageFit, contain: !a.imageFit }])
971
974
  }, [
@@ -973,7 +976,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
973
976
  src: a.image.filename,
974
977
  alt: a.image.alt
975
978
  })), void 0, !0)
976
- ], 2)) : _("", !0),
979
+ ], 2)) : h("", !0),
977
980
  t("h3", ga, d(a.headline), 1),
978
981
  t("div", ba, [
979
982
  c(a.$slots, "column-card-body", {}, void 0, !0)
@@ -1006,7 +1009,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1006
1009
  }
1007
1010
  },
1008
1011
  setup(e) {
1009
- return (a, r) => (s(), i("div", $a, [
1012
+ return (a, r) => (l(), i("div", $a, [
1010
1013
  S(X, {
1011
1014
  "label-dark": !1,
1012
1015
  text: e.eventType ? e.eventType : ""
@@ -1020,16 +1023,16 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1020
1023
  t("div", Ia, d(e.exhibitor), 1)
1021
1024
  ]));
1022
1025
  }
1023
- }), qa = /* @__PURE__ */ v(Ca, [["__scopeId", "data-v-2c394add"]]), le = (e) => (H("data-v-93ee37aa"), e = e(), R(), e), Aa = { class: "flashcard-side flashcard-front" }, La = {
1026
+ }), qa = /* @__PURE__ */ v(Ca, [["__scopeId", "data-v-2c394add"]]), ie = (e) => (H("data-v-93ee37aa"), e = e(), R(), e), Aa = { class: "flashcard-side flashcard-front" }, La = {
1024
1027
  key: 0,
1025
1028
  class: "content"
1026
1029
  }, Da = { key: 0 }, Ta = {
1027
1030
  key: 1,
1028
1031
  class: "flashcard-body"
1029
- }, Va = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
1032
+ }, Va = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1030
1033
  class: "flip-icon",
1031
1034
  src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
1032
- }, null, -1)), Pa = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
1035
+ }, null, -1)), Pa = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1033
1036
  class: "flip-icon",
1034
1037
  src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
1035
1038
  }, null, -1)), Fa = {
@@ -1038,10 +1041,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1038
1041
  }, Ma = { key: 0 }, Oa = {
1039
1042
  key: 1,
1040
1043
  class: "flashcard-body"
1041
- }, za = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
1044
+ }, za = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1042
1045
  class: "flip-icon",
1043
1046
  src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
1044
- }, null, -1)), Ha = /* @__PURE__ */ le(() => /* @__PURE__ */ t("img", {
1047
+ }, null, -1)), Ha = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1045
1048
  class: "flip-icon",
1046
1049
  src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
1047
1050
  }, null, -1)), Ra = /* @__PURE__ */ g({
@@ -1062,9 +1065,9 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1062
1065
  function r() {
1063
1066
  a.value = !a.value;
1064
1067
  }
1065
- return (o, l) => {
1066
- var u, h, n, b, f, k;
1067
- return s(), i("div", {
1068
+ return (o, s) => {
1069
+ var u, _, n, b, f, k;
1070
+ return l(), i("div", {
1068
1071
  class: "flashcard-container",
1069
1072
  onClick: r
1070
1073
  }, [
@@ -1077,20 +1080,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1077
1080
  }])
1078
1081
  }, [
1079
1082
  t("div", Aa, [
1080
- o.name || ((u = o.bodytext) == null ? void 0 : u.length) > 0 ? (s(), i("div", La, [
1081
- o.name ? (s(), i("h3", Da, d(o.name), 1)) : _("", !0),
1082
- o.bodytext ? (s(), i("div", Ta, [
1083
+ o.name || ((u = o.bodytext) == null ? void 0 : u.length) > 0 ? (l(), i("div", La, [
1084
+ o.name ? (l(), i("h3", Da, d(o.name), 1)) : h("", !0),
1085
+ o.bodytext ? (l(), i("div", Ta, [
1083
1086
  c(o.$slots, "flashcard-front-body", O(z({ bodytext: o.bodytext })), void 0, !0)
1084
- ])) : _("", !0),
1087
+ ])) : h("", !0),
1085
1088
  Va
1086
- ])) : (s(), i("div", {
1089
+ ])) : (l(), i("div", {
1087
1090
  key: 1,
1088
1091
  class: p(["flashcard-image", {
1089
1092
  contain: o.imageFit,
1090
1093
  cover: !o.imageFit
1091
1094
  }])
1092
1095
  }, [
1093
- c(o.$slots, "flashcard-front-image", O(z({ src: (h = o.image) == null ? void 0 : h.filename, alt: (n = o.image) == null ? void 0 : n.alt })), void 0, !0),
1096
+ c(o.$slots, "flashcard-front-image", O(z({ src: (_ = o.image) == null ? void 0 : _.filename, alt: (n = o.image) == null ? void 0 : n.alt })), void 0, !0),
1094
1097
  Pa
1095
1098
  ], 2))
1096
1099
  ]),
@@ -1100,13 +1103,13 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1100
1103
  (b = o.imagebackside) != null && b.filename ? "flashcard-back--image" : "flashcard-back--no-image"
1101
1104
  ])
1102
1105
  }, [
1103
- o.namebackside || o.bodytextbackside.length > 0 ? (s(), i("div", Fa, [
1104
- o.namebackside ? (s(), i("h3", Ma, d(o.namebackside), 1)) : _("", !0),
1105
- o.bodytextbackside ? (s(), i("div", Oa, [
1106
+ o.namebackside || o.bodytextbackside.length > 0 ? (l(), i("div", Fa, [
1107
+ o.namebackside ? (l(), i("h3", Ma, d(o.namebackside), 1)) : h("", !0),
1108
+ o.bodytextbackside ? (l(), i("div", Oa, [
1106
1109
  c(o.$slots, "flashcard-back-body", O(z({ bodytextbackside: o.bodytextbackside })), void 0, !0)
1107
- ])) : _("", !0),
1110
+ ])) : h("", !0),
1108
1111
  za
1109
- ])) : (s(), i("div", {
1112
+ ])) : (l(), i("div", {
1110
1113
  key: 1,
1111
1114
  class: p(["flashcard-image", {
1112
1115
  contain: o.imageFitBack,
@@ -1138,7 +1141,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1138
1141
  }
1139
1142
  },
1140
1143
  setup(e) {
1141
- return (a, r) => (s(), i("div", Na, [
1144
+ return (a, r) => (l(), i("div", Na, [
1142
1145
  S(X, {
1143
1146
  "label-dark": !1,
1144
1147
  text: e.label ? e.label : ""
@@ -1161,44 +1164,44 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1161
1164
  accordions: {}
1162
1165
  },
1163
1166
  setup(e) {
1164
- const a = C([]), r = (l) => {
1165
- const u = a.value.indexOf(l);
1166
- u > -1 ? a.value.splice(u, 1) : a.value.push(l);
1167
- }, o = (l) => a.value.includes(l);
1168
- return (l, u) => (s(), i("section", Ga, [
1167
+ const a = C([]), r = (s) => {
1168
+ const u = a.value.indexOf(s);
1169
+ u > -1 ? a.value.splice(u, 1) : a.value.push(s);
1170
+ }, o = (s) => a.value.includes(s);
1171
+ return (s, u) => (l(), i("section", Ga, [
1169
1172
  t("div", Ja, [
1170
- (s(!0), i(T, null, V(l.accordions, (h) => (s(), i("div", {
1171
- key: h._uid
1173
+ (l(!0), i(T, null, V(s.accordions, (_) => (l(), i("div", {
1174
+ key: _._uid
1172
1175
  }, [
1173
1176
  t("div", Wa, [
1174
1177
  t("div", {
1175
1178
  class: "accordion__header",
1176
- onClick: (n) => r(h._uid)
1179
+ onClick: (n) => r(_._uid)
1177
1180
  }, [
1178
- t("h3", Qa, d(h.headline), 1),
1181
+ t("h3", Qa, d(_.headline), 1),
1179
1182
  t("span", Za, [
1180
- o(h._uid) ? (s(), i("img", xa)) : (s(), i("img", Xa))
1183
+ o(_._uid) ? (l(), i("img", xa)) : (l(), i("img", Xa))
1181
1184
  ])
1182
1185
  ], 8, Ya),
1183
1186
  t("div", {
1184
- class: p(["accordion__content", { "accordion__content--reverse": h.imageFirst }]),
1185
- style: x({
1186
- display: o(h._uid) ? "flex" : "none"
1187
+ class: p(["accordion__content", { "accordion__content--reverse": _.imageFirst }]),
1188
+ style: ee({
1189
+ display: o(_._uid) ? "flex" : "none"
1187
1190
  })
1188
1191
  }, [
1189
1192
  t("div", eo, [
1190
- c(l.$slots, "accordion-body", M({ ref_for: !0 }, { body: h.bodytext }), void 0, !0)
1193
+ c(s.$slots, "accordion-body", M({ ref_for: !0 }, { body: _.bodytext }), void 0, !0)
1191
1194
  ]),
1192
1195
  S(F, null, {
1193
1196
  default: y(() => [
1194
- h.image ? c(l.$slots, "accordion-image", M({
1197
+ _.image ? c(s.$slots, "accordion-image", M({
1195
1198
  key: 0,
1196
1199
  ref_for: !0
1197
1200
  }, {
1198
- src: h.image.filename,
1199
- alt: h.image.alt,
1201
+ src: _.image.filename,
1202
+ alt: _.image.alt,
1200
1203
  class: "accordion__image"
1201
- }), void 0, !0) : _("", !0)
1204
+ }), void 0, !0) : h("", !0)
1202
1205
  ]),
1203
1206
  _: 2
1204
1207
  }, 1024)
@@ -1228,17 +1231,17 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1228
1231
  }
1229
1232
  },
1230
1233
  setup(e) {
1231
- return (a, r) => (s(), i("div", {
1234
+ return (a, r) => (l(), i("div", {
1232
1235
  class: p([
1233
1236
  "card-display",
1234
1237
  e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
1235
1238
  ])
1236
1239
  }, [
1237
1240
  t("div", oo, [
1238
- e.headline || e.paragraph ? (s(), i("div", so, [
1239
- e.headline ? (s(), i("h2", lo, d(e.headline), 1)) : _("", !0),
1240
- e.paragraph ? (s(), i("p", io, d(e.paragraph), 1)) : _("", !0)
1241
- ])) : _("", !0),
1241
+ e.headline || e.paragraph ? (l(), i("div", so, [
1242
+ e.headline ? (l(), i("h2", lo, d(e.headline), 1)) : h("", !0),
1243
+ e.paragraph ? (l(), i("p", io, d(e.paragraph), 1)) : h("", !0)
1244
+ ])) : h("", !0),
1242
1245
  t("div", ro, [
1243
1246
  c(a.$slots, "card-display-cards", {}, void 0, !0)
1244
1247
  ])
@@ -1260,20 +1263,20 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1260
1263
  columns: {}
1261
1264
  },
1262
1265
  setup(e) {
1263
- return (a, r) => (s(), i("div", {
1266
+ return (a, r) => (l(), i("div", {
1264
1267
  class: p([
1265
1268
  "column-grid",
1266
1269
  a.bgColor === "dark" ? "column-grid--dark" : a.bgColor === "light" ? "column-grid--light" : "column-grid--white"
1267
1270
  ])
1268
1271
  }, [
1269
1272
  t("div", uo, [
1270
- a.headline ? (s(), i("h2", _o, d(a.headline), 1)) : _("", !0),
1271
- a.bodytext ? (s(), i("div", ho, [
1273
+ a.headline ? (l(), i("h2", _o, d(a.headline), 1)) : h("", !0),
1274
+ a.bodytext ? (l(), i("div", ho, [
1272
1275
  c(a.$slots, "column-grid-body", {}, void 0, !0)
1273
- ])) : _("", !0)
1276
+ ])) : h("", !0)
1274
1277
  ]),
1275
1278
  t("div", po, [
1276
- (s(!0), i(T, null, V(a.columns, (o) => (s(), L(ge, {
1279
+ (l(!0), i(T, null, V(a.columns, (o) => (l(), L(ge, {
1277
1280
  key: o._uid,
1278
1281
  headline: o.headline,
1279
1282
  bodytext: o.bodytext,
@@ -1291,7 +1294,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1291
1294
  src: o.image.filename,
1292
1295
  alt: o.image.alt,
1293
1296
  style: { "object-fit": o.imageFit ? "cover" : "contain" }
1294
- }), void 0, !0) : _("", !0)
1297
+ }), void 0, !0) : h("", !0)
1295
1298
  ]),
1296
1299
  _: 2
1297
1300
  }, 1032, ["headline", "bodytext", "image", "image-fit"]))), 128))
@@ -1325,11 +1328,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1325
1328
  }) }
1326
1329
  },
1327
1330
  setup(e) {
1328
- return (a, r) => (s(), i("div", vo, [
1331
+ return (a, r) => (l(), i("div", vo, [
1329
1332
  t("div", go, [
1330
1333
  t("h2", bo, d(a.headline), 1),
1331
1334
  t("div", yo, [
1332
- (s(!0), i(T, null, V(a.facts, (o) => (s(), i("div", {
1335
+ (l(!0), i(T, null, V(a.facts, (o) => (l(), i("div", {
1333
1336
  key: o.value + o.metric,
1334
1337
  class: "fact"
1335
1338
  }, [
@@ -1341,7 +1344,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1341
1344
  ])
1342
1345
  ]))), 128))
1343
1346
  ]),
1344
- a.link ? (s(), i("div", wo, [
1347
+ a.link ? (l(), i("div", wo, [
1345
1348
  S(P, {
1346
1349
  "link-type": "regular_light",
1347
1350
  arrow: ""
@@ -1351,7 +1354,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1351
1354
  ]),
1352
1355
  _: 3
1353
1356
  })
1354
- ])) : _("", !0)
1357
+ ])) : h("", !0)
1355
1358
  ])
1356
1359
  ]));
1357
1360
  }
@@ -1369,18 +1372,18 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1369
1372
  elements: { default: () => [] }
1370
1373
  },
1371
1374
  setup(e) {
1372
- return (a, r) => (s(), i("div", Io, [
1375
+ return (a, r) => (l(), i("div", Io, [
1373
1376
  t("div", Co, [
1374
- a.headline ? (s(), i("div", qo, [
1377
+ a.headline ? (l(), i("div", qo, [
1375
1378
  t("h2", null, d(a.headline), 1)
1376
- ])) : _("", !0),
1377
- a.body ? (s(), i("div", Ao, [
1379
+ ])) : h("", !0),
1380
+ a.body ? (l(), i("div", Ao, [
1378
1381
  c(a.$slots, "features-body", {}, void 0, !0)
1379
- ])) : _("", !0),
1382
+ ])) : h("", !0),
1380
1383
  t("div", {
1381
1384
  class: p(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
1382
1385
  }, [
1383
- (s(!0), i(T, null, V(a.elements, (o) => (s(), i("div", {
1386
+ (l(!0), i(T, null, V(a.elements, (o) => (l(), i("div", {
1384
1387
  key: o.headline,
1385
1388
  class: "features__element"
1386
1389
  }, [
@@ -1419,11 +1422,11 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1419
1422
  setup(e) {
1420
1423
  const a = e, r = A(() => a.body.trim().length > 0), o = A(() => {
1421
1424
  var u;
1422
- const l = (u = a.flashcards) == null ? void 0 : u.length;
1423
- return l === 4 || l === 5 ? "sm" : l === 6 || l === 3 ? "md" : l === 2 ? "lg" : "sm";
1425
+ const s = (u = a.flashcards) == null ? void 0 : u.length;
1426
+ return s === 4 || s === 5 ? "sm" : s === 6 || s === 3 ? "md" : s === 2 ? "lg" : "sm";
1424
1427
  });
1425
- return (l, u) => (s(), i("div", {
1426
- class: p(["flashcards", l.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
1428
+ return (s, u) => (l(), i("div", {
1429
+ class: p(["flashcards", s.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
1427
1430
  }, [
1428
1431
  t("div", Po, [
1429
1432
  t("div", {
@@ -1432,10 +1435,10 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1432
1435
  "flashcard-wrapper__top-section"
1433
1436
  ])
1434
1437
  }, [
1435
- l.headline ? (s(), i("h2", Fo, d(l.headline), 1)) : _("", !0),
1436
- l.body ? (s(), i("div", Mo, [
1437
- c(l.$slots, "flashcard-wrapper-body", {}, void 0, !0)
1438
- ])) : _("", !0)
1438
+ s.headline ? (l(), i("h2", Fo, d(s.headline), 1)) : h("", !0),
1439
+ s.body ? (l(), i("div", Mo, [
1440
+ c(s.$slots, "flashcard-wrapper-body", {}, void 0, !0)
1441
+ ])) : h("", !0)
1439
1442
  ], 2),
1440
1443
  t("div", {
1441
1444
  class: p(["flashcard-wrapper__teaser-list", {
@@ -1444,29 +1447,29 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1444
1447
  lg: o.value === "lg"
1445
1448
  }])
1446
1449
  }, [
1447
- (s(!0), i(T, null, V(l.flashcards, (h) => (s(), L(I(be), {
1448
- key: h._uid,
1449
- name: h.name,
1450
- bodytext: h.bodytext,
1451
- image: h.image,
1452
- namebackside: h.namebackside ? h.namebackside : "",
1453
- bodytextbackside: h.bodytextbackside,
1454
- imagebackside: h.imagebackside ? h.imagebackside : { filename: "", alt: "" },
1450
+ (l(!0), i(T, null, V(s.flashcards, (_) => (l(), L(I(be), {
1451
+ key: _._uid,
1452
+ name: _.name,
1453
+ bodytext: _.bodytext,
1454
+ image: _.image,
1455
+ namebackside: _.namebackside ? _.namebackside : "",
1456
+ bodytextbackside: _.bodytextbackside,
1457
+ imagebackside: _.imagebackside ? _.imagebackside : { filename: "", alt: "" },
1455
1458
  size: o.value,
1456
- "image-fit": h.imageFit,
1457
- "image-fit-back": h.imageFitBack
1459
+ "image-fit": _.imageFit,
1460
+ "image-fit-back": _.imageFitBack
1458
1461
  }, {
1459
1462
  "flashcard-front-body": y(({ bodytext: n }) => [
1460
- c(l.$slots, "flashcard-front-body", M({ ref_for: !0 }, { bodytext: n }), void 0, !0)
1463
+ c(s.$slots, "flashcard-front-body", M({ ref_for: !0 }, { bodytext: n }), void 0, !0)
1461
1464
  ]),
1462
1465
  "flashcard-front-image": y(({ src: n, alt: b }) => [
1463
- c(l.$slots, "flashcard-front-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1466
+ c(s.$slots, "flashcard-front-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1464
1467
  ]),
1465
1468
  "flashcard-back-body": y(({ bodytextbackside: n }) => [
1466
- c(l.$slots, "flashcard-back-body", M({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
1469
+ c(s.$slots, "flashcard-back-body", M({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
1467
1470
  ]),
1468
1471
  "flashcard-back-image": y(({ src: n, alt: b }) => [
1469
- c(l.$slots, "flashcard-back-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1472
+ c(s.$slots, "flashcard-back-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1470
1473
  ]),
1471
1474
  _: 2
1472
1475
  }, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
@@ -1483,7 +1486,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1483
1486
  }
1484
1487
  },
1485
1488
  setup(e) {
1486
- return (a, r) => (s(), i("div", Ho, [
1489
+ return (a, r) => (l(), i("div", Ho, [
1487
1490
  t("div", Ro, [
1488
1491
  t("div", No, [
1489
1492
  t("h2", Eo, d(e.headline), 1),
@@ -1514,7 +1517,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1514
1517
  }
1515
1518
  },
1516
1519
  setup(e) {
1517
- return (a, r) => (s(), i("div", Jo, [
1520
+ return (a, r) => (l(), i("div", Jo, [
1518
1521
  t("div", {
1519
1522
  class: p({
1520
1523
  "headline__content--article-and-submenu": e.article && e.subMenu,
@@ -1536,7 +1539,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1536
1539
  }
1537
1540
  },
1538
1541
  setup(e) {
1539
- return (a, r) => (s(), i("div", Xo, [
1542
+ return (a, r) => (l(), i("div", Xo, [
1540
1543
  t("div", xo, [
1541
1544
  t("div", es, [
1542
1545
  t("div", ts, [
@@ -1592,7 +1595,7 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1592
1595
  }
1593
1596
  },
1594
1597
  setup(e) {
1595
- return (a, r) => (s(), i("div", cs, [
1598
+ return (a, r) => (l(), i("div", cs, [
1596
1599
  t("div", us, [
1597
1600
  t("div", _s, [
1598
1601
  S(F, null, {
@@ -1635,34 +1638,34 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1635
1638
  light: "gallery__wrapper--light",
1636
1639
  dark: "gallery__wrapper--dark mirsaic--dark"
1637
1640
  }, r = e, o = A(() => a[r.bgColor]);
1638
- return (l, u) => (s(), i("div", {
1641
+ return (s, u) => (l(), i("div", {
1639
1642
  class: p(["gallery__wrapper", o.value])
1640
1643
  }, [
1641
1644
  t("div", {
1642
1645
  class: p([
1643
1646
  "gallery__content",
1644
- l.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
1647
+ s.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
1645
1648
  ])
1646
1649
  }, [
1647
1650
  t("div", fs, [
1648
- l.mediaLarge && l.mediaType === "image" ? (s(), i("div", vs, [
1651
+ s.mediaLarge && s.mediaType === "image" ? (l(), i("div", vs, [
1649
1652
  S(F, null, {
1650
1653
  default: y(() => [
1651
- c(l.$slots, "image-large", O(z({
1654
+ c(s.$slots, "image-large", O(z({
1652
1655
  width: 617,
1653
1656
  height: 530,
1654
- src: l.mediaLarge.src,
1655
- alt: l.mediaLarge.alt
1657
+ src: s.mediaLarge.src,
1658
+ alt: s.mediaLarge.alt
1656
1659
  })))
1657
1660
  ]),
1658
1661
  _: 3
1659
1662
  })
1660
- ])) : _("", !0),
1661
- l.mediaLarge && l.mediaType === "video" ? (s(), i("div", gs, [
1662
- S(ee, {
1663
- src: l.mediaLarge.src,
1663
+ ])) : h("", !0),
1664
+ s.mediaLarge && s.mediaType === "video" ? (l(), i("div", gs, [
1665
+ S(te, {
1666
+ src: s.mediaLarge.src,
1664
1667
  "local-video": "",
1665
- "aria-label": l.mediaLarge.alt,
1668
+ "aria-label": s.mediaLarge.alt,
1666
1669
  controls: !1,
1667
1670
  height: "530",
1668
1671
  width: "617",
@@ -1671,37 +1674,37 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1671
1674
  muted: "",
1672
1675
  play: ""
1673
1676
  }, null, 8, ["src", "aria-label"])
1674
- ])) : _("", !0)
1677
+ ])) : h("", !0)
1675
1678
  ]),
1676
1679
  t("div", {
1677
- style: x([l.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
1680
+ style: ee([s.mediaSmall.length === 2 ? "grid-gap: 38px;" : ""]),
1678
1681
  class: p([
1679
1682
  "gallery__small",
1680
- l.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
1683
+ s.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
1681
1684
  ])
1682
1685
  }, [
1683
- (s(!0), i(T, null, V(l.mediaSmall, (h) => (s(), i("div", {
1684
- key: h.src + h.alt,
1686
+ (l(!0), i(T, null, V(s.mediaSmall, (_) => (l(), i("div", {
1687
+ key: _.src + _.alt,
1685
1688
  class: "image image--small"
1686
1689
  }, [
1687
1690
  S(F, null, {
1688
1691
  default: y(() => [
1689
- c(l.$slots, "image-small", M({ ref_for: !0 }, {
1692
+ c(s.$slots, "image-small", M({ ref_for: !0 }, {
1690
1693
  width: 328,
1691
1694
  height: 246,
1692
- src: h.src,
1693
- alt: h.alt
1695
+ src: _.src,
1696
+ alt: _.alt
1694
1697
  }))
1695
1698
  ]),
1696
1699
  _: 2
1697
1700
  }, 1024)
1698
1701
  ]))), 128)),
1699
- l.mediaSmall.length < 2 ? (s(), i("div", {
1702
+ s.mediaSmall.length < 2 ? (l(), i("div", {
1700
1703
  key: 0,
1701
- class: p(["body", l.bgColor === "dark" ? "body--dark" : ""])
1704
+ class: p(["body", s.bgColor === "dark" ? "body--dark" : ""])
1702
1705
  }, [
1703
- t("p", null, d(l.body), 1)
1704
- ], 2)) : _("", !0)
1706
+ t("p", null, d(s.body), 1)
1707
+ ], 2)) : h("", !0)
1705
1708
  ], 6)
1706
1709
  ], 2)
1707
1710
  ], 2));
@@ -1727,14 +1730,14 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1727
1730
  }
1728
1731
  },
1729
1732
  setup(e) {
1730
- return (a, r) => (s(), i("div", ks, [
1733
+ return (a, r) => (l(), i("div", ks, [
1731
1734
  t("div", $s, [
1732
- e.headline || e.body ? (s(), i("div", ws, [
1733
- e.headline ? (s(), i("h2", Bs, d(e.headline), 1)) : _("", !0),
1734
- e.body ? (s(), i("p", Ss, d(e.body), 1)) : _("", !0)
1735
- ])) : _("", !0),
1735
+ e.headline || e.body ? (l(), i("div", ws, [
1736
+ e.headline ? (l(), i("h2", Bs, d(e.headline), 1)) : h("", !0),
1737
+ e.body ? (l(), i("p", Ss, d(e.body), 1)) : h("", !0)
1738
+ ])) : h("", !0),
1736
1739
  t("div", Is, [
1737
- (s(!0), i(T, null, V(e.logos, (o) => (s(), i("div", {
1740
+ (l(!0), i(T, null, V(e.logos, (o) => (l(), i("div", {
1738
1741
  key: o.src + o.alt,
1739
1742
  class: "logo-wall__logo"
1740
1743
  }, [
@@ -1784,26 +1787,26 @@ const Le = ["aria-label"], De = /* @__PURE__ */ g({
1784
1787
  blue: "micro-stories__wrapper--blue",
1785
1788
  dark: "micro-stories__wrapper--dark"
1786
1789
  }, r = A(() => a[o.bgColor]), o = e;
1787
- return (l, u) => (s(), i("div", {
1790
+ return (s, u) => (l(), i("div", {
1788
1791
  class: p(["micro-stories__wrapper", r.value])
1789
1792
  }, [
1790
1793
  t("div", Ls, [
1791
- l.headline ? (s(), i("div", Ds, [
1792
- t("h2", null, d(l.headline), 1)
1793
- ])) : _("", !0),
1794
- l.body ? (s(), i("div", Ts, [
1795
- t("p", null, d(l.body), 1)
1796
- ])) : _("", !0)
1794
+ s.headline ? (l(), i("div", Ds, [
1795
+ t("h2", null, d(s.headline), 1)
1796
+ ])) : h("", !0),
1797
+ s.body ? (l(), i("div", Ts, [
1798
+ t("p", null, d(s.body), 1)
1799
+ ])) : h("", !0)
1797
1800
  ]),
1798
1801
  t("div", Vs, [
1799
- c(l.$slots, "micro-stories-slides")
1802
+ c(s.$slots, "micro-stories-slides")
1800
1803
  ]),
1801
- c(l.$slots, "micro-stories-controls")
1804
+ c(s.$slots, "micro-stories-controls")
1802
1805
  ], 2));
1803
1806
  }
1804
1807
  }), Fs = {}, Ms = { class: "policy__wrapper" }, Os = { class: "policy__content" };
1805
1808
  function zs(e, a) {
1806
- return s(), i("div", Ms, [
1809
+ return l(), i("div", Ms, [
1807
1810
  t("div", Os, [
1808
1811
  c(e.$slots, "default", {}, void 0, !0)
1809
1812
  ])
@@ -1850,11 +1853,11 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
1850
1853
  }
1851
1854
  },
1852
1855
  setup(e) {
1853
- return (a, r) => (s(), i("div", Rs, [
1856
+ return (a, r) => (l(), i("div", Rs, [
1854
1857
  t("div", Ns, [
1855
1858
  t("div", Es, d(e.headline), 1),
1856
1859
  t("div", js, [
1857
- e.videoSrc !== "" ? (s(), L(ee, {
1860
+ e.videoSrc !== "" ? (l(), L(te, {
1858
1861
  key: 0,
1859
1862
  play: "",
1860
1863
  "local-video": !0,
@@ -1865,29 +1868,29 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
1865
1868
  autoplay: "",
1866
1869
  loop: "",
1867
1870
  muted: ""
1868
- }, null, 8, ["src", "aria-label", "poster"])) : (s(), L(I(F), { key: 1 }, {
1871
+ }, null, 8, ["src", "aria-label", "poster"])) : (l(), L(I(F), { key: 1 }, {
1869
1872
  default: y(() => [
1870
1873
  c(a.$slots, "product-hero-image", {}, void 0, !0)
1871
1874
  ]),
1872
1875
  _: 3
1873
1876
  })),
1874
1877
  t("div", Ks, [
1875
- e.logoSrc ? (s(), i("div", Us, [
1878
+ e.logoSrc ? (l(), i("div", Us, [
1876
1879
  S(I(F), null, {
1877
1880
  default: y(() => [
1878
1881
  c(a.$slots, "product-hero-logo", {}, void 0, !0)
1879
1882
  ]),
1880
1883
  _: 3
1881
1884
  })
1882
- ])) : _("", !0),
1883
- e.isCertified ? (s(), i("div", Gs, [
1885
+ ])) : h("", !0),
1886
+ e.isCertified ? (l(), i("div", Gs, [
1884
1887
  S(I(F), null, {
1885
1888
  default: y(() => [
1886
1889
  c(a.$slots, "product-hero-certification", {}, void 0, !0)
1887
1890
  ]),
1888
1891
  _: 3
1889
1892
  })
1890
- ])) : _("", !0)
1893
+ ])) : h("", !0)
1891
1894
  ])
1892
1895
  ])
1893
1896
  ])
@@ -1914,91 +1917,92 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
1914
1917
  light: "promo__wrapper--light",
1915
1918
  default: "promo__wrapper--default"
1916
1919
  }, r = e, o = A(() => a[r.variant]);
1917
- return (l, u) => (s(), i("div", {
1920
+ return (s, u) => (l(), i("div", {
1918
1921
  class: p([
1919
1922
  "promo__wrapper",
1920
1923
  o.value,
1921
- l.teaser ? "promo__wrapper--teaser" : "",
1922
- l.multiply ? "promo__wrapper--multiply" : ""
1924
+ s.teaser ? "promo__wrapper--teaser" : "",
1925
+ s.multiply ? "promo__wrapper--multiply" : ""
1923
1926
  ])
1924
1927
  }, [
1925
1928
  t("div", Ys, [
1926
- l.mediaType === "image" ? (s(), i("div", {
1929
+ s.mediaType === "image" ? (l(), i("div", {
1927
1930
  key: 0,
1928
1931
  class: p([
1929
1932
  "promo__image",
1930
- l.reverse ? "promo__image--reverse" : "promo__image--default"
1933
+ s.reverse ? "promo__image--reverse" : "promo__image--default"
1931
1934
  ])
1932
1935
  }, [
1933
1936
  S(F, null, {
1934
1937
  default: y(() => [
1935
- c(l.$slots, "promo-image", O(z({ src: l.src, width: 1920, alt: l.alt, height: 1080 })))
1938
+ c(s.$slots, "promo-image", O(z({ src: s.src, width: 1920, alt: s.alt, height: 1080 })))
1936
1939
  ]),
1937
1940
  _: 3
1938
1941
  })
1939
- ], 2)) : _("", !0),
1940
- l.mediaType === "video" ? (s(), i("div", {
1942
+ ], 2)) : h("", !0),
1943
+ s.mediaType === "video" ? (l(), i("div", {
1941
1944
  key: 1,
1942
1945
  class: p([
1943
1946
  "promo__video",
1944
- l.reverse ? "promo__video--reverse" : "promo__video--default"
1945
- ])
1947
+ s.reverse ? "promo__video--reverse" : "promo__video--default"
1948
+ ]),
1949
+ tabindex: "0"
1946
1950
  }, [
1947
- S(ee, {
1948
- src: l.src,
1951
+ S(te, {
1952
+ src: s.src,
1949
1953
  "local-video": "",
1950
- "aria-label": l.alt,
1954
+ "aria-label": s.alt,
1951
1955
  controls: !1,
1952
1956
  autoplay: "",
1953
1957
  loop: "",
1954
1958
  muted: "",
1955
1959
  play: "",
1956
- poster: l.fallbackImage
1960
+ poster: s.fallbackImage
1957
1961
  }, null, 8, ["src", "aria-label", "poster"])
1958
- ], 2)) : _("", !0),
1962
+ ], 2)) : h("", !0),
1959
1963
  t("div", {
1960
1964
  class: p([
1961
1965
  "promo__text",
1962
- l.reverse ? "promo__text--reverse" : "promo__text--default"
1966
+ s.reverse ? "promo__text--reverse" : "promo__text--default"
1963
1967
  ])
1964
1968
  }, [
1965
- l.label ? (s(), L(X, {
1969
+ s.label ? (l(), L(X, {
1966
1970
  key: 0,
1967
- text: l.label,
1968
- "label-dark": l.variant === "dark"
1969
- }, null, 8, ["text", "label-dark"])) : _("", !0),
1971
+ text: s.label,
1972
+ "label-dark": s.variant === "dark"
1973
+ }, null, 8, ["text", "label-dark"])) : h("", !0),
1970
1974
  t("div", {
1971
1975
  class: p([
1972
1976
  "promo__title",
1973
- l.variant === "dark" ? "promo__title--dark" : ""
1977
+ s.variant === "dark" ? "promo__title--dark" : ""
1974
1978
  ])
1975
1979
  }, [
1976
- c(l.$slots, "promo-headline")
1980
+ c(s.$slots, "promo-headline")
1977
1981
  ], 2),
1978
- l.linkType === "link" ? (s(), L(P, {
1982
+ s.linkType === "link" ? (l(), L(P, {
1979
1983
  key: 1,
1980
- "link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
1984
+ "link-type": s.variant === "dark" ? "regular_dark" : (s.variant === "light", "regular_light"),
1981
1985
  arrow: ""
1982
1986
  }, {
1983
1987
  default: y(() => [
1984
- c(l.$slots, "promo-link")
1988
+ c(s.$slots, "promo-link")
1985
1989
  ]),
1986
1990
  _: 3
1987
- }, 8, ["link-type"])) : _("", !0),
1988
- l.linkType === "button" ? (s(), L(P, {
1991
+ }, 8, ["link-type"])) : h("", !0),
1992
+ s.linkType === "button" ? (l(), L(P, {
1989
1993
  key: 2,
1990
- "link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
1994
+ "link-type": s.variant === "dark" ? "secondary_dark" : (s.variant === "light", "secondary")
1991
1995
  }, {
1992
1996
  default: y(() => [
1993
- c(l.$slots, "promo-link")
1997
+ c(s.$slots, "promo-link")
1994
1998
  ]),
1995
1999
  _: 3
1996
- }, 8, ["link-type"])) : _("", !0)
2000
+ }, 8, ["link-type"])) : h("", !0)
1997
2001
  ], 2)
1998
2002
  ])
1999
2003
  ], 2));
2000
2004
  }
2001
- }), Zs = /* @__PURE__ */ v(Qs, [["__scopeId", "data-v-df54d965"]]), Xs = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), xs = { class: "quote__wrapper" }, el = { class: "quote__content" }, tl = /* @__PURE__ */ Xs(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), al = { class: "quote__quote" }, ol = { class: "quote__quote-text" }, sl = { class: "quote__author" }, ll = {
2005
+ }), Zs = /* @__PURE__ */ v(Qs, [["__scopeId", "data-v-0ff968f7"]]), Xs = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), xs = { class: "quote__wrapper" }, el = { class: "quote__content" }, tl = /* @__PURE__ */ Xs(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), al = { class: "quote__quote" }, ol = { class: "quote__quote-text" }, sl = { class: "quote__author" }, ll = {
2002
2006
  key: 0,
2003
2007
  class: "quote__image"
2004
2008
  }, il = { class: "quote__text" }, rl = { class: "quote__author-name" }, nl = { class: "quote__author-title" }, dl = /* @__PURE__ */ g({
@@ -2023,13 +2027,13 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
2023
2027
  }
2024
2028
  },
2025
2029
  setup(e) {
2026
- return (a, r) => (s(), i("div", xs, [
2030
+ return (a, r) => (l(), i("div", xs, [
2027
2031
  t("div", el, [
2028
2032
  tl,
2029
2033
  t("div", al, [
2030
2034
  t("p", ol, d(e.quote), 1),
2031
2035
  t("div", sl, [
2032
- e.authorImage ? (s(), i("div", ll, [
2036
+ e.authorImage ? (l(), i("div", ll, [
2033
2037
  S(F, null, {
2034
2038
  default: y(() => [
2035
2039
  c(a.$slots, "author-image", O(z({
@@ -2040,7 +2044,7 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
2040
2044
  ]),
2041
2045
  _: 3
2042
2046
  })
2043
- ])) : _("", !0),
2047
+ ])) : h("", !0),
2044
2048
  t("div", il, [
2045
2049
  t("p", rl, d(e.author), 1),
2046
2050
  t("p", nl, d(e.authorTitle), 1)
@@ -2069,25 +2073,25 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
2069
2073
  label: { default: "" }
2070
2074
  },
2071
2075
  setup(e) {
2072
- return (a, r) => (s(), i("div", {
2076
+ return (a, r) => (l(), i("div", {
2073
2077
  class: p([
2074
2078
  "rich-text",
2075
2079
  a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
2076
2080
  ])
2077
2081
  }, [
2078
2082
  t("div", ul, [
2079
- a.label ? (s(), L(X, {
2083
+ a.label ? (l(), L(X, {
2080
2084
  key: 0,
2081
2085
  text: a.label,
2082
2086
  "label-dark": !1
2083
- }, null, 8, ["text"])) : _("", !0),
2084
- a.headline ? (s(), i("h2", {
2087
+ }, null, 8, ["text"])) : h("", !0),
2088
+ a.headline ? (l(), i("h2", {
2085
2089
  key: 1,
2086
2090
  class: p([
2087
2091
  "rich-text__headline",
2088
2092
  a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
2089
2093
  ])
2090
- }, d(a.headline), 3)) : _("", !0),
2094
+ }, d(a.headline), 3)) : h("", !0),
2091
2095
  t("div", {
2092
2096
  class: p([
2093
2097
  "rich-text__content",
@@ -2101,14 +2105,14 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
2101
2105
  ])
2102
2106
  }, [
2103
2107
  c(a.$slots, "rich-text-content"),
2104
- a.links ? (s(), i("div", _l, [
2108
+ a.links ? (l(), i("div", _l, [
2105
2109
  c(a.$slots, "rich-text-links")
2106
- ])) : _("", !0)
2110
+ ])) : h("", !0)
2107
2111
  ], 2),
2108
- a.bulletList ? (s(), i("div", hl, [
2112
+ a.bulletList ? (l(), i("div", hl, [
2109
2113
  c(a.$slots, "rich-text-bullet-list")
2110
- ])) : _("", !0),
2111
- a.image ? (s(), i("div", {
2114
+ ])) : h("", !0),
2115
+ a.image ? (l(), i("div", {
2112
2116
  key: 1,
2113
2117
  class: p([
2114
2118
  "rich-text__image",
@@ -2121,14 +2125,14 @@ const Hs = /* @__PURE__ */ v(Fs, [["render", zs], ["__scopeId", "data-v-ea887d7a
2121
2125
  ]),
2122
2126
  _: 3
2123
2127
  })
2124
- ], 2)) : _("", !0)
2128
+ ], 2)) : h("", !0)
2125
2129
  ], 2)
2126
2130
  ])
2127
2131
  ], 2));
2128
2132
  }
2129
2133
  }), ml = /* @__PURE__ */ v(pl, [["__scopeId", "data-v-db485b9d"]]), fl = {}, vl = { class: "rich-text" }, gl = { class: "rich-text__wrapper" }, bl = { class: "rich-text__content rich-text__content--left-aligned" }, yl = { class: "rich-text__body" };
2130
2134
  function kl(e, a) {
2131
- return s(), i("div", vl, [
2135
+ return l(), i("div", vl, [
2132
2136
  t("div", gl, [
2133
2137
  t("div", bl, [
2134
2138
  t("div", yl, [
@@ -2158,8 +2162,8 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2158
2162
  return me(() => {
2159
2163
  const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
2160
2164
  (o) => {
2161
- o.forEach((l) => {
2162
- l.isIntersecting && (l.target.classList.add("visible"), l.target.classList.remove("faded"), r.unobserve(l.target));
2165
+ o.forEach((s) => {
2166
+ s.isIntersecting && (s.target.classList.add("visible"), s.target.classList.remove("faded"), r.unobserve(s.target));
2163
2167
  });
2164
2168
  },
2165
2169
  {
@@ -2169,10 +2173,10 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2169
2173
  a.forEach((o) => {
2170
2174
  r.observe(o);
2171
2175
  });
2172
- }), (a, r) => (s(), i("div", Bl, [
2176
+ }), (a, r) => (l(), i("div", Bl, [
2173
2177
  t("div", Sl, [
2174
2178
  t("div", Il, [
2175
- (s(!0), i(T, null, V(e.timelineItems, (o) => (s(), i("div", {
2179
+ (l(!0), i(T, null, V(e.timelineItems, (o) => (l(), i("div", {
2176
2180
  key: o.year,
2177
2181
  class: "timeline__item faded"
2178
2182
  }, [
@@ -2184,12 +2188,12 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2184
2188
  o.media.src ? c(a.$slots, "timeline-image", M({
2185
2189
  key: 0,
2186
2190
  ref_for: !0
2187
- }, { src: o.media.src, alt: o.media.alt }), void 0, !0) : _("", !0)
2191
+ }, { src: o.media.src, alt: o.media.alt }), void 0, !0) : h("", !0)
2188
2192
  ]),
2189
2193
  _: 2
2190
2194
  }, 1024),
2191
2195
  t("div", {
2192
- style: x([o.media.src ? "" : "margin-top: 0px"]),
2196
+ style: ee([o.media.src ? "" : "margin-top: 0px"]),
2193
2197
  class: "rich-text",
2194
2198
  innerHTML: o.text
2195
2199
  }, null, 12, Ll)
@@ -2218,18 +2222,15 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2218
2222
  }
2219
2223
  },
2220
2224
  setup(e) {
2221
- return (a, r) => (s(), i("div", Vl, [
2225
+ return (a, r) => (l(), i("div", Vl, [
2222
2226
  t("div", Pl, [
2223
- e.headline ? (s(), i("h2", Fl, d(e.headline), 1)) : _("", !0),
2227
+ e.headline ? (l(), i("h2", Fl, d(e.headline), 1)) : h("", !0),
2224
2228
  c(a.$slots, "vimeo-content", {}, void 0, !0),
2225
- e.description ? (s(), i("p", Ml, d(e.description), 1)) : _("", !0)
2229
+ e.description ? (l(), i("p", Ml, d(e.description), 1)) : h("", !0)
2226
2230
  ])
2227
2231
  ]));
2228
2232
  }
2229
- }), zl = /* @__PURE__ */ v(Ol, [["__scopeId", "data-v-90a2b109"]]), Hl = { class: "academy-overview" }, Rl = { class: "academy-overview__content-wrapper" }, Nl = { class: "academy-overview__content" }, El = { class: "academy-overview__title" }, jl = { class: "academy-overview__description" }, Kl = {
2230
- key: 0,
2231
- class: "academy-overview__button-wrapper"
2232
- }, Ul = {
2233
+ }), zl = /* @__PURE__ */ v(Ol, [["__scopeId", "data-v-90a2b109"]]), Hl = { class: "academy-overview" }, Rl = { class: "academy-overview__content-wrapper" }, Nl = { class: "academy-overview__content" }, El = { class: "academy-overview__title" }, jl = { class: "academy-overview__description" }, Kl = { class: "academy-overview__button-wrapper" }, Ul = {
2233
2234
  key: 0,
2234
2235
  class: "academy-overview__stats"
2235
2236
  }, Gl = { class: "academy-overview__stats-row" }, Jl = { class: "academy-overview__stat" }, Wl = { class: "academy-overview__value" }, Yl = { class: "academy-overview__label" }, Ql = { class: "academy-overview__stat" }, Zl = { class: "academy-overview__value" }, Xl = { class: "academy-overview__label" }, xl = /* @__PURE__ */ g({
@@ -2246,17 +2247,17 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2246
2247
  }) }
2247
2248
  },
2248
2249
  setup(e) {
2249
- return (a, r) => (s(), i("div", Hl, [
2250
+ return (a, r) => (l(), i("div", Hl, [
2250
2251
  t("div", Rl, [
2251
2252
  t("div", Nl, [
2252
2253
  t("div", null, [
2253
2254
  t("h1", El, d(a.hero.headline), 1),
2254
2255
  t("p", jl, d(a.hero.description), 1),
2255
- a.hero.showStats ? _("", !0) : (s(), i("div", Kl, [
2256
+ t("div", Kl, [
2256
2257
  c(a.$slots, "button", {}, void 0, !0)
2257
- ]))
2258
+ ])
2258
2259
  ]),
2259
- a.hero.showStats ? (s(), i("div", Ul, [
2260
+ a.hero.showStats ? (l(), i("div", Ul, [
2260
2261
  t("div", Gl, [
2261
2262
  t("div", Jl, [
2262
2263
  t("div", Wl, d(a.hero.lessonValue), 1),
@@ -2267,12 +2268,12 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2267
2268
  t("div", Xl, d(a.hero.pointsLabel), 1)
2268
2269
  ])
2269
2270
  ])
2270
- ])) : _("", !0)
2271
+ ])) : h("", !0)
2271
2272
  ])
2272
2273
  ])
2273
2274
  ]));
2274
2275
  }
2275
- }), ei = /* @__PURE__ */ v(xl, [["__scopeId", "data-v-98275425"]]), ti = { class: "not-found__wrapper" }, ai = { class: "not-found__content" }, oi = { class: "not-found__headline" }, si = { class: "not-found__body" }, li = /* @__PURE__ */ g({
2276
+ }), ei = /* @__PURE__ */ v(xl, [["__scopeId", "data-v-1594f3e8"]]), ti = { class: "not-found__wrapper" }, ai = { class: "not-found__content" }, oi = { class: "not-found__headline" }, si = { class: "not-found__body" }, li = /* @__PURE__ */ g({
2276
2277
  __name: "404",
2277
2278
  props: {
2278
2279
  headline: {
@@ -2281,7 +2282,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2281
2282
  }
2282
2283
  },
2283
2284
  setup(e) {
2284
- return (a, r) => (s(), i("div", ti, [
2285
+ return (a, r) => (l(), i("div", ti, [
2285
2286
  t("div", ai, [
2286
2287
  t("h1", oi, d(e.headline), 1),
2287
2288
  t("div", si, [
@@ -2304,18 +2305,18 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2304
2305
  },
2305
2306
  emits: ["clearFilters"],
2306
2307
  setup(e) {
2307
- return (a, r) => (s(), i("div", ri, [
2308
+ return (a, r) => (l(), i("div", ri, [
2308
2309
  t("div", ni, [
2309
2310
  t("div", di, [
2310
2311
  c(a.$slots, "filter-dropdowns")
2311
2312
  ]),
2312
2313
  t("div", ci, [
2313
2314
  c(a.$slots, "filter-chips"),
2314
- e.hasChips ? (s(), i("button", {
2315
+ e.hasChips ? (l(), i("button", {
2315
2316
  key: 0,
2316
2317
  class: "filter__clear",
2317
2318
  onClick: r[0] || (r[0] = (o) => a.$emit("clearFilters"))
2318
- }, d(e.removeAll), 1)) : _("", !0)
2319
+ }, d(e.removeAll), 1)) : h("", !0)
2319
2320
  ])
2320
2321
  ])
2321
2322
  ]));
@@ -2361,11 +2362,11 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2361
2362
  },
2362
2363
  emits: ["changeRegionClicked"],
2363
2364
  setup(e) {
2364
- return (a, r) => (s(), i("div", hi, [
2365
+ return (a, r) => (l(), i("div", hi, [
2365
2366
  t("footer", pi, [
2366
- a.language === "zh" ? (s(), i("img", mi)) : _("", !0),
2367
+ a.language === "zh" ? (l(), i("img", mi)) : h("", !0),
2367
2368
  t("div", fi, [
2368
- (s(!0), i(T, null, V(a.footerSections, (o) => (s(), i("div", {
2369
+ (l(!0), i(T, null, V(a.footerSections, (o) => (l(), i("div", {
2369
2370
  key: o.title,
2370
2371
  class: "section"
2371
2372
  }, [
@@ -2379,11 +2380,11 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2379
2380
  ])
2380
2381
  ]))), 128)),
2381
2382
  t("div", bi, [
2382
- a.language === "zh" ? (s(), i("span", yi, "名傲移动机器人(上海)有限公司")) : (s(), i("span", ki, "Mobile Industrial Robots A/S")),
2383
+ a.language === "zh" ? (l(), i("span", yi, "名傲移动机器人(上海)有限公司")) : (l(), i("span", ki, "Mobile Industrial Robots A/S")),
2383
2384
  t("address", null, [
2384
- a.language === "zh" ? (s(), i("span", $i, "上海浦东新区金桥出口加工区")) : (s(), i("span", wi, "Energivej 51")),
2385
- a.language === "zh" ? (s(), i("span", Bi, "桂桥路1201号10栋2楼")) : (s(), i("span", Si, "5260 Odense S")),
2386
- a.language !== "zh" ? (s(), i("span", Ii, "CVR: 35251235")) : _("", !0),
2385
+ a.language === "zh" ? (l(), i("span", $i, "上海浦东新区金桥出口加工区")) : (l(), i("span", wi, "Energivej 51")),
2386
+ a.language === "zh" ? (l(), i("span", Bi, "桂桥路1201号10栋2楼")) : (l(), i("span", Si, "5260 Odense S")),
2387
+ a.language !== "zh" ? (l(), i("span", Ii, "CVR: 35251235")) : h("", !0),
2387
2388
  Ci,
2388
2389
  S(P, {
2389
2390
  class: "footer__contact",
@@ -2391,7 +2392,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2391
2392
  underline: "false"
2392
2393
  }, {
2393
2394
  default: y(() => [
2394
- a.language === "zh" ? (s(), i("a", qi, "china@mir-robots.com")) : (s(), i("a", Ai, "mail@mir-robots.com"))
2395
+ a.language === "zh" ? (l(), i("a", qi, "china@mir-robots.com")) : (l(), i("a", Ai, "mail@mir-robots.com"))
2395
2396
  ]),
2396
2397
  _: 1
2397
2398
  }),
@@ -2401,7 +2402,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2401
2402
  underline: "false"
2402
2403
  }, {
2403
2404
  default: y(() => [
2404
- a.language === "zh" ? (s(), i("a", Li, "+86 13661856951(微信同号)")) : (s(), i("a", Di, "+45 20 377 577"))
2405
+ a.language === "zh" ? (l(), i("a", Li, "+86 13661856951(微信同号)")) : (l(), i("a", Di, "+45 20 377 577"))
2405
2406
  ]),
2406
2407
  _: 1
2407
2408
  })
@@ -2423,8 +2424,8 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2423
2424
  c(a.$slots, "footer-privacy-link"),
2424
2425
  c(a.$slots, "footer-cookie-link")
2425
2426
  ]),
2426
- a.language !== "zh" ? (s(), i("div", Mi, [
2427
- (s(!0), i(T, null, V(a.socialMedia, (o) => (s(), L(P, {
2427
+ a.language !== "zh" ? (l(), i("div", Mi, [
2428
+ (l(!0), i(T, null, V(a.socialMedia, (o) => (l(), L(P, {
2428
2429
  key: o.title,
2429
2430
  underline: "false",
2430
2431
  "link-type": "regular"
@@ -2444,8 +2445,8 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2444
2445
  ]),
2445
2446
  _: 2
2446
2447
  }, 1024))), 128))
2447
- ])) : (s(), i("div", zi, [
2448
- (s(!0), i(T, null, V(a.socialMediaChina, (o) => (s(), L(P, {
2448
+ ])) : (l(), i("div", zi, [
2449
+ (l(!0), i(T, null, V(a.socialMediaChina, (o) => (l(), L(P, {
2449
2450
  key: o.title,
2450
2451
  underline: "false",
2451
2452
  "link-type": "regular"
@@ -2470,7 +2471,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2470
2471
  ])
2471
2472
  ]));
2472
2473
  }
2473
- }), Ni = /* @__PURE__ */ v(Ri, [["__scopeId", "data-v-3d0cbbd5"]]), ke = (e) => (H("data-v-ca578d77"), e = e(), R(), e), Ei = { class: "header__wrapper" }, ji = { class: "nav-wrapper" }, Ki = { class: "mir-link-logo" }, Ui = { class: "main-nav-items" }, Gi = {
2474
+ }), Ni = /* @__PURE__ */ v(Ri, [["__scopeId", "data-v-3d0cbbd5"]]), ke = (e) => (H("data-v-c61022c5"), e = e(), R(), e), Ei = { class: "header__wrapper" }, ji = { class: "nav-wrapper" }, Ki = { class: "mir-link-logo" }, Ui = { class: "main-nav-items" }, Gi = {
2474
2475
  key: 0,
2475
2476
  id: "menu-dropdown",
2476
2477
  ref: "dropdownDiv"
@@ -2567,25 +2568,25 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2567
2568
  ],
2568
2569
  setup(e, { expose: a, emit: r }) {
2569
2570
  let o = null;
2570
- const l = e;
2571
- let u = C(l.burgerState), h = C(l.search), n = C(l.showDropDown), b = C(l.showPortalSwitcherDropDown), f = C(l.showProfileDropDown), k = C(l.isAuthenticated);
2571
+ const s = e;
2572
+ let u = C(s.burgerState), _ = C(s.search), n = C(s.showDropDown), b = C(s.showPortalSwitcherDropDown), f = C(s.showProfileDropDown), k = C(s.isAuthenticated);
2572
2573
  Q(
2573
- () => l.burgerState,
2574
+ () => s.burgerState,
2574
2575
  ($) => u.value = $
2575
2576
  ), Q(
2576
- () => l.search,
2577
- ($) => h.value = $
2577
+ () => s.search,
2578
+ ($) => _.value = $
2578
2579
  ), Q(
2579
- () => l.showDropDown,
2580
+ () => s.showDropDown,
2580
2581
  ($) => n.value = $
2581
2582
  ), Q(
2582
- () => l.showPortalSwitcherDropDown,
2583
+ () => s.showPortalSwitcherDropDown,
2583
2584
  ($) => b.value = $
2584
2585
  ), Q(
2585
- () => l.showProfileDropDown,
2586
+ () => s.showProfileDropDown,
2586
2587
  ($) => f.value = $
2587
2588
  ), Q(
2588
- () => l.isAuthenticated,
2589
+ () => s.isAuthenticated,
2589
2590
  ($) => k.value = $
2590
2591
  ), me(() => {
2591
2592
  o = ($) => {
@@ -2595,25 +2596,25 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2595
2596
  o !== null && window.removeEventListener("click", o);
2596
2597
  });
2597
2598
  const w = r;
2598
- function te() {
2599
+ function ae() {
2599
2600
  n.value = !n.value, w("update:showDropDown", n.value);
2600
2601
  }
2601
- function ie() {
2602
+ function re() {
2602
2603
  b.value = !b.value, w("update:showPortalSwitcherDropDown", b.value);
2603
2604
  }
2604
- function re() {
2605
+ function ne() {
2605
2606
  f.value = !f.value, w("update:showProfileDropDown", f.value);
2606
2607
  }
2607
- function ne() {
2608
+ function de() {
2608
2609
  u.value = !u.value, w("update:burgerState", u.value);
2609
2610
  }
2610
- let G = C(null), ae = C(null);
2611
- function de() {
2611
+ let G = C(null), oe = C(null);
2612
+ function ce() {
2612
2613
  G.value && G.value.blur();
2613
2614
  }
2614
2615
  return a({
2615
- defocusSearchButton: de
2616
- }), ($, j) => (s(), i("div", Ei, [
2616
+ defocusSearchButton: ce
2617
+ }), ($, j) => (l(), i("div", Ei, [
2617
2618
  t("nav", null, [
2618
2619
  t("div", ji, [
2619
2620
  t("div", Ki, [
@@ -2622,21 +2623,21 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2622
2623
  t("ul", Ui, [
2623
2624
  c($.$slots, "main-nav-items", {}, void 0, !0)
2624
2625
  ]),
2625
- e.useDropdown ? (s(), i("div", Gi, [
2626
+ e.useDropdown ? (l(), i("div", Gi, [
2626
2627
  t("button", {
2627
2628
  class: "nav-dropdown-btn",
2628
- onClick: te
2629
+ onClick: ae
2629
2630
  }, [
2630
2631
  c($.$slots, "dropdown-title", {}, void 0, !0),
2631
- I(n) === !1 ? (s(), i("img", Ji)) : (s(), i("img", Wi))
2632
+ I(n) === !1 ? (l(), i("img", Ji)) : (l(), i("img", Wi))
2632
2633
  ]),
2633
2634
  U(t("div", Yi, [
2634
2635
  c($.$slots, "dropdown-links", {}, void 0, !0)
2635
2636
  ], 512), [
2636
2637
  [Z, I(n)]
2637
2638
  ])
2638
- ], 512)) : _("", !0),
2639
- I(h) ? (s(), i("div", Qi, [
2639
+ ], 512)) : h("", !0),
2640
+ I(_) ? (l(), i("div", Qi, [
2640
2641
  t("button", {
2641
2642
  ref_key: "navSearchButton",
2642
2643
  ref: G,
@@ -2653,15 +2654,15 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2653
2654
  height: "20"
2654
2655
  }, null, 8, Zi)
2655
2656
  ], 512)
2656
- ])) : _("", !0),
2657
- e.usePortalSwitcher ? (s(), i("div", Xi, [
2657
+ ])) : h("", !0),
2658
+ e.usePortalSwitcher ? (l(), i("div", Xi, [
2658
2659
  t("button", {
2659
2660
  class: "nav-portal-switcher-btn",
2660
- onClick: ie
2661
+ onClick: re
2661
2662
  }, er),
2662
2663
  U(t("div", tr, [
2663
2664
  t("ul", ar, [
2664
- (s(!0), i(T, null, V(e.portals, (K, E) => (s(), i("li", {
2665
+ (l(!0), i(T, null, V(e.portals, (K, E) => (l(), i("li", {
2665
2666
  key: E,
2666
2667
  class: "portal-switcher-link"
2667
2668
  }, [
@@ -2669,7 +2670,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2669
2670
  default: y(() => [
2670
2671
  t("a", {
2671
2672
  href: K.link,
2672
- onClick: j[1] || (j[1] = (W) => ce(n) ? n.value = !1 : n = !1)
2673
+ onClick: j[1] || (j[1] = (W) => x(n) ? n.value = !1 : n = !1)
2673
2674
  }, [
2674
2675
  t("img", {
2675
2676
  src: K.icon
@@ -2684,22 +2685,22 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2684
2685
  ], 512), [
2685
2686
  [Z, I(b)]
2686
2687
  ])
2687
- ])) : _("", !0),
2688
- e.useProfileDropdown ? (s(), i("div", lr, [
2689
- I(k) ? _("", !0) : (s(), i("div", ir, [
2688
+ ])) : h("", !0),
2689
+ e.useProfileDropdown ? (l(), i("div", lr, [
2690
+ I(k) ? h("", !0) : (l(), i("div", ir, [
2690
2691
  c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
2691
2692
  ])),
2692
- I(k) ? (s(), i("button", {
2693
+ I(k) ? (l(), i("button", {
2693
2694
  key: 1,
2694
2695
  class: "nav-profile-dropdown-btn",
2695
- onClick: re
2696
- }, nr)) : _("", !0),
2696
+ onClick: ne
2697
+ }, nr)) : h("", !0),
2697
2698
  U(t("div", dr, [
2698
2699
  c($.$slots, "profile-dropdown-links", {}, void 0, !0)
2699
2700
  ], 512), [
2700
2701
  [Z, I(f)]
2701
2702
  ])
2702
- ])) : _("", !0)
2703
+ ])) : h("", !0)
2703
2704
  ]),
2704
2705
  t("div", {
2705
2706
  class: p(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
@@ -2708,15 +2709,15 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2708
2709
  t("div", ur, [
2709
2710
  c($.$slots, "link-logo", {}, void 0, !0)
2710
2711
  ]),
2711
- I(h) ? (s(), i("div", _r, [
2712
+ I(_) ? (l(), i("div", _r, [
2712
2713
  t("button", {
2713
2714
  ref_key: "mobileSearchButton",
2714
- ref: ae,
2715
+ ref: oe,
2715
2716
  class: "search-icon",
2716
2717
  "aria-label": "Toggle search",
2717
2718
  onClick: j[2] || (j[2] = (K) => {
2718
2719
  var E;
2719
- return $.$emit("clickSearch"), (E = I(ae)) == null ? void 0 : E.blur();
2720
+ return $.$emit("clickSearch"), (E = I(oe)) == null ? void 0 : E.blur();
2720
2721
  })
2721
2722
  }, [
2722
2723
  t("img", {
@@ -2726,11 +2727,11 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2726
2727
  height: "20"
2727
2728
  }, null, 8, hr)
2728
2729
  ], 512)
2729
- ])) : _("", !0),
2730
+ ])) : h("", !0),
2730
2731
  t("button", {
2731
2732
  class: "mobile-burger-wrapper",
2732
2733
  "aria-label": "Toggle menu",
2733
- onClick: he(ne, ["prevent"])
2734
+ onClick: he(de, ["prevent"])
2734
2735
  }, [
2735
2736
  t("img", {
2736
2737
  width: "20",
@@ -2755,7 +2756,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2755
2756
  ])
2756
2757
  ]));
2757
2758
  }
2758
- }), gr = /* @__PURE__ */ v(vr, [["__scopeId", "data-v-ca578d77"]]), br = { class: "language__wrapper" }, yr = { class: "language__content" }, kr = { class: "language__headline" }, $r = { class: "language__paragraph" }, wr = { class: "language__links" }, Br = /* @__PURE__ */ g({
2759
+ }), gr = /* @__PURE__ */ v(vr, [["__scopeId", "data-v-c61022c5"]]), br = { class: "language__wrapper" }, yr = { class: "language__content" }, kr = { class: "language__headline" }, $r = { class: "language__paragraph" }, wr = { class: "language__links" }, Br = /* @__PURE__ */ g({
2759
2760
  __name: "language-switcher",
2760
2761
  props: {
2761
2762
  headline: {
@@ -2768,7 +2769,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2768
2769
  }
2769
2770
  },
2770
2771
  setup(e) {
2771
- return (a, r) => (s(), i("div", br, [
2772
+ return (a, r) => (l(), i("div", br, [
2772
2773
  t("div", yr, [
2773
2774
  t("h2", kr, d(e.headline), 1),
2774
2775
  t("p", $r, d(e.paragraph), 1),
@@ -2792,16 +2793,16 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2792
2793
  },
2793
2794
  emits: ["previous", "next"],
2794
2795
  setup(e) {
2795
- return (a, r) => (s(), i("div", Ir, [
2796
+ return (a, r) => (l(), i("div", Ir, [
2796
2797
  t("div", Cr, [
2797
- S(se, {
2798
+ S(le, {
2798
2799
  disabled: e.isPreviousDisabled,
2799
2800
  variant: "previous",
2800
2801
  "aria-label": "previous",
2801
2802
  onClick: r[0] || (r[0] = (o) => a.$emit("previous"))
2802
2803
  }, null, 8, ["disabled"]),
2803
2804
  c(a.$slots, "pagination-numbers"),
2804
- S(se, {
2805
+ S(le, {
2805
2806
  disabled: e.isNextDisabled,
2806
2807
  variant: "next",
2807
2808
  "aria-label": "next",
@@ -2812,7 +2813,7 @@ const $l = /* @__PURE__ */ v(fl, [["render", kl], ["__scopeId", "data-v-776750d2
2812
2813
  }
2813
2814
  }), Ar = /* @__PURE__ */ v(qr, [["__scopeId", "data-v-da6d07c9"]]), Lr = {}, Dr = { class: "search__wrapper" };
2814
2815
  function Tr(e, a) {
2815
- return s(), i("div", Dr, [
2816
+ return l(), i("div", Dr, [
2816
2817
  c(e.$slots, "default", { class: "search__content" })
2817
2818
  ]);
2818
2819
  }
@@ -2825,20 +2826,20 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
2825
2826
  },
2826
2827
  emits: ["filter", "remove-filter"],
2827
2828
  setup(e, { emit: a }) {
2828
- const r = C(!1), o = e, l = a;
2829
+ const r = C(!1), o = e, s = a;
2829
2830
  function u(b) {
2830
- o.selectedOptions.includes(b) ? l("remove-filter", b) : l("filter", b);
2831
+ o.selectedOptions.includes(b) ? s("remove-filter", b) : s("filter", b);
2831
2832
  }
2832
- function h() {
2833
+ function _() {
2833
2834
  r.value = !1;
2834
2835
  }
2835
2836
  const n = A(() => o.options.length > 8);
2836
2837
  return (b, f) => {
2837
2838
  const k = _e("click-outside");
2838
- return U((s(), i("div", Pr, [
2839
+ return U((l(), i("div", Pr, [
2839
2840
  t("button", {
2840
2841
  class: "dropdown-button",
2841
- style: x({ "z-index": r.value ? 2 : 0 }),
2842
+ style: ee({ "z-index": r.value ? 2 : 0 }),
2842
2843
  "aria-expanded": r.value ? "true" : "false",
2843
2844
  onClick: f[0] || (f[0] = (w) => r.value = !r.value)
2844
2845
  }, [
@@ -2849,7 +2850,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
2849
2850
  t("div", {
2850
2851
  class: p([{ hidden: !r.value, "adjust-height": n.value }, "dropdown-content"])
2851
2852
  }, [
2852
- (s(!0), i(T, null, V(b.options, (w) => (s(), L(I(fe), {
2853
+ (l(!0), i(T, null, V(b.options, (w) => (l(), L(I(fe), {
2853
2854
  id: w.value,
2854
2855
  key: w.value,
2855
2856
  name: w.text,
@@ -2857,7 +2858,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
2857
2858
  disabled: !1,
2858
2859
  value: w.value,
2859
2860
  checked: b.selectedOptions.includes(w.value),
2860
- onInput: (te) => u(w.value)
2861
+ onInput: (ae) => u(w.value)
2861
2862
  }, {
2862
2863
  default: y(() => [
2863
2864
  J(d(w.text), 1)
@@ -2866,7 +2867,7 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
2866
2867
  }, 1032, ["id", "name", "value", "checked", "onInput"]))), 128))
2867
2868
  ], 2)
2868
2869
  ])), [
2869
- [k, h]
2870
+ [k, _]
2870
2871
  ]);
2871
2872
  };
2872
2873
  }
@@ -2889,82 +2890,82 @@ const Vr = /* @__PURE__ */ v(Lr, [["render", Tr], ["__scopeId", "data-v-c07a6cf3
2889
2890
  light: "promo__wrapper--light",
2890
2891
  default: "promo__wrapper--default"
2891
2892
  }, r = e, o = A(() => a[r.variant]);
2892
- return (l, u) => (s(), i("div", {
2893
+ return (s, u) => (l(), i("div", {
2893
2894
  class: p([
2894
2895
  "promo__wrapper",
2895
2896
  o.value,
2896
- l.teaser ? "promo__wrapper--teaser" : ""
2897
+ s.teaser ? "promo__wrapper--teaser" : ""
2897
2898
  ])
2898
2899
  }, [
2899
2900
  t("div", zr, [
2900
2901
  t("div", {
2901
2902
  class: p([
2902
2903
  "promo__video",
2903
- l.reverse ? "promo__video--reverse" : "promo__video--default"
2904
+ s.reverse ? "promo__video--reverse" : "promo__video--default"
2904
2905
  ])
2905
2906
  }, [
2906
2907
  t("div", Hr, [
2907
2908
  t("div", Rr, [
2908
- c(l.$slots, "pallet-jack-link")
2909
+ c(s.$slots, "pallet-jack-link")
2909
2910
  ]),
2910
2911
  t("div", Nr, [
2911
- c(l.$slots, "pallet-jack-video")
2912
+ c(s.$slots, "pallet-jack-video")
2912
2913
  ]),
2913
2914
  t("div", Er, [
2914
- t("h3", jr, d(l.headline), 1),
2915
- t("p", null, d(l.shortDescription), 1)
2915
+ t("h3", jr, d(s.headline), 1),
2916
+ t("p", null, d(s.shortDescription), 1)
2916
2917
  ])
2917
2918
  ])
2918
2919
  ], 2),
2919
2920
  t("div", {
2920
2921
  class: p([
2921
2922
  "promo__text",
2922
- l.reverse ? "promo__text--reverse" : "promo__text--default"
2923
+ s.reverse ? "promo__text--reverse" : "promo__text--default"
2923
2924
  ])
2924
2925
  }, [
2925
- l.label ? (s(), L(X, {
2926
+ s.label ? (l(), L(X, {
2926
2927
  key: 0,
2927
- text: l.label,
2928
- "label-dark": l.variant === "dark"
2929
- }, null, 8, ["text", "label-dark"])) : _("", !0),
2928
+ text: s.label,
2929
+ "label-dark": s.variant === "dark"
2930
+ }, null, 8, ["text", "label-dark"])) : h("", !0),
2930
2931
  t("div", {
2931
2932
  class: p([
2932
2933
  "promo__title",
2933
- l.variant === "dark" ? "promo__title--dark" : ""
2934
+ s.variant === "dark" ? "promo__title--dark" : ""
2934
2935
  ])
2935
2936
  }, [
2936
- c(l.$slots, "promo-text")
2937
+ c(s.$slots, "promo-text")
2937
2938
  ], 2),
2938
- l.linkType === "link" ? (s(), L(P, {
2939
+ s.linkType === "link" ? (l(), L(P, {
2939
2940
  key: 1,
2940
- "link-type": l.variant === "dark" ? "regular_dark" : (l.variant === "light", "regular_light"),
2941
+ "link-type": s.variant === "dark" ? "regular_dark" : (s.variant === "light", "regular_light"),
2941
2942
  arrow: ""
2942
2943
  }, {
2943
2944
  default: y(() => [
2944
- c(l.$slots, "promo-link")
2945
+ c(s.$slots, "promo-link")
2945
2946
  ]),
2946
2947
  _: 3
2947
- }, 8, ["link-type"])) : _("", !0),
2948
- l.linkType === "button" ? (s(), L(P, {
2948
+ }, 8, ["link-type"])) : h("", !0),
2949
+ s.linkType === "button" ? (l(), L(P, {
2949
2950
  key: 2,
2950
- "link-type": l.variant === "dark" ? "secondary_dark" : (l.variant === "light", "secondary")
2951
+ "link-type": s.variant === "dark" ? "secondary_dark" : (s.variant === "light", "secondary")
2951
2952
  }, {
2952
2953
  default: y(() => [
2953
- c(l.$slots, "promo-link")
2954
+ c(s.$slots, "promo-link")
2954
2955
  ]),
2955
2956
  _: 3
2956
- }, 8, ["link-type"])) : _("", !0)
2957
+ }, 8, ["link-type"])) : h("", !0)
2957
2958
  ], 2)
2958
2959
  ])
2959
2960
  ], 2));
2960
2961
  }
2961
2962
  }), Ur = /* @__PURE__ */ v(Kr, [["__scopeId", "data-v-00c0bad3"]]), Jr = {
2962
2963
  install: (e) => {
2963
- e.component("AtomButton", se), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", F), e.component("AtomLabel", X), e.component("AtomLink", P), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Or), e.component("AtomSlider", Bt), e.component("AtomTextarea", Tt), e.component("AtomTextField", jt), e.component("AtomVideo", ee), e.component("MoleculeAddress", la), e.component("MoleculeBulletList", ca), e.component("MoleculeCard", ma), e.component("MoleculeColumnCard", ge), e.component("MoleculeEventCard", qa), e.component("MoleculeFlashcard", be), e.component("MoleculeModal", ve), e.component("MoleculeTextCard", Ua), e.component("BlockAccordion", ao), e.component("BlockFacts", So), e.component("BlockFeatures", Vo), e.component("BlockFlashcards", zo), e.component("BlockFormScript", Go), e.component("BlockHeadline", Qo), e.component("BlockHero", ds), e.component("BlockImage", ms), e.component("BlockImageGallery", ys), e.component("BlockLogoWall", As), e.component("BlockMicroStories", Ps), e.component("BlockPolicy", Hs), e.component("BlockProductHero", Ws), e.component("BlockPromo", Zs), e.component("BlockQuote", cl), e.component("BlockRichText", ml), e.component("BlockRichTextColumns", $l), e.component("BlockTimeline", Tl), e.component("BlockCardDisplay", co), e.component("BlockColumnGrid", fo), e.component("BlockVimeo", zl), e.component("BlockPalletJack", Ur), e.component("BlockFrontPageHero", ei), e.component("Organism404", ii), e.component("OrganismFilter", _i), e.component("OrganismFooter", Ni), e.component("OrganismHeader", gr), e.component("OrganismLanguageSwitcher", Sr), e.component("OrganismPagination", Ar), e.component("OrganismSearch", Vr);
2964
+ e.component("AtomButton", le), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", F), e.component("AtomLabel", X), e.component("AtomLink", P), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Or), e.component("AtomSlider", Bt), e.component("AtomTextarea", Tt), e.component("AtomTextField", jt), e.component("AtomVideo", te), e.component("MoleculeAddress", la), e.component("MoleculeBulletList", ca), e.component("MoleculeCard", ma), e.component("MoleculeColumnCard", ge), e.component("MoleculeEventCard", qa), e.component("MoleculeFlashcard", be), e.component("MoleculeModal", ve), e.component("MoleculeTextCard", Ua), e.component("BlockAccordion", ao), e.component("BlockFacts", So), e.component("BlockFeatures", Vo), e.component("BlockFlashcards", zo), e.component("BlockFormScript", Go), e.component("BlockHeadline", Qo), e.component("BlockHero", ds), e.component("BlockImage", ms), e.component("BlockImageGallery", ys), e.component("BlockLogoWall", As), e.component("BlockMicroStories", Ps), e.component("BlockPolicy", Hs), e.component("BlockProductHero", Ws), e.component("BlockPromo", Zs), e.component("BlockQuote", cl), e.component("BlockRichText", ml), e.component("BlockRichTextColumns", $l), e.component("BlockTimeline", Tl), e.component("BlockCardDisplay", co), e.component("BlockColumnGrid", fo), e.component("BlockVimeo", zl), e.component("BlockPalletJack", Ur), e.component("BlockFrontPageHero", ei), e.component("Organism404", ii), e.component("OrganismFilter", _i), e.component("OrganismFooter", Ni), e.component("OrganismHeader", gr), e.component("OrganismLanguageSwitcher", Sr), e.component("OrganismPagination", Ar), e.component("OrganismSearch", Vr);
2964
2965
  }
2965
2966
  };
2966
2967
  export {
2967
- se as AtomButton,
2968
+ le as AtomButton,
2968
2969
  fe as AtomCheckbox,
2969
2970
  Ne as AtomChip,
2970
2971
  Ye as AtomDropdown,
@@ -2977,7 +2978,7 @@ export {
2977
2978
  Bt as AtomSlider,
2978
2979
  jt as AtomTextField,
2979
2980
  Tt as AtomTextarea,
2980
- ee as AtomVideo,
2981
+ te as AtomVideo,
2981
2982
  ao as BlockAccordion,
2982
2983
  co as BlockCardDisplay,
2983
2984
  fo as BlockColumnGrid,