@mirweb/mir-web-components 0.17.107 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as g, computed as V, openBlock as l, createElementBlock as i, normalizeClass as h, toDisplayString as n, createElementVNode as t, renderSlot as
|
|
1
|
+
import { defineComponent as g, computed as V, openBlock as l, createElementBlock as i, normalizeClass as h, toDisplayString as n, createElementVNode as t, renderSlot as d, pushScopeId as E, popScopeId as R, createTextVNode as Q, ref as q, withDirectives as j, Fragment as P, renderList as M, vShow as J, normalizeProps as O, guardReactiveProps as F, toRefs as ye, mergeProps as ie, createVNode as S, Transition as $e, withCtx as $, withModifiers as ue, createBlock as D, createCommentVNode as m, watchEffect as _e, withKeys as ke, useSlots as we, normalizeStyle as re, isRef as ce, unref as I, onMounted as pe, watch as ee, onUnmounted as Se } from "vue";
|
|
2
2
|
const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
3
3
|
__name: "button",
|
|
4
4
|
props: {
|
|
@@ -24,7 +24,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
24
24
|
for (const [s, o] of a)
|
|
25
25
|
r[s] = o;
|
|
26
26
|
return r;
|
|
27
|
-
},
|
|
27
|
+
}, te = /* @__PURE__ */ f(Ie, [["__scopeId", "data-v-a3e038ec"]]), qe = (e) => (E("data-v-42c44141"), e = e(), R(), e), Le = ["id", "name", "value", "disabled", "required"], Ve = ["for"], De = /* @__PURE__ */ qe(() => /* @__PURE__ */ t("span", { class: "checkmark" }, null, -1)), Te = /* @__PURE__ */ g({
|
|
28
28
|
__name: "checkbox",
|
|
29
29
|
props: {
|
|
30
30
|
name: { default: "checkbox" },
|
|
@@ -57,7 +57,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
57
57
|
class: h(["checkbox__label", o.required ? "required" : ""])
|
|
58
58
|
}, [
|
|
59
59
|
De,
|
|
60
|
-
|
|
60
|
+
d(o.$slots, "default", {}, void 0, !0)
|
|
61
61
|
], 10, Ve)
|
|
62
62
|
], 2));
|
|
63
63
|
}
|
|
@@ -105,35 +105,35 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
105
105
|
primary: "dropdown-dark-bg-primary",
|
|
106
106
|
dark: "dropdown-dark dropdown-dark-bg-dark"
|
|
107
107
|
}, s = e, o = V(() => r[s.variant]), _ = q(null), u = q(null), p = q([]), w = q(0), v = q(""), B = q(!0), T = q(0), ae = a, oe = V(() => {
|
|
108
|
-
const
|
|
108
|
+
const c = s.options.find(
|
|
109
109
|
(y) => y.value === s.modelValue
|
|
110
110
|
);
|
|
111
|
-
return
|
|
111
|
+
return c && c.label;
|
|
112
112
|
}), U = {
|
|
113
|
-
beforeMount(
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
}, document.body.addEventListener("click",
|
|
113
|
+
beforeMount(c, y) {
|
|
114
|
+
c.clickOutsideEvent = function(k) {
|
|
115
|
+
c === k.target || c.contains(k.target) || y.value(k);
|
|
116
|
+
}, document.body.addEventListener("click", c.clickOutsideEvent);
|
|
117
117
|
},
|
|
118
|
-
unmounted(
|
|
119
|
-
document.body.removeEventListener("click",
|
|
118
|
+
unmounted(c) {
|
|
119
|
+
document.body.removeEventListener("click", c.clickOutsideEvent);
|
|
120
120
|
}
|
|
121
121
|
};
|
|
122
|
-
function
|
|
123
|
-
ae("update:modelValue",
|
|
122
|
+
function X(c) {
|
|
123
|
+
ae("update:modelValue", c);
|
|
124
124
|
}
|
|
125
|
-
function le(
|
|
125
|
+
function le(c) {
|
|
126
126
|
var k;
|
|
127
|
-
const y =
|
|
128
|
-
y.getAttribute("role") === "option" && (Y(y),
|
|
127
|
+
const y = c.target;
|
|
128
|
+
y.getAttribute("role") === "option" && (Y(y), x(), (k = _.value) == null || k.focus());
|
|
129
129
|
}
|
|
130
|
-
function b(
|
|
130
|
+
function b(c) {
|
|
131
131
|
var k;
|
|
132
|
-
const y =
|
|
132
|
+
const y = c.key;
|
|
133
133
|
switch (y) {
|
|
134
134
|
case "ArrowUp":
|
|
135
135
|
case "ArrowDown": {
|
|
136
|
-
|
|
136
|
+
c.preventDefault();
|
|
137
137
|
const L = s.options.findIndex(
|
|
138
138
|
(G) => G.value === s.modelValue
|
|
139
139
|
);
|
|
@@ -143,15 +143,15 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
143
143
|
}
|
|
144
144
|
case "Home":
|
|
145
145
|
case "PageUp":
|
|
146
|
-
|
|
146
|
+
c.preventDefault(), ve();
|
|
147
147
|
break;
|
|
148
148
|
case "End":
|
|
149
149
|
case "PageDown":
|
|
150
|
-
|
|
150
|
+
c.preventDefault(), fe();
|
|
151
151
|
break;
|
|
152
152
|
case "Enter":
|
|
153
153
|
case "Escape":
|
|
154
|
-
|
|
154
|
+
c.preventDefault(), x(), (k = _.value) == null || k.focus();
|
|
155
155
|
break;
|
|
156
156
|
default: {
|
|
157
157
|
const L = me(y);
|
|
@@ -160,36 +160,36 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
160
160
|
}
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
|
-
function K(
|
|
163
|
+
function K(c) {
|
|
164
164
|
if (!s.disabled)
|
|
165
|
-
switch (
|
|
165
|
+
switch (c.key) {
|
|
166
166
|
case "ArrowUp":
|
|
167
167
|
case "ArrowDown":
|
|
168
|
-
|
|
168
|
+
c.preventDefault(), de(), b(c);
|
|
169
169
|
break;
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
|
-
function se(
|
|
173
|
-
|
|
172
|
+
function se(c) {
|
|
173
|
+
c && c.removeAttribute("aria-selected");
|
|
174
174
|
}
|
|
175
175
|
function z() {
|
|
176
176
|
w.value && (clearTimeout(w.value), w.value = 0), w.value = setTimeout(() => {
|
|
177
177
|
v.value = "", w.value = 0;
|
|
178
178
|
}, 500);
|
|
179
179
|
}
|
|
180
|
-
function me(
|
|
180
|
+
function me(c) {
|
|
181
181
|
let y = "";
|
|
182
|
-
(v.value === "" || y !==
|
|
182
|
+
(v.value === "" || y !== c) && (T.value = s.options.findIndex(
|
|
183
183
|
(L) => L.value === s.modelValue
|
|
184
|
-
)), v.value = y ===
|
|
184
|
+
)), v.value = y === c ? c : v.value + c, y = c, z();
|
|
185
185
|
let k = ne(
|
|
186
186
|
T.value + 1,
|
|
187
187
|
s.options.length
|
|
188
188
|
);
|
|
189
189
|
return !k && v.value.length === 1 && (k = ne(0, T.value)), T.value = (T.value + 1) % s.options.length, k;
|
|
190
190
|
}
|
|
191
|
-
function ne(
|
|
192
|
-
for (let k =
|
|
191
|
+
function ne(c, y) {
|
|
192
|
+
for (let k = c; k < y; k++)
|
|
193
193
|
if (s.options[k].label && s.options[k].label.toUpperCase().indexOf(v.value.toUpperCase()) === 0)
|
|
194
194
|
return p.value[k];
|
|
195
195
|
return null;
|
|
@@ -197,82 +197,82 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
197
197
|
function ve() {
|
|
198
198
|
Y(p.value[0]);
|
|
199
199
|
}
|
|
200
|
-
function Y(
|
|
200
|
+
function Y(c) {
|
|
201
201
|
var k, L;
|
|
202
|
-
const y =
|
|
202
|
+
const y = c.getAttribute("data-value");
|
|
203
203
|
if (s.modelValue) {
|
|
204
204
|
const H = s.options.findIndex(
|
|
205
205
|
(be) => be.value === s.modelValue
|
|
206
206
|
), G = p.value[H];
|
|
207
207
|
se(G);
|
|
208
208
|
}
|
|
209
|
-
if (
|
|
209
|
+
if (c.setAttribute("aria-selected", "true"), (k = u.value) == null || k.setAttribute(
|
|
210
210
|
"aria-activedescendant",
|
|
211
211
|
y || ""
|
|
212
|
-
),
|
|
213
|
-
const H = u.value.clientHeight + u.value.scrollTop, G =
|
|
214
|
-
G > H ? u.value.scrollTop = G - ((L = u.value) == null ? void 0 : L.clientHeight) :
|
|
212
|
+
), X(y || ""), u.value && u.value.scrollHeight > u.value.clientHeight) {
|
|
213
|
+
const H = u.value.clientHeight + u.value.scrollTop, G = c.offsetTop + c.offsetHeight;
|
|
214
|
+
G > H ? u.value.scrollTop = G - ((L = u.value) == null ? void 0 : L.clientHeight) : c.offsetTop < u.value.scrollTop && (u.value.scrollTop = c.offsetTop);
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
function fe() {
|
|
218
218
|
var y;
|
|
219
|
-
const
|
|
220
|
-
Y(
|
|
219
|
+
const c = (y = p.value) == null ? void 0 : y[s.options.length - 1];
|
|
220
|
+
Y(c);
|
|
221
221
|
}
|
|
222
|
-
function
|
|
223
|
-
var
|
|
224
|
-
B.value = !0, (
|
|
222
|
+
function x() {
|
|
223
|
+
var c;
|
|
224
|
+
B.value = !0, (c = _.value) == null || c.removeAttribute("aria-expanded");
|
|
225
225
|
}
|
|
226
226
|
function de() {
|
|
227
|
-
var
|
|
228
|
-
B.value = !1, (
|
|
227
|
+
var c, y;
|
|
228
|
+
B.value = !1, (c = _.value) == null || c.setAttribute("aria-expanded", "true"), (y = u.value) == null || y.focus();
|
|
229
229
|
}
|
|
230
230
|
function ge() {
|
|
231
|
-
s.disabled || (B.value ? de() :
|
|
231
|
+
s.disabled || (B.value ? de() : x());
|
|
232
232
|
}
|
|
233
|
-
return (
|
|
233
|
+
return (c, y) => (l(), i("div", {
|
|
234
234
|
ref: "listbox",
|
|
235
235
|
class: "listbox__wrapper",
|
|
236
|
-
value:
|
|
236
|
+
value: c.modelValue
|
|
237
237
|
}, [
|
|
238
238
|
t("label", {
|
|
239
|
-
id: `${
|
|
239
|
+
id: `${c.name}-label`,
|
|
240
240
|
class: h([{
|
|
241
|
-
"listbox__label--visually-hidden": !
|
|
242
|
-
"is-disabled":
|
|
243
|
-
"is-required":
|
|
241
|
+
"listbox__label--visually-hidden": !c.showLabel,
|
|
242
|
+
"is-disabled": c.disabled,
|
|
243
|
+
"is-required": c.required
|
|
244
244
|
}, "listbox__label"])
|
|
245
|
-
}, n(
|
|
245
|
+
}, n(c.label), 11, Re),
|
|
246
246
|
j((l(), i("div", He, [
|
|
247
247
|
t("button", {
|
|
248
|
-
id: `${
|
|
248
|
+
id: `${c.name}-button-label`,
|
|
249
249
|
ref_key: "listboxButton",
|
|
250
250
|
ref: _,
|
|
251
|
-
"aria-labelledby": `${
|
|
251
|
+
"aria-labelledby": `${c.name}-label ${c.name}-button-label`,
|
|
252
252
|
type: "button",
|
|
253
253
|
"aria-haspopup": "listbox",
|
|
254
|
-
"aria-disabled":
|
|
254
|
+
"aria-disabled": c.disabled,
|
|
255
255
|
class: h(["listbox__button", o.value]),
|
|
256
256
|
onClick: ge,
|
|
257
257
|
onKeydown: K
|
|
258
|
-
}, n(
|
|
258
|
+
}, n(c.modelValue ? oe.value : c.placeholder), 43, Ne),
|
|
259
259
|
j(t("ul", {
|
|
260
260
|
ref_key: "listboxNode",
|
|
261
261
|
ref: u,
|
|
262
|
-
"aria-labelledby": `${
|
|
263
|
-
"aria-activedescendant":
|
|
262
|
+
"aria-labelledby": `${c.name}-label`,
|
|
263
|
+
"aria-activedescendant": c.modelValue,
|
|
264
264
|
tabindex: "0",
|
|
265
265
|
role: "listbox",
|
|
266
266
|
class: "listbox__list",
|
|
267
267
|
onKeydown: b,
|
|
268
268
|
onClick: le
|
|
269
269
|
}, [
|
|
270
|
-
(l(!0), i(P, null, M(
|
|
271
|
-
key: `${
|
|
270
|
+
(l(!0), i(P, null, M(c.options, (k, L) => (l(), i("li", {
|
|
271
|
+
key: `${c.name}-option-${L}`,
|
|
272
272
|
ref_for: !0,
|
|
273
273
|
ref_key: "listboxOptions",
|
|
274
274
|
ref: p,
|
|
275
|
-
"aria-selected": k.value ===
|
|
275
|
+
"aria-selected": k.value === c.modelValue,
|
|
276
276
|
"data-value": k.value,
|
|
277
277
|
class: "listbox__option",
|
|
278
278
|
role: "option"
|
|
@@ -281,7 +281,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
281
281
|
[J, !B.value]
|
|
282
282
|
])
|
|
283
283
|
])), [
|
|
284
|
-
[U,
|
|
284
|
+
[U, x]
|
|
285
285
|
])
|
|
286
286
|
], 8, Ee));
|
|
287
287
|
}
|
|
@@ -298,7 +298,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
298
298
|
},
|
|
299
299
|
setup(e) {
|
|
300
300
|
return (a, r) => (l(), i("div", Ge, [
|
|
301
|
-
|
|
301
|
+
d(a.$slots, "default", O(F(a.$attrs)))
|
|
302
302
|
]));
|
|
303
303
|
}
|
|
304
304
|
}), A = /* @__PURE__ */ f(Je, [["__scopeId", "data-v-e10217bd"]]), We = { class: "label__wrapper" }, Ye = ["aria-label", "label-dark"], Qe = /* @__PURE__ */ g({
|
|
@@ -351,7 +351,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
351
351
|
p.arrow ? "link-arrow" : ""
|
|
352
352
|
]]
|
|
353
353
|
}), [
|
|
354
|
-
|
|
354
|
+
d(p.$slots, "default")
|
|
355
355
|
], 16)
|
|
356
356
|
]));
|
|
357
357
|
}
|
|
@@ -390,7 +390,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
390
390
|
class: h(["radio__label", o.required ? "required" : ""])
|
|
391
391
|
}, [
|
|
392
392
|
tt,
|
|
393
|
-
|
|
393
|
+
d(o.$slots, "default", {}, void 0, !0)
|
|
394
394
|
], 10, et)
|
|
395
395
|
], 2));
|
|
396
396
|
}
|
|
@@ -459,14 +459,14 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
459
459
|
}, ["stop"]))
|
|
460
460
|
}, [
|
|
461
461
|
t("div", null, [
|
|
462
|
-
_.searchBar ? m("", !0) : (l(), D(
|
|
462
|
+
_.searchBar ? m("", !0) : (l(), D(te, {
|
|
463
463
|
key: 0,
|
|
464
464
|
"aria-label": "close",
|
|
465
465
|
variant: "close",
|
|
466
466
|
onClick: o
|
|
467
467
|
}))
|
|
468
468
|
]),
|
|
469
|
-
|
|
469
|
+
d(_.$slots, "default", {}, void 0, !0)
|
|
470
470
|
], 2)
|
|
471
471
|
], 2), [
|
|
472
472
|
[J, _.show]
|
|
@@ -753,7 +753,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
753
753
|
}, null, 8, zt))
|
|
754
754
|
]));
|
|
755
755
|
}
|
|
756
|
-
}),
|
|
756
|
+
}), Z = /* @__PURE__ */ f(jt, [["__scopeId", "data-v-c6a0feb6"]]), Ut = { class: "address__wrapper" }, Kt = { class: "address__content" }, Gt = { class: "address__flag" }, Jt = { class: "address__address" }, Wt = { class: "address__name" }, Yt = { key: 0 }, Qt = { class: "address__contact" }, Zt = ["href"], Xt = ["href"], xt = ["href"], ea = /* @__PURE__ */ g({
|
|
757
757
|
__name: "address",
|
|
758
758
|
props: {
|
|
759
759
|
name: {},
|
|
@@ -769,7 +769,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
769
769
|
return (a, r) => (l(), i("div", Ut, [
|
|
770
770
|
t("div", Kt, [
|
|
771
771
|
t("div", Gt, [
|
|
772
|
-
|
|
772
|
+
d(a.$slots, "address-flag", {}, void 0, !0)
|
|
773
773
|
]),
|
|
774
774
|
t("div", Jt, [
|
|
775
775
|
t("p", Wt, n(a.name), 1),
|
|
@@ -902,7 +902,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
902
902
|
}, [
|
|
903
903
|
u.mediaType === "image" ? (l(), D(A, { key: 0 }, {
|
|
904
904
|
default: $(() => [
|
|
905
|
-
|
|
905
|
+
d(u.$slots, "card-image", ie({
|
|
906
906
|
src: u.imgSrc,
|
|
907
907
|
width: "596",
|
|
908
908
|
height: "335",
|
|
@@ -916,7 +916,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
916
916
|
key: 1,
|
|
917
917
|
class: h(["video-card__wrapper", I(r) === !0 ? "vimeoPlaying" : ""])
|
|
918
918
|
}, [
|
|
919
|
-
S(
|
|
919
|
+
S(Z, {
|
|
920
920
|
play: I(r),
|
|
921
921
|
"local-video": !0,
|
|
922
922
|
src: u.videoSrc,
|
|
@@ -931,7 +931,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
931
931
|
}, null, 8, ["play", "src", "aria-label", "poster", "width", "height"])
|
|
932
932
|
], 2)),
|
|
933
933
|
I(a)["card-label"] ? (l(), i("div", na, [
|
|
934
|
-
|
|
934
|
+
d(u.$slots, "card-label")
|
|
935
935
|
])) : m("", !0),
|
|
936
936
|
u.variant === "product" ? (l(), i("div", {
|
|
937
937
|
key: 3,
|
|
@@ -1067,7 +1067,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1067
1067
|
arrow: ""
|
|
1068
1068
|
}, {
|
|
1069
1069
|
default: $(() => [
|
|
1070
|
-
|
|
1070
|
+
d(a.$slots, "facts-link", {}, void 0, !0)
|
|
1071
1071
|
]),
|
|
1072
1072
|
_: 3
|
|
1073
1073
|
})
|
|
@@ -1095,7 +1095,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1095
1095
|
t("h2", null, n(a.headline), 1)
|
|
1096
1096
|
])) : m("", !0),
|
|
1097
1097
|
a.body ? (l(), i("div", Fa, [
|
|
1098
|
-
|
|
1098
|
+
d(a.$slots, "features-body", {}, void 0, !0)
|
|
1099
1099
|
])) : m("", !0),
|
|
1100
1100
|
t("div", {
|
|
1101
1101
|
class: h(["features__elements", [a.elements.length === 6 ? "features__elements--grid-6" : ""]])
|
|
@@ -1106,7 +1106,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1106
1106
|
}, [
|
|
1107
1107
|
S(A, { class: "element__icon" }, {
|
|
1108
1108
|
default: $(() => [
|
|
1109
|
-
|
|
1109
|
+
d(a.$slots, "features-icon", O(F({
|
|
1110
1110
|
src: s.icon.src,
|
|
1111
1111
|
height: 30,
|
|
1112
1112
|
width: 30,
|
|
@@ -1136,11 +1136,11 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1136
1136
|
t("div", Ua, [
|
|
1137
1137
|
t("h2", Ka, n(e.headline), 1),
|
|
1138
1138
|
t("div", Ga, [
|
|
1139
|
-
|
|
1139
|
+
d(a.$slots, "form-body", {}, void 0, !0)
|
|
1140
1140
|
])
|
|
1141
1141
|
]),
|
|
1142
1142
|
t("div", Ja, [
|
|
1143
|
-
|
|
1143
|
+
d(a.$slots, "form-script", {}, void 0, !0)
|
|
1144
1144
|
])
|
|
1145
1145
|
])
|
|
1146
1146
|
]));
|
|
@@ -1169,7 +1169,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1169
1169
|
t("div", Xa, [
|
|
1170
1170
|
S(A, null, {
|
|
1171
1171
|
default: $(() => [
|
|
1172
|
-
|
|
1172
|
+
d(a.$slots, "image", O(F({ width: 984, height: 554, src: e.src, alt: e.alt })))
|
|
1173
1173
|
]),
|
|
1174
1174
|
_: 3
|
|
1175
1175
|
})
|
|
@@ -1217,7 +1217,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1217
1217
|
o.mediaLarge && o.mediaType === "image" ? (l(), i("div", oo, [
|
|
1218
1218
|
S(A, null, {
|
|
1219
1219
|
default: $(() => [
|
|
1220
|
-
|
|
1220
|
+
d(o.$slots, "image-large", O(F({
|
|
1221
1221
|
width: 617,
|
|
1222
1222
|
height: 530,
|
|
1223
1223
|
src: o.mediaLarge.src,
|
|
@@ -1228,7 +1228,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1228
1228
|
})
|
|
1229
1229
|
])) : m("", !0),
|
|
1230
1230
|
o.mediaLarge && o.mediaType === "video" ? (l(), i("div", lo, [
|
|
1231
|
-
S(
|
|
1231
|
+
S(Z, {
|
|
1232
1232
|
src: o.mediaLarge.src,
|
|
1233
1233
|
"local-video": "",
|
|
1234
1234
|
"aria-label": o.mediaLarge.alt,
|
|
@@ -1255,7 +1255,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1255
1255
|
}, [
|
|
1256
1256
|
S(A, null, {
|
|
1257
1257
|
default: $(() => [
|
|
1258
|
-
|
|
1258
|
+
d(o.$slots, "image-small", O(F({
|
|
1259
1259
|
width: 328,
|
|
1260
1260
|
height: 246,
|
|
1261
1261
|
src: u.src,
|
|
@@ -1324,7 +1324,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1324
1324
|
arrow: ""
|
|
1325
1325
|
}, {
|
|
1326
1326
|
default: $(() => [
|
|
1327
|
-
|
|
1327
|
+
d(a.$slots, "hero-link", {}, void 0, !0)
|
|
1328
1328
|
]),
|
|
1329
1329
|
_: 3
|
|
1330
1330
|
})
|
|
@@ -1334,10 +1334,10 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1334
1334
|
t("div", yo, [
|
|
1335
1335
|
$o,
|
|
1336
1336
|
t("div", ko, [
|
|
1337
|
-
|
|
1337
|
+
d(a.$slots, "hero-video", {}, void 0, !0)
|
|
1338
1338
|
]),
|
|
1339
1339
|
t("div", wo, [
|
|
1340
|
-
|
|
1340
|
+
d(a.$slots, "hero-image", {}, void 0, !0)
|
|
1341
1341
|
])
|
|
1342
1342
|
])
|
|
1343
1343
|
])
|
|
@@ -1377,7 +1377,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1377
1377
|
}, [
|
|
1378
1378
|
S(A, null, {
|
|
1379
1379
|
default: $(() => [
|
|
1380
|
-
|
|
1380
|
+
d(a.$slots, "logo-wall-logo", O(F({
|
|
1381
1381
|
width: 130,
|
|
1382
1382
|
height: 130,
|
|
1383
1383
|
src: s.src,
|
|
@@ -1394,7 +1394,7 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1394
1394
|
arrow: !0
|
|
1395
1395
|
}, {
|
|
1396
1396
|
default: $(() => [
|
|
1397
|
-
|
|
1397
|
+
d(a.$slots, "logo-wall-link", {}, void 0, !0)
|
|
1398
1398
|
]),
|
|
1399
1399
|
_: 3
|
|
1400
1400
|
})
|
|
@@ -1433,16 +1433,16 @@ const Be = ["aria-label"], Ie = /* @__PURE__ */ g({
|
|
|
1433
1433
|
])) : m("", !0)
|
|
1434
1434
|
]),
|
|
1435
1435
|
t("div", Eo, [
|
|
1436
|
-
|
|
1436
|
+
d(o.$slots, "micro-stories-slides")
|
|
1437
1437
|
]),
|
|
1438
|
-
|
|
1438
|
+
d(o.$slots, "micro-stories-controls")
|
|
1439
1439
|
], 2));
|
|
1440
1440
|
}
|
|
1441
1441
|
}), Ho = {}, No = { class: "policy__wrapper" }, zo = { class: "policy__content" };
|
|
1442
1442
|
function jo(e, a) {
|
|
1443
1443
|
return l(), i("div", No, [
|
|
1444
1444
|
t("div", zo, [
|
|
1445
|
-
|
|
1445
|
+
d(e.$slots, "default", {}, void 0, !0)
|
|
1446
1446
|
])
|
|
1447
1447
|
]);
|
|
1448
1448
|
}
|
|
@@ -1478,7 +1478,7 @@ const Uo = /* @__PURE__ */ f(Ho, [["render", jo], ["__scopeId", "data-v-ea887d7a
|
|
|
1478
1478
|
e.paragraph ? (l(), i("p", Wo, n(e.paragraph), 1)) : m("", !0)
|
|
1479
1479
|
])) : m("", !0),
|
|
1480
1480
|
t("div", Yo, [
|
|
1481
|
-
|
|
1481
|
+
d(a.$slots, "card-display-cards", {}, void 0, !0)
|
|
1482
1482
|
])
|
|
1483
1483
|
])
|
|
1484
1484
|
], 2));
|
|
@@ -1522,7 +1522,7 @@ const Uo = /* @__PURE__ */ f(Ho, [["render", jo], ["__scopeId", "data-v-ea887d7a
|
|
|
1522
1522
|
}, [
|
|
1523
1523
|
S(A, null, {
|
|
1524
1524
|
default: $(() => [
|
|
1525
|
-
|
|
1525
|
+
d(o.$slots, "promo-image", O(F({ src: o.src, width: 1920, alt: o.alt, height: 1080 })))
|
|
1526
1526
|
]),
|
|
1527
1527
|
_: 3
|
|
1528
1528
|
})
|
|
@@ -1534,7 +1534,7 @@ const Uo = /* @__PURE__ */ f(Ho, [["render", jo], ["__scopeId", "data-v-ea887d7a
|
|
|
1534
1534
|
o.reverse ? "promo__video--reverse" : "promo__video--default"
|
|
1535
1535
|
])
|
|
1536
1536
|
}, [
|
|
1537
|
-
S(
|
|
1537
|
+
S(Z, {
|
|
1538
1538
|
src: o.src,
|
|
1539
1539
|
"local-video": "",
|
|
1540
1540
|
"aria-label": o.alt,
|
|
@@ -1563,7 +1563,7 @@ const Uo = /* @__PURE__ */ f(Ho, [["render", jo], ["__scopeId", "data-v-ea887d7a
|
|
|
1563
1563
|
o.variant === "dark" ? "promo__title--dark" : ""
|
|
1564
1564
|
])
|
|
1565
1565
|
}, [
|
|
1566
|
-
|
|
1566
|
+
d(o.$slots, "promo-headline")
|
|
1567
1567
|
], 2),
|
|
1568
1568
|
o.linkType === "link" ? (l(), D(C, {
|
|
1569
1569
|
key: 1,
|
|
@@ -1571,7 +1571,7 @@ const Uo = /* @__PURE__ */ f(Ho, [["render", jo], ["__scopeId", "data-v-ea887d7a
|
|
|
1571
1571
|
arrow: ""
|
|
1572
1572
|
}, {
|
|
1573
1573
|
default: $(() => [
|
|
1574
|
-
|
|
1574
|
+
d(o.$slots, "promo-link")
|
|
1575
1575
|
]),
|
|
1576
1576
|
_: 3
|
|
1577
1577
|
}, 8, ["link-type"])) : m("", !0),
|
|
@@ -1580,7 +1580,7 @@ const Uo = /* @__PURE__ */ f(Ho, [["render", jo], ["__scopeId", "data-v-ea887d7a
|
|
|
1580
1580
|
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
1581
1581
|
}, {
|
|
1582
1582
|
default: $(() => [
|
|
1583
|
-
|
|
1583
|
+
d(o.$slots, "promo-link")
|
|
1584
1584
|
]),
|
|
1585
1585
|
_: 3
|
|
1586
1586
|
}, 8, ["link-type"])) : m("", !0)
|
|
@@ -1622,7 +1622,7 @@ const Uo = /* @__PURE__ */ f(Ho, [["render", jo], ["__scopeId", "data-v-ea887d7a
|
|
|
1622
1622
|
e.authorImage ? (l(), i("div", nl, [
|
|
1623
1623
|
S(A, null, {
|
|
1624
1624
|
default: $(() => [
|
|
1625
|
-
|
|
1625
|
+
d(a.$slots, "author-image", O(F({
|
|
1626
1626
|
src: e.authorImage + "/m/100x100",
|
|
1627
1627
|
width: 60,
|
|
1628
1628
|
height: 60
|
|
@@ -1690,13 +1690,13 @@ const Uo = /* @__PURE__ */ f(Ho, [["render", jo], ["__scopeId", "data-v-ea887d7a
|
|
|
1690
1690
|
a.bulletList || a.image ? "rich-text__body--content-right" : ""
|
|
1691
1691
|
])
|
|
1692
1692
|
}, [
|
|
1693
|
-
|
|
1693
|
+
d(a.$slots, "rich-text-content"),
|
|
1694
1694
|
a.links ? (l(), i("div", ml, [
|
|
1695
|
-
|
|
1695
|
+
d(a.$slots, "rich-text-links")
|
|
1696
1696
|
])) : m("", !0)
|
|
1697
1697
|
], 2),
|
|
1698
1698
|
a.bulletList ? (l(), i("div", vl, [
|
|
1699
|
-
|
|
1699
|
+
d(a.$slots, "rich-text-bullet-list")
|
|
1700
1700
|
])) : m("", !0),
|
|
1701
1701
|
a.image ? (l(), i("div", {
|
|
1702
1702
|
key: 1,
|
|
@@ -1707,7 +1707,7 @@ const Uo = /* @__PURE__ */ f(Ho, [["render", jo], ["__scopeId", "data-v-ea887d7a
|
|
|
1707
1707
|
}, [
|
|
1708
1708
|
S(A, null, {
|
|
1709
1709
|
default: $(() => [
|
|
1710
|
-
|
|
1710
|
+
d(a.$slots, "rich-text-image", O(F({ width: 865, height: 307 })))
|
|
1711
1711
|
]),
|
|
1712
1712
|
_: 3
|
|
1713
1713
|
})
|
|
@@ -1723,10 +1723,10 @@ function Sl(e, a) {
|
|
|
1723
1723
|
t("div", kl, [
|
|
1724
1724
|
t("div", wl, [
|
|
1725
1725
|
t("div", null, [
|
|
1726
|
-
|
|
1726
|
+
d(e.$slots, "rich-text-content-left", {}, void 0, !0)
|
|
1727
1727
|
]),
|
|
1728
1728
|
t("div", null, [
|
|
1729
|
-
|
|
1729
|
+
d(e.$slots, "rich-text-content-right", {}, void 0, !0)
|
|
1730
1730
|
])
|
|
1731
1731
|
])
|
|
1732
1732
|
])
|
|
@@ -1771,7 +1771,7 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
1771
1771
|
t("div", Cl, [
|
|
1772
1772
|
S(A, null, {
|
|
1773
1773
|
default: $(() => [
|
|
1774
|
-
s.media.src ?
|
|
1774
|
+
s.media.src ? d(a.$slots, "timeline-image", O(ie({ key: 0 }, { src: s.media.src, alt: s.media.alt })), void 0, !0) : m("", !0)
|
|
1775
1775
|
]),
|
|
1776
1776
|
_: 2
|
|
1777
1777
|
}, 1024),
|
|
@@ -1808,7 +1808,7 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
1808
1808
|
return (a, r) => (l(), i("div", Ol, [
|
|
1809
1809
|
t("div", Fl, [
|
|
1810
1810
|
e.headline ? (l(), i("h2", El, n(e.headline), 1)) : m("", !0),
|
|
1811
|
-
|
|
1811
|
+
d(a.$slots, "vimeo-content", {}, void 0, !0),
|
|
1812
1812
|
e.description ? (l(), i("p", Rl, n(e.description), 1)) : m("", !0)
|
|
1813
1813
|
])
|
|
1814
1814
|
]));
|
|
@@ -1857,17 +1857,13 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
1857
1857
|
])
|
|
1858
1858
|
])) : m("", !0),
|
|
1859
1859
|
a.hero.showStats ? m("", !0) : (l(), i("div", ls, [
|
|
1860
|
-
|
|
1861
|
-
"aria-label": "sign in",
|
|
1862
|
-
variant: "primary",
|
|
1863
|
-
"button-text": "Sign in"
|
|
1864
|
-
})
|
|
1860
|
+
d(a.$slots, "button", {}, void 0, !0)
|
|
1865
1861
|
]))
|
|
1866
1862
|
])
|
|
1867
1863
|
])
|
|
1868
1864
|
]));
|
|
1869
1865
|
}
|
|
1870
|
-
}), is = /* @__PURE__ */ f(ss, [["__scopeId", "data-v-
|
|
1866
|
+
}), is = /* @__PURE__ */ f(ss, [["__scopeId", "data-v-56b400ac"]]), rs = { class: "not-found__wrapper" }, ns = { class: "not-found__content" }, ds = { class: "not-found__headline" }, cs = { class: "not-found__body" }, us = /* @__PURE__ */ g({
|
|
1871
1867
|
__name: "404",
|
|
1872
1868
|
props: {
|
|
1873
1869
|
headline: {
|
|
@@ -1880,7 +1876,7 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
1880
1876
|
t("div", ns, [
|
|
1881
1877
|
t("h1", ds, n(e.headline), 1),
|
|
1882
1878
|
t("div", cs, [
|
|
1883
|
-
|
|
1879
|
+
d(a.$slots, "not-found-body", {}, void 0, !0)
|
|
1884
1880
|
])
|
|
1885
1881
|
])
|
|
1886
1882
|
]));
|
|
@@ -1902,10 +1898,10 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
1902
1898
|
return (a, r) => (l(), i("div", ps, [
|
|
1903
1899
|
t("div", hs, [
|
|
1904
1900
|
t("div", ms, [
|
|
1905
|
-
|
|
1901
|
+
d(a.$slots, "filter-dropdowns")
|
|
1906
1902
|
]),
|
|
1907
1903
|
t("div", vs, [
|
|
1908
|
-
|
|
1904
|
+
d(a.$slots, "filter-chips"),
|
|
1909
1905
|
e.hasChips ? (l(), i("button", {
|
|
1910
1906
|
key: 0,
|
|
1911
1907
|
class: "filter__clear",
|
|
@@ -1944,7 +1940,7 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
1944
1940
|
t("span", ks, n(s.title), 1),
|
|
1945
1941
|
t("nav", null, [
|
|
1946
1942
|
t("ul", ws, [
|
|
1947
|
-
|
|
1943
|
+
d(a.$slots, "section-links", {
|
|
1948
1944
|
links: s.links
|
|
1949
1945
|
})
|
|
1950
1946
|
])
|
|
@@ -1992,8 +1988,8 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
1992
1988
|
Q(n(a.changeRegion), 1)
|
|
1993
1989
|
])
|
|
1994
1990
|
]),
|
|
1995
|
-
|
|
1996
|
-
|
|
1991
|
+
d(a.$slots, "footer-privacy-link"),
|
|
1992
|
+
d(a.$slots, "footer-cookie-link")
|
|
1997
1993
|
]),
|
|
1998
1994
|
a.language !== "zh" ? (l(), i("div", Os, [
|
|
1999
1995
|
(l(!0), i(P, null, M(a.socialMedia, (s) => (l(), D(C, {
|
|
@@ -2130,16 +2126,16 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2130
2126
|
let s = null;
|
|
2131
2127
|
const o = e;
|
|
2132
2128
|
let _ = q(o.burgerState), u = q(o.showDropDown), p = q(o.showPortalSwitcherDropDown), w = q(o.showProfileDropDown);
|
|
2133
|
-
|
|
2129
|
+
ee(
|
|
2134
2130
|
() => o.burgerState,
|
|
2135
2131
|
(b) => _.value = b
|
|
2136
|
-
),
|
|
2132
|
+
), ee(
|
|
2137
2133
|
() => o.showDropDown,
|
|
2138
2134
|
(b) => u.value = b
|
|
2139
|
-
),
|
|
2135
|
+
), ee(
|
|
2140
2136
|
() => o.showPortalSwitcherDropDown,
|
|
2141
2137
|
(b) => p.value = b
|
|
2142
|
-
),
|
|
2138
|
+
), ee(
|
|
2143
2139
|
() => o.showProfileDropDown,
|
|
2144
2140
|
(b) => w.value = b
|
|
2145
2141
|
), pe(() => {
|
|
@@ -2162,7 +2158,7 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2162
2158
|
function oe() {
|
|
2163
2159
|
_.value = !_.value, v("update:burgerState", _.value);
|
|
2164
2160
|
}
|
|
2165
|
-
let U = q(null),
|
|
2161
|
+
let U = q(null), X = q(null);
|
|
2166
2162
|
function le() {
|
|
2167
2163
|
U.value && U.value.blur();
|
|
2168
2164
|
}
|
|
@@ -2172,21 +2168,21 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2172
2168
|
t("nav", null, [
|
|
2173
2169
|
t("div", js, [
|
|
2174
2170
|
t("div", Us, [
|
|
2175
|
-
|
|
2171
|
+
d(b.$slots, "link-logo", {}, void 0, !0)
|
|
2176
2172
|
]),
|
|
2177
2173
|
t("ul", Ks, [
|
|
2178
|
-
|
|
2174
|
+
d(b.$slots, "main-nav-items", {}, void 0, !0)
|
|
2179
2175
|
]),
|
|
2180
2176
|
e.useDropdown ? (l(), i("div", Gs, [
|
|
2181
2177
|
t("button", {
|
|
2182
2178
|
class: "nav-dropdown-btn",
|
|
2183
2179
|
onClick: B
|
|
2184
2180
|
}, [
|
|
2185
|
-
|
|
2181
|
+
d(b.$slots, "dropdown-title", {}, void 0, !0),
|
|
2186
2182
|
I(u) === !1 ? (l(), i("img", Js)) : (l(), i("img", Ws))
|
|
2187
2183
|
]),
|
|
2188
2184
|
j(t("div", Ys, [
|
|
2189
|
-
|
|
2185
|
+
d(b.$slots, "dropdown-links", {}, void 0, !0)
|
|
2190
2186
|
], 512), [
|
|
2191
2187
|
[J, I(u)]
|
|
2192
2188
|
])
|
|
@@ -2214,11 +2210,11 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2214
2210
|
class: "nav-portal-switcher-btn",
|
|
2215
2211
|
onClick: T
|
|
2216
2212
|
}, [
|
|
2217
|
-
|
|
2213
|
+
d(b.$slots, "portal-switcher-title", {}, void 0, !0),
|
|
2218
2214
|
I(p) === !1 ? (l(), i("img", xs)) : (l(), i("img", ei))
|
|
2219
2215
|
]),
|
|
2220
2216
|
j(t("div", ti, [
|
|
2221
|
-
|
|
2217
|
+
d(b.$slots, "portal-switcher-links", {}, void 0, !0)
|
|
2222
2218
|
], 512), [
|
|
2223
2219
|
[J, I(p)]
|
|
2224
2220
|
])
|
|
@@ -2228,11 +2224,11 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2228
2224
|
class: "nav-profile-dropdown-btn",
|
|
2229
2225
|
onClick: ae
|
|
2230
2226
|
}, [
|
|
2231
|
-
|
|
2227
|
+
d(b.$slots, "porfile-dropdown-title", {}, void 0, !0),
|
|
2232
2228
|
I(w) === !1 ? (l(), i("img", oi)) : (l(), i("img", li))
|
|
2233
2229
|
]),
|
|
2234
2230
|
j(t("div", si, [
|
|
2235
|
-
|
|
2231
|
+
d(b.$slots, "profile-dropdown-links", {}, void 0, !0)
|
|
2236
2232
|
], 512), [
|
|
2237
2233
|
[J, I(w)]
|
|
2238
2234
|
])
|
|
@@ -2243,17 +2239,17 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2243
2239
|
}, [
|
|
2244
2240
|
t("div", ii, [
|
|
2245
2241
|
t("div", ri, [
|
|
2246
|
-
|
|
2242
|
+
d(b.$slots, "link-logo", {}, void 0, !0)
|
|
2247
2243
|
]),
|
|
2248
2244
|
t("div", ni, [
|
|
2249
2245
|
t("button", {
|
|
2250
2246
|
ref_key: "mobileSearchButton",
|
|
2251
|
-
ref:
|
|
2247
|
+
ref: X,
|
|
2252
2248
|
class: "search-icon",
|
|
2253
2249
|
"aria-label": "Toggle search",
|
|
2254
2250
|
onClick: K[1] || (K[1] = (se) => {
|
|
2255
2251
|
var z;
|
|
2256
|
-
return b.$emit("clickSearch"), (z = I(
|
|
2252
|
+
return b.$emit("clickSearch"), (z = I(X)) == null ? void 0 : z.blur();
|
|
2257
2253
|
})
|
|
2258
2254
|
}, [
|
|
2259
2255
|
t("img", {
|
|
@@ -2279,11 +2275,11 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2279
2275
|
]),
|
|
2280
2276
|
j(t("div", ui, [
|
|
2281
2277
|
t("ul", null, [
|
|
2282
|
-
|
|
2278
|
+
d(b.$slots, "mobile-main-nav-items", {}, void 0, !0)
|
|
2283
2279
|
]),
|
|
2284
2280
|
t("ul", _i, [
|
|
2285
|
-
|
|
2286
|
-
|
|
2281
|
+
d(b.$slots, "mobile-dropdown-title", {}, void 0, !0),
|
|
2282
|
+
d(b.$slots, "mobile-dropdown-links", {}, void 0, !0)
|
|
2287
2283
|
])
|
|
2288
2284
|
], 512), [
|
|
2289
2285
|
[J, I(_)]
|
|
@@ -2310,7 +2306,7 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2310
2306
|
t("h2", fi, n(e.headline), 1),
|
|
2311
2307
|
t("p", gi, n(e.paragraph), 1),
|
|
2312
2308
|
t("div", bi, [
|
|
2313
|
-
|
|
2309
|
+
d(a.$slots, "language-links", {}, void 0, !0)
|
|
2314
2310
|
])
|
|
2315
2311
|
])
|
|
2316
2312
|
]));
|
|
@@ -2331,14 +2327,14 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2331
2327
|
setup(e) {
|
|
2332
2328
|
return (a, r) => (l(), i("div", ki, [
|
|
2333
2329
|
t("div", wi, [
|
|
2334
|
-
S(
|
|
2330
|
+
S(te, {
|
|
2335
2331
|
disabled: e.isPreviousDisabled,
|
|
2336
2332
|
variant: "previous",
|
|
2337
2333
|
"aria-label": "previous",
|
|
2338
2334
|
onClick: r[0] || (r[0] = (s) => a.$emit("previous"))
|
|
2339
2335
|
}, null, 8, ["disabled"]),
|
|
2340
|
-
|
|
2341
|
-
S(
|
|
2336
|
+
d(a.$slots, "pagination-numbers"),
|
|
2337
|
+
S(te, {
|
|
2342
2338
|
disabled: e.isNextDisabled,
|
|
2343
2339
|
variant: "next",
|
|
2344
2340
|
"aria-label": "next",
|
|
@@ -2350,7 +2346,7 @@ const Bl = /* @__PURE__ */ f(bl, [["render", Sl], ["__scopeId", "data-v-2881b194
|
|
|
2350
2346
|
}), Bi = /* @__PURE__ */ f(Si, [["__scopeId", "data-v-da6d07c9"]]), Ii = {}, qi = { class: "search__wrapper" };
|
|
2351
2347
|
function Li(e, a) {
|
|
2352
2348
|
return l(), i("div", qi, [
|
|
2353
|
-
|
|
2349
|
+
d(e.$slots, "default", { class: "search__content" })
|
|
2354
2350
|
]);
|
|
2355
2351
|
}
|
|
2356
2352
|
const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82"]]), Di = { class: "product-hero__wrapper" }, Ti = { class: "product-hero__content" }, Ci = { class: "product-hero__headline" }, Ai = { class: "product-hero__video" }, Pi = { class: "product-hero__insignia" }, Mi = {
|
|
@@ -2398,7 +2394,7 @@ const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82
|
|
|
2398
2394
|
t("div", Ti, [
|
|
2399
2395
|
t("div", Ci, n(e.headline), 1),
|
|
2400
2396
|
t("div", Ai, [
|
|
2401
|
-
e.videoSrc !== "" ? (l(), D(
|
|
2397
|
+
e.videoSrc !== "" ? (l(), D(Z, {
|
|
2402
2398
|
key: 0,
|
|
2403
2399
|
play: "",
|
|
2404
2400
|
"local-video": !0,
|
|
@@ -2411,7 +2407,7 @@ const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82
|
|
|
2411
2407
|
muted: ""
|
|
2412
2408
|
}, null, 8, ["src", "aria-label", "poster"])) : (l(), D(I(A), { key: 1 }, {
|
|
2413
2409
|
default: $(() => [
|
|
2414
|
-
|
|
2410
|
+
d(a.$slots, "product-hero-image", {}, void 0, !0)
|
|
2415
2411
|
]),
|
|
2416
2412
|
_: 3
|
|
2417
2413
|
})),
|
|
@@ -2419,7 +2415,7 @@ const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82
|
|
|
2419
2415
|
e.logoSrc ? (l(), i("div", Mi, [
|
|
2420
2416
|
S(I(A), null, {
|
|
2421
2417
|
default: $(() => [
|
|
2422
|
-
|
|
2418
|
+
d(a.$slots, "product-hero-logo", {}, void 0, !0)
|
|
2423
2419
|
]),
|
|
2424
2420
|
_: 3
|
|
2425
2421
|
})
|
|
@@ -2427,7 +2423,7 @@ const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82
|
|
|
2427
2423
|
e.isCertified ? (l(), i("div", Oi, [
|
|
2428
2424
|
S(I(A), null, {
|
|
2429
2425
|
default: $(() => [
|
|
2430
|
-
|
|
2426
|
+
d(a.$slots, "product-hero-certification", {}, void 0, !0)
|
|
2431
2427
|
]),
|
|
2432
2428
|
_: 3
|
|
2433
2429
|
})
|
|
@@ -2472,10 +2468,10 @@ const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82
|
|
|
2472
2468
|
}, [
|
|
2473
2469
|
t("div", Hi, [
|
|
2474
2470
|
t("div", Ni, [
|
|
2475
|
-
|
|
2471
|
+
d(o.$slots, "pallet-jack-link")
|
|
2476
2472
|
]),
|
|
2477
2473
|
t("div", zi, [
|
|
2478
|
-
|
|
2474
|
+
d(o.$slots, "pallet-jack-video")
|
|
2479
2475
|
]),
|
|
2480
2476
|
t("div", ji, [
|
|
2481
2477
|
t("h3", Ui, n(o.headline), 1),
|
|
@@ -2500,7 +2496,7 @@ const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82
|
|
|
2500
2496
|
o.variant === "dark" ? "promo__title--dark" : ""
|
|
2501
2497
|
])
|
|
2502
2498
|
}, [
|
|
2503
|
-
|
|
2499
|
+
d(o.$slots, "promo-text")
|
|
2504
2500
|
], 2),
|
|
2505
2501
|
o.linkType === "link" ? (l(), D(C, {
|
|
2506
2502
|
key: 1,
|
|
@@ -2508,7 +2504,7 @@ const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82
|
|
|
2508
2504
|
arrow: ""
|
|
2509
2505
|
}, {
|
|
2510
2506
|
default: $(() => [
|
|
2511
|
-
|
|
2507
|
+
d(o.$slots, "promo-link")
|
|
2512
2508
|
]),
|
|
2513
2509
|
_: 3
|
|
2514
2510
|
}, 8, ["link-type"])) : m("", !0),
|
|
@@ -2517,7 +2513,7 @@ const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82
|
|
|
2517
2513
|
"link-type": o.variant === "dark" ? "secondary_dark" : (o.variant === "light", "secondary")
|
|
2518
2514
|
}, {
|
|
2519
2515
|
default: $(() => [
|
|
2520
|
-
|
|
2516
|
+
d(o.$slots, "promo-link")
|
|
2521
2517
|
]),
|
|
2522
2518
|
_: 3
|
|
2523
2519
|
}, 8, ["link-type"])) : m("", !0)
|
|
@@ -2527,11 +2523,11 @@ const Vi = /* @__PURE__ */ f(Ii, [["render", Li], ["__scopeId", "data-v-623adb82
|
|
|
2527
2523
|
}
|
|
2528
2524
|
}), Gi = /* @__PURE__ */ f(Ki, [["__scopeId", "data-v-00c0bad3"]]), Wi = {
|
|
2529
2525
|
install: (e) => {
|
|
2530
|
-
e.component("AtomButton",
|
|
2526
|
+
e.component("AtomButton", te), e.component("AtomCheckbox", Ce), e.component("AtomChip", Fe), e.component("AtomDropdown", Ke), e.component("AtomImage", A), e.component("AtomLabel", W), e.component("AtomLink", C), e.component("AtomRadioButton", ot), e.component("AtomSelect", dt), e.component("AtomSlider", yt), e.component("AtomTextarea", Lt), e.component("AtomTextField", Rt), e.component("AtomVideo", Z), e.component("MoleculeAddress", ta), e.component("MoleculeBulletList", ia), e.component("MoleculeCard", ua), e.component("MoleculeEventCard", ba), e.component("MoleculeModal", he), e.component("MoleculeTextCard", Sa), e.component("BlockFacts", Aa), e.component("BlockFeatures", Na), e.component("BlockFormScript", Ya), e.component("BlockHeadline", _o), e.component("BlockHero", Bo), e.component("BlockImage", to), e.component("BlockImageGallery", ro), e.component("BlockLogoWall", Po), e.component("BlockMicroStories", Ro), e.component("BlockPolicy", Uo), e.component("BlockProductHero", Ei), e.component("BlockPromo", el), e.component("BlockQuote", pl), e.component("BlockRichText", gl), e.component("BlockRichTextColumns", Bl), e.component("BlockTimeline", Ml), e.component("BlockCardDisplay", Zo), e.component("BlockVimeo", Nl), e.component("BlockPalletJack", Gi), e.component("BlockFrontPageHero", is), e.component("Organism404", _s), e.component("OrganismFilter", gs), e.component("OrganismFooter", Ns), e.component("OrganismHeader", hi), e.component("OrganismLanguageSwitcher", $i), e.component("OrganismPagination", Bi), e.component("OrganismSearch", Vi);
|
|
2531
2527
|
}
|
|
2532
2528
|
};
|
|
2533
2529
|
export {
|
|
2534
|
-
|
|
2530
|
+
te as AtomButton,
|
|
2535
2531
|
Ce as AtomCheckbox,
|
|
2536
2532
|
Fe as AtomChip,
|
|
2537
2533
|
Ke as AtomDropdown,
|
|
@@ -2543,7 +2539,7 @@ export {
|
|
|
2543
2539
|
yt as AtomSlider,
|
|
2544
2540
|
Rt as AtomTextField,
|
|
2545
2541
|
Lt as AtomTextarea,
|
|
2546
|
-
|
|
2542
|
+
Z as AtomVideo,
|
|
2547
2543
|
Zo as BlockCardDisplay,
|
|
2548
2544
|
Aa as BlockFacts,
|
|
2549
2545
|
Na as BlockFeatures,
|