@mirweb/mir-web-components 1.8.8 → 1.10.0

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