@mirweb/mir-web-components 1.9.0 → 1.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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 = {
1225
1247
  key: 0,
1226
1248
  class: "card__content"
1227
- }, lo = { key: 0 }, io = { key: 1 }, ro = { class: "card__cards" }, no = /* @__PURE__ */ g({
1249
+ }, oo = { key: 0 }, lo = { key: 1 }, so = { class: "card__cards" }, io = /* @__PURE__ */ g({
1228
1250
  __name: "card-display",
1229
1251
  props: {
1230
1252
  headline: {
@@ -1238,83 +1260,112 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1238
1260
  bgColor: {
1239
1261
  type: String,
1240
1262
  default: "white"
1263
+ },
1264
+ isBlock: {
1265
+ type: Boolean,
1266
+ default: !0
1241
1267
  }
1242
1268
  },
1243
1269
  setup(e) {
1244
- return (a, r) => (l(), i("div", {
1270
+ return (a, r) => (s(), i("div", {
1245
1271
  class: h([
1246
1272
  "card-display",
1247
1273
  e.bgColor === "blue" ? "card-display--blue" : "card-display--white"
1248
1274
  ])
1249
1275
  }, [
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)
1276
+ t("div", {
1277
+ class: h([
1278
+ "card-display__wrapper",
1279
+ e.isBlock ? "card-display__wrapper--block" : "card-display__wrapper--inline"
1280
+ ])
1281
+ }, [
1282
+ e.headline || e.paragraph ? (s(), i("div", ao, [
1283
+ e.headline ? (s(), i("h2", oo, c(e.headline), 1)) : _("", !0),
1284
+ e.paragraph ? (s(), i("p", lo, c(e.paragraph), 1)) : _("", !0)
1254
1285
  ])) : _("", !0),
1255
- t("div", ro, [
1256
- c(a.$slots, "card-display-cards", {}, void 0, !0)
1286
+ t("div", so, [
1287
+ d(a.$slots, "card-display-cards", {}, void 0, !0)
1257
1288
  ])
1258
- ])
1289
+ ], 2)
1259
1290
  ], 2));
1260
1291
  }
1261
- }), co = /* @__PURE__ */ v(no, [["__scopeId", "data-v-e5d1b11a"]]), uo = { class: "column-grid__top-section" }, _o = {
1292
+ }), ro = /* @__PURE__ */ v(io, [["__scopeId", "data-v-659726bd"]]), no = { class: "column-grid__top-section" }, co = {
1262
1293
  key: 0,
1263
1294
  class: "column-grid__headline"
1264
- }, ho = {
1295
+ }, uo = {
1265
1296
  key: 1,
1266
1297
  class: "column-grid__bodytext"
1267
- }, po = { class: "column-grid__teaser-list" }, mo = /* @__PURE__ */ g({
1298
+ }, _o = { class: "column-grid__teaser-list" }, ho = /* @__PURE__ */ g({
1268
1299
  __name: "column-grid",
1269
1300
  props: {
1270
1301
  headline: { default: "" },
1271
1302
  bgColor: {},
1272
1303
  bodytext: { default: "" },
1304
+ linkText: { default: "" },
1305
+ linkType: { default: "link" },
1273
1306
  columns: {}
1274
1307
  },
1275
1308
  setup(e) {
1276
- return (a, r) => (l(), i("div", {
1309
+ return (a, r) => (s(), i("div", {
1277
1310
  class: h([
1278
1311
  "column-grid",
1279
1312
  a.bgColor === "dark" ? "column-grid--dark" : a.bgColor === "light" ? "column-grid--light" : "column-grid--white"
1280
1313
  ])
1281
1314
  }, [
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)
1315
+ t("div", no, [
1316
+ a.headline ? (s(), i("h2", co, c(a.headline), 1)) : _("", !0),
1317
+ a.bodytext ? (s(), i("div", uo, [
1318
+ d(a.$slots, "column-grid-body", {}, void 0, !0),
1319
+ a.linkType === "link" ? (s(), T(L, {
1320
+ key: 0,
1321
+ "link-type": a.bgColor === "dark" ? "regular_dark" : (a.bgColor === "light", "regular_light"),
1322
+ arrow: ""
1323
+ }, {
1324
+ default: y(() => [
1325
+ d(a.$slots, "column-grid-body-link", {}, void 0, !0)
1326
+ ]),
1327
+ _: 3
1328
+ }, 8, ["link-type"])) : _("", !0)
1286
1329
  ])) : _("", !0)
1287
1330
  ]),
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
1331
+ t("div", _o, [
1332
+ (s(!0), i(V, null, P(a.columns, (l) => (s(), T(ge, {
1333
+ key: l._uid,
1334
+ headline: l.headline,
1335
+ bodytext: l.bodytext,
1336
+ link: l.link,
1337
+ "link-text": l.linkText,
1338
+ image: l.image,
1339
+ "image-fit": l.imageFit
1295
1340
  }, {
1296
1341
  "column-card-body": y(() => [
1297
- c(a.$slots, "column-card-body", M({ ref_for: !0 }, { body: s.bodytext }), void 0, !0)
1342
+ d(a.$slots, "column-card-body", F({ ref_for: !0 }, { body: l.bodytext }), void 0, !0)
1343
+ ]),
1344
+ "column-link": y(() => [
1345
+ d(a.$slots, "column-link", F({ ref_for: !0 }, {
1346
+ link: l.link,
1347
+ linkText: l.linkText
1348
+ }), void 0, !0)
1298
1349
  ]),
1299
1350
  "column-card-image": y(() => [
1300
- s.image ? c(a.$slots, "column-card-image", M({
1351
+ l.image ? d(a.$slots, "column-card-image", F({
1301
1352
  key: 0,
1302
1353
  ref_for: !0
1303
1354
  }, {
1304
- src: s.image.filename,
1305
- alt: s.image.alt,
1306
- style: { "object-fit": s.imageFit ? "cover" : "contain" }
1355
+ src: l.image.filename,
1356
+ alt: l.image.alt,
1357
+ style: { "object-fit": l.imageFit ? "cover" : "contain" }
1307
1358
  }), void 0, !0) : _("", !0)
1308
1359
  ]),
1309
1360
  _: 2
1310
- }, 1032, ["headline", "bodytext", "image", "image-fit"]))), 128))
1361
+ }, 1032, ["headline", "bodytext", "link", "link-text", "image", "image-fit"]))), 128))
1311
1362
  ])
1312
1363
  ], 2));
1313
1364
  }
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 = {
1365
+ }), po = /* @__PURE__ */ v(ho, [["__scopeId", "data-v-1a54852d"]]), mo = { class: "facts__wrapper" }, fo = { class: "facts__content" }, vo = { class: "facts__headline" }, go = { class: "facts" }, bo = { class: "fact__value" }, yo = { class: "fact__metric" }, ko = {
1315
1366
  key: 0,
1316
1367
  class: "facts__link"
1317
- }, Bo = /* @__PURE__ */ g({
1368
+ }, $o = /* @__PURE__ */ g({
1318
1369
  __name: "facts",
1319
1370
  props: {
1320
1371
  headline: { default: "" },
@@ -1338,29 +1389,29 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1338
1389
  }) }
1339
1390
  },
1340
1391
  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,
1392
+ return (a, r) => (s(), i("div", mo, [
1393
+ t("div", fo, [
1394
+ t("h2", vo, c(a.headline), 1),
1395
+ t("div", go, [
1396
+ (s(!0), i(V, null, P(a.facts, (l) => (s(), i("div", {
1397
+ key: l.value + l.metric,
1347
1398
  class: "fact"
1348
1399
  }, [
1349
- t("div", ko, [
1350
- t("span", null, d(s.value), 1)
1400
+ t("div", bo, [
1401
+ t("span", null, c(l.value), 1)
1351
1402
  ]),
1352
- t("div", $o, [
1353
- t("span", null, d(s.metric), 1)
1403
+ t("div", yo, [
1404
+ t("span", null, c(l.metric), 1)
1354
1405
  ])
1355
1406
  ]))), 128))
1356
1407
  ]),
1357
- a.link ? (l(), i("div", wo, [
1358
- S(D, {
1408
+ a.link ? (s(), i("div", ko, [
1409
+ S(L, {
1359
1410
  "link-type": "regular_light",
1360
1411
  arrow: ""
1361
1412
  }, {
1362
1413
  default: y(() => [
1363
- c(a.$slots, "facts-link", {}, void 0, !0)
1414
+ d(a.$slots, "facts-link", {}, void 0, !0)
1364
1415
  ]),
1365
1416
  _: 3
1366
1417
  })
@@ -1368,13 +1419,13 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1368
1419
  ])
1369
1420
  ]));
1370
1421
  }
1371
- }), So = /* @__PURE__ */ v(Bo, [["__scopeId", "data-v-d2b231d4"]]), Io = { class: "features__wrapper" }, Co = { class: "features__content" }, qo = {
1422
+ }), wo = /* @__PURE__ */ v($o, [["__scopeId", "data-v-d2b231d4"]]), Bo = { class: "features__wrapper" }, So = { class: "features__content" }, Io = {
1372
1423
  key: 0,
1373
1424
  class: "features__headline"
1374
- }, To = {
1425
+ }, Co = {
1375
1426
  key: 1,
1376
1427
  class: "features__body"
1377
- }, Ao = { class: "element__headline" }, Lo = { class: "element__body" }, Do = /* @__PURE__ */ g({
1428
+ }, To = { class: "element__headline" }, qo = { class: "element__body" }, Ao = /* @__PURE__ */ g({
1378
1429
  __name: "features",
1379
1430
  props: {
1380
1431
  headline: { default: "" },
@@ -1382,46 +1433,46 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1382
1433
  elements: { default: () => [] }
1383
1434
  },
1384
1435
  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)
1436
+ return (a, r) => (s(), i("div", Bo, [
1437
+ t("div", So, [
1438
+ a.headline ? (s(), i("div", Io, [
1439
+ t("h2", null, c(a.headline), 1)
1389
1440
  ])) : _("", !0),
1390
- a.body ? (l(), i("div", To, [
1391
- c(a.$slots, "features-body", {}, void 0, !0)
1441
+ a.body ? (s(), i("div", Co, [
1442
+ d(a.$slots, "features-body", {}, void 0, !0)
1392
1443
  ])) : _("", !0),
1393
1444
  t("div", {
1394
1445
  class: h(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
1395
1446
  }, [
1396
- (l(!0), i(V, null, P(a.elements, (s) => (l(), i("div", {
1397
- key: s.headline,
1447
+ (s(!0), i(V, null, P(a.elements, (l) => (s(), i("div", {
1448
+ key: l.headline,
1398
1449
  class: "features__element"
1399
1450
  }, [
1400
- S(F, { class: "element__icon" }, {
1451
+ S(M, { class: "element__icon" }, {
1401
1452
  default: y(() => [
1402
- c(a.$slots, "features-icon", M({ ref_for: !0 }, {
1403
- src: s.icon.src,
1453
+ d(a.$slots, "features-icon", F({ ref_for: !0 }, {
1454
+ src: l.icon.src,
1404
1455
  height: 30,
1405
1456
  width: 30,
1406
- alt: s.icon.alt
1457
+ alt: l.icon.alt
1407
1458
  }), void 0, !0)
1408
1459
  ]),
1409
1460
  _: 2
1410
1461
  }, 1024),
1411
- t("p", Ao, d(s.headline), 1),
1412
- t("p", Lo, d(s.body), 1)
1462
+ t("p", To, c(l.headline), 1),
1463
+ t("p", qo, c(l.body), 1)
1413
1464
  ]))), 128))
1414
1465
  ], 2)
1415
1466
  ])
1416
1467
  ]));
1417
1468
  }
1418
- }), Vo = /* @__PURE__ */ v(Do, [["__scopeId", "data-v-57a22df7"]]), Po = { class: "flashcard-wrapper" }, Fo = {
1469
+ }), Lo = /* @__PURE__ */ v(Ao, [["__scopeId", "data-v-57a22df7"]]), Do = { class: "flashcard-wrapper" }, Vo = {
1419
1470
  key: 0,
1420
1471
  class: "flashcard-wrapper__headline"
1421
- }, Mo = {
1472
+ }, Po = {
1422
1473
  key: 1,
1423
1474
  class: "flashcard-wrapper__bodytext"
1424
- }, Oo = /* @__PURE__ */ g({
1475
+ }, Fo = /* @__PURE__ */ g({
1425
1476
  __name: "flashcards",
1426
1477
  props: {
1427
1478
  headline: {},
@@ -1430,34 +1481,34 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1430
1481
  flashcards: {}
1431
1482
  },
1432
1483
  setup(e) {
1433
- const a = e, r = q(() => a.body.trim().length > 0), s = q(() => {
1484
+ const a = e, r = q(() => a.body.trim().length > 0), l = q(() => {
1434
1485
  var u;
1435
1486
  const o = (u = a.flashcards) == null ? void 0 : u.length;
1436
1487
  return o === 4 || o === 5 ? "sm" : o === 6 || o === 3 ? "md" : o === 2 ? "lg" : "sm";
1437
1488
  });
1438
- return (o, u) => (l(), i("div", {
1489
+ return (o, u) => (s(), i("div", {
1439
1490
  class: h(["flashcards", o.bgColor === "light" ? "flashcards--light" : "flashcards--white"])
1440
1491
  }, [
1441
- t("div", Po, [
1492
+ t("div", Do, [
1442
1493
  t("div", {
1443
1494
  class: h([
1444
1495
  { "no-bodytext": !r.value },
1445
1496
  "flashcard-wrapper__top-section"
1446
1497
  ])
1447
1498
  }, [
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)
1499
+ o.headline ? (s(), i("h2", Vo, c(o.headline), 1)) : _("", !0),
1500
+ o.body ? (s(), i("div", Po, [
1501
+ d(o.$slots, "flashcard-wrapper-body", {}, void 0, !0)
1451
1502
  ])) : _("", !0)
1452
1503
  ], 2),
1453
1504
  t("div", {
1454
1505
  class: h(["flashcard-wrapper__teaser-list", {
1455
- sm: s.value === "sm",
1456
- md: s.value === "md",
1457
- lg: s.value === "lg"
1506
+ sm: l.value === "sm",
1507
+ md: l.value === "md",
1508
+ lg: l.value === "lg"
1458
1509
  }])
1459
1510
  }, [
1460
- (l(!0), i(V, null, P(o.flashcards, (p) => (l(), T(I(be), {
1511
+ (s(!0), i(V, null, P(o.flashcards, (p) => (s(), T(I(be), {
1461
1512
  key: p._uid,
1462
1513
  name: p.name,
1463
1514
  bodytext: p.bodytext,
@@ -1465,21 +1516,21 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1465
1516
  namebackside: p.namebackside ? p.namebackside : "",
1466
1517
  bodytextbackside: p.bodytextbackside,
1467
1518
  imagebackside: p.imagebackside ? p.imagebackside : { filename: "", alt: "" },
1468
- size: s.value,
1519
+ size: l.value,
1469
1520
  "image-fit": p.imageFit,
1470
1521
  "image-fit-back": p.imageFitBack
1471
1522
  }, {
1472
1523
  "flashcard-front-body": y(({ bodytext: n }) => [
1473
- c(o.$slots, "flashcard-front-body", M({ ref_for: !0 }, { bodytext: n }), void 0, !0)
1524
+ d(o.$slots, "flashcard-front-body", F({ ref_for: !0 }, { bodytext: n }), void 0, !0)
1474
1525
  ]),
1475
1526
  "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)
1527
+ d(o.$slots, "flashcard-front-image", F({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1477
1528
  ]),
1478
1529
  "flashcard-back-body": y(({ bodytextbackside: n }) => [
1479
- c(o.$slots, "flashcard-back-body", M({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
1530
+ d(o.$slots, "flashcard-back-body", F({ ref_for: !0 }, { bodytextbackside: n }), void 0, !0)
1480
1531
  ]),
1481
1532
  "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)
1533
+ d(o.$slots, "flashcard-back-image", F({ ref_for: !0 }, { src: n, alt: b }), void 0, !0)
1483
1534
  ]),
1484
1535
  _: 2
1485
1536
  }, 1032, ["name", "bodytext", "image", "namebackside", "bodytextbackside", "imagebackside", "size", "image-fit", "image-fit-back"]))), 128))
@@ -1487,7 +1538,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1487
1538
  ])
1488
1539
  ], 2));
1489
1540
  }
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({
1541
+ }), Mo = /* @__PURE__ */ v(Fo, [["__scopeId", "data-v-de3c8751"]]), Oo = { class: "form__content" }, zo = { class: "form__information" }, Ho = { class: "form__headline" }, Ro = { class: "form__body" }, No = { class: "form__script" }, Eo = /* @__PURE__ */ g({
1491
1542
  __name: "form-script",
1492
1543
  props: {
1493
1544
  headline: { default: "" },
@@ -1500,34 +1551,34 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1500
1551
  dark: "form__wrapper--dark",
1501
1552
  light: "form__wrapper--light",
1502
1553
  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])
1554
+ }, r = e, l = q(() => a[r.variant]);
1555
+ return (o, u) => (s(), i("div", {
1556
+ class: h(["form__wrapper", l.value])
1506
1557
  }, [
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)
1558
+ t("div", Oo, [
1559
+ t("div", zo, [
1560
+ t("h2", Ho, c(o.headline), 1),
1561
+ t("div", Ro, [
1562
+ d(o.$slots, "form-body", {}, void 0, !0)
1512
1563
  ]),
1513
- o.linkType === "link" ? (l(), T(D, {
1564
+ o.linkType === "link" ? (s(), T(L, {
1514
1565
  key: 0,
1515
1566
  "link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
1516
1567
  arrow: ""
1517
1568
  }, {
1518
1569
  default: y(() => [
1519
- c(o.$slots, "form-link", {}, void 0, !0)
1570
+ d(o.$slots, "form-link", {}, void 0, !0)
1520
1571
  ]),
1521
1572
  _: 3
1522
1573
  }, 8, ["link-type"])) : _("", !0)
1523
1574
  ]),
1524
- t("div", jo, [
1525
- c(o.$slots, "form-script", {}, void 0, !0)
1575
+ t("div", No, [
1576
+ d(o.$slots, "form-script", {}, void 0, !0)
1526
1577
  ])
1527
1578
  ])
1528
1579
  ], 2));
1529
1580
  }
1530
- }), Uo = /* @__PURE__ */ v(Ko, [["__scopeId", "data-v-b8b02bae"]]), Go = { class: "headline__wrapper" }, Jo = { class: "headline__h1" }, Wo = /* @__PURE__ */ g({
1581
+ }), jo = /* @__PURE__ */ v(Eo, [["__scopeId", "data-v-b8b02bae"]]), Go = { class: "headline__wrapper" }, Ko = { class: "headline__h1" }, Uo = /* @__PURE__ */ g({
1531
1582
  __name: "headline",
1532
1583
  props: {
1533
1584
  headline: {
@@ -1544,7 +1595,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1544
1595
  }
1545
1596
  },
1546
1597
  setup(e) {
1547
- return (a, r) => (l(), i("div", Go, [
1598
+ return (a, r) => (s(), i("div", Go, [
1548
1599
  t("div", {
1549
1600
  class: h({
1550
1601
  "headline__content--article-and-submenu": e.article && e.subMenu,
@@ -1553,11 +1604,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1553
1604
  "headline__content--default": !e.article && !e.subMenu
1554
1605
  })
1555
1606
  }, [
1556
- t("h1", Jo, d(e.headline), 1)
1607
+ t("h1", Ko, c(e.headline), 1)
1557
1608
  ], 2)
1558
1609
  ]));
1559
1610
  }
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({
1611
+ }), Jo = /* @__PURE__ */ v(Uo, [["__scopeId", "data-v-3ef1567e"]]), Wo = (e) => (H("data-v-22f9be13"), e = e(), R(), e), Yo = { class: "hero__wrapper" }, Qo = { class: "hero__content" }, Zo = { class: "hero__top" }, Xo = { class: "hero__elements" }, xo = { class: "hero__headline" }, el = { class: "hero__link" }, tl = { class: "hero__video" }, al = /* @__PURE__ */ Wo(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), ol = { class: "hero__video__video" }, ll = { class: "hero__image" }, sl = /* @__PURE__ */ g({
1561
1612
  __name: "hero",
1562
1613
  props: {
1563
1614
  headline: {
@@ -1566,39 +1617,39 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1566
1617
  }
1567
1618
  },
1568
1619
  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)
1620
+ return (a, r) => (s(), i("div", Yo, [
1621
+ t("div", Qo, [
1622
+ t("div", Zo, [
1623
+ t("div", Xo, [
1624
+ t("div", xo, [
1625
+ t("h1", null, c(e.headline), 1)
1575
1626
  ]),
1576
- t("div", as, [
1577
- S(D, {
1627
+ t("div", el, [
1628
+ S(L, {
1578
1629
  "link-type": "regular_light",
1579
1630
  arrow: ""
1580
1631
  }, {
1581
1632
  default: y(() => [
1582
- c(a.$slots, "hero-link", {}, void 0, !0)
1633
+ d(a.$slots, "hero-link", {}, void 0, !0)
1583
1634
  ]),
1584
1635
  _: 3
1585
1636
  })
1586
1637
  ])
1587
1638
  ])
1588
1639
  ]),
1589
- t("div", os, [
1590
- ss,
1591
- t("div", ls, [
1592
- c(a.$slots, "hero-video", {}, void 0, !0)
1640
+ t("div", tl, [
1641
+ al,
1642
+ t("div", ol, [
1643
+ d(a.$slots, "hero-video", {}, void 0, !0)
1593
1644
  ]),
1594
- t("div", is, [
1595
- c(a.$slots, "hero-image", {}, void 0, !0)
1645
+ t("div", ll, [
1646
+ d(a.$slots, "hero-image", {}, void 0, !0)
1596
1647
  ])
1597
1648
  ])
1598
1649
  ])
1599
1650
  ]));
1600
1651
  }
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({
1652
+ }), il = /* @__PURE__ */ v(sl, [["__scopeId", "data-v-22f9be13"]]), rl = { class: "image__wrapper" }, nl = { class: "image__content" }, dl = { class: "image__image" }, cl = { class: "image__caption" }, ul = /* @__PURE__ */ g({
1602
1653
  inheritAttrs: !1,
1603
1654
  __name: "image",
1604
1655
  props: {
@@ -1622,12 +1673,12 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1622
1673
  }
1623
1674
  },
1624
1675
  setup(e) {
1625
- return (a, r) => (l(), i("div", ds, [
1626
- t("div", cs, [
1627
- t("div", us, [
1628
- S(F, null, {
1676
+ return (a, r) => (s(), i("div", rl, [
1677
+ t("div", nl, [
1678
+ t("div", dl, [
1679
+ S(M, null, {
1629
1680
  default: y(() => [
1630
- c(a.$slots, "image", O(z({
1681
+ d(a.$slots, "image", O(z({
1631
1682
  width: 984,
1632
1683
  height: e.fullHeight ? "100%" : 554,
1633
1684
  src: e.src,
@@ -1638,17 +1689,17 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1638
1689
  _: 3
1639
1690
  })
1640
1691
  ]),
1641
- t("p", _s, d(e.caption), 1)
1692
+ t("p", cl, c(e.caption), 1)
1642
1693
  ])
1643
1694
  ]));
1644
1695
  }
1645
- }), ps = /* @__PURE__ */ v(hs, [["__scopeId", "data-v-c583d657"]]), ms = { class: "gallery__large" }, fs = {
1696
+ }), _l = /* @__PURE__ */ v(ul, [["__scopeId", "data-v-c583d657"]]), hl = { class: "gallery__large" }, pl = {
1646
1697
  key: 0,
1647
1698
  class: "image image--large"
1648
- }, vs = {
1699
+ }, ml = {
1649
1700
  key: 1,
1650
1701
  class: "video"
1651
- }, gs = /* @__PURE__ */ g({
1702
+ }, fl = /* @__PURE__ */ g({
1652
1703
  __name: "image-gallery",
1653
1704
  props: {
1654
1705
  mediaLarge: {},
@@ -1666,9 +1717,9 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1666
1717
  white: "",
1667
1718
  light: "gallery__wrapper--light",
1668
1719
  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])
1720
+ }, r = e, l = q(() => a[r.bgColor]);
1721
+ return (o, u) => (s(), i("div", {
1722
+ class: h(["gallery__wrapper", l.value])
1672
1723
  }, [
1673
1724
  t("div", {
1674
1725
  class: h([
@@ -1676,11 +1727,11 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1676
1727
  o.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
1677
1728
  ])
1678
1729
  }, [
1679
- t("div", ms, [
1680
- o.mediaLarge && o.mediaType === "image" ? (l(), i("div", fs, [
1681
- S(F, null, {
1730
+ t("div", hl, [
1731
+ o.mediaLarge && o.mediaType === "image" ? (s(), i("div", pl, [
1732
+ S(M, null, {
1682
1733
  default: y(() => [
1683
- c(o.$slots, "image-large", O(z({
1734
+ d(o.$slots, "image-large", O(z({
1684
1735
  width: 617,
1685
1736
  height: 530,
1686
1737
  src: o.mediaLarge.src,
@@ -1690,7 +1741,7 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1690
1741
  _: 3
1691
1742
  })
1692
1743
  ])) : _("", !0),
1693
- o.mediaLarge && o.mediaType === "video" ? (l(), i("div", vs, [
1744
+ o.mediaLarge && o.mediaType === "video" ? (s(), i("div", ml, [
1694
1745
  S(te, {
1695
1746
  src: o.mediaLarge.src,
1696
1747
  "local-video": "",
@@ -1712,13 +1763,13 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1712
1763
  o.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
1713
1764
  ])
1714
1765
  }, [
1715
- (l(!0), i(V, null, P(o.mediaSmall, (p) => (l(), i("div", {
1766
+ (s(!0), i(V, null, P(o.mediaSmall, (p) => (s(), i("div", {
1716
1767
  key: p.src + p.alt,
1717
1768
  class: "image image--small"
1718
1769
  }, [
1719
- S(F, null, {
1770
+ S(M, null, {
1720
1771
  default: y(() => [
1721
- c(o.$slots, "image-small", M({ ref_for: !0 }, {
1772
+ d(o.$slots, "image-small", F({ ref_for: !0 }, {
1722
1773
  width: 328,
1723
1774
  height: 246,
1724
1775
  src: p.src,
@@ -1728,18 +1779,18 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1728
1779
  _: 2
1729
1780
  }, 1024)
1730
1781
  ]))), 128)),
1731
- o.mediaSmall.length < 2 ? (l(), i("div", {
1782
+ o.mediaSmall.length < 2 ? (s(), i("div", {
1732
1783
  key: 0,
1733
1784
  class: h(["body", o.bgColor === "dark" ? "body--dark" : ""])
1734
1785
  }, [
1735
- t("p", null, d(o.body), 1),
1736
- o.linkType === "link" ? (l(), T(D, {
1786
+ t("p", null, c(o.body), 1),
1787
+ o.linkType === "link" ? (s(), T(L, {
1737
1788
  key: 0,
1738
1789
  "link-type": o.bgColor === "dark" ? "regular_dark" : (o.bgColor === "light", "regular_light"),
1739
1790
  arrow: ""
1740
1791
  }, {
1741
1792
  default: y(() => [
1742
- c(o.$slots, "gallery-link")
1793
+ d(o.$slots, "gallery-link")
1743
1794
  ]),
1744
1795
  _: 3
1745
1796
  }, 8, ["link-type"])) : _("", !0)
@@ -1748,10 +1799,10 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1748
1799
  ], 2)
1749
1800
  ], 2));
1750
1801
  }
1751
- }), bs = /* @__PURE__ */ v(gs, [["__scopeId", "data-v-ae1f41d4"]]), ys = { class: "logo-wall__wrapper" }, ks = { class: "logo-wall__content" }, $s = {
1802
+ }), vl = /* @__PURE__ */ v(fl, [["__scopeId", "data-v-ae1f41d4"]]), gl = { class: "logo-wall__wrapper" }, bl = { class: "logo-wall__content" }, yl = {
1752
1803
  key: 0,
1753
1804
  class: "logo-wall__text"
1754
- }, ws = { key: 0 }, Bs = { key: 1 }, Ss = { class: "logo-wall__logos" }, Is = { class: "logo-wall__link" }, Cs = /* @__PURE__ */ g({
1805
+ }, kl = { key: 0 }, $l = { key: 1 }, wl = { class: "logo-wall__logos" }, Bl = { class: "logo-wall__link" }, Sl = /* @__PURE__ */ g({
1755
1806
  __name: "logo-wall",
1756
1807
  props: {
1757
1808
  headline: {
@@ -1769,37 +1820,37 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1769
1820
  }
1770
1821
  },
1771
1822
  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)
1823
+ return (a, r) => (s(), i("div", gl, [
1824
+ t("div", bl, [
1825
+ e.headline || e.body ? (s(), i("div", yl, [
1826
+ e.headline ? (s(), i("h2", kl, c(e.headline), 1)) : _("", !0),
1827
+ e.body ? (s(), i("p", $l, c(e.body), 1)) : _("", !0)
1777
1828
  ])) : _("", !0),
1778
- t("div", Ss, [
1779
- (l(!0), i(V, null, P(e.logos, (s) => (l(), i("div", {
1780
- key: s.src + s.alt,
1829
+ t("div", wl, [
1830
+ (s(!0), i(V, null, P(e.logos, (l) => (s(), i("div", {
1831
+ key: l.src + l.alt,
1781
1832
  class: "logo-wall__logo"
1782
1833
  }, [
1783
- S(F, null, {
1834
+ S(M, null, {
1784
1835
  default: y(() => [
1785
- c(a.$slots, "logo-wall-logo", M({ ref_for: !0 }, {
1836
+ d(a.$slots, "logo-wall-logo", F({ ref_for: !0 }, {
1786
1837
  width: 130,
1787
1838
  height: 130,
1788
- src: s.src,
1789
- alt: s.alt
1839
+ src: l.src,
1840
+ alt: l.alt
1790
1841
  }), void 0, !0)
1791
1842
  ]),
1792
1843
  _: 2
1793
1844
  }, 1024)
1794
1845
  ]))), 128))
1795
1846
  ]),
1796
- t("div", Is, [
1797
- S(D, {
1847
+ t("div", Bl, [
1848
+ S(L, {
1798
1849
  "link-type": "regular_light",
1799
1850
  arrow: !0
1800
1851
  }, {
1801
1852
  default: y(() => [
1802
- c(a.$slots, "logo-wall-link", {}, void 0, !0)
1853
+ d(a.$slots, "logo-wall-link", {}, void 0, !0)
1803
1854
  ]),
1804
1855
  _: 3
1805
1856
  })
@@ -1807,13 +1858,13 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1807
1858
  ])
1808
1859
  ]));
1809
1860
  }
1810
- }), qs = /* @__PURE__ */ v(Cs, [["__scopeId", "data-v-fd489289"]]), Ts = { class: "micro-stories__top" }, As = {
1861
+ }), Il = /* @__PURE__ */ v(Sl, [["__scopeId", "data-v-fd489289"]]), Cl = { class: "micro-stories__top" }, Tl = {
1811
1862
  key: 0,
1812
1863
  class: "micro-stories__headline"
1813
- }, Ls = {
1864
+ }, ql = {
1814
1865
  key: 1,
1815
1866
  class: "micro-stories__body"
1816
- }, Ds = { class: "micro-stories__splide" }, Vs = /* @__PURE__ */ g({
1867
+ }, Al = { class: "micro-stories__splide" }, Ll = /* @__PURE__ */ g({
1817
1868
  __name: "micro-stories",
1818
1869
  props: {
1819
1870
  bgColor: { default: "blue" },
@@ -1825,39 +1876,39 @@ const Ae = ["aria-label"], Le = /* @__PURE__ */ g({
1825
1876
  white: "micro-stories__wrapper--white",
1826
1877
  blue: "micro-stories__wrapper--blue",
1827
1878
  dark: "micro-stories__wrapper--dark"
1828
- }, r = q(() => a[s.bgColor]), s = e;
1829
- return (o, u) => (l(), i("div", {
1879
+ }, r = q(() => a[l.bgColor]), l = e;
1880
+ return (o, u) => (s(), i("div", {
1830
1881
  class: h(["micro-stories__wrapper", r.value])
1831
1882
  }, [
1832
- t("div", Ts, [
1833
- o.headline ? (l(), i("div", As, [
1834
- t("h2", null, d(o.headline), 1)
1883
+ t("div", Cl, [
1884
+ o.headline ? (s(), i("div", Tl, [
1885
+ t("h2", null, c(o.headline), 1)
1835
1886
  ])) : _("", !0),
1836
- o.body ? (l(), i("div", Ls, [
1837
- c(o.$slots, "micro-stories-body")
1887
+ o.body ? (s(), i("div", ql, [
1888
+ d(o.$slots, "micro-stories-body")
1838
1889
  ])) : _("", !0)
1839
1890
  ]),
1840
- t("div", Ds, [
1841
- c(o.$slots, "micro-stories-slides")
1891
+ t("div", Al, [
1892
+ d(o.$slots, "micro-stories-slides")
1842
1893
  ]),
1843
- c(o.$slots, "micro-stories-controls")
1894
+ d(o.$slots, "micro-stories-controls")
1844
1895
  ], 2));
1845
1896
  }
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)
1897
+ }), Dl = {}, Vl = { class: "policy__wrapper" }, Pl = { class: "policy__content" };
1898
+ function Fl(e, a) {
1899
+ return s(), i("div", Vl, [
1900
+ t("div", Pl, [
1901
+ d(e.$slots, "default", {}, void 0, !0)
1851
1902
  ])
1852
1903
  ]);
1853
1904
  }
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 = {
1905
+ const Ml = /* @__PURE__ */ v(Dl, [["render", Fl], ["__scopeId", "data-v-ea887d7a"]]), Ol = { class: "product-hero__wrapper" }, zl = { class: "product-hero__content" }, Hl = { class: "product-hero__headline" }, Rl = { class: "product-hero__video" }, Nl = { class: "product-hero__insignia" }, El = {
1855
1906
  key: 0,
1856
1907
  class: "product-hero__logo"
1857
- }, Us = {
1908
+ }, jl = {
1858
1909
  key: 1,
1859
1910
  class: "product-hero__certification"
1860
- }, Gs = /* @__PURE__ */ g({
1911
+ }, Gl = /* @__PURE__ */ g({
1861
1912
  __name: "product-hero",
1862
1913
  props: {
1863
1914
  headline: {
@@ -1892,11 +1943,11 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
1892
1943
  }
1893
1944
  },
1894
1945
  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, {
1946
+ return (a, r) => (s(), i("div", Ol, [
1947
+ t("div", zl, [
1948
+ t("div", Hl, c(e.headline), 1),
1949
+ t("div", Rl, [
1950
+ e.videoSrc !== "" ? (s(), T(te, {
1900
1951
  key: 0,
1901
1952
  play: "",
1902
1953
  "local-video": !0,
@@ -1907,25 +1958,25 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
1907
1958
  autoplay: "",
1908
1959
  loop: "",
1909
1960
  muted: ""
1910
- }, null, 8, ["src", "aria-label", "poster"])) : (l(), T(I(F), { key: 1 }, {
1961
+ }, null, 8, ["src", "aria-label", "poster"])) : (s(), T(I(M), { key: 1 }, {
1911
1962
  default: y(() => [
1912
- c(a.$slots, "product-hero-image", {}, void 0, !0)
1963
+ d(a.$slots, "product-hero-image", {}, void 0, !0)
1913
1964
  ]),
1914
1965
  _: 3
1915
1966
  })),
1916
- t("div", js, [
1917
- e.logoSrc ? (l(), i("div", Ks, [
1918
- S(I(F), null, {
1967
+ t("div", Nl, [
1968
+ e.logoSrc ? (s(), i("div", El, [
1969
+ S(I(M), null, {
1919
1970
  default: y(() => [
1920
- c(a.$slots, "product-hero-logo", {}, void 0, !0)
1971
+ d(a.$slots, "product-hero-logo", {}, void 0, !0)
1921
1972
  ]),
1922
1973
  _: 3
1923
1974
  })
1924
1975
  ])) : _("", !0),
1925
- e.isCertified ? (l(), i("div", Us, [
1926
- S(I(F), null, {
1976
+ e.isCertified ? (s(), i("div", jl, [
1977
+ S(I(M), null, {
1927
1978
  default: y(() => [
1928
- c(a.$slots, "product-hero-certification", {}, void 0, !0)
1979
+ d(a.$slots, "product-hero-certification", {}, void 0, !0)
1929
1980
  ]),
1930
1981
  _: 3
1931
1982
  })
@@ -1935,7 +1986,7 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
1935
1986
  ])
1936
1987
  ]));
1937
1988
  }
1938
- }), Js = /* @__PURE__ */ v(Gs, [["__scopeId", "data-v-deab9c3a"]]), Ws = { class: "promo__content" }, Ys = /* @__PURE__ */ g({
1989
+ }), Kl = /* @__PURE__ */ v(Gl, [["__scopeId", "data-v-deab9c3a"]]), Ul = { class: "promo__content" }, Jl = /* @__PURE__ */ g({
1939
1990
  __name: "promo",
1940
1991
  props: {
1941
1992
  label: { default: "" },
@@ -1955,31 +2006,31 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
1955
2006
  dark: "promo__wrapper--dark",
1956
2007
  light: "promo__wrapper--light",
1957
2008
  default: "promo__wrapper--default"
1958
- }, r = e, s = q(() => a[r.variant]);
1959
- return (o, u) => (l(), i("div", {
2009
+ }, r = e, l = q(() => a[r.variant]);
2010
+ return (o, u) => (s(), i("div", {
1960
2011
  class: h([
1961
2012
  "promo__wrapper",
1962
- s.value,
2013
+ l.value,
1963
2014
  o.teaser ? "promo__wrapper--teaser" : "",
1964
2015
  o.multiply ? "promo__wrapper--multiply" : ""
1965
2016
  ])
1966
2017
  }, [
1967
- t("div", Ws, [
1968
- o.mediaType === "image" ? (l(), i("div", {
2018
+ t("div", Ul, [
2019
+ o.mediaType === "image" ? (s(), i("div", {
1969
2020
  key: 0,
1970
2021
  class: h([
1971
2022
  "promo__image",
1972
2023
  o.reverse ? "promo__image--reverse" : "promo__image--default"
1973
2024
  ])
1974
2025
  }, [
1975
- S(F, null, {
2026
+ S(M, null, {
1976
2027
  default: y(() => [
1977
- c(o.$slots, "promo-image", O(z({ src: o.src, width: 1920, alt: o.alt, height: 1080 })))
2028
+ d(o.$slots, "promo-image", O(z({ src: o.src, width: 1920, alt: o.alt, height: 1080 })))
1978
2029
  ]),
1979
2030
  _: 3
1980
2031
  })
1981
2032
  ], 2)) : _("", !0),
1982
- o.mediaType === "video" ? (l(), i("div", {
2033
+ o.mediaType === "video" ? (s(), i("div", {
1983
2034
  key: 1,
1984
2035
  class: h([
1985
2036
  "promo__video",
@@ -2004,7 +2055,7 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2004
2055
  o.reverse ? "promo__text--reverse" : "promo__text--default"
2005
2056
  ])
2006
2057
  }, [
2007
- o.label ? (l(), T(X, {
2058
+ o.label ? (s(), T(X, {
2008
2059
  key: 0,
2009
2060
  text: o.label,
2010
2061
  "label-dark": o.variant === "dark"
@@ -2015,24 +2066,24 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2015
2066
  o.variant === "dark" ? "promo__title--dark" : ""
2016
2067
  ])
2017
2068
  }, [
2018
- c(o.$slots, "promo-headline")
2069
+ d(o.$slots, "promo-headline")
2019
2070
  ], 2),
2020
- o.linkType === "link" ? (l(), T(D, {
2071
+ o.linkType === "link" ? (s(), T(L, {
2021
2072
  key: 1,
2022
2073
  "link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
2023
2074
  arrow: ""
2024
2075
  }, {
2025
2076
  default: y(() => [
2026
- c(o.$slots, "promo-link")
2077
+ d(o.$slots, "promo-link")
2027
2078
  ]),
2028
2079
  _: 3
2029
2080
  }, 8, ["link-type"])) : _("", !0),
2030
- o.linkType === "button" ? (l(), T(D, {
2081
+ o.linkType === "button" ? (s(), T(L, {
2031
2082
  key: 2,
2032
2083
  "link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
2033
2084
  }, {
2034
2085
  default: y(() => [
2035
- c(o.$slots, "promo-link")
2086
+ d(o.$slots, "promo-link")
2036
2087
  ]),
2037
2088
  _: 3
2038
2089
  }, 8, ["link-type"])) : _("", !0)
@@ -2040,10 +2091,10 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2040
2091
  ])
2041
2092
  ], 2));
2042
2093
  }
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 = {
2094
+ }), Wl = /* @__PURE__ */ v(Jl, [["__scopeId", "data-v-df54d965"]]), Yl = (e) => (H("data-v-e3cc8e27"), e = e(), R(), e), Ql = { class: "quote__wrapper" }, Zl = { class: "quote__content" }, Xl = /* @__PURE__ */ Yl(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), xl = { class: "quote__quote" }, es = { class: "quote__quote-text" }, ts = { class: "quote__author" }, as = {
2044
2095
  key: 0,
2045
2096
  class: "quote__image"
2046
- }, ll = { class: "quote__text" }, il = { class: "quote__author-name" }, rl = { class: "quote__author-title" }, nl = /* @__PURE__ */ g({
2097
+ }, os = { class: "quote__text" }, ls = { class: "quote__author-name" }, ss = { class: "quote__author-title" }, is = /* @__PURE__ */ g({
2047
2098
  __name: "quote",
2048
2099
  props: {
2049
2100
  quote: {
@@ -2065,16 +2116,16 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2065
2116
  }
2066
2117
  },
2067
2118
  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, {
2119
+ return (a, r) => (s(), i("div", Ql, [
2120
+ t("div", Zl, [
2121
+ Xl,
2122
+ t("div", xl, [
2123
+ t("p", es, c(e.quote), 1),
2124
+ t("div", ts, [
2125
+ e.authorImage ? (s(), i("div", as, [
2126
+ S(M, null, {
2076
2127
  default: y(() => [
2077
- c(a.$slots, "author-image", O(z({
2128
+ d(a.$slots, "author-image", O(z({
2078
2129
  src: e.authorImage + "/m/100x100",
2079
2130
  width: 60,
2080
2131
  height: 60
@@ -2083,22 +2134,22 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2083
2134
  _: 3
2084
2135
  })
2085
2136
  ])) : _("", !0),
2086
- t("div", ll, [
2087
- t("p", il, d(e.author), 1),
2088
- t("p", rl, d(e.authorTitle), 1)
2137
+ t("div", os, [
2138
+ t("p", ls, c(e.author), 1),
2139
+ t("p", ss, c(e.authorTitle), 1)
2089
2140
  ])
2090
2141
  ])
2091
2142
  ])
2092
2143
  ])
2093
2144
  ]));
2094
2145
  }
2095
- }), dl = /* @__PURE__ */ v(nl, [["__scopeId", "data-v-e3cc8e27"]]), cl = { class: "rich-text__wrapper" }, ul = {
2146
+ }), rs = /* @__PURE__ */ v(is, [["__scopeId", "data-v-e3cc8e27"]]), ns = { class: "rich-text__wrapper" }, ds = {
2096
2147
  key: 0,
2097
2148
  class: "rich-text__links"
2098
- }, _l = {
2149
+ }, cs = {
2099
2150
  key: 0,
2100
2151
  class: "rich-text__bullet-list"
2101
- }, hl = /* @__PURE__ */ g({
2152
+ }, us = /* @__PURE__ */ g({
2102
2153
  __name: "rich-text",
2103
2154
  props: {
2104
2155
  headline: { default: "" },
@@ -2111,25 +2162,25 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2111
2162
  label: { default: "" }
2112
2163
  },
2113
2164
  setup(e) {
2114
- return (a, r) => (l(), i("div", {
2165
+ return (a, r) => (s(), i("div", {
2115
2166
  class: h([
2116
2167
  "rich-text",
2117
2168
  a.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
2118
2169
  ])
2119
2170
  }, [
2120
- t("div", cl, [
2121
- a.label ? (l(), T(X, {
2171
+ t("div", ns, [
2172
+ a.label ? (s(), T(X, {
2122
2173
  key: 0,
2123
2174
  text: a.label,
2124
2175
  "label-dark": !1
2125
2176
  }, null, 8, ["text"])) : _("", !0),
2126
- a.headline ? (l(), i("h2", {
2177
+ a.headline ? (s(), i("h2", {
2127
2178
  key: 1,
2128
2179
  class: h([
2129
2180
  "rich-text__headline",
2130
2181
  a.leftAligned || a.bulletList || a.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
2131
2182
  ])
2132
- }, d(a.headline), 3)) : _("", !0),
2183
+ }, c(a.headline), 3)) : _("", !0),
2133
2184
  t("div", {
2134
2185
  class: h([
2135
2186
  "rich-text__content",
@@ -2142,24 +2193,24 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2142
2193
  a.bulletList || a.image ? "rich-text__body--content-right" : ""
2143
2194
  ])
2144
2195
  }, [
2145
- c(a.$slots, "rich-text-content"),
2146
- a.links ? (l(), i("div", ul, [
2147
- c(a.$slots, "rich-text-links")
2196
+ d(a.$slots, "rich-text-content"),
2197
+ a.links ? (s(), i("div", ds, [
2198
+ d(a.$slots, "rich-text-links")
2148
2199
  ])) : _("", !0)
2149
2200
  ], 2),
2150
- a.bulletList ? (l(), i("div", _l, [
2151
- c(a.$slots, "rich-text-bullet-list")
2201
+ a.bulletList ? (s(), i("div", cs, [
2202
+ d(a.$slots, "rich-text-bullet-list")
2152
2203
  ])) : _("", !0),
2153
- a.image ? (l(), i("div", {
2204
+ a.image ? (s(), i("div", {
2154
2205
  key: 1,
2155
2206
  class: h([
2156
2207
  "rich-text__image",
2157
2208
  a.imageClip ? "rich-text__image--clip" : ""
2158
2209
  ])
2159
2210
  }, [
2160
- S(F, null, {
2211
+ S(M, null, {
2161
2212
  default: y(() => [
2162
- c(a.$slots, "rich-text-image", O(z({ width: 865, height: 307 })))
2213
+ d(a.$slots, "rich-text-image", O(z({ width: 865, height: 307 })))
2163
2214
  ]),
2164
2215
  _: 3
2165
2216
  })
@@ -2168,27 +2219,27 @@ const zs = /* @__PURE__ */ v(Ps, [["render", Os], ["__scopeId", "data-v-ea887d7a
2168
2219
  ])
2169
2220
  ], 2));
2170
2221
  }
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, [
2222
+ }), _s = /* @__PURE__ */ v(us, [["__scopeId", "data-v-5441d67a"]]), hs = {}, ps = { class: "rich-text" }, ms = { class: "rich-text__wrapper" }, fs = { class: "rich-text__content rich-text__content--left-aligned" }, vs = { class: "rich-text__body" };
2223
+ function gs(e, a) {
2224
+ return s(), i("div", ps, [
2225
+ t("div", ms, [
2226
+ t("div", fs, [
2227
+ t("div", vs, [
2177
2228
  t("div", null, [
2178
- c(e.$slots, "rich-text-content-left", {}, void 0, !0)
2229
+ d(e.$slots, "rich-text-content-left", {}, void 0, !0)
2179
2230
  ]),
2180
2231
  t("div", null, [
2181
- c(e.$slots, "rich-text-content-right", {}, void 0, !0)
2232
+ d(e.$slots, "rich-text-content-right", {}, void 0, !0)
2182
2233
  ])
2183
2234
  ])
2184
2235
  ])
2185
2236
  ])
2186
2237
  ]);
2187
2238
  }
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" }, [
2239
+ const bs = /* @__PURE__ */ v(hs, [["render", gs], ["__scopeId", "data-v-776750d2"]]), ys = (e) => (H("data-v-798e7a06"), e = e(), R(), e), ks = { class: "timeline__wrapper" }, $s = { class: "timeline__content" }, ws = { class: "timeline__items" }, Bs = { class: "item__left" }, Ss = /* @__PURE__ */ ys(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
2189
2240
  /* @__PURE__ */ t("div", { class: "circle" }),
2190
2241
  /* @__PURE__ */ t("div", { class: "line" })
2191
- ], -1)), ql = { class: "item__right" }, Tl = ["innerHTML"], Al = /* @__PURE__ */ g({
2242
+ ], -1)), Is = { class: "item__right" }, Cs = ["innerHTML"], Ts = /* @__PURE__ */ g({
2192
2243
  __name: "timeline",
2193
2244
  props: {
2194
2245
  timelineItems: {
@@ -2199,8 +2250,8 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2199
2250
  setup(e) {
2200
2251
  return me(() => {
2201
2252
  const a = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
2202
- (s) => {
2203
- s.forEach((o) => {
2253
+ (l) => {
2254
+ l.forEach((o) => {
2204
2255
  o.isIntersecting && (o.target.classList.add("visible"), o.target.classList.remove("faded"), r.unobserve(o.target));
2205
2256
  });
2206
2257
  },
@@ -2208,46 +2259,46 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2208
2259
  threshold: 1
2209
2260
  }
2210
2261
  );
2211
- a.forEach((s) => {
2212
- r.observe(s);
2262
+ a.forEach((l) => {
2263
+ r.observe(l);
2213
2264
  });
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,
2265
+ }), (a, r) => (s(), i("div", ks, [
2266
+ t("div", $s, [
2267
+ t("div", ws, [
2268
+ (s(!0), i(V, null, P(e.timelineItems, (l) => (s(), i("div", {
2269
+ key: l.year,
2219
2270
  class: "timeline__item faded"
2220
2271
  }, [
2221
- t("div", Il, d(s.year), 1),
2222
- Cl,
2223
- t("div", ql, [
2224
- S(F, null, {
2272
+ t("div", Bs, c(l.year), 1),
2273
+ Ss,
2274
+ t("div", Is, [
2275
+ S(M, null, {
2225
2276
  default: y(() => [
2226
- s.media.src ? c(a.$slots, "timeline-image", M({
2277
+ l.media.src ? d(a.$slots, "timeline-image", F({
2227
2278
  key: 0,
2228
2279
  ref_for: !0
2229
- }, { src: s.media.src, alt: s.media.alt }), void 0, !0) : _("", !0)
2280
+ }, { src: l.media.src, alt: l.media.alt }), void 0, !0) : _("", !0)
2230
2281
  ]),
2231
2282
  _: 2
2232
2283
  }, 1024),
2233
2284
  t("div", {
2234
- style: ee([s.media.src ? "" : "margin-top: 0px"]),
2285
+ style: ee([l.media.src ? "" : "margin-top: 0px"]),
2235
2286
  class: "rich-text",
2236
- innerHTML: s.text
2237
- }, null, 12, Tl)
2287
+ innerHTML: l.text
2288
+ }, null, 12, Cs)
2238
2289
  ])
2239
2290
  ]))), 128))
2240
2291
  ])
2241
2292
  ])
2242
2293
  ]));
2243
2294
  }
2244
- }), Ll = /* @__PURE__ */ v(Al, [["__scopeId", "data-v-798e7a06"]]), Dl = { class: "vimeo" }, Vl = { class: "vimeo__wrapper" }, Pl = {
2295
+ }), qs = /* @__PURE__ */ v(Ts, [["__scopeId", "data-v-798e7a06"]]), As = { class: "vimeo" }, Ls = { class: "vimeo__wrapper" }, Ds = {
2245
2296
  key: 0,
2246
2297
  class: "vimeo__headline"
2247
- }, Fl = {
2298
+ }, Vs = {
2248
2299
  key: 1,
2249
2300
  class: "vimeo__description"
2250
- }, Ml = /* @__PURE__ */ g({
2301
+ }, Ps = /* @__PURE__ */ g({
2251
2302
  __name: "vimeo",
2252
2303
  props: {
2253
2304
  headline: {
@@ -2260,18 +2311,18 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2260
2311
  }
2261
2312
  },
2262
2313
  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)
2314
+ return (a, r) => (s(), i("div", As, [
2315
+ t("div", Ls, [
2316
+ e.headline ? (s(), i("h2", Ds, c(e.headline), 1)) : _("", !0),
2317
+ d(a.$slots, "vimeo-content", {}, void 0, !0),
2318
+ e.description ? (s(), i("p", Vs, c(e.description), 1)) : _("", !0)
2268
2319
  ])
2269
2320
  ]));
2270
2321
  }
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 = {
2322
+ }), Fs = /* @__PURE__ */ v(Ps, [["__scopeId", "data-v-90a2b109"]]), Ms = { class: "academy-overview" }, Os = { class: "academy-overview__content-wrapper" }, zs = { class: "academy-overview__content" }, Hs = { class: "academy-overview__title" }, Rs = { class: "academy-overview__description" }, Ns = { class: "academy-overview__button-wrapper" }, Es = {
2272
2323
  key: 0,
2273
2324
  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({
2325
+ }, js = { class: "academy-overview__stats-row" }, Gs = { class: "academy-overview__stat" }, Ks = { class: "academy-overview__value" }, Us = { class: "academy-overview__label" }, Js = { class: "academy-overview__stat" }, Ws = { class: "academy-overview__value" }, Ys = { class: "academy-overview__label" }, Qs = /* @__PURE__ */ g({
2275
2326
  __name: "frontpage-hero",
2276
2327
  props: {
2277
2328
  hero: { default: () => ({
@@ -2285,25 +2336,25 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2285
2336
  }) }
2286
2337
  },
2287
2338
  setup(e) {
2288
- return (a, r) => (l(), i("div", zl, [
2289
- t("div", Hl, [
2290
- t("div", Rl, [
2339
+ return (a, r) => (s(), i("div", Ms, [
2340
+ t("div", Os, [
2341
+ t("div", zs, [
2291
2342
  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)
2343
+ t("h1", Hs, c(a.hero.headline), 1),
2344
+ t("p", Rs, c(a.hero.description), 1),
2345
+ t("div", Ns, [
2346
+ d(a.$slots, "button", {}, void 0, !0)
2296
2347
  ])
2297
2348
  ]),
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)
2349
+ a.hero.showStats ? (s(), i("div", Es, [
2350
+ t("div", js, [
2351
+ t("div", Gs, [
2352
+ t("div", Ks, c(a.hero.lessonValue), 1),
2353
+ t("div", Us, c(a.hero.lessonLabel), 1)
2303
2354
  ]),
2304
- t("div", Yl, [
2305
- t("div", Ql, d(a.hero.pointsValue), 1),
2306
- t("div", Zl, d(a.hero.pointsLabel), 1)
2355
+ t("div", Js, [
2356
+ t("div", Ws, c(a.hero.pointsValue), 1),
2357
+ t("div", Ys, c(a.hero.pointsLabel), 1)
2307
2358
  ])
2308
2359
  ])
2309
2360
  ])) : _("", !0)
@@ -2311,7 +2362,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2311
2362
  ])
2312
2363
  ]));
2313
2364
  }
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({
2365
+ }), Zs = /* @__PURE__ */ v(Qs, [["__scopeId", "data-v-1594f3e8"]]), Xs = { class: "not-found__wrapper" }, xs = { class: "not-found__content" }, ei = { class: "not-found__headline" }, ti = { class: "not-found__body" }, ai = /* @__PURE__ */ g({
2315
2366
  __name: "404",
2316
2367
  props: {
2317
2368
  headline: {
@@ -2320,16 +2371,16 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2320
2371
  }
2321
2372
  },
2322
2373
  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)
2374
+ return (a, r) => (s(), i("div", Xs, [
2375
+ t("div", xs, [
2376
+ t("h1", ei, c(e.headline), 1),
2377
+ t("div", ti, [
2378
+ d(a.$slots, "not-found-body", {}, void 0, !0)
2328
2379
  ])
2329
2380
  ])
2330
2381
  ]));
2331
2382
  }
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({
2383
+ }), oi = /* @__PURE__ */ v(ai, [["__scopeId", "data-v-b829ca6c"]]), li = { class: "filter__wrapper" }, si = { class: "filter__content" }, ii = { class: "filter__dropdowns" }, ri = { class: "filter__chips" }, ni = /* @__PURE__ */ g({
2333
2384
  __name: "filter",
2334
2385
  props: {
2335
2386
  hasChips: {
@@ -2343,53 +2394,53 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2343
2394
  },
2344
2395
  emits: ["clearFilters"],
2345
2396
  setup(e) {
2346
- return (a, r) => (l(), i("div", ii, [
2347
- t("div", ri, [
2348
- t("div", ni, [
2349
- c(a.$slots, "filter-dropdowns")
2397
+ return (a, r) => (s(), i("div", li, [
2398
+ t("div", si, [
2399
+ t("div", ii, [
2400
+ d(a.$slots, "filter-dropdowns")
2350
2401
  ]),
2351
- t("div", di, [
2352
- c(a.$slots, "filter-chips"),
2353
- e.hasChips ? (l(), i("button", {
2402
+ t("div", ri, [
2403
+ d(a.$slots, "filter-chips"),
2404
+ e.hasChips ? (s(), i("button", {
2354
2405
  key: 0,
2355
2406
  class: "filter__clear",
2356
- onClick: r[0] || (r[0] = (s) => a.$emit("clearFilters"))
2357
- }, d(e.removeAll), 1)) : _("", !0)
2407
+ onClick: r[0] || (r[0] = (l) => a.$emit("clearFilters"))
2408
+ }, c(e.removeAll), 1)) : _("", !0)
2358
2409
  ])
2359
2410
  ])
2360
2411
  ]));
2361
2412
  }
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 = {
2413
+ }), di = /* @__PURE__ */ v(ni, [["__scopeId", "data-v-03a6a216"]]), ye = (e) => (H("data-v-a0ab0743"), e = e(), R(), e), ci = { class: "footer__wrapper" }, ui = { class: "footer__content" }, _i = {
2363
2414
  key: 0,
2364
2415
  src: "https://mobile-industrial-robots.com/logo/mir-main-logo.svg",
2365
2416
  style: { margin: "0 auto" },
2366
2417
  width: "101",
2367
2418
  height: "45"
2368
- }, mi = { class: "footer__sections" }, fi = { class: "section__title" }, vi = { class: "section__list" }, gi = { class: "section" }, bi = {
2419
+ }, hi = { class: "footer__sections" }, pi = { class: "section__title" }, mi = { class: "section__list" }, fi = { class: "section" }, vi = {
2369
2420
  key: 0,
2370
2421
  class: "section__title"
2371
- }, yi = {
2422
+ }, gi = {
2372
2423
  key: 1,
2373
2424
  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 = {
2425
+ }, bi = { key: 0 }, yi = { key: 1 }, ki = { key: 2 }, $i = { key: 3 }, wi = { key: 4 }, Bi = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("br", null, null, -1)), Si = {
2375
2426
  key: 0,
2376
2427
  href: "mailto:china@mir-robots.com"
2377
- }, qi = {
2428
+ }, Ii = {
2378
2429
  key: 1,
2379
2430
  href: "mailto:mail@mir-robots.com"
2380
- }, Ti = {
2431
+ }, Ci = {
2381
2432
  key: 0,
2382
2433
  href: "tel:+8613661856951"
2383
- }, Ai = {
2434
+ }, Ti = {
2384
2435
  key: 1,
2385
2436
  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 = {
2437
+ }, qi = { class: "footer__bottom" }, Ai = { class: "copyright" }, Li = { class: "footer__policy" }, Di = /* @__PURE__ */ ye(() => /* @__PURE__ */ t("i", { class: "change-region" }, null, -1)), Vi = {
2387
2438
  key: 0,
2388
2439
  class: "footer__social"
2389
- }, Mi = ["href", "aria-label"], Oi = {
2440
+ }, Pi = ["href", "aria-label"], Fi = {
2390
2441
  key: 1,
2391
2442
  class: "footer__social"
2392
- }, zi = ["href", "aria-label"], Hi = /* @__PURE__ */ g({
2443
+ }, Mi = ["href", "aria-label"], Oi = /* @__PURE__ */ g({
2393
2444
  __name: "footer",
2394
2445
  props: {
2395
2446
  language: { default: "" },
@@ -2402,107 +2453,107 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2402
2453
  },
2403
2454
  emits: ["changeRegionClicked"],
2404
2455
  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,
2456
+ return (a, r) => (s(), i("div", ci, [
2457
+ t("footer", ui, [
2458
+ a.language === "zh" ? (s(), i("img", _i)) : _("", !0),
2459
+ t("div", hi, [
2460
+ (s(!0), i(V, null, P(a.footerSections, (l) => (s(), i("div", {
2461
+ key: l.title,
2411
2462
  class: "section"
2412
2463
  }, [
2413
- t("span", fi, d(s.title), 1),
2464
+ t("span", pi, c(l.title), 1),
2414
2465
  t("nav", null, [
2415
- t("ul", vi, [
2416
- c(a.$slots, "section-links", {
2417
- links: s.links
2466
+ t("ul", mi, [
2467
+ d(a.$slots, "section-links", {
2468
+ links: l.links
2418
2469
  })
2419
2470
  ])
2420
2471
  ])
2421
2472
  ]))), 128)),
2422
- t("div", gi, [
2423
- a.language === "zh" ? (l(), i("span", bi, "名傲移动机器人(上海)有限公司")) : (l(), i("span", yi, "Mobile Industrial Robots A/S")),
2473
+ t("div", fi, [
2474
+ a.language === "zh" ? (s(), i("span", vi, "名傲移动机器人(上海)有限公司")) : (s(), i("span", gi, "Mobile Industrial Robots A/S")),
2424
2475
  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, {
2476
+ a.language === "zh" ? (s(), i("span", bi, "上海浦东新区金桥出口加工区")) : (s(), i("span", yi, "Energivej 51")),
2477
+ a.language === "zh" ? (s(), i("span", ki, "桂桥路1201号10栋2楼")) : (s(), i("span", $i, "5260 Odense S")),
2478
+ a.language !== "zh" ? (s(), i("span", wi, "CVR: 35251235")) : _("", !0),
2479
+ Bi,
2480
+ S(L, {
2430
2481
  class: "footer__contact",
2431
2482
  "link-type": "regular_light",
2432
2483
  underline: "false"
2433
2484
  }, {
2434
2485
  default: y(() => [
2435
- a.language === "zh" ? (l(), i("a", Ci, "china@mir-robots.com")) : (l(), i("a", qi, "mail@mir-robots.com"))
2486
+ a.language === "zh" ? (s(), i("a", Si, "china@mir-robots.com")) : (s(), i("a", Ii, "mail@mir-robots.com"))
2436
2487
  ]),
2437
2488
  _: 1
2438
2489
  }),
2439
- S(D, {
2490
+ S(L, {
2440
2491
  class: "footer__contact",
2441
2492
  "link-type": "regular_light",
2442
2493
  underline: "false"
2443
2494
  }, {
2444
2495
  default: y(() => [
2445
- a.language === "zh" ? (l(), i("a", Ti, "+86 13661856951(微信同号)")) : (l(), i("a", Ai, "+45 20 377 577"))
2496
+ a.language === "zh" ? (s(), i("a", Ci, "+86 13661856951(微信同号)")) : (s(), i("a", Ti, "+45 20 377 577"))
2446
2497
  ]),
2447
2498
  _: 1
2448
2499
  })
2449
2500
  ])
2450
2501
  ])
2451
2502
  ]),
2452
- t("div", Li, [
2453
- t("p", Di, " © Mobile Industrial Robots " + d((/* @__PURE__ */ new Date()).getFullYear()), 1),
2454
- t("div", Vi, [
2503
+ t("div", qi, [
2504
+ t("p", Ai, " © Mobile Industrial Robots " + c((/* @__PURE__ */ new Date()).getFullYear()), 1),
2505
+ t("div", Li, [
2455
2506
  t("button", {
2456
2507
  class: "footer__language-switcher",
2457
- onClick: r[0] || (r[0] = (s) => a.$emit("changeRegionClicked"))
2508
+ onClick: r[0] || (r[0] = (l) => a.$emit("changeRegionClicked"))
2458
2509
  }, [
2459
2510
  t("span", null, [
2460
- Pi,
2461
- J(d(a.changeRegion), 1)
2511
+ Di,
2512
+ J(c(a.changeRegion), 1)
2462
2513
  ])
2463
2514
  ]),
2464
- c(a.$slots, "footer-privacy-link"),
2465
- c(a.$slots, "footer-cookie-link")
2515
+ d(a.$slots, "footer-privacy-link"),
2516
+ d(a.$slots, "footer-cookie-link")
2466
2517
  ]),
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,
2518
+ a.language !== "zh" ? (s(), i("div", Vi, [
2519
+ (s(!0), i(V, null, P(a.socialMedia, (l) => (s(), T(L, {
2520
+ key: l.title,
2470
2521
  underline: "false",
2471
2522
  "link-type": "regular"
2472
2523
  }, {
2473
2524
  default: y(() => [
2474
2525
  t("a", {
2475
- href: s.url,
2526
+ href: l.url,
2476
2527
  target: "_blank",
2477
- "aria-label": s.title
2528
+ "aria-label": l.title
2478
2529
  }, [
2479
2530
  t("i", {
2480
2531
  width: "19",
2481
2532
  height: "14",
2482
- class: h(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
2533
+ class: h(["footer__social--icon", [l.title ? "bg-" + l.title : ""]])
2483
2534
  }, null, 2)
2484
- ], 8, Mi)
2535
+ ], 8, Pi)
2485
2536
  ]),
2486
2537
  _: 2
2487
2538
  }, 1024))), 128))
2488
- ])) : (l(), i("div", Oi, [
2489
- (l(!0), i(V, null, P(a.socialMediaChina, (s) => (l(), T(D, {
2490
- key: s.title,
2539
+ ])) : (s(), i("div", Fi, [
2540
+ (s(!0), i(V, null, P(a.socialMediaChina, (l) => (s(), T(L, {
2541
+ key: l.title,
2491
2542
  underline: "false",
2492
2543
  "link-type": "regular"
2493
2544
  }, {
2494
2545
  default: y(() => [
2495
2546
  t("a", {
2496
- href: s.url,
2547
+ href: l.url,
2497
2548
  target: "_blank",
2498
- "aria-label": s.title
2549
+ "aria-label": l.title
2499
2550
  }, [
2500
2551
  t("i", {
2501
2552
  width: "19",
2502
2553
  height: "14",
2503
- class: h(["footer__social--icon", [s.title ? "bg-" + s.title : ""]])
2554
+ class: h(["footer__social--icon", [l.title ? "bg-" + l.title : ""]])
2504
2555
  }, null, 2)
2505
- ], 8, zi)
2556
+ ], 8, Mi)
2506
2557
  ]),
2507
2558
  _: 2
2508
2559
  }, 1024))), 128))
@@ -2511,7 +2562,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2511
2562
  ])
2512
2563
  ]));
2513
2564
  }
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 = {
2565
+ }), zi = /* @__PURE__ */ v(Oi, [["__scopeId", "data-v-a0ab0743"]]), ke = (e) => (H("data-v-0b00b9f2"), e = e(), R(), e), Hi = { class: "header__wrapper" }, Ri = { class: "nav-wrapper" }, Ni = { class: "mir-link-logo" }, Ei = { class: "main-nav-items" }, ji = {
2515
2566
  key: 0,
2516
2567
  id: "menu-dropdown",
2517
2568
  ref: "dropdownDiv"
@@ -2519,43 +2570,43 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2519
2570
  key: 0,
2520
2571
  src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
2521
2572
  alt: "dropdown arrow"
2522
- }, Ji = {
2573
+ }, Ki = {
2523
2574
  key: 1,
2524
2575
  src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
2525
2576
  alt: "dropdown arrow",
2526
2577
  style: { transform: "rotate(180deg)" }
2527
- }, Wi = { class: "dropdown-content" }, Yi = {
2578
+ }, Ui = { class: "dropdown-content" }, Ji = {
2528
2579
  key: 1,
2529
2580
  class: "nav-search-wrapper"
2530
- }, Qi = ["src"], Zi = {
2581
+ }, Wi = ["src"], Yi = {
2531
2582
  key: 2,
2532
2583
  id: "menu-portal-switcher",
2533
2584
  class: "portal-switcher-wrapper"
2534
- }, Xi = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
2585
+ }, Qi = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
2535
2586
  src: "https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",
2536
2587
  alt: "portal switcher icon",
2537
2588
  width: "20",
2538
2589
  height: "20"
2539
- }, null, -1)), xi = [
2540
- Xi
2541
- ], er = { class: "portal-switcher-content" }, tr = { class: "portal-switcher-links" }, ar = ["href"], or = ["src"], sr = {
2590
+ }, null, -1)), Zi = [
2591
+ Qi
2592
+ ], Xi = { class: "portal-switcher-content" }, xi = { class: "portal-switcher-links" }, er = ["href"], tr = ["src"], ar = {
2542
2593
  key: 3,
2543
2594
  id: "menu-profile-dropdown",
2544
2595
  class: "profile-dropdown-wrapper"
2545
- }, lr = {
2596
+ }, or = {
2546
2597
  key: 0,
2547
2598
  class: "profile-dropdown-sign-in"
2548
- }, ir = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
2599
+ }, lr = /* @__PURE__ */ ke(() => /* @__PURE__ */ t("img", {
2549
2600
  src: "https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",
2550
2601
  alt: "profile dropdown icon",
2551
2602
  width: "20",
2552
2603
  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 = {
2604
+ }, null, -1)), sr = [
2605
+ lr
2606
+ ], ir = { class: "profile-dropdown-content" }, rr = { class: "mobile-logo-search-burger-wrapper" }, nr = { class: "mobile-mir-link-logo" }, dr = {
2556
2607
  key: 0,
2557
2608
  class: "mobile-search-wrapper"
2558
- }, _r = ["src"], hr = ["src"], pr = { class: "mobile-menu-content-wrapper" }, mr = { class: "mobile-dropdown-content" }, fr = /* @__PURE__ */ g({
2609
+ }, cr = ["src"], ur = ["src"], _r = { class: "mobile-menu-content-wrapper" }, hr = { class: "mobile-dropdown-content" }, pr = /* @__PURE__ */ g({
2559
2610
  __name: "header",
2560
2611
  props: {
2561
2612
  burgerState: {
@@ -2607,7 +2658,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2607
2658
  "clickSearch"
2608
2659
  ],
2609
2660
  setup(e, { expose: a, emit: r }) {
2610
- let s = null;
2661
+ let l = null;
2611
2662
  const o = e;
2612
2663
  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
2664
  Q(
@@ -2629,11 +2680,11 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2629
2680
  () => o.isAuthenticated,
2630
2681
  ($) => k.value = $
2631
2682
  ), me(() => {
2632
- s = ($) => {
2683
+ l = ($) => {
2633
2684
  $.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);
2685
+ }, window.addEventListener("click", l);
2686
+ }), qe(() => {
2687
+ l !== null && window.removeEventListener("click", l);
2637
2688
  });
2638
2689
  const w = r;
2639
2690
  function ae() {
@@ -2648,45 +2699,45 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2648
2699
  function de() {
2649
2700
  u.value = !u.value, w("update:burgerState", u.value);
2650
2701
  }
2651
- let G = C(null), oe = C(null);
2702
+ let U = C(null), oe = C(null);
2652
2703
  function ce() {
2653
- G.value && G.value.blur();
2704
+ U.value && U.value.blur();
2654
2705
  }
2655
2706
  return a({
2656
2707
  defocusSearchButton: ce
2657
- }), ($, j) => (l(), i("div", Ni, [
2708
+ }), ($, j) => (s(), i("div", Hi, [
2658
2709
  t("nav", null, [
2659
- t("div", Ei, [
2660
- t("div", ji, [
2661
- c($.$slots, "link-logo", {}, void 0, !0)
2710
+ t("div", Ri, [
2711
+ t("div", Ni, [
2712
+ d($.$slots, "link-logo", {}, void 0, !0)
2662
2713
  ]),
2663
- t("ul", Ki, [
2664
- c($.$slots, "main-nav-items", {}, void 0, !0)
2714
+ t("ul", Ei, [
2715
+ d($.$slots, "main-nav-items", {}, void 0, !0)
2665
2716
  ]),
2666
- e.useDropdown ? (l(), i("div", Ui, [
2717
+ e.useDropdown ? (s(), i("div", ji, [
2667
2718
  t("button", {
2668
2719
  class: "nav-dropdown-btn",
2669
2720
  "aria-label": "Toggle Dropdown",
2670
2721
  onClick: ae
2671
2722
  }, [
2672
- c($.$slots, "dropdown-title", {}, void 0, !0),
2673
- I(n) === !1 ? (l(), i("img", Gi)) : (l(), i("img", Ji))
2723
+ d($.$slots, "dropdown-title", {}, void 0, !0),
2724
+ I(n) === !1 ? (s(), i("img", Gi)) : (s(), i("img", Ki))
2674
2725
  ]),
2675
- U(t("div", Wi, [
2676
- c($.$slots, "dropdown-links", {}, void 0, !0)
2726
+ K(t("div", Ui, [
2727
+ d($.$slots, "dropdown-links", {}, void 0, !0)
2677
2728
  ], 512), [
2678
2729
  [Z, I(n)]
2679
2730
  ])
2680
2731
  ], 512)) : _("", !0),
2681
- I(p) ? (l(), i("div", Yi, [
2732
+ I(p) ? (s(), i("div", Ji, [
2682
2733
  t("button", {
2683
2734
  ref_key: "navSearchButton",
2684
- ref: G,
2735
+ ref: U,
2685
2736
  class: "search-icon",
2686
2737
  "aria-label": "Toggle search",
2687
- onClick: j[0] || (j[0] = (K) => {
2738
+ onClick: j[0] || (j[0] = (G) => {
2688
2739
  var E;
2689
- return $.$emit("clickSearch"), (E = I(G)) == null ? void 0 : E.blur();
2740
+ return $.$emit("clickSearch"), (E = I(U)) == null ? void 0 : E.blur();
2690
2741
  })
2691
2742
  }, [
2692
2743
  t("img", {
@@ -2694,32 +2745,32 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2694
2745
  alt: "search icon",
2695
2746
  width: "20",
2696
2747
  height: "20"
2697
- }, null, 8, Qi)
2748
+ }, null, 8, Wi)
2698
2749
  ], 512)
2699
2750
  ])) : _("", !0),
2700
- e.usePortalSwitcher ? (l(), i("div", Zi, [
2751
+ e.usePortalSwitcher ? (s(), i("div", Yi, [
2701
2752
  t("button", {
2702
2753
  class: "nav-portal-switcher-btn",
2703
2754
  "aria-label": "Toggle Portal",
2704
2755
  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", {
2756
+ }, Zi),
2757
+ K(t("div", Xi, [
2758
+ t("ul", xi, [
2759
+ (s(!0), i(V, null, P(e.portals, (G, E) => (s(), i("li", {
2709
2760
  key: E,
2710
2761
  class: "portal-switcher-link"
2711
2762
  }, [
2712
- S(I(D), { "link-type": "regular" }, {
2763
+ S(I(L), { "link-type": "regular" }, {
2713
2764
  default: y(() => [
2714
2765
  t("a", {
2715
- href: K.link,
2766
+ href: G.link,
2716
2767
  onClick: j[1] || (j[1] = (W) => x(n) ? n.value = !1 : n = !1)
2717
2768
  }, [
2718
2769
  t("img", {
2719
- src: K.icon
2720
- }, null, 8, or),
2721
- t("div", null, d(K.name), 1)
2722
- ], 8, ar)
2770
+ src: G.icon
2771
+ }, null, 8, tr),
2772
+ t("div", null, c(G.name), 1)
2773
+ ], 8, er)
2723
2774
  ]),
2724
2775
  _: 2
2725
2776
  }, 1024)
@@ -2729,18 +2780,18 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2729
2780
  [Z, I(b)]
2730
2781
  ])
2731
2782
  ])) : _("", !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)
2783
+ e.useProfileDropdown ? (s(), i("div", ar, [
2784
+ I(k) ? _("", !0) : (s(), i("div", or, [
2785
+ d($.$slots, "profile-dropdown-sign-in", {}, void 0, !0)
2735
2786
  ])),
2736
- I(k) ? (l(), i("button", {
2787
+ I(k) ? (s(), i("button", {
2737
2788
  key: 1,
2738
2789
  "aria-label": "Toggle Profile",
2739
2790
  class: "nav-profile-dropdown-btn",
2740
2791
  onClick: ne
2741
- }, rr)) : _("", !0),
2742
- U(t("div", nr, [
2743
- c($.$slots, "profile-dropdown-links", {}, void 0, !0)
2792
+ }, sr)) : _("", !0),
2793
+ K(t("div", ir, [
2794
+ d($.$slots, "profile-dropdown-links", {}, void 0, !0)
2744
2795
  ], 512), [
2745
2796
  [Z, I(f)]
2746
2797
  ])
@@ -2749,17 +2800,17 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2749
2800
  t("div", {
2750
2801
  class: h(["mobile-nav-wrapper", I(u) === !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
2751
2802
  }, [
2752
- t("div", dr, [
2753
- t("div", cr, [
2754
- c($.$slots, "link-logo", {}, void 0, !0)
2803
+ t("div", rr, [
2804
+ t("div", nr, [
2805
+ d($.$slots, "link-logo", {}, void 0, !0)
2755
2806
  ]),
2756
- I(p) ? (l(), i("div", ur, [
2807
+ I(p) ? (s(), i("div", dr, [
2757
2808
  t("button", {
2758
2809
  ref_key: "mobileSearchButton",
2759
2810
  ref: oe,
2760
2811
  class: "search-icon",
2761
2812
  "aria-label": "Toggle search",
2762
- onClick: j[2] || (j[2] = (K) => {
2813
+ onClick: j[2] || (j[2] = (G) => {
2763
2814
  var E;
2764
2815
  return $.$emit("clickSearch"), (E = I(oe)) == null ? void 0 : E.blur();
2765
2816
  })
@@ -2769,7 +2820,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2769
2820
  alt: "search icon",
2770
2821
  width: "20",
2771
2822
  height: "20"
2772
- }, null, 8, _r)
2823
+ }, null, 8, cr)
2773
2824
  ], 512)
2774
2825
  ])) : _("", !0),
2775
2826
  t("button", {
@@ -2782,16 +2833,16 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2782
2833
  height: "20",
2783
2834
  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
2835
  alt: "burger menu icon"
2785
- }, null, 8, hr)
2836
+ }, null, 8, ur)
2786
2837
  ])
2787
2838
  ]),
2788
- U(t("div", pr, [
2839
+ K(t("div", _r, [
2789
2840
  t("ul", null, [
2790
- c($.$slots, "mobile-main-nav-items", {}, void 0, !0)
2841
+ d($.$slots, "mobile-main-nav-items", {}, void 0, !0)
2791
2842
  ]),
2792
- t("ul", mr, [
2793
- c($.$slots, "mobile-dropdown-title", {}, void 0, !0),
2794
- c($.$slots, "mobile-dropdown-links", {}, void 0, !0)
2843
+ t("ul", hr, [
2844
+ d($.$slots, "mobile-dropdown-title", {}, void 0, !0),
2845
+ d($.$slots, "mobile-dropdown-links", {}, void 0, !0)
2795
2846
  ])
2796
2847
  ], 512), [
2797
2848
  [Z, I(u)]
@@ -2800,7 +2851,7 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2800
2851
  ])
2801
2852
  ]));
2802
2853
  }
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({
2854
+ }), mr = /* @__PURE__ */ v(pr, [["__scopeId", "data-v-0b00b9f2"]]), fr = { class: "language__wrapper" }, vr = { class: "language__content" }, gr = { class: "language__headline" }, br = { class: "language__paragraph" }, yr = { class: "language__links" }, kr = /* @__PURE__ */ g({
2804
2855
  __name: "language-switcher",
2805
2856
  props: {
2806
2857
  headline: {
@@ -2813,17 +2864,17 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2813
2864
  }
2814
2865
  },
2815
2866
  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)
2867
+ return (a, r) => (s(), i("div", fr, [
2868
+ t("div", vr, [
2869
+ t("h2", gr, c(e.headline), 1),
2870
+ t("p", br, c(e.paragraph), 1),
2871
+ t("div", yr, [
2872
+ d(a.$slots, "language-links", {}, void 0, !0)
2822
2873
  ])
2823
2874
  ])
2824
2875
  ]));
2825
2876
  }
2826
- }), Br = /* @__PURE__ */ v(wr, [["__scopeId", "data-v-dc8cc97e"]]), Sr = { class: "pagination__wrapper" }, Ir = { class: "pagination__content" }, Cr = /* @__PURE__ */ g({
2877
+ }), $r = /* @__PURE__ */ v(kr, [["__scopeId", "data-v-dc8cc97e"]]), wr = { class: "pagination__wrapper" }, Br = { class: "pagination__content" }, Sr = /* @__PURE__ */ g({
2827
2878
  __name: "pagination",
2828
2879
  props: {
2829
2880
  isPreviousDisabled: {
@@ -2837,31 +2888,31 @@ const kl = /* @__PURE__ */ v(ml, [["render", yl], ["__scopeId", "data-v-776750d2
2837
2888
  },
2838
2889
  emits: ["previous", "next"],
2839
2890
  setup(e) {
2840
- return (a, r) => (l(), i("div", Sr, [
2841
- t("div", Ir, [
2842
- S(le, {
2891
+ return (a, r) => (s(), i("div", wr, [
2892
+ t("div", Br, [
2893
+ S(se, {
2843
2894
  disabled: e.isPreviousDisabled,
2844
2895
  variant: "previous",
2845
2896
  "aria-label": "previous",
2846
- onClick: r[0] || (r[0] = (s) => a.$emit("previous"))
2897
+ onClick: r[0] || (r[0] = (l) => a.$emit("previous"))
2847
2898
  }, null, 8, ["disabled"]),
2848
- c(a.$slots, "pagination-numbers"),
2849
- S(le, {
2899
+ d(a.$slots, "pagination-numbers"),
2900
+ S(se, {
2850
2901
  disabled: e.isNextDisabled,
2851
2902
  variant: "next",
2852
2903
  "aria-label": "next",
2853
- onClick: r[1] || (r[1] = (s) => a.$emit("next"))
2904
+ onClick: r[1] || (r[1] = (l) => a.$emit("next"))
2854
2905
  }, null, 8, ["disabled"])
2855
2906
  ])
2856
2907
  ]));
2857
2908
  }
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" })
2909
+ }), Ir = /* @__PURE__ */ v(Sr, [["__scopeId", "data-v-da6d07c9"]]), Cr = {}, Tr = { class: "search__wrapper" };
2910
+ function qr(e, a) {
2911
+ return s(), i("div", Tr, [
2912
+ d(e.$slots, "default", { class: "search__content" })
2862
2913
  ]);
2863
2914
  }
2864
- const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3"]]), Vr = { class: "dropdown" }, Pr = ["aria-expanded"], Fr = /* @__PURE__ */ g({
2915
+ const Ar = /* @__PURE__ */ v(Cr, [["render", qr], ["__scopeId", "data-v-c07a6cf3"]]), Lr = { class: "dropdown" }, Dr = ["aria-expanded"], Vr = /* @__PURE__ */ g({
2865
2916
  __name: "select-multiple",
2866
2917
  props: {
2867
2918
  label: { default: "" },
@@ -2870,31 +2921,31 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2870
2921
  },
2871
2922
  emits: ["filter", "remove-filter"],
2872
2923
  setup(e, { emit: a }) {
2873
- const r = C(!1), s = e, o = a;
2924
+ const r = C(!1), l = e, o = a;
2874
2925
  function u(b, f) {
2875
- !s.selectedOptions.includes(b) && !s.selectedOptions.includes(f) ? o("filter", b) : o("remove-filter", b);
2926
+ !l.selectedOptions.includes(b) && !l.selectedOptions.includes(f) ? o("filter", b) : o("remove-filter", b);
2876
2927
  }
2877
2928
  function p() {
2878
2929
  r.value = !1;
2879
2930
  }
2880
- const n = q(() => s.options.length > 8);
2931
+ const n = q(() => l.options.length > 8);
2881
2932
  return (b, f) => {
2882
2933
  const k = _e("click-outside");
2883
- return U((l(), i("div", Vr, [
2934
+ return K((s(), i("div", Lr, [
2884
2935
  t("button", {
2885
2936
  class: h(["dropdown-button", { clicked: r.value }]),
2886
2937
  style: ee({ "z-index": r.value ? 2 : 0 }),
2887
2938
  "aria-expanded": r.value ? "true" : "false",
2888
2939
  onClick: f[0] || (f[0] = (w) => r.value = !r.value)
2889
2940
  }, [
2890
- c(b.$slots, "button", {}, () => [
2891
- J(d(b.label), 1)
2941
+ d(b.$slots, "button", {}, () => [
2942
+ J(c(b.label), 1)
2892
2943
  ], !0)
2893
- ], 14, Pr),
2944
+ ], 14, Dr),
2894
2945
  t("div", {
2895
2946
  class: h([{ hidden: !r.value, "adjust-height": n.value }, "dropdown-content"])
2896
2947
  }, [
2897
- (l(!0), i(V, null, P(b.options, (w) => (l(), T(I(fe), {
2948
+ (s(!0), i(V, null, P(b.options, (w) => (s(), T(I(fe), {
2898
2949
  id: w.value,
2899
2950
  key: w.value,
2900
2951
  name: w.text,
@@ -2905,7 +2956,7 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2905
2956
  onInput: (ae) => u(w.value, w.text)
2906
2957
  }, {
2907
2958
  default: y(() => [
2908
- J(d(w.text), 1)
2959
+ J(c(w.text), 1)
2909
2960
  ]),
2910
2961
  _: 2
2911
2962
  }, 1032, ["id", "name", "value", "checked", "onInput"]))), 128))
@@ -2915,7 +2966,7 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2915
2966
  ]);
2916
2967
  };
2917
2968
  }
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({
2969
+ }), Pr = /* @__PURE__ */ v(Vr, [["__scopeId", "data-v-678cc92e"]]), Fr = { class: "promo__content" }, Mr = { class: "pallet-jack__media-wrap" }, Or = { class: "pallet-jack-link" }, zr = { class: "pallet-jack__media-wrap__inner-wrap" }, Hr = { class: "pallet-jack__media-wrap__content-wrap" }, Rr = { class: "regular-blue" }, Nr = /* @__PURE__ */ g({
2919
2970
  __name: "pallet-jack",
2920
2971
  props: {
2921
2972
  label: { default: "" },
@@ -2933,31 +2984,31 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2933
2984
  dark: "promo__wrapper--dark",
2934
2985
  light: "promo__wrapper--light",
2935
2986
  default: "promo__wrapper--default"
2936
- }, r = e, s = q(() => a[r.variant]);
2937
- return (o, u) => (l(), i("div", {
2987
+ }, r = e, l = q(() => a[r.variant]);
2988
+ return (o, u) => (s(), i("div", {
2938
2989
  class: h([
2939
2990
  "promo__wrapper",
2940
- s.value,
2991
+ l.value,
2941
2992
  o.teaser ? "promo__wrapper--teaser" : ""
2942
2993
  ])
2943
2994
  }, [
2944
- t("div", Or, [
2995
+ t("div", Fr, [
2945
2996
  t("div", {
2946
2997
  class: h([
2947
2998
  "promo__video",
2948
2999
  o.reverse ? "promo__video--reverse" : "promo__video--default"
2949
3000
  ])
2950
3001
  }, [
2951
- t("div", zr, [
2952
- t("div", Hr, [
2953
- c(o.$slots, "pallet-jack-link")
3002
+ t("div", Mr, [
3003
+ t("div", Or, [
3004
+ d(o.$slots, "pallet-jack-link")
2954
3005
  ]),
2955
- t("div", Rr, [
2956
- c(o.$slots, "pallet-jack-video")
3006
+ t("div", zr, [
3007
+ d(o.$slots, "pallet-jack-video")
2957
3008
  ]),
2958
- t("div", Nr, [
2959
- t("h3", Er, d(o.headline), 1),
2960
- t("p", null, d(o.shortDescription), 1)
3009
+ t("div", Hr, [
3010
+ t("h3", Rr, c(o.headline), 1),
3011
+ t("p", null, c(o.shortDescription), 1)
2961
3012
  ])
2962
3013
  ])
2963
3014
  ], 2),
@@ -2967,7 +3018,7 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2967
3018
  o.reverse ? "promo__text--reverse" : "promo__text--default"
2968
3019
  ])
2969
3020
  }, [
2970
- o.label ? (l(), T(X, {
3021
+ o.label ? (s(), T(X, {
2971
3022
  key: 0,
2972
3023
  text: o.label,
2973
3024
  "label-dark": o.variant === "dark"
@@ -2978,24 +3029,24 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
2978
3029
  o.variant === "dark" ? "promo__title--dark" : ""
2979
3030
  ])
2980
3031
  }, [
2981
- c(o.$slots, "promo-text")
3032
+ d(o.$slots, "promo-text")
2982
3033
  ], 2),
2983
- o.linkType === "link" ? (l(), T(D, {
3034
+ o.linkType === "link" ? (s(), T(L, {
2984
3035
  key: 1,
2985
3036
  "link-type": o.variant === "dark" ? "regular_dark" : (o.variant === "light", "regular_light"),
2986
3037
  arrow: ""
2987
3038
  }, {
2988
3039
  default: y(() => [
2989
- c(o.$slots, "promo-link")
3040
+ d(o.$slots, "promo-link")
2990
3041
  ]),
2991
3042
  _: 3
2992
3043
  }, 8, ["link-type"])) : _("", !0),
2993
- o.linkType === "button" ? (l(), T(D, {
3044
+ o.linkType === "button" ? (s(), T(L, {
2994
3045
  key: 2,
2995
3046
  "link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
2996
3047
  }, {
2997
3048
  default: y(() => [
2998
- c(o.$slots, "promo-link")
3049
+ d(o.$slots, "promo-link")
2999
3050
  ]),
3000
3051
  _: 3
3001
3052
  }, 8, ["link-type"])) : _("", !0)
@@ -3003,63 +3054,63 @@ const Dr = /* @__PURE__ */ v(Tr, [["render", Lr], ["__scopeId", "data-v-c07a6cf3
3003
3054
  ])
3004
3055
  ], 2));
3005
3056
  }
3006
- }), Kr = /* @__PURE__ */ v(jr, [["__scopeId", "data-v-00c0bad3"]]), Gr = {
3057
+ }), Er = /* @__PURE__ */ v(Nr, [["__scopeId", "data-v-00c0bad3"]]), Gr = {
3007
3058
  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);
3059
+ 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", Pr), 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", wo), e.component("BlockFeatures", Lo), e.component("BlockFlashcards", Mo), e.component("BlockFormScript", jo), e.component("BlockHeadline", Jo), e.component("BlockHero", il), e.component("BlockImage", _l), e.component("BlockImageGallery", vl), e.component("BlockLogoWall", Il), e.component("BlockMicroStories", Ll), e.component("BlockPolicy", Ml), e.component("BlockProductHero", Kl), e.component("BlockPromo", Wl), e.component("BlockQuote", rs), e.component("BlockRichText", _s), e.component("BlockRichTextColumns", bs), e.component("BlockTimeline", qs), e.component("BlockCardDisplay", ro), e.component("BlockColumnGrid", po), e.component("BlockVimeo", Fs), e.component("BlockPalletJack", Er), e.component("BlockFrontPageHero", Zs), e.component("Organism404", oi), e.component("OrganismFilter", di), e.component("OrganismFooter", zi), e.component("OrganismHeader", mr), e.component("OrganismLanguageSwitcher", $r), e.component("OrganismPagination", Ir), e.component("OrganismSearch", Ar);
3009
3060
  }
3010
3061
  };
3011
3062
  export {
3012
- le as AtomButton,
3063
+ se as AtomButton,
3013
3064
  fe as AtomCheckbox,
3014
3065
  Ne as AtomChip,
3015
3066
  Ye as AtomDropdown,
3016
- F as AtomImage,
3067
+ M as AtomImage,
3017
3068
  X as AtomLabel,
3018
- D as AtomLink,
3069
+ L as AtomLink,
3019
3070
  rt as AtomRadioButton,
3020
3071
  ht as AtomSelect,
3021
- Mr as AtomSelectMultiple,
3072
+ Pr as AtomSelectMultiple,
3022
3073
  Bt as AtomSlider,
3023
3074
  Et as AtomTextField,
3024
3075
  Lt as AtomTextarea,
3025
3076
  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,
3077
+ to as BlockAccordion,
3078
+ ro as BlockCardDisplay,
3079
+ po as BlockColumnGrid,
3080
+ wo as BlockFacts,
3081
+ Lo as BlockFeatures,
3082
+ Mo as BlockFlashcards,
3083
+ jo as BlockFormScript,
3084
+ Zs as BlockFrontPageHero,
3085
+ Jo as BlockHeadline,
3086
+ il as BlockHero,
3087
+ _l as BlockImage,
3088
+ vl as BlockImageGallery,
3089
+ Il as BlockLogoWall,
3090
+ Ll as BlockMicroStories,
3091
+ Er as BlockPalletJack,
3092
+ Ml as BlockPolicy,
3093
+ Kl as BlockProductHero,
3094
+ Wl as BlockPromo,
3095
+ rs as BlockQuote,
3096
+ _s as BlockRichText,
3097
+ bs as BlockRichTextColumns,
3098
+ qs as BlockTimeline,
3099
+ Fs as BlockVimeo,
3100
+ la as MoleculeAddress,
3050
3101
  da as MoleculeBulletList,
3051
3102
  pa as MoleculeCard,
3052
3103
  ge as MoleculeColumnCard,
3053
- qa as MoleculeEventCard,
3104
+ Ca as MoleculeEventCard,
3054
3105
  be as MoleculeFlashcard,
3055
3106
  ve as MoleculeModal,
3056
- Ua as MoleculeTextCard,
3057
- 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,
3107
+ Ga as MoleculeTextCard,
3108
+ oi as Organism404,
3109
+ di as OrganismFilter,
3110
+ zi as OrganismFooter,
3111
+ mr as OrganismHeader,
3112
+ $r as OrganismLanguageSwitcher,
3113
+ Ir as OrganismPagination,
3114
+ Ar as OrganismSearch,
3064
3115
  Gr as default
3065
3116
  };