likec4 1.1.1 → 1.2.1-next
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/__app__/src/lib/webcomponent.mjs +9898 -9139
- package/dist/__app__/src/{main-DvKdwZif.js → main-yVRq2dIl.js} +13107 -13927
- package/dist/__app__/src/main.js +1 -1
- package/dist/__app__/src/style.css +1 -1
- package/dist/__app__/src/{view._viewId.d2.lazy-BeClYUla.js → view._viewId.d2.lazy-CaQPy48H.js} +2 -2
- package/dist/__app__/src/{view._viewId.dot.lazy-BpPRcji5.js → view._viewId.dot.lazy-6H3L1GpV.js} +2 -2
- package/dist/__app__/src/{view._viewId.mmd.lazy-DUPqzS9E.js → view._viewId.mmd.lazy-By6xPESQ.js} +2 -2
- package/dist/__app__/src/{view._viewId.react-legacy.lazy-B2RpQXJ8.js → view._viewId.react-legacy.lazy-Cxs6F284.js} +920 -1299
- package/dist/__app__/src/{view_viewId_.css-CDnAWAE5.js → view_viewId_.css-LQsQcFpp.js} +5 -9
- package/dist/cli/index.mjs +283 -283
- package/package.json +35 -31
- package/react/LikeC4Browser.d.ts +1 -4
- package/react/LikeC4ViewElement.d.ts +1 -4
- package/react/ShadowRoot.d.ts +1 -1
- package/react/index.mjs +24963 -23735
- package/react/styles.d.ts +1 -0
- package/react/types.d.ts +2 -2
|
@@ -1,4 +1,23 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { u as useSyncedRef$1, r as reactExports, i as isBrowser$1, a as useUnmountEffect, b as useFirstMountState, c as commonjsGlobal, g as getDefaultExportFromCjs, s as schedulerExports, R as React, j as jsxRuntimeExports, d as invariant, n as nonexhaustive, e as useUpdateEffect, f as nonNullable, h as defaultTheme, B as Box, k as createLazyFileRoute, l as useRouter, m as useLikeC4View, o as notFound } from "./main-yVRq2dIl.js";
|
|
2
|
+
function useRafCallback(cb) {
|
|
3
|
+
const cbRef = useSyncedRef$1(cb), frame = reactExports.useRef(0), cancel = reactExports.useCallback(() => {
|
|
4
|
+
isBrowser$1 && frame.current && (cancelAnimationFrame(frame.current), frame.current = 0);
|
|
5
|
+
}, []);
|
|
6
|
+
return useUnmountEffect(cancel), [
|
|
7
|
+
reactExports.useMemo(() => {
|
|
8
|
+
const wrapped = (...args) => {
|
|
9
|
+
isBrowser$1 && (cancel(), frame.current = requestAnimationFrame(() => {
|
|
10
|
+
cbRef.current(...args), frame.current = 0;
|
|
11
|
+
}));
|
|
12
|
+
};
|
|
13
|
+
return Object.defineProperties(wrapped, {
|
|
14
|
+
length: { value: cb.length },
|
|
15
|
+
name: { value: `${cb.name || "anonymous"}__raf` }
|
|
16
|
+
}), wrapped;
|
|
17
|
+
}, []),
|
|
18
|
+
cancel
|
|
19
|
+
];
|
|
20
|
+
}
|
|
2
21
|
function useIsMounted$1(initialValue = !1) {
|
|
3
22
|
const isMounted = reactExports.useRef(initialValue), get = reactExports.useCallback(() => isMounted.current, []);
|
|
4
23
|
return reactExports.useEffect(() => (isMounted.current = !0, () => {
|
|
@@ -1313,8 +1332,7 @@ var BailSignal = class extends Error {
|
|
|
1313
1332
|
if (idle) {
|
|
1314
1333
|
const finalVal = getFluidValue(anim.to);
|
|
1315
1334
|
(currVal !== finalVal || changed) && !config2.decay ? (node.setValue(finalVal), this._onChange(finalVal)) : changed && config2.decay && this._onChange(currVal), this._stop();
|
|
1316
|
-
} else
|
|
1317
|
-
changed && this._onChange(currVal);
|
|
1335
|
+
} else changed && this._onChange(currVal);
|
|
1318
1336
|
}
|
|
1319
1337
|
/** Set the current value, while stopping the current animation */
|
|
1320
1338
|
set(value) {
|
|
@@ -2233,15 +2251,12 @@ function parseRegex(maybeRegex) {
|
|
|
2233
2251
|
return maybeRegex.constructor !== RegExp ? [!1] : [!0, maybeRegex.toString()];
|
|
2234
2252
|
}
|
|
2235
2253
|
function equals(a, b) {
|
|
2236
|
-
if (arguments.length === 1)
|
|
2237
|
-
return (_b) => equals(a, _b);
|
|
2254
|
+
if (arguments.length === 1) return (_b) => equals(a, _b);
|
|
2238
2255
|
const aType = type(a);
|
|
2239
|
-
if (aType !== type(b))
|
|
2240
|
-
return !1;
|
|
2256
|
+
if (aType !== type(b)) return !1;
|
|
2241
2257
|
if (aType === "Function")
|
|
2242
2258
|
return a.name === void 0 ? !1 : a.name === b.name;
|
|
2243
|
-
if (["NaN", "Undefined", "Null"].includes(aType))
|
|
2244
|
-
return !0;
|
|
2259
|
+
if (["NaN", "Undefined", "Null"].includes(aType)) return !0;
|
|
2245
2260
|
if (aType === "Number")
|
|
2246
2261
|
return Object.is(-0, a) !== Object.is(-0, b) ? !1 : a.toString() === b.toString();
|
|
2247
2262
|
if (["String", "Boolean"].includes(aType))
|
|
@@ -2258,13 +2273,11 @@ function equals(a, b) {
|
|
|
2258
2273
|
const aRegex = parseRegex(a), bRegex = parseRegex(b);
|
|
2259
2274
|
if (aRegex[0])
|
|
2260
2275
|
return bRegex[0] ? aRegex[1] === bRegex[1] : !1;
|
|
2261
|
-
if (bRegex[0])
|
|
2262
|
-
return !1;
|
|
2276
|
+
if (bRegex[0]) return !1;
|
|
2263
2277
|
const aDate = parseDate(a), bDate = parseDate(b);
|
|
2264
2278
|
if (aDate[0])
|
|
2265
2279
|
return bDate[0] ? aDate[1] === bDate[1] : !1;
|
|
2266
|
-
if (bDate[0])
|
|
2267
|
-
return !1;
|
|
2280
|
+
if (bDate[0]) return !1;
|
|
2268
2281
|
const aError = parseError(a), bError = parseError(b);
|
|
2269
2282
|
if (aError[0])
|
|
2270
2283
|
return bError[0] ? aError[0] === bError[0] && aError[1] === bError[1] : !1;
|
|
@@ -2308,8 +2321,7 @@ function mapObject(fn, obj) {
|
|
|
2308
2321
|
return willReturn;
|
|
2309
2322
|
}
|
|
2310
2323
|
function map(fn, iterable) {
|
|
2311
|
-
if (arguments.length === 1)
|
|
2312
|
-
return (_iterable) => map(fn, _iterable);
|
|
2324
|
+
if (arguments.length === 1) return (_iterable) => map(fn, _iterable);
|
|
2313
2325
|
if (!iterable)
|
|
2314
2326
|
throw new Error(INCORRECT_ITERABLE_INPUT);
|
|
2315
2327
|
return isArray(iterable) ? mapArray(fn, iterable) : mapObject(fn, iterable);
|
|
@@ -2468,8 +2480,7 @@ function memoize(fn, ...inputArguments) {
|
|
|
2468
2480
|
if (arguments.length === 1)
|
|
2469
2481
|
return (...inputArgumentsHolder) => memoize(fn, ...inputArgumentsHolder);
|
|
2470
2482
|
const prop = generateProp(fn, ...inputArguments);
|
|
2471
|
-
if (prop in cache)
|
|
2472
|
-
return cache[prop];
|
|
2483
|
+
if (prop in cache) return cache[prop];
|
|
2473
2484
|
if (type(fn) === "Async")
|
|
2474
2485
|
return new Promise((resolve) => {
|
|
2475
2486
|
fn(...inputArguments).then((result2) => {
|
|
@@ -2482,12 +2493,9 @@ function memoize(fn, ...inputArguments) {
|
|
|
2482
2493
|
function clampFn(min, max, input) {
|
|
2483
2494
|
if (min > max)
|
|
2484
2495
|
throw new Error("min must not be greater than max in clamp(min, max, value)");
|
|
2485
|
-
if (input >= min && input <= max)
|
|
2486
|
-
|
|
2487
|
-
if (input
|
|
2488
|
-
return max;
|
|
2489
|
-
if (input < min)
|
|
2490
|
-
return min;
|
|
2496
|
+
if (input >= min && input <= max) return input;
|
|
2497
|
+
if (input > max) return max;
|
|
2498
|
+
if (input < min) return min;
|
|
2491
2499
|
}
|
|
2492
2500
|
const clamp$1 = curry(clampFn);
|
|
2493
2501
|
function is(targetPrototype, x) {
|
|
@@ -5958,13 +5966,12 @@ var Tween = {};
|
|
|
5958
5966
|
else
|
|
5959
5967
|
for (n = 0; n < len; n++)
|
|
5960
5968
|
diff.push(end[n] - start2[n]);
|
|
5961
|
-
else
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
|
|
5967
|
-
}) : diff = end - start2;
|
|
5969
|
+
else colorAttrs.indexOf(key) !== -1 ? (start2 = Util_12.Util.colorToRGBA(start2), endRGBA = Util_12.Util.colorToRGBA(end), diff = {
|
|
5970
|
+
r: endRGBA.r - start2.r,
|
|
5971
|
+
g: endRGBA.g - start2.g,
|
|
5972
|
+
b: endRGBA.b - start2.b,
|
|
5973
|
+
a: endRGBA.a - start2.a
|
|
5974
|
+
}) : diff = end - start2;
|
|
5968
5975
|
Tween2.attrs[nodeId][this._id][key] = {
|
|
5969
5976
|
start: start2,
|
|
5970
5977
|
diff,
|
|
@@ -5983,8 +5990,7 @@ var Tween = {};
|
|
|
5983
5990
|
else
|
|
5984
5991
|
for (n = 0; n < len; n++)
|
|
5985
5992
|
newVal.push((start2[n] || 0) + diff[n] * i);
|
|
5986
|
-
else
|
|
5987
|
-
colorAttrs.indexOf(key) !== -1 ? newVal = "rgba(" + Math.round(start2.r + diff.r * i) + "," + Math.round(start2.g + diff.g * i) + "," + Math.round(start2.b + diff.b * i) + "," + (start2.a + diff.a * i) + ")" : newVal = start2 + diff * i;
|
|
5993
|
+
else colorAttrs.indexOf(key) !== -1 ? newVal = "rgba(" + Math.round(start2.r + diff.r * i) + "," + Math.round(start2.g + diff.g * i) + "," + Math.round(start2.b + diff.b * i) + "," + (start2.a + diff.a * i) + ")" : newVal = start2 + diff * i;
|
|
5988
5994
|
node.setAttr(key, newVal);
|
|
5989
5995
|
}
|
|
5990
5996
|
}
|
|
@@ -6133,8 +6139,7 @@ var reactReconciler = { exports: {} };
|
|
|
6133
6139
|
var reactReconciler_production_min = function($$$hostConfig) {
|
|
6134
6140
|
var exports = {}, aa = reactExports, ba = schedulerExports, ca = Object.assign;
|
|
6135
6141
|
function m(a) {
|
|
6136
|
-
for (var b = "https://reactjs.org/docs/error-decoder.html?invariant=" + a, c = 1; c < arguments.length; c++)
|
|
6137
|
-
b += "&args[]=" + encodeURIComponent(arguments[c]);
|
|
6142
|
+
for (var b = "https://reactjs.org/docs/error-decoder.html?invariant=" + a, c = 1; c < arguments.length; c++) b += "&args[]=" + encodeURIComponent(arguments[c]);
|
|
6138
6143
|
return "Minified React error #" + a + "; visit " + b + " for the full message or use the non-minified dev environment for full errors and additional helpful warnings.";
|
|
6139
6144
|
}
|
|
6140
6145
|
var da = aa.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED, ea = Symbol.for("react.element"), fa = Symbol.for("react.portal"), ha = Symbol.for("react.fragment"), ia = Symbol.for("react.strict_mode"), ja = Symbol.for("react.profiler"), ka = Symbol.for("react.provider"), la = Symbol.for("react.context"), ma = Symbol.for("react.forward_ref"), na = Symbol.for("react.suspense"), oa = Symbol.for("react.suspense_list"), pa = Symbol.for("react.memo"), qa = Symbol.for("react.lazy"), ra = Symbol.for("react.offscreen"), sa = Symbol.iterator;
|
|
@@ -6142,12 +6147,9 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6142
6147
|
return a === null || typeof a != "object" ? null : (a = sa && a[sa] || a["@@iterator"], typeof a == "function" ? a : null);
|
|
6143
6148
|
}
|
|
6144
6149
|
function ua(a) {
|
|
6145
|
-
if (a == null)
|
|
6146
|
-
|
|
6147
|
-
if (typeof a == "
|
|
6148
|
-
return a.displayName || a.name || null;
|
|
6149
|
-
if (typeof a == "string")
|
|
6150
|
-
return a;
|
|
6150
|
+
if (a == null) return null;
|
|
6151
|
+
if (typeof a == "function") return a.displayName || a.name || null;
|
|
6152
|
+
if (typeof a == "string") return a;
|
|
6151
6153
|
switch (a) {
|
|
6152
6154
|
case ha:
|
|
6153
6155
|
return "Fragment";
|
|
@@ -6162,24 +6164,23 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6162
6164
|
case oa:
|
|
6163
6165
|
return "SuspenseList";
|
|
6164
6166
|
}
|
|
6165
|
-
if (typeof a == "object")
|
|
6166
|
-
|
|
6167
|
-
|
|
6168
|
-
|
|
6169
|
-
|
|
6170
|
-
|
|
6171
|
-
|
|
6172
|
-
|
|
6173
|
-
|
|
6174
|
-
|
|
6175
|
-
|
|
6176
|
-
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
}
|
|
6167
|
+
if (typeof a == "object") switch (a.$$typeof) {
|
|
6168
|
+
case la:
|
|
6169
|
+
return (a.displayName || "Context") + ".Consumer";
|
|
6170
|
+
case ka:
|
|
6171
|
+
return (a._context.displayName || "Context") + ".Provider";
|
|
6172
|
+
case ma:
|
|
6173
|
+
var b = a.render;
|
|
6174
|
+
return a = a.displayName, a || (a = b.displayName || b.name || "", a = a !== "" ? "ForwardRef(" + a + ")" : "ForwardRef"), a;
|
|
6175
|
+
case pa:
|
|
6176
|
+
return b = a.displayName || null, b !== null ? b : ua(a.type) || "Memo";
|
|
6177
|
+
case qa:
|
|
6178
|
+
b = a._payload, a = a._init;
|
|
6179
|
+
try {
|
|
6180
|
+
return ua(a(b));
|
|
6181
|
+
} catch {
|
|
6182
|
+
}
|
|
6183
|
+
}
|
|
6183
6184
|
return null;
|
|
6184
6185
|
}
|
|
6185
6186
|
function va(a) {
|
|
@@ -6227,18 +6228,14 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6227
6228
|
case 2:
|
|
6228
6229
|
case 14:
|
|
6229
6230
|
case 15:
|
|
6230
|
-
if (typeof b == "function")
|
|
6231
|
-
|
|
6232
|
-
if (typeof b == "string")
|
|
6233
|
-
return b;
|
|
6231
|
+
if (typeof b == "function") return b.displayName || b.name || null;
|
|
6232
|
+
if (typeof b == "string") return b;
|
|
6234
6233
|
}
|
|
6235
6234
|
return null;
|
|
6236
6235
|
}
|
|
6237
6236
|
function wa(a) {
|
|
6238
6237
|
var b = a, c = a;
|
|
6239
|
-
if (a.alternate)
|
|
6240
|
-
for (; b.return; )
|
|
6241
|
-
b = b.return;
|
|
6238
|
+
if (a.alternate) for (; b.return; ) b = b.return;
|
|
6242
6239
|
else {
|
|
6243
6240
|
a = b;
|
|
6244
6241
|
do
|
|
@@ -6248,20 +6245,17 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6248
6245
|
return b.tag === 3 ? c : null;
|
|
6249
6246
|
}
|
|
6250
6247
|
function xa(a) {
|
|
6251
|
-
if (wa(a) !== a)
|
|
6252
|
-
throw Error(m(188));
|
|
6248
|
+
if (wa(a) !== a) throw Error(m(188));
|
|
6253
6249
|
}
|
|
6254
6250
|
function ya(a) {
|
|
6255
6251
|
var b = a.alternate;
|
|
6256
6252
|
if (!b) {
|
|
6257
|
-
if (b = wa(a), b === null)
|
|
6258
|
-
throw Error(m(188));
|
|
6253
|
+
if (b = wa(a), b === null) throw Error(m(188));
|
|
6259
6254
|
return b !== a ? null : a;
|
|
6260
6255
|
}
|
|
6261
6256
|
for (var c = a, d = b; ; ) {
|
|
6262
6257
|
var e = c.return;
|
|
6263
|
-
if (e === null)
|
|
6264
|
-
break;
|
|
6258
|
+
if (e === null) break;
|
|
6265
6259
|
var f = e.alternate;
|
|
6266
6260
|
if (f === null) {
|
|
6267
6261
|
if (d = e.return, d !== null) {
|
|
@@ -6272,16 +6266,13 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6272
6266
|
}
|
|
6273
6267
|
if (e.child === f.child) {
|
|
6274
6268
|
for (f = e.child; f; ) {
|
|
6275
|
-
if (f === c)
|
|
6276
|
-
|
|
6277
|
-
if (f === d)
|
|
6278
|
-
return xa(e), b;
|
|
6269
|
+
if (f === c) return xa(e), a;
|
|
6270
|
+
if (f === d) return xa(e), b;
|
|
6279
6271
|
f = f.sibling;
|
|
6280
6272
|
}
|
|
6281
6273
|
throw Error(m(188));
|
|
6282
6274
|
}
|
|
6283
|
-
if (c.return !== d.return)
|
|
6284
|
-
c = e, d = f;
|
|
6275
|
+
if (c.return !== d.return) c = e, d = f;
|
|
6285
6276
|
else {
|
|
6286
6277
|
for (var g = !1, h = e.child; h; ) {
|
|
6287
6278
|
if (h === c) {
|
|
@@ -6306,39 +6297,32 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6306
6297
|
}
|
|
6307
6298
|
h = h.sibling;
|
|
6308
6299
|
}
|
|
6309
|
-
if (!g)
|
|
6310
|
-
throw Error(m(189));
|
|
6300
|
+
if (!g) throw Error(m(189));
|
|
6311
6301
|
}
|
|
6312
6302
|
}
|
|
6313
|
-
if (c.alternate !== d)
|
|
6314
|
-
throw Error(m(190));
|
|
6303
|
+
if (c.alternate !== d) throw Error(m(190));
|
|
6315
6304
|
}
|
|
6316
|
-
if (c.tag !== 3)
|
|
6317
|
-
throw Error(m(188));
|
|
6305
|
+
if (c.tag !== 3) throw Error(m(188));
|
|
6318
6306
|
return c.stateNode.current === c ? a : b;
|
|
6319
6307
|
}
|
|
6320
6308
|
function Aa(a) {
|
|
6321
6309
|
return a = ya(a), a !== null ? Ba(a) : null;
|
|
6322
6310
|
}
|
|
6323
6311
|
function Ba(a) {
|
|
6324
|
-
if (a.tag === 5 || a.tag === 6)
|
|
6325
|
-
return a;
|
|
6312
|
+
if (a.tag === 5 || a.tag === 6) return a;
|
|
6326
6313
|
for (a = a.child; a !== null; ) {
|
|
6327
6314
|
var b = Ba(a);
|
|
6328
|
-
if (b !== null)
|
|
6329
|
-
return b;
|
|
6315
|
+
if (b !== null) return b;
|
|
6330
6316
|
a = a.sibling;
|
|
6331
6317
|
}
|
|
6332
6318
|
return null;
|
|
6333
6319
|
}
|
|
6334
6320
|
function Ca(a) {
|
|
6335
|
-
if (a.tag === 5 || a.tag === 6)
|
|
6336
|
-
return a;
|
|
6321
|
+
if (a.tag === 5 || a.tag === 6) return a;
|
|
6337
6322
|
for (a = a.child; a !== null; ) {
|
|
6338
6323
|
if (a.tag !== 4) {
|
|
6339
6324
|
var b = Ca(a);
|
|
6340
|
-
if (b !== null)
|
|
6341
|
-
return b;
|
|
6325
|
+
if (b !== null) return b;
|
|
6342
6326
|
}
|
|
6343
6327
|
a = a.sibling;
|
|
6344
6328
|
}
|
|
@@ -6346,44 +6330,41 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6346
6330
|
}
|
|
6347
6331
|
var Da = Array.isArray, Ea = $$$hostConfig.getPublicInstance, Fa = $$$hostConfig.getRootHostContext, Ga = $$$hostConfig.getChildHostContext, Ha = $$$hostConfig.prepareForCommit, Ia = $$$hostConfig.resetAfterCommit, Ja = $$$hostConfig.createInstance, Ka = $$$hostConfig.appendInitialChild, La = $$$hostConfig.finalizeInitialChildren, Ma = $$$hostConfig.prepareUpdate, Na = $$$hostConfig.shouldSetTextContent, Oa = $$$hostConfig.createTextInstance, Pa = $$$hostConfig.scheduleTimeout, Qa = $$$hostConfig.cancelTimeout, Ra = $$$hostConfig.noTimeout, Sa = $$$hostConfig.isPrimaryRenderer, Ta = $$$hostConfig.supportsMutation, Ua = $$$hostConfig.supportsPersistence, Va = $$$hostConfig.supportsHydration, Wa = $$$hostConfig.getInstanceFromNode, Xa = $$$hostConfig.preparePortalMount, Ya = $$$hostConfig.getCurrentEventPriority, Za = $$$hostConfig.detachDeletedInstance, $a = $$$hostConfig.supportsMicrotasks, ab = $$$hostConfig.scheduleMicrotask, bb = $$$hostConfig.supportsTestSelectors, cb = $$$hostConfig.findFiberRoot, db = $$$hostConfig.getBoundingRect, eb = $$$hostConfig.getTextContent, fb = $$$hostConfig.isHiddenSubtree, gb = $$$hostConfig.matchAccessibilityRole, hb = $$$hostConfig.setFocusIfFocusable, ib = $$$hostConfig.setupIntersectionObserver, jb = $$$hostConfig.appendChild, kb = $$$hostConfig.appendChildToContainer, lb = $$$hostConfig.commitTextUpdate, mb = $$$hostConfig.commitMount, nb = $$$hostConfig.commitUpdate, ob = $$$hostConfig.insertBefore, pb = $$$hostConfig.insertInContainerBefore, qb = $$$hostConfig.removeChild, rb = $$$hostConfig.removeChildFromContainer, sb = $$$hostConfig.resetTextContent, tb = $$$hostConfig.hideInstance, ub = $$$hostConfig.hideTextInstance, vb = $$$hostConfig.unhideInstance, wb = $$$hostConfig.unhideTextInstance, xb = $$$hostConfig.clearContainer, yb = $$$hostConfig.cloneInstance, zb = $$$hostConfig.createContainerChildSet, Ab = $$$hostConfig.appendChildToContainerChildSet, Bb = $$$hostConfig.finalizeContainerChildren, Cb = $$$hostConfig.replaceContainerChildren, Eb = $$$hostConfig.cloneHiddenInstance, Fb = $$$hostConfig.cloneHiddenTextInstance, Gb = $$$hostConfig.canHydrateInstance, Hb = $$$hostConfig.canHydrateTextInstance, Ib = $$$hostConfig.canHydrateSuspenseInstance, Jb = $$$hostConfig.isSuspenseInstancePending, Kb = $$$hostConfig.isSuspenseInstanceFallback, Lb = $$$hostConfig.getSuspenseInstanceFallbackErrorDetails, Mb = $$$hostConfig.registerSuspenseInstanceRetry, Nb = $$$hostConfig.getNextHydratableSibling, Ob = $$$hostConfig.getFirstHydratableChild, Pb = $$$hostConfig.getFirstHydratableChildWithinContainer, Qb = $$$hostConfig.getFirstHydratableChildWithinSuspenseInstance, Rb = $$$hostConfig.hydrateInstance, Sb = $$$hostConfig.hydrateTextInstance, Tb = $$$hostConfig.hydrateSuspenseInstance, Ub = $$$hostConfig.getNextHydratableInstanceAfterSuspenseInstance, Vb = $$$hostConfig.commitHydratedContainer, Wb = $$$hostConfig.commitHydratedSuspenseInstance, Xb = $$$hostConfig.clearSuspenseBoundary, Yb = $$$hostConfig.clearSuspenseBoundaryFromContainer, Zb = $$$hostConfig.shouldDeleteUnhydratedTailInstances, $b = $$$hostConfig.didNotMatchHydratedContainerTextInstance, ac = $$$hostConfig.didNotMatchHydratedTextInstance, bc;
|
|
6348
6332
|
function cc(a) {
|
|
6349
|
-
if (bc === void 0)
|
|
6350
|
-
|
|
6351
|
-
|
|
6352
|
-
|
|
6353
|
-
|
|
6354
|
-
|
|
6355
|
-
}
|
|
6333
|
+
if (bc === void 0) try {
|
|
6334
|
+
throw Error();
|
|
6335
|
+
} catch (c) {
|
|
6336
|
+
var b = c.stack.trim().match(/\n( *(at )?)/);
|
|
6337
|
+
bc = b && b[1] || "";
|
|
6338
|
+
}
|
|
6356
6339
|
return `
|
|
6357
6340
|
` + bc + a;
|
|
6358
6341
|
}
|
|
6359
6342
|
var dc = !1;
|
|
6360
6343
|
function ec(a, b) {
|
|
6361
|
-
if (!a || dc)
|
|
6362
|
-
return "";
|
|
6344
|
+
if (!a || dc) return "";
|
|
6363
6345
|
dc = !0;
|
|
6364
6346
|
var c = Error.prepareStackTrace;
|
|
6365
6347
|
Error.prepareStackTrace = void 0;
|
|
6366
6348
|
try {
|
|
6367
|
-
if (b)
|
|
6368
|
-
|
|
6369
|
-
|
|
6370
|
-
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
|
|
6374
|
-
|
|
6375
|
-
|
|
6376
|
-
|
|
6377
|
-
|
|
6378
|
-
|
|
6379
|
-
|
|
6380
|
-
|
|
6381
|
-
|
|
6382
|
-
|
|
6383
|
-
d = l;
|
|
6384
|
-
}
|
|
6385
|
-
a.call(b.prototype);
|
|
6349
|
+
if (b) if (b = function() {
|
|
6350
|
+
throw Error();
|
|
6351
|
+
}, Object.defineProperty(b.prototype, "props", { set: function() {
|
|
6352
|
+
throw Error();
|
|
6353
|
+
} }), typeof Reflect == "object" && Reflect.construct) {
|
|
6354
|
+
try {
|
|
6355
|
+
Reflect.construct(b, []);
|
|
6356
|
+
} catch (l) {
|
|
6357
|
+
var d = l;
|
|
6358
|
+
}
|
|
6359
|
+
Reflect.construct(a, [], b);
|
|
6360
|
+
} else {
|
|
6361
|
+
try {
|
|
6362
|
+
b.call();
|
|
6363
|
+
} catch (l) {
|
|
6364
|
+
d = l;
|
|
6386
6365
|
}
|
|
6366
|
+
a.call(b.prototype);
|
|
6367
|
+
}
|
|
6387
6368
|
else {
|
|
6388
6369
|
try {
|
|
6389
6370
|
throw Error();
|
|
@@ -6396,20 +6377,18 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6396
6377
|
if (l && d && typeof l.stack == "string") {
|
|
6397
6378
|
for (var e = l.stack.split(`
|
|
6398
6379
|
`), f = d.stack.split(`
|
|
6399
|
-
`), g = e.length - 1, h = f.length - 1; 1 <= g && 0 <= h && e[g] !== f[h]; )
|
|
6400
|
-
|
|
6401
|
-
|
|
6402
|
-
|
|
6403
|
-
|
|
6404
|
-
|
|
6405
|
-
if (g--, h--, 0 > h || e[g] !== f[h]) {
|
|
6406
|
-
var k = `
|
|
6380
|
+
`), g = e.length - 1, h = f.length - 1; 1 <= g && 0 <= h && e[g] !== f[h]; ) h--;
|
|
6381
|
+
for (; 1 <= g && 0 <= h; g--, h--) if (e[g] !== f[h]) {
|
|
6382
|
+
if (g !== 1 || h !== 1)
|
|
6383
|
+
do
|
|
6384
|
+
if (g--, h--, 0 > h || e[g] !== f[h]) {
|
|
6385
|
+
var k = `
|
|
6407
6386
|
` + e[g].replace(" at new ", " at ");
|
|
6408
|
-
|
|
6409
|
-
|
|
6410
|
-
|
|
6411
|
-
|
|
6412
|
-
|
|
6387
|
+
return a.displayName && k.includes("<anonymous>") && (k = k.replace("<anonymous>", a.displayName)), k;
|
|
6388
|
+
}
|
|
6389
|
+
while (1 <= g && 0 <= h);
|
|
6390
|
+
break;
|
|
6391
|
+
}
|
|
6413
6392
|
}
|
|
6414
6393
|
} finally {
|
|
6415
6394
|
dc = !1, Error.prepareStackTrace = c;
|
|
@@ -6429,14 +6408,11 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6429
6408
|
var jc = {}, x = ic(jc), z = ic(!1), kc = jc;
|
|
6430
6409
|
function lc(a, b) {
|
|
6431
6410
|
var c = a.type.contextTypes;
|
|
6432
|
-
if (!c)
|
|
6433
|
-
return jc;
|
|
6411
|
+
if (!c) return jc;
|
|
6434
6412
|
var d = a.stateNode;
|
|
6435
|
-
if (d && d.__reactInternalMemoizedUnmaskedChildContext === b)
|
|
6436
|
-
return d.__reactInternalMemoizedMaskedChildContext;
|
|
6413
|
+
if (d && d.__reactInternalMemoizedUnmaskedChildContext === b) return d.__reactInternalMemoizedMaskedChildContext;
|
|
6437
6414
|
var e = {}, f;
|
|
6438
|
-
for (f in c)
|
|
6439
|
-
e[f] = b[f];
|
|
6415
|
+
for (f in c) e[f] = b[f];
|
|
6440
6416
|
return d && (a = a.stateNode, a.__reactInternalMemoizedUnmaskedChildContext = b, a.__reactInternalMemoizedMaskedChildContext = e), e;
|
|
6441
6417
|
}
|
|
6442
6418
|
function A(a) {
|
|
@@ -6446,18 +6422,14 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6446
6422
|
q(z), q(x);
|
|
6447
6423
|
}
|
|
6448
6424
|
function nc(a, b, c) {
|
|
6449
|
-
if (x.current !== jc)
|
|
6450
|
-
throw Error(m(168));
|
|
6425
|
+
if (x.current !== jc) throw Error(m(168));
|
|
6451
6426
|
v(x, b), v(z, c);
|
|
6452
6427
|
}
|
|
6453
6428
|
function oc(a, b, c) {
|
|
6454
6429
|
var d = a.stateNode;
|
|
6455
|
-
if (b = b.childContextTypes, typeof d.getChildContext != "function")
|
|
6456
|
-
return c;
|
|
6430
|
+
if (b = b.childContextTypes, typeof d.getChildContext != "function") return c;
|
|
6457
6431
|
d = d.getChildContext();
|
|
6458
|
-
for (var e in d)
|
|
6459
|
-
if (!(e in b))
|
|
6460
|
-
throw Error(m(108, va(a) || "Unknown", e));
|
|
6432
|
+
for (var e in d) if (!(e in b)) throw Error(m(108, va(a) || "Unknown", e));
|
|
6461
6433
|
return ca({}, c, d);
|
|
6462
6434
|
}
|
|
6463
6435
|
function pc(a) {
|
|
@@ -6465,8 +6437,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6465
6437
|
}
|
|
6466
6438
|
function rc(a, b, c) {
|
|
6467
6439
|
var d = a.stateNode;
|
|
6468
|
-
if (!d)
|
|
6469
|
-
throw Error(m(169));
|
|
6440
|
+
if (!d) throw Error(m(169));
|
|
6470
6441
|
c ? (a = oc(a, b, kc), d.__reactInternalMemoizedMergedChildContext = a, q(z), q(x), v(x, a)) : q(z), v(z, c);
|
|
6471
6442
|
}
|
|
6472
6443
|
var tc = Math.clz32 ? Math.clz32 : sc, uc = Math.log, vc = Math.LN2;
|
|
@@ -6525,21 +6496,15 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6525
6496
|
}
|
|
6526
6497
|
function zc(a, b) {
|
|
6527
6498
|
var c = a.pendingLanes;
|
|
6528
|
-
if (c === 0)
|
|
6529
|
-
return 0;
|
|
6499
|
+
if (c === 0) return 0;
|
|
6530
6500
|
var d = 0, e = a.suspendedLanes, f = a.pingedLanes, g = c & 268435455;
|
|
6531
6501
|
if (g !== 0) {
|
|
6532
6502
|
var h = g & ~e;
|
|
6533
6503
|
h !== 0 ? d = yc(h) : (f &= g, f !== 0 && (d = yc(f)));
|
|
6534
|
-
} else
|
|
6535
|
-
|
|
6536
|
-
if (d === 0)
|
|
6537
|
-
|
|
6538
|
-
if (b !== 0 && b !== d && !(b & e) && (e = d & -d, f = b & -b, e >= f || e === 16 && (f & 4194240) !== 0))
|
|
6539
|
-
return b;
|
|
6540
|
-
if (d & 4 && (d |= c & 16), b = a.entangledLanes, b !== 0)
|
|
6541
|
-
for (a = a.entanglements, b &= d; 0 < b; )
|
|
6542
|
-
c = 31 - tc(b), e = 1 << c, d |= a[c], b &= ~e;
|
|
6504
|
+
} else g = c & ~e, g !== 0 ? d = yc(g) : f !== 0 && (d = yc(f));
|
|
6505
|
+
if (d === 0) return 0;
|
|
6506
|
+
if (b !== 0 && b !== d && !(b & e) && (e = d & -d, f = b & -b, e >= f || e === 16 && (f & 4194240) !== 0)) return b;
|
|
6507
|
+
if (d & 4 && (d |= c & 16), b = a.entangledLanes, b !== 0) for (a = a.entanglements, b &= d; 0 < b; ) c = 31 - tc(b), e = 1 << c, d |= a[c], b &= ~e;
|
|
6543
6508
|
return d;
|
|
6544
6509
|
}
|
|
6545
6510
|
function Ac(a, b) {
|
|
@@ -6597,8 +6562,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6597
6562
|
return wc <<= 1, !(wc & 4194240) && (wc = 64), a;
|
|
6598
6563
|
}
|
|
6599
6564
|
function Ec(a) {
|
|
6600
|
-
for (var b = [], c = 0; 31 > c; c++)
|
|
6601
|
-
b.push(a);
|
|
6565
|
+
for (var b = [], c = 0; 31 > c; c++) b.push(a);
|
|
6602
6566
|
return b;
|
|
6603
6567
|
}
|
|
6604
6568
|
function Fc(a, b, c) {
|
|
@@ -6626,11 +6590,10 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6626
6590
|
}
|
|
6627
6591
|
var Jc = ba.unstable_scheduleCallback, Kc = ba.unstable_cancelCallback, Lc = ba.unstable_shouldYield, Mc = ba.unstable_requestPaint, D = ba.unstable_now, Nc = ba.unstable_ImmediatePriority, Oc = ba.unstable_UserBlockingPriority, Pc = ba.unstable_NormalPriority, Qc = ba.unstable_IdlePriority, Rc = null, Sc = null;
|
|
6628
6592
|
function Tc(a) {
|
|
6629
|
-
if (Sc && typeof Sc.onCommitFiberRoot == "function")
|
|
6630
|
-
|
|
6631
|
-
|
|
6632
|
-
|
|
6633
|
-
}
|
|
6593
|
+
if (Sc && typeof Sc.onCommitFiberRoot == "function") try {
|
|
6594
|
+
Sc.onCommitFiberRoot(Rc, a, void 0, (a.current.flags & 128) === 128);
|
|
6595
|
+
} catch {
|
|
6596
|
+
}
|
|
6634
6597
|
}
|
|
6635
6598
|
function Uc(a, b) {
|
|
6636
6599
|
return a === b && (a !== 0 || 1 / a === 1 / b) || a !== a && b !== b;
|
|
@@ -6677,17 +6640,14 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6677
6640
|
if (30 < f) {
|
|
6678
6641
|
var g = e - e % 5;
|
|
6679
6642
|
f = (d & (1 << g) - 1).toString(32), d >>= g, e -= g, id = 1 << 32 - tc(b) + e | c << e | d, jd = f + a;
|
|
6680
|
-
} else
|
|
6681
|
-
id = 1 << f | c << e | d, jd = a;
|
|
6643
|
+
} else id = 1 << f | c << e | d, jd = a;
|
|
6682
6644
|
}
|
|
6683
6645
|
function md(a) {
|
|
6684
6646
|
a.return !== null && (kd(a, 1), ld(a, 1, 0));
|
|
6685
6647
|
}
|
|
6686
6648
|
function nd(a) {
|
|
6687
|
-
for (; a === dd; )
|
|
6688
|
-
|
|
6689
|
-
for (; a === hd; )
|
|
6690
|
-
hd = fd[--gd], fd[gd] = null, jd = fd[--gd], fd[gd] = null, id = fd[--gd], fd[gd] = null;
|
|
6649
|
+
for (; a === dd; ) dd = bd[--cd], bd[cd] = null, ed = bd[--cd], bd[cd] = null;
|
|
6650
|
+
for (; a === hd; ) hd = fd[--gd], fd[gd] = null, jd = fd[--gd], fd[gd] = null, id = fd[--gd], fd[gd] = null;
|
|
6691
6651
|
}
|
|
6692
6652
|
var od = null, pd = null, F = !1, qd = !1, rd = null;
|
|
6693
6653
|
function sd(a, b) {
|
|
@@ -6719,51 +6679,40 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6719
6679
|
if (b) {
|
|
6720
6680
|
var c = b;
|
|
6721
6681
|
if (!ud(a, b)) {
|
|
6722
|
-
if (vd(a))
|
|
6723
|
-
throw Error(m(418));
|
|
6682
|
+
if (vd(a)) throw Error(m(418));
|
|
6724
6683
|
b = Nb(c);
|
|
6725
6684
|
var d = od;
|
|
6726
6685
|
b && ud(a, b) ? sd(d, c) : (a.flags = a.flags & -4097 | 2, F = !1, od = a);
|
|
6727
6686
|
}
|
|
6728
6687
|
} else {
|
|
6729
|
-
if (vd(a))
|
|
6730
|
-
throw Error(m(418));
|
|
6688
|
+
if (vd(a)) throw Error(m(418));
|
|
6731
6689
|
a.flags = a.flags & -4097 | 2, F = !1, od = a;
|
|
6732
6690
|
}
|
|
6733
6691
|
}
|
|
6734
6692
|
}
|
|
6735
6693
|
function xd(a) {
|
|
6736
|
-
for (a = a.return; a !== null && a.tag !== 5 && a.tag !== 3 && a.tag !== 13; )
|
|
6737
|
-
a = a.return;
|
|
6694
|
+
for (a = a.return; a !== null && a.tag !== 5 && a.tag !== 3 && a.tag !== 13; ) a = a.return;
|
|
6738
6695
|
od = a;
|
|
6739
6696
|
}
|
|
6740
6697
|
function yd(a) {
|
|
6741
|
-
if (!Va || a !== od)
|
|
6742
|
-
|
|
6743
|
-
if (!F)
|
|
6744
|
-
return xd(a), F = !0, !1;
|
|
6698
|
+
if (!Va || a !== od) return !1;
|
|
6699
|
+
if (!F) return xd(a), F = !0, !1;
|
|
6745
6700
|
if (a.tag !== 3 && (a.tag !== 5 || Zb(a.type) && !Na(a.type, a.memoizedProps))) {
|
|
6746
6701
|
var b = pd;
|
|
6747
6702
|
if (b) {
|
|
6748
|
-
if (vd(a))
|
|
6749
|
-
|
|
6750
|
-
for (; b; )
|
|
6751
|
-
sd(a, b), b = Nb(b);
|
|
6703
|
+
if (vd(a)) throw zd(), Error(m(418));
|
|
6704
|
+
for (; b; ) sd(a, b), b = Nb(b);
|
|
6752
6705
|
}
|
|
6753
6706
|
}
|
|
6754
6707
|
if (xd(a), a.tag === 13) {
|
|
6755
|
-
if (!Va)
|
|
6756
|
-
|
|
6757
|
-
if (a = a.memoizedState, a = a !== null ? a.dehydrated : null, !a)
|
|
6758
|
-
throw Error(m(317));
|
|
6708
|
+
if (!Va) throw Error(m(316));
|
|
6709
|
+
if (a = a.memoizedState, a = a !== null ? a.dehydrated : null, !a) throw Error(m(317));
|
|
6759
6710
|
pd = Ub(a);
|
|
6760
|
-
} else
|
|
6761
|
-
pd = od ? Nb(a.stateNode) : null;
|
|
6711
|
+
} else pd = od ? Nb(a.stateNode) : null;
|
|
6762
6712
|
return !0;
|
|
6763
6713
|
}
|
|
6764
6714
|
function zd() {
|
|
6765
|
-
for (var a = pd; a; )
|
|
6766
|
-
a = Nb(a);
|
|
6715
|
+
for (var a = pd; a; ) a = Nb(a);
|
|
6767
6716
|
}
|
|
6768
6717
|
function Ad() {
|
|
6769
6718
|
Va && (pd = od = null, qd = F = !1);
|
|
@@ -6773,17 +6722,13 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6773
6722
|
}
|
|
6774
6723
|
var Cd = da.ReactCurrentBatchConfig;
|
|
6775
6724
|
function Dd(a, b) {
|
|
6776
|
-
if (Vc(a, b))
|
|
6777
|
-
|
|
6778
|
-
if (typeof a != "object" || a === null || typeof b != "object" || b === null)
|
|
6779
|
-
return !1;
|
|
6725
|
+
if (Vc(a, b)) return !0;
|
|
6726
|
+
if (typeof a != "object" || a === null || typeof b != "object" || b === null) return !1;
|
|
6780
6727
|
var c = Object.keys(a), d = Object.keys(b);
|
|
6781
|
-
if (c.length !== d.length)
|
|
6782
|
-
return !1;
|
|
6728
|
+
if (c.length !== d.length) return !1;
|
|
6783
6729
|
for (d = 0; d < c.length; d++) {
|
|
6784
6730
|
var e = c[d];
|
|
6785
|
-
if (!fc.call(b, e) || !Vc(a[e], b[e]))
|
|
6786
|
-
return !1;
|
|
6731
|
+
if (!fc.call(b, e) || !Vc(a[e], b[e])) return !1;
|
|
6787
6732
|
}
|
|
6788
6733
|
return !0;
|
|
6789
6734
|
}
|
|
@@ -6812,8 +6757,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6812
6757
|
function Fd(a, b) {
|
|
6813
6758
|
if (a && a.defaultProps) {
|
|
6814
6759
|
b = ca({}, b), a = a.defaultProps;
|
|
6815
|
-
for (var c in a)
|
|
6816
|
-
b[c] === void 0 && (b[c] = a[c]);
|
|
6760
|
+
for (var c in a) b[c] === void 0 && (b[c] = a[c]);
|
|
6817
6761
|
return b;
|
|
6818
6762
|
}
|
|
6819
6763
|
return b;
|
|
@@ -6832,8 +6776,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6832
6776
|
function Nd(a, b, c) {
|
|
6833
6777
|
for (; a !== null; ) {
|
|
6834
6778
|
var d = a.alternate;
|
|
6835
|
-
if ((a.childLanes & b) !== b ? (a.childLanes |= b, d !== null && (d.childLanes |= b)) : d !== null && (d.childLanes & b) !== b && (d.childLanes |= b), a === c)
|
|
6836
|
-
break;
|
|
6779
|
+
if ((a.childLanes & b) !== b ? (a.childLanes |= b, d !== null && (d.childLanes |= b)) : d !== null && (d.childLanes & b) !== b && (d.childLanes |= b), a === c) break;
|
|
6837
6780
|
a = a.return;
|
|
6838
6781
|
}
|
|
6839
6782
|
}
|
|
@@ -6842,13 +6785,10 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6842
6785
|
}
|
|
6843
6786
|
function Pd(a) {
|
|
6844
6787
|
var b = Sa ? a._currentValue : a._currentValue2;
|
|
6845
|
-
if (Jd !== a)
|
|
6846
|
-
if (
|
|
6847
|
-
|
|
6848
|
-
|
|
6849
|
-
Id = a, Hd.dependencies = { lanes: 0, firstContext: a };
|
|
6850
|
-
} else
|
|
6851
|
-
Id = Id.next = a;
|
|
6788
|
+
if (Jd !== a) if (a = { context: a, memoizedValue: b, next: null }, Id === null) {
|
|
6789
|
+
if (Hd === null) throw Error(m(308));
|
|
6790
|
+
Id = a, Hd.dependencies = { lanes: 0, firstContext: a };
|
|
6791
|
+
} else Id = Id.next = a;
|
|
6852
6792
|
return b;
|
|
6853
6793
|
}
|
|
6854
6794
|
var Qd = null;
|
|
@@ -6862,8 +6802,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6862
6802
|
function Td(a, b) {
|
|
6863
6803
|
a.lanes |= b;
|
|
6864
6804
|
var c = a.alternate;
|
|
6865
|
-
for (c !== null && (c.lanes |= b), c = a, a = a.return; a !== null; )
|
|
6866
|
-
a.childLanes |= b, c = a.alternate, c !== null && (c.childLanes |= b), c = a, a = a.return;
|
|
6805
|
+
for (c !== null && (c.lanes |= b), c = a, a = a.return; a !== null; ) a.childLanes |= b, c = a.alternate, c !== null && (c.childLanes |= b), c = a, a = a.return;
|
|
6867
6806
|
return c.tag === 3 ? c.stateNode : null;
|
|
6868
6807
|
}
|
|
6869
6808
|
var Ud = !1;
|
|
@@ -6878,8 +6817,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6878
6817
|
}
|
|
6879
6818
|
function Yd(a, b, c) {
|
|
6880
6819
|
var d = a.updateQueue;
|
|
6881
|
-
if (d === null)
|
|
6882
|
-
return null;
|
|
6820
|
+
if (d === null) return null;
|
|
6883
6821
|
if (d = d.shared, H & 2) {
|
|
6884
6822
|
var e = d.pending;
|
|
6885
6823
|
return e === null ? b.next = b : (b.next = e.next, e.next = b), d.pending = b, Td(a, c);
|
|
@@ -6902,8 +6840,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6902
6840
|
f === null ? e = f = g : f = f.next = g, c = c.next;
|
|
6903
6841
|
} while (c !== null);
|
|
6904
6842
|
f === null ? e = f = b : f = f.next = b;
|
|
6905
|
-
} else
|
|
6906
|
-
e = f = b;
|
|
6843
|
+
} else e = f = b;
|
|
6907
6844
|
c = { baseState: d.baseState, firstBaseUpdate: e, lastBaseUpdate: f, shared: d.shared, effects: d.effects }, a.updateQueue = c;
|
|
6908
6845
|
return;
|
|
6909
6846
|
}
|
|
@@ -6947,8 +6884,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6947
6884
|
case 3:
|
|
6948
6885
|
w.flags = w.flags & -65537 | 128;
|
|
6949
6886
|
case 0:
|
|
6950
|
-
if (w = Z.payload, p = typeof w == "function" ? w.call(B, t, p) : w, p == null)
|
|
6951
|
-
break a;
|
|
6887
|
+
if (w = Z.payload, p = typeof w == "function" ? w.call(B, t, p) : w, p == null) break a;
|
|
6952
6888
|
t = ca({}, t, p);
|
|
6953
6889
|
break a;
|
|
6954
6890
|
case 2:
|
|
@@ -6956,11 +6892,9 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6956
6892
|
}
|
|
6957
6893
|
}
|
|
6958
6894
|
h.callback !== null && h.lane !== 0 && (a.flags |= 64, p = e.effects, p === null ? e.effects = [h] : p.push(h));
|
|
6959
|
-
} else
|
|
6960
|
-
B = { eventTime: B, lane: p, tag: h.tag, payload: h.payload, callback: h.callback, next: null }, n === null ? (l = n = B, k = t) : n = n.next = B, g |= p;
|
|
6895
|
+
} else B = { eventTime: B, lane: p, tag: h.tag, payload: h.payload, callback: h.callback, next: null }, n === null ? (l = n = B, k = t) : n = n.next = B, g |= p;
|
|
6961
6896
|
if (h = h.next, h === null) {
|
|
6962
|
-
if (h = e.shared.pending, h === null)
|
|
6963
|
-
break;
|
|
6897
|
+
if (h = e.shared.pending, h === null) break;
|
|
6964
6898
|
p = h, h = p.next, p.next = null, e.lastBaseUpdate = p, e.shared.pending = null;
|
|
6965
6899
|
}
|
|
6966
6900
|
} while (!0);
|
|
@@ -6969,21 +6903,18 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
6969
6903
|
do
|
|
6970
6904
|
g |= e.lane, e = e.next;
|
|
6971
6905
|
while (e !== b);
|
|
6972
|
-
} else
|
|
6973
|
-
f === null && (e.shared.lanes = 0);
|
|
6906
|
+
} else f === null && (e.shared.lanes = 0);
|
|
6974
6907
|
be |= g, a.lanes = g, a.memoizedState = t;
|
|
6975
6908
|
}
|
|
6976
6909
|
}
|
|
6977
6910
|
function ce(a, b, c) {
|
|
6978
|
-
if (a = b.effects, b.effects = null, a !== null)
|
|
6979
|
-
|
|
6980
|
-
|
|
6981
|
-
if (e
|
|
6982
|
-
|
|
6983
|
-
throw Error(m(191, e));
|
|
6984
|
-
e.call(d);
|
|
6985
|
-
}
|
|
6911
|
+
if (a = b.effects, b.effects = null, a !== null) for (b = 0; b < a.length; b++) {
|
|
6912
|
+
var d = a[b], e = d.callback;
|
|
6913
|
+
if (e !== null) {
|
|
6914
|
+
if (d.callback = null, d = c, typeof e != "function") throw Error(m(191, e));
|
|
6915
|
+
e.call(d);
|
|
6986
6916
|
}
|
|
6917
|
+
}
|
|
6987
6918
|
}
|
|
6988
6919
|
var de = new aa.Component().refs;
|
|
6989
6920
|
function ee(a, b, c, d) {
|
|
@@ -7024,22 +6955,18 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7024
6955
|
if (a = c.ref, a !== null && typeof a != "function" && typeof a != "object") {
|
|
7025
6956
|
if (c._owner) {
|
|
7026
6957
|
if (c = c._owner, c) {
|
|
7027
|
-
if (c.tag !== 1)
|
|
7028
|
-
throw Error(m(309));
|
|
6958
|
+
if (c.tag !== 1) throw Error(m(309));
|
|
7029
6959
|
var d = c.stateNode;
|
|
7030
6960
|
}
|
|
7031
|
-
if (!d)
|
|
7032
|
-
throw Error(m(147, a));
|
|
6961
|
+
if (!d) throw Error(m(147, a));
|
|
7033
6962
|
var e = d, f = "" + a;
|
|
7034
6963
|
return b !== null && b.ref !== null && typeof b.ref == "function" && b.ref._stringRef === f ? b.ref : (b = function(a2) {
|
|
7035
6964
|
var b2 = e.refs;
|
|
7036
6965
|
b2 === de && (b2 = e.refs = {}), a2 === null ? delete b2[f] : b2[f] = a2;
|
|
7037
6966
|
}, b._stringRef = f, b);
|
|
7038
6967
|
}
|
|
7039
|
-
if (typeof a != "string")
|
|
7040
|
-
|
|
7041
|
-
if (!c._owner)
|
|
7042
|
-
throw Error(m(290, a));
|
|
6968
|
+
if (typeof a != "string") throw Error(m(284));
|
|
6969
|
+
if (!c._owner) throw Error(m(290, a));
|
|
7043
6970
|
}
|
|
7044
6971
|
return a;
|
|
7045
6972
|
}
|
|
@@ -7058,15 +6985,12 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7058
6985
|
}
|
|
7059
6986
|
}
|
|
7060
6987
|
function c(c6, d2) {
|
|
7061
|
-
if (!a)
|
|
7062
|
-
|
|
7063
|
-
for (; d2 !== null; )
|
|
7064
|
-
b(c6, d2), d2 = d2.sibling;
|
|
6988
|
+
if (!a) return null;
|
|
6989
|
+
for (; d2 !== null; ) b(c6, d2), d2 = d2.sibling;
|
|
7065
6990
|
return null;
|
|
7066
6991
|
}
|
|
7067
6992
|
function d(a2, b2) {
|
|
7068
|
-
for (a2 = /* @__PURE__ */ new Map(); b2 !== null; )
|
|
7069
|
-
b2.key !== null ? a2.set(b2.key, b2) : a2.set(b2.index, b2), b2 = b2.sibling;
|
|
6993
|
+
for (a2 = /* @__PURE__ */ new Map(); b2 !== null; ) b2.key !== null ? a2.set(b2.key, b2) : a2.set(b2.index, b2), b2 = b2.sibling;
|
|
7070
6994
|
return a2;
|
|
7071
6995
|
}
|
|
7072
6996
|
function e(a2, b2) {
|
|
@@ -7092,8 +7016,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7092
7016
|
return b2 === null || b2.tag !== 7 ? (b2 = ue(c6, a2.mode, d2, f2), b2.return = a2, b2) : (b2 = e(b2, c6), b2.return = a2, b2);
|
|
7093
7017
|
}
|
|
7094
7018
|
function t(a2, b2, c6) {
|
|
7095
|
-
if (typeof b2 == "string" && b2 !== "" || typeof b2 == "number")
|
|
7096
|
-
return b2 = re("" + b2, a2.mode, c6), b2.return = a2, b2;
|
|
7019
|
+
if (typeof b2 == "string" && b2 !== "" || typeof b2 == "number") return b2 = re("" + b2, a2.mode, c6), b2.return = a2, b2;
|
|
7097
7020
|
if (typeof b2 == "object" && b2 !== null) {
|
|
7098
7021
|
switch (b2.$$typeof) {
|
|
7099
7022
|
case ea:
|
|
@@ -7104,16 +7027,14 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7104
7027
|
var d2 = b2._init;
|
|
7105
7028
|
return t(a2, d2(b2._payload), c6);
|
|
7106
7029
|
}
|
|
7107
|
-
if (Da(b2) || ta(b2))
|
|
7108
|
-
return b2 = ue(b2, a2.mode, c6, null), b2.return = a2, b2;
|
|
7030
|
+
if (Da(b2) || ta(b2)) return b2 = ue(b2, a2.mode, c6, null), b2.return = a2, b2;
|
|
7109
7031
|
ne(a2, b2);
|
|
7110
7032
|
}
|
|
7111
7033
|
return null;
|
|
7112
7034
|
}
|
|
7113
7035
|
function p(a2, b2, c6, d2) {
|
|
7114
7036
|
var e2 = b2 !== null ? b2.key : null;
|
|
7115
|
-
if (typeof c6 == "string" && c6 !== "" || typeof c6 == "number")
|
|
7116
|
-
return e2 !== null ? null : h(a2, b2, "" + c6, d2);
|
|
7037
|
+
if (typeof c6 == "string" && c6 !== "" || typeof c6 == "number") return e2 !== null ? null : h(a2, b2, "" + c6, d2);
|
|
7117
7038
|
if (typeof c6 == "object" && c6 !== null) {
|
|
7118
7039
|
switch (c6.$$typeof) {
|
|
7119
7040
|
case ea:
|
|
@@ -7128,15 +7049,13 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7128
7049
|
d2
|
|
7129
7050
|
);
|
|
7130
7051
|
}
|
|
7131
|
-
if (Da(c6) || ta(c6))
|
|
7132
|
-
return e2 !== null ? null : n(a2, b2, c6, d2, null);
|
|
7052
|
+
if (Da(c6) || ta(c6)) return e2 !== null ? null : n(a2, b2, c6, d2, null);
|
|
7133
7053
|
ne(a2, c6);
|
|
7134
7054
|
}
|
|
7135
7055
|
return null;
|
|
7136
7056
|
}
|
|
7137
7057
|
function B(a2, b2, c6, d2, e2) {
|
|
7138
|
-
if (typeof d2 == "string" && d2 !== "" || typeof d2 == "number")
|
|
7139
|
-
return a2 = a2.get(c6) || null, h(b2, a2, "" + d2, e2);
|
|
7058
|
+
if (typeof d2 == "string" && d2 !== "" || typeof d2 == "number") return a2 = a2.get(c6) || null, h(b2, a2, "" + d2, e2);
|
|
7140
7059
|
if (typeof d2 == "object" && d2 !== null) {
|
|
7141
7060
|
switch (d2.$$typeof) {
|
|
7142
7061
|
case ea:
|
|
@@ -7147,8 +7066,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7147
7066
|
var f2 = d2._init;
|
|
7148
7067
|
return B(a2, b2, c6, f2(d2._payload), e2);
|
|
7149
7068
|
}
|
|
7150
|
-
if (Da(d2) || ta(d2))
|
|
7151
|
-
return a2 = a2.get(c6) || null, n(b2, a2, d2, e2, null);
|
|
7069
|
+
if (Da(d2) || ta(d2)) return a2 = a2.get(c6) || null, n(b2, a2, d2, e2, null);
|
|
7152
7070
|
ne(b2, d2);
|
|
7153
7071
|
}
|
|
7154
7072
|
return null;
|
|
@@ -7163,25 +7081,20 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7163
7081
|
}
|
|
7164
7082
|
a && r && y.alternate === null && b(e2, r), g2 = f(y, g2, u), n2 === null ? l2 = y : n2.sibling = y, n2 = y, r = E;
|
|
7165
7083
|
}
|
|
7166
|
-
if (u === h2.length)
|
|
7167
|
-
return c(e2, r), F && kd(e2, u), l2;
|
|
7084
|
+
if (u === h2.length) return c(e2, r), F && kd(e2, u), l2;
|
|
7168
7085
|
if (r === null) {
|
|
7169
|
-
for (; u < h2.length; u++)
|
|
7170
|
-
r = t(e2, h2[u], k2), r !== null && (g2 = f(r, g2, u), n2 === null ? l2 = r : n2.sibling = r, n2 = r);
|
|
7086
|
+
for (; u < h2.length; u++) r = t(e2, h2[u], k2), r !== null && (g2 = f(r, g2, u), n2 === null ? l2 = r : n2.sibling = r, n2 = r);
|
|
7171
7087
|
return F && kd(e2, u), l2;
|
|
7172
7088
|
}
|
|
7173
|
-
for (r = d(e2, r); u < h2.length; u++)
|
|
7174
|
-
E = B(r, e2, u, h2[u], k2), E !== null && (a && E.alternate !== null && r.delete(E.key === null ? u : E.key), g2 = f(E, g2, u), n2 === null ? l2 = E : n2.sibling = E, n2 = E);
|
|
7089
|
+
for (r = d(e2, r); u < h2.length; u++) E = B(r, e2, u, h2[u], k2), E !== null && (a && E.alternate !== null && r.delete(E.key === null ? u : E.key), g2 = f(E, g2, u), n2 === null ? l2 = E : n2.sibling = E, n2 = E);
|
|
7175
7090
|
return a && r.forEach(function(a2) {
|
|
7176
7091
|
return b(e2, a2);
|
|
7177
7092
|
}), F && kd(e2, u), l2;
|
|
7178
7093
|
}
|
|
7179
7094
|
function Z(e2, g2, h2, k2) {
|
|
7180
7095
|
var l2 = ta(h2);
|
|
7181
|
-
if (typeof l2 != "function")
|
|
7182
|
-
|
|
7183
|
-
if (h2 = l2.call(h2), h2 == null)
|
|
7184
|
-
throw Error(m(151));
|
|
7096
|
+
if (typeof l2 != "function") throw Error(m(150));
|
|
7097
|
+
if (h2 = l2.call(h2), h2 == null) throw Error(m(151));
|
|
7185
7098
|
for (var n2 = l2 = null, r = g2, u = g2 = 0, E = null, y = h2.next(); r !== null && !y.done; u++, y = h2.next()) {
|
|
7186
7099
|
r.index > u ? (E = r, r = null) : E = r.sibling;
|
|
7187
7100
|
var w2 = p(e2, r, y.value, k2);
|
|
@@ -7191,18 +7104,15 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7191
7104
|
}
|
|
7192
7105
|
a && r && w2.alternate === null && b(e2, r), g2 = f(w2, g2, u), n2 === null ? l2 = w2 : n2.sibling = w2, n2 = w2, r = E;
|
|
7193
7106
|
}
|
|
7194
|
-
if (y.done)
|
|
7195
|
-
|
|
7196
|
-
|
|
7197
|
-
|
|
7198
|
-
), F && kd(e2, u), l2;
|
|
7107
|
+
if (y.done) return c(
|
|
7108
|
+
e2,
|
|
7109
|
+
r
|
|
7110
|
+
), F && kd(e2, u), l2;
|
|
7199
7111
|
if (r === null) {
|
|
7200
|
-
for (; !y.done; u++, y = h2.next())
|
|
7201
|
-
y = t(e2, y.value, k2), y !== null && (g2 = f(y, g2, u), n2 === null ? l2 = y : n2.sibling = y, n2 = y);
|
|
7112
|
+
for (; !y.done; u++, y = h2.next()) y = t(e2, y.value, k2), y !== null && (g2 = f(y, g2, u), n2 === null ? l2 = y : n2.sibling = y, n2 = y);
|
|
7202
7113
|
return F && kd(e2, u), l2;
|
|
7203
7114
|
}
|
|
7204
|
-
for (r = d(e2, r); !y.done; u++, y = h2.next())
|
|
7205
|
-
y = B(r, e2, u, y.value, k2), y !== null && (a && y.alternate !== null && r.delete(y.key === null ? u : y.key), g2 = f(y, g2, u), n2 === null ? l2 = y : n2.sibling = y, n2 = y);
|
|
7115
|
+
for (r = d(e2, r); !y.done; u++, y = h2.next()) y = B(r, e2, u, y.value, k2), y !== null && (a && y.alternate !== null && r.delete(y.key === null ? u : y.key), g2 = f(y, g2, u), n2 === null ? l2 = y : n2.sibling = y, n2 = y);
|
|
7206
7116
|
return a && r.forEach(function(a2) {
|
|
7207
7117
|
return b(e2, a2);
|
|
7208
7118
|
}), F && kd(e2, u), l2;
|
|
@@ -7225,8 +7135,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7225
7135
|
}
|
|
7226
7136
|
c(a2, l2);
|
|
7227
7137
|
break;
|
|
7228
|
-
} else
|
|
7229
|
-
b(a2, l2);
|
|
7138
|
+
} else b(a2, l2);
|
|
7230
7139
|
l2 = l2.sibling;
|
|
7231
7140
|
}
|
|
7232
7141
|
f2.type === ha ? (d2 = ue(f2.props.children, a2.mode, h2, f2.key), d2.return = a2, a2 = d2) : (h2 = se(f2.type, f2.key, f2.props, null, a2.mode, h2), h2.ref = me(a2, d2, f2), h2.return = a2, a2 = h2);
|
|
@@ -7235,16 +7144,14 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7235
7144
|
case fa:
|
|
7236
7145
|
a: {
|
|
7237
7146
|
for (l2 = f2.key; d2 !== null; ) {
|
|
7238
|
-
if (d2.key === l2)
|
|
7239
|
-
|
|
7240
|
-
|
|
7241
|
-
|
|
7242
|
-
|
|
7243
|
-
|
|
7244
|
-
|
|
7245
|
-
|
|
7246
|
-
else
|
|
7247
|
-
b(a2, d2);
|
|
7147
|
+
if (d2.key === l2) if (d2.tag === 4 && d2.stateNode.containerInfo === f2.containerInfo && d2.stateNode.implementation === f2.implementation) {
|
|
7148
|
+
c(a2, d2.sibling), d2 = e(d2, f2.children || []), d2.return = a2, a2 = d2;
|
|
7149
|
+
break a;
|
|
7150
|
+
} else {
|
|
7151
|
+
c(a2, d2);
|
|
7152
|
+
break;
|
|
7153
|
+
}
|
|
7154
|
+
else b(a2, d2);
|
|
7248
7155
|
d2 = d2.sibling;
|
|
7249
7156
|
}
|
|
7250
7157
|
d2 = te(f2, a2.mode, h2), d2.return = a2, a2 = d2;
|
|
@@ -7253,10 +7160,8 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7253
7160
|
case qa:
|
|
7254
7161
|
return l2 = f2._init, za(a2, d2, l2(f2._payload), h2);
|
|
7255
7162
|
}
|
|
7256
|
-
if (Da(f2))
|
|
7257
|
-
|
|
7258
|
-
if (ta(f2))
|
|
7259
|
-
return Z(a2, d2, f2, h2);
|
|
7163
|
+
if (Da(f2)) return w(a2, d2, f2, h2);
|
|
7164
|
+
if (ta(f2)) return Z(a2, d2, f2, h2);
|
|
7260
7165
|
ne(a2, f2);
|
|
7261
7166
|
}
|
|
7262
7167
|
return typeof f2 == "string" && f2 !== "" || typeof f2 == "number" ? (f2 = "" + f2, d2 !== null && d2.tag === 6 ? (c(a2, d2.sibling), d2 = e(d2, f2), d2.return = a2, a2 = d2) : (c(a2, d2), d2 = re(f2, a2.mode, h2), d2.return = a2, a2 = d2), g(a2)) : c(a2, d2);
|
|
@@ -7265,8 +7170,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7265
7170
|
}
|
|
7266
7171
|
var ve = pe(!0), we = pe(!1), xe = {}, ye = ic(xe), ze = ic(xe), Ae = ic(xe);
|
|
7267
7172
|
function Be(a) {
|
|
7268
|
-
if (a === xe)
|
|
7269
|
-
throw Error(m(174));
|
|
7173
|
+
if (a === xe) throw Error(m(174));
|
|
7270
7174
|
return a;
|
|
7271
7175
|
}
|
|
7272
7176
|
function Ce(a, b) {
|
|
@@ -7287,20 +7191,16 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7287
7191
|
for (var b = a; b !== null; ) {
|
|
7288
7192
|
if (b.tag === 13) {
|
|
7289
7193
|
var c = b.memoizedState;
|
|
7290
|
-
if (c !== null && (c = c.dehydrated, c === null || Jb(c) || Kb(c)))
|
|
7291
|
-
return b;
|
|
7194
|
+
if (c !== null && (c = c.dehydrated, c === null || Jb(c) || Kb(c))) return b;
|
|
7292
7195
|
} else if (b.tag === 19 && b.memoizedProps.revealOrder !== void 0) {
|
|
7293
|
-
if (b.flags & 128)
|
|
7294
|
-
return b;
|
|
7196
|
+
if (b.flags & 128) return b;
|
|
7295
7197
|
} else if (b.child !== null) {
|
|
7296
7198
|
b.child.return = b, b = b.child;
|
|
7297
7199
|
continue;
|
|
7298
7200
|
}
|
|
7299
|
-
if (b === a)
|
|
7300
|
-
break;
|
|
7201
|
+
if (b === a) break;
|
|
7301
7202
|
for (; b.sibling === null; ) {
|
|
7302
|
-
if (b.return === null || b.return === a)
|
|
7303
|
-
return null;
|
|
7203
|
+
if (b.return === null || b.return === a) return null;
|
|
7304
7204
|
b = b.return;
|
|
7305
7205
|
}
|
|
7306
7206
|
b.sibling.return = b.return, b = b.sibling;
|
|
@@ -7320,24 +7220,19 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7320
7220
|
throw Error(m(321));
|
|
7321
7221
|
}
|
|
7322
7222
|
function Qe(a, b) {
|
|
7323
|
-
if (b === null)
|
|
7324
|
-
|
|
7325
|
-
for (var c = 0; c < b.length && c < a.length; c++)
|
|
7326
|
-
if (!Vc(a[c], b[c]))
|
|
7327
|
-
return !1;
|
|
7223
|
+
if (b === null) return !1;
|
|
7224
|
+
for (var c = 0; c < b.length && c < a.length; c++) if (!Vc(a[c], b[c])) return !1;
|
|
7328
7225
|
return !0;
|
|
7329
7226
|
}
|
|
7330
7227
|
function Re(a, b, c, d, e, f) {
|
|
7331
7228
|
if (Le = f, K = b, b.memoizedState = null, b.updateQueue = null, b.lanes = 0, Je.current = a === null || a.memoizedState === null ? Se : Te, a = c(d, e), Ne) {
|
|
7332
7229
|
f = 0;
|
|
7333
7230
|
do {
|
|
7334
|
-
if (Ne = !1, Oe = 0, 25 <= f)
|
|
7335
|
-
throw Error(m(301));
|
|
7231
|
+
if (Ne = !1, Oe = 0, 25 <= f) throw Error(m(301));
|
|
7336
7232
|
f += 1, M = L = null, b.updateQueue = null, Je.current = Ue, a = c(d, e);
|
|
7337
7233
|
} while (Ne);
|
|
7338
7234
|
}
|
|
7339
|
-
if (Je.current = Ve, b = L !== null && L.next !== null, Le = 0, M = L = K = null, Me = !1, b)
|
|
7340
|
-
throw Error(m(300));
|
|
7235
|
+
if (Je.current = Ve, b = L !== null && L.next !== null, Le = 0, M = L = K = null, Me = !1, b) throw Error(m(300));
|
|
7341
7236
|
return a;
|
|
7342
7237
|
}
|
|
7343
7238
|
function We() {
|
|
@@ -7352,14 +7247,11 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7352
7247
|
if (L === null) {
|
|
7353
7248
|
var a = K.alternate;
|
|
7354
7249
|
a = a !== null ? a.memoizedState : null;
|
|
7355
|
-
} else
|
|
7356
|
-
a = L.next;
|
|
7250
|
+
} else a = L.next;
|
|
7357
7251
|
var b = M === null ? K.memoizedState : M.next;
|
|
7358
|
-
if (b !== null)
|
|
7359
|
-
M = b, L = a;
|
|
7252
|
+
if (b !== null) M = b, L = a;
|
|
7360
7253
|
else {
|
|
7361
|
-
if (a === null)
|
|
7362
|
-
throw Error(m(310));
|
|
7254
|
+
if (a === null) throw Error(m(310));
|
|
7363
7255
|
L = a, a = { memoizedState: L.memoizedState, baseState: L.baseState, baseQueue: L.baseQueue, queue: L.queue, next: null }, M === null ? K.memoizedState = M = a : M = M.next = a;
|
|
7364
7256
|
}
|
|
7365
7257
|
return M;
|
|
@@ -7369,8 +7261,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7369
7261
|
}
|
|
7370
7262
|
function $e(a) {
|
|
7371
7263
|
var b = Ye(), c = b.queue;
|
|
7372
|
-
if (c === null)
|
|
7373
|
-
throw Error(m(311));
|
|
7264
|
+
if (c === null) throw Error(m(311));
|
|
7374
7265
|
c.lastRenderedReducer = a;
|
|
7375
7266
|
var d = L, e = d.baseQueue, f = c.pending;
|
|
7376
7267
|
if (f !== null) {
|
|
@@ -7385,8 +7276,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7385
7276
|
var h = g = null, k = null, l = f;
|
|
7386
7277
|
do {
|
|
7387
7278
|
var n = l.lane;
|
|
7388
|
-
if ((Le & n) === n)
|
|
7389
|
-
k !== null && (k = k.next = { lane: 0, action: l.action, hasEagerState: l.hasEagerState, eagerState: l.eagerState, next: null }), d = l.hasEagerState ? l.eagerState : a(d, l.action);
|
|
7279
|
+
if ((Le & n) === n) k !== null && (k = k.next = { lane: 0, action: l.action, hasEagerState: l.hasEagerState, eagerState: l.eagerState, next: null }), d = l.hasEagerState ? l.eagerState : a(d, l.action);
|
|
7390
7280
|
else {
|
|
7391
7281
|
var t = {
|
|
7392
7282
|
lane: n,
|
|
@@ -7406,14 +7296,12 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7406
7296
|
do
|
|
7407
7297
|
f = e.lane, K.lanes |= f, be |= f, e = e.next;
|
|
7408
7298
|
while (e !== a);
|
|
7409
|
-
} else
|
|
7410
|
-
e === null && (c.lanes = 0);
|
|
7299
|
+
} else e === null && (c.lanes = 0);
|
|
7411
7300
|
return [b.memoizedState, c.dispatch];
|
|
7412
7301
|
}
|
|
7413
7302
|
function af(a) {
|
|
7414
7303
|
var b = Ye(), c = b.queue;
|
|
7415
|
-
if (c === null)
|
|
7416
|
-
throw Error(m(311));
|
|
7304
|
+
if (c === null) throw Error(m(311));
|
|
7417
7305
|
c.lastRenderedReducer = a;
|
|
7418
7306
|
var d = c.dispatch, e = c.pending, f = b.memoizedState;
|
|
7419
7307
|
if (e !== null) {
|
|
@@ -7431,8 +7319,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7431
7319
|
function cf(a, b) {
|
|
7432
7320
|
var c = K, d = Ye(), e = b(), f = !Vc(d.memoizedState, e);
|
|
7433
7321
|
if (f && (d.memoizedState = e, G = !0), d = d.queue, df(ef.bind(null, c, d, a), [a]), d.getSnapshot !== b || f || M !== null && M.memoizedState.tag & 1) {
|
|
7434
|
-
if (c.flags |= 2048, ff(9, gf.bind(null, c, d, e, b), void 0, null), O === null)
|
|
7435
|
-
throw Error(m(349));
|
|
7322
|
+
if (c.flags |= 2048, ff(9, gf.bind(null, c, d, e, b), void 0, null), O === null) throw Error(m(349));
|
|
7436
7323
|
Le & 30 || hf(c, b, e);
|
|
7437
7324
|
}
|
|
7438
7325
|
return e;
|
|
@@ -7502,14 +7389,12 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7502
7389
|
return pf(4, 4, a, b);
|
|
7503
7390
|
}
|
|
7504
7391
|
function tf(a, b) {
|
|
7505
|
-
if (typeof b == "function")
|
|
7506
|
-
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
|
|
7510
|
-
|
|
7511
|
-
b.current = null;
|
|
7512
|
-
};
|
|
7392
|
+
if (typeof b == "function") return a = a(), b(a), function() {
|
|
7393
|
+
b(null);
|
|
7394
|
+
};
|
|
7395
|
+
if (b != null) return a = a(), b.current = a, function() {
|
|
7396
|
+
b.current = null;
|
|
7397
|
+
};
|
|
7513
7398
|
}
|
|
7514
7399
|
function uf(a, b, c) {
|
|
7515
7400
|
return c = c != null ? c.concat([a]) : null, pf(4, 4, tf.bind(null, b, a), c);
|
|
@@ -7547,8 +7432,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7547
7432
|
}
|
|
7548
7433
|
function Bf(a, b, c) {
|
|
7549
7434
|
var d = fe(a);
|
|
7550
|
-
if (c = { lane: d, action: c, hasEagerState: !1, eagerState: null, next: null }, Cf(a))
|
|
7551
|
-
Df(b, c);
|
|
7435
|
+
if (c = { lane: d, action: c, hasEagerState: !1, eagerState: null, next: null }, Cf(a)) Df(b, c);
|
|
7552
7436
|
else if (c = Sd(a, b, c, d), c !== null) {
|
|
7553
7437
|
var e = I();
|
|
7554
7438
|
ge(c, a, d, e), Ef(c, b, d);
|
|
@@ -7556,21 +7440,19 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7556
7440
|
}
|
|
7557
7441
|
function mf(a, b, c) {
|
|
7558
7442
|
var d = fe(a), e = { lane: d, action: c, hasEagerState: !1, eagerState: null, next: null };
|
|
7559
|
-
if (Cf(a))
|
|
7560
|
-
Df(b, e);
|
|
7443
|
+
if (Cf(a)) Df(b, e);
|
|
7561
7444
|
else {
|
|
7562
7445
|
var f = a.alternate;
|
|
7563
|
-
if (a.lanes === 0 && (f === null || f.lanes === 0) && (f = b.lastRenderedReducer, f !== null))
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
7567
|
-
|
|
7568
|
-
|
|
7569
|
-
return;
|
|
7570
|
-
}
|
|
7571
|
-
} catch {
|
|
7572
|
-
} finally {
|
|
7446
|
+
if (a.lanes === 0 && (f === null || f.lanes === 0) && (f = b.lastRenderedReducer, f !== null)) try {
|
|
7447
|
+
var g = b.lastRenderedState, h = f(g, c);
|
|
7448
|
+
if (e.hasEagerState = !0, e.eagerState = h, Vc(h, g)) {
|
|
7449
|
+
var k = b.interleaved;
|
|
7450
|
+
k === null ? (e.next = e, Rd(b)) : (e.next = k.next, k.next = e), b.interleaved = e;
|
|
7451
|
+
return;
|
|
7573
7452
|
}
|
|
7453
|
+
} catch {
|
|
7454
|
+
} finally {
|
|
7455
|
+
}
|
|
7574
7456
|
c = Sd(a, b, e, d), c !== null && (e = I(), ge(c, a, d, e), Ef(c, b, d));
|
|
7575
7457
|
}
|
|
7576
7458
|
}
|
|
@@ -7620,12 +7502,10 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7620
7502
|
}, useSyncExternalStore: function(a, b, c) {
|
|
7621
7503
|
var d = K, e = Xe();
|
|
7622
7504
|
if (F) {
|
|
7623
|
-
if (c === void 0)
|
|
7624
|
-
throw Error(m(407));
|
|
7505
|
+
if (c === void 0) throw Error(m(407));
|
|
7625
7506
|
c = c();
|
|
7626
7507
|
} else {
|
|
7627
|
-
if (c = b(), O === null)
|
|
7628
|
-
throw Error(m(349));
|
|
7508
|
+
if (c = b(), O === null) throw Error(m(349));
|
|
7629
7509
|
Le & 30 || hf(d, b, c);
|
|
7630
7510
|
}
|
|
7631
7511
|
e.memoizedState = c;
|
|
@@ -7641,8 +7521,7 @@ var reactReconciler_production_min = function($$$hostConfig) {
|
|
|
7641
7521
|
if (F) {
|
|
7642
7522
|
var c = jd, d = id;
|
|
7643
7523
|
c = (d & ~(1 << 32 - tc(d) - 1)).toString(32) + c, b = ":" + b + "R" + c, c = Oe++, 0 < c && (b += "H" + c.toString(32)), b += ":";
|
|
7644
|
-
} else
|
|
7645
|
-
c = Pe++, b = ":" + b + "r" + c.toString(32) + ":";
|
|
7524
|
+
} else c = Pe++, b = ":" + b + "r" + c.toString(32) + ":";
|
|
7646
7525
|
return a.memoizedState = b;
|
|
7647
7526
|
}, unstable_isNewReconciler: !1 }, Te = {
|
|
7648
7527
|
readContext: Pd,
|
|
@@ -7738,15 +7617,13 @@ Error generating stack: ` + f.message + `
|
|
|
7738
7617
|
d = a.pingCache = new If();
|
|
7739
7618
|
var e = /* @__PURE__ */ new Set();
|
|
7740
7619
|
d.set(b, e);
|
|
7741
|
-
} else
|
|
7742
|
-
e = d.get(b), e === void 0 && (e = /* @__PURE__ */ new Set(), d.set(b, e));
|
|
7620
|
+
} else e = d.get(b), e === void 0 && (e = /* @__PURE__ */ new Set(), d.set(b, e));
|
|
7743
7621
|
e.has(c) || (e.add(c), a = Pf.bind(null, a, b, c), b.then(a, a));
|
|
7744
7622
|
}
|
|
7745
7623
|
function Qf(a) {
|
|
7746
7624
|
do {
|
|
7747
7625
|
var b;
|
|
7748
|
-
if ((b = a.tag === 13) && (b = a.memoizedState, b = b !== null ? b.dehydrated !== null : !0), b)
|
|
7749
|
-
return a;
|
|
7626
|
+
if ((b = a.tag === 13) && (b = a.memoizedState, b = b !== null ? b.dehydrated !== null : !0), b) return a;
|
|
7750
7627
|
a = a.return;
|
|
7751
7628
|
} while (a !== null);
|
|
7752
7629
|
return null;
|
|
@@ -7770,34 +7647,26 @@ Error generating stack: ` + f.message + `
|
|
|
7770
7647
|
}
|
|
7771
7648
|
if (f = a.child, !(a.lanes & e)) {
|
|
7772
7649
|
var g = f.memoizedProps;
|
|
7773
|
-
if (c = c.compare, c = c !== null ? c : Dd, c(g, d) && a.ref === b.ref)
|
|
7774
|
-
return Uf(a, b, e);
|
|
7650
|
+
if (c = c.compare, c = c !== null ? c : Dd, c(g, d) && a.ref === b.ref) return Uf(a, b, e);
|
|
7775
7651
|
}
|
|
7776
7652
|
return b.flags |= 1, a = qe(f, d), a.ref = b.ref, a.return = b, b.child = a;
|
|
7777
7653
|
}
|
|
7778
7654
|
function Xf(a, b, c, d, e) {
|
|
7779
7655
|
if (a !== null) {
|
|
7780
7656
|
var f = a.memoizedProps;
|
|
7781
|
-
if (Dd(f, d) && a.ref === b.ref)
|
|
7782
|
-
|
|
7783
|
-
a.flags & 131072 && (G = !0);
|
|
7784
|
-
else
|
|
7785
|
-
return b.lanes = a.lanes, Uf(a, b, e);
|
|
7657
|
+
if (Dd(f, d) && a.ref === b.ref) if (G = !1, b.pendingProps = d = f, (a.lanes & e) !== 0) a.flags & 131072 && (G = !0);
|
|
7658
|
+
else return b.lanes = a.lanes, Uf(a, b, e);
|
|
7786
7659
|
}
|
|
7787
7660
|
return Yf(a, b, c, d, e);
|
|
7788
7661
|
}
|
|
7789
7662
|
function Zf(a, b, c) {
|
|
7790
7663
|
var d = b.pendingProps, e = d.children, f = a !== null ? a.memoizedState : null;
|
|
7791
|
-
if (d.mode === "hidden")
|
|
7792
|
-
|
|
7793
|
-
|
|
7794
|
-
|
|
7795
|
-
|
|
7796
|
-
|
|
7797
|
-
b.memoizedState = { baseLanes: 0, cachePool: null, transitions: null }, d = f !== null ? f.baseLanes : c, v($f, ag), ag |= d;
|
|
7798
|
-
}
|
|
7799
|
-
else
|
|
7800
|
-
f !== null ? (d = f.baseLanes | c, b.memoizedState = null) : d = c, v($f, ag), ag |= d;
|
|
7664
|
+
if (d.mode === "hidden") if (!(b.mode & 1)) b.memoizedState = { baseLanes: 0, cachePool: null, transitions: null }, v($f, ag), ag |= c;
|
|
7665
|
+
else {
|
|
7666
|
+
if (!(c & 1073741824)) return a = f !== null ? f.baseLanes | c : c, b.lanes = b.childLanes = 1073741824, b.memoizedState = { baseLanes: a, cachePool: null, transitions: null }, b.updateQueue = null, v($f, ag), ag |= a, null;
|
|
7667
|
+
b.memoizedState = { baseLanes: 0, cachePool: null, transitions: null }, d = f !== null ? f.baseLanes : c, v($f, ag), ag |= d;
|
|
7668
|
+
}
|
|
7669
|
+
else f !== null ? (d = f.baseLanes | c, b.memoizedState = null) : d = c, v($f, ag), ag |= d;
|
|
7801
7670
|
return P(a, b, e, c), b.child;
|
|
7802
7671
|
}
|
|
7803
7672
|
function bg(a, b) {
|
|
@@ -7812,10 +7681,8 @@ Error generating stack: ` + f.message + `
|
|
|
7812
7681
|
if (A(c)) {
|
|
7813
7682
|
var f = !0;
|
|
7814
7683
|
pc(b);
|
|
7815
|
-
} else
|
|
7816
|
-
|
|
7817
|
-
if (Od(b, e), b.stateNode === null)
|
|
7818
|
-
dg(a, b), je(b, c, d), le(b, c, d, e), d = !0;
|
|
7684
|
+
} else f = !1;
|
|
7685
|
+
if (Od(b, e), b.stateNode === null) dg(a, b), je(b, c, d), le(b, c, d, e), d = !0;
|
|
7819
7686
|
else if (a === null) {
|
|
7820
7687
|
var g = b.stateNode, h = b.memoizedProps;
|
|
7821
7688
|
g.props = h;
|
|
@@ -7837,8 +7704,7 @@ Error generating stack: ` + f.message + `
|
|
|
7837
7704
|
function eg(a, b, c, d, e, f) {
|
|
7838
7705
|
bg(a, b);
|
|
7839
7706
|
var g = (b.flags & 128) !== 0;
|
|
7840
|
-
if (!d && !g)
|
|
7841
|
-
return e && rc(b, c, !1), Uf(a, b, f);
|
|
7707
|
+
if (!d && !g) return e && rc(b, c, !1), Uf(a, b, f);
|
|
7842
7708
|
d = b.stateNode, Sf.current = b;
|
|
7843
7709
|
var h = g && typeof c.getDerivedStateFromError != "function" ? null : d.render();
|
|
7844
7710
|
return b.flags |= 1, a !== null && g ? (b.child = ve(b, a.child, null, f), b.child = ve(b, null, h, f)) : P(a, b, h, f), b.memoizedState = d.state, e && rc(b, c, !0), b.child;
|
|
@@ -7858,8 +7724,7 @@ Error generating stack: ` + f.message + `
|
|
|
7858
7724
|
var d = b.pendingProps, e = J.current, f = !1, g = (b.flags & 128) !== 0, h;
|
|
7859
7725
|
if ((h = g) || (h = a !== null && a.memoizedState === null ? !1 : (e & 2) !== 0), h ? (f = !0, b.flags &= -129) : (a === null || a.memoizedState !== null) && (e |= 1), v(J, e & 1), a === null)
|
|
7860
7726
|
return wd(b), a = b.memoizedState, a !== null && (a = a.dehydrated, a !== null) ? (b.mode & 1 ? Kb(a) ? b.lanes = 8 : b.lanes = 1073741824 : b.lanes = 1, null) : (g = d.children, a = d.fallback, f ? (d = b.mode, f = b.child, g = { mode: "hidden", children: g }, !(d & 1) && f !== null ? (f.childLanes = 0, f.pendingProps = g) : f = kg(g, d, 0, null), a = ue(a, d, c, null), f.return = b, a.return = b, f.sibling = a, b.child = f, b.child.memoizedState = ig(c), b.memoizedState = hg, a) : lg(b, g));
|
|
7861
|
-
if (e = a.memoizedState, e !== null && (h = e.dehydrated, h !== null))
|
|
7862
|
-
return mg(a, b, g, d, h, e, c);
|
|
7727
|
+
if (e = a.memoizedState, e !== null && (h = e.dehydrated, h !== null)) return mg(a, b, g, d, h, e, c);
|
|
7863
7728
|
if (f) {
|
|
7864
7729
|
f = d.fallback, g = b.mode, e = a.child, h = e.sibling;
|
|
7865
7730
|
var k = { mode: "hidden", children: d.children };
|
|
@@ -7876,14 +7741,12 @@ Error generating stack: ` + f.message + `
|
|
|
7876
7741
|
function mg(a, b, c, d, e, f, g) {
|
|
7877
7742
|
if (c)
|
|
7878
7743
|
return b.flags & 256 ? (b.flags &= -257, d = Gf(Error(m(422))), ng(a, b, g, d)) : b.memoizedState !== null ? (b.child = a.child, b.flags |= 128, null) : (f = d.fallback, e = b.mode, d = kg({ mode: "visible", children: d.children }, e, 0, null), f = ue(f, e, g, null), f.flags |= 2, d.return = b, f.return = b, d.sibling = f, b.child = d, b.mode & 1 && ve(b, a.child, null, g), b.child.memoizedState = ig(g), b.memoizedState = hg, f);
|
|
7879
|
-
if (!(b.mode & 1))
|
|
7880
|
-
|
|
7881
|
-
|
|
7882
|
-
|
|
7883
|
-
|
|
7884
|
-
|
|
7885
|
-
void 0
|
|
7886
|
-
), ng(a, b, g, d);
|
|
7744
|
+
if (!(b.mode & 1)) return ng(a, b, g, null);
|
|
7745
|
+
if (Kb(e)) return d = Lb(e).digest, f = Error(m(419)), d = Gf(
|
|
7746
|
+
f,
|
|
7747
|
+
d,
|
|
7748
|
+
void 0
|
|
7749
|
+
), ng(a, b, g, d);
|
|
7887
7750
|
if (c = (g & a.childLanes) !== 0, G || c) {
|
|
7888
7751
|
if (d = O, d !== null) {
|
|
7889
7752
|
switch (g & -g) {
|
|
@@ -7944,69 +7807,56 @@ Error generating stack: ` + f.message + `
|
|
|
7944
7807
|
}
|
|
7945
7808
|
function sg(a, b, c) {
|
|
7946
7809
|
var d = b.pendingProps, e = d.revealOrder, f = d.tail;
|
|
7947
|
-
if (P(a, b, d.children, c), d = J.current, d & 2)
|
|
7948
|
-
d = d & 1 | 2, b.flags |= 128;
|
|
7810
|
+
if (P(a, b, d.children, c), d = J.current, d & 2) d = d & 1 | 2, b.flags |= 128;
|
|
7949
7811
|
else {
|
|
7950
|
-
if (a !== null && a.flags & 128)
|
|
7951
|
-
a
|
|
7952
|
-
|
|
7953
|
-
|
|
7954
|
-
|
|
7955
|
-
|
|
7956
|
-
|
|
7957
|
-
|
|
7958
|
-
|
|
7959
|
-
|
|
7960
|
-
|
|
7961
|
-
|
|
7962
|
-
|
|
7963
|
-
|
|
7964
|
-
if (a.return === null || a.return === b)
|
|
7965
|
-
break a;
|
|
7966
|
-
a = a.return;
|
|
7967
|
-
}
|
|
7968
|
-
a.sibling.return = a.return, a = a.sibling;
|
|
7969
|
-
}
|
|
7812
|
+
if (a !== null && a.flags & 128) a: for (a = b.child; a !== null; ) {
|
|
7813
|
+
if (a.tag === 13) a.memoizedState !== null && qg(a, c, b);
|
|
7814
|
+
else if (a.tag === 19) qg(a, c, b);
|
|
7815
|
+
else if (a.child !== null) {
|
|
7816
|
+
a.child.return = a, a = a.child;
|
|
7817
|
+
continue;
|
|
7818
|
+
}
|
|
7819
|
+
if (a === b) break a;
|
|
7820
|
+
for (; a.sibling === null; ) {
|
|
7821
|
+
if (a.return === null || a.return === b) break a;
|
|
7822
|
+
a = a.return;
|
|
7823
|
+
}
|
|
7824
|
+
a.sibling.return = a.return, a = a.sibling;
|
|
7825
|
+
}
|
|
7970
7826
|
d &= 1;
|
|
7971
7827
|
}
|
|
7972
|
-
if (v(J, d), !(b.mode & 1))
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
|
|
7976
|
-
|
|
7977
|
-
|
|
7978
|
-
|
|
7979
|
-
|
|
7980
|
-
|
|
7981
|
-
|
|
7982
|
-
|
|
7983
|
-
if (a = e.alternate, a !== null && Ge(a) === null) {
|
|
7984
|
-
b.child = e;
|
|
7985
|
-
break;
|
|
7986
|
-
}
|
|
7987
|
-
a = e.sibling, e.sibling = c, c = e, e = a;
|
|
7828
|
+
if (v(J, d), !(b.mode & 1)) b.memoizedState = null;
|
|
7829
|
+
else switch (e) {
|
|
7830
|
+
case "forwards":
|
|
7831
|
+
for (c = b.child, e = null; c !== null; ) a = c.alternate, a !== null && Ge(a) === null && (e = c), c = c.sibling;
|
|
7832
|
+
c = e, c === null ? (e = b.child, b.child = null) : (e = c.sibling, c.sibling = null), rg(b, !1, e, c, f);
|
|
7833
|
+
break;
|
|
7834
|
+
case "backwards":
|
|
7835
|
+
for (c = null, e = b.child, b.child = null; e !== null; ) {
|
|
7836
|
+
if (a = e.alternate, a !== null && Ge(a) === null) {
|
|
7837
|
+
b.child = e;
|
|
7838
|
+
break;
|
|
7988
7839
|
}
|
|
7989
|
-
|
|
7990
|
-
|
|
7991
|
-
|
|
7992
|
-
|
|
7993
|
-
|
|
7994
|
-
|
|
7995
|
-
|
|
7996
|
-
|
|
7840
|
+
a = e.sibling, e.sibling = c, c = e, e = a;
|
|
7841
|
+
}
|
|
7842
|
+
rg(b, !0, c, null, f);
|
|
7843
|
+
break;
|
|
7844
|
+
case "together":
|
|
7845
|
+
rg(b, !1, null, null, void 0);
|
|
7846
|
+
break;
|
|
7847
|
+
default:
|
|
7848
|
+
b.memoizedState = null;
|
|
7849
|
+
}
|
|
7997
7850
|
return b.child;
|
|
7998
7851
|
}
|
|
7999
7852
|
function dg(a, b) {
|
|
8000
7853
|
!(b.mode & 1) && a !== null && (a.alternate = null, b.alternate = null, b.flags |= 2);
|
|
8001
7854
|
}
|
|
8002
7855
|
function Uf(a, b, c) {
|
|
8003
|
-
if (a !== null && (b.dependencies = a.dependencies), be |= b.lanes, !(c & b.childLanes))
|
|
8004
|
-
|
|
8005
|
-
if (a !== null && b.child !== a.child)
|
|
8006
|
-
throw Error(m(153));
|
|
7856
|
+
if (a !== null && (b.dependencies = a.dependencies), be |= b.lanes, !(c & b.childLanes)) return null;
|
|
7857
|
+
if (a !== null && b.child !== a.child) throw Error(m(153));
|
|
8007
7858
|
if (b.child !== null) {
|
|
8008
|
-
for (a = b.child, c = qe(a, a.pendingProps), b.child = c, c.return = b; a.sibling !== null; )
|
|
8009
|
-
a = a.sibling, c = c.sibling = qe(a, a.pendingProps), c.return = b;
|
|
7859
|
+
for (a = b.child, c = qe(a, a.pendingProps), b.child = c, c.return = b; a.sibling !== null; ) a = a.sibling, c = c.sibling = qe(a, a.pendingProps), c.return = b;
|
|
8010
7860
|
c.sibling = null;
|
|
8011
7861
|
}
|
|
8012
7862
|
return b.child;
|
|
@@ -8036,17 +7886,15 @@ Error generating stack: ` + f.message + `
|
|
|
8036
7886
|
break;
|
|
8037
7887
|
case 19:
|
|
8038
7888
|
if (d = (c & b.childLanes) !== 0, a.flags & 128) {
|
|
8039
|
-
if (d)
|
|
8040
|
-
|
|
8041
|
-
|
|
8042
|
-
|
|
8043
|
-
|
|
8044
|
-
);
|
|
7889
|
+
if (d) return sg(
|
|
7890
|
+
a,
|
|
7891
|
+
b,
|
|
7892
|
+
c
|
|
7893
|
+
);
|
|
8045
7894
|
b.flags |= 128;
|
|
8046
7895
|
}
|
|
8047
7896
|
var e = b.memoizedState;
|
|
8048
|
-
if (e !== null && (e.rendering = null, e.tail = null, e.lastEffect = null), v(J, J.current), d)
|
|
8049
|
-
break;
|
|
7897
|
+
if (e !== null && (e.rendering = null, e.tail = null, e.lastEffect = null), v(J, J.current), d) break;
|
|
8050
7898
|
return null;
|
|
8051
7899
|
case 22:
|
|
8052
7900
|
case 23:
|
|
@@ -8058,66 +7906,55 @@ Error generating stack: ` + f.message + `
|
|
|
8058
7906
|
a.flags |= 4;
|
|
8059
7907
|
}
|
|
8060
7908
|
function vg(a, b) {
|
|
8061
|
-
if (a !== null && a.child === b.child)
|
|
8062
|
-
|
|
8063
|
-
if (b.flags & 16)
|
|
8064
|
-
return !1;
|
|
7909
|
+
if (a !== null && a.child === b.child) return !0;
|
|
7910
|
+
if (b.flags & 16) return !1;
|
|
8065
7911
|
for (a = b.child; a !== null; ) {
|
|
8066
|
-
if (a.flags & 12854 || a.subtreeFlags & 12854)
|
|
8067
|
-
return !1;
|
|
7912
|
+
if (a.flags & 12854 || a.subtreeFlags & 12854) return !1;
|
|
8068
7913
|
a = a.sibling;
|
|
8069
7914
|
}
|
|
8070
7915
|
return !0;
|
|
8071
7916
|
}
|
|
8072
7917
|
var wg, xg, yg, zg;
|
|
8073
|
-
if (Ta)
|
|
8074
|
-
|
|
8075
|
-
|
|
8076
|
-
|
|
8077
|
-
|
|
8078
|
-
|
|
8079
|
-
c.child.return = c, c = c.child;
|
|
8080
|
-
continue;
|
|
8081
|
-
}
|
|
8082
|
-
if (c === b)
|
|
8083
|
-
break;
|
|
8084
|
-
for (; c.sibling === null; ) {
|
|
8085
|
-
if (c.return === null || c.return === b)
|
|
8086
|
-
return;
|
|
8087
|
-
c = c.return;
|
|
8088
|
-
}
|
|
8089
|
-
c.sibling.return = c.return, c = c.sibling;
|
|
7918
|
+
if (Ta) wg = function(a, b) {
|
|
7919
|
+
for (var c = b.child; c !== null; ) {
|
|
7920
|
+
if (c.tag === 5 || c.tag === 6) Ka(a, c.stateNode);
|
|
7921
|
+
else if (c.tag !== 4 && c.child !== null) {
|
|
7922
|
+
c.child.return = c, c = c.child;
|
|
7923
|
+
continue;
|
|
8090
7924
|
}
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8094
|
-
|
|
8095
|
-
c = Ma(f, c, a, d, e, g), (b.updateQueue = c) && ug(b);
|
|
7925
|
+
if (c === b) break;
|
|
7926
|
+
for (; c.sibling === null; ) {
|
|
7927
|
+
if (c.return === null || c.return === b) return;
|
|
7928
|
+
c = c.return;
|
|
8096
7929
|
}
|
|
8097
|
-
|
|
8098
|
-
|
|
8099
|
-
|
|
7930
|
+
c.sibling.return = c.return, c = c.sibling;
|
|
7931
|
+
}
|
|
7932
|
+
}, xg = function() {
|
|
7933
|
+
}, yg = function(a, b, c, d, e) {
|
|
7934
|
+
if (a = a.memoizedProps, a !== d) {
|
|
7935
|
+
var f = b.stateNode, g = Be(ye.current);
|
|
7936
|
+
c = Ma(f, c, a, d, e, g), (b.updateQueue = c) && ug(b);
|
|
7937
|
+
}
|
|
7938
|
+
}, zg = function(a, b, c, d) {
|
|
7939
|
+
c !== d && ug(b);
|
|
7940
|
+
};
|
|
8100
7941
|
else if (Ua) {
|
|
8101
7942
|
wg = function(a, b, c, d) {
|
|
8102
7943
|
for (var e = b.child; e !== null; ) {
|
|
8103
7944
|
if (e.tag === 5) {
|
|
8104
7945
|
var f = e.stateNode;
|
|
8105
7946
|
c && d && (f = Eb(f, e.type, e.memoizedProps, e)), Ka(a, f);
|
|
8106
|
-
} else if (e.tag === 6)
|
|
8107
|
-
f = e.stateNode, c && d && (f = Fb(f, e.memoizedProps, e)), Ka(a, f);
|
|
7947
|
+
} else if (e.tag === 6) f = e.stateNode, c && d && (f = Fb(f, e.memoizedProps, e)), Ka(a, f);
|
|
8108
7948
|
else if (e.tag !== 4) {
|
|
8109
|
-
if (e.tag === 22 && e.memoizedState !== null)
|
|
8110
|
-
f = e.child, f !== null && (f.return = e), wg(a, e, !0, !0);
|
|
7949
|
+
if (e.tag === 22 && e.memoizedState !== null) f = e.child, f !== null && (f.return = e), wg(a, e, !0, !0);
|
|
8111
7950
|
else if (e.child !== null) {
|
|
8112
7951
|
e.child.return = e, e = e.child;
|
|
8113
7952
|
continue;
|
|
8114
7953
|
}
|
|
8115
7954
|
}
|
|
8116
|
-
if (e === b)
|
|
8117
|
-
break;
|
|
7955
|
+
if (e === b) break;
|
|
8118
7956
|
for (; e.sibling === null; ) {
|
|
8119
|
-
if (e.return === null || e.return === b)
|
|
8120
|
-
return;
|
|
7957
|
+
if (e.return === null || e.return === b) return;
|
|
8121
7958
|
e = e.return;
|
|
8122
7959
|
}
|
|
8123
7960
|
e.sibling.return = e.return, e = e.sibling;
|
|
@@ -8128,21 +7965,17 @@ Error generating stack: ` + f.message + `
|
|
|
8128
7965
|
if (e.tag === 5) {
|
|
8129
7966
|
var f = e.stateNode;
|
|
8130
7967
|
c && d && (f = Eb(f, e.type, e.memoizedProps, e)), Ab(a, f);
|
|
8131
|
-
} else if (e.tag === 6)
|
|
8132
|
-
f = e.stateNode, c && d && (f = Fb(f, e.memoizedProps, e)), Ab(a, f);
|
|
7968
|
+
} else if (e.tag === 6) f = e.stateNode, c && d && (f = Fb(f, e.memoizedProps, e)), Ab(a, f);
|
|
8133
7969
|
else if (e.tag !== 4) {
|
|
8134
|
-
if (e.tag === 22 && e.memoizedState !== null)
|
|
8135
|
-
f = e.child, f !== null && (f.return = e), Ag(a, e, !0, !0);
|
|
7970
|
+
if (e.tag === 22 && e.memoizedState !== null) f = e.child, f !== null && (f.return = e), Ag(a, e, !0, !0);
|
|
8136
7971
|
else if (e.child !== null) {
|
|
8137
7972
|
e.child.return = e, e = e.child;
|
|
8138
7973
|
continue;
|
|
8139
7974
|
}
|
|
8140
7975
|
}
|
|
8141
|
-
if (e === b)
|
|
8142
|
-
break;
|
|
7976
|
+
if (e === b) break;
|
|
8143
7977
|
for (; e.sibling === null; ) {
|
|
8144
|
-
if (e.return === null || e.return === b)
|
|
8145
|
-
return;
|
|
7978
|
+
if (e.return === null || e.return === b) return;
|
|
8146
7979
|
e = e.return;
|
|
8147
7980
|
}
|
|
8148
7981
|
e.sibling.return = e.return, e = e.sibling;
|
|
@@ -8157,8 +7990,7 @@ Error generating stack: ` + f.message + `
|
|
|
8157
7990
|
}
|
|
8158
7991
|
}, yg = function(a, b, c, d, e) {
|
|
8159
7992
|
var f = a.stateNode, g = a.memoizedProps;
|
|
8160
|
-
if ((a = vg(a, b)) && g === d)
|
|
8161
|
-
b.stateNode = f;
|
|
7993
|
+
if ((a = vg(a, b)) && g === d) b.stateNode = f;
|
|
8162
7994
|
else {
|
|
8163
7995
|
var h = b.stateNode, k = Be(ye.current), l = null;
|
|
8164
7996
|
g !== d && (l = Ma(h, c, g, d, e, k)), a && l === null ? b.stateNode = f : (f = yb(f, l, c, g, d, b, a, h), La(f, c, d, e, k) && ug(b), b.stateNode = f, a ? ug(b) : wg(f, b, !1, !1));
|
|
@@ -8166,35 +7998,27 @@ Error generating stack: ` + f.message + `
|
|
|
8166
7998
|
}, zg = function(a, b, c, d) {
|
|
8167
7999
|
c !== d ? (a = Be(Ae.current), c = Be(ye.current), b.stateNode = Oa(d, a, c, b), ug(b)) : b.stateNode = a.stateNode;
|
|
8168
8000
|
};
|
|
8169
|
-
} else
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
|
|
8173
|
-
};
|
|
8001
|
+
} else xg = function() {
|
|
8002
|
+
}, yg = function() {
|
|
8003
|
+
}, zg = function() {
|
|
8004
|
+
};
|
|
8174
8005
|
function Bg(a, b) {
|
|
8175
|
-
if (!F)
|
|
8176
|
-
|
|
8177
|
-
|
|
8178
|
-
|
|
8179
|
-
|
|
8180
|
-
|
|
8181
|
-
|
|
8182
|
-
|
|
8183
|
-
|
|
8184
|
-
|
|
8185
|
-
|
|
8186
|
-
c.alternate !== null && (d = c), c = c.sibling;
|
|
8187
|
-
d === null ? b || a.tail === null ? a.tail = null : a.tail.sibling = null : d.sibling = null;
|
|
8188
|
-
}
|
|
8006
|
+
if (!F) switch (a.tailMode) {
|
|
8007
|
+
case "hidden":
|
|
8008
|
+
b = a.tail;
|
|
8009
|
+
for (var c = null; b !== null; ) b.alternate !== null && (c = b), b = b.sibling;
|
|
8010
|
+
c === null ? a.tail = null : c.sibling = null;
|
|
8011
|
+
break;
|
|
8012
|
+
case "collapsed":
|
|
8013
|
+
c = a.tail;
|
|
8014
|
+
for (var d = null; c !== null; ) c.alternate !== null && (d = c), c = c.sibling;
|
|
8015
|
+
d === null ? b || a.tail === null ? a.tail = null : a.tail.sibling = null : d.sibling = null;
|
|
8016
|
+
}
|
|
8189
8017
|
}
|
|
8190
8018
|
function Q(a) {
|
|
8191
8019
|
var b = a.alternate !== null && a.alternate.child === a.child, c = 0, d = 0;
|
|
8192
|
-
if (b)
|
|
8193
|
-
|
|
8194
|
-
c |= e.lanes | e.childLanes, d |= e.subtreeFlags & 14680064, d |= e.flags & 14680064, e.return = a, e = e.sibling;
|
|
8195
|
-
else
|
|
8196
|
-
for (e = a.child; e !== null; )
|
|
8197
|
-
c |= e.lanes | e.childLanes, d |= e.subtreeFlags, d |= e.flags, e.return = a, e = e.sibling;
|
|
8020
|
+
if (b) for (var e = a.child; e !== null; ) c |= e.lanes | e.childLanes, d |= e.subtreeFlags & 14680064, d |= e.flags & 14680064, e.return = a, e = e.sibling;
|
|
8021
|
+
else for (e = a.child; e !== null; ) c |= e.lanes | e.childLanes, d |= e.subtreeFlags, d |= e.flags, e.return = a, e = e.sibling;
|
|
8198
8022
|
return a.subtreeFlags |= d, a.childLanes = c, b;
|
|
8199
8023
|
}
|
|
8200
8024
|
function Cg(a, b, c) {
|
|
@@ -8218,17 +8042,14 @@ Error generating stack: ` + f.message + `
|
|
|
8218
8042
|
case 5:
|
|
8219
8043
|
Fe(b), c = Be(Ae.current);
|
|
8220
8044
|
var e = b.type;
|
|
8221
|
-
if (a !== null && b.stateNode != null)
|
|
8222
|
-
yg(a, b, e, d, c), a.ref !== b.ref && (b.flags |= 512, b.flags |= 2097152);
|
|
8045
|
+
if (a !== null && b.stateNode != null) yg(a, b, e, d, c), a.ref !== b.ref && (b.flags |= 512, b.flags |= 2097152);
|
|
8223
8046
|
else {
|
|
8224
8047
|
if (!d) {
|
|
8225
|
-
if (b.stateNode === null)
|
|
8226
|
-
throw Error(m(166));
|
|
8048
|
+
if (b.stateNode === null) throw Error(m(166));
|
|
8227
8049
|
return Q(b), null;
|
|
8228
8050
|
}
|
|
8229
8051
|
if (a = Be(ye.current), yd(b)) {
|
|
8230
|
-
if (!Va)
|
|
8231
|
-
throw Error(m(175));
|
|
8052
|
+
if (!Va) throw Error(m(175));
|
|
8232
8053
|
a = Rb(b.stateNode, b.type, b.memoizedProps, c, a, b, !qd), b.updateQueue = a, a !== null && ug(b);
|
|
8233
8054
|
} else {
|
|
8234
8055
|
var f = Ja(e, d, c, a, b);
|
|
@@ -8238,47 +8059,35 @@ Error generating stack: ` + f.message + `
|
|
|
8238
8059
|
}
|
|
8239
8060
|
return Q(b), null;
|
|
8240
8061
|
case 6:
|
|
8241
|
-
if (a && b.stateNode != null)
|
|
8242
|
-
zg(a, b, a.memoizedProps, d);
|
|
8062
|
+
if (a && b.stateNode != null) zg(a, b, a.memoizedProps, d);
|
|
8243
8063
|
else {
|
|
8244
|
-
if (typeof d != "string" && b.stateNode === null)
|
|
8245
|
-
throw Error(m(166));
|
|
8064
|
+
if (typeof d != "string" && b.stateNode === null) throw Error(m(166));
|
|
8246
8065
|
if (a = Be(Ae.current), c = Be(ye.current), yd(b)) {
|
|
8247
|
-
if (!Va)
|
|
8248
|
-
|
|
8249
|
-
|
|
8250
|
-
|
|
8251
|
-
|
|
8252
|
-
|
|
8253
|
-
|
|
8254
|
-
|
|
8255
|
-
ac(e.type, e.memoizedProps, e.stateNode, a, c, (e.mode & 1) !== 0);
|
|
8256
|
-
}
|
|
8066
|
+
if (!Va) throw Error(m(176));
|
|
8067
|
+
if (a = b.stateNode, c = b.memoizedProps, (d = Sb(a, c, b, !qd)) && (e = od, e !== null)) switch (e.tag) {
|
|
8068
|
+
case 3:
|
|
8069
|
+
$b(e.stateNode.containerInfo, a, c, (e.mode & 1) !== 0);
|
|
8070
|
+
break;
|
|
8071
|
+
case 5:
|
|
8072
|
+
ac(e.type, e.memoizedProps, e.stateNode, a, c, (e.mode & 1) !== 0);
|
|
8073
|
+
}
|
|
8257
8074
|
d && ug(b);
|
|
8258
|
-
} else
|
|
8259
|
-
b.stateNode = Oa(d, a, c, b);
|
|
8075
|
+
} else b.stateNode = Oa(d, a, c, b);
|
|
8260
8076
|
}
|
|
8261
8077
|
return Q(b), null;
|
|
8262
8078
|
case 13:
|
|
8263
8079
|
if (q(J), d = b.memoizedState, a === null || a.memoizedState !== null && a.memoizedState.dehydrated !== null) {
|
|
8264
|
-
if (F && pd !== null && b.mode & 1 && !(b.flags & 128))
|
|
8265
|
-
zd(), Ad(), b.flags |= 98560, e = !1;
|
|
8080
|
+
if (F && pd !== null && b.mode & 1 && !(b.flags & 128)) zd(), Ad(), b.flags |= 98560, e = !1;
|
|
8266
8081
|
else if (e = yd(b), d !== null && d.dehydrated !== null) {
|
|
8267
8082
|
if (a === null) {
|
|
8268
|
-
if (!e)
|
|
8269
|
-
|
|
8270
|
-
if (!
|
|
8271
|
-
throw Error(m(344));
|
|
8272
|
-
if (e = b.memoizedState, e = e !== null ? e.dehydrated : null, !e)
|
|
8273
|
-
throw Error(m(317));
|
|
8083
|
+
if (!e) throw Error(m(318));
|
|
8084
|
+
if (!Va) throw Error(m(344));
|
|
8085
|
+
if (e = b.memoizedState, e = e !== null ? e.dehydrated : null, !e) throw Error(m(317));
|
|
8274
8086
|
Tb(e, b);
|
|
8275
|
-
} else
|
|
8276
|
-
Ad(), !(b.flags & 128) && (b.memoizedState = null), b.flags |= 4;
|
|
8087
|
+
} else Ad(), !(b.flags & 128) && (b.memoizedState = null), b.flags |= 4;
|
|
8277
8088
|
Q(b), e = !1;
|
|
8278
|
-
} else
|
|
8279
|
-
|
|
8280
|
-
if (!e)
|
|
8281
|
-
return b.flags & 65536 ? b : null;
|
|
8089
|
+
} else rd !== null && (Dg(rd), rd = null), e = !0;
|
|
8090
|
+
if (!e) return b.flags & 65536 ? b : null;
|
|
8282
8091
|
}
|
|
8283
8092
|
return b.flags & 128 ? (b.lanes = c, b) : (c = d !== null, c !== (a !== null && a.memoizedState !== null) && c && (b.child.flags |= 8192, b.mode & 1 && (a === null || J.current & 1 ? R === 0 && (R = 3) : og())), b.updateQueue !== null && (b.flags |= 4), Q(b), null);
|
|
8284
8093
|
case 4:
|
|
@@ -8288,30 +8097,22 @@ Error generating stack: ` + f.message + `
|
|
|
8288
8097
|
case 17:
|
|
8289
8098
|
return A(b.type) && mc(), Q(b), null;
|
|
8290
8099
|
case 19:
|
|
8291
|
-
if (q(J), e = b.memoizedState, e === null)
|
|
8292
|
-
|
|
8293
|
-
|
|
8294
|
-
if (
|
|
8295
|
-
|
|
8296
|
-
|
|
8297
|
-
|
|
8298
|
-
|
|
8299
|
-
|
|
8300
|
-
for (b.flags |= 128, Bg(e, !1), a = f.updateQueue, a !== null && (b.updateQueue = a, b.flags |= 4), b.subtreeFlags = 0, a = c, c = b.child; c !== null; )
|
|
8301
|
-
d = c, e = a, d.flags &= 14680066, f = d.alternate, f === null ? (d.childLanes = 0, d.lanes = e, d.child = null, d.subtreeFlags = 0, d.memoizedProps = null, d.memoizedState = null, d.updateQueue = null, d.dependencies = null, d.stateNode = null) : (d.childLanes = f.childLanes, d.lanes = f.lanes, d.child = f.child, d.subtreeFlags = 0, d.deletions = null, d.memoizedProps = f.memoizedProps, d.memoizedState = f.memoizedState, d.updateQueue = f.updateQueue, d.type = f.type, e = f.dependencies, d.dependencies = e === null ? null : { lanes: e.lanes, firstContext: e.firstContext }), c = c.sibling;
|
|
8302
|
-
return v(J, J.current & 1 | 2), b.child;
|
|
8303
|
-
}
|
|
8304
|
-
a = a.sibling;
|
|
8305
|
-
}
|
|
8306
|
-
e.tail !== null && D() > Eg && (b.flags |= 128, d = !0, Bg(e, !1), b.lanes = 4194304);
|
|
8100
|
+
if (q(J), e = b.memoizedState, e === null) return Q(b), null;
|
|
8101
|
+
if (d = (b.flags & 128) !== 0, f = e.rendering, f === null) if (d) Bg(e, !1);
|
|
8102
|
+
else {
|
|
8103
|
+
if (R !== 0 || a !== null && a.flags & 128) for (a = b.child; a !== null; ) {
|
|
8104
|
+
if (f = Ge(a), f !== null) {
|
|
8105
|
+
for (b.flags |= 128, Bg(e, !1), a = f.updateQueue, a !== null && (b.updateQueue = a, b.flags |= 4), b.subtreeFlags = 0, a = c, c = b.child; c !== null; ) d = c, e = a, d.flags &= 14680066, f = d.alternate, f === null ? (d.childLanes = 0, d.lanes = e, d.child = null, d.subtreeFlags = 0, d.memoizedProps = null, d.memoizedState = null, d.updateQueue = null, d.dependencies = null, d.stateNode = null) : (d.childLanes = f.childLanes, d.lanes = f.lanes, d.child = f.child, d.subtreeFlags = 0, d.deletions = null, d.memoizedProps = f.memoizedProps, d.memoizedState = f.memoizedState, d.updateQueue = f.updateQueue, d.type = f.type, e = f.dependencies, d.dependencies = e === null ? null : { lanes: e.lanes, firstContext: e.firstContext }), c = c.sibling;
|
|
8106
|
+
return v(J, J.current & 1 | 2), b.child;
|
|
8107
|
+
}
|
|
8108
|
+
a = a.sibling;
|
|
8307
8109
|
}
|
|
8110
|
+
e.tail !== null && D() > Eg && (b.flags |= 128, d = !0, Bg(e, !1), b.lanes = 4194304);
|
|
8111
|
+
}
|
|
8308
8112
|
else {
|
|
8309
|
-
if (!d)
|
|
8310
|
-
if (a =
|
|
8311
|
-
|
|
8312
|
-
return Q(b), null;
|
|
8313
|
-
} else
|
|
8314
|
-
2 * D() - e.renderingStartTime > Eg && c !== 1073741824 && (b.flags |= 128, d = !0, Bg(e, !1), b.lanes = 4194304);
|
|
8113
|
+
if (!d) if (a = Ge(f), a !== null) {
|
|
8114
|
+
if (b.flags |= 128, d = !0, a = a.updateQueue, a !== null && (b.updateQueue = a, b.flags |= 4), Bg(e, !0), e.tail === null && e.tailMode === "hidden" && !f.alternate && !F) return Q(b), null;
|
|
8115
|
+
} else 2 * D() - e.renderingStartTime > Eg && c !== 1073741824 && (b.flags |= 128, d = !0, Bg(e, !1), b.lanes = 4194304);
|
|
8315
8116
|
e.isBackwards ? (f.sibling = b.child, b.child = f) : (a = e.last, a !== null ? a.sibling = f : b.child = f, e.last = f);
|
|
8316
8117
|
}
|
|
8317
8118
|
return e.tail !== null ? (b = e.tail, e.rendering = b, e.tail = b.sibling, e.renderingStartTime = D(), b.sibling = null, a = J.current, v(J, d ? a & 1 | 2 : a & 1), b) : (Q(b), null);
|
|
@@ -8338,8 +8139,7 @@ Error generating stack: ` + f.message + `
|
|
|
8338
8139
|
return Fe(b), null;
|
|
8339
8140
|
case 13:
|
|
8340
8141
|
if (q(J), a = b.memoizedState, a !== null && a.dehydrated !== null) {
|
|
8341
|
-
if (b.alternate === null)
|
|
8342
|
-
throw Error(m(340));
|
|
8142
|
+
if (b.alternate === null) throw Error(m(340));
|
|
8343
8143
|
Ad();
|
|
8344
8144
|
}
|
|
8345
8145
|
return a = b.flags, a & 65536 ? (b.flags = a & -65537 | 128, b) : null;
|
|
@@ -8361,15 +8161,12 @@ Error generating stack: ` + f.message + `
|
|
|
8361
8161
|
var Hg = !1, S = !1, Ig = typeof WeakSet == "function" ? WeakSet : Set, T = null;
|
|
8362
8162
|
function Jg(a, b) {
|
|
8363
8163
|
var c = a.ref;
|
|
8364
|
-
if (c !== null)
|
|
8365
|
-
|
|
8366
|
-
|
|
8367
|
-
|
|
8368
|
-
|
|
8369
|
-
|
|
8370
|
-
}
|
|
8371
|
-
else
|
|
8372
|
-
c.current = null;
|
|
8164
|
+
if (c !== null) if (typeof c == "function") try {
|
|
8165
|
+
c(null);
|
|
8166
|
+
} catch (d) {
|
|
8167
|
+
U(a, b, d);
|
|
8168
|
+
}
|
|
8169
|
+
else c.current = null;
|
|
8373
8170
|
}
|
|
8374
8171
|
function Kg(a, b, c) {
|
|
8375
8172
|
try {
|
|
@@ -8380,46 +8177,42 @@ Error generating stack: ` + f.message + `
|
|
|
8380
8177
|
}
|
|
8381
8178
|
var Lg = !1;
|
|
8382
8179
|
function Mg(a, b) {
|
|
8383
|
-
for (Ha(a.containerInfo), T = b; T !== null; )
|
|
8384
|
-
|
|
8385
|
-
|
|
8386
|
-
|
|
8387
|
-
|
|
8388
|
-
|
|
8389
|
-
|
|
8390
|
-
|
|
8391
|
-
|
|
8392
|
-
switch (a.tag) {
|
|
8393
|
-
case 0:
|
|
8394
|
-
case 11:
|
|
8395
|
-
case 15:
|
|
8396
|
-
break;
|
|
8397
|
-
case 1:
|
|
8398
|
-
if (c !== null) {
|
|
8399
|
-
var d = c.memoizedProps, e = c.memoizedState, f = a.stateNode, g = f.getSnapshotBeforeUpdate(a.elementType === a.type ? d : Fd(a.type, d), e);
|
|
8400
|
-
f.__reactInternalSnapshotBeforeUpdate = g;
|
|
8401
|
-
}
|
|
8402
|
-
break;
|
|
8403
|
-
case 3:
|
|
8404
|
-
Ta && xb(a.stateNode.containerInfo);
|
|
8405
|
-
break;
|
|
8406
|
-
case 5:
|
|
8407
|
-
case 6:
|
|
8408
|
-
case 4:
|
|
8409
|
-
case 17:
|
|
8410
|
-
break;
|
|
8411
|
-
default:
|
|
8412
|
-
throw Error(m(163));
|
|
8413
|
-
}
|
|
8414
|
-
} catch (h) {
|
|
8415
|
-
U(a, a.return, h);
|
|
8416
|
-
}
|
|
8417
|
-
if (b = a.sibling, b !== null) {
|
|
8418
|
-
b.return = a.return, T = b;
|
|
8180
|
+
for (Ha(a.containerInfo), T = b; T !== null; ) if (a = T, b = a.child, (a.subtreeFlags & 1028) !== 0 && b !== null) b.return = a, T = b;
|
|
8181
|
+
else for (; T !== null; ) {
|
|
8182
|
+
a = T;
|
|
8183
|
+
try {
|
|
8184
|
+
var c = a.alternate;
|
|
8185
|
+
if (a.flags & 1024) switch (a.tag) {
|
|
8186
|
+
case 0:
|
|
8187
|
+
case 11:
|
|
8188
|
+
case 15:
|
|
8419
8189
|
break;
|
|
8420
|
-
|
|
8421
|
-
|
|
8190
|
+
case 1:
|
|
8191
|
+
if (c !== null) {
|
|
8192
|
+
var d = c.memoizedProps, e = c.memoizedState, f = a.stateNode, g = f.getSnapshotBeforeUpdate(a.elementType === a.type ? d : Fd(a.type, d), e);
|
|
8193
|
+
f.__reactInternalSnapshotBeforeUpdate = g;
|
|
8194
|
+
}
|
|
8195
|
+
break;
|
|
8196
|
+
case 3:
|
|
8197
|
+
Ta && xb(a.stateNode.containerInfo);
|
|
8198
|
+
break;
|
|
8199
|
+
case 5:
|
|
8200
|
+
case 6:
|
|
8201
|
+
case 4:
|
|
8202
|
+
case 17:
|
|
8203
|
+
break;
|
|
8204
|
+
default:
|
|
8205
|
+
throw Error(m(163));
|
|
8422
8206
|
}
|
|
8207
|
+
} catch (h) {
|
|
8208
|
+
U(a, a.return, h);
|
|
8209
|
+
}
|
|
8210
|
+
if (b = a.sibling, b !== null) {
|
|
8211
|
+
b.return = a.return, T = b;
|
|
8212
|
+
break;
|
|
8213
|
+
}
|
|
8214
|
+
T = a.return;
|
|
8215
|
+
}
|
|
8423
8216
|
return c = Lg, Lg = !1, c;
|
|
8424
8217
|
}
|
|
8425
8218
|
function Ng(a, b, c) {
|
|
@@ -8469,49 +8262,37 @@ Error generating stack: ` + f.message + `
|
|
|
8469
8262
|
return a.tag === 5 || a.tag === 3 || a.tag === 4;
|
|
8470
8263
|
}
|
|
8471
8264
|
function Sg(a) {
|
|
8472
|
-
a:
|
|
8473
|
-
for (; ; ) {
|
|
8474
|
-
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
8480
|
-
if (a.flags & 2 || a.child === null || a.tag === 4)
|
|
8481
|
-
continue a;
|
|
8482
|
-
a.child.return = a, a = a.child;
|
|
8483
|
-
}
|
|
8484
|
-
if (!(a.flags & 2))
|
|
8485
|
-
return a.stateNode;
|
|
8265
|
+
a: for (; ; ) {
|
|
8266
|
+
for (; a.sibling === null; ) {
|
|
8267
|
+
if (a.return === null || Rg(a.return)) return null;
|
|
8268
|
+
a = a.return;
|
|
8269
|
+
}
|
|
8270
|
+
for (a.sibling.return = a.return, a = a.sibling; a.tag !== 5 && a.tag !== 6 && a.tag !== 18; ) {
|
|
8271
|
+
if (a.flags & 2 || a.child === null || a.tag === 4) continue a;
|
|
8272
|
+
a.child.return = a, a = a.child;
|
|
8486
8273
|
}
|
|
8274
|
+
if (!(a.flags & 2)) return a.stateNode;
|
|
8275
|
+
}
|
|
8487
8276
|
}
|
|
8488
8277
|
function Tg(a, b, c) {
|
|
8489
8278
|
var d = a.tag;
|
|
8490
|
-
if (d === 5 || d === 6)
|
|
8491
|
-
|
|
8492
|
-
else if (d !== 4 && (a = a.child, a !== null))
|
|
8493
|
-
for (Tg(a, b, c), a = a.sibling; a !== null; )
|
|
8494
|
-
Tg(a, b, c), a = a.sibling;
|
|
8279
|
+
if (d === 5 || d === 6) a = a.stateNode, b ? pb(c, a, b) : kb(c, a);
|
|
8280
|
+
else if (d !== 4 && (a = a.child, a !== null)) for (Tg(a, b, c), a = a.sibling; a !== null; ) Tg(a, b, c), a = a.sibling;
|
|
8495
8281
|
}
|
|
8496
8282
|
function Ug(a, b, c) {
|
|
8497
8283
|
var d = a.tag;
|
|
8498
|
-
if (d === 5 || d === 6)
|
|
8499
|
-
|
|
8500
|
-
else if (d !== 4 && (a = a.child, a !== null))
|
|
8501
|
-
for (Ug(a, b, c), a = a.sibling; a !== null; )
|
|
8502
|
-
Ug(a, b, c), a = a.sibling;
|
|
8284
|
+
if (d === 5 || d === 6) a = a.stateNode, b ? ob(c, a, b) : jb(c, a);
|
|
8285
|
+
else if (d !== 4 && (a = a.child, a !== null)) for (Ug(a, b, c), a = a.sibling; a !== null; ) Ug(a, b, c), a = a.sibling;
|
|
8503
8286
|
}
|
|
8504
8287
|
var V2 = null, Vg = !1;
|
|
8505
8288
|
function Wg(a, b, c) {
|
|
8506
|
-
for (c = c.child; c !== null; )
|
|
8507
|
-
Xg(a, b, c), c = c.sibling;
|
|
8289
|
+
for (c = c.child; c !== null; ) Xg(a, b, c), c = c.sibling;
|
|
8508
8290
|
}
|
|
8509
8291
|
function Xg(a, b, c) {
|
|
8510
|
-
if (Sc && typeof Sc.onCommitFiberUnmount == "function")
|
|
8511
|
-
|
|
8512
|
-
|
|
8513
|
-
|
|
8514
|
-
}
|
|
8292
|
+
if (Sc && typeof Sc.onCommitFiberUnmount == "function") try {
|
|
8293
|
+
Sc.onCommitFiberUnmount(Rc, c);
|
|
8294
|
+
} catch {
|
|
8295
|
+
}
|
|
8515
8296
|
switch (c.tag) {
|
|
8516
8297
|
case 5:
|
|
8517
8298
|
S || Jg(c, b);
|
|
@@ -8519,8 +8300,7 @@ Error generating stack: ` + f.message + `
|
|
|
8519
8300
|
if (Ta) {
|
|
8520
8301
|
var d = V2, e = Vg;
|
|
8521
8302
|
V2 = null, Wg(a, b, c), V2 = d, Vg = e, V2 !== null && (Vg ? rb(V2, c.stateNode) : qb(V2, c.stateNode));
|
|
8522
|
-
} else
|
|
8523
|
-
Wg(a, b, c);
|
|
8303
|
+
} else Wg(a, b, c);
|
|
8524
8304
|
break;
|
|
8525
8305
|
case 18:
|
|
8526
8306
|
Ta && V2 !== null && (Vg ? Yb(V2, c.stateNode) : Xb(V2, c.stateNode));
|
|
@@ -8542,12 +8322,11 @@ Error generating stack: ` + f.message + `
|
|
|
8542
8322
|
Wg(a, b, c);
|
|
8543
8323
|
break;
|
|
8544
8324
|
case 1:
|
|
8545
|
-
if (!S && (Jg(c, b), d = c.stateNode, typeof d.componentWillUnmount == "function"))
|
|
8546
|
-
|
|
8547
|
-
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
}
|
|
8325
|
+
if (!S && (Jg(c, b), d = c.stateNode, typeof d.componentWillUnmount == "function")) try {
|
|
8326
|
+
d.props = c.memoizedProps, d.state = c.memoizedState, d.componentWillUnmount();
|
|
8327
|
+
} catch (h) {
|
|
8328
|
+
U(c, b, h);
|
|
8329
|
+
}
|
|
8551
8330
|
Wg(a, b, c);
|
|
8552
8331
|
break;
|
|
8553
8332
|
case 21:
|
|
@@ -8577,42 +8356,36 @@ Error generating stack: ` + f.message + `
|
|
|
8577
8356
|
}
|
|
8578
8357
|
function $g(a, b) {
|
|
8579
8358
|
var c = b.deletions;
|
|
8580
|
-
if (c !== null)
|
|
8581
|
-
|
|
8582
|
-
|
|
8583
|
-
|
|
8584
|
-
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
8591
|
-
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
|
|
8597
|
-
|
|
8598
|
-
|
|
8599
|
-
|
|
8600
|
-
|
|
8601
|
-
|
|
8602
|
-
|
|
8603
|
-
|
|
8604
|
-
|
|
8605
|
-
|
|
8606
|
-
|
|
8607
|
-
var k = e.alternate;
|
|
8608
|
-
k !== null && (k.return = null), e.return = null;
|
|
8609
|
-
} catch (l) {
|
|
8610
|
-
U(e, b, l);
|
|
8611
|
-
}
|
|
8359
|
+
if (c !== null) for (var d = 0; d < c.length; d++) {
|
|
8360
|
+
var e = c[d];
|
|
8361
|
+
try {
|
|
8362
|
+
var f = a, g = b;
|
|
8363
|
+
if (Ta) {
|
|
8364
|
+
var h = g;
|
|
8365
|
+
a: for (; h !== null; ) {
|
|
8366
|
+
switch (h.tag) {
|
|
8367
|
+
case 5:
|
|
8368
|
+
V2 = h.stateNode, Vg = !1;
|
|
8369
|
+
break a;
|
|
8370
|
+
case 3:
|
|
8371
|
+
V2 = h.stateNode.containerInfo, Vg = !0;
|
|
8372
|
+
break a;
|
|
8373
|
+
case 4:
|
|
8374
|
+
V2 = h.stateNode.containerInfo, Vg = !0;
|
|
8375
|
+
break a;
|
|
8376
|
+
}
|
|
8377
|
+
h = h.return;
|
|
8378
|
+
}
|
|
8379
|
+
if (V2 === null) throw Error(m(160));
|
|
8380
|
+
Xg(f, g, e), V2 = null, Vg = !1;
|
|
8381
|
+
} else Xg(f, g, e);
|
|
8382
|
+
var k = e.alternate;
|
|
8383
|
+
k !== null && (k.return = null), e.return = null;
|
|
8384
|
+
} catch (l) {
|
|
8385
|
+
U(e, b, l);
|
|
8612
8386
|
}
|
|
8613
|
-
|
|
8614
|
-
|
|
8615
|
-
ah(b, a), b = b.sibling;
|
|
8387
|
+
}
|
|
8388
|
+
if (b.subtreeFlags & 12854) for (b = b.child; b !== null; ) ah(b, a), b = b.sibling;
|
|
8616
8389
|
}
|
|
8617
8390
|
function ah(a, b) {
|
|
8618
8391
|
var c = a.alternate, d = a.flags;
|
|
@@ -8649,19 +8422,17 @@ Error generating stack: ` + f.message + `
|
|
|
8649
8422
|
}
|
|
8650
8423
|
if (d & 4 && (e = a.stateNode, e != null)) {
|
|
8651
8424
|
var f = a.memoizedProps;
|
|
8652
|
-
if (c = c !== null ? c.memoizedProps : f, d = a.type, b = a.updateQueue, a.updateQueue = null, b !== null)
|
|
8653
|
-
|
|
8654
|
-
|
|
8655
|
-
|
|
8656
|
-
|
|
8657
|
-
}
|
|
8425
|
+
if (c = c !== null ? c.memoizedProps : f, d = a.type, b = a.updateQueue, a.updateQueue = null, b !== null) try {
|
|
8426
|
+
nb(e, b, d, c, f, a);
|
|
8427
|
+
} catch (p) {
|
|
8428
|
+
U(a, a.return, p);
|
|
8429
|
+
}
|
|
8658
8430
|
}
|
|
8659
8431
|
}
|
|
8660
8432
|
break;
|
|
8661
8433
|
case 6:
|
|
8662
8434
|
if ($g(b, a), bh(a), d & 4 && Ta) {
|
|
8663
|
-
if (a.stateNode === null)
|
|
8664
|
-
throw Error(m(162));
|
|
8435
|
+
if (a.stateNode === null) throw Error(m(162));
|
|
8665
8436
|
e = a.stateNode, f = a.memoizedProps, c = c !== null ? c.memoizedProps : f;
|
|
8666
8437
|
try {
|
|
8667
8438
|
lb(e, c, f);
|
|
@@ -8672,12 +8443,11 @@ Error generating stack: ` + f.message + `
|
|
|
8672
8443
|
break;
|
|
8673
8444
|
case 3:
|
|
8674
8445
|
if ($g(b, a), bh(a), d & 4) {
|
|
8675
|
-
if (Ta && Va && c !== null && c.memoizedState.isDehydrated)
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
|
|
8679
|
-
|
|
8680
|
-
}
|
|
8446
|
+
if (Ta && Va && c !== null && c.memoizedState.isDehydrated) try {
|
|
8447
|
+
Vb(b.containerInfo);
|
|
8448
|
+
} catch (p) {
|
|
8449
|
+
U(a, a.return, p);
|
|
8450
|
+
}
|
|
8681
8451
|
if (Ua) {
|
|
8682
8452
|
e = b.containerInfo, f = b.pendingChildren;
|
|
8683
8453
|
try {
|
|
@@ -8707,77 +8477,71 @@ Error generating stack: ` + f.message + `
|
|
|
8707
8477
|
case 22:
|
|
8708
8478
|
var g = c !== null && c.memoizedState !== null;
|
|
8709
8479
|
if (a.mode & 1 ? (S = (c = S) || g, $g(b, a), S = c) : $g(b, a), bh(a), d & 8192) {
|
|
8710
|
-
if (c = a.memoizedState !== null, (a.stateNode.isHidden = c) && !g && a.mode & 1)
|
|
8711
|
-
for (
|
|
8712
|
-
|
|
8713
|
-
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
|
|
8717
|
-
|
|
8718
|
-
|
|
8719
|
-
|
|
8720
|
-
|
|
8721
|
-
|
|
8722
|
-
|
|
8723
|
-
|
|
8724
|
-
|
|
8725
|
-
|
|
8726
|
-
|
|
8727
|
-
|
|
8728
|
-
|
|
8729
|
-
|
|
8730
|
-
|
|
8731
|
-
U(l, n, p);
|
|
8732
|
-
}
|
|
8733
|
-
}
|
|
8734
|
-
break;
|
|
8735
|
-
case 5:
|
|
8736
|
-
Jg(g, g.return);
|
|
8737
|
-
break;
|
|
8738
|
-
case 22:
|
|
8739
|
-
if (g.memoizedState !== null) {
|
|
8740
|
-
dh(b);
|
|
8741
|
-
continue;
|
|
8480
|
+
if (c = a.memoizedState !== null, (a.stateNode.isHidden = c) && !g && a.mode & 1) for (T = a, d = a.child; d !== null; ) {
|
|
8481
|
+
for (b = T = d; T !== null; ) {
|
|
8482
|
+
g = T;
|
|
8483
|
+
var h = g.child;
|
|
8484
|
+
switch (g.tag) {
|
|
8485
|
+
case 0:
|
|
8486
|
+
case 11:
|
|
8487
|
+
case 14:
|
|
8488
|
+
case 15:
|
|
8489
|
+
Ng(4, g, g.return);
|
|
8490
|
+
break;
|
|
8491
|
+
case 1:
|
|
8492
|
+
Jg(g, g.return);
|
|
8493
|
+
var k = g.stateNode;
|
|
8494
|
+
if (typeof k.componentWillUnmount == "function") {
|
|
8495
|
+
var l = g, n = g.return;
|
|
8496
|
+
try {
|
|
8497
|
+
var t = l;
|
|
8498
|
+
k.props = t.memoizedProps, k.state = t.memoizedState, k.componentWillUnmount();
|
|
8499
|
+
} catch (p) {
|
|
8500
|
+
U(l, n, p);
|
|
8742
8501
|
}
|
|
8743
|
-
|
|
8744
|
-
|
|
8502
|
+
}
|
|
8503
|
+
break;
|
|
8504
|
+
case 5:
|
|
8505
|
+
Jg(g, g.return);
|
|
8506
|
+
break;
|
|
8507
|
+
case 22:
|
|
8508
|
+
if (g.memoizedState !== null) {
|
|
8509
|
+
dh(b);
|
|
8510
|
+
continue;
|
|
8511
|
+
}
|
|
8745
8512
|
}
|
|
8746
|
-
|
|
8513
|
+
h !== null ? (h.return = g, T = h) : dh(b);
|
|
8747
8514
|
}
|
|
8515
|
+
d = d.sibling;
|
|
8516
|
+
}
|
|
8748
8517
|
if (Ta) {
|
|
8749
|
-
a:
|
|
8750
|
-
if (
|
|
8751
|
-
|
|
8752
|
-
|
|
8753
|
-
|
|
8754
|
-
|
|
8755
|
-
|
|
8756
|
-
|
|
8757
|
-
} catch (p) {
|
|
8758
|
-
U(a, a.return, p);
|
|
8759
|
-
}
|
|
8760
|
-
}
|
|
8761
|
-
} else if (b.tag === 6) {
|
|
8762
|
-
if (d === null)
|
|
8763
|
-
try {
|
|
8764
|
-
f = b.stateNode, c ? ub(f) : wb(f, b.memoizedProps);
|
|
8765
|
-
} catch (p) {
|
|
8766
|
-
U(a, a.return, p);
|
|
8767
|
-
}
|
|
8768
|
-
} else if ((b.tag !== 22 && b.tag !== 23 || b.memoizedState === null || b === a) && b.child !== null) {
|
|
8769
|
-
b.child.return = b, b = b.child;
|
|
8770
|
-
continue;
|
|
8771
|
-
}
|
|
8772
|
-
if (b === a)
|
|
8773
|
-
break a;
|
|
8774
|
-
for (; b.sibling === null; ) {
|
|
8775
|
-
if (b.return === null || b.return === a)
|
|
8776
|
-
break a;
|
|
8777
|
-
d === b && (d = null), b = b.return;
|
|
8518
|
+
a: if (d = null, Ta) for (b = a; ; ) {
|
|
8519
|
+
if (b.tag === 5) {
|
|
8520
|
+
if (d === null) {
|
|
8521
|
+
d = b;
|
|
8522
|
+
try {
|
|
8523
|
+
e = b.stateNode, c ? tb(e) : vb(b.stateNode, b.memoizedProps);
|
|
8524
|
+
} catch (p) {
|
|
8525
|
+
U(a, a.return, p);
|
|
8778
8526
|
}
|
|
8779
|
-
d === b && (d = null), b.sibling.return = b.return, b = b.sibling;
|
|
8780
8527
|
}
|
|
8528
|
+
} else if (b.tag === 6) {
|
|
8529
|
+
if (d === null) try {
|
|
8530
|
+
f = b.stateNode, c ? ub(f) : wb(f, b.memoizedProps);
|
|
8531
|
+
} catch (p) {
|
|
8532
|
+
U(a, a.return, p);
|
|
8533
|
+
}
|
|
8534
|
+
} else if ((b.tag !== 22 && b.tag !== 23 || b.memoizedState === null || b === a) && b.child !== null) {
|
|
8535
|
+
b.child.return = b, b = b.child;
|
|
8536
|
+
continue;
|
|
8537
|
+
}
|
|
8538
|
+
if (b === a) break a;
|
|
8539
|
+
for (; b.sibling === null; ) {
|
|
8540
|
+
if (b.return === null || b.return === a) break a;
|
|
8541
|
+
d === b && (d = null), b = b.return;
|
|
8542
|
+
}
|
|
8543
|
+
d === b && (d = null), b.sibling.return = b.return, b = b.sibling;
|
|
8544
|
+
}
|
|
8781
8545
|
}
|
|
8782
8546
|
}
|
|
8783
8547
|
break;
|
|
@@ -8840,16 +8604,12 @@ Error generating stack: ` + f.message + `
|
|
|
8840
8604
|
var h = e.alternate, k = h !== null && h.memoizedState !== null || S;
|
|
8841
8605
|
h = Hg;
|
|
8842
8606
|
var l = S;
|
|
8843
|
-
if (Hg = g, (S = k) && !l)
|
|
8844
|
-
|
|
8845
|
-
g = T, k = g.child, g.tag === 22 && g.memoizedState !== null ? gh(e) : k !== null ? (k.return = g, T = k) : gh(e);
|
|
8846
|
-
for (; f !== null; )
|
|
8847
|
-
T = f, fh(f), f = f.sibling;
|
|
8607
|
+
if (Hg = g, (S = k) && !l) for (T = e; T !== null; ) g = T, k = g.child, g.tag === 22 && g.memoizedState !== null ? gh(e) : k !== null ? (k.return = g, T = k) : gh(e);
|
|
8608
|
+
for (; f !== null; ) T = f, fh(f), f = f.sibling;
|
|
8848
8609
|
T = e, Hg = h, S = l;
|
|
8849
8610
|
}
|
|
8850
8611
|
hh(a);
|
|
8851
|
-
} else
|
|
8852
|
-
e.subtreeFlags & 8772 && f !== null ? (f.return = e, T = f) : hh(a);
|
|
8612
|
+
} else e.subtreeFlags & 8772 && f !== null ? (f.return = e, T = f) : hh(a);
|
|
8853
8613
|
}
|
|
8854
8614
|
}
|
|
8855
8615
|
function hh(a) {
|
|
@@ -8858,71 +8618,67 @@ Error generating stack: ` + f.message + `
|
|
|
8858
8618
|
if (b.flags & 8772) {
|
|
8859
8619
|
var c = b.alternate;
|
|
8860
8620
|
try {
|
|
8861
|
-
if (b.flags & 8772)
|
|
8862
|
-
|
|
8863
|
-
|
|
8864
|
-
|
|
8865
|
-
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
8869
|
-
|
|
8870
|
-
|
|
8871
|
-
|
|
8872
|
-
|
|
8873
|
-
|
|
8874
|
-
|
|
8875
|
-
|
|
8876
|
-
|
|
8877
|
-
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
8882
|
-
|
|
8883
|
-
|
|
8884
|
-
|
|
8885
|
-
|
|
8886
|
-
c = Ea(b.child.stateNode);
|
|
8887
|
-
break;
|
|
8888
|
-
case 1:
|
|
8889
|
-
c = b.child.stateNode;
|
|
8890
|
-
}
|
|
8891
|
-
ce(b, g, c);
|
|
8621
|
+
if (b.flags & 8772) switch (b.tag) {
|
|
8622
|
+
case 0:
|
|
8623
|
+
case 11:
|
|
8624
|
+
case 15:
|
|
8625
|
+
S || Og(5, b);
|
|
8626
|
+
break;
|
|
8627
|
+
case 1:
|
|
8628
|
+
var d = b.stateNode;
|
|
8629
|
+
if (b.flags & 4 && !S) if (c === null) d.componentDidMount();
|
|
8630
|
+
else {
|
|
8631
|
+
var e = b.elementType === b.type ? c.memoizedProps : Fd(b.type, c.memoizedProps);
|
|
8632
|
+
d.componentDidUpdate(e, c.memoizedState, d.__reactInternalSnapshotBeforeUpdate);
|
|
8633
|
+
}
|
|
8634
|
+
var f = b.updateQueue;
|
|
8635
|
+
f !== null && ce(b, f, d);
|
|
8636
|
+
break;
|
|
8637
|
+
case 3:
|
|
8638
|
+
var g = b.updateQueue;
|
|
8639
|
+
if (g !== null) {
|
|
8640
|
+
if (c = null, b.child !== null) switch (b.child.tag) {
|
|
8641
|
+
case 5:
|
|
8642
|
+
c = Ea(b.child.stateNode);
|
|
8643
|
+
break;
|
|
8644
|
+
case 1:
|
|
8645
|
+
c = b.child.stateNode;
|
|
8892
8646
|
}
|
|
8893
|
-
|
|
8894
|
-
|
|
8895
|
-
|
|
8896
|
-
|
|
8897
|
-
|
|
8898
|
-
|
|
8899
|
-
|
|
8900
|
-
|
|
8901
|
-
|
|
8902
|
-
|
|
8903
|
-
|
|
8904
|
-
|
|
8905
|
-
|
|
8906
|
-
|
|
8907
|
-
|
|
8908
|
-
|
|
8909
|
-
|
|
8910
|
-
|
|
8911
|
-
|
|
8912
|
-
|
|
8647
|
+
ce(b, g, c);
|
|
8648
|
+
}
|
|
8649
|
+
break;
|
|
8650
|
+
case 5:
|
|
8651
|
+
var h = b.stateNode;
|
|
8652
|
+
c === null && b.flags & 4 && mb(h, b.type, b.memoizedProps, b);
|
|
8653
|
+
break;
|
|
8654
|
+
case 6:
|
|
8655
|
+
break;
|
|
8656
|
+
case 4:
|
|
8657
|
+
break;
|
|
8658
|
+
case 12:
|
|
8659
|
+
break;
|
|
8660
|
+
case 13:
|
|
8661
|
+
if (Va && b.memoizedState === null) {
|
|
8662
|
+
var k = b.alternate;
|
|
8663
|
+
if (k !== null) {
|
|
8664
|
+
var l = k.memoizedState;
|
|
8665
|
+
if (l !== null) {
|
|
8666
|
+
var n = l.dehydrated;
|
|
8667
|
+
n !== null && Wb(n);
|
|
8913
8668
|
}
|
|
8914
8669
|
}
|
|
8915
|
-
|
|
8916
|
-
|
|
8917
|
-
|
|
8918
|
-
|
|
8919
|
-
|
|
8920
|
-
|
|
8921
|
-
|
|
8922
|
-
|
|
8923
|
-
|
|
8924
|
-
|
|
8925
|
-
|
|
8670
|
+
}
|
|
8671
|
+
break;
|
|
8672
|
+
case 19:
|
|
8673
|
+
case 17:
|
|
8674
|
+
case 21:
|
|
8675
|
+
case 22:
|
|
8676
|
+
case 23:
|
|
8677
|
+
case 25:
|
|
8678
|
+
break;
|
|
8679
|
+
default:
|
|
8680
|
+
throw Error(m(163));
|
|
8681
|
+
}
|
|
8926
8682
|
S || b.flags & 512 && Pg(b);
|
|
8927
8683
|
} catch (t) {
|
|
8928
8684
|
U(b, b.return, t);
|
|
@@ -9017,19 +8773,16 @@ Error generating stack: ` + f.message + `
|
|
|
9017
8773
|
function oh(a) {
|
|
9018
8774
|
var b = Wa(a);
|
|
9019
8775
|
if (b != null) {
|
|
9020
|
-
if (typeof b.memoizedProps["data-testname"] != "string")
|
|
9021
|
-
throw Error(m(364));
|
|
8776
|
+
if (typeof b.memoizedProps["data-testname"] != "string") throw Error(m(364));
|
|
9022
8777
|
return b;
|
|
9023
8778
|
}
|
|
9024
|
-
if (a = cb(a), a === null)
|
|
9025
|
-
throw Error(m(362));
|
|
8779
|
+
if (a = cb(a), a === null) throw Error(m(362));
|
|
9026
8780
|
return a.stateNode.current;
|
|
9027
8781
|
}
|
|
9028
8782
|
function ph(a, b) {
|
|
9029
8783
|
switch (b.$$typeof) {
|
|
9030
8784
|
case ih:
|
|
9031
|
-
if (a.type === b.value)
|
|
9032
|
-
return !0;
|
|
8785
|
+
if (a.type === b.value) return !0;
|
|
9033
8786
|
break;
|
|
9034
8787
|
case jh:
|
|
9035
8788
|
a: {
|
|
@@ -9037,30 +8790,24 @@ Error generating stack: ` + f.message + `
|
|
|
9037
8790
|
for (var c = 0; c < a.length; ) {
|
|
9038
8791
|
var d = a[c++], e = a[c++], f = b[e];
|
|
9039
8792
|
if (d.tag !== 5 || !fb(d)) {
|
|
9040
|
-
for (; f != null && ph(d, f); )
|
|
9041
|
-
e++, f = b[e];
|
|
8793
|
+
for (; f != null && ph(d, f); ) e++, f = b[e];
|
|
9042
8794
|
if (e === b.length) {
|
|
9043
8795
|
b = !0;
|
|
9044
8796
|
break a;
|
|
9045
|
-
} else
|
|
9046
|
-
for (d = d.child; d !== null; )
|
|
9047
|
-
a.push(d, e), d = d.sibling;
|
|
8797
|
+
} else for (d = d.child; d !== null; ) a.push(d, e), d = d.sibling;
|
|
9048
8798
|
}
|
|
9049
8799
|
}
|
|
9050
8800
|
b = !1;
|
|
9051
8801
|
}
|
|
9052
8802
|
return b;
|
|
9053
8803
|
case kh:
|
|
9054
|
-
if (a.tag === 5 && gb(a.stateNode, b.value))
|
|
9055
|
-
return !0;
|
|
8804
|
+
if (a.tag === 5 && gb(a.stateNode, b.value)) return !0;
|
|
9056
8805
|
break;
|
|
9057
8806
|
case mh:
|
|
9058
|
-
if ((a.tag === 5 || a.tag === 6) && (a = eb(a), a !== null && 0 <= a.indexOf(b.value)))
|
|
9059
|
-
return !0;
|
|
8807
|
+
if ((a.tag === 5 || a.tag === 6) && (a = eb(a), a !== null && 0 <= a.indexOf(b.value))) return !0;
|
|
9060
8808
|
break;
|
|
9061
8809
|
case lh:
|
|
9062
|
-
if (a.tag === 5 && (a = a.memoizedProps["data-testname"], typeof a == "string" && a.toLowerCase() === b.value.toLowerCase()))
|
|
9063
|
-
return !0;
|
|
8810
|
+
if (a.tag === 5 && (a = a.memoizedProps["data-testname"], typeof a == "string" && a.toLowerCase() === b.value.toLowerCase())) return !0;
|
|
9064
8811
|
break;
|
|
9065
8812
|
default:
|
|
9066
8813
|
throw Error(m(365));
|
|
@@ -9089,28 +8836,20 @@ Error generating stack: ` + f.message + `
|
|
|
9089
8836
|
for (var d = 0; d < a.length; ) {
|
|
9090
8837
|
var e = a[d++], f = a[d++], g = b[f];
|
|
9091
8838
|
if (e.tag !== 5 || !fb(e)) {
|
|
9092
|
-
for (; g != null && ph(e, g); )
|
|
9093
|
-
|
|
9094
|
-
|
|
9095
|
-
c.push(e);
|
|
9096
|
-
else
|
|
9097
|
-
for (e = e.child; e !== null; )
|
|
9098
|
-
a.push(e, f), e = e.sibling;
|
|
8839
|
+
for (; g != null && ph(e, g); ) f++, g = b[f];
|
|
8840
|
+
if (f === b.length) c.push(e);
|
|
8841
|
+
else for (e = e.child; e !== null; ) a.push(e, f), e = e.sibling;
|
|
9099
8842
|
}
|
|
9100
8843
|
}
|
|
9101
8844
|
return c;
|
|
9102
8845
|
}
|
|
9103
8846
|
function sh(a, b) {
|
|
9104
|
-
if (!bb)
|
|
9105
|
-
throw Error(m(363));
|
|
8847
|
+
if (!bb) throw Error(m(363));
|
|
9106
8848
|
a = oh(a), a = rh(a, b), b = [], a = Array.from(a);
|
|
9107
8849
|
for (var c = 0; c < a.length; ) {
|
|
9108
8850
|
var d = a[c++];
|
|
9109
|
-
if (d.tag === 5)
|
|
9110
|
-
|
|
9111
|
-
else
|
|
9112
|
-
for (d = d.child; d !== null; )
|
|
9113
|
-
a.push(d), d = d.sibling;
|
|
8851
|
+
if (d.tag === 5) fb(d) || b.push(d.stateNode);
|
|
8852
|
+
else for (d = d.child; d !== null; ) a.push(d), d = d.sibling;
|
|
9114
8853
|
}
|
|
9115
8854
|
return b;
|
|
9116
8855
|
}
|
|
@@ -9126,21 +8865,18 @@ Error generating stack: ` + f.message + `
|
|
|
9126
8865
|
return a.mode & 1 ? H & 2 && Y !== 0 ? Y & -Y : Cd.transition !== null ? (Jh === 0 && (Jh = Dc()), Jh) : (a = C, a !== 0 ? a : Ya()) : 1;
|
|
9127
8866
|
}
|
|
9128
8867
|
function ge(a, b, c, d) {
|
|
9129
|
-
if (50 < Gh)
|
|
9130
|
-
throw Gh = 0, Hh = null, Error(m(185));
|
|
8868
|
+
if (50 < Gh) throw Gh = 0, Hh = null, Error(m(185));
|
|
9131
8869
|
Fc(a, c, d), (!(H & 2) || a !== O) && (a === O && (!(H & 2) && (xh |= c), R === 4 && Kh(a, Y)), Lh(a, d), c === 1 && H === 0 && !(b.mode & 1) && (Ch(), Xc && ad()));
|
|
9132
8870
|
}
|
|
9133
8871
|
function Lh(a, b) {
|
|
9134
8872
|
var c = a.callbackNode;
|
|
9135
8873
|
Bc(a, b);
|
|
9136
8874
|
var d = zc(a, a === O ? Y : 0);
|
|
9137
|
-
if (d === 0)
|
|
9138
|
-
c !== null && Kc(c), a.callbackNode = null, a.callbackPriority = 0;
|
|
8875
|
+
if (d === 0) c !== null && Kc(c), a.callbackNode = null, a.callbackPriority = 0;
|
|
9139
8876
|
else if (b = d & -d, a.callbackPriority !== b) {
|
|
9140
|
-
if (c != null && Kc(c), b === 1)
|
|
9141
|
-
|
|
9142
|
-
|
|
9143
|
-
}) : Jc(Nc, ad), c = null;
|
|
8877
|
+
if (c != null && Kc(c), b === 1) a.tag === 0 ? $c(Mh.bind(null, a)) : Zc(Mh.bind(null, a)), $a ? ab(function() {
|
|
8878
|
+
!(H & 6) && ad();
|
|
8879
|
+
}) : Jc(Nc, ad), c = null;
|
|
9144
8880
|
else {
|
|
9145
8881
|
switch (Ic(d)) {
|
|
9146
8882
|
case 1:
|
|
@@ -9164,16 +8900,12 @@ Error generating stack: ` + f.message + `
|
|
|
9164
8900
|
}
|
|
9165
8901
|
}
|
|
9166
8902
|
function Oh(a, b) {
|
|
9167
|
-
if (Ih = -1, Jh = 0, H & 6)
|
|
9168
|
-
throw Error(m(327));
|
|
8903
|
+
if (Ih = -1, Jh = 0, H & 6) throw Error(m(327));
|
|
9169
8904
|
var c = a.callbackNode;
|
|
9170
|
-
if (Ph() && a.callbackNode !== c)
|
|
9171
|
-
return null;
|
|
8905
|
+
if (Ph() && a.callbackNode !== c) return null;
|
|
9172
8906
|
var d = zc(a, a === O ? Y : 0);
|
|
9173
|
-
if (d === 0)
|
|
9174
|
-
|
|
9175
|
-
if (d & 30 || d & a.expiredLanes || b)
|
|
9176
|
-
b = Qh(a, d);
|
|
8907
|
+
if (d === 0) return null;
|
|
8908
|
+
if (d & 30 || d & a.expiredLanes || b) b = Qh(a, d);
|
|
9177
8909
|
else {
|
|
9178
8910
|
b = d;
|
|
9179
8911
|
var e = H;
|
|
@@ -9191,13 +8923,10 @@ Error generating stack: ` + f.message + `
|
|
|
9191
8923
|
Kd(), uh.current = f, H = e, X !== null ? b = 0 : (O = null, Y = 0, b = R);
|
|
9192
8924
|
}
|
|
9193
8925
|
if (b !== 0) {
|
|
9194
|
-
if (b === 2 && (e = Cc(a), e !== 0 && (d = e, b = Vh(a, e))), b === 1)
|
|
9195
|
-
|
|
9196
|
-
if (b === 6)
|
|
9197
|
-
Kh(a, d);
|
|
8926
|
+
if (b === 2 && (e = Cc(a), e !== 0 && (d = e, b = Vh(a, e))), b === 1) throw c = wh, Sh(a, 0), Kh(a, d), Lh(a, D()), c;
|
|
8927
|
+
if (b === 6) Kh(a, d);
|
|
9198
8928
|
else {
|
|
9199
|
-
if (e = a.current.alternate, !(d & 30) && !Wh(e) && (b = Qh(a, d), b === 2 && (f = Cc(a), f !== 0 && (d = f, b = Vh(a, f))), b === 1))
|
|
9200
|
-
throw c = wh, Sh(a, 0), Kh(a, d), Lh(a, D()), c;
|
|
8929
|
+
if (e = a.current.alternate, !(d & 30) && !Wh(e) && (b = Qh(a, d), b === 2 && (f = Cc(a), f !== 0 && (d = f, b = Vh(a, f))), b === 1)) throw c = wh, Sh(a, 0), Kh(a, d), Lh(a, D()), c;
|
|
9201
8930
|
switch (a.finishedWork = e, a.finishedLanes = d, b) {
|
|
9202
8931
|
case 0:
|
|
9203
8932
|
case 1:
|
|
@@ -9207,8 +8936,7 @@ Error generating stack: ` + f.message + `
|
|
|
9207
8936
|
break;
|
|
9208
8937
|
case 3:
|
|
9209
8938
|
if (Kh(a, d), (d & 130023424) === d && (b = ch + 500 - D(), 10 < b)) {
|
|
9210
|
-
if (zc(a, 0) !== 0)
|
|
9211
|
-
break;
|
|
8939
|
+
if (zc(a, 0) !== 0) break;
|
|
9212
8940
|
if (e = a.suspendedLanes, (e & d) !== d) {
|
|
9213
8941
|
I(), a.pingedLanes |= a.suspendedLanes & e;
|
|
9214
8942
|
break;
|
|
@@ -9219,8 +8947,7 @@ Error generating stack: ` + f.message + `
|
|
|
9219
8947
|
Xh(a, Ah, Bh);
|
|
9220
8948
|
break;
|
|
9221
8949
|
case 4:
|
|
9222
|
-
if (Kh(a, d), (d & 4194240) === d)
|
|
9223
|
-
break;
|
|
8950
|
+
if (Kh(a, d), (d & 4194240) === d) break;
|
|
9224
8951
|
for (b = a.eventTimes, e = -1; 0 < d; ) {
|
|
9225
8952
|
var g = 31 - tc(d);
|
|
9226
8953
|
f = 1 << g, g = b[g], g > e && (e = g), d &= ~f;
|
|
@@ -9252,26 +8979,21 @@ Error generating stack: ` + f.message + `
|
|
|
9252
8979
|
for (var b = a; ; ) {
|
|
9253
8980
|
if (b.flags & 16384) {
|
|
9254
8981
|
var c = b.updateQueue;
|
|
9255
|
-
if (c !== null && (c = c.stores, c !== null))
|
|
9256
|
-
|
|
9257
|
-
|
|
9258
|
-
|
|
9259
|
-
|
|
9260
|
-
|
|
9261
|
-
|
|
9262
|
-
} catch {
|
|
9263
|
-
return !1;
|
|
9264
|
-
}
|
|
8982
|
+
if (c !== null && (c = c.stores, c !== null)) for (var d = 0; d < c.length; d++) {
|
|
8983
|
+
var e = c[d], f = e.getSnapshot;
|
|
8984
|
+
e = e.value;
|
|
8985
|
+
try {
|
|
8986
|
+
if (!Vc(f(), e)) return !1;
|
|
8987
|
+
} catch {
|
|
8988
|
+
return !1;
|
|
9265
8989
|
}
|
|
8990
|
+
}
|
|
9266
8991
|
}
|
|
9267
|
-
if (c = b.child, b.subtreeFlags & 16384 && c !== null)
|
|
9268
|
-
c.return = b, b = c;
|
|
8992
|
+
if (c = b.child, b.subtreeFlags & 16384 && c !== null) c.return = b, b = c;
|
|
9269
8993
|
else {
|
|
9270
|
-
if (b === a)
|
|
9271
|
-
break;
|
|
8994
|
+
if (b === a) break;
|
|
9272
8995
|
for (; b.sibling === null; ) {
|
|
9273
|
-
if (b.return === null || b.return === a)
|
|
9274
|
-
return !0;
|
|
8996
|
+
if (b.return === null || b.return === a) return !0;
|
|
9275
8997
|
b = b.return;
|
|
9276
8998
|
}
|
|
9277
8999
|
b.sibling.return = b.return, b = b.sibling;
|
|
@@ -9286,21 +9008,17 @@ Error generating stack: ` + f.message + `
|
|
|
9286
9008
|
}
|
|
9287
9009
|
}
|
|
9288
9010
|
function Mh(a) {
|
|
9289
|
-
if (H & 6)
|
|
9290
|
-
throw Error(m(327));
|
|
9011
|
+
if (H & 6) throw Error(m(327));
|
|
9291
9012
|
Ph();
|
|
9292
9013
|
var b = zc(a, 0);
|
|
9293
|
-
if (!(b & 1))
|
|
9294
|
-
return Lh(a, D()), null;
|
|
9014
|
+
if (!(b & 1)) return Lh(a, D()), null;
|
|
9295
9015
|
var c = Qh(a, b);
|
|
9296
9016
|
if (a.tag !== 0 && c === 2) {
|
|
9297
9017
|
var d = Cc(a);
|
|
9298
9018
|
d !== 0 && (b = d, c = Vh(a, d));
|
|
9299
9019
|
}
|
|
9300
|
-
if (c === 1)
|
|
9301
|
-
|
|
9302
|
-
if (c === 6)
|
|
9303
|
-
throw Error(m(345));
|
|
9020
|
+
if (c === 1) throw c = wh, Sh(a, 0), Kh(a, b), Lh(a, D()), c;
|
|
9021
|
+
if (c === 6) throw Error(m(345));
|
|
9304
9022
|
return a.finishedWork = a.current.alternate, a.finishedLanes = b, Xh(a, Ah, Bh), Lh(a, D()), null;
|
|
9305
9023
|
}
|
|
9306
9024
|
function Yh(a) {
|
|
@@ -9309,8 +9027,7 @@ Error generating stack: ` + f.message + `
|
|
|
9309
9027
|
H |= 1;
|
|
9310
9028
|
var c = W.transition, d = C;
|
|
9311
9029
|
try {
|
|
9312
|
-
if (W.transition = null, C = 1, a)
|
|
9313
|
-
return a();
|
|
9030
|
+
if (W.transition = null, C = 1, a) return a();
|
|
9314
9031
|
} finally {
|
|
9315
9032
|
C = d, W.transition = c, H = b, !(H & 6) && ad();
|
|
9316
9033
|
}
|
|
@@ -9321,48 +9038,46 @@ Error generating stack: ` + f.message + `
|
|
|
9321
9038
|
function Sh(a, b) {
|
|
9322
9039
|
a.finishedWork = null, a.finishedLanes = 0;
|
|
9323
9040
|
var c = a.timeoutHandle;
|
|
9324
|
-
if (c !== Ra && (a.timeoutHandle = Ra, Qa(c)), X !== null)
|
|
9325
|
-
|
|
9326
|
-
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
|
|
9330
|
-
|
|
9331
|
-
|
|
9332
|
-
|
|
9333
|
-
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
9348
|
-
|
|
9349
|
-
|
|
9350
|
-
|
|
9351
|
-
Fg();
|
|
9352
|
-
}
|
|
9353
|
-
c = c.return;
|
|
9041
|
+
if (c !== Ra && (a.timeoutHandle = Ra, Qa(c)), X !== null) for (c = X.return; c !== null; ) {
|
|
9042
|
+
var d = c;
|
|
9043
|
+
switch (nd(d), d.tag) {
|
|
9044
|
+
case 1:
|
|
9045
|
+
d = d.type.childContextTypes, d != null && mc();
|
|
9046
|
+
break;
|
|
9047
|
+
case 3:
|
|
9048
|
+
De(), q(z), q(x), Ie();
|
|
9049
|
+
break;
|
|
9050
|
+
case 5:
|
|
9051
|
+
Fe(d);
|
|
9052
|
+
break;
|
|
9053
|
+
case 4:
|
|
9054
|
+
De();
|
|
9055
|
+
break;
|
|
9056
|
+
case 13:
|
|
9057
|
+
q(J);
|
|
9058
|
+
break;
|
|
9059
|
+
case 19:
|
|
9060
|
+
q(J);
|
|
9061
|
+
break;
|
|
9062
|
+
case 10:
|
|
9063
|
+
Md(d.type._context);
|
|
9064
|
+
break;
|
|
9065
|
+
case 22:
|
|
9066
|
+
case 23:
|
|
9067
|
+
Fg();
|
|
9354
9068
|
}
|
|
9069
|
+
c = c.return;
|
|
9070
|
+
}
|
|
9355
9071
|
if (O = a, X = a = qe(a.current, null), Y = ag = b, R = 0, wh = null, yh = xh = be = 0, Ah = zh = null, Qd !== null) {
|
|
9356
|
-
for (b = 0; b < Qd.length; b++)
|
|
9357
|
-
|
|
9358
|
-
|
|
9359
|
-
|
|
9360
|
-
|
|
9361
|
-
|
|
9362
|
-
f.next = e, d.next = g;
|
|
9363
|
-
}
|
|
9364
|
-
c.pending = d;
|
|
9072
|
+
for (b = 0; b < Qd.length; b++) if (c = Qd[b], d = c.interleaved, d !== null) {
|
|
9073
|
+
c.interleaved = null;
|
|
9074
|
+
var e = d.next, f = c.pending;
|
|
9075
|
+
if (f !== null) {
|
|
9076
|
+
var g = f.next;
|
|
9077
|
+
f.next = e, d.next = g;
|
|
9365
9078
|
}
|
|
9079
|
+
c.pending = d;
|
|
9080
|
+
}
|
|
9366
9081
|
Qd = null;
|
|
9367
9082
|
}
|
|
9368
9083
|
return a;
|
|
@@ -9397,8 +9112,7 @@ Error generating stack: ` + f.message + `
|
|
|
9397
9112
|
if (w === null) {
|
|
9398
9113
|
var Z = /* @__PURE__ */ new Set();
|
|
9399
9114
|
Z.add(k), b.updateQueue = Z;
|
|
9400
|
-
} else
|
|
9401
|
-
w.add(k);
|
|
9115
|
+
} else w.add(k);
|
|
9402
9116
|
break a;
|
|
9403
9117
|
} else {
|
|
9404
9118
|
if (!(b & 1)) {
|
|
@@ -9463,17 +9177,14 @@ Error generating stack: ` + f.message + `
|
|
|
9463
9177
|
Uh(a, e);
|
|
9464
9178
|
}
|
|
9465
9179
|
while (!0);
|
|
9466
|
-
if (Kd(), H = c, uh.current = d, X !== null)
|
|
9467
|
-
throw Error(m(261));
|
|
9180
|
+
if (Kd(), H = c, uh.current = d, X !== null) throw Error(m(261));
|
|
9468
9181
|
return O = null, Y = 0, R;
|
|
9469
9182
|
}
|
|
9470
9183
|
function $h() {
|
|
9471
|
-
for (; X !== null; )
|
|
9472
|
-
ai(X);
|
|
9184
|
+
for (; X !== null; ) ai(X);
|
|
9473
9185
|
}
|
|
9474
9186
|
function Th() {
|
|
9475
|
-
for (; X !== null && !Lc(); )
|
|
9476
|
-
ai(X);
|
|
9187
|
+
for (; X !== null && !Lc(); ) ai(X);
|
|
9477
9188
|
}
|
|
9478
9189
|
function ai(a) {
|
|
9479
9190
|
var b = bi(a.alternate, a, ag);
|
|
@@ -9488,8 +9199,7 @@ Error generating stack: ` + f.message + `
|
|
|
9488
9199
|
c.flags &= 32767, X = c;
|
|
9489
9200
|
return;
|
|
9490
9201
|
}
|
|
9491
|
-
if (a !== null)
|
|
9492
|
-
a.flags |= 32768, a.subtreeFlags = 0, a.deletions = null;
|
|
9202
|
+
if (a !== null) a.flags |= 32768, a.subtreeFlags = 0, a.deletions = null;
|
|
9493
9203
|
else {
|
|
9494
9204
|
R = 6, X = null;
|
|
9495
9205
|
return;
|
|
@@ -9519,14 +9229,11 @@ Error generating stack: ` + f.message + `
|
|
|
9519
9229
|
do
|
|
9520
9230
|
Ph();
|
|
9521
9231
|
while (Eh !== null);
|
|
9522
|
-
if (H & 6)
|
|
9523
|
-
throw Error(m(327));
|
|
9232
|
+
if (H & 6) throw Error(m(327));
|
|
9524
9233
|
c = a.finishedWork;
|
|
9525
9234
|
var e = a.finishedLanes;
|
|
9526
|
-
if (c === null)
|
|
9527
|
-
|
|
9528
|
-
if (a.finishedWork = null, a.finishedLanes = 0, c === a.current)
|
|
9529
|
-
throw Error(m(177));
|
|
9235
|
+
if (c === null) return null;
|
|
9236
|
+
if (a.finishedWork = null, a.finishedLanes = 0, c === a.current) throw Error(m(177));
|
|
9530
9237
|
a.callbackNode = null, a.callbackPriority = 0;
|
|
9531
9238
|
var f = c.lanes | c.childLanes;
|
|
9532
9239
|
if (Gc(a, f), a === O && (X = O = null, Y = 0), !(c.subtreeFlags & 2064) && !(c.flags & 2064) || Dh || (Dh = !0, Nh(Pc, function() {
|
|
@@ -9537,24 +9244,18 @@ Error generating stack: ` + f.message + `
|
|
|
9537
9244
|
C = 1;
|
|
9538
9245
|
var h = H;
|
|
9539
9246
|
H |= 4, vh.current = null, Mg(a, c), ah(c, a), Ia(a.containerInfo), a.current = c, eh(c), Mc(), H = h, C = g, W.transition = f;
|
|
9540
|
-
} else
|
|
9541
|
-
|
|
9542
|
-
if (
|
|
9543
|
-
for (d = a.onRecoverableError, c = 0; c < b.length; c++)
|
|
9544
|
-
e = b[c], d(e.value, { componentStack: e.stack, digest: e.digest });
|
|
9545
|
-
if (Kf)
|
|
9546
|
-
throw Kf = !1, a = Lf, Lf = null, a;
|
|
9247
|
+
} else a.current = c;
|
|
9248
|
+
if (Dh && (Dh = !1, Eh = a, Fh = e), f = a.pendingLanes, f === 0 && (Nf = null), Tc(c.stateNode), Lh(a, D()), b !== null) for (d = a.onRecoverableError, c = 0; c < b.length; c++) e = b[c], d(e.value, { componentStack: e.stack, digest: e.digest });
|
|
9249
|
+
if (Kf) throw Kf = !1, a = Lf, Lf = null, a;
|
|
9547
9250
|
return Fh & 1 && a.tag !== 0 && Ph(), f = a.pendingLanes, f & 1 ? a === Hh ? Gh++ : (Gh = 0, Hh = a) : Gh = 0, ad(), null;
|
|
9548
9251
|
}
|
|
9549
9252
|
function Ph() {
|
|
9550
9253
|
if (Eh !== null) {
|
|
9551
9254
|
var a = Ic(Fh), b = W.transition, c = C;
|
|
9552
9255
|
try {
|
|
9553
|
-
if (W.transition = null, C = 16 > a ? 16 : a, Eh === null)
|
|
9554
|
-
var d = !1;
|
|
9256
|
+
if (W.transition = null, C = 16 > a ? 16 : a, Eh === null) var d = !1;
|
|
9555
9257
|
else {
|
|
9556
|
-
if (a = Eh, Eh = null, Fh = 0, H & 6)
|
|
9557
|
-
throw Error(m(331));
|
|
9258
|
+
if (a = Eh, Eh = null, Fh = 0, H & 6) throw Error(m(331));
|
|
9558
9259
|
var e = H;
|
|
9559
9260
|
for (H |= 4, T = a.current; T !== null; ) {
|
|
9560
9261
|
var f = T, g = f.child;
|
|
@@ -9572,22 +9273,20 @@ Error generating stack: ` + f.message + `
|
|
|
9572
9273
|
Ng(8, n, f);
|
|
9573
9274
|
}
|
|
9574
9275
|
var t = n.child;
|
|
9575
|
-
if (t !== null)
|
|
9576
|
-
|
|
9577
|
-
|
|
9578
|
-
|
|
9579
|
-
|
|
9580
|
-
|
|
9581
|
-
|
|
9582
|
-
|
|
9583
|
-
|
|
9584
|
-
|
|
9585
|
-
|
|
9586
|
-
p.return = B, T = p;
|
|
9587
|
-
break;
|
|
9588
|
-
}
|
|
9589
|
-
T = B;
|
|
9276
|
+
if (t !== null) t.return = n, T = t;
|
|
9277
|
+
else for (; T !== null; ) {
|
|
9278
|
+
n = T;
|
|
9279
|
+
var p = n.sibling, B = n.return;
|
|
9280
|
+
if (Qg(n), n === l) {
|
|
9281
|
+
T = null;
|
|
9282
|
+
break;
|
|
9283
|
+
}
|
|
9284
|
+
if (p !== null) {
|
|
9285
|
+
p.return = B, T = p;
|
|
9286
|
+
break;
|
|
9590
9287
|
}
|
|
9288
|
+
T = B;
|
|
9289
|
+
}
|
|
9591
9290
|
}
|
|
9592
9291
|
}
|
|
9593
9292
|
var w = f.alternate;
|
|
@@ -9604,63 +9303,54 @@ Error generating stack: ` + f.message + `
|
|
|
9604
9303
|
T = f;
|
|
9605
9304
|
}
|
|
9606
9305
|
}
|
|
9607
|
-
if (f.subtreeFlags & 2064 && g !== null)
|
|
9608
|
-
|
|
9609
|
-
|
|
9610
|
-
|
|
9611
|
-
|
|
9612
|
-
|
|
9613
|
-
|
|
9614
|
-
|
|
9615
|
-
|
|
9616
|
-
|
|
9617
|
-
|
|
9618
|
-
|
|
9619
|
-
|
|
9620
|
-
|
|
9621
|
-
|
|
9622
|
-
break b;
|
|
9623
|
-
}
|
|
9624
|
-
T = f.return;
|
|
9625
|
-
}
|
|
9306
|
+
if (f.subtreeFlags & 2064 && g !== null) g.return = f, T = g;
|
|
9307
|
+
else b: for (; T !== null; ) {
|
|
9308
|
+
if (f = T, f.flags & 2048) switch (f.tag) {
|
|
9309
|
+
case 0:
|
|
9310
|
+
case 11:
|
|
9311
|
+
case 15:
|
|
9312
|
+
Ng(9, f, f.return);
|
|
9313
|
+
}
|
|
9314
|
+
var E = f.sibling;
|
|
9315
|
+
if (E !== null) {
|
|
9316
|
+
E.return = f.return, T = E;
|
|
9317
|
+
break b;
|
|
9318
|
+
}
|
|
9319
|
+
T = f.return;
|
|
9320
|
+
}
|
|
9626
9321
|
}
|
|
9627
9322
|
var r = a.current;
|
|
9628
9323
|
for (T = r; T !== null; ) {
|
|
9629
9324
|
g = T;
|
|
9630
9325
|
var u = g.child;
|
|
9631
|
-
if (g.subtreeFlags & 2064 && u !== null)
|
|
9632
|
-
|
|
9633
|
-
|
|
9634
|
-
|
|
9635
|
-
|
|
9636
|
-
|
|
9637
|
-
|
|
9638
|
-
|
|
9639
|
-
case 0:
|
|
9640
|
-
case 11:
|
|
9641
|
-
case 15:
|
|
9642
|
-
Og(9, h);
|
|
9643
|
-
}
|
|
9644
|
-
} catch (qc) {
|
|
9645
|
-
U(h, h.return, qc);
|
|
9646
|
-
}
|
|
9647
|
-
if (h === g) {
|
|
9648
|
-
T = null;
|
|
9649
|
-
break b;
|
|
9650
|
-
}
|
|
9651
|
-
var Db = h.sibling;
|
|
9652
|
-
if (Db !== null) {
|
|
9653
|
-
Db.return = h.return, T = Db;
|
|
9654
|
-
break b;
|
|
9655
|
-
}
|
|
9656
|
-
T = h.return;
|
|
9326
|
+
if (g.subtreeFlags & 2064 && u !== null) u.return = g, T = u;
|
|
9327
|
+
else b: for (g = r; T !== null; ) {
|
|
9328
|
+
if (h = T, h.flags & 2048) try {
|
|
9329
|
+
switch (h.tag) {
|
|
9330
|
+
case 0:
|
|
9331
|
+
case 11:
|
|
9332
|
+
case 15:
|
|
9333
|
+
Og(9, h);
|
|
9657
9334
|
}
|
|
9658
|
-
|
|
9659
|
-
|
|
9660
|
-
|
|
9661
|
-
|
|
9662
|
-
|
|
9335
|
+
} catch (qc) {
|
|
9336
|
+
U(h, h.return, qc);
|
|
9337
|
+
}
|
|
9338
|
+
if (h === g) {
|
|
9339
|
+
T = null;
|
|
9340
|
+
break b;
|
|
9341
|
+
}
|
|
9342
|
+
var Db = h.sibling;
|
|
9343
|
+
if (Db !== null) {
|
|
9344
|
+
Db.return = h.return, T = Db;
|
|
9345
|
+
break b;
|
|
9346
|
+
}
|
|
9347
|
+
T = h.return;
|
|
9663
9348
|
}
|
|
9349
|
+
}
|
|
9350
|
+
if (H = e, ad(), Sc && typeof Sc.onPostCommitFiberRoot == "function") try {
|
|
9351
|
+
Sc.onPostCommitFiberRoot(Rc, a);
|
|
9352
|
+
} catch {
|
|
9353
|
+
}
|
|
9664
9354
|
d = !0;
|
|
9665
9355
|
}
|
|
9666
9356
|
return d;
|
|
@@ -9674,22 +9364,20 @@ Error generating stack: ` + f.message + `
|
|
|
9674
9364
|
b = Ff(c, b), b = Jf(a, b, 1), a = Yd(a, b, 1), b = I(), a !== null && (Fc(a, 1, b), Lh(a, b));
|
|
9675
9365
|
}
|
|
9676
9366
|
function U(a, b, c) {
|
|
9677
|
-
if (a.tag === 3)
|
|
9678
|
-
|
|
9679
|
-
|
|
9680
|
-
|
|
9681
|
-
|
|
9682
|
-
|
|
9367
|
+
if (a.tag === 3) di(a, a, c);
|
|
9368
|
+
else for (; b !== null; ) {
|
|
9369
|
+
if (b.tag === 3) {
|
|
9370
|
+
di(b, a, c);
|
|
9371
|
+
break;
|
|
9372
|
+
} else if (b.tag === 1) {
|
|
9373
|
+
var d = b.stateNode;
|
|
9374
|
+
if (typeof b.type.getDerivedStateFromError == "function" || typeof d.componentDidCatch == "function" && (Nf === null || !Nf.has(d))) {
|
|
9375
|
+
a = Ff(c, a), a = Mf(b, a, 1), b = Yd(b, a, 1), a = I(), b !== null && (Fc(b, 1, a), Lh(b, a));
|
|
9683
9376
|
break;
|
|
9684
|
-
} else if (b.tag === 1) {
|
|
9685
|
-
var d = b.stateNode;
|
|
9686
|
-
if (typeof b.type.getDerivedStateFromError == "function" || typeof d.componentDidCatch == "function" && (Nf === null || !Nf.has(d))) {
|
|
9687
|
-
a = Ff(c, a), a = Mf(b, a, 1), b = Yd(b, a, 1), a = I(), b !== null && (Fc(b, 1, a), Lh(b, a));
|
|
9688
|
-
break;
|
|
9689
|
-
}
|
|
9690
9377
|
}
|
|
9691
|
-
b = b.return;
|
|
9692
9378
|
}
|
|
9379
|
+
b = b.return;
|
|
9380
|
+
}
|
|
9693
9381
|
}
|
|
9694
9382
|
function Pf(a, b, c) {
|
|
9695
9383
|
var d = a.pingCache;
|
|
@@ -9721,16 +9409,12 @@ Error generating stack: ` + f.message + `
|
|
|
9721
9409
|
}
|
|
9722
9410
|
var bi;
|
|
9723
9411
|
bi = function(a, b, c) {
|
|
9724
|
-
if (a !== null)
|
|
9725
|
-
|
|
9726
|
-
|
|
9727
|
-
|
|
9728
|
-
|
|
9729
|
-
|
|
9730
|
-
G = !!(a.flags & 131072);
|
|
9731
|
-
}
|
|
9732
|
-
else
|
|
9733
|
-
G = !1, F && b.flags & 1048576 && ld(b, ed, b.index);
|
|
9412
|
+
if (a !== null) if (a.memoizedProps !== b.pendingProps || z.current) G = !0;
|
|
9413
|
+
else {
|
|
9414
|
+
if (!(a.lanes & c) && !(b.flags & 128)) return G = !1, tg(a, b, c);
|
|
9415
|
+
G = !!(a.flags & 131072);
|
|
9416
|
+
}
|
|
9417
|
+
else G = !1, F && b.flags & 1048576 && ld(b, ed, b.index);
|
|
9734
9418
|
switch (b.lanes = 0, b.tag) {
|
|
9735
9419
|
case 2:
|
|
9736
9420
|
var d = b.type;
|
|
@@ -9769,20 +9453,16 @@ Error generating stack: ` + f.message + `
|
|
|
9769
9453
|
return d = b.type, e = b.pendingProps, e = b.elementType === d ? e : Fd(d, e), cg(a, b, d, e, c);
|
|
9770
9454
|
case 3:
|
|
9771
9455
|
a: {
|
|
9772
|
-
if (fg(b), a === null)
|
|
9773
|
-
throw Error(m(387));
|
|
9456
|
+
if (fg(b), a === null) throw Error(m(387));
|
|
9774
9457
|
d = b.pendingProps, f = b.memoizedState, e = f.element, Wd(a, b), ae(b, d, null, c);
|
|
9775
9458
|
var g = b.memoizedState;
|
|
9776
|
-
if (d = g.element, Va && f.isDehydrated)
|
|
9777
|
-
|
|
9778
|
-
|
|
9779
|
-
|
|
9780
|
-
|
|
9781
|
-
|
|
9782
|
-
|
|
9783
|
-
} else
|
|
9784
|
-
for (Va && (pd = Pb(b.stateNode.containerInfo), od = b, F = !0, rd = null, qd = !1), c = we(b, null, d, c), b.child = c; c; )
|
|
9785
|
-
c.flags = c.flags & -3 | 4096, c = c.sibling;
|
|
9459
|
+
if (d = g.element, Va && f.isDehydrated) if (f = { element: d, isDehydrated: !1, cache: g.cache, pendingSuspenseBoundaries: g.pendingSuspenseBoundaries, transitions: g.transitions }, b.updateQueue.baseState = f, b.memoizedState = f, b.flags & 256) {
|
|
9460
|
+
e = Ff(Error(m(423)), b), b = gg(a, b, d, c, e);
|
|
9461
|
+
break a;
|
|
9462
|
+
} else if (d !== e) {
|
|
9463
|
+
e = Ff(Error(m(424)), b), b = gg(a, b, d, c, e);
|
|
9464
|
+
break a;
|
|
9465
|
+
} else for (Va && (pd = Pb(b.stateNode.containerInfo), od = b, F = !0, rd = null, qd = !1), c = we(b, null, d, c), b.child = c; c; ) c.flags = c.flags & -3 | 4096, c = c.sibling;
|
|
9786
9466
|
else {
|
|
9787
9467
|
if (Ad(), d === e) {
|
|
9788
9468
|
b = Uf(a, b, c);
|
|
@@ -9811,57 +9491,50 @@ Error generating stack: ` + f.message + `
|
|
|
9811
9491
|
return P(a, b, b.pendingProps.children, c), b.child;
|
|
9812
9492
|
case 10:
|
|
9813
9493
|
a: {
|
|
9814
|
-
if (d = b.type._context, e = b.pendingProps, f = b.memoizedProps, g = e.value, Ld(b, d, g), f !== null)
|
|
9815
|
-
if (
|
|
9816
|
-
|
|
9817
|
-
|
|
9818
|
-
|
|
9819
|
-
|
|
9820
|
-
|
|
9821
|
-
|
|
9822
|
-
|
|
9823
|
-
|
|
9824
|
-
|
|
9825
|
-
|
|
9826
|
-
|
|
9827
|
-
|
|
9828
|
-
|
|
9829
|
-
|
|
9830
|
-
|
|
9831
|
-
|
|
9832
|
-
var n = l.pending;
|
|
9833
|
-
n === null ? k.next = k : (k.next = n.next, n.next = k), l.pending = k;
|
|
9834
|
-
}
|
|
9835
|
-
}
|
|
9836
|
-
f.lanes |= c, k = f.alternate, k !== null && (k.lanes |= c), Nd(f.return, c, b), h.lanes |= c;
|
|
9837
|
-
break;
|
|
9838
|
-
}
|
|
9839
|
-
k = k.next;
|
|
9840
|
-
}
|
|
9841
|
-
} else if (f.tag === 10)
|
|
9842
|
-
g = f.type === b.type ? null : f.child;
|
|
9843
|
-
else if (f.tag === 18) {
|
|
9844
|
-
if (g = f.return, g === null)
|
|
9845
|
-
throw Error(m(341));
|
|
9846
|
-
g.lanes |= c, h = g.alternate, h !== null && (h.lanes |= c), Nd(g, c, b), g = f.sibling;
|
|
9847
|
-
} else
|
|
9848
|
-
g = f.child;
|
|
9849
|
-
if (g !== null)
|
|
9850
|
-
g.return = f;
|
|
9851
|
-
else
|
|
9852
|
-
for (g = f; g !== null; ) {
|
|
9853
|
-
if (g === b) {
|
|
9854
|
-
g = null;
|
|
9855
|
-
break;
|
|
9856
|
-
}
|
|
9857
|
-
if (f = g.sibling, f !== null) {
|
|
9858
|
-
f.return = g.return, g = f;
|
|
9859
|
-
break;
|
|
9494
|
+
if (d = b.type._context, e = b.pendingProps, f = b.memoizedProps, g = e.value, Ld(b, d, g), f !== null) if (Vc(f.value, g)) {
|
|
9495
|
+
if (f.children === e.children && !z.current) {
|
|
9496
|
+
b = Uf(a, b, c);
|
|
9497
|
+
break a;
|
|
9498
|
+
}
|
|
9499
|
+
} else for (f = b.child, f !== null && (f.return = b); f !== null; ) {
|
|
9500
|
+
var h = f.dependencies;
|
|
9501
|
+
if (h !== null) {
|
|
9502
|
+
g = f.child;
|
|
9503
|
+
for (var k = h.firstContext; k !== null; ) {
|
|
9504
|
+
if (k.context === d) {
|
|
9505
|
+
if (f.tag === 1) {
|
|
9506
|
+
k = Xd(-1, c & -c), k.tag = 2;
|
|
9507
|
+
var l = f.updateQueue;
|
|
9508
|
+
if (l !== null) {
|
|
9509
|
+
l = l.shared;
|
|
9510
|
+
var n = l.pending;
|
|
9511
|
+
n === null ? k.next = k : (k.next = n.next, n.next = k), l.pending = k;
|
|
9860
9512
|
}
|
|
9861
|
-
g = g.return;
|
|
9862
9513
|
}
|
|
9863
|
-
|
|
9514
|
+
f.lanes |= c, k = f.alternate, k !== null && (k.lanes |= c), Nd(f.return, c, b), h.lanes |= c;
|
|
9515
|
+
break;
|
|
9516
|
+
}
|
|
9517
|
+
k = k.next;
|
|
9518
|
+
}
|
|
9519
|
+
} else if (f.tag === 10) g = f.type === b.type ? null : f.child;
|
|
9520
|
+
else if (f.tag === 18) {
|
|
9521
|
+
if (g = f.return, g === null) throw Error(m(341));
|
|
9522
|
+
g.lanes |= c, h = g.alternate, h !== null && (h.lanes |= c), Nd(g, c, b), g = f.sibling;
|
|
9523
|
+
} else g = f.child;
|
|
9524
|
+
if (g !== null) g.return = f;
|
|
9525
|
+
else for (g = f; g !== null; ) {
|
|
9526
|
+
if (g === b) {
|
|
9527
|
+
g = null;
|
|
9528
|
+
break;
|
|
9529
|
+
}
|
|
9530
|
+
if (f = g.sibling, f !== null) {
|
|
9531
|
+
f.return = g.return, g = f;
|
|
9532
|
+
break;
|
|
9864
9533
|
}
|
|
9534
|
+
g = g.return;
|
|
9535
|
+
}
|
|
9536
|
+
f = g;
|
|
9537
|
+
}
|
|
9865
9538
|
P(a, b, e.children, c), b = b.child;
|
|
9866
9539
|
}
|
|
9867
9540
|
return b;
|
|
@@ -9893,13 +9566,10 @@ Error generating stack: ` + f.message + `
|
|
|
9893
9566
|
return a = a.prototype, !(!a || !a.isReactComponent);
|
|
9894
9567
|
}
|
|
9895
9568
|
function fi(a) {
|
|
9896
|
-
if (typeof a == "function")
|
|
9897
|
-
return Wf(a) ? 1 : 0;
|
|
9569
|
+
if (typeof a == "function") return Wf(a) ? 1 : 0;
|
|
9898
9570
|
if (a != null) {
|
|
9899
|
-
if (a = a.$$typeof, a === ma)
|
|
9900
|
-
|
|
9901
|
-
if (a === pa)
|
|
9902
|
-
return 14;
|
|
9571
|
+
if (a = a.$$typeof, a === ma) return 11;
|
|
9572
|
+
if (a === pa) return 14;
|
|
9903
9573
|
}
|
|
9904
9574
|
return 2;
|
|
9905
9575
|
}
|
|
@@ -9909,47 +9579,42 @@ Error generating stack: ` + f.message + `
|
|
|
9909
9579
|
}
|
|
9910
9580
|
function se(a, b, c, d, e, f) {
|
|
9911
9581
|
var g = 2;
|
|
9912
|
-
if (d = a, typeof a == "function")
|
|
9913
|
-
|
|
9914
|
-
else
|
|
9915
|
-
|
|
9916
|
-
|
|
9917
|
-
|
|
9918
|
-
|
|
9919
|
-
|
|
9920
|
-
|
|
9921
|
-
|
|
9922
|
-
|
|
9923
|
-
|
|
9924
|
-
|
|
9925
|
-
|
|
9926
|
-
|
|
9927
|
-
|
|
9928
|
-
|
|
9929
|
-
|
|
9930
|
-
case
|
|
9931
|
-
|
|
9932
|
-
|
|
9933
|
-
|
|
9934
|
-
|
|
9935
|
-
|
|
9936
|
-
|
|
9937
|
-
|
|
9938
|
-
|
|
9939
|
-
|
|
9940
|
-
|
|
9941
|
-
|
|
9942
|
-
|
|
9943
|
-
|
|
9944
|
-
|
|
9945
|
-
g = 14;
|
|
9946
|
-
break a;
|
|
9947
|
-
case qa:
|
|
9948
|
-
g = 16, d = null;
|
|
9949
|
-
break a;
|
|
9950
|
-
}
|
|
9951
|
-
throw Error(m(130, a == null ? a : typeof a, ""));
|
|
9582
|
+
if (d = a, typeof a == "function") Wf(a) && (g = 1);
|
|
9583
|
+
else if (typeof a == "string") g = 5;
|
|
9584
|
+
else a: switch (a) {
|
|
9585
|
+
case ha:
|
|
9586
|
+
return ue(c.children, e, f, b);
|
|
9587
|
+
case ia:
|
|
9588
|
+
g = 8, e |= 8;
|
|
9589
|
+
break;
|
|
9590
|
+
case ja:
|
|
9591
|
+
return a = td(12, c, b, e | 2), a.elementType = ja, a.lanes = f, a;
|
|
9592
|
+
case na:
|
|
9593
|
+
return a = td(13, c, b, e), a.elementType = na, a.lanes = f, a;
|
|
9594
|
+
case oa:
|
|
9595
|
+
return a = td(19, c, b, e), a.elementType = oa, a.lanes = f, a;
|
|
9596
|
+
case ra:
|
|
9597
|
+
return kg(c, e, f, b);
|
|
9598
|
+
default:
|
|
9599
|
+
if (typeof a == "object" && a !== null) switch (a.$$typeof) {
|
|
9600
|
+
case ka:
|
|
9601
|
+
g = 10;
|
|
9602
|
+
break a;
|
|
9603
|
+
case la:
|
|
9604
|
+
g = 9;
|
|
9605
|
+
break a;
|
|
9606
|
+
case ma:
|
|
9607
|
+
g = 11;
|
|
9608
|
+
break a;
|
|
9609
|
+
case pa:
|
|
9610
|
+
g = 14;
|
|
9611
|
+
break a;
|
|
9612
|
+
case qa:
|
|
9613
|
+
g = 16, d = null;
|
|
9614
|
+
break a;
|
|
9952
9615
|
}
|
|
9616
|
+
throw Error(m(130, a == null ? a : typeof a, ""));
|
|
9617
|
+
}
|
|
9953
9618
|
return b = td(g, c, b, e), b.elementType = a, b.type = d, b.lanes = f, b;
|
|
9954
9619
|
}
|
|
9955
9620
|
function ue(a, b, c, d) {
|
|
@@ -9971,12 +9636,10 @@ Error generating stack: ` + f.message + `
|
|
|
9971
9636
|
return a = new hi(a, b, c, h, k), b === 1 ? (b = 1, f === !0 && (b |= 8)) : b = 0, f = td(3, null, null, b), a.current = f, f.stateNode = a, f.memoizedState = { element: d, isDehydrated: c, cache: null, transitions: null, pendingSuspenseBoundaries: null }, Vd(f), a;
|
|
9972
9637
|
}
|
|
9973
9638
|
function ji(a) {
|
|
9974
|
-
if (!a)
|
|
9975
|
-
return jc;
|
|
9639
|
+
if (!a) return jc;
|
|
9976
9640
|
a = a._reactInternals;
|
|
9977
9641
|
a: {
|
|
9978
|
-
if (wa(a) !== a || a.tag !== 1)
|
|
9979
|
-
throw Error(m(170));
|
|
9642
|
+
if (wa(a) !== a || a.tag !== 1) throw Error(m(170));
|
|
9980
9643
|
var b = a;
|
|
9981
9644
|
do {
|
|
9982
9645
|
switch (b.tag) {
|
|
@@ -9995,8 +9658,7 @@ Error generating stack: ` + f.message + `
|
|
|
9995
9658
|
}
|
|
9996
9659
|
if (a.tag === 1) {
|
|
9997
9660
|
var c = a.type;
|
|
9998
|
-
if (A(c))
|
|
9999
|
-
return oc(a, c, b);
|
|
9661
|
+
if (A(c)) return oc(a, c, b);
|
|
10000
9662
|
}
|
|
10001
9663
|
return b;
|
|
10002
9664
|
}
|
|
@@ -10106,29 +9768,26 @@ Error generating stack: ` + f.message + `
|
|
|
10106
9768
|
C = f, W.transition = g, H === 0 && Ch();
|
|
10107
9769
|
}
|
|
10108
9770
|
}, exports.findAllNodes = sh, exports.findBoundingRects = function(a, b) {
|
|
10109
|
-
if (!bb)
|
|
10110
|
-
throw Error(m(363));
|
|
9771
|
+
if (!bb) throw Error(m(363));
|
|
10111
9772
|
b = sh(a, b), a = [];
|
|
10112
|
-
for (var c = 0; c < b.length; c++)
|
|
10113
|
-
a.push(db(b[c]));
|
|
9773
|
+
for (var c = 0; c < b.length; c++) a.push(db(b[c]));
|
|
10114
9774
|
for (b = a.length - 1; 0 < b; b--) {
|
|
10115
9775
|
c = a[b];
|
|
10116
|
-
for (var d = c.x, e = d + c.width, f = c.y, g = f + c.height, h = b - 1; 0 <= h; h--)
|
|
10117
|
-
|
|
10118
|
-
|
|
10119
|
-
|
|
10120
|
-
|
|
10121
|
-
|
|
10122
|
-
|
|
10123
|
-
|
|
10124
|
-
l > d && (k.width += l - d, k.x = d), n < e && (k.width = e - l), a.splice(b, 1);
|
|
10125
|
-
break;
|
|
10126
|
-
}
|
|
10127
|
-
} else {
|
|
10128
|
-
t > f && (k.height += t - f, k.y = f), p < g && (k.height = g - t), a.splice(b, 1);
|
|
9776
|
+
for (var d = c.x, e = d + c.width, f = c.y, g = f + c.height, h = b - 1; 0 <= h; h--) if (b !== h) {
|
|
9777
|
+
var k = a[h], l = k.x, n = l + k.width, t = k.y, p = t + k.height;
|
|
9778
|
+
if (d >= l && f >= t && e <= n && g <= p) {
|
|
9779
|
+
a.splice(b, 1);
|
|
9780
|
+
break;
|
|
9781
|
+
} else if (d !== l || c.width !== k.width || p < f || t > g) {
|
|
9782
|
+
if (!(f !== t || c.height !== k.height || n < d || l > e)) {
|
|
9783
|
+
l > d && (k.width += l - d, k.x = d), n < e && (k.width = e - l), a.splice(b, 1);
|
|
10129
9784
|
break;
|
|
10130
9785
|
}
|
|
9786
|
+
} else {
|
|
9787
|
+
t > f && (k.height += t - f, k.y = f), p < g && (k.height = g - t), a.splice(b, 1);
|
|
9788
|
+
break;
|
|
10131
9789
|
}
|
|
9790
|
+
}
|
|
10132
9791
|
}
|
|
10133
9792
|
return a;
|
|
10134
9793
|
}, exports.findHostInstance = ki, exports.findHostInstanceWithNoPortals = function(a) {
|
|
@@ -10145,34 +9804,27 @@ Error generating stack: ` + f.message + `
|
|
|
10145
9804
|
C = d, W.transition = c, H = b, H === 0 && (Ch(), ad());
|
|
10146
9805
|
}
|
|
10147
9806
|
}, exports.flushPassiveEffects = Ph, exports.flushSync = Yh, exports.focusWithin = function(a, b) {
|
|
10148
|
-
if (!bb)
|
|
10149
|
-
throw Error(m(363));
|
|
9807
|
+
if (!bb) throw Error(m(363));
|
|
10150
9808
|
for (a = oh(a), b = rh(a, b), b = Array.from(b), a = 0; a < b.length; ) {
|
|
10151
9809
|
var c = b[a++];
|
|
10152
9810
|
if (!fb(c)) {
|
|
10153
|
-
if (c.tag === 5 && hb(c.stateNode))
|
|
10154
|
-
|
|
10155
|
-
for (c = c.child; c !== null; )
|
|
10156
|
-
b.push(c), c = c.sibling;
|
|
9811
|
+
if (c.tag === 5 && hb(c.stateNode)) return !0;
|
|
9812
|
+
for (c = c.child; c !== null; ) b.push(c), c = c.sibling;
|
|
10157
9813
|
}
|
|
10158
9814
|
}
|
|
10159
9815
|
return !1;
|
|
10160
9816
|
}, exports.getCurrentUpdatePriority = function() {
|
|
10161
9817
|
return C;
|
|
10162
9818
|
}, exports.getFindAllNodesFailureDescription = function(a, b) {
|
|
10163
|
-
if (!bb)
|
|
10164
|
-
throw Error(m(363));
|
|
9819
|
+
if (!bb) throw Error(m(363));
|
|
10165
9820
|
var c = 0, d = [];
|
|
10166
9821
|
a = [oh(a), 0];
|
|
10167
9822
|
for (var e = 0; e < a.length; ) {
|
|
10168
9823
|
var f = a[e++], g = a[e++], h = b[g];
|
|
10169
|
-
if ((f.tag !== 5 || !fb(f)) && (ph(f, h) && (d.push(qh(h)), g++, g > c && (c = g)), g < b.length))
|
|
10170
|
-
for (f = f.child; f !== null; )
|
|
10171
|
-
a.push(f, g), f = f.sibling;
|
|
9824
|
+
if ((f.tag !== 5 || !fb(f)) && (ph(f, h) && (d.push(qh(h)), g++, g > c && (c = g)), g < b.length)) for (f = f.child; f !== null; ) a.push(f, g), f = f.sibling;
|
|
10172
9825
|
}
|
|
10173
9826
|
if (c < b.length) {
|
|
10174
|
-
for (a = []; c < b.length; c++)
|
|
10175
|
-
a.push(qh(b[c]));
|
|
9827
|
+
for (a = []; c < b.length; c++) a.push(qh(b[c]));
|
|
10176
9828
|
return `findAllNodes was able to match part of the selector:
|
|
10177
9829
|
` + (d.join(" > ") + `
|
|
10178
9830
|
|
|
@@ -10181,8 +9833,7 @@ No matching component was found for:
|
|
|
10181
9833
|
}
|
|
10182
9834
|
return null;
|
|
10183
9835
|
}, exports.getPublicRootInstance = function(a) {
|
|
10184
|
-
if (a = a.current, !a.child)
|
|
10185
|
-
return null;
|
|
9836
|
+
if (a = a.current, !a.child) return null;
|
|
10186
9837
|
switch (a.child.tag) {
|
|
10187
9838
|
case 5:
|
|
10188
9839
|
return Ea(a.child.stateNode);
|
|
@@ -10190,12 +9841,10 @@ No matching component was found for:
|
|
|
10190
9841
|
return a.child.stateNode;
|
|
10191
9842
|
}
|
|
10192
9843
|
}, exports.injectIntoDevTools = function(a) {
|
|
10193
|
-
if (a = { bundleType: a.bundleType, version: a.version, rendererPackageName: a.rendererPackageName, rendererConfig: a.rendererConfig, overrideHookState: null, overrideHookStateDeletePath: null, overrideHookStateRenamePath: null, overrideProps: null, overridePropsDeletePath: null, overridePropsRenamePath: null, setErrorHandler: null, setSuspenseHandler: null, scheduleUpdate: null, currentDispatcherRef: da.ReactCurrentDispatcher, findHostInstanceByFiber: ni, findFiberByHostInstance: a.findFiberByHostInstance || oi, findHostInstancesForRefresh: null, scheduleRefresh: null, scheduleRoot: null, setRefreshHandler: null, getCurrentFiber: null, reconcilerVersion: "18.2.0" }, typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ > "u")
|
|
10194
|
-
a = !1;
|
|
9844
|
+
if (a = { bundleType: a.bundleType, version: a.version, rendererPackageName: a.rendererPackageName, rendererConfig: a.rendererConfig, overrideHookState: null, overrideHookStateDeletePath: null, overrideHookStateRenamePath: null, overrideProps: null, overridePropsDeletePath: null, overridePropsRenamePath: null, setErrorHandler: null, setSuspenseHandler: null, scheduleUpdate: null, currentDispatcherRef: da.ReactCurrentDispatcher, findHostInstanceByFiber: ni, findFiberByHostInstance: a.findFiberByHostInstance || oi, findHostInstancesForRefresh: null, scheduleRefresh: null, scheduleRoot: null, setRefreshHandler: null, getCurrentFiber: null, reconcilerVersion: "18.2.0" }, typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ > "u") a = !1;
|
|
10195
9845
|
else {
|
|
10196
9846
|
var b = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
10197
|
-
if (b.isDisabled || !b.supportsFiber)
|
|
10198
|
-
a = !0;
|
|
9847
|
+
if (b.isDisabled || !b.supportsFiber) a = !0;
|
|
10199
9848
|
else {
|
|
10200
9849
|
try {
|
|
10201
9850
|
Rc = b.inject(a), Sc = b;
|
|
@@ -10208,8 +9857,7 @@ No matching component was found for:
|
|
|
10208
9857
|
}, exports.isAlreadyRendering = function() {
|
|
10209
9858
|
return !1;
|
|
10210
9859
|
}, exports.observeVisibleRects = function(a, b, c, d) {
|
|
10211
|
-
if (!bb)
|
|
10212
|
-
throw Error(m(363));
|
|
9860
|
+
if (!bb) throw Error(m(363));
|
|
10213
9861
|
a = sh(a, b);
|
|
10214
9862
|
var e = ib(a, c, d).disconnect;
|
|
10215
9863
|
return { disconnect: function() {
|
|
@@ -13077,8 +12725,7 @@ const isSelfAtom = (atom2, a) => atom2.unstable_is ? atom2.unstable_is(a) : a ==
|
|
|
13077
12725
|
mounted && atomState.d !== prevAtomState?.d && mountDependencies(atom2, atomState, prevAtomState?.d), mounted && !// TODO This seems pretty hacky. Hope to fix it.
|
|
13078
12726
|
// Maybe we could `mountDependencies` in `setAtomState`?
|
|
13079
12727
|
(!hasPromiseAtomValue(prevAtomState) && (isEqualAtomValue(prevAtomState, atomState) || isEqualAtomError(prevAtomState, atomState))) && (mounted.l.forEach((listener) => listener()), (define_import_meta_env_default$1 ? "production" : void 0) !== "production" && flushed.add(atom2));
|
|
13080
|
-
} else
|
|
13081
|
-
(define_import_meta_env_default$1 ? "production" : void 0) !== "production" && console.warn("[Bug] no atom state to flush");
|
|
12728
|
+
} else (define_import_meta_env_default$1 ? "production" : void 0) !== "production" && console.warn("[Bug] no atom state to flush");
|
|
13082
12729
|
});
|
|
13083
12730
|
}
|
|
13084
12731
|
if ((define_import_meta_env_default$1 ? "production" : void 0) !== "production")
|
|
@@ -13424,13 +13071,11 @@ function computeRubberband(bounds, [Vx, Vy], [Rx, Ry]) {
|
|
|
13424
13071
|
return [rubberbandIfOutOfBounds(Vx, X0, X1, Rx), rubberbandIfOutOfBounds(Vy, Y0, Y1, Ry)];
|
|
13425
13072
|
}
|
|
13426
13073
|
function _toPrimitive(input, hint) {
|
|
13427
|
-
if (typeof input != "object" || input === null)
|
|
13428
|
-
return input;
|
|
13074
|
+
if (typeof input != "object" || input === null) return input;
|
|
13429
13075
|
var prim = input[Symbol.toPrimitive];
|
|
13430
13076
|
if (prim !== void 0) {
|
|
13431
13077
|
var res = prim.call(input, hint || "default");
|
|
13432
|
-
if (typeof res != "object")
|
|
13433
|
-
return res;
|
|
13078
|
+
if (typeof res != "object") return res;
|
|
13434
13079
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
13435
13080
|
}
|
|
13436
13081
|
return (hint === "string" ? String : Number)(input);
|
|
@@ -13672,8 +13317,7 @@ class Engine {
|
|
|
13672
13317
|
_step,
|
|
13673
13318
|
values
|
|
13674
13319
|
} = state;
|
|
13675
|
-
if (config2.hasCustomTransform ? (_step[0] === !1 && (_step[0] = Math.abs(_m0) >= t0 && values[0]), _step[1] === !1 && (_step[1] = Math.abs(_m1) >= t1 && values[1])) : (_step[0] === !1 && (_step[0] = Math.abs(_m0) >= t0 && Math.sign(_m0) * t0), _step[1] === !1 && (_step[1] = Math.abs(_m1) >= t1 && Math.sign(_m1) * t1)), state.intentional = _step[0] !== !1 || _step[1] !== !1, !state.intentional)
|
|
13676
|
-
return;
|
|
13320
|
+
if (config2.hasCustomTransform ? (_step[0] === !1 && (_step[0] = Math.abs(_m0) >= t0 && values[0]), _step[1] === !1 && (_step[1] = Math.abs(_m1) >= t1 && values[1])) : (_step[0] === !1 && (_step[0] = Math.abs(_m0) >= t0 && Math.sign(_m0) * t0), _step[1] === !1 && (_step[1] = Math.abs(_m1) >= t1 && Math.sign(_m1) * t1)), state.intentional = _step[0] !== !1 || _step[1] !== !1, !state.intentional) return;
|
|
13677
13321
|
const movement = [0, 0];
|
|
13678
13322
|
if (config2.hasCustomTransform) {
|
|
13679
13323
|
const [v0, v1] = values;
|
|
@@ -13694,8 +13338,7 @@ class Engine {
|
|
|
13694
13338
|
}
|
|
13695
13339
|
emit() {
|
|
13696
13340
|
const state = this.state, shared = this.shared, config2 = this.config;
|
|
13697
|
-
if (state._active || this.clean(), (state._blocked || !state.intentional) && !state._force && !config2.triggerAllEvents)
|
|
13698
|
-
return;
|
|
13341
|
+
if (state._active || this.clean(), (state._blocked || !state.intentional) && !state._force && !config2.triggerAllEvents) return;
|
|
13699
13342
|
const memo = this.handler(_objectSpread2(_objectSpread2(_objectSpread2({}, shared), state), {}, {
|
|
13700
13343
|
[this.aliasKey]: state.values
|
|
13701
13344
|
}));
|
|
@@ -13772,10 +13415,8 @@ const identity = (v) => v, DEFAULT_RUBBERBAND = 0.15, commonConfigResolver = {
|
|
|
13772
13415
|
}
|
|
13773
13416
|
},
|
|
13774
13417
|
from(value) {
|
|
13775
|
-
if (typeof value == "function")
|
|
13776
|
-
|
|
13777
|
-
if (value != null)
|
|
13778
|
-
return V.toVector(value);
|
|
13418
|
+
if (typeof value == "function") return value;
|
|
13419
|
+
if (value != null) return V.toVector(value);
|
|
13779
13420
|
},
|
|
13780
13421
|
transform(value, _k, config2) {
|
|
13781
13422
|
const transform = value || config2.shared.transform;
|
|
@@ -13788,8 +13429,7 @@ const identity = (v) => v, DEFAULT_RUBBERBAND = 0.15, commonConfigResolver = {
|
|
|
13788
13429
|
axis(_v, _k, {
|
|
13789
13430
|
axis
|
|
13790
13431
|
}) {
|
|
13791
|
-
if (this.lockDirection = axis === "lock", !this.lockDirection)
|
|
13792
|
-
return axis;
|
|
13432
|
+
if (this.lockDirection = axis === "lock", !this.lockDirection) return axis;
|
|
13793
13433
|
},
|
|
13794
13434
|
axisThreshold(value = DEFAULT_AXIS_THRESHOLD) {
|
|
13795
13435
|
return value;
|
|
@@ -13850,8 +13490,7 @@ class DragEngine extends CoordinatesEngine {
|
|
|
13850
13490
|
}
|
|
13851
13491
|
pointerDown(event) {
|
|
13852
13492
|
const config2 = this.config, state = this.state;
|
|
13853
|
-
if (event.buttons != null && (Array.isArray(config2.pointerButtons) ? !config2.pointerButtons.includes(event.buttons) : config2.pointerButtons !== -1 && config2.pointerButtons !== event.buttons))
|
|
13854
|
-
return;
|
|
13493
|
+
if (event.buttons != null && (Array.isArray(config2.pointerButtons) ? !config2.pointerButtons.includes(event.buttons) : config2.pointerButtons !== -1 && config2.pointerButtons !== event.buttons)) return;
|
|
13855
13494
|
const ctrlIds = this.ctrl.setEventIds(event);
|
|
13856
13495
|
config2.pointerCapture && event.target.setPointerCapture(event.pointerId), !(ctrlIds && ctrlIds.size > 1 && state._pointerActive) && (this.start(event), this.setupPointer(event), state._pointerId = pointerId(event), state._pointerActive = !0, this.computeValues(pointerValues(event)), this.computeInitial(), config2.preventScrollAxis && getPointerType(event) !== "mouse" ? (state._active = !1, this.setupScrollPrevention(event)) : config2.delay > 0 ? (this.setupDelayTrigger(event), config2.triggerAllEvents && (this.compute(event), this.emit())) : this.startPointerDrag(event));
|
|
13857
13496
|
}
|
|
@@ -13861,11 +13500,9 @@ class DragEngine extends CoordinatesEngine {
|
|
|
13861
13500
|
}
|
|
13862
13501
|
pointerMove(event) {
|
|
13863
13502
|
const state = this.state, config2 = this.config;
|
|
13864
|
-
if (!state._pointerActive)
|
|
13865
|
-
return;
|
|
13503
|
+
if (!state._pointerActive) return;
|
|
13866
13504
|
const id = pointerId(event);
|
|
13867
|
-
if (state._pointerId !== void 0 && id !== state._pointerId)
|
|
13868
|
-
return;
|
|
13505
|
+
if (state._pointerId !== void 0 && id !== state._pointerId) return;
|
|
13869
13506
|
const _values = pointerValues(event);
|
|
13870
13507
|
if (document.pointerLockElement === event.target ? state._delta = [event.movementX, event.movementY] : (state._delta = V.sub(_values, state._values), this.computeValues(_values)), V.addTo(state._movement, state._delta), this.compute(event), state._delayed && state.intentional) {
|
|
13871
13508
|
this.timeoutStore.remove("dragDelay"), state.active = !1, this.startPointerDrag(event);
|
|
@@ -13891,11 +13528,9 @@ class DragEngine extends CoordinatesEngine {
|
|
|
13891
13528
|
} catch {
|
|
13892
13529
|
}
|
|
13893
13530
|
const state = this.state, config2 = this.config;
|
|
13894
|
-
if (!state._active || !state._pointerActive)
|
|
13895
|
-
return;
|
|
13531
|
+
if (!state._active || !state._pointerActive) return;
|
|
13896
13532
|
const id = pointerId(event);
|
|
13897
|
-
if (state._pointerId !== void 0 && id !== state._pointerId)
|
|
13898
|
-
return;
|
|
13533
|
+
if (state._pointerId !== void 0 && id !== state._pointerId) return;
|
|
13899
13534
|
this.state._pointerActive = !1, this.setActive(), this.compute(event);
|
|
13900
13535
|
const [dx, dy] = state._distance;
|
|
13901
13536
|
if (state.tap = dx <= config2.tapsThreshold && dy <= config2.tapsThreshold, state.tap && config2.filterTaps)
|
|
@@ -14098,19 +13733,16 @@ class PinchEngine extends Engine {
|
|
|
14098
13733
|
touchStart(event) {
|
|
14099
13734
|
this.ctrl.setEventIds(event);
|
|
14100
13735
|
const state = this.state, ctrlTouchIds = this.ctrl.touchIds;
|
|
14101
|
-
if (state._active && state._touchIds.every((id) => ctrlTouchIds.has(id)) || ctrlTouchIds.size < 2)
|
|
14102
|
-
return;
|
|
13736
|
+
if (state._active && state._touchIds.every((id) => ctrlTouchIds.has(id)) || ctrlTouchIds.size < 2) return;
|
|
14103
13737
|
this.start(event), state._touchIds = Array.from(ctrlTouchIds).slice(0, 2);
|
|
14104
13738
|
const payload = touchDistanceAngle(event, state._touchIds);
|
|
14105
13739
|
payload && this.pinchStart(event, payload);
|
|
14106
13740
|
}
|
|
14107
13741
|
pointerStart(event) {
|
|
14108
|
-
if (event.buttons != null && event.buttons % 2 !== 1)
|
|
14109
|
-
return;
|
|
13742
|
+
if (event.buttons != null && event.buttons % 2 !== 1) return;
|
|
14110
13743
|
this.ctrl.setEventIds(event), event.target.setPointerCapture(event.pointerId);
|
|
14111
13744
|
const state = this.state, _pointerEvents = state._pointerEvents, ctrlPointerIds = this.ctrl.pointerIds;
|
|
14112
|
-
if (state._active && Array.from(_pointerEvents.keys()).every((id) => ctrlPointerIds.has(id)) || (_pointerEvents.size < 2 && _pointerEvents.set(event.pointerId, event), state._pointerEvents.size < 2))
|
|
14113
|
-
return;
|
|
13745
|
+
if (state._active && Array.from(_pointerEvents.keys()).every((id) => ctrlPointerIds.has(id)) || (_pointerEvents.size < 2 && _pointerEvents.set(event.pointerId, event), state._pointerEvents.size < 2)) return;
|
|
14114
13746
|
this.start(event);
|
|
14115
13747
|
const payload = distanceAngle(...Array.from(_pointerEvents.values()));
|
|
14116
13748
|
payload && this.pinchStart(event, payload);
|
|
@@ -14120,15 +13752,13 @@ class PinchEngine extends Engine {
|
|
|
14120
13752
|
state.origin = payload.origin, this.computeValues([payload.distance, payload.angle]), this.computeInitial(), this.compute(event), this.emit();
|
|
14121
13753
|
}
|
|
14122
13754
|
touchMove(event) {
|
|
14123
|
-
if (!this.state._active)
|
|
14124
|
-
return;
|
|
13755
|
+
if (!this.state._active) return;
|
|
14125
13756
|
const payload = touchDistanceAngle(event, this.state._touchIds);
|
|
14126
13757
|
payload && this.pinchMove(event, payload);
|
|
14127
13758
|
}
|
|
14128
13759
|
pointerMove(event) {
|
|
14129
13760
|
const _pointerEvents = this.state._pointerEvents;
|
|
14130
|
-
if (_pointerEvents.has(event.pointerId) && _pointerEvents.set(event.pointerId, event), !this.state._active)
|
|
14131
|
-
return;
|
|
13761
|
+
if (_pointerEvents.has(event.pointerId) && _pointerEvents.set(event.pointerId, event), !this.state._active) return;
|
|
14132
13762
|
const payload = distanceAngle(...Array.from(_pointerEvents.values()));
|
|
14133
13763
|
payload && this.pinchMove(event, payload);
|
|
14134
13764
|
}
|
|
@@ -14155,8 +13785,7 @@ class PinchEngine extends Engine {
|
|
|
14155
13785
|
state._active || (this.start(event), this.computeValues([event.scale, event.rotation]), state.origin = [event.clientX, event.clientY], this.compute(event), this.emit());
|
|
14156
13786
|
}
|
|
14157
13787
|
gestureMove(event) {
|
|
14158
|
-
if (event.cancelable && event.preventDefault(), !this.state._active)
|
|
14159
|
-
return;
|
|
13788
|
+
if (event.cancelable && event.preventDefault(), !this.state._active) return;
|
|
14160
13789
|
const state = this.state;
|
|
14161
13790
|
this.computeValues([event.scale, event.rotation]), state.origin = [event.clientX, event.clientY];
|
|
14162
13791
|
const _previousMovement = state._movement;
|
|
@@ -14194,15 +13823,11 @@ const pinchConfigResolver = _objectSpread2(_objectSpread2({}, commonConfigResolv
|
|
|
14194
13823
|
touch = !1
|
|
14195
13824
|
} = {}
|
|
14196
13825
|
}) {
|
|
14197
|
-
if (shared.target && !SUPPORT.touch && SUPPORT.gesture)
|
|
14198
|
-
|
|
14199
|
-
if (SUPPORT.touch && touch)
|
|
14200
|
-
return "touch";
|
|
13826
|
+
if (shared.target && !SUPPORT.touch && SUPPORT.gesture) return "gesture";
|
|
13827
|
+
if (SUPPORT.touch && touch) return "touch";
|
|
14201
13828
|
if (SUPPORT.touchscreen) {
|
|
14202
|
-
if (SUPPORT.pointer)
|
|
14203
|
-
|
|
14204
|
-
if (SUPPORT.touch)
|
|
14205
|
-
return "touch";
|
|
13829
|
+
if (SUPPORT.pointer) return "pointer";
|
|
13830
|
+
if (SUPPORT.touch) return "touch";
|
|
14206
13831
|
}
|
|
14207
13832
|
},
|
|
14208
13833
|
bounds(_v, _k, {
|
|
@@ -14254,16 +13879,14 @@ const dragAction = {
|
|
|
14254
13879
|
resolver: pinchConfigResolver
|
|
14255
13880
|
};
|
|
14256
13881
|
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
14257
|
-
if (source == null)
|
|
14258
|
-
return {};
|
|
13882
|
+
if (source == null) return {};
|
|
14259
13883
|
var target = {}, sourceKeys = Object.keys(source), key, i;
|
|
14260
13884
|
for (i = 0; i < sourceKeys.length; i++)
|
|
14261
13885
|
key = sourceKeys[i], !(excluded.indexOf(key) >= 0) && (target[key] = source[key]);
|
|
14262
13886
|
return target;
|
|
14263
13887
|
}
|
|
14264
13888
|
function _objectWithoutProperties(source, excluded) {
|
|
14265
|
-
if (source == null)
|
|
14266
|
-
return {};
|
|
13889
|
+
if (source == null) return {};
|
|
14267
13890
|
var target = _objectWithoutPropertiesLoose(source, excluded), key, i;
|
|
14268
13891
|
if (Object.getOwnPropertySymbols) {
|
|
14269
13892
|
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
@@ -14423,8 +14046,7 @@ class Controller2 {
|
|
|
14423
14046
|
}
|
|
14424
14047
|
for (const handlerProp in props)
|
|
14425
14048
|
props[handlerProp] = chain(...props[handlerProp]);
|
|
14426
|
-
if (!target)
|
|
14427
|
-
return props;
|
|
14049
|
+
if (!target) return props;
|
|
14428
14050
|
for (const handlerProp in props) {
|
|
14429
14051
|
const {
|
|
14430
14052
|
device,
|
|
@@ -14499,8 +14121,7 @@ function Portal({ selector, enabled, children }) {
|
|
|
14499
14121
|
if (shouldMove) {
|
|
14500
14122
|
const newContainer = stage.findOne(selector);
|
|
14501
14123
|
newContainer && (safeRef.current = inner.current, inner.current.moveTo(newContainer));
|
|
14502
|
-
} else
|
|
14503
|
-
safeRef.current && (safeRef.current.moveTo(outer.current), safeRef.current = void 0);
|
|
14124
|
+
} else safeRef.current && (safeRef.current.moveTo(outer.current), safeRef.current = void 0);
|
|
14504
14125
|
}, [selector, shouldMove]), reactExports.useEffect(() => () => {
|
|
14505
14126
|
safeRef.current?.destroy();
|
|
14506
14127
|
}, []), /* @__PURE__ */ jsxRuntimeExports.jsx(Group2, { ref: outer, children: /* @__PURE__ */ jsxRuntimeExports.jsx(Group2, { ref: inner, children }) });
|