@florid-kit/components 2.4.3 → 2.4.5
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.
- package/components/footer-simplify.d.ts +0 -1
- package/index.js +112 -113
- package/index.mjs +756 -760
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -5,16 +5,16 @@
|
|
|
5
5
|
*/
|
|
6
6
|
const G1 = globalThis, v2 = G1.ShadowRoot && (G1.ShadyCSS === void 0 || G1.ShadyCSS.nativeShadow) && "adoptedStyleSheets" in Document.prototype && "replace" in CSSStyleSheet.prototype, b2 = Symbol(), k2 = /* @__PURE__ */ new WeakMap();
|
|
7
7
|
let U2 = class {
|
|
8
|
-
constructor(t,
|
|
8
|
+
constructor(t, i, n) {
|
|
9
9
|
if (this._$cssResult$ = !0, n !== b2) throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");
|
|
10
|
-
this.cssText = t, this.t =
|
|
10
|
+
this.cssText = t, this.t = i;
|
|
11
11
|
}
|
|
12
12
|
get styleSheet() {
|
|
13
13
|
let t = this.o;
|
|
14
|
-
const
|
|
14
|
+
const i = this.t;
|
|
15
15
|
if (v2 && t === void 0) {
|
|
16
|
-
const n =
|
|
17
|
-
n && (t = k2.get(
|
|
16
|
+
const n = i !== void 0 && i.length === 1;
|
|
17
|
+
n && (t = k2.get(i)), t === void 0 && ((this.o = t = new CSSStyleSheet()).replaceSync(this.cssText), n && k2.set(i, t));
|
|
18
18
|
}
|
|
19
19
|
return t;
|
|
20
20
|
}
|
|
@@ -23,29 +23,29 @@ let U2 = class {
|
|
|
23
23
|
}
|
|
24
24
|
};
|
|
25
25
|
const t0 = (e) => new U2(typeof e == "string" ? e : e + "", void 0, b2), C = (e, ...t) => {
|
|
26
|
-
const
|
|
26
|
+
const i = e.length === 1 ? e[0] : t.reduce((n, o, s) => n + ((r) => {
|
|
27
27
|
if (r._$cssResult$ === !0) return r.cssText;
|
|
28
28
|
if (typeof r == "number") return r;
|
|
29
29
|
throw Error("Value passed to 'css' function must be a 'css' function result: " + r + ". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.");
|
|
30
|
-
})(
|
|
31
|
-
return new U2(
|
|
30
|
+
})(o) + e[s + 1], e[0]);
|
|
31
|
+
return new U2(i, e, b2);
|
|
32
32
|
}, e0 = (e, t) => {
|
|
33
|
-
if (v2) e.adoptedStyleSheets = t.map((
|
|
34
|
-
else for (const
|
|
35
|
-
const n = document.createElement("style"),
|
|
36
|
-
|
|
33
|
+
if (v2) e.adoptedStyleSheets = t.map((i) => i instanceof CSSStyleSheet ? i : i.styleSheet);
|
|
34
|
+
else for (const i of t) {
|
|
35
|
+
const n = document.createElement("style"), o = G1.litNonce;
|
|
36
|
+
o !== void 0 && n.setAttribute("nonce", o), n.textContent = i.cssText, e.appendChild(n);
|
|
37
37
|
}
|
|
38
38
|
}, Z2 = v2 ? (e) => e : (e) => e instanceof CSSStyleSheet ? ((t) => {
|
|
39
|
-
let
|
|
40
|
-
for (const n of t.cssRules)
|
|
41
|
-
return t0(
|
|
39
|
+
let i = "";
|
|
40
|
+
for (const n of t.cssRules) i += n.cssText;
|
|
41
|
+
return t0(i);
|
|
42
42
|
})(e) : e;
|
|
43
43
|
/**
|
|
44
44
|
* @license
|
|
45
45
|
* Copyright 2017 Google LLC
|
|
46
46
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
47
47
|
*/
|
|
48
|
-
const { is:
|
|
48
|
+
const { is: i0, defineProperty: o0, getOwnPropertyDescriptor: n0, getOwnPropertyNames: s0, getOwnPropertySymbols: r0, getPrototypeOf: l0 } = Object, p1 = globalThis, _2 = p1.trustedTypes, a0 = _2 ? _2.emptyScript : "", l2 = p1.reactiveElementPolyfillSupport, _1 = (e, t) => e, X1 = { toAttribute(e, t) {
|
|
49
49
|
switch (t) {
|
|
50
50
|
case Boolean:
|
|
51
51
|
e = e ? a0 : null;
|
|
@@ -56,24 +56,24 @@ const { is: o0, defineProperty: i0, getOwnPropertyDescriptor: n0, getOwnProperty
|
|
|
56
56
|
}
|
|
57
57
|
return e;
|
|
58
58
|
}, fromAttribute(e, t) {
|
|
59
|
-
let
|
|
59
|
+
let i = e;
|
|
60
60
|
switch (t) {
|
|
61
61
|
case Boolean:
|
|
62
|
-
|
|
62
|
+
i = e !== null;
|
|
63
63
|
break;
|
|
64
64
|
case Number:
|
|
65
|
-
|
|
65
|
+
i = e === null ? null : Number(e);
|
|
66
66
|
break;
|
|
67
67
|
case Object:
|
|
68
68
|
case Array:
|
|
69
69
|
try {
|
|
70
|
-
|
|
70
|
+
i = JSON.parse(e);
|
|
71
71
|
} catch {
|
|
72
|
-
|
|
72
|
+
i = null;
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
|
-
return
|
|
76
|
-
} }, w2 = (e, t) => !
|
|
75
|
+
return i;
|
|
76
|
+
} }, w2 = (e, t) => !i0(e, t), S2 = { attribute: !0, type: String, converter: X1, reflect: !1, useDefault: !1, hasChanged: w2 };
|
|
77
77
|
Symbol.metadata ?? (Symbol.metadata = Symbol("metadata")), p1.litPropertyMetadata ?? (p1.litPropertyMetadata = /* @__PURE__ */ new WeakMap());
|
|
78
78
|
let $1 = class extends HTMLElement {
|
|
79
79
|
static addInitializer(t) {
|
|
@@ -82,20 +82,20 @@ let $1 = class extends HTMLElement {
|
|
|
82
82
|
static get observedAttributes() {
|
|
83
83
|
return this.finalize(), this._$Eh && [...this._$Eh.keys()];
|
|
84
84
|
}
|
|
85
|
-
static createProperty(t,
|
|
86
|
-
if (
|
|
87
|
-
const n = Symbol(),
|
|
88
|
-
|
|
85
|
+
static createProperty(t, i = S2) {
|
|
86
|
+
if (i.state && (i.attribute = !1), this._$Ei(), this.prototype.hasOwnProperty(t) && ((i = Object.create(i)).wrapped = !0), this.elementProperties.set(t, i), !i.noAccessor) {
|
|
87
|
+
const n = Symbol(), o = this.getPropertyDescriptor(t, n, i);
|
|
88
|
+
o !== void 0 && o0(this.prototype, t, o);
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
|
-
static getPropertyDescriptor(t,
|
|
92
|
-
const { get:
|
|
93
|
-
return this[
|
|
91
|
+
static getPropertyDescriptor(t, i, n) {
|
|
92
|
+
const { get: o, set: s } = n0(this.prototype, t) ?? { get() {
|
|
93
|
+
return this[i];
|
|
94
94
|
}, set(r) {
|
|
95
|
-
this[
|
|
95
|
+
this[i] = r;
|
|
96
96
|
} };
|
|
97
|
-
return { get:
|
|
98
|
-
const c =
|
|
97
|
+
return { get: o, set(r) {
|
|
98
|
+
const c = o == null ? void 0 : o.call(this);
|
|
99
99
|
s == null || s.call(this, r), this.requestUpdate(t, c, n);
|
|
100
100
|
}, configurable: !0, enumerable: !0 };
|
|
101
101
|
}
|
|
@@ -110,31 +110,31 @@ let $1 = class extends HTMLElement {
|
|
|
110
110
|
static finalize() {
|
|
111
111
|
if (this.hasOwnProperty(_1("finalized"))) return;
|
|
112
112
|
if (this.finalized = !0, this._$Ei(), this.hasOwnProperty(_1("properties"))) {
|
|
113
|
-
const
|
|
114
|
-
for (const
|
|
113
|
+
const i = this.properties, n = [...s0(i), ...r0(i)];
|
|
114
|
+
for (const o of n) this.createProperty(o, i[o]);
|
|
115
115
|
}
|
|
116
116
|
const t = this[Symbol.metadata];
|
|
117
117
|
if (t !== null) {
|
|
118
|
-
const
|
|
119
|
-
if (
|
|
118
|
+
const i = litPropertyMetadata.get(t);
|
|
119
|
+
if (i !== void 0) for (const [n, o] of i) this.elementProperties.set(n, o);
|
|
120
120
|
}
|
|
121
121
|
this._$Eh = /* @__PURE__ */ new Map();
|
|
122
|
-
for (const [
|
|
123
|
-
const
|
|
124
|
-
|
|
122
|
+
for (const [i, n] of this.elementProperties) {
|
|
123
|
+
const o = this._$Eu(i, n);
|
|
124
|
+
o !== void 0 && this._$Eh.set(o, i);
|
|
125
125
|
}
|
|
126
126
|
this.elementStyles = this.finalizeStyles(this.styles);
|
|
127
127
|
}
|
|
128
128
|
static finalizeStyles(t) {
|
|
129
|
-
const
|
|
129
|
+
const i = [];
|
|
130
130
|
if (Array.isArray(t)) {
|
|
131
131
|
const n = new Set(t.flat(1 / 0).reverse());
|
|
132
|
-
for (const
|
|
133
|
-
} else t !== void 0 &&
|
|
134
|
-
return
|
|
132
|
+
for (const o of n) i.unshift(Z2(o));
|
|
133
|
+
} else t !== void 0 && i.push(Z2(t));
|
|
134
|
+
return i;
|
|
135
135
|
}
|
|
136
|
-
static _$Eu(t,
|
|
137
|
-
const n =
|
|
136
|
+
static _$Eu(t, i) {
|
|
137
|
+
const n = i.attribute;
|
|
138
138
|
return n === !1 ? void 0 : typeof n == "string" ? n : typeof t == "string" ? t.toLowerCase() : void 0;
|
|
139
139
|
}
|
|
140
140
|
constructor() {
|
|
@@ -142,19 +142,19 @@ let $1 = class extends HTMLElement {
|
|
|
142
142
|
}
|
|
143
143
|
_$Ev() {
|
|
144
144
|
var t;
|
|
145
|
-
this._$ES = new Promise((
|
|
145
|
+
this._$ES = new Promise((i) => this.enableUpdating = i), this._$AL = /* @__PURE__ */ new Map(), this._$E_(), this.requestUpdate(), (t = this.constructor.l) == null || t.forEach((i) => i(this));
|
|
146
146
|
}
|
|
147
147
|
addController(t) {
|
|
148
|
-
var
|
|
149
|
-
(this._$EO ?? (this._$EO = /* @__PURE__ */ new Set())).add(t), this.renderRoot !== void 0 && this.isConnected && ((
|
|
148
|
+
var i;
|
|
149
|
+
(this._$EO ?? (this._$EO = /* @__PURE__ */ new Set())).add(t), this.renderRoot !== void 0 && this.isConnected && ((i = t.hostConnected) == null || i.call(t));
|
|
150
150
|
}
|
|
151
151
|
removeController(t) {
|
|
152
|
-
var
|
|
153
|
-
(
|
|
152
|
+
var i;
|
|
153
|
+
(i = this._$EO) == null || i.delete(t);
|
|
154
154
|
}
|
|
155
155
|
_$E_() {
|
|
156
|
-
const t = /* @__PURE__ */ new Map(),
|
|
157
|
-
for (const n of
|
|
156
|
+
const t = /* @__PURE__ */ new Map(), i = this.constructor.elementProperties;
|
|
157
|
+
for (const n of i.keys()) this.hasOwnProperty(n) && (t.set(n, this[n]), delete this[n]);
|
|
158
158
|
t.size > 0 && (this._$Ep = t);
|
|
159
159
|
}
|
|
160
160
|
createRenderRoot() {
|
|
@@ -163,57 +163,57 @@ let $1 = class extends HTMLElement {
|
|
|
163
163
|
}
|
|
164
164
|
connectedCallback() {
|
|
165
165
|
var t;
|
|
166
|
-
this.renderRoot ?? (this.renderRoot = this.createRenderRoot()), this.enableUpdating(!0), (t = this._$EO) == null || t.forEach((
|
|
166
|
+
this.renderRoot ?? (this.renderRoot = this.createRenderRoot()), this.enableUpdating(!0), (t = this._$EO) == null || t.forEach((i) => {
|
|
167
167
|
var n;
|
|
168
|
-
return (n =
|
|
168
|
+
return (n = i.hostConnected) == null ? void 0 : n.call(i);
|
|
169
169
|
});
|
|
170
170
|
}
|
|
171
171
|
enableUpdating(t) {
|
|
172
172
|
}
|
|
173
173
|
disconnectedCallback() {
|
|
174
174
|
var t;
|
|
175
|
-
(t = this._$EO) == null || t.forEach((
|
|
175
|
+
(t = this._$EO) == null || t.forEach((i) => {
|
|
176
176
|
var n;
|
|
177
|
-
return (n =
|
|
177
|
+
return (n = i.hostDisconnected) == null ? void 0 : n.call(i);
|
|
178
178
|
});
|
|
179
179
|
}
|
|
180
|
-
attributeChangedCallback(t,
|
|
180
|
+
attributeChangedCallback(t, i, n) {
|
|
181
181
|
this._$AK(t, n);
|
|
182
182
|
}
|
|
183
|
-
_$ET(t,
|
|
183
|
+
_$ET(t, i) {
|
|
184
184
|
var s;
|
|
185
|
-
const n = this.constructor.elementProperties.get(t),
|
|
186
|
-
if (
|
|
187
|
-
const r = (((s = n.converter) == null ? void 0 : s.toAttribute) !== void 0 ? n.converter : X1).toAttribute(
|
|
188
|
-
this._$Em = t, r == null ? this.removeAttribute(
|
|
185
|
+
const n = this.constructor.elementProperties.get(t), o = this.constructor._$Eu(t, n);
|
|
186
|
+
if (o !== void 0 && n.reflect === !0) {
|
|
187
|
+
const r = (((s = n.converter) == null ? void 0 : s.toAttribute) !== void 0 ? n.converter : X1).toAttribute(i, n.type);
|
|
188
|
+
this._$Em = t, r == null ? this.removeAttribute(o) : this.setAttribute(o, r), this._$Em = null;
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
|
-
_$AK(t,
|
|
191
|
+
_$AK(t, i) {
|
|
192
192
|
var s, r;
|
|
193
|
-
const n = this.constructor,
|
|
194
|
-
if (
|
|
195
|
-
const c = n.getPropertyOptions(
|
|
196
|
-
this._$Em =
|
|
193
|
+
const n = this.constructor, o = n._$Eh.get(t);
|
|
194
|
+
if (o !== void 0 && this._$Em !== o) {
|
|
195
|
+
const c = n.getPropertyOptions(o), h = typeof c.converter == "function" ? { fromAttribute: c.converter } : ((s = c.converter) == null ? void 0 : s.fromAttribute) !== void 0 ? c.converter : X1;
|
|
196
|
+
this._$Em = o, this[o] = h.fromAttribute(i, c.type) ?? ((r = this._$Ej) == null ? void 0 : r.get(o)) ?? null, this._$Em = null;
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
|
-
requestUpdate(t,
|
|
200
|
-
var
|
|
199
|
+
requestUpdate(t, i, n) {
|
|
200
|
+
var o;
|
|
201
201
|
if (t !== void 0) {
|
|
202
202
|
const s = this.constructor, r = this[t];
|
|
203
|
-
if (n ?? (n = s.getPropertyOptions(t)), !((n.hasChanged ?? w2)(r,
|
|
204
|
-
this.C(t,
|
|
203
|
+
if (n ?? (n = s.getPropertyOptions(t)), !((n.hasChanged ?? w2)(r, i) || n.useDefault && n.reflect && r === ((o = this._$Ej) == null ? void 0 : o.get(t)) && !this.hasAttribute(s._$Eu(t, n)))) return;
|
|
204
|
+
this.C(t, i, n);
|
|
205
205
|
}
|
|
206
206
|
this.isUpdatePending === !1 && (this._$ES = this._$EP());
|
|
207
207
|
}
|
|
208
|
-
C(t,
|
|
209
|
-
n && !(this._$Ej ?? (this._$Ej = /* @__PURE__ */ new Map())).has(t) && (this._$Ej.set(t, r ??
|
|
208
|
+
C(t, i, { useDefault: n, reflect: o, wrapped: s }, r) {
|
|
209
|
+
n && !(this._$Ej ?? (this._$Ej = /* @__PURE__ */ new Map())).has(t) && (this._$Ej.set(t, r ?? i ?? this[t]), s !== !0 || r !== void 0) || (this._$AL.has(t) || (this.hasUpdated || n || (i = void 0), this._$AL.set(t, i)), o === !0 && this._$Em !== t && (this._$Eq ?? (this._$Eq = /* @__PURE__ */ new Set())).add(t));
|
|
210
210
|
}
|
|
211
211
|
async _$EP() {
|
|
212
212
|
this.isUpdatePending = !0;
|
|
213
213
|
try {
|
|
214
214
|
await this._$ES;
|
|
215
|
-
} catch (
|
|
216
|
-
Promise.reject(
|
|
215
|
+
} catch (i) {
|
|
216
|
+
Promise.reject(i);
|
|
217
217
|
}
|
|
218
218
|
const t = this.scheduleUpdate();
|
|
219
219
|
return t != null && await t, !this.isUpdatePending;
|
|
@@ -229,31 +229,31 @@ let $1 = class extends HTMLElement {
|
|
|
229
229
|
for (const [s, r] of this._$Ep) this[s] = r;
|
|
230
230
|
this._$Ep = void 0;
|
|
231
231
|
}
|
|
232
|
-
const
|
|
233
|
-
if (
|
|
232
|
+
const o = this.constructor.elementProperties;
|
|
233
|
+
if (o.size > 0) for (const [s, r] of o) {
|
|
234
234
|
const { wrapped: c } = r, h = this[s];
|
|
235
235
|
c !== !0 || this._$AL.has(s) || h === void 0 || this.C(s, void 0, r, h);
|
|
236
236
|
}
|
|
237
237
|
}
|
|
238
238
|
let t = !1;
|
|
239
|
-
const
|
|
239
|
+
const i = this._$AL;
|
|
240
240
|
try {
|
|
241
|
-
t = this.shouldUpdate(
|
|
241
|
+
t = this.shouldUpdate(i), t ? (this.willUpdate(i), (n = this._$EO) == null || n.forEach((o) => {
|
|
242
242
|
var s;
|
|
243
|
-
return (s =
|
|
244
|
-
}), this.update(
|
|
245
|
-
} catch (
|
|
246
|
-
throw t = !1, this._$EM(),
|
|
243
|
+
return (s = o.hostUpdate) == null ? void 0 : s.call(o);
|
|
244
|
+
}), this.update(i)) : this._$EM();
|
|
245
|
+
} catch (o) {
|
|
246
|
+
throw t = !1, this._$EM(), o;
|
|
247
247
|
}
|
|
248
|
-
t && this._$AE(
|
|
248
|
+
t && this._$AE(i);
|
|
249
249
|
}
|
|
250
250
|
willUpdate(t) {
|
|
251
251
|
}
|
|
252
252
|
_$AE(t) {
|
|
253
|
-
var
|
|
254
|
-
(
|
|
255
|
-
var
|
|
256
|
-
return (
|
|
253
|
+
var i;
|
|
254
|
+
(i = this._$EO) == null || i.forEach((n) => {
|
|
255
|
+
var o;
|
|
256
|
+
return (o = n.hostUpdated) == null ? void 0 : o.call(n);
|
|
257
257
|
}), this.hasUpdated || (this.hasUpdated = !0, this.firstUpdated(t)), this.updated(t);
|
|
258
258
|
}
|
|
259
259
|
_$EM() {
|
|
@@ -269,7 +269,7 @@ let $1 = class extends HTMLElement {
|
|
|
269
269
|
return !0;
|
|
270
270
|
}
|
|
271
271
|
update(t) {
|
|
272
|
-
this._$Eq && (this._$Eq = this._$Eq.forEach((
|
|
272
|
+
this._$Eq && (this._$Eq = this._$Eq.forEach((i) => this._$ET(i, this[i]))), this._$EM();
|
|
273
273
|
}
|
|
274
274
|
updated(t) {
|
|
275
275
|
}
|
|
@@ -282,72 +282,72 @@ $1.elementStyles = [], $1.shadowRootOptions = { mode: "open" }, $1[_1("elementPr
|
|
|
282
282
|
* Copyright 2017 Google LLC
|
|
283
283
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
284
284
|
*/
|
|
285
|
-
const S1 = globalThis, Y1 = S1.trustedTypes, F2 = Y1 ? Y1.createPolicy("lit-html", { createHTML: (e) => e }) : void 0, q2 = "$lit$", d1 = `lit$${Math.random().toFixed(9).slice(2)}$`, N2 = "?" + d1, c0 = `<${N2}>`,
|
|
286
|
-
\f\r]`, Z1 = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, O2 = /-->/g, A2 = />/g,
|
|
287
|
-
\f\r"'\`<>=]|("|')|))|$)`, "g"), I2 = /'/g, P2 = /"/g, K2 = /^(?:script|style|textarea|title)$/i, d0 = (e) => (t, ...
|
|
285
|
+
const S1 = globalThis, Y1 = S1.trustedTypes, F2 = Y1 ? Y1.createPolicy("lit-html", { createHTML: (e) => e }) : void 0, q2 = "$lit$", d1 = `lit$${Math.random().toFixed(9).slice(2)}$`, N2 = "?" + d1, c0 = `<${N2}>`, b1 = document, O1 = () => b1.createComment(""), A1 = (e) => e === null || typeof e != "object" && typeof e != "function", m2 = Array.isArray, h0 = (e) => m2(e) || typeof (e == null ? void 0 : e[Symbol.iterator]) == "function", a2 = `[
|
|
286
|
+
\f\r]`, Z1 = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, O2 = /-->/g, A2 = />/g, g1 = RegExp(`>|${a2}(?:([^\\s"'>=/]+)(${a2}*=${a2}*(?:[^
|
|
287
|
+
\f\r"'\`<>=]|("|')|))|$)`, "g"), I2 = /'/g, P2 = /"/g, K2 = /^(?:script|style|textarea|title)$/i, d0 = (e) => (t, ...i) => ({ _$litType$: e, strings: t, values: i }), a = d0(1), A = Symbol.for("lit-noChange"), d = Symbol.for("lit-nothing"), z2 = /* @__PURE__ */ new WeakMap(), f1 = b1.createTreeWalker(b1, 129);
|
|
288
288
|
function W2(e, t) {
|
|
289
289
|
if (!m2(e) || !e.hasOwnProperty("raw")) throw Error("invalid template strings array");
|
|
290
290
|
return F2 !== void 0 ? F2.createHTML(t) : t;
|
|
291
291
|
}
|
|
292
292
|
const p0 = (e, t) => {
|
|
293
|
-
const
|
|
294
|
-
let
|
|
295
|
-
for (let c = 0; c <
|
|
293
|
+
const i = e.length - 1, n = [];
|
|
294
|
+
let o, s = t === 2 ? "<svg>" : t === 3 ? "<math>" : "", r = Z1;
|
|
295
|
+
for (let c = 0; c < i; c++) {
|
|
296
296
|
const h = e[c];
|
|
297
297
|
let f, w, v = -1, i1 = 0;
|
|
298
|
-
for (; i1 < h.length && (r.lastIndex = i1, w = r.exec(h), w !== null); ) i1 = r.lastIndex, r === Z1 ? w[1] === "!--" ? r = O2 : w[1] !== void 0 ? r = A2 : w[2] !== void 0 ? (K2.test(w[2]) && (
|
|
299
|
-
const h1 = r ===
|
|
298
|
+
for (; i1 < h.length && (r.lastIndex = i1, w = r.exec(h), w !== null); ) i1 = r.lastIndex, r === Z1 ? w[1] === "!--" ? r = O2 : w[1] !== void 0 ? r = A2 : w[2] !== void 0 ? (K2.test(w[2]) && (o = RegExp("</" + w[2], "g")), r = g1) : w[3] !== void 0 && (r = g1) : r === g1 ? w[0] === ">" ? (r = o ?? Z1, v = -1) : w[1] === void 0 ? v = -2 : (v = r.lastIndex - w[2].length, f = w[1], r = w[3] === void 0 ? g1 : w[3] === '"' ? P2 : I2) : r === P2 || r === I2 ? r = g1 : r === O2 || r === A2 ? r = Z1 : (r = g1, o = void 0);
|
|
299
|
+
const h1 = r === g1 && e[c + 1].startsWith("/>") ? " " : "";
|
|
300
300
|
s += r === Z1 ? h + c0 : v >= 0 ? (n.push(f), h.slice(0, v) + q2 + h.slice(v) + d1 + h1) : h + d1 + (v === -2 ? c : h1);
|
|
301
301
|
}
|
|
302
|
-
return [W2(e, s + (e[
|
|
302
|
+
return [W2(e, s + (e[i] || "<?>") + (t === 2 ? "</svg>" : t === 3 ? "</math>" : "")), n];
|
|
303
303
|
};
|
|
304
304
|
class I1 {
|
|
305
|
-
constructor({ strings: t, _$litType$:
|
|
306
|
-
let
|
|
305
|
+
constructor({ strings: t, _$litType$: i }, n) {
|
|
306
|
+
let o;
|
|
307
307
|
this.parts = [];
|
|
308
308
|
let s = 0, r = 0;
|
|
309
|
-
const c = t.length - 1, h = this.parts, [f, w] = p0(t,
|
|
310
|
-
if (this.el = I1.createElement(f, n),
|
|
309
|
+
const c = t.length - 1, h = this.parts, [f, w] = p0(t, i);
|
|
310
|
+
if (this.el = I1.createElement(f, n), f1.currentNode = this.el.content, i === 2 || i === 3) {
|
|
311
311
|
const v = this.el.content.firstChild;
|
|
312
312
|
v.replaceWith(...v.childNodes);
|
|
313
313
|
}
|
|
314
|
-
for (; (
|
|
315
|
-
if (
|
|
316
|
-
if (
|
|
317
|
-
const i1 = w[r++], h1 =
|
|
318
|
-
h.push({ type: 1, index: s, name: W1[2], strings: h1, ctor: W1[1] === "." ? u0 : W1[1] === "?" ? g0 : W1[1] === "@" ? f0 : Q1 }),
|
|
319
|
-
} else v.startsWith(d1) && (h.push({ type: 6, index: s }),
|
|
320
|
-
if (K2.test(
|
|
321
|
-
const v =
|
|
314
|
+
for (; (o = f1.nextNode()) !== null && h.length < c; ) {
|
|
315
|
+
if (o.nodeType === 1) {
|
|
316
|
+
if (o.hasAttributes()) for (const v of o.getAttributeNames()) if (v.endsWith(q2)) {
|
|
317
|
+
const i1 = w[r++], h1 = o.getAttribute(v).split(d1), W1 = /([.?@])?(.*)/.exec(i1);
|
|
318
|
+
h.push({ type: 1, index: s, name: W1[2], strings: h1, ctor: W1[1] === "." ? u0 : W1[1] === "?" ? g0 : W1[1] === "@" ? f0 : Q1 }), o.removeAttribute(v);
|
|
319
|
+
} else v.startsWith(d1) && (h.push({ type: 6, index: s }), o.removeAttribute(v));
|
|
320
|
+
if (K2.test(o.tagName)) {
|
|
321
|
+
const v = o.textContent.split(d1), i1 = v.length - 1;
|
|
322
322
|
if (i1 > 0) {
|
|
323
|
-
|
|
324
|
-
for (let h1 = 0; h1 < i1; h1++)
|
|
325
|
-
|
|
323
|
+
o.textContent = Y1 ? Y1.emptyScript : "";
|
|
324
|
+
for (let h1 = 0; h1 < i1; h1++) o.append(v[h1], O1()), f1.nextNode(), h.push({ type: 2, index: ++s });
|
|
325
|
+
o.append(v[i1], O1());
|
|
326
326
|
}
|
|
327
327
|
}
|
|
328
|
-
} else if (
|
|
328
|
+
} else if (o.nodeType === 8) if (o.data === N2) h.push({ type: 2, index: s });
|
|
329
329
|
else {
|
|
330
330
|
let v = -1;
|
|
331
|
-
for (; (v =
|
|
331
|
+
for (; (v = o.data.indexOf(d1, v + 1)) !== -1; ) h.push({ type: 7, index: s }), v += d1.length - 1;
|
|
332
332
|
}
|
|
333
333
|
s++;
|
|
334
334
|
}
|
|
335
335
|
}
|
|
336
|
-
static createElement(t,
|
|
337
|
-
const n =
|
|
336
|
+
static createElement(t, i) {
|
|
337
|
+
const n = b1.createElement("template");
|
|
338
338
|
return n.innerHTML = t, n;
|
|
339
339
|
}
|
|
340
340
|
}
|
|
341
|
-
function B1(e, t,
|
|
341
|
+
function B1(e, t, i = e, n) {
|
|
342
342
|
var r, c;
|
|
343
343
|
if (t === A) return t;
|
|
344
|
-
let
|
|
344
|
+
let o = n !== void 0 ? (r = i._$Co) == null ? void 0 : r[n] : i._$Cl;
|
|
345
345
|
const s = A1(t) ? void 0 : t._$litDirective$;
|
|
346
|
-
return (
|
|
346
|
+
return (o == null ? void 0 : o.constructor) !== s && ((c = o == null ? void 0 : o._$AO) == null || c.call(o, !1), s === void 0 ? o = void 0 : (o = new s(e), o._$AT(e, i, n)), n !== void 0 ? (i._$Co ?? (i._$Co = []))[n] = o : i._$Cl = o), o !== void 0 && (t = B1(e, o._$AS(e, t.values), o, n)), t;
|
|
347
347
|
}
|
|
348
348
|
class C0 {
|
|
349
|
-
constructor(t,
|
|
350
|
-
this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM =
|
|
349
|
+
constructor(t, i) {
|
|
350
|
+
this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM = i;
|
|
351
351
|
}
|
|
352
352
|
get parentNode() {
|
|
353
353
|
return this._$AM.parentNode;
|
|
@@ -356,21 +356,21 @@ class C0 {
|
|
|
356
356
|
return this._$AM._$AU;
|
|
357
357
|
}
|
|
358
358
|
u(t) {
|
|
359
|
-
const { el: { content:
|
|
360
|
-
|
|
361
|
-
let s =
|
|
359
|
+
const { el: { content: i }, parts: n } = this._$AD, o = ((t == null ? void 0 : t.creationScope) ?? b1).importNode(i, !0);
|
|
360
|
+
f1.currentNode = o;
|
|
361
|
+
let s = f1.nextNode(), r = 0, c = 0, h = n[0];
|
|
362
362
|
for (; h !== void 0; ) {
|
|
363
363
|
if (r === h.index) {
|
|
364
364
|
let f;
|
|
365
365
|
h.type === 2 ? f = new U1(s, s.nextSibling, this, t) : h.type === 1 ? f = new h.ctor(s, h.name, h.strings, this, t) : h.type === 6 && (f = new v0(s, this, t)), this._$AV.push(f), h = n[++c];
|
|
366
366
|
}
|
|
367
|
-
r !== (h == null ? void 0 : h.index) && (s =
|
|
367
|
+
r !== (h == null ? void 0 : h.index) && (s = f1.nextNode(), r++);
|
|
368
368
|
}
|
|
369
|
-
return
|
|
369
|
+
return f1.currentNode = b1, o;
|
|
370
370
|
}
|
|
371
371
|
p(t) {
|
|
372
|
-
let
|
|
373
|
-
for (const n of this._$AV) n !== void 0 && (n.strings !== void 0 ? (n._$AI(t, n,
|
|
372
|
+
let i = 0;
|
|
373
|
+
for (const n of this._$AV) n !== void 0 && (n.strings !== void 0 ? (n._$AI(t, n, i), i += n.strings.length - 2) : n._$AI(t[i])), i++;
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
376
|
class U1 {
|
|
@@ -378,13 +378,13 @@ class U1 {
|
|
|
378
378
|
var t;
|
|
379
379
|
return ((t = this._$AM) == null ? void 0 : t._$AU) ?? this._$Cv;
|
|
380
380
|
}
|
|
381
|
-
constructor(t,
|
|
382
|
-
this.type = 2, this._$AH = d, this._$AN = void 0, this._$AA = t, this._$AB =
|
|
381
|
+
constructor(t, i, n, o) {
|
|
382
|
+
this.type = 2, this._$AH = d, this._$AN = void 0, this._$AA = t, this._$AB = i, this._$AM = n, this.options = o, this._$Cv = (o == null ? void 0 : o.isConnected) ?? !0;
|
|
383
383
|
}
|
|
384
384
|
get parentNode() {
|
|
385
385
|
let t = this._$AA.parentNode;
|
|
386
|
-
const
|
|
387
|
-
return
|
|
386
|
+
const i = this._$AM;
|
|
387
|
+
return i !== void 0 && (t == null ? void 0 : t.nodeType) === 11 && (t = i.parentNode), t;
|
|
388
388
|
}
|
|
389
389
|
get startNode() {
|
|
390
390
|
return this._$AA;
|
|
@@ -392,8 +392,8 @@ class U1 {
|
|
|
392
392
|
get endNode() {
|
|
393
393
|
return this._$AB;
|
|
394
394
|
}
|
|
395
|
-
_$AI(t,
|
|
396
|
-
t = B1(this, t,
|
|
395
|
+
_$AI(t, i = this) {
|
|
396
|
+
t = B1(this, t, i), A1(t) ? t === d || t == null || t === "" ? (this._$AH !== d && this._$AR(), this._$AH = d) : t !== this._$AH && t !== A && this._(t) : t._$litType$ !== void 0 ? this.$(t) : t.nodeType !== void 0 ? this.T(t) : h0(t) ? this.k(t) : this._(t);
|
|
397
397
|
}
|
|
398
398
|
O(t) {
|
|
399
399
|
return this._$AA.parentNode.insertBefore(t, this._$AB);
|
|
@@ -402,38 +402,38 @@ class U1 {
|
|
|
402
402
|
this._$AH !== t && (this._$AR(), this._$AH = this.O(t));
|
|
403
403
|
}
|
|
404
404
|
_(t) {
|
|
405
|
-
this._$AH !== d && A1(this._$AH) ? this._$AA.nextSibling.data = t : this.T(
|
|
405
|
+
this._$AH !== d && A1(this._$AH) ? this._$AA.nextSibling.data = t : this.T(b1.createTextNode(t)), this._$AH = t;
|
|
406
406
|
}
|
|
407
407
|
$(t) {
|
|
408
408
|
var s;
|
|
409
|
-
const { values:
|
|
410
|
-
if (((s = this._$AH) == null ? void 0 : s._$AD) ===
|
|
409
|
+
const { values: i, _$litType$: n } = t, o = typeof n == "number" ? this._$AC(t) : (n.el === void 0 && (n.el = I1.createElement(W2(n.h, n.h[0]), this.options)), n);
|
|
410
|
+
if (((s = this._$AH) == null ? void 0 : s._$AD) === o) this._$AH.p(i);
|
|
411
411
|
else {
|
|
412
|
-
const r = new C0(
|
|
413
|
-
r.p(
|
|
412
|
+
const r = new C0(o, this), c = r.u(this.options);
|
|
413
|
+
r.p(i), this.T(c), this._$AH = r;
|
|
414
414
|
}
|
|
415
415
|
}
|
|
416
416
|
_$AC(t) {
|
|
417
|
-
let
|
|
418
|
-
return
|
|
417
|
+
let i = z2.get(t.strings);
|
|
418
|
+
return i === void 0 && z2.set(t.strings, i = new I1(t)), i;
|
|
419
419
|
}
|
|
420
420
|
k(t) {
|
|
421
421
|
m2(this._$AH) || (this._$AH = [], this._$AR());
|
|
422
|
-
const
|
|
423
|
-
let n,
|
|
424
|
-
for (const s of t)
|
|
425
|
-
|
|
422
|
+
const i = this._$AH;
|
|
423
|
+
let n, o = 0;
|
|
424
|
+
for (const s of t) o === i.length ? i.push(n = new U1(this.O(O1()), this.O(O1()), this, this.options)) : n = i[o], n._$AI(s), o++;
|
|
425
|
+
o < i.length && (this._$AR(n && n._$AB.nextSibling, o), i.length = o);
|
|
426
426
|
}
|
|
427
|
-
_$AR(t = this._$AA.nextSibling,
|
|
427
|
+
_$AR(t = this._$AA.nextSibling, i) {
|
|
428
428
|
var n;
|
|
429
|
-
for ((n = this._$AP) == null ? void 0 : n.call(this, !1, !0,
|
|
430
|
-
const
|
|
431
|
-
t.remove(), t =
|
|
429
|
+
for ((n = this._$AP) == null ? void 0 : n.call(this, !1, !0, i); t && t !== this._$AB; ) {
|
|
430
|
+
const o = t.nextSibling;
|
|
431
|
+
t.remove(), t = o;
|
|
432
432
|
}
|
|
433
433
|
}
|
|
434
434
|
setConnected(t) {
|
|
435
|
-
var
|
|
436
|
-
this._$AM === void 0 && (this._$Cv = t, (
|
|
435
|
+
var i;
|
|
436
|
+
this._$AM === void 0 && (this._$Cv = t, (i = this._$AP) == null || i.call(this, t));
|
|
437
437
|
}
|
|
438
438
|
}
|
|
439
439
|
class Q1 {
|
|
@@ -443,19 +443,19 @@ class Q1 {
|
|
|
443
443
|
get _$AU() {
|
|
444
444
|
return this._$AM._$AU;
|
|
445
445
|
}
|
|
446
|
-
constructor(t,
|
|
447
|
-
this.type = 1, this._$AH = d, this._$AN = void 0, this.element = t, this.name =
|
|
446
|
+
constructor(t, i, n, o, s) {
|
|
447
|
+
this.type = 1, this._$AH = d, this._$AN = void 0, this.element = t, this.name = i, this._$AM = o, this.options = s, n.length > 2 || n[0] !== "" || n[1] !== "" ? (this._$AH = Array(n.length - 1).fill(new String()), this.strings = n) : this._$AH = d;
|
|
448
448
|
}
|
|
449
|
-
_$AI(t,
|
|
449
|
+
_$AI(t, i = this, n, o) {
|
|
450
450
|
const s = this.strings;
|
|
451
451
|
let r = !1;
|
|
452
|
-
if (s === void 0) t = B1(this, t,
|
|
452
|
+
if (s === void 0) t = B1(this, t, i, 0), r = !A1(t) || t !== this._$AH && t !== A, r && (this._$AH = t);
|
|
453
453
|
else {
|
|
454
454
|
const c = t;
|
|
455
455
|
let h, f;
|
|
456
|
-
for (t = s[0], h = 0; h < s.length - 1; h++) f = B1(this, c[n + h],
|
|
456
|
+
for (t = s[0], h = 0; h < s.length - 1; h++) f = B1(this, c[n + h], i, h), f === A && (f = this._$AH[h]), r || (r = !A1(f) || f !== this._$AH[h]), f === d ? t = d : t !== d && (t += (f ?? "") + s[h + 1]), this._$AH[h] = f;
|
|
457
457
|
}
|
|
458
|
-
r && !
|
|
458
|
+
r && !o && this.j(t);
|
|
459
459
|
}
|
|
460
460
|
j(t) {
|
|
461
461
|
t === d ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t ?? "");
|
|
@@ -478,22 +478,22 @@ class g0 extends Q1 {
|
|
|
478
478
|
}
|
|
479
479
|
}
|
|
480
480
|
class f0 extends Q1 {
|
|
481
|
-
constructor(t,
|
|
482
|
-
super(t,
|
|
481
|
+
constructor(t, i, n, o, s) {
|
|
482
|
+
super(t, i, n, o, s), this.type = 5;
|
|
483
483
|
}
|
|
484
|
-
_$AI(t,
|
|
485
|
-
if ((t = B1(this, t,
|
|
486
|
-
const n = this._$AH,
|
|
487
|
-
|
|
484
|
+
_$AI(t, i = this) {
|
|
485
|
+
if ((t = B1(this, t, i, 0) ?? d) === A) return;
|
|
486
|
+
const n = this._$AH, o = t === d && n !== d || t.capture !== n.capture || t.once !== n.once || t.passive !== n.passive, s = t !== d && (n === d || o);
|
|
487
|
+
o && this.element.removeEventListener(this.name, this, n), s && this.element.addEventListener(this.name, this, t), this._$AH = t;
|
|
488
488
|
}
|
|
489
489
|
handleEvent(t) {
|
|
490
|
-
var
|
|
491
|
-
typeof this._$AH == "function" ? this._$AH.call(((
|
|
490
|
+
var i;
|
|
491
|
+
typeof this._$AH == "function" ? this._$AH.call(((i = this.options) == null ? void 0 : i.host) ?? this.element, t) : this._$AH.handleEvent(t);
|
|
492
492
|
}
|
|
493
493
|
}
|
|
494
494
|
class v0 {
|
|
495
|
-
constructor(t,
|
|
496
|
-
this.element = t, this.type = 6, this._$AN = void 0, this._$AM =
|
|
495
|
+
constructor(t, i, n) {
|
|
496
|
+
this.element = t, this.type = 6, this._$AN = void 0, this._$AM = i, this.options = n;
|
|
497
497
|
}
|
|
498
498
|
get _$AU() {
|
|
499
499
|
return this._$AM._$AU;
|
|
@@ -504,33 +504,33 @@ class v0 {
|
|
|
504
504
|
}
|
|
505
505
|
const c2 = S1.litHtmlPolyfillSupport;
|
|
506
506
|
c2 == null || c2(I1, U1), (S1.litHtmlVersions ?? (S1.litHtmlVersions = [])).push("3.3.0");
|
|
507
|
-
const b0 = (e, t,
|
|
508
|
-
const n = (
|
|
509
|
-
let
|
|
510
|
-
if (
|
|
511
|
-
const s = (
|
|
512
|
-
n._$litPart$ =
|
|
513
|
-
}
|
|
514
|
-
return
|
|
507
|
+
const b0 = (e, t, i) => {
|
|
508
|
+
const n = (i == null ? void 0 : i.renderBefore) ?? t;
|
|
509
|
+
let o = n._$litPart$;
|
|
510
|
+
if (o === void 0) {
|
|
511
|
+
const s = (i == null ? void 0 : i.renderBefore) ?? null;
|
|
512
|
+
n._$litPart$ = o = new U1(t.insertBefore(O1(), s), s, void 0, i ?? {});
|
|
513
|
+
}
|
|
514
|
+
return o._$AI(e), o;
|
|
515
515
|
};
|
|
516
516
|
/**
|
|
517
517
|
* @license
|
|
518
518
|
* Copyright 2017 Google LLC
|
|
519
519
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
520
520
|
*/
|
|
521
|
-
const
|
|
521
|
+
const v1 = globalThis;
|
|
522
522
|
let p = class extends $1 {
|
|
523
523
|
constructor() {
|
|
524
524
|
super(...arguments), this.renderOptions = { host: this }, this._$Do = void 0;
|
|
525
525
|
}
|
|
526
526
|
createRenderRoot() {
|
|
527
|
-
var
|
|
527
|
+
var i;
|
|
528
528
|
const t = super.createRenderRoot();
|
|
529
|
-
return (
|
|
529
|
+
return (i = this.renderOptions).renderBefore ?? (i.renderBefore = t.firstChild), t;
|
|
530
530
|
}
|
|
531
531
|
update(t) {
|
|
532
|
-
const
|
|
533
|
-
this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t), this._$Do = b0(
|
|
532
|
+
const i = this.render();
|
|
533
|
+
this.hasUpdated || (this.renderOptions.isConnected = this.isConnected), super.update(t), this._$Do = b0(i, this.renderRoot, this.renderOptions);
|
|
534
534
|
}
|
|
535
535
|
connectedCallback() {
|
|
536
536
|
var t;
|
|
@@ -545,17 +545,17 @@ let p = class extends $1 {
|
|
|
545
545
|
}
|
|
546
546
|
};
|
|
547
547
|
var R2;
|
|
548
|
-
p._$litElement$ = !0, p.finalized = !0, (R2 =
|
|
549
|
-
const h2 =
|
|
548
|
+
p._$litElement$ = !0, p.finalized = !0, (R2 = v1.litElementHydrateSupport) == null || R2.call(v1, { LitElement: p });
|
|
549
|
+
const h2 = v1.litElementPolyfillSupport;
|
|
550
550
|
h2 == null || h2({ LitElement: p });
|
|
551
|
-
(
|
|
551
|
+
(v1.litElementVersions ?? (v1.litElementVersions = [])).push("4.2.0");
|
|
552
552
|
/**
|
|
553
553
|
* @license
|
|
554
554
|
* Copyright 2017 Google LLC
|
|
555
555
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
556
556
|
*/
|
|
557
|
-
const u = (e) => (t,
|
|
558
|
-
|
|
557
|
+
const u = (e) => (t, i) => {
|
|
558
|
+
i !== void 0 ? i.addInitializer(() => {
|
|
559
559
|
customElements.define(e, t);
|
|
560
560
|
}) : customElements.define(e, t);
|
|
561
561
|
};
|
|
@@ -564,11 +564,11 @@ const u = (e) => (t, o) => {
|
|
|
564
564
|
* Copyright 2017 Google LLC
|
|
565
565
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
566
566
|
*/
|
|
567
|
-
const w0 = { attribute: !0, type: String, converter: X1, reflect: !1, hasChanged: w2 }, m0 = (e = w0, t,
|
|
568
|
-
const { kind: n, metadata:
|
|
569
|
-
let s = globalThis.litPropertyMetadata.get(
|
|
570
|
-
if (s === void 0 && globalThis.litPropertyMetadata.set(
|
|
571
|
-
const { name: r } =
|
|
567
|
+
const w0 = { attribute: !0, type: String, converter: X1, reflect: !1, hasChanged: w2 }, m0 = (e = w0, t, i) => {
|
|
568
|
+
const { kind: n, metadata: o } = i;
|
|
569
|
+
let s = globalThis.litPropertyMetadata.get(o);
|
|
570
|
+
if (s === void 0 && globalThis.litPropertyMetadata.set(o, s = /* @__PURE__ */ new Map()), n === "setter" && ((e = Object.create(e)).wrapped = !0), s.set(i.name, e), n === "accessor") {
|
|
571
|
+
const { name: r } = i;
|
|
572
572
|
return { set(c) {
|
|
573
573
|
const h = t.get.call(this);
|
|
574
574
|
t.set.call(this, c), this.requestUpdate(r, h, e);
|
|
@@ -577,7 +577,7 @@ const w0 = { attribute: !0, type: String, converter: X1, reflect: !1, hasChanged
|
|
|
577
577
|
} };
|
|
578
578
|
}
|
|
579
579
|
if (n === "setter") {
|
|
580
|
-
const { name: r } =
|
|
580
|
+
const { name: r } = i;
|
|
581
581
|
return function(c) {
|
|
582
582
|
const h = this[r];
|
|
583
583
|
t.call(this, c), this.requestUpdate(r, h, e);
|
|
@@ -586,10 +586,10 @@ const w0 = { attribute: !0, type: String, converter: X1, reflect: !1, hasChanged
|
|
|
586
586
|
throw Error("Unsupported decorator location: " + n);
|
|
587
587
|
};
|
|
588
588
|
function l(e) {
|
|
589
|
-
return (t,
|
|
590
|
-
const r =
|
|
591
|
-
return
|
|
592
|
-
})(e, t,
|
|
589
|
+
return (t, i) => typeof i == "object" ? m0(e, t, i) : ((n, o, s) => {
|
|
590
|
+
const r = o.hasOwnProperty(s);
|
|
591
|
+
return o.constructor.createProperty(s, n), r ? Object.getOwnPropertyDescriptor(o, s) : void 0;
|
|
592
|
+
})(e, t, i);
|
|
593
593
|
}
|
|
594
594
|
/**
|
|
595
595
|
* @license
|
|
@@ -604,19 +604,19 @@ function j(e) {
|
|
|
604
604
|
* Copyright 2017 Google LLC
|
|
605
605
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
606
606
|
*/
|
|
607
|
-
const y0 = (e, t,
|
|
607
|
+
const y0 = (e, t, i) => (i.configurable = !0, i.enumerable = !0, Reflect.decorate && typeof t != "object" && Object.defineProperty(e, t, i), i);
|
|
608
608
|
/**
|
|
609
609
|
* @license
|
|
610
610
|
* Copyright 2017 Google LLC
|
|
611
611
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
612
612
|
*/
|
|
613
613
|
function q1(e, t) {
|
|
614
|
-
return (
|
|
614
|
+
return (i, n, o) => {
|
|
615
615
|
const s = (r) => {
|
|
616
616
|
var c;
|
|
617
617
|
return ((c = r.renderRoot) == null ? void 0 : c.querySelector(e)) ?? null;
|
|
618
618
|
};
|
|
619
|
-
return y0(
|
|
619
|
+
return y0(i, n, { get() {
|
|
620
620
|
return s(this);
|
|
621
621
|
} });
|
|
622
622
|
};
|
|
@@ -660,12 +660,12 @@ const y2 = C`
|
|
|
660
660
|
const P1 = Symbol("internals"), d2 = Symbol("privateInternals");
|
|
661
661
|
function t2(e) {
|
|
662
662
|
var t;
|
|
663
|
-
class
|
|
663
|
+
class i extends e {
|
|
664
664
|
get [(t = P1, t)]() {
|
|
665
665
|
return this[d2] || (this[d2] = this.attachInternals()), this[d2];
|
|
666
666
|
}
|
|
667
667
|
}
|
|
668
|
-
return
|
|
668
|
+
return i;
|
|
669
669
|
}
|
|
670
670
|
/**
|
|
671
671
|
* @license
|
|
@@ -674,13 +674,13 @@ function t2(e) {
|
|
|
674
674
|
*/
|
|
675
675
|
function x0(e) {
|
|
676
676
|
e.addInitializer((t) => {
|
|
677
|
-
const
|
|
678
|
-
|
|
679
|
-
const { type:
|
|
680
|
-
if (!(!r ||
|
|
677
|
+
const i = t;
|
|
678
|
+
i.addEventListener("click", async (n) => {
|
|
679
|
+
const { type: o, [P1]: s } = i, { form: r } = s;
|
|
680
|
+
if (!(!r || o === "button") && (await new Promise((c) => {
|
|
681
681
|
setTimeout(c);
|
|
682
682
|
}), !n.defaultPrevented)) {
|
|
683
|
-
if (
|
|
683
|
+
if (o === "reset") {
|
|
684
684
|
r.reset();
|
|
685
685
|
return;
|
|
686
686
|
}
|
|
@@ -690,11 +690,11 @@ function x0(e) {
|
|
|
690
690
|
Object.defineProperty(c, "submitter", {
|
|
691
691
|
configurable: !0,
|
|
692
692
|
enumerable: !0,
|
|
693
|
-
get: () =>
|
|
693
|
+
get: () => i
|
|
694
694
|
});
|
|
695
695
|
},
|
|
696
696
|
{ capture: !0, once: !0 }
|
|
697
|
-
), s.setFormValue(
|
|
697
|
+
), s.setFormValue(i.value), r.requestSubmit();
|
|
698
698
|
}
|
|
699
699
|
});
|
|
700
700
|
});
|
|
@@ -804,11 +804,11 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
804
804
|
<path d="M4.05 4.15V7.25H7.96V4.15L6 2.43L4.05 4.15ZM7.18 4.5V6.47H4.83V4.5L6 3.47L7.18 4.5Z" fill="#3F2B2E"/>
|
|
805
805
|
<path d="M9.93 2.65L9.86 2.52C9.12 1.31 7.57 0.5 6 0.5C4.35 0.5 2.77 1.36 2.07 2.64C1.54 3.62 1.37 4.83 1.6 6.04C2.24 9.63 5.69 11.35 5.83 11.42L6 11.5L6.17 11.42C6.17 11.42 6.44 11.29 6.84 11.03C7.89 10.34 10.35 8.4 10.5 5.19V4.65C10.46 3.94 10.26 3.26 9.93 2.65ZM9.72 5.17C9.6 7.9 7.6 9.6 6.42 10.37C6.25 10.48 6.11 10.56 6.01 10.62C5.33 10.24 2.86 8.66 2.37 5.9C2.18 4.88 2.32 3.83 2.76 3.02C3.32 2 4.66 1.29 6.01 1.29C7.36 1.29 8.6 1.95 9.19 2.92L9.25 3.03C9.52 3.53 9.68 4.11 9.72 4.67V5.17Z" fill="#3F2B2E"/>
|
|
806
806
|
</svg>
|
|
807
|
-
`,
|
|
807
|
+
`, i3 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
808
808
|
<path d="M5.3591 5.46338V9.74767H10.6497V5.46338L7.99938 3.08655L5.3591 5.46338ZM9.48953 6.00266V8.55925H6.51922V6.00266L7.99938 4.66445L9.48953 6.00266Z" fill="#3F2B2E"/>
|
|
809
809
|
<path d="M14 6.16245C13.94 5.20373 13.68 4.26498 13.2399 3.43609L13.1399 3.25632C12.1498 1.60852 10.0896 0.5 7.99938 0.5C5.80915 0.509987 3.69893 1.67843 2.75883 3.43609C2.05876 4.7743 1.82873 6.41212 2.12877 8.05992C2.97885 12.9334 7.55933 15.2703 7.74935 15.3702L7.99938 15.5L8.2494 15.3702C8.2494 15.3702 8.59944 15.1904 9.13949 14.8409C10.5296 13.9121 13.8 11.2756 13.99 6.91145V6.17244L14 6.16245ZM8.50943 13.8422C8.30941 13.982 8.12939 14.0819 7.99938 14.1618C7.06928 13.6225 3.89895 11.5153 3.26888 7.8502C3.02886 6.48202 3.20888 5.08389 3.77894 4.00533C4.50901 2.64714 6.24919 1.6984 8.00938 1.6984C9.76956 1.6984 11.3797 2.57723 12.1498 3.86551L12.2298 4.01531C12.5799 4.68442 12.7999 5.4534 12.8399 6.2024V6.8715C12.6799 10.5266 10.0596 12.8036 8.50943 13.8322V13.8422Z" fill="#3F2B2E"/>
|
|
810
810
|
</svg>
|
|
811
|
-
`,
|
|
811
|
+
`, o3 = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
812
812
|
<path d="M8 8.15V14.46H16.02V8.15L12 4.67L8 8.15ZM14.75 8.72V13.22H9.26V8.72L12 6.34L14.75 8.72Z" fill="#3F2B2E"/>
|
|
813
813
|
<path d="M21.5 9.14C21.41 7.67 21 6.23 20.3 4.97L20.15 4.7C18.59 2.19 15.32 0.5 12 0.5C8.52 0.5 5.19 2.29 3.7 4.95C2.58 7 2.23 9.52 2.7 12.05C4.06 19.6 11.41 23.22 11.72 23.37L12 23.5L12.28 23.37C12.28 23.37 12.86 23.09 13.7 22.55C15.94 21.11 21.19 17.02 21.5 10.28V9.14ZM13.01 21.5C12.58 21.78 12.23 21.98 12 22.1C10.68 21.38 5.04 17.96 3.95 11.83C3.53 9.61 3.85 7.32 4.81 5.55C6.06 3.31 9.02 1.75 12 1.75C14.98 1.75 17.73 3.2 19.05 5.33L19.19 5.57C19.79 6.66 20.15 7.92 20.23 9.17V10.25C19.96 16.16 15.59 19.83 13.01 21.5Z" fill="#3F2B2E"/>
|
|
814
814
|
</svg>
|
|
@@ -1030,10 +1030,10 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
1030
1030
|
`, et = `<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
1031
1031
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M1 6C1 3.23858 3.23858 1 6 1C8.76142 1 11 3.23858 11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76142 1 6ZM8.40875 8.40872C8.53094 8.28652 8.53094 8.08841 8.40875 7.96622L6.44187 5.99997L8.40812 4.03372C8.52655 3.9111 8.52486 3.71619 8.40431 3.59565C8.28377 3.47511 8.08886 3.47341 7.96625 3.59184L6 5.55809L4.03312 3.59184C3.9105 3.47341 3.71559 3.47511 3.59505 3.59565C3.47451 3.71619 3.47282 3.9111 3.59125 4.03372L5.55812 5.99997L3.59125 7.96684C3.51013 8.04542 3.47772 8.16165 3.50647 8.27086C3.53523 8.38008 3.62067 8.46528 3.72996 8.49373C3.83926 8.52217 3.9554 8.48943 4.03375 8.40809L6 6.44184L7.96625 8.40872C8.08844 8.53091 8.28655 8.53091 8.40875 8.40872Z" fill="#3F2B2E"/>
|
|
1032
1032
|
</svg>
|
|
1033
|
-
`,
|
|
1033
|
+
`, it = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
1034
1034
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M1 8C1 4.13401 4.13401 1 8 1C11.866 1 15 4.13401 15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8ZM11.3723 11.3723C11.5433 11.2012 11.5433 10.9238 11.3723 10.7527L8.61863 8L11.3714 5.24725C11.5372 5.07558 11.5348 4.80271 11.366 4.63395C11.1973 4.4652 10.9244 4.46282 10.7527 4.62862L8 7.38137L5.24638 4.62862C5.07471 4.46282 4.80184 4.4652 4.63308 4.63395C4.46432 4.80271 4.46195 5.07558 4.62775 5.24725L7.38138 8L4.62775 10.7536C4.51419 10.8636 4.46881 11.0264 4.50907 11.1793C4.54932 11.3322 4.66894 11.4514 4.82196 11.4913C4.97497 11.5311 5.13756 11.4852 5.24725 11.3714L8 8.61862L10.7527 11.3723C10.9238 11.5433 11.2012 11.5433 11.3723 11.3723Z" fill="#3F2B2E"/>
|
|
1035
1035
|
</svg>
|
|
1036
|
-
`,
|
|
1036
|
+
`, ot = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
1037
1037
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM16.8175 16.8174C17.0619 16.573 17.0619 16.1768 16.8175 15.9324L12.8837 11.9999L16.8162 8.06743C17.0531 7.8222 17.0497 7.43238 16.8086 7.1913C16.5675 6.95021 16.1777 6.94683 15.9325 7.18368L12 11.1162L8.06624 7.18368C7.821 6.94683 7.43119 6.95021 7.1901 7.1913C6.94902 7.43238 6.94563 7.8222 7.18249 8.06743L11.1162 11.9999L7.18249 15.9337C7.02026 16.0908 6.95544 16.3233 7.01294 16.5417C7.07045 16.7602 7.24134 16.9306 7.45993 16.9875C7.67852 17.0443 7.9108 16.9789 8.06749 16.8162L12 12.8837L15.9325 16.8174C16.1769 17.0618 16.5731 17.0618 16.8175 16.8174Z" fill="#3F2B2E"/>
|
|
1038
1038
|
</svg>
|
|
1039
1039
|
`, nt = `<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
@@ -1290,11 +1290,11 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
1290
1290
|
<path d="M2 2C2 1.44772 2.44772 1 3 1H3.66667C4.21895 1 4.66667 1.44772 4.66667 2V10C4.66667 10.5523 4.21895 11 3.66667 11H3C2.44772 11 2 10.5523 2 10V2Z" fill="#3F2B2E"/>
|
|
1291
1291
|
<path d="M7.33333 2C7.33333 1.44772 7.78105 1 8.33333 1H9C9.55228 1 10 1.44772 10 2V10C10 10.5523 9.55228 11 9 11H8.33333C7.78105 11 7.33333 10.5523 7.33333 10V2Z" fill="#3F2B2E"/>
|
|
1292
1292
|
</svg>
|
|
1293
|
-
`,
|
|
1293
|
+
`, i4 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
1294
1294
|
<path d="M3.5 3C3.5 2.44772 3.94772 2 4.5 2H5.5C6.05228 2 6.5 2.44772 6.5 3V13C6.5 13.5523 6.05228 14 5.5 14H4.5C3.94772 14 3.5 13.5523 3.5 13V3Z" fill="#3F2B2E"/>
|
|
1295
1295
|
<path d="M9.5 3C9.5 2.44772 9.94772 2 10.5 2H11.5C12.0523 2 12.5 2.44772 12.5 3V13C12.5 13.5523 12.0523 14 11.5 14H10.5C9.94772 14 9.5 13.5523 9.5 13V3Z" fill="#3F2B2E"/>
|
|
1296
1296
|
</svg>
|
|
1297
|
-
`,
|
|
1297
|
+
`, o4 = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
1298
1298
|
<path d="M6 5C6 4.44772 6.44772 4 7 4H9C9.55228 4 10 4.44772 10 5V19C10 19.5523 9.55228 20 9 20H7C6.44772 20 6 19.5523 6 19V5Z" fill="#3F2B2E"/>
|
|
1299
1299
|
<path d="M14 5C14 4.44772 14.4477 4 15 4H17C17.5523 4 18 4.44772 18 5V19C18 19.5523 17.5523 20 17 20H15C14.4477 20 14 19.5523 14 19V5Z" fill="#3F2B2E"/>
|
|
1300
1300
|
</svg>
|
|
@@ -1484,12 +1484,12 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
1484
1484
|
<path d="M6 2.50049C6.27614 2.50049 6.5 2.72435 6.5 3.00049V7.00049C6.49987 7.27652 6.27606 7.50049 6 7.50049C5.72394 7.50049 5.50013 7.27652 5.5 7.00049V3.00049C5.5 2.72435 5.72386 2.50049 6 2.50049Z" fill="#3F2B2E"/>
|
|
1485
1485
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M6 1C8.76142 1 11 3.23906 11 6.00049C10.9999 8.7618 8.76134 11.0005 6 11.0005C3.23866 11.0005 1.00013 8.7618 1 6.00049C1 3.23906 3.23858 1 6 1ZM6 1.75049C3.65279 1.75049 1.75 3.65328 1.75 6.00049C1.75013 8.34759 3.65287 10.2505 6 10.2505C8.34713 10.2505 10.2499 8.34759 10.25 6.00049C10.25 3.65328 8.34721 1.75049 6 1.75049Z" fill="#3F2B2E"/>
|
|
1486
1486
|
</svg>
|
|
1487
|
-
`,
|
|
1487
|
+
`, i5 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
1488
1488
|
<path d="M8 11.5007C8.3866 11.5007 8.7 11.8141 8.7 12.2007C8.69982 12.5871 8.38649 12.9007 8 12.9007C7.61351 12.9007 7.30018 12.5871 7.3 12.2007C7.3 11.8141 7.6134 11.5007 8 11.5007Z" fill="#3F2B2E"/>
|
|
1489
1489
|
<path d="M8 3.10068C8.3866 3.10068 8.7 3.41408 8.7 3.80068V9.40068C8.69982 9.78713 8.38649 10.1007 8 10.1007C7.61351 10.1007 7.30018 9.78713 7.3 9.40068V3.80068C7.3 3.41408 7.6134 3.10068 8 3.10068Z" fill="#3F2B2E"/>
|
|
1490
1490
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 1C11.866 1 15 4.13469 15 8.00068C14.9998 11.8665 11.8659 15.0007 8 15.0007C4.13412 15.0007 1.00018 11.8665 1 8.00068C1 4.13469 4.13401 1 8 1ZM8 2.05068C4.71391 2.05068 2.05 4.71459 2.05 8.00068C2.05018 11.2866 4.71402 13.9507 8 13.9507C11.286 13.9507 13.9498 11.2866 13.95 8.00068C13.95 4.71459 11.2861 2.05068 8 2.05068Z" fill="#3F2B2E"/>
|
|
1491
1491
|
</svg>
|
|
1492
|
-
`,
|
|
1492
|
+
`, o5 = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
1493
1493
|
<path d="M12 17.001C12.5523 17.001 13 17.4487 13 18.001C12.9997 18.553 12.5521 19.001 12 19.001C11.4479 19.001 11.0003 18.553 11 18.001C11 17.4487 11.4477 17.001 12 17.001Z" fill="#3F2B2E"/>
|
|
1494
1494
|
<path d="M12 5.00098C12.5523 5.00098 13 5.44869 13 6.00098V14.001C12.9997 14.553 12.5521 15.001 12 15.001C11.4479 15.001 11.0003 14.553 11 14.001V6.00098C11 5.44869 11.4477 5.00098 12 5.00098Z" fill="#3F2B2E"/>
|
|
1495
1495
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M12 2C17.5228 2 22 6.47813 22 12.001C21.9997 17.5236 17.5227 22.001 12 22.001C6.47732 22.001 2.00026 17.5236 2 12.001C2 6.47813 6.47715 2 12 2ZM12 3.50098C7.30558 3.50098 3.5 7.30656 3.5 12.001C3.50026 16.6952 7.30574 20.501 12 20.501C16.6943 20.501 20.4997 16.6952 20.5 12.001C20.5 7.30656 16.6944 3.50098 12 3.50098Z" fill="#3F2B2E"/>
|
|
@@ -1535,7 +1535,7 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
1535
1535
|
sliderLeftArrow: Q0,
|
|
1536
1536
|
sliderRightArrow: t3
|
|
1537
1537
|
}, L2 = {
|
|
1538
|
-
"occ-address": { small: e3, medium:
|
|
1538
|
+
"occ-address": { small: e3, medium: i3, large: o3 },
|
|
1539
1539
|
"occ-autorep": { small: n3, medium: s3, large: r3 },
|
|
1540
1540
|
"occ-back": { small: l3, medium: a3, large: c3 },
|
|
1541
1541
|
"occ-bag-filled": { small: h3, medium: d3, large: p3 },
|
|
@@ -1553,7 +1553,7 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
1553
1553
|
"occ-chevron-left": { small: N3, medium: K3, large: W3 },
|
|
1554
1554
|
"occ-chevron-right": { small: G3, medium: X3, large: Y3 },
|
|
1555
1555
|
"occ-chevron-top": { small: J3, medium: Q3, large: tt },
|
|
1556
|
-
"occ-close-filled": { small: et, medium:
|
|
1556
|
+
"occ-close-filled": { small: et, medium: it, large: ot },
|
|
1557
1557
|
"occ-close-outlined": { small: nt, medium: st, large: rt },
|
|
1558
1558
|
"occ-cream": { small: lt, medium: at, large: ct },
|
|
1559
1559
|
"occ-cream-tube": { small: ht, medium: dt, large: pt },
|
|
@@ -1571,7 +1571,7 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
1571
1571
|
"occ-order": { small: Nt, medium: Kt, large: Wt },
|
|
1572
1572
|
"occ-order-sent": { small: Gt, medium: Xt, large: Yt },
|
|
1573
1573
|
"occ-padlock": { small: Jt, medium: Qt, large: t4 },
|
|
1574
|
-
"occ-pause": { small: e4, medium:
|
|
1574
|
+
"occ-pause": { small: e4, medium: i4, large: o4 },
|
|
1575
1575
|
"occ-play": { small: n4, medium: s4, large: r4 },
|
|
1576
1576
|
"occ-plus": { small: l4, medium: a4, large: c4 },
|
|
1577
1577
|
"occ-product": { small: h4, medium: d4, large: p4 },
|
|
@@ -1589,7 +1589,7 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
1589
1589
|
"occ-star-75": { small: N4, medium: K4, large: W4 },
|
|
1590
1590
|
"occ-store": { small: G4, medium: X4, large: Y4 },
|
|
1591
1591
|
"occ-warning": { small: J4, medium: Q4, large: t5 },
|
|
1592
|
-
"occ-warning-stroke": { small: e5, medium:
|
|
1592
|
+
"occ-warning-stroke": { small: e5, medium: i5, large: o5 },
|
|
1593
1593
|
"occ-wishlist-filled": { small: n5, medium: D2, large: D2 },
|
|
1594
1594
|
"occ-wishlist-outlined": { small: s5, medium: T2, large: T2 }
|
|
1595
1595
|
}, l5 = Object.fromEntries(
|
|
@@ -1605,20 +1605,20 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
1605
1605
|
small: 12,
|
|
1606
1606
|
medium: 16,
|
|
1607
1607
|
large: 24
|
|
1608
|
-
}, c5 = (e) => Object.prototype.hasOwnProperty.call(L2, e), h5 = (e) => e === "xsmall" ? "small" : e, d5 = (e, t,
|
|
1608
|
+
}, c5 = (e) => Object.prototype.hasOwnProperty.call(L2, e), h5 = (e) => e === "xsmall" ? "small" : e, d5 = (e, t, i) => {
|
|
1609
1609
|
const n = L2[e];
|
|
1610
|
-
if (
|
|
1611
|
-
const
|
|
1612
|
-
return n[
|
|
1610
|
+
if (i) {
|
|
1611
|
+
const o = h5(t);
|
|
1612
|
+
return n[o] ?? n.large ?? n.medium ?? n.small ?? "";
|
|
1613
1613
|
}
|
|
1614
1614
|
return n.large ?? n.medium ?? n.small ?? "";
|
|
1615
|
-
}, p5 = (e, { size: t, bgstyle:
|
|
1616
|
-
const n = a5[t],
|
|
1615
|
+
}, p5 = (e, { size: t, bgstyle: i }) => {
|
|
1616
|
+
const n = a5[t], o = i === "none-light" || i === "none-contrast";
|
|
1617
1617
|
let s = G2[e] ?? "";
|
|
1618
|
-
return c5(e) && (s = d5(e, t,
|
|
1618
|
+
return c5(e) && (s = d5(e, t, o)), {
|
|
1619
1619
|
svg: s,
|
|
1620
1620
|
pixelSize: n,
|
|
1621
|
-
shouldApplyLogicalSize:
|
|
1621
|
+
shouldApplyLogicalSize: o
|
|
1622
1622
|
};
|
|
1623
1623
|
}, N1 = G2, C5 = {
|
|
1624
1624
|
strikeDiagonal: N0
|
|
@@ -1632,21 +1632,21 @@ const $0 = `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="h
|
|
|
1632
1632
|
* Copyright 2017 Google LLC
|
|
1633
1633
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
1634
1634
|
*/
|
|
1635
|
-
const
|
|
1636
|
-
let
|
|
1635
|
+
const o1 = { ATTRIBUTE: 1, CHILD: 2, PROPERTY: 3, BOOLEAN_ATTRIBUTE: 4 }, e2 = (e) => (...t) => ({ _$litDirective$: e, values: t });
|
|
1636
|
+
let i2 = class {
|
|
1637
1637
|
constructor(t) {
|
|
1638
1638
|
}
|
|
1639
1639
|
get _$AU() {
|
|
1640
1640
|
return this._$AM._$AU;
|
|
1641
1641
|
}
|
|
1642
|
-
_$AT(t,
|
|
1643
|
-
this._$Ct = t, this._$AM =
|
|
1642
|
+
_$AT(t, i, n) {
|
|
1643
|
+
this._$Ct = t, this._$AM = i, this._$Ci = n;
|
|
1644
1644
|
}
|
|
1645
|
-
_$AS(t,
|
|
1646
|
-
return this.update(t,
|
|
1645
|
+
_$AS(t, i) {
|
|
1646
|
+
return this.update(t, i);
|
|
1647
1647
|
}
|
|
1648
|
-
update(t,
|
|
1649
|
-
return this.render(...
|
|
1648
|
+
update(t, i) {
|
|
1649
|
+
return this.render(...i);
|
|
1650
1650
|
}
|
|
1651
1651
|
};
|
|
1652
1652
|
/**
|
|
@@ -1654,9 +1654,9 @@ let o2 = class {
|
|
|
1654
1654
|
* Copyright 2017 Google LLC
|
|
1655
1655
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
1656
1656
|
*/
|
|
1657
|
-
class p2 extends
|
|
1657
|
+
class p2 extends i2 {
|
|
1658
1658
|
constructor(t) {
|
|
1659
|
-
if (super(t), this.it = d, t.type !==
|
|
1659
|
+
if (super(t), this.it = d, t.type !== o1.CHILD) throw Error(this.constructor.directiveName + "() can only be used in child bindings");
|
|
1660
1660
|
}
|
|
1661
1661
|
render(t) {
|
|
1662
1662
|
if (t === d || t == null) return this._t = void 0, this.it = t;
|
|
@@ -1664,8 +1664,8 @@ class p2 extends o2 {
|
|
|
1664
1664
|
if (typeof t != "string") throw Error(this.constructor.directiveName + "() called with a non-string value");
|
|
1665
1665
|
if (t === this.it) return this._t;
|
|
1666
1666
|
this.it = t;
|
|
1667
|
-
const
|
|
1668
|
-
return
|
|
1667
|
+
const i = [t];
|
|
1668
|
+
return i.raw = i, this._t = { _$litType$: this.constructor.resultType, strings: i, values: [] };
|
|
1669
1669
|
}
|
|
1670
1670
|
}
|
|
1671
1671
|
p2.directiveName = "unsafeHTML", p2.resultType = 1;
|
|
@@ -1691,52 +1691,52 @@ const X2 = (e) => e.strings === void 0, g5 = {}, f5 = (e, t = g5) => e._$AH = t;
|
|
|
1691
1691
|
*/
|
|
1692
1692
|
const F1 = (e, t) => {
|
|
1693
1693
|
var n;
|
|
1694
|
-
const
|
|
1695
|
-
if (
|
|
1696
|
-
for (const
|
|
1694
|
+
const i = e._$AN;
|
|
1695
|
+
if (i === void 0) return !1;
|
|
1696
|
+
for (const o of i) (n = o._$AO) == null || n.call(o, t, !1), F1(o, t);
|
|
1697
1697
|
return !0;
|
|
1698
1698
|
}, J1 = (e) => {
|
|
1699
|
-
let t,
|
|
1699
|
+
let t, i;
|
|
1700
1700
|
do {
|
|
1701
1701
|
if ((t = e._$AM) === void 0) break;
|
|
1702
|
-
|
|
1703
|
-
} while ((
|
|
1702
|
+
i = t._$AN, i.delete(e), e = t;
|
|
1703
|
+
} while ((i == null ? void 0 : i.size) === 0);
|
|
1704
1704
|
}, Y2 = (e) => {
|
|
1705
1705
|
for (let t; t = e._$AM; e = t) {
|
|
1706
|
-
let
|
|
1707
|
-
if (
|
|
1708
|
-
else if (
|
|
1709
|
-
|
|
1706
|
+
let i = t._$AN;
|
|
1707
|
+
if (i === void 0) t._$AN = i = /* @__PURE__ */ new Set();
|
|
1708
|
+
else if (i.has(e)) break;
|
|
1709
|
+
i.add(e), w5(t);
|
|
1710
1710
|
}
|
|
1711
1711
|
};
|
|
1712
1712
|
function v5(e) {
|
|
1713
1713
|
this._$AN !== void 0 ? (J1(this), this._$AM = e, Y2(this)) : this._$AM = e;
|
|
1714
1714
|
}
|
|
1715
|
-
function b5(e, t = !1,
|
|
1716
|
-
const n = this._$AH,
|
|
1717
|
-
if (
|
|
1715
|
+
function b5(e, t = !1, i = 0) {
|
|
1716
|
+
const n = this._$AH, o = this._$AN;
|
|
1717
|
+
if (o !== void 0 && o.size !== 0) if (t) if (Array.isArray(n)) for (let s = i; s < n.length; s++) F1(n[s], !1), J1(n[s]);
|
|
1718
1718
|
else n != null && (F1(n, !1), J1(n));
|
|
1719
1719
|
else F1(this, e);
|
|
1720
1720
|
}
|
|
1721
1721
|
const w5 = (e) => {
|
|
1722
|
-
e.type ==
|
|
1722
|
+
e.type == o1.CHILD && (e._$AP ?? (e._$AP = b5), e._$AQ ?? (e._$AQ = v5));
|
|
1723
1723
|
};
|
|
1724
|
-
class m5 extends
|
|
1724
|
+
class m5 extends i2 {
|
|
1725
1725
|
constructor() {
|
|
1726
1726
|
super(...arguments), this._$AN = void 0;
|
|
1727
1727
|
}
|
|
1728
|
-
_$AT(t,
|
|
1729
|
-
super._$AT(t,
|
|
1728
|
+
_$AT(t, i, n) {
|
|
1729
|
+
super._$AT(t, i, n), Y2(this), this.isConnected = t._$AU;
|
|
1730
1730
|
}
|
|
1731
|
-
_$AO(t,
|
|
1732
|
-
var n,
|
|
1733
|
-
t !== this.isConnected && (this.isConnected = t, t ? (n = this.reconnected) == null || n.call(this) : (
|
|
1731
|
+
_$AO(t, i = !0) {
|
|
1732
|
+
var n, o;
|
|
1733
|
+
t !== this.isConnected && (this.isConnected = t, t ? (n = this.reconnected) == null || n.call(this) : (o = this.disconnected) == null || o.call(this)), i && (F1(this, t), J1(this));
|
|
1734
1734
|
}
|
|
1735
1735
|
setValue(t) {
|
|
1736
1736
|
if (X2(this._$Ct)) this._$Ct._$AI(t, this);
|
|
1737
1737
|
else {
|
|
1738
|
-
const
|
|
1739
|
-
|
|
1738
|
+
const i = [...this._$Ct._$AH];
|
|
1739
|
+
i[this._$Ci] = t, this._$Ct._$AI(i, this, 0);
|
|
1740
1740
|
}
|
|
1741
1741
|
}
|
|
1742
1742
|
disconnected() {
|
|
@@ -1751,24 +1751,24 @@ class y5 extends m5 {
|
|
|
1751
1751
|
render(t) {
|
|
1752
1752
|
return d;
|
|
1753
1753
|
}
|
|
1754
|
-
update(t, [
|
|
1754
|
+
update(t, [i]) {
|
|
1755
1755
|
var n;
|
|
1756
|
-
this.element !== t.element && (this.element = t.element), this.host = ((n = t.options) === null || n === void 0 ? void 0 : n.host) || this.element, this.apply(
|
|
1756
|
+
this.element !== t.element && (this.element = t.element), this.host = ((n = t.options) === null || n === void 0 ? void 0 : n.host) || this.element, this.apply(i), this.groom(i), this.prevData = { ...i };
|
|
1757
1757
|
}
|
|
1758
1758
|
apply(t) {
|
|
1759
1759
|
if (!t)
|
|
1760
1760
|
return;
|
|
1761
|
-
const { prevData:
|
|
1762
|
-
for (const
|
|
1763
|
-
const s = t[
|
|
1764
|
-
s !== o
|
|
1761
|
+
const { prevData: i, element: n } = this;
|
|
1762
|
+
for (const o in t) {
|
|
1763
|
+
const s = t[o];
|
|
1764
|
+
s !== i[o] && (n[o] = s);
|
|
1765
1765
|
}
|
|
1766
1766
|
}
|
|
1767
1767
|
groom(t) {
|
|
1768
|
-
const { prevData:
|
|
1769
|
-
if (
|
|
1770
|
-
for (const
|
|
1771
|
-
(!t || !(
|
|
1768
|
+
const { prevData: i, element: n } = this;
|
|
1769
|
+
if (i)
|
|
1770
|
+
for (const o in i)
|
|
1771
|
+
(!t || !(o in t) && n[o] === i[o]) && (n[o] = void 0);
|
|
1772
1772
|
}
|
|
1773
1773
|
}
|
|
1774
1774
|
class L5 extends y5 {
|
|
@@ -1777,41 +1777,41 @@ class L5 extends y5 {
|
|
|
1777
1777
|
}
|
|
1778
1778
|
apply(t) {
|
|
1779
1779
|
if (t)
|
|
1780
|
-
for (const
|
|
1781
|
-
const n = t[
|
|
1782
|
-
n !== this.eventData[
|
|
1780
|
+
for (const i in t) {
|
|
1781
|
+
const n = t[i];
|
|
1782
|
+
n !== this.eventData[i] && this.applyEvent(i, n);
|
|
1783
1783
|
}
|
|
1784
1784
|
}
|
|
1785
|
-
applyEvent(t,
|
|
1786
|
-
const { prevData: n, element:
|
|
1787
|
-
this.eventData[t] =
|
|
1785
|
+
applyEvent(t, i) {
|
|
1786
|
+
const { prevData: n, element: o } = this;
|
|
1787
|
+
this.eventData[t] = i, n[t] && o.removeEventListener(t, this, i), o.addEventListener(t, this, i);
|
|
1788
1788
|
}
|
|
1789
1789
|
groom(t) {
|
|
1790
|
-
const { prevData:
|
|
1791
|
-
if (
|
|
1792
|
-
for (const
|
|
1793
|
-
(!t || !(
|
|
1790
|
+
const { prevData: i, element: n } = this;
|
|
1791
|
+
if (i)
|
|
1792
|
+
for (const o in i)
|
|
1793
|
+
(!t || !(o in t) && n[o] === i[o]) && this.groomEvent(o, i[o]);
|
|
1794
1794
|
}
|
|
1795
|
-
groomEvent(t,
|
|
1795
|
+
groomEvent(t, i) {
|
|
1796
1796
|
const { element: n } = this;
|
|
1797
|
-
delete this.eventData[t], n.removeEventListener(t, this,
|
|
1797
|
+
delete this.eventData[t], n.removeEventListener(t, this, i);
|
|
1798
1798
|
}
|
|
1799
1799
|
handleEvent(t) {
|
|
1800
|
-
const
|
|
1801
|
-
typeof
|
|
1800
|
+
const i = this.eventData[t.type];
|
|
1801
|
+
typeof i == "function" ? i.call(this.host, t) : i.handleEvent(t);
|
|
1802
1802
|
}
|
|
1803
1803
|
disconnected() {
|
|
1804
|
-
const { eventData: t, element:
|
|
1804
|
+
const { eventData: t, element: i } = this;
|
|
1805
1805
|
for (const n in t) {
|
|
1806
|
-
const
|
|
1807
|
-
|
|
1806
|
+
const o = n.slice(1), s = t[n];
|
|
1807
|
+
i.removeEventListener(o, this, s);
|
|
1808
1808
|
}
|
|
1809
1809
|
}
|
|
1810
1810
|
reconnected() {
|
|
1811
|
-
const { eventData: t, element:
|
|
1811
|
+
const { eventData: t, element: i } = this;
|
|
1812
1812
|
for (const n in t) {
|
|
1813
|
-
const
|
|
1814
|
-
|
|
1813
|
+
const o = n.slice(1), s = t[n];
|
|
1814
|
+
i.addEventListener(o, this, s);
|
|
1815
1815
|
}
|
|
1816
1816
|
}
|
|
1817
1817
|
}
|
|
@@ -1819,13 +1819,13 @@ class x5 extends L5 {
|
|
|
1819
1819
|
apply(t) {
|
|
1820
1820
|
if (!t)
|
|
1821
1821
|
return;
|
|
1822
|
-
const { prevData:
|
|
1823
|
-
for (const
|
|
1824
|
-
const s = t[
|
|
1825
|
-
if (s === o
|
|
1822
|
+
const { prevData: i, element: n } = this;
|
|
1823
|
+
for (const o in t) {
|
|
1824
|
+
const s = t[o];
|
|
1825
|
+
if (s === i[o])
|
|
1826
1826
|
continue;
|
|
1827
|
-
const r =
|
|
1828
|
-
switch (
|
|
1827
|
+
const r = o.slice(1);
|
|
1828
|
+
switch (o[0]) {
|
|
1829
1829
|
case "@":
|
|
1830
1830
|
this.eventData[r] = s, this.applyEvent(r, s);
|
|
1831
1831
|
break;
|
|
@@ -1836,20 +1836,20 @@ class x5 extends L5 {
|
|
|
1836
1836
|
s ? n.setAttribute(r, "") : n.removeAttribute(r);
|
|
1837
1837
|
break;
|
|
1838
1838
|
default:
|
|
1839
|
-
s != null ? n.setAttribute(
|
|
1839
|
+
s != null ? n.setAttribute(o, String(s)) : n.removeAttribute(o);
|
|
1840
1840
|
break;
|
|
1841
1841
|
}
|
|
1842
1842
|
}
|
|
1843
1843
|
}
|
|
1844
1844
|
groom(t) {
|
|
1845
|
-
const { prevData:
|
|
1846
|
-
if (
|
|
1847
|
-
for (const
|
|
1848
|
-
const s =
|
|
1849
|
-
if (!t || !(
|
|
1850
|
-
switch (
|
|
1845
|
+
const { prevData: i, element: n } = this;
|
|
1846
|
+
if (i)
|
|
1847
|
+
for (const o in i) {
|
|
1848
|
+
const s = o.slice(1);
|
|
1849
|
+
if (!t || !(o in t) && n[s] === i[o])
|
|
1850
|
+
switch (o[0]) {
|
|
1851
1851
|
case "@":
|
|
1852
|
-
this.groomEvent(s, o
|
|
1852
|
+
this.groomEvent(s, i[o]);
|
|
1853
1853
|
break;
|
|
1854
1854
|
case ".":
|
|
1855
1855
|
n[s] = void 0;
|
|
@@ -1858,7 +1858,7 @@ class x5 extends L5 {
|
|
|
1858
1858
|
n.removeAttribute(s);
|
|
1859
1859
|
break;
|
|
1860
1860
|
default:
|
|
1861
|
-
n.removeAttribute(
|
|
1861
|
+
n.removeAttribute(o);
|
|
1862
1862
|
break;
|
|
1863
1863
|
}
|
|
1864
1864
|
}
|
|
@@ -1871,10 +1871,10 @@ const j2 = e2(x5);
|
|
|
1871
1871
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
1872
1872
|
*/
|
|
1873
1873
|
const V = (e) => e ?? d;
|
|
1874
|
-
var $5 = Object.defineProperty, B5 = Object.getOwnPropertyDescriptor,
|
|
1875
|
-
for (var
|
|
1876
|
-
(r = e[s]) && (
|
|
1877
|
-
return n &&
|
|
1874
|
+
var $5 = Object.defineProperty, B5 = Object.getOwnPropertyDescriptor, Y = (e, t, i, n) => {
|
|
1875
|
+
for (var o = n > 1 ? void 0 : n ? B5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
1876
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
1877
|
+
return n && o && $5(t, i, o), o;
|
|
1878
1878
|
};
|
|
1879
1879
|
let I = class extends p {
|
|
1880
1880
|
constructor() {
|
|
@@ -1886,10 +1886,10 @@ let I = class extends p {
|
|
|
1886
1886
|
render() {
|
|
1887
1887
|
if (!this.icon)
|
|
1888
1888
|
return d;
|
|
1889
|
-
const { svg: e, pixelSize: t, shouldApplyLogicalSize:
|
|
1889
|
+
const { svg: e, pixelSize: t, shouldApplyLogicalSize: i } = p5(this.icon, {
|
|
1890
1890
|
size: this.size,
|
|
1891
1891
|
bgstyle: this.bgstyle
|
|
1892
|
-
}), n = `icon-${this.icon}`,
|
|
1892
|
+
}), n = `icon-${this.icon}`, o = i ? ` width="${t}" height="${t}"` : "", r = (i ? e.replace(/\s(width|height)=\"[^\"]*\"/g, "") : e).replace("<svg", `<svg aria-hidden="true" focusable="false" part="svg"${o}`).replace(/<path\b/g, '<path part="icon-path"').replace(/<g\b/g, '<g part="icon-group"').replace(/<circle\b/g, '<circle part="icon-circle"'), c = this.showSrLabel ? a`<span class="sr-only">${this.srLabel}</span>` : null, h = this.showSrLabel ? null : "icon";
|
|
1893
1893
|
return a`
|
|
1894
1894
|
${this.type === "span" ? a`
|
|
1895
1895
|
<span class="icon icon-button ${this.size} ${this.bgstyle} ${this.status} ${n}" ?disabled="${this.disabled}">
|
|
@@ -2097,49 +2097,49 @@ I.styles = C`
|
|
|
2097
2097
|
${y2}
|
|
2098
2098
|
}
|
|
2099
2099
|
`;
|
|
2100
|
-
|
|
2100
|
+
Y([
|
|
2101
2101
|
l({ type: String, reflect: !0 })
|
|
2102
2102
|
], I.prototype, "bgstyle", 2);
|
|
2103
|
-
|
|
2103
|
+
Y([
|
|
2104
2104
|
l({ type: String, reflect: !0 })
|
|
2105
2105
|
], I.prototype, "size", 2);
|
|
2106
|
-
|
|
2106
|
+
Y([
|
|
2107
2107
|
l({ type: String, reflect: !0 })
|
|
2108
2108
|
], I.prototype, "status", 2);
|
|
2109
|
-
|
|
2109
|
+
Y([
|
|
2110
2110
|
l({ type: String, reflect: !0 })
|
|
2111
2111
|
], I.prototype, "type", 2);
|
|
2112
|
-
|
|
2112
|
+
Y([
|
|
2113
2113
|
l({ type: String })
|
|
2114
2114
|
], I.prototype, "strokewidth", 2);
|
|
2115
|
-
|
|
2115
|
+
Y([
|
|
2116
2116
|
l({ type: String })
|
|
2117
2117
|
], I.prototype, "icon", 2);
|
|
2118
|
-
|
|
2118
|
+
Y([
|
|
2119
2119
|
l({ type: Boolean, reflect: !0 })
|
|
2120
2120
|
], I.prototype, "disabled", 2);
|
|
2121
|
-
|
|
2121
|
+
Y([
|
|
2122
2122
|
l({ type: Boolean })
|
|
2123
2123
|
], I.prototype, "showSrLabel", 2);
|
|
2124
|
-
|
|
2124
|
+
Y([
|
|
2125
2125
|
l({ type: String })
|
|
2126
2126
|
], I.prototype, "srLabel", 2);
|
|
2127
|
-
I =
|
|
2127
|
+
I = Y([
|
|
2128
2128
|
u("o-icon-button")
|
|
2129
2129
|
], I);
|
|
2130
|
-
var H5 = Object.defineProperty, V5 = Object.getOwnPropertyDescriptor, b = (e, t,
|
|
2131
|
-
for (var
|
|
2132
|
-
(r = e[s]) && (
|
|
2133
|
-
return n &&
|
|
2130
|
+
var H5 = Object.defineProperty, V5 = Object.getOwnPropertyDescriptor, b = (e, t, i, n) => {
|
|
2131
|
+
for (var o = n > 1 ? void 0 : n ? V5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
2132
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
2133
|
+
return n && o && H5(t, i, o), o;
|
|
2134
2134
|
};
|
|
2135
2135
|
let g = class extends p {
|
|
2136
2136
|
constructor() {
|
|
2137
2137
|
super(...arguments), this.open = !1, this.showHeader = !0, this.showFooter = !1, this.showHeaderStartIcon = !1, this.headerTitle = "", this.headerTitleClassName = "panel-title", this.labelDialog = "", this.labelAriaDialogPanel = "", this.addToBagProductCount = "", this.closeButtonLabel = "Close the modal", this.goBackButtonLabel = "Go back to", this.firstButtonLabel = "Close", this.firstButtonVariant = "primary", this.firstButtonProps = {}, this.onFirstButtonClickClose = !1, this.secondButtonLabel = "", this.secondButtonVariant = "secondary", this.secondButtonProps = {}, this.onSecondButtonClickClose = !1, this.disablePortal = !1, this.zIndex = 99, this.initialized = !1, this.showDetail = !1, this.isHidingDetail = !1, this.previousFocusedElement = null, this.previousFocusedSelector = null, this._onOpenDetail = async (e) => {
|
|
2138
|
-
var
|
|
2139
|
-
const t = ((
|
|
2138
|
+
var i, n;
|
|
2139
|
+
const t = ((i = e.detail) == null ? void 0 : i.origin) ?? document.activeElement;
|
|
2140
2140
|
if (this._detailOriginEl = t, this._detailOriginClass = (t == null ? void 0 : t.className) ?? "", this.showDetail = !0, this.showHeaderStartIcon = !0, await this.updateComplete, this._detailOriginClass) {
|
|
2141
|
-
const
|
|
2142
|
-
|
|
2141
|
+
const o = (n = this.shadowRoot) == null ? void 0 : n.querySelector(".detail-view");
|
|
2142
|
+
o && o.setAttribute("fromelement", this._detailOriginClass);
|
|
2143
2143
|
}
|
|
2144
2144
|
await this.focusDetailReturnBtn();
|
|
2145
2145
|
}, this._detailOriginEl = null, this._detailOriginClass = "", this.handleKeyDown = (e) => {
|
|
@@ -2148,16 +2148,16 @@ let g = class extends p {
|
|
|
2148
2148
|
if (e instanceof KeyboardEvent && e.key !== "Enter" && e.key !== " ")
|
|
2149
2149
|
return;
|
|
2150
2150
|
e.preventDefault(), e.stopPropagation();
|
|
2151
|
-
const t = e.currentTarget,
|
|
2152
|
-
if (this.showDetail &&
|
|
2151
|
+
const t = e.currentTarget, i = (t == null ? void 0 : t.getAttribute("data-role")) === "back";
|
|
2152
|
+
if (this.showDetail && i) {
|
|
2153
2153
|
this.isHidingDetail = !0;
|
|
2154
|
-
const n = this.renderRoot.querySelector(".content"),
|
|
2154
|
+
const n = this.renderRoot.querySelector(".content"), o = async () => {
|
|
2155
2155
|
this.showDetail = !1, this.isHidingDetail = !1, this.showHeaderStartIcon = !1, await this.updateComplete, this._restoreFocusToOrigin();
|
|
2156
2156
|
};
|
|
2157
2157
|
if (n) {
|
|
2158
2158
|
this.showHeaderStartIcon = !1;
|
|
2159
2159
|
const s = () => {
|
|
2160
|
-
this.showDetail = !1, this.isHidingDetail = !1, n.removeEventListener("animationend", s),
|
|
2160
|
+
this.showDetail = !1, this.isHidingDetail = !1, n.removeEventListener("animationend", s), o();
|
|
2161
2161
|
};
|
|
2162
2162
|
n.addEventListener("animationend", s);
|
|
2163
2163
|
} else
|
|
@@ -2168,13 +2168,13 @@ let g = class extends p {
|
|
|
2168
2168
|
};
|
|
2169
2169
|
}
|
|
2170
2170
|
focusFirstInPanel() {
|
|
2171
|
-
var t,
|
|
2172
|
-
(n = this.getFocusableElements().map((
|
|
2171
|
+
var t, i, n;
|
|
2172
|
+
(n = this.getFocusableElements().map((o) => this.resolveFocusable(o)).filter((o) => !!o && !o.hasAttribute("disabled"))[0] ?? ((t = this.shadowRoot) == null ? void 0 : t.querySelector(".close-btn")) ?? ((i = this.shadowRoot) == null ? void 0 : i.querySelector(".panel"))) == null || n.focus({ preventScroll: !0 });
|
|
2173
2173
|
}
|
|
2174
2174
|
resolveFocusable(e) {
|
|
2175
|
-
var
|
|
2175
|
+
var i;
|
|
2176
2176
|
const t = e.tagName.toLowerCase();
|
|
2177
|
-
return t === "o-icon-button" || t === "o-button" ? ((
|
|
2177
|
+
return t === "o-icon-button" || t === "o-button" ? ((i = e.shadowRoot) == null ? void 0 : i.querySelector("button, .button")) ?? e : e;
|
|
2178
2178
|
}
|
|
2179
2179
|
connectedCallback() {
|
|
2180
2180
|
super.connectedCallback(), !this.disablePortal && this.parentElement !== document.body && document.body.appendChild(this), this.addEventListener("keydown", this.handleKeyDown), this.updateComplete.then(() => {
|
|
@@ -2187,7 +2187,7 @@ let g = class extends p {
|
|
|
2187
2187
|
document.body.style.overflow = "", document.body.removeAttribute("data-side-panel"), this.removeEventListener("keydown", this.handleKeyDown), super.disconnectedCallback(), this.removeEventListener("open-detail", this._onOpenDetail);
|
|
2188
2188
|
}
|
|
2189
2189
|
async focusDetailReturnBtn() {
|
|
2190
|
-
var
|
|
2190
|
+
var o, s, r, c, h;
|
|
2191
2191
|
await this.updateComplete;
|
|
2192
2192
|
const e = this.getDeepActiveElement(document);
|
|
2193
2193
|
if (e && e !== document.body)
|
|
@@ -2196,18 +2196,18 @@ let g = class extends p {
|
|
|
2196
2196
|
} catch {
|
|
2197
2197
|
}
|
|
2198
2198
|
await new Promise(requestAnimationFrame);
|
|
2199
|
-
const t = (
|
|
2199
|
+
const t = (o = this.shadowRoot) == null ? void 0 : o.querySelector(".detail-view .return-btn");
|
|
2200
2200
|
if (!t) return;
|
|
2201
2201
|
t.updateComplete && await t.updateComplete, (c = (r = ((s = t.shadowRoot) == null ? void 0 : s.querySelector("button")) ?? t) == null ? void 0 : r.focus) == null || c.call(r, { preventScroll: !0 });
|
|
2202
2202
|
const n = (h = this.shadowRoot) == null ? void 0 : h.querySelector('.panel[role="dialog"]');
|
|
2203
2203
|
n && n.setAttribute("aria-label", this.labelAriaDialogPanel || "panel-title");
|
|
2204
2204
|
}
|
|
2205
2205
|
_restoreFocusToOrigin() {
|
|
2206
|
-
var t,
|
|
2206
|
+
var t, i;
|
|
2207
2207
|
const e = this._detailOriginEl;
|
|
2208
|
-
!e || !document.contains(e) || ((
|
|
2209
|
-
var
|
|
2210
|
-
e.classList.add("a--tabfocus"), (((
|
|
2208
|
+
!e || !document.contains(e) || ((i = (t = document.activeElement) == null ? void 0 : t.blur) == null || i.call(t), requestAnimationFrame(() => {
|
|
2209
|
+
var o;
|
|
2210
|
+
e.classList.add("a--tabfocus"), (((o = e.shadowRoot) == null ? void 0 : o.querySelector('button, .button, [tabindex]:not([tabindex="-1"])')) ?? null ?? e).focus({ preventScroll: !0 });
|
|
2211
2211
|
}));
|
|
2212
2212
|
}
|
|
2213
2213
|
getDeepActiveElement(e = this.shadowRoot) {
|
|
@@ -2221,14 +2221,14 @@ let g = class extends p {
|
|
|
2221
2221
|
if (e.key !== "Tab") return;
|
|
2222
2222
|
const t = this.shadowRoot;
|
|
2223
2223
|
if (!t) return;
|
|
2224
|
-
const
|
|
2224
|
+
const i = this.getDeepActiveElement();
|
|
2225
2225
|
if (this.showDetail) {
|
|
2226
2226
|
const r = t.querySelector(".detail-view .return-btn"), c = t.querySelector(".detail-view .close-btn"), h = r ? this.resolveFocusable(r) : null, f = c ? this.resolveFocusable(c) : null;
|
|
2227
|
-
if (e.shiftKey && h &&
|
|
2227
|
+
if (e.shiftKey && h && i === h && f) {
|
|
2228
2228
|
e.preventDefault(), e.stopPropagation(), f.focus({ preventScroll: !0 });
|
|
2229
2229
|
return;
|
|
2230
2230
|
}
|
|
2231
|
-
if (!e.shiftKey && f &&
|
|
2231
|
+
if (!e.shiftKey && f && i === f) {
|
|
2232
2232
|
e.preventDefault(), e.stopPropagation(), (((s = t.querySelector(".detail-scroller")) == null ? void 0 : s.querySelector(
|
|
2233
2233
|
g.focusablesSelector
|
|
2234
2234
|
)) ?? h ?? f).focus({ preventScroll: !0 });
|
|
@@ -2240,12 +2240,12 @@ let g = class extends p {
|
|
|
2240
2240
|
e.preventDefault(), e.stopPropagation(), v.focus();
|
|
2241
2241
|
};
|
|
2242
2242
|
if (c && f) {
|
|
2243
|
-
if (!e.shiftKey &&
|
|
2244
|
-
if (e.shiftKey &&
|
|
2243
|
+
if (!e.shiftKey && i === f) return w(c);
|
|
2244
|
+
if (e.shiftKey && i === c) return w(f);
|
|
2245
2245
|
}
|
|
2246
2246
|
}
|
|
2247
|
-
const
|
|
2248
|
-
if (!e.shiftKey &&
|
|
2247
|
+
const o = this.renderRoot.querySelector(".close-btn");
|
|
2248
|
+
if (!e.shiftKey && o && o.contains(i)) {
|
|
2249
2249
|
e.preventDefault();
|
|
2250
2250
|
const r = this.renderRoot.querySelector(
|
|
2251
2251
|
".o-whats-inside--content p"
|
|
@@ -2256,32 +2256,32 @@ let g = class extends p {
|
|
|
2256
2256
|
getFocusableElements() {
|
|
2257
2257
|
const e = this.renderRoot.querySelector(".panel");
|
|
2258
2258
|
if (!e) return [];
|
|
2259
|
-
function t(
|
|
2260
|
-
return !(
|
|
2259
|
+
function t(o) {
|
|
2260
|
+
return !(o.disabled || o.hasAttribute("disabled") || o.hasAttribute("tabindex") && o.getAttribute("tabindex") === "-1");
|
|
2261
2261
|
}
|
|
2262
|
-
function o
|
|
2262
|
+
function i(o) {
|
|
2263
2263
|
var r;
|
|
2264
|
-
const s = [
|
|
2265
|
-
if (!["o-icon-button", "o-button"].includes(
|
|
2264
|
+
const s = [o.matches(g.focusablesSelector) ? o : []];
|
|
2265
|
+
if (!["o-icon-button", "o-button"].includes(o.tagName.toLowerCase())) {
|
|
2266
2266
|
const c = Array.from(
|
|
2267
|
-
|
|
2268
|
-
).filter(t).flatMap(
|
|
2269
|
-
((r =
|
|
2270
|
-
).filter(t).flatMap(
|
|
2267
|
+
o instanceof HTMLSlotElement ? o.assignedElements({ flatten: !0 }) : []
|
|
2268
|
+
).filter(t).flatMap(i), h = Array.from(
|
|
2269
|
+
((r = o.shadowRoot) == null ? void 0 : r.querySelectorAll("*")) || []
|
|
2270
|
+
).filter(t).flatMap(i);
|
|
2271
2271
|
s.push(...c, ...h);
|
|
2272
2272
|
}
|
|
2273
2273
|
return s.flat();
|
|
2274
2274
|
}
|
|
2275
|
-
return Array.from(e.querySelectorAll("*")).filter(t).flatMap(
|
|
2275
|
+
return Array.from(e.querySelectorAll("*")).filter(t).flatMap(i);
|
|
2276
2276
|
}
|
|
2277
2277
|
openPanel() {
|
|
2278
2278
|
var t;
|
|
2279
2279
|
this.removeAttribute("hidden"), this.getBoundingClientRect(), this.previousFocusedElement = document.activeElement, this.previousFocusedSelector = (t = this.previousFocusedElement) == null ? void 0 : t.getAttribute("paneltarget"), this.open = !0, document.body.style.overflow = "hidden", document.body.setAttribute("data-side-panel", "open");
|
|
2280
2280
|
const e = this.renderRoot.querySelector(".panel");
|
|
2281
2281
|
e && e.setAttribute("aria-modal", "true"), this.updateComplete.then(() => {
|
|
2282
|
-
var
|
|
2282
|
+
var i, n;
|
|
2283
2283
|
if (this.showHeader) {
|
|
2284
|
-
const
|
|
2284
|
+
const o = (i = this.shadowRoot) == null ? void 0 : i.querySelector(".panel .close-btn"), s = this.resolveFocusable(o);
|
|
2285
2285
|
(n = s == null ? void 0 : s.focus) == null || n.call(s, { preventScroll: !0 });
|
|
2286
2286
|
} else
|
|
2287
2287
|
this.focusFirstInPanel();
|
|
@@ -2290,10 +2290,10 @@ let g = class extends p {
|
|
|
2290
2290
|
);
|
|
2291
2291
|
}
|
|
2292
2292
|
closePanel() {
|
|
2293
|
-
var
|
|
2293
|
+
var i, n, o;
|
|
2294
2294
|
this.open = !1, this.showDetail = !1, document.body.style.overflow = "", document.body.removeAttribute("data-side-panel");
|
|
2295
2295
|
let e = this.previousFocusedElement;
|
|
2296
|
-
e != null && e.isConnected || (e = document.querySelector(`[paneltarget="${this.previousFocusedSelector}"]`)), (e == null ? void 0 : e.tagName.toLowerCase()) === "o-button" ? (
|
|
2296
|
+
e != null && e.isConnected || (e = document.querySelector(`[paneltarget="${this.previousFocusedSelector}"]`)), (e == null ? void 0 : e.tagName.toLowerCase()) === "o-button" ? (o = (n = (i = e.shadowRoot) == null ? void 0 : i.querySelector(".button")) == null ? void 0 : n.focus) == null || o.call(n) : e == null || e.focus();
|
|
2297
2297
|
const t = this.renderRoot.querySelector(".panel");
|
|
2298
2298
|
t && t.removeAttribute("aria-modal"), this.dispatchEvent(
|
|
2299
2299
|
new CustomEvent("close", { bubbles: !0, composed: !0 })
|
|
@@ -2740,10 +2740,10 @@ b([
|
|
|
2740
2740
|
g = b([
|
|
2741
2741
|
u("o-side-panel")
|
|
2742
2742
|
], g);
|
|
2743
|
-
var E5 = Object.defineProperty, M5 = Object.getOwnPropertyDescriptor, L = (e, t,
|
|
2744
|
-
for (var
|
|
2745
|
-
(r = e[s]) && (
|
|
2746
|
-
return n &&
|
|
2743
|
+
var E5 = Object.defineProperty, M5 = Object.getOwnPropertyDescriptor, L = (e, t, i, n) => {
|
|
2744
|
+
for (var o = n > 1 ? void 0 : n ? M5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
2745
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
2746
|
+
return n && o && E5(t, i, o), o;
|
|
2747
2747
|
};
|
|
2748
2748
|
const k5 = t2(p);
|
|
2749
2749
|
let m = class extends k5 {
|
|
@@ -2771,11 +2771,11 @@ let m = class extends k5 {
|
|
|
2771
2771
|
renderIcon(e) {
|
|
2772
2772
|
const t = e === "start" ? this.startIconModel : this.endIconModel;
|
|
2773
2773
|
if (!t) return d;
|
|
2774
|
-
const
|
|
2774
|
+
const i = N1[t].replace(
|
|
2775
2775
|
"<svg",
|
|
2776
2776
|
'<svg aria-hidden="true" focusable="false" part="svg"'
|
|
2777
2777
|
);
|
|
2778
|
-
return a`<span class="${e === "start" ? "icon-start" : "icon-end"}">${q(
|
|
2778
|
+
return a`<span class="${e === "start" ? "icon-start" : "icon-end"}">${q(i)}</span>`;
|
|
2779
2779
|
}
|
|
2780
2780
|
renderButton() {
|
|
2781
2781
|
const e = this.text || this.textsecond;
|
|
@@ -3088,10 +3088,10 @@ L([
|
|
|
3088
3088
|
m = L([
|
|
3089
3089
|
u("o-button")
|
|
3090
3090
|
], m);
|
|
3091
|
-
var Z5 = Object.defineProperty, _5 = Object.getOwnPropertyDescriptor, k1 = (e, t,
|
|
3092
|
-
for (var
|
|
3093
|
-
(r = e[s]) && (
|
|
3094
|
-
return n &&
|
|
3091
|
+
var Z5 = Object.defineProperty, _5 = Object.getOwnPropertyDescriptor, k1 = (e, t, i, n) => {
|
|
3092
|
+
for (var o = n > 1 ? void 0 : n ? _5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
3093
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
3094
|
+
return n && o && Z5(t, i, o), o;
|
|
3095
3095
|
};
|
|
3096
3096
|
let C1 = class extends p {
|
|
3097
3097
|
constructor() {
|
|
@@ -3212,12 +3212,12 @@ k1([
|
|
|
3212
3212
|
C1 = k1([
|
|
3213
3213
|
u("o-wishlist-button")
|
|
3214
3214
|
], C1);
|
|
3215
|
-
var S5 = Object.defineProperty, F5 = Object.getOwnPropertyDescriptor,
|
|
3216
|
-
for (var
|
|
3217
|
-
(r = e[s]) && (
|
|
3218
|
-
return n &&
|
|
3215
|
+
var S5 = Object.defineProperty, F5 = Object.getOwnPropertyDescriptor, m1 = (e, t, i, n) => {
|
|
3216
|
+
for (var o = n > 1 ? void 0 : n ? F5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
3217
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
3218
|
+
return n && o && S5(t, i, o), o;
|
|
3219
3219
|
};
|
|
3220
|
-
let
|
|
3220
|
+
let n1 = class extends p {
|
|
3221
3221
|
constructor() {
|
|
3222
3222
|
super(...arguments), this.href = "", this.target = "", this.template = "standard", this.inverse = !1, this.endIcon = !1, this.reverseEndIcon = !1;
|
|
3223
3223
|
}
|
|
@@ -3258,7 +3258,7 @@ let s1 = class extends p {
|
|
|
3258
3258
|
` : a`<span class="link-wrapper">${t}</span>`;
|
|
3259
3259
|
}
|
|
3260
3260
|
};
|
|
3261
|
-
|
|
3261
|
+
n1.styles = C`
|
|
3262
3262
|
:host {
|
|
3263
3263
|
cursor: pointer;
|
|
3264
3264
|
}
|
|
@@ -3345,31 +3345,31 @@ s1.styles = C`
|
|
|
3345
3345
|
}
|
|
3346
3346
|
}
|
|
3347
3347
|
`;
|
|
3348
|
-
|
|
3348
|
+
m1([
|
|
3349
3349
|
l({ type: String })
|
|
3350
|
-
],
|
|
3351
|
-
|
|
3350
|
+
], n1.prototype, "href", 2);
|
|
3351
|
+
m1([
|
|
3352
3352
|
l({ type: String })
|
|
3353
|
-
],
|
|
3354
|
-
|
|
3353
|
+
], n1.prototype, "target", 2);
|
|
3354
|
+
m1([
|
|
3355
3355
|
l({ type: String, reflect: !0 })
|
|
3356
|
-
],
|
|
3357
|
-
|
|
3356
|
+
], n1.prototype, "template", 2);
|
|
3357
|
+
m1([
|
|
3358
3358
|
l({ type: Boolean, reflect: !0 })
|
|
3359
|
-
],
|
|
3360
|
-
|
|
3359
|
+
], n1.prototype, "inverse", 2);
|
|
3360
|
+
m1([
|
|
3361
3361
|
l({ type: Boolean, reflect: !0 })
|
|
3362
|
-
],
|
|
3363
|
-
|
|
3362
|
+
], n1.prototype, "endIcon", 2);
|
|
3363
|
+
m1([
|
|
3364
3364
|
l({ type: Boolean, reflect: !0 })
|
|
3365
|
-
],
|
|
3366
|
-
|
|
3365
|
+
], n1.prototype, "reverseEndIcon", 2);
|
|
3366
|
+
n1 = m1([
|
|
3367
3367
|
u("o-link")
|
|
3368
|
-
],
|
|
3369
|
-
var O5 = Object.defineProperty, A5 = Object.getOwnPropertyDescriptor,
|
|
3370
|
-
for (var
|
|
3371
|
-
(r = e[s]) && (
|
|
3372
|
-
return n &&
|
|
3368
|
+
], n1);
|
|
3369
|
+
var O5 = Object.defineProperty, A5 = Object.getOwnPropertyDescriptor, o2 = (e, t, i, n) => {
|
|
3370
|
+
for (var o = n > 1 ? void 0 : n ? A5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
3371
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
3372
|
+
return n && o && O5(t, i, o), o;
|
|
3373
3373
|
};
|
|
3374
3374
|
let H1 = class extends p {
|
|
3375
3375
|
constructor() {
|
|
@@ -3378,9 +3378,9 @@ let H1 = class extends p {
|
|
|
3378
3378
|
getStarKeys() {
|
|
3379
3379
|
const e = [];
|
|
3380
3380
|
for (let t = 0; t < 5; t++) {
|
|
3381
|
-
const
|
|
3381
|
+
const i = this.rating - t;
|
|
3382
3382
|
let n;
|
|
3383
|
-
|
|
3383
|
+
i >= 1 ? n = 100 : i <= 0 ? n = 0 : n = Math.round(i * 100 / 25) * 25, e.push(`star-${n}`);
|
|
3384
3384
|
}
|
|
3385
3385
|
return e;
|
|
3386
3386
|
}
|
|
@@ -3432,22 +3432,22 @@ H1.styles = C`
|
|
|
3432
3432
|
cursor: pointer;
|
|
3433
3433
|
}
|
|
3434
3434
|
`;
|
|
3435
|
-
|
|
3435
|
+
o2([
|
|
3436
3436
|
l({ type: Number })
|
|
3437
3437
|
], H1.prototype, "rating", 2);
|
|
3438
|
-
|
|
3438
|
+
o2([
|
|
3439
3439
|
l({ type: String })
|
|
3440
3440
|
], H1.prototype, "reviewCount", 2);
|
|
3441
|
-
|
|
3441
|
+
o2([
|
|
3442
3442
|
l({ type: String })
|
|
3443
3443
|
], H1.prototype, "href", 2);
|
|
3444
|
-
H1 =
|
|
3444
|
+
H1 = o2([
|
|
3445
3445
|
u("o-rating")
|
|
3446
3446
|
], H1);
|
|
3447
|
-
var I5 = Object.defineProperty, P5 = Object.getOwnPropertyDescriptor, u1 = (e, t,
|
|
3448
|
-
for (var
|
|
3449
|
-
(r = e[s]) && (
|
|
3450
|
-
return n &&
|
|
3447
|
+
var I5 = Object.defineProperty, P5 = Object.getOwnPropertyDescriptor, u1 = (e, t, i, n) => {
|
|
3448
|
+
for (var o = n > 1 ? void 0 : n ? P5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
3449
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
3450
|
+
return n && o && I5(t, i, o), o;
|
|
3451
3451
|
};
|
|
3452
3452
|
let X = class extends p {
|
|
3453
3453
|
constructor() {
|
|
@@ -3496,18 +3496,18 @@ let X = class extends p {
|
|
|
3496
3496
|
this.disabledIndexes.includes(e) || (this.activeIndex = e, this.swiperInstance && typeof this.swiperInstance.slideTo == "function" && this.swiperInstance.slideTo(e), this.dispatchEvent(new CustomEvent("thumbnail-select", { detail: { index: e } })));
|
|
3497
3497
|
}
|
|
3498
3498
|
onFocus(e) {
|
|
3499
|
-
const t = e.currentTarget,
|
|
3500
|
-
this.focusedIndex =
|
|
3501
|
-
|
|
3499
|
+
const t = e.currentTarget, i = Number(t.dataset.index);
|
|
3500
|
+
this.focusedIndex = i, this.renderRoot.querySelectorAll(".thumb").forEach((o) => {
|
|
3501
|
+
o.classList.remove("a--tabfocus");
|
|
3502
3502
|
}), t.classList.add("a--tabfocus"), this.requestUpdate();
|
|
3503
3503
|
}
|
|
3504
3504
|
onFocusOut(e) {
|
|
3505
|
-
const t = e.currentTarget,
|
|
3506
|
-
(!n || this.shadowRoot && !this.shadowRoot.contains(n)) && (this.renderRoot.querySelectorAll(".thumb").forEach((r) => r.classList.remove("a--tabfocus")),
|
|
3505
|
+
const t = e.currentTarget, i = Number(t.dataset.index), n = e.relatedTarget;
|
|
3506
|
+
(!n || this.shadowRoot && !this.shadowRoot.contains(n)) && (this.renderRoot.querySelectorAll(".thumb").forEach((r) => r.classList.remove("a--tabfocus")), i === this.lastIndex ? this.dispatchEvent(new CustomEvent("thumb-exit", {
|
|
3507
3507
|
detail: { from: "last", direction: "unspecified" },
|
|
3508
3508
|
bubbles: !0,
|
|
3509
3509
|
composed: !0
|
|
3510
|
-
})) :
|
|
3510
|
+
})) : i === 0 && this.dispatchEvent(new CustomEvent("thumb-exit", {
|
|
3511
3511
|
detail: { from: "first", direction: "unspecified" },
|
|
3512
3512
|
bubbles: !0,
|
|
3513
3513
|
composed: !0
|
|
@@ -3517,13 +3517,13 @@ let X = class extends p {
|
|
|
3517
3517
|
return a`
|
|
3518
3518
|
<ul class="scroll-container" style="max-width: ${this.maxWidth};">
|
|
3519
3519
|
${this.thumbnails.map((e, t) => {
|
|
3520
|
-
const
|
|
3520
|
+
const i = this.disabledIndexes.includes(t), n = this.activeIndex === t, o = e.type === "video", s = o ? `video ${t}` : `${this.altressource} ${t + 1}`;
|
|
3521
3521
|
return a`
|
|
3522
3522
|
<li class="thumb-wrapper">
|
|
3523
3523
|
<button
|
|
3524
3524
|
class="thumb"
|
|
3525
3525
|
data-index="${t}"
|
|
3526
|
-
?disabled=${
|
|
3526
|
+
?disabled=${i}
|
|
3527
3527
|
aria-current=${n ? "true" : "false"}
|
|
3528
3528
|
@click=${() => this.selectThumbnail(t)}
|
|
3529
3529
|
@keydown=${this.handleKeyDown}
|
|
@@ -3532,7 +3532,7 @@ let X = class extends p {
|
|
|
3532
3532
|
>
|
|
3533
3533
|
<img alt="${s}" src="${e.src}" />
|
|
3534
3534
|
</button>
|
|
3535
|
-
${
|
|
3535
|
+
${o ? a`<div class="play-icon-wrapper">${this.playerIconTemplate}</div>` : null}
|
|
3536
3536
|
</li>
|
|
3537
3537
|
`;
|
|
3538
3538
|
})}
|
|
@@ -3669,10 +3669,10 @@ u1([
|
|
|
3669
3669
|
X = u1([
|
|
3670
3670
|
u("thumbnail-navigation")
|
|
3671
3671
|
], X);
|
|
3672
|
-
var z5 = Object.defineProperty, D5 = Object.getOwnPropertyDescriptor, x2 = (e, t,
|
|
3673
|
-
for (var
|
|
3674
|
-
(r = e[s]) && (
|
|
3675
|
-
return n &&
|
|
3672
|
+
var z5 = Object.defineProperty, D5 = Object.getOwnPropertyDescriptor, x2 = (e, t, i, n) => {
|
|
3673
|
+
for (var o = n > 1 ? void 0 : n ? D5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
3674
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
3675
|
+
return n && o && z5(t, i, o), o;
|
|
3676
3676
|
};
|
|
3677
3677
|
let z1 = class extends p {
|
|
3678
3678
|
constructor() {
|
|
@@ -3750,10 +3750,10 @@ x2([
|
|
|
3750
3750
|
z1 = x2([
|
|
3751
3751
|
u("o-tag")
|
|
3752
3752
|
], z1);
|
|
3753
|
-
var T5 = Object.defineProperty, j5 = Object.getOwnPropertyDescriptor, $2 = (e, t,
|
|
3754
|
-
for (var
|
|
3755
|
-
(r = e[s]) && (
|
|
3756
|
-
return n &&
|
|
3753
|
+
var T5 = Object.defineProperty, j5 = Object.getOwnPropertyDescriptor, $2 = (e, t, i, n) => {
|
|
3754
|
+
for (var o = n > 1 ? void 0 : n ? j5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
3755
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
3756
|
+
return n && o && T5(t, i, o), o;
|
|
3757
3757
|
};
|
|
3758
3758
|
let D1 = class extends p {
|
|
3759
3759
|
constructor() {
|
|
@@ -3870,10 +3870,10 @@ $2([
|
|
|
3870
3870
|
D1 = $2([
|
|
3871
3871
|
u("o-tooltip")
|
|
3872
3872
|
], D1);
|
|
3873
|
-
var R5 = Object.defineProperty, U5 = Object.getOwnPropertyDescriptor, a1 = (e, t,
|
|
3874
|
-
for (var
|
|
3875
|
-
(r = e[s]) && (
|
|
3876
|
-
return n &&
|
|
3873
|
+
var R5 = Object.defineProperty, U5 = Object.getOwnPropertyDescriptor, a1 = (e, t, i, n) => {
|
|
3874
|
+
for (var o = n > 1 ? void 0 : n ? U5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
3875
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
3876
|
+
return n && o && R5(t, i, o), o;
|
|
3877
3877
|
};
|
|
3878
3878
|
let N = class extends p {
|
|
3879
3879
|
constructor() {
|
|
@@ -3938,13 +3938,13 @@ let N = class extends p {
|
|
|
3938
3938
|
}
|
|
3939
3939
|
}
|
|
3940
3940
|
updated(e) {
|
|
3941
|
-
this.options.length > 0 && (this.options.some((
|
|
3941
|
+
this.options.length > 0 && (this.options.some((i) => i.value === this.value) || (this.value = this.options[0].value));
|
|
3942
3942
|
}
|
|
3943
3943
|
render() {
|
|
3944
3944
|
const e = N1["occ-check-outlined"].replace(
|
|
3945
3945
|
"<svg",
|
|
3946
3946
|
'<svg aria-hidden="true" focusable="false" part="svg"'
|
|
3947
|
-
), t = this.options.find((
|
|
3947
|
+
), t = this.options.find((i) => i.value === this.value);
|
|
3948
3948
|
return a`
|
|
3949
3949
|
<button
|
|
3950
3950
|
role="combobox"
|
|
@@ -3974,22 +3974,22 @@ let N = class extends p {
|
|
|
3974
3974
|
style=${`width: ${this.width};`}
|
|
3975
3975
|
>
|
|
3976
3976
|
${this.options.map(
|
|
3977
|
-
(
|
|
3977
|
+
(i, n) => a`
|
|
3978
3978
|
<li
|
|
3979
3979
|
id="option-${n}"
|
|
3980
3980
|
role="option"
|
|
3981
|
-
aria-selected="${
|
|
3981
|
+
aria-selected="${i.value === this.value}"
|
|
3982
3982
|
tabindex="${n === this.activeIndex ? "0" : "-1"}"
|
|
3983
|
-
class="${n === this.activeIndex ? "active" : ""} ${
|
|
3984
|
-
@click=${() => this.selectOption(
|
|
3983
|
+
class="${n === this.activeIndex ? "active" : ""} ${i.disabled ? "disabled" : ""}"
|
|
3984
|
+
@click=${() => this.selectOption(i)}
|
|
3985
3985
|
>
|
|
3986
|
-
${
|
|
3987
|
-
<a href="${
|
|
3988
|
-
<span>${
|
|
3989
|
-
${
|
|
3986
|
+
${i.url ? a`
|
|
3987
|
+
<a href="${i.url}">
|
|
3988
|
+
<span>${i.label}</span>
|
|
3989
|
+
${i.value === this.value ? a`<span class="check">${q(e)}</span>` : null}
|
|
3990
3990
|
</a>` : a`
|
|
3991
|
-
<span>${
|
|
3992
|
-
${
|
|
3991
|
+
<span>${i.label}</span>
|
|
3992
|
+
${i.value === this.value ? a`<span class="check">${q(e)}</span>` : null}`}
|
|
3993
3993
|
</li>`
|
|
3994
3994
|
)}
|
|
3995
3995
|
</ul>` : null}
|
|
@@ -4164,10 +4164,10 @@ a1([
|
|
|
4164
4164
|
N = a1([
|
|
4165
4165
|
u("o-dropdown")
|
|
4166
4166
|
], N);
|
|
4167
|
-
var q5 = Object.getOwnPropertyDescriptor, N5 = (e, t,
|
|
4168
|
-
for (var
|
|
4169
|
-
(r = e[s]) && (
|
|
4170
|
-
return
|
|
4167
|
+
var q5 = Object.getOwnPropertyDescriptor, N5 = (e, t, i, n) => {
|
|
4168
|
+
for (var o = n > 1 ? void 0 : n ? q5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
4169
|
+
(r = e[s]) && (o = r(o) || o);
|
|
4170
|
+
return o;
|
|
4171
4171
|
};
|
|
4172
4172
|
let u2 = class extends p {
|
|
4173
4173
|
render() {
|
|
@@ -4220,10 +4220,10 @@ u2.styles = C`
|
|
|
4220
4220
|
u2 = N5([
|
|
4221
4221
|
u("o-dots")
|
|
4222
4222
|
], u2);
|
|
4223
|
-
var K5 = Object.defineProperty, W5 = Object.getOwnPropertyDescriptor,
|
|
4224
|
-
for (var
|
|
4225
|
-
(r = e[s]) && (
|
|
4226
|
-
return n &&
|
|
4223
|
+
var K5 = Object.defineProperty, W5 = Object.getOwnPropertyDescriptor, J = (e, t, i, n) => {
|
|
4224
|
+
for (var o = n > 1 ? void 0 : n ? W5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
4225
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
4226
|
+
return n && o && K5(t, i, o), o;
|
|
4227
4227
|
};
|
|
4228
4228
|
let P = class extends p {
|
|
4229
4229
|
constructor() {
|
|
@@ -4231,8 +4231,8 @@ let P = class extends p {
|
|
|
4231
4231
|
this.contains(e.target) || (this.open = !1, this.activeIndex = -1, this._stopObserveVisibleItems());
|
|
4232
4232
|
};
|
|
4233
4233
|
}
|
|
4234
|
-
_getKey(e, t,
|
|
4235
|
-
return (t == null ? void 0 : t.productId) ?? e.value ?? String(
|
|
4234
|
+
_getKey(e, t, i) {
|
|
4235
|
+
return (t == null ? void 0 : t.productId) ?? e.value ?? String(i);
|
|
4236
4236
|
}
|
|
4237
4237
|
_scheduleFlush() {
|
|
4238
4238
|
this._flushTimer || (this._flushTimer = window.setTimeout(() => {
|
|
@@ -4253,13 +4253,13 @@ let P = class extends p {
|
|
|
4253
4253
|
);
|
|
4254
4254
|
}
|
|
4255
4255
|
_emitTrackingEvent(e, t) {
|
|
4256
|
-
const
|
|
4257
|
-
if (!
|
|
4256
|
+
const i = e == null ? void 0 : e.dataproduct;
|
|
4257
|
+
if (!i) return;
|
|
4258
4258
|
let n;
|
|
4259
4259
|
try {
|
|
4260
|
-
n = JSON.parse(
|
|
4261
|
-
} catch (
|
|
4262
|
-
console.warn("Invalid dataproduct JSON:",
|
|
4260
|
+
n = JSON.parse(i);
|
|
4261
|
+
} catch (o) {
|
|
4262
|
+
console.warn("Invalid dataproduct JSON:", i, o);
|
|
4263
4263
|
return;
|
|
4264
4264
|
}
|
|
4265
4265
|
this.dispatchEvent(
|
|
@@ -4283,15 +4283,15 @@ let P = class extends p {
|
|
|
4283
4283
|
this._stopObserveVisibleItems();
|
|
4284
4284
|
const e = (t = this.renderRoot) == null ? void 0 : t.querySelector("#dropdown-listbox");
|
|
4285
4285
|
e && (this._io = new IntersectionObserver(
|
|
4286
|
-
(
|
|
4286
|
+
(i) => {
|
|
4287
4287
|
if (this.open)
|
|
4288
|
-
for (const n of
|
|
4288
|
+
for (const n of i) {
|
|
4289
4289
|
if (!n.isIntersecting) continue;
|
|
4290
|
-
const
|
|
4290
|
+
const o = n.target, s = o.dataset.index;
|
|
4291
4291
|
if (!s) continue;
|
|
4292
4292
|
const r = Number(s), c = this.options[r];
|
|
4293
4293
|
if (!c || c.disabled) continue;
|
|
4294
|
-
const h = c.dataproduct ??
|
|
4294
|
+
const h = c.dataproduct ?? o.dataset.product;
|
|
4295
4295
|
if (!h) continue;
|
|
4296
4296
|
let f;
|
|
4297
4297
|
try {
|
|
@@ -4308,9 +4308,9 @@ let P = class extends p {
|
|
|
4308
4308
|
root: e,
|
|
4309
4309
|
threshold: 0.75
|
|
4310
4310
|
}
|
|
4311
|
-
), e.querySelectorAll("li[role='option']").forEach((
|
|
4311
|
+
), e.querySelectorAll("li[role='option']").forEach((i) => {
|
|
4312
4312
|
var n;
|
|
4313
|
-
return (n = this._io) == null ? void 0 : n.observe(
|
|
4313
|
+
return (n = this._io) == null ? void 0 : n.observe(i);
|
|
4314
4314
|
}));
|
|
4315
4315
|
}
|
|
4316
4316
|
_stopObserveVisibleItems() {
|
|
@@ -4376,7 +4376,7 @@ let P = class extends p {
|
|
|
4376
4376
|
const e = N1["occ-check-outlined"].replace(
|
|
4377
4377
|
"<svg",
|
|
4378
4378
|
'<svg aria-hidden="true" focusable="false" part="svg"'
|
|
4379
|
-
), t = this.options.find((
|
|
4379
|
+
), t = this.options.find((i) => i.value === this.value);
|
|
4380
4380
|
return a`
|
|
4381
4381
|
<button
|
|
4382
4382
|
role="combobox"
|
|
@@ -4416,27 +4416,27 @@ let P = class extends p {
|
|
|
4416
4416
|
style=${`width: ${this.width};`}
|
|
4417
4417
|
>
|
|
4418
4418
|
${this.options.map(
|
|
4419
|
-
(
|
|
4419
|
+
(i, n) => a`
|
|
4420
4420
|
<li
|
|
4421
4421
|
id="option-${n}"
|
|
4422
4422
|
role="option"
|
|
4423
4423
|
data-index="${n}"
|
|
4424
|
-
data-product="${V(
|
|
4425
|
-
aria-selected="${
|
|
4426
|
-
aria-disabled="${
|
|
4424
|
+
data-product="${V(i.dataproduct)}"
|
|
4425
|
+
aria-selected="${i.value === this.value}"
|
|
4426
|
+
aria-disabled="${i.disabled ? "true" : "false"}"
|
|
4427
4427
|
tabindex="${n === this.activeIndex ? "0" : "-1"}"
|
|
4428
|
-
class="${n === this.activeIndex ? "active" : ""} ${
|
|
4429
|
-
@click=${(
|
|
4430
|
-
this._emitTrackingEvent(
|
|
4428
|
+
class="${n === this.activeIndex ? "active" : ""} ${i.disabled ? "disabled" : ""}"
|
|
4429
|
+
@click=${(o) => {
|
|
4430
|
+
this._emitTrackingEvent(i, n), this.selectOption(i);
|
|
4431
4431
|
}}
|
|
4432
4432
|
>
|
|
4433
4433
|
|
|
4434
|
-
<a href="${V(
|
|
4435
|
-
<img alt="${V(
|
|
4436
|
-
<span class="label">${
|
|
4434
|
+
<a href="${V(i.url)}">
|
|
4435
|
+
<img alt="${V(i.label)}" src="${V(i.imgurl)}" />
|
|
4436
|
+
<span class="label">${i.label}</span>
|
|
4437
4437
|
<div class="right">
|
|
4438
|
-
<span class="additional-text">${V(
|
|
4439
|
-
${
|
|
4438
|
+
<span class="additional-text">${V(i.additionaltext)}</span>
|
|
4439
|
+
${i.value === this.value && !i.additionaltext ? a`
|
|
4440
4440
|
<span class="check">${q(e)}</span>` : null}
|
|
4441
4441
|
</div>
|
|
4442
4442
|
</a>
|
|
@@ -4626,34 +4626,34 @@ P.styles = C`
|
|
|
4626
4626
|
display: none;
|
|
4627
4627
|
}
|
|
4628
4628
|
`;
|
|
4629
|
-
|
|
4629
|
+
J([
|
|
4630
4630
|
l({ type: Array, reflect: !0 })
|
|
4631
4631
|
], P.prototype, "options", 2);
|
|
4632
|
-
|
|
4632
|
+
J([
|
|
4633
4633
|
l({ type: String, reflect: !0 })
|
|
4634
4634
|
], P.prototype, "value", 2);
|
|
4635
|
-
|
|
4635
|
+
J([
|
|
4636
4636
|
l({ type: String, reflect: !0 })
|
|
4637
4637
|
], P.prototype, "name", 2);
|
|
4638
|
-
|
|
4638
|
+
J([
|
|
4639
4639
|
l({ type: String, reflect: !0 })
|
|
4640
4640
|
], P.prototype, "additionaltext", 2);
|
|
4641
|
-
|
|
4641
|
+
J([
|
|
4642
4642
|
l({ type: Boolean, reflect: !0 })
|
|
4643
4643
|
], P.prototype, "disabled", 2);
|
|
4644
|
-
|
|
4644
|
+
J([
|
|
4645
4645
|
l({ type: String, reflect: !0 })
|
|
4646
4646
|
], P.prototype, "width", 2);
|
|
4647
|
-
|
|
4647
|
+
J([
|
|
4648
4648
|
j()
|
|
4649
4649
|
], P.prototype, "open", 2);
|
|
4650
|
-
|
|
4650
|
+
J([
|
|
4651
4651
|
j()
|
|
4652
4652
|
], P.prototype, "activeIndex", 2);
|
|
4653
|
-
|
|
4653
|
+
J([
|
|
4654
4654
|
j()
|
|
4655
4655
|
], P.prototype, "menuWidth", 2);
|
|
4656
|
-
P =
|
|
4656
|
+
P = J([
|
|
4657
4657
|
u("o-dropdown-variant")
|
|
4658
4658
|
], P);
|
|
4659
4659
|
/**
|
|
@@ -4661,36 +4661,36 @@ P = Q([
|
|
|
4661
4661
|
* Copyright 2018 Google LLC
|
|
4662
4662
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
4663
4663
|
*/
|
|
4664
|
-
const J2 = "important", G5 = " !" + J2, X5 = e2(class extends
|
|
4664
|
+
const J2 = "important", G5 = " !" + J2, X5 = e2(class extends i2 {
|
|
4665
4665
|
constructor(e) {
|
|
4666
4666
|
var t;
|
|
4667
|
-
if (super(e), e.type !==
|
|
4667
|
+
if (super(e), e.type !== o1.ATTRIBUTE || e.name !== "style" || ((t = e.strings) == null ? void 0 : t.length) > 2) throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.");
|
|
4668
4668
|
}
|
|
4669
4669
|
render(e) {
|
|
4670
|
-
return Object.keys(e).reduce((t,
|
|
4671
|
-
const n = e[
|
|
4672
|
-
return n == null ? t : t + `${
|
|
4670
|
+
return Object.keys(e).reduce((t, i) => {
|
|
4671
|
+
const n = e[i];
|
|
4672
|
+
return n == null ? t : t + `${i = i.includes("-") ? i : i.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g, "-$&").toLowerCase()}:${n};`;
|
|
4673
4673
|
}, "");
|
|
4674
4674
|
}
|
|
4675
4675
|
update(e, [t]) {
|
|
4676
|
-
const { style:
|
|
4676
|
+
const { style: i } = e.element;
|
|
4677
4677
|
if (this.ft === void 0) return this.ft = new Set(Object.keys(t)), this.render(t);
|
|
4678
|
-
for (const n of this.ft) t[n] == null && (this.ft.delete(n), n.includes("-") ?
|
|
4678
|
+
for (const n of this.ft) t[n] == null && (this.ft.delete(n), n.includes("-") ? i.removeProperty(n) : i[n] = null);
|
|
4679
4679
|
for (const n in t) {
|
|
4680
|
-
const
|
|
4681
|
-
if (
|
|
4680
|
+
const o = t[n];
|
|
4681
|
+
if (o != null) {
|
|
4682
4682
|
this.ft.add(n);
|
|
4683
|
-
const s = typeof
|
|
4684
|
-
n.includes("-") || s ?
|
|
4683
|
+
const s = typeof o == "string" && o.endsWith(G5);
|
|
4684
|
+
n.includes("-") || s ? i.setProperty(n, s ? o.slice(0, -11) : o, s ? J2 : "") : i[n] = o;
|
|
4685
4685
|
}
|
|
4686
4686
|
}
|
|
4687
4687
|
return A;
|
|
4688
4688
|
}
|
|
4689
4689
|
});
|
|
4690
|
-
var Y5 = Object.defineProperty, J5 = Object.getOwnPropertyDescriptor, n2 = (e, t,
|
|
4691
|
-
for (var
|
|
4692
|
-
(r = e[s]) && (
|
|
4693
|
-
return n &&
|
|
4690
|
+
var Y5 = Object.defineProperty, J5 = Object.getOwnPropertyDescriptor, n2 = (e, t, i, n) => {
|
|
4691
|
+
for (var o = n > 1 ? void 0 : n ? J5(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
4692
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
4693
|
+
return n && o && Y5(t, i, o), o;
|
|
4694
4694
|
};
|
|
4695
4695
|
let V1 = class extends p {
|
|
4696
4696
|
constructor() {
|
|
@@ -4700,17 +4700,17 @@ let V1 = class extends p {
|
|
|
4700
4700
|
const e = (r) => {
|
|
4701
4701
|
const c = document.createElement("textarea");
|
|
4702
4702
|
return c.innerHTML = r, c.value;
|
|
4703
|
-
}, t = this.option && this.option.clickable,
|
|
4703
|
+
}, t = this.option && this.option.clickable, i = {
|
|
4704
4704
|
width: `${this.imageSize}px`,
|
|
4705
4705
|
height: `${this.imageSize}px`
|
|
4706
|
-
}, n = this.option && this.option.title ? e(this.option.title) : "",
|
|
4707
|
-
${this.option.imgurl ? a`<img src="${this.option.imgurl}" alt="${V(n)}" aria-hidden="true" style=${X5(
|
|
4706
|
+
}, n = this.option && this.option.title ? e(this.option.title) : "", o = this.option && this.option.description ? e(this.option.description) : "", s = a`
|
|
4707
|
+
${this.option.imgurl ? a`<img src="${this.option.imgurl}" alt="${V(n)}" aria-hidden="true" style=${X5(i)} />` : ""}
|
|
4708
4708
|
<div class="m-reassurance-content">
|
|
4709
4709
|
<h3 class="a-reassurance-text">${V(n)}</h3>
|
|
4710
|
-
<p class="a-reassurance-description">${V(
|
|
4710
|
+
<p class="a-reassurance-description">${V(o)}</p>
|
|
4711
4711
|
</div>
|
|
4712
4712
|
`;
|
|
4713
|
-
return t ? a`<a href="${V(this.option.url)}" class="reassurance-item clickable">${s}</a>` : a`<div class="reassurance-item ${this.fullwidth ? "fullwidth" : ""}">${s}</div>`;
|
|
4713
|
+
return t ? a`<a href="${V(this.option.url)}" class="reassurance-item ${this.fullwidth ? "fullwidth" : ""} clickable">${s}</a>` : a`<div class="reassurance-item ${this.fullwidth ? "fullwidth" : ""}">${s}</div>`;
|
|
4714
4714
|
}
|
|
4715
4715
|
};
|
|
4716
4716
|
V1.styles = C`
|
|
@@ -4730,11 +4730,6 @@ V1.styles = C`
|
|
|
4730
4730
|
padding: var(--spacing-xl);
|
|
4731
4731
|
}
|
|
4732
4732
|
|
|
4733
|
-
.tile.fullwidth {
|
|
4734
|
-
width: 100%;
|
|
4735
|
-
max-width: 100%;
|
|
4736
|
-
}
|
|
4737
|
-
|
|
4738
4733
|
.reassurance-item.fullwidth {
|
|
4739
4734
|
width: 100%;
|
|
4740
4735
|
max-width: 100%;
|
|
@@ -4817,10 +4812,10 @@ n2([
|
|
|
4817
4812
|
V1 = n2([
|
|
4818
4813
|
u("o-reassurance")
|
|
4819
4814
|
], V1);
|
|
4820
|
-
var Q5 = Object.defineProperty, t6 = Object.getOwnPropertyDescriptor, c1 = (e, t,
|
|
4821
|
-
for (var
|
|
4822
|
-
(r = e[s]) && (
|
|
4823
|
-
return n &&
|
|
4815
|
+
var Q5 = Object.defineProperty, t6 = Object.getOwnPropertyDescriptor, c1 = (e, t, i, n) => {
|
|
4816
|
+
for (var o = n > 1 ? void 0 : n ? t6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
4817
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
4818
|
+
return n && o && Q5(t, i, o), o;
|
|
4824
4819
|
};
|
|
4825
4820
|
const e6 = t2(p);
|
|
4826
4821
|
let z = class extends e6 {
|
|
@@ -4829,8 +4824,8 @@ let z = class extends e6 {
|
|
|
4829
4824
|
}
|
|
4830
4825
|
handleClick(e) {
|
|
4831
4826
|
this.selected || (this.selected = !0);
|
|
4832
|
-
const t = { selected: this.selected },
|
|
4833
|
-
this.dispatchEvent(
|
|
4827
|
+
const t = { selected: this.selected }, i = new CustomEvent("selected", { detail: t, bubbles: !0, composed: !0, cancelable: !0 });
|
|
4828
|
+
this.dispatchEvent(i), i.defaultPrevented && e.preventDefault(), this.selected = t.selected;
|
|
4834
4829
|
}
|
|
4835
4830
|
render() {
|
|
4836
4831
|
const e = this.text;
|
|
@@ -4968,10 +4963,10 @@ c1([
|
|
|
4968
4963
|
z = c1([
|
|
4969
4964
|
u("o-chip")
|
|
4970
4965
|
], z);
|
|
4971
|
-
var
|
|
4972
|
-
for (var
|
|
4973
|
-
(r = e[s]) && (
|
|
4974
|
-
return n &&
|
|
4966
|
+
var i6 = Object.defineProperty, o6 = Object.getOwnPropertyDescriptor, B2 = (e, t, i, n) => {
|
|
4967
|
+
for (var o = n > 1 ? void 0 : n ? o6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
4968
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
4969
|
+
return n && o && i6(t, i, o), o;
|
|
4975
4970
|
};
|
|
4976
4971
|
let T1 = class extends p {
|
|
4977
4972
|
constructor() {
|
|
@@ -4979,8 +4974,8 @@ let T1 = class extends p {
|
|
|
4979
4974
|
}
|
|
4980
4975
|
onChipSelected(e) {
|
|
4981
4976
|
const t = e.target instanceof z ? e.target : null;
|
|
4982
|
-
t != null && t.link || (this.name = (t == null ? void 0 : t.name) || "", this.value = (t == null ? void 0 : t.value) || "", this.querySelectorAll("o-chip").forEach((
|
|
4983
|
-
|
|
4977
|
+
t != null && t.link || (this.name = (t == null ? void 0 : t.name) || "", this.value = (t == null ? void 0 : t.value) || "", this.querySelectorAll("o-chip").forEach((i) => {
|
|
4978
|
+
i !== t && (i.selected = !1);
|
|
4984
4979
|
}));
|
|
4985
4980
|
}
|
|
4986
4981
|
render() {
|
|
@@ -5006,10 +5001,10 @@ B2([
|
|
|
5006
5001
|
T1 = B2([
|
|
5007
5002
|
u("o-chipset")
|
|
5008
5003
|
], T1);
|
|
5009
|
-
var n6 = Object.defineProperty, s6 = Object.getOwnPropertyDescriptor,
|
|
5010
|
-
for (var
|
|
5011
|
-
(r = e[s]) && (
|
|
5012
|
-
return n &&
|
|
5004
|
+
var n6 = Object.defineProperty, s6 = Object.getOwnPropertyDescriptor, Q = (e, t, i, n) => {
|
|
5005
|
+
for (var o = n > 1 ? void 0 : n ? s6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
5006
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
5007
|
+
return n && o && n6(t, i, o), o;
|
|
5013
5008
|
};
|
|
5014
5009
|
const r6 = t2(p);
|
|
5015
5010
|
let D = class extends r6 {
|
|
@@ -5020,8 +5015,8 @@ let D = class extends r6 {
|
|
|
5020
5015
|
if (e instanceof KeyboardEvent && e.key !== "Enter" && e.key !== " ")
|
|
5021
5016
|
return;
|
|
5022
5017
|
this.selected = !this.selected;
|
|
5023
|
-
const t = { selected: this.selected },
|
|
5024
|
-
this.dispatchEvent(
|
|
5018
|
+
const t = { selected: this.selected }, i = new CustomEvent("selected", { detail: t, bubbles: !0, composed: !0, cancelable: !0 });
|
|
5019
|
+
this.dispatchEvent(i), i.defaultPrevented && e.preventDefault(), this.selected = t.selected;
|
|
5025
5020
|
}
|
|
5026
5021
|
crossIcon() {
|
|
5027
5022
|
return a`<o-icon-button size="xsmall" icon="occ-close-outlined" bgstyle="none-light"></o-icon-button>`;
|
|
@@ -5181,49 +5176,49 @@ D.styles = C`
|
|
|
5181
5176
|
stroke-linecap: round;
|
|
5182
5177
|
}
|
|
5183
5178
|
`;
|
|
5184
|
-
|
|
5179
|
+
Q([
|
|
5185
5180
|
l({ reflect: !0 })
|
|
5186
5181
|
], D.prototype, "name", 2);
|
|
5187
|
-
|
|
5182
|
+
Q([
|
|
5188
5183
|
l({ reflect: !0 })
|
|
5189
5184
|
], D.prototype, "value", 2);
|
|
5190
|
-
|
|
5185
|
+
Q([
|
|
5191
5186
|
l({ type: String, reflect: !0 })
|
|
5192
5187
|
], D.prototype, "type", 2);
|
|
5193
|
-
|
|
5188
|
+
Q([
|
|
5194
5189
|
l({ type: String, reflect: !0 })
|
|
5195
5190
|
], D.prototype, "href", 2);
|
|
5196
|
-
|
|
5191
|
+
Q([
|
|
5197
5192
|
l({ type: String, reflect: !0, attribute: "data-href" })
|
|
5198
5193
|
], D.prototype, "dataHref", 2);
|
|
5199
|
-
|
|
5194
|
+
Q([
|
|
5200
5195
|
l({ type: String })
|
|
5201
5196
|
], D.prototype, "text", 2);
|
|
5202
|
-
|
|
5197
|
+
Q([
|
|
5203
5198
|
l({ type: Boolean, reflect: !0 })
|
|
5204
5199
|
], D.prototype, "selected", 2);
|
|
5205
|
-
|
|
5200
|
+
Q([
|
|
5206
5201
|
l({ type: Boolean, reflect: !0 })
|
|
5207
5202
|
], D.prototype, "disabled", 2);
|
|
5208
|
-
|
|
5203
|
+
Q([
|
|
5209
5204
|
l({ type: Boolean, reflect: !0 })
|
|
5210
5205
|
], D.prototype, "fullwidth", 2);
|
|
5211
|
-
D =
|
|
5206
|
+
D = Q([
|
|
5212
5207
|
u("o-filter-chip")
|
|
5213
5208
|
], D);
|
|
5214
|
-
var l6 = Object.defineProperty, R = (e, t,
|
|
5215
|
-
for (var
|
|
5216
|
-
(r = e[s]) && (
|
|
5217
|
-
return
|
|
5209
|
+
var l6 = Object.defineProperty, R = (e, t, i, n) => {
|
|
5210
|
+
for (var o = void 0, s = e.length - 1, r; s >= 0; s--)
|
|
5211
|
+
(r = e[s]) && (o = r(t, i, o) || o);
|
|
5212
|
+
return o && l6(t, i, o), o;
|
|
5218
5213
|
};
|
|
5219
5214
|
const E2 = class E2 extends p {
|
|
5220
5215
|
constructor() {
|
|
5221
5216
|
super(...arguments), this.type = "cart | chevron", this.titleProduct = "", this.volume = "", this.perLiter = "", this.mainPrice = "", this.imageUrl = "https://placehold.co/56x70", this.altImage = "", this.fullwidth = !1, this.tagText = "", this.outOfStock = !1;
|
|
5222
5217
|
}
|
|
5223
5218
|
onClick(t) {
|
|
5224
|
-
var n,
|
|
5225
|
-
const
|
|
5226
|
-
(n =
|
|
5219
|
+
var n, o, s;
|
|
5220
|
+
const i = t.target;
|
|
5221
|
+
(n = i == null ? void 0 : i.classList) != null && n.contains("add-to-bag") || (o = i == null ? void 0 : i.classList) != null && o.contains("js-availability-notify-details-cart") || ((s = this.onClickTile) == null || s.call(this), this.dispatchEvent(
|
|
5227
5222
|
new CustomEvent("tile-click", { bubbles: !0, composed: !0 })
|
|
5228
5223
|
));
|
|
5229
5224
|
}
|
|
@@ -5435,10 +5430,10 @@ R([
|
|
|
5435
5430
|
l({ attribute: !1 })
|
|
5436
5431
|
], k.prototype, "onClickIcon");
|
|
5437
5432
|
customElements.define("mini-tile", k);
|
|
5438
|
-
var a6 = Object.defineProperty, c6 = Object.getOwnPropertyDescriptor, s2 = (e, t,
|
|
5439
|
-
for (var
|
|
5440
|
-
(r = e[s]) && (
|
|
5441
|
-
return n &&
|
|
5433
|
+
var a6 = Object.defineProperty, c6 = Object.getOwnPropertyDescriptor, s2 = (e, t, i, n) => {
|
|
5434
|
+
for (var o = n > 1 ? void 0 : n ? c6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
5435
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
5436
|
+
return n && o && a6(t, i, o), o;
|
|
5442
5437
|
};
|
|
5443
5438
|
let E1 = class extends p {
|
|
5444
5439
|
constructor() {
|
|
@@ -5502,17 +5497,17 @@ s2([
|
|
|
5502
5497
|
E1 = s2([
|
|
5503
5498
|
u("o-badge")
|
|
5504
5499
|
], E1);
|
|
5505
|
-
var h6 = Object.defineProperty, d6 = Object.getOwnPropertyDescriptor, U = (e, t,
|
|
5506
|
-
for (var
|
|
5507
|
-
(r = e[s]) && (
|
|
5508
|
-
return n &&
|
|
5500
|
+
var h6 = Object.defineProperty, d6 = Object.getOwnPropertyDescriptor, U = (e, t, i, n) => {
|
|
5501
|
+
for (var o = n > 1 ? void 0 : n ? d6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
5502
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
5503
|
+
return n && o && h6(t, i, o), o;
|
|
5509
5504
|
};
|
|
5510
5505
|
let Z = class extends p {
|
|
5511
5506
|
constructor() {
|
|
5512
5507
|
super(...arguments), this.icon = "info", this.text = "Sample text", this.verticalanchor = "top", this.horizontalanchor = "right", this.verticaloffset = 24, this.horizontaloffset = 24, this.animationduration = 500, this.animationaxis = "horizontal", this.animated = !0, this.lifeduration = 5e3, this.multiline = !1;
|
|
5513
5508
|
}
|
|
5514
|
-
attributeChangedCallback(e, t,
|
|
5515
|
-
super.attributeChangedCallback(e, t,
|
|
5509
|
+
attributeChangedCallback(e, t, i) {
|
|
5510
|
+
super.attributeChangedCallback(e, t, i), e == "verticaloffset" && this.style.setProperty("--vertical-offset", i + "px"), e == "horizontaloffset" && this.style.setProperty("--horizontal-offset", i + "px"), e == "animationduration" && this.style.setProperty("--animation-duration", i + "ms");
|
|
5516
5511
|
}
|
|
5517
5512
|
/**
|
|
5518
5513
|
* Animate closing toast
|
|
@@ -5539,11 +5534,11 @@ let Z = class extends p {
|
|
|
5539
5534
|
}, 600);
|
|
5540
5535
|
}
|
|
5541
5536
|
firstUpdated() {
|
|
5542
|
-
var n,
|
|
5537
|
+
var n, o;
|
|
5543
5538
|
var e = this;
|
|
5544
|
-
const t = (n = this.renderRoot) == null ? void 0 : n.querySelector("o-icon-button"),
|
|
5545
|
-
if (
|
|
5546
|
-
const s = window.getComputedStyle(
|
|
5539
|
+
const t = (n = this.renderRoot) == null ? void 0 : n.querySelector("o-icon-button"), i = (o = this.renderRoot) == null ? void 0 : o.querySelector(".o-toast-text");
|
|
5540
|
+
if (i != null) {
|
|
5541
|
+
const s = window.getComputedStyle(i), r = parseInt(s.getPropertyValue("line-height").replace("px", "")), c = parseInt(s.getPropertyValue("height").replace("px", ""));
|
|
5547
5542
|
!isNaN(r) && !isNaN(c) && c > r && (this.multiline = !0);
|
|
5548
5543
|
}
|
|
5549
5544
|
t != null && t.addEventListener("click", function() {
|
|
@@ -5685,10 +5680,10 @@ U([
|
|
|
5685
5680
|
Z = U([
|
|
5686
5681
|
u("o-toast")
|
|
5687
5682
|
], Z);
|
|
5688
|
-
var p6 = Object.defineProperty, C6 = Object.getOwnPropertyDescriptor, K = (e, t,
|
|
5689
|
-
for (var
|
|
5690
|
-
(r = e[s]) && (
|
|
5691
|
-
return n &&
|
|
5683
|
+
var p6 = Object.defineProperty, C6 = Object.getOwnPropertyDescriptor, K = (e, t, i, n) => {
|
|
5684
|
+
for (var o = n > 1 ? void 0 : n ? C6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
5685
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
5686
|
+
return n && o && p6(t, i, o), o;
|
|
5692
5687
|
};
|
|
5693
5688
|
let u6 = 0, S = class extends p {
|
|
5694
5689
|
constructor() {
|
|
@@ -5716,8 +5711,8 @@ let u6 = 0, S = class extends p {
|
|
|
5716
5711
|
?disabled=${this.disabled}
|
|
5717
5712
|
name=${this.name}
|
|
5718
5713
|
value=${this.value}
|
|
5719
|
-
@change=${(
|
|
5720
|
-
const n =
|
|
5714
|
+
@change=${(i) => {
|
|
5715
|
+
const n = i.target;
|
|
5721
5716
|
this.checked = n.checked, this.indeterminate = n.indeterminate, this.dispatchEvent(new Event("change", { bubbles: !0, composed: !0 }));
|
|
5722
5717
|
}}
|
|
5723
5718
|
/>
|
|
@@ -5866,10 +5861,10 @@ K([
|
|
|
5866
5861
|
S = K([
|
|
5867
5862
|
u("o-checkbox")
|
|
5868
5863
|
], S);
|
|
5869
|
-
var g6 = Object.defineProperty, f6 = Object.getOwnPropertyDescriptor,
|
|
5870
|
-
for (var
|
|
5871
|
-
(r = e[s]) && (
|
|
5872
|
-
return n &&
|
|
5864
|
+
var g6 = Object.defineProperty, f6 = Object.getOwnPropertyDescriptor, t1 = (e, t, i, n) => {
|
|
5865
|
+
for (var o = n > 1 ? void 0 : n ? f6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
5866
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
5867
|
+
return n && o && g6(t, i, o), o;
|
|
5873
5868
|
};
|
|
5874
5869
|
let v6 = 0, T = class extends p {
|
|
5875
5870
|
constructor() {
|
|
@@ -5995,40 +5990,40 @@ T.styles = C`
|
|
|
5995
5990
|
height: 0;
|
|
5996
5991
|
}
|
|
5997
5992
|
`;
|
|
5998
|
-
|
|
5993
|
+
t1([
|
|
5999
5994
|
l({ type: Boolean, reflect: !0 })
|
|
6000
5995
|
], T.prototype, "checked", 2);
|
|
6001
|
-
|
|
5996
|
+
t1([
|
|
6002
5997
|
l({ type: Boolean, reflect: !0 })
|
|
6003
5998
|
], T.prototype, "disabled", 2);
|
|
6004
|
-
|
|
5999
|
+
t1([
|
|
6005
6000
|
l({ type: String, reflect: !0 })
|
|
6006
6001
|
], T.prototype, "size", 2);
|
|
6007
|
-
|
|
6002
|
+
t1([
|
|
6008
6003
|
l({ type: Boolean })
|
|
6009
6004
|
], T.prototype, "showLabel", 2);
|
|
6010
|
-
|
|
6005
|
+
t1([
|
|
6011
6006
|
l({ type: String })
|
|
6012
6007
|
], T.prototype, "label", 2);
|
|
6013
|
-
|
|
6008
|
+
t1([
|
|
6014
6009
|
l({ type: String })
|
|
6015
6010
|
], T.prototype, "name", 2);
|
|
6016
|
-
|
|
6011
|
+
t1([
|
|
6017
6012
|
l({ type: String })
|
|
6018
6013
|
], T.prototype, "value", 2);
|
|
6019
|
-
|
|
6014
|
+
t1([
|
|
6020
6015
|
l({ type: String, reflect: !0 })
|
|
6021
6016
|
], T.prototype, "inputId", 2);
|
|
6022
|
-
|
|
6017
|
+
t1([
|
|
6023
6018
|
q1("input")
|
|
6024
6019
|
], T.prototype, "inputEl", 2);
|
|
6025
|
-
T =
|
|
6020
|
+
T = t1([
|
|
6026
6021
|
u("o-radio")
|
|
6027
6022
|
], T);
|
|
6028
|
-
var b6 = Object.getOwnPropertyDescriptor, w6 = (e, t,
|
|
6029
|
-
for (var
|
|
6030
|
-
(r = e[s]) && (
|
|
6031
|
-
return
|
|
6023
|
+
var b6 = Object.getOwnPropertyDescriptor, w6 = (e, t, i, n) => {
|
|
6024
|
+
for (var o = n > 1 ? void 0 : n ? b6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
6025
|
+
(r = e[s]) && (o = r(o) || o);
|
|
6026
|
+
return o;
|
|
6032
6027
|
};
|
|
6033
6028
|
let g2 = class extends p {
|
|
6034
6029
|
render() {
|
|
@@ -6056,10 +6051,10 @@ g2.styles = C`
|
|
|
6056
6051
|
g2 = w6([
|
|
6057
6052
|
u("o-breadcrumbs")
|
|
6058
6053
|
], g2);
|
|
6059
|
-
var m6 = Object.defineProperty, y6 = Object.getOwnPropertyDescriptor, H2 = (e, t,
|
|
6060
|
-
for (var
|
|
6061
|
-
(r = e[s]) && (
|
|
6062
|
-
return n &&
|
|
6054
|
+
var m6 = Object.defineProperty, y6 = Object.getOwnPropertyDescriptor, H2 = (e, t, i, n) => {
|
|
6055
|
+
for (var o = n > 1 ? void 0 : n ? y6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
6056
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
6057
|
+
return n && o && m6(t, i, o), o;
|
|
6063
6058
|
};
|
|
6064
6059
|
let j1 = class extends p {
|
|
6065
6060
|
constructor() {
|
|
@@ -6133,12 +6128,12 @@ H2([
|
|
|
6133
6128
|
j1 = H2([
|
|
6134
6129
|
u("o-breadcrumb")
|
|
6135
6130
|
], j1);
|
|
6136
|
-
var L6 = Object.defineProperty, x6 = Object.getOwnPropertyDescriptor,
|
|
6137
|
-
for (var
|
|
6138
|
-
(r = e[s]) && (
|
|
6139
|
-
return n &&
|
|
6131
|
+
var L6 = Object.defineProperty, x6 = Object.getOwnPropertyDescriptor, y1 = (e, t, i, n) => {
|
|
6132
|
+
for (var o = n > 1 ? void 0 : n ? x6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
6133
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
6134
|
+
return n && o && L6(t, i, o), o;
|
|
6140
6135
|
};
|
|
6141
|
-
let
|
|
6136
|
+
let s1 = class extends p {
|
|
6142
6137
|
constructor() {
|
|
6143
6138
|
super(...arguments), this.imageUrl = "", this.imageAlt = "", this.hoverUrl = "", this.hoverAlt = "", this.dimmed = !1, this.showHover = !1;
|
|
6144
6139
|
}
|
|
@@ -6157,7 +6152,7 @@ let r1 = class extends p {
|
|
|
6157
6152
|
</div>`;
|
|
6158
6153
|
}
|
|
6159
6154
|
};
|
|
6160
|
-
|
|
6155
|
+
s1.styles = C`
|
|
6161
6156
|
:host {
|
|
6162
6157
|
--card-width : 175px;
|
|
6163
6158
|
--card-height : 260px;
|
|
@@ -6242,27 +6237,27 @@ r1.styles = C`
|
|
|
6242
6237
|
opacity: var(--overlay-opacity, 1);
|
|
6243
6238
|
}
|
|
6244
6239
|
`;
|
|
6245
|
-
|
|
6240
|
+
y1([
|
|
6246
6241
|
l({ type: String })
|
|
6247
|
-
],
|
|
6248
|
-
|
|
6242
|
+
], s1.prototype, "imageUrl", 2);
|
|
6243
|
+
y1([
|
|
6249
6244
|
l({ type: String })
|
|
6250
|
-
],
|
|
6251
|
-
|
|
6245
|
+
], s1.prototype, "imageAlt", 2);
|
|
6246
|
+
y1([
|
|
6252
6247
|
l({ type: String })
|
|
6253
|
-
],
|
|
6254
|
-
|
|
6248
|
+
], s1.prototype, "hoverUrl", 2);
|
|
6249
|
+
y1([
|
|
6255
6250
|
l({ type: String })
|
|
6256
|
-
],
|
|
6257
|
-
|
|
6251
|
+
], s1.prototype, "hoverAlt", 2);
|
|
6252
|
+
y1([
|
|
6258
6253
|
l({ type: Boolean, reflect: !0 })
|
|
6259
|
-
],
|
|
6260
|
-
|
|
6254
|
+
], s1.prototype, "dimmed", 2);
|
|
6255
|
+
y1([
|
|
6261
6256
|
l({ type: Boolean, reflect: !0, attribute: "showhover" })
|
|
6262
|
-
],
|
|
6263
|
-
|
|
6257
|
+
], s1.prototype, "showHover", 2);
|
|
6258
|
+
s1 = y1([
|
|
6264
6259
|
u("o-arch-image")
|
|
6265
|
-
],
|
|
6260
|
+
], s1);
|
|
6266
6261
|
const $6 = `<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
6267
6262
|
<svg
|
|
6268
6263
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
@@ -6344,22 +6339,22 @@ const $6 = `<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
|
6344
6339
|
id="path52"
|
|
6345
6340
|
style="fill:#3F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
6346
6341
|
d="m 1647.15,320.5 c -2.07,0 -4.94,-0.199 -8.49,-0.469 -8.68,-0.64 -23.5,-1.062 -37.41,-0.172 -20.4,1.282 -32.01,-0.589 -32.01,-10.687 0,-8.66 8.46,-10.781 15.19,-12.461 11.42,-2.949 17.17,-4.422 17.17,-27.402 l 0.93,-77.731 c 0.5,-38.668 1.03,-80.199 1.26,-103.4296 -51.33,57.4726 -160.86,181.7736 -188.51,217.5116 -6.78,8.68 -10.53,13.449 -17.38,13.449 -9.28,0 -20.13,0.743 -29.55,1.379 -7.55,0.5 -14.21,0.934 -18.55,0.934 -12.43,0 -18.72,-3.953 -18.72,-11.781 0,-10.34 10.9,-11.911 15.93,-12.621 10.36,-1.731 14.33,-3.668 18.82,-7.11 2.1,-1.629 5.01,-3.879 5.01,-26.988 0,-29.461 -3.75,-186.1837 -5.06,-201.8126 -2.12,-24.4688 -4.58,-25.168 -18.72,-29.1485 -6.17,-1.6718 -14.6,-3.9609 -14.6,-12.7421 0,-5.1797 2.84,-11.34771 16.4,-11.34771 1.21,0 3.75,0.23829 7.15,0.61719 11.38,1.22266 33.32,1.64062 46.82,0.3125 25.84,-2.53125 30.46,3.93752 30.46,10.41802 0,9.3593 -9.18,11.8515 -14.53,13.3203 -8.73,2.4922 -15.61,6.5195 -17.27,10.1992 -3.05,6.5234 -4.31,16.8515 -4.31,35.6719 0,10.1093 0.37,54.9488 0.74,98.9808 0.25,28.839 0.47,57.359 0.59,75.558 25.28,-29.508 56.38,-65.5 86.72,-100.609 49.5,-57.2697 96.26,-111.3712 113.23,-132.09 l 1.93,-2.3516 c 3.93,-4.8203 7.75,-9.97652 12.34,-14.19918 3.35,-3.089845 8.47,-4.83985 12.86,-2.871095 3.52,1.570315 5.52,5.300785 6.26,8.941405 0.88,4.26177 0.44,8.69927 0.28,13.01177 -0.59,15.3281 -0.42,31.5898 -0.25,52.0703 0.12,12.1172 0.25,25.7184 0.25,41.4684 0,49.141 1.03,147.141 2.98,161.66 1.58,10.52 2.25,14.879 14.31,18.891 l 2.09,0.75 c 4.07,1.41 11.6,4.027 11.6,12.02 0,4.949 -2.76,10.859 -15.96,10.859" /></g></g></svg>`;
|
|
6347
|
-
var B6 = Object.defineProperty, H6 = Object.getOwnPropertyDescriptor, E = (e, t,
|
|
6348
|
-
for (var
|
|
6349
|
-
(r = e[s]) && (
|
|
6350
|
-
return n &&
|
|
6342
|
+
var B6 = Object.defineProperty, H6 = Object.getOwnPropertyDescriptor, E = (e, t, i, n) => {
|
|
6343
|
+
for (var o = n > 1 ? void 0 : n ? H6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
6344
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
6345
|
+
return n && o && B6(t, i, o), o;
|
|
6351
6346
|
};
|
|
6352
6347
|
const M2 = class M2 extends p {
|
|
6353
6348
|
constructor() {
|
|
6354
6349
|
super(...arguments), this.ispagedesigner = !1, this._classPopin = "", this.open = !1, this.background = "", this.backgroundUrl = "", this.closeOnEsc = !0, this.closeOnBackdrop = !0, this.lockScroll = !0, this.variant = "fullscreen", this.maxWidth = "640px", this.showBackButton = !1, this.contrast = !1, this.iconSize = "large", this.hideHeaderOnScroll = !1, this._labelId = `title-${Math.random().toString(36).slice(2)}`, this._headerHidden = !1, this._onBackdropClick = (t) => {
|
|
6355
6350
|
var n;
|
|
6356
6351
|
if (!this.open || !this.closeOnBackdrop) return;
|
|
6357
|
-
const
|
|
6358
|
-
(n =
|
|
6352
|
+
const i = t.composedPath()[0];
|
|
6353
|
+
(n = i == null ? void 0 : i.classList) != null && n.contains("backdrop") && this._requestClose("backdrop");
|
|
6359
6354
|
}, this._onScroll = (t) => {
|
|
6360
6355
|
if (!this.hideHeaderOnScroll || !this.open) return;
|
|
6361
|
-
const
|
|
6362
|
-
|
|
6356
|
+
const o = t.target.scrollTop > 50;
|
|
6357
|
+
o !== this._headerHidden && (this._headerHidden = o, this.requestUpdate());
|
|
6363
6358
|
};
|
|
6364
6359
|
}
|
|
6365
6360
|
get classPopin() {
|
|
@@ -6376,13 +6371,13 @@ const M2 = class M2 extends p {
|
|
|
6376
6371
|
}
|
|
6377
6372
|
updated(t) {
|
|
6378
6373
|
if (t.has("background") || t.has("backgroundUrl")) {
|
|
6379
|
-
let
|
|
6380
|
-
this.background && this.background.trim() ?
|
|
6374
|
+
let i = "";
|
|
6375
|
+
this.background && this.background.trim() ? i = this.background.trim() : this.backgroundUrl && this.backgroundUrl.trim() && (i = `url('${this.backgroundUrl.trim()}') center/cover no-repeat`), this.style.setProperty("--_bg", i);
|
|
6381
6376
|
}
|
|
6382
6377
|
if (t.has("open")) {
|
|
6383
6378
|
if (this.lockScroll) {
|
|
6384
|
-
const
|
|
6385
|
-
|
|
6379
|
+
const i = document == null ? void 0 : document.body;
|
|
6380
|
+
i && (i.style.overflow = this.open && !this.ispagedesigner ? "hidden" : "");
|
|
6386
6381
|
}
|
|
6387
6382
|
this.open ? this.updateComplete.then(() => {
|
|
6388
6383
|
var n;
|
|
@@ -6411,12 +6406,12 @@ const M2 = class M2 extends p {
|
|
|
6411
6406
|
return ["xsmall", "small", "medium", "large"].includes(this.iconSize) ? this.iconSize : "large";
|
|
6412
6407
|
}
|
|
6413
6408
|
_requestClose(t) {
|
|
6414
|
-
const
|
|
6409
|
+
const i = new CustomEvent("request-close", {
|
|
6415
6410
|
bubbles: !0,
|
|
6416
6411
|
composed: !0,
|
|
6417
6412
|
detail: { reason: t }
|
|
6418
6413
|
});
|
|
6419
|
-
this.dispatchEvent(
|
|
6414
|
+
this.dispatchEvent(i), i.defaultPrevented || (this.open = !1);
|
|
6420
6415
|
}
|
|
6421
6416
|
_renderCloseButton() {
|
|
6422
6417
|
return customElements.get("o-icon-button") ? a`
|
|
@@ -6454,7 +6449,7 @@ const M2 = class M2 extends p {
|
|
|
6454
6449
|
`;
|
|
6455
6450
|
}
|
|
6456
6451
|
render() {
|
|
6457
|
-
const t = `dialog${this._headerHidden ? " header-hidden" : ""}`,
|
|
6452
|
+
const t = `dialog${this._headerHidden ? " header-hidden" : ""}`, i = this._headerHidden ? "hidden" : "";
|
|
6458
6453
|
return a`
|
|
6459
6454
|
${this.open ? a`<div class="backdrop" part="backdrop" @click=${this._onBackdropClick}></div>` : null}
|
|
6460
6455
|
<div class="dialog-wrapper ${this.ispagedesigner ? "intro-pagedesigner" : ""}" @click=${this._onBackdropClick} aria-hidden=${this.open ? "false" : "true"}>
|
|
@@ -6466,7 +6461,7 @@ const M2 = class M2 extends p {
|
|
|
6466
6461
|
tabindex="-1"
|
|
6467
6462
|
aria-labelledby=${this._labelId}
|
|
6468
6463
|
>
|
|
6469
|
-
<header part="header" class="${
|
|
6464
|
+
<header part="header" class="${i}">
|
|
6470
6465
|
${this.showBackButton ? this._renderBackButton() : null}
|
|
6471
6466
|
<div class="brand">
|
|
6472
6467
|
<span slot="logo${this.contrast ? "-contrast" : ""}">${q($6)}</span>
|
|
@@ -6667,19 +6662,19 @@ E([
|
|
|
6667
6662
|
j()
|
|
6668
6663
|
], x.prototype, "_headerHidden", 2);
|
|
6669
6664
|
customElements.define("o-popin", x);
|
|
6670
|
-
var V6 = Object.defineProperty, E6 = Object.getOwnPropertyDescriptor, B = (e, t,
|
|
6671
|
-
for (var
|
|
6672
|
-
(r = e[s]) && (
|
|
6673
|
-
return n &&
|
|
6665
|
+
var V6 = Object.defineProperty, E6 = Object.getOwnPropertyDescriptor, B = (e, t, i, n) => {
|
|
6666
|
+
for (var o = n > 1 ? void 0 : n ? E6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
6667
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
6668
|
+
return n && o && V6(t, i, o), o;
|
|
6674
6669
|
};
|
|
6675
6670
|
let y = class extends p {
|
|
6676
6671
|
constructor() {
|
|
6677
6672
|
super(...arguments), this.type = "cart | notifyme", this.titleProduct = "", this.descriptionProduct = "", this.volume = "", this.perLiter = "", this.mainPrice = "", this.salesPercentage = "", this.oldPrice = "", this.imageUrl = "https://placehold.co/112x140", this.outOfStock = !1, this.outOfStockText = "Out of stock", this.altImage = "", this.fullwidth = !1, this.current = !1, this.hideIcon = !1, this.tagText = "";
|
|
6678
6673
|
}
|
|
6679
6674
|
onClick(e) {
|
|
6680
|
-
var
|
|
6675
|
+
var i, n, o;
|
|
6681
6676
|
const t = e.target;
|
|
6682
|
-
(
|
|
6677
|
+
(i = t == null ? void 0 : t.classList) != null && i.contains("add-to-bag") || (n = t == null ? void 0 : t.classList) != null && n.contains("js-availability-notify-details-routine") || ((o = this.onClickTile) == null || o.call(this), this.dispatchEvent(
|
|
6683
6678
|
new CustomEvent("tile-click", { bubbles: !0, composed: !0 })
|
|
6684
6679
|
));
|
|
6685
6680
|
}
|
|
@@ -6967,12 +6962,12 @@ B([
|
|
|
6967
6962
|
y = B([
|
|
6968
6963
|
u("o-medium-tile")
|
|
6969
6964
|
], y);
|
|
6970
|
-
var M6 = Object.defineProperty, k6 = Object.getOwnPropertyDescriptor,
|
|
6971
|
-
for (var
|
|
6972
|
-
(r = e[s]) && (
|
|
6973
|
-
return n &&
|
|
6965
|
+
var M6 = Object.defineProperty, k6 = Object.getOwnPropertyDescriptor, L1 = (e, t, i, n) => {
|
|
6966
|
+
for (var o = n > 1 ? void 0 : n ? k6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
6967
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
6968
|
+
return n && o && M6(t, i, o), o;
|
|
6974
6969
|
};
|
|
6975
|
-
let
|
|
6970
|
+
let r1 = class extends p {
|
|
6976
6971
|
constructor() {
|
|
6977
6972
|
super(...arguments), this.text = "", this.class = "", this.data = "", this.link = "", this.selected = !1, this.inactive = !1;
|
|
6978
6973
|
}
|
|
@@ -7003,7 +6998,7 @@ let l1 = class extends p {
|
|
|
7003
6998
|
`;
|
|
7004
6999
|
}
|
|
7005
7000
|
};
|
|
7006
|
-
|
|
7001
|
+
r1.styles = C`
|
|
7007
7002
|
:host {
|
|
7008
7003
|
position: relative;
|
|
7009
7004
|
cursor: pointer;
|
|
@@ -7080,39 +7075,39 @@ l1.styles = C`
|
|
|
7080
7075
|
${G};
|
|
7081
7076
|
}
|
|
7082
7077
|
`;
|
|
7083
|
-
|
|
7078
|
+
L1([
|
|
7084
7079
|
l({ type: String })
|
|
7085
|
-
],
|
|
7086
|
-
|
|
7080
|
+
], r1.prototype, "text", 2);
|
|
7081
|
+
L1([
|
|
7087
7082
|
l({ type: String })
|
|
7088
|
-
],
|
|
7089
|
-
|
|
7083
|
+
], r1.prototype, "class", 2);
|
|
7084
|
+
L1([
|
|
7090
7085
|
l({ type: String })
|
|
7091
|
-
],
|
|
7092
|
-
|
|
7086
|
+
], r1.prototype, "data", 2);
|
|
7087
|
+
L1([
|
|
7093
7088
|
l({ type: String, reflect: !0 })
|
|
7094
|
-
],
|
|
7095
|
-
|
|
7089
|
+
], r1.prototype, "link", 2);
|
|
7090
|
+
L1([
|
|
7096
7091
|
l({ type: Boolean, reflect: !0 })
|
|
7097
|
-
],
|
|
7098
|
-
|
|
7092
|
+
], r1.prototype, "selected", 2);
|
|
7093
|
+
L1([
|
|
7099
7094
|
l({ type: Boolean, reflect: !0 })
|
|
7100
|
-
],
|
|
7101
|
-
|
|
7095
|
+
], r1.prototype, "inactive", 2);
|
|
7096
|
+
r1 = L1([
|
|
7102
7097
|
u("o-tab")
|
|
7103
|
-
],
|
|
7104
|
-
var Z6 = Object.getOwnPropertyDescriptor, _6 = (e, t,
|
|
7105
|
-
for (var
|
|
7106
|
-
(r = e[s]) && (
|
|
7107
|
-
return
|
|
7098
|
+
], r1);
|
|
7099
|
+
var Z6 = Object.getOwnPropertyDescriptor, _6 = (e, t, i, n) => {
|
|
7100
|
+
for (var o = n > 1 ? void 0 : n ? Z6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
7101
|
+
(r = e[s]) && (o = r(o) || o);
|
|
7102
|
+
return o;
|
|
7108
7103
|
};
|
|
7109
7104
|
let f2 = class extends p {
|
|
7110
7105
|
constructor() {
|
|
7111
7106
|
super(), this.addEventListener("selected", this.onTabSelected);
|
|
7112
7107
|
}
|
|
7113
7108
|
onTabSelected(e) {
|
|
7114
|
-
var
|
|
7115
|
-
const t = (
|
|
7109
|
+
var i;
|
|
7110
|
+
const t = (i = e.detail) == null ? void 0 : i.tab;
|
|
7116
7111
|
t && this.querySelectorAll("o-tab").forEach((n) => {
|
|
7117
7112
|
n.selected = n === t;
|
|
7118
7113
|
});
|
|
@@ -7141,10 +7136,10 @@ f2.styles = C`
|
|
|
7141
7136
|
f2 = _6([
|
|
7142
7137
|
u("o-tablist")
|
|
7143
7138
|
], f2);
|
|
7144
|
-
var S6 = Object.defineProperty, F6 = Object.getOwnPropertyDescriptor, r2 = (e, t,
|
|
7145
|
-
for (var
|
|
7146
|
-
(r = e[s]) && (
|
|
7147
|
-
return n &&
|
|
7139
|
+
var S6 = Object.defineProperty, F6 = Object.getOwnPropertyDescriptor, r2 = (e, t, i, n) => {
|
|
7140
|
+
for (var o = n > 1 ? void 0 : n ? F6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
7141
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
7142
|
+
return n && o && S6(t, i, o), o;
|
|
7148
7143
|
};
|
|
7149
7144
|
let O6 = 0, M1 = class extends p {
|
|
7150
7145
|
constructor() {
|
|
@@ -7319,18 +7314,18 @@ r2([
|
|
|
7319
7314
|
M1 = r2([
|
|
7320
7315
|
u("o-accordion")
|
|
7321
7316
|
], M1);
|
|
7322
|
-
var A6 = Object.defineProperty, I6 = Object.getOwnPropertyDescriptor, V2 = (e, t,
|
|
7323
|
-
for (var
|
|
7324
|
-
(r = e[s]) && (
|
|
7325
|
-
return n &&
|
|
7317
|
+
var A6 = Object.defineProperty, I6 = Object.getOwnPropertyDescriptor, V2 = (e, t, i, n) => {
|
|
7318
|
+
for (var o = n > 1 ? void 0 : n ? I6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
7319
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
7320
|
+
return n && o && A6(t, i, o), o;
|
|
7326
7321
|
};
|
|
7327
7322
|
let R1 = class extends p {
|
|
7328
7323
|
constructor() {
|
|
7329
7324
|
super(), this.single = !1, this.handleAccordionChange = (e) => {
|
|
7330
|
-
var
|
|
7325
|
+
var i;
|
|
7331
7326
|
if (!this.single) return;
|
|
7332
7327
|
const t = e.target;
|
|
7333
|
-
!t || ((
|
|
7328
|
+
!t || ((i = t.tagName) == null ? void 0 : i.toLowerCase()) !== "o-accordion" || t.expanded && this.getAccordions().forEach((n) => {
|
|
7334
7329
|
n !== t && (n.expanded = !1);
|
|
7335
7330
|
});
|
|
7336
7331
|
}, this.enforceSingleOpen = () => {
|
|
@@ -7374,10 +7369,10 @@ R1 = V2([
|
|
|
7374
7369
|
u("o-accordion-group")
|
|
7375
7370
|
], R1);
|
|
7376
7371
|
const Q2 = "data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='UTF-8'%20standalone='no'?%3e%3csvg%20xmlns:dc='http://purl.org/dc/elements/1.1/'%20xmlns:cc='http://creativecommons.org/ns%23'%20xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns%23'%20xmlns:svg='http://www.w3.org/2000/svg'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20761.18665%20179.29333'%20height='179.29333'%20width='761.18665'%20xml:space='preserve'%20id='svg2'%20version='1.1'%3e%3cmetadata%20id='metadata8'%3e%3crdf:RDF%3e%3ccc:Work%20rdf:about=''%3e%3cdc:format%3eimage/svg+xml%3c/dc:format%3e%3cdc:type%20rdf:resource='http://purl.org/dc/dcmitype/StillImage'%20/%3e%3c/cc:Work%3e%3c/rdf:RDF%3e%3c/metadata%3e%3cdefs%20id='defs6'%20/%3e%3cg%20transform='matrix(1.3333333,0,0,-1.3333333,0,179.29333)'%20id='g10'%3e%3cg%20transform='scale(0.1)'%20id='g12'%3e%3cpath%20id='path14'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%20468.051,699.309%20c%20-42.594,-95.364%20-57.399,-99.996%20-160.164,-99.996%20-74.063,0%20-88.914,7.402%20-99.992,20.394%20-13.895,15.707%20-15.758,49.039%20-15.758,95.363%20v%20325%20c%200,96.27%208.304,99.04%2051.855,105.54%20l%2020.348,3.73%20c%207.453,4.63%206.496,23.11%20-1.817,26.83%20-40.781,-1.86%20-82.421,-2.77%20-123.156,-2.77%20-42.5936,0%20-84.2342,0.91%20-130.5545,2.77%20-8.304687,-3.72%20-8.304687,-22.2%20-1.86328,-26.83%20l%2025.92968,-3.73%20c%2043.5508,-6.5%2051.8633,-9.27%2051.8633,-105.54%20V%20695.633%20c%200,-96.32%20-8.3125,-99.086%20-51.8633,-104.625%20L%205.08594,586.371%20c%20-8.3086,-4.629%20-5.539065,-23.156%201.86328,-26.887%2038.92188,1.864%2085.19138,2.821%20132.41778,2.821%20h%2096.27%20c%20103.722,0%20183.375,-0.957%20222.246,-2.821%2011.125,25.028%2031.515,95.418%2038.867,134.289%20-4.582,7.399%20-19.434,10.168%20-28.699,5.536'%20/%3e%3cpath%20id='path16'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%20491.34,1210.42%20c%20-41.641,0%20-52.766,-27.74%20-52.766,-43.5%200,-20.39%2014.797,-31.52%2028.696,-33.33%2022.257,-2.77%2050,-17.63%2050,-48.13%200,-40.79%20-35.196,-67.63%20-74.969,-84.29%20-2.821,-7.404%20-0.906,-18.529%206.492,-24.065%2063.844,15.754%20126.832,67.565%20126.832,137.955%200,50.9%20-38.871,95.36%20-84.285,95.36'%20/%3e%3cpath%20id='path18'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%201108.72,579.656%20c%20-227.99,0%20-311.365,222.196%20-311.365,393.535%200,253.459%20156.286,335.629%20276.675,335.629%20221.03,0%20305.52,-206.03%20305.52,-397.007%200,-227.985%20-131.92,-332.157%20-270.83,-332.157%20z%20m%20-15.06,765.014%20c%20-238.406,0%20-412.008,-177.08%20-412.008,-408.533%200,-208.348%20155.075,-392.375%20412.008,-392.375%20223.4,0%20401.64,170.179%20401.64,403.953%200,203.665%20-134.28,396.955%20-401.64,396.955'%20/%3e%3cpath%20id='path20'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%202152.56,722.48%20c%20-25.88,-60.222%20-76.83,-137.96%20-193.49,-137.96%20-119.43,0%20-242.59,96.269%20-242.59,293.492%200,189.818%20118.48,273.148%20236.09,273.148%20122.25,0%20163.89,-76.84%20179.6,-135.2%206.49,-6.49%2023.16,-5.53%2029.66,1.87%20-9.27,68.53%20-11.08,123.15%20-12.94,144.45%20-8.36,1.86%20-14.81,2.77%20-25.93,5.54%20-43.56,11.13%20-107.4,20.39%20-160.22,20.39%20-93.5,0%20-187,-26.83%20-255.52,-78.69%20-68.53,-52.77%20-116.66,-137.055%20-116.66,-245.356%200,-121.344%2056.49,-205.578%20131.46,-254.668%2066.67,-43.508%20145.36,-62.031%20237.05,-62.031%2060.17,0%20124.06,15.758%20144.45,22.254%2010.17,2.769%2021.25,6.496%2032.37,8.304%2013,17.625%2037.97,78.7%2044.46,140.731%20-4.63,8.355%20-19.43,12.035%20-27.79,3.726'%20/%3e%3cpath%20id='path22'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%202372.16,609.496%20c%2066.66,-43.504%20145.36,-62.031%20237.04,-62.031%2060.17,0%20124.06,15.758%20144.4,22.254%2010.23,2.769%2021.3,6.496%2032.43,8.304%2012.99,17.625%2037.97,78.7%2044.46,140.731%20-4.63,8.359%20-19.44,12.035%20-27.8,3.723%20-25.88,-60.219%20-76.83,-137.954%20-193.49,-137.954%20-119.43,0%20-242.59,96.266%20-242.59,293.489%200,189.818%20118.48,273.148%20236.1,273.148%20122.25,0%20163.89,-76.84%20179.64,-135.2%206.45,-6.49%2023.17,-5.53%2029.61,1.87%20-9.27,68.53%20-11.07,123.15%20-12.94,144.45%20-8.36,1.86%20-14.8,2.77%20-25.93,5.54%20-43.55,11.13%20-107.4,20.39%20-160.16,20.39%20-93.55,0%20-187.05,-26.83%20-255.58,-78.69%20-68.52,-52.77%20-116.66,-137.055%20-116.66,-245.356%200,-121.344%2056.49,-205.578%20131.47,-254.668'%20/%3e%3cpath%20id='path24'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%203164.23,559.523%20c%207.41,3.672%208.31,20.34%201.87,26.832%20l%20-20.4,2.774%20c%20-43.5,5.539%20-51.86,8.359%20-51.86,106.488%20v%20344.443%20c%200,98.13%208.36,100.9%2051.86,106.49%20l%2020.4,2.77%20c%206.44,6.5%205.54,23.11%20-1.87,26.84%20-40.78,-1.82%20-82.42,-2.77%20-123.15,-2.77%20-42.6,0%20-84.24,0.95%20-125.02,2.77%20-7.41,-3.73%20-8.31,-20.34%20-1.81,-26.84%20l%2020.34,-2.77%20c%2043.55,-5.59%2051.86,-8.36%2051.86,-106.49%20V%20695.617%20c%200,-98.129%20-8.31,-100.949%20-51.86,-106.488%20l%20-20.34,-2.774%20c%20-6.5,-6.492%20-5.6,-23.16%201.81,-26.832%2040.78,1.809%2084.28,2.766%20125.02,2.766%2040.73,0%2082.37,-0.957%20123.15,-2.766'%20/%3e%3cpath%20id='path26'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%203482.63,1136.35%20c%2024.12,0%2025.02,-1.87%2025.02,-40.74%20V%20695.637%20c%200,-98.184%20-8.3,-100.949%20-51.86,-104.625%20l%20-38.92,-4.684%20c%20-6.44,-4.582%20-5.53,-23.109%201.92,-26.84%2059.25,1.867%20102.76,2.774%20143.49,2.774%2040.73,0%2082.37,-0.907%20136.1,-2.774%207.45,3.731%208.35,20.395%201.86,26.84%20l%20-33.33,3.727%20c%20-43.55,4.633%20-51.86,7.398%20-51.86,105.582%20v%20399.973%20c%200,38.87%200.91,40.74%2025.02,40.74%20h%2052.77%20c%2099.04,0%20116.66,-17.58%20128.69,-89.83%208.31,-6.44%2024.07,-4.63%2028.7,2.82%20-2.77,29.61%204.63,109.26%2013.9,147.23%20-1.87,2.77%20-6.5,4.58%20-12.04,4.58%20-3.72,0%20-7.4,-1.81%20-11.12,-3.68%20-11.13,-21.29%20-25.03,-24.06%20-70.39,-24.06%20h%20-377.77%20c%20-62.94,0%20-75.88,0.9%20-80.56,24.06%20-1.82,2.77%20-5.54,3.68%20-9.22,3.68%20-4.63,0%20-8.36,-0.91%20-10.17,-3.68%20-6.5,-32.42%20-20.39,-89.82%20-36.15,-139.82%203.72,-9.26%2023.16,-12.03%2029.65,-6.49%2034.24,75.02%2059.27,85.19%20144.41,85.19%20h%2051.86'%20/%3e%3cpath%20id='path28'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%204139.13,830.781%20h%20-96.31%20c%20-22.21,0%20-24.98,0%20-14.81,26.887%20l%2038.87,108.301%20c%2016.67,43.501%2024.12,66.671%2027.79,73.161%20h%201.87%20c%204.63,-6.49%2010.17,-24.07%2025.93,-73.161%20l%2038.87,-111.121%20c%207.4,-22.203%203.72,-24.067%20-22.21,-24.067%20z%20m%20284.23,-244.449%20-13.9,2.82%20c%20-47.18,8.305%20-51.81,14.805%20-73.11,76.836%20l%20-133.32,387.942%20c%20-14.8,41.69%20-26.89,85.19%20-41.69,126.88%20-3.73,4.64%20-8.31,7.4%20-15.71,7.4%20-1.87,0%20-32.43,-37.96%20-64.85,-44.45%202.77,-15.76%20-5.54,-37.97%20-17.58,-67.62%20L%203936.37,746.547%20c%20-19.48,-50%20-34.28,-88.867%20-45.41,-112.934%20-13.85,-30.613%20-24.07,-38.922%20-50.9,-42.648%20l%20-27.8,-4.633%20c%20-6.49,-8.305%20-5.54,-22.203%200.96,-26.836%2032.37,1.863%2061.07,2.77%2091.64,2.77%2037.96,-0.907%2068.52,-0.907%2098.18,-2.77%207.4,3.727%208.31,20.395%201.81,26.836%20l%20-26.84,4.633%20c%20-34.23,4.683%20-37.96,7.449%20-19.43,62.031%20l%2037.96,111.121%20c%208.31,25.028%207.4,25.028%2031.47,25.028%20h%20123.16%20c%2025.93,0%2028.7,0%2037.96,-25.028%20l%2043.5,-125.922%20c%2012.03,-39.781%209.27,-45.367%20-24.07,-49.043%20l%20-20.33,-2.82%20c%20-5.6,-5.484%20-4.69,-22.203%202.77,-26.836%2032.37,0.961%2073.1,2.77%20112.93,2.77%2048.18,0%2082.42,-0.907%20120.38,-2.77%206.45,4.633%206.45,20.395%20-0.95,26.836'%20/%3e%3cpath%20id='path30'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%205133.99,1176.16%20c%20-33.34,-1.81%20-57.4,-2.77%20-97.23,-2.77%20-36.1,0%20-70.34,0.96%20-106.44,2.77%20-9.26,-2.77%20-10.22,-20.34%20-1.86,-26.84%20l%2021.3,-2.77%20c%2023.16,-3.72%2037.96,-9.26%2046.27,-23.16%2016.66,-27.79%2017.57,-112.93%2017.57,-182.413%20V%20760.422%20c%200,-14.805%200,-19.434%20-2.77,-22.203%20-9.27,5.539%20-95.36,103.672%20-134.23,146.265%20l%20-92.59,100.043%20c%20-32.43,35.143%20-133.33,151.803%20-149.09,191.633%20-22.21,-1.81%20-44.46,-2.77%20-63.89,-2.77%20-23.16,0%20-74.07,-0.96%20-109.26,2.77%20-9.27,-2.77%20-10.17,-21.3%20-3.68,-26.84%20l%2013.9,-2.77%20c%2012.94,-2.76%2038.87,-10.22%2049.04,-18.52%2031.52,-26.84%2030.56,-41.7%2030.56,-113.9%20V%20794.707%20c%200,-73.203%200,-153.715%20-12.03,-182.41%20-6.5,-14.805%20-23.16,-18.531%20-40.74,-21.305%20l%20-20.39,-4.629%20c%20-7.4,-6.496%20-5.53,-22.258%201.87,-26.836%2032.37,1.813%2057.39,2.77%2096.32,2.77%2035.14,0%2071.29,-0.957%20105.53,-2.77%209.26,2.77%2010.17,20.34%201.86,26.836%20l%20-20.39,2.774%20c%20-23.11,3.672%20-38.87,9.261%20-47.23,23.16%20-15.71,27.789%20-16.66,112.93%20-16.66,182.41%20v%20180.559%20c%200,49.044%200,59.264%202.82,59.264%2015.7,-13.9%2045.36,-49.092%20105.53,-116.717%20l%20216.65,-247.211%20c%2066.67,-75.93%2093.55,-107.403%20108.36,-126.836%2011.07,-0.907%2024.06,2.773%2031.47,12.941%20-2.78,21.297%20-2.78,135.191%20-2.78,162.984%20v%20221.286%20c%200,73.153%200,153.723%2012.95,182.413%206.49,14.81%2022.2,18.48%2039.82,21.3%20l%2021.3,4.63%20c%207.4,6.5%205.54,22.21%20-1.86,26.84'%20/%3e%3cpath%20id='path32'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%205679.33,699.297%20c%20-32.43,-74.969%20-52.82,-101.805%20-170.38,-99.992%20-77.79,0%20-93.56,7.449%20-104.63,20.39%20-13.9,15.758%20-15.76,49.039%20-15.76,96.317%20v%20117.566%20c%200,23.16%200.91,25.024%2022.2,25.024%20h%2044.46%20c%2080.56,0%2096.32,-1.864%20102.77,-40.778%20l%206.49,-37.008%20c%207.4,-5.593%2025.02,-5.593%2029.66,0.907%20-0.96,29.652%20-2.77,62.031%20-2.77,97.222%200,34.239%201.81,67.621%202.77,92.594%20-4.64,7.399%20-22.26,7.399%20-29.66,0.906%20l%20-6.49,-31.465%20c%20-6.45,-39.832%20-22.21,-40.734%20-102.77,-40.734%20h%20-44.46%20c%20-21.29,0%20-22.2,0.902%20-22.2,24.973%20V%201081.7%20c%200,52.77%200,54.64%2039.83,54.64%20h%2062.03%20c%2025.02,0%2052.76,-1.87%2074.06,-8.32%2029.66,-7.39%2043.55,-30.56%2058.36,-84.28%207.4,-5.54%2025.93,-3.68%2029.6,3.72%20-5.54,39.83%20-11.13,112.99%20-14.8,128.7%20-12.04,-1.82%20-65.76,-2.77%20-125.02,-2.77%20h%20-176.83%20c%20-40.73,0%20-84.23,0.95%20-119.43,2.77%20-7.45,-3.73%20-8.36,-20.34%20-1.86,-26.84%20l%2014.8,-1.86%20c%2043.56,-6.5%2051.86,-9.26%2051.86,-107.4%20V%20695.625%20c%200,-98.133%20-8.3,-100.953%20-51.86,-105.586%20l%20-34.23,-3.676%20c%20-6.5,-6.496%20-5.54,-23.164%201.81,-26.836%2041.69,1.813%2098.18,2.77%20138.91,2.77%20h%20105.59%20c%20108.3,0%20187.95,-0.957%20228.64,-2.77%2012.98,24.973%2033.38,95.364%2038.91,134.235%20-5.53,9.261%20-21.29,12.031%20-29.6,5.535'%20/%3e%3cpath%20id='path34'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%202364.18,188.25%20c%20-6.49,-4.219%20-32.24,-8.328%20-46.69,-8.328%20-1.85,-0.043%20-4.49,-0.024%20-7.13,0.058%20v%200.168%20c%200,48.543%200.13,107.602%200.45,114.172%200.02,0.621%200.07,1.129%200.12,1.559%202.17,0.68%205.92,1.5%209.38,1.5%2023.2,0%2038.94,-5.008%2051.05,-16.231%2010.87,-10.07%2016.65,-26.289%2016.65,-46.898%200,-21.352%20-12.48,-37.871%20-23.83,-46%20z%20M%202494.63,30.5391%20c%20-3.3,0%20-15.22,1.1992%20-30.49,16.4726%20-9.66,9.6485%20-19.19,21.1602%20-32.92,39.7188%20-12.53,16.9685%20-42.27,63.5785%20-51.13,80.8205%207.72,3.238%2017.78,8.187%2024.59,14.179%209.59,7.559%2029.6,23.282%2029.6,59.461%200,24.918%20-11.75,47.668%20-32.21,62.438%20-17.2,12.48%20-36.95,17.801%20-66.08,17.801%20-7.6,0%20-15.64,-0.551%20-23.9,-1.121%20-18,-1.258%20-38.11,-0.969%20-49.47,0%20-6.34,0.562%20-13.63,1.613%20-19.69,-0.848%20-2.7,-1.09%20-5.12,-3.012%20-6.46,-5.59%20-2.2,-4.25%20-0.68,-9.652%202.98,-12.543%203.13,-2.476%207.16,-3.457%2010.98,-4.308%2013.27,-2.211%2013.34,-3.442%2014.11,-15.219%20l%200.19,-3%20c%200.99,-15.051%202.62,-40.223%202.62,-100.5%200,-73.68%20-1.16,-105.8791%20-2.3,-127.5002%20-1.15,-16.082%20-3.84,-16.6016%20-14.2,-18.6211%20-7.08,-1.6289%20-15.91,-3.6602%20-15.91,-12.5078%200,-2.7735%201.19,-11.80081%2016.45,-11.80081%203.87,0%208.61,0.41016%2014.11,0.91016%207.08,0.64063%2015.54,1.41015%2025.21,1.41015%208.38,0%2014.72,-0.70312%2020.27,-1.32031%204.93,-0.54296%209.33,-1%2013.91,-1%2016.97,0%2017.83,9.82811%2017.83,11.80081%200,9.5898%20-10.16,11.4375%20-14.1,12.1484%20-13.35,2.2383%20-14.26,4.9688%20-15.03,7.2891%20-0.86,2.6015%20-2.76,17.289%20-3.23,39.539%20-0.44,16.9727%20-0.05,65.0626%200.45,77.3126%2010.01,0.117%2014.6,-0.832%2017.58,-1.711%202.96,-0.73%205.92,-3.512%209.8,-7.781%202.07,-2.52%209.54,-14.078%2017.46,-26.309%2015.26,-23.6287%2036.18,-55.9881%2051.35,-75.3319%2015.81,-19.6367%2036.55,-39.71872%2070.51,-39.71872%209.42,0%2016.35,0.80078%2020.55,2.3789%202.76,1.04297%2011.14,4.17192%2011.14,11.73052%200,5.621%20-5,11.3203%20-14.57,11.3203'%20/%3e%3cpath%20id='path36'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%202786.45,42.7617%20c%20-13.89,-10.2109%20-28.17,-14.9804%20-44.89,-14.9804%20-33.39,0%20-62.35,16.1093%20-86.05,47.8593%20-19.51,26.3084%20-32.11,62.6214%20-32.11,92.4684%200,41.75%2011.88,79.469%2032.58,103.52%2013.61,15.609%2042.07,31.75%2066.15,31.75%2030.41,0%2055.1,-11.16%2075.47,-34.09%2025.48,-28.91%2041.31,-70.519%2041.31,-108.57%200,-58.11%20-27.13,-99.0471%20-52.46,-117.9573%20z%20M%202731.4,327.441%20c%20-33.07,0%20-70.19,-12.332%20-94.46,-31.332%20-42.99,-32.711%20-63.02,-73.23%20-63.02,-127.531%200,-90.3671%2072.96,-166.70691%20159.3,-166.70691%2020.08,0%2041.93,5.05079%2063.15,14.59771%2034.01,15.0117%2091.57,62.3828%2091.57,144.7112%200,90.129%20-71.67,166.261%20-156.54,166.261'%20/%3e%3cpath%20id='path38'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%203241.2,320.16%20c%20-5.4,-0.5%20-11.47,-1.051%20-17.12,-1.051%20-4.68,0%20-11.71,0.582%20-18.72,1.129%20-7.55,0.602%20-15.07,1.192%20-20.1,1.192%20-15.1,0%20-17.34,-7.11%20-17.34,-11.328%200,-6.411%204.96,-10.641%2014.26,-12.454%2016,-4.128%2016.72,-5.777%2016.72,-8.828%200,-5.89%20-3.43,-19.082%20-8.78,-33.679%20-6.78,-19.192%20-48.42,-126.231%20-66.03,-170.1527%20-18.89,46.4997%20-64.57,165.9727%20-71.97,188.1597%20-2.88,8.692%20-4.46,13.481%20-4.46,17.993%200,1.179%202.19,4.058%208.93,4.937%204.19,0.652%2016.97,2.613%2016.97,13.563%200,2.648%20-1.26,11.32%20-17.34,11.32%20-3.43,0%20-8.81,-0.32%20-15.05,-0.723%20-8.08,-0.508%20-17.71,-1.129%20-26.09,-1.129%20-2.72,0%20-8.73,0.411%20-15.14,0.821%20-7.82,0.5%20-16.18,1.031%20-20.48,1.031%20-16.07,0%20-17.34,-8.672%20-17.34,-11.32%200,-3.891%202.08,-10.762%2016.18,-13.129%209.38,-1.293%2015.25,-6.25%2019.61,-16.582%2019.93,-46.91%2087.31,-220.8284%20101.94,-264.1995%20l%200.84,-2.9024%20c%201.4,-4.79685%203.7,-12.8085687%2012.4,-12.8085687%205.87,0%2010.48,5.0117187%2011.57,12.0312687%201.21,4.8594%207.27,21.9883%2018.11,49.2187%2020.76,50.4805%2037.7,92.1795%2050.73,124.2305%2014.48,35.68%2024.07,59.34%2028.68,69.781%2016.33,36.758%2020.87,38.039%2032.68,41.41%204.17,1.047%2015.27,3.821%2015.27,13.86%200,8.98%20-7.99,11.437%20-28.93,9.609'%20/%3e%3cpath%20id='path40'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%203981.76,320.5%20c%20-2.07,0%20-4.93,-0.199%20-8.48,-0.469%20-8.68,-0.64%20-23.51,-1.062%20-37.42,-0.172%20-20.39,1.282%20-32.01,-0.589%20-32.01,-10.687%200,-8.66%208.46,-10.781%2015.19,-12.461%2011.42,-2.949%2017.17,-4.422%2017.17,-27.402%20l%200.93,-77.731%20c%200.5,-38.668%201.04,-80.199%201.27,-103.4296%20-51.33,57.4726%20-160.86,181.7736%20-188.52,217.5116%20-6.78,8.68%20-10.53,13.449%20-17.38,13.449%20-9.27,0%20-20.13,0.743%20-29.55,1.379%20-7.55,0.5%20-14.21,0.934%20-18.55,0.934%20-12.43,0%20-18.72,-3.953%20-18.72,-11.781%200,-10.34%2010.91,-11.911%2015.94,-12.621%2010.36,-1.731%2014.33,-3.668%2018.82,-7.11%202.09,-1.629%205,-3.879%205,-26.988%200,-29.461%20-3.75,-186.1837%20-5.05,-201.8126%20-2.12,-24.4688%20-4.59,-25.168%20-18.72,-29.1485%20-6.17,-1.6718%20-14.61,-3.9609%20-14.61,-12.7421%200,-5.1797%202.84,-11.34771%2016.41,-11.34771%201.21,0%203.75,0.23829%207.15,0.61719%2011.37,1.22266%2033.32,1.64062%2046.81,0.3125%2025.85,-2.53125%2030.46,3.93752%2030.46,10.41802%200,9.3593%20-9.17,11.8515%20-14.52,13.3203%20-8.74,2.4922%20-15.62,6.5195%20-17.27,10.1992%20-3.06,6.5234%20-4.32,16.8515%20-4.32,35.6719%200,10.1093%200.37,54.9488%200.74,98.9808%200.25,28.839%200.47,57.359%200.6,75.558%2025.28,-29.508%2056.38,-65.5%2086.71,-100.609%2049.5,-57.2697%2096.27,-111.3712%20113.23,-132.09%20l%201.93,-2.3516%20c%203.93,-4.8203%207.75,-9.97652%2012.34,-14.19918%203.36,-3.089845%208.48,-4.83985%2012.86,-2.871095%203.52,1.570315%205.52,5.300785%206.27,8.941405%200.87,4.26177%200.44,8.69927%200.27,13.01177%20-0.59,15.3281%20-0.42,31.5898%20-0.24,52.0703%200.12,12.1172%200.24,25.7184%200.24,41.4684%200,49.141%201.04,147.141%202.99,161.66%201.57,10.52%202.24,14.879%2014.3,18.891%20l%202.1,0.75%20c%204.07,1.41%2011.59,4.027%2011.59,12.02%200,4.949%20-2.76,10.859%20-15.96,10.859'%20/%3e%3cpath%20id='path42'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%204359.11,95.75%20c%20-8.78,0%20-11.45,-9.4687%20-12.75,-14.1797%20-6.2,-18.5703%20-17.07,-32.5586%20-32.39,-41.6211%20-12.67,-7.6797%20-29.05,-11.2578%20-51.55,-11.2578%20-22.15,0%20-53.67,8.2891%20-75.54,31.5%20-19.24,20.7383%20-41.68,61.1996%20-41.68,107.0076%200,43.063%2016.08,82.93%2031.87,99.992%2014.79,15.539%2039.18,36.188%2079.83,36.188%2026.29,0%2052.28,-8.508%2066.69,-22.109%206.76,-5.532%2015.64,-18.758%2018.94,-32.75%202.94,-10.079%208.34,-12.18%2012.39,-12.18%206.78,0%2011.31,6.41%2011.31,15.961%200,1.609%20-0.19,4.461%20-0.44,7.98%20-0.54,7.418%20-1.38,18.61%20-0.45,26.688%200,5.633%20-3.15,11.332%20-8.03,14.551%20l%20-0.35,0.21%20c%20-16.75,9.942%20-57.73,25.711%20-96.36,25.711%20-40.65,0%20-82.92,-15.371%20-110.27,-40.14%20-37.05,-33.551%20-55.05,-74.512%20-55.05,-125.192%200,-40.937%2020.74,-86.6988%2040.84,-107.2887%2024.27,-24.6601%2060.35,-52.94921%20124.48,-52.94921%2041.63,0%2070.47,13.43751%2096.29,28.55081%203.4,2.5664%205.82,6.0273%206.98,10.5469%200.22,1.4804%200.81,4.3515%201.53,7.9101%202.76,13.582%205.02,25.3203%205.02,31.3828%200,10.7071%20-5.67,15.4883%20-11.31,15.4883'%20/%3e%3cpath%20id='path44'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%203567.87,72.3984%20c%20-3.61,1.5625%20-7.64,0.6211%20-10.76,-1.5898%20-3.48,-2.4688%20-6.01,-6.207%20-8.42,-9.6484%20l%20-2.62,-3.7305%20c%20-3.57,-5.1094%20-9.54,-13.6992%20-12.28,-16.1094%20-5.75,-5.1289%20-9.35,-6.6094%20-53,-6.6094%20-33.15,0%20-37.81,0.9883%20-43.8,4.1602%20-5.53,2.7891%20-7.78,10.7773%20-7.78,13.6484%200,3.3594%20-0.19,14.711%20-0.44,28.7422%20-0.39,22.6093%20-0.94,52.2383%20-0.94,66.5083%20v%202.082%20c%2061.54,-0.032%2057.16,-0.524%2065,-2.762%202.15,-0.75%204.32,-3.918%206.05,-9.07%200,0%201.62,-4.02%201.62,-4.032%201.33,-3.277%202.66,-6.867%205.45,-9.207%203.11,-2.609%208.34,-2.961%2011.82,-0.832%202.54,1.551%204.42,4.86%205.35,7.641%201.18,3.469%201.06,7.031%200.47,10.601%20-0.42,2.528%20-1.65,14.649%20-0.89,22.661%200.37,3.359%200.91,7.339%201.4,11.039%200.82,5.937%201.46,11.25%201.46,13.039%200,10.769%20-6.83,13.64%20-10.88,13.64%20-7.44,0%20-10.97,-7.148%20-12.28,-9.8%20-5.18,-10.34%20-7.99,-12.258%20-8.92,-12.77%20-1.76,-1.09%20-4.82,-1.93%20-26.45,-1.93%20h%20-39.2%20v%20107.52%20c%200,4.422%200.18,7.101%200.35,8.738%2015.96,0.774%2076.93,0.524%2087.7,-1.476%203.63,-0.602%209.08,-1.5%2017.69,-21.911%201.35,-3.211%203.02,-6.711%205.7,-9.043%203,-2.609%207.89,-3.558%2011.48,-1.648%203.15,1.672%204.76,5.262%205.41,8.621%200.49,2.52%200.58,5.379%200.02,7.899%20-1.67,7.71%20-2.31,17.339%20-2.73,23.718%20l%20-0.42,5.41%20c%20-1.6,9.993%20-5.85,15.063%20-12.61,15.063%20-1.94,0%20-3.96,-0.121%20-6.58,-0.27%20-4.29,-0.261%20-10.36,-0.652%20-21.13,-0.652%20-9.01,0%20-29.45,-0.219%20-50.52,-0.437%20-22.25,-0.231%20-45.18,-0.493%20-55.89,-0.493%20-7.79,0%20-14.28,0.411%20-20.22,0.77%20-5.38,0.32%20-10.34,0.621%20-15.39,0.621%20-8.86,0%20-15.02,-4.461%20-15.02,-10.859%200,-3.692%201.73,-10.231%2013.17,-12.532%2011.25,-2.488%2015.04,-3.339%2015.04,-28.168%200,-97.863%20-0.47,-142.242%20-2.32,-215.7808%20-0.34,-15.5196%20-5.2,-19.0821%20-18.86,-21.3594%20-4.98,-0.9024%20-15.37,-2.8008%20-15.37,-12.1289%200,-1.9727%200.82,-11.80081%2016.9,-11.80081%201.94,0%206.58,0.3086%2012.45,0.71875%209.5,0.67969%2022.45,1.60156%2031.94,1.60156%2017.71,0%2038.65,-0.41015%2060.92,-0.83984%2025.46,-0.49218%2052.61,-1.01172%2078.73,-1.01172%203.99,0%209.62,1.69926%2013.66,9.76956%202.27,4.4687%204.54,12.8906%207.15,22.6094%201.19,4.4218%202.4,8.9531%203.56,12.8203%200.89,2.9804%201.73,5.9726%201.57,9.1211%20-0.2,3.9804%20-2.49,7.9804%20-6.34,9.7382'%20/%3e%3cpath%20id='path46'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%204685.96,72.3984%20c%20-3.61,1.5625%20-7.64,0.6211%20-10.76,-1.5898%20-3.47,-2.4688%20-6.01,-6.207%20-8.42,-9.6484%20l%20-2.61,-3.7305%20c%20-3.58,-5.1094%20-9.55,-13.6992%20-12.29,-16.1094%20-5.74,-5.1289%20-9.35,-6.6094%20-53,-6.6094%20-33.15,0%20-37.81,0.9883%20-43.8,4.1602%20-5.53,2.7891%20-7.77,10.7773%20-7.77,13.6484%200,3.3594%20-0.2,14.711%20-0.44,28.7422%20-0.4,22.6093%20-0.94,52.2383%20-0.94,66.5083%20v%202.082%20c%2061.53,-0.032%2057.15,-0.524%2065,-2.762%202.14,-0.75%204.31,-3.918%206.04,-9.07%200,0%201.62,-4.02%201.63,-4.032%201.32,-3.277%202.66,-6.867%205.45,-9.207%203.1,-2.609%208.34,-2.961%2011.81,-0.832%202.54,1.551%204.42,4.86%205.35,7.641%201.19,3.469%201.06,7.031%200.47,10.601%20-0.42,2.528%20-1.65,14.649%20-0.88,22.661%200.36,3.359%200.91,7.339%201.4,11.039%200.81,5.937%201.45,11.25%201.45,13.039%200,10.769%20-6.83,13.64%20-10.87,13.64%20-7.45,0%20-10.98,-7.148%20-12.28,-9.8%20-5.19,-10.34%20-8,-12.258%20-8.93,-12.77%20-1.75,-1.09%20-4.81,-1.93%20-26.44,-1.93%20h%20-39.2%20v%20107.52%20c%200,4.422%200.17,7.101%200.34,8.738%2015.96,0.774%2076.93,0.524%2087.71,-1.476%203.62,-0.602%209.08,-1.5%2017.68,-21.911%201.36,-3.211%203.02,-6.711%205.7,-9.043%203.01,-2.609%207.89,-3.558%2011.48,-1.648%203.15,1.672%204.77,5.262%205.42,8.621%200.48,2.52%200.57,5.379%200.02,7.899%20-1.68,7.71%20-2.32,17.339%20-2.74,23.718%20l%20-0.42,5.41%20c%20-1.6,9.993%20-5.84,15.063%20-12.6,15.063%20-1.95,0%20-3.97,-0.121%20-6.59,-0.27%20-4.29,-0.261%20-10.35,-0.652%20-21.13,-0.652%20-9,0%20-29.45,-0.219%20-50.51,-0.437%20-22.25,-0.231%20-45.19,-0.493%20-55.89,-0.493%20-7.8,0%20-14.28,0.411%20-20.23,0.77%20-5.38,0.32%20-10.33,0.621%20-15.39,0.621%20-8.85,0%20-15.02,-4.461%20-15.02,-10.859%200,-3.692%201.73,-10.231%2013.17,-12.532%2011.25,-2.488%2015.05,-3.339%2015.05,-28.168%200,-97.863%20-0.47,-142.242%20-2.32,-215.7808%20-0.35,-15.5196%20-5.21,-19.0821%20-18.87,-21.3594%20-4.98,-0.9024%20-15.36,-2.8008%20-15.36,-12.1289%200,-1.9727%200.81,-11.80081%2016.89,-11.80081%201.95,0%206.58,0.3086%2012.45,0.71875%209.5,0.67969%2022.45,1.60156%2031.94,1.60156%2017.71,0%2038.65,-0.41015%2060.92,-0.83984%2025.46,-0.49218%2052.61,-1.01172%2078.73,-1.01172%204,0%209.62,1.69926%2013.66,9.76956%202.28,4.4687%204.54,12.8906%207.16,22.6094%201.18,4.4218%202.39,8.9531%203.55,12.8203%200.89,2.9804%201.73,5.9726%201.57,9.1211%20-0.2,3.9804%20-2.49,7.9804%20-6.34,9.7382'%20/%3e%3cpath%20id='path48'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%202053.69,162.371%20c%20-11.68,-7.941%20-31.81,-14.121%20-61.83,-3.051%20-0.05,35.121%20-0.25,82.821%20-0.38,112.352%20l%200.49,27.719%20c%203.95,0.937%2011.86,2.14%2018.63,2.14%2019.48,0%2034.06,-6.672%2048.96,-22.472%2019.6,-19.61%2020.61,-49.629%2020.61,-55.45%200,-34.648%20-13.21,-52.211%20-26.48,-61.238%20z%20m%2046.95,130.348%20c%20-19.21,21.211%20-50.04,32.41%20-89.11,32.41%20-4.46,0%20-14.7,-0.84%20-24.84,-1.707%20-7.89,-0.66%20-15.71,-1.332%20-20.37,-1.524%20-12.35,-0.468%20-25.64,-0.937%20-32.48,-0.937%20-9.1,0%20-15.96,-5.07%20-15.96,-11.789%200,-6.453%204.89,-10.531%2015.05,-12.211%2011,-1.18%2011.17,-4.652%2011.34,-7.621%200.84,-8.399%203.21,-69.551%203.21,-107.809%200,-71.222%20-0.47,-125.1208%20-0.94,-135.8826%20-0.61,-10.1289%20-1.58,-11.1289%20-13.09,-13.4375%20-4.02,-0.8593%20-14.68,-3.1093%20-14.68,-12.5312%200,-4.2305%202.2,-11.33986%2016.9,-11.33986%202.22,0%205.57,0.30079%209.59,0.67969%205.3,0.51953%2011.96,1.17187%2018.62,1.17187%2011.77,0%2019.63,-0.70312%2026.62,-1.32031%205.96,-0.53125%2011.34,-1%2017.78,-1%2015.19,0%2015.95,9.82811%2015.95,11.80861%200,10.4492%20-12.13,12.0391%20-16.44,12.6016%20-10.07,1.6289%20-13,2.75%20-14.12,17.1484%20-0.83,11.6484%20-1.73,41.1601%20-1.78,88.9683%207.72,-5.058%2050.78,-21.668%2092.38,5.481%2028.88,18.859%2042.62,46.152%2042.62,82.512%200,24.629%20-9.89,49.5%20-26.25,66.328'%20/%3e%3cpath%20id='path50'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%201237.15,72.3984%20c%20-3.61,1.5625%20-7.64,0.6211%20-10.76,-1.5898%20-3.47,-2.4688%20-6.01,-6.207%20-8.42,-9.6484%20l%20-2.61,-3.7305%20c%20-3.58,-5.1094%20-9.55,-13.6992%20-12.29,-16.1094%20-5.74,-5.1289%20-9.34,-6.6094%20-53,-6.6094%20-33.15,0%20-37.81,0.9883%20-43.8,4.1602%20-5.52,2.7891%20-7.77,10.7773%20-7.77,13.6484%200,3.3594%20-0.2,14.711%20-0.45,28.7422%20-0.39,22.6093%20-0.93,52.2383%20-0.93,66.5083%20v%202.082%20c%2061.53,-0.032%2057.15,-0.524%2065,-2.762%202.14,-0.75%204.31,-3.918%206.04,-9.07%200,0%201.62,-4.02%201.63,-4.032%201.32,-3.277%202.66,-6.867%205.45,-9.207%203.1,-2.609%208.34,-2.961%2011.82,-0.832%202.53,1.551%204.41,4.86%205.34,7.641%201.18,3.469%201.06,7.031%200.47,10.601%20-0.42,2.528%20-1.65,14.649%20-0.88,22.661%200.36,3.359%200.91,7.339%201.4,11.039%200.81,5.937%201.45,11.25%201.45,13.039%200,10.769%20-6.83,13.64%20-10.87,13.64%20-7.45,0%20-10.98,-7.148%20-12.29,-9.8%20-5.17,-10.34%20-7.99,-12.258%20-8.92,-12.77%20-1.75,-1.09%20-4.81,-1.93%20-26.44,-1.93%20h%20-39.2%20v%20107.52%20c%200,4.422%200.17,7.101%200.34,8.738%2015.96,0.774%2076.93,0.524%2087.71,-1.476%203.62,-0.602%209.08,-1.5%2017.68,-21.911%201.36,-3.211%203.03,-6.711%205.7,-9.043%203,-2.609%207.9,-3.558%2011.48,-1.648%203.15,1.672%204.77,5.262%205.42,8.621%200.48,2.52%200.57,5.379%200.02,7.899%20-1.68,7.71%20-2.32,17.339%20-2.74,23.718%20l%20-0.42,5.41%20c%20-1.6,9.993%20-5.84,15.063%20-12.6,15.063%20-1.95,0%20-3.97,-0.121%20-6.59,-0.27%20-4.29,-0.261%20-10.36,-0.652%20-21.14,-0.652%20-8.99,0%20-29.44,-0.219%20-50.5,-0.437%20-22.25,-0.231%20-45.19,-0.493%20-55.89,-0.493%20-7.8,0%20-14.28,0.411%20-20.23,0.77%20-5.38,0.32%20-10.33,0.621%20-15.39,0.621%20-8.85,0%20-15.02,-4.461%20-15.02,-10.859%200,-3.692%201.73,-10.231%2013.17,-12.532%2011.25,-2.488%2015.05,-3.339%2015.05,-28.168%200,-97.863%20-0.47,-142.242%20-2.32,-215.7808%20-0.34,-15.5196%20-5.21,-19.0821%20-18.87,-21.3594%20C%201027,30.8984%201016.62,29%201016.62,19.6719%20c%200,-1.9727%200.81,-11.80081%2016.89,-11.80081%201.95,0%206.58,0.3086%2012.45,0.71875%209.5,0.67969%2022.45,1.60156%2031.94,1.60156%2017.71,0%2038.65,-0.41015%2060.92,-0.83984%2025.46,-0.49218%2052.62,-1.01172%2078.73,-1.01172%204,0%209.62,1.69926%2013.67,9.76956%202.26,4.4687%204.54,12.8906%207.15,22.6094%201.18,4.4218%202.39,8.9531%203.55,12.8203%200.89,2.9804%201.73,5.9726%201.57,9.1211%20-0.2,3.9804%20-2.49,7.9804%20-6.34,9.7382'%20/%3e%3cpath%20id='path52'%20style='fill:%233F2B2E;fill-opacity:1;fill-rule:nonzero;stroke:none'%20d='m%201647.15,320.5%20c%20-2.07,0%20-4.94,-0.199%20-8.49,-0.469%20-8.68,-0.64%20-23.5,-1.062%20-37.41,-0.172%20-20.4,1.282%20-32.01,-0.589%20-32.01,-10.687%200,-8.66%208.46,-10.781%2015.19,-12.461%2011.42,-2.949%2017.17,-4.422%2017.17,-27.402%20l%200.93,-77.731%20c%200.5,-38.668%201.03,-80.199%201.26,-103.4296%20-51.33,57.4726%20-160.86,181.7736%20-188.51,217.5116%20-6.78,8.68%20-10.53,13.449%20-17.38,13.449%20-9.28,0%20-20.13,0.743%20-29.55,1.379%20-7.55,0.5%20-14.21,0.934%20-18.55,0.934%20-12.43,0%20-18.72,-3.953%20-18.72,-11.781%200,-10.34%2010.9,-11.911%2015.93,-12.621%2010.36,-1.731%2014.33,-3.668%2018.82,-7.11%202.1,-1.629%205.01,-3.879%205.01,-26.988%200,-29.461%20-3.75,-186.1837%20-5.06,-201.8126%20-2.12,-24.4688%20-4.58,-25.168%20-18.72,-29.1485%20-6.17,-1.6718%20-14.6,-3.9609%20-14.6,-12.7421%200,-5.1797%202.84,-11.34771%2016.4,-11.34771%201.21,0%203.75,0.23829%207.15,0.61719%2011.38,1.22266%2033.32,1.64062%2046.82,0.3125%2025.84,-2.53125%2030.46,3.93752%2030.46,10.41802%200,9.3593%20-9.18,11.8515%20-14.53,13.3203%20-8.73,2.4922%20-15.61,6.5195%20-17.27,10.1992%20-3.05,6.5234%20-4.31,16.8515%20-4.31,35.6719%200,10.1093%200.37,54.9488%200.74,98.9808%200.25,28.839%200.47,57.359%200.59,75.558%2025.28,-29.508%2056.38,-65.5%2086.72,-100.609%2049.5,-57.2697%2096.26,-111.3712%20113.23,-132.09%20l%201.93,-2.3516%20c%203.93,-4.8203%207.75,-9.97652%2012.34,-14.19918%203.35,-3.089845%208.47,-4.83985%2012.86,-2.871095%203.52,1.570315%205.52,5.300785%206.26,8.941405%200.88,4.26177%200.44,8.69927%200.28,13.01177%20-0.59,15.3281%20-0.42,31.5898%20-0.25,52.0703%200.12,12.1172%200.25,25.7184%200.25,41.4684%200,49.141%201.03,147.141%202.98,161.66%201.58,10.52%202.25,14.879%2014.31,18.891%20l%202.09,0.75%20c%204.07,1.41%2011.6,4.027%2011.6,12.02%200,4.949%20-2.76,10.859%20-15.96,10.859'%20/%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
|
|
7377
|
-
var P6 = Object.defineProperty, z6 = Object.getOwnPropertyDescriptor, W = (e, t,
|
|
7378
|
-
for (var
|
|
7379
|
-
(r = e[s]) && (
|
|
7380
|
-
return n &&
|
|
7372
|
+
var P6 = Object.defineProperty, z6 = Object.getOwnPropertyDescriptor, W = (e, t, i, n) => {
|
|
7373
|
+
for (var o = n > 1 ? void 0 : n ? z6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
7374
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
7375
|
+
return n && o && P6(t, i, o), o;
|
|
7381
7376
|
};
|
|
7382
7377
|
let F = class extends p {
|
|
7383
7378
|
constructor() {
|
|
@@ -7599,14 +7594,14 @@ F = W([
|
|
|
7599
7594
|
u("o-header-simplify")
|
|
7600
7595
|
], F);
|
|
7601
7596
|
const D6 = "data:image/svg+xml,%3csvg%20width='40'%20height='31'%20viewBox='0%200%2040%2031'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M39.3178%2025.5201C39.0127%2025.426%2038.8059%2025.483%2038.6874%2025.5573C38.516%2025.659%2038.4454%2025.8325%2038.4176%2025.9639C38.0545%2027.7908%2035.2304%2029.3228%2032.3155%2029.3674C25.7116%2029.4665%2018.1142%2023.3933%2013.4973%2021.5688C18.7749%2015.5625%2020.3231%208.22991%2023.9516%203.96622C25.6007%202.03021%2027.633%201.30142%2029.567%201.30142C32.1642%201.30142%2033.5208%202.91021%2033.5258%204.50166C33.5334%206.84917%2030.1369%207.73165%2029.8343%205.90223C29.7713%205.52296%2029.5923%204.92307%2028.8711%204.92307C28.2382%204.92307%2027.7566%205.42629%2027.7566%206.09806C27.7566%207.25075%2028.9215%208.05639%2030.5908%208.05639C33.9041%208.05639%2035.6364%206.0584%2035.6364%204.08273C35.6364%202.10705%2033.9116%200%2030.1268%200C27.6784%200%2025.1165%200.783328%2023.1271%202.35494C18.3639%206.11542%2016.0415%2015.3666%2011.4978%2020.7805C9.78815%2020.198%208.34584%2020.0269%206.959%2019.955C2.61944%2019.727%20-0.0861581%2021.8068%200.00209544%2023.8667C0.0449615%2024.8261%200.970363%2026.4373%204.51564%2026.4373C6.02603%2026.4373%208.65094%2025.9316%2011.9365%2023.1801C15.6406%2024.712%2022.6429%2030.8944%2031.1506%2030.9985C36.9551%2031.0704%2039.4691%2028.5642%2039.8322%2026.5043C39.9078%2026.2043%2039.8322%2025.6937%2039.3153%2025.5226L39.3178%2025.5201ZM4.35426%2025.0417C2.93968%2025.0417%202.30425%2024.2832%202.30425%2023.5321C2.30425%2022.4612%203.57763%2021.3779%206.00586%2021.3779C7.27419%2021.3779%208.59295%2021.6779%2010.1185%2022.3224C7.54147%2024.6823%205.41834%2025.0442%204.35678%2025.0442L4.35426%2025.0417Z'%20fill='%233F2B2E'/%3e%3cpath%20d='M29.0653%2010.4312C26.337%2010.4312%2023.3414%2011.7053%2021.9798%2014.0379C21.2889%2015.2204%2020.9459%2016.559%2020.951%2017.9174C20.9459%2019.2758%2021.2863%2020.6144%2021.9798%2021.7969C23.3439%2024.127%2026.337%2025.4036%2029.0653%2025.4036C31.7935%2025.4036%2034.7891%2024.1295%2036.1508%2021.7969C36.8417%2020.6144%2037.1846%2019.2758%2037.1795%2017.9174C37.1846%2016.559%2036.8442%2015.2204%2036.1508%2014.0379C34.7866%2011.7078%2031.7935%2010.4312%2029.0653%2010.4312ZM29.0653%2024.5583C25.3561%2024.3328%2023.4095%2020.8648%2023.4095%2017.9149C23.4095%2014.9651%2025.3561%2011.4971%2029.0653%2011.2715C32.7744%2011.4971%2034.721%2014.9651%2034.721%2017.9149C34.721%2020.8648%2032.7744%2024.3328%2029.0653%2024.5583Z'%20fill='%233F2B2E'/%3e%3c/svg%3e";
|
|
7602
|
-
var T6 = Object.defineProperty, j6 = Object.getOwnPropertyDescriptor,
|
|
7603
|
-
for (var
|
|
7604
|
-
(r = e[s]) && (
|
|
7605
|
-
return n &&
|
|
7597
|
+
var T6 = Object.defineProperty, j6 = Object.getOwnPropertyDescriptor, x1 = (e, t, i, n) => {
|
|
7598
|
+
for (var o = n > 1 ? void 0 : n ? j6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
7599
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
7600
|
+
return n && o && T6(t, i, o), o;
|
|
7606
7601
|
};
|
|
7607
|
-
let
|
|
7602
|
+
let l1 = class extends p {
|
|
7608
7603
|
constructor() {
|
|
7609
|
-
super(...arguments), this.
|
|
7604
|
+
super(...arguments), this.altImage = "L'Occitane en Provence", this.loccitaneGroup = "L’Occitane Group", this.loccitaneGroupLink = "#", this.privacyText = "Privacy Policy", this.privacyLink = "#", this.copyrightText = "Copyright © L'OCCITANE, 2025";
|
|
7610
7605
|
}
|
|
7611
7606
|
render() {
|
|
7612
7607
|
return a`<div class="footer-wrapper-simplify">
|
|
@@ -7617,7 +7612,7 @@ let Y = class extends p {
|
|
|
7617
7612
|
</a>
|
|
7618
7613
|
</div>
|
|
7619
7614
|
<div class="footer-flex footer-center-simplify footer-simplify-dsk">
|
|
7620
|
-
<a class="logo-footer-simplify"
|
|
7615
|
+
<a class="logo-footer-simplify">
|
|
7621
7616
|
<img src="${Q2}" alt="${this.altImage}" />
|
|
7622
7617
|
</a>
|
|
7623
7618
|
</div>
|
|
@@ -7628,7 +7623,7 @@ let Y = class extends p {
|
|
|
7628
7623
|
</div>
|
|
7629
7624
|
</div>
|
|
7630
7625
|
<div class="footer-content-simplify footer-simplify-mobile">
|
|
7631
|
-
<a class="logo-footer-simplify"
|
|
7626
|
+
<a class="logo-footer-simplify">
|
|
7632
7627
|
<img src="${D6}" alt="${this.altImage}" />
|
|
7633
7628
|
</a>
|
|
7634
7629
|
</div>
|
|
@@ -7638,7 +7633,7 @@ let Y = class extends p {
|
|
|
7638
7633
|
</div>`;
|
|
7639
7634
|
}
|
|
7640
7635
|
};
|
|
7641
|
-
|
|
7636
|
+
l1.styles = C`
|
|
7642
7637
|
.footer-wrapper-simplify {
|
|
7643
7638
|
display: flex;
|
|
7644
7639
|
width: 100%;
|
|
@@ -7695,11 +7690,6 @@ Y.styles = C`
|
|
|
7695
7690
|
}
|
|
7696
7691
|
}
|
|
7697
7692
|
|
|
7698
|
-
.footer-content-simplify .footer-left-simplify a,
|
|
7699
|
-
.footer-content-simplify .footer-right-simplify a {
|
|
7700
|
-
|
|
7701
|
-
}
|
|
7702
|
-
|
|
7703
7693
|
.footer-content-simplify a, .footer-copyright-simplify span {
|
|
7704
7694
|
text-decoration: none;
|
|
7705
7695
|
color: var(--color-content-action-secondary);
|
|
@@ -7731,7 +7721,7 @@ Y.styles = C`
|
|
|
7731
7721
|
.footer-copyright-simplify {
|
|
7732
7722
|
padding-bottom: var(--spacing-3-xl);
|
|
7733
7723
|
text-align: center;
|
|
7734
|
-
width: 100
|
|
7724
|
+
width: 100%;
|
|
7735
7725
|
}
|
|
7736
7726
|
|
|
7737
7727
|
.footer-copyright-simplify span {
|
|
@@ -7743,35 +7733,41 @@ Y.styles = C`
|
|
|
7743
7733
|
display: none;
|
|
7744
7734
|
}
|
|
7745
7735
|
}
|
|
7736
|
+
|
|
7737
|
+
.footer-flex {
|
|
7738
|
+
width: 33.33%;
|
|
7739
|
+
}
|
|
7740
|
+
|
|
7741
|
+
.footer-right-simplify {
|
|
7742
|
+
display: flex;
|
|
7743
|
+
justify-content: flex-end;
|
|
7744
|
+
}
|
|
7746
7745
|
`;
|
|
7747
|
-
|
|
7748
|
-
l({ type: String, reflect: !0 })
|
|
7749
|
-
], Y.prototype, "logoHref", 2);
|
|
7750
|
-
g1([
|
|
7746
|
+
x1([
|
|
7751
7747
|
l({ type: String, reflect: !0 })
|
|
7752
|
-
],
|
|
7753
|
-
|
|
7748
|
+
], l1.prototype, "altImage", 2);
|
|
7749
|
+
x1([
|
|
7754
7750
|
l({ type: String, reflect: !0 })
|
|
7755
|
-
],
|
|
7756
|
-
|
|
7751
|
+
], l1.prototype, "loccitaneGroup", 2);
|
|
7752
|
+
x1([
|
|
7757
7753
|
l({ type: String, reflect: !0 })
|
|
7758
|
-
],
|
|
7759
|
-
|
|
7754
|
+
], l1.prototype, "loccitaneGroupLink", 2);
|
|
7755
|
+
x1([
|
|
7760
7756
|
l({ type: String, reflect: !0 })
|
|
7761
|
-
],
|
|
7762
|
-
|
|
7757
|
+
], l1.prototype, "privacyText", 2);
|
|
7758
|
+
x1([
|
|
7763
7759
|
l({ type: String, reflect: !0 })
|
|
7764
|
-
],
|
|
7765
|
-
|
|
7760
|
+
], l1.prototype, "privacyLink", 2);
|
|
7761
|
+
x1([
|
|
7766
7762
|
l({ type: String, reflect: !0 })
|
|
7767
|
-
],
|
|
7768
|
-
|
|
7763
|
+
], l1.prototype, "copyrightText", 2);
|
|
7764
|
+
l1 = x1([
|
|
7769
7765
|
u("o-footer-simplify")
|
|
7770
|
-
],
|
|
7771
|
-
var R6 = Object.defineProperty, U6 = Object.getOwnPropertyDescriptor, K1 = (e, t,
|
|
7772
|
-
for (var
|
|
7773
|
-
(r = e[s]) && (
|
|
7774
|
-
return n &&
|
|
7766
|
+
], l1);
|
|
7767
|
+
var R6 = Object.defineProperty, U6 = Object.getOwnPropertyDescriptor, K1 = (e, t, i, n) => {
|
|
7768
|
+
for (var o = n > 1 ? void 0 : n ? U6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
7769
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
7770
|
+
return n && o && R6(t, i, o), o;
|
|
7775
7771
|
};
|
|
7776
7772
|
const q6 = {
|
|
7777
7773
|
standard: "occ-check-filled",
|
|
@@ -7779,7 +7775,7 @@ const q6 = {
|
|
|
7779
7775
|
error: "occ-close-filled",
|
|
7780
7776
|
info: "occ-info"
|
|
7781
7777
|
};
|
|
7782
|
-
let
|
|
7778
|
+
let w1 = class extends p {
|
|
7783
7779
|
constructor() {
|
|
7784
7780
|
super(...arguments), this.variant = "standard", this.framed = !1, this.longtext = !1, this.text = "";
|
|
7785
7781
|
}
|
|
@@ -7802,7 +7798,7 @@ let m1 = class extends p {
|
|
|
7802
7798
|
`;
|
|
7803
7799
|
}
|
|
7804
7800
|
};
|
|
7805
|
-
|
|
7801
|
+
w1.styles = C`
|
|
7806
7802
|
:host {
|
|
7807
7803
|
--feedback-text-color: var(--color-content-action-secondary, #3F2B2E);
|
|
7808
7804
|
--feedback-bg-color: var(--color-container-bg-default, #F5F0EB);
|
|
@@ -7879,27 +7875,27 @@ m1.styles = C`
|
|
|
7879
7875
|
`;
|
|
7880
7876
|
K1([
|
|
7881
7877
|
l({ type: String, reflect: !0 })
|
|
7882
|
-
],
|
|
7878
|
+
], w1.prototype, "variant", 2);
|
|
7883
7879
|
K1([
|
|
7884
7880
|
l({ type: Boolean, reflect: !0 })
|
|
7885
|
-
],
|
|
7881
|
+
], w1.prototype, "framed", 2);
|
|
7886
7882
|
K1([
|
|
7887
7883
|
l({ type: Boolean, reflect: !0 })
|
|
7888
|
-
],
|
|
7884
|
+
], w1.prototype, "longtext", 2);
|
|
7889
7885
|
K1([
|
|
7890
7886
|
l({ type: String })
|
|
7891
|
-
],
|
|
7892
|
-
|
|
7887
|
+
], w1.prototype, "text", 2);
|
|
7888
|
+
w1 = K1([
|
|
7893
7889
|
u("o-feedback-message")
|
|
7894
|
-
],
|
|
7890
|
+
], w1);
|
|
7895
7891
|
/**
|
|
7896
7892
|
* @license
|
|
7897
7893
|
* Copyright 2020 Google LLC
|
|
7898
7894
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
7899
7895
|
*/
|
|
7900
|
-
const N6 = e2(class extends
|
|
7896
|
+
const N6 = e2(class extends i2 {
|
|
7901
7897
|
constructor(e) {
|
|
7902
|
-
if (super(e), e.type !==
|
|
7898
|
+
if (super(e), e.type !== o1.PROPERTY && e.type !== o1.ATTRIBUTE && e.type !== o1.BOOLEAN_ATTRIBUTE) throw Error("The `live` directive is not allowed on child or event bindings");
|
|
7903
7899
|
if (!X2(e)) throw Error("`live` bindings can only contain a single expression");
|
|
7904
7900
|
}
|
|
7905
7901
|
render(e) {
|
|
@@ -7907,19 +7903,19 @@ const N6 = e2(class extends o2 {
|
|
|
7907
7903
|
}
|
|
7908
7904
|
update(e, [t]) {
|
|
7909
7905
|
if (t === A || t === d) return t;
|
|
7910
|
-
const
|
|
7911
|
-
if (e.type ===
|
|
7912
|
-
if (t ===
|
|
7913
|
-
} else if (e.type ===
|
|
7914
|
-
if (!!t ===
|
|
7915
|
-
} else if (e.type ===
|
|
7906
|
+
const i = e.element, n = e.name;
|
|
7907
|
+
if (e.type === o1.PROPERTY) {
|
|
7908
|
+
if (t === i[n]) return A;
|
|
7909
|
+
} else if (e.type === o1.BOOLEAN_ATTRIBUTE) {
|
|
7910
|
+
if (!!t === i.hasAttribute(n)) return A;
|
|
7911
|
+
} else if (e.type === o1.ATTRIBUTE && i.getAttribute(n) === t + "") return A;
|
|
7916
7912
|
return f5(e), t;
|
|
7917
7913
|
}
|
|
7918
7914
|
});
|
|
7919
|
-
var K6 = Object.defineProperty, W6 = Object.getOwnPropertyDescriptor, _ = (e, t,
|
|
7920
|
-
for (var
|
|
7921
|
-
(r = e[s]) && (
|
|
7922
|
-
return n &&
|
|
7915
|
+
var K6 = Object.defineProperty, W6 = Object.getOwnPropertyDescriptor, _ = (e, t, i, n) => {
|
|
7916
|
+
for (var o = n > 1 ? void 0 : n ? W6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
7917
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
7918
|
+
return n && o && K6(t, i, o), o;
|
|
7923
7919
|
};
|
|
7924
7920
|
const G6 = t2(p);
|
|
7925
7921
|
let X6 = 0, H = class extends G6 {
|
|
@@ -8200,10 +8196,10 @@ _([
|
|
|
8200
8196
|
H = _([
|
|
8201
8197
|
u("o-input")
|
|
8202
8198
|
], H);
|
|
8203
|
-
var Y6 = Object.defineProperty, J6 = Object.getOwnPropertyDescriptor,
|
|
8204
|
-
for (var
|
|
8205
|
-
(r = e[s]) && (
|
|
8206
|
-
return n &&
|
|
8199
|
+
var Y6 = Object.defineProperty, J6 = Object.getOwnPropertyDescriptor, e1 = (e, t, i, n) => {
|
|
8200
|
+
for (var o = n > 1 ? void 0 : n ? J6(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
8201
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
8202
|
+
return n && o && Y6(t, i, o), o;
|
|
8207
8203
|
};
|
|
8208
8204
|
let O = class extends p {
|
|
8209
8205
|
constructor() {
|
|
@@ -8271,40 +8267,40 @@ O.styles = C`
|
|
|
8271
8267
|
--color-content-disabled: var(--color-alpha-light-strong, rgba(255, 255, 255, 0.56));
|
|
8272
8268
|
}
|
|
8273
8269
|
`;
|
|
8274
|
-
|
|
8270
|
+
e1([
|
|
8275
8271
|
l({ type: String })
|
|
8276
8272
|
], O.prototype, "label", 2);
|
|
8277
|
-
|
|
8273
|
+
e1([
|
|
8278
8274
|
l({ type: String })
|
|
8279
8275
|
], O.prototype, "value", 2);
|
|
8280
|
-
|
|
8276
|
+
e1([
|
|
8281
8277
|
l({ type: String })
|
|
8282
8278
|
], O.prototype, "placeholder", 2);
|
|
8283
|
-
|
|
8279
|
+
e1([
|
|
8284
8280
|
l({ type: String, attribute: "helper-text" })
|
|
8285
8281
|
], O.prototype, "helperText", 2);
|
|
8286
|
-
|
|
8282
|
+
e1([
|
|
8287
8283
|
l({ type: String, reflect: !0 })
|
|
8288
8284
|
], O.prototype, "state", 2);
|
|
8289
|
-
|
|
8285
|
+
e1([
|
|
8290
8286
|
l({ type: Boolean, reflect: !0 })
|
|
8291
8287
|
], O.prototype, "disabled", 2);
|
|
8292
|
-
|
|
8288
|
+
e1([
|
|
8293
8289
|
l({ type: String, reflect: !0 })
|
|
8294
8290
|
], O.prototype, "theme", 2);
|
|
8295
|
-
|
|
8291
|
+
e1([
|
|
8296
8292
|
l({ type: String })
|
|
8297
8293
|
], O.prototype, "trigger", 2);
|
|
8298
|
-
|
|
8294
|
+
e1([
|
|
8299
8295
|
l({ attribute: !1 })
|
|
8300
8296
|
], O.prototype, "onSearch", 2);
|
|
8301
|
-
O =
|
|
8297
|
+
O = e1([
|
|
8302
8298
|
u("o-search-input")
|
|
8303
8299
|
], O);
|
|
8304
|
-
var Q6 = Object.defineProperty, te = Object.getOwnPropertyDescriptor, M = (e, t,
|
|
8305
|
-
for (var
|
|
8306
|
-
(r = e[s]) && (
|
|
8307
|
-
return n &&
|
|
8300
|
+
var Q6 = Object.defineProperty, te = Object.getOwnPropertyDescriptor, M = (e, t, i, n) => {
|
|
8301
|
+
for (var o = n > 1 ? void 0 : n ? te(t, i) : t, s = e.length - 1, r; s >= 0; s--)
|
|
8302
|
+
(r = e[s]) && (o = (n ? r(t, i, o) : r(o)) || o);
|
|
8303
|
+
return n && o && Q6(t, i, o), o;
|
|
8308
8304
|
};
|
|
8309
8305
|
let ee = 0, $ = class extends p {
|
|
8310
8306
|
constructor() {
|
|
@@ -8325,14 +8321,14 @@ let ee = 0, $ = class extends p {
|
|
|
8325
8321
|
filterOptions(e) {
|
|
8326
8322
|
if (!e.trim()) return [];
|
|
8327
8323
|
const t = e.toLowerCase();
|
|
8328
|
-
return this.options.filter((
|
|
8324
|
+
return this.options.filter((i) => {
|
|
8329
8325
|
switch (this.searchBy) {
|
|
8330
8326
|
case "id":
|
|
8331
|
-
return
|
|
8327
|
+
return i.id.toLowerCase().includes(t);
|
|
8332
8328
|
case "both":
|
|
8333
|
-
return
|
|
8329
|
+
return i.id.toLowerCase().includes(t) || i.value.toLowerCase().includes(t);
|
|
8334
8330
|
default:
|
|
8335
|
-
return
|
|
8331
|
+
return i.value.toLowerCase().includes(t);
|
|
8336
8332
|
}
|
|
8337
8333
|
});
|
|
8338
8334
|
}
|
|
@@ -8349,8 +8345,8 @@ let ee = 0, $ = class extends p {
|
|
|
8349
8345
|
composed: !0
|
|
8350
8346
|
})
|
|
8351
8347
|
), (t = this.onSelect) == null || t.call(this, e), this.updateComplete.then(() => {
|
|
8352
|
-
var
|
|
8353
|
-
return (
|
|
8348
|
+
var i;
|
|
8349
|
+
return (i = this.searchInputEl) == null ? void 0 : i.focus();
|
|
8354
8350
|
});
|
|
8355
8351
|
}
|
|
8356
8352
|
scrollActiveIntoView() {
|
|
@@ -8396,29 +8392,29 @@ let ee = 0, $ = class extends p {
|
|
|
8396
8392
|
* Shift+Tab — browser handles naturally (previous li, or back to clear button / input)
|
|
8397
8393
|
*/
|
|
8398
8394
|
handleListKeyDown(e) {
|
|
8399
|
-
var n,
|
|
8395
|
+
var n, o, s;
|
|
8400
8396
|
const t = Array.from(
|
|
8401
8397
|
this.renderRoot.querySelectorAll('li[role="option"]:not(.no-results)')
|
|
8402
|
-
),
|
|
8398
|
+
), i = t.indexOf(this.renderRoot.activeElement);
|
|
8403
8399
|
switch (e.key) {
|
|
8404
8400
|
case "ArrowDown": {
|
|
8405
8401
|
e.preventDefault();
|
|
8406
|
-
const r = t[
|
|
8402
|
+
const r = t[i + 1] ?? t[0];
|
|
8407
8403
|
r == null || r.focus();
|
|
8408
8404
|
break;
|
|
8409
8405
|
}
|
|
8410
8406
|
case "ArrowUp":
|
|
8411
|
-
e.preventDefault(),
|
|
8407
|
+
e.preventDefault(), i <= 0 ? (this.activeIndex = -1, (n = this.searchInputEl) == null || n.focus()) : t[i - 1].focus();
|
|
8412
8408
|
break;
|
|
8413
8409
|
case "Enter":
|
|
8414
8410
|
case " ":
|
|
8415
|
-
|
|
8411
|
+
i >= 0 && this.filteredOptions[i] && (e.preventDefault(), this.selectOption(this.filteredOptions[i]));
|
|
8416
8412
|
break;
|
|
8417
8413
|
case "Escape":
|
|
8418
|
-
e.preventDefault(), this.open = !1, this.activeIndex = -1, (
|
|
8414
|
+
e.preventDefault(), this.open = !1, this.activeIndex = -1, (o = this.searchInputEl) == null || o.focus();
|
|
8419
8415
|
break;
|
|
8420
8416
|
case "Tab":
|
|
8421
|
-
!e.shiftKey &&
|
|
8417
|
+
!e.shiftKey && i === t.length - 1 && (e.preventDefault(), (s = t[0]) == null || s.focus());
|
|
8422
8418
|
break;
|
|
8423
8419
|
}
|
|
8424
8420
|
}
|
|
@@ -8461,7 +8457,7 @@ let ee = 0, $ = class extends p {
|
|
|
8461
8457
|
@focus=${() => {
|
|
8462
8458
|
this.activeIndex = t;
|
|
8463
8459
|
}}
|
|
8464
|
-
@mousedown=${(
|
|
8460
|
+
@mousedown=${(i) => i.preventDefault()}
|
|
8465
8461
|
@click=${() => this.selectOption(e)}
|
|
8466
8462
|
>
|
|
8467
8463
|
<span>${e.value}</span>
|