@mirweb/mir-web-components 1.9.0 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- import { defineComponent as g, computed as q, openBlock as l, createElementBlock as i, normalizeClass as h, 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 V, renderList as P, 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 T, createCommentVNode as _, 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 Te } from "vue";
1
+ import { defineComponent as g, computed as q, openBlock as s, createElementBlock as i, normalizeClass as h, toDisplayString as c, createElementVNode as t, renderSlot as d, pushScopeId as H, popScopeId as R, createTextVNode as J, ref as C, resolveDirective as _e, withDirectives as K, Fragment as V, renderList as P, vShow as Z, normalizeProps as O, guardReactiveProps as z, toRefs as Se, mergeProps as F, createVNode as S, Transition as Ie, withCtx as y, withModifiers as he, createBlock as T, createCommentVNode as _, watchEffect as pe, withKeys as Ce, useSlots as Te, normalizeStyle as ee, isRef as x, unref as I, onMounted as me, watch as Q, onUnmounted as qe } from "vue";
2
2
  const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
3
3
  __name: "button",
4
4
  props: {
@@ -14,18 +14,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
14
14
  close: "close",
15
15
  next: "next",
16
16
  previous: "previous"
17
- }, r = e, s = q(() => a[r.variant]);
18
- return (o, u) => (l(), i("button", {
19
- class: h(["button", "button--" + s.value]),
17
+ }, r = e, l = q(() => a[r.variant]);
18
+ return (o, u) => (s(), i("button", {
19
+ class: h(["button", "button--" + l.value]),
20
20
  "aria-label": o.ariaLabel
21
- }, d(s.value === "close" ? "" : o.buttonText), 11, Ae));
21
+ }, c(l.value === "close" ? "" : o.buttonText), 11, Ae));
22
22
  }
23
23
  }), v = (e, a) => {
24
24
  const r = e.__vccOpts || e;
25
- for (const [s, o] of a)
26
- r[s] = o;
25
+ for (const [l, o] of a)
26
+ r[l] = o;
27
27
  return r;
28
- }, le = /* @__PURE__ */ v(Le, [["__scopeId", "data-v-f61b579c"]]), De = (e) => (H("data-v-d8d77aaf"), e = e(), R(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ De(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
28
+ }, se = /* @__PURE__ */ v(Le, [["__scopeId", "data-v-f61b579c"]]), De = (e) => (H("data-v-d8d77aaf"), e = e(), R(), e), Ve = ["id", "name", "value", "disabled", "required", "checked"], Pe = ["for"], Fe = /* @__PURE__ */ De(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Me = /* @__PURE__ */ g({
29
29
  __name: "checkbox",
30
30
  props: {
31
31
  name: { default: "checkbox" },
@@ -37,11 +37,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
37
37
  },
38
38
  emits: ["input"],
39
39
  setup(e, { emit: a }) {
40
- const r = a, s = (o) => {
40
+ const r = a, l = (o) => {
41
41
  const u = o.target;
42
42
  r("input", u.checked);
43
43
  };
44
- return (o, u) => (l(), i("div", {
44
+ return (o, u) => (s(), i("div", {
45
45
  class: h(["checkbox__wrapper", o.disabled ? "disabled" : ""])
46
46
  }, [
47
47
  t("input", {
@@ -53,14 +53,14 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
53
53
  required: o.required,
54
54
  checked: o.checked,
55
55
  class: "checkbox__checkbox",
56
- onChange: s
56
+ onChange: l
57
57
  }, null, 40, Ve),
58
58
  t("label", {
59
59
  for: o.id,
60
60
  class: h(["checkbox__label", o.required ? "required" : ""])
61
61
  }, [
62
62
  Fe,
63
- c(o.$slots, "default", {}, void 0, !0)
63
+ d(o.$slots, "default", {}, void 0, !0)
64
64
  ], 10, Pe)
65
65
  ], 2));
66
66
  }
@@ -76,20 +76,20 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
76
76
  emits: ["remove-chip"],
77
77
  setup(e) {
78
78
  const a = e, r = q(() => `Chip: ${a.text}`);
79
- return (s, o) => (l(), i("div", {
79
+ return (l, o) => (s(), i("div", {
80
80
  class: "chip__wrapper",
81
- onClick: o[0] || (o[0] = (u) => s.$emit("remove-chip"))
81
+ onClick: o[0] || (o[0] = (u) => l.$emit("remove-chip"))
82
82
  }, [
83
83
  t("span", {
84
84
  class: "chip",
85
85
  "aria-label": r.value
86
86
  }, [
87
- J(d(s.text) + " ", 1),
87
+ J(c(l.text) + " ", 1),
88
88
  He
89
89
  ], 8, ze)
90
90
  ]));
91
91
  }
92
- }), Ne = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-2e1e44c1"]]), Ee = ["value"], je = ["id"], Ke = { class: "listbox__dropdown" }, Ue = ["id", "aria-labelledby", "aria-disabled"], Ge = ["aria-labelledby", "aria-activedescendant"], Je = ["aria-selected", "data-value"], We = /* @__PURE__ */ g({
92
+ }), Ne = /* @__PURE__ */ v(Re, [["__scopeId", "data-v-2e1e44c1"]]), Ee = ["value"], je = ["id"], Ge = { class: "listbox__dropdown" }, Ke = ["id", "aria-labelledby", "aria-disabled"], Ue = ["aria-labelledby", "aria-activedescendant"], Je = ["aria-selected", "data-value"], We = /* @__PURE__ */ g({
93
93
  __name: "dropdown",
94
94
  props: {
95
95
  modelValue: {},
@@ -107,9 +107,9 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
107
107
  const r = {
108
108
  primary: "dropdown-dark-bg-primary",
109
109
  dark: "dropdown-dark dropdown-dark-bg-dark"
110
- }, s = e, o = q(() => r[s.variant]), u = C(null), p = C(null), n = C([]), b = C(0), f = C(""), k = C(!0), w = C(0), ae = a, re = q(() => {
111
- const m = s.options.find(
112
- (B) => B.value === s.modelValue
110
+ }, l = e, o = q(() => r[l.variant]), u = C(null), p = C(null), n = C([]), b = C(0), f = C(""), k = C(!0), w = C(0), ae = a, re = q(() => {
111
+ const m = l.options.find(
112
+ (B) => B.value === l.modelValue
113
113
  );
114
114
  return m && m.label;
115
115
  });
@@ -119,20 +119,20 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
119
119
  function de(m) {
120
120
  var A;
121
121
  const B = m.target;
122
- B.getAttribute("role") === "option" && (W(B), se(), (A = u.value) == null || A.focus());
122
+ B.getAttribute("role") === "option" && (W(B), le(), (A = u.value) == null || A.focus());
123
123
  }
124
- function G(m) {
124
+ function U(m) {
125
125
  var A;
126
126
  const B = m.key;
127
127
  switch (B) {
128
128
  case "ArrowUp":
129
129
  case "ArrowDown": {
130
130
  m.preventDefault();
131
- const L = s.options.findIndex(
132
- (Y) => Y.value === s.modelValue
131
+ const D = l.options.findIndex(
132
+ (Y) => Y.value === l.modelValue
133
133
  );
134
- let N = L ? n.value[L] : n.value[0];
135
- B === "ArrowUp" ? L - 1 >= 0 && (N = n.value[L - 1]) : L + 1 <= s.options.length && (N = n.value[L + 1]), N && W(N);
134
+ let N = D ? n.value[D] : n.value[0];
135
+ B === "ArrowUp" ? D - 1 >= 0 && (N = n.value[D - 1]) : D + 1 <= l.options.length && (N = n.value[D + 1]), N && W(N);
136
136
  break;
137
137
  }
138
138
  case "Home":
@@ -145,21 +145,21 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
145
145
  break;
146
146
  case "Enter":
147
147
  case "Escape":
148
- m.preventDefault(), se(), (A = u.value) == null || A.focus();
148
+ m.preventDefault(), le(), (A = u.value) == null || A.focus();
149
149
  break;
150
150
  default: {
151
- const L = j(B);
152
- L && W(L);
151
+ const D = j(B);
152
+ D && W(D);
153
153
  break;
154
154
  }
155
155
  }
156
156
  }
157
157
  function oe(m) {
158
- if (!s.disabled)
158
+ if (!l.disabled)
159
159
  switch (m.key) {
160
160
  case "ArrowUp":
161
161
  case "ArrowDown":
162
- m.preventDefault(), ue(), G(m);
162
+ m.preventDefault(), ue(), U(m);
163
163
  break;
164
164
  }
165
165
  }
@@ -173,18 +173,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
173
173
  }
174
174
  function j(m) {
175
175
  let B = "";
176
- (f.value === "" || B !== m) && (w.value = s.options.findIndex(
177
- (L) => L.value === s.modelValue
176
+ (f.value === "" || B !== m) && (w.value = l.options.findIndex(
177
+ (D) => D.value === l.modelValue
178
178
  )), f.value = B === m ? m : f.value + m, B = m, $();
179
- let A = K(
179
+ let A = G(
180
180
  w.value + 1,
181
- s.options.length
181
+ l.options.length
182
182
  );
183
- return !A && f.value.length === 1 && (A = K(0, w.value)), w.value = (w.value + 1) % s.options.length, A;
183
+ return !A && f.value.length === 1 && (A = G(0, w.value)), w.value = (w.value + 1) % l.options.length, A;
184
184
  }
185
- function K(m, B) {
185
+ function G(m, B) {
186
186
  for (let A = m; A < B; A++)
187
- if (s.options[A].label && s.options[A].label.toUpperCase().indexOf(f.value.toUpperCase()) === 0)
187
+ if (l.options[A].label && l.options[A].label.toUpperCase().indexOf(f.value.toUpperCase()) === 0)
188
188
  return n.value[A];
189
189
  return null;
190
190
  }
@@ -192,11 +192,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
192
192
  W(n.value[0]);
193
193
  }
194
194
  function W(m) {
195
- var A, L;
195
+ var A, D;
196
196
  const B = m.getAttribute("data-value");
197
- if (s.modelValue) {
198
- const N = s.options.findIndex(
199
- (Be) => Be.value === s.modelValue
197
+ if (l.modelValue) {
198
+ const N = l.options.findIndex(
199
+ (Be) => Be.value === l.modelValue
200
200
  ), Y = n.value[N];
201
201
  ce(Y);
202
202
  }
@@ -205,15 +205,15 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
205
205
  B || ""
206
206
  ), ne(B || ""), p.value && p.value.scrollHeight > p.value.clientHeight) {
207
207
  const N = p.value.clientHeight + p.value.scrollTop, Y = m.offsetTop + m.offsetHeight;
208
- Y > N ? p.value.scrollTop = Y - ((L = p.value) == null ? void 0 : L.clientHeight) : m.offsetTop < p.value.scrollTop && (p.value.scrollTop = m.offsetTop);
208
+ Y > N ? p.value.scrollTop = Y - ((D = p.value) == null ? void 0 : D.clientHeight) : m.offsetTop < p.value.scrollTop && (p.value.scrollTop = m.offsetTop);
209
209
  }
210
210
  }
211
211
  function $e() {
212
212
  var B;
213
- const m = (B = n.value) == null ? void 0 : B[s.options.length - 1];
213
+ const m = (B = n.value) == null ? void 0 : B[l.options.length - 1];
214
214
  W(m);
215
215
  }
216
- function se() {
216
+ function le() {
217
217
  var m;
218
218
  k.value = !0, (m = u.value) == null || m.removeAttribute("aria-expanded");
219
219
  }
@@ -222,11 +222,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
222
222
  k.value = !1, (m = u.value) == null || m.setAttribute("aria-expanded", "true"), (B = p.value) == null || B.focus();
223
223
  }
224
224
  function we() {
225
- s.disabled || (k.value ? ue() : se());
225
+ l.disabled || (k.value ? ue() : le());
226
226
  }
227
227
  return (m, B) => {
228
228
  const A = _e("click-outside");
229
- return l(), i("div", {
229
+ return s(), i("div", {
230
230
  ref: "listbox",
231
231
  class: "listbox__wrapper",
232
232
  value: m.modelValue
@@ -238,8 +238,8 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
238
238
  "is-disabled": m.disabled,
239
239
  "is-required": m.required
240
240
  }, "listbox__label"])
241
- }, d(m.label), 11, je),
242
- U((l(), i("div", Ke, [
241
+ }, c(m.label), 11, je),
242
+ K((s(), i("div", Ge, [
243
243
  t("button", {
244
244
  id: `${m.name}-button-label`,
245
245
  ref_key: "listboxButton",
@@ -251,8 +251,8 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
251
251
  class: h(["listbox__button", o.value]),
252
252
  onClick: we,
253
253
  onKeydown: oe
254
- }, d(m.modelValue ? re.value : m.placeholder), 43, Ue),
255
- U(t("ul", {
254
+ }, c(m.modelValue ? re.value : m.placeholder), 43, Ke),
255
+ K(t("ul", {
256
256
  ref_key: "listboxNode",
257
257
  ref: p,
258
258
  "aria-labelledby": `${m.name}-label`,
@@ -260,24 +260,24 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
260
260
  tabindex: "0",
261
261
  role: "listbox",
262
262
  class: "listbox__list",
263
- onKeydown: G,
263
+ onKeydown: U,
264
264
  onClick: de
265
265
  }, [
266
- (l(!0), i(V, null, P(m.options, (L, N) => (l(), i("li", {
266
+ (s(!0), i(V, null, P(m.options, (D, N) => (s(), i("li", {
267
267
  key: `${m.name}-option-${N}`,
268
268
  ref_for: !0,
269
269
  ref_key: "listboxOptions",
270
270
  ref: n,
271
- "aria-selected": L.value === m.modelValue,
272
- "data-value": L.value,
271
+ "aria-selected": D.value === m.modelValue,
272
+ "data-value": D.value,
273
273
  class: "listbox__option",
274
274
  role: "option"
275
- }, d(L.label), 9, Je))), 128))
276
- ], 40, Ge), [
275
+ }, c(D.label), 9, Je))), 128))
276
+ ], 40, Ue), [
277
277
  [Z, !k.value]
278
278
  ])
279
279
  ])), [
280
- [A, se]
280
+ [A, le]
281
281
  ])
282
282
  ], 8, Ee);
283
283
  };
@@ -294,11 +294,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
294
294
  loading: { default: "auto" }
295
295
  },
296
296
  setup(e) {
297
- return (a, r) => (l(), i("div", Qe, [
298
- c(a.$slots, "default", O(z(a.$attrs)))
297
+ return (a, r) => (s(), i("div", Qe, [
298
+ d(a.$slots, "default", O(z(a.$attrs)))
299
299
  ]));
300
300
  }
301
- }), F = /* @__PURE__ */ v(Ze, [["__scopeId", "data-v-4f7fe350"]]), Xe = { class: "label__wrapper" }, xe = ["aria-label", "label-dark"], et = /* @__PURE__ */ g({
301
+ }), M = /* @__PURE__ */ v(Ze, [["__scopeId", "data-v-4f7fe350"]]), Xe = { class: "label__wrapper" }, xe = ["aria-label", "label-dark"], et = /* @__PURE__ */ g({
302
302
  __name: "label",
303
303
  props: {
304
304
  text: {},
@@ -306,15 +306,15 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
306
306
  },
307
307
  setup(e) {
308
308
  const a = e, r = q(() => `Label: ${a.text}`);
309
- return (s, o) => (l(), i("div", Xe, [
309
+ return (l, o) => (s(), i("div", Xe, [
310
310
  t("span", {
311
311
  "aria-label": r.value,
312
- "label-dark": s.labelDark,
313
- class: h(s.labelDark ? "label--dark" : "label--light")
314
- }, d(s.text), 11, xe)
312
+ "label-dark": l.labelDark,
313
+ class: h(l.labelDark ? "label--dark" : "label--light")
314
+ }, c(l.text), 11, xe)
315
315
  ]));
316
316
  }
317
- }), X = /* @__PURE__ */ v(et, [["__scopeId", "data-v-7d9d3a8a"]]), tt = { class: "link__wrapper" }, D = /* @__PURE__ */ g({
317
+ }), X = /* @__PURE__ */ v(et, [["__scopeId", "data-v-7d9d3a8a"]]), tt = { class: "link__wrapper" }, L = /* @__PURE__ */ g({
318
318
  __name: "link",
319
319
  props: {
320
320
  linkType: { default: "regular" },
@@ -336,12 +336,12 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
336
336
  hover: "underline-hover",
337
337
  true: "add-underline",
338
338
  false: "remove-underline"
339
- }, s = e, o = q(() => a[s.linkType]), u = q(() => r[s.underline]), p = q(() => {
340
- const { ...n } = Se(s);
339
+ }, l = e, o = q(() => a[l.linkType]), u = q(() => r[l.underline]), p = q(() => {
340
+ const { ...n } = Se(l);
341
341
  return n;
342
342
  });
343
- return (n, b) => (l(), i("div", tt, [
344
- t("div", M(p.value, {
343
+ return (n, b) => (s(), i("div", tt, [
344
+ t("div", F(p.value, {
345
345
  class: ["mir-link", [
346
346
  o.value,
347
347
  n.disabled ? "disabled" : "",
@@ -349,11 +349,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
349
349
  n.arrow ? "link-arrow" : ""
350
350
  ]]
351
351
  }), [
352
- c(n.$slots, "default")
352
+ d(n.$slots, "default")
353
353
  ], 16)
354
354
  ]));
355
355
  }
356
- }), at = (e) => (H("data-v-60c6ff7e"), e = e(), R(), e), ot = ["id", "name", "value", "checked", "disabled", "required"], st = ["for"], lt = /* @__PURE__ */ at(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), it = /* @__PURE__ */ g({
356
+ }), at = (e) => (H("data-v-60c6ff7e"), e = e(), R(), e), ot = ["id", "name", "value", "checked", "disabled", "required"], lt = ["for"], st = /* @__PURE__ */ at(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), it = /* @__PURE__ */ g({
357
357
  __name: "radio-button",
358
358
  props: {
359
359
  name: { default: "radio" },
@@ -365,11 +365,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
365
365
  },
366
366
  emits: ["input"],
367
367
  setup(e, { emit: a }) {
368
- const r = a, s = (o) => {
368
+ const r = a, l = (o) => {
369
369
  const u = o.target;
370
370
  r("input", u.checked);
371
371
  };
372
- return (o, u) => (l(), i("div", {
372
+ return (o, u) => (s(), i("div", {
373
373
  class: h(["radio__wrapper", o.disabled ? "disabled" : ""])
374
374
  }, [
375
375
  t("input", {
@@ -381,15 +381,15 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
381
381
  disabled: o.disabled,
382
382
  required: o.required,
383
383
  class: "radio__radio",
384
- onChange: s
384
+ onChange: l
385
385
  }, null, 40, ot),
386
386
  t("label", {
387
387
  for: o.id,
388
388
  class: h(["radio__label", o.required ? "required" : ""])
389
389
  }, [
390
- lt,
391
- c(o.$slots, "default", {}, void 0, !0)
392
- ], 10, st)
390
+ st,
391
+ d(o.$slots, "default", {}, void 0, !0)
392
+ ], 10, lt)
393
393
  ], 2));
394
394
  }
395
395
  }), rt = /* @__PURE__ */ v(it, [["__scopeId", "data-v-60c6ff7e"]]), nt = { class: "select__wrapper" }, dt = ["for"], ct = ["id", "disabled", "name", "value"], ut = ["value"], _t = /* @__PURE__ */ g({
@@ -405,25 +405,25 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
405
405
  },
406
406
  emits: ["update:modelValue"],
407
407
  setup(e) {
408
- return (a, r) => (l(), i("div", nt, [
408
+ return (a, r) => (s(), i("div", nt, [
409
409
  t("label", {
410
410
  for: a.id,
411
411
  class: h([a.required ? "required" : "", a.disabled ? "disabled" : ""])
412
- }, d(a.label), 11, dt),
412
+ }, c(a.label), 11, dt),
413
413
  t("select", {
414
414
  id: a.id,
415
415
  class: h(a.disabled ? "disabled" : ""),
416
416
  disabled: a.disabled,
417
417
  name: a.name,
418
418
  value: a.modelValue,
419
- onChange: r[0] || (r[0] = (s) => {
420
- a.$emit("update:modelValue", s.target.value), s.target.blur();
419
+ onChange: r[0] || (r[0] = (l) => {
420
+ a.$emit("update:modelValue", l.target.value), l.target.blur();
421
421
  })
422
422
  }, [
423
- (l(!0), i(V, null, P(a.options, (s) => (l(), i("option", {
424
- key: s.value,
425
- value: s.value
426
- }, d(s.text), 9, ut))), 128))
423
+ (s(!0), i(V, null, P(a.options, (l) => (s(), i("option", {
424
+ key: l.value,
425
+ value: l.value
426
+ }, c(l.text), 9, ut))), 128))
427
427
  ], 42, ct)
428
428
  ]));
429
429
  }
@@ -435,16 +435,16 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
435
435
  },
436
436
  emits: ["update:show"],
437
437
  setup(e, { emit: a }) {
438
- const r = e, s = a, o = () => {
439
- s("update:show", !r.show);
438
+ const r = e, l = a, o = () => {
439
+ l("update:show", !r.show);
440
440
  };
441
- return (u, p) => (l(), i("div", pt, [
441
+ return (u, p) => (s(), i("div", pt, [
442
442
  S(Ie, {
443
443
  duration: 300,
444
444
  name: "nested"
445
445
  }, {
446
446
  default: y(() => [
447
- U(t("dialog", {
447
+ K(t("dialog", {
448
448
  class: h(["overlay", u.searchBar ? "overlay-search" : "overlay-default"]),
449
449
  ariaLabel: "modal",
450
450
  role: "dialog",
@@ -457,14 +457,14 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
457
457
  }, ["stop"]))
458
458
  }, [
459
459
  t("div", null, [
460
- u.searchBar ? _("", !0) : (l(), T(le, {
460
+ u.searchBar ? _("", !0) : (s(), T(se, {
461
461
  key: 0,
462
462
  "aria-label": "close",
463
463
  variant: "close",
464
464
  onClick: o
465
465
  }))
466
466
  ]),
467
- c(u.$slots, "default", {}, void 0, !0)
467
+ d(u.$slots, "default", {}, void 0, !0)
468
468
  ], 2)
469
469
  ], 2), [
470
470
  [Z, u.show]
@@ -490,25 +490,25 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
490
490
  },
491
491
  emits: ["update:modelValue"],
492
492
  setup(e, { emit: a }) {
493
- const r = e, s = a, o = C(r.modelValue), u = C(), p = C(!1), n = (f, k, w) => (f - k) / (w - k) * 100, b = (f) => {
493
+ const r = e, l = a, o = C(r.modelValue), u = C(), p = 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
- s("update:modelValue", o.value);
499
+ l("update:modelValue", o.value);
500
500
  const f = n(o.value, r.min, r.max);
501
501
  let k = (50 - f) / 100;
502
502
  b(f + k);
503
503
  }
504
- }), (f, k) => (l(), i("div", null, [
504
+ }), (f, k) => (s(), 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: h([f.variant, ""])
510
- }, d(f.label), 11, gt),
511
- f.information ? (l(), i("i", {
510
+ }, c(f.label), 11, gt),
511
+ f.information ? (s(), i("i", {
512
512
  key: 0,
513
513
  role: "button",
514
514
  class: h([f.variant, "slider__information"]),
@@ -522,7 +522,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
522
522
  t("div", yt, [
523
523
  t("span", {
524
524
  class: h([f.variant, "slider__minmax"])
525
- }, d(f.min), 3),
525
+ }, c(f.min), 3),
526
526
  t("input", {
527
527
  id: f.id,
528
528
  ref_key: "slider",
@@ -538,25 +538,25 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
538
538
  }, null, 42, kt),
539
539
  t("span", {
540
540
  class: h([f.variant, "slider__minmax"])
541
- }, d(f.max), 3)
541
+ }, c(f.max), 3)
542
542
  ]),
543
543
  t("span", {
544
544
  class: h([f.variant, "slider__value"])
545
- }, d(f.modelValue), 3)
545
+ }, c(f.modelValue), 3)
546
546
  ]),
547
- f.information ? (l(), T(ve, {
547
+ f.information ? (s(), T(ve, {
548
548
  key: 0,
549
549
  show: p.value,
550
550
  "onUpdate:show": k[3] || (k[3] = (w) => p.value = w)
551
551
  }, {
552
552
  default: y(() => [
553
- t("p", $t, d(f.information), 1)
553
+ t("p", $t, c(f.information), 1)
554
554
  ]),
555
555
  _: 1
556
556
  }, 8, ["show"])) : _("", !0)
557
557
  ]));
558
558
  }
559
- }), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { class: "textarea-wrapper" }, It = ["for"], Ct = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], qt = { class: "textarea-info" }, Tt = { key: 0 }, At = /* @__PURE__ */ g({
559
+ }), Bt = /* @__PURE__ */ v(wt, [["__scopeId", "data-v-24a83011"]]), St = { class: "textarea-wrapper" }, It = ["for"], Ct = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], Tt = { class: "textarea-info" }, qt = { key: 0 }, At = /* @__PURE__ */ g({
560
560
  __name: "textarea",
561
561
  props: {
562
562
  id: { default: "" },
@@ -570,11 +570,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
570
570
  },
571
571
  emits: ["update:modelValue"],
572
572
  setup(e) {
573
- return (a, r) => (l(), i("div", St, [
573
+ return (a, r) => (s(), i("div", St, [
574
574
  t("label", {
575
575
  for: a.id,
576
576
  class: h({ required: a.required })
577
- }, d(a.labelText) + d(a.required ? " *" : ""), 11, It),
577
+ }, c(a.labelText) + c(a.required ? " *" : ""), 11, It),
578
578
  t("div", {
579
579
  class: h(
580
580
  a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "textarea-wrapper__inner" : ""
@@ -593,18 +593,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
593
593
  class: h(
594
594
  a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit" : "border"
595
595
  ),
596
- onInput: r[0] || (r[0] = (s) => a.$emit("update:modelValue", s.target.value))
596
+ onInput: r[0] || (r[0] = (l) => a.$emit("update:modelValue", l.target.value))
597
597
  }, null, 42, Ct)
598
598
  ], 2),
599
- t("div", qt, [
599
+ t("div", Tt, [
600
600
  t("div", null, [
601
- a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (l(), i("p", Tt, " Too many characters. Please make it shorter ")) : _("", !0)
601
+ a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? (s(), i("p", qt, " Too many characters. Please make it shorter ")) : _("", !0)
602
602
  ]),
603
603
  t("p", {
604
604
  class: h(
605
605
  a.modelValue !== void 0 && a.modelValue.length === a.maxLength ? "reached-meter-limit-meter" : ""
606
606
  )
607
- }, d(a.maxLength !== void 0 && a.modelValue !== void 0 && a.maxLength - a.modelValue.length >= 0 ? a.modelValue.length : 0) + " / " + d(a.maxLength), 3)
607
+ }, c(a.maxLength !== void 0 && a.modelValue !== void 0 && a.maxLength - a.modelValue.length >= 0 ? a.modelValue.length : 0) + " / " + c(a.maxLength), 3)
608
608
  ])
609
609
  ]));
610
610
  }
@@ -644,12 +644,12 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
644
644
  tel: "tel",
645
645
  url: "url",
646
646
  search: "search"
647
- }, r = e, s = q(() => a[r.type]), o = C(!0), u = q(
647
+ }, r = e, l = q(() => a[r.type]), o = C(!0), u = q(
648
648
  () => o.value ? "showPassword" : "hidePassword"
649
649
  ), p = q(
650
650
  () => o.value ? "password" : "text"
651
651
  );
652
- return (n, b) => (l(), i("div", Dt, [
652
+ return (n, b) => (s(), i("div", Dt, [
653
653
  t("label", {
654
654
  for: n.id,
655
655
  class: h([
@@ -657,8 +657,8 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
657
657
  n.disabled ? "disabled" : "",
658
658
  n.search ? "search" : ""
659
659
  ])
660
- }, d(n.label), 11, Vt),
661
- s.value === "password" ? (l(), i("div", Pt, [
660
+ }, c(n.label), 11, Vt),
661
+ l.value === "password" ? (s(), i("div", Pt, [
662
662
  t("input", {
663
663
  id: n.id,
664
664
  ref: "passwordField",
@@ -677,11 +677,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
677
677
  "aria-expanded": !o.value,
678
678
  onClick: b[1] || (b[1] = (f) => o.value = !o.value)
679
679
  }, null, 10, Mt)
680
- ])) : (l(), i("input", {
680
+ ])) : (s(), i("input", {
681
681
  key: 1,
682
682
  id: n.id,
683
683
  ref: "textField",
684
- type: s.value,
684
+ type: l.value,
685
685
  value: n.modelValue,
686
686
  placeholder: n.placeholder,
687
687
  required: n.required,
@@ -694,12 +694,12 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
694
694
  name: n.fieldName,
695
695
  onInput: b[2] || (b[2] = (f) => n.$emit("update:modelValue", f.target.value))
696
696
  }, null, 42, Ot)),
697
- n.search ? (l(), i("button", zt)) : _("", !0),
698
- n.errorMessage ? (l(), i("strong", Ht, d(n.errorMessage), 1)) : _("", !0),
699
- n.helperText ? (l(), i("span", Rt, d(n.helperText), 1)) : _("", !0)
697
+ n.search ? (s(), i("button", zt)) : _("", !0),
698
+ n.errorMessage ? (s(), i("strong", Ht, c(n.errorMessage), 1)) : _("", !0),
699
+ n.helperText ? (s(), i("span", Rt, c(n.helperText), 1)) : _("", !0)
700
700
  ]));
701
701
  }
702
- }), Et = /* @__PURE__ */ v(Nt, [["__scopeId", "data-v-1d92973b"]]), jt = { class: "video__wrapper" }, Kt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Ut = ["src", "aria-label", "title", "width", "height"], Gt = /* @__PURE__ */ g({
702
+ }), Et = /* @__PURE__ */ v(Nt, [["__scopeId", "data-v-1d92973b"]]), jt = { class: "video__wrapper" }, Gt = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], Kt = ["src", "aria-label", "title", "width", "height"], Ut = /* @__PURE__ */ g({
703
703
  __name: "video",
704
704
  props: {
705
705
  play: { type: Boolean, default: !1 },
@@ -717,18 +717,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
717
717
  },
718
718
  setup(e, { expose: a }) {
719
719
  const r = e;
720
- let s = C(null);
720
+ let l = C(null);
721
721
  return pe(() => {
722
- s.value && (r.play ? s.value.play() : r.play || s.value.pause());
722
+ l.value && (r.play ? l.value.play() : r.play || l.value.pause());
723
723
  }), a({
724
724
  resetVideo: () => {
725
- s.value && (s.value.currentTime = 0, s.value.play());
725
+ l.value && (l.value.currentTime = 0, l.value.play());
726
726
  }
727
- }), (u, p) => (l(), i("div", jt, [
728
- u.localVideo ? (l(), i("video", {
727
+ }), (u, p) => (s(), i("div", jt, [
728
+ u.localVideo ? (s(), i("video", {
729
729
  key: 0,
730
730
  ref_key: "videoRef",
731
- ref: s,
731
+ ref: l,
732
732
  "aria-label": u.ariaLabel,
733
733
  controls: u.controls,
734
734
  poster: u.poster,
@@ -740,7 +740,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
740
740
  type: "video/mp4",
741
741
  playsinline: "",
742
742
  src: u.src
743
- }, null, 8, Kt)) : (l(), i("iframe", {
743
+ }, null, 8, Gt)) : (s(), i("iframe", {
744
744
  key: 1,
745
745
  src: u.src,
746
746
  "aria-label": u.ariaLabel,
@@ -750,10 +750,10 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
750
750
  frameborder: "0",
751
751
  allow: "autoplay; fullscreen",
752
752
  allowfullscreen: ""
753
- }, null, 8, Ut))
753
+ }, null, 8, Kt))
754
754
  ]));
755
755
  }
756
- }), te = /* @__PURE__ */ v(Gt, [["__scopeId", "data-v-c6a0feb6"]]), Jt = { class: "address__wrapper" }, Wt = { class: "address__content" }, Yt = { class: "address__flag" }, Qt = { class: "address__address" }, Zt = { class: "address__name" }, Xt = { key: 0 }, xt = { class: "address__contact" }, ea = ["href"], ta = ["href"], aa = ["href"], oa = /* @__PURE__ */ g({
756
+ }), te = /* @__PURE__ */ v(Ut, [["__scopeId", "data-v-c6a0feb6"]]), Jt = { class: "address__wrapper" }, Wt = { class: "address__content" }, Yt = { class: "address__flag" }, Qt = { class: "address__address" }, Zt = { class: "address__name" }, Xt = { key: 0 }, xt = { class: "address__contact" }, ea = ["href"], ta = ["href"], aa = ["href"], oa = /* @__PURE__ */ g({
757
757
  __name: "address",
758
758
  props: {
759
759
  name: {},
@@ -766,20 +766,20 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
766
766
  email: {}
767
767
  },
768
768
  setup(e) {
769
- return (a, r) => (l(), i("div", Jt, [
769
+ return (a, r) => (s(), i("div", Jt, [
770
770
  t("div", Wt, [
771
771
  t("div", Yt, [
772
- c(a.$slots, "address-flag", {}, void 0, !0)
772
+ d(a.$slots, "address-flag", {}, void 0, !0)
773
773
  ]),
774
774
  t("div", Qt, [
775
- t("p", Zt, d(a.name), 1),
776
- t("p", null, d(a.company), 1),
777
- t("p", null, d(a.addressLine1), 1),
778
- t("p", null, d(a.addressLine2), 1),
779
- a.addressLine3 ? (l(), i("p", Xt, d(a.addressLine3), 1)) : _("", !0)
775
+ t("p", Zt, c(a.name), 1),
776
+ t("p", null, c(a.company), 1),
777
+ t("p", null, c(a.addressLine1), 1),
778
+ t("p", null, c(a.addressLine2), 1),
779
+ a.addressLine3 ? (s(), i("p", Xt, c(a.addressLine3), 1)) : _("", !0)
780
780
  ]),
781
781
  t("div", xt, [
782
- a.website ? (l(), T(D, {
782
+ a.website ? (s(), T(L, {
783
783
  key: 0,
784
784
  underline: "false",
785
785
  "link-type": "regular"
@@ -788,32 +788,32 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
788
788
  t("a", {
789
789
  href: "https://" + a.website,
790
790
  class: "address__website"
791
- }, d(a.website), 9, ea)
791
+ }, c(a.website), 9, ea)
792
792
  ]),
793
793
  _: 1
794
794
  })) : _("", !0),
795
- (l(!0), i(V, null, P(a.phoneNumbers, (s) => (l(), T(D, {
796
- key: s,
795
+ (s(!0), i(V, null, P(a.phoneNumbers, (l) => (s(), T(L, {
796
+ key: l,
797
797
  underline: "false",
798
798
  "link-type": "regular"
799
799
  }, {
800
800
  default: y(() => [
801
801
  t("a", {
802
- href: "tel:" + s,
802
+ href: "tel:" + l,
803
803
  class: "address__phone"
804
- }, d(s), 9, ta)
804
+ }, c(l), 9, ta)
805
805
  ]),
806
806
  _: 2
807
807
  }, 1024))), 128)),
808
808
  t("a", {
809
809
  href: "mailto:" + a.email,
810
810
  class: "address__email"
811
- }, d(a.email), 9, aa)
811
+ }, c(a.email), 9, aa)
812
812
  ])
813
813
  ])
814
814
  ]));
815
815
  }
816
- }), sa = /* @__PURE__ */ v(oa, [["__scopeId", "data-v-6f5f6a44"]]), la = (e) => (H("data-v-a44fd57d"), e = e(), R(), e), ia = { class: "bullet-list__wrapper" }, ra = /* @__PURE__ */ la(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), na = /* @__PURE__ */ g({
816
+ }), la = /* @__PURE__ */ v(oa, [["__scopeId", "data-v-6f5f6a44"]]), sa = (e) => (H("data-v-a44fd57d"), e = e(), R(), e), ia = { class: "bullet-list__wrapper" }, ra = /* @__PURE__ */ sa(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), na = /* @__PURE__ */ g({
817
817
  __name: "bullet-list",
818
818
  props: {
819
819
  list: {
@@ -833,14 +833,14 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
833
833
  }
834
834
  },
835
835
  setup(e) {
836
- return (a, r) => (l(), i("div", ia, [
836
+ return (a, r) => (s(), i("div", ia, [
837
837
  t("div", {
838
838
  class: h(["bullet-list", e.variant])
839
839
  }, [
840
840
  t("ul", null, [
841
- (l(!0), i(V, null, P(e.list, (s) => (l(), i("li", { key: s }, [
841
+ (s(!0), i(V, null, P(e.list, (l) => (s(), i("li", { key: l }, [
842
842
  ra,
843
- J(" " + d(s), 1)
843
+ J(" " + c(l), 1)
844
844
  ]))), 128))
845
845
  ])
846
846
  ], 2)
@@ -868,9 +868,9 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
868
868
  },
869
869
  emits: ["clicked"],
870
870
  setup(e) {
871
- const a = qe();
871
+ const a = Te();
872
872
  let r = C(!1);
873
- const s = {
873
+ const l = {
874
874
  xsmall: {
875
875
  class: "card--xsmall",
876
876
  width: "241",
@@ -891,8 +891,8 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
891
891
  width: "596",
892
892
  height: "335"
893
893
  }
894
- }, o = e, u = q(() => s[o.size]), p = q(() => o.variant === "article" || o.variant === "product" ? `card--${o.size}-${o.variant}` : `card--${o.variant}`);
895
- return (n, b) => (l(), i("div", ca, [
894
+ }, o = e, u = q(() => l[o.size]), p = q(() => o.variant === "article" || o.variant === "product" ? `card--${o.size}-${o.variant}` : `card--${o.variant}`);
895
+ return (n, b) => (s(), i("div", ca, [
896
896
  t("div", {
897
897
  class: h(["card", [
898
898
  n.theme === "dark" ? "card--dark" : "card--light",
@@ -907,9 +907,9 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
907
907
  onFocus: b[2] || (b[2] = (f) => x(r) ? r.value = !0 : r = !0),
908
908
  onBlur: b[3] || (b[3] = (f) => x(r) ? r.value = !1 : r = !1)
909
909
  }, [
910
- n.mediaType === "image" ? (l(), T(F, { key: 0 }, {
910
+ n.mediaType === "image" ? (s(), T(M, { key: 0 }, {
911
911
  default: y(() => [
912
- c(n.$slots, "card-image", M({
912
+ d(n.$slots, "card-image", F({
913
913
  src: n.imgSrc,
914
914
  width: "596",
915
915
  height: "335",
@@ -919,7 +919,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
919
919
  }, { srcset: n.srcSet }))
920
920
  ]),
921
921
  _: 3
922
- })) : (l(), i("div", {
922
+ })) : (s(), i("div", {
923
923
  key: 1,
924
924
  class: h(["video-card__wrapper", I(r) === !0 ? "vimeoPlaying" : ""])
925
925
  }, [
@@ -937,58 +937,80 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
937
937
  muted: !0
938
938
  }, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
939
939
  ], 2)),
940
- I(a)["card-label"] ? (l(), i("div", ua, [
941
- c(n.$slots, "card-label")
940
+ I(a)["card-label"] ? (s(), i("div", ua, [
941
+ d(n.$slots, "card-label")
942
942
  ])) : _("", !0),
943
- n.variant === "product" ? (l(), i("div", {
943
+ n.variant === "product" ? (s(), i("div", {
944
944
  key: 3,
945
945
  class: h([
946
946
  "card__headline",
947
947
  n.theme === "dark" ? "regular-dark" : "regular-blue"
948
948
  ]),
949
949
  style: { "font-weight": "700" }
950
- }, d(n.headline), 3)) : (l(), i("div", {
950
+ }, c(n.headline), 3)) : (s(), i("div", {
951
951
  key: 4,
952
952
  class: h([
953
953
  "card__headline",
954
954
  n.theme === "dark" ? "regular-dark" : "regular-dark-blue"
955
955
  ])
956
- }, d(n.headline), 3)),
957
- n.variant === "product" ? (l(), i("p", _a, d(n.paragraph), 1)) : _("", !0)
956
+ }, c(n.headline), 3)),
957
+ n.variant === "product" ? (s(), i("p", _a, c(n.paragraph), 1)) : _("", !0)
958
958
  ], 38)
959
959
  ]));
960
960
  }
961
- }), pa = /* @__PURE__ */ v(ha, [["__scopeId", "data-v-364d219c"]]), ma = { class: "column-card" }, fa = { class: "column-card__content" }, va = { class: "column-card__headline" }, ga = { class: "column-card__bodytext" }, ba = /* @__PURE__ */ g({
961
+ }), pa = /* @__PURE__ */ v(ha, [["__scopeId", "data-v-364d219c"]]), ma = { class: "column-card__content" }, fa = { class: "column-card__headline" }, va = { class: "column-card__bodytext" }, ga = /* @__PURE__ */ g({
962
962
  __name: "column-card",
963
963
  props: {
964
964
  headline: {},
965
965
  bodytext: {},
966
966
  image: {},
967
- imageFit: { type: Boolean }
967
+ imageFit: { type: Boolean },
968
+ bgColor: { default: "white" },
969
+ linkText: { default: "" },
970
+ linkType: { default: "link" }
968
971
  },
969
972
  setup(e) {
970
- return (a, r) => (l(), i("div", ma, [
971
- t("div", fa, [
972
- a.image.filename ? (l(), i("div", {
973
+ const a = {
974
+ white: "",
975
+ light: "column__wrapper--light",
976
+ dark: "column__wrapper--dark mirsaic--dark"
977
+ }, r = e, l = q(
978
+ () => a[r.bgColor || "white"]
979
+ );
980
+ return (o, u) => (s(), i("div", {
981
+ class: h(["column-card", l.value])
982
+ }, [
983
+ t("div", ma, [
984
+ o.image.filename ? (s(), i("div", {
973
985
  key: 0,
974
- class: h(["column-card__image", { cover: a.imageFit, contain: !a.imageFit }])
986
+ class: h(["column-card__image", { cover: o.imageFit, contain: !o.imageFit }])
975
987
  }, [
976
- c(a.$slots, "column-card-image", O(z({
977
- src: a.image.filename,
978
- alt: a.image.alt
988
+ d(o.$slots, "column-card-image", O(z({
989
+ src: o.image.filename,
990
+ alt: o.image.alt
979
991
  })), void 0, !0)
980
992
  ], 2)) : _("", !0),
981
- t("h3", va, d(a.headline), 1),
982
- t("div", ga, [
983
- c(a.$slots, "column-card-body", {}, void 0, !0)
984
- ])
993
+ t("h3", fa, c(o.headline), 1),
994
+ t("div", va, [
995
+ d(o.$slots, "column-card-body", {}, void 0, !0)
996
+ ]),
997
+ o.linkType === "link" ? (s(), T(L, {
998
+ key: 1,
999
+ "link-type": o.bgColor === "dark" ? "regular_dark" : (o.bgColor === "light", "regular_light"),
1000
+ arrow: ""
1001
+ }, {
1002
+ default: y(() => [
1003
+ d(o.$slots, "column-link", {}, void 0, !0)
1004
+ ]),
1005
+ _: 3
1006
+ }, 8, ["link-type"])) : _("", !0)
985
1007
  ])
986
- ]));
1008
+ ], 2));
987
1009
  }
988
- }), ge = /* @__PURE__ */ v(ba, [["__scopeId", "data-v-9e2246f0"]]), ya = (e) => (H("data-v-e4a362a9"), e = e(), R(), e), ka = { class: "event__wrapper" }, $a = { class: "event__headline" }, wa = { class: "event__date-location" }, Ba = /* @__PURE__ */ ya(() => /* @__PURE__ */ t("br", null, null, -1)), Sa = {
1010
+ }), ge = /* @__PURE__ */ v(ga, [["__scopeId", "data-v-a505d05e"]]), ba = (e) => (H("data-v-e4a362a9"), e = e(), R(), e), ya = { class: "event__wrapper" }, ka = { class: "event__headline" }, $a = { class: "event__date-location" }, wa = /* @__PURE__ */ ba(() => /* @__PURE__ */ t("br", null, null, -1)), Ba = {
989
1011
  key: 0,
990
1012
  class: "event__info"
991
- }, Ia = { class: "event__exhibitor" }, Ca = /* @__PURE__ */ g({
1013
+ }, Sa = { class: "event__exhibitor" }, Ia = /* @__PURE__ */ g({
992
1014
  __name: "event-card",
993
1015
  props: {
994
1016
  eventType: {
@@ -1018,46 +1040,46 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1018
1040
  }
1019
1041
  },
1020
1042
  setup(e) {
1021
- return (a, r) => (l(), i("div", ka, [
1043
+ return (a, r) => (s(), i("div", ya, [
1022
1044
  S(X, {
1023
1045
  "label-dark": !1,
1024
1046
  text: e.eventType ? e.eventType : ""
1025
1047
  }, null, 8, ["text"]),
1026
- t("div", $a, d(e.headline), 1),
1027
- t("div", wa, [
1028
- J(d(e.dateTime) + " ", 1),
1029
- Ba,
1030
- e.info ? (l(), i("div", Sa, d(e.info), 1)) : _("", !0),
1031
- J(" " + d(e.location), 1)
1048
+ t("div", ka, c(e.headline), 1),
1049
+ t("div", $a, [
1050
+ J(c(e.dateTime) + " ", 1),
1051
+ wa,
1052
+ e.info ? (s(), i("div", Ba, c(e.info), 1)) : _("", !0),
1053
+ J(" " + c(e.location), 1)
1032
1054
  ]),
1033
- t("div", Ia, d(e.exhibitor), 1)
1055
+ t("div", Sa, c(e.exhibitor), 1)
1034
1056
  ]));
1035
1057
  }
1036
- }), qa = /* @__PURE__ */ v(Ca, [["__scopeId", "data-v-e4a362a9"]]), ie = (e) => (H("data-v-93ee37aa"), e = e(), R(), e), Ta = { class: "flashcard-side flashcard-front" }, Aa = {
1058
+ }), Ca = /* @__PURE__ */ v(Ia, [["__scopeId", "data-v-e4a362a9"]]), ie = (e) => (H("data-v-93ee37aa"), e = e(), R(), e), Ta = { class: "flashcard-side flashcard-front" }, qa = {
1037
1059
  key: 0,
1038
1060
  class: "content"
1039
- }, La = { key: 0 }, Da = {
1061
+ }, Aa = { key: 0 }, La = {
1040
1062
  key: 1,
1041
1063
  class: "flashcard-body"
1042
- }, Va = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1064
+ }, Da = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1043
1065
  class: "flip-icon",
1044
1066
  src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
1045
- }, null, -1)), Pa = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1067
+ }, null, -1)), Va = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1046
1068
  class: "flip-icon",
1047
1069
  src: "https://a.storyblok.com/f/230581/22x21/23d87eccc4/icon_reverse_blue.svg"
1048
- }, null, -1)), Fa = {
1070
+ }, null, -1)), Pa = {
1049
1071
  key: 0,
1050
1072
  class: "content"
1051
- }, Ma = { key: 0 }, Oa = {
1073
+ }, Fa = { key: 0 }, Ma = {
1052
1074
  key: 1,
1053
1075
  class: "flashcard-body"
1054
- }, za = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1076
+ }, Oa = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1055
1077
  class: "flip-icon",
1056
1078
  src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
1057
- }, null, -1)), Ha = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1079
+ }, null, -1)), za = /* @__PURE__ */ ie(() => /* @__PURE__ */ t("img", {
1058
1080
  class: "flip-icon",
1059
1081
  src: "https://a.storyblok.com/f/230581/22x22/50edea5341/icon_reverse_white.svg"
1060
- }, null, -1)), Ra = /* @__PURE__ */ g({
1082
+ }, null, -1)), Ha = /* @__PURE__ */ g({
1061
1083
  __name: "flashcard",
1062
1084
  props: {
1063
1085
  name: {},
@@ -1075,66 +1097,66 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1075
1097
  function r() {
1076
1098
  a.value = !a.value;
1077
1099
  }
1078
- return (s, o) => {
1100
+ return (l, o) => {
1079
1101
  var u, p, n, b, f, k;
1080
- return l(), i("div", {
1102
+ return s(), i("div", {
1081
1103
  class: "flashcard-container",
1082
1104
  onClick: r
1083
1105
  }, [
1084
1106
  t("div", {
1085
1107
  class: h(["flashcard", {
1086
1108
  flipped: a.value,
1087
- "flashcard--sm": s.size === "sm",
1088
- "flashcard--md": s.size === "md",
1089
- "flashcard--lg": s.size === "lg"
1109
+ "flashcard--sm": l.size === "sm",
1110
+ "flashcard--md": l.size === "md",
1111
+ "flashcard--lg": l.size === "lg"
1090
1112
  }])
1091
1113
  }, [
1092
1114
  t("div", Ta, [
1093
- s.name || ((u = s.bodytext) == null ? void 0 : u.length) > 0 ? (l(), i("div", Aa, [
1094
- s.name ? (l(), i("h3", La, d(s.name), 1)) : _("", !0),
1095
- s.bodytext ? (l(), i("div", Da, [
1096
- c(s.$slots, "flashcard-front-body", O(z({ bodytext: s.bodytext })), void 0, !0)
1115
+ l.name || ((u = l.bodytext) == null ? void 0 : u.length) > 0 ? (s(), i("div", qa, [
1116
+ l.name ? (s(), i("h3", Aa, c(l.name), 1)) : _("", !0),
1117
+ l.bodytext ? (s(), i("div", La, [
1118
+ d(l.$slots, "flashcard-front-body", O(z({ bodytext: l.bodytext })), void 0, !0)
1097
1119
  ])) : _("", !0),
1098
- Va
1099
- ])) : (l(), i("div", {
1120
+ Da
1121
+ ])) : (s(), i("div", {
1100
1122
  key: 1,
1101
1123
  class: h(["flashcard-image", {
1102
- contain: s.imageFit,
1103
- cover: !s.imageFit
1124
+ contain: l.imageFit,
1125
+ cover: !l.imageFit
1104
1126
  }])
1105
1127
  }, [
1106
- c(s.$slots, "flashcard-front-image", O(z({ src: (p = s.image) == null ? void 0 : p.filename, alt: (n = s.image) == null ? void 0 : n.alt })), void 0, !0),
1107
- Pa
1128
+ d(l.$slots, "flashcard-front-image", O(z({ src: (p = l.image) == null ? void 0 : p.filename, alt: (n = l.image) == null ? void 0 : n.alt })), void 0, !0),
1129
+ Va
1108
1130
  ], 2))
1109
1131
  ]),
1110
1132
  t("div", {
1111
1133
  class: h([
1112
1134
  "flashcard-side flashcard-back",
1113
- (b = s.imagebackside) != null && b.filename ? "flashcard-back--image" : "flashcard-back--no-image"
1135
+ (b = l.imagebackside) != null && b.filename ? "flashcard-back--image" : "flashcard-back--no-image"
1114
1136
  ])
1115
1137
  }, [
1116
- s.namebackside || s.bodytextbackside.length > 0 ? (l(), i("div", Fa, [
1117
- s.namebackside ? (l(), i("h3", Ma, d(s.namebackside), 1)) : _("", !0),
1118
- s.bodytextbackside ? (l(), i("div", Oa, [
1119
- c(s.$slots, "flashcard-back-body", O(z({ bodytextbackside: s.bodytextbackside })), void 0, !0)
1138
+ l.namebackside || l.bodytextbackside.length > 0 ? (s(), i("div", Pa, [
1139
+ l.namebackside ? (s(), i("h3", Fa, c(l.namebackside), 1)) : _("", !0),
1140
+ l.bodytextbackside ? (s(), i("div", Ma, [
1141
+ d(l.$slots, "flashcard-back-body", O(z({ bodytextbackside: l.bodytextbackside })), void 0, !0)
1120
1142
  ])) : _("", !0),
1121
- za
1122
- ])) : (l(), i("div", {
1143
+ Oa
1144
+ ])) : (s(), i("div", {
1123
1145
  key: 1,
1124
1146
  class: h(["flashcard-image", {
1125
- contain: s.imageFitBack,
1126
- cover: !s.imageFitBack
1147
+ contain: l.imageFitBack,
1148
+ cover: !l.imageFitBack
1127
1149
  }])
1128
1150
  }, [
1129
- c(s.$slots, "flashcard-back-image", O(z({ src: (f = s.imagebackside) == null ? void 0 : f.filename, alt: (k = s.imagebackside) == null ? void 0 : k.alt })), void 0, !0),
1130
- Ha
1151
+ d(l.$slots, "flashcard-back-image", O(z({ src: (f = l.imagebackside) == null ? void 0 : f.filename, alt: (k = l.imagebackside) == null ? void 0 : k.alt })), void 0, !0),
1152
+ za
1131
1153
  ], 2))
1132
1154
  ], 2)
1133
1155
  ], 2)
1134
1156
  ]);
1135
1157
  };
1136
1158
  }
1137
- }), be = /* @__PURE__ */ v(Ra, [["__scopeId", "data-v-93ee37aa"]]), Na = { class: "text__wrapper" }, Ea = { class: "text__headline" }, ja = { class: "text__paragraph" }, Ka = /* @__PURE__ */ g({
1159
+ }), be = /* @__PURE__ */ v(Ha, [["__scopeId", "data-v-93ee37aa"]]), Ra = { class: "text__wrapper" }, Na = { class: "text__headline" }, Ea = { class: "text__paragraph" }, ja = /* @__PURE__ */ g({
1138
1160
  __name: "text-card",
1139
1161
  props: {
1140
1162
  label: {
@@ -1151,24 +1173,24 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1151
1173
  }
1152
1174
  },
1153
1175
  setup(e) {
1154
- return (a, r) => (l(), i("div", Na, [
1176
+ return (a, r) => (s(), i("div", Ra, [
1155
1177
  S(X, {
1156
1178
  "label-dark": !1,
1157
1179
  text: e.label ? e.label : ""
1158
1180
  }, null, 8, ["text"]),
1159
- t("div", Ea, d(e.headline), 1),
1160
- t("div", ja, [
1161
- t("p", null, d(e.paragraph), 1)
1181
+ t("div", Na, c(e.headline), 1),
1182
+ t("div", Ea, [
1183
+ t("p", null, c(e.paragraph), 1)
1162
1184
  ])
1163
1185
  ]));
1164
1186
  }
1165
- }), Ua = /* @__PURE__ */ v(Ka, [["__scopeId", "data-v-ebdea819"]]), Ga = { class: "accordions" }, Ja = { class: "accordions__wrapper" }, Wa = { class: "accordion" }, Ya = ["onClick"], Qa = { class: "accordion__headline" }, Za = { class: "accordion__icon" }, Xa = {
1187
+ }), Ga = /* @__PURE__ */ v(ja, [["__scopeId", "data-v-ebdea819"]]), Ka = { class: "accordions" }, Ua = { class: "accordions__wrapper" }, Ja = { class: "accordion" }, Wa = ["onClick"], Ya = { class: "accordion__headline" }, Qa = { class: "accordion__icon" }, Za = {
1166
1188
  key: 0,
1167
1189
  src: "https://a.storyblok.com/f/230581/21x21/42c9c3b5ba/icon_add.svg"
1168
- }, xa = {
1190
+ }, Xa = {
1169
1191
  key: 1,
1170
1192
  src: "https://a.storyblok.com/f/230581/22x21/adfe5d1742/icon_substract.svg"
1171
- }, eo = { class: "accordion__bodytext" }, to = /* @__PURE__ */ g({
1193
+ }, xa = { class: "accordion__bodytext" }, eo = /* @__PURE__ */ g({
1172
1194
  __name: "accordion",
1173
1195
  props: {
1174
1196
  accordions: {}
@@ -1177,34 +1199,34 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1177
1199
  const a = C([]), r = (o) => {
1178
1200
  const u = a.value.indexOf(o);
1179
1201
  u > -1 ? a.value.splice(u, 1) : a.value.push(o);
1180
- }, s = (o) => a.value.includes(o);
1181
- return (o, u) => (l(), i("section", Ga, [
1182
- t("div", Ja, [
1183
- (l(!0), i(V, null, P(o.accordions, (p) => (l(), i("div", {
1202
+ }, l = (o) => a.value.includes(o);
1203
+ return (o, u) => (s(), i("section", Ka, [
1204
+ t("div", Ua, [
1205
+ (s(!0), i(V, null, P(o.accordions, (p) => (s(), i("div", {
1184
1206
  key: p._uid
1185
1207
  }, [
1186
- t("div", Wa, [
1208
+ t("div", Ja, [
1187
1209
  t("div", {
1188
1210
  class: "accordion__header",
1189
1211
  onClick: (n) => r(p._uid)
1190
1212
  }, [
1191
- t("h3", Qa, d(p.headline), 1),
1192
- t("span", Za, [
1193
- s(p._uid) ? (l(), i("img", xa)) : (l(), i("img", Xa))
1213
+ t("h3", Ya, c(p.headline), 1),
1214
+ t("span", Qa, [
1215
+ l(p._uid) ? (s(), i("img", Xa)) : (s(), i("img", Za))
1194
1216
  ])
1195
- ], 8, Ya),
1217
+ ], 8, Wa),
1196
1218
  t("div", {
1197
1219
  class: h(["accordion__content", { "accordion__content--reverse": p.imageFirst }]),
1198
1220
  style: ee({
1199
- display: s(p._uid) ? "flex" : "none"
1221
+ display: l(p._uid) ? "flex" : "none"
1200
1222
  })
1201
1223
  }, [
1202
- t("div", eo, [
1203
- c(o.$slots, "accordion-body", M({ ref_for: !0 }, { body: p.bodytext }), void 0, !0)
1224
+ t("div", xa, [
1225
+ d(o.$slots, "accordion-body", F({ ref_for: !0 }, { body: p.bodytext }), void 0, !0)
1204
1226
  ]),
1205
- S(F, null, {
1227
+ S(M, null, {
1206
1228
  default: y(() => [
1207
- p.image ? c(o.$slots, "accordion-image", M({
1229
+ p.image ? d(o.$slots, "accordion-image", F({
1208
1230
  key: 0,
1209
1231
  ref_for: !0
1210
1232
  }, {
@@ -1221,10 +1243,10 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1221
1243
  ])
1222
1244
  ]));
1223
1245
  }
1224
- }), ao = /* @__PURE__ */ v(to, [["__scopeId", "data-v-0e6f6da8"]]), oo = { class: "card-display__wrapper" }, so = {
1246
+ }), to = /* @__PURE__ */ v(eo, [["__scopeId", "data-v-0e6f6da8"]]), ao = { class: "card-display__wrapper" }, oo = {
1225
1247
  key: 0,
1226
1248
  class: "card__content"
1227
- }, lo = { key: 0 }, io = { key: 1 }, ro = { class: "card__cards" }, no = /* @__PURE__ */ g({
1249
+ }, lo = { key: 0 }, so = { key: 1 }, io = { class: "card__cards" }, ro = /* @__PURE__ */ g({
1228
1250
  __name: "card-display",
1229
1251
  props: {
1230
1252
  headline: {
@@ -1241,80 +1263,100 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1241
1263
  }
1242
1264
  },
1243
1265
  setup(e) {
1244
- return (a, r) => (l(), i("div", {
1266
+ return (a, r) => (s(), i("div", {
1245
1267
  class: h([
1246
1268
  "card-display",
1247
1269
  e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
1248
1270
  ])
1249
1271
  }, [
1250
- t("div", oo, [
1251
- e.headline || e.paragraph ? (l(), i("div", so, [
1252
- e.headline ? (l(), i("h2", lo, d(e.headline), 1)) : _("", !0),
1253
- e.paragraph ? (l(), i("p", io, d(e.paragraph), 1)) : _("", !0)
1272
+ t("div", ao, [
1273
+ e.headline || e.paragraph ? (s(), i("div", oo, [
1274
+ e.headline ? (s(), i("h2", lo, c(e.headline), 1)) : _("", !0),
1275
+ e.paragraph ? (s(), i("p", so, c(e.paragraph), 1)) : _("", !0)
1254
1276
  ])) : _("", !0),
1255
- t("div", ro, [
1256
- c(a.$slots, "card-display-cards", {}, void 0, !0)
1277
+ t("div", io, [
1278
+ d(a.$slots, "card-display-cards", {}, void 0, !0)
1257
1279
  ])
1258
1280
  ])
1259
1281
  ], 2));
1260
1282
  }
1261
- }), co = /* @__PURE__ */ v(no, [["__scopeId", "data-v-e5d1b11a"]]), uo = { class: "column-grid__top-section" }, _o = {
1283
+ }), no = /* @__PURE__ */ v(ro, [["__scopeId", "data-v-e5d1b11a"]]), co = { class: "column-grid__top-section" }, uo = {
1262
1284
  key: 0,
1263
1285
  class: "column-grid__headline"
1264
- }, ho = {
1286
+ }, _o = {
1265
1287
  key: 1,
1266
1288
  class: "column-grid__bodytext"
1267
- }, po = { class: "column-grid__teaser-list" }, mo = /* @__PURE__ */ g({
1289
+ }, ho = { class: "column-grid__teaser-list" }, po = /* @__PURE__ */ g({
1268
1290
  __name: "column-grid",
1269
1291
  props: {
1270
1292
  headline: { default: "" },
1271
1293
  bgColor: {},
1272
1294
  bodytext: { default: "" },
1295
+ linkText: { default: "" },
1296
+ linkType: { default: "link" },
1273
1297
  columns: {}
1274
1298
  },
1275
1299
  setup(e) {
1276
- return (a, r) => (l(), i("div", {
1300
+ return (a, r) => (s(), i("div", {
1277
1301
  class: h([
1278
1302
  "column-grid",
1279
1303
  a.bgColor === "dark" ? "column-grid--dark" : a.bgColor === "light" ? "column-grid--light" : "column-grid--white"
1280
1304
  ])
1281
1305
  }, [
1282
- t("div", uo, [
1283
- a.headline ? (l(), i("h2", _o, d(a.headline), 1)) : _("", !0),
1284
- a.bodytext ? (l(), i("div", ho, [
1285
- c(a.$slots, "column-grid-body", {}, void 0, !0)
1306
+ t("div", co, [
1307
+ a.headline ? (s(), i("h2", uo, c(a.headline), 1)) : _("", !0),
1308
+ a.bodytext ? (s(), i("div", _o, [
1309
+ d(a.$slots, "column-grid-body", {}, void 0, !0),
1310
+ a.linkType === "link" ? (s(), T(L, {
1311
+ key: 0,
1312
+ "link-type": a.bgColor === "dark" ? "regular_dark" : (a.bgColor === "light", "regular_light"),
1313
+ arrow: ""
1314
+ }, {
1315
+ default: y(() => [
1316
+ d(a.$slots, "column-grid-body-link", {}, void 0, !0)
1317
+ ]),
1318
+ _: 3
1319
+ }, 8, ["link-type"])) : _("", !0)
1286
1320
  ])) : _("", !0)
1287
1321
  ]),
1288
- t("div", po, [
1289
- (l(!0), i(V, null, P(a.columns, (s) => (l(), T(ge, {
1290
- key: s._uid,
1291
- headline: s.headline,
1292
- bodytext: s.bodytext,
1293
- image: s.image,
1294
- "image-fit": s.imageFit
1322
+ t("div", ho, [
1323
+ (s(!0), i(V, null, P(a.columns, (l) => (s(), T(ge, {
1324
+ key: l._uid,
1325
+ headline: l.headline,
1326
+ bodytext: l.bodytext,
1327
+ link: l.link,
1328
+ "link-text": l.linkText,
1329
+ image: l.image,
1330
+ "image-fit": l.imageFit
1295
1331
  }, {
1296
1332
  "column-card-body": y(() => [
1297
- c(a.$slots, "column-card-body", M({ ref_for: !0 }, { body: s.bodytext }), void 0, !0)
1333
+ d(a.$slots, "column-card-body", F({ ref_for: !0 }, { body: l.bodytext }), void 0, !0)
1334
+ ]),
1335
+ "column-link": y(() => [
1336
+ d(a.$slots, "column-link", F({ ref_for: !0 }, {
1337
+ link: l.link,
1338
+ linkText: l.linkText
1339
+ }), void 0, !0)
1298
1340
  ]),
1299
1341
  "column-card-image": y(() => [
1300
- s.image ? c(a.$slots, "column-card-image", M({
1342
+ l.image ? d(a.$slots, "column-card-image", F({
1301
1343
  key: 0,
1302
1344
  ref_for: !0
1303
1345
  }, {
1304
- src: s.image.filename,
1305
- alt: s.image.alt,
1306
- style: { "object-fit": s.imageFit ? "cover" : "contain" }
1346
+ src: l.image.filename,
1347
+ alt: l.image.alt,
1348
+ style: { "object-fit": l.imageFit ? "cover" : "contain" }
1307
1349
  }), void 0, !0) : _("", !0)
1308
1350
  ]),
1309
1351
  _: 2
1310
- }, 1032, ["headline", "bodytext", "image", "image-fit"]))), 128))
1352
+ }, 1032, ["headline", "bodytext", "link", "link-text", "image", "image-fit"]))), 128))
1311
1353
  ])
1312
1354
  ], 2));
1313
1355
  }
1314
- }), fo = /* @__PURE__ */ v(mo, [["__scopeId", "data-v-ef81db4d"]]), vo = { class: "facts__wrapper" }, go = { class: "facts__content" }, bo = { class: "facts__headline" }, yo = { class: "facts" }, ko = { class: "fact__value" }, $o = { class: "fact__metric" }, wo = {
1356
+ }), mo = /* @__PURE__ */ v(po, [["__scopeId", "data-v-1a54852d"]]), fo = { class: "facts__wrapper" }, vo = { class: "facts__content" }, go = { class: "facts__headline" }, bo = { class: "facts" }, yo = { class: "fact__value" }, ko = { class: "fact__metric" }, $o = {
1315
1357
  key: 0,
1316
1358
  class: "facts__link"
1317
- }, Bo = /* @__PURE__ */ g({
1359
+ }, wo = /* @__PURE__ */ g({
1318
1360
  __name: "facts",
1319
1361
  props: {
1320
1362
  headline: { default: "" },
@@ -1338,29 +1380,29 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1338
1380
  }) }
1339
1381
  },
1340
1382
  setup(e) {
1341
- return (a, r) => (l(), i("div", vo, [
1342
- t("div", go, [
1343
- t("h2", bo, d(a.headline), 1),
1344
- t("div", yo, [
1345
- (l(!0), i(V, null, P(a.facts, (s) => (l(), i("div", {
1346
- key: s.value + s.metric,
1383
+ return (a, r) => (s(), i("div", fo, [
1384
+ t("div", vo, [
1385
+ t("h2", go, c(a.headline), 1),
1386
+ t("div", bo, [
1387
+ (s(!0), i(V, null, P(a.facts, (l) => (s(), i("div", {
1388
+ key: l.value + l.metric,
1347
1389
  class: "fact"
1348
1390
  }, [
1349
- t("div", ko, [
1350
- t("span", null, d(s.value), 1)
1391
+ t("div", yo, [
1392
+ t("span", null, c(l.value), 1)
1351
1393
  ]),
1352
- t("div", $o, [
1353
- t("span", null, d(s.metric), 1)
1394
+ t("div", ko, [
1395
+ t("span", null, c(l.metric), 1)
1354
1396
  ])
1355
1397
  ]))), 128))
1356
1398
  ]),
1357
- a.link ? (l(), i("div", wo, [
1358
- S(D, {
1399
+ a.link ? (s(), i("div", $o, [
1400
+ S(L, {
1359
1401
  "link-type": "regular_light",
1360
1402
  arrow: ""
1361
1403
  }, {
1362
1404
  default: y(() => [
1363
- c(a.$slots, "facts-link", {}, void 0, !0)
1405
+ d(a.$slots, "facts-link", {}, void 0, !0)
1364
1406
  ]),
1365
1407
  _: 3
1366
1408
  })
@@ -1368,13 +1410,13 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1368
1410
  ])
1369
1411
  ]));
1370
1412
  }
1371
- }), So = /* @__PURE__ */ v(Bo, [["__scopeId", "data-v-d2b231d4"]]), Io = { class: "features__wrapper" }, Co = { class: "features__content" }, qo = {
1413
+ }), Bo = /* @__PURE__ */ v(wo, [["__scopeId", "data-v-d2b231d4"]]), So = { class: "features__wrapper" }, Io = { class: "features__content" }, Co = {
1372
1414
  key: 0,
1373
1415
  class: "features__headline"
1374
1416
  }, To = {
1375
1417
  key: 1,
1376
1418
  class: "features__body"
1377
- }, Ao = { class: "element__headline" }, Lo = { class: "element__body" }, Do = /* @__PURE__ */ g({
1419
+ }, qo = { class: "element__headline" }, Ao = { class: "element__body" }, Lo = /* @__PURE__ */ g({
1378
1420
  __name: "features",
1379
1421
  props: {
1380
1422
  headline: { default: "" },
@@ -1382,46 +1424,46 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1382
1424
  elements: { default: () => [] }
1383
1425
  },
1384
1426
  setup(e) {
1385
- return (a, r) => (l(), i("div", Io, [
1386
- t("div", Co, [
1387
- a.headline ? (l(), i("div", qo, [
1388
- t("h2", null, d(a.headline), 1)
1427
+ return (a, r) => (s(), i("div", So, [
1428
+ t("div", Io, [
1429
+ a.headline ? (s(), i("div", Co, [
1430
+ t("h2", null, c(a.headline), 1)
1389
1431
  ])) : _("", !0),
1390
- a.body ? (l(), i("div", To, [
1391
- c(a.$slots, "features-body", {}, void 0, !0)
1432
+ a.body ? (s(), i("div", To, [
1433
+ d(a.$slots, "features-body", {}, void 0, !0)
1392
1434
  ])) : _("", !0),
1393
1435
  t("div", {
1394
1436
  class: h(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
1395
1437
  }, [
1396
- (l(!0), i(V, null, P(a.elements, (s) => (l(), i("div", {
1397
- key: s.headline,
1438
+ (s(!0), i(V, null, P(a.elements, (l) => (s(), i("div", {
1439
+ key: l.headline,
1398
1440
  class: "features__element"
1399
1441
  }, [
1400
- S(F, { class: "element__icon" }, {
1442
+ S(M, { class: "element__icon" }, {
1401
1443
  default: y(() => [
1402
- c(a.$slots, "features-icon", M({ ref_for: !0 }, {
1403
- src: s.icon.src,
1444
+ d(a.$slots, "features-icon", F({ ref_for: !0 }, {
1445
+ src: l.icon.src,
1404
1446
  height: 30,
1405
1447
  width: 30,
1406
- alt: s.icon.alt
1448
+ alt: l.icon.alt
1407
1449
  }), void 0, !0)
1408
1450
  ]),
1409
1451
  _: 2
1410
1452
  }, 1024),
1411
- t("p", Ao, d(s.headline), 1),
1412
- t("p", Lo, d(s.body), 1)
1453
+ t("p", qo, c(l.headline), 1),
1454
+ t("p", Ao, c(l.body), 1)
1413
1455
  ]))), 128))
1414
1456
  ], 2)
1415
1457
  ])
1416
1458
  ]));
1417
1459
  }
1418
- }), Vo = /* @__PURE__ */ v(Do, [["__scopeId", "data-v-57a22df7"]]), Po = { class: "flashcard-wrapper" }, Fo = {
1460
+ }), Do = /* @__PURE__ */ v(Lo, [["__scopeId", "data-v-57a22df7"]]), Vo = { class: "flashcard-wrapper" }, Po = {
1419
1461
  key: 0,
1420
1462
  class: "flashcard-wrapper__headline"
1421
- }, Mo = {
1463
+ }, Fo = {
1422
1464
  key: 1,
1423
1465
  class: "flashcard-wrapper__bodytext"
1424
- }, Oo = /* @__PURE__ */ g({
1466
+ }, Mo = /* @__PURE__ */ g({
1425
1467
  __name: "flashcards",
1426
1468
  props: {
1427
1469
  headline: {},
@@ -1430,34 +1472,34 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1430
1472
  flashcards: {}
1431
1473
  },
1432
1474
  setup(e) {
1433
- const a = e, r = q(() => a.body.trim().length > 0), s = q(() => {
1475
+ const a = e, r = q(() => a.body.trim().length > 0), l = q(() => {
1434
1476
  var u;
1435
1477
  const o = (u = a.flashcards) == null ? void 0 : u.length;
1436
1478
  return o === 4 || o === 5 ? "sm" : o === 6 || o === 3 ? "md" : o === 2 ? "lg" : "sm";
1437
1479
  });
1438
- return (o, u) => (l(), i("div", {
1480
+ return (o, u) => (s(), i("div", {
1439
1481
  class: h(["flashcards", o.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
1440
1482
  }, [
1441
- t("div", Po, [
1483
+ t("div", Vo, [
1442
1484
  t("div", {
1443
1485
  class: h([
1444
1486
  { "no-bodytext": !r.value },
1445
1487
  "flashcard-wrapper__top-section"
1446
1488
  ])
1447
1489
  }, [
1448
- o.headline ? (l(), i("h2", Fo, d(o.headline), 1)) : _("", !0),
1449
- o.body ? (l(), i("div", Mo, [
1450
- c(o.$slots, "flashcard-wrapper-body", {}, void 0, !0)
1490
+ o.headline ? (s(), i("h2", Po, c(o.headline), 1)) : _("", !0),
1491
+ o.body ? (s(), i("div", Fo, [
1492
+ d(o.$slots, "flashcard-wrapper-body", {}, void 0, !0)
1451
1493
  ])) : _("", !0)
1452
1494
  ], 2),
1453
1495
  t("div", {
1454
1496
  class: h(["flashcard-wrapper__teaser-list", {
1455
- sm: s.value === "sm",
1456
- md: s.value === "md",
1457
- lg: s.value === "lg"
1497
+ sm: l.value === "sm",
1498
+ md: l.value === "md",
1499
+ lg: l.value === "lg"
1458
1500
  }])
1459
1501
  }, [
1460
- (l(!0), i(V, null, P(o.flashcards, (p) => (l(), T(I(be), {
1502
+ (s(!0), i(V, null, P(o.flashcards, (p) => (s(), T(I(be), {
1461
1503
  key: p._uid,
1462
1504
  name: p.name,
1463
1505
  bodytext: p.bodytext,
@@ -1465,21 +1507,21 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1465
1507
  namebackside: p.namebackside ? p.namebackside : "",
1466
1508
  bodytextbackside: p.bodytextbackside,
1467
1509
  imagebackside: p.imagebackside ? p.imagebackside : { filename: "", alt: "" },
1468
- size: s.value,
1510
+ size: l.value,
1469
1511
  "image-fit": p.imageFit,
1470
1512
  "image-fit-back": p.imageFitBack
1471
1513
  }, {
1472
1514
  "flashcard-front-body": y(({ bodytext: n }) => [
1473
- c(o.$slots, "flashcard-front-body", M({ ref_for: !0 }, { bodytext: n }), void 0, !0)
1515
+ d(o.$slots, "flashcard-front-body", F({ ref_for: !0 }, { bodytext: n }), void 0, !0)
1474
1516
  ]),
1475
1517
  "flashcard-front-image": y(({ src: n, alt: b }) => [
1476
- c(o.$slots, "flashcard-front-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1518
+ d(o.$slots, "flashcard-front-image", F({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1477
1519
  ]),
1478
1520
  "flashcard-back-body": y(({ bodytextbackside: n }) => [
1479
- c(o.$slots, "flashcard-back-body", M({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
1521
+ d(o.$slots, "flashcard-back-body", F({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
1480
1522
  ]),
1481
1523
  "flashcard-back-image": y(({ src: n, alt: b }) => [
1482
- c(o.$slots, "flashcard-back-image", M({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1524
+ d(o.$slots, "flashcard-back-image", F({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1483
1525
  ]),
1484
1526
  _: 2
1485
1527
  }, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
@@ -1487,7 +1529,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1487
1529
  ])
1488
1530
  ], 2));
1489
1531
  }
1490
- }), zo = /* @__PURE__ */ v(Oo, [["__scopeId", "data-v-de3c8751"]]), Ho = { class: "form__content" }, Ro = { class: "form__information" }, No = { class: "form__headline" }, Eo = { class: "form__body" }, jo = { class: "form__script" }, Ko = /* @__PURE__ */ g({
1532
+ }), Oo = /* @__PURE__ */ v(Mo, [["__scopeId", "data-v-de3c8751"]]), zo = { class: "form__content" }, Ho = { class: "form__information" }, Ro = { class: "form__headline" }, No = { class: "form__body" }, Eo = { class: "form__script" }, jo = /* @__PURE__ */ g({
1491
1533
  __name: "form-script",
1492
1534
  props: {
1493
1535
  headline: { default: "" },
@@ -1500,34 +1542,34 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1500
1542
  dark: "form__wrapper--dark",
1501
1543
  light: "form__wrapper--light",
1502
1544
  default: "form__wrapper--default"
1503
- }, r = e, s = q(() => a[r.variant]);
1504
- return (o, u) => (l(), i("div", {
1505
- class: h(["form__wrapper", s.value])
1545
+ }, r = e, l = q(() => a[r.variant]);
1546
+ return (o, u) => (s(), i("div", {
1547
+ class: h(["form__wrapper", l.value])
1506
1548
  }, [
1507
- t("div", Ho, [
1508
- t("div", Ro, [
1509
- t("h2", No, d(o.headline), 1),
1510
- t("div", Eo, [
1511
- c(o.$slots, "form-body", {}, void 0, !0)
1549
+ t("div", zo, [
1550
+ t("div", Ho, [
1551
+ t("h2", Ro, c(o.headline), 1),
1552
+ t("div", No, [
1553
+ d(o.$slots, "form-body", {}, void 0, !0)
1512
1554
  ]),
1513
- o.linkType === "link" ? (l(), T(D, {
1555
+ o.linkType === "link" ? (s(), T(L, {
1514
1556
  key: 0,
1515
1557
  "link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
1516
1558
  arrow: ""
1517
1559
  }, {
1518
1560
  default: y(() => [
1519
- c(o.$slots, "form-link", {}, void 0, !0)
1561
+ d(o.$slots, "form-link", {}, void 0, !0)
1520
1562
  ]),
1521
1563
  _: 3
1522
1564
  }, 8, ["link-type"])) : _("", !0)
1523
1565
  ]),
1524
- t("div", jo, [
1525
- c(o.$slots, "form-script", {}, void 0, !0)
1566
+ t("div", Eo, [
1567
+ d(o.$slots, "form-script", {}, void 0, !0)
1526
1568
  ])
1527
1569
  ])
1528
1570
  ], 2));
1529
1571
  }
1530
- }), Uo = /* @__PURE__ */ v(Ko, [["__scopeId", "data-v-b8b02bae"]]), Go = { class: "headline__wrapper" }, Jo = { class: "headline__h1" }, Wo = /* @__PURE__ */ g({
1572
+ }), Go = /* @__PURE__ */ v(jo, [["__scopeId", "data-v-b8b02bae"]]), Ko = { class: "headline__wrapper" }, Uo = { class: "headline__h1" }, Jo = /* @__PURE__ */ g({
1531
1573
  __name: "headline",
1532
1574
  props: {
1533
1575
  headline: {
@@ -1544,7 +1586,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1544
1586
  }
1545
1587
  },
1546
1588
  setup(e) {
1547
- return (a, r) => (l(), i("div", Go, [
1589
+ return (a, r) => (s(), i("div", Ko, [
1548
1590
  t("div", {
1549
1591
  class: h({
1550
1592
  "headline__content--article-and-submenu": e.article && e.subMenu,
@@ -1553,11 +1595,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1553
1595
  "headline__content--default": !e.article && !e.subMenu
1554
1596
  })
1555
1597
  }, [
1556
- t("h1", Jo, d(e.headline), 1)
1598
+ t("h1", Uo, c(e.headline), 1)
1557
1599
  ], 2)
1558
1600
  ]));
1559
1601
  }
1560
- }), Yo = /* @__PURE__ */ v(Wo, [["__scopeId", "data-v-3ef1567e"]]), Qo = (e) => (H("data-v-22f9be13"), e = e(), R(), e), Zo = { class: "hero__wrapper" }, Xo = { class: "hero__content" }, xo = { class: "hero__top" }, es = { class: "hero__elements" }, ts = { class: "hero__headline" }, as = { class: "hero__link" }, os = { class: "hero__video" }, ss = /* @__PURE__ */ Qo(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), ls = { class: "hero__video__video" }, is = { class: "hero__image" }, rs = /* @__PURE__ */ g({
1602
+ }), Wo = /* @__PURE__ */ v(Jo, [["__scopeId", "data-v-3ef1567e"]]), Yo = (e) => (H("data-v-22f9be13"), e = e(), R(), e), Qo = { class: "hero__wrapper" }, Zo = { class: "hero__content" }, Xo = { class: "hero__top" }, xo = { class: "hero__elements" }, el = { class: "hero__headline" }, tl = { class: "hero__link" }, al = { class: "hero__video" }, ol = /* @__PURE__ */ Yo(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), ll = { class: "hero__video__video" }, sl = { class: "hero__image" }, il = /* @__PURE__ */ g({
1561
1603
  __name: "hero",
1562
1604
  props: {
1563
1605
  headline: {
@@ -1566,39 +1608,39 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1566
1608
  }
1567
1609
  },
1568
1610
  setup(e) {
1569
- return (a, r) => (l(), i("div", Zo, [
1570
- t("div", Xo, [
1571
- t("div", xo, [
1572
- t("div", es, [
1573
- t("div", ts, [
1574
- t("h1", null, d(e.headline), 1)
1611
+ return (a, r) => (s(), i("div", Qo, [
1612
+ t("div", Zo, [
1613
+ t("div", Xo, [
1614
+ t("div", xo, [
1615
+ t("div", el, [
1616
+ t("h1", null, c(e.headline), 1)
1575
1617
  ]),
1576
- t("div", as, [
1577
- S(D, {
1618
+ t("div", tl, [
1619
+ S(L, {
1578
1620
  "link-type": "regular_light",
1579
1621
  arrow: ""
1580
1622
  }, {
1581
1623
  default: y(() => [
1582
- c(a.$slots, "hero-link", {}, void 0, !0)
1624
+ d(a.$slots, "hero-link", {}, void 0, !0)
1583
1625
  ]),
1584
1626
  _: 3
1585
1627
  })
1586
1628
  ])
1587
1629
  ])
1588
1630
  ]),
1589
- t("div", os, [
1590
- ss,
1591
- t("div", ls, [
1592
- c(a.$slots, "hero-video", {}, void 0, !0)
1631
+ t("div", al, [
1632
+ ol,
1633
+ t("div", ll, [
1634
+ d(a.$slots, "hero-video", {}, void 0, !0)
1593
1635
  ]),
1594
- t("div", is, [
1595
- c(a.$slots, "hero-image", {}, void 0, !0)
1636
+ t("div", sl, [
1637
+ d(a.$slots, "hero-image", {}, void 0, !0)
1596
1638
  ])
1597
1639
  ])
1598
1640
  ])
1599
1641
  ]));
1600
1642
  }
1601
- }), ns = /* @__PURE__ */ v(rs, [["__scopeId", "data-v-22f9be13"]]), ds = { class: "image__wrapper" }, cs = { class: "image__content" }, us = { class: "image__image" }, _s = { class: "image__caption" }, hs = /* @__PURE__ */ g({
1643
+ }), rl = /* @__PURE__ */ v(il, [["__scopeId", "data-v-22f9be13"]]), nl = { class: "image__wrapper" }, dl = { class: "image__content" }, cl = { class: "image__image" }, ul = { class: "image__caption" }, _l = /* @__PURE__ */ g({
1602
1644
  inheritAttrs: !1,
1603
1645
  __name: "image",
1604
1646
  props: {
@@ -1622,12 +1664,12 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1622
1664
  }
1623
1665
  },
1624
1666
  setup(e) {
1625
- return (a, r) => (l(), i("div", ds, [
1626
- t("div", cs, [
1627
- t("div", us, [
1628
- S(F, null, {
1667
+ return (a, r) => (s(), i("div", nl, [
1668
+ t("div", dl, [
1669
+ t("div", cl, [
1670
+ S(M, null, {
1629
1671
  default: y(() => [
1630
- c(a.$slots, "image", O(z({
1672
+ d(a.$slots, "image", O(z({
1631
1673
  width: 984,
1632
1674
  height: e.fullHeight ? "100%" : 554,
1633
1675
  src: e.src,
@@ -1638,17 +1680,17 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1638
1680
  _: 3
1639
1681
  })
1640
1682
  ]),
1641
- t("p", _s, d(e.caption), 1)
1683
+ t("p", ul, c(e.caption), 1)
1642
1684
  ])
1643
1685
  ]));
1644
1686
  }
1645
- }), ps = /* @__PURE__ */ v(hs, [["__scopeId", "data-v-c583d657"]]), ms = { class: "gallery__large" }, fs = {
1687
+ }), hl = /* @__PURE__ */ v(_l, [["__scopeId", "data-v-c583d657"]]), pl = { class: "gallery__large" }, ml = {
1646
1688
  key: 0,
1647
1689
  class: "image image--large"
1648
- }, vs = {
1690
+ }, fl = {
1649
1691
  key: 1,
1650
1692
  class: "video"
1651
- }, gs = /* @__PURE__ */ g({
1693
+ }, vl = /* @__PURE__ */ g({
1652
1694
  __name: "image-gallery",
1653
1695
  props: {
1654
1696
  mediaLarge: {},
@@ -1666,9 +1708,9 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1666
1708
  white: "",
1667
1709
  light: "gallery__wrapper--light",
1668
1710
  dark: "gallery__wrapper--dark mirsaic--dark"
1669
- }, r = e, s = q(() => a[r.bgColor]);
1670
- return (o, u) => (l(), i("div", {
1671
- class: h(["gallery__wrapper", s.value])
1711
+ }, r = e, l = q(() => a[r.bgColor]);
1712
+ return (o, u) => (s(), i("div", {
1713
+ class: h(["gallery__wrapper", l.value])
1672
1714
  }, [
1673
1715
  t("div", {
1674
1716
  class: h([
@@ -1676,11 +1718,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1676
1718
  o.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
1677
1719
  ])
1678
1720
  }, [
1679
- t("div", ms, [
1680
- o.mediaLarge && o.mediaType === "image" ? (l(), i("div", fs, [
1681
- S(F, null, {
1721
+ t("div", pl, [
1722
+ o.mediaLarge && o.mediaType === "image" ? (s(), i("div", ml, [
1723
+ S(M, null, {
1682
1724
  default: y(() => [
1683
- c(o.$slots, "image-large", O(z({
1725
+ d(o.$slots, "image-large", O(z({
1684
1726
  width: 617,
1685
1727
  height: 530,
1686
1728
  src: o.mediaLarge.src,
@@ -1690,7 +1732,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1690
1732
  _: 3
1691
1733
  })
1692
1734
  ])) : _("", !0),
1693
- o.mediaLarge && o.mediaType === "video" ? (l(), i("div", vs, [
1735
+ o.mediaLarge && o.mediaType === "video" ? (s(), i("div", fl, [
1694
1736
  S(te, {
1695
1737
  src: o.mediaLarge.src,
1696
1738
  "local-video": "",
@@ -1712,13 +1754,13 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1712
1754
  o.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
1713
1755
  ])
1714
1756
  }, [
1715
- (l(!0), i(V, null, P(o.mediaSmall, (p) => (l(), i("div", {
1757
+ (s(!0), i(V, null, P(o.mediaSmall, (p) => (s(), i("div", {
1716
1758
  key: p.src + p.alt,
1717
1759
  class: "image image--small"
1718
1760
  }, [
1719
- S(F, null, {
1761
+ S(M, null, {
1720
1762
  default: y(() => [
1721
- c(o.$slots, "image-small", M({ ref_for: !0 }, {
1763
+ d(o.$slots, "image-small", F({ ref_for: !0 }, {
1722
1764
  width: 328,
1723
1765
  height: 246,
1724
1766
  src: p.src,
@@ -1728,18 +1770,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1728
1770
  _: 2
1729
1771
  }, 1024)
1730
1772
  ]))), 128)),
1731
- o.mediaSmall.length < 2 ? (l(), i("div", {
1773
+ o.mediaSmall.length < 2 ? (s(), i("div", {
1732
1774
  key: 0,
1733
1775
  class: h(["body", o.bgColor === "dark" ? "body--dark" : ""])
1734
1776
  }, [
1735
- t("p", null, d(o.body), 1),
1736
- o.linkType === "link" ? (l(), T(D, {
1777
+ t("p", null, c(o.body), 1),
1778
+ o.linkType === "link" ? (s(), T(L, {
1737
1779
  key: 0,
1738
1780
  "link-type": o.bgColor === "dark" ? "regular_dark" : (o.bgColor === "light", "regular_light"),
1739
1781
  arrow: ""
1740
1782
  }, {
1741
1783
  default: y(() => [
1742
- c(o.$slots, "gallery-link")
1784
+ d(o.$slots, "gallery-link")
1743
1785
  ]),
1744
1786
  _: 3
1745
1787
  }, 8, ["link-type"])) : _("", !0)
@@ -1748,10 +1790,10 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1748
1790
  ], 2)
1749
1791
  ], 2));
1750
1792
  }
1751
- }), bs = /* @__PURE__ */ v(gs, [["__scopeId", "data-v-ae1f41d4"]]), ys = { class: "logo-wall__wrapper" }, ks = { class: "logo-wall__content" }, $s = {
1793
+ }), gl = /* @__PURE__ */ v(vl, [["__scopeId", "data-v-ae1f41d4"]]), bl = { class: "logo-wall__wrapper" }, yl = { class: "logo-wall__content" }, kl = {
1752
1794
  key: 0,
1753
1795
  class: "logo-wall__text"
1754
- }, ws = { key: 0 }, Bs = { key: 1 }, Ss = { class: "logo-wall__logos" }, Is = { class: "logo-wall__link" }, Cs = /* @__PURE__ */ g({
1796
+ }, $l = { key: 0 }, wl = { key: 1 }, Bl = { class: "logo-wall__logos" }, Sl = { class: "logo-wall__link" }, Il = /* @__PURE__ */ g({
1755
1797
  __name: "logo-wall",
1756
1798
  props: {
1757
1799
  headline: {
@@ -1769,37 +1811,37 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1769
1811
  }
1770
1812
  },
1771
1813
  setup(e) {
1772
- return (a, r) => (l(), i("div", ys, [
1773
- t("div", ks, [
1774
- e.headline || e.body ? (l(), i("div", $s, [
1775
- e.headline ? (l(), i("h2", ws, d(e.headline), 1)) : _("", !0),
1776
- e.body ? (l(), i("p", Bs, d(e.body), 1)) : _("", !0)
1814
+ return (a, r) => (s(), i("div", bl, [
1815
+ t("div", yl, [
1816
+ e.headline || e.body ? (s(), i("div", kl, [
1817
+ e.headline ? (s(), i("h2", $l, c(e.headline), 1)) : _("", !0),
1818
+ e.body ? (s(), i("p", wl, c(e.body), 1)) : _("", !0)
1777
1819
  ])) : _("", !0),
1778
- t("div", Ss, [
1779
- (l(!0), i(V, null, P(e.logos, (s) => (l(), i("div", {
1780
- key: s.src + s.alt,
1820
+ t("div", Bl, [
1821
+ (s(!0), i(V, null, P(e.logos, (l) => (s(), i("div", {
1822
+ key: l.src + l.alt,
1781
1823
  class: "logo-wall__logo"
1782
1824
  }, [
1783
- S(F, null, {
1825
+ S(M, null, {
1784
1826
  default: y(() => [
1785
- c(a.$slots, "logo-wall-logo", M({ ref_for: !0 }, {
1827
+ d(a.$slots, "logo-wall-logo", F({ ref_for: !0 }, {
1786
1828
  width: 130,
1787
1829
  height: 130,
1788
- src: s.src,
1789
- alt: s.alt
1830
+ src: l.src,
1831
+ alt: l.alt
1790
1832
  }), void 0, !0)
1791
1833
  ]),
1792
1834
  _: 2
1793
1835
  }, 1024)
1794
1836
  ]))), 128))
1795
1837
  ]),
1796
- t("div", Is, [
1797
- S(D, {
1838
+ t("div", Sl, [
1839
+ S(L, {
1798
1840
  "link-type": "regular_light",
1799
1841
  arrow: !0
1800
1842
  }, {
1801
1843
  default: y(() => [
1802
- c(a.$slots, "logo-wall-link", {}, void 0, !0)
1844
+ d(a.$slots, "logo-wall-link", {}, void 0, !0)
1803
1845
  ]),
1804
1846
  _: 3
1805
1847
  })
@@ -1807,13 +1849,13 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1807
1849
  ])
1808
1850
  ]));
1809
1851
  }
1810
- }), qs = /* @__PURE__ */ v(Cs, [["__scopeId", "data-v-fd489289"]]), Ts = { class: "micro-stories__top" }, As = {
1852
+ }), Cl = /* @__PURE__ */ v(Il, [["__scopeId", "data-v-fd489289"]]), Tl = { class: "micro-stories__top" }, ql = {
1811
1853
  key: 0,
1812
1854
  class: "micro-stories__headline"
1813
- }, Ls = {
1855
+ }, Al = {
1814
1856
  key: 1,
1815
1857
  class: "micro-stories__body"
1816
- }, Ds = { class: "micro-stories__splide" }, Vs = /* @__PURE__ */ g({
1858
+ }, Ll = { class: "micro-stories__splide" }, Dl = /* @__PURE__ */ g({
1817
1859
  __name: "micro-stories",
1818
1860
  props: {
1819
1861
  bgColor: { default: "blue" },
@@ -1825,39 +1867,39 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1825
1867
  white: "micro-stories__wrapper--white",
1826
1868
  blue: "micro-stories__wrapper--blue",
1827
1869
  dark: "micro-stories__wrapper--dark"
1828
- }, r = q(() => a[s.bgColor]), s = e;
1829
- return (o, u) => (l(), i("div", {
1870
+ }, r = q(() => a[l.bgColor]), l = e;
1871
+ return (o, u) => (s(), i("div", {
1830
1872
  class: h(["micro-stories__wrapper", r.value])
1831
1873
  }, [
1832
- t("div", Ts, [
1833
- o.headline ? (l(), i("div", As, [
1834
- t("h2", null, d(o.headline), 1)
1874
+ t("div", Tl, [
1875
+ o.headline ? (s(), i("div", ql, [
1876
+ t("h2", null, c(o.headline), 1)
1835
1877
  ])) : _("", !0),
1836
- o.body ? (l(), i("div", Ls, [
1837
- c(o.$slots, "micro-stories-body")
1878
+ o.body ? (s(), i("div", Al, [
1879
+ d(o.$slots, "micro-stories-body")
1838
1880
  ])) : _("", !0)
1839
1881
  ]),
1840
- t("div", Ds, [
1841
- c(o.$slots, "micro-stories-slides")
1882
+ t("div", Ll, [
1883
+ d(o.$slots, "micro-stories-slides")
1842
1884
  ]),
1843
- c(o.$slots, "micro-stories-controls")
1885
+ d(o.$slots, "micro-stories-controls")
1844
1886
  ], 2));
1845
1887
  }
1846
- }), Ps = {}, Fs = { class: "policy__wrapper" }, Ms = { class: "policy__content" };
1847
- function Os(e, a) {
1848
- return l(), i("div", Fs, [
1849
- t("div", Ms, [
1850
- c(e.$slots, "default", {}, void 0, !0)
1888
+ }), Vl = {}, Pl = { class: "policy__wrapper" }, Fl = { class: "policy__content" };
1889
+ function Ml(e, a) {
1890
+ return s(), i("div", Pl, [
1891
+ t("div", Fl, [
1892
+ d(e.$slots, "default", {}, void 0, !0)
1851
1893
  ])
1852
1894
  ]);
1853
1895
  }
1854
- const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a"]]), Hs = { class: "product-hero__wrapper" }, Rs = { class: "product-hero__content" }, Ns = { class: "product-hero__headline" }, Es = { class: "product-hero__video" }, js = { class: "product-hero__insignia" }, Ks = {
1896
+ const Ol = /* @__PURE__ */ v(Vl, [["render", Ml], ["__scopeId", "data-v-ea887d7a"]]), zl = { class: "product-hero__wrapper" }, Hl = { class: "product-hero__content" }, Rl = { class: "product-hero__headline" }, Nl = { class: "product-hero__video" }, El = { class: "product-hero__insignia" }, jl = {
1855
1897
  key: 0,
1856
1898
  class: "product-hero__logo"
1857
- }, Us = {
1899
+ }, Gl = {
1858
1900
  key: 1,
1859
1901
  class: "product-hero__certification"
1860
- }, Gs = /* @__PURE__ */ g({
1902
+ }, Kl = /* @__PURE__ */ g({
1861
1903
  __name: "product-hero",
1862
1904
  props: {
1863
1905
  headline: {
@@ -1892,11 +1934,11 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
1892
1934
  }
1893
1935
  },
1894
1936
  setup(e) {
1895
- return (a, r) => (l(), i("div", Hs, [
1896
- t("div", Rs, [
1897
- t("div", Ns, d(e.headline), 1),
1898
- t("div", Es, [
1899
- e.videoSrc !== "" ? (l(), T(te, {
1937
+ return (a, r) => (s(), i("div", zl, [
1938
+ t("div", Hl, [
1939
+ t("div", Rl, c(e.headline), 1),
1940
+ t("div", Nl, [
1941
+ e.videoSrc !== "" ? (s(), T(te, {
1900
1942
  key: 0,
1901
1943
  play: "",
1902
1944
  "local-video": !0,
@@ -1907,25 +1949,25 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
1907
1949
  autoplay: "",
1908
1950
  loop: "",
1909
1951
  muted: ""
1910
- }, null, 8, ["src", "aria-label", "poster"])) : (l(), T(I(F), { key: 1 }, {
1952
+ }, null, 8, ["src", "aria-label", "poster"])) : (s(), T(I(M), { key: 1 }, {
1911
1953
  default: y(() => [
1912
- c(a.$slots, "product-hero-image", {}, void 0, !0)
1954
+ d(a.$slots, "product-hero-image", {}, void 0, !0)
1913
1955
  ]),
1914
1956
  _: 3
1915
1957
  })),
1916
- t("div", js, [
1917
- e.logoSrc ? (l(), i("div", Ks, [
1918
- S(I(F), null, {
1958
+ t("div", El, [
1959
+ e.logoSrc ? (s(), i("div", jl, [
1960
+ S(I(M), null, {
1919
1961
  default: y(() => [
1920
- c(a.$slots, "product-hero-logo", {}, void 0, !0)
1962
+ d(a.$slots, "product-hero-logo", {}, void 0, !0)
1921
1963
  ]),
1922
1964
  _: 3
1923
1965
  })
1924
1966
  ])) : _("", !0),
1925
- e.isCertified ? (l(), i("div", Us, [
1926
- S(I(F), null, {
1967
+ e.isCertified ? (s(), i("div", Gl, [
1968
+ S(I(M), null, {
1927
1969
  default: y(() => [
1928
- c(a.$slots, "product-hero-certification", {}, void 0, !0)
1970
+ d(a.$slots, "product-hero-certification", {}, void 0, !0)
1929
1971
  ]),
1930
1972
  _: 3
1931
1973
  })
@@ -1935,7 +1977,7 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
1935
1977
  ])
1936
1978
  ]));
1937
1979
  }
1938
- }), Js = /* @__PURE__ */ v(Gs, [["__scopeId", "data-v-deab9c3a"]]), Ws = { class: "promo__content" }, Ys = /* @__PURE__ */ g({
1980
+ }), Ul = /* @__PURE__ */ v(Kl, [["__scopeId", "data-v-deab9c3a"]]), Jl = { class: "promo__content" }, Wl = /* @__PURE__ */ g({
1939
1981
  __name: "promo",
1940
1982
  props: {
1941
1983
  label: { default: "" },
@@ -1955,31 +1997,31 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
1955
1997
  dark: "promo__wrapper--dark",
1956
1998
  light: "promo__wrapper--light",
1957
1999
  default: "promo__wrapper--default"
1958
- }, r = e, s = q(() => a[r.variant]);
1959
- return (o, u) => (l(), i("div", {
2000
+ }, r = e, l = q(() => a[r.variant]);
2001
+ return (o, u) => (s(), i("div", {
1960
2002
  class: h([
1961
2003
  "promo__wrapper",
1962
- s.value,
2004
+ l.value,
1963
2005
  o.teaser ? "promo__wrapper--teaser" : "",
1964
2006
  o.multiply ? "promo__wrapper--multiply" : ""
1965
2007
  ])
1966
2008
  }, [
1967
- t("div", Ws, [
1968
- o.mediaType === "image" ? (l(), i("div", {
2009
+ t("div", Jl, [
2010
+ o.mediaType === "image" ? (s(), i("div", {
1969
2011
  key: 0,
1970
2012
  class: h([
1971
2013
  "promo__image",
1972
2014
  o.reverse ? "promo__image--reverse" : "promo__image--default"
1973
2015
  ])
1974
2016
  }, [
1975
- S(F, null, {
2017
+ S(M, null, {
1976
2018
  default: y(() => [
1977
- c(o.$slots, "promo-image", O(z({ src: o.src, width: 1920, alt: o.alt, height: 1080 })))
2019
+ d(o.$slots, "promo-image", O(z({ src: o.src, width: 1920, alt: o.alt, height: 1080 })))
1978
2020
  ]),
1979
2021
  _: 3
1980
2022
  })
1981
2023
  ], 2)) : _("", !0),
1982
- o.mediaType === "video" ? (l(), i("div", {
2024
+ o.mediaType === "video" ? (s(), i("div", {
1983
2025
  key: 1,
1984
2026
  class: h([
1985
2027
  "promo__video",
@@ -2004,7 +2046,7 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2004
2046
  o.reverse ? "promo__text--reverse" : "promo__text--default"
2005
2047
  ])
2006
2048
  }, [
2007
- o.label ? (l(), T(X, {
2049
+ o.label ? (s(), T(X, {
2008
2050
  key: 0,
2009
2051
  text: o.label,
2010
2052
  "label-dark": o.variant === "dark"
@@ -2015,24 +2057,24 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2015
2057
  o.variant === "dark" ? "promo__title--dark" : ""
2016
2058
  ])
2017
2059
  }, [
2018
- c(o.$slots, "promo-headline")
2060
+ d(o.$slots, "promo-headline")
2019
2061
  ], 2),
2020
- o.linkType === "link" ? (l(), T(D, {
2062
+ o.linkType === "link" ? (s(), T(L, {
2021
2063
  key: 1,
2022
2064
  "link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
2023
2065
  arrow: ""
2024
2066
  }, {
2025
2067
  default: y(() => [
2026
- c(o.$slots, "promo-link")
2068
+ d(o.$slots, "promo-link")
2027
2069
  ]),
2028
2070
  _: 3
2029
2071
  }, 8, ["link-type"])) : _("", !0),
2030
- o.linkType === "button" ? (l(), T(D, {
2072
+ o.linkType === "button" ? (s(), T(L, {
2031
2073
  key: 2,
2032
2074
  "link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
2033
2075
  }, {
2034
2076
  default: y(() => [
2035
- c(o.$slots, "promo-link")
2077
+ d(o.$slots, "promo-link")
2036
2078
  ]),
2037
2079
  _: 3
2038
2080
  }, 8, ["link-type"])) : _("", !0)
@@ -2040,10 +2082,10 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2040
2082
  ])
2041
2083
  ], 2));
2042
2084
  }
2043
- }), Qs = /* @__PURE__ */ v(Ys, [["__scopeId", "data-v-df54d965"]]), Zs = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), Xs = { class: "quote__wrapper" }, xs = { class: "quote__content" }, el = /* @__PURE__ */ Zs(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), tl = { class: "quote__quote" }, al = { class: "quote__quote-text" }, ol = { class: "quote__author" }, sl = {
2085
+ }), Yl = /* @__PURE__ */ v(Wl, [["__scopeId", "data-v-df54d965"]]), Ql = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), Zl = { class: "quote__wrapper" }, Xl = { class: "quote__content" }, xl = /* @__PURE__ */ Ql(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), es = { class: "quote__quote" }, ts = { class: "quote__quote-text" }, as = { class: "quote__author" }, os = {
2044
2086
  key: 0,
2045
2087
  class: "quote__image"
2046
- }, ll = { class: "quote__text" }, il = { class: "quote__author-name" }, rl = { class: "quote__author-title" }, nl = /* @__PURE__ */ g({
2088
+ }, ls = { class: "quote__text" }, ss = { class: "quote__author-name" }, is = { class: "quote__author-title" }, rs = /* @__PURE__ */ g({
2047
2089
  __name: "quote",
2048
2090
  props: {
2049
2091
  quote: {
@@ -2065,16 +2107,16 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2065
2107
  }
2066
2108
  },
2067
2109
  setup(e) {
2068
- return (a, r) => (l(), i("div", Xs, [
2069
- t("div", xs, [
2070
- el,
2071
- t("div", tl, [
2072
- t("p", al, d(e.quote), 1),
2073
- t("div", ol, [
2074
- e.authorImage ? (l(), i("div", sl, [
2075
- S(F, null, {
2110
+ return (a, r) => (s(), i("div", Zl, [
2111
+ t("div", Xl, [
2112
+ xl,
2113
+ t("div", es, [
2114
+ t("p", ts, c(e.quote), 1),
2115
+ t("div", as, [
2116
+ e.authorImage ? (s(), i("div", os, [
2117
+ S(M, null, {
2076
2118
  default: y(() => [
2077
- c(a.$slots, "author-image", O(z({
2119
+ d(a.$slots, "author-image", O(z({
2078
2120
  src: e.authorImage + "/m/100x100",
2079
2121
  width: 60,
2080
2122
  height: 60
@@ -2083,22 +2125,22 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2083
2125
  _: 3
2084
2126
  })
2085
2127
  ])) : _("", !0),
2086
- t("div", ll, [
2087
- t("p", il, d(e.author), 1),
2088
- t("p", rl, d(e.authorTitle), 1)
2128
+ t("div", ls, [
2129
+ t("p", ss, c(e.author), 1),
2130
+ t("p", is, c(e.authorTitle), 1)
2089
2131
  ])
2090
2132
  ])
2091
2133
  ])
2092
2134
  ])
2093
2135
  ]));
2094
2136
  }
2095
- }), dl = /* @__PURE__ */ v(nl, [["__scopeId", "data-v-e3cc8e27"]]), cl = { class: "rich-text__wrapper" }, ul = {
2137
+ }), ns = /* @__PURE__ */ v(rs, [["__scopeId", "data-v-e3cc8e27"]]), ds = { class: "rich-text__wrapper" }, cs = {
2096
2138
  key: 0,
2097
2139
  class: "rich-text__links"
2098
- }, _l = {
2140
+ }, us = {
2099
2141
  key: 0,
2100
2142
  class: "rich-text__bullet-list"
2101
- }, hl = /* @__PURE__ */ g({
2143
+ }, _s = /* @__PURE__ */ g({
2102
2144
  __name: "rich-text",
2103
2145
  props: {
2104
2146
  headline: { default: "" },
@@ -2111,25 +2153,25 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2111
2153
  label: { default: "" }
2112
2154
  },
2113
2155
  setup(e) {
2114
- return (a, r) => (l(), i("div", {
2156
+ return (a, r) => (s(), i("div", {
2115
2157
  class: h([
2116
2158
  "rich-text",
2117
2159
  a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
2118
2160
  ])
2119
2161
  }, [
2120
- t("div", cl, [
2121
- a.label ? (l(), T(X, {
2162
+ t("div", ds, [
2163
+ a.label ? (s(), T(X, {
2122
2164
  key: 0,
2123
2165
  text: a.label,
2124
2166
  "label-dark": !1
2125
2167
  }, null, 8, ["text"])) : _("", !0),
2126
- a.headline ? (l(), i("h2", {
2168
+ a.headline ? (s(), i("h2", {
2127
2169
  key: 1,
2128
2170
  class: h([
2129
2171
  "rich-text__headline",
2130
2172
  a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
2131
2173
  ])
2132
- }, d(a.headline), 3)) : _("", !0),
2174
+ }, c(a.headline), 3)) : _("", !0),
2133
2175
  t("div", {
2134
2176
  class: h([
2135
2177
  "rich-text__content",
@@ -2142,24 +2184,24 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2142
2184
  a.bulletList || a.image ? "rich-text__body--content-right" : ""
2143
2185
  ])
2144
2186
  }, [
2145
- c(a.$slots, "rich-text-content"),
2146
- a.links ? (l(), i("div", ul, [
2147
- c(a.$slots, "rich-text-links")
2187
+ d(a.$slots, "rich-text-content"),
2188
+ a.links ? (s(), i("div", cs, [
2189
+ d(a.$slots, "rich-text-links")
2148
2190
  ])) : _("", !0)
2149
2191
  ], 2),
2150
- a.bulletList ? (l(), i("div", _l, [
2151
- c(a.$slots, "rich-text-bullet-list")
2192
+ a.bulletList ? (s(), i("div", us, [
2193
+ d(a.$slots, "rich-text-bullet-list")
2152
2194
  ])) : _("", !0),
2153
- a.image ? (l(), i("div", {
2195
+ a.image ? (s(), i("div", {
2154
2196
  key: 1,
2155
2197
  class: h([
2156
2198
  "rich-text__image",
2157
2199
  a.imageClip ? "rich-text__image--clip" : ""
2158
2200
  ])
2159
2201
  }, [
2160
- S(F, null, {
2202
+ S(M, null, {
2161
2203
  default: y(() => [
2162
- c(a.$slots, "rich-text-image", O(z({ width: 865, height: 307 })))
2204
+ d(a.$slots, "rich-text-image", O(z({ width: 865, height: 307 })))
2163
2205
  ]),
2164
2206
  _: 3
2165
2207
  })
@@ -2168,27 +2210,27 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2168
2210
  ])
2169
2211
  ], 2));
2170
2212
  }
2171
- }), pl = /* @__PURE__ */ v(hl, [["__scopeId", "data-v-5441d67a"]]), ml = {}, fl = { class: "rich-text" }, vl = { class: "rich-text__wrapper" }, gl = { class: "rich-text__content rich-text__content--left-aligned" }, bl = { class: "rich-text__body" };
2172
- function yl(e, a) {
2173
- return l(), i("div", fl, [
2174
- t("div", vl, [
2175
- t("div", gl, [
2176
- t("div", bl, [
2213
+ }), hs = /* @__PURE__ */ v(_s, [["__scopeId", "data-v-5441d67a"]]), ps = {}, ms = { class: "rich-text" }, fs = { class: "rich-text__wrapper" }, vs = { class: "rich-text__content rich-text__content--left-aligned" }, gs = { class: "rich-text__body" };
2214
+ function bs(e, a) {
2215
+ return s(), i("div", ms, [
2216
+ t("div", fs, [
2217
+ t("div", vs, [
2218
+ t("div", gs, [
2177
2219
  t("div", null, [
2178
- c(e.$slots, "rich-text-content-left", {}, void 0, !0)
2220
+ d(e.$slots, "rich-text-content-left", {}, void 0, !0)
2179
2221
  ]),
2180
2222
  t("div", null, [
2181
- c(e.$slots, "rich-text-content-right", {}, void 0, !0)
2223
+ d(e.$slots, "rich-text-content-right", {}, void 0, !0)
2182
2224
  ])
2183
2225
  ])
2184
2226
  ])
2185
2227
  ])
2186
2228
  ]);
2187
2229
  }
2188
- const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2"]]), $l = (e) => (H("data-v-798e7a06"), e = e(), R(), e), wl = { class: "timeline__wrapper" }, Bl = { class: "timeline__content" }, Sl = { class: "timeline__items" }, Il = { class: "item__left" }, Cl = /* @__PURE__ */ $l(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
2230
+ const ys = /* @__PURE__ */ v(ps, [["render", bs], ["__scopeId", "data-v-776750d2"]]), ks = (e) => (H("data-v-798e7a06"), e = e(), R(), e), $s = { class: "timeline__wrapper" }, ws = { class: "timeline__content" }, Bs = { class: "timeline__items" }, Ss = { class: "item__left" }, Is = /* @__PURE__ */ ks(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
2189
2231
  /* @__PURE__ */ t("div", { class: "circle" }),
2190
2232
  /* @__PURE__ */ t("div", { class: "line" })
2191
- ], -1)), ql = { class: "item__right" }, Tl = ["innerHTML"], Al = /* @__PURE__ */ g({
2233
+ ], -1)), Cs = { class: "item__right" }, Ts = ["innerHTML"], qs = /* @__PURE__ */ g({
2192
2234
  __name: "timeline",
2193
2235
  props: {
2194
2236
  timelineItems: {
@@ -2199,8 +2241,8 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2199
2241
  setup(e) {
2200
2242
  return me(() => {
2201
2243
  const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
2202
- (s) => {
2203
- s.forEach((o) => {
2244
+ (l) => {
2245
+ l.forEach((o) => {
2204
2246
  o.isIntersecting && (o.target.classList.add("visible"), o.target.classList.remove("faded"), r.unobserve(o.target));
2205
2247
  });
2206
2248
  },
@@ -2208,46 +2250,46 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2208
2250
  threshold: 1
2209
2251
  }
2210
2252
  );
2211
- a.forEach((s) => {
2212
- r.observe(s);
2253
+ a.forEach((l) => {
2254
+ r.observe(l);
2213
2255
  });
2214
- }), (a, r) => (l(), i("div", wl, [
2215
- t("div", Bl, [
2216
- t("div", Sl, [
2217
- (l(!0), i(V, null, P(e.timelineItems, (s) => (l(), i("div", {
2218
- key: s.year,
2256
+ }), (a, r) => (s(), i("div", $s, [
2257
+ t("div", ws, [
2258
+ t("div", Bs, [
2259
+ (s(!0), i(V, null, P(e.timelineItems, (l) => (s(), i("div", {
2260
+ key: l.year,
2219
2261
  class: "timeline__item faded"
2220
2262
  }, [
2221
- t("div", Il, d(s.year), 1),
2222
- Cl,
2223
- t("div", ql, [
2224
- S(F, null, {
2263
+ t("div", Ss, c(l.year), 1),
2264
+ Is,
2265
+ t("div", Cs, [
2266
+ S(M, null, {
2225
2267
  default: y(() => [
2226
- s.media.src ? c(a.$slots, "timeline-image", M({
2268
+ l.media.src ? d(a.$slots, "timeline-image", F({
2227
2269
  key: 0,
2228
2270
  ref_for: !0
2229
- }, { src: s.media.src, alt: s.media.alt }), void 0, !0) : _("", !0)
2271
+ }, { src: l.media.src, alt: l.media.alt }), void 0, !0) : _("", !0)
2230
2272
  ]),
2231
2273
  _: 2
2232
2274
  }, 1024),
2233
2275
  t("div", {
2234
- style: ee([s.media.src ? "" : "margin-top: 0px"]),
2276
+ style: ee([l.media.src ? "" : "margin-top: 0px"]),
2235
2277
  class: "rich-text",
2236
- innerHTML: s.text
2237
- }, null, 12, Tl)
2278
+ innerHTML: l.text
2279
+ }, null, 12, Ts)
2238
2280
  ])
2239
2281
  ]))), 128))
2240
2282
  ])
2241
2283
  ])
2242
2284
  ]));
2243
2285
  }
2244
- }), Ll = /* @__PURE__ */ v(Al, [["__scopeId", "data-v-798e7a06"]]), Dl = { class: "vimeo" }, Vl = { class: "vimeo__wrapper" }, Pl = {
2286
+ }), As = /* @__PURE__ */ v(qs, [["__scopeId", "data-v-798e7a06"]]), Ls = { class: "vimeo" }, Ds = { class: "vimeo__wrapper" }, Vs = {
2245
2287
  key: 0,
2246
2288
  class: "vimeo__headline"
2247
- }, Fl = {
2289
+ }, Ps = {
2248
2290
  key: 1,
2249
2291
  class: "vimeo__description"
2250
- }, Ml = /* @__PURE__ */ g({
2292
+ }, Fs = /* @__PURE__ */ g({
2251
2293
  __name: "vimeo",
2252
2294
  props: {
2253
2295
  headline: {
@@ -2260,18 +2302,18 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2260
2302
  }
2261
2303
  },
2262
2304
  setup(e) {
2263
- return (a, r) => (l(), i("div", Dl, [
2264
- t("div", Vl, [
2265
- e.headline ? (l(), i("h2", Pl, d(e.headline), 1)) : _("", !0),
2266
- c(a.$slots, "vimeo-content", {}, void 0, !0),
2267
- e.description ? (l(), i("p", Fl, d(e.description), 1)) : _("", !0)
2305
+ return (a, r) => (s(), i("div", Ls, [
2306
+ t("div", Ds, [
2307
+ e.headline ? (s(), i("h2", Vs, c(e.headline), 1)) : _("", !0),
2308
+ d(a.$slots, "vimeo-content", {}, void 0, !0),
2309
+ e.description ? (s(), i("p", Ps, c(e.description), 1)) : _("", !0)
2268
2310
  ])
2269
2311
  ]));
2270
2312
  }
2271
- }), Ol = /* @__PURE__ */ v(Ml, [["__scopeId", "data-v-90a2b109"]]), zl = { class: "academy-overview" }, Hl = { class: "academy-overview__content-wrapper" }, Rl = { class: "academy-overview__content" }, Nl = { class: "academy-overview__title" }, El = { class: "academy-overview__description" }, jl = { class: "academy-overview__button-wrapper" }, Kl = {
2313
+ }), Ms = /* @__PURE__ */ v(Fs, [["__scopeId", "data-v-90a2b109"]]), Os = { class: "academy-overview" }, zs = { class: "academy-overview__content-wrapper" }, Hs = { class: "academy-overview__content" }, Rs = { class: "academy-overview__title" }, Ns = { class: "academy-overview__description" }, Es = { class: "academy-overview__button-wrapper" }, js = {
2272
2314
  key: 0,
2273
2315
  class: "academy-overview__stats"
2274
- }, Ul = { class: "academy-overview__stats-row" }, Gl = { class: "academy-overview__stat" }, Jl = { class: "academy-overview__value" }, Wl = { class: "academy-overview__label" }, Yl = { class: "academy-overview__stat" }, Ql = { class: "academy-overview__value" }, Zl = { class: "academy-overview__label" }, Xl = /* @__PURE__ */ g({
2316
+ }, Gs = { class: "academy-overview__stats-row" }, Ks = { class: "academy-overview__stat" }, Us = { class: "academy-overview__value" }, Js = { class: "academy-overview__label" }, Ws = { class: "academy-overview__stat" }, Ys = { class: "academy-overview__value" }, Qs = { class: "academy-overview__label" }, Zs = /* @__PURE__ */ g({
2275
2317
  __name: "frontpage-hero",
2276
2318
  props: {
2277
2319
  hero: { default: () => ({
@@ -2285,25 +2327,25 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2285
2327
  }) }
2286
2328
  },
2287
2329
  setup(e) {
2288
- return (a, r) => (l(), i("div", zl, [
2289
- t("div", Hl, [
2290
- t("div", Rl, [
2330
+ return (a, r) => (s(), i("div", Os, [
2331
+ t("div", zs, [
2332
+ t("div", Hs, [
2291
2333
  t("div", null, [
2292
- t("h1", Nl, d(a.hero.headline), 1),
2293
- t("p", El, d(a.hero.description), 1),
2294
- t("div", jl, [
2295
- c(a.$slots, "button", {}, void 0, !0)
2334
+ t("h1", Rs, c(a.hero.headline), 1),
2335
+ t("p", Ns, c(a.hero.description), 1),
2336
+ t("div", Es, [
2337
+ d(a.$slots, "button", {}, void 0, !0)
2296
2338
  ])
2297
2339
  ]),
2298
- a.hero.showStats ? (l(), i("div", Kl, [
2299
- t("div", Ul, [
2300
- t("div", Gl, [
2301
- t("div", Jl, d(a.hero.lessonValue), 1),
2302
- t("div", Wl, d(a.hero.lessonLabel), 1)
2340
+ a.hero.showStats ? (s(), i("div", js, [
2341
+ t("div", Gs, [
2342
+ t("div", Ks, [
2343
+ t("div", Us, c(a.hero.lessonValue), 1),
2344
+ t("div", Js, c(a.hero.lessonLabel), 1)
2303
2345
  ]),
2304
- t("div", Yl, [
2305
- t("div", Ql, d(a.hero.pointsValue), 1),
2306
- t("div", Zl, d(a.hero.pointsLabel), 1)
2346
+ t("div", Ws, [
2347
+ t("div", Ys, c(a.hero.pointsValue), 1),
2348
+ t("div", Qs, c(a.hero.pointsLabel), 1)
2307
2349
  ])
2308
2350
  ])
2309
2351
  ])) : _("", !0)
@@ -2311,7 +2353,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2311
2353
  ])
2312
2354
  ]));
2313
2355
  }
2314
- }), xl = /* @__PURE__ */ v(Xl, [["__scopeId", "data-v-1594f3e8"]]), ei = { class: "not-found__wrapper" }, ti = { class: "not-found__content" }, ai = { class: "not-found__headline" }, oi = { class: "not-found__body" }, si = /* @__PURE__ */ g({
2356
+ }), Xs = /* @__PURE__ */ v(Zs, [["__scopeId", "data-v-1594f3e8"]]), xs = { class: "not-found__wrapper" }, ei = { class: "not-found__content" }, ti = { class: "not-found__headline" }, ai = { class: "not-found__body" }, oi = /* @__PURE__ */ g({
2315
2357
  __name: "404",
2316
2358
  props: {
2317
2359
  headline: {
@@ -2320,16 +2362,16 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2320
2362
  }
2321
2363
  },
2322
2364
  setup(e) {
2323
- return (a, r) => (l(), i("div", ei, [
2324
- t("div", ti, [
2325
- t("h1", ai, d(e.headline), 1),
2326
- t("div", oi, [
2327
- c(a.$slots, "not-found-body", {}, void 0, !0)
2365
+ return (a, r) => (s(), i("div", xs, [
2366
+ t("div", ei, [
2367
+ t("h1", ti, c(e.headline), 1),
2368
+ t("div", ai, [
2369
+ d(a.$slots, "not-found-body", {}, void 0, !0)
2328
2370
  ])
2329
2371
  ])
2330
2372
  ]));
2331
2373
  }
2332
- }), li = /* @__PURE__ */ v(si, [["__scopeId", "data-v-b829ca6c"]]), ii = { class: "filter__wrapper" }, ri = { class: "filter__content" }, ni = { class: "filter__dropdowns" }, di = { class: "filter__chips" }, ci = /* @__PURE__ */ g({
2374
+ }), li = /* @__PURE__ */ v(oi, [["__scopeId", "data-v-b829ca6c"]]), si = { class: "filter__wrapper" }, ii = { class: "filter__content" }, ri = { class: "filter__dropdowns" }, ni = { class: "filter__chips" }, di = /* @__PURE__ */ g({
2333
2375
  __name: "filter",
2334
2376
  props: {
2335
2377
  hasChips: {
@@ -2343,53 +2385,53 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2343
2385
  },
2344
2386
  emits: ["clearFilters"],
2345
2387
  setup(e) {
2346
- return (a, r) => (l(), i("div", ii, [
2347
- t("div", ri, [
2348
- t("div", ni, [
2349
- c(a.$slots, "filter-dropdowns")
2388
+ return (a, r) => (s(), i("div", si, [
2389
+ t("div", ii, [
2390
+ t("div", ri, [
2391
+ d(a.$slots, "filter-dropdowns")
2350
2392
  ]),
2351
- t("div", di, [
2352
- c(a.$slots, "filter-chips"),
2353
- e.hasChips ? (l(), i("button", {
2393
+ t("div", ni, [
2394
+ d(a.$slots, "filter-chips"),
2395
+ e.hasChips ? (s(), i("button", {
2354
2396
  key: 0,
2355
2397
  class: "filter__clear",
2356
- onClick: r[0] || (r[0] = (s) => a.$emit("clearFilters"))
2357
- }, d(e.removeAll), 1)) : _("", !0)
2398
+ onClick: r[0] || (r[0] = (l) => a.$emit("clearFilters"))
2399
+ }, c(e.removeAll), 1)) : _("", !0)
2358
2400
  ])
2359
2401
  ])
2360
2402
  ]));
2361
2403
  }
2362
- }), ui = /* @__PURE__ */ v(ci, [["__scopeId", "data-v-b2ccb954"]]), ye = (e) => (H("data-v-a0ab0743"), e = e(), R(), e), _i = { class: "footer__wrapper" }, hi = { class: "footer__content" }, pi = {
2404
+ }), ci = /* @__PURE__ */ v(di, [["__scopeId", "data-v-b2ccb954"]]), ye = (e) => (H("data-v-a0ab0743"), e = e(), R(), e), ui = { class: "footer__wrapper" }, _i = { class: "footer__content" }, hi = {
2363
2405
  key: 0,
2364
2406
  src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
2365
2407
  style: { margin: "0 auto" },
2366
2408
  width: "101",
2367
2409
  height: "45"
2368
- }, mi = { class: "footer__sections" }, fi = { class: "section__title" }, vi = { class: "section__list" }, gi = { class: "section" }, bi = {
2410
+ }, pi = { class: "footer__sections" }, mi = { class: "section__title" }, fi = { class: "section__list" }, vi = { class: "section" }, gi = {
2369
2411
  key: 0,
2370
2412
  class: "section__title"
2371
- }, yi = {
2413
+ }, bi = {
2372
2414
  key: 1,
2373
2415
  class: "section__title"
2374
- }, ki = { key: 0 }, $i = { key: 1 }, wi = { key: 2 }, Bi = { key: 3 }, Si = { key: 4 }, Ii = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("br", null, null, -1)), Ci = {
2416
+ }, yi = { key: 0 }, ki = { key: 1 }, $i = { key: 2 }, wi = { key: 3 }, Bi = { key: 4 }, Si = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("br", null, null, -1)), Ii = {
2375
2417
  key: 0,
2376
2418
  href: "mailto:china@mir-robots.com"
2377
- }, qi = {
2419
+ }, Ci = {
2378
2420
  key: 1,
2379
2421
  href: "mailto:mail@mir-robots.com"
2380
2422
  }, Ti = {
2381
2423
  key: 0,
2382
2424
  href: "tel:+8613661856951"
2383
- }, Ai = {
2425
+ }, qi = {
2384
2426
  key: 1,
2385
2427
  href: "tel:+4520377577"
2386
- }, Li = { class: "footer__bottom" }, Di = { class: "copyright" }, Vi = { class: "footer__policy" }, Pi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), Fi = {
2428
+ }, Ai = { class: "footer__bottom" }, Li = { class: "copyright" }, Di = { class: "footer__policy" }, Vi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), Pi = {
2387
2429
  key: 0,
2388
2430
  class: "footer__social"
2389
- }, Mi = ["href", "aria-label"], Oi = {
2431
+ }, Fi = ["href", "aria-label"], Mi = {
2390
2432
  key: 1,
2391
2433
  class: "footer__social"
2392
- }, zi = ["href", "aria-label"], Hi = /* @__PURE__ */ g({
2434
+ }, Oi = ["href", "aria-label"], zi = /* @__PURE__ */ g({
2393
2435
  __name: "footer",
2394
2436
  props: {
2395
2437
  language: { default: "" },
@@ -2402,107 +2444,107 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2402
2444
  },
2403
2445
  emits: ["changeRegionClicked"],
2404
2446
  setup(e) {
2405
- return (a, r) => (l(), i("div", _i, [
2406
- t("footer", hi, [
2407
- a.language === "zh" ? (l(), i("img", pi)) : _("", !0),
2408
- t("div", mi, [
2409
- (l(!0), i(V, null, P(a.footerSections, (s) => (l(), i("div", {
2410
- key: s.title,
2447
+ return (a, r) => (s(), i("div", ui, [
2448
+ t("footer", _i, [
2449
+ a.language === "zh" ? (s(), i("img", hi)) : _("", !0),
2450
+ t("div", pi, [
2451
+ (s(!0), i(V, null, P(a.footerSections, (l) => (s(), i("div", {
2452
+ key: l.title,
2411
2453
  class: "section"
2412
2454
  }, [
2413
- t("span", fi, d(s.title), 1),
2455
+ t("span", mi, c(l.title), 1),
2414
2456
  t("nav", null, [
2415
- t("ul", vi, [
2416
- c(a.$slots, "section-links", {
2417
- links: s.links
2457
+ t("ul", fi, [
2458
+ d(a.$slots, "section-links", {
2459
+ links: l.links
2418
2460
  })
2419
2461
  ])
2420
2462
  ])
2421
2463
  ]))), 128)),
2422
- t("div", gi, [
2423
- a.language === "zh" ? (l(), i("span", bi, "名傲移动机器人(上海)有限公司")) : (l(), i("span", yi, "Mobile Industrial Robots A/S")),
2464
+ t("div", vi, [
2465
+ a.language === "zh" ? (s(), i("span", gi, "名傲移动机器人(上海)有限公司")) : (s(), i("span", bi, "Mobile Industrial Robots A/S")),
2424
2466
  t("address", null, [
2425
- a.language === "zh" ? (l(), i("span", ki, "上海浦东新区金桥出口加工区")) : (l(), i("span", $i, "Energivej 51")),
2426
- a.language === "zh" ? (l(), i("span", wi, "桂桥路1201号10栋2楼")) : (l(), i("span", Bi, "5260 Odense S")),
2427
- a.language !== "zh" ? (l(), i("span", Si, "CVR: 35251235")) : _("", !0),
2428
- Ii,
2429
- S(D, {
2467
+ a.language === "zh" ? (s(), i("span", yi, "上海浦东新区金桥出口加工区")) : (s(), i("span", ki, "Energivej 51")),
2468
+ a.language === "zh" ? (s(), i("span", $i, "桂桥路1201号10栋2楼")) : (s(), i("span", wi, "5260 Odense S")),
2469
+ a.language !== "zh" ? (s(), i("span", Bi, "CVR: 35251235")) : _("", !0),
2470
+ Si,
2471
+ S(L, {
2430
2472
  class: "footer__contact",
2431
2473
  "link-type": "regular_light",
2432
2474
  underline: "false"
2433
2475
  }, {
2434
2476
  default: y(() => [
2435
- a.language === "zh" ? (l(), i("a", Ci, "china@mir-robots.com")) : (l(), i("a", qi, "mail@mir-robots.com"))
2477
+ a.language === "zh" ? (s(), i("a", Ii, "china@mir-robots.com")) : (s(), i("a", Ci, "mail@mir-robots.com"))
2436
2478
  ]),
2437
2479
  _: 1
2438
2480
  }),
2439
- S(D, {
2481
+ S(L, {
2440
2482
  class: "footer__contact",
2441
2483
  "link-type": "regular_light",
2442
2484
  underline: "false"
2443
2485
  }, {
2444
2486
  default: y(() => [
2445
- a.language === "zh" ? (l(), i("a", Ti, "+86 13661856951(微信同号)")) : (l(), i("a", Ai, "+45 20 377 577"))
2487
+ a.language === "zh" ? (s(), i("a", Ti, "+86 13661856951(微信同号)")) : (s(), i("a", qi, "+45 20 377 577"))
2446
2488
  ]),
2447
2489
  _: 1
2448
2490
  })
2449
2491
  ])
2450
2492
  ])
2451
2493
  ]),
2452
- t("div", Li, [
2453
- t("p", Di, " © Mobile Industrial Robots " + d((/* @__PURE__ */ new Date()).getFullYear()), 1),
2454
- t("div", Vi, [
2494
+ t("div", Ai, [
2495
+ t("p", Li, " © Mobile Industrial Robots " + c((/* @__PURE__ */ new Date()).getFullYear()), 1),
2496
+ t("div", Di, [
2455
2497
  t("button", {
2456
2498
  class: "footer__language-switcher",
2457
- onClick: r[0] || (r[0] = (s) => a.$emit("changeRegionClicked"))
2499
+ onClick: r[0] || (r[0] = (l) => a.$emit("changeRegionClicked"))
2458
2500
  }, [
2459
2501
  t("span", null, [
2460
- Pi,
2461
- J(d(a.changeRegion), 1)
2502
+ Vi,
2503
+ J(c(a.changeRegion), 1)
2462
2504
  ])
2463
2505
  ]),
2464
- c(a.$slots, "footer-privacy-link"),
2465
- c(a.$slots, "footer-cookie-link")
2506
+ d(a.$slots, "footer-privacy-link"),
2507
+ d(a.$slots, "footer-cookie-link")
2466
2508
  ]),
2467
- a.language !== "zh" ? (l(), i("div", Fi, [
2468
- (l(!0), i(V, null, P(a.socialMedia, (s) => (l(), T(D, {
2469
- key: s.title,
2509
+ a.language !== "zh" ? (s(), i("div", Pi, [
2510
+ (s(!0), i(V, null, P(a.socialMedia, (l) => (s(), T(L, {
2511
+ key: l.title,
2470
2512
  underline: "false",
2471
2513
  "link-type": "regular"
2472
2514
  }, {
2473
2515
  default: y(() => [
2474
2516
  t("a", {
2475
- href: s.url,
2517
+ href: l.url,
2476
2518
  target: "_blank",
2477
- "aria-label": s.title
2519
+ "aria-label": l.title
2478
2520
  }, [
2479
2521
  t("i", {
2480
2522
  width: "19",
2481
2523
  height: "14",
2482
- class: h(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
2524
+ class: h(["footer__social--icon", [l.title ? "bg-" + l.title : ""]])
2483
2525
  }, null, 2)
2484
- ], 8, Mi)
2526
+ ], 8, Fi)
2485
2527
  ]),
2486
2528
  _: 2
2487
2529
  }, 1024))), 128))
2488
- ])) : (l(), i("div", Oi, [
2489
- (l(!0), i(V, null, P(a.socialMediaChina, (s) => (l(), T(D, {
2490
- key: s.title,
2530
+ ])) : (s(), i("div", Mi, [
2531
+ (s(!0), i(V, null, P(a.socialMediaChina, (l) => (s(), T(L, {
2532
+ key: l.title,
2491
2533
  underline: "false",
2492
2534
  "link-type": "regular"
2493
2535
  }, {
2494
2536
  default: y(() => [
2495
2537
  t("a", {
2496
- href: s.url,
2538
+ href: l.url,
2497
2539
  target: "_blank",
2498
- "aria-label": s.title
2540
+ "aria-label": l.title
2499
2541
  }, [
2500
2542
  t("i", {
2501
2543
  width: "19",
2502
2544
  height: "14",
2503
- class: h(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
2545
+ class: h(["footer__social--icon", [l.title ? "bg-" + l.title : ""]])
2504
2546
  }, null, 2)
2505
- ], 8, zi)
2547
+ ], 8, Oi)
2506
2548
  ]),
2507
2549
  _: 2
2508
2550
  }, 1024))), 128))
@@ -2511,51 +2553,51 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2511
2553
  ])
2512
2554
  ]));
2513
2555
  }
2514
- }), Ri = /* @__PURE__ */ v(Hi, [["__scopeId", "data-v-a0ab0743"]]), ke = (e) => (H("data-v-0b00b9f2"), e = e(), R(), e), Ni = { class: "header__wrapper" }, Ei = { class: "nav-wrapper" }, ji = { class: "mir-link-logo" }, Ki = { class: "main-nav-items" }, Ui = {
2556
+ }), Hi = /* @__PURE__ */ v(zi, [["__scopeId", "data-v-a0ab0743"]]), ke = (e) => (H("data-v-0b00b9f2"), e = e(), R(), e), Ri = { class: "header__wrapper" }, Ni = { class: "nav-wrapper" }, Ei = { class: "mir-link-logo" }, ji = { class: "main-nav-items" }, Gi = {
2515
2557
  key: 0,
2516
2558
  id: "menu-dropdown",
2517
2559
  ref: "dropdownDiv"
2518
- }, Gi = {
2560
+ }, Ki = {
2519
2561
  key: 0,
2520
2562
  src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
2521
2563
  alt: "dropdown arrow"
2522
- }, Ji = {
2564
+ }, Ui = {
2523
2565
  key: 1,
2524
2566
  src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
2525
2567
  alt: "dropdown arrow",
2526
2568
  style: { transform: "rotate(180deg)" }
2527
- }, Wi = { class: "dropdown-content" }, Yi = {
2569
+ }, Ji = { class: "dropdown-content" }, Wi = {
2528
2570
  key: 1,
2529
2571
  class: "nav-search-wrapper"
2530
- }, Qi = ["src"], Zi = {
2572
+ }, Yi = ["src"], Qi = {
2531
2573
  key: 2,
2532
2574
  id: "menu-portal-switcher",
2533
2575
  class: "portal-switcher-wrapper"
2534
- }, Xi = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
2576
+ }, Zi = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
2535
2577
  src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
2536
2578
  alt: "portal switcher icon",
2537
2579
  width: "20",
2538
2580
  height: "20"
2539
- }, null, -1)), xi = [
2540
- Xi
2541
- ], er = { class: "portal-switcher-content" }, tr = { class: "portal-switcher-links" }, ar = ["href"], or = ["src"], sr = {
2581
+ }, null, -1)), Xi = [
2582
+ Zi
2583
+ ], xi = { class: "portal-switcher-content" }, er = { class: "portal-switcher-links" }, tr = ["href"], ar = ["src"], or = {
2542
2584
  key: 3,
2543
2585
  id: "menu-profile-dropdown",
2544
2586
  class: "profile-dropdown-wrapper"
2545
2587
  }, lr = {
2546
2588
  key: 0,
2547
2589
  class: "profile-dropdown-sign-in"
2548
- }, ir = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
2590
+ }, sr = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
2549
2591
  src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
2550
2592
  alt: "profile dropdown icon",
2551
2593
  width: "20",
2552
2594
  height: "20"
2553
- }, null, -1)), rr = [
2554
- ir
2555
- ], nr = { class: "profile-dropdown-content" }, dr = { class: "mobile-logo-search-burger-wrapper" }, cr = { class: "mobile-mir-link-logo" }, ur = {
2595
+ }, null, -1)), ir = [
2596
+ sr
2597
+ ], rr = { class: "profile-dropdown-content" }, nr = { class: "mobile-logo-search-burger-wrapper" }, dr = { class: "mobile-mir-link-logo" }, cr = {
2556
2598
  key: 0,
2557
2599
  class: "mobile-search-wrapper"
2558
- }, _r = ["src"], hr = ["src"], pr = { class: "mobile-menu-content-wrapper" }, mr = { class: "mobile-dropdown-content" }, fr = /* @__PURE__ */ g({
2600
+ }, ur = ["src"], _r = ["src"], hr = { class: "mobile-menu-content-wrapper" }, pr = { class: "mobile-dropdown-content" }, mr = /* @__PURE__ */ g({
2559
2601
  __name: "header",
2560
2602
  props: {
2561
2603
  burgerState: {
@@ -2607,7 +2649,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2607
2649
  "clickSearch"
2608
2650
  ],
2609
2651
  setup(e, { expose: a, emit: r }) {
2610
- let s = null;
2652
+ let l = null;
2611
2653
  const o = e;
2612
2654
  let u = C(o.burgerState), p = C(o.search), n = C(o.showDropDown), b = C(o.showPortalSwitcherDropDown), f = C(o.showProfileDropDown), k = C(o.isAuthenticated);
2613
2655
  Q(
@@ -2629,11 +2671,11 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2629
2671
  () => o.isAuthenticated,
2630
2672
  ($) => k.value = $
2631
2673
  ), me(() => {
2632
- s = ($) => {
2674
+ l = ($) => {
2633
2675
  $.target.closest("#menu-dropdown") || (n.value = !1), $.target.closest("#menu-portal-switcher") || (b.value = !1), $.target.closest("#menu-profile-dropdown") || (f.value = !1);
2634
- }, window.addEventListener("click", s);
2635
- }), Te(() => {
2636
- s !== null && window.removeEventListener("click", s);
2676
+ }, window.addEventListener("click", l);
2677
+ }), qe(() => {
2678
+ l !== null && window.removeEventListener("click", l);
2637
2679
  });
2638
2680
  const w = r;
2639
2681
  function ae() {
@@ -2648,45 +2690,45 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2648
2690
  function de() {
2649
2691
  u.value = !u.value, w("update:burgerState", u.value);
2650
2692
  }
2651
- let G = C(null), oe = C(null);
2693
+ let U = C(null), oe = C(null);
2652
2694
  function ce() {
2653
- G.value && G.value.blur();
2695
+ U.value && U.value.blur();
2654
2696
  }
2655
2697
  return a({
2656
2698
  defocusSearchButton: ce
2657
- }), ($, j) => (l(), i("div", Ni, [
2699
+ }), ($, j) => (s(), i("div", Ri, [
2658
2700
  t("nav", null, [
2659
- t("div", Ei, [
2660
- t("div", ji, [
2661
- c($.$slots, "link-logo", {}, void 0, !0)
2701
+ t("div", Ni, [
2702
+ t("div", Ei, [
2703
+ d($.$slots, "link-logo", {}, void 0, !0)
2662
2704
  ]),
2663
- t("ul", Ki, [
2664
- c($.$slots, "main-nav-items", {}, void 0, !0)
2705
+ t("ul", ji, [
2706
+ d($.$slots, "main-nav-items", {}, void 0, !0)
2665
2707
  ]),
2666
- e.useDropdown ? (l(), i("div", Ui, [
2708
+ e.useDropdown ? (s(), i("div", Gi, [
2667
2709
  t("button", {
2668
2710
  class: "nav-dropdown-btn",
2669
2711
  "aria-label": "Toggle Dropdown",
2670
2712
  onClick: ae
2671
2713
  }, [
2672
- c($.$slots, "dropdown-title", {}, void 0, !0),
2673
- I(n) === !1 ? (l(), i("img", Gi)) : (l(), i("img", Ji))
2714
+ d($.$slots, "dropdown-title", {}, void 0, !0),
2715
+ I(n) === !1 ? (s(), i("img", Ki)) : (s(), i("img", Ui))
2674
2716
  ]),
2675
- U(t("div", Wi, [
2676
- c($.$slots, "dropdown-links", {}, void 0, !0)
2717
+ K(t("div", Ji, [
2718
+ d($.$slots, "dropdown-links", {}, void 0, !0)
2677
2719
  ], 512), [
2678
2720
  [Z, I(n)]
2679
2721
  ])
2680
2722
  ], 512)) : _("", !0),
2681
- I(p) ? (l(), i("div", Yi, [
2723
+ I(p) ? (s(), i("div", Wi, [
2682
2724
  t("button", {
2683
2725
  ref_key: "navSearchButton",
2684
- ref: G,
2726
+ ref: U,
2685
2727
  class: "search-icon",
2686
2728
  "aria-label": "Toggle search",
2687
- onClick: j[0] || (j[0] = (K) => {
2729
+ onClick: j[0] || (j[0] = (G) => {
2688
2730
  var E;
2689
- return $.$emit("clickSearch"), (E = I(G)) == null ? void 0 : E.blur();
2731
+ return $.$emit("clickSearch"), (E = I(U)) == null ? void 0 : E.blur();
2690
2732
  })
2691
2733
  }, [
2692
2734
  t("img", {
@@ -2694,32 +2736,32 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2694
2736
  alt: "search icon",
2695
2737
  width: "20",
2696
2738
  height: "20"
2697
- }, null, 8, Qi)
2739
+ }, null, 8, Yi)
2698
2740
  ], 512)
2699
2741
  ])) : _("", !0),
2700
- e.usePortalSwitcher ? (l(), i("div", Zi, [
2742
+ e.usePortalSwitcher ? (s(), i("div", Qi, [
2701
2743
  t("button", {
2702
2744
  class: "nav-portal-switcher-btn",
2703
2745
  "aria-label": "Toggle Portal",
2704
2746
  onClick: re
2705
- }, xi),
2706
- U(t("div", er, [
2707
- t("ul", tr, [
2708
- (l(!0), i(V, null, P(e.portals, (K, E) => (l(), i("li", {
2747
+ }, Xi),
2748
+ K(t("div", xi, [
2749
+ t("ul", er, [
2750
+ (s(!0), i(V, null, P(e.portals, (G, E) => (s(), i("li", {
2709
2751
  key: E,
2710
2752
  class: "portal-switcher-link"
2711
2753
  }, [
2712
- S(I(D), { "link-type": "regular" }, {
2754
+ S(I(L), { "link-type": "regular" }, {
2713
2755
  default: y(() => [
2714
2756
  t("a", {
2715
- href: K.link,
2757
+ href: G.link,
2716
2758
  onClick: j[1] || (j[1] = (W) => x(n) ? n.value = !1 : n = !1)
2717
2759
  }, [
2718
2760
  t("img", {
2719
- src: K.icon
2720
- }, null, 8, or),
2721
- t("div", null, d(K.name), 1)
2722
- ], 8, ar)
2761
+ src: G.icon
2762
+ }, null, 8, ar),
2763
+ t("div", null, c(G.name), 1)
2764
+ ], 8, tr)
2723
2765
  ]),
2724
2766
  _: 2
2725
2767
  }, 1024)
@@ -2729,18 +2771,18 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2729
2771
  [Z, I(b)]
2730
2772
  ])
2731
2773
  ])) : _("", !0),
2732
- e.useProfileDropdown ? (l(), i("div", sr, [
2733
- I(k) ? _("", !0) : (l(), i("div", lr, [
2734
- c($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
2774
+ e.useProfileDropdown ? (s(), i("div", or, [
2775
+ I(k) ? _("", !0) : (s(), i("div", lr, [
2776
+ d($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
2735
2777
  ])),
2736
- I(k) ? (l(), i("button", {
2778
+ I(k) ? (s(), i("button", {
2737
2779
  key: 1,
2738
2780
  "aria-label": "Toggle Profile",
2739
2781
  class: "nav-profile-dropdown-btn",
2740
2782
  onClick: ne
2741
- }, rr)) : _("", !0),
2742
- U(t("div", nr, [
2743
- c($.$slots, "profile-dropdown-links", {}, void 0, !0)
2783
+ }, ir)) : _("", !0),
2784
+ K(t("div", rr, [
2785
+ d($.$slots, "profile-dropdown-links", {}, void 0, !0)
2744
2786
  ], 512), [
2745
2787
  [Z, I(f)]
2746
2788
  ])
@@ -2749,17 +2791,17 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2749
2791
  t("div", {
2750
2792
  class: h(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
2751
2793
  }, [
2752
- t("div", dr, [
2753
- t("div", cr, [
2754
- c($.$slots, "link-logo", {}, void 0, !0)
2794
+ t("div", nr, [
2795
+ t("div", dr, [
2796
+ d($.$slots, "link-logo", {}, void 0, !0)
2755
2797
  ]),
2756
- I(p) ? (l(), i("div", ur, [
2798
+ I(p) ? (s(), i("div", cr, [
2757
2799
  t("button", {
2758
2800
  ref_key: "mobileSearchButton",
2759
2801
  ref: oe,
2760
2802
  class: "search-icon",
2761
2803
  "aria-label": "Toggle search",
2762
- onClick: j[2] || (j[2] = (K) => {
2804
+ onClick: j[2] || (j[2] = (G) => {
2763
2805
  var E;
2764
2806
  return $.$emit("clickSearch"), (E = I(oe)) == null ? void 0 : E.blur();
2765
2807
  })
@@ -2769,7 +2811,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2769
2811
  alt: "search icon",
2770
2812
  width: "20",
2771
2813
  height: "20"
2772
- }, null, 8, _r)
2814
+ }, null, 8, ur)
2773
2815
  ], 512)
2774
2816
  ])) : _("", !0),
2775
2817
  t("button", {
@@ -2782,16 +2824,16 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2782
2824
  height: "20",
2783
2825
  src: I(u) === !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg",
2784
2826
  alt: "burger menu icon"
2785
- }, null, 8, hr)
2827
+ }, null, 8, _r)
2786
2828
  ])
2787
2829
  ]),
2788
- U(t("div", pr, [
2830
+ K(t("div", hr, [
2789
2831
  t("ul", null, [
2790
- c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
2832
+ d($.$slots, "mobile-main-nav-items", {}, void 0, !0)
2791
2833
  ]),
2792
- t("ul", mr, [
2793
- c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
2794
- c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
2834
+ t("ul", pr, [
2835
+ d($.$slots, "mobile-dropdown-title", {}, void 0, !0),
2836
+ d($.$slots, "mobile-dropdown-links", {}, void 0, !0)
2795
2837
  ])
2796
2838
  ], 512), [
2797
2839
  [Z, I(u)]
@@ -2800,7 +2842,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2800
2842
  ])
2801
2843
  ]));
2802
2844
  }
2803
- }), vr = /* @__PURE__ */ v(fr, [["__scopeId", "data-v-0b00b9f2"]]), gr = { class: "language__wrapper" }, br = { class: "language__content" }, yr = { class: "language__headline" }, kr = { class: "language__paragraph" }, $r = { class: "language__links" }, wr = /* @__PURE__ */ g({
2845
+ }), fr = /* @__PURE__ */ v(mr, [["__scopeId", "data-v-0b00b9f2"]]), vr = { class: "language__wrapper" }, gr = { class: "language__content" }, br = { class: "language__headline" }, yr = { class: "language__paragraph" }, kr = { class: "language__links" }, $r = /* @__PURE__ */ g({
2804
2846
  __name: "language-switcher",
2805
2847
  props: {
2806
2848
  headline: {
@@ -2813,17 +2855,17 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2813
2855
  }
2814
2856
  },
2815
2857
  setup(e) {
2816
- return (a, r) => (l(), i("div", gr, [
2817
- t("div", br, [
2818
- t("h2", yr, d(e.headline), 1),
2819
- t("p", kr, d(e.paragraph), 1),
2820
- t("div", $r, [
2821
- c(a.$slots, "language-links", {}, void 0, !0)
2858
+ return (a, r) => (s(), i("div", vr, [
2859
+ t("div", gr, [
2860
+ t("h2", br, c(e.headline), 1),
2861
+ t("p", yr, c(e.paragraph), 1),
2862
+ t("div", kr, [
2863
+ d(a.$slots, "language-links", {}, void 0, !0)
2822
2864
  ])
2823
2865
  ])
2824
2866
  ]));
2825
2867
  }
2826
- }), Br = /* @__PURE__ */ v(wr, [["__scopeId", "data-v-dc8cc97e"]]), Sr = { class: "pagination__wrapper" }, Ir = { class: "pagination__content" }, Cr = /* @__PURE__ */ g({
2868
+ }), wr = /* @__PURE__ */ v($r, [["__scopeId", "data-v-dc8cc97e"]]), Br = { class: "pagination__wrapper" }, Sr = { class: "pagination__content" }, Ir = /* @__PURE__ */ g({
2827
2869
  __name: "pagination",
2828
2870
  props: {
2829
2871
  isPreviousDisabled: {
@@ -2837,31 +2879,31 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2837
2879
  },
2838
2880
  emits: ["previous", "next"],
2839
2881
  setup(e) {
2840
- return (a, r) => (l(), i("div", Sr, [
2841
- t("div", Ir, [
2842
- S(le, {
2882
+ return (a, r) => (s(), i("div", Br, [
2883
+ t("div", Sr, [
2884
+ S(se, {
2843
2885
  disabled: e.isPreviousDisabled,
2844
2886
  variant: "previous",
2845
2887
  "aria-label": "previous",
2846
- onClick: r[0] || (r[0] = (s) => a.$emit("previous"))
2888
+ onClick: r[0] || (r[0] = (l) => a.$emit("previous"))
2847
2889
  }, null, 8, ["disabled"]),
2848
- c(a.$slots, "pagination-numbers"),
2849
- S(le, {
2890
+ d(a.$slots, "pagination-numbers"),
2891
+ S(se, {
2850
2892
  disabled: e.isNextDisabled,
2851
2893
  variant: "next",
2852
2894
  "aria-label": "next",
2853
- onClick: r[1] || (r[1] = (s) => a.$emit("next"))
2895
+ onClick: r[1] || (r[1] = (l) => a.$emit("next"))
2854
2896
  }, null, 8, ["disabled"])
2855
2897
  ])
2856
2898
  ]));
2857
2899
  }
2858
- }), qr = /* @__PURE__ */ v(Cr, [["__scopeId", "data-v-da6d07c9"]]), Tr = {}, Ar = { class: "search__wrapper" };
2859
- function Lr(e, a) {
2860
- return l(), i("div", Ar, [
2861
- c(e.$slots, "default", { class: "search__content" })
2900
+ }), Cr = /* @__PURE__ */ v(Ir, [["__scopeId", "data-v-da6d07c9"]]), Tr = {}, qr = { class: "search__wrapper" };
2901
+ function Ar(e, a) {
2902
+ return s(), i("div", qr, [
2903
+ d(e.$slots, "default", { class: "search__content" })
2862
2904
  ]);
2863
2905
  }
2864
- const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3"]]), Vr = { class: "dropdown" }, Pr = ["aria-expanded"], Fr = /* @__PURE__ */ g({
2906
+ const Lr = /* @__PURE__ */ v(Tr, [["render", Ar], ["__scopeId", "data-v-c07a6cf3"]]), Dr = { class: "dropdown" }, Vr = ["aria-expanded"], Pr = /* @__PURE__ */ g({
2865
2907
  __name: "select-multiple",
2866
2908
  props: {
2867
2909
  label: { default: "" },
@@ -2870,31 +2912,31 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2870
2912
  },
2871
2913
  emits: ["filter", "remove-filter"],
2872
2914
  setup(e, { emit: a }) {
2873
- const r = C(!1), s = e, o = a;
2915
+ const r = C(!1), l = e, o = a;
2874
2916
  function u(b, f) {
2875
- !s.selectedOptions.includes(b) && !s.selectedOptions.includes(f) ? o("filter", b) : o("remove-filter", b);
2917
+ !l.selectedOptions.includes(b) && !l.selectedOptions.includes(f) ? o("filter", b) : o("remove-filter", b);
2876
2918
  }
2877
2919
  function p() {
2878
2920
  r.value = !1;
2879
2921
  }
2880
- const n = q(() => s.options.length > 8);
2922
+ const n = q(() => l.options.length > 8);
2881
2923
  return (b, f) => {
2882
2924
  const k = _e("click-outside");
2883
- return U((l(), i("div", Vr, [
2925
+ return K((s(), i("div", Dr, [
2884
2926
  t("button", {
2885
2927
  class: h(["dropdown-button", { clicked: r.value }]),
2886
2928
  style: ee({ "z-index": r.value ? 2 : 0 }),
2887
2929
  "aria-expanded": r.value ? "true" : "false",
2888
2930
  onClick: f[0] || (f[0] = (w) => r.value = !r.value)
2889
2931
  }, [
2890
- c(b.$slots, "button", {}, () => [
2891
- J(d(b.label), 1)
2932
+ d(b.$slots, "button", {}, () => [
2933
+ J(c(b.label), 1)
2892
2934
  ], !0)
2893
- ], 14, Pr),
2935
+ ], 14, Vr),
2894
2936
  t("div", {
2895
2937
  class: h([{ hidden: !r.value, "adjust-height": n.value }, "dropdown-content"])
2896
2938
  }, [
2897
- (l(!0), i(V, null, P(b.options, (w) => (l(), T(I(fe), {
2939
+ (s(!0), i(V, null, P(b.options, (w) => (s(), T(I(fe), {
2898
2940
  id: w.value,
2899
2941
  key: w.value,
2900
2942
  name: w.text,
@@ -2905,7 +2947,7 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2905
2947
  onInput: (ae) => u(w.value, w.text)
2906
2948
  }, {
2907
2949
  default: y(() => [
2908
- J(d(w.text), 1)
2950
+ J(c(w.text), 1)
2909
2951
  ]),
2910
2952
  _: 2
2911
2953
  }, 1032, ["id", "name", "value", "checked", "onInput"]))), 128))
@@ -2915,7 +2957,7 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2915
2957
  ]);
2916
2958
  };
2917
2959
  }
2918
- }), Mr = /* @__PURE__ */ v(Fr, [["__scopeId", "data-v-678cc92e"]]), Or = { class: "promo__content" }, zr = { class: "pallet-jack__media-wrap" }, Hr = { class: "pallet-jack-link" }, Rr = { class: "pallet-jack__media-wrap__inner-wrap" }, Nr = { class: "pallet-jack__media-wrap__content-wrap" }, Er = { class: "regular-blue" }, jr = /* @__PURE__ */ g({
2960
+ }), Fr = /* @__PURE__ */ v(Pr, [["__scopeId", "data-v-678cc92e"]]), Mr = { class: "promo__content" }, Or = { class: "pallet-jack__media-wrap" }, zr = { class: "pallet-jack-link" }, Hr = { class: "pallet-jack__media-wrap__inner-wrap" }, Rr = { class: "pallet-jack__media-wrap__content-wrap" }, Nr = { class: "regular-blue" }, Er = /* @__PURE__ */ g({
2919
2961
  __name: "pallet-jack",
2920
2962
  props: {
2921
2963
  label: { default: "" },
@@ -2933,31 +2975,31 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2933
2975
  dark: "promo__wrapper--dark",
2934
2976
  light: "promo__wrapper--light",
2935
2977
  default: "promo__wrapper--default"
2936
- }, r = e, s = q(() => a[r.variant]);
2937
- return (o, u) => (l(), i("div", {
2978
+ }, r = e, l = q(() => a[r.variant]);
2979
+ return (o, u) => (s(), i("div", {
2938
2980
  class: h([
2939
2981
  "promo__wrapper",
2940
- s.value,
2982
+ l.value,
2941
2983
  o.teaser ? "promo__wrapper--teaser" : ""
2942
2984
  ])
2943
2985
  }, [
2944
- t("div", Or, [
2986
+ t("div", Mr, [
2945
2987
  t("div", {
2946
2988
  class: h([
2947
2989
  "promo__video",
2948
2990
  o.reverse ? "promo__video--reverse" : "promo__video--default"
2949
2991
  ])
2950
2992
  }, [
2951
- t("div", zr, [
2993
+ t("div", Or, [
2994
+ t("div", zr, [
2995
+ d(o.$slots, "pallet-jack-link")
2996
+ ]),
2952
2997
  t("div", Hr, [
2953
- c(o.$slots, "pallet-jack-link")
2998
+ d(o.$slots, "pallet-jack-video")
2954
2999
  ]),
2955
3000
  t("div", Rr, [
2956
- c(o.$slots, "pallet-jack-video")
2957
- ]),
2958
- t("div", Nr, [
2959
- t("h3", Er, d(o.headline), 1),
2960
- t("p", null, d(o.shortDescription), 1)
3001
+ t("h3", Nr, c(o.headline), 1),
3002
+ t("p", null, c(o.shortDescription), 1)
2961
3003
  ])
2962
3004
  ])
2963
3005
  ], 2),
@@ -2967,7 +3009,7 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2967
3009
  o.reverse ? "promo__text--reverse" : "promo__text--default"
2968
3010
  ])
2969
3011
  }, [
2970
- o.label ? (l(), T(X, {
3012
+ o.label ? (s(), T(X, {
2971
3013
  key: 0,
2972
3014
  text: o.label,
2973
3015
  "label-dark": o.variant === "dark"
@@ -2978,24 +3020,24 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2978
3020
  o.variant === "dark" ? "promo__title--dark" : ""
2979
3021
  ])
2980
3022
  }, [
2981
- c(o.$slots, "promo-text")
3023
+ d(o.$slots, "promo-text")
2982
3024
  ], 2),
2983
- o.linkType === "link" ? (l(), T(D, {
3025
+ o.linkType === "link" ? (s(), T(L, {
2984
3026
  key: 1,
2985
3027
  "link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
2986
3028
  arrow: ""
2987
3029
  }, {
2988
3030
  default: y(() => [
2989
- c(o.$slots, "promo-link")
3031
+ d(o.$slots, "promo-link")
2990
3032
  ]),
2991
3033
  _: 3
2992
3034
  }, 8, ["link-type"])) : _("", !0),
2993
- o.linkType === "button" ? (l(), T(D, {
3035
+ o.linkType === "button" ? (s(), T(L, {
2994
3036
  key: 2,
2995
3037
  "link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
2996
3038
  }, {
2997
3039
  default: y(() => [
2998
- c(o.$slots, "promo-link")
3040
+ d(o.$slots, "promo-link")
2999
3041
  ]),
3000
3042
  _: 3
3001
3043
  }, 8, ["link-type"])) : _("", !0)
@@ -3003,63 +3045,63 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
3003
3045
  ])
3004
3046
  ], 2));
3005
3047
  }
3006
- }), Kr = /* @__PURE__ */ v(jr, [["__scopeId", "data-v-00c0bad3"]]), Gr = {
3048
+ }), jr = /* @__PURE__ */ v(Er, [["__scopeId", "data-v-00c0bad3"]]), Kr = {
3007
3049
  install: (e) => {
3008
- 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", D), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Mr), e.component("AtomSlider", Bt), e.component("AtomTextarea", Lt), e.component("AtomTextField", Et), e.component("AtomVideo", te), e.component("MoleculeAddress", sa), e.component("MoleculeBulletList", da), e.component("MoleculeCard", pa), 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", Uo), e.component("BlockHeadline", Yo), e.component("BlockHero", ns), e.component("BlockImage", ps), e.component("BlockImageGallery", bs), e.component("BlockLogoWall", qs), e.component("BlockMicroStories", Vs), e.component("BlockPolicy", zs), e.component("BlockProductHero", Js), e.component("BlockPromo", Qs), e.component("BlockQuote", dl), e.component("BlockRichText", pl), e.component("BlockRichTextColumns", kl), e.component("BlockTimeline", Ll), e.component("BlockCardDisplay", co), e.component("BlockColumnGrid", fo), e.component("BlockVimeo", Ol), e.component("BlockPalletJack", Kr), e.component("BlockFrontPageHero", xl), e.component("Organism404", li), e.component("OrganismFilter", ui), e.component("OrganismFooter", Ri), e.component("OrganismHeader", vr), e.component("OrganismLanguageSwitcher", Br), e.component("OrganismPagination", qr), e.component("OrganismSearch", Dr);
3050
+ e.component("AtomButton", se), e.component("AtomCheckbox", fe), e.component("AtomChip", Ne), e.component("AtomDropdown", Ye), e.component("AtomImage", M), e.component("AtomLabel", X), e.component("AtomLink", L), e.component("AtomRadioButton", rt), e.component("AtomSelect", ht), e.component("AtomSelectMultiple", Fr), e.component("AtomSlider", Bt), e.component("AtomTextarea", Lt), e.component("AtomTextField", Et), e.component("AtomVideo", te), e.component("MoleculeAddress", la), e.component("MoleculeBulletList", da), e.component("MoleculeCard", pa), e.component("MoleculeColumnCard", ge), e.component("MoleculeEventCard", Ca), e.component("MoleculeFlashcard", be), e.component("MoleculeModal", ve), e.component("MoleculeTextCard", Ga), e.component("BlockAccordion", to), e.component("BlockFacts", Bo), e.component("BlockFeatures", Do), e.component("BlockFlashcards", Oo), e.component("BlockFormScript", Go), e.component("BlockHeadline", Wo), e.component("BlockHero", rl), e.component("BlockImage", hl), e.component("BlockImageGallery", gl), e.component("BlockLogoWall", Cl), e.component("BlockMicroStories", Dl), e.component("BlockPolicy", Ol), e.component("BlockProductHero", Ul), e.component("BlockPromo", Yl), e.component("BlockQuote", ns), e.component("BlockRichText", hs), e.component("BlockRichTextColumns", ys), e.component("BlockTimeline", As), e.component("BlockCardDisplay", no), e.component("BlockColumnGrid", mo), e.component("BlockVimeo", Ms), e.component("BlockPalletJack", jr), e.component("BlockFrontPageHero", Xs), e.component("Organism404", li), e.component("OrganismFilter", ci), e.component("OrganismFooter", Hi), e.component("OrganismHeader", fr), e.component("OrganismLanguageSwitcher", wr), e.component("OrganismPagination", Cr), e.component("OrganismSearch", Lr);
3009
3051
  }
3010
3052
  };
3011
3053
  export {
3012
- le as AtomButton,
3054
+ se as AtomButton,
3013
3055
  fe as AtomCheckbox,
3014
3056
  Ne as AtomChip,
3015
3057
  Ye as AtomDropdown,
3016
- F as AtomImage,
3058
+ M as AtomImage,
3017
3059
  X as AtomLabel,
3018
- D as AtomLink,
3060
+ L as AtomLink,
3019
3061
  rt as AtomRadioButton,
3020
3062
  ht as AtomSelect,
3021
- Mr as AtomSelectMultiple,
3063
+ Fr as AtomSelectMultiple,
3022
3064
  Bt as AtomSlider,
3023
3065
  Et as AtomTextField,
3024
3066
  Lt as AtomTextarea,
3025
3067
  te as AtomVideo,
3026
- ao as BlockAccordion,
3027
- co as BlockCardDisplay,
3028
- fo as BlockColumnGrid,
3029
- So as BlockFacts,
3030
- Vo as BlockFeatures,
3031
- zo as BlockFlashcards,
3032
- Uo as BlockFormScript,
3033
- xl as BlockFrontPageHero,
3034
- Yo as BlockHeadline,
3035
- ns as BlockHero,
3036
- ps as BlockImage,
3037
- bs as BlockImageGallery,
3038
- qs as BlockLogoWall,
3039
- Vs as BlockMicroStories,
3040
- Kr as BlockPalletJack,
3041
- zs as BlockPolicy,
3042
- Js as BlockProductHero,
3043
- Qs as BlockPromo,
3044
- dl as BlockQuote,
3045
- pl as BlockRichText,
3046
- kl as BlockRichTextColumns,
3047
- Ll as BlockTimeline,
3048
- Ol as BlockVimeo,
3049
- sa as MoleculeAddress,
3068
+ to as BlockAccordion,
3069
+ no as BlockCardDisplay,
3070
+ mo as BlockColumnGrid,
3071
+ Bo as BlockFacts,
3072
+ Do as BlockFeatures,
3073
+ Oo as BlockFlashcards,
3074
+ Go as BlockFormScript,
3075
+ Xs as BlockFrontPageHero,
3076
+ Wo as BlockHeadline,
3077
+ rl as BlockHero,
3078
+ hl as BlockImage,
3079
+ gl as BlockImageGallery,
3080
+ Cl as BlockLogoWall,
3081
+ Dl as BlockMicroStories,
3082
+ jr as BlockPalletJack,
3083
+ Ol as BlockPolicy,
3084
+ Ul as BlockProductHero,
3085
+ Yl as BlockPromo,
3086
+ ns as BlockQuote,
3087
+ hs as BlockRichText,
3088
+ ys as BlockRichTextColumns,
3089
+ As as BlockTimeline,
3090
+ Ms as BlockVimeo,
3091
+ la as MoleculeAddress,
3050
3092
  da as MoleculeBulletList,
3051
3093
  pa as MoleculeCard,
3052
3094
  ge as MoleculeColumnCard,
3053
- qa as MoleculeEventCard,
3095
+ Ca as MoleculeEventCard,
3054
3096
  be as MoleculeFlashcard,
3055
3097
  ve as MoleculeModal,
3056
- Ua as MoleculeTextCard,
3098
+ Ga as MoleculeTextCard,
3057
3099
  li as Organism404,
3058
- ui as OrganismFilter,
3059
- Ri as OrganismFooter,
3060
- vr as OrganismHeader,
3061
- Br as OrganismLanguageSwitcher,
3062
- qr as OrganismPagination,
3063
- Dr as OrganismSearch,
3064
- Gr as default
3100
+ ci as OrganismFilter,
3101
+ Hi as OrganismFooter,
3102
+ fr as OrganismHeader,
3103
+ wr as OrganismLanguageSwitcher,
3104
+ Cr as OrganismPagination,
3105
+ Lr as OrganismSearch,
3106
+ Kr as default
3065
3107
  };