react-dom 19.2.0-canary-f3a80361-20250911 → 19.2.0-canary-8a8e9a7e-20250912
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 +143 -109
- package/cjs/react-dom-client.production.js +32 -32
- package/cjs/react-dom-profiling.development.js +143 -109
- package/cjs/react-dom-profiling.profiling.js +32 -32
- package/cjs/react-dom-server-legacy.browser.development.js +1 -1
- package/cjs/react-dom-server-legacy.browser.production.js +1 -1
- package/cjs/react-dom-server-legacy.node.development.js +1 -1
- package/cjs/react-dom-server-legacy.node.production.js +1 -1
- package/cjs/react-dom-server.browser.development.js +3 -3
- package/cjs/react-dom-server.browser.production.js +3 -3
- package/cjs/react-dom-server.bun.development.js +3 -3
- package/cjs/react-dom-server.bun.production.js +3 -3
- package/cjs/react-dom-server.edge.development.js +3 -3
- package/cjs/react-dom-server.edge.production.js +3 -3
- package/cjs/react-dom-server.node.development.js +3 -3
- package/cjs/react-dom-server.node.production.js +3 -3
- 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
|
@@ -5215,6 +5215,16 @@
|
|
|
5215
5215
|
: previousDebugInfo.concat(debugInfo));
|
|
5216
5216
|
return previousDebugInfo;
|
|
5217
5217
|
}
|
|
5218
|
+
function getCurrentDebugTask() {
|
|
5219
|
+
var debugInfo = currentDebugInfo;
|
|
5220
|
+
if (null != debugInfo)
|
|
5221
|
+
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
|
5222
|
+
if (null != debugInfo[i].name) {
|
|
5223
|
+
var debugTask = debugInfo[i].debugTask;
|
|
5224
|
+
if (null != debugTask) return debugTask;
|
|
5225
|
+
}
|
|
5226
|
+
return null;
|
|
5227
|
+
}
|
|
5218
5228
|
function validateFragmentProps(element, fiber, returnFiber) {
|
|
5219
5229
|
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
|
5220
5230
|
var key = keys[i];
|
|
@@ -5247,7 +5257,7 @@
|
|
|
5247
5257
|
element = element.props.ref;
|
|
5248
5258
|
workInProgress.ref = void 0 !== element ? element : null;
|
|
5249
5259
|
}
|
|
5250
|
-
function
|
|
5260
|
+
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
|
5251
5261
|
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
|
5252
5262
|
throw Error(
|
|
5253
5263
|
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
|
@@ -5261,7 +5271,15 @@
|
|
|
5261
5271
|
"). If you meant to render a collection of children, use an array instead."
|
|
5262
5272
|
);
|
|
5263
5273
|
}
|
|
5264
|
-
function
|
|
5274
|
+
function throwOnInvalidObjectType(returnFiber, newChild) {
|
|
5275
|
+
var debugTask = getCurrentDebugTask();
|
|
5276
|
+
null !== debugTask
|
|
5277
|
+
? debugTask.run(
|
|
5278
|
+
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
|
5279
|
+
)
|
|
5280
|
+
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
|
5281
|
+
}
|
|
5282
|
+
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
|
5265
5283
|
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
|
5266
5284
|
ownerHasFunctionTypeWarning[parentName] ||
|
|
5267
5285
|
((ownerHasFunctionTypeWarning[parentName] = !0),
|
|
@@ -5283,7 +5301,15 @@
|
|
|
5283
5301
|
parentName
|
|
5284
5302
|
));
|
|
5285
5303
|
}
|
|
5286
|
-
function
|
|
5304
|
+
function warnOnFunctionType(returnFiber, invalidChild) {
|
|
5305
|
+
var debugTask = getCurrentDebugTask();
|
|
5306
|
+
null !== debugTask
|
|
5307
|
+
? debugTask.run(
|
|
5308
|
+
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
|
5309
|
+
)
|
|
5310
|
+
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
|
5311
|
+
}
|
|
5312
|
+
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
|
5287
5313
|
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
|
5288
5314
|
ownerHasSymbolTypeWarning[parentName] ||
|
|
5289
5315
|
((ownerHasSymbolTypeWarning[parentName] = !0),
|
|
@@ -5300,6 +5326,14 @@
|
|
|
5300
5326
|
parentName
|
|
5301
5327
|
));
|
|
5302
5328
|
}
|
|
5329
|
+
function warnOnSymbolType(returnFiber, invalidChild) {
|
|
5330
|
+
var debugTask = getCurrentDebugTask();
|
|
5331
|
+
null !== debugTask
|
|
5332
|
+
? debugTask.run(
|
|
5333
|
+
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
|
5334
|
+
)
|
|
5335
|
+
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
|
5336
|
+
}
|
|
5303
5337
|
function createChildReconciler(shouldTrackSideEffects) {
|
|
5304
5338
|
function deleteChild(returnFiber, childToDelete) {
|
|
5305
5339
|
if (shouldTrackSideEffects) {
|
|
@@ -9906,24 +9940,24 @@
|
|
|
9906
9940
|
return current;
|
|
9907
9941
|
}
|
|
9908
9942
|
function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
|
9909
|
-
var
|
|
9910
|
-
var
|
|
9943
|
+
var JSCompiler_object_inline_digest_2538;
|
|
9944
|
+
var JSCompiler_object_inline_stack_2539 = workInProgress.pendingProps;
|
|
9911
9945
|
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
|
|
9912
|
-
var
|
|
9946
|
+
var JSCompiler_object_inline_message_2537 = !1;
|
|
9913
9947
|
var didSuspend = 0 !== (workInProgress.flags & 128);
|
|
9914
|
-
(
|
|
9915
|
-
(
|
|
9948
|
+
(JSCompiler_object_inline_digest_2538 = didSuspend) ||
|
|
9949
|
+
(JSCompiler_object_inline_digest_2538 =
|
|
9916
9950
|
null !== current && null === current.memoizedState
|
|
9917
9951
|
? !1
|
|
9918
9952
|
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
|
|
9919
|
-
|
|
9920
|
-
((
|
|
9953
|
+
JSCompiler_object_inline_digest_2538 &&
|
|
9954
|
+
((JSCompiler_object_inline_message_2537 = !0),
|
|
9921
9955
|
(workInProgress.flags &= -129));
|
|
9922
|
-
|
|
9956
|
+
JSCompiler_object_inline_digest_2538 = 0 !== (workInProgress.flags & 32);
|
|
9923
9957
|
workInProgress.flags &= -33;
|
|
9924
9958
|
if (null === current) {
|
|
9925
9959
|
if (isHydrating) {
|
|
9926
|
-
|
|
9960
|
+
JSCompiler_object_inline_message_2537
|
|
9927
9961
|
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
|
9928
9962
|
: reuseSuspenseHandlerOnStack(workInProgress);
|
|
9929
9963
|
(current = nextHydratableInstance)
|
|
@@ -9936,18 +9970,18 @@
|
|
|
9936
9970
|
? renderLanes
|
|
9937
9971
|
: null),
|
|
9938
9972
|
null !== renderLanes &&
|
|
9939
|
-
((
|
|
9973
|
+
((JSCompiler_object_inline_digest_2538 = {
|
|
9940
9974
|
dehydrated: renderLanes,
|
|
9941
9975
|
treeContext: getSuspendedTreeContext(),
|
|
9942
9976
|
retryLane: 536870912,
|
|
9943
9977
|
hydrationErrors: null
|
|
9944
9978
|
}),
|
|
9945
9979
|
(workInProgress.memoizedState =
|
|
9946
|
-
|
|
9947
|
-
(
|
|
9980
|
+
JSCompiler_object_inline_digest_2538),
|
|
9981
|
+
(JSCompiler_object_inline_digest_2538 =
|
|
9948
9982
|
createFiberFromDehydratedFragment(renderLanes)),
|
|
9949
|
-
(
|
|
9950
|
-
(workInProgress.child =
|
|
9983
|
+
(JSCompiler_object_inline_digest_2538.return = workInProgress),
|
|
9984
|
+
(workInProgress.child = JSCompiler_object_inline_digest_2538),
|
|
9951
9985
|
(hydrationParentFiber = workInProgress),
|
|
9952
9986
|
(nextHydratableInstance = null)))
|
|
9953
9987
|
: (renderLanes = null);
|
|
@@ -9961,39 +9995,39 @@
|
|
|
9961
9995
|
: (workInProgress.lanes = 536870912);
|
|
9962
9996
|
return null;
|
|
9963
9997
|
}
|
|
9964
|
-
var nextPrimaryChildren =
|
|
9965
|
-
|
|
9966
|
-
|
|
9967
|
-
if (
|
|
9998
|
+
var nextPrimaryChildren = JSCompiler_object_inline_stack_2539.children;
|
|
9999
|
+
JSCompiler_object_inline_stack_2539 =
|
|
10000
|
+
JSCompiler_object_inline_stack_2539.fallback;
|
|
10001
|
+
if (JSCompiler_object_inline_message_2537) {
|
|
9968
10002
|
reuseSuspenseHandlerOnStack(workInProgress);
|
|
9969
10003
|
var mode = workInProgress.mode;
|
|
9970
10004
|
nextPrimaryChildren = mountWorkInProgressOffscreenFiber(
|
|
9971
10005
|
{ mode: "hidden", children: nextPrimaryChildren },
|
|
9972
10006
|
mode
|
|
9973
10007
|
);
|
|
9974
|
-
|
|
9975
|
-
|
|
10008
|
+
JSCompiler_object_inline_stack_2539 = createFiberFromFragment(
|
|
10009
|
+
JSCompiler_object_inline_stack_2539,
|
|
9976
10010
|
mode,
|
|
9977
10011
|
renderLanes,
|
|
9978
10012
|
null
|
|
9979
10013
|
);
|
|
9980
10014
|
nextPrimaryChildren.return = workInProgress;
|
|
9981
|
-
|
|
9982
|
-
nextPrimaryChildren.sibling =
|
|
10015
|
+
JSCompiler_object_inline_stack_2539.return = workInProgress;
|
|
10016
|
+
nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2539;
|
|
9983
10017
|
workInProgress.child = nextPrimaryChildren;
|
|
9984
|
-
|
|
9985
|
-
|
|
10018
|
+
JSCompiler_object_inline_stack_2539 = workInProgress.child;
|
|
10019
|
+
JSCompiler_object_inline_stack_2539.memoizedState =
|
|
9986
10020
|
mountSuspenseOffscreenState(renderLanes);
|
|
9987
|
-
|
|
10021
|
+
JSCompiler_object_inline_stack_2539.childLanes =
|
|
9988
10022
|
getRemainingWorkInPrimaryTree(
|
|
9989
10023
|
current,
|
|
9990
|
-
|
|
10024
|
+
JSCompiler_object_inline_digest_2538,
|
|
9991
10025
|
renderLanes
|
|
9992
10026
|
);
|
|
9993
10027
|
workInProgress.memoizedState = SUSPENDED_MARKER;
|
|
9994
10028
|
return bailoutOffscreenComponent(
|
|
9995
10029
|
null,
|
|
9996
|
-
|
|
10030
|
+
JSCompiler_object_inline_stack_2539
|
|
9997
10031
|
);
|
|
9998
10032
|
}
|
|
9999
10033
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
|
@@ -10004,8 +10038,8 @@
|
|
|
10004
10038
|
}
|
|
10005
10039
|
var prevState = current.memoizedState;
|
|
10006
10040
|
if (null !== prevState) {
|
|
10007
|
-
var
|
|
10008
|
-
if (null !==
|
|
10041
|
+
var JSCompiler_object_inline_componentStack_2540 = prevState.dehydrated;
|
|
10042
|
+
if (null !== JSCompiler_object_inline_componentStack_2540) {
|
|
10009
10043
|
if (didSuspend)
|
|
10010
10044
|
workInProgress.flags & 256
|
|
10011
10045
|
? (pushPrimaryTreeSuspenseHandler(workInProgress),
|
|
@@ -10022,13 +10056,13 @@
|
|
|
10022
10056
|
(workInProgress = null))
|
|
10023
10057
|
: (reuseSuspenseHandlerOnStack(workInProgress),
|
|
10024
10058
|
(nextPrimaryChildren =
|
|
10025
|
-
|
|
10059
|
+
JSCompiler_object_inline_stack_2539.fallback),
|
|
10026
10060
|
(mode = workInProgress.mode),
|
|
10027
|
-
(
|
|
10061
|
+
(JSCompiler_object_inline_stack_2539 =
|
|
10028
10062
|
mountWorkInProgressOffscreenFiber(
|
|
10029
10063
|
{
|
|
10030
10064
|
mode: "visible",
|
|
10031
|
-
children:
|
|
10065
|
+
children: JSCompiler_object_inline_stack_2539.children
|
|
10032
10066
|
},
|
|
10033
10067
|
mode
|
|
10034
10068
|
)),
|
|
@@ -10039,74 +10073,74 @@
|
|
|
10039
10073
|
null
|
|
10040
10074
|
)),
|
|
10041
10075
|
(nextPrimaryChildren.flags |= 2),
|
|
10042
|
-
(
|
|
10076
|
+
(JSCompiler_object_inline_stack_2539.return = workInProgress),
|
|
10043
10077
|
(nextPrimaryChildren.return = workInProgress),
|
|
10044
|
-
(
|
|
10078
|
+
(JSCompiler_object_inline_stack_2539.sibling =
|
|
10045
10079
|
nextPrimaryChildren),
|
|
10046
|
-
(workInProgress.child =
|
|
10080
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2539),
|
|
10047
10081
|
reconcileChildFibers(
|
|
10048
10082
|
workInProgress,
|
|
10049
10083
|
current.child,
|
|
10050
10084
|
null,
|
|
10051
10085
|
renderLanes
|
|
10052
10086
|
),
|
|
10053
|
-
(
|
|
10054
|
-
(
|
|
10087
|
+
(JSCompiler_object_inline_stack_2539 = workInProgress.child),
|
|
10088
|
+
(JSCompiler_object_inline_stack_2539.memoizedState =
|
|
10055
10089
|
mountSuspenseOffscreenState(renderLanes)),
|
|
10056
|
-
(
|
|
10090
|
+
(JSCompiler_object_inline_stack_2539.childLanes =
|
|
10057
10091
|
getRemainingWorkInPrimaryTree(
|
|
10058
10092
|
current,
|
|
10059
|
-
|
|
10093
|
+
JSCompiler_object_inline_digest_2538,
|
|
10060
10094
|
renderLanes
|
|
10061
10095
|
)),
|
|
10062
10096
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
|
10063
10097
|
(workInProgress = bailoutOffscreenComponent(
|
|
10064
10098
|
null,
|
|
10065
|
-
|
|
10099
|
+
JSCompiler_object_inline_stack_2539
|
|
10066
10100
|
)));
|
|
10067
10101
|
else if (
|
|
10068
10102
|
(pushPrimaryTreeSuspenseHandler(workInProgress),
|
|
10069
10103
|
warnIfHydrating(),
|
|
10070
10104
|
isSuspenseInstanceFallback(
|
|
10071
|
-
|
|
10105
|
+
JSCompiler_object_inline_componentStack_2540
|
|
10072
10106
|
))
|
|
10073
10107
|
) {
|
|
10074
|
-
|
|
10075
|
-
|
|
10076
|
-
|
|
10077
|
-
if (
|
|
10078
|
-
nextPrimaryChildren =
|
|
10079
|
-
var message =
|
|
10080
|
-
mode =
|
|
10081
|
-
var componentStack =
|
|
10108
|
+
JSCompiler_object_inline_digest_2538 =
|
|
10109
|
+
JSCompiler_object_inline_componentStack_2540.nextSibling &&
|
|
10110
|
+
JSCompiler_object_inline_componentStack_2540.nextSibling.dataset;
|
|
10111
|
+
if (JSCompiler_object_inline_digest_2538) {
|
|
10112
|
+
nextPrimaryChildren = JSCompiler_object_inline_digest_2538.dgst;
|
|
10113
|
+
var message = JSCompiler_object_inline_digest_2538.msg;
|
|
10114
|
+
mode = JSCompiler_object_inline_digest_2538.stck;
|
|
10115
|
+
var componentStack = JSCompiler_object_inline_digest_2538.cstck;
|
|
10082
10116
|
}
|
|
10083
|
-
|
|
10084
|
-
|
|
10085
|
-
|
|
10086
|
-
|
|
10087
|
-
nextPrimaryChildren =
|
|
10088
|
-
mode =
|
|
10117
|
+
JSCompiler_object_inline_message_2537 = message;
|
|
10118
|
+
JSCompiler_object_inline_digest_2538 = nextPrimaryChildren;
|
|
10119
|
+
JSCompiler_object_inline_stack_2539 = mode;
|
|
10120
|
+
JSCompiler_object_inline_componentStack_2540 = componentStack;
|
|
10121
|
+
nextPrimaryChildren = JSCompiler_object_inline_message_2537;
|
|
10122
|
+
mode = JSCompiler_object_inline_componentStack_2540;
|
|
10089
10123
|
nextPrimaryChildren = nextPrimaryChildren
|
|
10090
10124
|
? Error(nextPrimaryChildren)
|
|
10091
10125
|
: Error(
|
|
10092
10126
|
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
|
|
10093
10127
|
);
|
|
10094
10128
|
nextPrimaryChildren.stack =
|
|
10095
|
-
|
|
10096
|
-
nextPrimaryChildren.digest =
|
|
10097
|
-
|
|
10129
|
+
JSCompiler_object_inline_stack_2539 || "";
|
|
10130
|
+
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2538;
|
|
10131
|
+
JSCompiler_object_inline_digest_2538 =
|
|
10098
10132
|
void 0 === mode ? null : mode;
|
|
10099
|
-
|
|
10133
|
+
JSCompiler_object_inline_stack_2539 = {
|
|
10100
10134
|
value: nextPrimaryChildren,
|
|
10101
10135
|
source: null,
|
|
10102
|
-
stack:
|
|
10136
|
+
stack: JSCompiler_object_inline_digest_2538
|
|
10103
10137
|
};
|
|
10104
|
-
"string" === typeof
|
|
10138
|
+
"string" === typeof JSCompiler_object_inline_digest_2538 &&
|
|
10105
10139
|
CapturedStacks.set(
|
|
10106
10140
|
nextPrimaryChildren,
|
|
10107
|
-
|
|
10141
|
+
JSCompiler_object_inline_stack_2539
|
|
10108
10142
|
);
|
|
10109
|
-
queueHydrationError(
|
|
10143
|
+
queueHydrationError(JSCompiler_object_inline_stack_2539);
|
|
10110
10144
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
|
10111
10145
|
current,
|
|
10112
10146
|
workInProgress,
|
|
@@ -10120,35 +10154,35 @@
|
|
|
10120
10154
|
renderLanes,
|
|
10121
10155
|
!1
|
|
10122
10156
|
),
|
|
10123
|
-
(
|
|
10157
|
+
(JSCompiler_object_inline_digest_2538 =
|
|
10124
10158
|
0 !== (renderLanes & current.childLanes)),
|
|
10125
|
-
didReceiveUpdate ||
|
|
10159
|
+
didReceiveUpdate || JSCompiler_object_inline_digest_2538)
|
|
10126
10160
|
) {
|
|
10127
|
-
|
|
10161
|
+
JSCompiler_object_inline_digest_2538 = workInProgressRoot;
|
|
10128
10162
|
if (
|
|
10129
|
-
null !==
|
|
10130
|
-
((
|
|
10131
|
-
|
|
10163
|
+
null !== JSCompiler_object_inline_digest_2538 &&
|
|
10164
|
+
((JSCompiler_object_inline_stack_2539 = getBumpedLaneForHydration(
|
|
10165
|
+
JSCompiler_object_inline_digest_2538,
|
|
10132
10166
|
renderLanes
|
|
10133
10167
|
)),
|
|
10134
|
-
0 !==
|
|
10135
|
-
|
|
10168
|
+
0 !== JSCompiler_object_inline_stack_2539 &&
|
|
10169
|
+
JSCompiler_object_inline_stack_2539 !== prevState.retryLane)
|
|
10136
10170
|
)
|
|
10137
10171
|
throw (
|
|
10138
|
-
((prevState.retryLane =
|
|
10172
|
+
((prevState.retryLane = JSCompiler_object_inline_stack_2539),
|
|
10139
10173
|
enqueueConcurrentRenderForLane(
|
|
10140
10174
|
current,
|
|
10141
|
-
|
|
10175
|
+
JSCompiler_object_inline_stack_2539
|
|
10142
10176
|
),
|
|
10143
10177
|
scheduleUpdateOnFiber(
|
|
10144
|
-
|
|
10178
|
+
JSCompiler_object_inline_digest_2538,
|
|
10145
10179
|
current,
|
|
10146
|
-
|
|
10180
|
+
JSCompiler_object_inline_stack_2539
|
|
10147
10181
|
),
|
|
10148
10182
|
SelectiveHydrationException)
|
|
10149
10183
|
);
|
|
10150
10184
|
isSuspenseInstancePending(
|
|
10151
|
-
|
|
10185
|
+
JSCompiler_object_inline_componentStack_2540
|
|
10152
10186
|
) || renderDidSuspendDelayIfPossible();
|
|
10153
10187
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
|
10154
10188
|
current,
|
|
@@ -10157,14 +10191,14 @@
|
|
|
10157
10191
|
);
|
|
10158
10192
|
} else
|
|
10159
10193
|
isSuspenseInstancePending(
|
|
10160
|
-
|
|
10194
|
+
JSCompiler_object_inline_componentStack_2540
|
|
10161
10195
|
)
|
|
10162
10196
|
? ((workInProgress.flags |= 192),
|
|
10163
10197
|
(workInProgress.child = current.child),
|
|
10164
10198
|
(workInProgress = null))
|
|
10165
10199
|
: ((current = prevState.treeContext),
|
|
10166
10200
|
(nextHydratableInstance = getNextHydratable(
|
|
10167
|
-
|
|
10201
|
+
JSCompiler_object_inline_componentStack_2540.nextSibling
|
|
10168
10202
|
)),
|
|
10169
10203
|
(hydrationParentFiber = workInProgress),
|
|
10170
10204
|
(isHydrating = !0),
|
|
@@ -10176,32 +10210,32 @@
|
|
|
10176
10210
|
restoreSuspendedTreeContext(workInProgress, current),
|
|
10177
10211
|
(workInProgress = mountSuspensePrimaryChildren(
|
|
10178
10212
|
workInProgress,
|
|
10179
|
-
|
|
10213
|
+
JSCompiler_object_inline_stack_2539.children
|
|
10180
10214
|
)),
|
|
10181
10215
|
(workInProgress.flags |= 4096));
|
|
10182
10216
|
return workInProgress;
|
|
10183
10217
|
}
|
|
10184
10218
|
}
|
|
10185
|
-
if (
|
|
10219
|
+
if (JSCompiler_object_inline_message_2537)
|
|
10186
10220
|
return (
|
|
10187
10221
|
reuseSuspenseHandlerOnStack(workInProgress),
|
|
10188
|
-
(nextPrimaryChildren =
|
|
10222
|
+
(nextPrimaryChildren = JSCompiler_object_inline_stack_2539.fallback),
|
|
10189
10223
|
(mode = workInProgress.mode),
|
|
10190
10224
|
(componentStack = current.child),
|
|
10191
|
-
(
|
|
10225
|
+
(JSCompiler_object_inline_componentStack_2540 =
|
|
10192
10226
|
componentStack.sibling),
|
|
10193
|
-
(
|
|
10227
|
+
(JSCompiler_object_inline_stack_2539 = createWorkInProgress(
|
|
10194
10228
|
componentStack,
|
|
10195
10229
|
{
|
|
10196
10230
|
mode: "hidden",
|
|
10197
|
-
children:
|
|
10231
|
+
children: JSCompiler_object_inline_stack_2539.children
|
|
10198
10232
|
}
|
|
10199
10233
|
)),
|
|
10200
|
-
(
|
|
10234
|
+
(JSCompiler_object_inline_stack_2539.subtreeFlags =
|
|
10201
10235
|
componentStack.subtreeFlags & 65011712),
|
|
10202
|
-
null !==
|
|
10236
|
+
null !== JSCompiler_object_inline_componentStack_2540
|
|
10203
10237
|
? (nextPrimaryChildren = createWorkInProgress(
|
|
10204
|
-
|
|
10238
|
+
JSCompiler_object_inline_componentStack_2540,
|
|
10205
10239
|
nextPrimaryChildren
|
|
10206
10240
|
))
|
|
10207
10241
|
: ((nextPrimaryChildren = createFiberFromFragment(
|
|
@@ -10212,11 +10246,11 @@
|
|
|
10212
10246
|
)),
|
|
10213
10247
|
(nextPrimaryChildren.flags |= 2)),
|
|
10214
10248
|
(nextPrimaryChildren.return = workInProgress),
|
|
10215
|
-
(
|
|
10216
|
-
(
|
|
10217
|
-
(workInProgress.child =
|
|
10218
|
-
bailoutOffscreenComponent(null,
|
|
10219
|
-
(
|
|
10249
|
+
(JSCompiler_object_inline_stack_2539.return = workInProgress),
|
|
10250
|
+
(JSCompiler_object_inline_stack_2539.sibling = nextPrimaryChildren),
|
|
10251
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2539),
|
|
10252
|
+
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2539),
|
|
10253
|
+
(JSCompiler_object_inline_stack_2539 = workInProgress.child),
|
|
10220
10254
|
(nextPrimaryChildren = current.child.memoizedState),
|
|
10221
10255
|
null === nextPrimaryChildren
|
|
10222
10256
|
? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))
|
|
@@ -10232,18 +10266,18 @@
|
|
|
10232
10266
|
baseLanes: nextPrimaryChildren.baseLanes | renderLanes,
|
|
10233
10267
|
cachePool: mode
|
|
10234
10268
|
})),
|
|
10235
|
-
(
|
|
10269
|
+
(JSCompiler_object_inline_stack_2539.memoizedState =
|
|
10236
10270
|
nextPrimaryChildren),
|
|
10237
|
-
(
|
|
10271
|
+
(JSCompiler_object_inline_stack_2539.childLanes =
|
|
10238
10272
|
getRemainingWorkInPrimaryTree(
|
|
10239
10273
|
current,
|
|
10240
|
-
|
|
10274
|
+
JSCompiler_object_inline_digest_2538,
|
|
10241
10275
|
renderLanes
|
|
10242
10276
|
)),
|
|
10243
10277
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
|
10244
10278
|
bailoutOffscreenComponent(
|
|
10245
10279
|
current.child,
|
|
10246
|
-
|
|
10280
|
+
JSCompiler_object_inline_stack_2539
|
|
10247
10281
|
)
|
|
10248
10282
|
);
|
|
10249
10283
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
|
@@ -10251,16 +10285,16 @@
|
|
|
10251
10285
|
current = renderLanes.sibling;
|
|
10252
10286
|
renderLanes = createWorkInProgress(renderLanes, {
|
|
10253
10287
|
mode: "visible",
|
|
10254
|
-
children:
|
|
10288
|
+
children: JSCompiler_object_inline_stack_2539.children
|
|
10255
10289
|
});
|
|
10256
10290
|
renderLanes.return = workInProgress;
|
|
10257
10291
|
renderLanes.sibling = null;
|
|
10258
10292
|
null !== current &&
|
|
10259
|
-
((
|
|
10260
|
-
null ===
|
|
10293
|
+
((JSCompiler_object_inline_digest_2538 = workInProgress.deletions),
|
|
10294
|
+
null === JSCompiler_object_inline_digest_2538
|
|
10261
10295
|
? ((workInProgress.deletions = [current]),
|
|
10262
10296
|
(workInProgress.flags |= 16))
|
|
10263
|
-
:
|
|
10297
|
+
: JSCompiler_object_inline_digest_2538.push(current));
|
|
10264
10298
|
workInProgress.child = renderLanes;
|
|
10265
10299
|
workInProgress.memoizedState = null;
|
|
10266
10300
|
return renderLanes;
|
|
@@ -21224,7 +21258,7 @@
|
|
|
21224
21258
|
);
|
|
21225
21259
|
tag = ConcurrentMode;
|
|
21226
21260
|
!0 === isStrictMode && (tag |= StrictLegacyMode | StrictEffectsMode);
|
|
21227
|
-
|
|
21261
|
+
tag |= ProfileMode;
|
|
21228
21262
|
isStrictMode = createFiber(3, null, null, tag);
|
|
21229
21263
|
containerInfo.current = isStrictMode;
|
|
21230
21264
|
isStrictMode.stateNode = containerInfo;
|
|
@@ -25629,11 +25663,11 @@
|
|
|
25629
25663
|
};
|
|
25630
25664
|
(function () {
|
|
25631
25665
|
var isomorphicReactPackageVersion = React.version;
|
|
25632
|
-
if ("19.2.0-canary-
|
|
25666
|
+
if ("19.2.0-canary-8a8e9a7e-20250912" !== isomorphicReactPackageVersion)
|
|
25633
25667
|
throw Error(
|
|
25634
25668
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
25635
25669
|
(isomorphicReactPackageVersion +
|
|
25636
|
-
"\n - react-dom: 19.2.0-canary-
|
|
25670
|
+
"\n - react-dom: 19.2.0-canary-8a8e9a7e-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
25637
25671
|
);
|
|
25638
25672
|
})();
|
|
25639
25673
|
("function" === typeof Map &&
|
|
@@ -25670,10 +25704,10 @@
|
|
|
25670
25704
|
!(function () {
|
|
25671
25705
|
var internals = {
|
|
25672
25706
|
bundleType: 1,
|
|
25673
|
-
version: "19.2.0-canary-
|
|
25707
|
+
version: "19.2.0-canary-8a8e9a7e-20250912",
|
|
25674
25708
|
rendererPackageName: "react-dom",
|
|
25675
25709
|
currentDispatcherRef: ReactSharedInternals,
|
|
25676
|
-
reconcilerVersion: "19.2.0-canary-
|
|
25710
|
+
reconcilerVersion: "19.2.0-canary-8a8e9a7e-20250912"
|
|
25677
25711
|
};
|
|
25678
25712
|
internals.overrideHookState = overrideHookState;
|
|
25679
25713
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
|
@@ -26141,7 +26175,7 @@
|
|
|
26141
26175
|
exports.useFormStatus = function () {
|
|
26142
26176
|
return resolveDispatcher().useHostTransitionStatus();
|
|
26143
26177
|
};
|
|
26144
|
-
exports.version = "19.2.0-canary-
|
|
26178
|
+
exports.version = "19.2.0-canary-8a8e9a7e-20250912";
|
|
26145
26179
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
26146
26180
|
"function" ===
|
|
26147
26181
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|