@eluvio/elv-player-js 2.1.19 → 2.1.20
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/dist/.vite/manifest.json +15 -15
- package/dist/{dash.all.min-DyD0Ukfn.js → dash.all.min-C1lhqYtK.js} +1 -1
- package/dist/{dash.all.min-BT21BUPx.mjs → dash.all.min-CCRLkQpy.mjs} +1 -1
- package/dist/elv-player-js.cjs.js +1 -1
- package/dist/elv-player-js.css +1 -1
- package/dist/elv-player-js.es.js +1 -1
- package/dist/{index-B6hXRwn0.mjs → index-BG5Fj54J.mjs} +1 -1
- package/dist/{index-mZTC0Ozx.mjs → index-CLhE1rpR.mjs} +517 -514
- package/dist/{index-d1_smzyi.js → index-D6eEp5cI.js} +1 -1
- package/dist/{index-Ch0cqMhO.js → index-DjBMku6v.js} +17 -17
- package/lib/player/Controls.js +10 -0
- package/lib/player/Player.js +2 -2
- package/lib/player/ThumbnailHandler.js +2 -2
- package/lib/static/stylesheets/controls-web.module.scss +11 -2
- package/lib/ui/WebControls.jsx +2 -2
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ function aq(r, e) {
|
|
|
14
14
|
}
|
|
15
15
|
return Object.freeze(Object.defineProperty(r, Symbol.toStringTag, { value: "Module" }));
|
|
16
16
|
}
|
|
17
|
-
const
|
|
17
|
+
const Gt = {
|
|
18
18
|
ui: {
|
|
19
19
|
WEB: "web",
|
|
20
20
|
TV: "tv"
|
|
@@ -127,7 +127,7 @@ const Kt = {
|
|
|
127
127
|
}
|
|
128
128
|
}, iq = {
|
|
129
129
|
clientOptions: {
|
|
130
|
-
network:
|
|
130
|
+
network: Gt.networks.MAIN,
|
|
131
131
|
client: void 0,
|
|
132
132
|
staticToken: void 0,
|
|
133
133
|
tenantId: void 0,
|
|
@@ -140,16 +140,16 @@ const Kt = {
|
|
|
140
140
|
},
|
|
141
141
|
sourceOptions: {
|
|
142
142
|
protocols: [
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
Gt.protocols.HLS,
|
|
144
|
+
Gt.protocols.DASH
|
|
145
145
|
],
|
|
146
146
|
drms: [
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
147
|
+
Gt.drms.FAIRPLAY,
|
|
148
|
+
Gt.drms.SAMPLE_AES,
|
|
149
|
+
Gt.drms.AES128,
|
|
150
|
+
Gt.drms.WIDEVINE,
|
|
151
|
+
Gt.drms.CLEAR,
|
|
152
|
+
Gt.drms.PLAYREADY
|
|
153
153
|
],
|
|
154
154
|
contentInfo: {
|
|
155
155
|
title: void 0,
|
|
@@ -157,8 +157,8 @@ const Kt = {
|
|
|
157
157
|
description: void 0,
|
|
158
158
|
image: void 0,
|
|
159
159
|
posterImage: void 0,
|
|
160
|
-
type:
|
|
161
|
-
liveDVR:
|
|
160
|
+
type: Gt.type.VOD,
|
|
161
|
+
liveDVR: Gt.liveDVR.OFF,
|
|
162
162
|
headers: []
|
|
163
163
|
},
|
|
164
164
|
playoutOptions: void 0,
|
|
@@ -185,23 +185,23 @@ const Kt = {
|
|
|
185
185
|
playerOptions: {
|
|
186
186
|
appName: void 0,
|
|
187
187
|
backgroundColor: void 0,
|
|
188
|
-
ui:
|
|
189
|
-
controls:
|
|
190
|
-
autoplay:
|
|
191
|
-
muted:
|
|
192
|
-
loop:
|
|
193
|
-
watermark:
|
|
194
|
-
keyboardControls:
|
|
195
|
-
capLevelToPlayerSize:
|
|
196
|
-
title:
|
|
197
|
-
playerProfile:
|
|
198
|
-
collectVideoAnalytics:
|
|
199
|
-
verifyContent:
|
|
200
|
-
showLoader:
|
|
201
|
-
permanentPoster:
|
|
202
|
-
allowCasting:
|
|
203
|
-
preferNativeHLS:
|
|
204
|
-
loadChapters:
|
|
188
|
+
ui: Gt.ui.WEB,
|
|
189
|
+
controls: Gt.controls.AUTO_HIDE,
|
|
190
|
+
autoplay: Gt.autoplay.OFF,
|
|
191
|
+
muted: Gt.muted.OFF,
|
|
192
|
+
loop: Gt.loop.OFF,
|
|
193
|
+
watermark: Gt.watermark.ON,
|
|
194
|
+
keyboardControls: Gt.keyboardControls.ON,
|
|
195
|
+
capLevelToPlayerSize: Gt.capLevelToPlayerSize.OFF,
|
|
196
|
+
title: Gt.title.ON,
|
|
197
|
+
playerProfile: Gt.playerProfile.DEFAULT,
|
|
198
|
+
collectVideoAnalytics: Gt.collectVideoAnalytics.ON,
|
|
199
|
+
verifyContent: Gt.verifyContent.OFF,
|
|
200
|
+
showLoader: Gt.showLoader.ON,
|
|
201
|
+
permanentPoster: Gt.permanentPoster.OFF,
|
|
202
|
+
allowCasting: Gt.allowCasting.ON,
|
|
203
|
+
preferNativeHLS: Gt.preferNativeHLS.OFF,
|
|
204
|
+
loadChapters: Gt.loadChapters.OFF,
|
|
205
205
|
startTime: void 0,
|
|
206
206
|
startProgress: void 0,
|
|
207
207
|
hlsjsOptions: void 0,
|
|
@@ -4395,23 +4395,23 @@ function wq() {
|
|
|
4395
4395
|
e: {
|
|
4396
4396
|
var Ct = ay.get(l);
|
|
4397
4397
|
if (Ct !== void 0) {
|
|
4398
|
-
var
|
|
4398
|
+
var Wt = Dn, Xt = l;
|
|
4399
4399
|
switch (l) {
|
|
4400
4400
|
case "keypress":
|
|
4401
4401
|
if (pt(w) === 0) break e;
|
|
4402
4402
|
case "keydown":
|
|
4403
4403
|
case "keyup":
|
|
4404
|
-
|
|
4404
|
+
Wt = K0;
|
|
4405
4405
|
break;
|
|
4406
4406
|
case "focusin":
|
|
4407
|
-
Xt = "focus",
|
|
4407
|
+
Xt = "focus", Wt = Ml;
|
|
4408
4408
|
break;
|
|
4409
4409
|
case "focusout":
|
|
4410
|
-
Xt = "blur",
|
|
4410
|
+
Xt = "blur", Wt = Ml;
|
|
4411
4411
|
break;
|
|
4412
4412
|
case "beforeblur":
|
|
4413
4413
|
case "afterblur":
|
|
4414
|
-
|
|
4414
|
+
Wt = Ml;
|
|
4415
4415
|
break;
|
|
4416
4416
|
case "click":
|
|
4417
4417
|
if (w.button === 2) break e;
|
|
@@ -4423,7 +4423,7 @@ function wq() {
|
|
|
4423
4423
|
case "mouseout":
|
|
4424
4424
|
case "mouseover":
|
|
4425
4425
|
case "contextmenu":
|
|
4426
|
-
|
|
4426
|
+
Wt = Ru;
|
|
4427
4427
|
break;
|
|
4428
4428
|
case "drag":
|
|
4429
4429
|
case "dragend":
|
|
@@ -4433,32 +4433,32 @@ function wq() {
|
|
|
4433
4433
|
case "dragover":
|
|
4434
4434
|
case "dragstart":
|
|
4435
4435
|
case "drop":
|
|
4436
|
-
|
|
4436
|
+
Wt = zo;
|
|
4437
4437
|
break;
|
|
4438
4438
|
case "touchcancel":
|
|
4439
4439
|
case "touchend":
|
|
4440
4440
|
case "touchmove":
|
|
4441
4441
|
case "touchstart":
|
|
4442
|
-
|
|
4442
|
+
Wt = nv;
|
|
4443
4443
|
break;
|
|
4444
4444
|
case gv:
|
|
4445
4445
|
case vv:
|
|
4446
4446
|
case bv:
|
|
4447
|
-
|
|
4447
|
+
Wt = Tp;
|
|
4448
4448
|
break;
|
|
4449
4449
|
case wv:
|
|
4450
|
-
|
|
4450
|
+
Wt = qo;
|
|
4451
4451
|
break;
|
|
4452
4452
|
case "scroll":
|
|
4453
|
-
|
|
4453
|
+
Wt = vr;
|
|
4454
4454
|
break;
|
|
4455
4455
|
case "wheel":
|
|
4456
|
-
|
|
4456
|
+
Wt = Ho;
|
|
4457
4457
|
break;
|
|
4458
4458
|
case "copy":
|
|
4459
4459
|
case "cut":
|
|
4460
4460
|
case "paste":
|
|
4461
|
-
|
|
4461
|
+
Wt = Xg;
|
|
4462
4462
|
break;
|
|
4463
4463
|
case "gotpointercapture":
|
|
4464
4464
|
case "lostpointercapture":
|
|
@@ -4468,7 +4468,7 @@ function wq() {
|
|
|
4468
4468
|
case "pointerout":
|
|
4469
4469
|
case "pointerover":
|
|
4470
4470
|
case "pointerup":
|
|
4471
|
-
|
|
4471
|
+
Wt = tv;
|
|
4472
4472
|
}
|
|
4473
4473
|
var tn = (d & 4) !== 0, $r = !tn && l === "scroll", Qe = tn ? Ct !== null ? Ct + "Capture" : null : Ct;
|
|
4474
4474
|
tn = [];
|
|
@@ -4478,15 +4478,15 @@ function wq() {
|
|
|
4478
4478
|
if (nt.tag === 5 && At !== null && (nt = At, Qe !== null && (At = we(We, Qe), At != null && tn.push(Fc(We, At, nt)))), $r) break;
|
|
4479
4479
|
We = We.return;
|
|
4480
4480
|
}
|
|
4481
|
-
0 < tn.length && (Ct = new
|
|
4481
|
+
0 < tn.length && (Ct = new Wt(Ct, Xt, null, w, Et), Mt.push({ event: Ct, listeners: tn }));
|
|
4482
4482
|
}
|
|
4483
4483
|
}
|
|
4484
4484
|
if ((d & 7) === 0) {
|
|
4485
4485
|
e: {
|
|
4486
|
-
if (Ct = l === "mouseover" || l === "pointerover",
|
|
4487
|
-
if ((
|
|
4488
|
-
if (tn = Ru, At = "onMouseLeave", Qe = "onMouseEnter", We = "mouse", (l === "pointerout" || l === "pointerover") && (tn = tv, At = "onPointerLeave", Qe = "onPointerEnter", We = "pointer"), $r =
|
|
4489
|
-
for (tn =
|
|
4486
|
+
if (Ct = l === "mouseover" || l === "pointerover", Wt = l === "mouseout" || l === "pointerout", Ct && w !== Ye && (Xt = w.relatedTarget || w.fromElement) && (Il(Xt) || Xt[Vo])) break e;
|
|
4487
|
+
if ((Wt || Ct) && (Ct = Et.window === Et ? Et : (Ct = Et.ownerDocument) ? Ct.defaultView || Ct.parentWindow : window, Wt ? (Xt = w.relatedTarget || w.toElement, Wt = ot, Xt = Xt ? Il(Xt) : null, Xt !== null && ($r = Jt(Xt), Xt !== $r || Xt.tag !== 5 && Xt.tag !== 6) && (Xt = null)) : (Wt = null, Xt = ot), Wt !== Xt)) {
|
|
4488
|
+
if (tn = Ru, At = "onMouseLeave", Qe = "onMouseEnter", We = "mouse", (l === "pointerout" || l === "pointerover") && (tn = tv, At = "onPointerLeave", Qe = "onPointerEnter", We = "pointer"), $r = Wt == null ? Ct : js(Wt), nt = Xt == null ? Ct : js(Xt), Ct = new tn(At, We + "leave", Wt, w, Et), Ct.target = $r, Ct.relatedTarget = nt, At = null, Il(Et) === ot && (tn = new tn(Qe, We + "enter", Xt, w, Et), tn.target = nt, tn.relatedTarget = $r, At = tn), $r = At, Wt && Xt) t: {
|
|
4489
|
+
for (tn = Wt, Qe = Xt, We = 0, nt = tn; nt; nt = Lu(nt)) We++;
|
|
4490
4490
|
for (nt = 0, At = Qe; At; At = Lu(At)) nt++;
|
|
4491
4491
|
for (; 0 < We - nt; ) tn = Lu(tn), We--;
|
|
4492
4492
|
for (; 0 < nt - We; ) Qe = Lu(Qe), nt--;
|
|
@@ -4497,17 +4497,17 @@ function wq() {
|
|
|
4497
4497
|
tn = null;
|
|
4498
4498
|
}
|
|
4499
4499
|
else tn = null;
|
|
4500
|
-
|
|
4500
|
+
Wt !== null && xv(Mt, Ct, Wt, tn, !1), Xt !== null && $r !== null && xv(Mt, $r, Xt, tn, !0);
|
|
4501
4501
|
}
|
|
4502
4502
|
}
|
|
4503
4503
|
e: {
|
|
4504
|
-
if (Ct = ot ? js(ot) : window,
|
|
4504
|
+
if (Ct = ot ? js(ot) : window, Wt = Ct.nodeName && Ct.nodeName.toLowerCase(), Wt === "select" || Wt === "input" && Ct.type === "file") var Zt = q_;
|
|
4505
4505
|
else if (uv(Ct)) if (cv) Zt = yv;
|
|
4506
4506
|
else {
|
|
4507
4507
|
Zt = hv;
|
|
4508
4508
|
var yn = H_;
|
|
4509
4509
|
}
|
|
4510
|
-
else (
|
|
4510
|
+
else (Wt = Ct.nodeName) && Wt.toLowerCase() === "input" && (Ct.type === "checkbox" || Ct.type === "radio") && (Zt = V_);
|
|
4511
4511
|
if (Zt && (Zt = Zt(l, ot))) {
|
|
4512
4512
|
Q0(Mt, Zt, w, Et);
|
|
4513
4513
|
break e;
|
|
@@ -4949,7 +4949,7 @@ function wq() {
|
|
|
4949
4949
|
}
|
|
4950
4950
|
return null;
|
|
4951
4951
|
}
|
|
4952
|
-
function
|
|
4952
|
+
function Wt(Qe, We, nt, At, Zt) {
|
|
4953
4953
|
if (typeof At == "string" && At !== "" || typeof At == "number") return Qe = Qe.get(nt) || null, Fe(We, Qe, "" + At, Zt);
|
|
4954
4954
|
if (typeof At == "object" && At !== null) {
|
|
4955
4955
|
switch (At.$$typeof) {
|
|
@@ -4959,7 +4959,7 @@ function wq() {
|
|
|
4959
4959
|
return Qe = Qe.get(At.key === null ? nt : At.key) || null, ot(We, Qe, At, Zt);
|
|
4960
4960
|
case j:
|
|
4961
4961
|
var yn = At._init;
|
|
4962
|
-
return
|
|
4962
|
+
return Wt(Qe, We, nt, yn(At._payload), Zt);
|
|
4963
4963
|
}
|
|
4964
4964
|
if (le(At) || ee(At)) return Qe = Qe.get(nt) || null, Et(We, Qe, At, Zt, null);
|
|
4965
4965
|
Jp(We, At);
|
|
@@ -4981,7 +4981,7 @@ function wq() {
|
|
|
4981
4981
|
for (; Sn < nt.length; Sn++) gn = Mt(Qe, nt[Sn], At), gn !== null && (We = Z(gn, We, Sn), yn === null ? Zt = gn : yn.sibling = gn, yn = gn);
|
|
4982
4982
|
return Rr && Dl(Qe, Sn), Zt;
|
|
4983
4983
|
}
|
|
4984
|
-
for (gn = O(Qe, gn); Sn < nt.length; Sn++) _a =
|
|
4984
|
+
for (gn = O(Qe, gn); Sn < nt.length; Sn++) _a = Wt(gn, Qe, Sn, nt[Sn], At), _a !== null && (l && _a.alternate !== null && gn.delete(_a.key === null ? Sn : _a.key), We = Z(_a, We, Sn), yn === null ? Zt = _a : yn.sibling = _a, yn = _a);
|
|
4985
4985
|
return l && gn.forEach(function(Yu) {
|
|
4986
4986
|
return d(Qe, Yu);
|
|
4987
4987
|
}), Rr && Dl(Qe, Sn), Zt;
|
|
@@ -5007,7 +5007,7 @@ function wq() {
|
|
|
5007
5007
|
for (; !nr.done; Sn++, nr = nt.next()) nr = Mt(Qe, nr.value, At), nr !== null && (We = Z(nr, We, Sn), yn === null ? Zt = nr : yn.sibling = nr, yn = nr);
|
|
5008
5008
|
return Rr && Dl(Qe, Sn), Zt;
|
|
5009
5009
|
}
|
|
5010
|
-
for (gn = O(Qe, gn); !nr.done; Sn++, nr = nt.next()) nr =
|
|
5010
|
+
for (gn = O(Qe, gn); !nr.done; Sn++, nr = nt.next()) nr = Wt(gn, Qe, Sn, nr.value, At), nr !== null && (l && nr.alternate !== null && gn.delete(nr.key === null ? Sn : nr.key), We = Z(nr, We, Sn), yn === null ? Zt = nr : yn.sibling = nr, yn = nr);
|
|
5011
5011
|
return l && gn.forEach(function(db) {
|
|
5012
5012
|
return d(Qe, db);
|
|
5013
5013
|
}), Rr && Dl(Qe, Sn), Zt;
|
|
@@ -5159,10 +5159,10 @@ function wq() {
|
|
|
5159
5159
|
var Mt = $.baseState;
|
|
5160
5160
|
_e = 0, Et = ot = Ve = null, Fe = Z;
|
|
5161
5161
|
do {
|
|
5162
|
-
var Ct = Fe.lane,
|
|
5162
|
+
var Ct = Fe.lane, Wt = Fe.eventTime;
|
|
5163
5163
|
if ((O & Ct) === Ct) {
|
|
5164
5164
|
Et !== null && (Et = Et.next = {
|
|
5165
|
-
eventTime:
|
|
5165
|
+
eventTime: Wt,
|
|
5166
5166
|
lane: 0,
|
|
5167
5167
|
tag: Fe.tag,
|
|
5168
5168
|
payload: Fe.payload,
|
|
@@ -5171,10 +5171,10 @@ function wq() {
|
|
|
5171
5171
|
});
|
|
5172
5172
|
e: {
|
|
5173
5173
|
var Xt = l, tn = Fe;
|
|
5174
|
-
switch (Ct = d,
|
|
5174
|
+
switch (Ct = d, Wt = w, tn.tag) {
|
|
5175
5175
|
case 1:
|
|
5176
5176
|
if (Xt = tn.payload, typeof Xt == "function") {
|
|
5177
|
-
Mt = Xt.call(
|
|
5177
|
+
Mt = Xt.call(Wt, Mt, Ct);
|
|
5178
5178
|
break e;
|
|
5179
5179
|
}
|
|
5180
5180
|
Mt = Xt;
|
|
@@ -5182,7 +5182,7 @@ function wq() {
|
|
|
5182
5182
|
case 3:
|
|
5183
5183
|
Xt.flags = Xt.flags & -65537 | 128;
|
|
5184
5184
|
case 0:
|
|
5185
|
-
if (Xt = tn.payload, Ct = typeof Xt == "function" ? Xt.call(
|
|
5185
|
+
if (Xt = tn.payload, Ct = typeof Xt == "function" ? Xt.call(Wt, Mt, Ct) : Xt, Ct == null) break e;
|
|
5186
5186
|
Mt = G({}, Mt, Ct);
|
|
5187
5187
|
break e;
|
|
5188
5188
|
case 2:
|
|
@@ -5190,7 +5190,7 @@ function wq() {
|
|
|
5190
5190
|
}
|
|
5191
5191
|
}
|
|
5192
5192
|
Fe.callback !== null && Fe.lane !== 0 && (l.flags |= 64, Ct = $.effects, Ct === null ? $.effects = [Fe] : Ct.push(Fe));
|
|
5193
|
-
} else
|
|
5193
|
+
} else Wt = { eventTime: Wt, lane: Ct, tag: Fe.tag, payload: Fe.payload, callback: Fe.callback, next: null }, Et === null ? (ot = Et = Wt, Ve = Mt) : Et = Et.next = Wt, _e |= Ct;
|
|
5194
5194
|
if (Fe = Fe.next, Fe === null) {
|
|
5195
5195
|
if (Fe = $.shared.pending, Fe === null) break;
|
|
5196
5196
|
Ct = Fe, Fe = Ct.next, Ct.next = null, $.lastBaseUpdate = Ct, $.shared.pending = null;
|
|
@@ -5788,10 +5788,10 @@ Error generating stack: ` + Z.message + `
|
|
|
5788
5788
|
_e.state = Ct, rd(d, O, _e, $), Ve = d.memoizedState, Fe !== O || Ct !== Ve || ca.current || Gi ? (typeof Et == "function" && (xy(d, w, Et, O), Ve = d.memoizedState), (Fe = Gi || Iv(d, w, Fe, O, Ct, Ve, ot)) ? (Mt || typeof _e.UNSAFE_componentWillMount != "function" && typeof _e.componentWillMount != "function" || (typeof _e.componentWillMount == "function" && _e.componentWillMount(), typeof _e.UNSAFE_componentWillMount == "function" && _e.UNSAFE_componentWillMount()), typeof _e.componentDidMount == "function" && (d.flags |= 4194308)) : (typeof _e.componentDidMount == "function" && (d.flags |= 4194308), d.memoizedProps = O, d.memoizedState = Ve), _e.props = O, _e.state = Ve, _e.context = ot, O = Fe) : (typeof _e.componentDidMount == "function" && (d.flags |= 4194308), O = !1);
|
|
5789
5789
|
} else {
|
|
5790
5790
|
_e = d.stateNode, Ov(l, d), Fe = d.memoizedProps, ot = d.type === d.elementType ? Fe : Hs(d.type, Fe), _e.props = ot, Mt = d.pendingProps, Ct = _e.context, Ve = w.contextType, typeof Ve == "object" && Ve !== null ? Ve = ms(Ve) : (Ve = Yr(w) ? wi : Br.current, Ve = _i(d, Ve));
|
|
5791
|
-
var
|
|
5792
|
-
(Et = typeof
|
|
5791
|
+
var Wt = w.getDerivedStateFromProps;
|
|
5792
|
+
(Et = typeof Wt == "function" || typeof _e.getSnapshotBeforeUpdate == "function") || typeof _e.UNSAFE_componentWillReceiveProps != "function" && typeof _e.componentWillReceiveProps != "function" || (Fe !== Mt || Ct !== Ve) && Dv(d, _e, O, Ve), Gi = !1, Ct = d.memoizedState, _e.state = Ct, rd(d, O, _e, $);
|
|
5793
5793
|
var Xt = d.memoizedState;
|
|
5794
|
-
Fe !== Mt || Ct !== Xt || ca.current || Gi ? (typeof
|
|
5794
|
+
Fe !== Mt || Ct !== Xt || ca.current || Gi ? (typeof Wt == "function" && (xy(d, w, Wt, O), Xt = d.memoizedState), (ot = Gi || Iv(d, w, ot, O, Ct, Xt, Ve) || !1) ? (Et || typeof _e.UNSAFE_componentWillUpdate != "function" && typeof _e.componentWillUpdate != "function" || (typeof _e.componentWillUpdate == "function" && _e.componentWillUpdate(O, Xt, Ve), typeof _e.UNSAFE_componentWillUpdate == "function" && _e.UNSAFE_componentWillUpdate(O, Xt, Ve)), typeof _e.componentDidUpdate == "function" && (d.flags |= 4), typeof _e.getSnapshotBeforeUpdate == "function" && (d.flags |= 1024)) : (typeof _e.componentDidUpdate != "function" || Fe === l.memoizedProps && Ct === l.memoizedState || (d.flags |= 4), typeof _e.getSnapshotBeforeUpdate != "function" || Fe === l.memoizedProps && Ct === l.memoizedState || (d.flags |= 1024), d.memoizedProps = O, d.memoizedState = Xt), _e.props = O, _e.state = Xt, _e.context = Ve, O = ot) : (typeof _e.componentDidUpdate != "function" || Fe === l.memoizedProps && Ct === l.memoizedState || (d.flags |= 4), typeof _e.getSnapshotBeforeUpdate != "function" || Fe === l.memoizedProps && Ct === l.memoizedState || (d.flags |= 1024), O = !1);
|
|
5795
5795
|
}
|
|
5796
5796
|
return vd(l, d, w, O, Z, $);
|
|
5797
5797
|
}
|
|
@@ -6374,14 +6374,14 @@ Error generating stack: ` + Z.message + `
|
|
|
6374
6374
|
}
|
|
6375
6375
|
var _e = 0, Fe = -1, Ve = -1, ot = 0, Et = 0, Mt = l, Ct = null;
|
|
6376
6376
|
t: for (; ; ) {
|
|
6377
|
-
for (var
|
|
6378
|
-
Ct = Mt, Mt =
|
|
6377
|
+
for (var Wt; Mt !== w || $ !== 0 && Mt.nodeType !== 3 || (Fe = _e + $), Mt !== Z || O !== 0 && Mt.nodeType !== 3 || (Ve = _e + O), Mt.nodeType === 3 && (_e += Mt.nodeValue.length), (Wt = Mt.firstChild) !== null; )
|
|
6378
|
+
Ct = Mt, Mt = Wt;
|
|
6379
6379
|
for (; ; ) {
|
|
6380
6380
|
if (Mt === l) break t;
|
|
6381
|
-
if (Ct === w && ++ot === $ && (Fe = _e), Ct === Z && ++Et === O && (Ve = _e), (
|
|
6381
|
+
if (Ct === w && ++ot === $ && (Fe = _e), Ct === Z && ++Et === O && (Ve = _e), (Wt = Mt.nextSibling) !== null) break;
|
|
6382
6382
|
Mt = Ct, Ct = Mt.parentNode;
|
|
6383
6383
|
}
|
|
6384
|
-
Mt =
|
|
6384
|
+
Mt = Wt;
|
|
6385
6385
|
}
|
|
6386
6386
|
w = Fe === -1 || Ve === -1 ? null : { start: Fe, end: Ve };
|
|
6387
6387
|
} else w = null;
|
|
@@ -6641,8 +6641,8 @@ Error generating stack: ` + Z.message + `
|
|
|
6641
6641
|
case "select":
|
|
6642
6642
|
var Ct = $._wrapperState.wasMultiple;
|
|
6643
6643
|
$._wrapperState.wasMultiple = !!Z.multiple;
|
|
6644
|
-
var
|
|
6645
|
-
|
|
6644
|
+
var Wt = Z.value;
|
|
6645
|
+
Wt != null ? Ae($, !!Z.multiple, Wt, !1) : Ct !== !!Z.multiple && (Z.defaultValue != null ? Ae(
|
|
6646
6646
|
$,
|
|
6647
6647
|
!!Z.multiple,
|
|
6648
6648
|
Z.defaultValue,
|
|
@@ -6683,7 +6683,7 @@ Error generating stack: ` + Z.message + `
|
|
|
6683
6683
|
if (Et = w !== null && w.memoizedState !== null, l.mode & 1 ? (qa = (ot = qa) || Et, Vs(d, l), qa = ot) : Vs(d, l), ki(l), O & 8192) {
|
|
6684
6684
|
if (ot = l.memoizedState !== null, (l.stateNode.isHidden = ot) && !Et && (l.mode & 1) !== 0) for (Qt = l, Et = l.child; Et !== null; ) {
|
|
6685
6685
|
for (Mt = Qt = Et; Qt !== null; ) {
|
|
6686
|
-
switch (Ct = Qt,
|
|
6686
|
+
switch (Ct = Qt, Wt = Ct.child, Ct.tag) {
|
|
6687
6687
|
case 0:
|
|
6688
6688
|
case 11:
|
|
6689
6689
|
case 14:
|
|
@@ -6711,7 +6711,7 @@ Error generating stack: ` + Z.message + `
|
|
|
6711
6711
|
continue;
|
|
6712
6712
|
}
|
|
6713
6713
|
}
|
|
6714
|
-
|
|
6714
|
+
Wt !== null ? (Wt.return = Ct, Qt = Wt) : Ad(Mt);
|
|
6715
6715
|
}
|
|
6716
6716
|
Et = Et.sibling;
|
|
6717
6717
|
}
|
|
@@ -7235,9 +7235,9 @@ Error generating stack: ` + Z.message + `
|
|
|
7235
7235
|
var Ct = Et.alternate;
|
|
7236
7236
|
Ct ? (Et.updateQueue = Ct.updateQueue, Et.memoizedState = Ct.memoizedState, Et.lanes = Ct.lanes) : (Et.updateQueue = null, Et.memoizedState = null);
|
|
7237
7237
|
}
|
|
7238
|
-
var
|
|
7239
|
-
if (
|
|
7240
|
-
|
|
7238
|
+
var Wt = Fv(_e);
|
|
7239
|
+
if (Wt !== null) {
|
|
7240
|
+
Wt.flags &= -257, Hu(Wt, _e, Fe, Z, d), Wt.mode & 1 && Ay(Z, ot, d), d = Wt, Ve = ot;
|
|
7241
7241
|
var Xt = d.updateQueue;
|
|
7242
7242
|
if (Xt === null) {
|
|
7243
7243
|
var tn = /* @__PURE__ */ new Set();
|
|
@@ -7408,16 +7408,16 @@ Error generating stack: ` + Z.message + `
|
|
|
7408
7408
|
if (Mt !== null) Mt.return = Et, Qt = Mt;
|
|
7409
7409
|
else for (; Qt !== null; ) {
|
|
7410
7410
|
Et = Qt;
|
|
7411
|
-
var Ct = Et.sibling,
|
|
7411
|
+
var Ct = Et.sibling, Wt = Et.return;
|
|
7412
7412
|
if (Sh(Et), Et === ot) {
|
|
7413
7413
|
Qt = null;
|
|
7414
7414
|
break;
|
|
7415
7415
|
}
|
|
7416
7416
|
if (Ct !== null) {
|
|
7417
|
-
Ct.return =
|
|
7417
|
+
Ct.return = Wt, Qt = Ct;
|
|
7418
7418
|
break;
|
|
7419
7419
|
}
|
|
7420
|
-
Qt =
|
|
7420
|
+
Qt = Wt;
|
|
7421
7421
|
}
|
|
7422
7422
|
}
|
|
7423
7423
|
}
|
|
@@ -12230,7 +12230,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
12230
12230
|
var i = n.nodeName;
|
|
12231
12231
|
return i && i.toLowerCase() === "input" && (n.type === "checkbox" || n.type === "radio");
|
|
12232
12232
|
}
|
|
12233
|
-
function
|
|
12233
|
+
function Wt(n, i) {
|
|
12234
12234
|
if (n === "click")
|
|
12235
12235
|
return $(i);
|
|
12236
12236
|
}
|
|
@@ -12244,7 +12244,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
12244
12244
|
}
|
|
12245
12245
|
function $r(n, i, h, g, A, U, W) {
|
|
12246
12246
|
var re = h ? zh(h) : window, pe, Me;
|
|
12247
|
-
if (d(re) ? pe = Z : Nd(re) ? _e ? pe = Xt : (pe = Mt, Me = Et) : Ct(re) && (pe =
|
|
12247
|
+
if (d(re) ? pe = Z : Nd(re) ? _e ? pe = Xt : (pe = Mt, Me = Et) : Ct(re) && (pe = Wt), pe) {
|
|
12248
12248
|
var Le = pe(i, h);
|
|
12249
12249
|
if (Le) {
|
|
12250
12250
|
fb(n, Le, g, A);
|
|
@@ -13536,8 +13536,8 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13536
13536
|
var n = window.event;
|
|
13537
13537
|
return n === void 0 ? gs : Ch(n.type);
|
|
13538
13538
|
}
|
|
13539
|
-
var Ax = typeof setTimeout == "function" ? setTimeout : void 0, hU = typeof clearTimeout == "function" ? clearTimeout : void 0, kx = -1,
|
|
13540
|
-
return
|
|
13539
|
+
var Ax = typeof setTimeout == "function" ? setTimeout : void 0, hU = typeof clearTimeout == "function" ? clearTimeout : void 0, kx = -1, e4 = typeof Promise == "function" ? Promise : void 0, yU = typeof queueMicrotask == "function" ? queueMicrotask : typeof e4 < "u" ? function(n) {
|
|
13540
|
+
return e4.resolve(null).then(n).catch(mU);
|
|
13541
13541
|
} : Ax;
|
|
13542
13542
|
function mU(n) {
|
|
13543
13543
|
setTimeout(function() {
|
|
@@ -13561,7 +13561,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13561
13561
|
function vU(n, i, h, g, A, U) {
|
|
13562
13562
|
WD(n, i, h, g, A), Lx(n, A);
|
|
13563
13563
|
}
|
|
13564
|
-
function
|
|
13564
|
+
function t4(n) {
|
|
13565
13565
|
Nc(n, "");
|
|
13566
13566
|
}
|
|
13567
13567
|
function bU(n, i, h) {
|
|
@@ -13637,7 +13637,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13637
13637
|
function PU(n) {
|
|
13638
13638
|
return n.nodeType !== Jr ? null : n;
|
|
13639
13639
|
}
|
|
13640
|
-
function
|
|
13640
|
+
function n4(n) {
|
|
13641
13641
|
return n.data === em;
|
|
13642
13642
|
}
|
|
13643
13643
|
function Mx(n) {
|
|
@@ -13711,7 +13711,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13711
13711
|
}
|
|
13712
13712
|
return null;
|
|
13713
13713
|
}
|
|
13714
|
-
function
|
|
13714
|
+
function r4(n) {
|
|
13715
13715
|
for (var i = n.previousSibling, h = 0; i; ) {
|
|
13716
13716
|
if (i.nodeType === Jr) {
|
|
13717
13717
|
var g = i.data;
|
|
@@ -13796,7 +13796,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13796
13796
|
function Tb(n, i) {
|
|
13797
13797
|
i[rm] = n;
|
|
13798
13798
|
}
|
|
13799
|
-
function
|
|
13799
|
+
function a4(n) {
|
|
13800
13800
|
n[rm] = null;
|
|
13801
13801
|
}
|
|
13802
13802
|
function im(n) {
|
|
@@ -13810,11 +13810,11 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13810
13810
|
if (i = h[rm] || h[Bh], i) {
|
|
13811
13811
|
var g = i.alternate;
|
|
13812
13812
|
if (i.child !== null || g !== null && g.child !== null)
|
|
13813
|
-
for (var A =
|
|
13813
|
+
for (var A = r4(n); A !== null; ) {
|
|
13814
13814
|
var U = A[Bh];
|
|
13815
13815
|
if (U)
|
|
13816
13816
|
return U;
|
|
13817
|
-
A =
|
|
13817
|
+
A = r4(A);
|
|
13818
13818
|
}
|
|
13819
13819
|
return i;
|
|
13820
13820
|
}
|
|
@@ -13841,13 +13841,13 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13841
13841
|
var i = n[Ox];
|
|
13842
13842
|
return i === void 0 && (i = n[Ox] = /* @__PURE__ */ new Set()), i;
|
|
13843
13843
|
}
|
|
13844
|
-
var
|
|
13844
|
+
var i4 = {}, s4 = t.ReactDebugCurrentFrame;
|
|
13845
13845
|
function Rb(n) {
|
|
13846
13846
|
if (n) {
|
|
13847
13847
|
var i = n._owner, h = Fo(n.type, n._source, i ? i.type : null);
|
|
13848
|
-
|
|
13848
|
+
s4.setExtraStackFrame(h);
|
|
13849
13849
|
} else
|
|
13850
|
-
|
|
13850
|
+
s4.setExtraStackFrame(null);
|
|
13851
13851
|
}
|
|
13852
13852
|
function eu(n, i, h, g, A) {
|
|
13853
13853
|
{
|
|
@@ -13864,7 +13864,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13864
13864
|
} catch (Me) {
|
|
13865
13865
|
re = Me;
|
|
13866
13866
|
}
|
|
13867
|
-
re && !(re instanceof Error) && (Rb(A), o("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", g || "React class", h, W, typeof re), Rb(null)), re instanceof Error && !(re.message in
|
|
13867
|
+
re && !(re instanceof Error) && (Rb(A), o("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", g || "React class", h, W, typeof re), Rb(null)), re instanceof Error && !(re.message in i4) && (i4[re.message] = !0, Rb(A), o("Failed %s type: %s", h, re.message), Rb(null));
|
|
13868
13868
|
}
|
|
13869
13869
|
}
|
|
13870
13870
|
}
|
|
@@ -13894,7 +13894,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13894
13894
|
function jh(n, i, h) {
|
|
13895
13895
|
return h && Xu(i) ? Ix : rc.current;
|
|
13896
13896
|
}
|
|
13897
|
-
function
|
|
13897
|
+
function o4(n, i, h) {
|
|
13898
13898
|
{
|
|
13899
13899
|
var g = n.stateNode;
|
|
13900
13900
|
g.__reactInternalMemoizedUnmaskedChildContext = i, g.__reactInternalMemoizedMaskedChildContext = h;
|
|
@@ -13915,7 +13915,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13915
13915
|
var re = Cn(n) || "Unknown";
|
|
13916
13916
|
eu(g, U, "context", re);
|
|
13917
13917
|
}
|
|
13918
|
-
return A &&
|
|
13918
|
+
return A && o4(n, i, U), U;
|
|
13919
13919
|
}
|
|
13920
13920
|
}
|
|
13921
13921
|
function Lb() {
|
|
@@ -13933,14 +13933,14 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13933
13933
|
function Dx(n) {
|
|
13934
13934
|
Ri(Qu, n), Ri(rc, n);
|
|
13935
13935
|
}
|
|
13936
|
-
function
|
|
13936
|
+
function u4(n, i, h) {
|
|
13937
13937
|
{
|
|
13938
13938
|
if (rc.current !== Gs)
|
|
13939
13939
|
throw new Error("Unexpected context found on stack. This error is likely caused by a bug in React. Please file an issue.");
|
|
13940
13940
|
Oi(rc, i, n), Oi(Qu, h, n);
|
|
13941
13941
|
}
|
|
13942
13942
|
}
|
|
13943
|
-
function
|
|
13943
|
+
function l4(n, i, h) {
|
|
13944
13944
|
{
|
|
13945
13945
|
var g = n.stateNode, A = i.childContextTypes;
|
|
13946
13946
|
if (typeof g.getChildContext != "function") {
|
|
@@ -13967,13 +13967,13 @@ Check the render method of \`` + n + "`." : "";
|
|
|
13967
13967
|
return Ix = rc.current, Oi(rc, h, n), Oi(Qu, Qu.current, n), !0;
|
|
13968
13968
|
}
|
|
13969
13969
|
}
|
|
13970
|
-
function
|
|
13970
|
+
function c4(n, i, h) {
|
|
13971
13971
|
{
|
|
13972
13972
|
var g = n.stateNode;
|
|
13973
13973
|
if (!g)
|
|
13974
13974
|
throw new Error("Expected to have an instance by this point. This error is likely caused by a bug in React. Please file an issue.");
|
|
13975
13975
|
if (h) {
|
|
13976
|
-
var A =
|
|
13976
|
+
var A = l4(n, i, Ix);
|
|
13977
13977
|
g.__reactInternalMemoizedMergedChildContext = A, Ri(Qu, n), Ri(rc, n), Oi(rc, A, n), Oi(Qu, h, n);
|
|
13978
13978
|
} else
|
|
13979
13979
|
Ri(Qu, n), Oi(Qu, h, n);
|
|
@@ -14001,13 +14001,13 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14001
14001
|
}
|
|
14002
14002
|
}
|
|
14003
14003
|
var sf = 0, Ib = 1, ac = null, Ux = !1, Fx = !1;
|
|
14004
|
-
function
|
|
14004
|
+
function f4(n) {
|
|
14005
14005
|
ac === null ? ac = [n] : ac.push(n);
|
|
14006
14006
|
}
|
|
14007
14007
|
function fF(n) {
|
|
14008
|
-
Ux = !0,
|
|
14008
|
+
Ux = !0, f4(n);
|
|
14009
14009
|
}
|
|
14010
|
-
function
|
|
14010
|
+
function d4() {
|
|
14011
14011
|
Ux && of();
|
|
14012
14012
|
}
|
|
14013
14013
|
function of() {
|
|
@@ -14045,7 +14045,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14045
14045
|
function Bd(n, i) {
|
|
14046
14046
|
zd(), Hh[Vh++] = Ub, Hh[Vh++] = Db, Db = n, Ub = i;
|
|
14047
14047
|
}
|
|
14048
|
-
function
|
|
14048
|
+
function p4(n, i, h) {
|
|
14049
14049
|
zd(), _o[xo++] = ic, _o[xo++] = sc, _o[xo++] = Fd, Fd = n;
|
|
14050
14050
|
var g = ic, A = sc, U = Fb(g) - 1, W = g & ~(1 << U), re = h + 1, pe = Fb(i) + U;
|
|
14051
14051
|
if (pe > 30) {
|
|
@@ -14061,7 +14061,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14061
14061
|
var i = n.return;
|
|
14062
14062
|
if (i !== null) {
|
|
14063
14063
|
var h = 1, g = 0;
|
|
14064
|
-
Bd(n, h),
|
|
14064
|
+
Bd(n, h), p4(n, h, g);
|
|
14065
14065
|
}
|
|
14066
14066
|
}
|
|
14067
14067
|
function Fb(n) {
|
|
@@ -14092,7 +14092,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14092
14092
|
function vF() {
|
|
14093
14093
|
tu && o("We should not be hydrating here. This is a bug in React. Please file a bug.");
|
|
14094
14094
|
}
|
|
14095
|
-
function
|
|
14095
|
+
function h4() {
|
|
14096
14096
|
jd = !0;
|
|
14097
14097
|
}
|
|
14098
14098
|
function bF() {
|
|
@@ -14105,7 +14105,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14105
14105
|
function _F(n, i, h) {
|
|
14106
14106
|
return So = BU(i), ti = n, tu = !0, uf = null, jd = !1, h !== null && gF(n, h), !0;
|
|
14107
14107
|
}
|
|
14108
|
-
function
|
|
14108
|
+
function y4(n, i) {
|
|
14109
14109
|
switch (n.tag) {
|
|
14110
14110
|
case m: {
|
|
14111
14111
|
JU(n.stateNode.containerInfo, i);
|
|
@@ -14130,8 +14130,8 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14130
14130
|
}
|
|
14131
14131
|
}
|
|
14132
14132
|
}
|
|
14133
|
-
function
|
|
14134
|
-
|
|
14133
|
+
function m4(n, i) {
|
|
14134
|
+
y4(n, i);
|
|
14135
14135
|
var h = Ej();
|
|
14136
14136
|
h.stateNode = i, h.return = n;
|
|
14137
14137
|
var g = n.deletions;
|
|
@@ -14206,10 +14206,10 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14206
14206
|
}
|
|
14207
14207
|
}
|
|
14208
14208
|
}
|
|
14209
|
-
function
|
|
14209
|
+
function g4(n, i) {
|
|
14210
14210
|
i.flags = i.flags & ~_i | Pr, jx(n, i);
|
|
14211
14211
|
}
|
|
14212
|
-
function
|
|
14212
|
+
function v4(n, i) {
|
|
14213
14213
|
switch (n.tag) {
|
|
14214
14214
|
case b: {
|
|
14215
14215
|
var h = n.type;
|
|
@@ -14249,18 +14249,18 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14249
14249
|
if (tu) {
|
|
14250
14250
|
var i = So;
|
|
14251
14251
|
if (!i) {
|
|
14252
|
-
qx(n) && (jx(ti, n), Hx()),
|
|
14252
|
+
qx(n) && (jx(ti, n), Hx()), g4(ti, n), tu = !1, ti = n;
|
|
14253
14253
|
return;
|
|
14254
14254
|
}
|
|
14255
14255
|
var h = i;
|
|
14256
|
-
if (!
|
|
14256
|
+
if (!v4(n, i)) {
|
|
14257
14257
|
qx(n) && (jx(ti, n), Hx()), i = nm(h);
|
|
14258
14258
|
var g = ti;
|
|
14259
|
-
if (!i || !
|
|
14260
|
-
|
|
14259
|
+
if (!i || !v4(n, i)) {
|
|
14260
|
+
g4(ti, n), tu = !1, ti = n;
|
|
14261
14261
|
return;
|
|
14262
14262
|
}
|
|
14263
|
-
|
|
14263
|
+
m4(g, h);
|
|
14264
14264
|
}
|
|
14265
14265
|
}
|
|
14266
14266
|
}
|
|
@@ -14314,7 +14314,7 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14314
14314
|
throw new Error("Expected to have a hydrated suspense instance. This error is likely caused by a bug in React. Please file an issue.");
|
|
14315
14315
|
return HU(h);
|
|
14316
14316
|
}
|
|
14317
|
-
function
|
|
14317
|
+
function b4(n) {
|
|
14318
14318
|
for (var i = n.return; i !== null && i.tag !== b && i.tag !== m && i.tag !== N; )
|
|
14319
14319
|
i = i.return;
|
|
14320
14320
|
ti = i;
|
|
@@ -14323,29 +14323,29 @@ Check the render method of \`` + n + "`." : "";
|
|
|
14323
14323
|
if (n !== ti)
|
|
14324
14324
|
return !1;
|
|
14325
14325
|
if (!tu)
|
|
14326
|
-
return
|
|
14326
|
+
return b4(n), tu = !0, !1;
|
|
14327
14327
|
if (n.tag !== m && (n.tag !== b || GU(n.type) && !Ex(n.type, n.memoizedProps))) {
|
|
14328
14328
|
var i = So;
|
|
14329
14329
|
if (i)
|
|
14330
14330
|
if (qx(n))
|
|
14331
|
-
|
|
14331
|
+
w4(n), Hx();
|
|
14332
14332
|
else
|
|
14333
14333
|
for (; i; )
|
|
14334
|
-
|
|
14334
|
+
m4(n, i), i = nm(i);
|
|
14335
14335
|
}
|
|
14336
|
-
return
|
|
14336
|
+
return b4(n), n.tag === N ? So = EF(n) : So = ti ? nm(n.stateNode) : null, !0;
|
|
14337
14337
|
}
|
|
14338
14338
|
function AF() {
|
|
14339
14339
|
return tu && So !== null;
|
|
14340
14340
|
}
|
|
14341
|
-
function
|
|
14341
|
+
function w4(n) {
|
|
14342
14342
|
for (var i = So; i; )
|
|
14343
|
-
|
|
14343
|
+
y4(n, i), i = nm(i);
|
|
14344
14344
|
}
|
|
14345
14345
|
function $h() {
|
|
14346
14346
|
ti = null, So = null, tu = !1, jd = !1;
|
|
14347
14347
|
}
|
|
14348
|
-
function
|
|
14348
|
+
function _4() {
|
|
14349
14349
|
uf !== null && (hk(uf), uf = null);
|
|
14350
14350
|
}
|
|
14351
14351
|
function ni() {
|
|
@@ -14462,14 +14462,14 @@ Please update the following components: %s`, Le);
|
|
|
14462
14462
|
Please update the following components: %s`, Ke);
|
|
14463
14463
|
}
|
|
14464
14464
|
};
|
|
14465
|
-
var zb = /* @__PURE__ */ new Map(),
|
|
14465
|
+
var zb = /* @__PURE__ */ new Map(), x4 = /* @__PURE__ */ new Set();
|
|
14466
14466
|
nu.recordLegacyContextWarning = function(n, i) {
|
|
14467
14467
|
var h = RF(n);
|
|
14468
14468
|
if (h === null) {
|
|
14469
14469
|
o("Expected to find a StrictMode component in a strict mode tree. This error is likely caused by a bug in React. Please file an issue.");
|
|
14470
14470
|
return;
|
|
14471
14471
|
}
|
|
14472
|
-
if (!
|
|
14472
|
+
if (!x4.has(n.type)) {
|
|
14473
14473
|
var g = zb.get(h);
|
|
14474
14474
|
(n.type.contextTypes != null || n.type.childContextTypes != null || i !== null && typeof i.getChildContext == "function") && (g === void 0 && (g = [], zb.set(h, g)), g.push(n));
|
|
14475
14475
|
}
|
|
@@ -14478,7 +14478,7 @@ Please update the following components: %s`, Ke);
|
|
|
14478
14478
|
if (n.length !== 0) {
|
|
14479
14479
|
var h = n[0], g = /* @__PURE__ */ new Set();
|
|
14480
14480
|
n.forEach(function(U) {
|
|
14481
|
-
g.add(Cn(U) || "Component"),
|
|
14481
|
+
g.add(Cn(U) || "Component"), x4.add(U.type);
|
|
14482
14482
|
});
|
|
14483
14483
|
var A = qd(g);
|
|
14484
14484
|
try {
|
|
@@ -14498,9 +14498,9 @@ Learn more about this warning here: https://reactjs.org/link/legacy-context`, A)
|
|
|
14498
14498
|
sm = [], om = [], um = [], lm = [], cm = [], fm = [], zb = /* @__PURE__ */ new Map();
|
|
14499
14499
|
};
|
|
14500
14500
|
}
|
|
14501
|
-
var Gx, Wx, Kx, Jx, Yx,
|
|
14501
|
+
var Gx, Wx, Kx, Jx, Yx, S4 = function(n, i) {
|
|
14502
14502
|
};
|
|
14503
|
-
Gx = !1, Wx = !1, Kx = {}, Jx = {}, Yx = {},
|
|
14503
|
+
Gx = !1, Wx = !1, Kx = {}, Jx = {}, Yx = {}, S4 = function(n, i) {
|
|
14504
14504
|
if (!(n === null || typeof n != "object") && !(!n._store || n._store.validated || n.key != null)) {
|
|
14505
14505
|
if (typeof n._store != "object")
|
|
14506
14506
|
throw new Error("React Component in warnForMissingKey should have a _store. This error is likely caused by a bug in React. Please file an issue.");
|
|
@@ -14570,11 +14570,11 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
14570
14570
|
Yx[i] = !0, o("Functions are not valid as a React child. This may happen if you return a Component instead of <Component /> from render. Or maybe you meant to call this function rather than return it.");
|
|
14571
14571
|
}
|
|
14572
14572
|
}
|
|
14573
|
-
function
|
|
14573
|
+
function C4(n) {
|
|
14574
14574
|
var i = n._payload, h = n._init;
|
|
14575
14575
|
return h(i);
|
|
14576
14576
|
}
|
|
14577
|
-
function
|
|
14577
|
+
function E4(n) {
|
|
14578
14578
|
function i(Xe, mt) {
|
|
14579
14579
|
if (n) {
|
|
14580
14580
|
var Ze = Xe.deletions;
|
|
@@ -14628,7 +14628,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
14628
14628
|
// We need to do this after the Hot Reloading check above,
|
|
14629
14629
|
// because hot reloading has different semantics than prod because
|
|
14630
14630
|
// it doesn't resuspend. So we can't let the call below suspend.
|
|
14631
|
-
typeof Yt == "object" && Yt !== null && Yt.$$typeof === Pt &&
|
|
14631
|
+
typeof Yt == "object" && Yt !== null && Yt.$$typeof === Pt && C4(Yt) === mt.type)) {
|
|
14632
14632
|
var $t = A(mt, Ze.props);
|
|
14633
14633
|
return $t.ref = dm(Xe, mt, Ze), $t.return = Xe, $t._debugSource = Ze._source, $t._debugOwner = Ze._owner, $t;
|
|
14634
14634
|
}
|
|
@@ -14736,7 +14736,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
14736
14736
|
switch (Xe.$$typeof) {
|
|
14737
14737
|
case De:
|
|
14738
14738
|
case $e:
|
|
14739
|
-
|
|
14739
|
+
S4(Xe, Ze);
|
|
14740
14740
|
var Rt = Xe.key;
|
|
14741
14741
|
if (typeof Rt != "string")
|
|
14742
14742
|
break;
|
|
@@ -14883,7 +14883,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
14883
14883
|
// We need to do this after the Hot Reloading check above,
|
|
14884
14884
|
// because hot reloading has different semantics than prod because
|
|
14885
14885
|
// it doesn't resuspend. So we can't let the call below suspend.
|
|
14886
|
-
typeof _n == "object" && _n !== null && _n.$$typeof === Pt &&
|
|
14886
|
+
typeof _n == "object" && _n !== null && _n.$$typeof === Pt && C4(_n) === $t.type) {
|
|
14887
14887
|
h(Xe, $t.sibling);
|
|
14888
14888
|
var hr = A($t, Ze.props);
|
|
14889
14889
|
return hr.ref = dm(Xe, $t, Ze), hr.return = Xe, hr._debugSource = Ze._source, hr._debugOwner = Ze._owner, hr;
|
|
@@ -14942,7 +14942,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
14942
14942
|
}
|
|
14943
14943
|
return Fn;
|
|
14944
14944
|
}
|
|
14945
|
-
var Gh =
|
|
14945
|
+
var Gh = E4(!0), A4 = E4(!1);
|
|
14946
14946
|
function LF(n, i) {
|
|
14947
14947
|
if (n !== null && i.child !== n.child)
|
|
14948
14948
|
throw new Error("Resuming work not yet implemented.");
|
|
@@ -14963,13 +14963,13 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
14963
14963
|
function $b() {
|
|
14964
14964
|
Hb = null, Wh = null, Zx = null, Vb = !1;
|
|
14965
14965
|
}
|
|
14966
|
-
function
|
|
14966
|
+
function k4() {
|
|
14967
14967
|
Vb = !0;
|
|
14968
14968
|
}
|
|
14969
|
-
function
|
|
14969
|
+
function T4() {
|
|
14970
14970
|
Vb = !1;
|
|
14971
14971
|
}
|
|
14972
|
-
function
|
|
14972
|
+
function M4(n, i, h) {
|
|
14973
14973
|
Oi(Qx, i._currentValue, n), i._currentValue = h, i._currentRenderer !== void 0 && i._currentRenderer !== null && i._currentRenderer !== Xx && o("Detected multiple renderers concurrently rendering the same context provider. This is currently unsupported."), i._currentRenderer = Xx;
|
|
14974
14974
|
}
|
|
14975
14975
|
function e2(n, i) {
|
|
@@ -15091,7 +15091,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15091
15091
|
Vd = null;
|
|
15092
15092
|
}
|
|
15093
15093
|
}
|
|
15094
|
-
function
|
|
15094
|
+
function R4(n, i, h, g) {
|
|
15095
15095
|
var A = i.interleaved;
|
|
15096
15096
|
return A === null ? (h.next = h, n2(i)) : (h.next = A.next, A.next = h), i.interleaved = h, Gb(n, g);
|
|
15097
15097
|
}
|
|
@@ -15119,7 +15119,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15119
15119
|
} else
|
|
15120
15120
|
return null;
|
|
15121
15121
|
}
|
|
15122
|
-
var
|
|
15122
|
+
var O4 = 0, L4 = 1, Wb = 2, r2 = 3, Kb = !1, a2, Jb;
|
|
15123
15123
|
a2 = !1, Jb = null;
|
|
15124
15124
|
function i2(n) {
|
|
15125
15125
|
var i = {
|
|
@@ -15135,7 +15135,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15135
15135
|
};
|
|
15136
15136
|
n.updateQueue = i;
|
|
15137
15137
|
}
|
|
15138
|
-
function
|
|
15138
|
+
function N4(n, i) {
|
|
15139
15139
|
var h = i.updateQueue, g = n.updateQueue;
|
|
15140
15140
|
if (h === g) {
|
|
15141
15141
|
var A = {
|
|
@@ -15152,7 +15152,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15152
15152
|
var h = {
|
|
15153
15153
|
eventTime: n,
|
|
15154
15154
|
lane: i,
|
|
15155
|
-
tag:
|
|
15155
|
+
tag: O4,
|
|
15156
15156
|
payload: null,
|
|
15157
15157
|
callback: null,
|
|
15158
15158
|
next: null
|
|
@@ -15219,10 +15219,10 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15219
15219
|
}
|
|
15220
15220
|
function zF(n, i, h, g, A, U) {
|
|
15221
15221
|
switch (h.tag) {
|
|
15222
|
-
case
|
|
15222
|
+
case L4: {
|
|
15223
15223
|
var W = h.payload;
|
|
15224
15224
|
if (typeof W == "function") {
|
|
15225
|
-
|
|
15225
|
+
k4();
|
|
15226
15226
|
var re = W.call(U, g, A);
|
|
15227
15227
|
{
|
|
15228
15228
|
if (n.mode & dr) {
|
|
@@ -15233,7 +15233,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15233
15233
|
Ir(!1);
|
|
15234
15234
|
}
|
|
15235
15235
|
}
|
|
15236
|
-
|
|
15236
|
+
T4();
|
|
15237
15237
|
}
|
|
15238
15238
|
return re;
|
|
15239
15239
|
}
|
|
@@ -15242,10 +15242,10 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15242
15242
|
case r2:
|
|
15243
15243
|
n.flags = n.flags & ~va | on;
|
|
15244
15244
|
// Intentional fallthrough
|
|
15245
|
-
case
|
|
15245
|
+
case O4: {
|
|
15246
15246
|
var pe = h.payload, Me;
|
|
15247
15247
|
if (typeof pe == "function") {
|
|
15248
|
-
|
|
15248
|
+
k4(), Me = pe.call(U, g, A);
|
|
15249
15249
|
{
|
|
15250
15250
|
if (n.mode & dr) {
|
|
15251
15251
|
Ir(!0);
|
|
@@ -15255,7 +15255,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15255
15255
|
Ir(!1);
|
|
15256
15256
|
}
|
|
15257
15257
|
}
|
|
15258
|
-
|
|
15258
|
+
T4();
|
|
15259
15259
|
}
|
|
15260
15260
|
} else
|
|
15261
15261
|
Me = pe;
|
|
@@ -15343,13 +15343,13 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15343
15343
|
throw new Error("Invalid argument passed as callback. Expected a function. Instead " + ("received: " + n));
|
|
15344
15344
|
n.call(i);
|
|
15345
15345
|
}
|
|
15346
|
-
function
|
|
15346
|
+
function P4() {
|
|
15347
15347
|
Kb = !1;
|
|
15348
15348
|
}
|
|
15349
15349
|
function Xb() {
|
|
15350
15350
|
return Kb;
|
|
15351
15351
|
}
|
|
15352
|
-
function
|
|
15352
|
+
function I4(n, i, h) {
|
|
15353
15353
|
var g = i.effects;
|
|
15354
15354
|
if (i.effects = null, g !== null)
|
|
15355
15355
|
for (var A = 0; A < g.length; A++) {
|
|
@@ -15363,7 +15363,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15363
15363
|
throw new Error("Expected host context to exist. This error is likely caused by a bug in React. Please file an issue.");
|
|
15364
15364
|
return n;
|
|
15365
15365
|
}
|
|
15366
|
-
function
|
|
15366
|
+
function D4() {
|
|
15367
15367
|
var n = e1(Zb.current);
|
|
15368
15368
|
return n;
|
|
15369
15369
|
}
|
|
@@ -15379,7 +15379,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15379
15379
|
var n = e1(cf.current);
|
|
15380
15380
|
return n;
|
|
15381
15381
|
}
|
|
15382
|
-
function
|
|
15382
|
+
function U4(n) {
|
|
15383
15383
|
e1(Zb.current);
|
|
15384
15384
|
var i = e1(cf.current), h = iU(i, n.type);
|
|
15385
15385
|
i !== h && (Oi(hm, n, n), Oi(cf, h, n));
|
|
@@ -15387,15 +15387,15 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15387
15387
|
function l2(n) {
|
|
15388
15388
|
hm.current === n && (Ri(cf, n), Ri(hm, n));
|
|
15389
15389
|
}
|
|
15390
|
-
var qF = 0,
|
|
15390
|
+
var qF = 0, F4 = 1, B4 = 1, ym = 2, ru = af(qF);
|
|
15391
15391
|
function c2(n, i) {
|
|
15392
15392
|
return (n & i) !== 0;
|
|
15393
15393
|
}
|
|
15394
15394
|
function Yh(n) {
|
|
15395
|
-
return n &
|
|
15395
|
+
return n & F4;
|
|
15396
15396
|
}
|
|
15397
15397
|
function f2(n, i) {
|
|
15398
|
-
return n &
|
|
15398
|
+
return n & F4 | i;
|
|
15399
15399
|
}
|
|
15400
15400
|
function HF(n, i) {
|
|
15401
15401
|
return n | i;
|
|
@@ -15416,7 +15416,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15416
15416
|
var h = i.memoizedState;
|
|
15417
15417
|
if (h !== null) {
|
|
15418
15418
|
var g = h.dehydrated;
|
|
15419
|
-
if (g === null ||
|
|
15419
|
+
if (g === null || n4(g) || Mx(g))
|
|
15420
15420
|
return i;
|
|
15421
15421
|
}
|
|
15422
15422
|
} else if (i.tag === te && // revealOrder undefined can't be trusted because it don't
|
|
@@ -15467,7 +15467,7 @@ See https://reactjs.org/link/refs-must-have-owner for more information.`);
|
|
|
15467
15467
|
var h = i._getVersion, g = h(i._source);
|
|
15468
15468
|
n.mutableSourceEagerHydrationData == null ? n.mutableSourceEagerHydrationData = [i, g] : n.mutableSourceEagerHydrationData.push(i, g);
|
|
15469
15469
|
}
|
|
15470
|
-
var
|
|
15470
|
+
var Kt = t.ReactCurrentDispatcher, mm = t.ReactCurrentBatchConfig, h2, Xh;
|
|
15471
15471
|
h2 = /* @__PURE__ */ new Set();
|
|
15472
15472
|
var $d = St, pr = null, La = null, Na = null, n1 = !1, gm = !1, vm = 0, GF = 0, WF = 25, _t = null, Co = null, df = -1, y2 = !1;
|
|
15473
15473
|
function or() {
|
|
@@ -15526,17 +15526,17 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15526
15526
|
return !0;
|
|
15527
15527
|
}
|
|
15528
15528
|
function e0(n, i, h, g, A, U) {
|
|
15529
|
-
$d = U, pr = i, Co = n !== null ? n._debugHookTypes : null, df = -1, y2 = n !== null && n.type !== i.type, i.memoizedState = null, i.updateQueue = null, i.lanes = St, n !== null && n.memoizedState !== null ?
|
|
15529
|
+
$d = U, pr = i, Co = n !== null ? n._debugHookTypes : null, df = -1, y2 = n !== null && n.type !== i.type, i.memoizedState = null, i.updateQueue = null, i.lanes = St, n !== null && n.memoizedState !== null ? Kt.current = o5 : Co !== null ? Kt.current = s5 : Kt.current = i5;
|
|
15530
15530
|
var W = h(g, A);
|
|
15531
15531
|
if (gm) {
|
|
15532
15532
|
var re = 0;
|
|
15533
15533
|
do {
|
|
15534
15534
|
if (gm = !1, vm = 0, re >= WF)
|
|
15535
15535
|
throw new Error("Too many re-renders. React limits the number of renders to prevent an infinite loop.");
|
|
15536
|
-
re += 1, y2 = !1, La = null, Na = null, i.updateQueue = null, df = -1,
|
|
15536
|
+
re += 1, y2 = !1, La = null, Na = null, i.updateQueue = null, df = -1, Kt.current = u5, W = h(g, A);
|
|
15537
15537
|
} while (gm);
|
|
15538
15538
|
}
|
|
15539
|
-
|
|
15539
|
+
Kt.current = y1, i._debugHookTypes = Co;
|
|
15540
15540
|
var pe = La !== null && La.next !== null;
|
|
15541
15541
|
if ($d = St, pr = null, La = null, Na = null, _t = null, Co = null, df = -1, n !== null && (n.flags & Qr) !== (i.flags & Qr) && // Disable this warning in legacy mode, because legacy Suspense is weird
|
|
15542
15542
|
// and creates false positives. To make this work in legacy mode, we'd
|
|
@@ -15551,18 +15551,18 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15551
15551
|
var n = vm !== 0;
|
|
15552
15552
|
return vm = 0, n;
|
|
15553
15553
|
}
|
|
15554
|
-
function
|
|
15554
|
+
function z4(n, i, h) {
|
|
15555
15555
|
i.updateQueue = n.updateQueue, (i.mode & tr) !== cn ? i.flags &= -50333701 : i.flags &= -2053, n.lanes = gd(n.lanes, h);
|
|
15556
15556
|
}
|
|
15557
|
-
function
|
|
15558
|
-
if (
|
|
15557
|
+
function j4() {
|
|
15558
|
+
if (Kt.current = y1, n1) {
|
|
15559
15559
|
for (var n = pr.memoizedState; n !== null; ) {
|
|
15560
15560
|
var i = n.queue;
|
|
15561
15561
|
i !== null && (i.pending = null), n = n.next;
|
|
15562
15562
|
}
|
|
15563
15563
|
n1 = !1;
|
|
15564
15564
|
}
|
|
15565
|
-
$d = St, pr = null, La = null, Na = null, Co = null, df = -1, _t = null,
|
|
15565
|
+
$d = St, pr = null, La = null, Na = null, Co = null, df = -1, _t = null, e5 = !1, gm = !1, vm = 0;
|
|
15566
15566
|
}
|
|
15567
15567
|
function el() {
|
|
15568
15568
|
var n = {
|
|
@@ -15599,7 +15599,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15599
15599
|
}
|
|
15600
15600
|
return Na;
|
|
15601
15601
|
}
|
|
15602
|
-
function
|
|
15602
|
+
function q4() {
|
|
15603
15603
|
return {
|
|
15604
15604
|
lastEffect: null,
|
|
15605
15605
|
stores: null
|
|
@@ -15720,14 +15720,14 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15720
15720
|
var pe = P1();
|
|
15721
15721
|
if (pe === null)
|
|
15722
15722
|
throw new Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");
|
|
15723
|
-
vh(pe, $d) ||
|
|
15723
|
+
vh(pe, $d) || H4(g, i, U);
|
|
15724
15724
|
}
|
|
15725
15725
|
A.memoizedState = U;
|
|
15726
15726
|
var Me = {
|
|
15727
15727
|
value: U,
|
|
15728
15728
|
getSnapshot: i
|
|
15729
15729
|
};
|
|
15730
|
-
return A.queue = Me, o1($
|
|
15730
|
+
return A.queue = Me, o1($4.bind(null, g, Me, n), [n]), g.flags |= wi, bm(Ra | ri, V4.bind(null, g, Me, U, i), void 0, null), U;
|
|
15731
15731
|
}
|
|
15732
15732
|
function r1(n, i, h) {
|
|
15733
15733
|
var g = pr, A = Eo(), U = i();
|
|
@@ -15738,40 +15738,40 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15738
15738
|
var re = A.memoizedState, pe = !At(re, U);
|
|
15739
15739
|
pe && (A.memoizedState = U, km());
|
|
15740
15740
|
var Me = A.queue;
|
|
15741
|
-
if (_m($
|
|
15741
|
+
if (_m($4.bind(null, g, Me, n), [n]), Me.getSnapshot !== i || pe || // Check if the susbcribe function changed. We can save some memory by
|
|
15742
15742
|
// checking whether we scheduled a subscription effect above.
|
|
15743
15743
|
Na !== null && Na.memoizedState.tag & Ra) {
|
|
15744
|
-
g.flags |= wi, bm(Ra | ri,
|
|
15744
|
+
g.flags |= wi, bm(Ra | ri, V4.bind(null, g, Me, U, i), void 0, null);
|
|
15745
15745
|
var Le = P1();
|
|
15746
15746
|
if (Le === null)
|
|
15747
15747
|
throw new Error("Expected a work-in-progress root. This is a bug in React. Please file an issue.");
|
|
15748
|
-
vh(Le, $d) ||
|
|
15748
|
+
vh(Le, $d) || H4(g, i, U);
|
|
15749
15749
|
}
|
|
15750
15750
|
return U;
|
|
15751
15751
|
}
|
|
15752
|
-
function
|
|
15752
|
+
function H4(n, i, h) {
|
|
15753
15753
|
n.flags |= qc;
|
|
15754
15754
|
var g = {
|
|
15755
15755
|
getSnapshot: i,
|
|
15756
15756
|
value: h
|
|
15757
15757
|
}, A = pr.updateQueue;
|
|
15758
15758
|
if (A === null)
|
|
15759
|
-
A =
|
|
15759
|
+
A = q4(), pr.updateQueue = A, A.stores = [g];
|
|
15760
15760
|
else {
|
|
15761
15761
|
var U = A.stores;
|
|
15762
15762
|
U === null ? A.stores = [g] : U.push(g);
|
|
15763
15763
|
}
|
|
15764
15764
|
}
|
|
15765
|
-
function
|
|
15766
|
-
i.value = h, i.getSnapshot = g,
|
|
15765
|
+
function V4(n, i, h, g) {
|
|
15766
|
+
i.value = h, i.getSnapshot = g, G4(i) && W4(n);
|
|
15767
15767
|
}
|
|
15768
|
-
function $
|
|
15768
|
+
function $4(n, i, h) {
|
|
15769
15769
|
var g = function() {
|
|
15770
|
-
|
|
15770
|
+
G4(i) && W4(n);
|
|
15771
15771
|
};
|
|
15772
15772
|
return h(g);
|
|
15773
15773
|
}
|
|
15774
|
-
function
|
|
15774
|
+
function G4(n) {
|
|
15775
15775
|
var i = n.getSnapshot, h = n.value;
|
|
15776
15776
|
try {
|
|
15777
15777
|
var g = i();
|
|
@@ -15780,7 +15780,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15780
15780
|
return !0;
|
|
15781
15781
|
}
|
|
15782
15782
|
}
|
|
15783
|
-
function
|
|
15783
|
+
function W4(n) {
|
|
15784
15784
|
var i = xs(n, bn);
|
|
15785
15785
|
i !== null && Ua(i, n, bn, yr);
|
|
15786
15786
|
}
|
|
@@ -15815,7 +15815,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15815
15815
|
next: null
|
|
15816
15816
|
}, U = pr.updateQueue;
|
|
15817
15817
|
if (U === null)
|
|
15818
|
-
U =
|
|
15818
|
+
U = q4(), pr.updateQueue = U, U.lastEffect = A.next = A;
|
|
15819
15819
|
else {
|
|
15820
15820
|
var W = U.lastEffect;
|
|
15821
15821
|
if (W === null)
|
|
@@ -15877,7 +15877,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15877
15877
|
function l1(n, i) {
|
|
15878
15878
|
return s1(Hn, Oa, n, i);
|
|
15879
15879
|
}
|
|
15880
|
-
function
|
|
15880
|
+
function K4(n, i) {
|
|
15881
15881
|
if (typeof i == "function") {
|
|
15882
15882
|
var h = i, g = n();
|
|
15883
15883
|
return h(g), function() {
|
|
@@ -15895,12 +15895,12 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15895
15895
|
function k2(n, i, h) {
|
|
15896
15896
|
typeof i != "function" && o("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.", i !== null ? typeof i : "null");
|
|
15897
15897
|
var g = h != null ? h.concat([n]) : null, A = Hn;
|
|
15898
|
-
return A |= $o, (pr.mode & tr) !== cn && (A |= Iu), wm(A, Oa,
|
|
15898
|
+
return A |= $o, (pr.mode & tr) !== cn && (A |= Iu), wm(A, Oa, K4.bind(null, i, n), g);
|
|
15899
15899
|
}
|
|
15900
15900
|
function c1(n, i, h) {
|
|
15901
15901
|
typeof i != "function" && o("Expected useImperativeHandle() second argument to be a function that creates a handle. Instead received: %s.", i !== null ? typeof i : "null");
|
|
15902
15902
|
var g = h != null ? h.concat([n]) : null;
|
|
15903
|
-
return s1(Hn, Oa,
|
|
15903
|
+
return s1(Hn, Oa, K4.bind(null, i, n), g);
|
|
15904
15904
|
}
|
|
15905
15905
|
function JF(n, i) {
|
|
15906
15906
|
}
|
|
@@ -15936,18 +15936,18 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15936
15936
|
var i = el();
|
|
15937
15937
|
return i.memoizedState = n, n;
|
|
15938
15938
|
}
|
|
15939
|
-
function
|
|
15939
|
+
function J4(n) {
|
|
15940
15940
|
var i = Eo(), h = La, g = h.memoizedState;
|
|
15941
|
-
return
|
|
15941
|
+
return Q4(i, g, n);
|
|
15942
15942
|
}
|
|
15943
|
-
function
|
|
15943
|
+
function Y4(n) {
|
|
15944
15944
|
var i = Eo();
|
|
15945
15945
|
if (La === null)
|
|
15946
15946
|
return i.memoizedState = n, n;
|
|
15947
15947
|
var h = La.memoizedState;
|
|
15948
|
-
return
|
|
15948
|
+
return Q4(i, h, n);
|
|
15949
15949
|
}
|
|
15950
|
-
function
|
|
15950
|
+
function Q4(n, i, h) {
|
|
15951
15951
|
var g = !Sy($d);
|
|
15952
15952
|
if (g) {
|
|
15953
15953
|
if (!At(h, i)) {
|
|
@@ -15978,17 +15978,17 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
15978
15978
|
var n = a1(!1), i = n[0], h = n[1], g = YF.bind(null, h), A = el();
|
|
15979
15979
|
return A.memoizedState = g, [i, g];
|
|
15980
15980
|
}
|
|
15981
|
-
function
|
|
15981
|
+
function X4() {
|
|
15982
15982
|
var n = x2(), i = n[0], h = Eo(), g = h.memoizedState;
|
|
15983
15983
|
return [i, g];
|
|
15984
15984
|
}
|
|
15985
|
-
function
|
|
15985
|
+
function Z4() {
|
|
15986
15986
|
var n = S2(), i = n[0], h = Eo(), g = h.memoizedState;
|
|
15987
15987
|
return [i, g];
|
|
15988
15988
|
}
|
|
15989
|
-
var
|
|
15989
|
+
var e5 = !1;
|
|
15990
15990
|
function QF() {
|
|
15991
|
-
return
|
|
15991
|
+
return e5;
|
|
15992
15992
|
}
|
|
15993
15993
|
function L2() {
|
|
15994
15994
|
var n = el(), i = P1(), h = i.identifierPrefix, g;
|
|
@@ -16016,16 +16016,16 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16016
16016
|
eagerState: null,
|
|
16017
16017
|
next: null
|
|
16018
16018
|
};
|
|
16019
|
-
if (
|
|
16020
|
-
|
|
16019
|
+
if (t5(n))
|
|
16020
|
+
n5(i, A);
|
|
16021
16021
|
else {
|
|
16022
|
-
var U =
|
|
16022
|
+
var U = R4(n, i, A, g);
|
|
16023
16023
|
if (U !== null) {
|
|
16024
16024
|
var W = Qi();
|
|
16025
|
-
Ua(U, n, g, W),
|
|
16025
|
+
Ua(U, n, g, W), r5(U, i, g);
|
|
16026
16026
|
}
|
|
16027
16027
|
}
|
|
16028
|
-
|
|
16028
|
+
a5(n, g);
|
|
16029
16029
|
}
|
|
16030
16030
|
function ZF(n, i, h) {
|
|
16031
16031
|
typeof arguments[3] == "function" && o("State updates from the useState() and useReducer() Hooks don't support the second callback argument. To execute a side effect after rendering, declare it in the component body with useEffect().");
|
|
@@ -16036,15 +16036,15 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16036
16036
|
eagerState: null,
|
|
16037
16037
|
next: null
|
|
16038
16038
|
};
|
|
16039
|
-
if (
|
|
16040
|
-
|
|
16039
|
+
if (t5(n))
|
|
16040
|
+
n5(i, A);
|
|
16041
16041
|
else {
|
|
16042
16042
|
var U = n.alternate;
|
|
16043
16043
|
if (n.lanes === St && (U === null || U.lanes === St)) {
|
|
16044
16044
|
var W = i.lastRenderedReducer;
|
|
16045
16045
|
if (W !== null) {
|
|
16046
16046
|
var re;
|
|
16047
|
-
re =
|
|
16047
|
+
re = Kt.current, Kt.current = au;
|
|
16048
16048
|
try {
|
|
16049
16049
|
var pe = i.lastRenderedState, Me = W(pe, h);
|
|
16050
16050
|
if (A.hasEagerState = !0, A.eagerState = Me, At(Me, pe)) {
|
|
@@ -16053,28 +16053,28 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16053
16053
|
}
|
|
16054
16054
|
} catch {
|
|
16055
16055
|
} finally {
|
|
16056
|
-
|
|
16056
|
+
Kt.current = re;
|
|
16057
16057
|
}
|
|
16058
16058
|
}
|
|
16059
16059
|
}
|
|
16060
|
-
var Le =
|
|
16060
|
+
var Le = R4(n, i, A, g);
|
|
16061
16061
|
if (Le !== null) {
|
|
16062
16062
|
var Ke = Qi();
|
|
16063
|
-
Ua(Le, n, g, Ke),
|
|
16063
|
+
Ua(Le, n, g, Ke), r5(Le, i, g);
|
|
16064
16064
|
}
|
|
16065
16065
|
}
|
|
16066
|
-
|
|
16066
|
+
a5(n, g);
|
|
16067
16067
|
}
|
|
16068
|
-
function
|
|
16068
|
+
function t5(n) {
|
|
16069
16069
|
var i = n.alternate;
|
|
16070
16070
|
return n === pr || i !== null && i === pr;
|
|
16071
16071
|
}
|
|
16072
|
-
function
|
|
16072
|
+
function n5(n, i) {
|
|
16073
16073
|
gm = n1 = !0;
|
|
16074
16074
|
var h = n.pending;
|
|
16075
16075
|
h === null ? i.next = i : (i.next = h.next, h.next = i), n.pending = i;
|
|
16076
16076
|
}
|
|
16077
|
-
function
|
|
16077
|
+
function r5(n, i, h) {
|
|
16078
16078
|
if (Ey(h)) {
|
|
16079
16079
|
var g = i.lanes;
|
|
16080
16080
|
g = ky(g, n.pendingLanes);
|
|
@@ -16082,7 +16082,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16082
16082
|
i.lanes = A, wh(n, A);
|
|
16083
16083
|
}
|
|
16084
16084
|
}
|
|
16085
|
-
function
|
|
16085
|
+
function a5(n, i, h) {
|
|
16086
16086
|
od(n, i);
|
|
16087
16087
|
}
|
|
16088
16088
|
var y1 = {
|
|
@@ -16104,14 +16104,14 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16104
16104
|
useSyncExternalStore: Li,
|
|
16105
16105
|
useId: Li,
|
|
16106
16106
|
unstable_isNewReconciler: z
|
|
16107
|
-
},
|
|
16107
|
+
}, i5 = null, s5 = null, o5 = null, u5 = null, tl = null, au = null, m1 = null;
|
|
16108
16108
|
{
|
|
16109
16109
|
var N2 = function() {
|
|
16110
16110
|
o("Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo().");
|
|
16111
16111
|
}, An = function() {
|
|
16112
16112
|
o("Do not call Hooks inside useEffect(...), useMemo(...), or other built-in Hooks. You can only call Hooks at the top level of your React function. For more information, see https://reactjs.org/link/rules-of-hooks");
|
|
16113
16113
|
};
|
|
16114
|
-
|
|
16114
|
+
i5 = {
|
|
16115
16115
|
readContext: function(n) {
|
|
16116
16116
|
return xa(n);
|
|
16117
16117
|
},
|
|
@@ -16135,22 +16135,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16135
16135
|
},
|
|
16136
16136
|
useMemo: function(n, i) {
|
|
16137
16137
|
_t = "useMemo", or(), Zh(i);
|
|
16138
|
-
var h =
|
|
16139
|
-
|
|
16138
|
+
var h = Kt.current;
|
|
16139
|
+
Kt.current = tl;
|
|
16140
16140
|
try {
|
|
16141
16141
|
return M2(n, i);
|
|
16142
16142
|
} finally {
|
|
16143
|
-
|
|
16143
|
+
Kt.current = h;
|
|
16144
16144
|
}
|
|
16145
16145
|
},
|
|
16146
16146
|
useReducer: function(n, i, h) {
|
|
16147
16147
|
_t = "useReducer", or();
|
|
16148
|
-
var g =
|
|
16149
|
-
|
|
16148
|
+
var g = Kt.current;
|
|
16149
|
+
Kt.current = tl;
|
|
16150
16150
|
try {
|
|
16151
16151
|
return v2(n, i, h);
|
|
16152
16152
|
} finally {
|
|
16153
|
-
|
|
16153
|
+
Kt.current = g;
|
|
16154
16154
|
}
|
|
16155
16155
|
},
|
|
16156
16156
|
useRef: function(n) {
|
|
@@ -16158,12 +16158,12 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16158
16158
|
},
|
|
16159
16159
|
useState: function(n) {
|
|
16160
16160
|
_t = "useState", or();
|
|
16161
|
-
var i =
|
|
16162
|
-
|
|
16161
|
+
var i = Kt.current;
|
|
16162
|
+
Kt.current = tl;
|
|
16163
16163
|
try {
|
|
16164
16164
|
return a1(n);
|
|
16165
16165
|
} finally {
|
|
16166
|
-
|
|
16166
|
+
Kt.current = i;
|
|
16167
16167
|
}
|
|
16168
16168
|
},
|
|
16169
16169
|
useDebugValue: function(n, i) {
|
|
@@ -16185,7 +16185,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16185
16185
|
return _t = "useId", or(), L2();
|
|
16186
16186
|
},
|
|
16187
16187
|
unstable_isNewReconciler: z
|
|
16188
|
-
},
|
|
16188
|
+
}, s5 = {
|
|
16189
16189
|
readContext: function(n) {
|
|
16190
16190
|
return xa(n);
|
|
16191
16191
|
},
|
|
@@ -16209,22 +16209,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16209
16209
|
},
|
|
16210
16210
|
useMemo: function(n, i) {
|
|
16211
16211
|
_t = "useMemo", zt();
|
|
16212
|
-
var h =
|
|
16213
|
-
|
|
16212
|
+
var h = Kt.current;
|
|
16213
|
+
Kt.current = tl;
|
|
16214
16214
|
try {
|
|
16215
16215
|
return M2(n, i);
|
|
16216
16216
|
} finally {
|
|
16217
|
-
|
|
16217
|
+
Kt.current = h;
|
|
16218
16218
|
}
|
|
16219
16219
|
},
|
|
16220
16220
|
useReducer: function(n, i, h) {
|
|
16221
16221
|
_t = "useReducer", zt();
|
|
16222
|
-
var g =
|
|
16223
|
-
|
|
16222
|
+
var g = Kt.current;
|
|
16223
|
+
Kt.current = tl;
|
|
16224
16224
|
try {
|
|
16225
16225
|
return v2(n, i, h);
|
|
16226
16226
|
} finally {
|
|
16227
|
-
|
|
16227
|
+
Kt.current = g;
|
|
16228
16228
|
}
|
|
16229
16229
|
},
|
|
16230
16230
|
useRef: function(n) {
|
|
@@ -16232,12 +16232,12 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16232
16232
|
},
|
|
16233
16233
|
useState: function(n) {
|
|
16234
16234
|
_t = "useState", zt();
|
|
16235
|
-
var i =
|
|
16236
|
-
|
|
16235
|
+
var i = Kt.current;
|
|
16236
|
+
Kt.current = tl;
|
|
16237
16237
|
try {
|
|
16238
16238
|
return a1(n);
|
|
16239
16239
|
} finally {
|
|
16240
|
-
|
|
16240
|
+
Kt.current = i;
|
|
16241
16241
|
}
|
|
16242
16242
|
},
|
|
16243
16243
|
useDebugValue: function(n, i) {
|
|
@@ -16259,7 +16259,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16259
16259
|
return _t = "useId", zt(), L2();
|
|
16260
16260
|
},
|
|
16261
16261
|
unstable_isNewReconciler: z
|
|
16262
|
-
},
|
|
16262
|
+
}, o5 = {
|
|
16263
16263
|
readContext: function(n) {
|
|
16264
16264
|
return xa(n);
|
|
16265
16265
|
},
|
|
@@ -16283,22 +16283,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16283
16283
|
},
|
|
16284
16284
|
useMemo: function(n, i) {
|
|
16285
16285
|
_t = "useMemo", zt();
|
|
16286
|
-
var h =
|
|
16287
|
-
|
|
16286
|
+
var h = Kt.current;
|
|
16287
|
+
Kt.current = au;
|
|
16288
16288
|
try {
|
|
16289
16289
|
return p1(n, i);
|
|
16290
16290
|
} finally {
|
|
16291
|
-
|
|
16291
|
+
Kt.current = h;
|
|
16292
16292
|
}
|
|
16293
16293
|
},
|
|
16294
16294
|
useReducer: function(n, i, h) {
|
|
16295
16295
|
_t = "useReducer", zt();
|
|
16296
|
-
var g =
|
|
16297
|
-
|
|
16296
|
+
var g = Kt.current;
|
|
16297
|
+
Kt.current = au;
|
|
16298
16298
|
try {
|
|
16299
16299
|
return b2(n, i, h);
|
|
16300
16300
|
} finally {
|
|
16301
|
-
|
|
16301
|
+
Kt.current = g;
|
|
16302
16302
|
}
|
|
16303
16303
|
},
|
|
16304
16304
|
useRef: function(n) {
|
|
@@ -16306,22 +16306,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16306
16306
|
},
|
|
16307
16307
|
useState: function(n) {
|
|
16308
16308
|
_t = "useState", zt();
|
|
16309
|
-
var i =
|
|
16310
|
-
|
|
16309
|
+
var i = Kt.current;
|
|
16310
|
+
Kt.current = au;
|
|
16311
16311
|
try {
|
|
16312
16312
|
return x2(n);
|
|
16313
16313
|
} finally {
|
|
16314
|
-
|
|
16314
|
+
Kt.current = i;
|
|
16315
16315
|
}
|
|
16316
16316
|
},
|
|
16317
16317
|
useDebugValue: function(n, i) {
|
|
16318
16318
|
return _t = "useDebugValue", zt(), f1();
|
|
16319
16319
|
},
|
|
16320
16320
|
useDeferredValue: function(n) {
|
|
16321
|
-
return _t = "useDeferredValue", zt(),
|
|
16321
|
+
return _t = "useDeferredValue", zt(), J4(n);
|
|
16322
16322
|
},
|
|
16323
16323
|
useTransition: function() {
|
|
16324
|
-
return _t = "useTransition", zt(),
|
|
16324
|
+
return _t = "useTransition", zt(), X4();
|
|
16325
16325
|
},
|
|
16326
16326
|
useMutableSource: function(n, i, h) {
|
|
16327
16327
|
return _t = "useMutableSource", zt(), void 0;
|
|
@@ -16333,7 +16333,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16333
16333
|
return _t = "useId", zt(), h1();
|
|
16334
16334
|
},
|
|
16335
16335
|
unstable_isNewReconciler: z
|
|
16336
|
-
},
|
|
16336
|
+
}, u5 = {
|
|
16337
16337
|
readContext: function(n) {
|
|
16338
16338
|
return xa(n);
|
|
16339
16339
|
},
|
|
@@ -16357,22 +16357,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16357
16357
|
},
|
|
16358
16358
|
useMemo: function(n, i) {
|
|
16359
16359
|
_t = "useMemo", zt();
|
|
16360
|
-
var h =
|
|
16361
|
-
|
|
16360
|
+
var h = Kt.current;
|
|
16361
|
+
Kt.current = m1;
|
|
16362
16362
|
try {
|
|
16363
16363
|
return p1(n, i);
|
|
16364
16364
|
} finally {
|
|
16365
|
-
|
|
16365
|
+
Kt.current = h;
|
|
16366
16366
|
}
|
|
16367
16367
|
},
|
|
16368
16368
|
useReducer: function(n, i, h) {
|
|
16369
16369
|
_t = "useReducer", zt();
|
|
16370
|
-
var g =
|
|
16371
|
-
|
|
16370
|
+
var g = Kt.current;
|
|
16371
|
+
Kt.current = m1;
|
|
16372
16372
|
try {
|
|
16373
16373
|
return w2(n, i, h);
|
|
16374
16374
|
} finally {
|
|
16375
|
-
|
|
16375
|
+
Kt.current = g;
|
|
16376
16376
|
}
|
|
16377
16377
|
},
|
|
16378
16378
|
useRef: function(n) {
|
|
@@ -16380,22 +16380,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16380
16380
|
},
|
|
16381
16381
|
useState: function(n) {
|
|
16382
16382
|
_t = "useState", zt();
|
|
16383
|
-
var i =
|
|
16384
|
-
|
|
16383
|
+
var i = Kt.current;
|
|
16384
|
+
Kt.current = m1;
|
|
16385
16385
|
try {
|
|
16386
16386
|
return S2(n);
|
|
16387
16387
|
} finally {
|
|
16388
|
-
|
|
16388
|
+
Kt.current = i;
|
|
16389
16389
|
}
|
|
16390
16390
|
},
|
|
16391
16391
|
useDebugValue: function(n, i) {
|
|
16392
16392
|
return _t = "useDebugValue", zt(), f1();
|
|
16393
16393
|
},
|
|
16394
16394
|
useDeferredValue: function(n) {
|
|
16395
|
-
return _t = "useDeferredValue", zt(),
|
|
16395
|
+
return _t = "useDeferredValue", zt(), Y4(n);
|
|
16396
16396
|
},
|
|
16397
16397
|
useTransition: function() {
|
|
16398
|
-
return _t = "useTransition", zt(),
|
|
16398
|
+
return _t = "useTransition", zt(), Z4();
|
|
16399
16399
|
},
|
|
16400
16400
|
useMutableSource: function(n, i, h) {
|
|
16401
16401
|
return _t = "useMutableSource", zt(), void 0;
|
|
@@ -16431,22 +16431,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16431
16431
|
},
|
|
16432
16432
|
useMemo: function(n, i) {
|
|
16433
16433
|
_t = "useMemo", An(), or();
|
|
16434
|
-
var h =
|
|
16435
|
-
|
|
16434
|
+
var h = Kt.current;
|
|
16435
|
+
Kt.current = tl;
|
|
16436
16436
|
try {
|
|
16437
16437
|
return M2(n, i);
|
|
16438
16438
|
} finally {
|
|
16439
|
-
|
|
16439
|
+
Kt.current = h;
|
|
16440
16440
|
}
|
|
16441
16441
|
},
|
|
16442
16442
|
useReducer: function(n, i, h) {
|
|
16443
16443
|
_t = "useReducer", An(), or();
|
|
16444
|
-
var g =
|
|
16445
|
-
|
|
16444
|
+
var g = Kt.current;
|
|
16445
|
+
Kt.current = tl;
|
|
16446
16446
|
try {
|
|
16447
16447
|
return v2(n, i, h);
|
|
16448
16448
|
} finally {
|
|
16449
|
-
|
|
16449
|
+
Kt.current = g;
|
|
16450
16450
|
}
|
|
16451
16451
|
},
|
|
16452
16452
|
useRef: function(n) {
|
|
@@ -16454,12 +16454,12 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16454
16454
|
},
|
|
16455
16455
|
useState: function(n) {
|
|
16456
16456
|
_t = "useState", An(), or();
|
|
16457
|
-
var i =
|
|
16458
|
-
|
|
16457
|
+
var i = Kt.current;
|
|
16458
|
+
Kt.current = tl;
|
|
16459
16459
|
try {
|
|
16460
16460
|
return a1(n);
|
|
16461
16461
|
} finally {
|
|
16462
|
-
|
|
16462
|
+
Kt.current = i;
|
|
16463
16463
|
}
|
|
16464
16464
|
},
|
|
16465
16465
|
useDebugValue: function(n, i) {
|
|
@@ -16505,22 +16505,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16505
16505
|
},
|
|
16506
16506
|
useMemo: function(n, i) {
|
|
16507
16507
|
_t = "useMemo", An(), zt();
|
|
16508
|
-
var h =
|
|
16509
|
-
|
|
16508
|
+
var h = Kt.current;
|
|
16509
|
+
Kt.current = au;
|
|
16510
16510
|
try {
|
|
16511
16511
|
return p1(n, i);
|
|
16512
16512
|
} finally {
|
|
16513
|
-
|
|
16513
|
+
Kt.current = h;
|
|
16514
16514
|
}
|
|
16515
16515
|
},
|
|
16516
16516
|
useReducer: function(n, i, h) {
|
|
16517
16517
|
_t = "useReducer", An(), zt();
|
|
16518
|
-
var g =
|
|
16519
|
-
|
|
16518
|
+
var g = Kt.current;
|
|
16519
|
+
Kt.current = au;
|
|
16520
16520
|
try {
|
|
16521
16521
|
return b2(n, i, h);
|
|
16522
16522
|
} finally {
|
|
16523
|
-
|
|
16523
|
+
Kt.current = g;
|
|
16524
16524
|
}
|
|
16525
16525
|
},
|
|
16526
16526
|
useRef: function(n) {
|
|
@@ -16528,22 +16528,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16528
16528
|
},
|
|
16529
16529
|
useState: function(n) {
|
|
16530
16530
|
_t = "useState", An(), zt();
|
|
16531
|
-
var i =
|
|
16532
|
-
|
|
16531
|
+
var i = Kt.current;
|
|
16532
|
+
Kt.current = au;
|
|
16533
16533
|
try {
|
|
16534
16534
|
return x2(n);
|
|
16535
16535
|
} finally {
|
|
16536
|
-
|
|
16536
|
+
Kt.current = i;
|
|
16537
16537
|
}
|
|
16538
16538
|
},
|
|
16539
16539
|
useDebugValue: function(n, i) {
|
|
16540
16540
|
return _t = "useDebugValue", An(), zt(), f1();
|
|
16541
16541
|
},
|
|
16542
16542
|
useDeferredValue: function(n) {
|
|
16543
|
-
return _t = "useDeferredValue", An(), zt(),
|
|
16543
|
+
return _t = "useDeferredValue", An(), zt(), J4(n);
|
|
16544
16544
|
},
|
|
16545
16545
|
useTransition: function() {
|
|
16546
|
-
return _t = "useTransition", An(), zt(),
|
|
16546
|
+
return _t = "useTransition", An(), zt(), X4();
|
|
16547
16547
|
},
|
|
16548
16548
|
useMutableSource: function(n, i, h) {
|
|
16549
16549
|
return _t = "useMutableSource", An(), zt(), void 0;
|
|
@@ -16579,22 +16579,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16579
16579
|
},
|
|
16580
16580
|
useMemo: function(n, i) {
|
|
16581
16581
|
_t = "useMemo", An(), zt();
|
|
16582
|
-
var h =
|
|
16583
|
-
|
|
16582
|
+
var h = Kt.current;
|
|
16583
|
+
Kt.current = au;
|
|
16584
16584
|
try {
|
|
16585
16585
|
return p1(n, i);
|
|
16586
16586
|
} finally {
|
|
16587
|
-
|
|
16587
|
+
Kt.current = h;
|
|
16588
16588
|
}
|
|
16589
16589
|
},
|
|
16590
16590
|
useReducer: function(n, i, h) {
|
|
16591
16591
|
_t = "useReducer", An(), zt();
|
|
16592
|
-
var g =
|
|
16593
|
-
|
|
16592
|
+
var g = Kt.current;
|
|
16593
|
+
Kt.current = au;
|
|
16594
16594
|
try {
|
|
16595
16595
|
return w2(n, i, h);
|
|
16596
16596
|
} finally {
|
|
16597
|
-
|
|
16597
|
+
Kt.current = g;
|
|
16598
16598
|
}
|
|
16599
16599
|
},
|
|
16600
16600
|
useRef: function(n) {
|
|
@@ -16602,22 +16602,22 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16602
16602
|
},
|
|
16603
16603
|
useState: function(n) {
|
|
16604
16604
|
_t = "useState", An(), zt();
|
|
16605
|
-
var i =
|
|
16606
|
-
|
|
16605
|
+
var i = Kt.current;
|
|
16606
|
+
Kt.current = au;
|
|
16607
16607
|
try {
|
|
16608
16608
|
return S2(n);
|
|
16609
16609
|
} finally {
|
|
16610
|
-
|
|
16610
|
+
Kt.current = i;
|
|
16611
16611
|
}
|
|
16612
16612
|
},
|
|
16613
16613
|
useDebugValue: function(n, i) {
|
|
16614
16614
|
return _t = "useDebugValue", An(), zt(), f1();
|
|
16615
16615
|
},
|
|
16616
16616
|
useDeferredValue: function(n) {
|
|
16617
|
-
return _t = "useDeferredValue", An(), zt(),
|
|
16617
|
+
return _t = "useDeferredValue", An(), zt(), Y4(n);
|
|
16618
16618
|
},
|
|
16619
16619
|
useTransition: function() {
|
|
16620
|
-
return _t = "useTransition", An(), zt(),
|
|
16620
|
+
return _t = "useTransition", An(), zt(), Z4();
|
|
16621
16621
|
},
|
|
16622
16622
|
useMutableSource: function(n, i, h) {
|
|
16623
16623
|
return _t = "useMutableSource", An(), zt(), void 0;
|
|
@@ -16631,8 +16631,8 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16631
16631
|
unstable_isNewReconciler: z
|
|
16632
16632
|
};
|
|
16633
16633
|
}
|
|
16634
|
-
var pf = e.unstable_now,
|
|
16635
|
-
function
|
|
16634
|
+
var pf = e.unstable_now, l5 = 0, g1 = -1, xm = -1, v1 = -1, P2 = !1, b1 = !1;
|
|
16635
|
+
function c5() {
|
|
16636
16636
|
return P2;
|
|
16637
16637
|
}
|
|
16638
16638
|
function eB() {
|
|
@@ -16644,16 +16644,16 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16644
16644
|
function nB() {
|
|
16645
16645
|
P2 = b1, b1 = !1;
|
|
16646
16646
|
}
|
|
16647
|
-
function
|
|
16648
|
-
return
|
|
16647
|
+
function f5() {
|
|
16648
|
+
return l5;
|
|
16649
16649
|
}
|
|
16650
|
-
function
|
|
16651
|
-
|
|
16650
|
+
function d5() {
|
|
16651
|
+
l5 = pf();
|
|
16652
16652
|
}
|
|
16653
16653
|
function I2(n) {
|
|
16654
16654
|
xm = pf(), n.actualStartTime < 0 && (n.actualStartTime = pf());
|
|
16655
16655
|
}
|
|
16656
|
-
function
|
|
16656
|
+
function p5(n) {
|
|
16657
16657
|
xm = -1;
|
|
16658
16658
|
}
|
|
16659
16659
|
function w1(n, i) {
|
|
@@ -16719,16 +16719,16 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16719
16719
|
}
|
|
16720
16720
|
return i;
|
|
16721
16721
|
}
|
|
16722
|
-
var B2 = {}, z2, j2, q2, H2, V2,
|
|
16722
|
+
var B2 = {}, z2, j2, q2, H2, V2, h5, _1, $2, G2, W2, Sm;
|
|
16723
16723
|
{
|
|
16724
16724
|
z2 = /* @__PURE__ */ new Set(), j2 = /* @__PURE__ */ new Set(), q2 = /* @__PURE__ */ new Set(), H2 = /* @__PURE__ */ new Set(), $2 = /* @__PURE__ */ new Set(), V2 = /* @__PURE__ */ new Set(), G2 = /* @__PURE__ */ new Set(), W2 = /* @__PURE__ */ new Set(), Sm = /* @__PURE__ */ new Set();
|
|
16725
|
-
var
|
|
16725
|
+
var y5 = /* @__PURE__ */ new Set();
|
|
16726
16726
|
_1 = function(n, i) {
|
|
16727
16727
|
if (!(n === null || typeof n == "function")) {
|
|
16728
16728
|
var h = i + "_" + n;
|
|
16729
|
-
|
|
16729
|
+
y5.has(h) || (y5.add(h), o("%s(...): Expected the last optional `callback` argument to be a function. Instead received: %s.", i, n));
|
|
16730
16730
|
}
|
|
16731
|
-
},
|
|
16731
|
+
}, h5 = function(n, i) {
|
|
16732
16732
|
if (i === void 0) {
|
|
16733
16733
|
var h = Kn(n) || "Component";
|
|
16734
16734
|
V2.has(h) || (V2.add(h), o("%s.getDerivedStateFromProps(): A valid state object (or null) must be returned. You have returned undefined.", h));
|
|
@@ -16751,7 +16751,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16751
16751
|
Ir(!1);
|
|
16752
16752
|
}
|
|
16753
16753
|
}
|
|
16754
|
-
|
|
16754
|
+
h5(i, U);
|
|
16755
16755
|
}
|
|
16756
16756
|
var W = U == null ? A : En({}, A, U);
|
|
16757
16757
|
if (n.memoizedState = W, n.lanes === St) {
|
|
@@ -16769,7 +16769,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16769
16769
|
},
|
|
16770
16770
|
enqueueReplaceState: function(n, i, h) {
|
|
16771
16771
|
var g = jc(n), A = Qi(), U = gf(g), W = oc(A, U);
|
|
16772
|
-
W.tag =
|
|
16772
|
+
W.tag = L4, W.payload = i, h != null && (_1(h, "replaceState"), W.callback = h);
|
|
16773
16773
|
var re = lf(g, W, U);
|
|
16774
16774
|
re !== null && (Ua(re, g, U, A), Yb(re, g, U)), od(g, U);
|
|
16775
16775
|
},
|
|
@@ -16780,7 +16780,7 @@ Incoming: %s`, _t, "[" + i.join(", ") + "]", "[" + n.join(", ") + "]");
|
|
|
16780
16780
|
W !== null && (Ua(W, h, A, g), Yb(W, h, A)), Xp(h, A);
|
|
16781
16781
|
}
|
|
16782
16782
|
};
|
|
16783
|
-
function
|
|
16783
|
+
function m5(n, i, h, g, A, U, W) {
|
|
16784
16784
|
var re = n.stateNode;
|
|
16785
16785
|
if (typeof re.shouldComponentUpdate == "function") {
|
|
16786
16786
|
var pe = re.shouldComponentUpdate(g, U, W);
|
|
@@ -16818,10 +16818,10 @@ Learn more about this warning here: https://reactjs.org/link/legacy-context`, A)
|
|
|
16818
16818
|
re && (typeof re != "object" || Ln(re)) && o("%s.state: must be set to an object or null", A), typeof g.getChildContext == "function" && typeof i.childContextTypes != "object" && o("%s.getChildContext(): childContextTypes must be defined in order to use getChildContext().", A);
|
|
16819
16819
|
}
|
|
16820
16820
|
}
|
|
16821
|
-
function
|
|
16821
|
+
function g5(n, i) {
|
|
16822
16822
|
i.updater = J2, n.stateNode = i, Il(i, n), i._reactInternalInstance = B2;
|
|
16823
16823
|
}
|
|
16824
|
-
function
|
|
16824
|
+
function v5(n, i, h) {
|
|
16825
16825
|
var g = !1, A = Gs, U = Gs, W = i.contextType;
|
|
16826
16826
|
if ("contextType" in i) {
|
|
16827
16827
|
var re = (
|
|
@@ -16851,7 +16851,7 @@ Learn more about this warning here: https://reactjs.org/link/legacy-context`, A)
|
|
|
16851
16851
|
}
|
|
16852
16852
|
}
|
|
16853
16853
|
var Ke = n.memoizedState = Le.state !== null && Le.state !== void 0 ? Le.state : null;
|
|
16854
|
-
|
|
16854
|
+
g5(n, Le);
|
|
16855
16855
|
{
|
|
16856
16856
|
if (typeof i.getDerivedStateFromProps == "function" && Ke === null) {
|
|
16857
16857
|
var Ge = Kn(i) || "Component";
|
|
@@ -16873,13 +16873,13 @@ https://reactjs.org/link/unsafe-component-lifecycles`, Vt, hn, at !== null ? `
|
|
|
16873
16873
|
}
|
|
16874
16874
|
}
|
|
16875
16875
|
}
|
|
16876
|
-
return g &&
|
|
16876
|
+
return g && o4(n, A, U), Le;
|
|
16877
16877
|
}
|
|
16878
16878
|
function aB(n, i) {
|
|
16879
16879
|
var h = i.state;
|
|
16880
16880
|
typeof i.componentWillMount == "function" && i.componentWillMount(), typeof i.UNSAFE_componentWillMount == "function" && i.UNSAFE_componentWillMount(), h !== i.state && (o("%s.componentWillMount(): Assigning directly to this.state is deprecated (except inside a component's constructor). Use setState instead.", Cn(n) || "Component"), J2.enqueueReplaceState(i, i.state, null));
|
|
16881
16881
|
}
|
|
16882
|
-
function
|
|
16882
|
+
function b5(n, i, h, g) {
|
|
16883
16883
|
var A = i.state;
|
|
16884
16884
|
if (typeof i.componentWillReceiveProps == "function" && i.componentWillReceiveProps(h, g), typeof i.UNSAFE_componentWillReceiveProps == "function" && i.UNSAFE_componentWillReceiveProps(h, g), i.state !== A) {
|
|
16885
16885
|
{
|
|
@@ -16925,7 +16925,7 @@ https://reactjs.org/link/unsafe-component-lifecycles`, Vt, hn, at !== null ? `
|
|
|
16925
16925
|
pe = qh(n, Me);
|
|
16926
16926
|
}
|
|
16927
16927
|
var Le = i.getDerivedStateFromProps, Ke = typeof Le == "function" || typeof A.getSnapshotBeforeUpdate == "function";
|
|
16928
|
-
!Ke && (typeof A.UNSAFE_componentWillReceiveProps == "function" || typeof A.componentWillReceiveProps == "function") && (U !== h || W !== pe) &&
|
|
16928
|
+
!Ke && (typeof A.UNSAFE_componentWillReceiveProps == "function" || typeof A.componentWillReceiveProps == "function") && (U !== h || W !== pe) && b5(n, A, h, pe), P4();
|
|
16929
16929
|
var Ge = n.memoizedState, at = A.state = Ge;
|
|
16930
16930
|
if (Qb(n, h, A, g), at = n.memoizedState, U === h && Ge === at && !Lb() && !Xb()) {
|
|
16931
16931
|
if (typeof A.componentDidMount == "function") {
|
|
@@ -16935,7 +16935,7 @@ https://reactjs.org/link/unsafe-component-lifecycles`, Vt, hn, at !== null ? `
|
|
|
16935
16935
|
return !1;
|
|
16936
16936
|
}
|
|
16937
16937
|
typeof Le == "function" && (K2(n, i, Le, h), at = n.memoizedState);
|
|
16938
|
-
var yt = Xb() ||
|
|
16938
|
+
var yt = Xb() || m5(n, i, U, h, Ge, at, pe);
|
|
16939
16939
|
if (yt) {
|
|
16940
16940
|
if (!Ke && (typeof A.UNSAFE_componentWillMount == "function" || typeof A.componentWillMount == "function") && (typeof A.componentWillMount == "function" && A.componentWillMount(), typeof A.UNSAFE_componentWillMount == "function" && A.UNSAFE_componentWillMount()), typeof A.componentDidMount == "function") {
|
|
16941
16941
|
var Vt = Hn;
|
|
@@ -16952,7 +16952,7 @@ https://reactjs.org/link/unsafe-component-lifecycles`, Vt, hn, at !== null ? `
|
|
|
16952
16952
|
}
|
|
16953
16953
|
function sB(n, i, h, g, A) {
|
|
16954
16954
|
var U = i.stateNode;
|
|
16955
|
-
|
|
16955
|
+
N4(n, i);
|
|
16956
16956
|
var W = i.memoizedProps, re = i.type === i.elementType ? W : iu(i.type, W);
|
|
16957
16957
|
U.props = re;
|
|
16958
16958
|
var pe = i.pendingProps, Me = U.context, Le = h.contextType, Ke = Gs;
|
|
@@ -16963,12 +16963,12 @@ https://reactjs.org/link/unsafe-component-lifecycles`, Vt, hn, at !== null ? `
|
|
|
16963
16963
|
Ke = qh(i, Ge);
|
|
16964
16964
|
}
|
|
16965
16965
|
var at = h.getDerivedStateFromProps, ut = typeof at == "function" || typeof U.getSnapshotBeforeUpdate == "function";
|
|
16966
|
-
!ut && (typeof U.UNSAFE_componentWillReceiveProps == "function" || typeof U.componentWillReceiveProps == "function") && (W !== pe || Me !== Ke) &&
|
|
16966
|
+
!ut && (typeof U.UNSAFE_componentWillReceiveProps == "function" || typeof U.componentWillReceiveProps == "function") && (W !== pe || Me !== Ke) && b5(i, U, g, Ke), P4();
|
|
16967
16967
|
var yt = i.memoizedState, Vt = U.state = yt;
|
|
16968
16968
|
if (Qb(i, g, U, A), Vt = i.memoizedState, W === pe && yt === Vt && !Lb() && !Xb() && !ee)
|
|
16969
16969
|
return typeof U.componentDidUpdate == "function" && (W !== n.memoizedProps || yt !== n.memoizedState) && (i.flags |= Hn), typeof U.getSnapshotBeforeUpdate == "function" && (W !== n.memoizedProps || yt !== n.memoizedState) && (i.flags |= ca), !1;
|
|
16970
16970
|
typeof at == "function" && (K2(i, h, at, g), Vt = i.memoizedState);
|
|
16971
|
-
var hn = Xb() ||
|
|
16971
|
+
var hn = Xb() || m5(i, h, re, g, yt, Vt, Ke) || // TODO: In some cases, we'll end up checking if context has changed twice,
|
|
16972
16972
|
// both before and after `shouldComponentUpdate` has been called. Not ideal,
|
|
16973
16973
|
// but I'm loath to refactor this function. This only happens for memoized
|
|
16974
16974
|
// components so it's not that common.
|
|
@@ -17025,7 +17025,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17025
17025
|
}
|
|
17026
17026
|
}
|
|
17027
17027
|
var uB = typeof WeakMap == "function" ? WeakMap : Map;
|
|
17028
|
-
function
|
|
17028
|
+
function w5(n, i, h) {
|
|
17029
17029
|
var g = oc(yr, h);
|
|
17030
17030
|
g.tag = r2, g.payload = {
|
|
17031
17031
|
element: null
|
|
@@ -17056,7 +17056,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17056
17056
|
}), typeof A != "function" && (Ai(n.lanes, bn) || o("%s: Error boundaries should implement getDerivedStateFromError(). In that method, return a state update to display an error message or fallback UI.", Cn(n) || "Unknown"));
|
|
17057
17057
|
}), g;
|
|
17058
17058
|
}
|
|
17059
|
-
function
|
|
17059
|
+
function _5(n, i, h) {
|
|
17060
17060
|
var g = n.pingCache, A;
|
|
17061
17061
|
if (g === null ? (g = n.pingCache = new uB(), A = /* @__PURE__ */ new Set(), g.set(i, A)) : (A = g.get(i), A === void 0 && (A = /* @__PURE__ */ new Set(), g.set(i, A))), !A.has(h)) {
|
|
17062
17062
|
A.add(h);
|
|
@@ -17079,7 +17079,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17079
17079
|
g ? (n.updateQueue = g.updateQueue, n.memoizedState = g.memoizedState, n.lanes = g.lanes) : (n.updateQueue = null, n.memoizedState = null);
|
|
17080
17080
|
}
|
|
17081
17081
|
}
|
|
17082
|
-
function
|
|
17082
|
+
function x5(n) {
|
|
17083
17083
|
var i = n;
|
|
17084
17084
|
do {
|
|
17085
17085
|
if (i.tag === N && VF(i))
|
|
@@ -17088,7 +17088,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17088
17088
|
} while (i !== null);
|
|
17089
17089
|
return null;
|
|
17090
17090
|
}
|
|
17091
|
-
function
|
|
17091
|
+
function S5(n, i, h, g, A) {
|
|
17092
17092
|
if ((n.mode & Pn) === cn) {
|
|
17093
17093
|
if (n === i)
|
|
17094
17094
|
n.flags |= va;
|
|
@@ -17111,24 +17111,24 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17111
17111
|
function fB(n, i, h, g, A) {
|
|
17112
17112
|
if (h.flags |= td, Ci && zm(n, A), g !== null && typeof g == "object" && typeof g.then == "function") {
|
|
17113
17113
|
var U = g;
|
|
17114
|
-
cB(h), ni() && h.mode & Pn &&
|
|
17115
|
-
var W =
|
|
17114
|
+
cB(h), ni() && h.mode & Pn && h4();
|
|
17115
|
+
var W = x5(i);
|
|
17116
17116
|
if (W !== null) {
|
|
17117
|
-
W.flags &= ~za,
|
|
17117
|
+
W.flags &= ~za, S5(W, i, h, n, A), W.mode & Pn && _5(n, U, A), lB(W, n, U);
|
|
17118
17118
|
return;
|
|
17119
17119
|
} else {
|
|
17120
17120
|
if (!Dv(A)) {
|
|
17121
|
-
|
|
17121
|
+
_5(n, U, A), LS();
|
|
17122
17122
|
return;
|
|
17123
17123
|
}
|
|
17124
17124
|
var re = new Error("A component suspended while responding to synchronous input. This will cause the UI to be replaced with a loading indicator. To fix, updates that suspend should be wrapped with startTransition.");
|
|
17125
17125
|
g = re;
|
|
17126
17126
|
}
|
|
17127
17127
|
} else if (ni() && h.mode & Pn) {
|
|
17128
|
-
|
|
17129
|
-
var pe =
|
|
17128
|
+
h4();
|
|
17129
|
+
var pe = x5(i);
|
|
17130
17130
|
if (pe !== null) {
|
|
17131
|
-
(pe.flags & va) === ln && (pe.flags |= za),
|
|
17131
|
+
(pe.flags & va) === ln && (pe.flags |= za), S5(pe, i, h, n, A), $x(Gd(g, h));
|
|
17132
17132
|
return;
|
|
17133
17133
|
}
|
|
17134
17134
|
}
|
|
@@ -17141,7 +17141,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17141
17141
|
Me.flags |= va;
|
|
17142
17142
|
var Ke = md(A);
|
|
17143
17143
|
Me.lanes = Rn(Me.lanes, Ke);
|
|
17144
|
-
var Ge =
|
|
17144
|
+
var Ge = w5(Me, Le, Ke);
|
|
17145
17145
|
s2(Me, Ge);
|
|
17146
17146
|
return;
|
|
17147
17147
|
}
|
|
@@ -17166,12 +17166,12 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17166
17166
|
var Cm = t.ReactCurrentOwner, su = !1, eS, Em, tS, nS, rS, Wd, aS, x1, Am;
|
|
17167
17167
|
eS = {}, Em = {}, tS = {}, nS = {}, rS = {}, Wd = !1, aS = {}, x1 = {}, Am = {};
|
|
17168
17168
|
function Ji(n, i, h, g) {
|
|
17169
|
-
n === null ? i.child =
|
|
17169
|
+
n === null ? i.child = A4(i, null, h, g) : i.child = Gh(i, n.child, h, g);
|
|
17170
17170
|
}
|
|
17171
17171
|
function pB(n, i, h, g) {
|
|
17172
17172
|
i.child = Gh(i, n.child, null, g), i.child = Gh(i, null, h, g);
|
|
17173
17173
|
}
|
|
17174
|
-
function
|
|
17174
|
+
function C5(n, i, h, g, A) {
|
|
17175
17175
|
if (i.type !== i.elementType) {
|
|
17176
17176
|
var U = h.propTypes;
|
|
17177
17177
|
U && eu(
|
|
@@ -17195,15 +17195,15 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17195
17195
|
}
|
|
17196
17196
|
la(!1);
|
|
17197
17197
|
}
|
|
17198
|
-
return Gi(), n !== null && !su ? (
|
|
17198
|
+
return Gi(), n !== null && !su ? (z4(n, i, A), uc(n, i, A)) : (ni() && Me && Bx(i), i.flags |= js, Ji(n, i, pe, A), i.child);
|
|
17199
17199
|
}
|
|
17200
|
-
function
|
|
17200
|
+
function E5(n, i, h, g, A) {
|
|
17201
17201
|
if (n === null) {
|
|
17202
17202
|
var U = h.type;
|
|
17203
17203
|
if (vj(U) && h.compare === null && // SimpleMemoComponent codepath doesn't resolve outer props either.
|
|
17204
17204
|
h.defaultProps === void 0) {
|
|
17205
17205
|
var W = U;
|
|
17206
|
-
return W = l0(U), i.tag = X, i.type = W, oS(i, U),
|
|
17206
|
+
return W = l0(U), i.tag = X, i.type = W, oS(i, U), A5(n, i, W, g, A);
|
|
17207
17207
|
}
|
|
17208
17208
|
{
|
|
17209
17209
|
var re = U.propTypes;
|
|
@@ -17241,7 +17241,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17241
17241
|
var Vt = Xd(Ge, g);
|
|
17242
17242
|
return Vt.ref = i.ref, Vt.return = i, i.child = Vt, Vt;
|
|
17243
17243
|
}
|
|
17244
|
-
function
|
|
17244
|
+
function A5(n, i, h, g, A) {
|
|
17245
17245
|
if (i.type !== i.elementType) {
|
|
17246
17246
|
var U = i.elementType;
|
|
17247
17247
|
if (U.$$typeof === Pt) {
|
|
@@ -17271,7 +17271,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17271
17271
|
}
|
|
17272
17272
|
return iS(n, i, h, g, A);
|
|
17273
17273
|
}
|
|
17274
|
-
function
|
|
17274
|
+
function k5(n, i, h) {
|
|
17275
17275
|
var g = i.pendingProps, A = g.children, U = n !== null ? n.memoizedState : null;
|
|
17276
17276
|
if (g.mode === "hidden" || G)
|
|
17277
17277
|
if ((i.mode & Pn) === cn) {
|
|
@@ -17330,7 +17330,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17330
17330
|
var A = i.pendingProps, U = A.children;
|
|
17331
17331
|
return Ji(n, i, U, h), i.child;
|
|
17332
17332
|
}
|
|
17333
|
-
function
|
|
17333
|
+
function T5(n, i) {
|
|
17334
17334
|
var h = i.ref;
|
|
17335
17335
|
(n === null && h !== null || n !== null && n.ref !== h) && (i.flags |= Br, i.flags |= Hc);
|
|
17336
17336
|
}
|
|
@@ -17363,9 +17363,9 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17363
17363
|
}
|
|
17364
17364
|
la(!1);
|
|
17365
17365
|
}
|
|
17366
|
-
return Gi(), n !== null && !su ? (
|
|
17366
|
+
return Gi(), n !== null && !su ? (z4(n, i, A), uc(n, i, A)) : (ni() && Me && Bx(i), i.flags |= js, Ji(n, i, pe, A), i.child);
|
|
17367
17367
|
}
|
|
17368
|
-
function
|
|
17368
|
+
function M5(n, i, h, g, A) {
|
|
17369
17369
|
{
|
|
17370
17370
|
switch (Nj(i)) {
|
|
17371
17371
|
case !1: {
|
|
@@ -17396,7 +17396,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17396
17396
|
var at;
|
|
17397
17397
|
Xu(h) ? (at = !0, Pb(i)) : at = !1, Kh(i, A);
|
|
17398
17398
|
var ut = i.stateNode, yt;
|
|
17399
|
-
ut === null ? (C1(n, i),
|
|
17399
|
+
ut === null ? (C1(n, i), v5(i, h, g), Y2(i, h, g, A), yt = !0) : n === null ? yt = iB(i, h, g, A) : yt = sB(n, i, h, g, A);
|
|
17400
17400
|
var Vt = sS(n, i, h, yt, at, A);
|
|
17401
17401
|
{
|
|
17402
17402
|
var hn = i.stateNode;
|
|
@@ -17405,15 +17405,15 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17405
17405
|
return Vt;
|
|
17406
17406
|
}
|
|
17407
17407
|
function sS(n, i, h, g, A, U) {
|
|
17408
|
-
|
|
17408
|
+
T5(n, i);
|
|
17409
17409
|
var W = (i.flags & on) !== ln;
|
|
17410
17410
|
if (!g && !W)
|
|
17411
|
-
return A &&
|
|
17411
|
+
return A && c4(i, h, !1), uc(n, i, U);
|
|
17412
17412
|
var re = i.stateNode;
|
|
17413
17413
|
Cm.current = i;
|
|
17414
17414
|
var pe;
|
|
17415
17415
|
if (W && typeof h.getDerivedStateFromError != "function")
|
|
17416
|
-
pe = null,
|
|
17416
|
+
pe = null, p5();
|
|
17417
17417
|
else {
|
|
17418
17418
|
$i(i);
|
|
17419
17419
|
{
|
|
@@ -17429,17 +17429,17 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17429
17429
|
}
|
|
17430
17430
|
Gi();
|
|
17431
17431
|
}
|
|
17432
|
-
return i.flags |= js, n !== null && W ? pB(n, i, pe, U) : Ji(n, i, pe, U), i.memoizedState = re.state, A &&
|
|
17432
|
+
return i.flags |= js, n !== null && W ? pB(n, i, pe, U) : Ji(n, i, pe, U), i.memoizedState = re.state, A && c4(i, h, !0), i.child;
|
|
17433
17433
|
}
|
|
17434
|
-
function
|
|
17434
|
+
function R5(n) {
|
|
17435
17435
|
var i = n.stateNode;
|
|
17436
|
-
i.pendingContext ?
|
|
17436
|
+
i.pendingContext ? u4(n, i.pendingContext, i.pendingContext !== i.context) : i.context && u4(n, i.context, !1), o2(n, i.containerInfo);
|
|
17437
17437
|
}
|
|
17438
17438
|
function gB(n, i, h) {
|
|
17439
|
-
if (
|
|
17439
|
+
if (R5(i), n === null)
|
|
17440
17440
|
throw new Error("Should have a current fiber. This is a bug in React.");
|
|
17441
17441
|
var g = i.pendingProps, A = i.memoizedState, U = A.element;
|
|
17442
|
-
|
|
17442
|
+
N4(n, i), Qb(i, g, null, h);
|
|
17443
17443
|
var W = i.memoizedState;
|
|
17444
17444
|
i.stateNode;
|
|
17445
17445
|
var re = W.element;
|
|
@@ -17453,13 +17453,13 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17453
17453
|
}, Me = i.updateQueue;
|
|
17454
17454
|
if (Me.baseState = pe, i.memoizedState = pe, i.flags & za) {
|
|
17455
17455
|
var Le = Gd(new Error("There was an error while hydrating. Because the error happened outside of a Suspense boundary, the entire root will switch to client rendering."), i);
|
|
17456
|
-
return
|
|
17456
|
+
return O5(n, i, re, h, Le);
|
|
17457
17457
|
} else if (re !== U) {
|
|
17458
17458
|
var Ke = Gd(new Error("This root received an early update, before anything was able hydrate. Switched the entire root to client rendering."), i);
|
|
17459
|
-
return
|
|
17459
|
+
return O5(n, i, re, h, Ke);
|
|
17460
17460
|
} else {
|
|
17461
17461
|
wF(i);
|
|
17462
|
-
var Ge =
|
|
17462
|
+
var Ge = A4(i, null, re, h);
|
|
17463
17463
|
i.child = Ge;
|
|
17464
17464
|
for (var at = Ge; at; )
|
|
17465
17465
|
at.flags = at.flags & ~Pr | _i, at = at.sibling;
|
|
@@ -17471,13 +17471,13 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17471
17471
|
}
|
|
17472
17472
|
return i.child;
|
|
17473
17473
|
}
|
|
17474
|
-
function
|
|
17474
|
+
function O5(n, i, h, g, A) {
|
|
17475
17475
|
return $h(), $x(A), i.flags |= za, Ji(n, i, h, g), i.child;
|
|
17476
17476
|
}
|
|
17477
17477
|
function vB(n, i, h) {
|
|
17478
|
-
|
|
17478
|
+
U4(i), n === null && Vx(i);
|
|
17479
17479
|
var g = i.type, A = i.pendingProps, U = n !== null ? n.memoizedProps : null, W = A.children, re = Ex(g, A);
|
|
17480
|
-
return re ? W = null : U !== null && Ex(g, U) && (i.flags |= ps),
|
|
17480
|
+
return re ? W = null : U !== null && Ex(g, U) && (i.flags |= ps), T5(n, i), Ji(n, i, W, h), i.child;
|
|
17481
17481
|
}
|
|
17482
17482
|
function bB(n, i) {
|
|
17483
17483
|
return n === null && Vx(i), null;
|
|
@@ -17491,9 +17491,9 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17491
17491
|
case p:
|
|
17492
17492
|
return oS(i, pe), i.type = pe = l0(pe), Ke = iS(null, i, pe, Le, g), Ke;
|
|
17493
17493
|
case f:
|
|
17494
|
-
return i.type = pe = US(pe), Ke =
|
|
17494
|
+
return i.type = pe = US(pe), Ke = M5(null, i, pe, Le, g), Ke;
|
|
17495
17495
|
case M:
|
|
17496
|
-
return i.type = pe = FS(pe), Ke =
|
|
17496
|
+
return i.type = pe = FS(pe), Ke = C5(null, i, pe, Le, g), Ke;
|
|
17497
17497
|
case K: {
|
|
17498
17498
|
if (i.type !== i.elementType) {
|
|
17499
17499
|
var Ge = pe.propTypes;
|
|
@@ -17505,7 +17505,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17505
17505
|
Kn(pe)
|
|
17506
17506
|
);
|
|
17507
17507
|
}
|
|
17508
|
-
return Ke =
|
|
17508
|
+
return Ke = E5(
|
|
17509
17509
|
null,
|
|
17510
17510
|
i,
|
|
17511
17511
|
pe,
|
|
@@ -17521,7 +17521,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17521
17521
|
function _B(n, i, h, g, A) {
|
|
17522
17522
|
C1(n, i), i.tag = f;
|
|
17523
17523
|
var U;
|
|
17524
|
-
return Xu(h) ? (U = !0, Pb(i)) : U = !1, Kh(i, A),
|
|
17524
|
+
return Xu(h) ? (U = !0, Pb(i)) : U = !1, Kh(i, A), v5(i, h, g), Y2(i, h, g, A), sS(null, i, h, !0, U, A);
|
|
17525
17525
|
}
|
|
17526
17526
|
function xB(n, i, h, g) {
|
|
17527
17527
|
C1(n, i);
|
|
@@ -17555,7 +17555,7 @@ Visit https://reactjs.org/link/error-boundaries to learn more about error bounda
|
|
|
17555
17555
|
}
|
|
17556
17556
|
i.tag = f, i.memoizedState = null, i.updateQueue = null;
|
|
17557
17557
|
var Ge = !1;
|
|
17558
|
-
return Xu(h) ? (Ge = !0, Pb(i)) : Ge = !1, i.memoizedState = re.state !== null && re.state !== void 0 ? re.state : null, i2(i),
|
|
17558
|
+
return Xu(h) ? (Ge = !0, Pb(i)) : Ge = !1, i.memoizedState = re.state !== null && re.state !== void 0 ? re.state : null, i2(i), g5(i, re), Y2(i, h, A, g), sS(null, i, h, !0, Ge, g);
|
|
17559
17559
|
} else {
|
|
17560
17560
|
if (i.tag = p, i.mode & dr) {
|
|
17561
17561
|
Ir(!0);
|
|
@@ -17623,11 +17623,11 @@ Check the render method of \`` + g + "`.");
|
|
|
17623
17623
|
function EB(n, i) {
|
|
17624
17624
|
return gd(n.childLanes, i);
|
|
17625
17625
|
}
|
|
17626
|
-
function
|
|
17626
|
+
function L5(n, i, h) {
|
|
17627
17627
|
var g = i.pendingProps;
|
|
17628
17628
|
Pj(i) && (i.flags |= on);
|
|
17629
17629
|
var A = ru.current, U = !1, W = (i.flags & on) !== ln;
|
|
17630
|
-
if (W || CB(A, n) ? (U = !0, i.flags &= ~on) : (n === null || n.memoizedState !== null) && (A = HF(A,
|
|
17630
|
+
if (W || CB(A, n) ? (U = !0, i.flags &= ~on) : (n === null || n.memoizedState !== null) && (A = HF(A, B4)), A = Yh(A), ff(i, A), n === null) {
|
|
17631
17631
|
Vx(i);
|
|
17632
17632
|
var re = i.memoizedState;
|
|
17633
17633
|
if (re !== null) {
|
|
@@ -17674,11 +17674,11 @@ Check the render method of \`` + g + "`.");
|
|
|
17674
17674
|
function fS(n, i, h) {
|
|
17675
17675
|
return Nk(n, i, St, null);
|
|
17676
17676
|
}
|
|
17677
|
-
function
|
|
17677
|
+
function N5(n, i) {
|
|
17678
17678
|
return Xd(n, i);
|
|
17679
17679
|
}
|
|
17680
17680
|
function kB(n, i, h, g) {
|
|
17681
|
-
var A = n.child, U = A.sibling, W =
|
|
17681
|
+
var A = n.child, U = A.sibling, W = N5(A, {
|
|
17682
17682
|
mode: "visible",
|
|
17683
17683
|
children: h
|
|
17684
17684
|
});
|
|
@@ -17707,7 +17707,7 @@ Check the render method of \`` + g + "`.");
|
|
|
17707
17707
|
var Le = i.child;
|
|
17708
17708
|
Me = Le, Me.childLanes = St, Me.pendingProps = pe, i.mode & er && (Me.actualDuration = 0, Me.actualStartTime = -1, Me.selfBaseDuration = W.selfBaseDuration, Me.treeBaseDuration = W.treeBaseDuration), i.deletions = null;
|
|
17709
17709
|
} else
|
|
17710
|
-
Me =
|
|
17710
|
+
Me = N5(W, pe), Me.subtreeFlags = W.subtreeFlags & Qr;
|
|
17711
17711
|
var Ke;
|
|
17712
17712
|
return re !== null ? Ke = Xd(re, g) : (Ke = bf(g, U, A, null), Ke.flags |= Pr), Ke.return = i, Me.return = i, Me.sibling = Ke, i.child = Me, Ke;
|
|
17713
17713
|
}
|
|
@@ -17774,7 +17774,7 @@ Check the render method of \`` + g + "`.");
|
|
|
17774
17774
|
LS();
|
|
17775
17775
|
var hn = Q2(new Error("This Suspense boundary received an update before it finished hydrating. This caused the boundary to switch to client rendering. The usual way to fix this is to wrap the original update in startTransition."));
|
|
17776
17776
|
return S1(n, i, W, hn);
|
|
17777
|
-
} else if (
|
|
17777
|
+
} else if (n4(A)) {
|
|
17778
17778
|
i.flags |= on, i.child = n.child;
|
|
17779
17779
|
var an = nj.bind(null, n);
|
|
17780
17780
|
return DU(A, an), null;
|
|
@@ -17785,7 +17785,7 @@ Check the render method of \`` + g + "`.");
|
|
|
17785
17785
|
}
|
|
17786
17786
|
}
|
|
17787
17787
|
}
|
|
17788
|
-
function
|
|
17788
|
+
function P5(n, i, h) {
|
|
17789
17789
|
n.lanes = Rn(n.lanes, i);
|
|
17790
17790
|
var g = n.alternate;
|
|
17791
17791
|
g !== null && (g.lanes = Rn(g.lanes, i)), t2(n.return, i, h);
|
|
@@ -17794,9 +17794,9 @@ Check the render method of \`` + g + "`.");
|
|
|
17794
17794
|
for (var g = i; g !== null; ) {
|
|
17795
17795
|
if (g.tag === N) {
|
|
17796
17796
|
var A = g.memoizedState;
|
|
17797
|
-
A !== null &&
|
|
17797
|
+
A !== null && P5(g, h, n);
|
|
17798
17798
|
} else if (g.tag === te)
|
|
17799
|
-
|
|
17799
|
+
P5(g, h, n);
|
|
17800
17800
|
else if (g.child !== null) {
|
|
17801
17801
|
g.child.return = g, g = g.child;
|
|
17802
17802
|
continue;
|
|
@@ -17843,7 +17843,7 @@ Check the render method of \`` + g + "`.");
|
|
|
17843
17843
|
function IB(n, i) {
|
|
17844
17844
|
n !== void 0 && !x1[n] && (n !== "collapsed" && n !== "hidden" ? (x1[n] = !0, o('"%s" is not a supported value for tail on <SuspenseList />. Did you mean "collapsed" or "hidden"?', n)) : i !== "forwards" && i !== "backwards" && (x1[n] = !0, o('<SuspenseList tail="%s" /> is only valid if revealOrder is "forwards" or "backwards". Did you mean to specify revealOrder="forwards"?', n)));
|
|
17845
17845
|
}
|
|
17846
|
-
function
|
|
17846
|
+
function I5(n, i) {
|
|
17847
17847
|
{
|
|
17848
17848
|
var h = Ln(n), g = !h && typeof xn(n) == "function";
|
|
17849
17849
|
if (h || g) {
|
|
@@ -17857,7 +17857,7 @@ Check the render method of \`` + g + "`.");
|
|
|
17857
17857
|
if ((i === "forwards" || i === "backwards") && n !== void 0 && n !== null && n !== !1)
|
|
17858
17858
|
if (Ln(n)) {
|
|
17859
17859
|
for (var h = 0; h < n.length; h++)
|
|
17860
|
-
if (!
|
|
17860
|
+
if (!I5(n[h], h))
|
|
17861
17861
|
return;
|
|
17862
17862
|
} else {
|
|
17863
17863
|
var g = xn(n);
|
|
@@ -17865,7 +17865,7 @@ Check the render method of \`` + g + "`.");
|
|
|
17865
17865
|
var A = g.call(n);
|
|
17866
17866
|
if (A)
|
|
17867
17867
|
for (var U = A.next(), W = 0; !U.done; U = A.next()) {
|
|
17868
|
-
if (!
|
|
17868
|
+
if (!I5(U.value, W))
|
|
17869
17869
|
return;
|
|
17870
17870
|
W++;
|
|
17871
17871
|
}
|
|
@@ -17884,7 +17884,7 @@ Check the render method of \`` + g + "`.");
|
|
|
17884
17884
|
tailMode: A
|
|
17885
17885
|
} : (U.isBackwards = i, U.rendering = null, U.renderingStartTime = 0, U.last = g, U.tail = h, U.tailMode = A);
|
|
17886
17886
|
}
|
|
17887
|
-
function
|
|
17887
|
+
function D5(n, i, h) {
|
|
17888
17888
|
var g = i.pendingProps, A = g.revealOrder, U = g.tail, W = g.children;
|
|
17889
17889
|
PB(A), IB(U, A), DB(W, A), Ji(n, i, W, h);
|
|
17890
17890
|
var re = ru.current, pe = c2(re, ym);
|
|
@@ -17955,15 +17955,15 @@ Check the render method of \`` + g + "`.");
|
|
|
17955
17955
|
var g = i.pendingProps;
|
|
17956
17956
|
return n === null ? i.child = Gh(i, null, g, h) : Ji(n, i, g, h), i.child;
|
|
17957
17957
|
}
|
|
17958
|
-
var
|
|
17958
|
+
var U5 = !1;
|
|
17959
17959
|
function FB(n, i, h) {
|
|
17960
17960
|
var g = i.type, A = g._context, U = i.pendingProps, W = i.memoizedProps, re = U.value;
|
|
17961
17961
|
{
|
|
17962
|
-
"value" in U ||
|
|
17962
|
+
"value" in U || U5 || (U5 = !0, o("The `value` prop is required for the `<Context.Provider>`. Did you misspell it or forget to pass it?"));
|
|
17963
17963
|
var pe = i.type.propTypes;
|
|
17964
17964
|
pe && eu(pe, U, "prop", "Context.Provider");
|
|
17965
17965
|
}
|
|
17966
|
-
if (
|
|
17966
|
+
if (M4(i, A, re), W !== null) {
|
|
17967
17967
|
var Me = W.value;
|
|
17968
17968
|
if (At(Me, re)) {
|
|
17969
17969
|
if (W.children === U.children && !Lb())
|
|
@@ -17974,10 +17974,10 @@ Check the render method of \`` + g + "`.");
|
|
|
17974
17974
|
var Le = U.children;
|
|
17975
17975
|
return Ji(n, i, Le, h), i.child;
|
|
17976
17976
|
}
|
|
17977
|
-
var
|
|
17977
|
+
var F5 = !1;
|
|
17978
17978
|
function BB(n, i, h) {
|
|
17979
17979
|
var g = i.type;
|
|
17980
|
-
g._context === void 0 ? g !== g.Consumer && (
|
|
17980
|
+
g._context === void 0 ? g !== g.Consumer && (F5 || (F5 = !0, o("Rendering <Context> directly is not supported and will be removed in a future major release. Did you mean to render <Context.Consumer> instead?"))) : g = g._context;
|
|
17981
17981
|
var A = i.pendingProps, U = A.children;
|
|
17982
17982
|
typeof U != "function" && o("A context consumer was rendered with multiple children, or a child that isn't a function. A context consumer expects a single child that is a function. If you did pass a function, make sure there is no trailing or leading whitespace around it."), Kh(i, h);
|
|
17983
17983
|
var W = xa(g);
|
|
@@ -17992,7 +17992,7 @@ Check the render method of \`` + g + "`.");
|
|
|
17992
17992
|
(i.mode & Pn) === cn && n !== null && (n.alternate = null, i.alternate = null, i.flags |= Pr);
|
|
17993
17993
|
}
|
|
17994
17994
|
function uc(n, i, h) {
|
|
17995
|
-
return n !== null && (i.dependencies = n.dependencies),
|
|
17995
|
+
return n !== null && (i.dependencies = n.dependencies), p5(), Bm(i.lanes), Ai(h, i.childLanes) ? (LF(n, i), i.child) : null;
|
|
17996
17996
|
}
|
|
17997
17997
|
function zB(n, i, h) {
|
|
17998
17998
|
{
|
|
@@ -18021,10 +18021,10 @@ Check the render method of \`` + g + "`.");
|
|
|
18021
18021
|
function jB(n, i, h) {
|
|
18022
18022
|
switch (i.tag) {
|
|
18023
18023
|
case m:
|
|
18024
|
-
|
|
18024
|
+
R5(i), i.stateNode, $h();
|
|
18025
18025
|
break;
|
|
18026
18026
|
case b:
|
|
18027
|
-
|
|
18027
|
+
U4(i);
|
|
18028
18028
|
break;
|
|
18029
18029
|
case f: {
|
|
18030
18030
|
var g = i.type;
|
|
@@ -18036,7 +18036,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18036
18036
|
break;
|
|
18037
18037
|
case k: {
|
|
18038
18038
|
var A = i.memoizedProps.value, U = i.type._context;
|
|
18039
|
-
|
|
18039
|
+
M4(i, U, A);
|
|
18040
18040
|
break;
|
|
18041
18041
|
}
|
|
18042
18042
|
case R:
|
|
@@ -18056,7 +18056,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18056
18056
|
return ff(i, Yh(ru.current)), i.flags |= on, null;
|
|
18057
18057
|
var Me = i.child, Le = Me.childLanes;
|
|
18058
18058
|
if (Ai(h, Le))
|
|
18059
|
-
return
|
|
18059
|
+
return L5(n, i, h);
|
|
18060
18060
|
ff(i, Yh(ru.current));
|
|
18061
18061
|
var Ke = uc(n, i, h);
|
|
18062
18062
|
return Ke !== null ? Ke.sibling : null;
|
|
@@ -18068,7 +18068,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18068
18068
|
var Ge = (n.flags & on) !== ln, at = Ai(h, i.childLanes);
|
|
18069
18069
|
if (Ge) {
|
|
18070
18070
|
if (at)
|
|
18071
|
-
return
|
|
18071
|
+
return D5(n, i, h);
|
|
18072
18072
|
i.flags |= on;
|
|
18073
18073
|
}
|
|
18074
18074
|
var ut = i.memoizedState;
|
|
@@ -18078,11 +18078,11 @@ Check the render method of \`` + g + "`.");
|
|
|
18078
18078
|
}
|
|
18079
18079
|
case x:
|
|
18080
18080
|
case _:
|
|
18081
|
-
return i.lanes = St,
|
|
18081
|
+
return i.lanes = St, k5(n, i, h);
|
|
18082
18082
|
}
|
|
18083
18083
|
return uc(n, i, h);
|
|
18084
18084
|
}
|
|
18085
|
-
function
|
|
18085
|
+
function B5(n, i, h) {
|
|
18086
18086
|
if (i._debugNeedsRemount && n !== null)
|
|
18087
18087
|
return zB(n, i, HS(i.type, i.key, i.pendingProps, i._debugOwner || null, i.mode, i.lanes));
|
|
18088
18088
|
if (n !== null) {
|
|
@@ -18100,7 +18100,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18100
18100
|
}
|
|
18101
18101
|
} else if (su = !1, ni() && dF(i)) {
|
|
18102
18102
|
var W = i.index, re = pF();
|
|
18103
|
-
|
|
18103
|
+
p4(i, re, W);
|
|
18104
18104
|
}
|
|
18105
18105
|
switch (i.lanes = St, i.tag) {
|
|
18106
18106
|
case y:
|
|
@@ -18115,7 +18115,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18115
18115
|
}
|
|
18116
18116
|
case f: {
|
|
18117
18117
|
var Ge = i.type, at = i.pendingProps, ut = i.elementType === Ge ? at : iu(Ge, at);
|
|
18118
|
-
return
|
|
18118
|
+
return M5(n, i, Ge, ut, h);
|
|
18119
18119
|
}
|
|
18120
18120
|
case m:
|
|
18121
18121
|
return gB(n, i, h);
|
|
@@ -18124,12 +18124,12 @@ Check the render method of \`` + g + "`.");
|
|
|
18124
18124
|
case S:
|
|
18125
18125
|
return bB(n, i);
|
|
18126
18126
|
case N:
|
|
18127
|
-
return
|
|
18127
|
+
return L5(n, i, h);
|
|
18128
18128
|
case v:
|
|
18129
18129
|
return UB(n, i, h);
|
|
18130
18130
|
case M: {
|
|
18131
18131
|
var yt = i.type, Vt = i.pendingProps, hn = i.elementType === yt ? Vt : iu(yt, Vt);
|
|
18132
|
-
return
|
|
18132
|
+
return C5(n, i, yt, hn, h);
|
|
18133
18133
|
}
|
|
18134
18134
|
case E:
|
|
18135
18135
|
return hB(n, i, h);
|
|
@@ -18153,31 +18153,31 @@ Check the render method of \`` + g + "`.");
|
|
|
18153
18153
|
Kn(an)
|
|
18154
18154
|
);
|
|
18155
18155
|
}
|
|
18156
|
-
return Fn = iu(an.type, Fn),
|
|
18156
|
+
return Fn = iu(an.type, Fn), E5(n, i, an, Fn, h);
|
|
18157
18157
|
}
|
|
18158
18158
|
case X:
|
|
18159
|
-
return
|
|
18159
|
+
return A5(n, i, i.type, i.pendingProps, h);
|
|
18160
18160
|
case ge: {
|
|
18161
18161
|
var mt = i.type, Ze = i.pendingProps, Rt = i.elementType === mt ? Ze : iu(mt, Ze);
|
|
18162
18162
|
return _B(n, i, mt, Rt, h);
|
|
18163
18163
|
}
|
|
18164
18164
|
case te:
|
|
18165
|
-
return
|
|
18165
|
+
return D5(n, i, h);
|
|
18166
18166
|
case se:
|
|
18167
18167
|
break;
|
|
18168
18168
|
case x:
|
|
18169
|
-
return
|
|
18169
|
+
return k5(n, i, h);
|
|
18170
18170
|
}
|
|
18171
18171
|
throw new Error("Unknown unit of work tag (" + i.tag + "). This error is likely caused by a bug in React. Please file an issue.");
|
|
18172
18172
|
}
|
|
18173
18173
|
function n0(n) {
|
|
18174
18174
|
n.flags |= Hn;
|
|
18175
18175
|
}
|
|
18176
|
-
function
|
|
18176
|
+
function z5(n) {
|
|
18177
18177
|
n.flags |= Br, n.flags |= Hc;
|
|
18178
18178
|
}
|
|
18179
|
-
var
|
|
18180
|
-
|
|
18179
|
+
var j5, hS, q5, H5;
|
|
18180
|
+
j5 = function(n, i, h, g) {
|
|
18181
18181
|
for (var A = i.child; A !== null; ) {
|
|
18182
18182
|
if (A.tag === b || A.tag === S)
|
|
18183
18183
|
lU(n, A.stateNode);
|
|
@@ -18197,13 +18197,13 @@ Check the render method of \`` + g + "`.");
|
|
|
18197
18197
|
A.sibling.return = A.return, A = A.sibling;
|
|
18198
18198
|
}
|
|
18199
18199
|
}, hS = function(n, i) {
|
|
18200
|
-
},
|
|
18200
|
+
}, q5 = function(n, i, h, g, A) {
|
|
18201
18201
|
var U = n.memoizedProps;
|
|
18202
18202
|
if (U !== g) {
|
|
18203
18203
|
var W = i.stateNode, re = u2(), pe = fU(W, h, U, g, A, re);
|
|
18204
18204
|
i.updateQueue = pe, pe && n0(i);
|
|
18205
18205
|
}
|
|
18206
|
-
},
|
|
18206
|
+
}, H5 = function(n, i, h, g) {
|
|
18207
18207
|
h !== g && n0(i);
|
|
18208
18208
|
};
|
|
18209
18209
|
function Tm(n, i) {
|
|
@@ -18248,7 +18248,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18248
18248
|
}
|
|
18249
18249
|
function qB(n, i, h) {
|
|
18250
18250
|
if (AF() && (i.mode & Pn) !== cn && (i.flags & on) === ln)
|
|
18251
|
-
return
|
|
18251
|
+
return w4(i), $h(), i.flags |= za | td | va, !1;
|
|
18252
18252
|
var g = Bb(i);
|
|
18253
18253
|
if (h !== null && h.dehydrated !== null)
|
|
18254
18254
|
if (n === null) {
|
|
@@ -18273,9 +18273,9 @@ Check the render method of \`` + g + "`.");
|
|
|
18273
18273
|
return !1;
|
|
18274
18274
|
}
|
|
18275
18275
|
else
|
|
18276
|
-
return
|
|
18276
|
+
return _4(), !0;
|
|
18277
18277
|
}
|
|
18278
|
-
function
|
|
18278
|
+
function V5(n, i, h) {
|
|
18279
18279
|
var g = i.pendingProps;
|
|
18280
18280
|
switch (zx(i), i.tag) {
|
|
18281
18281
|
case y:
|
|
@@ -18303,16 +18303,16 @@ Check the render method of \`` + g + "`.");
|
|
|
18303
18303
|
var re = n.memoizedState;
|
|
18304
18304
|
// Check if this is a client root
|
|
18305
18305
|
(!re.isDehydrated || // Check if we reverted to client rendering (e.g. due to an error)
|
|
18306
|
-
(i.flags & za) !== ln) && (i.flags |= ca,
|
|
18306
|
+
(i.flags & za) !== ln) && (i.flags |= ca, _4());
|
|
18307
18307
|
}
|
|
18308
18308
|
}
|
|
18309
18309
|
return hS(n, i), ai(i), null;
|
|
18310
18310
|
}
|
|
18311
18311
|
case b: {
|
|
18312
18312
|
l2(i);
|
|
18313
|
-
var pe =
|
|
18313
|
+
var pe = D4(), Me = i.type;
|
|
18314
18314
|
if (n !== null && i.stateNode != null)
|
|
18315
|
-
|
|
18315
|
+
q5(n, i, Me, g, pe), n.ref !== i.ref && z5(i);
|
|
18316
18316
|
else {
|
|
18317
18317
|
if (!g) {
|
|
18318
18318
|
if (i.stateNode === null)
|
|
@@ -18324,9 +18324,9 @@ Check the render method of \`` + g + "`.");
|
|
|
18324
18324
|
xF(i, pe, Le) && n0(i);
|
|
18325
18325
|
else {
|
|
18326
18326
|
var Ge = uU(Me, g, pe, Le, i);
|
|
18327
|
-
|
|
18327
|
+
j5(Ge, i, !1, !1), i.stateNode = Ge, cU(Ge, Me, g, pe) && n0(i);
|
|
18328
18328
|
}
|
|
18329
|
-
i.ref !== null &&
|
|
18329
|
+
i.ref !== null && z5(i);
|
|
18330
18330
|
}
|
|
18331
18331
|
return ai(i), null;
|
|
18332
18332
|
}
|
|
@@ -18334,11 +18334,11 @@ Check the render method of \`` + g + "`.");
|
|
|
18334
18334
|
var at = g;
|
|
18335
18335
|
if (n && i.stateNode != null) {
|
|
18336
18336
|
var ut = n.memoizedProps;
|
|
18337
|
-
|
|
18337
|
+
H5(n, i, ut, at);
|
|
18338
18338
|
} else {
|
|
18339
18339
|
if (typeof at != "string" && i.stateNode === null)
|
|
18340
18340
|
throw new Error("We must have new props for new mounts. This error is likely caused by a bug in React. Please file an issue.");
|
|
18341
|
-
var yt =
|
|
18341
|
+
var yt = D4(), Vt = u2(), hn = Bb(i);
|
|
18342
18342
|
hn ? SF(i) && n0(i) : i.stateNode = dU(at, yt, Vt, i);
|
|
18343
18343
|
}
|
|
18344
18344
|
return ai(i), null;
|
|
@@ -18358,7 +18358,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18358
18358
|
var mt = i.child;
|
|
18359
18359
|
if (mt.flags |= Yr, (i.mode & Pn) !== cn) {
|
|
18360
18360
|
var Ze = n === null && (i.memoizedProps.unstable_avoidThisFallback !== !0 || !0);
|
|
18361
|
-
Ze || c2(ru.current,
|
|
18361
|
+
Ze || c2(ru.current, B4) ? Hz() : LS();
|
|
18362
18362
|
}
|
|
18363
18363
|
}
|
|
18364
18364
|
var Rt = i.updateQueue;
|
|
@@ -18490,7 +18490,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18490
18490
|
return null;
|
|
18491
18491
|
}
|
|
18492
18492
|
}
|
|
18493
|
-
function $
|
|
18493
|
+
function $5(n, i, h) {
|
|
18494
18494
|
switch (zx(i), i.tag) {
|
|
18495
18495
|
case f: {
|
|
18496
18496
|
var g = i.type.childContextTypes;
|
|
@@ -18524,8 +18524,8 @@ Check the render method of \`` + g + "`.");
|
|
|
18524
18524
|
break;
|
|
18525
18525
|
}
|
|
18526
18526
|
}
|
|
18527
|
-
var
|
|
18528
|
-
|
|
18527
|
+
var G5 = null;
|
|
18528
|
+
G5 = /* @__PURE__ */ new Set();
|
|
18529
18529
|
var E1 = !1, ii = !1, VB = typeof WeakSet == "function" ? WeakSet : Set, en = null, r0 = null, a0 = null;
|
|
18530
18530
|
function $B(n) {
|
|
18531
18531
|
Pu(null, function() {
|
|
@@ -18542,7 +18542,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18542
18542
|
else
|
|
18543
18543
|
i.componentWillUnmount();
|
|
18544
18544
|
};
|
|
18545
|
-
function
|
|
18545
|
+
function W5(n, i) {
|
|
18546
18546
|
try {
|
|
18547
18547
|
hf(Oa, n);
|
|
18548
18548
|
} catch (h) {
|
|
@@ -18563,9 +18563,9 @@ Check the render method of \`` + g + "`.");
|
|
|
18563
18563
|
kr(n, i, g);
|
|
18564
18564
|
}
|
|
18565
18565
|
}
|
|
18566
|
-
function
|
|
18566
|
+
function K5(n, i) {
|
|
18567
18567
|
try {
|
|
18568
|
-
|
|
18568
|
+
Y5(n);
|
|
18569
18569
|
} catch (h) {
|
|
18570
18570
|
kr(n, i, h);
|
|
18571
18571
|
}
|
|
@@ -18598,11 +18598,11 @@ Check the render method of \`` + g + "`.");
|
|
|
18598
18598
|
kr(n, i, g);
|
|
18599
18599
|
}
|
|
18600
18600
|
}
|
|
18601
|
-
var
|
|
18601
|
+
var J5 = !1;
|
|
18602
18602
|
function KB(n, i) {
|
|
18603
18603
|
sU(n.containerInfo), en = i, JB();
|
|
18604
|
-
var h =
|
|
18605
|
-
return
|
|
18604
|
+
var h = J5;
|
|
18605
|
+
return J5 = !1, h;
|
|
18606
18606
|
}
|
|
18607
18607
|
function JB() {
|
|
18608
18608
|
for (; en !== null; ) {
|
|
@@ -18642,7 +18642,7 @@ Check the render method of \`` + g + "`.");
|
|
|
18642
18642
|
n.type === n.elementType && !Wd && (U.props !== n.memoizedProps && o("Expected %s props to match memoized props before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", Cn(n) || "instance"), U.state !== n.memoizedState && o("Expected %s state to match memoized state before getSnapshotBeforeUpdate. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", Cn(n) || "instance"));
|
|
18643
18643
|
var W = U.getSnapshotBeforeUpdate(n.elementType === n.type ? g : iu(n.type, g), A);
|
|
18644
18644
|
{
|
|
18645
|
-
var re =
|
|
18645
|
+
var re = G5;
|
|
18646
18646
|
W === void 0 && !re.has(n.type) && (re.add(n.type), o("%s.getSnapshotBeforeUpdate(): A snapshot value (or null) must be returned. You have returned undefined.", Cn(n)));
|
|
18647
18647
|
}
|
|
18648
18648
|
U.__reactInternalSnapshotBeforeUpdate = W;
|
|
@@ -18720,8 +18720,8 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18720
18720
|
if ((i.flags & Hn) !== ln)
|
|
18721
18721
|
switch (i.tag) {
|
|
18722
18722
|
case R: {
|
|
18723
|
-
var h = i.stateNode.passiveEffectDuration, g = i.memoizedProps, A = g.id, U = g.onPostCommit, W =
|
|
18724
|
-
|
|
18723
|
+
var h = i.stateNode.passiveEffectDuration, g = i.memoizedProps, A = g.id, U = g.onPostCommit, W = f5(), re = i.alternate === null ? "mount" : "update";
|
|
18724
|
+
c5() && (re = "nested-update"), typeof U == "function" && U(A, re, h, W);
|
|
18725
18725
|
var pe = i.return;
|
|
18726
18726
|
e: for (; pe !== null; ) {
|
|
18727
18727
|
switch (pe.tag) {
|
|
@@ -18781,7 +18781,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18781
18781
|
A.componentDidUpdate(U, W, A.__reactInternalSnapshotBeforeUpdate);
|
|
18782
18782
|
}
|
|
18783
18783
|
var re = h.updateQueue;
|
|
18784
|
-
re !== null && (h.type === h.elementType && !Wd && (A.props !== h.memoizedProps && o("Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", Cn(h) || "instance"), A.state !== h.memoizedState && o("Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", Cn(h) || "instance")),
|
|
18784
|
+
re !== null && (h.type === h.elementType && !Wd && (A.props !== h.memoizedProps && o("Expected %s props to match memoized props before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.props`. Please file an issue.", Cn(h) || "instance"), A.state !== h.memoizedState && o("Expected %s state to match memoized state before processing the update queue. This might either be because of a bug in React, or because a component reassigns its own `this.state`. Please file an issue.", Cn(h) || "instance")), I4(h, re, A));
|
|
18785
18785
|
break;
|
|
18786
18786
|
}
|
|
18787
18787
|
case m: {
|
|
@@ -18797,7 +18797,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18797
18797
|
Me = h.child.stateNode;
|
|
18798
18798
|
break;
|
|
18799
18799
|
}
|
|
18800
|
-
|
|
18800
|
+
I4(h, pe, Me);
|
|
18801
18801
|
}
|
|
18802
18802
|
break;
|
|
18803
18803
|
}
|
|
@@ -18815,8 +18815,8 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18815
18815
|
break;
|
|
18816
18816
|
case R: {
|
|
18817
18817
|
{
|
|
18818
|
-
var at = h.memoizedProps, ut = at.onCommit, yt = at.onRender, Vt = h.stateNode.effectDuration, hn =
|
|
18819
|
-
|
|
18818
|
+
var at = h.memoizedProps, ut = at.onCommit, yt = at.onRender, Vt = h.stateNode.effectDuration, hn = f5(), an = i === null ? "mount" : "update";
|
|
18819
|
+
c5() && (an = "nested-update"), typeof yt == "function" && yt(h.memoizedProps.id, an, h.actualDuration, h.treeBaseDuration, h.actualStartTime, hn);
|
|
18820
18820
|
{
|
|
18821
18821
|
typeof ut == "function" && ut(h.memoizedProps.id, an, Vt, hn), Yz(h);
|
|
18822
18822
|
var Gn = h.return;
|
|
@@ -18851,7 +18851,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18851
18851
|
default:
|
|
18852
18852
|
throw new Error("This unit of work tag should not have side-effects. This error is likely caused by a bug in React. Please file an issue.");
|
|
18853
18853
|
}
|
|
18854
|
-
ii || h.flags & Br &&
|
|
18854
|
+
ii || h.flags & Br && Y5(h);
|
|
18855
18855
|
}
|
|
18856
18856
|
function ez(n) {
|
|
18857
18857
|
switch (n.tag) {
|
|
@@ -18860,21 +18860,21 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18860
18860
|
case X: {
|
|
18861
18861
|
if (n.mode & er)
|
|
18862
18862
|
try {
|
|
18863
|
-
rl(),
|
|
18863
|
+
rl(), W5(n, n.return);
|
|
18864
18864
|
} finally {
|
|
18865
18865
|
nl(n);
|
|
18866
18866
|
}
|
|
18867
18867
|
else
|
|
18868
|
-
|
|
18868
|
+
W5(n, n.return);
|
|
18869
18869
|
break;
|
|
18870
18870
|
}
|
|
18871
18871
|
case f: {
|
|
18872
18872
|
var i = n.stateNode;
|
|
18873
|
-
typeof i.componentDidMount == "function" && WB(n, n.return, i),
|
|
18873
|
+
typeof i.componentDidMount == "function" && WB(n, n.return, i), K5(n, n.return);
|
|
18874
18874
|
break;
|
|
18875
18875
|
}
|
|
18876
18876
|
case b: {
|
|
18877
|
-
|
|
18877
|
+
K5(n, n.return);
|
|
18878
18878
|
break;
|
|
18879
18879
|
}
|
|
18880
18880
|
}
|
|
@@ -18915,7 +18915,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18915
18915
|
h === g && (h = null), g.sibling.return = g.return, g = g.sibling;
|
|
18916
18916
|
}
|
|
18917
18917
|
}
|
|
18918
|
-
function
|
|
18918
|
+
function Y5(n) {
|
|
18919
18919
|
var i = n.ref;
|
|
18920
18920
|
if (i !== null) {
|
|
18921
18921
|
var h = n.stateNode, g;
|
|
@@ -18945,9 +18945,9 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18945
18945
|
var i = n.alternate;
|
|
18946
18946
|
i !== null && (i.return = null), n.return = null;
|
|
18947
18947
|
}
|
|
18948
|
-
function
|
|
18948
|
+
function Q5(n) {
|
|
18949
18949
|
var i = n.alternate;
|
|
18950
|
-
i !== null && (n.alternate = null,
|
|
18950
|
+
i !== null && (n.alternate = null, Q5(i));
|
|
18951
18951
|
{
|
|
18952
18952
|
if (n.child = null, n.deletions = null, n.sibling = null, n.tag === b) {
|
|
18953
18953
|
var h = n.stateNode;
|
|
@@ -18958,20 +18958,20 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18958
18958
|
}
|
|
18959
18959
|
function rz(n) {
|
|
18960
18960
|
for (var i = n.return; i !== null; ) {
|
|
18961
|
-
if (
|
|
18961
|
+
if (X5(i))
|
|
18962
18962
|
return i;
|
|
18963
18963
|
i = i.return;
|
|
18964
18964
|
}
|
|
18965
18965
|
throw new Error("Expected to find a host parent. This error is likely caused by a bug in React. Please file an issue.");
|
|
18966
18966
|
}
|
|
18967
|
-
function
|
|
18967
|
+
function X5(n) {
|
|
18968
18968
|
return n.tag === b || n.tag === m || n.tag === v;
|
|
18969
18969
|
}
|
|
18970
|
-
function
|
|
18970
|
+
function Z5(n) {
|
|
18971
18971
|
var i = n;
|
|
18972
18972
|
e: for (; ; ) {
|
|
18973
18973
|
for (; i.sibling === null; ) {
|
|
18974
|
-
if (i.return === null ||
|
|
18974
|
+
if (i.return === null || X5(i.return))
|
|
18975
18975
|
return null;
|
|
18976
18976
|
i = i.return;
|
|
18977
18977
|
}
|
|
@@ -18989,14 +18989,14 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
18989
18989
|
switch (i.tag) {
|
|
18990
18990
|
case b: {
|
|
18991
18991
|
var h = i.stateNode;
|
|
18992
|
-
i.flags & ps && (
|
|
18993
|
-
var g =
|
|
18992
|
+
i.flags & ps && (t4(h), i.flags &= ~ps);
|
|
18993
|
+
var g = Z5(n);
|
|
18994
18994
|
gS(n, g, h);
|
|
18995
18995
|
break;
|
|
18996
18996
|
}
|
|
18997
18997
|
case m:
|
|
18998
18998
|
case v: {
|
|
18999
|
-
var A = i.stateNode.containerInfo, U =
|
|
18999
|
+
var A = i.stateNode.containerInfo, U = Z5(n);
|
|
19000
19000
|
mS(n, U, A);
|
|
19001
19001
|
break;
|
|
19002
19002
|
}
|
|
@@ -19230,7 +19230,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19230
19230
|
if (n.flags & ps) {
|
|
19231
19231
|
var U = n.stateNode;
|
|
19232
19232
|
try {
|
|
19233
|
-
|
|
19233
|
+
t4(U);
|
|
19234
19234
|
} catch (_n) {
|
|
19235
19235
|
kr(n, n.return, _n);
|
|
19236
19236
|
}
|
|
@@ -19602,7 +19602,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19602
19602
|
function _z(n) {
|
|
19603
19603
|
for (; en !== null; ) {
|
|
19604
19604
|
var i = en, h = i.sibling, g = i.return;
|
|
19605
|
-
if (
|
|
19605
|
+
if (Q5(i), i === n) {
|
|
19606
19606
|
en = null;
|
|
19607
19607
|
return;
|
|
19608
19608
|
}
|
|
@@ -19772,7 +19772,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19772
19772
|
}
|
|
19773
19773
|
function Ua(n, i, h, g) {
|
|
19774
19774
|
ij(), dk && o("useInsertionEffect must not schedule updates."), TS && (O1 = !0), Wc(n, h, g), ($n & ui) !== St && n === Yi ? uj(i) : (Ci && bd(n, i, h), lj(i), n === Yi && (($n & ui) === Pa && (Nm = Rn(Nm, h)), Da === Om && vf(n, Ia)), Es(n, g), h === bn && $n === Pa && (i.mode & Pn) === cn && // Treat `act` as if it's inside `batchedUpdates`, even in legacy mode.
|
|
19775
|
-
!cu.isBatchingLegacy && (Im(),
|
|
19775
|
+
!cu.isBatchingLegacy && (Im(), d4()));
|
|
19776
19776
|
}
|
|
19777
19777
|
function Dz(n, i, h) {
|
|
19778
19778
|
var g = n.current;
|
|
@@ -19804,7 +19804,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
19804
19804
|
h != null && Tk(h);
|
|
19805
19805
|
var W;
|
|
19806
19806
|
if (A === bn)
|
|
19807
|
-
n.tag === sf ? (cu.isBatchingLegacy !== null && (cu.didScheduleLegacyUpdate = !0), fF(yk.bind(null, n))) :
|
|
19807
|
+
n.tag === sf ? (cu.isBatchingLegacy !== null && (cu.didScheduleLegacyUpdate = !0), fF(yk.bind(null, n))) : f4(yk.bind(null, n)), cu.current !== null ? cu.current.push(of) : yU(function() {
|
|
19808
19808
|
($n & (ui | Ao)) === Pa && of();
|
|
19809
19809
|
}), W = null;
|
|
19810
19810
|
else {
|
|
@@ -20005,7 +20005,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
20005
20005
|
return n(i);
|
|
20006
20006
|
} finally {
|
|
20007
20007
|
$n = h, $n === Pa && // Treat `act` as if it's inside `batchedUpdates`, even in legacy mode.
|
|
20008
|
-
!cu.isBatchingLegacy && (Im(),
|
|
20008
|
+
!cu.isBatchingLegacy && (Im(), d4());
|
|
20009
20009
|
}
|
|
20010
20010
|
}
|
|
20011
20011
|
function jz(n, i, h, g, A) {
|
|
@@ -20042,7 +20042,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
20042
20042
|
if (h !== kx && (n.timeoutHandle = kx, hU(h)), Gr !== null)
|
|
20043
20043
|
for (var g = Gr.return; g !== null; ) {
|
|
20044
20044
|
var A = g.alternate;
|
|
20045
|
-
$
|
|
20045
|
+
$5(A, g), g = g.return;
|
|
20046
20046
|
}
|
|
20047
20047
|
Yi = n;
|
|
20048
20048
|
var U = Xd(n.current, null);
|
|
@@ -20052,7 +20052,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
20052
20052
|
do {
|
|
20053
20053
|
var h = Gr;
|
|
20054
20054
|
try {
|
|
20055
|
-
if ($b(),
|
|
20055
|
+
if ($b(), j4(), Ar(), wS.current = null, h === null || h.return === null) {
|
|
20056
20056
|
Da = Rm, Lm = i, Gr = null;
|
|
20057
20057
|
return;
|
|
20058
20058
|
}
|
|
@@ -20162,7 +20162,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
20162
20162
|
if ((i.flags & td) === ln) {
|
|
20163
20163
|
lr(i);
|
|
20164
20164
|
var A = void 0;
|
|
20165
|
-
if ((i.mode & er) === cn ? A =
|
|
20165
|
+
if ((i.mode & er) === cn ? A = V5(h, i, il) : (I2(i), A = V5(h, i, il), w1(i, !1)), Ar(), A !== null) {
|
|
20166
20166
|
Gr = A;
|
|
20167
20167
|
return;
|
|
20168
20168
|
}
|
|
@@ -20226,9 +20226,9 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
20226
20226
|
var Le = bs();
|
|
20227
20227
|
ea(Qa);
|
|
20228
20228
|
var Ke = $n;
|
|
20229
|
-
$n |= Ao, wS.current = null, KB(n, A),
|
|
20229
|
+
$n |= Ao, wS.current = null, KB(n, A), d5(), uz(n, A, U), oU(n.containerInfo), n.current = A, id(U), lz(A, n, U), sd(), cy(), $n = Ke, ea(Le), oi.transition = Me;
|
|
20230
20230
|
} else
|
|
20231
|
-
n.current = A,
|
|
20231
|
+
n.current = A, d5();
|
|
20232
20232
|
var Ge = Jd;
|
|
20233
20233
|
if (Jd ? (Jd = !1, mf = n, Dm = U) : (o0 = 0, L1 = null), W = n.pendingLanes, W === St && (s0 = null), Ge || Ek(n.current, !1), dy(A.stateNode, g), Ci && n.memoizedUpdaters.clear(), Tz(), Es(n, fa()), i !== null)
|
|
20234
20234
|
for (var at = n.onRecoverableError, ut = 0; ut < i.length; ut++) {
|
|
@@ -20298,7 +20298,7 @@ Learn more about data fetching with Hooks: https://reactjs.org/link/hooks-data-f
|
|
|
20298
20298
|
}
|
|
20299
20299
|
var ej = Zz;
|
|
20300
20300
|
function Sk(n, i, h) {
|
|
20301
|
-
var g = Gd(h, i), A =
|
|
20301
|
+
var g = Gd(h, i), A = w5(n, g, bn), U = lf(n, A, bn), W = Qi();
|
|
20302
20302
|
U !== null && (Wc(U, bn, W), Es(U, W));
|
|
20303
20303
|
}
|
|
20304
20304
|
function kr(n, i, h) {
|
|
@@ -20407,11 +20407,11 @@ Error message:
|
|
|
20407
20407
|
NS = function(n, i, h) {
|
|
20408
20408
|
var g = Pk(oj, i);
|
|
20409
20409
|
try {
|
|
20410
|
-
return
|
|
20410
|
+
return B5(n, i, h);
|
|
20411
20411
|
} catch (U) {
|
|
20412
20412
|
if (bF() || U !== null && typeof U == "object" && typeof U.then == "function")
|
|
20413
20413
|
throw U;
|
|
20414
|
-
if ($b(),
|
|
20414
|
+
if ($b(), j4(), $5(n, i), Pk(i, g), i.mode & er && I2(i), Pu(null, B5, null, n, i, h), Vo()) {
|
|
20415
20415
|
var A = ed();
|
|
20416
20416
|
typeof A == "object" && A !== null && A._suppressLogging && typeof U == "object" && U !== null && !U._suppressLogging && (U._suppressLogging = !0);
|
|
20417
20417
|
}
|
|
@@ -20942,7 +20942,7 @@ Check the render method of \`` + Me + "`.");
|
|
|
20942
20942
|
if (i.tag === f) {
|
|
20943
20943
|
var g = i.type;
|
|
20944
20944
|
if (Xu(g))
|
|
20945
|
-
return
|
|
20945
|
+
return l4(i, g, h);
|
|
20946
20946
|
}
|
|
20947
20947
|
return h;
|
|
20948
20948
|
}
|
|
@@ -21239,7 +21239,7 @@ Check the render method of %s.`, Cn(Ea) || "Unknown"));
|
|
|
21239
21239
|
var i = n.containerInfo;
|
|
21240
21240
|
mk() && o("Attempted to synchronously unmount a root while React was already rendering. React cannot finish unmounting the root until the current render has completed, which may lead to a race condition."), fc(function() {
|
|
21241
21241
|
qm(null, n, null, null);
|
|
21242
|
-
}),
|
|
21242
|
+
}), a4(i);
|
|
21243
21243
|
}
|
|
21244
21244
|
};
|
|
21245
21245
|
function Bj(n, i) {
|
|
@@ -21429,7 +21429,7 @@ Check the render method of %s.`, Cn(Ea) || "Unknown"));
|
|
|
21429
21429
|
}
|
|
21430
21430
|
return fc(function() {
|
|
21431
21431
|
q1(null, null, n, !1, function() {
|
|
21432
|
-
n._reactRootContainer = null,
|
|
21432
|
+
n._reactRootContainer = null, a4(n);
|
|
21433
21433
|
});
|
|
21434
21434
|
}), !0;
|
|
21435
21435
|
} else {
|
|
@@ -50040,7 +50040,7 @@ function VP() {
|
|
|
50040
50040
|
ElvCrypto: async () => {
|
|
50041
50041
|
try {
|
|
50042
50042
|
if (!a.elvCrypto) {
|
|
50043
|
-
const s = (await import("./index-
|
|
50043
|
+
const s = (await import("./index-BG5Fj54J.mjs")).default;
|
|
50044
50044
|
a.elvCrypto = await new s().init();
|
|
50045
50045
|
}
|
|
50046
50046
|
return a.elvCrypto;
|
|
@@ -65669,6 +65669,9 @@ class pee {
|
|
|
65669
65669
|
HasPlaybackStarted() {
|
|
65670
65670
|
return this.player.playbackStarted;
|
|
65671
65671
|
}
|
|
65672
|
+
HasAudio() {
|
|
65673
|
+
return !this.player || !this.player.video ? !1 : this.player.video.mozHasAudio || !!this.player.video.webkitAudioDecodedByteCount || !!this.player.video.audioTracks && this.player.video.audioTracks.length;
|
|
65674
|
+
}
|
|
65672
65675
|
/**
|
|
65673
65676
|
* Play the video
|
|
65674
65677
|
*
|
|
@@ -66888,11 +66891,11 @@ class Cee {
|
|
|
66888
66891
|
const t = this.intervalTree.search(e, e + this.maxInterval)[0];
|
|
66889
66892
|
if (!t)
|
|
66890
66893
|
return;
|
|
66891
|
-
const a = this.thumbnails
|
|
66894
|
+
const a = this.thumbnails && this.thumbnails[t?.toString()];
|
|
66892
66895
|
if (!a)
|
|
66893
66896
|
return;
|
|
66894
66897
|
this.thumbnailCanvas || (this.thumbnailCanvas = document.createElement("canvas"));
|
|
66895
|
-
const s = this.thumbnailImages[a
|
|
66898
|
+
const s = this.thumbnailImages[a.imageUrl];
|
|
66896
66899
|
if (s) {
|
|
66897
66900
|
const [u, o, c, p] = a.thumbnailPosition;
|
|
66898
66901
|
return this.thumbnailCanvas.height = p, this.thumbnailCanvas.width = c, this.thumbnailCanvas.getContext("2d").drawImage(s, u, o, c, p, 0, 0, c, p), this.thumbnailCanvas.toDataURL("image/png");
|
|
@@ -66932,13 +66935,13 @@ class Kw {
|
|
|
66932
66935
|
}
|
|
66933
66936
|
constructor({ target: e, video: t, parameters: a, Reload: s, UpdateParameters: u, SetErrorMessage: o }) {
|
|
66934
66937
|
this.latest = !0, this.loading = !0, this.target = e, this.video = t, this.controls = new pee({ player: this }), this.__settingsListeners = [], this.__listenerDisposers = [], this.__showPlayerProfileForm = !1, this.playbackStarted = !1, this.reloads = 0, this.canPlay = !1, this.isLive = !1, this.dvrEnabled = !1, this.dvrAvailable = !1, this.behindLiveEdge = !1, this.publicMetadataUrl = void 0, this.airplayAvailable = !1, this.chromecastAvailable = dL && a.playerOptions.allowCasting, this.casting = !1, this.usePlayerControls = [
|
|
66935
|
-
|
|
66936
|
-
|
|
66938
|
+
Gt.controls.ON,
|
|
66939
|
+
Gt.controls.AUTO_HIDE
|
|
66937
66940
|
].includes(a.playerOptions.controls), this.__error = void 0, this.__ReloadComponent = s, this.__UpdateParameters = u, this.SetErrorMessage = (c, p) => {
|
|
66938
66941
|
o(c), this.__error = p;
|
|
66939
66942
|
};
|
|
66940
66943
|
try {
|
|
66941
|
-
a.playerOptions.hlsjsOptions && Object.keys(a.playerOptions.hlsjsOptions).length > 0 && (this.customHLSOptions = a.playerOptions.hlsjsOptions, a.playerOptions.playerProfile =
|
|
66944
|
+
a.playerOptions.hlsjsOptions && Object.keys(a.playerOptions.hlsjsOptions).length > 0 && (this.customHLSOptions = a.playerOptions.hlsjsOptions, a.playerOptions.playerProfile = Gt.playerProfile.CUSTOM);
|
|
66942
66945
|
} catch (c) {
|
|
66943
66946
|
this.Log(c, !0);
|
|
66944
66947
|
}
|
|
@@ -66985,7 +66988,7 @@ class Kw {
|
|
|
66985
66988
|
if (a = E.default ? "default" : Object.keys(E)[0], t.offering ? a = E[t.offering] ? t.offering : void 0 : (t.offerings || []).length > 0 ? a = t.offerings.find((T) => E[T]) : t.offerings && t.offerings.length > 0 && (a = t.offerings.find((T) => E[T])), !a)
|
|
66986
66989
|
throw new Error(`Unable to find offering from '${t.offering || t.offerings}'`);
|
|
66987
66990
|
const C = E[a] && E[a].properties || {};
|
|
66988
|
-
s = E[a].uri, this.sourceOptions.contentInfo.liveDVR ===
|
|
66991
|
+
s = E[a].uri, this.sourceOptions.contentInfo.liveDVR === Gt.liveDVR.ON && C.dvr_available ? (u.dvr = 1, this.dvrAvailable = !0) : this.dvrAvailable = !1, this.isLive = C.live;
|
|
66989
66992
|
}
|
|
66990
66993
|
t.directLink ? this.sourceOptions.playoutOptions || (this.sourceOptions.playoutOptions = await e.PlayoutOptions({
|
|
66991
66994
|
offeringURI: s,
|
|
@@ -67101,7 +67104,7 @@ class Kw {
|
|
|
67101
67104
|
if (!this.__destroyed) {
|
|
67102
67105
|
this.__Reset(), this.initialized = !1, this.loading = !0, this.initTime = Date.now(), this.restartParameters = t, this.__SettingsUpdate(), e && (this.originalParameters = ZI(e), this.clientOptions = e.clientOptions, this.sourceOptions = e.sourceOptions, this.playerOptions = e.playerOptions), this.errors = 0, this.__Client();
|
|
67103
67106
|
try {
|
|
67104
|
-
t && (this.video.volume = t.volume, this.video.muted = t.muted, t.playing && (this.playerOptions.autoplay =
|
|
67107
|
+
t && (this.video.volume = t.volume, this.video.muted = t.muted, t.playing && (this.playerOptions.autoplay = Gt.autoplay.ON), t.currentTime && this.__RegisterVideoEventListener(
|
|
67105
67108
|
"loadedmetadata",
|
|
67106
67109
|
() => this.video.currentTime = t.currentTime
|
|
67107
67110
|
)), this.usePlayerControls && this.playerOptions.allowCasting && (this.castHandler = new Iq({
|
|
@@ -67119,7 +67122,7 @@ class Kw {
|
|
|
67119
67122
|
this.reloads = 0, this.playbackStarted = !0, this.__SettingsUpdate(), a();
|
|
67120
67123
|
});
|
|
67121
67124
|
this.__RegisterVideoEventListener("canplay", () => {
|
|
67122
|
-
this.initTime && !this.initTimeLogged && (this.Log(`Player initialization: ${((Date.now() - this.initTime) / 1e3).toFixed(2)} seconds`), this.initTimeLogged = !0, this.canPlay = !0, this.video.textTracks && this.video.textTracks.addEventListener("change", () => this.__SettingsUpdate()), this.video.audioTracks && this.video.audioTracks.addEventListener("change", () => this.__SettingsUpdate()), this.playerOptions.startTime ? this.controls.Seek({ time: parseFloat(this.playerOptions.startTime) }) : this.playerOptions.startProgress && this.controls.Seek({ fraction: parseFloat(this.playerOptions.startProgress) }), this.playerOptions.autoplay ===
|
|
67125
|
+
this.initTime && !this.initTimeLogged && (this.Log(`Player initialization: ${((Date.now() - this.initTime) / 1e3).toFixed(2)} seconds`), this.initTimeLogged = !0, this.canPlay = !0, this.video.textTracks && this.video.textTracks.addEventListener("change", () => this.__SettingsUpdate()), this.video.audioTracks && this.video.audioTracks.addEventListener("change", () => this.__SettingsUpdate()), this.playerOptions.startTime ? this.controls.Seek({ time: parseFloat(this.playerOptions.startTime) }) : this.playerOptions.startProgress && this.controls.Seek({ fraction: parseFloat(this.playerOptions.startProgress) }), this.playerOptions.autoplay === Gt.autoplay.ON && this.controls.Play());
|
|
67123
67126
|
}), this.__RegisterVideoEventListener("seeking", () => {
|
|
67124
67127
|
if (!this.isLive || !this.dvrAvailable)
|
|
67125
67128
|
return;
|
|
@@ -67161,7 +67164,7 @@ class Kw {
|
|
|
67161
67164
|
elvPlayer: this,
|
|
67162
67165
|
playoutUrl: o,
|
|
67163
67166
|
authorizationToken: k,
|
|
67164
|
-
disableCookies: this.playerOptions.collectVideoAnalytics ===
|
|
67167
|
+
disableCookies: this.playerOptions.collectVideoAnalytics === Gt.collectVideoAnalytics.DISABLE_COOKIES
|
|
67165
67168
|
})), this.playerOptions.verifyContent && setTimeout(() => {
|
|
67166
67169
|
this.__VerifyContent();
|
|
67167
67170
|
}, 1e3), this.playerOptions.loadChapters && this.__LoadChapters({ ...this.playoutInfo || {} }).then((M) => this.__chapterTags = M).catch((M) => this.Log(M, !0)), this.playerOptions.playerCallback && this.playerOptions.playerCallback({
|
|
@@ -67198,8 +67201,8 @@ class Kw {
|
|
|
67198
67201
|
async __InitializeHLS({ playoutUrl: e, authorizationToken: t, drm: a, drms: s, multiviewOptions: u }) {
|
|
67199
67202
|
this.HLS = (await import("./hls-CdbpWfyO.mjs")).default;
|
|
67200
67203
|
const o = this.video.canPlayType("application/vnd.apple.mpegURL");
|
|
67201
|
-
if (o && Eee && this.playerOptions.preferNativeHLS || [
|
|
67202
|
-
if (this.nativeHLS = !0, a ===
|
|
67204
|
+
if (o && Eee && this.playerOptions.preferNativeHLS || [Gt.drms.FAIRPLAY, Gt.drms.SAMPLE_AES].includes(a) || !this.HLS.isSupported()) {
|
|
67205
|
+
if (this.nativeHLS = !0, a === Gt.drms.FAIRPLAY ? Pq({ playoutOptions: this.sourceOptions.playoutOptions, video: this.video }) : this.video.src = e.toString(), u.enabled) {
|
|
67203
67206
|
const c = u.SwitchView;
|
|
67204
67207
|
u.SwitchView = async (p) => {
|
|
67205
67208
|
await c(p);
|
|
@@ -67208,23 +67211,23 @@ class Kw {
|
|
|
67208
67211
|
} else {
|
|
67209
67212
|
e.searchParams.delete("authorization");
|
|
67210
67213
|
let c = {};
|
|
67211
|
-
(a ===
|
|
67214
|
+
(a === Gt.drms.PLAYREADY || a === Gt.drms.WIDEVINE) && (c = {
|
|
67212
67215
|
drmSystems: {},
|
|
67213
67216
|
emeEnabled: !0,
|
|
67214
67217
|
licenseXhrSetup: (m, v) => {
|
|
67215
67218
|
m.open("POST", v, !0), m.setRequestHeader("Authorization", `Bearer ${t}`);
|
|
67216
67219
|
}
|
|
67217
|
-
}, a ===
|
|
67220
|
+
}, a === Gt.drms.PLAYREADY ? c.drmSystems = {
|
|
67218
67221
|
"com.microsoft.playready": {
|
|
67219
67222
|
licenseUrl: s[a].licenseServers[0]
|
|
67220
67223
|
}
|
|
67221
|
-
} : a ===
|
|
67224
|
+
} : a === Gt.drms.WIDEVINE && (c.drmSystems = {
|
|
67222
67225
|
"com.widevine.alpha": {
|
|
67223
67226
|
licenseUrl: s[a].licenseServers[0]
|
|
67224
67227
|
}
|
|
67225
67228
|
}));
|
|
67226
67229
|
let p = (Aee[this.playerOptions.playerProfile] || {}).hlsSettings || {};
|
|
67227
|
-
const f = this.playerOptions.playerProfile ===
|
|
67230
|
+
const f = this.playerOptions.playerProfile === Gt.playerProfile.CUSTOM ? this.customHLSOptions : {};
|
|
67228
67231
|
this.sourceOptions.playoutParameters && this.sourceOptions.playoutParameters.channel && Object.keys(f).length === 0 && (p.maxBufferHole = 4.2), this.hlsOptions = {
|
|
67229
67232
|
capLevelToPlayerSize: this.playerOptions.capLevelToPlayerSize,
|
|
67230
67233
|
xhrSetup: (m) => (m.setRequestHeader("Authorization", `Bearer ${t}`), (this.playerOptions.hlsjsOptions || {}).xhrSetup && this.playerOptions.hlsjsOptions.xhrSetup(m), m),
|
|
@@ -67306,7 +67309,7 @@ class Kw {
|
|
|
67306
67309
|
}
|
|
67307
67310
|
}
|
|
67308
67311
|
async __InitializeDash({ playoutUrl: e, authorizationToken: t, drm: a, drms: s }) {
|
|
67309
|
-
this.Dash = (await import("./dash.all.min-
|
|
67312
|
+
this.Dash = (await import("./dash.all.min-CCRLkQpy.mjs").then((c) => c.d)).default;
|
|
67310
67313
|
const u = this.Dash.MediaPlayer().create(), o = this.playerOptions.dashjsOptions || {};
|
|
67311
67314
|
if (u.updateSettings({
|
|
67312
67315
|
...o,
|
|
@@ -67339,7 +67342,7 @@ class Kw {
|
|
|
67339
67342
|
modifyRequestHeader: (c) => (c.setRequestHeader("Authorization", `Bearer ${t}`), c),
|
|
67340
67343
|
modifyRequestURL: (c) => c
|
|
67341
67344
|
};
|
|
67342
|
-
}), a ===
|
|
67345
|
+
}), a === Gt.drms.WIDEVINE) {
|
|
67343
67346
|
const c = s.widevine.licenseServers[0];
|
|
67344
67347
|
u.setProtectionData({
|
|
67345
67348
|
"com.widevine.alpha": {
|
|
@@ -67350,7 +67353,7 @@ class Kw {
|
|
|
67350
67353
|
u.initialize(
|
|
67351
67354
|
this.video,
|
|
67352
67355
|
e.toString(),
|
|
67353
|
-
this.playerOptions.autoplay ===
|
|
67356
|
+
this.playerOptions.autoplay === Gt.autoplay.ON
|
|
67354
67357
|
), [
|
|
67355
67358
|
this.Dash.MediaPlayer.events.TRACK_CHANGE_RENDERED,
|
|
67356
67359
|
this.Dash.MediaPlayer.events.QUALITY_CHANGE_RENDERED,
|
|
@@ -67374,9 +67377,9 @@ class Kw {
|
|
|
67374
67377
|
try {
|
|
67375
67378
|
return await this.video.play(), !0;
|
|
67376
67379
|
} catch (e) {
|
|
67377
|
-
if (e.toString()
|
|
67380
|
+
if (e && (e.toString() || "").includes("AbortError"))
|
|
67378
67381
|
return !1;
|
|
67379
|
-
if (this.Log("Unable to autoplay", !0), this.Log(e, !0), this.playbackStarted = !1, this.playerOptions.muted ===
|
|
67382
|
+
if (this.Log("Unable to autoplay", !0), this.Log(e, !0), this.playbackStarted = !1, this.playerOptions.muted === Gt.muted.OFF_IF_POSSIBLE && this.video.paused && !this.video.muted) {
|
|
67380
67383
|
await new Promise((t) => setTimeout(t, 250)), this.Log("Attempting to autoplay muted"), this.video.muted = !0;
|
|
67381
67384
|
try {
|
|
67382
67385
|
return await this.video.play(), !0;
|
|
@@ -67632,7 +67635,7 @@ class Kw {
|
|
|
67632
67635
|
return y ? await b.utils.ResponseToFormat(y, E) : E;
|
|
67633
67636
|
}
|
|
67634
67637
|
}
|
|
67635
|
-
Kw.EluvioPlayerParameters =
|
|
67638
|
+
Kw.EluvioPlayerParameters = Gt;
|
|
67636
67639
|
Kw.EluvioPlayer = Kw;
|
|
67637
67640
|
var eD = (function() {
|
|
67638
67641
|
if (typeof Map < "u")
|
|
@@ -67996,7 +67999,7 @@ const F_ = ({ element: r, Hide: e }) => {
|
|
|
67996
67999
|
const o = new Vee(u);
|
|
67997
68000
|
return o.observe(r), () => o.disconnect();
|
|
67998
68001
|
}, Wee = ({ player: r }) => {
|
|
67999
|
-
const e = r.video, t = r.playerOptions.autoplay ===
|
|
68002
|
+
const e = r.video, t = r.playerOptions.autoplay === Gt.autoplay.WHEN_VISIBLE, a = r.playerOptions.muted === Gt.muted.WHEN_NOT_VISIBLE;
|
|
68000
68003
|
if (!t && !a)
|
|
68001
68004
|
return;
|
|
68002
68005
|
let s, u;
|
|
@@ -68031,9 +68034,9 @@ const F_ = ({ element: r, Hide: e }) => {
|
|
|
68031
68034
|
o.map((p) => r.video.removeEventListener(p, u)), c.map((p) => r.target.removeEventListener(p, u));
|
|
68032
68035
|
};
|
|
68033
68036
|
}, Jee = ({ player: r, setRecentUserAction: e }) => {
|
|
68034
|
-
if (r.playerOptions.keyboardControls ===
|
|
68037
|
+
if (r.playerOptions.keyboardControls === Gt.keyboardControls.OFF)
|
|
68035
68038
|
return;
|
|
68036
|
-
const t = r.playerOptions.keyboardControls ===
|
|
68039
|
+
const t = r.playerOptions.keyboardControls === Gt.keyboardControls.ARROW_KEYS_DISABLED, a = XI(r, e)(), s = (u) => {
|
|
68037
68040
|
if (
|
|
68038
68041
|
// Keyboard controls should only fire if the player is in focus
|
|
68039
68042
|
!(r.target === u.target || r.target.contains(u.target)) || // Ignore keyboard controls if actively focused on a button or input
|
|
@@ -68187,39 +68190,39 @@ const F_ = ({ element: r, Hide: e }) => {
|
|
|
68187
68190
|
});
|
|
68188
68191
|
};
|
|
68189
68192
|
}
|
|
68190
|
-
}, Qee = "
|
|
68193
|
+
}, Qee = "_container_1rhsp_1", Xee = "_autohide_1rhsp_40", Zee = "_seek_1rhsp_174", ete = "_controls_1rhsp_207", tte = "_time_1rhsp_221", nte = "_spacer_1rhsp_279", rte = "_watermark_1rhsp_296", Bn = {
|
|
68191
68194
|
container: Qee,
|
|
68192
|
-
"container--default-controls": "_container--default-
|
|
68193
|
-
"bottom-controls-container": "_bottom-controls-
|
|
68195
|
+
"container--default-controls": "_container--default-controls_1rhsp_32",
|
|
68196
|
+
"bottom-controls-container": "_bottom-controls-container_1rhsp_36",
|
|
68194
68197
|
autohide: Xee,
|
|
68195
|
-
"info-container": "_info-
|
|
68196
|
-
"bottom-controls-container--autohide": "_bottom-controls-container--
|
|
68197
|
-
"
|
|
68198
|
-
"icon-button
|
|
68199
|
-
"
|
|
68200
|
-
"info-image": "_info-
|
|
68201
|
-
"info-
|
|
68202
|
-
"info-
|
|
68203
|
-
"info-
|
|
68204
|
-
"info-
|
|
68205
|
-
"info-
|
|
68206
|
-
"
|
|
68207
|
-
"center-play-button
|
|
68198
|
+
"info-container": "_info-container_1rhsp_43",
|
|
68199
|
+
"bottom-controls-container--autohide": "_bottom-controls-container--autohide_1rhsp_44",
|
|
68200
|
+
"floating-volume-toggle": "_floating-volume-toggle_1rhsp_45",
|
|
68201
|
+
"icon-button": "_icon-button_1rhsp_51",
|
|
68202
|
+
"icon-button-active": "_icon-button-active_1rhsp_65",
|
|
68203
|
+
"info-image-container": "_info-image-container_1rhsp_106",
|
|
68204
|
+
"info-image": "_info-image_1rhsp_106",
|
|
68205
|
+
"info-text": "_info-text_1rhsp_122",
|
|
68206
|
+
"info-headers": "_info-headers_1rhsp_131",
|
|
68207
|
+
"info-description": "_info-description_1rhsp_141",
|
|
68208
|
+
"info-title": "_info-title_1rhsp_147",
|
|
68209
|
+
"info-subtitle": "_info-subtitle_1rhsp_152",
|
|
68210
|
+
"center-play-button": "_center-play-button_1rhsp_160",
|
|
68211
|
+
"center-play-button--hidden": "_center-play-button--hidden_1rhsp_167",
|
|
68208
68212
|
seek: Zee,
|
|
68209
|
-
"bottom-controls-gradient": "_bottom-controls-
|
|
68213
|
+
"bottom-controls-gradient": "_bottom-controls-gradient_1rhsp_194",
|
|
68210
68214
|
controls: ete,
|
|
68211
|
-
"play-pause-button": "_play-pause-
|
|
68215
|
+
"play-pause-button": "_play-pause-button_1rhsp_217",
|
|
68212
68216
|
time: tte,
|
|
68213
|
-
"live-indicator": "_live-
|
|
68214
|
-
"collection-button-container": "_collection-button-
|
|
68215
|
-
"collection-button-text": "_collection-button-
|
|
68216
|
-
"collection-button-container--loading": "_collection-button-container--
|
|
68217
|
+
"live-indicator": "_live-indicator_1rhsp_231",
|
|
68218
|
+
"collection-button-container": "_collection-button-container_1rhsp_249",
|
|
68219
|
+
"collection-button-text": "_collection-button-text_1rhsp_254",
|
|
68220
|
+
"collection-button-container--loading": "_collection-button-container--loading_1rhsp_263",
|
|
68217
68221
|
spacer: nte,
|
|
68218
|
-
"floating-volume-toggle": "_floating-volume-toggle_pmvh6_282",
|
|
68219
68222
|
watermark: rte,
|
|
68220
|
-
"content-verified-badge": "_content-verified-
|
|
68221
|
-
"content-verification-menu-button": "_content-verification-menu-
|
|
68222
|
-
"menu-control-container": "_menu-control-
|
|
68223
|
+
"content-verified-badge": "_content-verified-badge_1rhsp_307",
|
|
68224
|
+
"content-verification-menu-button": "_content-verification-menu-button_1rhsp_308",
|
|
68225
|
+
"menu-control-container": "_menu-control-container_1rhsp_322"
|
|
68223
68226
|
}, sD = '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="16" cy="16" r="16" fill="currentColor"/> <path d="M22 15.5L13.75 21.1292L13.75 9.87083L22 15.5Z" fill="black"/></svg>', oD = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-play"><polygon points="5 3 19 12 5 21 5 3"></polygon></svg>', uD = '<?xml version="1.0" encoding="utf-8"?><!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve"><circle cx="16" cy="16" r="16" fill="currentColor"/><path d="M22.8,16l-11.6,7V9L22.8,16z" fill="black"/></svg>', ate = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-pause"><rect x="6" y="4" width="4" height="16"></rect><rect x="14" y="4" width="4" height="16"></rect></svg>', lD = '<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="15" fill="currentColor"/><path d="M10 8H14V22H10V8ZM16 8H20V22H16V8Z" fill="black"/></svg>', ite = '<svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1.46154 18.9985L5.84615 18.9942C6.03997 18.9942 6.22584 18.9172 6.36289 18.7801C6.49993 18.6431 6.57692 18.4572 6.57692 18.2634C6.57692 18.0696 6.49993 17.8837 6.36289 17.7467C6.22584 17.6096 6.03997 17.5326 5.84615 17.5326L1.46154 17.537V13.1538C1.46154 12.96 1.38455 12.7742 1.2475 12.6371C1.11046 12.5001 0.924581 12.4231 0.730769 12.4231C0.536957 12.4231 0.351083 12.5001 0.214037 12.6371C0.0769915 12.7742 0 12.96 0 13.1538V19H1.46154V18.9985ZM1.46154 0.00146249V3.57628e-07H0V5.84615C0 6.03997 0.0769915 6.22584 0.214037 6.36289C0.351083 6.49993 0.536957 6.57692 0.730769 6.57692C0.924581 6.57692 1.11046 6.49993 1.2475 6.36289C1.38455 6.22584 1.46154 6.03997 1.46154 5.84615V1.463L5.84615 1.46738C6.03997 1.46738 6.22584 1.39039 6.36289 1.25335C6.49993 1.1163 6.57692 0.930427 6.57692 0.736615C6.57692 0.542803 6.49993 0.35693 6.36289 0.219884C6.22584 0.0828385 6.03997 0.00584609 5.84615 0.00584609L1.46154 0.00146249V0.00146249ZM17.5385 18.9985V19H19V13.1538C19 12.96 18.923 12.7742 18.786 12.6371C18.6489 12.5001 18.463 12.4231 18.2692 12.4231C18.0754 12.4231 17.8895 12.5001 17.7525 12.6371C17.6155 12.7742 17.5385 12.96 17.5385 13.1538V17.537L13.1538 17.5326C12.96 17.5326 12.7742 17.6096 12.6371 17.7467C12.5001 17.8837 12.4231 18.0696 12.4231 18.2634C12.4231 18.4572 12.5001 18.6431 12.6371 18.7801C12.7742 18.9172 12.96 18.9942 13.1538 18.9942L17.5385 18.9985V18.9985ZM17.5385 0.00146249L13.1538 0.00584609C12.96 0.00584609 12.7742 0.0828385 12.6371 0.219884C12.5001 0.35693 12.4231 0.542803 12.4231 0.736615C12.4231 0.930427 12.5001 1.1163 12.6371 1.25335C12.7742 1.39039 12.96 1.46738 13.1538 1.46738L17.5385 1.463V5.84615C17.5385 6.03997 17.6155 6.22584 17.7525 6.36289C17.8895 6.49993 18.0754 6.57692 18.2692 6.57692C18.463 6.57692 18.6489 6.49993 18.786 6.36289C18.923 6.22584 19 6.03997 19 5.84615V3.57628e-07H17.5385V0.00146249V0.00146249Z" fill="currentColor"/></svg>', ste = '<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 51.94 50.82"><defs><style>.cls-1{fill:none;stroke:#fff;stroke-linecap:round;stroke-miterlimit:10;stroke-width:4px;}</style></defs><polyline class="cls-1" points="12.1 49.82 12.1 35.59 1 35.59"/><polyline class="cls-1" points="39.84 1 39.84 15.22 50.94 15.22"/><polyline class="cls-1" points="12.1 1 12.1 15.22 1 15.22"/><polyline class="cls-1" points="39.84 49.82 39.84 35.59 50.94 35.59"/></svg>', ote = '<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#clip0_363_9540)"><path d="M16.0889 9.77734C12.6223 9.77734 9.8667 12.5329 9.8667 15.9996C9.8667 19.4662 12.6223 22.2218 16.0889 22.2218C19.5556 22.2218 22.3111 19.4662 22.3111 15.9996C22.3111 12.5329 19.5556 9.77734 16.0889 9.77734ZM16.0889 20.444C13.6 20.444 11.6445 18.4885 11.6445 15.9996C11.6445 13.5107 13.6 11.5551 16.0889 11.5551C18.5778 11.5551 20.5334 13.5107 20.5334 15.9996C20.5334 18.4885 18.5778 20.444 16.0889 20.444Z" fill="currentColor"/><path d="M29.1556 13.0662L26.6667 12.2662L26.1334 10.9329L27.3778 8.62179C27.6445 8.08845 27.5556 7.37734 27.1112 6.9329L24.9778 4.79957C24.5334 4.35512 23.8223 4.26623 23.2889 4.5329L20.9778 5.77734L19.6445 5.24401L18.8445 2.75512C18.6667 2.22179 18.1334 1.77734 17.5112 1.77734H14.4889C13.8667 1.77734 13.3334 2.22179 13.2445 2.84401L12.4445 5.3329C11.9112 5.42179 11.4667 5.59957 11.0223 5.86623L8.71117 4.62179C8.17783 4.35512 7.46672 4.44401 7.02228 4.88845L4.88894 7.02179C4.4445 7.46623 4.35561 8.17734 4.62228 8.71068L5.77783 10.9329C5.60005 11.3773 5.42228 11.9107 5.2445 12.3551L2.75561 13.1551C2.22228 13.3329 1.77783 13.8662 1.77783 14.4885V17.5107C1.77783 18.1329 2.22228 18.6662 2.8445 18.844L5.33339 19.644L5.86672 20.9773L4.62228 23.2885C4.35561 23.8218 4.4445 24.5329 4.88894 24.9773L7.02228 27.1107C7.46672 27.5551 8.17783 27.644 8.71117 27.3773L11.0223 26.1329L12.3556 26.6662L13.1556 29.244C13.3334 29.7773 13.8667 30.2218 14.4889 30.2218H17.5112C18.1334 30.2218 18.6667 29.7773 18.8445 29.244L19.6445 26.6662L20.9778 26.1329L23.2889 27.3773C23.8223 27.644 24.5334 27.5551 24.9778 27.1107L27.1112 24.9773C27.5556 24.5329 27.6445 23.8218 27.3778 23.2885L26.1334 20.9773L26.6667 19.644L29.2445 18.844C29.7778 18.6662 30.2223 18.1329 30.2223 17.5107V14.4885C30.2223 13.8662 29.7778 13.244 29.1556 13.0662ZM28.4445 17.244L25.2445 18.2218L25.1556 18.6662L24.3556 20.5329L24.0889 20.9773L25.6889 23.9107L23.9112 25.6885L20.9778 24.0885L20.5334 24.3551C19.9112 24.7107 19.2889 24.9773 18.6667 25.1551L18.2223 25.244L17.2445 28.444H14.7556L13.7778 25.244L13.3334 25.1551L11.4667 24.3551L11.0223 24.0885L8.08894 25.6885L6.31117 23.9107L7.91117 20.9773L7.6445 20.5329C7.28894 19.9107 7.02228 19.2885 6.8445 18.6662L6.75561 18.2218L3.55561 17.244V14.7551L6.57783 13.8662L6.75561 13.4218C6.93339 12.7107 7.20005 12.0885 7.55561 11.4662L7.82228 11.0218L6.31117 8.08846L8.08894 6.31068L10.9334 7.91068L11.3778 7.64401C12.0001 7.28846 12.6223 7.02179 13.3334 6.84401L13.7778 6.66623L14.7556 3.55512H17.2445L18.2223 6.66623L18.6667 6.84401C19.2889 7.02179 19.9112 7.28846 20.5334 7.64401L20.9778 7.91068L23.9112 6.31068L25.6889 8.08846L24.0889 11.0218L24.3556 11.4662C24.7112 12.0885 24.9778 12.7107 25.1556 13.3329L25.2445 13.7773L28.4445 14.7551V17.244Z" fill="currentColor"/></g><defs><clipPath id="clip0_363_9540"><rect width="32" height="32" fill="currentColor"/></clipPath></defs></svg>', k8 = '<?xml version="1.0" encoding="utf-8"?><!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 13 12" style="enable-background:new 0 0 10.2 12;" xml:space="preserve"><path d="M5.3,1.4c0.1,0,0.1,0.1,0.2,0.2c0,0.1,0.1,0.2,0.1,0.2v7.4c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.2,0.1-0.3,0 c-0.1,0-0.2,0-0.2-0.1L2.6,7.8H0.5c-0.1,0-0.2,0-0.3-0.1C0,7.6,0,7.5,0,7.4V3.7c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h2.1 l2.2-1.7C4.9,1.4,4.9,1.4,5,1.4C5.1,1.4,5.2,1.4,5.3,1.4L5.3,1.4z" fill="currentColor"/><g> <rect x="7.7" y="3.4" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.4992 7.4586)" width="1.2" height="4.2" fill="currentColor"/> <rect x="6.1" y="4.9" transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.5119 7.4281)" width="4.2" height="1.2" fill="currentColor"/></g></svg>', cD = '<?xml version="1.0" encoding="utf-8"?><!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 13 12" style="enable-background:new 0 0 10.2 12;" xml:space="preserve"><path d="M7.1,8.5C7.5,8.1,7.8,7.6,8,7.1c0.2-0.5,0.3-1,0.3-1.6C8.3,5,8.2,4.5,8,4C7.8,3.4,7.5,3,7.1,2.6L6.5,3.3 c0.3,0.3,0.5,0.7,0.7,1c0.2,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.8-0.2,1.2C7,7.2,6.8,7.5,6.5,7.8L7.1,8.5z M5.3,1.4 c0.1,0,0.1,0.1,0.2,0.2c0,0.1,0.1,0.2,0.1,0.2v7.4c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.2,0.1-0.3,0 c-0.1,0-0.2,0-0.2-0.1L2.6,7.8H0.5c-0.1,0-0.2,0-0.3-0.1C0,7.6,0,7.5,0,7.4V3.7c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h2.1 l2.2-1.7C4.9,1.4,4.9,1.4,5,1.4C5.1,1.4,5.2,1.4,5.3,1.4L5.3,1.4z" fill="currentColor"/></svg>', ute = '<?xml version="1.0" encoding="utf-8"?><!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) --><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 13 12" style="enable-background:new 0 0 10.2 12;" xml:space="preserve"><path d="M8.4,9.8c0.6-0.6,1-1.2,1.3-1.9c0.3-0.7,0.5-1.5,0.5-2.3c0-0.8-0.2-1.6-0.5-2.3C9.4,2.5,9,1.9,8.4,1.3L7.8,2 c0.5,0.5,0.8,1,1.1,1.6c0.3,0.6,0.4,1.3,0.4,1.9c0,0.7-0.1,1.3-0.4,1.9C8.6,8.1,8.2,8.7,7.8,9.1L8.4,9.8z" fill="currentColor"/><path d="M7.1,8.5C7.5,8.1,7.8,7.6,8,7.1c0.2-0.5,0.3-1,0.3-1.6C8.3,5,8.2,4.5,8,4C7.8,3.4,7.5,3,7.1,2.6L6.5,3.3 c0.3,0.3,0.5,0.7,0.7,1c0.2,0.4,0.2,0.8,0.2,1.2c0,0.4-0.1,0.8-0.2,1.2C7,7.2,6.8,7.5,6.5,7.8L7.1,8.5z M5.3,1.4 c0.1,0,0.1,0.1,0.2,0.2c0,0.1,0.1,0.2,0.1,0.2v7.4c0,0.1,0,0.2-0.1,0.2c0,0.1-0.1,0.1-0.2,0.2c-0.1,0-0.2,0.1-0.3,0 c-0.1,0-0.2,0-0.2-0.1L2.6,7.8H0.5c-0.1,0-0.2,0-0.3-0.1C0,7.6,0,7.5,0,7.4V3.7c0-0.1,0-0.2,0.1-0.3c0.1-0.1,0.2-0.1,0.3-0.1h2.1 l2.2-1.7C4.9,1.4,4.9,1.4,5,1.4C5.1,1.4,5.2,1.4,5.3,1.4L5.3,1.4z" fill="currentColor"/></svg>', Qw = '<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.71196 11.08C10.4407 10.3533 11.0186 9.4898 11.4125 8.53906C11.8064 7.58832 12.0085 6.56911 12.0072 5.54C12.0085 4.51089 11.8064 3.49168 11.4125 2.54094C11.0186 1.5902 10.4407 0.726679 9.71196 0L9.05933 0.65171C9.7023 1.2929 10.2122 2.05484 10.5598 2.89374C10.9073 3.73264 11.0856 4.63196 11.0845 5.54C11.0845 7.44904 10.3102 9.17741 9.05933 10.4283L9.71196 11.08V11.08Z" fill="currentColor"/><path d="M8.40781 9.77644C8.96502 9.2207 9.40692 8.56034 9.70812 7.83329C10.0093 7.10624 10.1639 6.32683 10.1629 5.53986C10.1639 4.75289 10.0093 3.97349 9.70812 3.24644C9.40692 2.51939 8.96502 1.85902 8.40781 1.30328L7.7561 1.95499C8.22759 2.42525 8.60149 2.98403 8.85634 3.59924C9.11119 4.21445 9.24195 4.87396 9.24112 5.53986C9.2422 6.20586 9.11164 6.8655 8.85694 7.48087C8.60225 8.09625 8.22845 8.65522 7.75703 9.12565L8.40781 9.77644Z" fill="currentColor"/><path d="M7.10429 8.47307C7.49005 8.08831 7.79596 7.6311 8.00446 7.12773C8.21296 6.62436 8.31993 6.08475 8.31922 5.53991C8.31993 4.99507 8.21296 4.45546 8.00446 3.95209C7.79596 3.44872 7.49005 2.99152 7.10429 2.60675L6.45258 3.25846C6.75261 3.55774 6.99054 3.91337 7.15269 4.30489C7.31483 4.69642 7.39801 5.11614 7.39742 5.53991C7.39795 5.96368 7.31476 6.38338 7.15261 6.7749C6.99047 7.16642 6.75257 7.52205 6.45258 7.82136L7.10429 8.47307ZM5.26991 1.43791C5.348 1.47553 5.4139 1.53441 5.46004 1.60778C5.50618 1.68115 5.5307 1.76605 5.53078 1.85272V9.2271C5.53066 9.31383 5.50607 9.39876 5.45984 9.47214C5.4136 9.54551 5.34761 9.60436 5.26943 9.64191C5.19125 9.67945 5.10407 9.69418 5.01789 9.6844C4.93172 9.67462 4.85005 9.64072 4.78228 9.5866L2.60408 7.8444H0.460899C0.338661 7.8444 0.221429 7.79585 0.134994 7.70941C0.0485588 7.62298 0 7.50574 0 7.38351V3.69632C0 3.57408 0.0485588 3.45685 0.134994 3.37041C0.221429 3.28398 0.338661 3.23542 0.460899 3.23542H2.60408L4.78228 1.49322C4.8501 1.43901 4.93185 1.40506 5.01812 1.39527C5.1044 1.38549 5.19168 1.40027 5.26991 1.43791V1.43791Z" fill="currentColor"/></svg>', lte = '<svg width="25" height="16" viewBox="0 0 25 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1.5 8L24 8" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M8.5 1L1.5 8L8.5 15" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>', hL = '<svg width="91" height="92" viewBox="0 0 91 92" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M62.8896 63.918L62.8897 28.2377L34.8552 46.0779L62.8896 63.918Z" fill="currentColor"/><path d="M45.3281 63.918L45.3281 28.2377L17.2937 46.0779L45.3281 63.918Z" fill="currentColor"/></svg>', cte = '<svg width="91" height="92" viewBox="0 0 91 92" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="45.2374" cy="45.798" r="45.2374" fill="currentColor"/><path d="M62.8896 63.918L62.8897 28.2377L34.8552 46.0779L62.8896 63.918Z" fill="black"/><path d="M45.3281 63.918L45.3281 28.2377L17.2937 46.0779L45.3281 63.918Z" fill="black"/></svg>', yL = '<svg width="91" height="92" viewBox="0 0 91 92" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M26.8555 28.9512V64.6314L54.8899 46.7913L26.8555 28.9512Z" fill="currentColor"/><path d="M44.417 28.9512V64.6314L72.4515 46.7913L44.417 28.9512Z" fill="currentColor"/></svg>', fte = '<svg width="91" height="92" viewBox="0 0 91 92" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="45.7169" cy="45.796" r="45.2374" fill="currentColor"/><path d="M26.8555 28.9512V64.6314L54.8899 46.7913L26.8555 28.9512Z" fill="black"/><path d="M44.417 28.9512V64.6314L72.4515 46.7913L44.417 28.9512Z" fill="black"/></svg>', T8 = '<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 30.8 32" style="enable-background:new 0 0 30.8 32;" xml:space="preserve"><g> <path d="M3.1,16L30.8,0v32L3.1,16z" fill="currentColor"/> <rect y="3.7" width="6.2" height="24.6" fill="currentColor"/></g></svg>', M8 = '<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 30.8 32" style="enable-background:new 0 0 30.8 32;" xml:space="preserve"><g> <path d="M27.7,16L0,32V0L27.7,16z" fill="currentColor"/> <rect x="24.6" y="3.7" width="6.2" height="24.6" fill="currentColor"/></g></svg>', dte = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-list"><line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line></svg>', sp = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>', pte = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>', hte = '<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-badge-cc" width="48" height="48" viewBox="0 0 24 24" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <rect x="3" y="5" width="18" height="14" rx="2" stroke="currentColor"></rect> <path d="M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" stroke="currentColor"></path> <path d="M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" stroke="currentColor"></path></svg>', yte = '<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-badge-cc" width="48" height="48" viewBox="0 0 24 24" stroke="black" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"> <path stroke="none" d="M0 0h24v24H0z" fill="none"></path> <rect x="3" y="5" width="18" height="14" rx="2" stroke="currentColor"></rect> <path d="M10 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" stroke="currentColor"></path> <path d="M17 10.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" stroke="currentColor"></path> <path d="M3 3l18 18" stroke="currentColor"></path></svg>', mte = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rotate-cw"><polyline points="23 4 23 10 17 10"></polyline><path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10"></path></svg>', Xw = '<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 27.5C15 27.5 25 22.5 25 15V6.25L15 2.5L5 6.25V15C5 22.5 15 27.5 15 27.5Z" stroke="currentColor" stroke-width="2.14286" stroke-linecap="round" stroke-linejoin="round"/><path d="M19.715 11.3574L13.8221 17.8396L11.1436 14.8931" stroke="currentColor" stroke-width="2.14286" stroke-linecap="round" stroke-linejoin="round"/></svg>', mL = '<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M23.7508 12.9997V23.7508H13.0003C7.05943 23.7508 2.24919 18.9406 2.24919 12.9997C2.24919 7.05888 7.05943 2.24864 13.0003 2.24864C18.9411 2.24864 23.7508 7.05888 23.7508 12.9997ZM0 12.9997C0 5.82396 5.82396 0 12.9997 0C20.1755 0 26 5.82396 26 12.9997V25.9995H13.0003C5.82396 25.9995 0 20.1755 0 12.9997ZM5.174 13.5197C5.174 16.1976 6.98078 18.4599 9.85371 18.4599C12.2198 18.4599 13.8185 16.9 14.2084 14.8589H11.8686C11.5698 15.7951 10.8155 16.367 9.85371 16.367C8.39758 16.367 7.44886 15.2227 7.44886 13.5202C7.44886 11.8178 8.39813 10.6735 9.85371 10.6735C10.7899 10.6735 11.5305 11.2066 11.8429 12.0903H14.1959C13.7797 10.1011 12.1941 8.58055 9.85371 8.58055C6.96822 8.58001 5.174 10.8418 5.174 13.5197ZM17.3419 8.83999H15.132V18.2131H17.4331V13.3253C17.4331 12.4022 17.6931 11.8041 18.1349 11.4273C18.5249 11.0761 19.0318 10.8942 19.8642 10.8942H20.4491V8.72256H19.8773C18.668 8.72256 17.8624 9.16442 17.3424 9.8406V8.82633V8.83999H17.3419Z" fill="currentColor"/></svg>', gte = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-copy"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg>', fD = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-airplay"><path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"></path><polygon points="12 15 17 21 7 21 12 15"></polygon></svg>', vte = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-cast"><path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"></path><line x1="2" y1="20" x2="2.01" y2="20"></line></svg>', bte = '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-info"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line></svg>';
|
|
68224
68227
|
var gA = { exports: {} }, wte = gA.exports, gL;
|
|
68225
68228
|
function _te() {
|
|
@@ -68961,7 +68964,7 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
68961
68964
|
const [e, t] = Ut.useState(void 0), { title: a, subtitle: s, description: u, image: o, headers: c } = r.controls.GetContentInfo() || {};
|
|
68962
68965
|
return Ut.useEffect(() => {
|
|
68963
68966
|
t(void 0), o && C8({ player: r, pathOrUrl: o, width: 200 }).then((p) => t(p));
|
|
68964
|
-
}, [o]), !a || r.playerOptions.title ===
|
|
68967
|
+
}, [o]), !a || r.playerOptions.title === Gt.title.FULLSCREEN_ONLY && !r.controls.IsFullscreen() || r.playerOptions.title === Gt.title.OFF ? null : /* @__PURE__ */ Ue.jsxs("div", { className: Bn["info-container"], children: [
|
|
68965
68968
|
e ? /* @__PURE__ */ Ue.jsx("div", { className: Bn["info-image-container"], children: /* @__PURE__ */ Ue.jsx("img", { src: e, alt: "Image", className: Bn["info-image"] }) }) : null,
|
|
68966
68969
|
/* @__PURE__ */ Ue.jsxs("div", { className: Bn["info-text"], children: [
|
|
68967
68970
|
c.length === 0 ? null : /* @__PURE__ */ Ue.jsx("div", { className: Bn["info-headers"], children: c.map(
|
|
@@ -69004,7 +69007,7 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
69004
69007
|
};
|
|
69005
69008
|
}, []), !o)
|
|
69006
69009
|
return null;
|
|
69007
|
-
const v = r.controls.GetCollectionInfo(), b = a || !e || y, S = !b &&
|
|
69010
|
+
const v = r.controls.GetCollectionInfo(), b = a || !e || y, S = !b && [Gt.controls.AUTO_HIDE, Gt.controls.OFF_WITH_VOLUME_TOGGLE].includes(r.playerOptions.controls);
|
|
69008
69011
|
return r.__SetControlsVisibility(!S), /* @__PURE__ */ Ue.jsxs(
|
|
69009
69012
|
"div",
|
|
69010
69013
|
{
|
|
@@ -69013,16 +69016,16 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
69013
69016
|
u,
|
|
69014
69017
|
Bn.container,
|
|
69015
69018
|
b ? "" : Bn.autohide,
|
|
69016
|
-
r.playerOptions.controls !==
|
|
69019
|
+
r.playerOptions.controls !== Gt.controls.DEFAULT ? "" : Bn["container--default-controls"],
|
|
69017
69020
|
r.controls.IsMenuVisible() ? "menu-active" : ""
|
|
69018
69021
|
].join(" "),
|
|
69019
69022
|
children: [
|
|
69020
69023
|
/* @__PURE__ */ Ue.jsx(Ite, { player: r }, `content-info-${v && v.mediaIndex}`),
|
|
69021
69024
|
// Main bottom control bar
|
|
69022
69025
|
[
|
|
69023
|
-
|
|
69024
|
-
|
|
69025
|
-
|
|
69026
|
+
Gt.controls.DEFAULT,
|
|
69027
|
+
Gt.controls.OFF,
|
|
69028
|
+
Gt.controls.OFF_WITH_VOLUME_TOGGLE
|
|
69026
69029
|
].includes(r.playerOptions.controls) ? null : /* @__PURE__ */ Ue.jsxs(Ue.Fragment, { children: [
|
|
69027
69030
|
/* @__PURE__ */ Ue.jsx(
|
|
69028
69031
|
dl,
|
|
@@ -69094,7 +69097,7 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
69094
69097
|
] })
|
|
69095
69098
|
] }),
|
|
69096
69099
|
// Floating volume control for 'off with volume toggle' setting
|
|
69097
|
-
r.playerOptions.controls !==
|
|
69100
|
+
r.playerOptions.controls !== Gt.controls.OFF_WITH_VOLUME_TOGGLE || !r.controls.HasAudio() ? null : /* @__PURE__ */ Ue.jsx("div", { className: Bn["floating-volume-toggle"], children: /* @__PURE__ */ Ue.jsx(
|
|
69098
69101
|
dl,
|
|
69099
69102
|
{
|
|
69100
69103
|
"aria-label": o.muted ? "Unmute" : "Mute",
|
|
@@ -69105,7 +69108,7 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
69105
69108
|
"mute-button"
|
|
69106
69109
|
) }),
|
|
69107
69110
|
// Watermark
|
|
69108
|
-
r.playerOptions.watermark ===
|
|
69111
|
+
r.playerOptions.watermark === Gt.watermark.OFF ? null : /* @__PURE__ */ Ue.jsx("div", { className: Bn.watermark, children: /* @__PURE__ */ Ue.jsx("img", { src: dD, alt: "Eluvio" }) })
|
|
69109
69112
|
]
|
|
69110
69113
|
}
|
|
69111
69114
|
);
|
|
@@ -69426,7 +69429,7 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
69426
69429
|
return () => C && C();
|
|
69427
69430
|
}, []), !o)
|
|
69428
69431
|
return null;
|
|
69429
|
-
const { title: v } = r.controls.GetContentInfo() || {}, b = r.controls.GetCollectionInfo(), S = a || !e || r.controls.IsMenuVisible(), E = !S && r.playerOptions.controls ===
|
|
69432
|
+
const { title: v } = r.controls.GetContentInfo() || {}, b = r.controls.GetCollectionInfo(), S = a || !e || r.controls.IsMenuVisible(), E = !S && r.playerOptions.controls === Gt.controls.AUTO_HIDE;
|
|
69430
69433
|
return r.__SetControlsVisibility(!E), /* @__PURE__ */ Ue.jsxs(
|
|
69431
69434
|
"div",
|
|
69432
69435
|
{
|
|
@@ -69435,7 +69438,7 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
69435
69438
|
u,
|
|
69436
69439
|
vn.container,
|
|
69437
69440
|
S ? "" : vn.autohide,
|
|
69438
|
-
r.playerOptions.controls !==
|
|
69441
|
+
r.playerOptions.controls !== Gt.controls.DEFAULT ? "" : vn["container--default-controls"],
|
|
69439
69442
|
r.controls.IsMenuVisible() ? "menu-active" : ""
|
|
69440
69443
|
].join(" "),
|
|
69441
69444
|
children: [
|
|
@@ -69454,7 +69457,7 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
69454
69457
|
y ? /* @__PURE__ */ Ue.jsx(ene, { player: r, Hide: () => m(!1) }) : /* @__PURE__ */ Ue.jsxs("div", { className: `${vn["bottom-controls-container"]} ${E ? vn["bottom-controls-container--autohide"] : ""}`, children: [
|
|
69455
69458
|
/* @__PURE__ */ Ue.jsx("div", { className: vn["bottom-controls-gradient"] }),
|
|
69456
69459
|
/* @__PURE__ */ Ue.jsxs("div", { className: vn["title-container"], children: [
|
|
69457
|
-
/* @__PURE__ */ Ue.jsx("div", { className: vn.title, children: r.playerOptions.title ===
|
|
69460
|
+
/* @__PURE__ */ Ue.jsx("div", { className: vn.title, children: r.playerOptions.title === Gt.title.OFF || r.playerOptions.title === Gt.title.FULLSCREEN_ONLY && !r.controls.IsFullscreen() ? "" : v || "" }),
|
|
69458
69461
|
/* @__PURE__ */ Ue.jsx("div", { className: vn.spacer }),
|
|
69459
69462
|
r.isLive ? r.controls.IsDVRAvailable() ? /* @__PURE__ */ Ue.jsx(yD, { player: r }) : /* @__PURE__ */ Ue.jsx("div", { className: vn["live-indicator"], children: "Live" }) : null,
|
|
69460
69463
|
b ? /* @__PURE__ */ Ue.jsx(
|
|
@@ -69470,7 +69473,7 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
69470
69473
|
/* @__PURE__ */ Ue.jsx(pD, { player: r, videoState: o, setRecentUserAction: s }),
|
|
69471
69474
|
/* @__PURE__ */ Ue.jsx(Xte, { player: r, videoState: o }),
|
|
69472
69475
|
/* @__PURE__ */ Ue.jsxs("div", { className: vn["bottom-controls"], children: [
|
|
69473
|
-
/* @__PURE__ */ Ue.jsx("div", { className: vn["bottom-left-controls"], children: !v || r.playerOptions.title ===
|
|
69476
|
+
/* @__PURE__ */ Ue.jsx("div", { className: vn["bottom-left-controls"], children: !v || r.playerOptions.title === Gt.title.OFF ? null : /* @__PURE__ */ Ue.jsx("button", { className: vn["text-button"], onClick: () => m(!0), children: "Info" }) }),
|
|
69474
69477
|
/* @__PURE__ */ Ue.jsx(Zte, { player: r, videoState: o }),
|
|
69475
69478
|
/* @__PURE__ */ Ue.jsxs("div", { className: vn["bottom-right-controls"], children: [
|
|
69476
69479
|
/* @__PURE__ */ Ue.jsx(tne, { player: r }),
|
|
@@ -69497,7 +69500,7 @@ const pD = ({ player: r, videoState: e, setRecentUserAction: t, className: a = "
|
|
|
69497
69500
|
] })
|
|
69498
69501
|
] }),
|
|
69499
69502
|
// Watermark
|
|
69500
|
-
r.playerOptions.watermark ===
|
|
69503
|
+
r.playerOptions.watermark === Gt.watermark.OFF ? null : /* @__PURE__ */ Ue.jsx("div", { className: vn.watermark, children: /* @__PURE__ */ Ue.jsx("img", { src: dD, alt: "Eluvio" }) })
|
|
69501
69504
|
]
|
|
69502
69505
|
},
|
|
69503
69506
|
"controls"
|
|
@@ -69701,7 +69704,7 @@ const hne = ({
|
|
|
69701
69704
|
onComplete: (Oe) => y(Oe)
|
|
69702
69705
|
}
|
|
69703
69706
|
);
|
|
69704
|
-
const Ce = e.playerOptions.ui ===
|
|
69707
|
+
const Ce = e.playerOptions.ui === Gt.ui.WEB && c && c.controls.IsRotatable() && ee;
|
|
69705
69708
|
return /* @__PURE__ */ Ue.jsxs(
|
|
69706
69709
|
"div",
|
|
69707
69710
|
{
|
|
@@ -69722,9 +69725,9 @@ const hne = ({
|
|
|
69722
69725
|
playsInline: !0,
|
|
69723
69726
|
disablePictureInPicture: !0,
|
|
69724
69727
|
ref: Y,
|
|
69725
|
-
muted: [
|
|
69726
|
-
controls: e.playerOptions.controls ===
|
|
69727
|
-
loop: e.playerOptions.loop ===
|
|
69728
|
+
muted: [Gt.muted.ON, Gt.muted.WHEN_NOT_VISIBLE].includes(e.playerOptions.muted),
|
|
69729
|
+
controls: e.playerOptions.controls === Gt.controls.DEFAULT,
|
|
69730
|
+
loop: e.playerOptions.loop === Gt.loop.ON,
|
|
69728
69731
|
crossOrigin: "anonymous",
|
|
69729
69732
|
className: Rs.video
|
|
69730
69733
|
}
|
|
@@ -69746,7 +69749,7 @@ const hne = ({
|
|
|
69746
69749
|
}
|
|
69747
69750
|
)
|
|
69748
69751
|
] }) : null,
|
|
69749
|
-
c ? e.playerOptions.ui ===
|
|
69752
|
+
c ? e.playerOptions.ui === Gt.ui.WEB ? /* @__PURE__ */ Ue.jsx(
|
|
69750
69753
|
Ute,
|
|
69751
69754
|
{
|
|
69752
69755
|
player: c,
|
|
@@ -69812,7 +69815,7 @@ const hne = ({
|
|
|
69812
69815
|
}));
|
|
69813
69816
|
export {
|
|
69814
69817
|
xne as I,
|
|
69815
|
-
|
|
69818
|
+
Gt as P,
|
|
69816
69819
|
e_ as a,
|
|
69817
69820
|
wA as b,
|
|
69818
69821
|
Hq as c,
|