@mirweb/mir-web-components 0.16.4 → 0.17.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.
Files changed (38) hide show
  1. package/README.md +0 -1
  2. package/dist/components/atoms/button/button.vue.d.ts +5 -32
  3. package/dist/components/atoms/checkbox/checkbox.vue.d.ts +26 -12
  4. package/dist/components/atoms/chip/chip.vue.d.ts +8 -2
  5. package/dist/components/atoms/image/image.vue.d.ts +7 -3
  6. package/dist/components/atoms/link/link.vue.d.ts +5 -61
  7. package/dist/components/atoms/radio-button/radio-button.vue.d.ts +17 -5
  8. package/dist/components/atoms/slider/slider.vue.d.ts +24 -9
  9. package/dist/components/atoms/text-field/text-field.vue.d.ts +6 -0
  10. package/dist/components/atoms/textarea/textarea.vue.d.ts +18 -0
  11. package/dist/components/atoms/video/video.vue.d.ts +9 -2
  12. package/dist/components/blocks/facts/facts.vue.d.ts +76 -41
  13. package/dist/components/blocks/features/features.vue.d.ts +22 -11
  14. package/dist/components/blocks/hero/hero.vue.d.ts +48 -35
  15. package/dist/components/blocks/image/image.vue.d.ts +12 -4
  16. package/dist/components/blocks/image-gallery/image-gallery.vue.d.ts +24 -10
  17. package/dist/components/blocks/logo-wall/logo-wall.vue.d.ts +56 -39
  18. package/dist/components/blocks/micro-stories/micro-stories.vue.d.ts +6 -8
  19. package/dist/components/blocks/product-hero/product-hero.vue.d.ts +9 -2
  20. package/dist/components/blocks/promo/promo.vue.d.ts +58 -35
  21. package/dist/components/blocks/quote/quote.vue.d.ts +12 -4
  22. package/dist/components/blocks/rich-text/rich-text.vue.d.ts +13 -3
  23. package/dist/components/blocks/timeline/timeline.vue.d.ts +10 -6
  24. package/dist/components/blocks/triple-card-display/triple-card-display.vue.d.ts +1 -3
  25. package/dist/components/blocks/vimeo/vimeo.vue.d.ts +8 -1
  26. package/dist/components/molecules/address/address.vue.d.ts +81 -41
  27. package/dist/components/molecules/bullet-list/bullet-list.vue.d.ts +10 -10
  28. package/dist/components/molecules/card/card.vue.d.ts +79 -22
  29. package/dist/components/molecules/modal/modal.vue.d.ts +24 -9
  30. package/dist/components/organisms/footer/footer.vue.d.ts +61 -49
  31. package/dist/components/organisms/header/header.vue.d.ts +0 -1
  32. package/dist/components/organisms/language-switcher/language-switcher.vue.d.ts +8 -1
  33. package/dist/components/organisms/pagination/pagination.vue.d.ts +24 -8
  34. package/dist/mir-web-components.cjs.js +1 -1
  35. package/dist/mir-web-components.css +1 -1
  36. package/dist/mir-web-components.es.js +842 -807
  37. package/dist/mir-web-components.umd.js +2 -2
  38. package/package.json +10 -2
@@ -1,124 +1,95 @@
1
- import { defineComponent as v, openBlock as a, createElementBlock as s, normalizeClass as u, toDisplayString as o, createElementVNode as t, renderSlot as d, pushScopeId as O, popScopeId as z, computed as E, createTextVNode as j, ref as w, withDirectives as Y, Fragment as I, renderList as T, vShow as Z, normalizeProps as A, guardReactiveProps as M, mergeProps as ee, createVNode as p, Transition as ge, withCtx as $, withModifiers as re, createBlock as D, createCommentVNode as m, watchEffect as oe, withKeys as ye, useSlots as be, normalizeStyle as te, isRef as ie, unref as B, onMounted as ne, watch as se, onUnmounted as pe } from "vue";
1
+ import { defineComponent as v, computed as P, openBlock as i, createElementBlock as s, normalizeClass as _, toDisplayString as r, createElementVNode as t, renderSlot as d, pushScopeId as O, popScopeId as z, createTextVNode as j, ref as w, withDirectives as Q, Fragment as I, renderList as C, vShow as Z, normalizeProps as V, guardReactiveProps as M, mergeProps as ee, createVNode as p, Transition as ge, withCtx as $, withModifiers as oe, createBlock as D, createCommentVNode as m, watchEffect as re, withKeys as ye, useSlots as pe, normalizeStyle as te, isRef as ie, unref as B, onMounted as ne, watch as se, onUnmounted as be } from "vue";
2
2
  const $e = ["aria-label"], ke = /* @__PURE__ */ v({
3
3
  __name: "button",
4
4
  props: {
5
- variant: {
6
- type: String,
7
- required: !0,
8
- validator(e) {
9
- return ["primary", "secondary", "close", "next", "previous"].includes(
10
- e
11
- );
12
- }
13
- },
14
- ariaLabel: {
15
- type: String,
16
- required: !0
17
- },
18
- buttonText: {
19
- type: String,
20
- required: !1,
21
- validator: (e) => (e.length > 15 && console.error(
22
- "Button text is too long - must be 15 characters or less"
23
- ), !0)
24
- }
5
+ variant: { default: "primary" },
6
+ ariaLabel: { default: "Button" },
7
+ buttonText: { default: "" }
25
8
  },
26
9
  setup(e) {
27
- return (l, r) => (a(), s("button", {
28
- class: u(["button", "button--" + e.variant]),
29
- "aria-label": e.ariaLabel
30
- }, o(e.variant == "close" ? "" : e.buttonText), 11, $e));
10
+ const l = e, o = {
11
+ primary: "primary",
12
+ secondary: "secondary",
13
+ close: "close",
14
+ next: "next",
15
+ previous: "previous"
16
+ }, a = P(() => o[l.variant]);
17
+ return (n, c) => (i(), s("button", {
18
+ class: _(["button", "button--" + a.value]),
19
+ "aria-label": n.ariaLabel
20
+ }, r(n.variant == "close" ? "" : n.buttonText), 11, $e));
31
21
  }
32
22
  });
33
23
  const h = (e, l) => {
34
- const r = e.__vccOpts || e;
35
- for (const [i, n] of l)
36
- r[i] = n;
37
- return r;
38
- }, J = /* @__PURE__ */ h(ke, [["__scopeId", "data-v-c2f14f04"]]), we = (e) => (O("data-v-c5f3542e"), e = e(), z(), e), xe = ["name", "value", "disabled", "required", "id"], Se = ["for"], qe = /* @__PURE__ */ we(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Be = /* @__PURE__ */ v({
24
+ const o = e.__vccOpts || e;
25
+ for (const [a, n] of l)
26
+ o[a] = n;
27
+ return o;
28
+ }, J = /* @__PURE__ */ h(ke, [["__scopeId", "data-v-1e00a5e5"]]), we = (e) => (O("data-v-42c44141"), e = e(), z(), e), xe = ["id", "name", "value", "disabled", "required"], Se = ["for"], qe = /* @__PURE__ */ we(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Be = /* @__PURE__ */ v({
39
29
  __name: "checkbox",
40
30
  props: {
41
- name: String,
42
- value: {
43
- type: [String, Number, Boolean],
44
- default: "value",
45
- required: !1
46
- },
47
- disabled: {
48
- type: Boolean,
49
- default: !1,
50
- required: !1
51
- },
52
- id: {
53
- type: String,
54
- default: "checkbox",
55
- required: !0
56
- },
57
- required: {
58
- type: Boolean,
59
- default: !1,
60
- required: !0
61
- }
31
+ name: { default: "checkbox" },
32
+ value: { type: [String, Number, Boolean], default: "value" },
33
+ disabled: { type: Boolean, default: !1 },
34
+ id: { default: "checkbox" },
35
+ required: { type: Boolean, default: !1 }
62
36
  },
63
37
  emits: ["input"],
64
38
  setup(e, { emit: l }) {
65
- const r = (i) => {
66
- const n = i.target;
39
+ const o = (a) => {
40
+ const n = a.target;
67
41
  l("input", n.checked);
68
42
  };
69
- return (i, n) => (a(), s("div", {
70
- class: u(["checkbox__wrapper", e.disabled ? "disabled" : ""])
43
+ return (a, n) => (i(), s("div", {
44
+ class: _(["checkbox__wrapper", a.disabled ? "disabled" : ""])
71
45
  }, [
72
46
  t("input", {
47
+ id: a.id,
73
48
  type: "checkbox",
74
- name: e.name,
75
- value: e.value,
76
- disabled: e.disabled,
77
- required: e.required,
78
- id: e.id,
49
+ name: a.name,
50
+ value: a.value,
51
+ disabled: a.disabled,
52
+ required: a.required,
79
53
  class: "checkbox__checkbox",
80
- onChange: r
54
+ onChange: o
81
55
  }, null, 40, xe),
82
56
  t("label", {
83
- for: e.id,
84
- class: u(["checkbox__label", e.required ? "required" : ""])
57
+ for: a.id,
58
+ class: _(["checkbox__label", a.required ? "required" : ""])
85
59
  }, [
86
60
  qe,
87
- d(i.$slots, "default", {}, void 0, !0)
61
+ d(a.$slots, "default", {}, void 0, !0)
88
62
  ], 10, Se)
89
63
  ], 2));
90
64
  }
91
65
  });
92
- const Ie = /* @__PURE__ */ h(Be, [["__scopeId", "data-v-c5f3542e"]]), Te = (e) => (O("data-v-b61be596"), e = e(), z(), e), Le = ["aria-label"], Ce = /* @__PURE__ */ Te(() => /* @__PURE__ */ t("img", {
66
+ const Ie = /* @__PURE__ */ h(Be, [["__scopeId", "data-v-42c44141"]]), Ce = (e) => (O("data-v-08813346"), e = e(), z(), e), Le = ["aria-label"], Te = /* @__PURE__ */ Ce(() => /* @__PURE__ */ t("img", {
93
67
  src: "https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",
94
68
  alt: "close",
95
69
  class: "close-icon"
96
- }, null, -1)), Ve = /* @__PURE__ */ v({
70
+ }, null, -1)), Ae = /* @__PURE__ */ v({
97
71
  __name: "chip",
98
72
  props: {
99
- text: {
100
- type: String,
101
- required: !0
102
- }
73
+ text: { default: "" }
103
74
  },
104
75
  emits: ["remove-chip"],
105
- setup(e, { emit: l }) {
106
- const r = e, i = E(() => `Chip: ${r.text}`);
107
- return (n, _) => (a(), s("div", {
76
+ setup(e) {
77
+ const l = e, o = P(() => `Chip: ${l.text}`);
78
+ return (a, n) => (i(), s("div", {
108
79
  class: "chip__wrapper",
109
- onClick: _[0] || (_[0] = (b) => n.$emit("remove-chip"))
80
+ onClick: n[0] || (n[0] = (c) => a.$emit("remove-chip"))
110
81
  }, [
111
82
  t("span", {
112
83
  class: "chip",
113
- "aria-label": i.value
84
+ "aria-label": o.value
114
85
  }, [
115
- j(o(e.text) + " ", 1),
116
- Ce
86
+ j(r(a.text) + " ", 1),
87
+ Te
117
88
  ], 8, Le)
118
89
  ]));
119
90
  }
120
91
  });
121
- const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["value"], Me = ["id"], Oe = { class: "listbox__dropdown" }, ze = ["id", "aria-labelledby", "aria-disabled"], Fe = ["aria-labelledby", "aria-activedescendant"], Pe = ["aria-selected", "data-value"], Ee = /* @__PURE__ */ v({
92
+ const Ve = /* @__PURE__ */ h(Ae, [["__scopeId", "data-v-08813346"]]), De = ["value"], Me = ["id"], Oe = { class: "listbox__dropdown" }, ze = ["id", "aria-labelledby", "aria-disabled"], Fe = ["aria-labelledby", "aria-activedescendant"], Pe = ["aria-selected", "data-value"], Ne = /* @__PURE__ */ v({
122
93
  __name: "dropdown",
123
94
  props: {
124
95
  modelValue: {
@@ -168,54 +139,54 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
168
139
  },
169
140
  emits: ["update:modelValue"],
170
141
  setup(e, { emit: l }) {
171
- const r = e, i = w(null), n = w(null), _ = w([]), b = w(0), C = w(""), S = w(!0), g = w(0), q = E(() => {
172
- const c = r.options.find(
173
- (f) => f.value === r.modelValue
142
+ const o = e, a = w(null), n = w(null), c = w([]), b = w(0), T = w(""), S = w(!0), g = w(0), q = P(() => {
143
+ const u = o.options.find(
144
+ (f) => f.value === o.modelValue
174
145
  );
175
- return c && c.label;
146
+ return u && u.label;
176
147
  }), X = {
177
- beforeMount(c, f) {
178
- c.clickOutsideEvent = function(y) {
179
- c === y.target || c.contains(y.target) || f.value(y);
180
- }, document.body.addEventListener("click", c.clickOutsideEvent);
148
+ beforeMount(u, f) {
149
+ u.clickOutsideEvent = function(y) {
150
+ u === y.target || u.contains(y.target) || f.value(y);
151
+ }, document.body.addEventListener("click", u.clickOutsideEvent);
181
152
  },
182
- unmounted(c) {
183
- document.body.removeEventListener("click", c.clickOutsideEvent);
153
+ unmounted(u) {
154
+ document.body.removeEventListener("click", u.clickOutsideEvent);
184
155
  }
185
156
  };
186
- function k(c) {
187
- l("update:modelValue", c);
157
+ function k(u) {
158
+ l("update:modelValue", u);
188
159
  }
189
- function N(c) {
160
+ function H(u) {
190
161
  var y;
191
- const f = c.target;
192
- f.getAttribute("role") === "option" && (U(f), Q(), (y = i.value) == null || y.focus());
162
+ const f = u.target;
163
+ f.getAttribute("role") === "option" && (U(f), Y(), (y = a.value) == null || y.focus());
193
164
  }
194
- function W(c) {
165
+ function W(u) {
195
166
  var y;
196
- const f = c.key;
167
+ const f = u.key;
197
168
  switch (f) {
198
169
  case "ArrowUp":
199
170
  case "ArrowDown": {
200
- c.preventDefault();
201
- const x = r.options.findIndex(
202
- (R) => R.value === r.modelValue
171
+ u.preventDefault();
172
+ const x = o.options.findIndex(
173
+ (R) => R.value === o.modelValue
203
174
  );
204
- let F = x ? _.value[x] : _.value[0];
205
- f === "ArrowUp" ? x - 1 >= 0 && (F = _.value[x - 1]) : x + 1 <= r.options.length && (F = _.value[x + 1]), F && U(F);
175
+ let F = x ? c.value[x] : c.value[0];
176
+ f === "ArrowUp" ? x - 1 >= 0 && (F = c.value[x - 1]) : x + 1 <= o.options.length && (F = c.value[x + 1]), F && U(F);
206
177
  break;
207
178
  }
208
179
  case "Home":
209
180
  case "PageUp":
210
- c.preventDefault(), he();
181
+ u.preventDefault(), he();
211
182
  break;
212
183
  case "End":
213
184
  case "PageDown":
214
- c.preventDefault(), ve();
185
+ u.preventDefault(), ve();
215
186
  break;
216
187
  case "Enter":
217
188
  case "Escape":
218
- c.preventDefault(), Q(), (y = i.value) == null || y.focus();
189
+ u.preventDefault(), Y(), (y = a.value) == null || y.focus();
219
190
  break;
220
191
  default: {
221
192
  const x = _e(f);
@@ -224,136 +195,136 @@ const Ae = /* @__PURE__ */ h(Ve, [["__scopeId", "data-v-b61be596"]]), De = ["val
224
195
  }
225
196
  }
226
197
  }
227
- function P(c) {
228
- if (!r.disabled)
229
- switch (c.key) {
198
+ function N(u) {
199
+ if (!o.disabled)
200
+ switch (u.key) {
230
201
  case "ArrowUp":
231
202
  case "ArrowDown":
232
- c.preventDefault(), le(), W(c);
203
+ u.preventDefault(), le(), W(u);
233
204
  break;
234
205
  }
235
206
  }
236
- function ce(c) {
237
- c && c.removeAttribute("aria-selected");
207
+ function ce(u) {
208
+ u && u.removeAttribute("aria-selected");
238
209
  }
239
210
  function ue() {
240
- b && (clearTimeout(b.value), b.value = 0), b.value = setTimeout(() => {
241
- C.value = "", b.value = 0;
211
+ b.value && (clearTimeout(b.value), b.value = 0), b.value = setTimeout(() => {
212
+ T.value = "", b.value = 0;
242
213
  }, 500);
243
214
  }
244
- function _e(c) {
215
+ function _e(u) {
245
216
  let f = "";
246
- (C.value === "" || f !== c) && (g.value = r.options.findIndex(
247
- (x) => x.value === r.modelValue
248
- )), C.value = f === c ? c : C.value + c, f = c, ue();
217
+ (T.value === "" || f !== u) && (g.value = o.options.findIndex(
218
+ (x) => x.value === o.modelValue
219
+ )), T.value = f === u ? u : T.value + u, f = u, ue();
249
220
  let y = ae(
250
221
  g.value + 1,
251
- r.options.length
222
+ o.options.length
252
223
  );
253
- return !y && C.value.length === 1 && (y = ae(0, g.value)), g.value = (g.value + 1) % r.options.length, y;
224
+ return !y && T.value.length === 1 && (y = ae(0, g.value)), g.value = (g.value + 1) % o.options.length, y;
254
225
  }
255
- function ae(c, f) {
256
- for (let y = c; y < f; y++)
257
- if (r.options[y].label && r.options[y].label.toUpperCase().indexOf(C.value.toUpperCase()) === 0)
258
- return _.value[y];
226
+ function ae(u, f) {
227
+ for (let y = u; y < f; y++)
228
+ if (o.options[y].label && o.options[y].label.toUpperCase().indexOf(T.value.toUpperCase()) === 0)
229
+ return c.value[y];
259
230
  return null;
260
231
  }
261
232
  function he() {
262
- U(_.value[0]);
233
+ U(c.value[0]);
263
234
  }
264
- function U(c) {
235
+ function U(u) {
265
236
  var y, x;
266
- const f = c.getAttribute("data-value");
267
- if (r.modelValue) {
268
- const F = r.options.findIndex(
269
- (fe) => fe.value === r.modelValue
270
- ), R = _.value[F];
237
+ const f = u.getAttribute("data-value");
238
+ if (o.modelValue) {
239
+ const F = o.options.findIndex(
240
+ (fe) => fe.value === o.modelValue
241
+ ), R = c.value[F];
271
242
  ce(R);
272
243
  }
273
- if (c.setAttribute("aria-selected", "true"), (y = n.value) == null || y.setAttribute(
244
+ if (u.setAttribute("aria-selected", "true"), (y = n.value) == null || y.setAttribute(
274
245
  "aria-activedescendant",
275
246
  f || ""
276
247
  ), k(f || ""), n.value && n.value.scrollHeight > n.value.clientHeight) {
277
- const F = n.value.clientHeight + n.value.scrollTop, R = c.offsetTop + c.offsetHeight;
278
- R > F ? n.value.scrollTop = R - ((x = n.value) == null ? void 0 : x.clientHeight) : c.offsetTop < n.value.scrollTop && (n.value.scrollTop = c.offsetTop);
248
+ const F = n.value.clientHeight + n.value.scrollTop, R = u.offsetTop + u.offsetHeight;
249
+ R > F ? n.value.scrollTop = R - ((x = n.value) == null ? void 0 : x.clientHeight) : u.offsetTop < n.value.scrollTop && (n.value.scrollTop = u.offsetTop);
279
250
  }
280
251
  }
281
252
  function ve() {
282
253
  var f;
283
- const c = (f = _.value) == null ? void 0 : f[r.options.length - 1];
284
- U(c);
254
+ const u = (f = c.value) == null ? void 0 : f[o.options.length - 1];
255
+ U(u);
285
256
  }
286
- function Q() {
287
- var c;
288
- S.value = !0, (c = i.value) == null || c.removeAttribute("aria-expanded");
257
+ function Y() {
258
+ var u;
259
+ S.value = !0, (u = a.value) == null || u.removeAttribute("aria-expanded");
289
260
  }
290
261
  function le() {
291
- var c, f;
292
- S.value = !1, (c = i.value) == null || c.setAttribute("aria-expanded", "true"), (f = n.value) == null || f.focus();
262
+ var u, f;
263
+ S.value = !1, (u = a.value) == null || u.setAttribute("aria-expanded", "true"), (f = n.value) == null || f.focus();
293
264
  }
294
265
  function me() {
295
- r.disabled || (S.value ? le() : Q());
266
+ o.disabled || (S.value ? le() : Y());
296
267
  }
297
- return (c, f) => (a(), s("div", {
268
+ return (u, f) => (i(), s("div", {
269
+ ref: "listbox",
298
270
  class: "listbox__wrapper",
299
- value: e.modelValue,
300
- ref: "listbox"
271
+ value: e.modelValue
301
272
  }, [
302
273
  t("label", {
303
274
  id: `${e.name}-label`,
304
- class: u([{
275
+ class: _([{
305
276
  "listbox__label--visually-hidden": !e.showLabel,
306
277
  "is-disabled": e.disabled,
307
278
  "is-required": e.required
308
279
  }, "listbox__label"])
309
- }, o(e.label), 11, Me),
310
- Y((a(), s("div", Oe, [
280
+ }, r(e.label), 11, Me),
281
+ Q((i(), s("div", Oe, [
311
282
  t("button", {
312
283
  id: `${e.name}-button-label`,
284
+ ref_key: "listboxButton",
285
+ ref: a,
313
286
  "aria-labelledby": `${e.name}-label ${e.name}-button-label`,
314
287
  type: "button",
315
288
  "aria-haspopup": "listbox",
316
289
  "aria-disabled": e.disabled,
317
- class: u([
290
+ class: _([
318
291
  "listbox__button",
319
292
  e.variant === "dark" ? "dropdown-dark dropdown-dark-bg-dark" : "dropdown-dark-bg-primary"
320
293
  ]),
321
294
  onClick: me,
322
- onKeydown: P,
323
- ref_key: "listboxButton",
324
- ref: i
325
- }, o(e.modelValue ? q.value : e.placeholder), 43, ze),
326
- Y(t("ul", {
295
+ onKeydown: N
296
+ }, r(e.modelValue ? q.value : e.placeholder), 43, ze),
297
+ Q(t("ul", {
298
+ ref_key: "listboxNode",
299
+ ref: n,
327
300
  "aria-labelledby": `${e.name}-label`,
328
301
  "aria-activedescendant": e.modelValue,
329
302
  tabindex: "0",
330
303
  role: "listbox",
331
304
  class: "listbox__list",
332
305
  onKeydown: W,
333
- onClick: N,
334
- ref_key: "listboxNode",
335
- ref: n
306
+ onClick: H
336
307
  }, [
337
- (a(!0), s(I, null, T(e.options, (y, x) => (a(), s("li", {
308
+ (i(!0), s(I, null, C(e.options, (y, x) => (i(), s("li", {
338
309
  key: `${e.name}-option-${x}`,
310
+ ref_for: !0,
311
+ ref_key: "listboxOptions",
312
+ ref: c,
339
313
  "aria-selected": y.value === e.modelValue,
340
314
  "data-value": y.value,
341
315
  class: "listbox__option",
342
- role: "option",
343
- ref_for: !0,
344
- ref_key: "listboxOptions",
345
- ref: _
346
- }, o(y.label), 9, Pe))), 128))
316
+ role: "option"
317
+ }, r(y.label), 9, Pe))), 128))
347
318
  ], 40, Fe), [
348
319
  [Z, !S.value]
349
320
  ])
350
321
  ])), [
351
- [X, Q]
322
+ [X, Y]
352
323
  ])
353
324
  ], 8, De));
354
325
  }
355
326
  });
356
- const He = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-f69f328c"]]), Ne = { class: "image__wrapper" }, Re = /* @__PURE__ */ v({
327
+ const Ee = /* @__PURE__ */ h(Ne, [["__scopeId", "data-v-48b1733b"]]), He = { class: "image__wrapper" }, Re = /* @__PURE__ */ v({
357
328
  __name: "image",
358
329
  props: {
359
330
  src: {
@@ -368,7 +339,8 @@ const He = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-f69f328c"]]), Ne = { cla
368
339
  },
369
340
  sizes: {
370
341
  type: String,
371
- required: !1
342
+ required: !1,
343
+ default: void 0
372
344
  },
373
345
  alt: {
374
346
  type: String,
@@ -377,7 +349,8 @@ const He = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-f69f328c"]]), Ne = { cla
377
349
  },
378
350
  width: {
379
351
  type: [String, Number],
380
- required: !1
352
+ required: !1,
353
+ default: void 0
381
354
  },
382
355
  height: {
383
356
  type: [String, Number],
@@ -391,12 +364,12 @@ const He = /* @__PURE__ */ h(Ee, [["__scopeId", "data-v-f69f328c"]]), Ne = { cla
391
364
  }
392
365
  },
393
366
  setup(e) {
394
- return (l, r) => (a(), s("div", Ne, [
395
- d(l.$slots, "default", A(M(l.$attrs)))
367
+ return (l, o) => (i(), s("div", He, [
368
+ d(l.$slots, "default", V(M(l.$attrs)))
396
369
  ]));
397
370
  }
398
371
  });
399
- const L = /* @__PURE__ */ h(Re, [["__scopeId", "data-v-513b5384"]]), je = { class: "label__wrapper" }, Ke = ["aria-label", "label-dark"], Ue = /* @__PURE__ */ v({
372
+ const L = /* @__PURE__ */ h(Re, [["__scopeId", "data-v-f41d7358"]]), je = { class: "label__wrapper" }, Ke = ["aria-label", "label-dark"], Ue = /* @__PURE__ */ v({
400
373
  __name: "label",
401
374
  props: {
402
375
  text: {
@@ -410,74 +383,62 @@ const L = /* @__PURE__ */ h(Re, [["__scopeId", "data-v-513b5384"]]), je = { clas
410
383
  }
411
384
  },
412
385
  setup(e) {
413
- const l = e, r = E(() => `Label: ${l.text}`);
414
- return (i, n) => (a(), s("div", je, [
386
+ const l = e, o = P(() => `Label: ${l.text}`);
387
+ return (a, n) => (i(), s("div", je, [
415
388
  t("span", {
416
- "aria-label": r.value,
389
+ "aria-label": o.value,
417
390
  "label-dark": e.labelDark,
418
- class: u(e.labelDark ? "label--dark" : "label--light")
419
- }, o(e.text), 11, Ke)
391
+ class: _(e.labelDark ? "label--dark" : "label--light")
392
+ }, r(e.text), 11, Ke)
420
393
  ]));
421
394
  }
422
395
  });
423
- const G = /* @__PURE__ */ h(Ue, [["__scopeId", "data-v-e7a44d10"]]), Ge = { class: "link__wrapper" }, V = /* @__PURE__ */ v({
396
+ const G = /* @__PURE__ */ h(Ue, [["__scopeId", "data-v-e7a44d10"]]), Ge = { class: "link__wrapper" }, A = /* @__PURE__ */ v({
424
397
  __name: "link",
425
398
  props: {
426
- underline: {
427
- type: String,
428
- required: !1,
429
- validator: (e) => ["hover", "true", "false"].includes(e),
430
- default: "false"
431
- },
432
- linkType: {
433
- type: String,
434
- required: !1,
435
- validator: (e) => [
436
- "primary",
437
- "secondary",
438
- "secondary-dark",
439
- "regular",
440
- "regular-dark",
441
- "regular-light",
442
- "regular-blue"
443
- ].includes(e),
444
- default: "regular"
445
- },
446
- disabled: {
447
- type: Boolean,
448
- required: !1,
449
- default: !1
450
- },
451
- arrow: {
452
- type: Boolean,
453
- required: !1,
454
- default: !1
455
- }
399
+ linkType: { default: "regular" },
400
+ arrow: { type: Boolean, default: !1 },
401
+ underline: { default: "hover" },
402
+ disabled: { type: Boolean, default: !1 }
456
403
  },
457
404
  setup(e) {
458
- const l = e, r = E(() => {
459
- const { ...i } = l;
460
- return i;
405
+ const l = e, o = {
406
+ primary: "primary",
407
+ secondary: "secondary",
408
+ secondary_dark: "secondary-dark",
409
+ regular: "regular",
410
+ regular_dark: "regular-dark",
411
+ regular_light: "regular-light",
412
+ regular_blue: "regular-blue"
413
+ }, a = P(() => o[l.linkType]), n = P(() => {
414
+ const { ...c } = l;
415
+ return c;
461
416
  });
462
- return (i, n) => (a(), s("div", Ge, [
463
- t("div", ee(r.value, {
417
+ return (c, b) => (i(), s("div", Ge, [
418
+ t("div", ee(n.value, {
464
419
  class: ["mir-link", [
465
- e.linkType === "primary" ? "mir-link--btn button button--primary" : e.linkType === "secondary" ? "mir-link--btn button button--secondary" : e.linkType === "secondary-dark" ? "mir-link--btn button button--secondary-dark" : e.linkType === "regular" ? "regular-link" : e.linkType === "regular-dark" ? "regular-link-dark" : e.linkType === "regular-light" ? "regular-link-light" : e.linkType === "regular-blue" ? "regular-link-blue" : "",
466
- e.disabled ? "disabled" : "",
467
- e.underline === "false" ? "remove-underline" : e.underline === "true" ? "add-underline" : e.underline === "hover" ? "underline-hover" : "",
468
- e.arrow ? "link-arrow" : ""
420
+ a.value,
421
+ c.disabled ? "disabled" : "",
422
+ c.underline === "false" ? "remove-underline" : c.underline === "true" ? "add-underline" : c.underline === "hover" ? "underline-hover" : "",
423
+ c.arrow ? "link-arrow" : ""
469
424
  ]]
470
425
  }), [
471
- d(i.$slots, "default")
426
+ d(c.$slots, "default")
472
427
  ], 16)
473
428
  ]));
474
429
  }
475
430
  });
476
- const We = (e) => (O("data-v-69095414"), e = e(), z(), e), Qe = ["name", "value", "checked", "disabled", "required", "id"], Ye = ["for"], Je = /* @__PURE__ */ We(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), Xe = /* @__PURE__ */ v({
431
+ const We = (e) => (O("data-v-eaed5b4f"), e = e(), z(), e), Ye = ["id", "name", "value", "checked", "disabled", "required"], Qe = ["for"], Je = /* @__PURE__ */ We(() => /* @__PURE__ */ t("span", { class: "radiomark" }, null, -1)), Xe = /* @__PURE__ */ v({
477
432
  __name: "radio-button",
478
433
  props: {
479
- name: String,
480
- value: [String, Number, Boolean],
434
+ name: {
435
+ type: String,
436
+ default: "radio"
437
+ },
438
+ value: {
439
+ type: [String, Number, Boolean],
440
+ required: !0
441
+ },
481
442
  checked: {
482
443
  type: Boolean,
483
444
  default: !1,
@@ -501,35 +462,35 @@ const We = (e) => (O("data-v-69095414"), e = e(), z(), e), Qe = ["name", "value"
501
462
  },
502
463
  emits: ["input"],
503
464
  setup(e, { emit: l }) {
504
- const r = (i) => {
505
- const n = i.target;
465
+ const o = (a) => {
466
+ const n = a.target;
506
467
  l("input", n.checked);
507
468
  };
508
- return (i, n) => (a(), s("div", {
509
- class: u(["radio__wrapper", e.disabled ? "disabled" : ""])
469
+ return (a, n) => (i(), s("div", {
470
+ class: _(["radio__wrapper", e.disabled ? "disabled" : ""])
510
471
  }, [
511
472
  t("input", {
473
+ id: e.id,
512
474
  type: "radio",
513
475
  name: e.name,
514
476
  value: e.value,
515
477
  checked: e.checked,
516
478
  disabled: e.disabled,
517
479
  required: e.required,
518
- id: e.id,
519
480
  class: "radio__radio",
520
- onChange: r
521
- }, null, 40, Qe),
481
+ onChange: o
482
+ }, null, 40, Ye),
522
483
  t("label", {
523
484
  for: e.id,
524
- class: u(["radio__label", e.required ? "required" : ""])
485
+ class: _(["radio__label", e.required ? "required" : ""])
525
486
  }, [
526
487
  Je,
527
- d(i.$slots, "default", {}, void 0, !0)
528
- ], 10, Ye)
488
+ d(a.$slots, "default", {}, void 0, !0)
489
+ ], 10, Qe)
529
490
  ], 2));
530
491
  }
531
492
  });
532
- const Ze = /* @__PURE__ */ h(Xe, [["__scopeId", "data-v-69095414"]]), et = { class: "select__wrapper" }, tt = ["for"], at = ["disabled", "id", "name", "value"], lt = ["value"], it = /* @__PURE__ */ v({
493
+ const Ze = /* @__PURE__ */ h(Xe, [["__scopeId", "data-v-eaed5b4f"]]), et = { class: "select__wrapper" }, tt = ["for"], at = ["id", "disabled", "name", "value"], lt = ["value"], it = /* @__PURE__ */ v({
533
494
  __name: "select",
534
495
  props: {
535
496
  id: {
@@ -570,30 +531,30 @@ const Ze = /* @__PURE__ */ h(Xe, [["__scopeId", "data-v-69095414"]]), et = { cla
570
531
  },
571
532
  emits: ["update:modelValue"],
572
533
  setup(e) {
573
- return (l, r) => (a(), s("div", et, [
534
+ return (l, o) => (i(), s("div", et, [
574
535
  t("label", {
575
536
  for: e.id,
576
- class: u([e.required ? "required" : "", e.disabled ? "disabled" : ""])
577
- }, o(e.label), 11, tt),
537
+ class: _([e.required ? "required" : "", e.disabled ? "disabled" : ""])
538
+ }, r(e.label), 11, tt),
578
539
  t("select", {
579
- class: u(e.disabled ? "disabled" : ""),
580
- disabled: e.disabled,
581
540
  id: e.id,
541
+ class: _(e.disabled ? "disabled" : ""),
542
+ disabled: e.disabled,
582
543
  name: e.name,
583
544
  value: e.modelValue,
584
- onChange: r[0] || (r[0] = (i) => {
585
- l.$emit("update:modelValue", i.target.value), i.target.blur();
545
+ onChange: o[0] || (o[0] = (a) => {
546
+ l.$emit("update:modelValue", a.target.value), a.target.blur();
586
547
  })
587
548
  }, [
588
- (a(!0), s(I, null, T(e.options, (i) => (a(), s("option", {
589
- key: i.value,
590
- value: i.value
591
- }, o(i.text), 9, lt))), 128))
549
+ (i(!0), s(I, null, C(e.options, (a) => (i(), s("option", {
550
+ key: a.value,
551
+ value: a.value
552
+ }, r(a.text), 9, lt))), 128))
592
553
  ], 42, at)
593
554
  ]));
594
555
  }
595
556
  });
596
- const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-500637d5"]]), rt = { class: "modal__wrapper" }, ot = /* @__PURE__ */ v({
557
+ const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-4445d1ae"]]), ot = { class: "modal__wrapper" }, rt = /* @__PURE__ */ v({
597
558
  __name: "modal",
598
559
  props: {
599
560
  show: { type: Boolean, default: !1 },
@@ -601,39 +562,34 @@ const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-500637d5"]]), rt = { cla
601
562
  },
602
563
  emits: ["update:show"],
603
564
  setup(e, { emit: l }) {
604
- const r = e;
605
- E({
606
- get: () => r.show,
607
- set: (n) => l("update:show", n)
608
- });
609
- const i = () => {
610
- l("update:show", !r.show);
565
+ const o = e, a = () => {
566
+ l("update:show", !o.show);
611
567
  };
612
- return (n, _) => (a(), s("div", rt, [
568
+ return (n, c) => (i(), s("div", ot, [
613
569
  p(ge, {
614
570
  duration: 300,
615
571
  name: "nested"
616
572
  }, {
617
573
  default: $(() => [
618
- n.show ? (a(), s("div", {
574
+ n.show ? (i(), s("div", {
619
575
  key: 0,
620
- class: u(["overlay", n.searchBar ? "overlay-search" : "overlay-default"]),
621
- onClick: i,
576
+ class: _(["overlay", n.searchBar ? "overlay-search" : "overlay-default"]),
622
577
  ariaLabel: "modal",
623
- role: "dialog"
578
+ role: "dialog",
579
+ onClick: a
624
580
  }, [
625
581
  t("div", {
626
582
  id: "modal",
627
- onClick: _[0] || (_[0] = re(() => {
628
- }, ["stop"])),
629
- class: u([n.searchBar ? "search" : ""])
583
+ class: _([n.searchBar ? "search" : ""]),
584
+ onClick: c[0] || (c[0] = oe(() => {
585
+ }, ["stop"]))
630
586
  }, [
631
587
  t("div", null, [
632
- n.searchBar ? m("", !0) : (a(), D(J, {
588
+ n.searchBar ? m("", !0) : (i(), D(J, {
633
589
  key: 0,
634
- ariaLabel: "close",
590
+ "aria-label": "close",
635
591
  variant: "close",
636
- onClick: i
592
+ onClick: a
637
593
  }))
638
594
  ]),
639
595
  d(n.$slots, "default", {}, void 0, !0)
@@ -645,7 +601,7 @@ const st = /* @__PURE__ */ h(it, [["__scopeId", "data-v-500637d5"]]), rt = { cla
645
601
  ]));
646
602
  }
647
603
  });
648
- const de = /* @__PURE__ */ h(ot, [["__scopeId", "data-v-e18c70fd"]]), nt = { class: "slider__wrapper" }, dt = { class: "slider__label" }, ct = ["for"], ut = ["aria-label"], _t = { class: "slider__content" }, ht = ["id", "name", "value", "min", "step", "max"], vt = /* @__PURE__ */ v({
604
+ const de = /* @__PURE__ */ h(rt, [["__scopeId", "data-v-ae81fb1e"]]), nt = { class: "slider__wrapper" }, dt = { class: "slider__label" }, ct = ["for"], ut = ["aria-label"], _t = { class: "slider__content" }, ht = ["id", "name", "value", "min", "step", "max"], vt = /* @__PURE__ */ v({
649
605
  __name: "slider",
650
606
  props: {
651
607
  label: {
@@ -698,87 +654,90 @@ const de = /* @__PURE__ */ h(ot, [["__scopeId", "data-v-e18c70fd"]]), nt = { cla
698
654
  },
699
655
  emits: ["update:modelValue"],
700
656
  setup(e, { emit: l }) {
701
- const r = e, i = w(r.modelValue), n = w(), _ = w(!1), b = (S, g, q) => (S - g) / (q - g) * 100, C = (S) => {
657
+ const o = e, a = w(o.modelValue), n = w(), c = w(!1), b = (S, g, q) => (S - g) / (q - g) * 100, T = (S) => {
702
658
  var g;
703
659
  (g = n.value) == null || g.style.setProperty("--ProgressPercent", `${S}%`);
704
660
  };
705
- return oe(() => {
661
+ return re(() => {
706
662
  if (n.value) {
707
- l("update:modelValue", i.value);
708
- const S = b(i.value, r.min, r.max);
663
+ l("update:modelValue", a.value);
664
+ const S = b(a.value, o.min, o.max);
709
665
  let g = (50 - S) / 100;
710
- C(S + g);
666
+ T(S + g);
711
667
  }
712
- }), (S, g) => (a(), s("div", null, [
668
+ }), (S, g) => (i(), s("div", null, [
713
669
  t("div", nt, [
714
670
  t("div", dt, [
715
671
  t("label", {
716
672
  for: e.id,
717
- class: u([e.variant, ""])
718
- }, o(e.label), 11, ct),
719
- e.information ? (a(), s("i", {
673
+ class: _([e.variant, ""])
674
+ }, r(e.label), 11, ct),
675
+ e.information ? (i(), s("i", {
720
676
  key: 0,
721
677
  role: "button",
722
- class: u([e.variant, "slider__information"]),
723
- onClick: g[0] || (g[0] = (q) => _.value = !_.value),
724
- onKeyup: g[1] || (g[1] = ye((q) => _.value = !_.value, ["enter"])),
678
+ class: _([e.variant, "slider__information"]),
725
679
  "aria-label": e.informationLabel,
726
680
  tabindex: "0",
727
- "aria-haspopup": "dialog"
681
+ "aria-haspopup": "dialog",
682
+ onClick: g[0] || (g[0] = (q) => c.value = !c.value),
683
+ onKeyup: g[1] || (g[1] = ye((q) => c.value = !c.value, ["enter"]))
728
684
  }, null, 42, ut)) : m("", !0)
729
685
  ]),
730
686
  t("div", _t, [
731
687
  t("span", {
732
- class: u([e.variant, "slider__minmax"])
733
- }, o(e.min), 3),
688
+ class: _([e.variant, "slider__minmax"])
689
+ }, r(e.min), 3),
734
690
  t("input", {
735
- type: "range",
736
691
  id: e.id,
692
+ ref_key: "slider",
693
+ ref: n,
694
+ type: "range",
737
695
  name: e.name,
738
696
  value: e.modelValue,
739
697
  min: e.min,
740
698
  step: e.step,
741
699
  max: e.max,
742
- class: u(e.variant),
743
- ref_key: "slider",
744
- ref: n,
745
- onInput: g[2] || (g[2] = ({ target: q }) => i.value = parseFloat(q.value))
700
+ class: _(e.variant),
701
+ onInput: g[2] || (g[2] = ({ target: q }) => a.value = parseFloat(q.value))
746
702
  }, null, 42, ht),
747
703
  t("span", {
748
- class: u([e.variant, "slider__minmax"])
749
- }, o(e.max), 3)
704
+ class: _([e.variant, "slider__minmax"])
705
+ }, r(e.max), 3)
750
706
  ]),
751
707
  t("span", {
752
- class: u([e.variant, "slider__value"])
753
- }, o(e.modelValue), 3)
708
+ class: _([e.variant, "slider__value"])
709
+ }, r(e.modelValue), 3)
754
710
  ]),
755
- e.information ? (a(), D(de, {
711
+ e.information ? (i(), D(de, {
756
712
  key: 0,
757
- show: _.value,
758
- "onUpdate:show": g[3] || (g[3] = (q) => _.value = q)
713
+ show: c.value,
714
+ "onUpdate:show": g[3] || (g[3] = (q) => c.value = q)
759
715
  }, {
760
716
  default: $(() => [
761
- j(o(e.information), 1)
717
+ j(r(e.information), 1)
762
718
  ]),
763
719
  _: 1
764
720
  }, 8, ["show"])) : m("", !0)
765
721
  ]));
766
722
  }
767
723
  });
768
- const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-6dbb2648"]]), ft = { id: "textarea-wrapper" }, gt = ["for"], yt = ["id"], bt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], pt = { class: "textarea-info" }, $t = { key: 0 }, kt = /* @__PURE__ */ v({
724
+ const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-39b97f8e"]]), ft = { id: "textarea-wrapper" }, gt = ["for"], yt = ["id"], pt = ["id", "name", "placeholder", "required", "disabled", "maxlength", "value"], bt = { class: "textarea-info" }, $t = { key: 0 }, kt = /* @__PURE__ */ v({
769
725
  __name: "textarea",
770
726
  props: {
771
727
  id: {
772
728
  type: String,
773
- required: !1
729
+ required: !1,
730
+ default: ""
774
731
  },
775
732
  name: {
776
733
  type: String,
777
- required: !1
734
+ required: !1,
735
+ default: ""
778
736
  },
779
737
  placeholder: {
780
738
  type: String,
781
- required: !1
739
+ required: !1,
740
+ default: ""
782
741
  },
783
742
  required: {
784
743
  type: Boolean,
@@ -792,66 +751,69 @@ const mt = /* @__PURE__ */ h(vt, [["__scopeId", "data-v-6dbb2648"]]), ft = { id:
792
751
  },
793
752
  labelText: {
794
753
  type: String,
795
- required: !1
754
+ required: !1,
755
+ default: ""
796
756
  },
797
757
  maxLength: {
798
758
  type: Number,
799
- required: !1
759
+ required: !1,
760
+ default: void 0
800
761
  },
801
762
  modelValue: {
802
763
  type: String,
803
- required: !1
764
+ required: !1,
765
+ default: void 0
804
766
  }
805
767
  },
806
768
  emits: ["update:modelValue"],
807
769
  setup(e) {
808
- return (l, r) => (a(), s("div", ft, [
770
+ return (l, o) => (i(), s("div", ft, [
809
771
  t("label", {
810
772
  for: e.id,
811
- class: u({ required: e.required })
812
- }, o(e.labelText) + o(e.required ? " *" : ""), 11, gt),
773
+ class: _({ required: e.required })
774
+ }, r(e.labelText) + r(e.required ? " *" : ""), 11, gt),
813
775
  t("div", {
814
776
  id: e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "textarea-wrapper__inner" : ""
815
777
  }, [
816
778
  t("textarea", {
779
+ id: e.id,
817
780
  rows: "10",
818
781
  cols: "50",
819
- id: e.id,
820
782
  name: e.name,
821
783
  placeholder: e.placeholder,
822
784
  required: e.required,
823
785
  disabled: e.disabled,
824
786
  maxlength: e.maxLength,
825
787
  value: e.modelValue,
826
- onInput: r[0] || (r[0] = (i) => l.$emit("update:modelValue", i.target.value)),
827
- class: u(
788
+ class: _(
828
789
  e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit" : "border"
829
- )
830
- }, null, 42, bt)
790
+ ),
791
+ onInput: o[0] || (o[0] = (a) => l.$emit("update:modelValue", a.target.value))
792
+ }, null, 42, pt)
831
793
  ], 8, yt),
832
- t("div", pt, [
794
+ t("div", bt, [
833
795
  t("div", null, [
834
- e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (a(), s("p", $t, " Too many characters. Please make it shorter ")) : m("", !0)
796
+ e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? (i(), s("p", $t, " Too many characters. Please make it shorter ")) : m("", !0)
835
797
  ]),
836
798
  t("p", {
837
- class: u(
799
+ class: _(
838
800
  e.modelValue !== void 0 && e.modelValue.length == e.maxLength ? "reached-meter-limit-meter" : ""
839
801
  )
840
- }, o(e.maxLength !== void 0 && e.modelValue !== void 0 && e.maxLength - e.modelValue.length >= 0 ? e.modelValue.length : 0) + " / " + o(e.maxLength), 3)
802
+ }, r(e.maxLength !== void 0 && e.modelValue !== void 0 && e.maxLength - e.modelValue.length >= 0 ? e.modelValue.length : 0) + " / " + r(e.maxLength), 3)
841
803
  ])
842
804
  ]));
843
805
  }
844
806
  });
845
- const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { class: "text-field__wrapper" }, St = ["for"], qt = { key: 0 }, Bt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], It = ["aria-expanded"], Tt = ["type", "value", "placeholder", "id", "required", "disabled", "name"], Lt = {
807
+ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-05a5f31c"]]), xt = { class: "text-field__wrapper" }, St = ["for"], qt = { key: 0 }, Bt = ["id", "type", "value", "placeholder", "required", "disabled", "name"], It = ["aria-expanded"], Ct = ["id", "type", "value", "placeholder", "required", "disabled", "name"], Lt = {
846
808
  key: 2,
847
809
  class: "search"
848
- }, Ct = {
810
+ }, Tt = {
849
811
  key: 3,
850
812
  class: "errorMessage"
851
- }, Vt = {
813
+ }, At = {
852
814
  key: 4,
853
815
  class: "helperText"
854
- }, At = /* @__PURE__ */ v({
816
+ }, Vt = /* @__PURE__ */ v({
855
817
  __name: "text-field",
856
818
  props: {
857
819
  type: {
@@ -910,11 +872,13 @@ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
910
872
  },
911
873
  errorMessage: {
912
874
  type: String,
913
- required: !1
875
+ required: !1,
876
+ default: ""
914
877
  },
915
878
  helperText: {
916
879
  type: String,
917
- required: !1
880
+ required: !1,
881
+ default: ""
918
882
  },
919
883
  search: {
920
884
  type: Boolean,
@@ -929,63 +893,63 @@ const wt = /* @__PURE__ */ h(kt, [["__scopeId", "data-v-626f208b"]]), xt = { cla
929
893
  },
930
894
  emits: ["update:modelValue"],
931
895
  setup(e) {
932
- const l = w(!0), r = E(
896
+ const l = w(!0), o = P(
933
897
  () => l.value ? "showPassword" : "hidePassword"
934
- ), i = E(
898
+ ), a = P(
935
899
  () => l.value ? "password" : "text"
936
900
  );
937
- return (n, _) => (a(), s("div", xt, [
901
+ return (n, c) => (i(), s("div", xt, [
938
902
  t("label", {
939
903
  for: e.id,
940
- class: u([
904
+ class: _([
941
905
  e.required ? "required" : "",
942
906
  e.disabled ? "disabled" : "",
943
907
  e.search ? "search" : ""
944
908
  ])
945
- }, o(e.label), 11, St),
946
- e.type === "password" ? (a(), s("div", qt, [
909
+ }, r(e.label), 11, St),
910
+ e.type === "password" ? (i(), s("div", qt, [
947
911
  t("input", {
948
912
  id: e.id,
949
- type: i.value,
913
+ ref: "passwordField",
914
+ type: a.value,
950
915
  value: e.modelValue,
951
916
  placeholder: e.placeholder,
952
917
  required: e.required,
953
918
  disabled: e.disabled,
954
- onInput: _[0] || (_[0] = (b) => n.$emit("update:modelValue", b.target.value)),
955
919
  name: e.fieldName,
956
- ref: "passwordField"
920
+ onInput: c[0] || (c[0] = (b) => n.$emit("update:modelValue", b.target.value))
957
921
  }, null, 40, Bt),
958
922
  t("i", {
959
923
  role: "button",
960
- class: u([r.value]),
961
- onClick: _[1] || (_[1] = (b) => l.value = !l.value),
924
+ class: _([o.value]),
962
925
  "aria-controls": "password",
963
- "aria-expanded": !l.value
926
+ "aria-expanded": !l.value,
927
+ onClick: c[1] || (c[1] = (b) => l.value = !l.value)
964
928
  }, null, 10, It)
965
- ])) : (a(), s("input", {
929
+ ])) : (i(), s("input", {
966
930
  key: 1,
931
+ id: e.id,
932
+ ref: "textField",
967
933
  type: e.type,
968
934
  value: e.modelValue,
969
935
  placeholder: e.placeholder,
970
- id: e.id,
971
936
  required: e.required,
972
- class: u([
937
+ class: _([
973
938
  e.invalid ? "invalid" : "",
974
939
  e.valid ? "valid" : "",
975
940
  e.search ? "search" : ""
976
941
  ]),
977
942
  disabled: e.disabled,
978
- onInput: _[2] || (_[2] = (b) => n.$emit("update:modelValue", b.target.value)),
979
943
  name: e.fieldName,
980
- ref: "textField"
981
- }, null, 42, Tt)),
982
- e.search ? (a(), s("i", Lt)) : m("", !0),
983
- e.errorMessage ? (a(), s("strong", Ct, o(e.errorMessage), 1)) : m("", !0),
984
- e.helperText ? (a(), s("span", Vt, o(e.helperText), 1)) : m("", !0)
944
+ onInput: c[2] || (c[2] = (b) => n.$emit("update:modelValue", b.target.value))
945
+ }, null, 42, Ct)),
946
+ e.search ? (i(), s("i", Lt)) : m("", !0),
947
+ e.errorMessage ? (i(), s("strong", Tt, r(e.errorMessage), 1)) : m("", !0),
948
+ e.helperText ? (i(), s("span", At, r(e.helperText), 1)) : m("", !0)
985
949
  ]));
986
950
  }
987
951
  });
988
- const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { class: "video__wrapper" }, Ot = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], zt = ["src", "aria-label", "title", "width", "height"], Ft = /* @__PURE__ */ v({
952
+ const Dt = /* @__PURE__ */ h(Vt, [["__scopeId", "data-v-c09f7900"]]), Mt = { class: "video__wrapper" }, Ot = ["aria-label", "controls", "poster", "width", "height", "autoplay", "loop", "muted", "src"], zt = ["src", "aria-label", "title", "width", "height"], Ft = /* @__PURE__ */ v({
989
953
  __name: "video",
990
954
  props: {
991
955
  play: {
@@ -1014,7 +978,10 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
1014
978
  type: Boolean,
1015
979
  default: !0
1016
980
  },
1017
- poster: String,
981
+ poster: {
982
+ type: String,
983
+ default: ""
984
+ },
1018
985
  width: {
1019
986
  type: [String, Number],
1020
987
  default: "100%"
@@ -1037,19 +1004,19 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
1037
1004
  }
1038
1005
  },
1039
1006
  setup(e, { expose: l }) {
1040
- const r = e;
1041
- let i = w(null);
1042
- return oe(() => {
1043
- r.play && i.value ? i.value.play() : !r.play && i.value && i.value.pause();
1007
+ const o = e;
1008
+ let a = w(null);
1009
+ return re(() => {
1010
+ a.value && (o.play ? a.value.play() : o.play || a.value.pause());
1044
1011
  }), l({
1045
1012
  resetVideo: () => {
1046
- i.value && (i.value.currentTime = 0, i.value.play());
1013
+ a.value && (a.value.currentTime = 0, a.value.play());
1047
1014
  }
1048
- }), (_, b) => (a(), s("div", Mt, [
1049
- e.localVideo ? (a(), s("video", {
1015
+ }), (c, b) => (i(), s("div", Mt, [
1016
+ e.localVideo ? (i(), s("video", {
1050
1017
  key: 0,
1051
1018
  ref_key: "videoRef",
1052
- ref: i,
1019
+ ref: a,
1053
1020
  "aria-label": e.ariaLabel,
1054
1021
  controls: e.controls,
1055
1022
  poster: e.poster,
@@ -1061,7 +1028,7 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
1061
1028
  type: "video/mp4",
1062
1029
  playsinline: "",
1063
1030
  src: e.src
1064
- }, null, 8, Ot)) : (a(), s("iframe", {
1031
+ }, null, 8, Ot)) : (i(), s("iframe", {
1065
1032
  key: 1,
1066
1033
  src: e.src,
1067
1034
  "aria-label": e.ariaLabel,
@@ -1075,7 +1042,7 @@ const Dt = /* @__PURE__ */ h(At, [["__scopeId", "data-v-f0ec9f97"]]), Mt = { cla
1075
1042
  ]));
1076
1043
  }
1077
1044
  });
1078
- const K = /* @__PURE__ */ h(Ft, [["__scopeId", "data-v-cc1144b9"]]), Pt = { class: "address__wrapper" }, Et = { class: "address__content" }, Ht = { class: "address__flag" }, Nt = { class: "address__address" }, Rt = { class: "address__name" }, jt = { key: 0 }, Kt = { class: "address__contact" }, Ut = ["href"], Gt = ["href"], Wt = /* @__PURE__ */ v({
1045
+ const K = /* @__PURE__ */ h(Ft, [["__scopeId", "data-v-30720f26"]]), Pt = { class: "address__wrapper" }, Nt = { class: "address__content" }, Et = { class: "address__flag" }, Ht = { class: "address__address" }, Rt = { class: "address__name" }, jt = { key: 0 }, Kt = { class: "address__contact" }, Ut = ["href"], Gt = ["href"], Wt = /* @__PURE__ */ v({
1079
1046
  __name: "address",
1080
1047
  props: {
1081
1048
  name: {
@@ -1086,19 +1053,22 @@ const K = /* @__PURE__ */ h(Ft, [["__scopeId", "data-v-cc1144b9"]]), Pt = { clas
1086
1053
  type: String,
1087
1054
  required: !0
1088
1055
  },
1089
- addressLine_1: {
1056
+ addressLine1: {
1090
1057
  type: String,
1091
1058
  required: !0
1092
1059
  },
1093
- addressLine_2: {
1060
+ addressLine2: {
1094
1061
  type: String,
1095
1062
  required: !0
1096
1063
  },
1097
- addressLine_3: {
1098
- type: String
1064
+ addressLine3: {
1065
+ type: String,
1066
+ required: !1,
1067
+ default: void 0
1099
1068
  },
1100
- phone_numbers: {
1101
- type: Array
1069
+ phoneNumbers: {
1070
+ type: Array,
1071
+ required: !0
1102
1072
  },
1103
1073
  email: {
1104
1074
  type: String,
@@ -1106,41 +1076,42 @@ const K = /* @__PURE__ */ h(Ft, [["__scopeId", "data-v-cc1144b9"]]), Pt = { clas
1106
1076
  }
1107
1077
  },
1108
1078
  setup(e) {
1109
- return (l, r) => (a(), s("div", Pt, [
1110
- t("div", Et, [
1111
- t("div", Ht, [
1079
+ return (l, o) => (i(), s("div", Pt, [
1080
+ t("div", Nt, [
1081
+ t("div", Et, [
1112
1082
  d(l.$slots, "address-flag", {}, void 0, !0)
1113
1083
  ]),
1114
- t("div", Nt, [
1115
- t("p", Rt, o(e.name), 1),
1116
- t("p", null, o(e.company), 1),
1117
- t("p", null, o(e.addressLine_1), 1),
1118
- t("p", null, o(e.addressLine_2), 1),
1119
- e.addressLine_3 ? (a(), s("p", jt, o(e.addressLine_3), 1)) : m("", !0)
1084
+ t("div", Ht, [
1085
+ t("p", Rt, r(e.name), 1),
1086
+ t("p", null, r(e.company), 1),
1087
+ t("p", null, r(e.addressLine1), 1),
1088
+ t("p", null, r(e.addressLine2), 1),
1089
+ e.addressLine3 ? (i(), s("p", jt, r(e.addressLine3), 1)) : m("", !0)
1120
1090
  ]),
1121
1091
  t("div", Kt, [
1122
- (a(!0), s(I, null, T(e.phone_numbers, (i) => (a(), D(V, {
1092
+ (i(!0), s(I, null, C(e.phoneNumbers, (a) => (i(), D(A, {
1093
+ key: a,
1123
1094
  underline: "false",
1124
- linkType: "regular"
1095
+ "link-type": "regular"
1125
1096
  }, {
1126
1097
  default: $(() => [
1127
1098
  t("a", {
1128
- href: "tel:" + i,
1099
+ href: "tel:" + a,
1129
1100
  class: "address__phone"
1130
- }, o(i), 9, Ut)
1101
+ }, r(a), 9, Ut)
1131
1102
  ]),
1132
1103
  _: 2
1133
- }, 1024))), 256)),
1104
+ }, 1024))), 128)),
1134
1105
  t("a", {
1135
1106
  href: "mailto:" + e.email,
1136
1107
  class: "address__email"
1137
- }, o(e.email), 9, Gt)
1108
+ }, r(e.email), 9, Gt)
1138
1109
  ])
1139
1110
  ])
1140
1111
  ]));
1141
1112
  }
1142
1113
  });
1143
- const Qt = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-22ea3b79"]]), Yt = (e) => (O("data-v-a335dd30"), e = e(), z(), e), Jt = { class: "bullet-list__wrapper" }, Xt = /* @__PURE__ */ Yt(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), Zt = /* @__PURE__ */ v({
1114
+ const Yt = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-dc337ec6"]]), Qt = (e) => (O("data-v-a44fd57d"), e = e(), z(), e), Jt = { class: "bullet-list__wrapper" }, Xt = /* @__PURE__ */ Qt(() => /* @__PURE__ */ t("i", { class: "checkmark" }, null, -1)), Zt = /* @__PURE__ */ v({
1144
1115
  __name: "bullet-list",
1145
1116
  props: {
1146
1117
  list: {
@@ -1160,21 +1131,21 @@ const Qt = /* @__PURE__ */ h(Wt, [["__scopeId", "data-v-22ea3b79"]]), Yt = (e) =
1160
1131
  }
1161
1132
  },
1162
1133
  setup(e) {
1163
- return (l, r) => (a(), s("div", Jt, [
1134
+ return (l, o) => (i(), s("div", Jt, [
1164
1135
  t("div", {
1165
- class: u(["bullet-list", e.variant])
1136
+ class: _(["bullet-list", e.variant])
1166
1137
  }, [
1167
1138
  t("ul", null, [
1168
- (a(!0), s(I, null, T(e.list, (i) => (a(), s("li", null, [
1139
+ (i(!0), s(I, null, C(e.list, (a) => (i(), s("li", { key: a }, [
1169
1140
  Xt,
1170
- j(" " + o(i), 1)
1171
- ]))), 256))
1141
+ j(" " + r(a), 1)
1142
+ ]))), 128))
1172
1143
  ])
1173
1144
  ], 2)
1174
1145
  ]));
1175
1146
  }
1176
1147
  });
1177
- const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { class: "card__wrapper" }, aa = {
1148
+ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a44fd57d"]]), ta = { class: "card__wrapper" }, aa = {
1178
1149
  key: 2,
1179
1150
  class: "card__label"
1180
1151
  }, la = { key: 5 }, ia = /* @__PURE__ */ v({
@@ -1222,21 +1193,42 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
1222
1193
  type: String,
1223
1194
  default: ""
1224
1195
  },
1225
- url: String,
1226
- imgSrc: String,
1227
- videoSrc: String,
1228
- arialabel: String,
1229
- poster: String,
1230
- labelText: String,
1231
- alt: String
1196
+ url: {
1197
+ type: String,
1198
+ default: ""
1199
+ },
1200
+ imgSrc: {
1201
+ type: String,
1202
+ default: ""
1203
+ },
1204
+ videoSrc: {
1205
+ type: String,
1206
+ default: ""
1207
+ },
1208
+ arialabel: {
1209
+ type: String,
1210
+ default: ""
1211
+ },
1212
+ poster: {
1213
+ type: String,
1214
+ default: ""
1215
+ },
1216
+ labelText: {
1217
+ type: String,
1218
+ default: ""
1219
+ },
1220
+ alt: {
1221
+ type: String,
1222
+ default: ""
1223
+ }
1232
1224
  },
1233
1225
  emits: ["clicked"],
1234
- setup(e, { emit: l }) {
1235
- const r = be();
1236
- let i = w(!1);
1237
- return (n, _) => (a(), s("div", ta, [
1226
+ setup(e) {
1227
+ const l = pe();
1228
+ let o = w(!1);
1229
+ return (a, n) => (i(), s("div", ta, [
1238
1230
  t("div", {
1239
- class: u(["card", [
1231
+ class: _(["card", [
1240
1232
  e.theme == "dark" ? "card--dark" : "card--light",
1241
1233
  e.orientation == "vertical" ? "vertical" : "horizontal",
1242
1234
  e.size == "small" ? "card--small" : e.size == "medium" ? "card--medium" : e.size == "large" ? "card--large" : "",
@@ -1244,12 +1236,12 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
1244
1236
  e.variant == "product" ? "card--product" : "card--article"
1245
1237
  ]]),
1246
1238
  style: te([e.variant == "product" ? "font-weight: 700" : "font-weight: 300"]),
1247
- onMouseover: _[0] || (_[0] = (b) => ie(i) ? i.value = !0 : i = !0),
1248
- onMouseout: _[1] || (_[1] = (b) => ie(i) ? i.value = !1 : i = !1)
1239
+ onMouseover: n[0] || (n[0] = (c) => ie(o) ? o.value = !0 : o = !0),
1240
+ onMouseout: n[1] || (n[1] = (c) => ie(o) ? o.value = !1 : o = !1)
1249
1241
  }, [
1250
- e.mediaType == "image" ? (a(), D(L, { key: 0 }, {
1242
+ e.mediaType == "image" ? (i(), D(L, { key: 0 }, {
1251
1243
  default: $(() => [
1252
- d(n.$slots, "card-image", ee({
1244
+ d(a.$slots, "card-image", ee({
1253
1245
  src: e.imgSrc,
1254
1246
  height: e.size == "small" ? "186" : e.size == "medium" ? "243" : e.size == "large" ? "335" : "",
1255
1247
  width: e.size == "small" ? "298" : e.size == "medium" ? "432" : e.size == "large" ? "596" : "",
@@ -1259,13 +1251,13 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
1259
1251
  }, { srcset: e.srcSet }))
1260
1252
  ]),
1261
1253
  _: 3
1262
- })) : (a(), s("div", {
1254
+ })) : (i(), s("div", {
1263
1255
  key: 1,
1264
- class: u(["video-card__wrapper", B(i) == !0 ? "vimeoPlaying" : ""])
1256
+ class: _(["video-card__wrapper", B(o) == !0 ? "vimeoPlaying" : ""])
1265
1257
  }, [
1266
1258
  p(K, {
1267
- play: B(i),
1268
- localVideo: !0,
1259
+ play: B(o),
1260
+ "local-video": !0,
1269
1261
  src: e.videoSrc,
1270
1262
  "aria-label": e.arialabel,
1271
1263
  controls: !1,
@@ -1277,22 +1269,22 @@ const ea = /* @__PURE__ */ h(Zt, [["__scopeId", "data-v-a335dd30"]]), ta = { cla
1277
1269
  muted: !0
1278
1270
  }, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
1279
1271
  ], 2)),
1280
- B(r)["card-label"] ? (a(), s("div", aa, [
1281
- d(n.$slots, "card-label")
1272
+ B(l)["card-label"] ? (i(), s("div", aa, [
1273
+ d(a.$slots, "card-label")
1282
1274
  ])) : m("", !0),
1283
- e.variant === "product" ? (a(), s("h3", {
1275
+ e.variant === "product" ? (i(), s("h3", {
1284
1276
  key: 3,
1285
- class: u(e.theme == "dark" ? "regular-dark" : "regular-blue")
1286
- }, o(e.headline), 3)) : (a(), s("h3", {
1277
+ class: _(e.theme == "dark" ? "regular-dark" : "regular-blue")
1278
+ }, r(e.headline), 3)) : (i(), s("h3", {
1287
1279
  key: 4,
1288
- class: u(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
1289
- }, o(e.headline), 3)),
1290
- e.variant == "product" ? (a(), s("p", la, o(e.paragraph), 1)) : m("", !0)
1280
+ class: _(e.theme == "dark" ? "regular-dark" : "regular-dark-blue")
1281
+ }, r(e.headline), 3)),
1282
+ e.variant == "product" ? (i(), s("p", la, r(e.paragraph), 1)) : m("", !0)
1291
1283
  ], 38)
1292
1284
  ]));
1293
1285
  }
1294
1286
  });
1295
- const sa = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-05c8a5c4"]]), ra = (e) => (O("data-v-b0f9972c"), e = e(), z(), e), oa = { class: "event__wrapper" }, na = { class: "event__headline" }, da = { class: "event__date-location" }, ca = /* @__PURE__ */ ra(() => /* @__PURE__ */ t("br", null, null, -1)), ua = { class: "event__exhibitor" }, _a = /* @__PURE__ */ v({
1287
+ const sa = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-02d9cef5"]]), oa = (e) => (O("data-v-1a97c019"), e = e(), z(), e), ra = { class: "event__wrapper" }, na = { class: "event__headline" }, da = { class: "event__date-location" }, ca = /* @__PURE__ */ oa(() => /* @__PURE__ */ t("br", null, null, -1)), ua = { class: "event__exhibitor" }, _a = /* @__PURE__ */ v({
1296
1288
  __name: "event-card",
1297
1289
  props: {
1298
1290
  eventType: {
@@ -1317,22 +1309,22 @@ const sa = /* @__PURE__ */ h(ia, [["__scopeId", "data-v-05c8a5c4"]]), ra = (e) =
1317
1309
  }
1318
1310
  },
1319
1311
  setup(e) {
1320
- return (l, r) => (a(), s("div", oa, [
1312
+ return (l, o) => (i(), s("div", ra, [
1321
1313
  p(G, {
1322
1314
  "label-dark": !1,
1323
1315
  text: e.eventType ? e.eventType : ""
1324
1316
  }, null, 8, ["text"]),
1325
- t("div", na, o(e.headline), 1),
1317
+ t("div", na, r(e.headline), 1),
1326
1318
  t("div", da, [
1327
- j(o(e.dateTime), 1),
1319
+ j(r(e.dateTime), 1),
1328
1320
  ca,
1329
- j(o(e.location), 1)
1321
+ j(r(e.location), 1)
1330
1322
  ]),
1331
- t("div", ua, "Exhibitor: " + o(e.exhibitor), 1)
1323
+ t("div", ua, "Exhibitor: " + r(e.exhibitor), 1)
1332
1324
  ]));
1333
1325
  }
1334
1326
  });
1335
- const ha = /* @__PURE__ */ h(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { class: "text__wrapper" }, ma = { class: "text__headline" }, fa = { class: "text__paragraph" }, ga = /* @__PURE__ */ v({
1327
+ const ha = /* @__PURE__ */ h(_a, [["__scopeId", "data-v-1a97c019"]]), va = { class: "text__wrapper" }, ma = { class: "text__headline" }, fa = { class: "text__paragraph" }, ga = /* @__PURE__ */ v({
1336
1328
  __name: "text-card",
1337
1329
  props: {
1338
1330
  label: {
@@ -1349,55 +1341,64 @@ const ha = /* @__PURE__ */ h(_a, [["__scopeId", "data-v-b0f9972c"]]), va = { cla
1349
1341
  }
1350
1342
  },
1351
1343
  setup(e) {
1352
- return (l, r) => (a(), s("div", va, [
1344
+ return (l, o) => (i(), s("div", va, [
1353
1345
  p(G, {
1354
1346
  "label-dark": !1,
1355
1347
  text: e.label ? e.label : ""
1356
1348
  }, null, 8, ["text"]),
1357
- t("div", ma, o(e.headline), 1),
1349
+ t("div", ma, r(e.headline), 1),
1358
1350
  t("div", fa, [
1359
- t("p", null, o(e.paragraph), 1)
1351
+ t("p", null, r(e.paragraph), 1)
1360
1352
  ])
1361
1353
  ]));
1362
1354
  }
1363
1355
  });
1364
- const ya = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-b07d352b"]]), ba = { class: "facts__wrapper" }, pa = { class: "facts__content" }, $a = { class: "facts__headline" }, ka = { class: "facts" }, wa = { class: "fact" }, xa = { class: "fact__value" }, Sa = { class: "fact__metric" }, qa = {
1356
+ const ya = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-ebdea819"]]), pa = { class: "facts__wrapper" }, ba = { class: "facts__content" }, $a = { class: "facts__headline" }, ka = { class: "facts" }, wa = { class: "fact__value" }, xa = { class: "fact__metric" }, Sa = {
1365
1357
  key: 0,
1366
1358
  class: "facts__link"
1367
- }, Ba = /* @__PURE__ */ v({
1359
+ }, qa = /* @__PURE__ */ v({
1368
1360
  __name: "facts",
1369
1361
  props: {
1370
- headline: {
1371
- type: String
1372
- },
1373
- facts: {
1374
- type: Array,
1375
- required: !0,
1376
- validator(e) {
1377
- return e.length === 3;
1362
+ headline: { default: "" },
1363
+ facts: { default: () => [
1364
+ {
1365
+ value: "",
1366
+ metric: ""
1367
+ },
1368
+ {
1369
+ value: "",
1370
+ metric: ""
1371
+ },
1372
+ {
1373
+ value: "",
1374
+ metric: ""
1378
1375
  }
1379
- },
1380
- link: {
1381
- type: Object
1382
- }
1376
+ ] },
1377
+ link: { default: () => ({
1378
+ title: "",
1379
+ url: ""
1380
+ }) }
1383
1381
  },
1384
1382
  setup(e) {
1385
- return (l, r) => (a(), s("div", ba, [
1386
- t("div", pa, [
1387
- t("h2", $a, o(e.headline), 1),
1383
+ return (l, o) => (i(), s("div", pa, [
1384
+ t("div", ba, [
1385
+ t("h2", $a, r(l.headline), 1),
1388
1386
  t("div", ka, [
1389
- (a(!0), s(I, null, T(e.facts, (i) => (a(), s("div", wa, [
1390
- t("div", xa, [
1391
- t("span", null, o(i.value), 1)
1387
+ (i(!0), s(I, null, C(l.facts, (a) => (i(), s("div", {
1388
+ key: a.value + a.metric,
1389
+ class: "fact"
1390
+ }, [
1391
+ t("div", wa, [
1392
+ t("span", null, r(a.value), 1)
1392
1393
  ]),
1393
- t("div", Sa, [
1394
- t("span", null, o(i.metric), 1)
1394
+ t("div", xa, [
1395
+ t("span", null, r(a.metric), 1)
1395
1396
  ])
1396
- ]))), 256))
1397
+ ]))), 128))
1397
1398
  ]),
1398
- e.link ? (a(), s("div", qa, [
1399
- p(V, {
1400
- linkType: "regular-light",
1399
+ l.link ? (i(), s("div", Sa, [
1400
+ p(A, {
1401
+ "link-type": "regular_light",
1401
1402
  arrow: ""
1402
1403
  }, {
1403
1404
  default: $(() => [
@@ -1410,20 +1411,22 @@ const ya = /* @__PURE__ */ h(ga, [["__scopeId", "data-v-b07d352b"]]), ba = { cla
1410
1411
  ]));
1411
1412
  }
1412
1413
  });
1413
- const Ia = /* @__PURE__ */ h(Ba, [["__scopeId", "data-v-97e48550"]]), Ta = { class: "features__wrapper" }, La = { class: "features__content" }, Ca = {
1414
+ const Ba = /* @__PURE__ */ h(qa, [["__scopeId", "data-v-d2b231d4"]]), Ia = { class: "features__wrapper" }, Ca = { class: "features__content" }, La = {
1414
1415
  key: 0,
1415
1416
  class: "features__headline"
1416
- }, Va = {
1417
+ }, Ta = {
1417
1418
  key: 1,
1418
1419
  class: "features__body"
1419
- }, Aa = { class: "features__element" }, Da = { class: "element__headline" }, Ma = { class: "element__body" }, Oa = /* @__PURE__ */ v({
1420
+ }, Aa = { class: "element__headline" }, Va = { class: "element__body" }, Da = /* @__PURE__ */ v({
1420
1421
  __name: "features",
1421
1422
  props: {
1422
1423
  headline: {
1423
- type: String
1424
+ type: String,
1425
+ default: ""
1424
1426
  },
1425
1427
  body: {
1426
- type: String
1428
+ type: String,
1429
+ default: ""
1427
1430
  },
1428
1431
  elements: {
1429
1432
  type: Array,
@@ -1434,38 +1437,41 @@ const Ia = /* @__PURE__ */ h(Ba, [["__scopeId", "data-v-97e48550"]]), Ta = { cla
1434
1437
  }
1435
1438
  },
1436
1439
  setup(e) {
1437
- return (l, r) => (a(), s("div", Ta, [
1438
- t("div", La, [
1439
- e.headline ? (a(), s("div", Ca, [
1440
- t("h2", null, o(e.headline), 1)
1440
+ return (l, o) => (i(), s("div", Ia, [
1441
+ t("div", Ca, [
1442
+ e.headline ? (i(), s("div", La, [
1443
+ t("h2", null, r(e.headline), 1)
1441
1444
  ])) : m("", !0),
1442
- e.body ? (a(), s("div", Va, [
1443
- t("p", null, o(e.body), 1)
1445
+ e.body ? (i(), s("div", Ta, [
1446
+ t("p", null, r(e.body), 1)
1444
1447
  ])) : m("", !0),
1445
1448
  t("div", {
1446
- class: u(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
1449
+ class: _(["features__elements", [e.elements.length == 6 ? "features__elements--grid-6" : ""]])
1447
1450
  }, [
1448
- (a(!0), s(I, null, T(e.elements, (i) => (a(), s("div", Aa, [
1451
+ (i(!0), s(I, null, C(e.elements, (a) => (i(), s("div", {
1452
+ key: a.headline,
1453
+ class: "features__element"
1454
+ }, [
1449
1455
  p(L, { class: "element__icon" }, {
1450
1456
  default: $(() => [
1451
- d(l.$slots, "features-icon", A(M({
1452
- src: i.icon.src,
1457
+ d(l.$slots, "features-icon", V(M({
1458
+ src: a.icon.src,
1453
1459
  height: 30,
1454
1460
  width: 30,
1455
- alt: i.icon.alt
1461
+ alt: a.icon.alt
1456
1462
  })), void 0, !0)
1457
1463
  ]),
1458
1464
  _: 2
1459
1465
  }, 1024),
1460
- t("p", Da, o(i.headline), 1),
1461
- t("p", Ma, o(i.body), 1)
1462
- ]))), 256))
1466
+ t("p", Aa, r(a.headline), 1),
1467
+ t("p", Va, r(a.body), 1)
1468
+ ]))), 128))
1463
1469
  ], 2)
1464
1470
  ])
1465
1471
  ]));
1466
1472
  }
1467
1473
  });
1468
- const za = /* @__PURE__ */ h(Oa, [["__scopeId", "data-v-35a864e7"]]), Fa = { class: "form__wrapper" }, Pa = { class: "form__content" }, Ea = { class: "form__information" }, Ha = { class: "form__headline" }, Na = { class: "form__body" }, Ra = { class: "form__script" }, ja = /* @__PURE__ */ v({
1474
+ const Ma = /* @__PURE__ */ h(Da, [["__scopeId", "data-v-08d8509e"]]), Oa = { class: "form__wrapper" }, za = { class: "form__content" }, Fa = { class: "form__information" }, Pa = { class: "form__headline" }, Na = { class: "form__body" }, Ea = { class: "form__script" }, Ha = /* @__PURE__ */ v({
1469
1475
  __name: "form-script",
1470
1476
  props: {
1471
1477
  headline: {
@@ -1474,27 +1480,28 @@ const za = /* @__PURE__ */ h(Oa, [["__scopeId", "data-v-35a864e7"]]), Fa = { cla
1474
1480
  }
1475
1481
  },
1476
1482
  setup(e) {
1477
- return (l, r) => (a(), s("div", Fa, [
1478
- t("div", Pa, [
1479
- t("div", Ea, [
1480
- t("h2", Ha, o(e.headline), 1),
1483
+ return (l, o) => (i(), s("div", Oa, [
1484
+ t("div", za, [
1485
+ t("div", Fa, [
1486
+ t("h2", Pa, r(e.headline), 1),
1481
1487
  t("div", Na, [
1482
1488
  d(l.$slots, "form-body", {}, void 0, !0)
1483
1489
  ])
1484
1490
  ]),
1485
- t("div", Ra, [
1491
+ t("div", Ea, [
1486
1492
  d(l.$slots, "form-script", {}, void 0, !0)
1487
1493
  ])
1488
1494
  ])
1489
1495
  ]));
1490
1496
  }
1491
1497
  });
1492
- const Ka = /* @__PURE__ */ h(ja, [["__scopeId", "data-v-45243682"]]), Ua = { class: "image__wrapper" }, Ga = { class: "image__content" }, Wa = { class: "image__image" }, Qa = { class: "image__caption" }, Ya = /* @__PURE__ */ v({
1498
+ const Ra = /* @__PURE__ */ h(Ha, [["__scopeId", "data-v-55d9c2fd"]]), ja = { class: "image__wrapper" }, Ka = { class: "image__content" }, Ua = { class: "image__image" }, Ga = { class: "image__caption" }, Wa = /* @__PURE__ */ v({
1493
1499
  __name: "image",
1494
1500
  props: {
1495
1501
  caption: {
1496
1502
  type: String,
1497
- required: !1
1503
+ required: !1,
1504
+ default: ""
1498
1505
  },
1499
1506
  src: {
1500
1507
  type: String,
@@ -1506,31 +1513,31 @@ const Ka = /* @__PURE__ */ h(ja, [["__scopeId", "data-v-45243682"]]), Ua = { cla
1506
1513
  }
1507
1514
  },
1508
1515
  setup(e) {
1509
- return (l, r) => (a(), s("div", Ua, [
1510
- t("div", Ga, [
1511
- t("div", Wa, [
1516
+ return (l, o) => (i(), s("div", ja, [
1517
+ t("div", Ka, [
1518
+ t("div", Ua, [
1512
1519
  p(L, null, {
1513
1520
  default: $(() => [
1514
- d(l.$slots, "image", A(M({ width: 984, height: 554, src: e.src, alt: e.alt })))
1521
+ d(l.$slots, "image", V(M({ width: 984, height: 554, src: e.src, alt: e.alt })))
1515
1522
  ]),
1516
1523
  _: 3
1517
1524
  })
1518
1525
  ]),
1519
- t("p", Qa, o(e.caption), 1)
1526
+ t("p", Ga, r(e.caption), 1)
1520
1527
  ])
1521
1528
  ]));
1522
1529
  }
1523
1530
  });
1524
- const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { class: "gallery__large" }, Za = {
1531
+ const Ya = /* @__PURE__ */ h(Wa, [["__scopeId", "data-v-48563003"]]), Qa = { class: "gallery__large" }, Ja = {
1525
1532
  key: 0,
1526
1533
  class: "image image--large"
1527
- }, el = {
1534
+ }, Xa = {
1528
1535
  key: 1,
1529
1536
  class: "video"
1530
- }, tl = { class: "image image--small" }, al = {
1537
+ }, Za = {
1531
1538
  key: 0,
1532
1539
  class: "body"
1533
- }, ll = /* @__PURE__ */ v({
1540
+ }, el = /* @__PURE__ */ v({
1534
1541
  __name: "image-gallery",
1535
1542
  props: {
1536
1543
  mediaLarge: {
@@ -1550,7 +1557,8 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
1550
1557
  },
1551
1558
  body: {
1552
1559
  type: String,
1553
- required: !1
1560
+ required: !1,
1561
+ default: ""
1554
1562
  },
1555
1563
  flipHorizontal: {
1556
1564
  type: Boolean,
@@ -1569,23 +1577,23 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
1569
1577
  }
1570
1578
  },
1571
1579
  setup(e) {
1572
- return (l, r) => (a(), s("div", {
1573
- class: u([
1580
+ return (l, o) => (i(), s("div", {
1581
+ class: _([
1574
1582
  "gallery__wrapper",
1575
1583
  e.bgColor === "light" ? "gallery__wrapper--light" : e.bgColor === "dark" ? ["gallery__wrapper--dark", "mirsaic--dark"] : ""
1576
1584
  ])
1577
1585
  }, [
1578
1586
  t("div", {
1579
- class: u([
1587
+ class: _([
1580
1588
  "gallery__content",
1581
1589
  e.flipHorizontal ? "gallery__content--reverse" : "gallery__content--default"
1582
1590
  ])
1583
1591
  }, [
1584
- t("div", Xa, [
1585
- e.mediaLarge && e.mediaType === "image" ? (a(), s("div", Za, [
1592
+ t("div", Qa, [
1593
+ e.mediaLarge && e.mediaType === "image" ? (i(), s("div", Ja, [
1586
1594
  p(L, null, {
1587
1595
  default: $(() => [
1588
- d(l.$slots, "image-large", A(M({
1596
+ d(l.$slots, "image-large", V(M({
1589
1597
  width: 617,
1590
1598
  height: 530,
1591
1599
  src: e.mediaLarge.src,
@@ -1595,11 +1603,11 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
1595
1603
  _: 3
1596
1604
  })
1597
1605
  ])) : m("", !0),
1598
- e.mediaLarge && e.mediaType === "video" ? (a(), s("div", el, [
1606
+ e.mediaLarge && e.mediaType === "video" ? (i(), s("div", Xa, [
1599
1607
  p(K, {
1600
1608
  src: e.mediaLarge.src,
1601
- localVideo: "",
1602
- ariaLabel: e.mediaLarge.alt,
1609
+ "local-video": "",
1610
+ "aria-label": e.mediaLarge.alt,
1603
1611
  controls: !1,
1604
1612
  height: "530",
1605
1613
  width: "617",
@@ -1607,38 +1615,41 @@ const Ja = /* @__PURE__ */ h(Ya, [["__scopeId", "data-v-624f5b56"]]), Xa = { cla
1607
1615
  loop: !0,
1608
1616
  muted: !0,
1609
1617
  play: !0
1610
- }, null, 8, ["src", "ariaLabel"])
1618
+ }, null, 8, ["src", "aria-label"])
1611
1619
  ])) : m("", !0)
1612
1620
  ]),
1613
1621
  t("div", {
1614
1622
  style: te([e.mediaSmall.length == 2 ? "grid-gap: 38px;" : ""]),
1615
- class: u([
1623
+ class: _([
1616
1624
  "gallery__small",
1617
1625
  e.flipVertical ? "gallery__small--reverse" : "gallery__small--default"
1618
1626
  ])
1619
1627
  }, [
1620
- (a(!0), s(I, null, T(e.mediaSmall, (i) => (a(), s("div", tl, [
1628
+ (i(!0), s(I, null, C(e.mediaSmall, (a) => (i(), s("div", {
1629
+ key: a.src + a.alt,
1630
+ class: "image image--small"
1631
+ }, [
1621
1632
  p(L, null, {
1622
1633
  default: $(() => [
1623
- d(l.$slots, "image-small", A(M({
1634
+ d(l.$slots, "image-small", V(M({
1624
1635
  width: 328,
1625
1636
  height: 246,
1626
- src: i.src,
1627
- alt: i.alt
1637
+ src: a.src,
1638
+ alt: a.alt
1628
1639
  })))
1629
1640
  ]),
1630
1641
  _: 2
1631
1642
  }, 1024)
1632
- ]))), 256)),
1633
- e.mediaSmall.length < 2 ? (a(), s("div", al, [
1634
- t("p", null, o(e.body), 1)
1643
+ ]))), 128)),
1644
+ e.mediaSmall.length < 2 ? (i(), s("div", Za, [
1645
+ t("p", null, r(e.body), 1)
1635
1646
  ])) : m("", !0)
1636
1647
  ], 6)
1637
1648
  ], 2)
1638
1649
  ], 2));
1639
1650
  }
1640
1651
  });
1641
- const il = /* @__PURE__ */ h(ll, [["__scopeId", "data-v-55b17073"]]), sl = { class: "headline__wrapper" }, rl = { class: "headline__h1" }, ol = /* @__PURE__ */ v({
1652
+ const tl = /* @__PURE__ */ h(el, [["__scopeId", "data-v-4afd3b2e"]]), al = { class: "headline__wrapper" }, ll = { class: "headline__h1" }, il = /* @__PURE__ */ v({
1642
1653
  __name: "headline",
1643
1654
  props: {
1644
1655
  headline: {
@@ -1655,21 +1666,21 @@ const il = /* @__PURE__ */ h(ll, [["__scopeId", "data-v-55b17073"]]), sl = { cla
1655
1666
  }
1656
1667
  },
1657
1668
  setup(e) {
1658
- return (l, r) => (a(), s("div", sl, [
1669
+ return (l, o) => (i(), s("div", al, [
1659
1670
  t("div", {
1660
- class: u({
1671
+ class: _({
1661
1672
  "headline__content--article-and-submenu": e.article && e.subMenu,
1662
1673
  "headline__content--article": e.article && !e.subMenu,
1663
1674
  "headline__content--default headline__content--submenu": !e.article && e.subMenu,
1664
1675
  "headline__content--default": !e.article && !e.subMenu
1665
1676
  })
1666
1677
  }, [
1667
- t("h1", rl, o(e.headline), 1)
1678
+ t("h1", ll, r(e.headline), 1)
1668
1679
  ], 2)
1669
1680
  ]));
1670
1681
  }
1671
1682
  });
1672
- const nl = /* @__PURE__ */ h(ol, [["__scopeId", "data-v-080238bd"]]), dl = (e) => (O("data-v-de757e46"), e = e(), z(), e), cl = { class: "hero__wrapper" }, ul = { class: "hero__content" }, _l = { class: "hero__top" }, hl = { class: "hero__elements" }, vl = { class: "hero__headline" }, ml = { class: "hero__link" }, fl = { class: "hero__video" }, gl = /* @__PURE__ */ dl(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), yl = /* @__PURE__ */ v({
1683
+ const sl = /* @__PURE__ */ h(il, [["__scopeId", "data-v-080238bd"]]), ol = (e) => (O("data-v-ad805b9b"), e = e(), z(), e), rl = { class: "hero__wrapper" }, nl = { class: "hero__content" }, dl = { class: "hero__top" }, cl = { class: "hero__elements" }, ul = { class: "hero__headline" }, _l = { class: "hero__link" }, hl = { class: "hero__video" }, vl = /* @__PURE__ */ ol(() => /* @__PURE__ */ t("div", { class: "hero__gradient" }, null, -1)), ml = /* @__PURE__ */ v({
1673
1684
  __name: "hero",
1674
1685
  props: {
1675
1686
  headline: {
@@ -1682,16 +1693,16 @@ const nl = /* @__PURE__ */ h(ol, [["__scopeId", "data-v-080238bd"]]), dl = (e) =
1682
1693
  }
1683
1694
  },
1684
1695
  setup(e) {
1685
- return (l, r) => (a(), s("div", cl, [
1686
- t("div", ul, [
1687
- t("div", _l, [
1688
- t("div", hl, [
1689
- t("div", vl, [
1690
- t("h1", null, o(e.headline), 1)
1696
+ return (l, o) => (i(), s("div", rl, [
1697
+ t("div", nl, [
1698
+ t("div", dl, [
1699
+ t("div", cl, [
1700
+ t("div", ul, [
1701
+ t("h1", null, r(e.headline), 1)
1691
1702
  ]),
1692
- t("div", ml, [
1693
- p(V, {
1694
- linkType: "regular-light",
1703
+ t("div", _l, [
1704
+ p(A, {
1705
+ "link-type": "regular_light",
1695
1706
  arrow: ""
1696
1707
  }, {
1697
1708
  default: $(() => [
@@ -1702,35 +1713,37 @@ const nl = /* @__PURE__ */ h(ol, [["__scopeId", "data-v-080238bd"]]), dl = (e) =
1702
1713
  ])
1703
1714
  ])
1704
1715
  ]),
1705
- t("div", fl, [
1706
- gl,
1716
+ t("div", hl, [
1717
+ vl,
1707
1718
  p(K, {
1708
1719
  src: e.video.src,
1709
- localVideo: "",
1710
- ariaLabel: e.video.alt,
1720
+ "local-video": "",
1721
+ "aria-label": e.video.alt,
1711
1722
  controls: !1,
1712
1723
  autoplay: !0,
1713
1724
  loop: !0,
1714
1725
  muted: !0,
1715
1726
  play: !0,
1716
1727
  poster: e.video.poster
1717
- }, null, 8, ["src", "ariaLabel", "poster"])
1728
+ }, null, 8, ["src", "aria-label", "poster"])
1718
1729
  ])
1719
1730
  ])
1720
1731
  ]));
1721
1732
  }
1722
1733
  });
1723
- const bl = /* @__PURE__ */ h(yl, [["__scopeId", "data-v-de757e46"]]), pl = { class: "logo-wall__wrapper" }, $l = { class: "logo-wall__content" }, kl = {
1734
+ const fl = /* @__PURE__ */ h(ml, [["__scopeId", "data-v-ad805b9b"]]), gl = { class: "logo-wall__wrapper" }, yl = { class: "logo-wall__content" }, pl = {
1724
1735
  key: 0,
1725
1736
  class: "logo-wall__text"
1726
- }, wl = { key: 0 }, xl = { key: 1 }, Sl = { class: "logo-wall__logos" }, ql = { class: "logo-wall__logo" }, Bl = { class: "logo-wall__link" }, Il = /* @__PURE__ */ v({
1737
+ }, bl = { key: 0 }, $l = { key: 1 }, kl = { class: "logo-wall__logos" }, wl = { class: "logo-wall__link" }, xl = /* @__PURE__ */ v({
1727
1738
  __name: "logo-wall",
1728
1739
  props: {
1729
1740
  headline: {
1730
- type: String
1741
+ type: String,
1742
+ default: ""
1731
1743
  },
1732
1744
  body: {
1733
- type: String
1745
+ type: String,
1746
+ default: ""
1734
1747
  },
1735
1748
  logos: {
1736
1749
  type: Array,
@@ -1739,30 +1752,33 @@ const bl = /* @__PURE__ */ h(yl, [["__scopeId", "data-v-de757e46"]]), pl = { cla
1739
1752
  }
1740
1753
  },
1741
1754
  setup(e) {
1742
- return (l, r) => (a(), s("div", pl, [
1743
- t("div", $l, [
1744
- e.headline || e.body ? (a(), s("div", kl, [
1745
- e.headline ? (a(), s("h2", wl, o(e.headline), 1)) : m("", !0),
1746
- e.body ? (a(), s("p", xl, o(e.body), 1)) : m("", !0)
1755
+ return (l, o) => (i(), s("div", gl, [
1756
+ t("div", yl, [
1757
+ e.headline || e.body ? (i(), s("div", pl, [
1758
+ e.headline ? (i(), s("h2", bl, r(e.headline), 1)) : m("", !0),
1759
+ e.body ? (i(), s("p", $l, r(e.body), 1)) : m("", !0)
1747
1760
  ])) : m("", !0),
1748
- t("div", Sl, [
1749
- (a(!0), s(I, null, T(e.logos, (i) => (a(), s("div", ql, [
1761
+ t("div", kl, [
1762
+ (i(!0), s(I, null, C(e.logos, (a) => (i(), s("div", {
1763
+ key: a.src + a.alt,
1764
+ class: "logo-wall__logo"
1765
+ }, [
1750
1766
  p(L, null, {
1751
1767
  default: $(() => [
1752
- d(l.$slots, "logo-wall-logo", A(M({
1768
+ d(l.$slots, "logo-wall-logo", V(M({
1753
1769
  width: 130,
1754
1770
  height: 130,
1755
- src: i.src,
1756
- alt: i.alt
1771
+ src: a.src,
1772
+ alt: a.alt
1757
1773
  })), void 0, !0)
1758
1774
  ]),
1759
1775
  _: 2
1760
1776
  }, 1024)
1761
- ]))), 256))
1777
+ ]))), 128))
1762
1778
  ]),
1763
- t("div", Bl, [
1764
- p(V, {
1765
- linkType: "regular-light",
1779
+ t("div", wl, [
1780
+ p(A, {
1781
+ "link-type": "regular_light",
1766
1782
  arrow: !0
1767
1783
  }, {
1768
1784
  default: $(() => [
@@ -1775,7 +1791,7 @@ const bl = /* @__PURE__ */ h(yl, [["__scopeId", "data-v-de757e46"]]), pl = { cla
1775
1791
  ]));
1776
1792
  }
1777
1793
  });
1778
- const Tl = /* @__PURE__ */ h(Il, [["__scopeId", "data-v-299e5b4b"]]), Ll = { class: "micro-stories__splide" }, Cl = /* @__PURE__ */ v({
1794
+ const Sl = /* @__PURE__ */ h(xl, [["__scopeId", "data-v-a8afd396"]]), ql = { class: "micro-stories__splide" }, Bl = /* @__PURE__ */ v({
1779
1795
  __name: "micro-stories",
1780
1796
  props: {
1781
1797
  stories: {
@@ -1800,28 +1816,28 @@ const Tl = /* @__PURE__ */ h(Il, [["__scopeId", "data-v-299e5b4b"]]), Ll = { cla
1800
1816
  }
1801
1817
  },
1802
1818
  setup(e) {
1803
- return (l, r) => (a(), s("div", {
1804
- class: u([
1819
+ return (l, o) => (i(), s("div", {
1820
+ class: _([
1805
1821
  "micro-stories__wrapper",
1806
1822
  e.bgColor == "white" ? "micro-stories__wrapper--white" : e.bgColor == "dark" ? "micro-stories__wrapper--dark" : (e.bgColor == "blue", "micro-stories__wrapper--blue")
1807
1823
  ])
1808
1824
  }, [
1809
- t("div", Ll, [
1825
+ t("div", ql, [
1810
1826
  d(l.$slots, "micro-stories-slides")
1811
1827
  ]),
1812
1828
  d(l.$slots, "micro-stories-controls")
1813
1829
  ], 2));
1814
1830
  }
1815
1831
  });
1816
- const Vl = {}, Al = { class: "policy__wrapper" }, Dl = { class: "policy__content" };
1817
- function Ml(e, l) {
1818
- return a(), s("div", Al, [
1819
- t("div", Dl, [
1832
+ const Il = {}, Cl = { class: "policy__wrapper" }, Ll = { class: "policy__content" };
1833
+ function Tl(e, l) {
1834
+ return i(), s("div", Cl, [
1835
+ t("div", Ll, [
1820
1836
  d(e.$slots, "default", {}, void 0, !0)
1821
1837
  ])
1822
1838
  ]);
1823
1839
  }
1824
- const Ol = /* @__PURE__ */ h(Vl, [["render", Ml], ["__scopeId", "data-v-4ef880d9"]]), zl = { class: "product-hero__wrapper" }, Fl = { class: "product-hero__content" }, Pl = { class: "product-hero__headline" }, El = { class: "product-hero__video" }, Hl = /* @__PURE__ */ v({
1840
+ const Al = /* @__PURE__ */ h(Il, [["render", Tl], ["__scopeId", "data-v-8765ee0b"]]), Vl = { class: "product-hero__wrapper" }, Dl = { class: "product-hero__content" }, Ml = { class: "product-hero__headline" }, Ol = { class: "product-hero__video" }, zl = /* @__PURE__ */ v({
1825
1841
  __name: "product-hero",
1826
1842
  props: {
1827
1843
  headline: {
@@ -1846,40 +1862,42 @@ const Ol = /* @__PURE__ */ h(Vl, [["render", Ml], ["__scopeId", "data-v-4ef880d9
1846
1862
  }
1847
1863
  },
1848
1864
  setup(e) {
1849
- return (l, r) => (a(), s("div", zl, [
1850
- t("div", Fl, [
1851
- t("div", Pl, [
1852
- t("h1", null, o(e.headline), 1)
1865
+ return (l, o) => (i(), s("div", Vl, [
1866
+ t("div", Dl, [
1867
+ t("div", Ml, [
1868
+ t("h1", null, r(e.headline), 1)
1853
1869
  ]),
1854
- t("div", El, [
1870
+ t("div", Ol, [
1855
1871
  p(K, {
1856
1872
  play: !0,
1857
- localVideo: !0,
1873
+ "local-video": !0,
1858
1874
  src: e.videoSrc,
1859
- ariaLabel: e.ariaLabel,
1875
+ "aria-label": e.ariaLabel,
1860
1876
  controls: !1,
1861
1877
  poster: e.imgSrc,
1862
1878
  autoplay: !0,
1863
1879
  loop: !0,
1864
1880
  muted: !0
1865
- }, null, 8, ["src", "ariaLabel", "poster"])
1881
+ }, null, 8, ["src", "aria-label", "poster"])
1866
1882
  ])
1867
1883
  ])
1868
1884
  ]));
1869
1885
  }
1870
1886
  });
1871
- const Nl = /* @__PURE__ */ h(Hl, [["__scopeId", "data-v-2ca17b92"]]), Rl = { class: "promo__content" }, jl = /* @__PURE__ */ v({
1887
+ const Fl = /* @__PURE__ */ h(zl, [["__scopeId", "data-v-4272034e"]]), Pl = { class: "promo__content" }, Nl = /* @__PURE__ */ v({
1872
1888
  __name: "promo",
1873
1889
  props: {
1874
1890
  label: {
1875
- type: String
1891
+ type: String,
1892
+ default: ""
1876
1893
  },
1877
1894
  headline: {
1878
1895
  type: String,
1879
1896
  required: !0
1880
1897
  },
1881
1898
  linkText: {
1882
- type: String
1899
+ type: String,
1900
+ default: ""
1883
1901
  },
1884
1902
  mediaType: {
1885
1903
  type: String,
@@ -1916,92 +1934,92 @@ const Nl = /* @__PURE__ */ h(Hl, [["__scopeId", "data-v-2ca17b92"]]), Rl = { cla
1916
1934
  }
1917
1935
  },
1918
1936
  setup(e) {
1919
- return (l, r) => (a(), s("div", {
1920
- class: u([
1937
+ return (l, o) => (i(), s("div", {
1938
+ class: _([
1921
1939
  "promo__wrapper",
1922
1940
  e.variant === "dark" ? "promo__wrapper--dark" : e.variant === "light" ? "promo__wrapper--light" : "promo__wrapper--default",
1923
1941
  e.teaser ? "promo__wrapper--teaser" : ""
1924
1942
  ])
1925
1943
  }, [
1926
- t("div", Rl, [
1927
- e.mediaType === "image" ? (a(), s("div", {
1944
+ t("div", Pl, [
1945
+ e.mediaType === "image" ? (i(), s("div", {
1928
1946
  key: 0,
1929
- class: u([
1947
+ class: _([
1930
1948
  "promo__image",
1931
1949
  e.reverse ? "promo__image--reverse" : "promo__image--default"
1932
1950
  ])
1933
1951
  }, [
1934
1952
  p(L, null, {
1935
1953
  default: $(() => [
1936
- d(l.$slots, "promo-image", A(M({ src: e.src, width: 1920, alt: e.alt, height: 1080 })))
1954
+ d(l.$slots, "promo-image", V(M({ src: e.src, width: 1920, alt: e.alt, height: 1080 })))
1937
1955
  ]),
1938
1956
  _: 3
1939
1957
  })
1940
1958
  ], 2)) : m("", !0),
1941
- e.mediaType === "video" ? (a(), s("div", {
1959
+ e.mediaType === "video" ? (i(), s("div", {
1942
1960
  key: 1,
1943
- class: u([
1961
+ class: _([
1944
1962
  "promo__video",
1945
1963
  e.reverse ? "promo__video--reverse" : "promo__video--default"
1946
1964
  ])
1947
1965
  }, [
1948
1966
  p(K, {
1949
1967
  src: e.src,
1950
- localVideo: "",
1951
- ariaLabel: e.alt,
1968
+ "local-video": "",
1969
+ "aria-label": e.alt,
1952
1970
  controls: !1,
1953
1971
  autoplay: !0,
1954
1972
  loop: !0,
1955
1973
  muted: !0,
1956
1974
  play: !0,
1957
1975
  poster: e.fallbackImage
1958
- }, null, 8, ["src", "ariaLabel", "poster"])
1976
+ }, null, 8, ["src", "aria-label", "poster"])
1959
1977
  ], 2)) : m("", !0),
1960
1978
  t("div", {
1961
- class: u([
1979
+ class: _([
1962
1980
  "promo__text",
1963
1981
  e.reverse ? "promo__text--reverse" : "promo__text--default"
1964
1982
  ])
1965
1983
  }, [
1966
- e.label ? (a(), D(G, {
1984
+ e.label ? (i(), D(G, {
1967
1985
  key: 0,
1968
1986
  text: e.label,
1969
- labelDark: e.variant === "dark"
1970
- }, null, 8, ["text", "labelDark"])) : m("", !0),
1987
+ "label-dark": e.variant === "dark"
1988
+ }, null, 8, ["text", "label-dark"])) : m("", !0),
1971
1989
  t("div", {
1972
- class: u([
1990
+ class: _([
1973
1991
  "promo__title",
1974
1992
  e.variant === "dark" ? "promo__title--dark" : ""
1975
1993
  ])
1976
- }, o(e.headline), 3),
1977
- e.linkType === "link" ? (a(), D(V, {
1994
+ }, r(e.headline), 3),
1995
+ e.linkType === "link" ? (i(), D(A, {
1978
1996
  key: 1,
1979
- linkType: e.variant === "dark" ? "regular-dark" : (e.variant === "light", "regular-light"),
1997
+ "link-type": e.variant === "dark" ? "regular_dark" : (e.variant === "light", "regular_light"),
1980
1998
  arrow: ""
1981
1999
  }, {
1982
2000
  default: $(() => [
1983
2001
  d(l.$slots, "promo-link")
1984
2002
  ]),
1985
2003
  _: 3
1986
- }, 8, ["linkType"])) : m("", !0),
1987
- e.linkType === "button" ? (a(), D(V, {
2004
+ }, 8, ["link-type"])) : m("", !0),
2005
+ e.linkType === "button" ? (i(), D(A, {
1988
2006
  key: 2,
1989
- linkType: e.variant === "dark" ? "secondary-dark" : (e.variant === "light", "secondary")
2007
+ "link-type": e.variant === "dark" ? "secondary_dark" : (e.variant === "light", "secondary")
1990
2008
  }, {
1991
2009
  default: $(() => [
1992
2010
  d(l.$slots, "promo-link")
1993
2011
  ]),
1994
2012
  _: 3
1995
- }, 8, ["linkType"])) : m("", !0)
2013
+ }, 8, ["link-type"])) : m("", !0)
1996
2014
  ], 2)
1997
2015
  ])
1998
2016
  ], 2));
1999
2017
  }
2000
2018
  });
2001
- const Kl = /* @__PURE__ */ h(jl, [["__scopeId", "data-v-3282904c"]]), Ul = (e) => (O("data-v-18440f83"), e = e(), z(), e), Gl = { class: "quote__wrapper" }, Wl = { class: "quote__content" }, Ql = /* @__PURE__ */ Ul(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), Yl = { class: "quote__quote" }, Jl = { class: "quote__quote-text" }, Xl = { class: "quote__author" }, Zl = {
2019
+ const El = /* @__PURE__ */ h(Nl, [["__scopeId", "data-v-6a96c16e"]]), Hl = (e) => (O("data-v-e3cc8e27"), e = e(), z(), e), Rl = { class: "quote__wrapper" }, jl = { class: "quote__content" }, Kl = /* @__PURE__ */ Hl(() => /* @__PURE__ */ t("p", { class: "quote__quote-mark" }, "“", -1)), Ul = { class: "quote__quote" }, Gl = { class: "quote__quote-text" }, Wl = { class: "quote__author" }, Yl = {
2002
2020
  key: 0,
2003
2021
  class: "quote__image"
2004
- }, ei = { class: "quote__text" }, ti = { class: "quote__author-name" }, ai = { class: "quote__author-title" }, li = /* @__PURE__ */ v({
2022
+ }, Ql = { class: "quote__text" }, Jl = { class: "quote__author-name" }, Xl = { class: "quote__author-title" }, Zl = /* @__PURE__ */ v({
2005
2023
  __name: "quote",
2006
2024
  props: {
2007
2025
  quote: {
@@ -2018,20 +2036,21 @@ const Kl = /* @__PURE__ */ h(jl, [["__scopeId", "data-v-3282904c"]]), Ul = (e) =
2018
2036
  },
2019
2037
  authorImage: {
2020
2038
  type: String,
2021
- required: !1
2039
+ required: !1,
2040
+ default: void 0
2022
2041
  }
2023
2042
  },
2024
2043
  setup(e) {
2025
- return (l, r) => (a(), s("div", Gl, [
2026
- t("div", Wl, [
2027
- Ql,
2028
- t("div", Yl, [
2029
- t("p", Jl, o(e.quote), 1),
2030
- t("div", Xl, [
2031
- e.authorImage ? (a(), s("div", Zl, [
2044
+ return (l, o) => (i(), s("div", Rl, [
2045
+ t("div", jl, [
2046
+ Kl,
2047
+ t("div", Ul, [
2048
+ t("p", Gl, r(e.quote), 1),
2049
+ t("div", Wl, [
2050
+ e.authorImage ? (i(), s("div", Yl, [
2032
2051
  p(L, null, {
2033
2052
  default: $(() => [
2034
- d(l.$slots, "author-image", A(M({
2053
+ d(l.$slots, "author-image", V(M({
2035
2054
  src: e.authorImage + "/m/100x100",
2036
2055
  width: 60,
2037
2056
  height: 60
@@ -2040,9 +2059,9 @@ const Kl = /* @__PURE__ */ h(jl, [["__scopeId", "data-v-3282904c"]]), Ul = (e) =
2040
2059
  _: 3
2041
2060
  })
2042
2061
  ])) : m("", !0),
2043
- t("div", ei, [
2044
- t("p", ti, o(e.author), 1),
2045
- t("p", ai, o(e.authorTitle), 1)
2062
+ t("div", Ql, [
2063
+ t("p", Jl, r(e.author), 1),
2064
+ t("p", Xl, r(e.authorTitle), 1)
2046
2065
  ])
2047
2066
  ])
2048
2067
  ])
@@ -2050,17 +2069,18 @@ const Kl = /* @__PURE__ */ h(jl, [["__scopeId", "data-v-3282904c"]]), Ul = (e) =
2050
2069
  ]));
2051
2070
  }
2052
2071
  });
2053
- const ii = /* @__PURE__ */ h(li, [["__scopeId", "data-v-18440f83"]]), si = { class: "rich-text__wrapper" }, ri = {
2072
+ const ei = /* @__PURE__ */ h(Zl, [["__scopeId", "data-v-e3cc8e27"]]), ti = { class: "rich-text__wrapper" }, ai = {
2054
2073
  key: 0,
2055
2074
  class: "rich-text__links"
2056
- }, oi = {
2075
+ }, li = {
2057
2076
  key: 0,
2058
2077
  class: "rich-text__bullet-list"
2059
- }, ni = /* @__PURE__ */ v({
2078
+ }, ii = /* @__PURE__ */ v({
2060
2079
  __name: "rich-text",
2061
2080
  props: {
2062
2081
  headline: {
2063
- type: String
2082
+ type: String,
2083
+ default: ""
2064
2084
  },
2065
2085
  leftAligned: {
2066
2086
  type: Boolean,
@@ -2087,59 +2107,60 @@ const ii = /* @__PURE__ */ h(li, [["__scopeId", "data-v-18440f83"]]), si = { cla
2087
2107
  default: "white"
2088
2108
  },
2089
2109
  label: {
2090
- type: String
2110
+ type: String,
2111
+ default: ""
2091
2112
  }
2092
2113
  },
2093
2114
  setup(e) {
2094
- return (l, r) => (a(), s("div", {
2095
- class: u([
2115
+ return (l, o) => (i(), s("div", {
2116
+ class: _([
2096
2117
  "rich-text",
2097
2118
  e.bgColor === "blue" ? "rich-text--blue" : "rich-text--white"
2098
2119
  ])
2099
2120
  }, [
2100
- t("div", si, [
2101
- e.label ? (a(), D(G, {
2121
+ t("div", ti, [
2122
+ e.label ? (i(), D(G, {
2102
2123
  key: 0,
2103
2124
  text: e.label,
2104
- labelDark: !1
2125
+ "label-dark": !1
2105
2126
  }, null, 8, ["text"])) : m("", !0),
2106
- e.headline ? (a(), s("h2", {
2127
+ e.headline ? (i(), s("h2", {
2107
2128
  key: 1,
2108
- class: u([
2129
+ class: _([
2109
2130
  "rich-text__headline",
2110
2131
  e.leftAligned || e.bulletList || e.image ? "rich-text__headline--left-aligned" : "rich-text__headline--centered"
2111
2132
  ])
2112
- }, o(e.headline), 3)) : m("", !0),
2133
+ }, r(e.headline), 3)) : m("", !0),
2113
2134
  t("div", {
2114
- class: u([
2135
+ class: _([
2115
2136
  "rich-text__content",
2116
2137
  e.leftAligned || e.bulletList || e.image ? "rich-text__content--left-aligned" : "rich-text__content--centered"
2117
2138
  ])
2118
2139
  }, [
2119
2140
  t("div", {
2120
- class: u([
2141
+ class: _([
2121
2142
  "rich-text__body",
2122
2143
  e.bulletList || e.image ? "rich-text__body--content-right" : ""
2123
2144
  ])
2124
2145
  }, [
2125
2146
  d(l.$slots, "rich-text-content"),
2126
- e.links ? (a(), s("div", ri, [
2147
+ e.links ? (i(), s("div", ai, [
2127
2148
  d(l.$slots, "rich-text-links")
2128
2149
  ])) : m("", !0)
2129
2150
  ], 2),
2130
- e.bulletList ? (a(), s("div", oi, [
2151
+ e.bulletList ? (i(), s("div", li, [
2131
2152
  d(l.$slots, "rich-text-bullet-list")
2132
2153
  ])) : m("", !0),
2133
- e.image ? (a(), s("div", {
2154
+ e.image ? (i(), s("div", {
2134
2155
  key: 1,
2135
- class: u([
2156
+ class: _([
2136
2157
  "rich-text__image",
2137
2158
  e.imageClip ? "rich-text__image--clip" : ""
2138
2159
  ])
2139
2160
  }, [
2140
2161
  p(L, null, {
2141
2162
  default: $(() => [
2142
- d(l.$slots, "rich-text-image", A(M({ width: 865, height: 307 })))
2163
+ d(l.$slots, "rich-text-image", V(M({ width: 865, height: 307 })))
2143
2164
  ]),
2144
2165
  _: 3
2145
2166
  })
@@ -2149,13 +2170,13 @@ const ii = /* @__PURE__ */ h(li, [["__scopeId", "data-v-18440f83"]]), si = { cla
2149
2170
  ], 2));
2150
2171
  }
2151
2172
  });
2152
- const di = /* @__PURE__ */ h(ni, [["__scopeId", "data-v-7ecdc272"]]);
2153
- const ci = {}, ui = { class: "rich-text" }, _i = { class: "rich-text__wrapper" }, hi = { class: "rich-text__content rich-text__content--left-aligned" }, vi = { class: "rich-text__body" };
2154
- function mi(e, l) {
2155
- return a(), s("div", ui, [
2156
- t("div", _i, [
2157
- t("div", hi, [
2158
- t("div", vi, [
2173
+ const si = /* @__PURE__ */ h(ii, [["__scopeId", "data-v-c2a5b795"]]);
2174
+ const oi = {}, ri = { class: "rich-text" }, ni = { class: "rich-text__wrapper" }, di = { class: "rich-text__content rich-text__content--left-aligned" }, ci = { class: "rich-text__body" };
2175
+ function ui(e, l) {
2176
+ return i(), s("div", ri, [
2177
+ t("div", ni, [
2178
+ t("div", di, [
2179
+ t("div", ci, [
2159
2180
  t("div", null, [
2160
2181
  d(e.$slots, "rich-text-content-left", {}, void 0, !0)
2161
2182
  ]),
@@ -2167,10 +2188,10 @@ function mi(e, l) {
2167
2188
  ])
2168
2189
  ]);
2169
2190
  }
2170
- const fi = /* @__PURE__ */ h(ci, [["render", mi], ["__scopeId", "data-v-86986bf2"]]), gi = (e) => (O("data-v-df182fbb"), e = e(), z(), e), yi = { class: "timeline__wrapper" }, bi = { class: "timeline__content" }, pi = { class: "timeline__items" }, $i = { class: "timeline__item faded" }, ki = { class: "item__left" }, wi = /* @__PURE__ */ gi(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
2191
+ const _i = /* @__PURE__ */ h(oi, [["render", ui], ["__scopeId", "data-v-3abe0bb4"]]), hi = (e) => (O("data-v-78d319df"), e = e(), z(), e), vi = { class: "timeline__wrapper" }, mi = { class: "timeline__content" }, fi = { class: "timeline__items" }, gi = { class: "item__left" }, yi = /* @__PURE__ */ hi(() => /* @__PURE__ */ t("div", { class: "item__elements" }, [
2171
2192
  /* @__PURE__ */ t("div", { class: "circle" }),
2172
2193
  /* @__PURE__ */ t("div", { class: "line" })
2173
- ], -1)), xi = { class: "item__right" }, Si = ["innerHTML"], qi = /* @__PURE__ */ v({
2194
+ ], -1)), pi = { class: "item__right" }, bi = ["innerHTML"], $i = /* @__PURE__ */ v({
2174
2195
  __name: "timeline",
2175
2196
  props: {
2176
2197
  timelineItems: {
@@ -2180,48 +2201,51 @@ const fi = /* @__PURE__ */ h(ci, [["render", mi], ["__scopeId", "data-v-86986bf2
2180
2201
  },
2181
2202
  setup(e) {
2182
2203
  return ne(() => {
2183
- const l = document.querySelectorAll(".timeline__item"), r = new IntersectionObserver(
2184
- (i) => {
2185
- i.forEach((n) => {
2186
- n.isIntersecting && (n.target.classList.add("visible"), n.target.classList.remove("faded"), r.unobserve(n.target));
2204
+ const l = document.querySelectorAll(".timeline__item"), o = new IntersectionObserver(
2205
+ (a) => {
2206
+ a.forEach((n) => {
2207
+ n.isIntersecting && (n.target.classList.add("visible"), n.target.classList.remove("faded"), o.unobserve(n.target));
2187
2208
  });
2188
2209
  },
2189
2210
  {
2190
2211
  threshold: 1
2191
2212
  }
2192
2213
  );
2193
- l.forEach((i) => {
2194
- r.observe(i);
2214
+ l.forEach((a) => {
2215
+ o.observe(a);
2195
2216
  });
2196
- }), (l, r) => (a(), s("div", yi, [
2197
- t("div", bi, [
2198
- t("div", pi, [
2199
- (a(!0), s(I, null, T(e.timelineItems, (i) => (a(), s("div", $i, [
2200
- t("div", ki, o(i.year), 1),
2201
- wi,
2202
- t("div", xi, [
2217
+ }), (l, o) => (i(), s("div", vi, [
2218
+ t("div", mi, [
2219
+ t("div", fi, [
2220
+ (i(!0), s(I, null, C(e.timelineItems, (a) => (i(), s("div", {
2221
+ key: a.year,
2222
+ class: "timeline__item faded"
2223
+ }, [
2224
+ t("div", gi, r(a.year), 1),
2225
+ yi,
2226
+ t("div", pi, [
2203
2227
  p(L, null, {
2204
2228
  default: $(() => [
2205
- i.media.type === "image" ? d(l.$slots, "timeline-image", A(ee({ key: 0 }, { src: i.media.src, alt: i.media.alt })), void 0, !0) : m("", !0)
2229
+ a.media.type === "image" ? d(l.$slots, "timeline-image", V(ee({ key: 0 }, { src: a.media.src, alt: a.media.alt })), void 0, !0) : m("", !0)
2206
2230
  ]),
2207
2231
  _: 2
2208
2232
  }, 1024),
2209
2233
  t("div", {
2210
- style: te([i.media.type === "none" ? "margin-top: 0px" : ""]),
2234
+ style: te([a.media.type === "none" ? "margin-top: 0px" : ""]),
2211
2235
  class: "rich-text",
2212
- innerHTML: i.text
2213
- }, null, 12, Si)
2236
+ innerHTML: a.text
2237
+ }, null, 12, bi)
2214
2238
  ])
2215
- ]))), 256))
2239
+ ]))), 128))
2216
2240
  ])
2217
2241
  ])
2218
2242
  ]));
2219
2243
  }
2220
2244
  });
2221
- const Bi = /* @__PURE__ */ h(qi, [["__scopeId", "data-v-df182fbb"]]), Ii = { class: "triple-card-display__wrapper" }, Ti = {
2245
+ const ki = /* @__PURE__ */ h($i, [["__scopeId", "data-v-78d319df"]]), wi = { class: "triple-card-display__wrapper" }, xi = {
2222
2246
  key: 0,
2223
2247
  class: "triple-card__content"
2224
- }, Li = { key: 0 }, Ci = { key: 1 }, Vi = { class: "triple-card__cards" }, Ai = /* @__PURE__ */ v({
2248
+ }, Si = { key: 0 }, qi = { key: 1 }, Bi = { class: "triple-card__cards" }, Ii = /* @__PURE__ */ v({
2225
2249
  __name: "triple-card-display",
2226
2250
  props: {
2227
2251
  headline: {
@@ -2238,51 +2262,53 @@ const Bi = /* @__PURE__ */ h(qi, [["__scopeId", "data-v-df182fbb"]]), Ii = { cla
2238
2262
  }
2239
2263
  },
2240
2264
  setup(e) {
2241
- return (l, r) => (a(), s("div", {
2242
- class: u([
2265
+ return (l, o) => (i(), s("div", {
2266
+ class: _([
2243
2267
  "triple-card-display",
2244
2268
  e.bgColor === "blue" ? "triple-card-display--blue" : "triple-card-display--white"
2245
2269
  ])
2246
2270
  }, [
2247
- t("div", Ii, [
2248
- e.headline || e.paragraph ? (a(), s("div", Ti, [
2249
- e.headline ? (a(), s("h2", Li, o(e.headline), 1)) : m("", !0),
2250
- e.paragraph ? (a(), s("p", Ci, o(e.paragraph), 1)) : m("", !0)
2271
+ t("div", wi, [
2272
+ e.headline || e.paragraph ? (i(), s("div", xi, [
2273
+ e.headline ? (i(), s("h2", Si, r(e.headline), 1)) : m("", !0),
2274
+ e.paragraph ? (i(), s("p", qi, r(e.paragraph), 1)) : m("", !0)
2251
2275
  ])) : m("", !0),
2252
- t("div", Vi, [
2276
+ t("div", Bi, [
2253
2277
  d(l.$slots, "triple-card-display-cards", {}, void 0, !0)
2254
2278
  ])
2255
2279
  ])
2256
2280
  ], 2));
2257
2281
  }
2258
2282
  });
2259
- const Di = /* @__PURE__ */ h(Ai, [["__scopeId", "data-v-e7b427f6"]]), Mi = { class: "vimeo" }, Oi = { class: "vimeo__wrapper" }, zi = {
2283
+ const Ci = /* @__PURE__ */ h(Ii, [["__scopeId", "data-v-d77943df"]]), Li = { class: "vimeo" }, Ti = { class: "vimeo__wrapper" }, Ai = {
2260
2284
  key: 0,
2261
2285
  class: "vimeo__headline"
2262
- }, Fi = {
2286
+ }, Vi = {
2263
2287
  key: 1,
2264
2288
  class: "vimeo__description"
2265
- }, Pi = /* @__PURE__ */ v({
2289
+ }, Di = /* @__PURE__ */ v({
2266
2290
  __name: "vimeo",
2267
2291
  props: {
2268
2292
  headline: {
2269
- type: String
2293
+ type: String,
2294
+ default: ""
2270
2295
  },
2271
2296
  description: {
2272
- type: String
2297
+ type: String,
2298
+ default: ""
2273
2299
  }
2274
2300
  },
2275
2301
  setup(e) {
2276
- return (l, r) => (a(), s("div", Mi, [
2277
- t("div", Oi, [
2278
- e.headline ? (a(), s("h2", zi, o(e.headline), 1)) : m("", !0),
2302
+ return (l, o) => (i(), s("div", Li, [
2303
+ t("div", Ti, [
2304
+ e.headline ? (i(), s("h2", Ai, r(e.headline), 1)) : m("", !0),
2279
2305
  d(l.$slots, "vimeo-content", {}, void 0, !0),
2280
- e.description ? (a(), s("p", Fi, o(e.description), 1)) : m("", !0)
2306
+ e.description ? (i(), s("p", Vi, r(e.description), 1)) : m("", !0)
2281
2307
  ])
2282
2308
  ]));
2283
2309
  }
2284
2310
  });
2285
- const Ei = /* @__PURE__ */ h(Pi, [["__scopeId", "data-v-59fa125d"]]), Hi = { class: "not-found__wrapper" }, Ni = { class: "not-found__content" }, Ri = { class: "not-found__headline" }, ji = { class: "not-found__body" }, Ki = /* @__PURE__ */ v({
2311
+ const Mi = /* @__PURE__ */ h(Di, [["__scopeId", "data-v-599c68c7"]]), Oi = { class: "not-found__wrapper" }, zi = { class: "not-found__content" }, Fi = { class: "not-found__headline" }, Pi = { class: "not-found__body" }, Ni = /* @__PURE__ */ v({
2286
2312
  __name: "404",
2287
2313
  props: {
2288
2314
  headline: {
@@ -2291,17 +2317,17 @@ const Ei = /* @__PURE__ */ h(Pi, [["__scopeId", "data-v-59fa125d"]]), Hi = { cla
2291
2317
  }
2292
2318
  },
2293
2319
  setup(e) {
2294
- return (l, r) => (a(), s("div", Hi, [
2295
- t("div", Ni, [
2296
- t("h1", Ri, o(e.headline), 1),
2297
- t("div", ji, [
2320
+ return (l, o) => (i(), s("div", Oi, [
2321
+ t("div", zi, [
2322
+ t("h1", Fi, r(e.headline), 1),
2323
+ t("div", Pi, [
2298
2324
  d(l.$slots, "not-found-body", {}, void 0, !0)
2299
2325
  ])
2300
2326
  ])
2301
2327
  ]));
2302
2328
  }
2303
2329
  });
2304
- const Ui = /* @__PURE__ */ h(Ki, [["__scopeId", "data-v-dc0a59da"]]), Gi = { class: "filter__wrapper" }, Wi = { class: "filter__content" }, Qi = { class: "filter__dropdowns" }, Yi = { class: "filter__chips" }, Ji = /* @__PURE__ */ v({
2330
+ const Ei = /* @__PURE__ */ h(Ni, [["__scopeId", "data-v-b829ca6c"]]), Hi = { class: "filter__wrapper" }, Ri = { class: "filter__content" }, ji = { class: "filter__dropdowns" }, Ki = { class: "filter__chips" }, Ui = /* @__PURE__ */ v({
2305
2331
  __name: "filter",
2306
2332
  props: {
2307
2333
  hasChips: {
@@ -2311,44 +2337,48 @@ const Ui = /* @__PURE__ */ h(Ki, [["__scopeId", "data-v-dc0a59da"]]), Gi = { cla
2311
2337
  },
2312
2338
  emits: ["clearFilters"],
2313
2339
  setup(e) {
2314
- return (l, r) => (a(), s("div", Gi, [
2315
- t("div", Wi, [
2316
- t("div", Qi, [
2340
+ return (l, o) => (i(), s("div", Hi, [
2341
+ t("div", Ri, [
2342
+ t("div", ji, [
2317
2343
  d(l.$slots, "filter-dropdowns")
2318
2344
  ]),
2319
- t("div", Yi, [
2345
+ t("div", Ki, [
2320
2346
  d(l.$slots, "filter-chips"),
2321
- e.hasChips ? (a(), s("button", {
2347
+ e.hasChips ? (i(), s("button", {
2322
2348
  key: 0,
2323
2349
  class: "filter__clear",
2324
- onClick: r[0] || (r[0] = (i) => l.$emit("clearFilters"))
2350
+ onClick: o[0] || (o[0] = (a) => l.$emit("clearFilters"))
2325
2351
  }, " Remove all filters ")) : m("", !0)
2326
2352
  ])
2327
2353
  ])
2328
2354
  ]));
2329
2355
  }
2330
2356
  });
2331
- const Xi = /* @__PURE__ */ h(Ji, [["__scopeId", "data-v-73ba9888"]]), H = (e) => (O("data-v-d2cab33d"), e = e(), z(), e), Zi = { class: "footer__wrapper" }, es = { class: "footer__content" }, ts = { class: "footer__sections" }, as = { class: "section" }, ls = { class: "section__title" }, is = { class: "section__list" }, ss = { class: "section" }, rs = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), os = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), ns = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), ds = /* @__PURE__ */ H(() => /* @__PURE__ */ t("br", null, null, -1)), cs = /* @__PURE__ */ H(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), us = /* @__PURE__ */ H(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), _s = { class: "footer__bottom" }, hs = { class: "copyright" }, vs = { class: "footer__policy" }, ms = /* @__PURE__ */ H(() => /* @__PURE__ */ t("span", null, [
2357
+ const Gi = /* @__PURE__ */ h(Ui, [["__scopeId", "data-v-c11a3620"]]), E = (e) => (O("data-v-9d34b5e2"), e = e(), z(), e), Wi = { class: "footer__wrapper" }, Yi = { class: "footer__content" }, Qi = { class: "footer__sections" }, Ji = { class: "section__title" }, Xi = { class: "section__list" }, Zi = { class: "section" }, es = /* @__PURE__ */ E(() => /* @__PURE__ */ t("span", { class: "section__title" }, "Mobile Industrial Robots A/S", -1)), ts = /* @__PURE__ */ E(() => /* @__PURE__ */ t("span", null, "Emil Neckelmanns Vej 15F", -1)), as = /* @__PURE__ */ E(() => /* @__PURE__ */ t("span", null, "DK-5220 Odense SØ", -1)), ls = /* @__PURE__ */ E(() => /* @__PURE__ */ t("br", null, null, -1)), is = /* @__PURE__ */ E(() => /* @__PURE__ */ t("a", { href: "mailto:mail@mir-robots.com" }, "mail@mir-robots.com", -1)), ss = /* @__PURE__ */ E(() => /* @__PURE__ */ t("a", { href: "tel:+4520377577" }, "+45 20 377 577", -1)), os = { class: "footer__bottom" }, rs = { class: "copyright" }, ns = { class: "footer__policy" }, ds = /* @__PURE__ */ E(() => /* @__PURE__ */ t("span", null, [
2332
2358
  /* @__PURE__ */ t("i", { class: "change-region" }),
2333
2359
  /* @__PURE__ */ j("Change region")
2334
- ], -1)), fs = [
2335
- ms
2336
- ], gs = { class: "footer__social" }, ys = ["href", "aria-label"], bs = /* @__PURE__ */ v({
2360
+ ], -1)), cs = [
2361
+ ds
2362
+ ], us = { class: "footer__social" }, _s = ["href", "aria-label"], hs = /* @__PURE__ */ v({
2337
2363
  __name: "footer",
2338
2364
  props: {
2339
2365
  footerSections: {
2340
2366
  type: Array,
2341
- default: []
2367
+ default: () => []
2342
2368
  },
2343
2369
  privacyPolicy: {
2344
- type: Object
2370
+ type: Object,
2371
+ default: () => {
2372
+ }
2345
2373
  },
2346
2374
  cookiePolicy: {
2347
- type: Object
2375
+ type: Object,
2376
+ default: () => {
2377
+ }
2348
2378
  },
2349
2379
  socialMedia: {
2350
2380
  type: Array,
2351
- default: [],
2381
+ default: () => [],
2352
2382
  validator: (e) => {
2353
2383
  const l = [
2354
2384
  "linkedin",
@@ -2357,104 +2387,108 @@ const Xi = /* @__PURE__ */ h(Ji, [["__scopeId", "data-v-73ba9888"]]), H = (e) =>
2357
2387
  "twitter",
2358
2388
  "youtube"
2359
2389
  ];
2360
- return e.every((r) => l.includes(r.title));
2390
+ return e.every((o) => l.includes(o.title));
2361
2391
  }
2362
2392
  }
2363
2393
  },
2364
2394
  emits: ["changeRegionClicked"],
2365
2395
  setup(e) {
2366
- return (l, r) => (a(), s("div", Zi, [
2367
- t("footer", es, [
2368
- t("div", ts, [
2369
- (a(!0), s(I, null, T(e.footerSections, (i) => (a(), s("div", as, [
2370
- t("span", ls, o(i.title), 1),
2396
+ return (l, o) => (i(), s("div", Wi, [
2397
+ t("footer", Yi, [
2398
+ t("div", Qi, [
2399
+ (i(!0), s(I, null, C(e.footerSections, (a) => (i(), s("div", {
2400
+ key: a.title,
2401
+ class: "section"
2402
+ }, [
2403
+ t("span", Ji, r(a.title), 1),
2371
2404
  t("nav", null, [
2372
- t("ul", is, [
2405
+ t("ul", Xi, [
2373
2406
  d(l.$slots, "section-links", {
2374
- links: i.links
2407
+ links: a.links
2375
2408
  })
2376
2409
  ])
2377
2410
  ])
2378
- ]))), 256)),
2379
- t("div", ss, [
2380
- rs,
2411
+ ]))), 128)),
2412
+ t("div", Zi, [
2413
+ es,
2381
2414
  t("address", null, [
2382
- os,
2383
- ns,
2384
- ds,
2385
- p(V, {
2415
+ ts,
2416
+ as,
2417
+ ls,
2418
+ p(A, {
2386
2419
  class: "footer__contact",
2387
- linkType: "regular-light",
2420
+ "link-type": "regular_light",
2388
2421
  underline: "false"
2389
2422
  }, {
2390
2423
  default: $(() => [
2391
- cs
2424
+ is
2392
2425
  ]),
2393
2426
  _: 1
2394
2427
  }),
2395
- p(V, {
2428
+ p(A, {
2396
2429
  class: "footer__contact",
2397
- linkType: "regular-light",
2430
+ "link-type": "regular_light",
2398
2431
  underline: "false"
2399
2432
  }, {
2400
2433
  default: $(() => [
2401
- us
2434
+ ss
2402
2435
  ]),
2403
2436
  _: 1
2404
2437
  })
2405
2438
  ])
2406
2439
  ])
2407
2440
  ]),
2408
- t("div", _s, [
2409
- t("p", hs, "© MiR " + o((/* @__PURE__ */ new Date()).getFullYear()), 1),
2410
- t("div", vs, [
2441
+ t("div", os, [
2442
+ t("p", rs, "© MiR " + r((/* @__PURE__ */ new Date()).getFullYear()), 1),
2443
+ t("div", ns, [
2411
2444
  t("button", {
2412
2445
  class: "footer__language-switcher",
2413
- onClick: r[0] || (r[0] = (i) => l.$emit("changeRegionClicked"))
2414
- }, fs),
2446
+ onClick: o[0] || (o[0] = (a) => l.$emit("changeRegionClicked"))
2447
+ }, cs),
2415
2448
  d(l.$slots, "footer-privacy-link"),
2416
2449
  d(l.$slots, "footer-cookie-link")
2417
2450
  ]),
2418
- t("div", gs, [
2419
- (a(!0), s(I, null, T(e.socialMedia, (i) => (a(), D(V, {
2451
+ t("div", us, [
2452
+ (i(!0), s(I, null, C(e.socialMedia, (a) => (i(), D(A, {
2453
+ key: a.title,
2420
2454
  underline: "false",
2421
- linkType: "regular"
2455
+ "link-type": "regular"
2422
2456
  }, {
2423
2457
  default: $(() => [
2424
2458
  t("a", {
2425
- href: i.url,
2426
- "aria-label": i.title
2459
+ href: a.url,
2460
+ "aria-label": a.title
2427
2461
  }, [
2428
2462
  t("i", {
2429
2463
  width: "19",
2430
2464
  height: "14",
2431
- class: u(["footer__social--icon", [
2432
- i.title === "linkedin" ? "bg-linkedin" : i.title === "facebook" ? "bg-facebook" : i.title === "instagram" ? "bg-instagram" : i.title === "twitter" ? "bg-twitter" : i.title === "youtube" ? "bg-youtube" : ""
2465
+ class: _(["footer__social--icon", [
2466
+ a.title === "linkedin" ? "bg-linkedin" : a.title === "facebook" ? "bg-facebook" : a.title === "instagram" ? "bg-instagram" : a.title === "twitter" ? "bg-twitter" : a.title === "youtube" ? "bg-youtube" : ""
2433
2467
  ]])
2434
2468
  }, null, 2)
2435
- ], 8, ys)
2469
+ ], 8, _s)
2436
2470
  ]),
2437
2471
  _: 2
2438
- }, 1024))), 256))
2472
+ }, 1024))), 128))
2439
2473
  ])
2440
2474
  ])
2441
2475
  ])
2442
2476
  ]));
2443
2477
  }
2444
2478
  });
2445
- const ps = /* @__PURE__ */ h(bs, [["__scopeId", "data-v-d2cab33d"]]), $s = { class: "header__wrapper" }, ks = { class: "nav-wrapper" }, ws = { class: "mir-link-logo" }, xs = { class: "main-nav-items" }, Ss = {
2479
+ const vs = /* @__PURE__ */ h(hs, [["__scopeId", "data-v-9d34b5e2"]]), ms = { class: "header__wrapper" }, fs = { class: "nav-wrapper" }, gs = { class: "mir-link-logo" }, ys = { class: "main-nav-items" }, ps = {
2446
2480
  id: "menu-dropdown",
2447
2481
  ref: "dropdownDiv"
2448
- }, qs = {
2482
+ }, bs = {
2449
2483
  key: 0,
2450
2484
  src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
2451
2485
  alt: "dropdownarrow"
2452
- }, Bs = {
2486
+ }, $s = {
2453
2487
  key: 1,
2454
2488
  src: "https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",
2455
2489
  alt: "dropdownarrow",
2456
2490
  style: { transform: "rotate(180deg)" }
2457
- }, Is = { class: "dropdown-content" }, Ts = { class: "nav-search-wrapper" }, Ls = ["src"], Cs = { class: "mobile-logo-search-burger-wrapper" }, Vs = { class: "mobile-mir-link-logo" }, As = { class: "mobile-search-wrapper" }, Ds = ["src"], Ms = ["onClick"], Os = ["src"], zs = { class: "mobile-menu-content-wrapper" }, Fs = { class: "mobile-dropdown-content" }, Ps = /* @__PURE__ */ v({
2491
+ }, ks = { class: "dropdown-content" }, ws = { class: "nav-search-wrapper" }, xs = ["src"], Ss = { class: "mobile-logo-search-burger-wrapper" }, qs = { class: "mobile-mir-link-logo" }, Bs = { class: "mobile-search-wrapper" }, Is = ["src"], Cs = ["onClick"], Ls = ["src"], Ts = { class: "mobile-menu-content-wrapper" }, As = { class: "mobile-dropdown-content" }, Vs = /* @__PURE__ */ v({
2458
2492
  __name: "header",
2459
2493
  props: {
2460
2494
  burgerState: {
@@ -2471,28 +2505,27 @@ const ps = /* @__PURE__ */ h(bs, [["__scopeId", "data-v-d2cab33d"]]), $s = { cla
2471
2505
  "update:showDropDown",
2472
2506
  "clickSearch"
2473
2507
  ],
2474
- setup(e, { expose: l, emit: r }) {
2475
- const i = e;
2476
- w("");
2477
- let n = null, _ = w(i.burgerState), b = w(i.showDropDown);
2508
+ setup(e, { expose: l, emit: o }) {
2509
+ const a = e;
2510
+ let n = null, c = w(a.burgerState), b = w(a.showDropDown);
2478
2511
  se(
2479
- () => i.burgerState,
2480
- (k) => _.value = k
2512
+ () => a.burgerState,
2513
+ (k) => c.value = k
2481
2514
  ), se(
2482
- () => i.showDropDown,
2515
+ () => a.showDropDown,
2483
2516
  (k) => b.value = k
2484
2517
  ), ne(() => {
2485
2518
  n = (k) => {
2486
2519
  k.target.closest("#menu-dropdown") || (b.value = !1);
2487
2520
  }, window.addEventListener("click", n);
2488
- }), pe(() => {
2521
+ }), be(() => {
2489
2522
  n !== null && window.removeEventListener("click", n);
2490
2523
  });
2491
- function C() {
2492
- b.value = !b.value, r("update:showDropDown", b.value);
2524
+ function T() {
2525
+ b.value = !b.value, o("update:showDropDown", b.value);
2493
2526
  }
2494
2527
  function S() {
2495
- _.value = !_.value, r("update:burgerState", _.value);
2528
+ c.value = !c.value, o("update:burgerState", c.value);
2496
2529
  }
2497
2530
  let g = w(null), q = w(null);
2498
2531
  function X() {
@@ -2500,124 +2533,126 @@ const ps = /* @__PURE__ */ h(bs, [["__scopeId", "data-v-d2cab33d"]]), $s = { cla
2500
2533
  }
2501
2534
  return l({
2502
2535
  defocusSearchButton: X
2503
- }), (k, N) => (a(), s("div", $s, [
2536
+ }), (k, H) => (i(), s("div", ms, [
2504
2537
  t("nav", null, [
2505
- t("div", ks, [
2506
- t("div", ws, [
2538
+ t("div", fs, [
2539
+ t("div", gs, [
2507
2540
  d(k.$slots, "link-logo", {}, void 0, !0)
2508
2541
  ]),
2509
- t("ul", xs, [
2542
+ t("ul", ys, [
2510
2543
  d(k.$slots, "main-nav-items", {}, void 0, !0)
2511
2544
  ]),
2512
- t("div", Ss, [
2545
+ t("div", ps, [
2513
2546
  t("button", {
2514
- onClick: C,
2515
- class: "nav-dropdown-btn"
2547
+ class: "nav-dropdown-btn",
2548
+ onClick: T
2516
2549
  }, [
2517
2550
  d(k.$slots, "dropdown-title", {}, void 0, !0),
2518
- B(b) == !1 ? (a(), s("img", qs)) : (a(), s("img", Bs))
2551
+ B(b) == !1 ? (i(), s("img", bs)) : (i(), s("img", $s))
2519
2552
  ]),
2520
- Y(t("div", Is, [
2553
+ Q(t("div", ks, [
2521
2554
  d(k.$slots, "dropdown-links", {}, void 0, !0)
2522
2555
  ], 512), [
2523
2556
  [Z, B(b)]
2524
2557
  ])
2525
2558
  ], 512),
2526
- t("div", Ts, [
2559
+ t("div", ws, [
2527
2560
  t("button", {
2528
- class: "search-icon",
2529
- onClick: N[0] || (N[0] = (W) => {
2530
- var P;
2531
- return k.$emit("clickSearch"), (P = B(g)) == null ? void 0 : P.blur();
2532
- }),
2533
2561
  ref_key: "navSearchButton",
2534
- ref: g
2562
+ ref: g,
2563
+ class: "search-icon",
2564
+ onClick: H[0] || (H[0] = (W) => {
2565
+ var N;
2566
+ return k.$emit("clickSearch"), (N = B(g)) == null ? void 0 : N.blur();
2567
+ })
2535
2568
  }, [
2536
2569
  t("img", {
2537
- src: B(_) == !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
2570
+ src: B(c) == !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
2538
2571
  alt: "search icon",
2539
2572
  width: "20",
2540
2573
  height: "20"
2541
- }, null, 8, Ls)
2574
+ }, null, 8, xs)
2542
2575
  ], 512)
2543
2576
  ])
2544
2577
  ]),
2545
2578
  t("div", {
2546
- class: u(["mobile-nav-wrapper", B(_) == !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
2579
+ class: _(["mobile-nav-wrapper", B(c) == !0 ? "mirsaic-mobile-bg mirsaic--dark" : ""])
2547
2580
  }, [
2548
- t("div", Cs, [
2549
- t("div", Vs, [
2581
+ t("div", Ss, [
2582
+ t("div", qs, [
2550
2583
  d(k.$slots, "link-logo", {}, void 0, !0)
2551
2584
  ]),
2552
- t("div", As, [
2585
+ t("div", Bs, [
2553
2586
  t("button", {
2554
- class: "search-icon",
2555
- onClick: N[1] || (N[1] = (W) => {
2556
- var P;
2557
- return k.$emit("clickSearch"), (P = B(q)) == null ? void 0 : P.blur();
2558
- }),
2559
2587
  ref_key: "mobileSearchButton",
2560
2588
  ref: q,
2561
- "aria-label": "Toggle search"
2589
+ class: "search-icon",
2590
+ "aria-label": "Toggle search",
2591
+ onClick: H[1] || (H[1] = (W) => {
2592
+ var N;
2593
+ return k.$emit("clickSearch"), (N = B(q)) == null ? void 0 : N.blur();
2594
+ })
2562
2595
  }, [
2563
2596
  t("img", {
2564
- src: B(_) == !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
2597
+ src: B(c) == !0 ? "https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080" : "https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",
2565
2598
  alt: "search icon",
2566
2599
  width: "20",
2567
2600
  height: "20"
2568
- }, null, 8, Ds)
2601
+ }, null, 8, Is)
2569
2602
  ], 512)
2570
2603
  ]),
2571
2604
  t("button", {
2572
- onClick: re(S, ["prevent"]),
2573
2605
  class: "mobile-burger-wrapper",
2574
- "aria-label": "Toggle menu"
2606
+ "aria-label": "Toggle menu",
2607
+ onClick: oe(S, ["prevent"])
2575
2608
  }, [
2576
2609
  t("img", {
2577
2610
  width: "20",
2578
2611
  height: "20",
2579
2612
  alt: "burger menu line icon",
2580
- src: B(_) == !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"
2581
- }, null, 8, Os)
2582
- ], 8, Ms)
2613
+ src: B(c) == !0 ? "https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg" : "https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"
2614
+ }, null, 8, Ls)
2615
+ ], 8, Cs)
2583
2616
  ]),
2584
- Y(t("div", zs, [
2617
+ Q(t("div", Ts, [
2585
2618
  t("ul", null, [
2586
2619
  d(k.$slots, "mobile-main-nav-items", {}, void 0, !0)
2587
2620
  ]),
2588
- t("ul", Fs, [
2621
+ t("ul", As, [
2589
2622
  d(k.$slots, "mobile-dropdown-title", {}, void 0, !0),
2590
2623
  d(k.$slots, "mobile-dropdown-links", {}, void 0, !0)
2591
2624
  ])
2592
2625
  ], 512), [
2593
- [Z, B(_)]
2626
+ [Z, B(c)]
2594
2627
  ])
2595
2628
  ], 2)
2596
2629
  ])
2597
2630
  ]));
2598
2631
  }
2599
2632
  });
2600
- const Es = /* @__PURE__ */ h(Ps, [["__scopeId", "data-v-98560ea5"]]), Hs = { class: "language__wrapper" }, Ns = { class: "language__content" }, Rs = { class: "language__headline" }, js = { class: "language__paragraph" }, Ks = /* @__PURE__ */ v({
2633
+ const Ds = /* @__PURE__ */ h(Vs, [["__scopeId", "data-v-10e18de9"]]), Ms = { class: "language__wrapper" }, Os = { class: "language__content" }, zs = { class: "language__headline" }, Fs = { class: "language__paragraph" }, Ps = /* @__PURE__ */ v({
2601
2634
  __name: "language-switcher",
2602
2635
  props: {
2603
2636
  headline: {
2604
- type: String
2637
+ type: String,
2638
+ default: ""
2605
2639
  },
2606
2640
  paragraph: {
2607
- type: String
2641
+ type: String,
2642
+ default: ""
2608
2643
  }
2609
2644
  },
2610
2645
  setup(e) {
2611
- return (l, r) => (a(), s("div", Hs, [
2612
- t("div", Ns, [
2613
- t("h2", Rs, o(e.headline), 1),
2614
- t("p", js, o(e.paragraph), 1),
2646
+ return (l, o) => (i(), s("div", Ms, [
2647
+ t("div", Os, [
2648
+ t("h2", zs, r(e.headline), 1),
2649
+ t("p", Fs, r(e.paragraph), 1),
2615
2650
  d(l.$slots, "language-links", {}, void 0, !0)
2616
2651
  ])
2617
2652
  ]));
2618
2653
  }
2619
2654
  });
2620
- const Us = /* @__PURE__ */ h(Ks, [["__scopeId", "data-v-a76ba727"]]), Gs = { class: "pagination__wrapper" }, Ws = { class: "pagination__content" }, Qs = /* @__PURE__ */ v({
2655
+ const Ns = /* @__PURE__ */ h(Ps, [["__scopeId", "data-v-f345ee1f"]]), Es = { class: "pagination__wrapper" }, Hs = { class: "pagination__content" }, Rs = /* @__PURE__ */ v({
2621
2656
  __name: "pagination",
2622
2657
  props: {
2623
2658
  isPreviousDisabled: {
@@ -2631,81 +2666,81 @@ const Us = /* @__PURE__ */ h(Ks, [["__scopeId", "data-v-a76ba727"]]), Gs = { cla
2631
2666
  },
2632
2667
  emits: ["previous", "next"],
2633
2668
  setup(e) {
2634
- return (l, r) => (a(), s("div", Gs, [
2635
- t("div", Ws, [
2669
+ return (l, o) => (i(), s("div", Es, [
2670
+ t("div", Hs, [
2636
2671
  p(J, {
2637
- onClick: r[0] || (r[0] = (i) => l.$emit("previous")),
2638
2672
  disabled: e.isPreviousDisabled,
2639
2673
  variant: "previous",
2640
- ariaLabel: "previous"
2674
+ "aria-label": "previous",
2675
+ onClick: o[0] || (o[0] = (a) => l.$emit("previous"))
2641
2676
  }, null, 8, ["disabled"]),
2642
2677
  d(l.$slots, "pagination-numbers"),
2643
2678
  p(J, {
2644
- onClick: r[1] || (r[1] = (i) => l.$emit("next")),
2645
2679
  disabled: e.isNextDisabled,
2646
2680
  variant: "next",
2647
- ariaLabel: "next"
2681
+ "aria-label": "next",
2682
+ onClick: o[1] || (o[1] = (a) => l.$emit("next"))
2648
2683
  }, null, 8, ["disabled"])
2649
2684
  ])
2650
2685
  ]));
2651
2686
  }
2652
2687
  });
2653
- const Ys = /* @__PURE__ */ h(Qs, [["__scopeId", "data-v-9f08dcf6"]]);
2654
- const Js = {}, Xs = { class: "search__wrapper" };
2655
- function Zs(e, l) {
2656
- return a(), s("div", Xs, [
2688
+ const js = /* @__PURE__ */ h(Rs, [["__scopeId", "data-v-9eec8df7"]]);
2689
+ const Ks = {}, Us = { class: "search__wrapper" };
2690
+ function Gs(e, l) {
2691
+ return i(), s("div", Us, [
2657
2692
  d(e.$slots, "default", { class: "search__content" })
2658
2693
  ]);
2659
2694
  }
2660
- const er = /* @__PURE__ */ h(Js, [["render", Zs], ["__scopeId", "data-v-31f35da9"]]), ar = {
2695
+ const Ws = /* @__PURE__ */ h(Ks, [["render", Gs], ["__scopeId", "data-v-623adb82"]]), Qs = {
2661
2696
  install: (e) => {
2662
- e.component("AtomButton", J), e.component("AtomCheckbox", Ie), e.component("AtomChip", Ae), e.component("AtomDropdown", He), e.component("AtomImage", L), e.component("AtomLabel", G), e.component("AtomLink", V), e.component("AtomRadioButton", Ze), e.component("AtomSelect", st), e.component("AtomSlider", mt), e.component("AtomTextarea", wt), e.component("AtomTextField", Dt), e.component("AtomVideo", K), e.component("MoleculeAddress", Qt), e.component("MoleculeBulletList", ea), e.component("MoleculeCard", sa), e.component("MoleculeEventCard", ha), e.component("MoleculeModal", de), e.component("MoleculeTextCard", ya), e.component("BlockFacts", Ia), e.component("BlockFeatures", za), e.component("BlockFormScript", Ka), e.component("BlockHeadline", nl), e.component("BlockHero", bl), e.component("BlockImage", Ja), e.component("BlockImageGallery", il), e.component("BlockLogoWall", Tl), e.component("BlockMicroStories", Cl), e.component("BlockPolicy", Ol), e.component("BlockProductHero", Nl), e.component("BlockPromo", Kl), e.component("BlockQuote", ii), e.component("BlockRichText", di), e.component("BlockRichTextColumns", fi), e.component("BlockTimeline", Bi), e.component("BlockTripleCardDisplay", Di), e.component("BlockVimeo", Ei), e.component("Organism404", Ui), e.component("OrganismFilter", Xi), e.component("OrganismFooter", ps), e.component("OrganismHeader", Es), e.component("OrganismLanguageSwitcher", Us), e.component("OrganismPagination", Ys), e.component("OrganismSearch", er);
2697
+ e.component("AtomButton", J), e.component("AtomCheckbox", Ie), e.component("AtomChip", Ve), e.component("AtomDropdown", Ee), e.component("AtomImage", L), e.component("AtomLabel", G), e.component("AtomLink", A), e.component("AtomRadioButton", Ze), e.component("AtomSelect", st), e.component("AtomSlider", mt), e.component("AtomTextarea", wt), e.component("AtomTextField", Dt), e.component("AtomVideo", K), e.component("MoleculeAddress", Yt), e.component("MoleculeBulletList", ea), e.component("MoleculeCard", sa), e.component("MoleculeEventCard", ha), e.component("MoleculeModal", de), e.component("MoleculeTextCard", ya), e.component("BlockFacts", Ba), e.component("BlockFeatures", Ma), e.component("BlockFormScript", Ra), e.component("BlockHeadline", sl), e.component("BlockHero", fl), e.component("BlockImage", Ya), e.component("BlockImageGallery", tl), e.component("BlockLogoWall", Sl), e.component("BlockMicroStories", Bl), e.component("BlockPolicy", Al), e.component("BlockProductHero", Fl), e.component("BlockPromo", El), e.component("BlockQuote", ei), e.component("BlockRichText", si), e.component("BlockRichTextColumns", _i), e.component("BlockTimeline", ki), e.component("BlockTripleCardDisplay", Ci), e.component("BlockVimeo", Mi), e.component("Organism404", Ei), e.component("OrganismFilter", Gi), e.component("OrganismFooter", vs), e.component("OrganismHeader", Ds), e.component("OrganismLanguageSwitcher", Ns), e.component("OrganismPagination", js), e.component("OrganismSearch", Ws);
2663
2698
  }
2664
2699
  };
2665
2700
  export {
2666
2701
  J as AtomButton,
2667
2702
  Ie as AtomCheckbox,
2668
- Ae as AtomChip,
2669
- He as AtomDropdown,
2703
+ Ve as AtomChip,
2704
+ Ee as AtomDropdown,
2670
2705
  L as AtomImage,
2671
2706
  G as AtomLabel,
2672
- V as AtomLink,
2707
+ A as AtomLink,
2673
2708
  Ze as AtomRadioButton,
2674
2709
  st as AtomSelect,
2675
2710
  mt as AtomSlider,
2676
2711
  Dt as AtomTextField,
2677
2712
  wt as AtomTextarea,
2678
2713
  K as AtomVideo,
2679
- Ia as BlockFacts,
2680
- za as BlockFeatures,
2681
- Ka as BlockFormScript,
2682
- nl as BlockHeadline,
2683
- bl as BlockHero,
2684
- Ja as BlockImage,
2685
- il as BlockImageGallery,
2686
- Tl as BlockLogoWall,
2687
- Cl as BlockMicroStories,
2688
- Ol as BlockPolicy,
2689
- Nl as BlockProductHero,
2690
- Kl as BlockPromo,
2691
- ii as BlockQuote,
2692
- di as BlockRichText,
2693
- fi as BlockRichTextColumns,
2694
- Bi as BlockTimeline,
2695
- Di as BlockTripleCardDisplay,
2696
- Ei as BlockVimeo,
2697
- Qt as MoleculeAddress,
2714
+ Ba as BlockFacts,
2715
+ Ma as BlockFeatures,
2716
+ Ra as BlockFormScript,
2717
+ sl as BlockHeadline,
2718
+ fl as BlockHero,
2719
+ Ya as BlockImage,
2720
+ tl as BlockImageGallery,
2721
+ Sl as BlockLogoWall,
2722
+ Bl as BlockMicroStories,
2723
+ Al as BlockPolicy,
2724
+ Fl as BlockProductHero,
2725
+ El as BlockPromo,
2726
+ ei as BlockQuote,
2727
+ si as BlockRichText,
2728
+ _i as BlockRichTextColumns,
2729
+ ki as BlockTimeline,
2730
+ Ci as BlockTripleCardDisplay,
2731
+ Mi as BlockVimeo,
2732
+ Yt as MoleculeAddress,
2698
2733
  ea as MoleculeBulletList,
2699
2734
  sa as MoleculeCard,
2700
2735
  ha as MoleculeEventCard,
2701
2736
  de as MoleculeModal,
2702
2737
  ya as MoleculeTextCard,
2703
- Ui as Organism404,
2704
- Xi as OrganismFilter,
2705
- ps as OrganismFooter,
2706
- Es as OrganismHeader,
2707
- Us as OrganismLanguageSwitcher,
2708
- Ys as OrganismPagination,
2709
- er as OrganismSearch,
2710
- ar as default
2738
+ Ei as Organism404,
2739
+ Gi as OrganismFilter,
2740
+ vs as OrganismFooter,
2741
+ Ds as OrganismHeader,
2742
+ Ns as OrganismLanguageSwitcher,
2743
+ js as OrganismPagination,
2744
+ Ws as OrganismSearch,
2745
+ Qs as default
2711
2746
  };