@soyio/soyio-widget 3.3.0 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +431 -429
- package/dist/index.umd.cjs +23 -23
- package/package.json +1 -1
- package/src/schemas/config.schema.json +15 -1
package/dist/index.js
CHANGED
|
@@ -25,8 +25,8 @@ var R = (o, s, a) => Ke(o, typeof s != "symbol" ? s + "" : s, a), wt = (o, s, a)
|
|
|
25
25
|
var Wi = (o, s, a) => s.has(o) ? Ai("Cannot add the same private member more than once") : s instanceof WeakSet ? s.add(o) : s.set(o, a);
|
|
26
26
|
var Oi = (o, s, a) => (wt(o, s, "access private method"), a);
|
|
27
27
|
var ve = (o, s, a) => bt(vt(o), a, s);
|
|
28
|
-
var
|
|
29
|
-
var
|
|
28
|
+
var N = (o, s, a) => new Promise((f, u) => {
|
|
29
|
+
var P = (I) => {
|
|
30
30
|
try {
|
|
31
31
|
y(a.next(I));
|
|
32
32
|
} catch (T) {
|
|
@@ -38,7 +38,7 @@ var M = (o, s, a) => new Promise((f, u) => {
|
|
|
38
38
|
} catch (T) {
|
|
39
39
|
u(T);
|
|
40
40
|
}
|
|
41
|
-
}, y = (I) => I.done ? f(I.value) : Promise.resolve(I.value).then(
|
|
41
|
+
}, y = (I) => I.done ? f(I.value) : Promise.resolve(I.value).then(P, $);
|
|
42
42
|
y((a = a.apply(o, s)).next());
|
|
43
43
|
});
|
|
44
44
|
function It(o, s) {
|
|
@@ -47,8 +47,8 @@ function It(o, s) {
|
|
|
47
47
|
if (typeof f != "string" && !Array.isArray(f)) {
|
|
48
48
|
for (const u in f)
|
|
49
49
|
if (u !== "default" && !(u in o)) {
|
|
50
|
-
const
|
|
51
|
-
|
|
50
|
+
const P = Object.getOwnPropertyDescriptor(f, u);
|
|
51
|
+
P && Object.defineProperty(o, u, P.get ? P : {
|
|
52
52
|
enumerable: !0,
|
|
53
53
|
get: () => f[u]
|
|
54
54
|
});
|
|
@@ -101,7 +101,7 @@ class ei {
|
|
|
101
101
|
});
|
|
102
102
|
}
|
|
103
103
|
calculateOptimalPlacement(s, a) {
|
|
104
|
-
const f = this.tooltipElement.offsetWidth, u = this.tooltipElement.offsetHeight, { innerWidth:
|
|
104
|
+
const f = this.tooltipElement.offsetWidth, u = this.tooltipElement.offsetHeight, { innerWidth: P, innerHeight: $ } = window, y = 4, I = {
|
|
105
105
|
top: {
|
|
106
106
|
top: a - u - y,
|
|
107
107
|
left: s - f / 2,
|
|
@@ -124,13 +124,13 @@ class ei {
|
|
|
124
124
|
}
|
|
125
125
|
};
|
|
126
126
|
for (const [, x] of Object.entries(I))
|
|
127
|
-
if (ei.fitsInViewport(x, f, u,
|
|
127
|
+
if (ei.fitsInViewport(x, f, u, P, $))
|
|
128
128
|
return x;
|
|
129
129
|
const T = I.top;
|
|
130
|
-
return T.left = Math.max(y, Math.min(T.left,
|
|
130
|
+
return T.left = Math.max(y, Math.min(T.left, P - f - y)), T.top = Math.max(y, Math.min(T.top, $ - u - y)), T;
|
|
131
131
|
}
|
|
132
|
-
static fitsInViewport(s, a, f, u,
|
|
133
|
-
return s.top >= 0 && s.left >= 0 && s.top + f <=
|
|
132
|
+
static fitsInViewport(s, a, f, u, P) {
|
|
133
|
+
return s.top >= 0 && s.left >= 0 && s.top + f <= P && s.left + a <= u;
|
|
134
134
|
}
|
|
135
135
|
applyPlacement(s) {
|
|
136
136
|
this.tooltipElement && (this.tooltipElement.style.left = `${s.left}px`, this.tooltipElement.style.top = `${s.top}px`);
|
|
@@ -159,7 +159,7 @@ const Tt = "https://app.soyio.id", kt = "https://sandbox.soyio.id", Rt = "https:
|
|
|
159
159
|
minWidth: "375px"
|
|
160
160
|
};
|
|
161
161
|
function Mi(o, s, a) {
|
|
162
|
-
return
|
|
162
|
+
return N(this, null, function* () {
|
|
163
163
|
if (!o.contentWindow)
|
|
164
164
|
throw new Error("Invalid iframe: contentWindow is null");
|
|
165
165
|
const f = yield Promise.resolve().then(() => Ie);
|
|
@@ -181,23 +181,23 @@ const jt = "IFRAME_READY", zt = "IFRAME_HEIGHT_CHANGE", Ut = "TOOLTIP_STATE_CHAN
|
|
|
181
181
|
};
|
|
182
182
|
let Bi, ji, zi, Ui, qi;
|
|
183
183
|
function Ht() {
|
|
184
|
-
return
|
|
184
|
+
return N(this, null, function* () {
|
|
185
185
|
const o = yield Promise.resolve().then(() => Ie);
|
|
186
|
-
Bi || ji || zi || Ui || qi || (Bi = o.on(zt, (s) =>
|
|
186
|
+
Bi || ji || zi || Ui || qi || (Bi = o.on(zt, (s) => N(null, null, function* () {
|
|
187
187
|
const a = s.data, f = Y.onHeightChange[a.identifier];
|
|
188
188
|
return f && f(a.height), Promise.resolve();
|
|
189
|
-
})), ji = o.on(jt, (s) =>
|
|
189
|
+
})), ji = o.on(jt, (s) => N(null, null, function* () {
|
|
190
190
|
const a = s.data, f = Y.onIframeReady[a.identifier];
|
|
191
191
|
return f && f(), Promise.resolve();
|
|
192
|
-
})), zi = o.on(Ut, (s) =>
|
|
192
|
+
})), zi = o.on(Ut, (s) => N(null, null, function* () {
|
|
193
193
|
const a = s.data, f = Y.onTooltipChange[a.identifier];
|
|
194
194
|
return f && f(a), Promise.resolve();
|
|
195
|
-
})), Ui = o.on(Ft, (s) =>
|
|
195
|
+
})), Ui = o.on(Ft, (s) => N(null, null, function* () {
|
|
196
196
|
const a = s.data, f = Y.onStateChange[a.identifier];
|
|
197
197
|
return f && f(a), Promise.resolve();
|
|
198
|
-
})), qi = o.on(qt, (a) =>
|
|
199
|
-
const $ = s, { identifier: f } = $, u = _i($, ["identifier"]),
|
|
200
|
-
return
|
|
198
|
+
})), qi = o.on(qt, (a) => N(null, [a], function* ({ data: s }) {
|
|
199
|
+
const $ = s, { identifier: f } = $, u = _i($, ["identifier"]), P = Y.onInfo[f];
|
|
200
|
+
return P && P(u), Promise.resolve();
|
|
201
201
|
})));
|
|
202
202
|
});
|
|
203
203
|
}
|
|
@@ -206,10 +206,10 @@ function ii(o, s) {
|
|
|
206
206
|
onHeightChange: a,
|
|
207
207
|
onIframeReady: f,
|
|
208
208
|
onTooltipChange: u,
|
|
209
|
-
onStateChange:
|
|
209
|
+
onStateChange: P,
|
|
210
210
|
onInfo: $
|
|
211
211
|
} = s;
|
|
212
|
-
a && (Y.onHeightChange[o] = a), f && (Y.onIframeReady[o] = f), u && (Y.onTooltipChange[o] = u),
|
|
212
|
+
a && (Y.onHeightChange[o] = a), f && (Y.onIframeReady[o] = f), u && (Y.onTooltipChange[o] = u), P && (Y.onStateChange[o] = P), $ && (Y.onInfo[o] = $);
|
|
213
213
|
}
|
|
214
214
|
function Gt(o) {
|
|
215
215
|
delete Y.onHeightChange[o], delete Y.onIframeReady[o], delete Y.onTooltipChange[o], delete Y.onStateChange[o], delete Y.onInfo[o];
|
|
@@ -286,17 +286,17 @@ class we {
|
|
|
286
286
|
a && (a.style.display = "none");
|
|
287
287
|
}
|
|
288
288
|
handleIframeReady() {
|
|
289
|
-
return
|
|
289
|
+
return N(this, null, function* () {
|
|
290
290
|
this.iframe && (this.isIframeReady || (this.isIframeReady = !0, this.options.onReady && this.options.onReady(), yield Mi(this.iframe, this.appearance, this.uniqueIdentifier), this.skeleton && this.skeleton.hide()));
|
|
291
291
|
});
|
|
292
292
|
}
|
|
293
293
|
handleTooltipChange(s) {
|
|
294
294
|
if (!this.iframe) return;
|
|
295
|
-
const a = this.iframe.getBoundingClientRect(), { text: f, coordinates: u, isVisible:
|
|
296
|
-
|
|
295
|
+
const a = this.iframe.getBoundingClientRect(), { text: f, coordinates: u, isVisible: P } = s, $ = u.x + a.left, y = u.y + a.top;
|
|
296
|
+
P ? this.tooltipManager.show(f, $, y) : this.tooltipManager.hide();
|
|
297
297
|
}
|
|
298
298
|
setupListeners() {
|
|
299
|
-
return
|
|
299
|
+
return N(this, null, function* () {
|
|
300
300
|
yield Ht();
|
|
301
301
|
const s = {
|
|
302
302
|
onHeightChange: this.handleHeightChange.bind(this),
|
|
@@ -308,7 +308,7 @@ class we {
|
|
|
308
308
|
});
|
|
309
309
|
}
|
|
310
310
|
mount(s) {
|
|
311
|
-
return
|
|
311
|
+
return N(this, null, function* () {
|
|
312
312
|
if (!Le) return this;
|
|
313
313
|
this.isIframeReady = !1, yield this.setupListeners(), Vt(this.iframeIdentifier);
|
|
314
314
|
const a = Yt(s), f = this.iframeUrl();
|
|
@@ -323,7 +323,7 @@ class we {
|
|
|
323
323
|
* This sends the new appearance config to the already-mounted iframe.
|
|
324
324
|
*/
|
|
325
325
|
updateAppearance(s) {
|
|
326
|
-
return
|
|
326
|
+
return N(this, null, function* () {
|
|
327
327
|
this.appearance = s, !(!this.iframe || !this.isIframeReady) && (yield Mi(this.iframe, s, this.uniqueIdentifier));
|
|
328
328
|
});
|
|
329
329
|
}
|
|
@@ -332,15 +332,15 @@ class Zt {
|
|
|
332
332
|
constructor(s, a) {
|
|
333
333
|
R(this, "element");
|
|
334
334
|
R(this, "identifier");
|
|
335
|
-
var
|
|
335
|
+
var U, ne;
|
|
336
336
|
this.identifier = `skeleton-${s}`, this.element = document.createElement("div"), this.element.id = this.identifier;
|
|
337
|
-
const f = (
|
|
337
|
+
const f = (ne = (U = window.matchMedia) == null ? void 0 : U.call(window, "(prefers-color-scheme: dark)")) == null ? void 0 : ne.matches, u = (a == null ? void 0 : a.mode) === "dark" || (a == null ? void 0 : a.mode) === "auto" && f || (a == null ? void 0 : a.theme) === "night" && !(a != null && a.mode), P = u ? "#1E293B" : "#FFFFFF", $ = u ? "#334155" : "#E5E7EB", y = u ? "#334155" : "#f0f0f0", I = u ? "#475569" : "#e0e0e0", T = u ? "#334155" : "#f0f0f0";
|
|
338
338
|
this.element.style.cssText = `
|
|
339
339
|
position: absolute;
|
|
340
340
|
top: 0;
|
|
341
341
|
left: 0;
|
|
342
342
|
width: 100%;
|
|
343
|
-
background: ${
|
|
343
|
+
background: ${P};
|
|
344
344
|
border: 1px solid ${$};
|
|
345
345
|
border-radius: 0.25rem;
|
|
346
346
|
opacity: 1;
|
|
@@ -360,14 +360,14 @@ class Zt {
|
|
|
360
360
|
justify-content: flex-start;
|
|
361
361
|
gap: 0.75rem;
|
|
362
362
|
`;
|
|
363
|
-
const
|
|
364
|
-
|
|
363
|
+
const O = document.createElement("div");
|
|
364
|
+
O.style.cssText = `
|
|
365
365
|
display: flex;
|
|
366
366
|
align-items: center;
|
|
367
367
|
gap: 0.75rem;
|
|
368
368
|
`;
|
|
369
|
-
const
|
|
370
|
-
|
|
369
|
+
const z = document.createElement("div");
|
|
370
|
+
z.style.cssText = `
|
|
371
371
|
width: 2rem;
|
|
372
372
|
height: 2rem;
|
|
373
373
|
background: linear-gradient(90deg, ${y} 25%, ${I} 50%, ${T} 75%);
|
|
@@ -376,8 +376,8 @@ class Zt {
|
|
|
376
376
|
border-radius: 50%;
|
|
377
377
|
flex-shrink: 0;
|
|
378
378
|
`;
|
|
379
|
-
const
|
|
380
|
-
|
|
379
|
+
const M = document.createElement("div");
|
|
380
|
+
M.style.cssText = `
|
|
381
381
|
height: 1rem;
|
|
382
382
|
width: 30%;
|
|
383
383
|
background: linear-gradient(90deg, ${y} 25%, ${I} 50%, ${T} 75%);
|
|
@@ -385,8 +385,8 @@ class Zt {
|
|
|
385
385
|
animation: shimmer 1.5s infinite;
|
|
386
386
|
border-radius: 0.125rem;
|
|
387
387
|
`;
|
|
388
|
-
const
|
|
389
|
-
|
|
388
|
+
const W = document.createElement("div");
|
|
389
|
+
W.style.cssText = `
|
|
390
390
|
width: 3rem;
|
|
391
391
|
height: 1.25rem;
|
|
392
392
|
background: linear-gradient(90deg, ${y} 25%, ${I} 50%, ${T} 75%);
|
|
@@ -396,14 +396,14 @@ class Zt {
|
|
|
396
396
|
margin-left: auto;
|
|
397
397
|
flex-shrink: 0;
|
|
398
398
|
`;
|
|
399
|
-
const
|
|
400
|
-
|
|
399
|
+
const H = document.createElement("div");
|
|
400
|
+
H.style.cssText = `
|
|
401
401
|
display: flex;
|
|
402
402
|
align-items: flex-start;
|
|
403
403
|
gap: 0.75rem;
|
|
404
404
|
`;
|
|
405
|
-
const
|
|
406
|
-
|
|
405
|
+
const ie = document.createElement("div");
|
|
406
|
+
ie.style.cssText = `
|
|
407
407
|
width: 2rem;
|
|
408
408
|
height: 1rem;
|
|
409
409
|
display: flex;
|
|
@@ -411,8 +411,8 @@ class Zt {
|
|
|
411
411
|
align-items: center;
|
|
412
412
|
flex-shrink: 0;
|
|
413
413
|
`;
|
|
414
|
-
const
|
|
415
|
-
|
|
414
|
+
const ce = document.createElement("div");
|
|
415
|
+
ce.style.cssText = `
|
|
416
416
|
width: 1rem;
|
|
417
417
|
height: 1rem;
|
|
418
418
|
background: linear-gradient(90deg, ${y} 25%, ${I} 50%, ${T} 75%);
|
|
@@ -421,15 +421,15 @@ class Zt {
|
|
|
421
421
|
border-radius: 0.25rem;
|
|
422
422
|
flex-shrink: 0;
|
|
423
423
|
`;
|
|
424
|
-
const
|
|
425
|
-
|
|
424
|
+
const K = document.createElement("div");
|
|
425
|
+
K.style.cssText = `
|
|
426
426
|
flex-grow: 1;
|
|
427
427
|
display: flex;
|
|
428
428
|
flex-direction: column;
|
|
429
429
|
gap: 0.5rem;
|
|
430
430
|
`;
|
|
431
|
-
const
|
|
432
|
-
|
|
431
|
+
const G = document.createElement("div");
|
|
432
|
+
G.style.cssText = `
|
|
433
433
|
height: 0.875rem;
|
|
434
434
|
width: 80%;
|
|
435
435
|
background: linear-gradient(90deg, ${y} 25%, ${I} 50%, ${T} 75%);
|
|
@@ -437,8 +437,8 @@ class Zt {
|
|
|
437
437
|
animation: shimmer 1.5s infinite;
|
|
438
438
|
border-radius: 0.125rem;
|
|
439
439
|
`;
|
|
440
|
-
const
|
|
441
|
-
if (
|
|
440
|
+
const pe = document.createElement("div");
|
|
441
|
+
if (pe.style.cssText = `
|
|
442
442
|
height: 0.875rem;
|
|
443
443
|
width: 60%;
|
|
444
444
|
background: linear-gradient(90deg, ${y} 25%, ${I} 50%, ${T} 75%);
|
|
@@ -446,8 +446,8 @@ class Zt {
|
|
|
446
446
|
animation: shimmer 2s infinite;
|
|
447
447
|
border-radius: 0.125rem;
|
|
448
448
|
`, !document.getElementById("skeleton-animation")) {
|
|
449
|
-
const
|
|
450
|
-
|
|
449
|
+
const V = document.createElement("style");
|
|
450
|
+
V.id = "skeleton-animation", V.textContent = `
|
|
451
451
|
@keyframes shimmer {
|
|
452
452
|
0% { background-position: 200% 0; }
|
|
453
453
|
100% { background-position: -200% 0; }
|
|
@@ -456,9 +456,9 @@ class Zt {
|
|
|
456
456
|
0% { opacity: 1; }
|
|
457
457
|
100% { opacity: 0; }
|
|
458
458
|
}
|
|
459
|
-
`, document.head.appendChild(
|
|
459
|
+
`, document.head.appendChild(V);
|
|
460
460
|
}
|
|
461
|
-
|
|
461
|
+
O.appendChild(z), O.appendChild(M), O.appendChild(W), K.appendChild(G), K.appendChild(pe), ie.appendChild(ce), H.appendChild(ie), H.appendChild(K), x.appendChild(O), x.appendChild(H), this.element.appendChild(x);
|
|
462
462
|
}
|
|
463
463
|
cleanupExistingSkeleton() {
|
|
464
464
|
const s = document.getElementById(this.identifier);
|
|
@@ -471,7 +471,7 @@ class Zt {
|
|
|
471
471
|
this.element.style.animation = "skeletonFadeOut 0.2s ease-out forwards", setTimeout(() => this.element.remove(), 200);
|
|
472
472
|
}
|
|
473
473
|
}
|
|
474
|
-
const We = "3.
|
|
474
|
+
const We = "3.4.0";
|
|
475
475
|
function Xt(o) {
|
|
476
476
|
var I, T;
|
|
477
477
|
const s = (I = o.origin) != null ? I : o.context, a = Li(ye({}, o), { origin: s }), f = [
|
|
@@ -481,10 +481,10 @@ function Xt(o) {
|
|
|
481
481
|
"optionalReconsentBehavior",
|
|
482
482
|
"mandatoryReconsentBehavior",
|
|
483
483
|
"allowGranularScopeSelection"
|
|
484
|
-
], u = (T = o.isSandbox) != null ? T : !1,
|
|
484
|
+
], u = (T = o.isSandbox) != null ? T : !1, P = o.developmentUrl || (u ? xt : Rt), $ = new URLSearchParams();
|
|
485
485
|
if ($.set("sdk", "web"), $.set("sdkVersion", We), f.forEach((x) => {
|
|
486
|
-
const
|
|
487
|
-
|
|
486
|
+
const O = a[x];
|
|
487
|
+
O !== void 0 && (typeof O == "string" && O.length === 0 || $.set(x, String(O)));
|
|
488
488
|
}), o.metadata !== void 0)
|
|
489
489
|
try {
|
|
490
490
|
$.set("metadata", JSON.stringify(o.metadata));
|
|
@@ -492,7 +492,7 @@ function Xt(o) {
|
|
|
492
492
|
console.error("[Soyio-widget] Failed to stringify metadata. It will not be included in the consent request.", x);
|
|
493
493
|
}
|
|
494
494
|
const y = $.toString();
|
|
495
|
-
return `${
|
|
495
|
+
return `${P}/embed/consents/${o.consentTemplateId}${y ? `?${y}` : ""}`;
|
|
496
496
|
}
|
|
497
497
|
class Vi extends we {
|
|
498
498
|
constructor(a) {
|
|
@@ -520,7 +520,7 @@ class Vi extends we {
|
|
|
520
520
|
});
|
|
521
521
|
}
|
|
522
522
|
setupListeners() {
|
|
523
|
-
return
|
|
523
|
+
return N(this, null, function* () {
|
|
524
524
|
yield ve(Vi.prototype, this, "setupListeners").call(this), ii(this.uniqueIdentifier, {
|
|
525
525
|
onStateChange: this.handleStateChange.bind(this)
|
|
526
526
|
});
|
|
@@ -654,60 +654,62 @@ function rr(o) {
|
|
|
654
654
|
}), Array.from(s.values());
|
|
655
655
|
}
|
|
656
656
|
function nr(o, s, a) {
|
|
657
|
-
return
|
|
658
|
-
var
|
|
657
|
+
return N(this, null, function* () {
|
|
658
|
+
var U, ne;
|
|
659
659
|
if (!o.contentWindow)
|
|
660
660
|
throw new Error("Invalid iframe: contentWindow is null");
|
|
661
661
|
const {
|
|
662
662
|
redecOperationIds: f,
|
|
663
663
|
requestableDataCategories: u,
|
|
664
|
-
content:
|
|
664
|
+
content: P,
|
|
665
665
|
header: $,
|
|
666
666
|
rightExamples: y,
|
|
667
667
|
consentManagement: I,
|
|
668
668
|
appearance: T,
|
|
669
|
-
externalRightsExerciseUrl: x
|
|
670
|
-
|
|
671
|
-
|
|
669
|
+
externalRightsExerciseUrl: x,
|
|
670
|
+
origin: O,
|
|
671
|
+
metadata: z
|
|
672
|
+
} = s, M = (U = T == null ? void 0 : T.config) == null ? void 0 : U.showHeader, W = (ne = T == null ? void 0 : T.config) == null ? void 0 : ne.showConsentManagementHeader, H = tr(x), ie = rr(u), K = I !== void 0 && Object.values(I).some((V) => Array.isArray(V) ? V.length > 0 : V != null) ? I : void 0;
|
|
673
|
+
Array.isArray(K == null ? void 0 : K.scopeGroups) && K.scopeGroups.length > 0 && s.groupConsentsByScope !== !0 && console.warn(
|
|
672
674
|
"Soyio widget: privacyCenterConfig.groupConsentsByScope must be true for consentManagement.scopeGroups to apply."
|
|
673
675
|
);
|
|
674
|
-
const
|
|
675
|
-
if (typeof f != "undefined" && (
|
|
676
|
-
config: ye(ye({}, typeof
|
|
677
|
-
}), Object.keys(
|
|
678
|
-
const
|
|
676
|
+
const G = {};
|
|
677
|
+
if (typeof f != "undefined" && (G.redecOperationIds = f), typeof ie != "undefined" && (G.requestableDataCategories = ie), typeof P != "undefined" && (G.content = P), typeof $ != "undefined" && (G.header = $), typeof y != "undefined" && (G.rightExamples = y), typeof H != "undefined" && (G.externalRightsExerciseUrl = H), typeof K != "undefined" && (G.consentManagement = K), typeof O == "string" && O.trim() !== "" && (G.origin = O), z && typeof z == "object" && !Array.isArray(z) && (G.metadata = z), (typeof M == "boolean" || typeof W == "boolean") && (G.appearance = {
|
|
678
|
+
config: ye(ye({}, typeof M == "boolean" ? { showHeader: M } : {}), typeof W == "boolean" ? { showConsentManagementHeader: W } : {})
|
|
679
|
+
}), Object.keys(G).length === 0) return;
|
|
680
|
+
const pe = yield Promise.resolve().then(() => Ie);
|
|
679
681
|
try {
|
|
680
|
-
yield
|
|
682
|
+
yield pe.send(o.contentWindow, "SET_PRIVACY_CENTER_CONFIG", ye({
|
|
681
683
|
identifier: a
|
|
682
|
-
},
|
|
683
|
-
} catch (
|
|
684
|
-
console.error("Failed to send privacy center config:",
|
|
684
|
+
}, G));
|
|
685
|
+
} catch (V) {
|
|
686
|
+
console.error("Failed to send privacy center config:", V);
|
|
685
687
|
}
|
|
686
688
|
});
|
|
687
689
|
}
|
|
688
690
|
function or(o) {
|
|
689
|
-
var $, y, I, T, x,
|
|
691
|
+
var $, y, I, T, x, O;
|
|
690
692
|
const s = ($ = o.isSandbox) != null ? $ : !1, a = o.developmentUrl || (s ? Dt : Et), f = new URLSearchParams();
|
|
691
693
|
if (f.set("sdkVersion", We), o.sessionToken ? f.set("sessionToken", o.sessionToken) : o.companyId && f.set("companyId", o.companyId), (y = o.enabledFeatures) != null && y.length && f.set("enabledFeatures", o.enabledFeatures.join(",")), (I = o.enabledRights) != null && I.length && f.set("enabledRights", o.enabledRights.join(",")), (T = o.dataSubjects) != null && T.length && f.set("dataSubjects", o.dataSubjects.join(",")), o.requestReference && f.set("requestReference", o.requestReference), o.fileRequisites && Object.values(o.fileRequisites).some(
|
|
692
|
-
(
|
|
694
|
+
(M) => M != null
|
|
693
695
|
)) {
|
|
694
|
-
const
|
|
695
|
-
f.set("fileRequisites",
|
|
696
|
+
const M = JSON.stringify(o.fileRequisites);
|
|
697
|
+
f.set("fileRequisites", M);
|
|
696
698
|
}
|
|
697
699
|
if (o.consentManagement) {
|
|
698
|
-
const { allowMultipleOpenScopeGroups:
|
|
699
|
-
if (Array.isArray(
|
|
700
|
+
const { allowMultipleOpenScopeGroups: z, scopeGroups: M } = o.consentManagement, W = Array.isArray(M) && M.length > 0 || typeof z == "boolean";
|
|
701
|
+
if (Array.isArray(M) && M.length > 0 && o.groupConsentsByScope !== !0 && console.warn(
|
|
700
702
|
"Soyio widget: privacyCenterConfig.groupConsentsByScope must be true for consentManagement.scopeGroups to apply."
|
|
701
|
-
),
|
|
702
|
-
const
|
|
703
|
-
f.set("consentManagement",
|
|
703
|
+
), W) {
|
|
704
|
+
const H = JSON.stringify(o.consentManagement);
|
|
705
|
+
f.set("consentManagement", H);
|
|
704
706
|
}
|
|
705
707
|
}
|
|
706
708
|
o.demo !== void 0 && f.set("demo", String(o.demo)), o.consentMode && f.set("consentMode", o.consentMode);
|
|
707
|
-
const u = (
|
|
709
|
+
const u = (O = (x = o.appearance) == null ? void 0 : x.config) == null ? void 0 : O.consentControl;
|
|
708
710
|
u && f.set("consentControl", u), o.consentRetentionPeriod && f.set("consentRetentionPeriod", o.consentRetentionPeriod), o.allowGranularScopeSelection !== void 0 && f.set("allowGranularScopeSelection", String(o.allowGranularScopeSelection)), o.groupConsentsByScope !== void 0 && f.set("groupConsentsByScope", String(o.groupConsentsByScope)), o.showBatchConsentConfirmation !== void 0 && f.set("showBatchConsentConfirmation", String(o.showBatchConsentConfirmation));
|
|
709
|
-
const
|
|
710
|
-
return `${a}${
|
|
711
|
+
const P = f.toString();
|
|
712
|
+
return `${a}${P ? `?${P}` : ""}`;
|
|
711
713
|
}
|
|
712
714
|
class Yi extends we {
|
|
713
715
|
constructor() {
|
|
@@ -720,7 +722,7 @@ class Yi extends we {
|
|
|
720
722
|
return this._uniqueIdentifier;
|
|
721
723
|
}
|
|
722
724
|
handleIframeReady() {
|
|
723
|
-
return
|
|
725
|
+
return N(this, null, function* () {
|
|
724
726
|
yield ve(Yi.prototype, this, "handleIframeReady").call(this), this.iframe && (yield nr(this.iframe, this.options, this.uniqueIdentifier));
|
|
725
727
|
});
|
|
726
728
|
}
|
|
@@ -739,8 +741,8 @@ function sr(o) {
|
|
|
739
741
|
return "disclosureRequestId" in o.configProps ? s += ["disclosures", o.configProps.disclosureRequestId].join("/") : s += o.request, s;
|
|
740
742
|
}
|
|
741
743
|
function ar(o) {
|
|
742
|
-
var
|
|
743
|
-
const s = (
|
|
744
|
+
var P;
|
|
745
|
+
const s = (P = o.isSandbox) != null ? P : !1, a = Oe(o.developmentUrl, s), f = Object.entries(o.configProps).filter(([$, y]) => y || $ === "disclosureRequestId").map(([$, y]) => `${$}=${encodeURIComponent(y)}`).join("&"), u = sr(o);
|
|
744
746
|
return `${a}/${u}?sdk=web&sdkVersion=${We}&${f}`;
|
|
745
747
|
}
|
|
746
748
|
function fr(o) {
|
|
@@ -748,12 +750,12 @@ function fr(o) {
|
|
|
748
750
|
}
|
|
749
751
|
function dr(o, s) {
|
|
750
752
|
var $;
|
|
751
|
-
const a = ($ = o.isSandbox) != null ? $ : !1, f = Oe(o.developmentUrl, a), u = fr(o),
|
|
753
|
+
const a = ($ = o.isSandbox) != null ? $ : !1, f = Oe(o.developmentUrl, a), u = fr(o), P = new URLSearchParams({
|
|
752
754
|
sdk: "web",
|
|
753
755
|
sdkVersion: We,
|
|
754
756
|
identifier: s
|
|
755
757
|
});
|
|
756
|
-
return o.customColor &&
|
|
758
|
+
return o.customColor && P.set("customColor", o.customColor), `${f}/${u}?${P.toString()}`;
|
|
757
759
|
}
|
|
758
760
|
function cr(o, s) {
|
|
759
761
|
var u;
|
|
@@ -790,7 +792,7 @@ class Ze extends we {
|
|
|
790
792
|
return dr(this.options, this.uniqueIdentifier);
|
|
791
793
|
}
|
|
792
794
|
mount(a) {
|
|
793
|
-
return
|
|
795
|
+
return N(this, null, function* () {
|
|
794
796
|
return this.isReadyCallbackFired = !1, yield ve(Ze.prototype, this, "mount").call(this, a), this.iframe ? (this.iframe.style.height = this.options.height || "720px", this.iframe.style.minHeight = this.options.minHeight || this.iframe.style.height, this.iframe.onload = () => {
|
|
795
797
|
this.notifyReady();
|
|
796
798
|
}, this) : this;
|
|
@@ -801,14 +803,14 @@ class Ze extends we {
|
|
|
801
803
|
this.removePopupListener(), (a = this.passkeyPopupWindow) == null || a.close(), this.passkeyPopupWindow = null, this.isReadyCallbackFired = !1, super.unmount();
|
|
802
804
|
}
|
|
803
805
|
setupListeners() {
|
|
804
|
-
return
|
|
806
|
+
return N(this, null, function* () {
|
|
805
807
|
yield ve(Ze.prototype, this, "setupListeners").call(this), yield this.mountPopupListener(), ii(this.uniqueIdentifier, {
|
|
806
808
|
onInfo: (a) => this.handleInfoEvent(a)
|
|
807
809
|
});
|
|
808
810
|
});
|
|
809
811
|
}
|
|
810
812
|
handleIframeReady() {
|
|
811
|
-
return
|
|
813
|
+
return N(this, null, function* () {
|
|
812
814
|
this.notifyReady();
|
|
813
815
|
});
|
|
814
816
|
}
|
|
@@ -820,9 +822,9 @@ class Ze extends we {
|
|
|
820
822
|
this.options.onEvent(a);
|
|
821
823
|
}
|
|
822
824
|
mountPopupListener() {
|
|
823
|
-
return
|
|
825
|
+
return N(this, null, function* () {
|
|
824
826
|
const a = yield Promise.resolve().then(() => Ie);
|
|
825
|
-
this.removePopupListener(), this.popupListener = a.on(Ki, (u) =>
|
|
827
|
+
this.removePopupListener(), this.popupListener = a.on(Ki, (u) => N(this, [u], function* ({ data: f }) {
|
|
826
828
|
return f.eventName !== "PASSKEY_REGISTERED" && f.eventName !== "PASSKEY_AUTHENTICATED" || f.identifier !== this.uniqueIdentifier || (f.eventName === "PASSKEY_REGISTERED" && (this.notifyPasskeyRegistered(), this.triggerEvent({
|
|
827
829
|
eventName: "PASSKEY_REGISTERED",
|
|
828
830
|
type: "PASSKEY_REGISTERED",
|
|
@@ -875,45 +877,45 @@ class Ze extends we {
|
|
|
875
877
|
this.passkeyPopupWindow = window.open(f, "SoyioPasskeyAuthentication", "width=420,height=720,scrollbars=yes");
|
|
876
878
|
}
|
|
877
879
|
}
|
|
878
|
-
let
|
|
880
|
+
let re = null, Je = null;
|
|
879
881
|
function Xe(o = null) {
|
|
880
|
-
|
|
882
|
+
re && !re.closed && re.focus(), o == null || o.preventDefault();
|
|
881
883
|
}
|
|
882
884
|
function Ne() {
|
|
883
885
|
document.body.style.filter = "", document.body.removeEventListener("click", Xe);
|
|
884
886
|
}
|
|
885
887
|
function ur() {
|
|
886
888
|
Je = setInterval(() => {
|
|
887
|
-
(!
|
|
889
|
+
(!re || re.closed) && (Je && clearInterval(Je), Ne());
|
|
888
890
|
}, Ot);
|
|
889
891
|
}
|
|
890
892
|
function hr(o) {
|
|
891
|
-
const s = ar(o), a = _t, f = Wt, u = window.screenLeft !== void 0 ? window.screenLeft : window.screenX,
|
|
893
|
+
const s = ar(o), a = _t, f = Wt, u = window.screenLeft !== void 0 ? window.screenLeft : window.screenX, P = window.screenTop !== void 0 ? window.screenTop : window.screenY, $ = window.innerWidth || document.documentElement.clientWidth || window.screen.width, y = window.innerHeight || document.documentElement.clientHeight || window.screen.height, I = $ / window.screen.availWidth, T = ($ - a) / 2 / I + u, x = (y - f) / 2 / I + P, O = [
|
|
892
894
|
"scrollbars=yes",
|
|
893
895
|
`width=${a}`,
|
|
894
896
|
`height=${f}`,
|
|
895
897
|
`top=${x}`,
|
|
896
898
|
`left=${T}`
|
|
897
|
-
].join(","),
|
|
898
|
-
|
|
899
|
+
].join(","), z = window.open("about:blank", "Soyio", O);
|
|
900
|
+
z ? (re = z, re.location.href = s, document.body.style.filter = "blur(5px)", document.body.addEventListener("click", Xe), Xe(), ur()) : (Ne(), alert("Debes habilitar las ventanas emergentes para poder iniciar el flujo."));
|
|
899
901
|
}
|
|
900
902
|
function Cr() {
|
|
901
|
-
|
|
903
|
+
re && (re.close(), re = null), Ne();
|
|
902
904
|
}
|
|
903
905
|
let be = null;
|
|
904
|
-
function
|
|
906
|
+
function gr() {
|
|
905
907
|
be && (be.cancel(), be = null);
|
|
906
908
|
}
|
|
907
|
-
function
|
|
908
|
-
return
|
|
909
|
+
function Pr(o) {
|
|
910
|
+
return N(this, null, function* () {
|
|
909
911
|
const { onEvent: s } = o, a = yield Promise.resolve().then(() => Ie);
|
|
910
|
-
be &&
|
|
912
|
+
be && gr(), be = a.on(Ki, (u) => N(null, [u], function* ({ data: f }) {
|
|
911
913
|
return s(f), At.includes(f.eventName) ? Cr() : f.eventName === Lt && Ne(), Promise.resolve();
|
|
912
914
|
}));
|
|
913
915
|
});
|
|
914
916
|
}
|
|
915
917
|
function mr(o) {
|
|
916
|
-
|
|
918
|
+
Pr(o);
|
|
917
919
|
}
|
|
918
920
|
var _e, Ji;
|
|
919
921
|
class Lr {
|
|
@@ -932,7 +934,7 @@ const $r = "#/definitions/SoyioAppearance", yr = "http://json-schema.org/draft-0
|
|
|
932
934
|
$ref: $r,
|
|
933
935
|
$schema: yr,
|
|
934
936
|
definitions: vr
|
|
935
|
-
}, br = "#/definitions/SoyioWidgetConfig", wr = "http://json-schema.org/draft-07/schema#", Ir = /* @__PURE__ */ JSON.parse(`{"CSSProperties":{"additionalProperties":false,"properties":{"WebkitAppearance":{"type":"string"},"accentColor":{"type":"string"},"alignItems":{"enum":["flex-start","flex-end","center","baseline","stretch"],"type":"string"},"appearance":{"type":"string"},"backgroundColor":{"type":"string"},"border":{"type":"string"},"borderBottom":{"type":"string"},"borderBottomColor":{"type":"string"},"borderBottomLeftRadius":{"type":"string"},"borderBottomRightRadius":{"type":"string"},"borderBottomStyle":{"type":"string"},"borderBottomWidth":{"type":"string"},"borderColor":{"type":"string"},"borderLeft":{"type":"string"},"borderLeftColor":{"type":"string"},"borderLeftStyle":{"type":"string"},"borderLeftWidth":{"type":"string"},"borderRadius":{"type":"string"},"borderRight":{"type":"string"},"borderRightColor":{"type":"string"},"borderRightStyle":{"type":"string"},"borderRightWidth":{"type":"string"},"borderStyle":{"type":"string"},"borderTop":{"type":"string"},"borderTopColor":{"type":"string"},"borderTopLeftRadius":{"type":"string"},"borderTopRightRadius":{"type":"string"},"borderTopStyle":{"type":"string"},"borderTopWidth":{"type":"string"},"borderWidth":{"type":"string"},"bottom":{"type":"string"},"boxShadow":{"type":"string"},"color":{"type":"string"},"cursor":{"type":"string"},"display":{"enum":["block","inline","inline-block","flex","inline-flex","grid","inline-grid","none"],"type":"string"},"fill":{"type":"string"},"fillOpacity":{"type":"number"},"flex":{"type":"string"},"flexDirection":{"enum":["row","row-reverse","column","column-reverse"],"type":"string"},"flexWrap":{"enum":["nowrap","wrap","wrap-reverse"],"type":"string"},"fontFamily":{"type":"string"},"fontSize":{"type":"string"},"fontVariant":{"type":"string"},"fontWeight":{"type":["string","number"]},"gap":{"type":"string"},"height":{"type":"string"},"justifyContent":{"enum":["flex-start","flex-end","center","space-between","space-around","space-evenly"],"type":"string"},"left":{"type":"string"},"letterSpacing":{"type":"string"},"lineHeight":{"type":["string","number"]},"margin":{"type":"string"},"marginBottom":{"type":"string"},"marginLeft":{"type":"string"},"marginRight":{"type":"string"},"marginTop":{"type":"string"},"mozOsxFontSmoothing":{"enum":["auto","grayscale","unset"],"type":"string"},"opacity":{"type":"number"},"outline":{"type":"string"},"outlineOffset":{"type":"string"},"overflow":{"enum":["visible","hidden","scroll","auto"],"type":"string"},"overflowX":{"enum":["visible","hidden","scroll","auto"],"type":"string"},"overflowY":{"enum":["visible","hidden","scroll","auto"],"type":"string"},"padding":{"type":"string"},"paddingBottom":{"type":"string"},"paddingLeft":{"type":"string"},"paddingRight":{"type":"string"},"paddingTop":{"type":"string"},"position":{"enum":["static","relative","absolute","fixed","sticky"],"type":"string"},"right":{"type":"string"},"textAlign":{"enum":["left","right","center","justify"],"type":"string"},"textDecoration":{"type":"string"},"textTransform":{"enum":["none","capitalize","uppercase","lowercase"],"type":"string"},"top":{"type":"string"},"transform":{"type":"string"},"transformOrigin":{"type":"string"},"transition":{"type":"string"},"transitionDelay":{"type":"string"},"transitionDuration":{"type":"string"},"transitionProperty":{"type":"string"},"transitionTimingFunction":{"type":"string"},"visibility":{"enum":["visible","hidden","collapse"],"type":"string"},"webkitFontSmoothing":{"enum":["auto","antialiased","subpixel-antialiased"],"type":"string"},"webkitTextFillColor":{"type":"string"},"whiteSpace":{"enum":["normal","nowrap","pre","pre-wrap","pre-line"],"type":"string"},"width":{"type":"string"},"wordBreak":{"enum":["normal","break-all","keep-all","break-word"],"type":"string"},"zIndex":{"type":["number","string"]}},"type":"object"},"ConsentConfig":{"additionalProperties":false,"properties":{"actionToken":{"type":"string"},"allowGranularScopeSelection":{"type":"boolean"},"appearance":{"$ref":"#/definitions/SoyioAppearance"},"consentTemplateId":{"type":"string"},"context":{"deprecated":"Use \`origin\` instead.","type":"string"},"developmentUrl":{"type":"string"},"entityId":{"type":"string"},"isSandbox":{"type":"boolean"},"mandatoryReconsentBehavior":{"enum":["notice","askAgain"],"type":"string"},"metadata":{"additionalProperties":{},"type":"object"},"onEvent":{"$comment":"(event: TEvent) => void","properties":{"namedArgs":{"additionalProperties":false,"properties":{"event":{"additionalProperties":{},"type":"object"}},"required":["event"],"type":"object"}},"type":"object"},"onReady":{"$comment":"() => void"},"optionalReconsentBehavior":{"enum":["notice","askAgain","hide"],"type":"string"},"origin":{"type":"string"}},"required":["consentTemplateId","onEvent"],"type":"object"},"DataSubject":{"enum":["anonymous_user","citizen_voter","commuter","consultant","customer","employee","job_applicant","next_of_kin","passenger","patient","prospect","shareholder","supplier_vendor","trainee","visitor"],"type":"string"},"IconWeight":{"enum":["thin","light","regular","bold","fill","duotone"],"type":"string"},"PrivacyCenterConfig":{"anyOf":[{"additionalProperties":false,"properties":{"allowGranularScopeSelection":{"type":"boolean"},"appearance":{"$ref":"#/definitions/SoyioAppearance"},"companyId":{"type":"string"},"consentManagement":{"$ref":"#/definitions/PrivacyCenterConsentManagementConfig"},"consentMode":{"enum":["immediate","batch"],"type":"string"},"consentRetentionPeriod":{"type":"string"},"content":{"$ref":"#/definitions/PrivacyCenterContentConfig"},"dataSubjects":{"items":{"$ref":"#/definitions/DataSubject"},"type":"array"},"demo":{"type":"boolean"},"developmentUrl":{"type":"string"},"enabledFeatures":{"items":{"$ref":"#/definitions/PrivacyManagerFeature"},"type":"array"},"enabledRights":{"items":{"$ref":"#/definitions/PrivacyCenterRight"},"type":"array"},"externalRightsExerciseUrl":{"format":"uri","minLength":1,"type":"string"},"fileRequisites":{"additionalProperties":false,"properties":{"allowedExtensions":{"items":{"type":"string"},"type":"array"},"maxFileSize":{"type":"number"}},"type":"object"},"groupConsentsByScope":{"type":"boolean"},"header":{"$ref":"#/definitions/PrivacyCenterHeaderCopyConfig"},"isSandbox":{"type":"boolean"},"onEvent":{"$comment":"(event: TEvent) => void","properties":{"namedArgs":{"additionalProperties":false,"properties":{"event":{"additionalProperties":{},"type":"object"}},"required":["event"],"type":"object"}},"type":"object"},"onReady":{"$comment":"() => void"},"redecOperationIds":{"items":{"$ref":"#/definitions/RedecOperationId"},"type":"array"},"requestReference":{"type":"string"},"requestableDataCategories":{"items":{"$ref":"#/definitions/PrivacyCenterRequestableDataCategoryOption"},"type":"array"},"rightExamples":{"additionalProperties":false,"properties":{"access":{"type":"string"},"opposition":{"type":"string"},"portability":{"type":"string"},"rectification":{"type":"string"},"redec_cancellation":{"type":"string"},"redec_complementation":{"type":"string"},"redec_rectification":{"type":"string"},"redec_update":{"type":"string"},"suppression":{"type":"string"}},"type":"object"},"showBatchConsentConfirmation":{"type":"boolean"}},"required":["companyId","onEvent"],"type":"object"},{"additionalProperties":false,"properties":{"allowGranularScopeSelection":{"type":"boolean"},"appearance":{"$ref":"#/definitions/SoyioAppearance"},"consentManagement":{"$ref":"#/definitions/PrivacyCenterConsentManagementConfig"},"consentMode":{"enum":["immediate","batch"],"type":"string"},"consentRetentionPeriod":{"type":"string"},"content":{"$ref":"#/definitions/PrivacyCenterContentConfig"},"dataSubjects":{"items":{"$ref":"#/definitions/DataSubject"},"type":"array"},"demo":{"type":"boolean"},"developmentUrl":{"type":"string"},"enabledFeatures":{"items":{"$ref":"#/definitions/PrivacyManagerFeature"},"type":"array"},"enabledRights":{"items":{"$ref":"#/definitions/PrivacyCenterRight"},"type":"array"},"externalRightsExerciseUrl":{"format":"uri","minLength":1,"type":"string"},"fileRequisites":{"additionalProperties":false,"properties":{"allowedExtensions":{"items":{"type":"string"},"type":"array"},"maxFileSize":{"type":"number"}},"type":"object"},"groupConsentsByScope":{"type":"boolean"},"header":{"$ref":"#/definitions/PrivacyCenterHeaderCopyConfig"},"isSandbox":{"type":"boolean"},"onEvent":{"$comment":"(event: TEvent) => void","properties":{"namedArgs":{"additionalProperties":false,"properties":{"event":{"additionalProperties":{},"type":"object"}},"required":["event"],"type":"object"}},"type":"object"},"onReady":{"$comment":"() => void"},"redecOperationIds":{"items":{"$ref":"#/definitions/RedecOperationId"},"type":"array"},"requestReference":{"type":"string"},"requestableDataCategories":{"items":{"$ref":"#/definitions/PrivacyCenterRequestableDataCategoryOption"},"type":"array"},"rightExamples":{"additionalProperties":false,"properties":{"access":{"type":"string"},"opposition":{"type":"string"},"portability":{"type":"string"},"rectification":{"type":"string"},"redec_cancellation":{"type":"string"},"redec_complementation":{"type":"string"},"redec_rectification":{"type":"string"},"redec_update":{"type":"string"},"suppression":{"type":"string"}},"type":"object"},"sessionToken":{"type":"string"},"showBatchConsentConfirmation":{"type":"boolean"}},"required":["onEvent","sessionToken"],"type":"object"}]},"PrivacyCenterConsentManagementConfig":{"additionalProperties":false,"properties":{"allowMultipleOpenScopeGroups":{"type":"boolean"},"scopeGroups":{"items":{"$ref":"#/definitions/PrivacyCenterConsentManagementScopeGroupConfig"},"minItems":1,"type":"array"}},"type":"object"},"PrivacyCenterConsentManagementCopyConfig":{"additionalProperties":false,"properties":{"header":{"$ref":"#/definitions/PrivacyCenterHeaderCopyConfig"}},"type":"object"},"PrivacyCenterConsentManagementScopeGroupConfig":{"additionalProperties":false,"properties":{"scopes":{"items":{"$ref":"#/definitions/PrivacyCenterScopeReference"},"minItems":1,"type":"array"},"title":{"type":"string"}},"required":["title","scopes"],"type":"object"},"PrivacyCenterContentConfig":{"additionalProperties":false,"properties":{"consentManagement":{"$ref":"#/definitions/PrivacyCenterConsentManagementCopyConfig"},"header":{"$ref":"#/definitions/PrivacyCenterHeaderCopyConfig"},"rightExamples":{"additionalProperties":false,"properties":{"access":{"type":"string"},"opposition":{"type":"string"},"portability":{"type":"string"},"rectification":{"type":"string"},"redec_cancellation":{"type":"string"},"redec_complementation":{"type":"string"},"redec_rectification":{"type":"string"},"redec_update":{"type":"string"},"suppression":{"type":"string"}},"type":"object"}},"type":"object"},"PrivacyCenterHeaderCopyConfig":{"additionalProperties":false,"properties":{"description":{"type":"string"},"title":{"type":"string"}},"type":"object"},"PrivacyCenterRequestableDataCategoryOption":{"additionalProperties":false,"properties":{"description":{"type":"string"},"label":{"type":"string"},"value":{"$ref":"#/definitions/UserDataCategoryKey"}},"required":["value"],"type":"object"},"PrivacyCenterRight":{"enum":["arsop","redec"],"type":"string"},"PrivacyCenterScopeReference":{"additionalProperties":false,"properties":{"scopeId":{"type":"string"},"scopeType":{"enum":["product","branch"],"type":"string"}},"required":["scopeType","scopeId"],"type":"object"},"PrivacyManagerFeature":{"enum":["DataSubjectRequest","ConsentManagement","RequestTracking"],"type":"string"},"RedecOperationId":{"additionalProperties":false,"properties":{"id":{"type":"string"},"label":{"type":"string"}},"required":["id","label"],"type":"object"},"SoyioAppearance":{"additionalProperties":false,"properties":{"config":{"$ref":"#/definitions/SoyioAppearanceConfig"},"mode":{"$ref":"#/definitions/SoyioColorMode"},"rules":{"$ref":"#/definitions/SoyioRule"},"theme":{"$ref":"#/definitions/SoyioTheme"},"variables":{"$ref":"#/definitions/SoyioAppearanceVariables"}},"type":"object"},"SoyioAppearanceConfig":{"additionalProperties":false,"properties":{"brandTheme":{"default":"default","description":"Theme variant for branded elements like the footer.\\n- 'default': Standard Soyio brand colors (purple/indigo)\\n- 'dark': Dark mode with gray tones\\n- 'light': Mono color light version","enum":["default","dark","light"],"type":"string"},"consentControl":{"default":"switch","description":"Control type for consent items.\\n- 'switch': Toggle switch (default)\\n- 'checkbox': Checkbox","enum":["switch","checkbox"],"type":"string"},"consentManagementColumns":{"default":2,"description":"Number of columns in the consent management grid.","enum":[1,2,3,4],"type":"number"},"helperTextPosition":{"enum":["top","bottom"],"type":"string"},"hintIcon":{"default":"Question","description":"Icon name to use for hint/help tooltips on input labels. Available icons: 'Question' (default), 'Info', 'QuestionMark', etc.","type":"string"},"icon":{"$ref":"#/definitions/SoyioIconConfig","description":"Global icon appearance configuration. Controls default weight and size for all icons."},"iconRules":{"additionalProperties":{"$ref":"#/definitions/SoyioIconConfig"},"description":"Per-component icon overrides. Allows customizing icon styles for specific components.","type":"object"},"mainPageColumns":{"default":2,"description":"Number of columns in the main page feature cards grid.","enum":[1,2,3,4],"type":"number"},"showConsentManagementHeader":{"type":"boolean"},"showHeader":{"type":"boolean"}},"type":"object"},"SoyioAppearanceVariables":{"additionalProperties":false,"properties":{"borderRadius":{"type":"string"},"borderStyle":{"type":"string"},"borderWidth":{"type":"string"},"colorBackground":{"type":"string"},"colorBorder":{"type":"string"},"colorBorderMuted":{"type":"string"},"colorDanger":{"type":"string"},"colorDangerBg":{"type":"string"},"colorInfo":{"type":"string"},"colorInfoBg":{"type":"string"},"colorInputErrorFocus":{"type":"string"},"colorInputFocus":{"type":"string"},"colorLink":{"type":"string"},"colorOverlay":{"type":"string"},"colorPrimary":{"type":"string"},"colorPrimarySurface":{"type":"string"},"colorSecondary":{"type":"string"},"colorSelectArrow":{"type":"string"},"colorSuccess":{"type":"string"},"colorSuccessBg":{"type":"string"},"colorSurface":{"type":"string"},"colorSurfaceMuted":{"type":"string"},"colorSurfaceStrong":{"type":"string"},"colorSwitchBorder":{"type":"string"},"colorText":{"type":"string"},"colorTextInverted":{"type":"string"},"colorTextSecondary":{"type":"string"},"colorTextSubtle":{"type":"string"},"colorTextTitle":{"type":"string"},"colorWarning":{"type":"string"},"colorWarningBg":{"type":"string"},"dataUseIconColor":{"type":"string"},"fontFamily":{"type":"string"},"fontFamilyBody":{"type":"string"},"fontFamilyTitle":{"type":"string"},"fontSizeBase":{"type":"string"}},"type":"object"},"SoyioColorMode":{"description":"Appearance color mode.\\n\\n- \`light\`: force light mode\\n- \`dark\`: force dark mode\\n- \`auto\`: follow the consumer's system color scheme","enum":["light","dark","auto"],"type":"string"},"SoyioIconConfig":{"additionalProperties":false,"properties":{"dataUseVariant":{"description":"Override variant for data use icons in consent management. If not set, uses the company's configured iconVariant.","enum":["duotone","outline","solid"],"type":"string"},"size":{"default":24,"description":"Default icon size in pixels.","type":"number"},"weight":{"$ref":"#/definitions/IconWeight","default":"regular","description":"Icon weight/style variant.\\n- thin: Thinnest stroke\\n- light: Light stroke\\n- regular: Default stroke (default)\\n- bold: Bold stroke\\n- fill: Filled/solid icons\\n- duotone: Two-tone icons with opacity"}},"type":"object"},"SoyioRule":{"additionalProperties":{"$ref":"#/definitions/CSSProperties"},"properties":{".Alert":{"$ref":"#/definitions/CSSProperties"},".Alert--checked":{"$ref":"#/definitions/CSSProperties"},".Alert--error":{"$ref":"#/definitions/CSSProperties"},".Alert--info":{"$ref":"#/definitions/CSSProperties"},".Alert--note":{"$ref":"#/definitions/CSSProperties"},".Alert--success":{"$ref":"#/definitions/CSSProperties"},".Alert--warning":{"$ref":"#/definitions/CSSProperties"},".Alert::placeholder":{"$ref":"#/definitions/CSSProperties"},".Alert::selection":{"$ref":"#/definitions/CSSProperties"},".Alert:active":{"$ref":"#/definitions/CSSProperties"},".Alert:autofill":{"$ref":"#/definitions/CSSProperties"},".Alert:disabled":{"$ref":"#/definitions/CSSProperties"},".Alert:focus":{"$ref":"#/definitions/CSSProperties"},".Alert:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Alert:hover":{"$ref":"#/definitions/CSSProperties"},".AlertContent":{"$ref":"#/definitions/CSSProperties"},".AlertContent--checked":{"$ref":"#/definitions/CSSProperties"},".AlertContent::placeholder":{"$ref":"#/definitions/CSSProperties"},".AlertContent::selection":{"$ref":"#/definitions/CSSProperties"},".AlertContent:active":{"$ref":"#/definitions/CSSProperties"},".AlertContent:autofill":{"$ref":"#/definitions/CSSProperties"},".AlertContent:disabled":{"$ref":"#/definitions/CSSProperties"},".AlertContent:focus":{"$ref":"#/definitions/CSSProperties"},".AlertContent:focus-visible":{"$ref":"#/definitions/CSSProperties"},".AlertContent:hover":{"$ref":"#/definitions/CSSProperties"},".AlertIcon":{"$ref":"#/definitions/CSSProperties"},".AlertIcon--checked":{"$ref":"#/definitions/CSSProperties"},".AlertIcon::placeholder":{"$ref":"#/definitions/CSSProperties"},".AlertIcon::selection":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:active":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:autofill":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:disabled":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:focus":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:focus-visible":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:hover":{"$ref":"#/definitions/CSSProperties"},".Button":{"$ref":"#/definitions/CSSProperties"},".Button--checked":{"$ref":"#/definitions/CSSProperties"},".Button::placeholder":{"$ref":"#/definitions/CSSProperties"},".Button::selection":{"$ref":"#/definitions/CSSProperties"},".Button:active":{"$ref":"#/definitions/CSSProperties"},".Button:autofill":{"$ref":"#/definitions/CSSProperties"},".Button:disabled":{"$ref":"#/definitions/CSSProperties"},".Button:focus":{"$ref":"#/definitions/CSSProperties"},".Button:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Button:hover":{"$ref":"#/definitions/CSSProperties"},".Card":{"$ref":"#/definitions/CSSProperties"},".Card--checked":{"$ref":"#/definitions/CSSProperties"},".Card::placeholder":{"$ref":"#/definitions/CSSProperties"},".Card::selection":{"$ref":"#/definitions/CSSProperties"},".Card:active":{"$ref":"#/definitions/CSSProperties"},".Card:autofill":{"$ref":"#/definitions/CSSProperties"},".Card:disabled":{"$ref":"#/definitions/CSSProperties"},".Card:focus":{"$ref":"#/definitions/CSSProperties"},".Card:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Card:hover":{"$ref":"#/definitions/CSSProperties"},".CardTitle":{"$ref":"#/definitions/CSSProperties"},".CardTitle--checked":{"$ref":"#/definitions/CSSProperties"},".CardTitle::placeholder":{"$ref":"#/definitions/CSSProperties"},".CardTitle::selection":{"$ref":"#/definitions/CSSProperties"},".CardTitle:active":{"$ref":"#/definitions/CSSProperties"},".CardTitle:autofill":{"$ref":"#/definitions/CSSProperties"},".CardTitle:disabled":{"$ref":"#/definitions/CSSProperties"},".CardTitle:focus":{"$ref":"#/definitions/CSSProperties"},".CardTitle:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CardTitle:hover":{"$ref":"#/definitions/CSSProperties"},".CategoryTag":{"$ref":"#/definitions/CSSProperties"},".CategoryTag--checked":{"$ref":"#/definitions/CSSProperties"},".CategoryTag::placeholder":{"$ref":"#/definitions/CSSProperties"},".CategoryTag::selection":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:active":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:autofill":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:disabled":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:focus":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:hover":{"$ref":"#/definitions/CSSProperties"},".Checkbox":{"$ref":"#/definitions/CSSProperties"},".Checkbox--checked":{"$ref":"#/definitions/CSSProperties"},".Checkbox::placeholder":{"$ref":"#/definitions/CSSProperties"},".Checkbox::selection":{"$ref":"#/definitions/CSSProperties"},".Checkbox:active":{"$ref":"#/definitions/CSSProperties"},".Checkbox:autofill":{"$ref":"#/definitions/CSSProperties"},".Checkbox:disabled":{"$ref":"#/definitions/CSSProperties"},".Checkbox:focus":{"$ref":"#/definitions/CSSProperties"},".Checkbox:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Checkbox:hover":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck--checked":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck::placeholder":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck::selection":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:active":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:autofill":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:disabled":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:focus":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:hover":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput--checked":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput::placeholder":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput::selection":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:active":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:autofill":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:disabled":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:focus":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:hover":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel--checked":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel::placeholder":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel::selection":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:active":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:autofill":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:disabled":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:focus":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:hover":{"$ref":"#/definitions/CSSProperties"},".Chip":{"$ref":"#/definitions/CSSProperties"},".Chip--amber":{"$ref":"#/definitions/CSSProperties"},".Chip--checked":{"$ref":"#/definitions/CSSProperties"},".Chip--green":{"$ref":"#/definitions/CSSProperties"},".Chip--info":{"$ref":"#/definitions/CSSProperties"},".Chip--red":{"$ref":"#/definitions/CSSProperties"},".Chip::placeholder":{"$ref":"#/definitions/CSSProperties"},".Chip::selection":{"$ref":"#/definitions/CSSProperties"},".Chip:active":{"$ref":"#/definitions/CSSProperties"},".Chip:autofill":{"$ref":"#/definitions/CSSProperties"},".Chip:disabled":{"$ref":"#/definitions/CSSProperties"},".Chip:focus":{"$ref":"#/definitions/CSSProperties"},".Chip:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Chip:hover":{"$ref":"#/definitions/CSSProperties"},".Combobox":{"$ref":"#/definitions/CSSProperties"},".Combobox--checked":{"$ref":"#/definitions/CSSProperties"},".Combobox::placeholder":{"$ref":"#/definitions/CSSProperties"},".Combobox::selection":{"$ref":"#/definitions/CSSProperties"},".Combobox:active":{"$ref":"#/definitions/CSSProperties"},".Combobox:autofill":{"$ref":"#/definitions/CSSProperties"},".Combobox:disabled":{"$ref":"#/definitions/CSSProperties"},".Combobox:focus":{"$ref":"#/definitions/CSSProperties"},".Combobox:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Combobox:hover":{"$ref":"#/definitions/CSSProperties"},".Description":{"$ref":"#/definitions/CSSProperties"},".Description--checked":{"$ref":"#/definitions/CSSProperties"},".Description::placeholder":{"$ref":"#/definitions/CSSProperties"},".Description::selection":{"$ref":"#/definitions/CSSProperties"},".Description:active":{"$ref":"#/definitions/CSSProperties"},".Description:autofill":{"$ref":"#/definitions/CSSProperties"},".Description:disabled":{"$ref":"#/definitions/CSSProperties"},".Description:focus":{"$ref":"#/definitions/CSSProperties"},".Description:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Description:hover":{"$ref":"#/definitions/CSSProperties"},".Dialog":{"$ref":"#/definitions/CSSProperties"},".Dialog--checked":{"$ref":"#/definitions/CSSProperties"},".Dialog::placeholder":{"$ref":"#/definitions/CSSProperties"},".Dialog::selection":{"$ref":"#/definitions/CSSProperties"},".Dialog:active":{"$ref":"#/definitions/CSSProperties"},".Dialog:autofill":{"$ref":"#/definitions/CSSProperties"},".Dialog:disabled":{"$ref":"#/definitions/CSSProperties"},".Dialog:focus":{"$ref":"#/definitions/CSSProperties"},".Dialog:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Dialog:hover":{"$ref":"#/definitions/CSSProperties"},".DialogContent":{"$ref":"#/definitions/CSSProperties"},".DialogContent--checked":{"$ref":"#/definitions/CSSProperties"},".DialogContent::placeholder":{"$ref":"#/definitions/CSSProperties"},".DialogContent::selection":{"$ref":"#/definitions/CSSProperties"},".DialogContent:active":{"$ref":"#/definitions/CSSProperties"},".DialogContent:autofill":{"$ref":"#/definitions/CSSProperties"},".DialogContent:disabled":{"$ref":"#/definitions/CSSProperties"},".DialogContent:focus":{"$ref":"#/definitions/CSSProperties"},".DialogContent:focus-visible":{"$ref":"#/definitions/CSSProperties"},".DialogContent:hover":{"$ref":"#/definitions/CSSProperties"},".DialogDescription":{"$ref":"#/definitions/CSSProperties"},".DialogDescription--checked":{"$ref":"#/definitions/CSSProperties"},".DialogDescription::placeholder":{"$ref":"#/definitions/CSSProperties"},".DialogDescription::selection":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:active":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:autofill":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:disabled":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:focus":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:focus-visible":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:hover":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay--checked":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay::placeholder":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay::selection":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:active":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:autofill":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:disabled":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:focus":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:focus-visible":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:hover":{"$ref":"#/definitions/CSSProperties"},".DialogTitle":{"$ref":"#/definitions/CSSProperties"},".DialogTitle--checked":{"$ref":"#/definitions/CSSProperties"},".DialogTitle::placeholder":{"$ref":"#/definitions/CSSProperties"},".DialogTitle::selection":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:active":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:autofill":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:disabled":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:focus":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:focus-visible":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:hover":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage--checked":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage::placeholder":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage::selection":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:active":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:autofill":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:disabled":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:focus":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:focus-visible":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:hover":{"$ref":"#/definitions/CSSProperties"},".HintIcon":{"$ref":"#/definitions/CSSProperties"},".HintIcon--checked":{"$ref":"#/definitions/CSSProperties"},".HintIcon::placeholder":{"$ref":"#/definitions/CSSProperties"},".HintIcon::selection":{"$ref":"#/definitions/CSSProperties"},".HintIcon:active":{"$ref":"#/definitions/CSSProperties"},".HintIcon:autofill":{"$ref":"#/definitions/CSSProperties"},".HintIcon:disabled":{"$ref":"#/definitions/CSSProperties"},".HintIcon:focus":{"$ref":"#/definitions/CSSProperties"},".HintIcon:focus-visible":{"$ref":"#/definitions/CSSProperties"},".HintIcon:hover":{"$ref":"#/definitions/CSSProperties"},".Input":{"$ref":"#/definitions/CSSProperties"},".Input--checked":{"$ref":"#/definitions/CSSProperties"},".Input--error":{"$ref":"#/definitions/CSSProperties"},".Input::placeholder":{"$ref":"#/definitions/CSSProperties"},".Input::selection":{"$ref":"#/definitions/CSSProperties"},".Input:active":{"$ref":"#/definitions/CSSProperties"},".Input:autofill":{"$ref":"#/definitions/CSSProperties"},".Input:disabled":{"$ref":"#/definitions/CSSProperties"},".Input:focus":{"$ref":"#/definitions/CSSProperties"},".Input:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Input:hover":{"$ref":"#/definitions/CSSProperties"},".Label":{"$ref":"#/definitions/CSSProperties"},".Label--checked":{"$ref":"#/definitions/CSSProperties"},".Label::placeholder":{"$ref":"#/definitions/CSSProperties"},".Label::selection":{"$ref":"#/definitions/CSSProperties"},".Label:active":{"$ref":"#/definitions/CSSProperties"},".Label:autofill":{"$ref":"#/definitions/CSSProperties"},".Label:disabled":{"$ref":"#/definitions/CSSProperties"},".Label:focus":{"$ref":"#/definitions/CSSProperties"},".Label:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Label:hover":{"$ref":"#/definitions/CSSProperties"},".Link":{"$ref":"#/definitions/CSSProperties"},".Link--checked":{"$ref":"#/definitions/CSSProperties"},".Link::placeholder":{"$ref":"#/definitions/CSSProperties"},".Link::selection":{"$ref":"#/definitions/CSSProperties"},".Link:active":{"$ref":"#/definitions/CSSProperties"},".Link:autofill":{"$ref":"#/definitions/CSSProperties"},".Link:disabled":{"$ref":"#/definitions/CSSProperties"},".Link:focus":{"$ref":"#/definitions/CSSProperties"},".Link:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Link:hover":{"$ref":"#/definitions/CSSProperties"},".Loader":{"$ref":"#/definitions/CSSProperties"},".Loader--checked":{"$ref":"#/definitions/CSSProperties"},".Loader::placeholder":{"$ref":"#/definitions/CSSProperties"},".Loader::selection":{"$ref":"#/definitions/CSSProperties"},".Loader:active":{"$ref":"#/definitions/CSSProperties"},".Loader:autofill":{"$ref":"#/definitions/CSSProperties"},".Loader:disabled":{"$ref":"#/definitions/CSSProperties"},".Loader:focus":{"$ref":"#/definitions/CSSProperties"},".Loader:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Loader:hover":{"$ref":"#/definitions/CSSProperties"},".MainContainer":{"$ref":"#/definitions/CSSProperties"},".MainContainer--checked":{"$ref":"#/definitions/CSSProperties"},".MainContainer::placeholder":{"$ref":"#/definitions/CSSProperties"},".MainContainer::selection":{"$ref":"#/definitions/CSSProperties"},".MainContainer:active":{"$ref":"#/definitions/CSSProperties"},".MainContainer:autofill":{"$ref":"#/definitions/CSSProperties"},".MainContainer:disabled":{"$ref":"#/definitions/CSSProperties"},".MainContainer:focus":{"$ref":"#/definitions/CSSProperties"},".MainContainer:focus-visible":{"$ref":"#/definitions/CSSProperties"},".MainContainer:hover":{"$ref":"#/definitions/CSSProperties"},".NinInput":{"$ref":"#/definitions/CSSProperties"},".NinInput--checked":{"$ref":"#/definitions/CSSProperties"},".NinInput::placeholder":{"$ref":"#/definitions/CSSProperties"},".NinInput::selection":{"$ref":"#/definitions/CSSProperties"},".NinInput:active":{"$ref":"#/definitions/CSSProperties"},".NinInput:autofill":{"$ref":"#/definitions/CSSProperties"},".NinInput:disabled":{"$ref":"#/definitions/CSSProperties"},".NinInput:focus":{"$ref":"#/definitions/CSSProperties"},".NinInput:focus-visible":{"$ref":"#/definitions/CSSProperties"},".NinInput:hover":{"$ref":"#/definitions/CSSProperties"},".Radio":{"$ref":"#/definitions/CSSProperties"},".Radio--checked":{"$ref":"#/definitions/CSSProperties"},".Radio::placeholder":{"$ref":"#/definitions/CSSProperties"},".Radio::selection":{"$ref":"#/definitions/CSSProperties"},".Radio:active":{"$ref":"#/definitions/CSSProperties"},".Radio:autofill":{"$ref":"#/definitions/CSSProperties"},".Radio:disabled":{"$ref":"#/definitions/CSSProperties"},".Radio:focus":{"$ref":"#/definitions/CSSProperties"},".Radio:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Radio:hover":{"$ref":"#/definitions/CSSProperties"},".RadioButton":{"$ref":"#/definitions/CSSProperties"},".RadioButton--checked":{"$ref":"#/definitions/CSSProperties"},".RadioButton::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioButton::selection":{"$ref":"#/definitions/CSSProperties"},".RadioButton:active":{"$ref":"#/definitions/CSSProperties"},".RadioButton:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioButton:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioButton:focus":{"$ref":"#/definitions/CSSProperties"},".RadioButton:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioButton:hover":{"$ref":"#/definitions/CSSProperties"},".RadioCard":{"$ref":"#/definitions/CSSProperties"},".RadioCard--checked":{"$ref":"#/definitions/CSSProperties"},".RadioCard::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioCard::selection":{"$ref":"#/definitions/CSSProperties"},".RadioCard:active":{"$ref":"#/definitions/CSSProperties"},".RadioCard:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioCard:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioCard:focus":{"$ref":"#/definitions/CSSProperties"},".RadioCard:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioCard:hover":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton--checked":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton::selection":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:active":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:focus":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:hover":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator--checked":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator::selection":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:active":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:focus":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:hover":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle--checked":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle::selection":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:active":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:focus":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:hover":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator--checked":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator::selection":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:active":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:focus":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:hover":{"$ref":"#/definitions/CSSProperties"},".RadioLabel":{"$ref":"#/definitions/CSSProperties"},".RadioLabel--checked":{"$ref":"#/definitions/CSSProperties"},".RadioLabel::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioLabel::selection":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:active":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:focus":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:hover":{"$ref":"#/definitions/CSSProperties"},".Select":{"$ref":"#/definitions/CSSProperties"},".Select--checked":{"$ref":"#/definitions/CSSProperties"},".Select::placeholder":{"$ref":"#/definitions/CSSProperties"},".Select::selection":{"$ref":"#/definitions/CSSProperties"},".Select:active":{"$ref":"#/definitions/CSSProperties"},".Select:autofill":{"$ref":"#/definitions/CSSProperties"},".Select:disabled":{"$ref":"#/definitions/CSSProperties"},".Select:focus":{"$ref":"#/definitions/CSSProperties"},".Select:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Select:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicator":{"$ref":"#/definitions/CSSProperties"},".StepIndicator--active":{"$ref":"#/definitions/CSSProperties"},".StepIndicator--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicator--completed":{"$ref":"#/definitions/CSSProperties"},".StepIndicator--pending":{"$ref":"#/definitions/CSSProperties"},".StepIndicator::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicator::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine--bottom":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine--top":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:hover":{"$ref":"#/definitions/CSSProperties"},".StepTitle":{"$ref":"#/definitions/CSSProperties"},".StepTitle--checked":{"$ref":"#/definitions/CSSProperties"},".StepTitle::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepTitle::selection":{"$ref":"#/definitions/CSSProperties"},".StepTitle:active":{"$ref":"#/definitions/CSSProperties"},".StepTitle:autofill":{"$ref":"#/definitions/CSSProperties"},".StepTitle:disabled":{"$ref":"#/definitions/CSSProperties"},".StepTitle:focus":{"$ref":"#/definitions/CSSProperties"},".StepTitle:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepTitle:hover":{"$ref":"#/definitions/CSSProperties"},".Switch":{"$ref":"#/definitions/CSSProperties"},".Switch--checked":{"$ref":"#/definitions/CSSProperties"},".Switch::placeholder":{"$ref":"#/definitions/CSSProperties"},".Switch::selection":{"$ref":"#/definitions/CSSProperties"},".Switch:active":{"$ref":"#/definitions/CSSProperties"},".Switch:autofill":{"$ref":"#/definitions/CSSProperties"},".Switch:disabled":{"$ref":"#/definitions/CSSProperties"},".Switch:focus":{"$ref":"#/definitions/CSSProperties"},".Switch:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Switch:hover":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon--checked":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon::placeholder":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon::selection":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:active":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:autofill":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:disabled":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:focus":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:focus-visible":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:hover":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot--checked":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot::placeholder":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot::selection":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:active":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:autofill":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:disabled":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:focus":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:focus-visible":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:hover":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb--checked":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb::placeholder":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb::selection":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:active":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:autofill":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:disabled":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:focus":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:focus-visible":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:hover":{"$ref":"#/definitions/CSSProperties"},".TextArea":{"$ref":"#/definitions/CSSProperties"},".TextArea--checked":{"$ref":"#/definitions/CSSProperties"},".TextArea::placeholder":{"$ref":"#/definitions/CSSProperties"},".TextArea::selection":{"$ref":"#/definitions/CSSProperties"},".TextArea:active":{"$ref":"#/definitions/CSSProperties"},".TextArea:autofill":{"$ref":"#/definitions/CSSProperties"},".TextArea:disabled":{"$ref":"#/definitions/CSSProperties"},".TextArea:focus":{"$ref":"#/definitions/CSSProperties"},".TextArea:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TextArea:hover":{"$ref":"#/definitions/CSSProperties"},".Title":{"$ref":"#/definitions/CSSProperties"},".Title--checked":{"$ref":"#/definitions/CSSProperties"},".Title::placeholder":{"$ref":"#/definitions/CSSProperties"},".Title::selection":{"$ref":"#/definitions/CSSProperties"},".Title:active":{"$ref":"#/definitions/CSSProperties"},".Title:autofill":{"$ref":"#/definitions/CSSProperties"},".Title:disabled":{"$ref":"#/definitions/CSSProperties"},".Title:focus":{"$ref":"#/definitions/CSSProperties"},".Title:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Title:hover":{"$ref":"#/definitions/CSSProperties"},".TooltipContent":{"$ref":"#/definitions/CSSProperties"},".TooltipContent--checked":{"$ref":"#/definitions/CSSProperties"},".TooltipContent::placeholder":{"$ref":"#/definitions/CSSProperties"},".TooltipContent::selection":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:active":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:autofill":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:disabled":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:focus":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:hover":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput--checked":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput::placeholder":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput::selection":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:active":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:autofill":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:disabled":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:focus":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:hover":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell--checked":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell::placeholder":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell::selection":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:active":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:autofill":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:disabled":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:focus":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:hover":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator--checked":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator::placeholder":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator::selection":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:active":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:autofill":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:disabled":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:focus":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:hover":{"$ref":"#/definitions/CSSProperties"}},"type":"object"},"SoyioTheme":{"description":"Appearance theme palette.\\n\\n\`night\` is kept as a deprecated alias for \`theme: 'soyio'\` + \`mode: 'dark'\`.","enum":["soyio","flat","neutral","night"],"type":"string"},"SoyioWidgetConfig":{"anyOf":[{"$ref":"#/definitions/PrivacyCenterConfig"},{"$ref":"#/definitions/ConsentConfig"}],"description":"Combined configuration type for generating the JSON schema. This includes all possible configuration options for both PrivacyCenterBox and ConsentBox."},"UserDataCategoryKey":{"enum":["user","user.account","user.authorization","user.behavior","user.biometric","user.childrens","user.contact","user.content","user.demographic","user.location","user.device","user.payment","user.social","user.unique_id","user.telemetry","user.user_sensor","user.workplace","user.sensor","user.financial","user.government_id","user.health_and_medical","user.name","user.criminal_history","user.privacy_preferences","user.job_title","user.account.settings","user.account.username","user.authorization.credentials","user.authorization.biometric","user.authorization.password","user.behavior.browsing_history","user.behavior.media_consumption","user.behavior.purchase_history","user.behavior.search_history","user.biometric.fingerprint","user.biometric.retinal","user.biometric.voice","user.biometric.health","user.contact.address","user.contact.email","user.contact.phone_number","user.contact.url","user.contact.fax_number","user.contact.organization","user.contact.address.city","user.contact.address.country","user.contact.address.postal_code","user.contact.address.state","user.contact.address.street","user.content.private","user.content.public","user.content.self_image","user.demographic.age_range","user.demographic.date_of_birth","user.demographic.gender","user.demographic.language","user.demographic.marital_status","user.demographic.political_opinion","user.demographic.profile","user.demographic.race_ethnicity","user.demographic.religious_belief","user.demographic.sexual_orientation","user.demographic.nationality","user.device.cookie","user.device.cookie_id","user.device.device_id","user.device.ip_address","user.financial.bank_account","user.financial.credit_card","user.government_id.birth_certificate","user.government_id.drivers_license_number","user.government_id.immigration","user.government_id.national_identification_number","user.government_id.passport_number","user.government_id.vehicle_registration","user.health_and_medical.genetic","user.health_and_medical.insurance_beneficiary_id","user.health_and_medical.record_id","user.labor_activity","user.labor_activity.profession","user.labor_activity.job_title","user.labor_activity.worker_type","user.labor_activity.salary","user.labor_activity.workplace","user.location.imprecise","user.location.precise","user.name.first","user.name.last","user.unique_id.pseudonymous"],"type":"string"}}`), Wr = {
|
|
937
|
+
}, br = "#/definitions/SoyioWidgetConfig", wr = "http://json-schema.org/draft-07/schema#", Ir = /* @__PURE__ */ JSON.parse(`{"CSSProperties":{"additionalProperties":false,"properties":{"WebkitAppearance":{"type":"string"},"accentColor":{"type":"string"},"alignItems":{"enum":["flex-start","flex-end","center","baseline","stretch"],"type":"string"},"appearance":{"type":"string"},"backgroundColor":{"type":"string"},"border":{"type":"string"},"borderBottom":{"type":"string"},"borderBottomColor":{"type":"string"},"borderBottomLeftRadius":{"type":"string"},"borderBottomRightRadius":{"type":"string"},"borderBottomStyle":{"type":"string"},"borderBottomWidth":{"type":"string"},"borderColor":{"type":"string"},"borderLeft":{"type":"string"},"borderLeftColor":{"type":"string"},"borderLeftStyle":{"type":"string"},"borderLeftWidth":{"type":"string"},"borderRadius":{"type":"string"},"borderRight":{"type":"string"},"borderRightColor":{"type":"string"},"borderRightStyle":{"type":"string"},"borderRightWidth":{"type":"string"},"borderStyle":{"type":"string"},"borderTop":{"type":"string"},"borderTopColor":{"type":"string"},"borderTopLeftRadius":{"type":"string"},"borderTopRightRadius":{"type":"string"},"borderTopStyle":{"type":"string"},"borderTopWidth":{"type":"string"},"borderWidth":{"type":"string"},"bottom":{"type":"string"},"boxShadow":{"type":"string"},"color":{"type":"string"},"cursor":{"type":"string"},"display":{"enum":["block","inline","inline-block","flex","inline-flex","grid","inline-grid","none"],"type":"string"},"fill":{"type":"string"},"fillOpacity":{"type":"number"},"flex":{"type":"string"},"flexDirection":{"enum":["row","row-reverse","column","column-reverse"],"type":"string"},"flexWrap":{"enum":["nowrap","wrap","wrap-reverse"],"type":"string"},"fontFamily":{"type":"string"},"fontSize":{"type":"string"},"fontVariant":{"type":"string"},"fontWeight":{"type":["string","number"]},"gap":{"type":"string"},"height":{"type":"string"},"justifyContent":{"enum":["flex-start","flex-end","center","space-between","space-around","space-evenly"],"type":"string"},"left":{"type":"string"},"letterSpacing":{"type":"string"},"lineHeight":{"type":["string","number"]},"margin":{"type":"string"},"marginBottom":{"type":"string"},"marginLeft":{"type":"string"},"marginRight":{"type":"string"},"marginTop":{"type":"string"},"mozOsxFontSmoothing":{"enum":["auto","grayscale","unset"],"type":"string"},"opacity":{"type":"number"},"outline":{"type":"string"},"outlineOffset":{"type":"string"},"overflow":{"enum":["visible","hidden","scroll","auto"],"type":"string"},"overflowX":{"enum":["visible","hidden","scroll","auto"],"type":"string"},"overflowY":{"enum":["visible","hidden","scroll","auto"],"type":"string"},"padding":{"type":"string"},"paddingBottom":{"type":"string"},"paddingLeft":{"type":"string"},"paddingRight":{"type":"string"},"paddingTop":{"type":"string"},"position":{"enum":["static","relative","absolute","fixed","sticky"],"type":"string"},"right":{"type":"string"},"textAlign":{"enum":["left","right","center","justify"],"type":"string"},"textDecoration":{"type":"string"},"textTransform":{"enum":["none","capitalize","uppercase","lowercase"],"type":"string"},"top":{"type":"string"},"transform":{"type":"string"},"transformOrigin":{"type":"string"},"transition":{"type":"string"},"transitionDelay":{"type":"string"},"transitionDuration":{"type":"string"},"transitionProperty":{"type":"string"},"transitionTimingFunction":{"type":"string"},"visibility":{"enum":["visible","hidden","collapse"],"type":"string"},"webkitFontSmoothing":{"enum":["auto","antialiased","subpixel-antialiased"],"type":"string"},"webkitTextFillColor":{"type":"string"},"whiteSpace":{"enum":["normal","nowrap","pre","pre-wrap","pre-line"],"type":"string"},"width":{"type":"string"},"wordBreak":{"enum":["normal","break-all","keep-all","break-word"],"type":"string"},"zIndex":{"type":["number","string"]}},"type":"object"},"ConsentConfig":{"additionalProperties":false,"properties":{"actionToken":{"type":"string"},"allowGranularScopeSelection":{"type":"boolean"},"appearance":{"$ref":"#/definitions/SoyioAppearance"},"consentTemplateId":{"type":"string"},"context":{"deprecated":"Use \`origin\` instead.","type":"string"},"developmentUrl":{"type":"string"},"entityId":{"type":"string"},"isSandbox":{"type":"boolean"},"mandatoryReconsentBehavior":{"enum":["notice","askAgain"],"type":"string"},"metadata":{"additionalProperties":{},"type":"object"},"onEvent":{"$comment":"(event: TEvent) => void","properties":{"namedArgs":{"additionalProperties":false,"properties":{"event":{"additionalProperties":{},"type":"object"}},"required":["event"],"type":"object"}},"type":"object"},"onReady":{"$comment":"() => void"},"optionalReconsentBehavior":{"enum":["notice","askAgain","hide"],"type":"string"},"origin":{"type":"string"}},"required":["consentTemplateId","onEvent"],"type":"object"},"DataSubject":{"enum":["anonymous_user","citizen_voter","commuter","consultant","customer","employee","job_applicant","next_of_kin","passenger","patient","prospect","shareholder","supplier_vendor","trainee","visitor"],"type":"string"},"IconWeight":{"enum":["thin","light","regular","bold","fill","duotone"],"type":"string"},"PrivacyCenterConfig":{"anyOf":[{"additionalProperties":false,"properties":{"allowGranularScopeSelection":{"type":"boolean"},"appearance":{"$ref":"#/definitions/SoyioAppearance"},"companyId":{"type":"string"},"consentManagement":{"$ref":"#/definitions/PrivacyCenterConsentManagementConfig"},"consentMode":{"enum":["immediate","batch"],"type":"string"},"consentRetentionPeriod":{"type":"string"},"content":{"$ref":"#/definitions/PrivacyCenterContentConfig"},"dataSubjects":{"items":{"$ref":"#/definitions/DataSubject"},"type":"array"},"demo":{"type":"boolean"},"developmentUrl":{"type":"string"},"enabledFeatures":{"items":{"$ref":"#/definitions/PrivacyManagerFeature"},"type":"array"},"enabledRights":{"items":{"$ref":"#/definitions/PrivacyCenterRight"},"type":"array"},"externalRightsExerciseUrl":{"format":"uri","minLength":1,"type":"string"},"fileRequisites":{"additionalProperties":false,"properties":{"allowedExtensions":{"items":{"type":"string"},"type":"array"},"maxFileSize":{"type":"number"}},"type":"object"},"groupConsentsByScope":{"type":"boolean"},"header":{"$ref":"#/definitions/PrivacyCenterHeaderCopyConfig"},"isSandbox":{"type":"boolean"},"metadata":{"additionalProperties":{},"type":"object"},"onEvent":{"$comment":"(event: TEvent) => void","properties":{"namedArgs":{"additionalProperties":false,"properties":{"event":{"additionalProperties":{},"type":"object"}},"required":["event"],"type":"object"}},"type":"object"},"onReady":{"$comment":"() => void"},"origin":{"type":"string"},"redecOperationIds":{"items":{"$ref":"#/definitions/RedecOperationId"},"type":"array"},"requestReference":{"type":"string"},"requestableDataCategories":{"items":{"$ref":"#/definitions/PrivacyCenterRequestableDataCategoryOption"},"type":"array"},"rightExamples":{"additionalProperties":false,"properties":{"access":{"type":"string"},"opposition":{"type":"string"},"portability":{"type":"string"},"rectification":{"type":"string"},"redec_cancellation":{"type":"string"},"redec_complementation":{"type":"string"},"redec_rectification":{"type":"string"},"redec_update":{"type":"string"},"suppression":{"type":"string"}},"type":"object"},"showBatchConsentConfirmation":{"type":"boolean"}},"required":["companyId","onEvent"],"type":"object"},{"additionalProperties":false,"properties":{"allowGranularScopeSelection":{"type":"boolean"},"appearance":{"$ref":"#/definitions/SoyioAppearance"},"consentManagement":{"$ref":"#/definitions/PrivacyCenterConsentManagementConfig"},"consentMode":{"enum":["immediate","batch"],"type":"string"},"consentRetentionPeriod":{"type":"string"},"content":{"$ref":"#/definitions/PrivacyCenterContentConfig"},"dataSubjects":{"items":{"$ref":"#/definitions/DataSubject"},"type":"array"},"demo":{"type":"boolean"},"developmentUrl":{"type":"string"},"enabledFeatures":{"items":{"$ref":"#/definitions/PrivacyManagerFeature"},"type":"array"},"enabledRights":{"items":{"$ref":"#/definitions/PrivacyCenterRight"},"type":"array"},"externalRightsExerciseUrl":{"format":"uri","minLength":1,"type":"string"},"fileRequisites":{"additionalProperties":false,"properties":{"allowedExtensions":{"items":{"type":"string"},"type":"array"},"maxFileSize":{"type":"number"}},"type":"object"},"groupConsentsByScope":{"type":"boolean"},"header":{"$ref":"#/definitions/PrivacyCenterHeaderCopyConfig"},"isSandbox":{"type":"boolean"},"metadata":{"additionalProperties":{},"type":"object"},"onEvent":{"$comment":"(event: TEvent) => void","properties":{"namedArgs":{"additionalProperties":false,"properties":{"event":{"additionalProperties":{},"type":"object"}},"required":["event"],"type":"object"}},"type":"object"},"onReady":{"$comment":"() => void"},"origin":{"type":"string"},"redecOperationIds":{"items":{"$ref":"#/definitions/RedecOperationId"},"type":"array"},"requestReference":{"type":"string"},"requestableDataCategories":{"items":{"$ref":"#/definitions/PrivacyCenterRequestableDataCategoryOption"},"type":"array"},"rightExamples":{"additionalProperties":false,"properties":{"access":{"type":"string"},"opposition":{"type":"string"},"portability":{"type":"string"},"rectification":{"type":"string"},"redec_cancellation":{"type":"string"},"redec_complementation":{"type":"string"},"redec_rectification":{"type":"string"},"redec_update":{"type":"string"},"suppression":{"type":"string"}},"type":"object"},"sessionToken":{"type":"string"},"showBatchConsentConfirmation":{"type":"boolean"}},"required":["onEvent","sessionToken"],"type":"object"}]},"PrivacyCenterConsentManagementConfig":{"additionalProperties":false,"properties":{"allowMultipleOpenScopeGroups":{"type":"boolean"},"scopeGroups":{"items":{"$ref":"#/definitions/PrivacyCenterConsentManagementScopeGroupConfig"},"minItems":1,"type":"array"}},"type":"object"},"PrivacyCenterConsentManagementCopyConfig":{"additionalProperties":false,"properties":{"header":{"$ref":"#/definitions/PrivacyCenterHeaderCopyConfig"}},"type":"object"},"PrivacyCenterConsentManagementScopeGroupConfig":{"additionalProperties":false,"properties":{"scopes":{"items":{"$ref":"#/definitions/PrivacyCenterScopeReference"},"minItems":1,"type":"array"},"title":{"type":"string"}},"required":["title","scopes"],"type":"object"},"PrivacyCenterContentConfig":{"additionalProperties":false,"properties":{"consentManagement":{"$ref":"#/definitions/PrivacyCenterConsentManagementCopyConfig"},"header":{"$ref":"#/definitions/PrivacyCenterHeaderCopyConfig"},"rightExamples":{"additionalProperties":false,"properties":{"access":{"type":"string"},"opposition":{"type":"string"},"portability":{"type":"string"},"rectification":{"type":"string"},"redec_cancellation":{"type":"string"},"redec_complementation":{"type":"string"},"redec_rectification":{"type":"string"},"redec_update":{"type":"string"},"suppression":{"type":"string"}},"type":"object"}},"type":"object"},"PrivacyCenterHeaderCopyConfig":{"additionalProperties":false,"properties":{"description":{"type":"string"},"title":{"type":"string"}},"type":"object"},"PrivacyCenterRequestableDataCategoryOption":{"additionalProperties":false,"properties":{"description":{"type":"string"},"label":{"type":"string"},"value":{"$ref":"#/definitions/UserDataCategoryKey"}},"required":["value"],"type":"object"},"PrivacyCenterRight":{"enum":["arsop","redec"],"type":"string"},"PrivacyCenterScopeReference":{"additionalProperties":false,"properties":{"scopeId":{"type":"string"},"scopeType":{"enum":["product","branch"],"type":"string"}},"required":["scopeType","scopeId"],"type":"object"},"PrivacyManagerFeature":{"enum":["DataSubjectRequest","ConsentManagement","RequestTracking"],"type":"string"},"RedecOperationId":{"additionalProperties":false,"properties":{"id":{"type":"string"},"label":{"type":"string"}},"required":["id","label"],"type":"object"},"SoyioAppearance":{"additionalProperties":false,"properties":{"config":{"$ref":"#/definitions/SoyioAppearanceConfig"},"mode":{"$ref":"#/definitions/SoyioColorMode"},"rules":{"$ref":"#/definitions/SoyioRule"},"theme":{"$ref":"#/definitions/SoyioTheme"},"variables":{"$ref":"#/definitions/SoyioAppearanceVariables"}},"type":"object"},"SoyioAppearanceConfig":{"additionalProperties":false,"properties":{"brandTheme":{"default":"default","description":"Theme variant for branded elements like the footer.\\n- 'default': Standard Soyio brand colors (purple/indigo)\\n- 'dark': Dark mode with gray tones\\n- 'light': Mono color light version","enum":["default","dark","light"],"type":"string"},"consentControl":{"default":"switch","description":"Control type for consent items.\\n- 'switch': Toggle switch (default)\\n- 'checkbox': Checkbox","enum":["switch","checkbox"],"type":"string"},"consentManagementColumns":{"default":2,"description":"Number of columns in the consent management grid.","enum":[1,2,3,4],"type":"number"},"helperTextPosition":{"enum":["top","bottom"],"type":"string"},"hintIcon":{"default":"Question","description":"Icon name to use for hint/help tooltips on input labels. Available icons: 'Question' (default), 'Info', 'QuestionMark', etc.","type":"string"},"icon":{"$ref":"#/definitions/SoyioIconConfig","description":"Global icon appearance configuration. Controls default weight and size for all icons."},"iconRules":{"additionalProperties":{"$ref":"#/definitions/SoyioIconConfig"},"description":"Per-component icon overrides. Allows customizing icon styles for specific components.","type":"object"},"mainPageColumns":{"default":2,"description":"Number of columns in the main page feature cards grid.","enum":[1,2,3,4],"type":"number"},"showConsentManagementHeader":{"type":"boolean"},"showHeader":{"type":"boolean"}},"type":"object"},"SoyioAppearanceVariables":{"additionalProperties":false,"properties":{"borderRadius":{"type":"string"},"borderStyle":{"type":"string"},"borderWidth":{"type":"string"},"colorBackground":{"type":"string"},"colorBorder":{"type":"string"},"colorBorderMuted":{"type":"string"},"colorDanger":{"type":"string"},"colorDangerBg":{"type":"string"},"colorInfo":{"type":"string"},"colorInfoBg":{"type":"string"},"colorInputErrorFocus":{"type":"string"},"colorInputFocus":{"type":"string"},"colorLink":{"type":"string"},"colorOverlay":{"type":"string"},"colorPrimary":{"type":"string"},"colorPrimarySurface":{"type":"string"},"colorSecondary":{"type":"string"},"colorSelectArrow":{"type":"string"},"colorSuccess":{"type":"string"},"colorSuccessBg":{"type":"string"},"colorSurface":{"type":"string"},"colorSurfaceMuted":{"type":"string"},"colorSurfaceStrong":{"type":"string"},"colorSwitchBorder":{"type":"string"},"colorText":{"type":"string"},"colorTextInverted":{"type":"string"},"colorTextSecondary":{"type":"string"},"colorTextSubtle":{"type":"string"},"colorTextTitle":{"type":"string"},"colorWarning":{"type":"string"},"colorWarningBg":{"type":"string"},"dataUseIconColor":{"type":"string"},"fontFamily":{"type":"string"},"fontFamilyBody":{"type":"string"},"fontFamilyTitle":{"type":"string"},"fontSizeBase":{"type":"string"}},"type":"object"},"SoyioColorMode":{"description":"Appearance color mode.\\n\\n- \`light\`: force light mode\\n- \`dark\`: force dark mode\\n- \`auto\`: follow the consumer's system color scheme","enum":["light","dark","auto"],"type":"string"},"SoyioIconConfig":{"additionalProperties":false,"properties":{"dataUseVariant":{"description":"Override variant for data use icons in consent management. If not set, uses the company's configured iconVariant.","enum":["duotone","outline","solid"],"type":"string"},"size":{"default":24,"description":"Default icon size in pixels.","type":"number"},"weight":{"$ref":"#/definitions/IconWeight","default":"regular","description":"Icon weight/style variant.\\n- thin: Thinnest stroke\\n- light: Light stroke\\n- regular: Default stroke (default)\\n- bold: Bold stroke\\n- fill: Filled/solid icons\\n- duotone: Two-tone icons with opacity"}},"type":"object"},"SoyioRule":{"additionalProperties":{"$ref":"#/definitions/CSSProperties"},"properties":{".Alert":{"$ref":"#/definitions/CSSProperties"},".Alert--checked":{"$ref":"#/definitions/CSSProperties"},".Alert--error":{"$ref":"#/definitions/CSSProperties"},".Alert--info":{"$ref":"#/definitions/CSSProperties"},".Alert--note":{"$ref":"#/definitions/CSSProperties"},".Alert--success":{"$ref":"#/definitions/CSSProperties"},".Alert--warning":{"$ref":"#/definitions/CSSProperties"},".Alert::placeholder":{"$ref":"#/definitions/CSSProperties"},".Alert::selection":{"$ref":"#/definitions/CSSProperties"},".Alert:active":{"$ref":"#/definitions/CSSProperties"},".Alert:autofill":{"$ref":"#/definitions/CSSProperties"},".Alert:disabled":{"$ref":"#/definitions/CSSProperties"},".Alert:focus":{"$ref":"#/definitions/CSSProperties"},".Alert:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Alert:hover":{"$ref":"#/definitions/CSSProperties"},".AlertContent":{"$ref":"#/definitions/CSSProperties"},".AlertContent--checked":{"$ref":"#/definitions/CSSProperties"},".AlertContent::placeholder":{"$ref":"#/definitions/CSSProperties"},".AlertContent::selection":{"$ref":"#/definitions/CSSProperties"},".AlertContent:active":{"$ref":"#/definitions/CSSProperties"},".AlertContent:autofill":{"$ref":"#/definitions/CSSProperties"},".AlertContent:disabled":{"$ref":"#/definitions/CSSProperties"},".AlertContent:focus":{"$ref":"#/definitions/CSSProperties"},".AlertContent:focus-visible":{"$ref":"#/definitions/CSSProperties"},".AlertContent:hover":{"$ref":"#/definitions/CSSProperties"},".AlertIcon":{"$ref":"#/definitions/CSSProperties"},".AlertIcon--checked":{"$ref":"#/definitions/CSSProperties"},".AlertIcon::placeholder":{"$ref":"#/definitions/CSSProperties"},".AlertIcon::selection":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:active":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:autofill":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:disabled":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:focus":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:focus-visible":{"$ref":"#/definitions/CSSProperties"},".AlertIcon:hover":{"$ref":"#/definitions/CSSProperties"},".Button":{"$ref":"#/definitions/CSSProperties"},".Button--checked":{"$ref":"#/definitions/CSSProperties"},".Button::placeholder":{"$ref":"#/definitions/CSSProperties"},".Button::selection":{"$ref":"#/definitions/CSSProperties"},".Button:active":{"$ref":"#/definitions/CSSProperties"},".Button:autofill":{"$ref":"#/definitions/CSSProperties"},".Button:disabled":{"$ref":"#/definitions/CSSProperties"},".Button:focus":{"$ref":"#/definitions/CSSProperties"},".Button:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Button:hover":{"$ref":"#/definitions/CSSProperties"},".Card":{"$ref":"#/definitions/CSSProperties"},".Card--checked":{"$ref":"#/definitions/CSSProperties"},".Card::placeholder":{"$ref":"#/definitions/CSSProperties"},".Card::selection":{"$ref":"#/definitions/CSSProperties"},".Card:active":{"$ref":"#/definitions/CSSProperties"},".Card:autofill":{"$ref":"#/definitions/CSSProperties"},".Card:disabled":{"$ref":"#/definitions/CSSProperties"},".Card:focus":{"$ref":"#/definitions/CSSProperties"},".Card:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Card:hover":{"$ref":"#/definitions/CSSProperties"},".CardTitle":{"$ref":"#/definitions/CSSProperties"},".CardTitle--checked":{"$ref":"#/definitions/CSSProperties"},".CardTitle::placeholder":{"$ref":"#/definitions/CSSProperties"},".CardTitle::selection":{"$ref":"#/definitions/CSSProperties"},".CardTitle:active":{"$ref":"#/definitions/CSSProperties"},".CardTitle:autofill":{"$ref":"#/definitions/CSSProperties"},".CardTitle:disabled":{"$ref":"#/definitions/CSSProperties"},".CardTitle:focus":{"$ref":"#/definitions/CSSProperties"},".CardTitle:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CardTitle:hover":{"$ref":"#/definitions/CSSProperties"},".CategoryTag":{"$ref":"#/definitions/CSSProperties"},".CategoryTag--checked":{"$ref":"#/definitions/CSSProperties"},".CategoryTag::placeholder":{"$ref":"#/definitions/CSSProperties"},".CategoryTag::selection":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:active":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:autofill":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:disabled":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:focus":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CategoryTag:hover":{"$ref":"#/definitions/CSSProperties"},".Checkbox":{"$ref":"#/definitions/CSSProperties"},".Checkbox--checked":{"$ref":"#/definitions/CSSProperties"},".Checkbox::placeholder":{"$ref":"#/definitions/CSSProperties"},".Checkbox::selection":{"$ref":"#/definitions/CSSProperties"},".Checkbox:active":{"$ref":"#/definitions/CSSProperties"},".Checkbox:autofill":{"$ref":"#/definitions/CSSProperties"},".Checkbox:disabled":{"$ref":"#/definitions/CSSProperties"},".Checkbox:focus":{"$ref":"#/definitions/CSSProperties"},".Checkbox:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Checkbox:hover":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck--checked":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck::placeholder":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck::selection":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:active":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:autofill":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:disabled":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:focus":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CheckboxCheck:hover":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput--checked":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput::placeholder":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput::selection":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:active":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:autofill":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:disabled":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:focus":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CheckboxInput:hover":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel--checked":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel::placeholder":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel::selection":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:active":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:autofill":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:disabled":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:focus":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:focus-visible":{"$ref":"#/definitions/CSSProperties"},".CheckboxLabel:hover":{"$ref":"#/definitions/CSSProperties"},".Chip":{"$ref":"#/definitions/CSSProperties"},".Chip--amber":{"$ref":"#/definitions/CSSProperties"},".Chip--checked":{"$ref":"#/definitions/CSSProperties"},".Chip--green":{"$ref":"#/definitions/CSSProperties"},".Chip--info":{"$ref":"#/definitions/CSSProperties"},".Chip--red":{"$ref":"#/definitions/CSSProperties"},".Chip::placeholder":{"$ref":"#/definitions/CSSProperties"},".Chip::selection":{"$ref":"#/definitions/CSSProperties"},".Chip:active":{"$ref":"#/definitions/CSSProperties"},".Chip:autofill":{"$ref":"#/definitions/CSSProperties"},".Chip:disabled":{"$ref":"#/definitions/CSSProperties"},".Chip:focus":{"$ref":"#/definitions/CSSProperties"},".Chip:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Chip:hover":{"$ref":"#/definitions/CSSProperties"},".Combobox":{"$ref":"#/definitions/CSSProperties"},".Combobox--checked":{"$ref":"#/definitions/CSSProperties"},".Combobox::placeholder":{"$ref":"#/definitions/CSSProperties"},".Combobox::selection":{"$ref":"#/definitions/CSSProperties"},".Combobox:active":{"$ref":"#/definitions/CSSProperties"},".Combobox:autofill":{"$ref":"#/definitions/CSSProperties"},".Combobox:disabled":{"$ref":"#/definitions/CSSProperties"},".Combobox:focus":{"$ref":"#/definitions/CSSProperties"},".Combobox:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Combobox:hover":{"$ref":"#/definitions/CSSProperties"},".Description":{"$ref":"#/definitions/CSSProperties"},".Description--checked":{"$ref":"#/definitions/CSSProperties"},".Description::placeholder":{"$ref":"#/definitions/CSSProperties"},".Description::selection":{"$ref":"#/definitions/CSSProperties"},".Description:active":{"$ref":"#/definitions/CSSProperties"},".Description:autofill":{"$ref":"#/definitions/CSSProperties"},".Description:disabled":{"$ref":"#/definitions/CSSProperties"},".Description:focus":{"$ref":"#/definitions/CSSProperties"},".Description:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Description:hover":{"$ref":"#/definitions/CSSProperties"},".Dialog":{"$ref":"#/definitions/CSSProperties"},".Dialog--checked":{"$ref":"#/definitions/CSSProperties"},".Dialog::placeholder":{"$ref":"#/definitions/CSSProperties"},".Dialog::selection":{"$ref":"#/definitions/CSSProperties"},".Dialog:active":{"$ref":"#/definitions/CSSProperties"},".Dialog:autofill":{"$ref":"#/definitions/CSSProperties"},".Dialog:disabled":{"$ref":"#/definitions/CSSProperties"},".Dialog:focus":{"$ref":"#/definitions/CSSProperties"},".Dialog:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Dialog:hover":{"$ref":"#/definitions/CSSProperties"},".DialogContent":{"$ref":"#/definitions/CSSProperties"},".DialogContent--checked":{"$ref":"#/definitions/CSSProperties"},".DialogContent::placeholder":{"$ref":"#/definitions/CSSProperties"},".DialogContent::selection":{"$ref":"#/definitions/CSSProperties"},".DialogContent:active":{"$ref":"#/definitions/CSSProperties"},".DialogContent:autofill":{"$ref":"#/definitions/CSSProperties"},".DialogContent:disabled":{"$ref":"#/definitions/CSSProperties"},".DialogContent:focus":{"$ref":"#/definitions/CSSProperties"},".DialogContent:focus-visible":{"$ref":"#/definitions/CSSProperties"},".DialogContent:hover":{"$ref":"#/definitions/CSSProperties"},".DialogDescription":{"$ref":"#/definitions/CSSProperties"},".DialogDescription--checked":{"$ref":"#/definitions/CSSProperties"},".DialogDescription::placeholder":{"$ref":"#/definitions/CSSProperties"},".DialogDescription::selection":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:active":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:autofill":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:disabled":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:focus":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:focus-visible":{"$ref":"#/definitions/CSSProperties"},".DialogDescription:hover":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay--checked":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay::placeholder":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay::selection":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:active":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:autofill":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:disabled":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:focus":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:focus-visible":{"$ref":"#/definitions/CSSProperties"},".DialogOverlay:hover":{"$ref":"#/definitions/CSSProperties"},".DialogTitle":{"$ref":"#/definitions/CSSProperties"},".DialogTitle--checked":{"$ref":"#/definitions/CSSProperties"},".DialogTitle::placeholder":{"$ref":"#/definitions/CSSProperties"},".DialogTitle::selection":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:active":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:autofill":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:disabled":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:focus":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:focus-visible":{"$ref":"#/definitions/CSSProperties"},".DialogTitle:hover":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage--checked":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage::placeholder":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage::selection":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:active":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:autofill":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:disabled":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:focus":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:focus-visible":{"$ref":"#/definitions/CSSProperties"},".ErrorMessage:hover":{"$ref":"#/definitions/CSSProperties"},".HintIcon":{"$ref":"#/definitions/CSSProperties"},".HintIcon--checked":{"$ref":"#/definitions/CSSProperties"},".HintIcon::placeholder":{"$ref":"#/definitions/CSSProperties"},".HintIcon::selection":{"$ref":"#/definitions/CSSProperties"},".HintIcon:active":{"$ref":"#/definitions/CSSProperties"},".HintIcon:autofill":{"$ref":"#/definitions/CSSProperties"},".HintIcon:disabled":{"$ref":"#/definitions/CSSProperties"},".HintIcon:focus":{"$ref":"#/definitions/CSSProperties"},".HintIcon:focus-visible":{"$ref":"#/definitions/CSSProperties"},".HintIcon:hover":{"$ref":"#/definitions/CSSProperties"},".Input":{"$ref":"#/definitions/CSSProperties"},".Input--checked":{"$ref":"#/definitions/CSSProperties"},".Input--error":{"$ref":"#/definitions/CSSProperties"},".Input::placeholder":{"$ref":"#/definitions/CSSProperties"},".Input::selection":{"$ref":"#/definitions/CSSProperties"},".Input:active":{"$ref":"#/definitions/CSSProperties"},".Input:autofill":{"$ref":"#/definitions/CSSProperties"},".Input:disabled":{"$ref":"#/definitions/CSSProperties"},".Input:focus":{"$ref":"#/definitions/CSSProperties"},".Input:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Input:hover":{"$ref":"#/definitions/CSSProperties"},".Label":{"$ref":"#/definitions/CSSProperties"},".Label--checked":{"$ref":"#/definitions/CSSProperties"},".Label::placeholder":{"$ref":"#/definitions/CSSProperties"},".Label::selection":{"$ref":"#/definitions/CSSProperties"},".Label:active":{"$ref":"#/definitions/CSSProperties"},".Label:autofill":{"$ref":"#/definitions/CSSProperties"},".Label:disabled":{"$ref":"#/definitions/CSSProperties"},".Label:focus":{"$ref":"#/definitions/CSSProperties"},".Label:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Label:hover":{"$ref":"#/definitions/CSSProperties"},".Link":{"$ref":"#/definitions/CSSProperties"},".Link--checked":{"$ref":"#/definitions/CSSProperties"},".Link::placeholder":{"$ref":"#/definitions/CSSProperties"},".Link::selection":{"$ref":"#/definitions/CSSProperties"},".Link:active":{"$ref":"#/definitions/CSSProperties"},".Link:autofill":{"$ref":"#/definitions/CSSProperties"},".Link:disabled":{"$ref":"#/definitions/CSSProperties"},".Link:focus":{"$ref":"#/definitions/CSSProperties"},".Link:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Link:hover":{"$ref":"#/definitions/CSSProperties"},".Loader":{"$ref":"#/definitions/CSSProperties"},".Loader--checked":{"$ref":"#/definitions/CSSProperties"},".Loader::placeholder":{"$ref":"#/definitions/CSSProperties"},".Loader::selection":{"$ref":"#/definitions/CSSProperties"},".Loader:active":{"$ref":"#/definitions/CSSProperties"},".Loader:autofill":{"$ref":"#/definitions/CSSProperties"},".Loader:disabled":{"$ref":"#/definitions/CSSProperties"},".Loader:focus":{"$ref":"#/definitions/CSSProperties"},".Loader:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Loader:hover":{"$ref":"#/definitions/CSSProperties"},".MainContainer":{"$ref":"#/definitions/CSSProperties"},".MainContainer--checked":{"$ref":"#/definitions/CSSProperties"},".MainContainer::placeholder":{"$ref":"#/definitions/CSSProperties"},".MainContainer::selection":{"$ref":"#/definitions/CSSProperties"},".MainContainer:active":{"$ref":"#/definitions/CSSProperties"},".MainContainer:autofill":{"$ref":"#/definitions/CSSProperties"},".MainContainer:disabled":{"$ref":"#/definitions/CSSProperties"},".MainContainer:focus":{"$ref":"#/definitions/CSSProperties"},".MainContainer:focus-visible":{"$ref":"#/definitions/CSSProperties"},".MainContainer:hover":{"$ref":"#/definitions/CSSProperties"},".NinInput":{"$ref":"#/definitions/CSSProperties"},".NinInput--checked":{"$ref":"#/definitions/CSSProperties"},".NinInput::placeholder":{"$ref":"#/definitions/CSSProperties"},".NinInput::selection":{"$ref":"#/definitions/CSSProperties"},".NinInput:active":{"$ref":"#/definitions/CSSProperties"},".NinInput:autofill":{"$ref":"#/definitions/CSSProperties"},".NinInput:disabled":{"$ref":"#/definitions/CSSProperties"},".NinInput:focus":{"$ref":"#/definitions/CSSProperties"},".NinInput:focus-visible":{"$ref":"#/definitions/CSSProperties"},".NinInput:hover":{"$ref":"#/definitions/CSSProperties"},".Radio":{"$ref":"#/definitions/CSSProperties"},".Radio--checked":{"$ref":"#/definitions/CSSProperties"},".Radio::placeholder":{"$ref":"#/definitions/CSSProperties"},".Radio::selection":{"$ref":"#/definitions/CSSProperties"},".Radio:active":{"$ref":"#/definitions/CSSProperties"},".Radio:autofill":{"$ref":"#/definitions/CSSProperties"},".Radio:disabled":{"$ref":"#/definitions/CSSProperties"},".Radio:focus":{"$ref":"#/definitions/CSSProperties"},".Radio:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Radio:hover":{"$ref":"#/definitions/CSSProperties"},".RadioButton":{"$ref":"#/definitions/CSSProperties"},".RadioButton--checked":{"$ref":"#/definitions/CSSProperties"},".RadioButton::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioButton::selection":{"$ref":"#/definitions/CSSProperties"},".RadioButton:active":{"$ref":"#/definitions/CSSProperties"},".RadioButton:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioButton:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioButton:focus":{"$ref":"#/definitions/CSSProperties"},".RadioButton:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioButton:hover":{"$ref":"#/definitions/CSSProperties"},".RadioCard":{"$ref":"#/definitions/CSSProperties"},".RadioCard--checked":{"$ref":"#/definitions/CSSProperties"},".RadioCard::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioCard::selection":{"$ref":"#/definitions/CSSProperties"},".RadioCard:active":{"$ref":"#/definitions/CSSProperties"},".RadioCard:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioCard:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioCard:focus":{"$ref":"#/definitions/CSSProperties"},".RadioCard:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioCard:hover":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton--checked":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton::selection":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:active":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:focus":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioCardButton:hover":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator--checked":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator::selection":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:active":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:focus":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioCardIndicator:hover":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle--checked":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle::selection":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:active":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:focus":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioCardTitle:hover":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator--checked":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator::selection":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:active":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:focus":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioIndicator:hover":{"$ref":"#/definitions/CSSProperties"},".RadioLabel":{"$ref":"#/definitions/CSSProperties"},".RadioLabel--checked":{"$ref":"#/definitions/CSSProperties"},".RadioLabel::placeholder":{"$ref":"#/definitions/CSSProperties"},".RadioLabel::selection":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:active":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:autofill":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:disabled":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:focus":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:focus-visible":{"$ref":"#/definitions/CSSProperties"},".RadioLabel:hover":{"$ref":"#/definitions/CSSProperties"},".Select":{"$ref":"#/definitions/CSSProperties"},".Select--checked":{"$ref":"#/definitions/CSSProperties"},".Select::placeholder":{"$ref":"#/definitions/CSSProperties"},".Select::selection":{"$ref":"#/definitions/CSSProperties"},".Select:active":{"$ref":"#/definitions/CSSProperties"},".Select:autofill":{"$ref":"#/definitions/CSSProperties"},".Select:disabled":{"$ref":"#/definitions/CSSProperties"},".Select:focus":{"$ref":"#/definitions/CSSProperties"},".Select:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Select:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicator":{"$ref":"#/definitions/CSSProperties"},".StepIndicator--active":{"$ref":"#/definitions/CSSProperties"},".StepIndicator--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicator--completed":{"$ref":"#/definitions/CSSProperties"},".StepIndicator--pending":{"$ref":"#/definitions/CSSProperties"},".StepIndicator::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicator::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicator:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorContainer:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorDot:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorIcon:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine--bottom":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine--top":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorLine:hover":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber--checked":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber::selection":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:active":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:autofill":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:disabled":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:focus":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepIndicatorNumber:hover":{"$ref":"#/definitions/CSSProperties"},".StepTitle":{"$ref":"#/definitions/CSSProperties"},".StepTitle--checked":{"$ref":"#/definitions/CSSProperties"},".StepTitle::placeholder":{"$ref":"#/definitions/CSSProperties"},".StepTitle::selection":{"$ref":"#/definitions/CSSProperties"},".StepTitle:active":{"$ref":"#/definitions/CSSProperties"},".StepTitle:autofill":{"$ref":"#/definitions/CSSProperties"},".StepTitle:disabled":{"$ref":"#/definitions/CSSProperties"},".StepTitle:focus":{"$ref":"#/definitions/CSSProperties"},".StepTitle:focus-visible":{"$ref":"#/definitions/CSSProperties"},".StepTitle:hover":{"$ref":"#/definitions/CSSProperties"},".Switch":{"$ref":"#/definitions/CSSProperties"},".Switch--checked":{"$ref":"#/definitions/CSSProperties"},".Switch::placeholder":{"$ref":"#/definitions/CSSProperties"},".Switch::selection":{"$ref":"#/definitions/CSSProperties"},".Switch:active":{"$ref":"#/definitions/CSSProperties"},".Switch:autofill":{"$ref":"#/definitions/CSSProperties"},".Switch:disabled":{"$ref":"#/definitions/CSSProperties"},".Switch:focus":{"$ref":"#/definitions/CSSProperties"},".Switch:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Switch:hover":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon--checked":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon::placeholder":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon::selection":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:active":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:autofill":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:disabled":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:focus":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:focus-visible":{"$ref":"#/definitions/CSSProperties"},".SwitchIcon:hover":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot--checked":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot::placeholder":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot::selection":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:active":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:autofill":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:disabled":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:focus":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:focus-visible":{"$ref":"#/definitions/CSSProperties"},".SwitchRoot:hover":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb--checked":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb::placeholder":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb::selection":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:active":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:autofill":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:disabled":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:focus":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:focus-visible":{"$ref":"#/definitions/CSSProperties"},".SwitchThumb:hover":{"$ref":"#/definitions/CSSProperties"},".TextArea":{"$ref":"#/definitions/CSSProperties"},".TextArea--checked":{"$ref":"#/definitions/CSSProperties"},".TextArea::placeholder":{"$ref":"#/definitions/CSSProperties"},".TextArea::selection":{"$ref":"#/definitions/CSSProperties"},".TextArea:active":{"$ref":"#/definitions/CSSProperties"},".TextArea:autofill":{"$ref":"#/definitions/CSSProperties"},".TextArea:disabled":{"$ref":"#/definitions/CSSProperties"},".TextArea:focus":{"$ref":"#/definitions/CSSProperties"},".TextArea:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TextArea:hover":{"$ref":"#/definitions/CSSProperties"},".Title":{"$ref":"#/definitions/CSSProperties"},".Title--checked":{"$ref":"#/definitions/CSSProperties"},".Title::placeholder":{"$ref":"#/definitions/CSSProperties"},".Title::selection":{"$ref":"#/definitions/CSSProperties"},".Title:active":{"$ref":"#/definitions/CSSProperties"},".Title:autofill":{"$ref":"#/definitions/CSSProperties"},".Title:disabled":{"$ref":"#/definitions/CSSProperties"},".Title:focus":{"$ref":"#/definitions/CSSProperties"},".Title:focus-visible":{"$ref":"#/definitions/CSSProperties"},".Title:hover":{"$ref":"#/definitions/CSSProperties"},".TooltipContent":{"$ref":"#/definitions/CSSProperties"},".TooltipContent--checked":{"$ref":"#/definitions/CSSProperties"},".TooltipContent::placeholder":{"$ref":"#/definitions/CSSProperties"},".TooltipContent::selection":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:active":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:autofill":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:disabled":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:focus":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TooltipContent:hover":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput--checked":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput::placeholder":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput::selection":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:active":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:autofill":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:disabled":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:focus":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInput:hover":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell--checked":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell::placeholder":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell::selection":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:active":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:autofill":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:disabled":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:focus":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputCell:hover":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator--checked":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator::placeholder":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator::selection":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:active":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:autofill":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:disabled":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:focus":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:focus-visible":{"$ref":"#/definitions/CSSProperties"},".TrackingCodeInputSeparator:hover":{"$ref":"#/definitions/CSSProperties"}},"type":"object"},"SoyioTheme":{"description":"Appearance theme palette.\\n\\n\`night\` is kept as a deprecated alias for \`theme: 'soyio'\` + \`mode: 'dark'\`.","enum":["soyio","flat","neutral","night"],"type":"string"},"SoyioWidgetConfig":{"anyOf":[{"$ref":"#/definitions/PrivacyCenterConfig"},{"$ref":"#/definitions/ConsentConfig"}],"description":"Combined configuration type for generating the JSON schema. This includes all possible configuration options for both PrivacyCenterBox and ConsentBox."},"UserDataCategoryKey":{"enum":["user","user.account","user.authorization","user.behavior","user.biometric","user.childrens","user.contact","user.content","user.demographic","user.location","user.device","user.payment","user.social","user.unique_id","user.telemetry","user.user_sensor","user.workplace","user.sensor","user.financial","user.government_id","user.health_and_medical","user.name","user.criminal_history","user.privacy_preferences","user.job_title","user.account.settings","user.account.username","user.authorization.credentials","user.authorization.biometric","user.authorization.password","user.behavior.browsing_history","user.behavior.media_consumption","user.behavior.purchase_history","user.behavior.search_history","user.biometric.fingerprint","user.biometric.retinal","user.biometric.voice","user.biometric.health","user.contact.address","user.contact.email","user.contact.phone_number","user.contact.url","user.contact.fax_number","user.contact.organization","user.contact.address.city","user.contact.address.country","user.contact.address.postal_code","user.contact.address.state","user.contact.address.street","user.content.private","user.content.public","user.content.self_image","user.demographic.age_range","user.demographic.date_of_birth","user.demographic.gender","user.demographic.language","user.demographic.marital_status","user.demographic.political_opinion","user.demographic.profile","user.demographic.race_ethnicity","user.demographic.religious_belief","user.demographic.sexual_orientation","user.demographic.nationality","user.device.cookie","user.device.cookie_id","user.device.device_id","user.device.ip_address","user.financial.bank_account","user.financial.credit_card","user.government_id.birth_certificate","user.government_id.drivers_license_number","user.government_id.immigration","user.government_id.national_identification_number","user.government_id.passport_number","user.government_id.vehicle_registration","user.health_and_medical.genetic","user.health_and_medical.insurance_beneficiary_id","user.health_and_medical.record_id","user.labor_activity","user.labor_activity.profession","user.labor_activity.job_title","user.labor_activity.worker_type","user.labor_activity.salary","user.labor_activity.workplace","user.location.imprecise","user.location.precise","user.name.first","user.name.last","user.unique_id.pseudonymous"],"type":"string"}}`), Wr = {
|
|
936
938
|
$ref: br,
|
|
937
939
|
$schema: wr,
|
|
938
940
|
definitions: Ir
|
|
@@ -948,53 +950,53 @@ function Rr() {
|
|
|
948
950
|
})(typeof self != "undefined" ? self : kr, (function() {
|
|
949
951
|
return (function(a) {
|
|
950
952
|
var f = {};
|
|
951
|
-
function u(
|
|
952
|
-
if (f[
|
|
953
|
-
var $ = f[
|
|
954
|
-
i:
|
|
953
|
+
function u(P) {
|
|
954
|
+
if (f[P]) return f[P].exports;
|
|
955
|
+
var $ = f[P] = {
|
|
956
|
+
i: P,
|
|
955
957
|
l: !1,
|
|
956
958
|
exports: {}
|
|
957
959
|
};
|
|
958
|
-
return a[
|
|
960
|
+
return a[P].call($.exports, $, $.exports, u), $.l = !0, $.exports;
|
|
959
961
|
}
|
|
960
|
-
return u.m = a, u.c = f, u.d = function(
|
|
961
|
-
u.o(
|
|
962
|
+
return u.m = a, u.c = f, u.d = function(P, $, y) {
|
|
963
|
+
u.o(P, $) || Object.defineProperty(P, $, {
|
|
962
964
|
enumerable: !0,
|
|
963
965
|
get: y
|
|
964
966
|
});
|
|
965
|
-
}, u.r = function(
|
|
966
|
-
typeof Symbol != "undefined" && Symbol.toStringTag && Object.defineProperty(
|
|
967
|
+
}, u.r = function(P) {
|
|
968
|
+
typeof Symbol != "undefined" && Symbol.toStringTag && Object.defineProperty(P, Symbol.toStringTag, {
|
|
967
969
|
value: "Module"
|
|
968
|
-
}), Object.defineProperty(
|
|
970
|
+
}), Object.defineProperty(P, "__esModule", {
|
|
969
971
|
value: !0
|
|
970
972
|
});
|
|
971
|
-
}, u.t = function(
|
|
972
|
-
if (1 & $ && (
|
|
973
|
+
}, u.t = function(P, $) {
|
|
974
|
+
if (1 & $ && (P = u(P)), 8 & $ || 4 & $ && typeof P == "object" && P && P.__esModule) return P;
|
|
973
975
|
var y = /* @__PURE__ */ Object.create(null);
|
|
974
976
|
if (u.r(y), Object.defineProperty(y, "default", {
|
|
975
977
|
enumerable: !0,
|
|
976
|
-
value:
|
|
977
|
-
}), 2 & $ && typeof
|
|
978
|
-
return
|
|
978
|
+
value: P
|
|
979
|
+
}), 2 & $ && typeof P != "string") for (var I in P) u.d(y, I, function(T) {
|
|
980
|
+
return P[T];
|
|
979
981
|
}.bind(null, I));
|
|
980
982
|
return y;
|
|
981
|
-
}, u.n = function(
|
|
982
|
-
var $ =
|
|
983
|
-
return
|
|
983
|
+
}, u.n = function(P) {
|
|
984
|
+
var $ = P && P.__esModule ? function() {
|
|
985
|
+
return P.default;
|
|
984
986
|
} : function() {
|
|
985
|
-
return
|
|
987
|
+
return P;
|
|
986
988
|
};
|
|
987
989
|
return u.d($, "a", $), $;
|
|
988
|
-
}, u.o = function(
|
|
989
|
-
return {}.hasOwnProperty.call(
|
|
990
|
+
}, u.o = function(P, $) {
|
|
991
|
+
return {}.hasOwnProperty.call(P, $);
|
|
990
992
|
}, u.p = "", u(u.s = 0);
|
|
991
993
|
})([function(a, f, u) {
|
|
992
994
|
u.r(f), u.d(f, "Promise", (function() {
|
|
993
995
|
return E;
|
|
994
996
|
})), u.d(f, "TYPES", (function() {
|
|
995
|
-
return
|
|
997
|
+
return gt;
|
|
996
998
|
})), u.d(f, "ProxyWindow", (function() {
|
|
997
|
-
return
|
|
999
|
+
return X;
|
|
998
1000
|
})), u.d(f, "setup", (function() {
|
|
999
1001
|
return xi;
|
|
1000
1002
|
})), u.d(f, "destroy", (function() {
|
|
@@ -1008,18 +1010,18 @@ function Rr() {
|
|
|
1008
1010
|
})), u.d(f, "toProxyWindow", (function() {
|
|
1009
1011
|
return ht;
|
|
1010
1012
|
})), u.d(f, "on", (function() {
|
|
1011
|
-
return
|
|
1013
|
+
return de;
|
|
1012
1014
|
})), u.d(f, "once", (function() {
|
|
1013
1015
|
return pt;
|
|
1014
1016
|
})), u.d(f, "send", (function() {
|
|
1015
|
-
return
|
|
1017
|
+
return oe;
|
|
1016
1018
|
})), u.d(f, "markWindowKnown", (function() {
|
|
1017
|
-
return
|
|
1019
|
+
return gi;
|
|
1018
1020
|
})), u.d(f, "cleanUpWindow", (function() {
|
|
1019
|
-
return
|
|
1021
|
+
return Pt;
|
|
1020
1022
|
})), u.d(f, "bridge", (function() {
|
|
1021
1023
|
}));
|
|
1022
|
-
function
|
|
1024
|
+
function P(e) {
|
|
1023
1025
|
return {}.toString.call(e) === "[object RegExp]";
|
|
1024
1026
|
}
|
|
1025
1027
|
var $ = `Call was rejected by callee.\r
|
|
@@ -1043,20 +1045,20 @@ function Rr() {
|
|
|
1043
1045
|
} catch (t) {
|
|
1044
1046
|
}
|
|
1045
1047
|
}
|
|
1046
|
-
function
|
|
1048
|
+
function O(e) {
|
|
1047
1049
|
if (e === void 0 && (e = window), e && !x(e)) try {
|
|
1048
1050
|
return e.opener;
|
|
1049
1051
|
} catch (t) {
|
|
1050
1052
|
}
|
|
1051
1053
|
}
|
|
1052
|
-
function
|
|
1054
|
+
function z(e) {
|
|
1053
1055
|
try {
|
|
1054
1056
|
return !0;
|
|
1055
1057
|
} catch (t) {
|
|
1056
1058
|
}
|
|
1057
1059
|
return !1;
|
|
1058
1060
|
}
|
|
1059
|
-
function
|
|
1061
|
+
function M(e) {
|
|
1060
1062
|
e === void 0 && (e = window);
|
|
1061
1063
|
var t = e.location;
|
|
1062
1064
|
if (!t) throw new Error("Can not read window location");
|
|
@@ -1065,18 +1067,18 @@ function Rr() {
|
|
|
1065
1067
|
if (i === "file:") return "file://";
|
|
1066
1068
|
if (i === "about:") {
|
|
1067
1069
|
var r = x(e);
|
|
1068
|
-
return r &&
|
|
1070
|
+
return r && z() ? M(r) : "about://";
|
|
1069
1071
|
}
|
|
1070
1072
|
var n = t.host;
|
|
1071
1073
|
if (!n) throw new Error("Can not read window host");
|
|
1072
1074
|
return i + "//" + n;
|
|
1073
1075
|
}
|
|
1074
|
-
function
|
|
1076
|
+
function W(e) {
|
|
1075
1077
|
e === void 0 && (e = window);
|
|
1076
|
-
var t =
|
|
1078
|
+
var t = M(e);
|
|
1077
1079
|
return t && e.mockDomain && e.mockDomain.indexOf("mock:") === 0 ? e.mockDomain : t;
|
|
1078
1080
|
}
|
|
1079
|
-
function
|
|
1081
|
+
function H(e) {
|
|
1080
1082
|
if (!(function(t) {
|
|
1081
1083
|
try {
|
|
1082
1084
|
if (t === window) return !0;
|
|
@@ -1088,32 +1090,32 @@ function Rr() {
|
|
|
1088
1090
|
} catch (r) {
|
|
1089
1091
|
}
|
|
1090
1092
|
try {
|
|
1091
|
-
if (T(t) &&
|
|
1093
|
+
if (T(t) && z()) return !0;
|
|
1092
1094
|
} catch (r) {
|
|
1093
1095
|
}
|
|
1094
1096
|
try {
|
|
1095
1097
|
if ((function(r) {
|
|
1096
1098
|
return r === void 0 && (r = window), I(r) === "mock:";
|
|
1097
|
-
})(t) &&
|
|
1099
|
+
})(t) && z()) return !0;
|
|
1098
1100
|
} catch (r) {
|
|
1099
1101
|
}
|
|
1100
1102
|
try {
|
|
1101
|
-
if (
|
|
1103
|
+
if (M(t) === M(window)) return !0;
|
|
1102
1104
|
} catch (r) {
|
|
1103
1105
|
}
|
|
1104
1106
|
return !1;
|
|
1105
1107
|
})(e)) return !1;
|
|
1106
1108
|
try {
|
|
1107
|
-
if (e === window || T(e) &&
|
|
1109
|
+
if (e === window || T(e) && z() || W(window) === W(e)) return !0;
|
|
1108
1110
|
} catch (t) {
|
|
1109
1111
|
}
|
|
1110
1112
|
return !1;
|
|
1111
1113
|
}
|
|
1112
|
-
function
|
|
1113
|
-
if (!
|
|
1114
|
+
function ie(e) {
|
|
1115
|
+
if (!H(e)) throw new Error("Expected window to be same domain");
|
|
1114
1116
|
return e;
|
|
1115
1117
|
}
|
|
1116
|
-
function
|
|
1118
|
+
function ce(e, t) {
|
|
1117
1119
|
if (!e || !t) return !1;
|
|
1118
1120
|
var i = x(t);
|
|
1119
1121
|
return i ? i === e : (function(r) {
|
|
@@ -1126,7 +1128,7 @@ function Rr() {
|
|
|
1126
1128
|
return n;
|
|
1127
1129
|
})(t).indexOf(e) !== -1;
|
|
1128
1130
|
}
|
|
1129
|
-
function
|
|
1131
|
+
function K(e) {
|
|
1130
1132
|
var t = [], i;
|
|
1131
1133
|
try {
|
|
1132
1134
|
i = e.frames;
|
|
@@ -1163,8 +1165,8 @@ function Rr() {
|
|
|
1163
1165
|
}
|
|
1164
1166
|
return t;
|
|
1165
1167
|
}
|
|
1166
|
-
var
|
|
1167
|
-
function
|
|
1168
|
+
var G = [], pe = [];
|
|
1169
|
+
function U(e, t) {
|
|
1168
1170
|
t === void 0 && (t = !0);
|
|
1169
1171
|
try {
|
|
1170
1172
|
if (e === window) return !1;
|
|
@@ -1181,7 +1183,7 @@ function Rr() {
|
|
|
1181
1183
|
} catch (n) {
|
|
1182
1184
|
return !n || n.message !== $;
|
|
1183
1185
|
}
|
|
1184
|
-
if (t &&
|
|
1186
|
+
if (t && H(e)) try {
|
|
1185
1187
|
if (e.mockclosed) return !0;
|
|
1186
1188
|
} catch (n) {
|
|
1187
1189
|
}
|
|
@@ -1195,9 +1197,9 @@ function Rr() {
|
|
|
1195
1197
|
} catch (S) {
|
|
1196
1198
|
}
|
|
1197
1199
|
return -1;
|
|
1198
|
-
})(
|
|
1200
|
+
})(G, e);
|
|
1199
1201
|
if (i !== -1) {
|
|
1200
|
-
var r =
|
|
1202
|
+
var r = pe[i];
|
|
1201
1203
|
if (r && (function(n) {
|
|
1202
1204
|
if (!n.contentWindow || !n.parentNode) return !0;
|
|
1203
1205
|
var d = n.ownerDocument;
|
|
@@ -1210,16 +1212,16 @@ function Rr() {
|
|
|
1210
1212
|
}
|
|
1211
1213
|
return !1;
|
|
1212
1214
|
}
|
|
1213
|
-
function
|
|
1214
|
-
return e === void 0 && (e = window),
|
|
1215
|
+
function ne(e) {
|
|
1216
|
+
return e === void 0 && (e = window), O(e = e || window) || x(e) || void 0;
|
|
1215
1217
|
}
|
|
1216
|
-
function
|
|
1218
|
+
function V(e, t) {
|
|
1217
1219
|
if (typeof e == "string") {
|
|
1218
1220
|
if (typeof t == "string") return e === "*" || t === e;
|
|
1219
|
-
if (
|
|
1221
|
+
if (P(t) || Array.isArray(t)) return !1;
|
|
1220
1222
|
}
|
|
1221
|
-
return
|
|
1222
|
-
return
|
|
1223
|
+
return P(e) ? P(t) ? e.toString() === t.toString() : !Array.isArray(t) && !!t.match(e) : !!Array.isArray(e) && (Array.isArray(t) ? JSON.stringify(e) === JSON.stringify(t) : !P(t) && e.some((function(i) {
|
|
1224
|
+
return V(i, t);
|
|
1223
1225
|
})));
|
|
1224
1226
|
}
|
|
1225
1227
|
function Te(e) {
|
|
@@ -1265,7 +1267,7 @@ function Rr() {
|
|
|
1265
1267
|
return !1;
|
|
1266
1268
|
}
|
|
1267
1269
|
function ti(e) {
|
|
1268
|
-
if (
|
|
1270
|
+
if (H(e)) return ie(e).frameElement;
|
|
1269
1271
|
for (var t = 0, i = document.querySelectorAll("iframe"); t < i.length; t++) {
|
|
1270
1272
|
var r = i[t];
|
|
1271
1273
|
if (r && r.contentWindow && r.contentWindow === e) return r;
|
|
@@ -1286,7 +1288,7 @@ function Rr() {
|
|
|
1286
1288
|
} catch (i) {
|
|
1287
1289
|
}
|
|
1288
1290
|
}
|
|
1289
|
-
function
|
|
1291
|
+
function se(e) {
|
|
1290
1292
|
try {
|
|
1291
1293
|
if (!e) return !1;
|
|
1292
1294
|
if (typeof Promise != "undefined" && e instanceof Promise) return !0;
|
|
@@ -1337,12 +1339,12 @@ function Rr() {
|
|
|
1337
1339
|
var t = e.prototype;
|
|
1338
1340
|
return t.resolve = function(i) {
|
|
1339
1341
|
if (this.resolved || this.rejected) return this;
|
|
1340
|
-
if (
|
|
1342
|
+
if (se(i)) throw new Error("Can not resolve promise with another promise");
|
|
1341
1343
|
return this.resolved = !0, this.value = i, this.dispatch(), this;
|
|
1342
1344
|
}, t.reject = function(i) {
|
|
1343
1345
|
var r = this;
|
|
1344
1346
|
if (this.resolved || this.rejected) return this;
|
|
1345
|
-
if (
|
|
1347
|
+
if (se(i)) throw new Error("Can not reject promise with another promise");
|
|
1346
1348
|
if (!i) {
|
|
1347
1349
|
var n = i && typeof i.toString == "function" ? i.toString() : {}.toString.call(i);
|
|
1348
1350
|
i = new Error("Expected reject to be called with Error, got " + n);
|
|
@@ -1370,29 +1372,29 @@ function Rr() {
|
|
|
1370
1372
|
w.reject(v);
|
|
1371
1373
|
}));
|
|
1372
1374
|
}, c = 0; c < n.length; c++) {
|
|
1373
|
-
var S = n[c], l = S.onSuccess, p = S.onError,
|
|
1375
|
+
var S = n[c], l = S.onSuccess, p = S.onError, g = S.promise, h = void 0;
|
|
1374
1376
|
if (i) try {
|
|
1375
1377
|
h = l ? l(this.value) : this.value;
|
|
1376
1378
|
} catch (m) {
|
|
1377
|
-
|
|
1379
|
+
g.reject(m);
|
|
1378
1380
|
continue;
|
|
1379
1381
|
}
|
|
1380
1382
|
else if (r) {
|
|
1381
1383
|
if (!p) {
|
|
1382
|
-
|
|
1384
|
+
g.reject(this.error);
|
|
1383
1385
|
continue;
|
|
1384
1386
|
}
|
|
1385
1387
|
try {
|
|
1386
1388
|
h = p(this.error);
|
|
1387
1389
|
} catch (m) {
|
|
1388
|
-
|
|
1390
|
+
g.reject(m);
|
|
1389
1391
|
continue;
|
|
1390
1392
|
}
|
|
1391
1393
|
}
|
|
1392
1394
|
if (h instanceof e && (h.resolved || h.rejected)) {
|
|
1393
1395
|
var C = h;
|
|
1394
|
-
C.resolved ?
|
|
1395
|
-
} else
|
|
1396
|
+
C.resolved ? g.resolve(C.value) : g.reject(C.error), C.errorHandled = !0;
|
|
1397
|
+
} else se(h) ? h instanceof e && (h.resolved || h.rejected) ? h.resolved ? g.resolve(h.value) : g.reject(h.error) : d(h, g) : g.resolve(h);
|
|
1396
1398
|
}
|
|
1397
1399
|
n.length = 0, this.dispatching = !1, ue();
|
|
1398
1400
|
}
|
|
@@ -1433,7 +1435,7 @@ function Rr() {
|
|
|
1433
1435
|
}, t.lazy = function() {
|
|
1434
1436
|
return this.errorHandled = !0, this;
|
|
1435
1437
|
}, e.resolve = function(i) {
|
|
1436
|
-
return i instanceof e ? i :
|
|
1438
|
+
return i instanceof e ? i : se(i) ? new e((function(r, n) {
|
|
1437
1439
|
return i.then(r, n);
|
|
1438
1440
|
})) : new e().resolve(i);
|
|
1439
1441
|
}, e.reject = function(i) {
|
|
@@ -1444,8 +1446,8 @@ function Rr() {
|
|
|
1444
1446
|
var r = new e(), n = i.length, d = [].slice();
|
|
1445
1447
|
if (!n)
|
|
1446
1448
|
return r.resolve(d), r;
|
|
1447
|
-
for (var c = function(p,
|
|
1448
|
-
return
|
|
1449
|
+
for (var c = function(p, g, h) {
|
|
1450
|
+
return g.then((function(C) {
|
|
1449
1451
|
d[p] = C, (n -= 1) == 0 && r.resolve(d);
|
|
1450
1452
|
}), (function(C) {
|
|
1451
1453
|
h.reject(C);
|
|
@@ -1457,7 +1459,7 @@ function Rr() {
|
|
|
1457
1459
|
d[S] = l.value, n -= 1;
|
|
1458
1460
|
continue;
|
|
1459
1461
|
}
|
|
1460
|
-
} else if (!
|
|
1462
|
+
} else if (!se(l)) {
|
|
1461
1463
|
d[S] = l, n -= 1;
|
|
1462
1464
|
continue;
|
|
1463
1465
|
}
|
|
@@ -1468,7 +1470,7 @@ function Rr() {
|
|
|
1468
1470
|
var r = {}, n = [], d = function(S) {
|
|
1469
1471
|
if (i.hasOwnProperty(S)) {
|
|
1470
1472
|
var l = i[S];
|
|
1471
|
-
|
|
1473
|
+
se(l) ? n.push(l.then((function(p) {
|
|
1472
1474
|
r[S] = p;
|
|
1473
1475
|
}))) : r[S] = l;
|
|
1474
1476
|
}
|
|
@@ -1502,7 +1504,7 @@ function Rr() {
|
|
|
1502
1504
|
setTimeout(r, i);
|
|
1503
1505
|
}));
|
|
1504
1506
|
}, e.isPromise = function(i) {
|
|
1505
|
-
return !!(i && i instanceof e) ||
|
|
1507
|
+
return !!(i && i instanceof e) || se(i);
|
|
1506
1508
|
}, e.flush = function() {
|
|
1507
1509
|
return (function(i) {
|
|
1508
1510
|
var r = Se = Se || new i();
|
|
@@ -1537,7 +1539,7 @@ function Rr() {
|
|
|
1537
1539
|
return t._cleanupClosedWindows = function() {
|
|
1538
1540
|
for (var i = this.weakmap, r = this.keys, n = 0; n < r.length; n++) {
|
|
1539
1541
|
var d = r[n];
|
|
1540
|
-
if (Te(d) &&
|
|
1542
|
+
if (Te(d) && U(d)) {
|
|
1541
1543
|
if (i) try {
|
|
1542
1544
|
i.delete(d);
|
|
1543
1545
|
} catch (c) {
|
|
@@ -1552,7 +1554,7 @@ function Rr() {
|
|
|
1552
1554
|
var n = this.weakmap;
|
|
1553
1555
|
if (n) try {
|
|
1554
1556
|
n.set(i, r);
|
|
1555
|
-
} catch (
|
|
1557
|
+
} catch (g) {
|
|
1556
1558
|
delete this.weakmap;
|
|
1557
1559
|
}
|
|
1558
1560
|
if (this.isSafeToReadWrite(i)) try {
|
|
@@ -1562,7 +1564,7 @@ function Rr() {
|
|
|
1562
1564
|
writable: !0
|
|
1563
1565
|
});
|
|
1564
1566
|
return;
|
|
1565
|
-
} catch (
|
|
1567
|
+
} catch (g) {
|
|
1566
1568
|
}
|
|
1567
1569
|
this._cleanupClosedWindows();
|
|
1568
1570
|
var S = this.keys, l = this.values, p = ke(S, i);
|
|
@@ -1629,7 +1631,7 @@ function Rr() {
|
|
|
1629
1631
|
}
|
|
1630
1632
|
return e.__name__ = e.displayName = t, e;
|
|
1631
1633
|
}
|
|
1632
|
-
function
|
|
1634
|
+
function te() {
|
|
1633
1635
|
var e = "0123456789abcdef";
|
|
1634
1636
|
return "uid_" + "xxxxxxxxxx".replace(/./g, (function() {
|
|
1635
1637
|
return e.charAt(Math.floor(Math.random() * e.length));
|
|
@@ -1648,7 +1650,7 @@ function Rr() {
|
|
|
1648
1650
|
return typeof i == "function" ? "memoize[" + (function(r) {
|
|
1649
1651
|
if (Re = Re || new je(), r == null || typeof r != "object" && typeof r != "function") throw new Error("Invalid object");
|
|
1650
1652
|
var n = Re.get(r);
|
|
1651
|
-
return n || (n = typeof r + ":" +
|
|
1653
|
+
return n || (n = typeof r + ":" + te(), Re.set(r, n)), n;
|
|
1652
1654
|
})(i) + "]" : typeof window != "undefined" && i instanceof window.Element || i !== null && typeof i == "object" && i.nodeType === 1 && typeof i.style == "object" && typeof i.ownerDocument == "object" ? {} : i;
|
|
1653
1655
|
}));
|
|
1654
1656
|
} catch (t) {
|
|
@@ -1664,13 +1666,13 @@ function Rr() {
|
|
|
1664
1666
|
var i = t.thisNamespace, r = i !== void 0 && i, n = t.time, d, c, S = he;
|
|
1665
1667
|
he += 1;
|
|
1666
1668
|
var l = function() {
|
|
1667
|
-
for (var p = arguments.length,
|
|
1669
|
+
for (var p = arguments.length, g = new Array(p), h = 0; h < p; h++) g[h] = arguments[h];
|
|
1668
1670
|
S < fi && (d = null, c = null, S = he, he += 1);
|
|
1669
1671
|
var C;
|
|
1670
1672
|
C = r ? (c = c || new je()).getOrSet(this, Xi) : d = d || {};
|
|
1671
1673
|
var m;
|
|
1672
1674
|
try {
|
|
1673
|
-
m = ai(
|
|
1675
|
+
m = ai(g);
|
|
1674
1676
|
} catch (D) {
|
|
1675
1677
|
return e.apply(this, arguments);
|
|
1676
1678
|
}
|
|
@@ -1704,9 +1706,9 @@ function Rr() {
|
|
|
1704
1706
|
t = {};
|
|
1705
1707
|
}, si(i, oi(e) + "::promiseMemoized");
|
|
1706
1708
|
}
|
|
1707
|
-
function
|
|
1709
|
+
function ae() {
|
|
1708
1710
|
}
|
|
1709
|
-
function
|
|
1711
|
+
function ge(e, t) {
|
|
1710
1712
|
if (t === void 0 && (t = 1), t >= 3) return "stringifyError stack overflow";
|
|
1711
1713
|
try {
|
|
1712
1714
|
if (!e) return "<unknown error: " + {}.toString.call(e) + ">";
|
|
@@ -1720,7 +1722,7 @@ function Rr() {
|
|
|
1720
1722
|
}
|
|
1721
1723
|
return e && e.toString && typeof e.toString == "function" ? e.toString() : {}.toString.call(e);
|
|
1722
1724
|
} catch (n) {
|
|
1723
|
-
return "Error while stringifying error: " +
|
|
1725
|
+
return "Error while stringifying error: " + ge(n, t + 1);
|
|
1724
1726
|
}
|
|
1725
1727
|
}
|
|
1726
1728
|
function di(e) {
|
|
@@ -1735,7 +1737,7 @@ function Rr() {
|
|
|
1735
1737
|
function ze(e) {
|
|
1736
1738
|
return {}.toString.call(e) === "[object RegExp]";
|
|
1737
1739
|
}
|
|
1738
|
-
function
|
|
1740
|
+
function Pe(e, t, i) {
|
|
1739
1741
|
if (e.hasOwnProperty(t)) return e[t];
|
|
1740
1742
|
var r = i();
|
|
1741
1743
|
return e[t] = r, r;
|
|
@@ -1779,7 +1781,7 @@ function Rr() {
|
|
|
1779
1781
|
}
|
|
1780
1782
|
})())) return xe;
|
|
1781
1783
|
throw new Error("Can not determine current script");
|
|
1782
|
-
})), tt =
|
|
1784
|
+
})), tt = te();
|
|
1783
1785
|
Ce((function() {
|
|
1784
1786
|
var e;
|
|
1785
1787
|
try {
|
|
@@ -1801,7 +1803,7 @@ function Rr() {
|
|
|
1801
1803
|
dataset: e.dataset
|
|
1802
1804
|
}));
|
|
1803
1805
|
t = "uid_" + i.slice(i.length - 30);
|
|
1804
|
-
} else t =
|
|
1806
|
+
} else t = te();
|
|
1805
1807
|
return e.setAttribute("data-uid-auto", t), t;
|
|
1806
1808
|
}));
|
|
1807
1809
|
function me(e) {
|
|
@@ -1812,8 +1814,8 @@ function Rr() {
|
|
|
1812
1814
|
var Si = function() {
|
|
1813
1815
|
return {};
|
|
1814
1816
|
};
|
|
1815
|
-
function
|
|
1816
|
-
return e === void 0 && (e = "store"), t === void 0 && (t = Si),
|
|
1817
|
+
function q(e, t) {
|
|
1818
|
+
return e === void 0 && (e = "store"), t === void 0 && (t = Si), Pe(me(), e, (function() {
|
|
1817
1819
|
var i = t();
|
|
1818
1820
|
return {
|
|
1819
1821
|
has: function(r) {
|
|
@@ -1829,7 +1831,7 @@ function Rr() {
|
|
|
1829
1831
|
delete i[r];
|
|
1830
1832
|
},
|
|
1831
1833
|
getOrSet: function(r, n) {
|
|
1832
|
-
return
|
|
1834
|
+
return Pe(i, r, n);
|
|
1833
1835
|
},
|
|
1834
1836
|
reset: function() {
|
|
1835
1837
|
i = t();
|
|
@@ -1846,8 +1848,8 @@ function Rr() {
|
|
|
1846
1848
|
var e = me();
|
|
1847
1849
|
return e.WINDOW_WILDCARD = e.WINDOW_WILDCARD || new rt(), e.WINDOW_WILDCARD;
|
|
1848
1850
|
}
|
|
1849
|
-
function
|
|
1850
|
-
return e === void 0 && (e = "store"), t === void 0 && (t = Si),
|
|
1851
|
+
function J(e, t) {
|
|
1852
|
+
return e === void 0 && (e = "store"), t === void 0 && (t = Si), q("windowStore").getOrSet(e, (function() {
|
|
1851
1853
|
var i = new je(), r = function(n) {
|
|
1852
1854
|
return i.getOrSet(n, t);
|
|
1853
1855
|
};
|
|
@@ -1866,16 +1868,16 @@ function Rr() {
|
|
|
1866
1868
|
delete r(n)[e];
|
|
1867
1869
|
},
|
|
1868
1870
|
getOrSet: function(n, d) {
|
|
1869
|
-
return
|
|
1871
|
+
return Pe(r(n), e, d);
|
|
1870
1872
|
}
|
|
1871
1873
|
};
|
|
1872
1874
|
}));
|
|
1873
1875
|
}
|
|
1874
1876
|
function ui() {
|
|
1875
|
-
return
|
|
1877
|
+
return q("instance").getOrSet("instanceID", te);
|
|
1876
1878
|
}
|
|
1877
1879
|
function hi(e, t) {
|
|
1878
|
-
var i = t.domain, r =
|
|
1880
|
+
var i = t.domain, r = J("helloPromises"), n = r.get(e);
|
|
1879
1881
|
n && n.resolve({
|
|
1880
1882
|
domain: i
|
|
1881
1883
|
});
|
|
@@ -1903,7 +1905,7 @@ function Rr() {
|
|
|
1903
1905
|
}
|
|
1904
1906
|
function Ci(e, t) {
|
|
1905
1907
|
var i = t.send;
|
|
1906
|
-
return
|
|
1908
|
+
return J("windowInstanceIDPromises").getOrSet(e, (function() {
|
|
1907
1909
|
return Ue(e, {
|
|
1908
1910
|
send: i
|
|
1909
1911
|
}).then((function(r) {
|
|
@@ -1911,75 +1913,75 @@ function Rr() {
|
|
|
1911
1913
|
}));
|
|
1912
1914
|
}));
|
|
1913
1915
|
}
|
|
1914
|
-
function
|
|
1915
|
-
|
|
1916
|
+
function gi(e) {
|
|
1917
|
+
J("knownWindows").set(e, !0);
|
|
1916
1918
|
}
|
|
1917
1919
|
function qe(e) {
|
|
1918
1920
|
return typeof e == "object" && e !== null && typeof e.__type__ == "string";
|
|
1919
1921
|
}
|
|
1920
|
-
function
|
|
1922
|
+
function Pi(e) {
|
|
1921
1923
|
return e === void 0 ? "undefined" : e === null ? "null" : Array.isArray(e) ? "array" : typeof e == "function" ? "function" : typeof e == "object" ? e instanceof Error ? "error" : typeof e.then == "function" ? "promise" : {}.toString.call(e) === "[object RegExp]" ? "regex" : {}.toString.call(e) === "[object Date]" ? "date" : "object" : typeof e == "string" ? "string" : typeof e == "number" ? "number" : typeof e == "boolean" ? "boolean" : void 0;
|
|
1922
1924
|
}
|
|
1923
|
-
function
|
|
1925
|
+
function fe(e, t) {
|
|
1924
1926
|
return {
|
|
1925
1927
|
__type__: e,
|
|
1926
1928
|
__val__: t
|
|
1927
1929
|
};
|
|
1928
1930
|
}
|
|
1929
|
-
var
|
|
1930
|
-
},
|
|
1931
|
-
return
|
|
1931
|
+
var Q, nt = ((Q = {}).function = function() {
|
|
1932
|
+
}, Q.error = function(e) {
|
|
1933
|
+
return fe("error", {
|
|
1932
1934
|
message: e.message,
|
|
1933
1935
|
stack: e.stack,
|
|
1934
1936
|
code: e.code,
|
|
1935
1937
|
data: e.data
|
|
1936
1938
|
});
|
|
1937
|
-
},
|
|
1938
|
-
},
|
|
1939
|
-
return
|
|
1940
|
-
},
|
|
1941
|
-
return
|
|
1942
|
-
},
|
|
1939
|
+
}, Q.promise = function() {
|
|
1940
|
+
}, Q.regex = function(e) {
|
|
1941
|
+
return fe("regex", e.source);
|
|
1942
|
+
}, Q.date = function(e) {
|
|
1943
|
+
return fe("date", e.toJSON());
|
|
1944
|
+
}, Q.array = function(e) {
|
|
1943
1945
|
return e;
|
|
1944
|
-
},
|
|
1946
|
+
}, Q.object = function(e) {
|
|
1945
1947
|
return e;
|
|
1946
|
-
},
|
|
1948
|
+
}, Q.string = function(e) {
|
|
1947
1949
|
return e;
|
|
1948
|
-
},
|
|
1950
|
+
}, Q.number = function(e) {
|
|
1949
1951
|
return e;
|
|
1950
|
-
},
|
|
1952
|
+
}, Q.boolean = function(e) {
|
|
1951
1953
|
return e;
|
|
1952
|
-
},
|
|
1954
|
+
}, Q.null = function(e) {
|
|
1953
1955
|
return e;
|
|
1954
|
-
},
|
|
1955
|
-
return
|
|
1956
|
-
},
|
|
1956
|
+
}, Q[void 0] = function(e) {
|
|
1957
|
+
return fe("undefined", e);
|
|
1958
|
+
}, Q), ot = {}, Z, st = ((Z = {}).function = function() {
|
|
1957
1959
|
throw new Error("Function serialization is not implemented; nothing to deserialize");
|
|
1958
|
-
},
|
|
1960
|
+
}, Z.error = function(e) {
|
|
1959
1961
|
var t = e.stack, i = e.code, r = e.data, n = new Error(e.message);
|
|
1960
1962
|
return n.code = i, r && (n.data = r), n.stack = t + `
|
|
1961
1963
|
|
|
1962
1964
|
` + n.stack, n;
|
|
1963
|
-
},
|
|
1965
|
+
}, Z.promise = function() {
|
|
1964
1966
|
throw new Error("Promise serialization is not implemented; nothing to deserialize");
|
|
1965
|
-
},
|
|
1967
|
+
}, Z.regex = function(e) {
|
|
1966
1968
|
return new RegExp(e);
|
|
1967
|
-
},
|
|
1969
|
+
}, Z.date = function(e) {
|
|
1968
1970
|
return new Date(e);
|
|
1969
|
-
},
|
|
1971
|
+
}, Z.array = function(e) {
|
|
1970
1972
|
return e;
|
|
1971
|
-
},
|
|
1973
|
+
}, Z.object = function(e) {
|
|
1972
1974
|
return e;
|
|
1973
|
-
},
|
|
1975
|
+
}, Z.string = function(e) {
|
|
1974
1976
|
return e;
|
|
1975
|
-
},
|
|
1977
|
+
}, Z.number = function(e) {
|
|
1976
1978
|
return e;
|
|
1977
|
-
},
|
|
1979
|
+
}, Z.boolean = function(e) {
|
|
1978
1980
|
return e;
|
|
1979
|
-
},
|
|
1981
|
+
}, Z.null = function(e) {
|
|
1980
1982
|
return e;
|
|
1981
|
-
},
|
|
1982
|
-
},
|
|
1983
|
+
}, Z[void 0] = function() {
|
|
1984
|
+
}, Z), at = {};
|
|
1983
1985
|
new E((function(e) {
|
|
1984
1986
|
if (window.document && window.document.body) return e(window.document.body);
|
|
1985
1987
|
var t = setInterval((function() {
|
|
@@ -1988,22 +1990,22 @@ function Rr() {
|
|
|
1988
1990
|
}), 10);
|
|
1989
1991
|
}));
|
|
1990
1992
|
function Fe() {
|
|
1991
|
-
for (var e =
|
|
1993
|
+
for (var e = q("idToProxyWindow"), t = 0, i = e.keys(); t < i.length; t++) {
|
|
1992
1994
|
var r = i[t];
|
|
1993
1995
|
e.get(r).shouldClean() && e.del(r);
|
|
1994
1996
|
}
|
|
1995
1997
|
}
|
|
1996
1998
|
function mi(e, t) {
|
|
1997
|
-
var i = t.send, r = t.id, n = r === void 0 ?
|
|
1998
|
-
if (
|
|
1999
|
+
var i = t.send, r = t.id, n = r === void 0 ? te() : r, d = e.then((function(l) {
|
|
2000
|
+
if (H(l)) return ie(l).name;
|
|
1999
2001
|
})), c = e.then((function(l) {
|
|
2000
|
-
if (
|
|
2001
|
-
return
|
|
2002
|
+
if (U(l)) throw new Error("Window is closed, can not determine type");
|
|
2003
|
+
return O(l) ? "popup" : "iframe";
|
|
2002
2004
|
}));
|
|
2003
|
-
d.catch(
|
|
2005
|
+
d.catch(ae), c.catch(ae);
|
|
2004
2006
|
var S = function() {
|
|
2005
2007
|
return e.then((function(l) {
|
|
2006
|
-
if (!
|
|
2008
|
+
if (!U(l)) return H(l) ? ie(l).name : d;
|
|
2007
2009
|
}));
|
|
2008
2010
|
};
|
|
2009
2011
|
return {
|
|
@@ -2029,21 +2031,21 @@ function Rr() {
|
|
|
2029
2031
|
},
|
|
2030
2032
|
isClosed: function() {
|
|
2031
2033
|
return e.then((function(l) {
|
|
2032
|
-
return
|
|
2034
|
+
return U(l);
|
|
2033
2035
|
}));
|
|
2034
2036
|
},
|
|
2035
2037
|
setLocation: function(l, p) {
|
|
2036
|
-
return p === void 0 && (p = {}), e.then((function(
|
|
2038
|
+
return p === void 0 && (p = {}), e.then((function(g) {
|
|
2037
2039
|
var h = window.location.protocol + "//" + window.location.host, C = p.method, m = C === void 0 ? "get" : C, w = p.body;
|
|
2038
2040
|
if (l.indexOf("/") === 0) l = "" + h + l;
|
|
2039
2041
|
else if (!l.match(/^https?:\/\//) && l.indexOf(h) !== 0) throw new Error("Expected url to be http or https url, or absolute path, got " + JSON.stringify(l));
|
|
2040
2042
|
if (m === "post") return S().then((function(v) {
|
|
2041
2043
|
if (!v) throw new Error("Can not post to window without target name");
|
|
2042
2044
|
(function(b) {
|
|
2043
|
-
var D = b.url,
|
|
2044
|
-
if (k.setAttribute("target",
|
|
2045
|
-
var
|
|
2046
|
-
Ye.setAttribute("name", $e), Ye.setAttribute("value", (
|
|
2045
|
+
var D = b.url, j = b.target, L = b.body, A = b.method, F = A === void 0 ? "post" : A, k = document.createElement("form");
|
|
2046
|
+
if (k.setAttribute("target", j), k.setAttribute("method", F), k.setAttribute("action", D), k.style.display = "none", L) for (var _ = 0, ee = Object.keys(L); _ < ee.length; _++) {
|
|
2047
|
+
var B, $e = ee[_], Ye = document.createElement("input");
|
|
2048
|
+
Ye.setAttribute("name", $e), Ye.setAttribute("value", (B = L[$e]) == null ? void 0 : B.toString()), k.appendChild(Ye);
|
|
2047
2049
|
}
|
|
2048
2050
|
ci().appendChild(k), k.submit(), ci().removeChild(k);
|
|
2049
2051
|
})({
|
|
@@ -2054,31 +2056,31 @@ function Rr() {
|
|
|
2054
2056
|
});
|
|
2055
2057
|
}));
|
|
2056
2058
|
if (m !== "get") throw new Error("Unsupported method: " + m);
|
|
2057
|
-
if (
|
|
2058
|
-
if (
|
|
2059
|
-
|
|
2059
|
+
if (H(g)) try {
|
|
2060
|
+
if (g.location && typeof g.location.replace == "function") {
|
|
2061
|
+
g.location.replace(l);
|
|
2060
2062
|
return;
|
|
2061
2063
|
}
|
|
2062
2064
|
} catch (v) {
|
|
2063
2065
|
}
|
|
2064
|
-
|
|
2066
|
+
g.location = l;
|
|
2065
2067
|
}));
|
|
2066
2068
|
},
|
|
2067
2069
|
setName: function(l) {
|
|
2068
2070
|
return e.then((function(p) {
|
|
2069
|
-
var
|
|
2070
|
-
if (!
|
|
2071
|
-
|
|
2071
|
+
var g = H(p), h = ti(p);
|
|
2072
|
+
if (!g) throw new Error("Can not set name for cross-domain window: " + l);
|
|
2073
|
+
ie(p).name = l, h && h.setAttribute("name", l), d = E.resolve(l);
|
|
2072
2074
|
}));
|
|
2073
2075
|
}
|
|
2074
2076
|
};
|
|
2075
2077
|
}
|
|
2076
|
-
var
|
|
2078
|
+
var X = (function() {
|
|
2077
2079
|
function e(i) {
|
|
2078
2080
|
var r = i.send, n = i.win, d = i.serializedWindow;
|
|
2079
2081
|
this.id = void 0, this.isProxyWindow = !0, this.serializedWindow = void 0, this.actualWindow = void 0, this.actualWindowPromise = void 0, this.send = void 0, this.name = void 0, this.actualWindowPromise = new E(), this.serializedWindow = d || mi(this.actualWindowPromise, {
|
|
2080
2082
|
send: r
|
|
2081
|
-
}),
|
|
2083
|
+
}), q("idToProxyWindow").set(this.getID(), this), n && this.setWindow(n, {
|
|
2082
2084
|
send: r
|
|
2083
2085
|
});
|
|
2084
2086
|
}
|
|
@@ -2128,7 +2130,7 @@ function Rr() {
|
|
|
2128
2130
|
this.actualWindow = i, this.actualWindowPromise.resolve(this.actualWindow), this.serializedWindow = mi(this.actualWindowPromise, {
|
|
2129
2131
|
send: n,
|
|
2130
2132
|
id: this.getID()
|
|
2131
|
-
}),
|
|
2133
|
+
}), J("winToProxyWindow").set(i, this);
|
|
2132
2134
|
}, t.awaitWindow = function() {
|
|
2133
2135
|
return this.actualWindowPromise;
|
|
2134
2136
|
}, t.matchWindow = function(i, r) {
|
|
@@ -2151,7 +2153,7 @@ function Rr() {
|
|
|
2151
2153
|
}, t.getInstanceID = function() {
|
|
2152
2154
|
return this.serializedWindow.getInstanceID();
|
|
2153
2155
|
}, t.shouldClean = function() {
|
|
2154
|
-
return !!(this.actualWindow &&
|
|
2156
|
+
return !!(this.actualWindow && U(this.actualWindow));
|
|
2155
2157
|
}, t.serialize = function() {
|
|
2156
2158
|
return this.serializedWindow;
|
|
2157
2159
|
}, e.unwrap = function(i) {
|
|
@@ -2163,7 +2165,7 @@ function Rr() {
|
|
|
2163
2165
|
}).serialize();
|
|
2164
2166
|
}, e.deserialize = function(i, r) {
|
|
2165
2167
|
var n = r.send;
|
|
2166
|
-
return Fe(),
|
|
2168
|
+
return Fe(), q("idToProxyWindow").get(i.id) || new e({
|
|
2167
2169
|
serializedWindow: i,
|
|
2168
2170
|
send: n
|
|
2169
2171
|
});
|
|
@@ -2173,15 +2175,15 @@ function Rr() {
|
|
|
2173
2175
|
var n = r.send;
|
|
2174
2176
|
if (Fe(), e.isProxyWindow(i)) return i;
|
|
2175
2177
|
var d = i;
|
|
2176
|
-
return
|
|
2178
|
+
return J("winToProxyWindow").get(d) || new e({
|
|
2177
2179
|
win: d,
|
|
2178
2180
|
send: n
|
|
2179
2181
|
});
|
|
2180
2182
|
}, e;
|
|
2181
2183
|
})();
|
|
2182
2184
|
function He(e, t, i, r, n) {
|
|
2183
|
-
var d =
|
|
2184
|
-
|
|
2185
|
+
var d = J("methodStore"), c = q("proxyWindowMethods");
|
|
2186
|
+
X.isProxyWindow(r) ? c.set(e, {
|
|
2185
2187
|
val: t,
|
|
2186
2188
|
name: i,
|
|
2187
2189
|
domain: n,
|
|
@@ -2196,7 +2198,7 @@ function Rr() {
|
|
|
2196
2198
|
});
|
|
2197
2199
|
}
|
|
2198
2200
|
function $i(e, t) {
|
|
2199
|
-
var i =
|
|
2201
|
+
var i = J("methodStore"), r = q("proxyWindowMethods");
|
|
2200
2202
|
return i.getOrSet(e, (function() {
|
|
2201
2203
|
return {};
|
|
2202
2204
|
}))[t] || r.get(t);
|
|
@@ -2205,19 +2207,19 @@ function Rr() {
|
|
|
2205
2207
|
c = (d = {
|
|
2206
2208
|
on: n.on,
|
|
2207
2209
|
send: n.send
|
|
2208
|
-
}).on, S = d.send,
|
|
2210
|
+
}).on, S = d.send, q("builtinListeners").getOrSet("functionCalls", (function() {
|
|
2209
2211
|
return c("postrobot_method", {
|
|
2210
2212
|
domain: "*"
|
|
2211
|
-
}, (function(
|
|
2212
|
-
var h =
|
|
2213
|
-
if (!b) throw new Error("Could not find method '" + v + "' with id: " + m.id + " in " +
|
|
2214
|
-
var D = b.source,
|
|
2213
|
+
}, (function(g) {
|
|
2214
|
+
var h = g.source, C = g.origin, m = g.data, w = m.id, v = m.name, b = $i(h, w);
|
|
2215
|
+
if (!b) throw new Error("Could not find method '" + v + "' with id: " + m.id + " in " + W(window));
|
|
2216
|
+
var D = b.source, j = b.domain, L = b.val;
|
|
2215
2217
|
return E.try((function() {
|
|
2216
|
-
if (!
|
|
2217
|
-
if (
|
|
2218
|
+
if (!V(j, C)) throw new Error("Method '" + m.name + "' domain " + JSON.stringify(ze(b.domain) ? b.domain.source : b.domain) + " does not match origin " + C + " in " + W(window));
|
|
2219
|
+
if (X.isProxyWindow(D)) return D.matchWindow(h, {
|
|
2218
2220
|
send: S
|
|
2219
2221
|
}).then((function(A) {
|
|
2220
|
-
if (!A) throw new Error("Method call '" + m.name + "' failed - proxy window does not match source in " +
|
|
2222
|
+
if (!A) throw new Error("Method call '" + m.name + "' failed - proxy window does not match source in " + W(window));
|
|
2221
2223
|
}));
|
|
2222
2224
|
})).then((function() {
|
|
2223
2225
|
return L.apply({
|
|
@@ -2228,8 +2230,8 @@ function Rr() {
|
|
|
2228
2230
|
return E.try((function() {
|
|
2229
2231
|
if (L.onError) return L.onError(A);
|
|
2230
2232
|
})).then((function() {
|
|
2231
|
-
throw A.stack && (A.stack = "Remote call to " + v + "(" + (function(
|
|
2232
|
-
return
|
|
2233
|
+
throw A.stack && (A.stack = "Remote call to " + v + "(" + (function(F) {
|
|
2234
|
+
return F === void 0 && (F = []), (k = F, [].slice.call(k)).map((function(_) {
|
|
2233
2235
|
return typeof _ == "string" ? "'" + _ + "'" : _ === void 0 ? "undefined" : _ === null ? "null" : typeof _ == "boolean" ? _.toString() : Array.isArray(_) ? "[ ... ]" : typeof _ == "object" ? "{ ... }" : typeof _ == "function" ? "() => { ... }" : "<" + typeof _ + ">";
|
|
2234
2236
|
})).join(", ");
|
|
2235
2237
|
var k;
|
|
@@ -2246,12 +2248,12 @@ function Rr() {
|
|
|
2246
2248
|
}));
|
|
2247
2249
|
}));
|
|
2248
2250
|
}));
|
|
2249
|
-
var d, c, S, l = i.__id__ ||
|
|
2250
|
-
e =
|
|
2251
|
+
var d, c, S, l = i.__id__ || te();
|
|
2252
|
+
e = X.unwrap(e);
|
|
2251
2253
|
var p = i.__name__ || i.name || r;
|
|
2252
|
-
return typeof p == "string" && typeof p.indexOf == "function" && p.indexOf("anonymous::") === 0 && (p = p.replace("anonymous::", r + "::")),
|
|
2253
|
-
He(l, i, p,
|
|
2254
|
-
}))) : He(l, i, p, e, t),
|
|
2254
|
+
return typeof p == "string" && typeof p.indexOf == "function" && p.indexOf("anonymous::") === 0 && (p = p.replace("anonymous::", r + "::")), X.isProxyWindow(e) ? (He(l, i, p, e, t), e.awaitWindow().then((function(g) {
|
|
2255
|
+
He(l, i, p, g, t);
|
|
2256
|
+
}))) : He(l, i, p, e, t), fe("cross_domain_function", {
|
|
2255
2257
|
id: l,
|
|
2256
2258
|
name: p
|
|
2257
2259
|
});
|
|
@@ -2260,19 +2262,19 @@ function Rr() {
|
|
|
2260
2262
|
var n, d = r.on, c = r.send;
|
|
2261
2263
|
return (function(S, l) {
|
|
2262
2264
|
l === void 0 && (l = ot);
|
|
2263
|
-
var p = JSON.stringify(S, (function(
|
|
2264
|
-
var h = this[
|
|
2265
|
+
var p = JSON.stringify(S, (function(g) {
|
|
2266
|
+
var h = this[g];
|
|
2265
2267
|
if (qe(this)) return h;
|
|
2266
|
-
var C =
|
|
2268
|
+
var C = Pi(h);
|
|
2267
2269
|
if (!C) return h;
|
|
2268
2270
|
var m = l[C] || nt[C];
|
|
2269
|
-
return m ? m(h,
|
|
2271
|
+
return m ? m(h, g) : h;
|
|
2270
2272
|
}));
|
|
2271
2273
|
return p === void 0 ? "undefined" : p;
|
|
2272
2274
|
})(i, ((n = {}).promise = function(S, l) {
|
|
2273
|
-
return (function(p,
|
|
2274
|
-
return
|
|
2275
|
-
then: yi(p,
|
|
2275
|
+
return (function(p, g, h, C, m) {
|
|
2276
|
+
return fe("cross_domain_zalgo_promise", {
|
|
2277
|
+
then: yi(p, g, (function(w, v) {
|
|
2276
2278
|
return h.then(w, v);
|
|
2277
2279
|
}), C, {
|
|
2278
2280
|
on: m.on,
|
|
@@ -2289,7 +2291,7 @@ function Rr() {
|
|
|
2289
2291
|
send: c
|
|
2290
2292
|
});
|
|
2291
2293
|
}, n.object = function(S) {
|
|
2292
|
-
return Te(S) ||
|
|
2294
|
+
return Te(S) || X.isProxyWindow(S) ? fe("cross_domain_window", X.serialize(S, {
|
|
2293
2295
|
send: c
|
|
2294
2296
|
})) : S;
|
|
2295
2297
|
}, n));
|
|
@@ -2299,9 +2301,9 @@ function Rr() {
|
|
|
2299
2301
|
return (function(c, S) {
|
|
2300
2302
|
if (S === void 0 && (S = at), c !== "undefined") return JSON.parse(c, (function(l, p) {
|
|
2301
2303
|
if (qe(this)) return p;
|
|
2302
|
-
var
|
|
2303
|
-
if (qe(p) ? (
|
|
2304
|
-
var C = S[
|
|
2304
|
+
var g, h;
|
|
2305
|
+
if (qe(p) ? (g = p.__type__, h = p.__val__) : (g = Pi(p), h = p), !g) return h;
|
|
2306
|
+
var C = S[g] || st[g];
|
|
2305
2307
|
return C ? C(h, l) : h;
|
|
2306
2308
|
}));
|
|
2307
2309
|
})(i, ((n = {}).cross_domain_zalgo_promise = function(c) {
|
|
@@ -2309,31 +2311,31 @@ function Rr() {
|
|
|
2309
2311
|
return new E(p.then);
|
|
2310
2312
|
})(0, 0, c);
|
|
2311
2313
|
}, n.cross_domain_function = function(c) {
|
|
2312
|
-
return (function(S, l, p,
|
|
2313
|
-
var h = p.id, C = p.name, m =
|
|
2314
|
+
return (function(S, l, p, g) {
|
|
2315
|
+
var h = p.id, C = p.name, m = g.send, w = function(b) {
|
|
2314
2316
|
b === void 0 && (b = {});
|
|
2315
2317
|
function D() {
|
|
2316
|
-
var
|
|
2317
|
-
return
|
|
2318
|
+
var j = arguments;
|
|
2319
|
+
return X.toProxyWindow(S, {
|
|
2318
2320
|
send: m
|
|
2319
2321
|
}).awaitWindow().then((function(L) {
|
|
2320
2322
|
var A = $i(L, h);
|
|
2321
2323
|
if (A && A.val !== D) return A.val.apply({
|
|
2322
2324
|
source: window,
|
|
2323
|
-
origin:
|
|
2324
|
-
},
|
|
2325
|
-
var
|
|
2325
|
+
origin: W()
|
|
2326
|
+
}, j);
|
|
2327
|
+
var F = [].slice.call(j);
|
|
2326
2328
|
return b.fireAndForget ? m(L, "postrobot_method", {
|
|
2327
2329
|
id: h,
|
|
2328
2330
|
name: C,
|
|
2329
|
-
args:
|
|
2331
|
+
args: F
|
|
2330
2332
|
}, {
|
|
2331
2333
|
domain: l,
|
|
2332
2334
|
fireAndForget: !0
|
|
2333
2335
|
}) : m(L, "postrobot_method", {
|
|
2334
2336
|
id: h,
|
|
2335
2337
|
name: C,
|
|
2336
|
-
args:
|
|
2338
|
+
args: F
|
|
2337
2339
|
}, {
|
|
2338
2340
|
domain: l,
|
|
2339
2341
|
fireAndForget: !1
|
|
@@ -2353,7 +2355,7 @@ function Rr() {
|
|
|
2353
2355
|
send: d
|
|
2354
2356
|
});
|
|
2355
2357
|
}, n.cross_domain_window = function(c) {
|
|
2356
|
-
return
|
|
2358
|
+
return X.deserialize(c, {
|
|
2357
2359
|
send: d
|
|
2358
2360
|
});
|
|
2359
2361
|
}, n));
|
|
@@ -2365,47 +2367,47 @@ function Rr() {
|
|
|
2365
2367
|
function Ve(e, t, i, r) {
|
|
2366
2368
|
var n = r.on, d = r.send;
|
|
2367
2369
|
return E.try((function() {
|
|
2368
|
-
var c =
|
|
2370
|
+
var c = J().getOrSet(e, (function() {
|
|
2369
2371
|
return {};
|
|
2370
2372
|
}));
|
|
2371
2373
|
return c.buffer = c.buffer || [], c.buffer.push(i), c.flush = c.flush || E.flush().then((function() {
|
|
2372
|
-
if (
|
|
2374
|
+
if (U(e)) throw new Error("Window is closed");
|
|
2373
2375
|
var S = vi(e, t, ((l = {}).__post_robot_10_0_46__ = c.buffer || [], l), {
|
|
2374
2376
|
on: n,
|
|
2375
2377
|
send: d
|
|
2376
2378
|
}), l;
|
|
2377
2379
|
delete c.buffer;
|
|
2378
|
-
for (var p = Object.keys(Ge),
|
|
2380
|
+
for (var p = Object.keys(Ge), g = [], h = 0; h < p.length; h++) {
|
|
2379
2381
|
var C = p[h];
|
|
2380
2382
|
try {
|
|
2381
2383
|
Ge[C](e, S, t);
|
|
2382
2384
|
} catch (m) {
|
|
2383
|
-
|
|
2385
|
+
g.push(m);
|
|
2384
2386
|
}
|
|
2385
2387
|
}
|
|
2386
|
-
if (
|
|
2388
|
+
if (g.length === p.length) throw new Error(`All post-robot messaging strategies failed:
|
|
2387
2389
|
|
|
2388
|
-
` +
|
|
2389
|
-
return w + ". " +
|
|
2390
|
+
` + g.map((function(m, w) {
|
|
2391
|
+
return w + ". " + ge(m);
|
|
2390
2392
|
})).join(`
|
|
2391
2393
|
|
|
2392
2394
|
`));
|
|
2393
2395
|
})), c.flush.then((function() {
|
|
2394
2396
|
delete c.flush;
|
|
2395
2397
|
}));
|
|
2396
|
-
})).then(
|
|
2398
|
+
})).then(ae);
|
|
2397
2399
|
}
|
|
2398
2400
|
function wi(e) {
|
|
2399
|
-
return
|
|
2401
|
+
return q("responseListeners").get(e);
|
|
2400
2402
|
}
|
|
2401
2403
|
function Ii(e) {
|
|
2402
|
-
|
|
2404
|
+
q("responseListeners").del(e);
|
|
2403
2405
|
}
|
|
2404
2406
|
function Ti(e) {
|
|
2405
|
-
return
|
|
2407
|
+
return q("erroredResponseListeners").has(e);
|
|
2406
2408
|
}
|
|
2407
2409
|
function ki(e) {
|
|
2408
|
-
var t = e.name, i = e.win, r = e.domain, n =
|
|
2410
|
+
var t = e.name, i = e.win, r = e.domain, n = J("requestListeners");
|
|
2409
2411
|
if (i === "*" && (i = null), r === "*" && (r = null), !t) throw new Error("Name required to get request listener");
|
|
2410
2412
|
for (var d = 0, c = [i, Ee()]; d < c.length; d++) {
|
|
2411
2413
|
var S = c[d];
|
|
@@ -2416,9 +2418,9 @@ function Rr() {
|
|
|
2416
2418
|
if (p) {
|
|
2417
2419
|
if (r && typeof r == "string") {
|
|
2418
2420
|
if (p[r]) return p[r];
|
|
2419
|
-
if (p.__domain_regex__) for (var
|
|
2420
|
-
var C = h[
|
|
2421
|
-
if (
|
|
2421
|
+
if (p.__domain_regex__) for (var g = 0, h = p.__domain_regex__; g < h.length; g++) {
|
|
2422
|
+
var C = h[g], m = C.listener;
|
|
2423
|
+
if (V(C.regex, r)) return m;
|
|
2422
2424
|
}
|
|
2423
2425
|
}
|
|
2424
2426
|
if (p["*"]) return p["*"];
|
|
@@ -2433,34 +2435,34 @@ function Rr() {
|
|
|
2433
2435
|
win: e,
|
|
2434
2436
|
domain: t
|
|
2435
2437
|
}), S = i.name === "postrobot_method" && i.data && typeof i.data.name == "string" ? i.data.name + "()" : i.name;
|
|
2436
|
-
function l(p,
|
|
2438
|
+
function l(p, g, h) {
|
|
2437
2439
|
return E.flush().then((function() {
|
|
2438
|
-
if (!i.fireAndForget && !
|
|
2440
|
+
if (!i.fireAndForget && !U(e)) try {
|
|
2439
2441
|
return Ve(e, t, {
|
|
2440
|
-
id:
|
|
2441
|
-
origin:
|
|
2442
|
+
id: te(),
|
|
2443
|
+
origin: W(window),
|
|
2442
2444
|
type: "postrobot_message_response",
|
|
2443
2445
|
hash: i.hash,
|
|
2444
2446
|
name: i.name,
|
|
2445
2447
|
ack: p,
|
|
2446
|
-
data:
|
|
2448
|
+
data: g,
|
|
2447
2449
|
error: h
|
|
2448
2450
|
}, {
|
|
2449
2451
|
on: n,
|
|
2450
2452
|
send: d
|
|
2451
2453
|
});
|
|
2452
2454
|
} catch (C) {
|
|
2453
|
-
throw new Error("Send response message failed for " + S + " in " +
|
|
2455
|
+
throw new Error("Send response message failed for " + S + " in " + W() + `
|
|
2454
2456
|
|
|
2455
|
-
` +
|
|
2457
|
+
` + ge(C));
|
|
2456
2458
|
}
|
|
2457
2459
|
}));
|
|
2458
2460
|
}
|
|
2459
2461
|
return E.all([E.flush().then((function() {
|
|
2460
|
-
if (!i.fireAndForget && !
|
|
2462
|
+
if (!i.fireAndForget && !U(e)) try {
|
|
2461
2463
|
return Ve(e, t, {
|
|
2462
|
-
id:
|
|
2463
|
-
origin:
|
|
2464
|
+
id: te(),
|
|
2465
|
+
origin: W(window),
|
|
2464
2466
|
type: "postrobot_message_ack",
|
|
2465
2467
|
hash: i.hash,
|
|
2466
2468
|
name: i.name
|
|
@@ -2469,9 +2471,9 @@ function Rr() {
|
|
|
2469
2471
|
send: d
|
|
2470
2472
|
});
|
|
2471
2473
|
} catch (p) {
|
|
2472
|
-
throw new Error("Send ack message failed for " + S + " in " +
|
|
2474
|
+
throw new Error("Send ack message failed for " + S + " in " + W() + `
|
|
2473
2475
|
|
|
2474
|
-
` +
|
|
2476
|
+
` + ge(p));
|
|
2475
2477
|
}
|
|
2476
2478
|
})), E.try((function() {
|
|
2477
2479
|
if (!c) throw new Error("No handler found for post message: " + i.name + " from " + t + " in " + window.location.protocol + "//" + window.location.host + window.location.pathname);
|
|
@@ -2484,7 +2486,7 @@ function Rr() {
|
|
|
2484
2486
|
return l("success", p);
|
|
2485
2487
|
}), (function(p) {
|
|
2486
2488
|
return l("error", null, p);
|
|
2487
|
-
}))]).then(
|
|
2489
|
+
}))]).then(ae).catch((function(p) {
|
|
2488
2490
|
if (c && c.handleError) return c.handleError(p);
|
|
2489
2491
|
throw p;
|
|
2490
2492
|
}));
|
|
@@ -2494,7 +2496,7 @@ function Rr() {
|
|
|
2494
2496
|
var r = wi(i.hash);
|
|
2495
2497
|
if (!r) throw new Error("No handler found for post message ack for message: " + i.name + " from " + t + " in " + window.location.protocol + "//" + window.location.host + window.location.pathname);
|
|
2496
2498
|
try {
|
|
2497
|
-
if (!
|
|
2499
|
+
if (!V(r.domain, t)) throw new Error("Ack origin " + t + " does not match domain " + r.domain.toString());
|
|
2498
2500
|
if (e !== r.win) throw new Error("Ack source does not match registered window");
|
|
2499
2501
|
} catch (n) {
|
|
2500
2502
|
r.promise.reject(n);
|
|
@@ -2506,7 +2508,7 @@ function Rr() {
|
|
|
2506
2508
|
if (!Ti(i.hash)) {
|
|
2507
2509
|
var r = wi(i.hash);
|
|
2508
2510
|
if (!r) throw new Error("No handler found for post message response for message: " + i.name + " from " + t + " in " + window.location.protocol + "//" + window.location.host + window.location.pathname);
|
|
2509
|
-
if (!
|
|
2511
|
+
if (!V(r.domain, t)) throw new Error("Response origin " + t + " does not match domain " + (n = r.domain, Array.isArray(n) ? "(" + n.join(" | ") + ")" : P(n) ? "RegExp(" + n.toString() + ")" : n.toString()));
|
|
2510
2512
|
var n;
|
|
2511
2513
|
if (e !== r.win) throw new Error("Response source does not match registered window");
|
|
2512
2514
|
Ii(i.hash), i.ack === "error" ? r.promise.reject(i.error) : i.ack === "success" && r.promise.resolve({
|
|
@@ -2517,20 +2519,20 @@ function Rr() {
|
|
|
2517
2519
|
}
|
|
2518
2520
|
}
|
|
2519
2521
|
function Ri(e, t) {
|
|
2520
|
-
var i = t.on, r = t.send, n =
|
|
2522
|
+
var i = t.on, r = t.send, n = q("receivedMessages");
|
|
2521
2523
|
try {
|
|
2522
2524
|
if (!window || window.closed || !e.source) return;
|
|
2523
|
-
} catch (
|
|
2525
|
+
} catch (g) {
|
|
2524
2526
|
return;
|
|
2525
2527
|
}
|
|
2526
|
-
var d = e.source, c = e.origin, S = (function(
|
|
2528
|
+
var d = e.source, c = e.origin, S = (function(g, h, C, m) {
|
|
2527
2529
|
var w = m.on, v = m.send, b;
|
|
2528
2530
|
try {
|
|
2529
|
-
b = bi(h, C,
|
|
2531
|
+
b = bi(h, C, g, {
|
|
2530
2532
|
on: w,
|
|
2531
2533
|
send: v
|
|
2532
2534
|
});
|
|
2533
|
-
} catch (
|
|
2535
|
+
} catch (j) {
|
|
2534
2536
|
return;
|
|
2535
2537
|
}
|
|
2536
2538
|
if (b && typeof b == "object" && b !== null) {
|
|
@@ -2542,43 +2544,43 @@ function Rr() {
|
|
|
2542
2544
|
send: r
|
|
2543
2545
|
});
|
|
2544
2546
|
if (S) {
|
|
2545
|
-
|
|
2547
|
+
gi(d);
|
|
2546
2548
|
for (var l = 0; l < S.length; l++) {
|
|
2547
2549
|
var p = S[l];
|
|
2548
|
-
if (n.has(p.id) || (n.set(p.id, !0),
|
|
2550
|
+
if (n.has(p.id) || (n.set(p.id, !0), U(d) && !p.fireAndForget)) return;
|
|
2549
2551
|
p.origin.indexOf("file:") === 0 && (c = "file://");
|
|
2550
2552
|
try {
|
|
2551
2553
|
p.type === "postrobot_message_request" ? ft(d, c, p, {
|
|
2552
2554
|
on: i,
|
|
2553
2555
|
send: r
|
|
2554
2556
|
}) : p.type === "postrobot_message_response" ? ct(d, c, p) : p.type === "postrobot_message_ack" && dt(d, c, p);
|
|
2555
|
-
} catch (
|
|
2557
|
+
} catch (g) {
|
|
2556
2558
|
setTimeout((function() {
|
|
2557
|
-
throw
|
|
2559
|
+
throw g;
|
|
2558
2560
|
}), 0);
|
|
2559
2561
|
}
|
|
2560
2562
|
}
|
|
2561
2563
|
}
|
|
2562
2564
|
}
|
|
2563
|
-
function
|
|
2565
|
+
function de(e, t, i) {
|
|
2564
2566
|
if (!e) throw new Error("Expected name");
|
|
2565
2567
|
if (typeof (t = t || {}) == "function" && (i = t, t = {}), !i) throw new Error("Expected handler");
|
|
2566
2568
|
var r = (function n(d, c) {
|
|
2567
|
-
var S = d.name, l = d.win, p = d.domain,
|
|
2569
|
+
var S = d.name, l = d.win, p = d.domain, g = J("requestListeners");
|
|
2568
2570
|
if (!S || typeof S != "string") throw new Error("Name required to add request listener");
|
|
2569
|
-
if (l && l !== "*" &&
|
|
2570
|
-
var h = l.awaitWindow().then((function(
|
|
2571
|
+
if (l && l !== "*" && X.isProxyWindow(l)) {
|
|
2572
|
+
var h = l.awaitWindow().then((function(B) {
|
|
2571
2573
|
return n({
|
|
2572
2574
|
name: S,
|
|
2573
|
-
win:
|
|
2575
|
+
win: B,
|
|
2574
2576
|
domain: p
|
|
2575
2577
|
}, c);
|
|
2576
2578
|
}));
|
|
2577
2579
|
return {
|
|
2578
2580
|
cancel: function() {
|
|
2579
|
-
h.then((function(
|
|
2580
|
-
return
|
|
2581
|
-
}),
|
|
2581
|
+
h.then((function(B) {
|
|
2582
|
+
return B.cancel();
|
|
2583
|
+
}), ae);
|
|
2582
2584
|
}
|
|
2583
2585
|
};
|
|
2584
2586
|
}
|
|
@@ -2591,19 +2593,19 @@ function Rr() {
|
|
|
2591
2593
|
}, c));
|
|
2592
2594
|
return {
|
|
2593
2595
|
cancel: function() {
|
|
2594
|
-
for (var
|
|
2596
|
+
for (var B = 0; B < m.length; B++) m[B].cancel();
|
|
2595
2597
|
}
|
|
2596
2598
|
};
|
|
2597
2599
|
}
|
|
2598
2600
|
if (Array.isArray(p)) {
|
|
2599
|
-
for (var b = [], D = 0,
|
|
2601
|
+
for (var b = [], D = 0, j = p; D < j.length; D++) b.push(n({
|
|
2600
2602
|
name: S,
|
|
2601
2603
|
win: C,
|
|
2602
|
-
domain:
|
|
2604
|
+
domain: j[D]
|
|
2603
2605
|
}, c));
|
|
2604
2606
|
return {
|
|
2605
2607
|
cancel: function() {
|
|
2606
|
-
for (var
|
|
2608
|
+
for (var B = 0; B < b.length; B++) b[B].cancel();
|
|
2607
2609
|
}
|
|
2608
2610
|
};
|
|
2609
2611
|
}
|
|
@@ -2615,19 +2617,19 @@ function Rr() {
|
|
|
2615
2617
|
C && C !== "*" || (C = Ee());
|
|
2616
2618
|
var A = (p = p || "*").toString();
|
|
2617
2619
|
if (L) throw C && p ? new Error("Request listener already exists for " + S + " on domain " + p.toString() + " for " + (C === Ee() ? "wildcard" : "specified") + " window") : C ? new Error("Request listener already exists for " + S + " for " + (C === Ee() ? "wildcard" : "specified") + " window") : p ? new Error("Request listener already exists for " + S + " on domain " + p.toString()) : new Error("Request listener already exists for " + S);
|
|
2618
|
-
var
|
|
2620
|
+
var F = g.getOrSet(C, (function() {
|
|
2619
2621
|
return {};
|
|
2620
|
-
})), k =
|
|
2622
|
+
})), k = Pe(F, S, (function() {
|
|
2621
2623
|
return {};
|
|
2622
|
-
})), _,
|
|
2623
|
-
return ze(p) ? (_ =
|
|
2624
|
+
})), _, ee;
|
|
2625
|
+
return ze(p) ? (_ = Pe(k, "__domain_regex__", (function() {
|
|
2624
2626
|
return [];
|
|
2625
|
-
}))).push(
|
|
2627
|
+
}))).push(ee = {
|
|
2626
2628
|
regex: p,
|
|
2627
2629
|
listener: c
|
|
2628
2630
|
}) : k[A] = c, {
|
|
2629
2631
|
cancel: function() {
|
|
2630
|
-
delete k[A],
|
|
2632
|
+
delete k[A], ee && (_.splice(_.indexOf(ee, 1)), _.length || delete k.__domain_regex__), Object.keys(k).length || delete F[S], C && !Object.keys(F).length && g.del(C);
|
|
2631
2633
|
}
|
|
2632
2634
|
};
|
|
2633
2635
|
})({
|
|
@@ -2651,24 +2653,24 @@ function Rr() {
|
|
|
2651
2653
|
var r = new E(), n;
|
|
2652
2654
|
return t.errorHandler = function(d) {
|
|
2653
2655
|
n.cancel(), r.reject(d);
|
|
2654
|
-
}, n =
|
|
2656
|
+
}, n = de(e, t, (function(d) {
|
|
2655
2657
|
if (n.cancel(), r.resolve(d), i) return i(d);
|
|
2656
2658
|
})), r.cancel = n.cancel, r;
|
|
2657
2659
|
}
|
|
2658
|
-
var
|
|
2660
|
+
var oe = function e(t, i, r, n) {
|
|
2659
2661
|
var d = (n = n || {}).domain || "*", c = n.timeout || -1, S = n.timeout || 5e3, l = n.fireAndForget || !1;
|
|
2660
|
-
return
|
|
2662
|
+
return X.toProxyWindow(t, {
|
|
2661
2663
|
send: e
|
|
2662
2664
|
}).awaitWindow().then((function(p) {
|
|
2663
2665
|
return E.try((function() {
|
|
2664
|
-
if ((function(
|
|
2665
|
-
if (!
|
|
2666
|
-
if (typeof C != "string" && !Array.isArray(C) && !ze(C)) throw new TypeError("Can not send " +
|
|
2667
|
-
if (
|
|
2668
|
-
})(i, p, d), (function(
|
|
2669
|
-
var C =
|
|
2670
|
-
if (C) return C ===
|
|
2671
|
-
if (h ===
|
|
2666
|
+
if ((function(g, h, C) {
|
|
2667
|
+
if (!g) throw new Error("Expected name");
|
|
2668
|
+
if (typeof C != "string" && !Array.isArray(C) && !ze(C)) throw new TypeError("Can not send " + g + ". Expected domain " + JSON.stringify(C) + " to be a string, array, or regex");
|
|
2669
|
+
if (U(h)) throw new Error("Can not send " + g + ". Target window is closed");
|
|
2670
|
+
})(i, p, d), (function(g, h) {
|
|
2671
|
+
var C = ne(h);
|
|
2672
|
+
if (C) return C === g;
|
|
2673
|
+
if (h === g || (function(v) {
|
|
2672
2674
|
v === void 0 && (v = window);
|
|
2673
2675
|
try {
|
|
2674
2676
|
if (v.top) return v.top;
|
|
@@ -2676,41 +2678,41 @@ function Rr() {
|
|
|
2676
2678
|
}
|
|
2677
2679
|
if (x(v) === v) return v;
|
|
2678
2680
|
try {
|
|
2679
|
-
if (
|
|
2681
|
+
if (ce(window, v) && window.top) return window.top;
|
|
2680
2682
|
} catch (L) {
|
|
2681
2683
|
}
|
|
2682
2684
|
try {
|
|
2683
|
-
if (
|
|
2685
|
+
if (ce(v, window) && window.top) return window.top;
|
|
2684
2686
|
} catch (L) {
|
|
2685
2687
|
}
|
|
2686
2688
|
for (var b = 0, D = (function L(A) {
|
|
2687
|
-
for (var
|
|
2688
|
-
var
|
|
2689
|
-
|
|
2690
|
-
for (var
|
|
2689
|
+
for (var F = [], k = 0, _ = K(A); k < _.length; k++) {
|
|
2690
|
+
var ee = _[k];
|
|
2691
|
+
F.push(ee);
|
|
2692
|
+
for (var B = 0, $e = L(ee); B < $e.length; B++) F.push($e[B]);
|
|
2691
2693
|
}
|
|
2692
|
-
return
|
|
2694
|
+
return F;
|
|
2693
2695
|
})(v); b < D.length; b++) {
|
|
2694
|
-
var
|
|
2696
|
+
var j = D[b];
|
|
2695
2697
|
try {
|
|
2696
|
-
if (
|
|
2698
|
+
if (j.top) return j.top;
|
|
2697
2699
|
} catch (L) {
|
|
2698
2700
|
}
|
|
2699
|
-
if (x(
|
|
2701
|
+
if (x(j) === j) return j;
|
|
2700
2702
|
}
|
|
2701
2703
|
})(h) === h) return !1;
|
|
2702
|
-
for (var m = 0, w =
|
|
2704
|
+
for (var m = 0, w = K(g); m < w.length; m++) if (w[m] === h) return !0;
|
|
2703
2705
|
return !1;
|
|
2704
|
-
})(window, p)) return (function(
|
|
2706
|
+
})(window, p)) return (function(g, h, C) {
|
|
2705
2707
|
h === void 0 && (h = 5e3), C === void 0 && (C = "Window");
|
|
2706
2708
|
var m = (function(w) {
|
|
2707
|
-
return
|
|
2709
|
+
return J("helloPromises").getOrSet(w, (function() {
|
|
2708
2710
|
return new E();
|
|
2709
2711
|
}));
|
|
2710
|
-
})(
|
|
2712
|
+
})(g);
|
|
2711
2713
|
return h !== -1 && (m = m.timeout(h, new Error(C + " did not load after " + h + "ms"))), m;
|
|
2712
2714
|
})(p, S);
|
|
2713
|
-
})).then((function(
|
|
2715
|
+
})).then((function(g) {
|
|
2714
2716
|
return (function(h, C, m, w) {
|
|
2715
2717
|
var v = w.send;
|
|
2716
2718
|
return E.try((function() {
|
|
@@ -2721,15 +2723,15 @@ function Rr() {
|
|
|
2721
2723
|
return b.domain;
|
|
2722
2724
|
}));
|
|
2723
2725
|
})).then((function(b) {
|
|
2724
|
-
if (!
|
|
2726
|
+
if (!V(C, C)) throw new Error("Domain " + di(C) + " does not match " + di(C));
|
|
2725
2727
|
return b;
|
|
2726
2728
|
}));
|
|
2727
2729
|
}));
|
|
2728
|
-
})(p, d, (
|
|
2730
|
+
})(p, d, (g === void 0 ? {} : g).domain, {
|
|
2729
2731
|
send: e
|
|
2730
2732
|
});
|
|
2731
|
-
})).then((function(
|
|
2732
|
-
var h =
|
|
2733
|
+
})).then((function(g) {
|
|
2734
|
+
var h = g, C = i === "postrobot_method" && r && typeof r.name == "string" ? r.name + "()" : i, m = new E(), w = i + "_" + te();
|
|
2733
2735
|
if (!l) {
|
|
2734
2736
|
var v = {
|
|
2735
2737
|
name: i,
|
|
@@ -2738,85 +2740,85 @@ function Rr() {
|
|
|
2738
2740
|
promise: m
|
|
2739
2741
|
};
|
|
2740
2742
|
(function(k, _) {
|
|
2741
|
-
|
|
2743
|
+
q("responseListeners").set(k, _);
|
|
2742
2744
|
})(w, v);
|
|
2743
|
-
var b =
|
|
2745
|
+
var b = J("requestPromises").getOrSet(p, (function() {
|
|
2744
2746
|
return [];
|
|
2745
2747
|
}));
|
|
2746
2748
|
b.push(m), m.catch((function() {
|
|
2747
2749
|
(function(k) {
|
|
2748
|
-
|
|
2750
|
+
q("erroredResponseListeners").set(k, !0);
|
|
2749
2751
|
})(w), Ii(w);
|
|
2750
2752
|
}));
|
|
2751
2753
|
var D = (function(k) {
|
|
2752
|
-
return
|
|
2753
|
-
})(p) ? 1e4 : 2e3,
|
|
2754
|
-
var
|
|
2755
|
-
return (function
|
|
2756
|
-
|
|
2754
|
+
return J("knownWindows").get(k, !1);
|
|
2755
|
+
})(p) ? 1e4 : 2e3, j = c, L = D, A = j, F = (function(k, _) {
|
|
2756
|
+
var ee;
|
|
2757
|
+
return (function B() {
|
|
2758
|
+
ee = setTimeout((function() {
|
|
2757
2759
|
(function() {
|
|
2758
|
-
if (
|
|
2760
|
+
if (U(p)) return m.reject(new Error("Window closed for " + i + " before " + (v.ack ? "response" : "ack")));
|
|
2759
2761
|
if (v.cancelled) return m.reject(new Error("Response listener was cancelled for " + i));
|
|
2760
|
-
L = Math.max(L - 500, 0), A !== -1 && (A = Math.max(A - 500, 0)), v.ack || L !== 0 ? A === 0 && m.reject(new Error("No response for postMessage " + C + " in " +
|
|
2761
|
-
})(),
|
|
2762
|
+
L = Math.max(L - 500, 0), A !== -1 && (A = Math.max(A - 500, 0)), v.ack || L !== 0 ? A === 0 && m.reject(new Error("No response for postMessage " + C + " in " + W() + " in " + j + "ms")) : m.reject(new Error("No ack for postMessage " + C + " in " + W() + " in " + D + "ms"));
|
|
2763
|
+
})(), B();
|
|
2762
2764
|
}), 500);
|
|
2763
2765
|
})(), {
|
|
2764
2766
|
cancel: function() {
|
|
2765
|
-
clearTimeout(
|
|
2767
|
+
clearTimeout(ee);
|
|
2766
2768
|
}
|
|
2767
2769
|
};
|
|
2768
2770
|
})();
|
|
2769
2771
|
m.finally((function() {
|
|
2770
|
-
|
|
2771
|
-
})).catch(
|
|
2772
|
+
F.cancel(), b.splice(b.indexOf(m, 1));
|
|
2773
|
+
})).catch(ae);
|
|
2772
2774
|
}
|
|
2773
2775
|
return Ve(p, h, {
|
|
2774
|
-
id:
|
|
2775
|
-
origin:
|
|
2776
|
+
id: te(),
|
|
2777
|
+
origin: W(window),
|
|
2776
2778
|
type: "postrobot_message_request",
|
|
2777
2779
|
hash: w,
|
|
2778
2780
|
name: i,
|
|
2779
2781
|
data: r,
|
|
2780
2782
|
fireAndForget: l
|
|
2781
2783
|
}, {
|
|
2782
|
-
on:
|
|
2784
|
+
on: de,
|
|
2783
2785
|
send: e
|
|
2784
2786
|
}).then((function() {
|
|
2785
2787
|
return l ? m.resolve() : m;
|
|
2786
2788
|
}), (function(k) {
|
|
2787
|
-
throw new Error("Send request message failed for " + C + " in " +
|
|
2789
|
+
throw new Error("Send request message failed for " + C + " in " + W() + `
|
|
2788
2790
|
|
|
2789
|
-
` +
|
|
2791
|
+
` + ge(k));
|
|
2790
2792
|
}));
|
|
2791
2793
|
}));
|
|
2792
2794
|
}));
|
|
2793
2795
|
};
|
|
2794
2796
|
function lt(e, t, i) {
|
|
2795
2797
|
return vi(e, t, i, {
|
|
2796
|
-
on:
|
|
2797
|
-
send:
|
|
2798
|
+
on: de,
|
|
2799
|
+
send: oe
|
|
2798
2800
|
});
|
|
2799
2801
|
}
|
|
2800
2802
|
function St(e, t, i) {
|
|
2801
2803
|
return bi(e, t, i, {
|
|
2802
|
-
send:
|
|
2804
|
+
send: oe
|
|
2803
2805
|
});
|
|
2804
2806
|
}
|
|
2805
2807
|
function ut(e) {
|
|
2806
|
-
return new
|
|
2807
|
-
send:
|
|
2808
|
+
return new X({
|
|
2809
|
+
send: oe,
|
|
2808
2810
|
win: e
|
|
2809
2811
|
});
|
|
2810
2812
|
}
|
|
2811
2813
|
function ht(e) {
|
|
2812
|
-
return
|
|
2813
|
-
send:
|
|
2814
|
+
return X.toProxyWindow(e, {
|
|
2815
|
+
send: oe
|
|
2814
2816
|
});
|
|
2815
2817
|
}
|
|
2816
2818
|
function xi() {
|
|
2817
2819
|
me().initialized || (me().initialized = !0, t = (e = {
|
|
2818
|
-
on:
|
|
2819
|
-
send:
|
|
2820
|
+
on: de,
|
|
2821
|
+
send: oe
|
|
2820
2822
|
}).on, i = e.send, (r = me()).receiveMessage = r.receiveMessage || function(n) {
|
|
2821
2823
|
return Ri(n, {
|
|
2822
2824
|
on: t,
|
|
@@ -2824,7 +2826,7 @@ function Rr() {
|
|
|
2824
2826
|
});
|
|
2825
2827
|
}, (function(n) {
|
|
2826
2828
|
var d = n.on, c = n.send;
|
|
2827
|
-
|
|
2829
|
+
q().getOrSet("postMessageListener", (function() {
|
|
2828
2830
|
return (function(S, l, p) {
|
|
2829
2831
|
return S.addEventListener("message", p), {
|
|
2830
2832
|
cancel: function() {
|
|
@@ -2833,7 +2835,7 @@ function Rr() {
|
|
|
2833
2835
|
};
|
|
2834
2836
|
})(window, 0, (function(S) {
|
|
2835
2837
|
(function(l, p) {
|
|
2836
|
-
var
|
|
2838
|
+
var g = p.on, h = p.send;
|
|
2837
2839
|
E.try((function() {
|
|
2838
2840
|
var C = l.source || l.sourceElement, m = l.origin || l.originalEvent && l.originalEvent.origin, w = l.data;
|
|
2839
2841
|
if (m === "null" && (m = "file://"), C) {
|
|
@@ -2843,7 +2845,7 @@ function Rr() {
|
|
|
2843
2845
|
origin: m,
|
|
2844
2846
|
data: w
|
|
2845
2847
|
}, {
|
|
2846
|
-
on:
|
|
2848
|
+
on: g,
|
|
2847
2849
|
send: h
|
|
2848
2850
|
});
|
|
2849
2851
|
}
|
|
@@ -2855,11 +2857,11 @@ function Rr() {
|
|
|
2855
2857
|
}));
|
|
2856
2858
|
}));
|
|
2857
2859
|
})({
|
|
2858
|
-
on:
|
|
2859
|
-
send:
|
|
2860
|
+
on: de,
|
|
2861
|
+
send: oe
|
|
2860
2862
|
}), (function(n) {
|
|
2861
2863
|
var d = n.on, c = n.send;
|
|
2862
|
-
|
|
2864
|
+
q("builtinListeners").getOrSet("helloListener", (function() {
|
|
2863
2865
|
var S = d("postrobot_hello", {
|
|
2864
2866
|
domain: "*"
|
|
2865
2867
|
}, (function(p) {
|
|
@@ -2868,31 +2870,31 @@ function Rr() {
|
|
|
2868
2870
|
}), {
|
|
2869
2871
|
instanceID: ui()
|
|
2870
2872
|
};
|
|
2871
|
-
})), l =
|
|
2873
|
+
})), l = ne();
|
|
2872
2874
|
return l && Ue(l, {
|
|
2873
2875
|
send: c
|
|
2874
2876
|
}).catch((function(p) {
|
|
2875
2877
|
})), S;
|
|
2876
2878
|
}));
|
|
2877
2879
|
})({
|
|
2878
|
-
on:
|
|
2879
|
-
send:
|
|
2880
|
+
on: de,
|
|
2881
|
+
send: oe
|
|
2880
2882
|
}));
|
|
2881
2883
|
var e, t, i, r;
|
|
2882
2884
|
}
|
|
2883
2885
|
function Ct() {
|
|
2884
2886
|
(function() {
|
|
2885
|
-
for (var t =
|
|
2887
|
+
for (var t = q("responseListeners"), i = 0, r = t.keys(); i < r.length; i++) {
|
|
2886
2888
|
var n = r[i], d = t.get(n);
|
|
2887
2889
|
d && (d.cancelled = !0), t.del(n);
|
|
2888
2890
|
}
|
|
2889
|
-
})(), (e =
|
|
2891
|
+
})(), (e = q().get("postMessageListener")) && e.cancel();
|
|
2890
2892
|
var e;
|
|
2891
2893
|
delete window.__post_robot_10_0_46__;
|
|
2892
2894
|
}
|
|
2893
|
-
var
|
|
2894
|
-
function
|
|
2895
|
-
for (var t = 0, i =
|
|
2895
|
+
var gt = !0;
|
|
2896
|
+
function Pt(e) {
|
|
2897
|
+
for (var t = 0, i = J("requestPromises").get(e, []); t < i.length; t++) i[t].reject(new Error("Window " + (U(e) ? "closed" : "cleaned up") + " before response")).catch(ae);
|
|
2896
2898
|
}
|
|
2897
2899
|
xi();
|
|
2898
2900
|
}]);
|