react-dom 19.1.0-canary-42687267-20250108 → 19.1.0-canary-74ea0c73-20250109
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/cjs/react-dom-client.development.js +983 -964
- package/cjs/react-dom-client.production.js +624 -607
- package/cjs/react-dom-profiling.development.js +991 -972
- package/cjs/react-dom-profiling.profiling.js +638 -619
- package/cjs/react-dom-server-legacy.browser.development.js +3 -4
- package/cjs/react-dom-server-legacy.browser.production.js +3 -4
- package/cjs/react-dom-server-legacy.node.development.js +3 -4
- package/cjs/react-dom-server-legacy.node.production.js +3 -4
- package/cjs/react-dom-server.browser.development.js +5 -6
- package/cjs/react-dom-server.browser.production.js +5 -6
- package/cjs/react-dom-server.bun.development.js +5 -6
- package/cjs/react-dom-server.bun.production.js +5 -6
- package/cjs/react-dom-server.edge.development.js +5 -6
- package/cjs/react-dom-server.edge.production.js +5 -6
- package/cjs/react-dom-server.node.development.js +5 -6
- package/cjs/react-dom-server.node.production.js +5 -6
- package/cjs/react-dom.development.js +1 -1
- package/cjs/react-dom.production.js +1 -1
- package/cjs/react-dom.react-server.development.js +1 -1
- package/cjs/react-dom.react-server.production.js +1 -1
- package/package.json +3 -3
@@ -36,274 +36,6 @@ function isValidContainer(node) {
|
|
36
36
|
(1 !== node.nodeType && 9 !== node.nodeType && 11 !== node.nodeType)
|
37
37
|
);
|
38
38
|
}
|
39
|
-
var REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
40
|
-
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
41
|
-
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
42
|
-
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
43
|
-
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
44
|
-
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
|
45
|
-
REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
|
46
|
-
REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
|
47
|
-
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
|
48
|
-
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
|
49
|
-
REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
|
50
|
-
REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
|
51
|
-
REACT_MEMO_TYPE = Symbol.for("react.memo"),
|
52
|
-
REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
53
|
-
Symbol.for("react.scope");
|
54
|
-
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
55
|
-
Symbol.for("react.legacy_hidden");
|
56
|
-
Symbol.for("react.tracing_marker");
|
57
|
-
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel"),
|
58
|
-
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
59
|
-
function getIteratorFn(maybeIterable) {
|
60
|
-
if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
|
61
|
-
maybeIterable =
|
62
|
-
(MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
|
63
|
-
maybeIterable["@@iterator"];
|
64
|
-
return "function" === typeof maybeIterable ? maybeIterable : null;
|
65
|
-
}
|
66
|
-
var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
|
67
|
-
function getComponentNameFromType(type) {
|
68
|
-
if (null == type) return null;
|
69
|
-
if ("function" === typeof type)
|
70
|
-
return type.$$typeof === REACT_CLIENT_REFERENCE
|
71
|
-
? null
|
72
|
-
: type.displayName || type.name || null;
|
73
|
-
if ("string" === typeof type) return type;
|
74
|
-
switch (type) {
|
75
|
-
case REACT_FRAGMENT_TYPE:
|
76
|
-
return "Fragment";
|
77
|
-
case REACT_PORTAL_TYPE:
|
78
|
-
return "Portal";
|
79
|
-
case REACT_PROFILER_TYPE:
|
80
|
-
return "Profiler";
|
81
|
-
case REACT_STRICT_MODE_TYPE:
|
82
|
-
return "StrictMode";
|
83
|
-
case REACT_SUSPENSE_TYPE:
|
84
|
-
return "Suspense";
|
85
|
-
case REACT_SUSPENSE_LIST_TYPE:
|
86
|
-
return "SuspenseList";
|
87
|
-
}
|
88
|
-
if ("object" === typeof type)
|
89
|
-
switch (type.$$typeof) {
|
90
|
-
case REACT_CONTEXT_TYPE:
|
91
|
-
return (type.displayName || "Context") + ".Provider";
|
92
|
-
case REACT_CONSUMER_TYPE:
|
93
|
-
return (type._context.displayName || "Context") + ".Consumer";
|
94
|
-
case REACT_FORWARD_REF_TYPE:
|
95
|
-
var innerType = type.render;
|
96
|
-
type = type.displayName;
|
97
|
-
type ||
|
98
|
-
((type = innerType.displayName || innerType.name || ""),
|
99
|
-
(type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"));
|
100
|
-
return type;
|
101
|
-
case REACT_MEMO_TYPE:
|
102
|
-
return (
|
103
|
-
(innerType = type.displayName || null),
|
104
|
-
null !== innerType
|
105
|
-
? innerType
|
106
|
-
: getComponentNameFromType(type.type) || "Memo"
|
107
|
-
);
|
108
|
-
case REACT_LAZY_TYPE:
|
109
|
-
innerType = type._payload;
|
110
|
-
type = type._init;
|
111
|
-
try {
|
112
|
-
return getComponentNameFromType(type(innerType));
|
113
|
-
} catch (x) {}
|
114
|
-
}
|
115
|
-
return null;
|
116
|
-
}
|
117
|
-
var ReactSharedInternals =
|
118
|
-
React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
119
|
-
assign = Object.assign,
|
120
|
-
prefix,
|
121
|
-
suffix;
|
122
|
-
function describeBuiltInComponentFrame(name) {
|
123
|
-
if (void 0 === prefix)
|
124
|
-
try {
|
125
|
-
throw Error();
|
126
|
-
} catch (x) {
|
127
|
-
var match = x.stack.trim().match(/\n( *(at )?)/);
|
128
|
-
prefix = (match && match[1]) || "";
|
129
|
-
suffix =
|
130
|
-
-1 < x.stack.indexOf("\n at")
|
131
|
-
? " (<anonymous>)"
|
132
|
-
: -1 < x.stack.indexOf("@")
|
133
|
-
? "@unknown:0:0"
|
134
|
-
: "";
|
135
|
-
}
|
136
|
-
return "\n" + prefix + name + suffix;
|
137
|
-
}
|
138
|
-
var reentry = !1;
|
139
|
-
function describeNativeComponentFrame(fn, construct) {
|
140
|
-
if (!fn || reentry) return "";
|
141
|
-
reentry = !0;
|
142
|
-
var previousPrepareStackTrace = Error.prepareStackTrace;
|
143
|
-
Error.prepareStackTrace = void 0;
|
144
|
-
try {
|
145
|
-
var RunInRootFrame = {
|
146
|
-
DetermineComponentFrameRoot: function () {
|
147
|
-
try {
|
148
|
-
if (construct) {
|
149
|
-
var Fake = function () {
|
150
|
-
throw Error();
|
151
|
-
};
|
152
|
-
Object.defineProperty(Fake.prototype, "props", {
|
153
|
-
set: function () {
|
154
|
-
throw Error();
|
155
|
-
}
|
156
|
-
});
|
157
|
-
if ("object" === typeof Reflect && Reflect.construct) {
|
158
|
-
try {
|
159
|
-
Reflect.construct(Fake, []);
|
160
|
-
} catch (x) {
|
161
|
-
var control = x;
|
162
|
-
}
|
163
|
-
Reflect.construct(fn, [], Fake);
|
164
|
-
} else {
|
165
|
-
try {
|
166
|
-
Fake.call();
|
167
|
-
} catch (x$0) {
|
168
|
-
control = x$0;
|
169
|
-
}
|
170
|
-
fn.call(Fake.prototype);
|
171
|
-
}
|
172
|
-
} else {
|
173
|
-
try {
|
174
|
-
throw Error();
|
175
|
-
} catch (x$1) {
|
176
|
-
control = x$1;
|
177
|
-
}
|
178
|
-
(Fake = fn()) &&
|
179
|
-
"function" === typeof Fake.catch &&
|
180
|
-
Fake.catch(function () {});
|
181
|
-
}
|
182
|
-
} catch (sample) {
|
183
|
-
if (sample && control && "string" === typeof sample.stack)
|
184
|
-
return [sample.stack, control.stack];
|
185
|
-
}
|
186
|
-
return [null, null];
|
187
|
-
}
|
188
|
-
};
|
189
|
-
RunInRootFrame.DetermineComponentFrameRoot.displayName =
|
190
|
-
"DetermineComponentFrameRoot";
|
191
|
-
var namePropDescriptor = Object.getOwnPropertyDescriptor(
|
192
|
-
RunInRootFrame.DetermineComponentFrameRoot,
|
193
|
-
"name"
|
194
|
-
);
|
195
|
-
namePropDescriptor &&
|
196
|
-
namePropDescriptor.configurable &&
|
197
|
-
Object.defineProperty(
|
198
|
-
RunInRootFrame.DetermineComponentFrameRoot,
|
199
|
-
"name",
|
200
|
-
{ value: "DetermineComponentFrameRoot" }
|
201
|
-
);
|
202
|
-
var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(),
|
203
|
-
sampleStack = _RunInRootFrame$Deter[0],
|
204
|
-
controlStack = _RunInRootFrame$Deter[1];
|
205
|
-
if (sampleStack && controlStack) {
|
206
|
-
var sampleLines = sampleStack.split("\n"),
|
207
|
-
controlLines = controlStack.split("\n");
|
208
|
-
for (
|
209
|
-
namePropDescriptor = RunInRootFrame = 0;
|
210
|
-
RunInRootFrame < sampleLines.length &&
|
211
|
-
!sampleLines[RunInRootFrame].includes("DetermineComponentFrameRoot");
|
212
|
-
|
213
|
-
)
|
214
|
-
RunInRootFrame++;
|
215
|
-
for (
|
216
|
-
;
|
217
|
-
namePropDescriptor < controlLines.length &&
|
218
|
-
!controlLines[namePropDescriptor].includes(
|
219
|
-
"DetermineComponentFrameRoot"
|
220
|
-
);
|
221
|
-
|
222
|
-
)
|
223
|
-
namePropDescriptor++;
|
224
|
-
if (
|
225
|
-
RunInRootFrame === sampleLines.length ||
|
226
|
-
namePropDescriptor === controlLines.length
|
227
|
-
)
|
228
|
-
for (
|
229
|
-
RunInRootFrame = sampleLines.length - 1,
|
230
|
-
namePropDescriptor = controlLines.length - 1;
|
231
|
-
1 <= RunInRootFrame &&
|
232
|
-
0 <= namePropDescriptor &&
|
233
|
-
sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor];
|
234
|
-
|
235
|
-
)
|
236
|
-
namePropDescriptor--;
|
237
|
-
for (
|
238
|
-
;
|
239
|
-
1 <= RunInRootFrame && 0 <= namePropDescriptor;
|
240
|
-
RunInRootFrame--, namePropDescriptor--
|
241
|
-
)
|
242
|
-
if (sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor]) {
|
243
|
-
if (1 !== RunInRootFrame || 1 !== namePropDescriptor) {
|
244
|
-
do
|
245
|
-
if (
|
246
|
-
(RunInRootFrame--,
|
247
|
-
namePropDescriptor--,
|
248
|
-
0 > namePropDescriptor ||
|
249
|
-
sampleLines[RunInRootFrame] !==
|
250
|
-
controlLines[namePropDescriptor])
|
251
|
-
) {
|
252
|
-
var frame =
|
253
|
-
"\n" +
|
254
|
-
sampleLines[RunInRootFrame].replace(" at new ", " at ");
|
255
|
-
fn.displayName &&
|
256
|
-
frame.includes("<anonymous>") &&
|
257
|
-
(frame = frame.replace("<anonymous>", fn.displayName));
|
258
|
-
return frame;
|
259
|
-
}
|
260
|
-
while (1 <= RunInRootFrame && 0 <= namePropDescriptor);
|
261
|
-
}
|
262
|
-
break;
|
263
|
-
}
|
264
|
-
}
|
265
|
-
} finally {
|
266
|
-
(reentry = !1), (Error.prepareStackTrace = previousPrepareStackTrace);
|
267
|
-
}
|
268
|
-
return (previousPrepareStackTrace = fn ? fn.displayName || fn.name : "")
|
269
|
-
? describeBuiltInComponentFrame(previousPrepareStackTrace)
|
270
|
-
: "";
|
271
|
-
}
|
272
|
-
function describeFiber(fiber) {
|
273
|
-
switch (fiber.tag) {
|
274
|
-
case 26:
|
275
|
-
case 27:
|
276
|
-
case 5:
|
277
|
-
return describeBuiltInComponentFrame(fiber.type);
|
278
|
-
case 16:
|
279
|
-
return describeBuiltInComponentFrame("Lazy");
|
280
|
-
case 13:
|
281
|
-
return describeBuiltInComponentFrame("Suspense");
|
282
|
-
case 19:
|
283
|
-
return describeBuiltInComponentFrame("SuspenseList");
|
284
|
-
case 0:
|
285
|
-
case 15:
|
286
|
-
return describeNativeComponentFrame(fiber.type, !1);
|
287
|
-
case 11:
|
288
|
-
return describeNativeComponentFrame(fiber.type.render, !1);
|
289
|
-
case 1:
|
290
|
-
return describeNativeComponentFrame(fiber.type, !0);
|
291
|
-
default:
|
292
|
-
return "";
|
293
|
-
}
|
294
|
-
}
|
295
|
-
function getStackByFiberInDevAndProd(workInProgress) {
|
296
|
-
try {
|
297
|
-
var info = "";
|
298
|
-
do
|
299
|
-
(info += describeFiber(workInProgress)),
|
300
|
-
(workInProgress = workInProgress.return);
|
301
|
-
while (workInProgress);
|
302
|
-
return info;
|
303
|
-
} catch (x) {
|
304
|
-
return "\nError generating stack: " + x.message + "\n" + x.stack;
|
305
|
-
}
|
306
|
-
}
|
307
39
|
function getNearestMountedFiber(fiber) {
|
308
40
|
var node = fiber,
|
309
41
|
nearestMounted = fiber;
|
@@ -361,36 +93,36 @@ function findCurrentFiberUsingSlowPath(fiber) {
|
|
361
93
|
}
|
362
94
|
if (a.return !== b.return) (a = parentA), (b = parentB);
|
363
95
|
else {
|
364
|
-
for (var didFindChild = !1, child$
|
365
|
-
if (child$
|
96
|
+
for (var didFindChild = !1, child$0 = parentA.child; child$0; ) {
|
97
|
+
if (child$0 === a) {
|
366
98
|
didFindChild = !0;
|
367
99
|
a = parentA;
|
368
100
|
b = parentB;
|
369
101
|
break;
|
370
102
|
}
|
371
|
-
if (child$
|
103
|
+
if (child$0 === b) {
|
372
104
|
didFindChild = !0;
|
373
105
|
b = parentA;
|
374
106
|
a = parentB;
|
375
107
|
break;
|
376
108
|
}
|
377
|
-
child$
|
109
|
+
child$0 = child$0.sibling;
|
378
110
|
}
|
379
111
|
if (!didFindChild) {
|
380
|
-
for (child$
|
381
|
-
if (child$
|
112
|
+
for (child$0 = parentB.child; child$0; ) {
|
113
|
+
if (child$0 === a) {
|
382
114
|
didFindChild = !0;
|
383
115
|
a = parentB;
|
384
116
|
b = parentA;
|
385
117
|
break;
|
386
118
|
}
|
387
|
-
if (child$
|
119
|
+
if (child$0 === b) {
|
388
120
|
didFindChild = !0;
|
389
121
|
b = parentB;
|
390
122
|
a = parentA;
|
391
123
|
break;
|
392
124
|
}
|
393
|
-
child$
|
125
|
+
child$0 = child$0.sibling;
|
394
126
|
}
|
395
127
|
if (!didFindChild) throw Error(formatProdErrorMessage(189));
|
396
128
|
}
|
@@ -410,7 +142,89 @@ function findCurrentHostFiberImpl(node) {
|
|
410
142
|
}
|
411
143
|
return null;
|
412
144
|
}
|
145
|
+
var assign = Object.assign,
|
146
|
+
REACT_LEGACY_ELEMENT_TYPE = Symbol.for("react.element"),
|
147
|
+
REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
|
148
|
+
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
|
149
|
+
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
|
150
|
+
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
|
151
|
+
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
|
152
|
+
REACT_PROVIDER_TYPE = Symbol.for("react.provider"),
|
153
|
+
REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
|
154
|
+
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
|
155
|
+
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
|
156
|
+
REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
|
157
|
+
REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
|
158
|
+
REACT_MEMO_TYPE = Symbol.for("react.memo"),
|
159
|
+
REACT_LAZY_TYPE = Symbol.for("react.lazy");
|
160
|
+
Symbol.for("react.scope");
|
161
|
+
var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
|
162
|
+
Symbol.for("react.legacy_hidden");
|
163
|
+
Symbol.for("react.tracing_marker");
|
164
|
+
var REACT_MEMO_CACHE_SENTINEL = Symbol.for("react.memo_cache_sentinel");
|
165
|
+
Symbol.for("react.view_transition");
|
166
|
+
var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
|
167
|
+
function getIteratorFn(maybeIterable) {
|
168
|
+
if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
|
169
|
+
maybeIterable =
|
170
|
+
(MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
|
171
|
+
maybeIterable["@@iterator"];
|
172
|
+
return "function" === typeof maybeIterable ? maybeIterable : null;
|
173
|
+
}
|
174
|
+
var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference");
|
175
|
+
function getComponentNameFromType(type) {
|
176
|
+
if (null == type) return null;
|
177
|
+
if ("function" === typeof type)
|
178
|
+
return type.$$typeof === REACT_CLIENT_REFERENCE
|
179
|
+
? null
|
180
|
+
: type.displayName || type.name || null;
|
181
|
+
if ("string" === typeof type) return type;
|
182
|
+
switch (type) {
|
183
|
+
case REACT_FRAGMENT_TYPE:
|
184
|
+
return "Fragment";
|
185
|
+
case REACT_PORTAL_TYPE:
|
186
|
+
return "Portal";
|
187
|
+
case REACT_PROFILER_TYPE:
|
188
|
+
return "Profiler";
|
189
|
+
case REACT_STRICT_MODE_TYPE:
|
190
|
+
return "StrictMode";
|
191
|
+
case REACT_SUSPENSE_TYPE:
|
192
|
+
return "Suspense";
|
193
|
+
case REACT_SUSPENSE_LIST_TYPE:
|
194
|
+
return "SuspenseList";
|
195
|
+
}
|
196
|
+
if ("object" === typeof type)
|
197
|
+
switch (type.$$typeof) {
|
198
|
+
case REACT_CONTEXT_TYPE:
|
199
|
+
return (type.displayName || "Context") + ".Provider";
|
200
|
+
case REACT_CONSUMER_TYPE:
|
201
|
+
return (type._context.displayName || "Context") + ".Consumer";
|
202
|
+
case REACT_FORWARD_REF_TYPE:
|
203
|
+
var innerType = type.render;
|
204
|
+
type = type.displayName;
|
205
|
+
type ||
|
206
|
+
((type = innerType.displayName || innerType.name || ""),
|
207
|
+
(type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"));
|
208
|
+
return type;
|
209
|
+
case REACT_MEMO_TYPE:
|
210
|
+
return (
|
211
|
+
(innerType = type.displayName || null),
|
212
|
+
null !== innerType
|
213
|
+
? innerType
|
214
|
+
: getComponentNameFromType(type.type) || "Memo"
|
215
|
+
);
|
216
|
+
case REACT_LAZY_TYPE:
|
217
|
+
innerType = type._payload;
|
218
|
+
type = type._init;
|
219
|
+
try {
|
220
|
+
return getComponentNameFromType(type(innerType));
|
221
|
+
} catch (x) {}
|
222
|
+
}
|
223
|
+
return null;
|
224
|
+
}
|
413
225
|
var isArrayImpl = Array.isArray,
|
226
|
+
ReactSharedInternals =
|
227
|
+
React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
414
228
|
ReactDOMSharedInternals =
|
415
229
|
ReactDOM.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE,
|
416
230
|
sharedNotPendingObject = {
|
@@ -714,18 +528,18 @@ function markRootFinished(
|
|
714
528
|
0 < remainingLanes;
|
715
529
|
|
716
530
|
) {
|
717
|
-
var index$
|
718
|
-
lane = 1 << index$
|
719
|
-
entanglements[index$
|
720
|
-
expirationTimes[index$
|
721
|
-
var hiddenUpdatesForLane = hiddenUpdates[index$
|
531
|
+
var index$5 = 31 - clz32(remainingLanes),
|
532
|
+
lane = 1 << index$5;
|
533
|
+
entanglements[index$5] = 0;
|
534
|
+
expirationTimes[index$5] = -1;
|
535
|
+
var hiddenUpdatesForLane = hiddenUpdates[index$5];
|
722
536
|
if (null !== hiddenUpdatesForLane)
|
723
537
|
for (
|
724
|
-
hiddenUpdates[index$
|
725
|
-
index$
|
726
|
-
index$
|
538
|
+
hiddenUpdates[index$5] = null, index$5 = 0;
|
539
|
+
index$5 < hiddenUpdatesForLane.length;
|
540
|
+
index$5++
|
727
541
|
) {
|
728
|
-
var update = hiddenUpdatesForLane[index$
|
542
|
+
var update = hiddenUpdatesForLane[index$5];
|
729
543
|
null !== update && (update.lane &= -536870913);
|
730
544
|
}
|
731
545
|
remainingLanes &= ~lane;
|
@@ -750,10 +564,10 @@ function markSpawnedDeferredLane(root, spawnedLane, entangledLanes) {
|
|
750
564
|
function markRootEntangled(root, entangledLanes) {
|
751
565
|
var rootEntangledLanes = (root.entangledLanes |= entangledLanes);
|
752
566
|
for (root = root.entanglements; rootEntangledLanes; ) {
|
753
|
-
var index$
|
754
|
-
lane = 1 << index$
|
755
|
-
(lane & entangledLanes) | (root[index$
|
756
|
-
(root[index$
|
567
|
+
var index$6 = 31 - clz32(rootEntangledLanes),
|
568
|
+
lane = 1 << index$6;
|
569
|
+
(lane & entangledLanes) | (root[index$6] & entangledLanes) &&
|
570
|
+
(root[index$6] |= entangledLanes);
|
757
571
|
rootEntangledLanes &= ~lane;
|
758
572
|
}
|
759
573
|
}
|
@@ -938,8 +752,8 @@ function setValueForAttribute(node, name, value) {
|
|
938
752
|
node.removeAttribute(name);
|
939
753
|
return;
|
940
754
|
case "boolean":
|
941
|
-
var prefix$
|
942
|
-
if ("data-" !== prefix$
|
755
|
+
var prefix$8 = name.toLowerCase().slice(0, 5);
|
756
|
+
if ("data-" !== prefix$8 && "aria-" !== prefix$8) {
|
943
757
|
node.removeAttribute(name);
|
944
758
|
return;
|
945
759
|
}
|
@@ -958,21 +772,207 @@ function setValueForKnownAttribute(node, name, value) {
|
|
958
772
|
node.removeAttribute(name);
|
959
773
|
return;
|
960
774
|
}
|
961
|
-
node.setAttribute(name, "" + value);
|
775
|
+
node.setAttribute(name, "" + value);
|
776
|
+
}
|
777
|
+
}
|
778
|
+
function setValueForNamespacedAttribute(node, namespace, name, value) {
|
779
|
+
if (null === value) node.removeAttribute(name);
|
780
|
+
else {
|
781
|
+
switch (typeof value) {
|
782
|
+
case "undefined":
|
783
|
+
case "function":
|
784
|
+
case "symbol":
|
785
|
+
case "boolean":
|
786
|
+
node.removeAttribute(name);
|
787
|
+
return;
|
788
|
+
}
|
789
|
+
node.setAttributeNS(namespace, name, "" + value);
|
790
|
+
}
|
791
|
+
}
|
792
|
+
var prefix, suffix;
|
793
|
+
function describeBuiltInComponentFrame(name) {
|
794
|
+
if (void 0 === prefix)
|
795
|
+
try {
|
796
|
+
throw Error();
|
797
|
+
} catch (x) {
|
798
|
+
var match = x.stack.trim().match(/\n( *(at )?)/);
|
799
|
+
prefix = (match && match[1]) || "";
|
800
|
+
suffix =
|
801
|
+
-1 < x.stack.indexOf("\n at")
|
802
|
+
? " (<anonymous>)"
|
803
|
+
: -1 < x.stack.indexOf("@")
|
804
|
+
? "@unknown:0:0"
|
805
|
+
: "";
|
806
|
+
}
|
807
|
+
return "\n" + prefix + name + suffix;
|
808
|
+
}
|
809
|
+
var reentry = !1;
|
810
|
+
function describeNativeComponentFrame(fn, construct) {
|
811
|
+
if (!fn || reentry) return "";
|
812
|
+
reentry = !0;
|
813
|
+
var previousPrepareStackTrace = Error.prepareStackTrace;
|
814
|
+
Error.prepareStackTrace = void 0;
|
815
|
+
try {
|
816
|
+
var RunInRootFrame = {
|
817
|
+
DetermineComponentFrameRoot: function () {
|
818
|
+
try {
|
819
|
+
if (construct) {
|
820
|
+
var Fake = function () {
|
821
|
+
throw Error();
|
822
|
+
};
|
823
|
+
Object.defineProperty(Fake.prototype, "props", {
|
824
|
+
set: function () {
|
825
|
+
throw Error();
|
826
|
+
}
|
827
|
+
});
|
828
|
+
if ("object" === typeof Reflect && Reflect.construct) {
|
829
|
+
try {
|
830
|
+
Reflect.construct(Fake, []);
|
831
|
+
} catch (x) {
|
832
|
+
var control = x;
|
833
|
+
}
|
834
|
+
Reflect.construct(fn, [], Fake);
|
835
|
+
} else {
|
836
|
+
try {
|
837
|
+
Fake.call();
|
838
|
+
} catch (x$9) {
|
839
|
+
control = x$9;
|
840
|
+
}
|
841
|
+
fn.call(Fake.prototype);
|
842
|
+
}
|
843
|
+
} else {
|
844
|
+
try {
|
845
|
+
throw Error();
|
846
|
+
} catch (x$10) {
|
847
|
+
control = x$10;
|
848
|
+
}
|
849
|
+
(Fake = fn()) &&
|
850
|
+
"function" === typeof Fake.catch &&
|
851
|
+
Fake.catch(function () {});
|
852
|
+
}
|
853
|
+
} catch (sample) {
|
854
|
+
if (sample && control && "string" === typeof sample.stack)
|
855
|
+
return [sample.stack, control.stack];
|
856
|
+
}
|
857
|
+
return [null, null];
|
858
|
+
}
|
859
|
+
};
|
860
|
+
RunInRootFrame.DetermineComponentFrameRoot.displayName =
|
861
|
+
"DetermineComponentFrameRoot";
|
862
|
+
var namePropDescriptor = Object.getOwnPropertyDescriptor(
|
863
|
+
RunInRootFrame.DetermineComponentFrameRoot,
|
864
|
+
"name"
|
865
|
+
);
|
866
|
+
namePropDescriptor &&
|
867
|
+
namePropDescriptor.configurable &&
|
868
|
+
Object.defineProperty(
|
869
|
+
RunInRootFrame.DetermineComponentFrameRoot,
|
870
|
+
"name",
|
871
|
+
{ value: "DetermineComponentFrameRoot" }
|
872
|
+
);
|
873
|
+
var _RunInRootFrame$Deter = RunInRootFrame.DetermineComponentFrameRoot(),
|
874
|
+
sampleStack = _RunInRootFrame$Deter[0],
|
875
|
+
controlStack = _RunInRootFrame$Deter[1];
|
876
|
+
if (sampleStack && controlStack) {
|
877
|
+
var sampleLines = sampleStack.split("\n"),
|
878
|
+
controlLines = controlStack.split("\n");
|
879
|
+
for (
|
880
|
+
namePropDescriptor = RunInRootFrame = 0;
|
881
|
+
RunInRootFrame < sampleLines.length &&
|
882
|
+
!sampleLines[RunInRootFrame].includes("DetermineComponentFrameRoot");
|
883
|
+
|
884
|
+
)
|
885
|
+
RunInRootFrame++;
|
886
|
+
for (
|
887
|
+
;
|
888
|
+
namePropDescriptor < controlLines.length &&
|
889
|
+
!controlLines[namePropDescriptor].includes(
|
890
|
+
"DetermineComponentFrameRoot"
|
891
|
+
);
|
892
|
+
|
893
|
+
)
|
894
|
+
namePropDescriptor++;
|
895
|
+
if (
|
896
|
+
RunInRootFrame === sampleLines.length ||
|
897
|
+
namePropDescriptor === controlLines.length
|
898
|
+
)
|
899
|
+
for (
|
900
|
+
RunInRootFrame = sampleLines.length - 1,
|
901
|
+
namePropDescriptor = controlLines.length - 1;
|
902
|
+
1 <= RunInRootFrame &&
|
903
|
+
0 <= namePropDescriptor &&
|
904
|
+
sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor];
|
905
|
+
|
906
|
+
)
|
907
|
+
namePropDescriptor--;
|
908
|
+
for (
|
909
|
+
;
|
910
|
+
1 <= RunInRootFrame && 0 <= namePropDescriptor;
|
911
|
+
RunInRootFrame--, namePropDescriptor--
|
912
|
+
)
|
913
|
+
if (sampleLines[RunInRootFrame] !== controlLines[namePropDescriptor]) {
|
914
|
+
if (1 !== RunInRootFrame || 1 !== namePropDescriptor) {
|
915
|
+
do
|
916
|
+
if (
|
917
|
+
(RunInRootFrame--,
|
918
|
+
namePropDescriptor--,
|
919
|
+
0 > namePropDescriptor ||
|
920
|
+
sampleLines[RunInRootFrame] !==
|
921
|
+
controlLines[namePropDescriptor])
|
922
|
+
) {
|
923
|
+
var frame =
|
924
|
+
"\n" +
|
925
|
+
sampleLines[RunInRootFrame].replace(" at new ", " at ");
|
926
|
+
fn.displayName &&
|
927
|
+
frame.includes("<anonymous>") &&
|
928
|
+
(frame = frame.replace("<anonymous>", fn.displayName));
|
929
|
+
return frame;
|
930
|
+
}
|
931
|
+
while (1 <= RunInRootFrame && 0 <= namePropDescriptor);
|
932
|
+
}
|
933
|
+
break;
|
934
|
+
}
|
935
|
+
}
|
936
|
+
} finally {
|
937
|
+
(reentry = !1), (Error.prepareStackTrace = previousPrepareStackTrace);
|
962
938
|
}
|
939
|
+
return (previousPrepareStackTrace = fn ? fn.displayName || fn.name : "")
|
940
|
+
? describeBuiltInComponentFrame(previousPrepareStackTrace)
|
941
|
+
: "";
|
963
942
|
}
|
964
|
-
function
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
943
|
+
function describeFiber(fiber) {
|
944
|
+
switch (fiber.tag) {
|
945
|
+
case 26:
|
946
|
+
case 27:
|
947
|
+
case 5:
|
948
|
+
return describeBuiltInComponentFrame(fiber.type);
|
949
|
+
case 16:
|
950
|
+
return describeBuiltInComponentFrame("Lazy");
|
951
|
+
case 13:
|
952
|
+
return describeBuiltInComponentFrame("Suspense");
|
953
|
+
case 19:
|
954
|
+
return describeBuiltInComponentFrame("SuspenseList");
|
955
|
+
case 0:
|
956
|
+
case 15:
|
957
|
+
return describeNativeComponentFrame(fiber.type, !1);
|
958
|
+
case 11:
|
959
|
+
return describeNativeComponentFrame(fiber.type.render, !1);
|
960
|
+
case 1:
|
961
|
+
return describeNativeComponentFrame(fiber.type, !0);
|
962
|
+
default:
|
963
|
+
return "";
|
964
|
+
}
|
965
|
+
}
|
966
|
+
function getStackByFiberInDevAndProd(workInProgress) {
|
967
|
+
try {
|
968
|
+
var info = "";
|
969
|
+
do
|
970
|
+
(info += describeFiber(workInProgress)),
|
971
|
+
(workInProgress = workInProgress.return);
|
972
|
+
while (workInProgress);
|
973
|
+
return info;
|
974
|
+
} catch (x) {
|
975
|
+
return "\nError generating stack: " + x.message + "\n" + x.stack;
|
976
976
|
}
|
977
977
|
}
|
978
978
|
function getToStringValue(value) {
|
@@ -2014,19 +2014,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
|
|
2014
2014
|
}
|
2015
2015
|
var isInputEventSupported = !1;
|
2016
2016
|
if (canUseDOM) {
|
2017
|
-
var JSCompiler_inline_result$jscomp$
|
2017
|
+
var JSCompiler_inline_result$jscomp$279;
|
2018
2018
|
if (canUseDOM) {
|
2019
|
-
var isSupported$jscomp$
|
2020
|
-
if (!isSupported$jscomp$
|
2021
|
-
var element$jscomp$
|
2022
|
-
element$jscomp$
|
2023
|
-
isSupported$jscomp$
|
2024
|
-
"function" === typeof element$jscomp$
|
2019
|
+
var isSupported$jscomp$inline_410 = "oninput" in document;
|
2020
|
+
if (!isSupported$jscomp$inline_410) {
|
2021
|
+
var element$jscomp$inline_411 = document.createElement("div");
|
2022
|
+
element$jscomp$inline_411.setAttribute("oninput", "return;");
|
2023
|
+
isSupported$jscomp$inline_410 =
|
2024
|
+
"function" === typeof element$jscomp$inline_411.oninput;
|
2025
2025
|
}
|
2026
|
-
JSCompiler_inline_result$jscomp$
|
2027
|
-
} else JSCompiler_inline_result$jscomp$
|
2026
|
+
JSCompiler_inline_result$jscomp$279 = isSupported$jscomp$inline_410;
|
2027
|
+
} else JSCompiler_inline_result$jscomp$279 = !1;
|
2028
2028
|
isInputEventSupported =
|
2029
|
-
JSCompiler_inline_result$jscomp$
|
2029
|
+
JSCompiler_inline_result$jscomp$279 &&
|
2030
2030
|
(!document.documentMode || 9 < document.documentMode);
|
2031
2031
|
}
|
2032
2032
|
function stopWatchingForValueChange() {
|
@@ -2869,108 +2869,6 @@ function releaseCache(cache) {
|
|
2869
2869
|
cache.controller.abort();
|
2870
2870
|
});
|
2871
2871
|
}
|
2872
|
-
function applyDerivedStateFromProps(
|
2873
|
-
workInProgress,
|
2874
|
-
ctor,
|
2875
|
-
getDerivedStateFromProps,
|
2876
|
-
nextProps
|
2877
|
-
) {
|
2878
|
-
ctor = workInProgress.memoizedState;
|
2879
|
-
getDerivedStateFromProps = getDerivedStateFromProps(nextProps, ctor);
|
2880
|
-
getDerivedStateFromProps =
|
2881
|
-
null === getDerivedStateFromProps || void 0 === getDerivedStateFromProps
|
2882
|
-
? ctor
|
2883
|
-
: assign({}, ctor, getDerivedStateFromProps);
|
2884
|
-
workInProgress.memoizedState = getDerivedStateFromProps;
|
2885
|
-
0 === workInProgress.lanes &&
|
2886
|
-
(workInProgress.updateQueue.baseState = getDerivedStateFromProps);
|
2887
|
-
}
|
2888
|
-
var classComponentUpdater = {
|
2889
|
-
isMounted: function (component) {
|
2890
|
-
return (component = component._reactInternals)
|
2891
|
-
? getNearestMountedFiber(component) === component
|
2892
|
-
: !1;
|
2893
|
-
},
|
2894
|
-
enqueueSetState: function (inst, payload, callback) {
|
2895
|
-
inst = inst._reactInternals;
|
2896
|
-
var lane = requestUpdateLane(),
|
2897
|
-
update = createUpdate(lane);
|
2898
|
-
update.payload = payload;
|
2899
|
-
void 0 !== callback && null !== callback && (update.callback = callback);
|
2900
|
-
payload = enqueueUpdate(inst, update, lane);
|
2901
|
-
null !== payload &&
|
2902
|
-
(scheduleUpdateOnFiber(payload, inst, lane),
|
2903
|
-
entangleTransitions(payload, inst, lane));
|
2904
|
-
},
|
2905
|
-
enqueueReplaceState: function (inst, payload, callback) {
|
2906
|
-
inst = inst._reactInternals;
|
2907
|
-
var lane = requestUpdateLane(),
|
2908
|
-
update = createUpdate(lane);
|
2909
|
-
update.tag = 1;
|
2910
|
-
update.payload = payload;
|
2911
|
-
void 0 !== callback && null !== callback && (update.callback = callback);
|
2912
|
-
payload = enqueueUpdate(inst, update, lane);
|
2913
|
-
null !== payload &&
|
2914
|
-
(scheduleUpdateOnFiber(payload, inst, lane),
|
2915
|
-
entangleTransitions(payload, inst, lane));
|
2916
|
-
},
|
2917
|
-
enqueueForceUpdate: function (inst, callback) {
|
2918
|
-
inst = inst._reactInternals;
|
2919
|
-
var lane = requestUpdateLane(),
|
2920
|
-
update = createUpdate(lane);
|
2921
|
-
update.tag = 2;
|
2922
|
-
void 0 !== callback && null !== callback && (update.callback = callback);
|
2923
|
-
callback = enqueueUpdate(inst, update, lane);
|
2924
|
-
null !== callback &&
|
2925
|
-
(scheduleUpdateOnFiber(callback, inst, lane),
|
2926
|
-
entangleTransitions(callback, inst, lane));
|
2927
|
-
}
|
2928
|
-
};
|
2929
|
-
function checkShouldComponentUpdate(
|
2930
|
-
workInProgress,
|
2931
|
-
ctor,
|
2932
|
-
oldProps,
|
2933
|
-
newProps,
|
2934
|
-
oldState,
|
2935
|
-
newState,
|
2936
|
-
nextContext
|
2937
|
-
) {
|
2938
|
-
workInProgress = workInProgress.stateNode;
|
2939
|
-
return "function" === typeof workInProgress.shouldComponentUpdate
|
2940
|
-
? workInProgress.shouldComponentUpdate(newProps, newState, nextContext)
|
2941
|
-
: ctor.prototype && ctor.prototype.isPureReactComponent
|
2942
|
-
? !shallowEqual(oldProps, newProps) || !shallowEqual(oldState, newState)
|
2943
|
-
: !0;
|
2944
|
-
}
|
2945
|
-
function callComponentWillReceiveProps(
|
2946
|
-
workInProgress,
|
2947
|
-
instance,
|
2948
|
-
newProps,
|
2949
|
-
nextContext
|
2950
|
-
) {
|
2951
|
-
workInProgress = instance.state;
|
2952
|
-
"function" === typeof instance.componentWillReceiveProps &&
|
2953
|
-
instance.componentWillReceiveProps(newProps, nextContext);
|
2954
|
-
"function" === typeof instance.UNSAFE_componentWillReceiveProps &&
|
2955
|
-
instance.UNSAFE_componentWillReceiveProps(newProps, nextContext);
|
2956
|
-
instance.state !== workInProgress &&
|
2957
|
-
classComponentUpdater.enqueueReplaceState(instance, instance.state, null);
|
2958
|
-
}
|
2959
|
-
function resolveClassComponentProps(Component, baseProps) {
|
2960
|
-
var newProps = baseProps;
|
2961
|
-
if ("ref" in baseProps) {
|
2962
|
-
newProps = {};
|
2963
|
-
for (var propName in baseProps)
|
2964
|
-
"ref" !== propName && (newProps[propName] = baseProps[propName]);
|
2965
|
-
}
|
2966
|
-
if ((Component = Component.defaultProps)) {
|
2967
|
-
newProps === baseProps && (newProps = assign({}, newProps));
|
2968
|
-
for (var propName$28 in Component)
|
2969
|
-
void 0 === newProps[propName$28] &&
|
2970
|
-
(newProps[propName$28] = Component[propName$28]);
|
2971
|
-
}
|
2972
|
-
return newProps;
|
2973
|
-
}
|
2974
2872
|
var CapturedStacks = new WeakMap();
|
2975
2873
|
function createCapturedValueAtFiber(value, source) {
|
2976
2874
|
if ("object" === typeof value && null !== value) {
|
@@ -3217,6 +3115,103 @@ function queueHydrationError(error) {
|
|
3217
3115
|
? (hydrationErrors = [error])
|
3218
3116
|
: hydrationErrors.push(error);
|
3219
3117
|
}
|
3118
|
+
function applyDerivedStateFromProps(
|
3119
|
+
workInProgress,
|
3120
|
+
ctor,
|
3121
|
+
getDerivedStateFromProps,
|
3122
|
+
nextProps
|
3123
|
+
) {
|
3124
|
+
ctor = workInProgress.memoizedState;
|
3125
|
+
getDerivedStateFromProps = getDerivedStateFromProps(nextProps, ctor);
|
3126
|
+
getDerivedStateFromProps =
|
3127
|
+
null === getDerivedStateFromProps || void 0 === getDerivedStateFromProps
|
3128
|
+
? ctor
|
3129
|
+
: assign({}, ctor, getDerivedStateFromProps);
|
3130
|
+
workInProgress.memoizedState = getDerivedStateFromProps;
|
3131
|
+
0 === workInProgress.lanes &&
|
3132
|
+
(workInProgress.updateQueue.baseState = getDerivedStateFromProps);
|
3133
|
+
}
|
3134
|
+
var classComponentUpdater = {
|
3135
|
+
enqueueSetState: function (inst, payload, callback) {
|
3136
|
+
inst = inst._reactInternals;
|
3137
|
+
var lane = requestUpdateLane(),
|
3138
|
+
update = createUpdate(lane);
|
3139
|
+
update.payload = payload;
|
3140
|
+
void 0 !== callback && null !== callback && (update.callback = callback);
|
3141
|
+
payload = enqueueUpdate(inst, update, lane);
|
3142
|
+
null !== payload &&
|
3143
|
+
(scheduleUpdateOnFiber(payload, inst, lane),
|
3144
|
+
entangleTransitions(payload, inst, lane));
|
3145
|
+
},
|
3146
|
+
enqueueReplaceState: function (inst, payload, callback) {
|
3147
|
+
inst = inst._reactInternals;
|
3148
|
+
var lane = requestUpdateLane(),
|
3149
|
+
update = createUpdate(lane);
|
3150
|
+
update.tag = 1;
|
3151
|
+
update.payload = payload;
|
3152
|
+
void 0 !== callback && null !== callback && (update.callback = callback);
|
3153
|
+
payload = enqueueUpdate(inst, update, lane);
|
3154
|
+
null !== payload &&
|
3155
|
+
(scheduleUpdateOnFiber(payload, inst, lane),
|
3156
|
+
entangleTransitions(payload, inst, lane));
|
3157
|
+
},
|
3158
|
+
enqueueForceUpdate: function (inst, callback) {
|
3159
|
+
inst = inst._reactInternals;
|
3160
|
+
var lane = requestUpdateLane(),
|
3161
|
+
update = createUpdate(lane);
|
3162
|
+
update.tag = 2;
|
3163
|
+
void 0 !== callback && null !== callback && (update.callback = callback);
|
3164
|
+
callback = enqueueUpdate(inst, update, lane);
|
3165
|
+
null !== callback &&
|
3166
|
+
(scheduleUpdateOnFiber(callback, inst, lane),
|
3167
|
+
entangleTransitions(callback, inst, lane));
|
3168
|
+
}
|
3169
|
+
};
|
3170
|
+
function checkShouldComponentUpdate(
|
3171
|
+
workInProgress,
|
3172
|
+
ctor,
|
3173
|
+
oldProps,
|
3174
|
+
newProps,
|
3175
|
+
oldState,
|
3176
|
+
newState,
|
3177
|
+
nextContext
|
3178
|
+
) {
|
3179
|
+
workInProgress = workInProgress.stateNode;
|
3180
|
+
return "function" === typeof workInProgress.shouldComponentUpdate
|
3181
|
+
? workInProgress.shouldComponentUpdate(newProps, newState, nextContext)
|
3182
|
+
: ctor.prototype && ctor.prototype.isPureReactComponent
|
3183
|
+
? !shallowEqual(oldProps, newProps) || !shallowEqual(oldState, newState)
|
3184
|
+
: !0;
|
3185
|
+
}
|
3186
|
+
function callComponentWillReceiveProps(
|
3187
|
+
workInProgress,
|
3188
|
+
instance,
|
3189
|
+
newProps,
|
3190
|
+
nextContext
|
3191
|
+
) {
|
3192
|
+
workInProgress = instance.state;
|
3193
|
+
"function" === typeof instance.componentWillReceiveProps &&
|
3194
|
+
instance.componentWillReceiveProps(newProps, nextContext);
|
3195
|
+
"function" === typeof instance.UNSAFE_componentWillReceiveProps &&
|
3196
|
+
instance.UNSAFE_componentWillReceiveProps(newProps, nextContext);
|
3197
|
+
instance.state !== workInProgress &&
|
3198
|
+
classComponentUpdater.enqueueReplaceState(instance, instance.state, null);
|
3199
|
+
}
|
3200
|
+
function resolveClassComponentProps(Component, baseProps) {
|
3201
|
+
var newProps = baseProps;
|
3202
|
+
if ("ref" in baseProps) {
|
3203
|
+
newProps = {};
|
3204
|
+
for (var propName in baseProps)
|
3205
|
+
"ref" !== propName && (newProps[propName] = baseProps[propName]);
|
3206
|
+
}
|
3207
|
+
if ((Component = Component.defaultProps)) {
|
3208
|
+
newProps === baseProps && (newProps = assign({}, newProps));
|
3209
|
+
for (var propName$30 in Component)
|
3210
|
+
void 0 === newProps[propName$30] &&
|
3211
|
+
(newProps[propName$30] = Component[propName$30]);
|
3212
|
+
}
|
3213
|
+
return newProps;
|
3214
|
+
}
|
3220
3215
|
var SuspenseException = Error(formatProdErrorMessage(460)),
|
3221
3216
|
SuspenseyCommitException = Error(formatProdErrorMessage(474)),
|
3222
3217
|
SuspenseActionException = Error(formatProdErrorMessage(542)),
|
@@ -4826,16 +4821,16 @@ function createChildReconciler(shouldTrackSideEffects) {
|
|
4826
4821
|
return (
|
4827
4822
|
(newIndex = newIndex.index),
|
4828
4823
|
newIndex < lastPlacedIndex
|
4829
|
-
? ((newFiber.flags |=
|
4824
|
+
? ((newFiber.flags |= 67108866), lastPlacedIndex)
|
4830
4825
|
: newIndex
|
4831
4826
|
);
|
4832
|
-
newFiber.flags |=
|
4827
|
+
newFiber.flags |= 67108866;
|
4833
4828
|
return lastPlacedIndex;
|
4834
4829
|
}
|
4835
4830
|
function placeSingleChild(newFiber) {
|
4836
4831
|
shouldTrackSideEffects &&
|
4837
4832
|
null === newFiber.alternate &&
|
4838
|
-
(newFiber.flags |=
|
4833
|
+
(newFiber.flags |= 67108866);
|
4839
4834
|
return newFiber;
|
4840
4835
|
}
|
4841
4836
|
function updateTextNode(returnFiber, current, textContent, lanes) {
|
@@ -6612,7 +6607,7 @@ function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
|
6612
6607
|
children: nextProps.children
|
6613
6608
|
})),
|
6614
6609
|
(nextProps.subtreeFlags =
|
6615
|
-
JSCompiler_temp$jscomp$0.subtreeFlags &
|
6610
|
+
JSCompiler_temp$jscomp$0.subtreeFlags & 65011712),
|
6616
6611
|
null !== digest
|
6617
6612
|
? (showFallback = createWorkInProgress(digest, showFallback))
|
6618
6613
|
: ((showFallback = createFiberFromFragment(
|
@@ -8610,6 +8605,7 @@ function commitMutationEffectsOnFiber(finishedWork, root) {
|
|
8610
8605
|
((finishedWork.updateQueue = null),
|
8611
8606
|
attachSuspenseRetryListeners(finishedWork, flags)));
|
8612
8607
|
break;
|
8608
|
+
case 30:
|
8613
8609
|
case 21:
|
8614
8610
|
break;
|
8615
8611
|
default:
|
@@ -8954,6 +8950,7 @@ function commitPassiveMountOnFiber(
|
|
8954
8950
|
break;
|
8955
8951
|
case 22:
|
8956
8952
|
_finishedWork$memoize2 = finishedWork.stateNode;
|
8953
|
+
id = finishedWork.alternate;
|
8957
8954
|
null !== finishedWork.memoizedState
|
8958
8955
|
? _finishedWork$memoize2._visibility & 4
|
8959
8956
|
? recursivelyTraversePassiveMountEffects(
|
@@ -8978,11 +8975,7 @@ function commitPassiveMountOnFiber(
|
|
8978
8975
|
committedTransitions,
|
8979
8976
|
0 !== (finishedWork.subtreeFlags & 10256)
|
8980
8977
|
));
|
8981
|
-
flags & 2048 &&
|
8982
|
-
commitOffscreenPassiveMountEffects(
|
8983
|
-
finishedWork.alternate,
|
8984
|
-
finishedWork
|
8985
|
-
);
|
8978
|
+
flags & 2048 && commitOffscreenPassiveMountEffects(id, finishedWork);
|
8986
8979
|
break;
|
8987
8980
|
case 24:
|
8988
8981
|
recursivelyTraversePassiveMountEffects(
|
@@ -9352,7 +9345,7 @@ function createWorkInProgress(current, pendingProps) {
|
|
9352
9345
|
(workInProgress.flags = 0),
|
9353
9346
|
(workInProgress.subtreeFlags = 0),
|
9354
9347
|
(workInProgress.deletions = null));
|
9355
|
-
workInProgress.flags = current.flags &
|
9348
|
+
workInProgress.flags = current.flags & 65011712;
|
9356
9349
|
workInProgress.childLanes = current.childLanes;
|
9357
9350
|
workInProgress.lanes = current.lanes;
|
9358
9351
|
workInProgress.child = current.child;
|
@@ -9371,7 +9364,7 @@ function createWorkInProgress(current, pendingProps) {
|
|
9371
9364
|
return workInProgress;
|
9372
9365
|
}
|
9373
9366
|
function resetWorkInProgress(workInProgress, renderLanes) {
|
9374
|
-
workInProgress.flags &=
|
9367
|
+
workInProgress.flags &= 65011714;
|
9375
9368
|
var current = workInProgress.alternate;
|
9376
9369
|
null === current
|
9377
9370
|
? ((workInProgress.childLanes = 0),
|
@@ -9614,8 +9607,8 @@ function bubbleProperties(completedWork) {
|
|
9614
9607
|
if (didBailout)
|
9615
9608
|
for (var child$132 = completedWork.child; null !== child$132; )
|
9616
9609
|
(newChildLanes |= child$132.lanes | child$132.childLanes),
|
9617
|
-
(subtreeFlags |= child$132.subtreeFlags &
|
9618
|
-
(subtreeFlags |= child$132.flags &
|
9610
|
+
(subtreeFlags |= child$132.subtreeFlags & 65011712),
|
9611
|
+
(subtreeFlags |= child$132.flags & 65011712),
|
9619
9612
|
(child$132.return = completedWork),
|
9620
9613
|
(child$132 = child$132.sibling);
|
9621
9614
|
else
|
@@ -10056,6 +10049,8 @@ function completeWork(current, workInProgress, renderLanes) {
|
|
10056
10049
|
);
|
10057
10050
|
case 25:
|
10058
10051
|
return null;
|
10052
|
+
case 30:
|
10053
|
+
return null;
|
10059
10054
|
}
|
10060
10055
|
throw Error(formatProdErrorMessage(156, workInProgress.tag));
|
10061
10056
|
}
|
@@ -10182,6 +10177,7 @@ var DefaultAsyncDispatcher = {
|
|
10182
10177
|
workInProgressSuspendedRetryLanes = 0,
|
10183
10178
|
workInProgressRootConcurrentErrors = null,
|
10184
10179
|
workInProgressRootRecoverableErrors = null,
|
10180
|
+
workInProgressAppearingViewTransitions = null,
|
10185
10181
|
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
10186
10182
|
globalMostRecentFallbackTime = 0,
|
10187
10183
|
workInProgressRootRenderTargetTime = Infinity,
|
@@ -10372,6 +10368,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
10372
10368
|
forceSync,
|
10373
10369
|
workInProgressRootRecoverableErrors,
|
10374
10370
|
workInProgressTransitions,
|
10371
|
+
workInProgressAppearingViewTransitions,
|
10375
10372
|
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
10376
10373
|
lanes,
|
10377
10374
|
workInProgressDeferredLane,
|
@@ -10392,6 +10389,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
10392
10389
|
forceSync,
|
10393
10390
|
workInProgressRootRecoverableErrors,
|
10394
10391
|
workInProgressTransitions,
|
10392
|
+
workInProgressAppearingViewTransitions,
|
10395
10393
|
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
10396
10394
|
lanes,
|
10397
10395
|
workInProgressDeferredLane,
|
@@ -10414,6 +10412,7 @@ function commitRootWhenReady(
|
|
10414
10412
|
finishedWork,
|
10415
10413
|
recoverableErrors,
|
10416
10414
|
transitions,
|
10415
|
+
appearingViewTransitions,
|
10417
10416
|
didIncludeRenderPhaseUpdate,
|
10418
10417
|
lanes,
|
10419
10418
|
spawnedLane,
|
@@ -10428,12 +10427,13 @@ function commitRootWhenReady(
|
|
10428
10427
|
root.timeoutHandle = -1;
|
10429
10428
|
suspendedCommitReason = finishedWork.subtreeFlags;
|
10430
10429
|
if (
|
10431
|
-
suspendedCommitReason
|
10432
|
-
|
10430
|
+
(suspendedCommitReason =
|
10431
|
+
suspendedCommitReason & 8192 ||
|
10432
|
+
16785408 === (suspendedCommitReason & 16785408))
|
10433
10433
|
)
|
10434
10434
|
if (
|
10435
10435
|
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop }),
|
10436
|
-
accumulateSuspenseyCommitOnFiber(finishedWork),
|
10436
|
+
suspendedCommitReason && accumulateSuspenseyCommitOnFiber(finishedWork),
|
10437
10437
|
(suspendedCommitReason = waitForCommitToBeReady()),
|
10438
10438
|
null !== suspendedCommitReason)
|
10439
10439
|
) {
|
@@ -10445,6 +10445,7 @@ function commitRootWhenReady(
|
|
10445
10445
|
lanes,
|
10446
10446
|
recoverableErrors,
|
10447
10447
|
transitions,
|
10448
|
+
appearingViewTransitions,
|
10448
10449
|
didIncludeRenderPhaseUpdate,
|
10449
10450
|
spawnedLane,
|
10450
10451
|
updatedLanes,
|
@@ -10464,6 +10465,7 @@ function commitRootWhenReady(
|
|
10464
10465
|
lanes,
|
10465
10466
|
recoverableErrors,
|
10466
10467
|
transitions,
|
10468
|
+
appearingViewTransitions,
|
10467
10469
|
didIncludeRenderPhaseUpdate,
|
10468
10470
|
spawnedLane,
|
10469
10471
|
updatedLanes,
|
@@ -10517,9 +10519,9 @@ function markRootSuspended(
|
|
10517
10519
|
didAttemptEntireTree && (root.warmLanes |= suspendedLanes);
|
10518
10520
|
didAttemptEntireTree = root.expirationTimes;
|
10519
10521
|
for (var lanes = suspendedLanes; 0 < lanes; ) {
|
10520
|
-
var index$
|
10521
|
-
lane = 1 << index$
|
10522
|
-
didAttemptEntireTree[index$
|
10522
|
+
var index$4 = 31 - clz32(lanes),
|
10523
|
+
lane = 1 << index$4;
|
10524
|
+
didAttemptEntireTree[index$4] = -1;
|
10523
10525
|
lanes &= ~lane;
|
10524
10526
|
}
|
10525
10527
|
0 !== spawnedLane &&
|
@@ -10573,6 +10575,7 @@ function prepareFreshStack(root, lanes) {
|
|
10573
10575
|
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
10574
10576
|
null;
|
10575
10577
|
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
10578
|
+
workInProgressAppearingViewTransitions = null;
|
10576
10579
|
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
10577
10580
|
var allEntangledLanes = root.entangledLanes;
|
10578
10581
|
if (0 !== allEntangledLanes)
|
@@ -10581,9 +10584,9 @@ function prepareFreshStack(root, lanes) {
|
|
10581
10584
|
0 < allEntangledLanes;
|
10582
10585
|
|
10583
10586
|
) {
|
10584
|
-
var index$
|
10585
|
-
lane = 1 << index$
|
10586
|
-
lanes |= root[index$
|
10587
|
+
var index$2 = 31 - clz32(allEntangledLanes),
|
10588
|
+
lane = 1 << index$2;
|
10589
|
+
lanes |= root[index$2];
|
10587
10590
|
allEntangledLanes &= ~lane;
|
10588
10591
|
}
|
10589
10592
|
entangledRenderLanes = lanes;
|
@@ -10981,6 +10984,7 @@ function commitRoot(
|
|
10981
10984
|
lanes,
|
10982
10985
|
recoverableErrors,
|
10983
10986
|
transitions,
|
10987
|
+
appearingViewTransitions,
|
10984
10988
|
didIncludeRenderPhaseUpdate,
|
10985
10989
|
spawnedLane,
|
10986
10990
|
updatedLanes,
|
@@ -11020,25 +11024,31 @@ function commitRoot(
|
|
11020
11024
|
return null;
|
11021
11025
|
}))
|
11022
11026
|
: ((root.callbackNode = null), (root.callbackPriority = 0));
|
11023
|
-
|
11024
|
-
if (0 !== (finishedWork.subtreeFlags & 13878) ||
|
11025
|
-
|
11027
|
+
recoverableErrors = 0 !== (finishedWork.flags & 13878);
|
11028
|
+
if (0 !== (finishedWork.subtreeFlags & 13878) || recoverableErrors) {
|
11029
|
+
recoverableErrors = ReactSharedInternals.T;
|
11026
11030
|
ReactSharedInternals.T = null;
|
11027
|
-
|
11031
|
+
transitions = ReactDOMSharedInternals.p;
|
11028
11032
|
ReactDOMSharedInternals.p = 2;
|
11029
|
-
|
11033
|
+
spawnedLane = executionContext;
|
11030
11034
|
executionContext |= 4;
|
11031
11035
|
try {
|
11032
|
-
commitBeforeMutationEffects(
|
11036
|
+
commitBeforeMutationEffects(
|
11037
|
+
root,
|
11038
|
+
finishedWork,
|
11039
|
+
lanes,
|
11040
|
+
appearingViewTransitions
|
11041
|
+
);
|
11033
11042
|
} finally {
|
11034
|
-
(executionContext =
|
11035
|
-
(ReactDOMSharedInternals.p =
|
11036
|
-
(ReactSharedInternals.T =
|
11043
|
+
(executionContext = spawnedLane),
|
11044
|
+
(ReactDOMSharedInternals.p = transitions),
|
11045
|
+
(ReactSharedInternals.T = recoverableErrors);
|
11037
11046
|
}
|
11038
11047
|
}
|
11039
11048
|
pendingEffectsStatus = 1;
|
11040
11049
|
flushMutationEffects();
|
11041
11050
|
flushLayoutEffects();
|
11051
|
+
flushSpawnedWork();
|
11042
11052
|
}
|
11043
11053
|
}
|
11044
11054
|
function flushMutationEffects() {
|
@@ -11168,8 +11178,6 @@ function flushLayoutEffects() {
|
|
11168
11178
|
pendingEffectsStatus = 0;
|
11169
11179
|
var root = pendingEffectsRoot,
|
11170
11180
|
finishedWork = pendingFinishedWork,
|
11171
|
-
lanes = pendingEffectsLanes,
|
11172
|
-
recoverableErrors = pendingRecoverableErrors,
|
11173
11181
|
rootHasLayoutEffect = 0 !== (finishedWork.flags & 8772);
|
11174
11182
|
if (0 !== (finishedWork.subtreeFlags & 8772) || rootHasLayoutEffect) {
|
11175
11183
|
rootHasLayoutEffect = ReactSharedInternals.T;
|
@@ -11186,16 +11194,25 @@ function flushLayoutEffects() {
|
|
11186
11194
|
(ReactSharedInternals.T = rootHasLayoutEffect);
|
11187
11195
|
}
|
11188
11196
|
}
|
11197
|
+
pendingEffectsStatus = 3;
|
11198
|
+
}
|
11199
|
+
}
|
11200
|
+
function flushSpawnedWork() {
|
11201
|
+
if (4 === pendingEffectsStatus || 3 === pendingEffectsStatus) {
|
11202
|
+
pendingEffectsStatus = 0;
|
11189
11203
|
requestPaint();
|
11204
|
+
var root = pendingEffectsRoot,
|
11205
|
+
finishedWork = pendingFinishedWork,
|
11206
|
+
lanes = pendingEffectsLanes,
|
11207
|
+
recoverableErrors = pendingRecoverableErrors;
|
11190
11208
|
0 !== (finishedWork.subtreeFlags & 10256) ||
|
11191
11209
|
0 !== (finishedWork.flags & 10256)
|
11192
|
-
? (pendingEffectsStatus =
|
11210
|
+
? (pendingEffectsStatus = 5)
|
11193
11211
|
: ((pendingEffectsStatus = 0),
|
11194
11212
|
(pendingEffectsRoot = null),
|
11195
11213
|
releaseRootPooledCache(root, root.pendingLanes));
|
11196
|
-
|
11197
|
-
0 ===
|
11198
|
-
(legacyErrorBoundariesThatAlreadyFailed = null);
|
11214
|
+
var remainingLanes = root.pendingLanes;
|
11215
|
+
0 === remainingLanes && (legacyErrorBoundariesThatAlreadyFailed = null);
|
11199
11216
|
lanesToEventPriority(lanes);
|
11200
11217
|
finishedWork = finishedWork.stateNode;
|
11201
11218
|
if (injectedHook && "function" === typeof injectedHook.onCommitFiberRoot)
|
@@ -11209,30 +11226,29 @@ function flushLayoutEffects() {
|
|
11209
11226
|
} catch (err) {}
|
11210
11227
|
if (null !== recoverableErrors) {
|
11211
11228
|
finishedWork = ReactSharedInternals.T;
|
11212
|
-
|
11229
|
+
remainingLanes = ReactDOMSharedInternals.p;
|
11213
11230
|
ReactDOMSharedInternals.p = 2;
|
11214
11231
|
ReactSharedInternals.T = null;
|
11215
11232
|
try {
|
11216
|
-
var onRecoverableError = root.onRecoverableError;
|
11217
11233
|
for (
|
11218
|
-
|
11219
|
-
|
11220
|
-
|
11234
|
+
var onRecoverableError = root.onRecoverableError, i = 0;
|
11235
|
+
i < recoverableErrors.length;
|
11236
|
+
i++
|
11221
11237
|
) {
|
11222
|
-
var recoverableError = recoverableErrors[
|
11238
|
+
var recoverableError = recoverableErrors[i];
|
11223
11239
|
onRecoverableError(recoverableError.value, {
|
11224
11240
|
componentStack: recoverableError.stack
|
11225
11241
|
});
|
11226
11242
|
}
|
11227
11243
|
} finally {
|
11228
11244
|
(ReactSharedInternals.T = finishedWork),
|
11229
|
-
(ReactDOMSharedInternals.p =
|
11245
|
+
(ReactDOMSharedInternals.p = remainingLanes);
|
11230
11246
|
}
|
11231
11247
|
}
|
11232
11248
|
0 !== (pendingEffectsLanes & 3) && flushPendingEffects();
|
11233
11249
|
ensureRootIsScheduled(root);
|
11234
|
-
|
11235
|
-
0 !== (lanes & 4194218) && 0 !== (
|
11250
|
+
remainingLanes = root.pendingLanes;
|
11251
|
+
0 !== (lanes & 4194218) && 0 !== (remainingLanes & 42)
|
11236
11252
|
? root === rootWithNestedUpdates
|
11237
11253
|
? nestedUpdateCount++
|
11238
11254
|
: ((nestedUpdateCount = 0), (rootWithNestedUpdates = root))
|
@@ -11249,10 +11265,11 @@ function releaseRootPooledCache(root, remainingLanes) {
|
|
11249
11265
|
function flushPendingEffects(wasDelayedCommit) {
|
11250
11266
|
flushMutationEffects();
|
11251
11267
|
flushLayoutEffects();
|
11268
|
+
flushSpawnedWork();
|
11252
11269
|
return flushPassiveEffects(wasDelayedCommit);
|
11253
11270
|
}
|
11254
11271
|
function flushPassiveEffects() {
|
11255
|
-
if (
|
11272
|
+
if (5 !== pendingEffectsStatus) return !1;
|
11256
11273
|
var root = pendingEffectsRoot,
|
11257
11274
|
remainingLanes = pendingEffectsRemainingLanes;
|
11258
11275
|
pendingEffectsRemainingLanes = 0;
|
@@ -11432,14 +11449,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
11432
11449
|
isFlushingWork = !0;
|
11433
11450
|
do {
|
11434
11451
|
var didPerformSomeWork = !1;
|
11435
|
-
for (var root$
|
11452
|
+
for (var root$171 = firstScheduledRoot; null !== root$171; ) {
|
11436
11453
|
if (!onlyLegacy)
|
11437
11454
|
if (0 !== syncTransitionLanes) {
|
11438
|
-
var pendingLanes = root$
|
11455
|
+
var pendingLanes = root$171.pendingLanes;
|
11439
11456
|
if (0 === pendingLanes) var JSCompiler_inline_result = 0;
|
11440
11457
|
else {
|
11441
|
-
var suspendedLanes = root$
|
11442
|
-
pingedLanes = root$
|
11458
|
+
var suspendedLanes = root$171.suspendedLanes,
|
11459
|
+
pingedLanes = root$171.pingedLanes;
|
11443
11460
|
JSCompiler_inline_result =
|
11444
11461
|
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
11445
11462
|
JSCompiler_inline_result &=
|
@@ -11453,20 +11470,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
11453
11470
|
}
|
11454
11471
|
0 !== JSCompiler_inline_result &&
|
11455
11472
|
((didPerformSomeWork = !0),
|
11456
|
-
performSyncWorkOnRoot(root$
|
11473
|
+
performSyncWorkOnRoot(root$171, JSCompiler_inline_result));
|
11457
11474
|
} else
|
11458
11475
|
(JSCompiler_inline_result = workInProgressRootRenderLanes),
|
11459
11476
|
(JSCompiler_inline_result = getNextLanes(
|
11460
|
-
root$
|
11461
|
-
root$
|
11462
|
-
null !== root$
|
11463
|
-
-1 !== root$
|
11477
|
+
root$171,
|
11478
|
+
root$171 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
11479
|
+
null !== root$171.cancelPendingCommit ||
|
11480
|
+
-1 !== root$171.timeoutHandle
|
11464
11481
|
)),
|
11465
11482
|
0 === (JSCompiler_inline_result & 3) ||
|
11466
|
-
checkIfRootIsPrerendering(root$
|
11483
|
+
checkIfRootIsPrerendering(root$171, JSCompiler_inline_result) ||
|
11467
11484
|
((didPerformSomeWork = !0),
|
11468
|
-
performSyncWorkOnRoot(root$
|
11469
|
-
root$
|
11485
|
+
performSyncWorkOnRoot(root$171, JSCompiler_inline_result));
|
11486
|
+
root$171 = root$171.next;
|
11470
11487
|
}
|
11471
11488
|
} while (didPerformSomeWork);
|
11472
11489
|
isFlushingWork = !1;
|
@@ -11510,12 +11527,12 @@ function scheduleTaskForRootDuringMicrotask(root, currentTime) {
|
|
11510
11527
|
0 < lanes;
|
11511
11528
|
|
11512
11529
|
) {
|
11513
|
-
var index$
|
11514
|
-
lane = 1 << index$
|
11515
|
-
expirationTime = expirationTimes[index$
|
11530
|
+
var index$3 = 31 - clz32(lanes),
|
11531
|
+
lane = 1 << index$3,
|
11532
|
+
expirationTime = expirationTimes[index$3];
|
11516
11533
|
if (-1 === expirationTime) {
|
11517
11534
|
if (0 === (lane & suspendedLanes) || 0 !== (lane & pingedLanes))
|
11518
|
-
expirationTimes[index$
|
11535
|
+
expirationTimes[index$3] = computeExpirationTime(lane, currentTime);
|
11519
11536
|
} else expirationTime <= currentTime && (root.expiredLanes |= lane);
|
11520
11537
|
lanes &= ~lane;
|
11521
11538
|
}
|
@@ -11574,7 +11591,7 @@ function scheduleTaskForRootDuringMicrotask(root, currentTime) {
|
|
11574
11591
|
return 2;
|
11575
11592
|
}
|
11576
11593
|
function performWorkOnRootViaSchedulerTask(root, didTimeout) {
|
11577
|
-
if (0 !== pendingEffectsStatus &&
|
11594
|
+
if (0 !== pendingEffectsStatus && 5 !== pendingEffectsStatus)
|
11578
11595
|
return (root.callbackNode = null), (root.callbackPriority = 0), null;
|
11579
11596
|
var originalCallbackNode = root.callbackNode;
|
11580
11597
|
if (flushPendingEffects(!0) && root.callbackNode !== originalCallbackNode)
|
@@ -11706,20 +11723,20 @@ function extractEvents$1(
|
|
11706
11723
|
}
|
11707
11724
|
}
|
11708
11725
|
for (
|
11709
|
-
var i$jscomp$
|
11710
|
-
i$jscomp$
|
11711
|
-
i$jscomp$
|
11726
|
+
var i$jscomp$inline_1474 = 0;
|
11727
|
+
i$jscomp$inline_1474 < simpleEventPluginEvents.length;
|
11728
|
+
i$jscomp$inline_1474++
|
11712
11729
|
) {
|
11713
|
-
var eventName$jscomp$
|
11714
|
-
simpleEventPluginEvents[i$jscomp$
|
11715
|
-
domEventName$jscomp$
|
11716
|
-
eventName$jscomp$
|
11717
|
-
capitalizedEvent$jscomp$
|
11718
|
-
eventName$jscomp$
|
11719
|
-
eventName$jscomp$
|
11730
|
+
var eventName$jscomp$inline_1475 =
|
11731
|
+
simpleEventPluginEvents[i$jscomp$inline_1474],
|
11732
|
+
domEventName$jscomp$inline_1476 =
|
11733
|
+
eventName$jscomp$inline_1475.toLowerCase(),
|
11734
|
+
capitalizedEvent$jscomp$inline_1477 =
|
11735
|
+
eventName$jscomp$inline_1475[0].toUpperCase() +
|
11736
|
+
eventName$jscomp$inline_1475.slice(1);
|
11720
11737
|
registerSimpleEvent(
|
11721
|
-
domEventName$jscomp$
|
11722
|
-
"on" + capitalizedEvent$jscomp$
|
11738
|
+
domEventName$jscomp$inline_1476,
|
11739
|
+
"on" + capitalizedEvent$jscomp$inline_1477
|
11723
11740
|
);
|
11724
11741
|
}
|
11725
11742
|
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
@@ -12902,34 +12919,34 @@ function setInitialProperties(domElement, tag, props) {
|
|
12902
12919
|
defaultChecked = null;
|
12903
12920
|
for (hasSrc in props)
|
12904
12921
|
if (props.hasOwnProperty(hasSrc)) {
|
12905
|
-
var propValue$
|
12906
|
-
if (null != propValue$
|
12922
|
+
var propValue$185 = props[hasSrc];
|
12923
|
+
if (null != propValue$185)
|
12907
12924
|
switch (hasSrc) {
|
12908
12925
|
case "name":
|
12909
|
-
hasSrcSet = propValue$
|
12926
|
+
hasSrcSet = propValue$185;
|
12910
12927
|
break;
|
12911
12928
|
case "type":
|
12912
|
-
propValue = propValue$
|
12929
|
+
propValue = propValue$185;
|
12913
12930
|
break;
|
12914
12931
|
case "checked":
|
12915
|
-
checked = propValue$
|
12932
|
+
checked = propValue$185;
|
12916
12933
|
break;
|
12917
12934
|
case "defaultChecked":
|
12918
|
-
defaultChecked = propValue$
|
12935
|
+
defaultChecked = propValue$185;
|
12919
12936
|
break;
|
12920
12937
|
case "value":
|
12921
|
-
propKey = propValue$
|
12938
|
+
propKey = propValue$185;
|
12922
12939
|
break;
|
12923
12940
|
case "defaultValue":
|
12924
|
-
defaultValue = propValue$
|
12941
|
+
defaultValue = propValue$185;
|
12925
12942
|
break;
|
12926
12943
|
case "children":
|
12927
12944
|
case "dangerouslySetInnerHTML":
|
12928
|
-
if (null != propValue$
|
12945
|
+
if (null != propValue$185)
|
12929
12946
|
throw Error(formatProdErrorMessage(137, tag));
|
12930
12947
|
break;
|
12931
12948
|
default:
|
12932
|
-
setProp(domElement, tag, hasSrc, propValue$
|
12949
|
+
setProp(domElement, tag, hasSrc, propValue$185, props, null);
|
12933
12950
|
}
|
12934
12951
|
}
|
12935
12952
|
initInput(
|
@@ -13066,14 +13083,14 @@ function setInitialProperties(domElement, tag, props) {
|
|
13066
13083
|
return;
|
13067
13084
|
default:
|
13068
13085
|
if (isCustomElement(tag)) {
|
13069
|
-
for (propValue$
|
13070
|
-
props.hasOwnProperty(propValue$
|
13071
|
-
((hasSrc = props[propValue$
|
13086
|
+
for (propValue$185 in props)
|
13087
|
+
props.hasOwnProperty(propValue$185) &&
|
13088
|
+
((hasSrc = props[propValue$185]),
|
13072
13089
|
void 0 !== hasSrc &&
|
13073
13090
|
setPropOnCustomElement(
|
13074
13091
|
domElement,
|
13075
13092
|
tag,
|
13076
|
-
propValue$
|
13093
|
+
propValue$185,
|
13077
13094
|
hasSrc,
|
13078
13095
|
props,
|
13079
13096
|
void 0
|
@@ -13121,14 +13138,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13121
13138
|
setProp(domElement, tag, propKey, null, nextProps, lastProp);
|
13122
13139
|
}
|
13123
13140
|
}
|
13124
|
-
for (var propKey$
|
13125
|
-
var propKey = nextProps[propKey$
|
13126
|
-
lastProp = lastProps[propKey$
|
13141
|
+
for (var propKey$202 in nextProps) {
|
13142
|
+
var propKey = nextProps[propKey$202];
|
13143
|
+
lastProp = lastProps[propKey$202];
|
13127
13144
|
if (
|
13128
|
-
nextProps.hasOwnProperty(propKey$
|
13145
|
+
nextProps.hasOwnProperty(propKey$202) &&
|
13129
13146
|
(null != propKey || null != lastProp)
|
13130
13147
|
)
|
13131
|
-
switch (propKey$
|
13148
|
+
switch (propKey$202) {
|
13132
13149
|
case "type":
|
13133
13150
|
type = propKey;
|
13134
13151
|
break;
|
@@ -13157,7 +13174,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13157
13174
|
setProp(
|
13158
13175
|
domElement,
|
13159
13176
|
tag,
|
13160
|
-
propKey$
|
13177
|
+
propKey$202,
|
13161
13178
|
propKey,
|
13162
13179
|
nextProps,
|
13163
13180
|
lastProp
|
@@ -13176,7 +13193,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13176
13193
|
);
|
13177
13194
|
return;
|
13178
13195
|
case "select":
|
13179
|
-
propKey = value = defaultValue = propKey$
|
13196
|
+
propKey = value = defaultValue = propKey$202 = null;
|
13180
13197
|
for (type in lastProps)
|
13181
13198
|
if (
|
13182
13199
|
((lastDefaultValue = lastProps[type]),
|
@@ -13207,7 +13224,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13207
13224
|
)
|
13208
13225
|
switch (name) {
|
13209
13226
|
case "value":
|
13210
|
-
propKey$
|
13227
|
+
propKey$202 = type;
|
13211
13228
|
break;
|
13212
13229
|
case "defaultValue":
|
13213
13230
|
defaultValue = type;
|
@@ -13228,15 +13245,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13228
13245
|
tag = defaultValue;
|
13229
13246
|
lastProps = value;
|
13230
13247
|
nextProps = propKey;
|
13231
|
-
null != propKey$
|
13232
|
-
? updateOptions(domElement, !!lastProps, propKey$
|
13248
|
+
null != propKey$202
|
13249
|
+
? updateOptions(domElement, !!lastProps, propKey$202, !1)
|
13233
13250
|
: !!nextProps !== !!lastProps &&
|
13234
13251
|
(null != tag
|
13235
13252
|
? updateOptions(domElement, !!lastProps, tag, !0)
|
13236
13253
|
: updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
|
13237
13254
|
return;
|
13238
13255
|
case "textarea":
|
13239
|
-
propKey = propKey$
|
13256
|
+
propKey = propKey$202 = null;
|
13240
13257
|
for (defaultValue in lastProps)
|
13241
13258
|
if (
|
13242
13259
|
((name = lastProps[defaultValue]),
|
@@ -13260,7 +13277,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13260
13277
|
)
|
13261
13278
|
switch (value) {
|
13262
13279
|
case "value":
|
13263
|
-
propKey$
|
13280
|
+
propKey$202 = name;
|
13264
13281
|
break;
|
13265
13282
|
case "defaultValue":
|
13266
13283
|
propKey = name;
|
@@ -13274,17 +13291,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13274
13291
|
name !== type &&
|
13275
13292
|
setProp(domElement, tag, value, name, nextProps, type);
|
13276
13293
|
}
|
13277
|
-
updateTextarea(domElement, propKey$
|
13294
|
+
updateTextarea(domElement, propKey$202, propKey);
|
13278
13295
|
return;
|
13279
13296
|
case "option":
|
13280
|
-
for (var propKey$
|
13297
|
+
for (var propKey$218 in lastProps)
|
13281
13298
|
if (
|
13282
|
-
((propKey$
|
13283
|
-
lastProps.hasOwnProperty(propKey$
|
13284
|
-
null != propKey$
|
13285
|
-
!nextProps.hasOwnProperty(propKey$
|
13299
|
+
((propKey$202 = lastProps[propKey$218]),
|
13300
|
+
lastProps.hasOwnProperty(propKey$218) &&
|
13301
|
+
null != propKey$202 &&
|
13302
|
+
!nextProps.hasOwnProperty(propKey$218))
|
13286
13303
|
)
|
13287
|
-
switch (propKey$
|
13304
|
+
switch (propKey$218) {
|
13288
13305
|
case "selected":
|
13289
13306
|
domElement.selected = !1;
|
13290
13307
|
break;
|
@@ -13292,33 +13309,33 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13292
13309
|
setProp(
|
13293
13310
|
domElement,
|
13294
13311
|
tag,
|
13295
|
-
propKey$
|
13312
|
+
propKey$218,
|
13296
13313
|
null,
|
13297
13314
|
nextProps,
|
13298
|
-
propKey$
|
13315
|
+
propKey$202
|
13299
13316
|
);
|
13300
13317
|
}
|
13301
13318
|
for (lastDefaultValue in nextProps)
|
13302
13319
|
if (
|
13303
|
-
((propKey$
|
13320
|
+
((propKey$202 = nextProps[lastDefaultValue]),
|
13304
13321
|
(propKey = lastProps[lastDefaultValue]),
|
13305
13322
|
nextProps.hasOwnProperty(lastDefaultValue) &&
|
13306
|
-
propKey$
|
13307
|
-
(null != propKey$
|
13323
|
+
propKey$202 !== propKey &&
|
13324
|
+
(null != propKey$202 || null != propKey))
|
13308
13325
|
)
|
13309
13326
|
switch (lastDefaultValue) {
|
13310
13327
|
case "selected":
|
13311
13328
|
domElement.selected =
|
13312
|
-
propKey$
|
13313
|
-
"function" !== typeof propKey$
|
13314
|
-
"symbol" !== typeof propKey$
|
13329
|
+
propKey$202 &&
|
13330
|
+
"function" !== typeof propKey$202 &&
|
13331
|
+
"symbol" !== typeof propKey$202;
|
13315
13332
|
break;
|
13316
13333
|
default:
|
13317
13334
|
setProp(
|
13318
13335
|
domElement,
|
13319
13336
|
tag,
|
13320
13337
|
lastDefaultValue,
|
13321
|
-
propKey$
|
13338
|
+
propKey$202,
|
13322
13339
|
nextProps,
|
13323
13340
|
propKey
|
13324
13341
|
);
|
@@ -13339,24 +13356,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13339
13356
|
case "track":
|
13340
13357
|
case "wbr":
|
13341
13358
|
case "menuitem":
|
13342
|
-
for (var propKey$
|
13343
|
-
(propKey$
|
13344
|
-
lastProps.hasOwnProperty(propKey$
|
13345
|
-
null != propKey$
|
13346
|
-
!nextProps.hasOwnProperty(propKey$
|
13347
|
-
setProp(domElement, tag, propKey$
|
13359
|
+
for (var propKey$223 in lastProps)
|
13360
|
+
(propKey$202 = lastProps[propKey$223]),
|
13361
|
+
lastProps.hasOwnProperty(propKey$223) &&
|
13362
|
+
null != propKey$202 &&
|
13363
|
+
!nextProps.hasOwnProperty(propKey$223) &&
|
13364
|
+
setProp(domElement, tag, propKey$223, null, nextProps, propKey$202);
|
13348
13365
|
for (checked in nextProps)
|
13349
13366
|
if (
|
13350
|
-
((propKey$
|
13367
|
+
((propKey$202 = nextProps[checked]),
|
13351
13368
|
(propKey = lastProps[checked]),
|
13352
13369
|
nextProps.hasOwnProperty(checked) &&
|
13353
|
-
propKey$
|
13354
|
-
(null != propKey$
|
13370
|
+
propKey$202 !== propKey &&
|
13371
|
+
(null != propKey$202 || null != propKey))
|
13355
13372
|
)
|
13356
13373
|
switch (checked) {
|
13357
13374
|
case "children":
|
13358
13375
|
case "dangerouslySetInnerHTML":
|
13359
|
-
if (null != propKey$
|
13376
|
+
if (null != propKey$202)
|
13360
13377
|
throw Error(formatProdErrorMessage(137, tag));
|
13361
13378
|
break;
|
13362
13379
|
default:
|
@@ -13364,7 +13381,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13364
13381
|
domElement,
|
13365
13382
|
tag,
|
13366
13383
|
checked,
|
13367
|
-
propKey$
|
13384
|
+
propKey$202,
|
13368
13385
|
nextProps,
|
13369
13386
|
propKey
|
13370
13387
|
);
|
@@ -13372,49 +13389,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
13372
13389
|
return;
|
13373
13390
|
default:
|
13374
13391
|
if (isCustomElement(tag)) {
|
13375
|
-
for (var propKey$
|
13376
|
-
(propKey$
|
13377
|
-
lastProps.hasOwnProperty(propKey$
|
13378
|
-
void 0 !== propKey$
|
13379
|
-
!nextProps.hasOwnProperty(propKey$
|
13392
|
+
for (var propKey$228 in lastProps)
|
13393
|
+
(propKey$202 = lastProps[propKey$228]),
|
13394
|
+
lastProps.hasOwnProperty(propKey$228) &&
|
13395
|
+
void 0 !== propKey$202 &&
|
13396
|
+
!nextProps.hasOwnProperty(propKey$228) &&
|
13380
13397
|
setPropOnCustomElement(
|
13381
13398
|
domElement,
|
13382
13399
|
tag,
|
13383
|
-
propKey$
|
13400
|
+
propKey$228,
|
13384
13401
|
void 0,
|
13385
13402
|
nextProps,
|
13386
|
-
propKey$
|
13403
|
+
propKey$202
|
13387
13404
|
);
|
13388
13405
|
for (defaultChecked in nextProps)
|
13389
|
-
(propKey$
|
13406
|
+
(propKey$202 = nextProps[defaultChecked]),
|
13390
13407
|
(propKey = lastProps[defaultChecked]),
|
13391
13408
|
!nextProps.hasOwnProperty(defaultChecked) ||
|
13392
|
-
propKey$
|
13393
|
-
(void 0 === propKey$
|
13409
|
+
propKey$202 === propKey ||
|
13410
|
+
(void 0 === propKey$202 && void 0 === propKey) ||
|
13394
13411
|
setPropOnCustomElement(
|
13395
13412
|
domElement,
|
13396
13413
|
tag,
|
13397
13414
|
defaultChecked,
|
13398
|
-
propKey$
|
13415
|
+
propKey$202,
|
13399
13416
|
nextProps,
|
13400
13417
|
propKey
|
13401
13418
|
);
|
13402
13419
|
return;
|
13403
13420
|
}
|
13404
13421
|
}
|
13405
|
-
for (var propKey$
|
13406
|
-
(propKey$
|
13407
|
-
lastProps.hasOwnProperty(propKey$
|
13408
|
-
null != propKey$
|
13409
|
-
!nextProps.hasOwnProperty(propKey$
|
13410
|
-
setProp(domElement, tag, propKey$
|
13422
|
+
for (var propKey$233 in lastProps)
|
13423
|
+
(propKey$202 = lastProps[propKey$233]),
|
13424
|
+
lastProps.hasOwnProperty(propKey$233) &&
|
13425
|
+
null != propKey$202 &&
|
13426
|
+
!nextProps.hasOwnProperty(propKey$233) &&
|
13427
|
+
setProp(domElement, tag, propKey$233, null, nextProps, propKey$202);
|
13411
13428
|
for (lastProp in nextProps)
|
13412
|
-
(propKey$
|
13429
|
+
(propKey$202 = nextProps[lastProp]),
|
13413
13430
|
(propKey = lastProps[lastProp]),
|
13414
13431
|
!nextProps.hasOwnProperty(lastProp) ||
|
13415
|
-
propKey$
|
13416
|
-
(null == propKey$
|
13417
|
-
setProp(domElement, tag, lastProp, propKey$
|
13432
|
+
propKey$202 === propKey ||
|
13433
|
+
(null == propKey$202 && null == propKey) ||
|
13434
|
+
setProp(domElement, tag, lastProp, propKey$202, nextProps, propKey);
|
13418
13435
|
}
|
13419
13436
|
var eventsEnabled = null,
|
13420
13437
|
selectionInformation = null;
|
@@ -13980,26 +13997,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
13980
13997
|
"string" === typeof pendingProps.precedence
|
13981
13998
|
) {
|
13982
13999
|
type = getStyleKey(pendingProps.href);
|
13983
|
-
var styles$
|
14000
|
+
var styles$241 = getResourcesFromRoot(
|
13984
14001
|
JSCompiler_inline_result
|
13985
14002
|
).hoistableStyles,
|
13986
|
-
resource$
|
13987
|
-
resource$
|
14003
|
+
resource$242 = styles$241.get(type);
|
14004
|
+
resource$242 ||
|
13988
14005
|
((JSCompiler_inline_result =
|
13989
14006
|
JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
|
13990
|
-
(resource$
|
14007
|
+
(resource$242 = {
|
13991
14008
|
type: "stylesheet",
|
13992
14009
|
instance: null,
|
13993
14010
|
count: 0,
|
13994
14011
|
state: { loading: 0, preload: null }
|
13995
14012
|
}),
|
13996
|
-
styles$
|
13997
|
-
(styles$
|
14013
|
+
styles$241.set(type, resource$242),
|
14014
|
+
(styles$241 = JSCompiler_inline_result.querySelector(
|
13998
14015
|
getStylesheetSelectorFromKey(type)
|
13999
14016
|
)) &&
|
14000
|
-
!styles$
|
14001
|
-
((resource$
|
14002
|
-
(resource$
|
14017
|
+
!styles$241._p &&
|
14018
|
+
((resource$242.instance = styles$241),
|
14019
|
+
(resource$242.state.loading = 5)),
|
14003
14020
|
preloadPropsMap.has(type) ||
|
14004
14021
|
((pendingProps = {
|
14005
14022
|
rel: "preload",
|
@@ -14012,16 +14029,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
|
14012
14029
|
referrerPolicy: pendingProps.referrerPolicy
|
14013
14030
|
}),
|
14014
14031
|
preloadPropsMap.set(type, pendingProps),
|
14015
|
-
styles$
|
14032
|
+
styles$241 ||
|
14016
14033
|
preloadStylesheet(
|
14017
14034
|
JSCompiler_inline_result,
|
14018
14035
|
type,
|
14019
14036
|
pendingProps,
|
14020
|
-
resource$
|
14037
|
+
resource$242.state
|
14021
14038
|
)));
|
14022
14039
|
if (currentProps && null === currentResource)
|
14023
14040
|
throw Error(formatProdErrorMessage(528, ""));
|
14024
|
-
return resource$
|
14041
|
+
return resource$242;
|
14025
14042
|
}
|
14026
14043
|
if (currentProps && null !== currentResource)
|
14027
14044
|
throw Error(formatProdErrorMessage(529, ""));
|
@@ -14118,37 +14135,37 @@ function acquireResource(hoistableRoot, resource, props) {
|
|
14118
14135
|
return (resource.instance = instance);
|
14119
14136
|
case "stylesheet":
|
14120
14137
|
styleProps = getStyleKey(props.href);
|
14121
|
-
var instance$
|
14138
|
+
var instance$247 = hoistableRoot.querySelector(
|
14122
14139
|
getStylesheetSelectorFromKey(styleProps)
|
14123
14140
|
);
|
14124
|
-
if (instance$
|
14141
|
+
if (instance$247)
|
14125
14142
|
return (
|
14126
14143
|
(resource.state.loading |= 4),
|
14127
|
-
(resource.instance = instance$
|
14128
|
-
markNodeAsHoistable(instance$
|
14129
|
-
instance$
|
14144
|
+
(resource.instance = instance$247),
|
14145
|
+
markNodeAsHoistable(instance$247),
|
14146
|
+
instance$247
|
14130
14147
|
);
|
14131
14148
|
instance = stylesheetPropsFromRawProps(props);
|
14132
14149
|
(styleProps = preloadPropsMap.get(styleProps)) &&
|
14133
14150
|
adoptPreloadPropsForStylesheet(instance, styleProps);
|
14134
|
-
instance$
|
14151
|
+
instance$247 = (
|
14135
14152
|
hoistableRoot.ownerDocument || hoistableRoot
|
14136
14153
|
).createElement("link");
|
14137
|
-
markNodeAsHoistable(instance$
|
14138
|
-
var linkInstance = instance$
|
14154
|
+
markNodeAsHoistable(instance$247);
|
14155
|
+
var linkInstance = instance$247;
|
14139
14156
|
linkInstance._p = new Promise(function (resolve, reject) {
|
14140
14157
|
linkInstance.onload = resolve;
|
14141
14158
|
linkInstance.onerror = reject;
|
14142
14159
|
});
|
14143
|
-
setInitialProperties(instance$
|
14160
|
+
setInitialProperties(instance$247, "link", instance);
|
14144
14161
|
resource.state.loading |= 4;
|
14145
|
-
insertStylesheet(instance$
|
14146
|
-
return (resource.instance = instance$
|
14162
|
+
insertStylesheet(instance$247, props.precedence, hoistableRoot);
|
14163
|
+
return (resource.instance = instance$247);
|
14147
14164
|
case "script":
|
14148
|
-
instance$
|
14165
|
+
instance$247 = getScriptKey(props.src);
|
14149
14166
|
if (
|
14150
14167
|
(styleProps = hoistableRoot.querySelector(
|
14151
|
-
getScriptSelectorFromKey(instance$
|
14168
|
+
getScriptSelectorFromKey(instance$247)
|
14152
14169
|
))
|
14153
14170
|
)
|
14154
14171
|
return (
|
@@ -14157,7 +14174,7 @@ function acquireResource(hoistableRoot, resource, props) {
|
|
14157
14174
|
styleProps
|
14158
14175
|
);
|
14159
14176
|
instance = props;
|
14160
|
-
if ((styleProps = preloadPropsMap.get(instance$
|
14177
|
+
if ((styleProps = preloadPropsMap.get(instance$247)))
|
14161
14178
|
(instance = assign({}, props)),
|
14162
14179
|
adoptPreloadPropsForScript(instance, styleProps);
|
14163
14180
|
hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
|
@@ -15176,16 +15193,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15176
15193
|
0 === i && attemptExplicitHydrationTarget(target);
|
15177
15194
|
}
|
15178
15195
|
};
|
15179
|
-
var isomorphicReactPackageVersion$jscomp$
|
15196
|
+
var isomorphicReactPackageVersion$jscomp$inline_1721 = React.version;
|
15180
15197
|
if (
|
15181
|
-
"19.1.0-canary-
|
15182
|
-
isomorphicReactPackageVersion$jscomp$
|
15198
|
+
"19.1.0-canary-74ea0c73-20250109" !==
|
15199
|
+
isomorphicReactPackageVersion$jscomp$inline_1721
|
15183
15200
|
)
|
15184
15201
|
throw Error(
|
15185
15202
|
formatProdErrorMessage(
|
15186
15203
|
527,
|
15187
|
-
isomorphicReactPackageVersion$jscomp$
|
15188
|
-
"19.1.0-canary-
|
15204
|
+
isomorphicReactPackageVersion$jscomp$inline_1721,
|
15205
|
+
"19.1.0-canary-74ea0c73-20250109"
|
15189
15206
|
)
|
15190
15207
|
);
|
15191
15208
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15205,24 +15222,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15205
15222
|
null === componentOrElement ? null : componentOrElement.stateNode;
|
15206
15223
|
return componentOrElement;
|
15207
15224
|
};
|
15208
|
-
var internals$jscomp$
|
15225
|
+
var internals$jscomp$inline_2190 = {
|
15209
15226
|
bundleType: 0,
|
15210
|
-
version: "19.1.0-canary-
|
15227
|
+
version: "19.1.0-canary-74ea0c73-20250109",
|
15211
15228
|
rendererPackageName: "react-dom",
|
15212
15229
|
currentDispatcherRef: ReactSharedInternals,
|
15213
|
-
reconcilerVersion: "19.1.0-canary-
|
15230
|
+
reconcilerVersion: "19.1.0-canary-74ea0c73-20250109"
|
15214
15231
|
};
|
15215
15232
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15216
|
-
var hook$jscomp$
|
15233
|
+
var hook$jscomp$inline_2191 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
15217
15234
|
if (
|
15218
|
-
!hook$jscomp$
|
15219
|
-
hook$jscomp$
|
15235
|
+
!hook$jscomp$inline_2191.isDisabled &&
|
15236
|
+
hook$jscomp$inline_2191.supportsFiber
|
15220
15237
|
)
|
15221
15238
|
try {
|
15222
|
-
(rendererID = hook$jscomp$
|
15223
|
-
internals$jscomp$
|
15239
|
+
(rendererID = hook$jscomp$inline_2191.inject(
|
15240
|
+
internals$jscomp$inline_2190
|
15224
15241
|
)),
|
15225
|
-
(injectedHook = hook$jscomp$
|
15242
|
+
(injectedHook = hook$jscomp$inline_2191);
|
15226
15243
|
} catch (err) {}
|
15227
15244
|
}
|
15228
15245
|
exports.createRoot = function (container, options) {
|
@@ -15316,4 +15333,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
15316
15333
|
listenToAllSupportedEvents(container);
|
15317
15334
|
return new ReactDOMHydrationRoot(initialChildren);
|
15318
15335
|
};
|
15319
|
-
exports.version = "19.1.0-canary-
|
15336
|
+
exports.version = "19.1.0-canary-74ea0c73-20250109";
|