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
|
@@ -5207,6 +5207,16 @@
|
|
|
5207
5207
|
: previousDebugInfo.concat(debugInfo));
|
|
5208
5208
|
return previousDebugInfo;
|
|
5209
5209
|
}
|
|
5210
|
+
function getCurrentDebugTask() {
|
|
5211
|
+
var debugInfo = currentDebugInfo;
|
|
5212
|
+
if (null != debugInfo)
|
|
5213
|
+
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
|
5214
|
+
if (null != debugInfo[i].name) {
|
|
5215
|
+
var debugTask = debugInfo[i].debugTask;
|
|
5216
|
+
if (null != debugTask) return debugTask;
|
|
5217
|
+
}
|
|
5218
|
+
return null;
|
|
5219
|
+
}
|
|
5210
5220
|
function validateFragmentProps(element, fiber, returnFiber) {
|
|
5211
5221
|
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
|
5212
5222
|
var key = keys[i];
|
|
@@ -5239,7 +5249,7 @@
|
|
|
5239
5249
|
element = element.props.ref;
|
|
5240
5250
|
workInProgress.ref = void 0 !== element ? element : null;
|
|
5241
5251
|
}
|
|
5242
|
-
function
|
|
5252
|
+
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
|
5243
5253
|
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
|
5244
5254
|
throw Error(
|
|
5245
5255
|
'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.'
|
|
@@ -5253,7 +5263,15 @@
|
|
|
5253
5263
|
"). If you meant to render a collection of children, use an array instead."
|
|
5254
5264
|
);
|
|
5255
5265
|
}
|
|
5256
|
-
function
|
|
5266
|
+
function throwOnInvalidObjectType(returnFiber, newChild) {
|
|
5267
|
+
var debugTask = getCurrentDebugTask();
|
|
5268
|
+
null !== debugTask
|
|
5269
|
+
? debugTask.run(
|
|
5270
|
+
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
|
5271
|
+
)
|
|
5272
|
+
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
|
5273
|
+
}
|
|
5274
|
+
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
|
5257
5275
|
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
|
5258
5276
|
ownerHasFunctionTypeWarning[parentName] ||
|
|
5259
5277
|
((ownerHasFunctionTypeWarning[parentName] = !0),
|
|
@@ -5275,7 +5293,15 @@
|
|
|
5275
5293
|
parentName
|
|
5276
5294
|
));
|
|
5277
5295
|
}
|
|
5278
|
-
function
|
|
5296
|
+
function warnOnFunctionType(returnFiber, invalidChild) {
|
|
5297
|
+
var debugTask = getCurrentDebugTask();
|
|
5298
|
+
null !== debugTask
|
|
5299
|
+
? debugTask.run(
|
|
5300
|
+
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
|
5301
|
+
)
|
|
5302
|
+
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
|
5303
|
+
}
|
|
5304
|
+
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
|
5279
5305
|
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
|
5280
5306
|
ownerHasSymbolTypeWarning[parentName] ||
|
|
5281
5307
|
((ownerHasSymbolTypeWarning[parentName] = !0),
|
|
@@ -5292,6 +5318,14 @@
|
|
|
5292
5318
|
parentName
|
|
5293
5319
|
));
|
|
5294
5320
|
}
|
|
5321
|
+
function warnOnSymbolType(returnFiber, invalidChild) {
|
|
5322
|
+
var debugTask = getCurrentDebugTask();
|
|
5323
|
+
null !== debugTask
|
|
5324
|
+
? debugTask.run(
|
|
5325
|
+
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
|
5326
|
+
)
|
|
5327
|
+
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
|
5328
|
+
}
|
|
5295
5329
|
function createChildReconciler(shouldTrackSideEffects) {
|
|
5296
5330
|
function deleteChild(returnFiber, childToDelete) {
|
|
5297
5331
|
if (shouldTrackSideEffects) {
|
|
@@ -9898,24 +9932,24 @@
|
|
|
9898
9932
|
return current;
|
|
9899
9933
|
}
|
|
9900
9934
|
function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
|
9901
|
-
var
|
|
9902
|
-
var
|
|
9935
|
+
var JSCompiler_object_inline_digest_2533;
|
|
9936
|
+
var JSCompiler_object_inline_stack_2534 = workInProgress.pendingProps;
|
|
9903
9937
|
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
|
|
9904
|
-
var
|
|
9938
|
+
var JSCompiler_object_inline_message_2532 = !1;
|
|
9905
9939
|
var didSuspend = 0 !== (workInProgress.flags & 128);
|
|
9906
|
-
(
|
|
9907
|
-
(
|
|
9940
|
+
(JSCompiler_object_inline_digest_2533 = didSuspend) ||
|
|
9941
|
+
(JSCompiler_object_inline_digest_2533 =
|
|
9908
9942
|
null !== current && null === current.memoizedState
|
|
9909
9943
|
? !1
|
|
9910
9944
|
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
|
|
9911
|
-
|
|
9912
|
-
((
|
|
9945
|
+
JSCompiler_object_inline_digest_2533 &&
|
|
9946
|
+
((JSCompiler_object_inline_message_2532 = !0),
|
|
9913
9947
|
(workInProgress.flags &= -129));
|
|
9914
|
-
|
|
9948
|
+
JSCompiler_object_inline_digest_2533 = 0 !== (workInProgress.flags & 32);
|
|
9915
9949
|
workInProgress.flags &= -33;
|
|
9916
9950
|
if (null === current) {
|
|
9917
9951
|
if (isHydrating) {
|
|
9918
|
-
|
|
9952
|
+
JSCompiler_object_inline_message_2532
|
|
9919
9953
|
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
|
9920
9954
|
: reuseSuspenseHandlerOnStack(workInProgress);
|
|
9921
9955
|
(current = nextHydratableInstance)
|
|
@@ -9928,18 +9962,18 @@
|
|
|
9928
9962
|
? renderLanes
|
|
9929
9963
|
: null),
|
|
9930
9964
|
null !== renderLanes &&
|
|
9931
|
-
((
|
|
9965
|
+
((JSCompiler_object_inline_digest_2533 = {
|
|
9932
9966
|
dehydrated: renderLanes,
|
|
9933
9967
|
treeContext: getSuspendedTreeContext(),
|
|
9934
9968
|
retryLane: 536870912,
|
|
9935
9969
|
hydrationErrors: null
|
|
9936
9970
|
}),
|
|
9937
9971
|
(workInProgress.memoizedState =
|
|
9938
|
-
|
|
9939
|
-
(
|
|
9972
|
+
JSCompiler_object_inline_digest_2533),
|
|
9973
|
+
(JSCompiler_object_inline_digest_2533 =
|
|
9940
9974
|
createFiberFromDehydratedFragment(renderLanes)),
|
|
9941
|
-
(
|
|
9942
|
-
(workInProgress.child =
|
|
9975
|
+
(JSCompiler_object_inline_digest_2533.return = workInProgress),
|
|
9976
|
+
(workInProgress.child = JSCompiler_object_inline_digest_2533),
|
|
9943
9977
|
(hydrationParentFiber = workInProgress),
|
|
9944
9978
|
(nextHydratableInstance = null)))
|
|
9945
9979
|
: (renderLanes = null);
|
|
@@ -9953,39 +9987,39 @@
|
|
|
9953
9987
|
: (workInProgress.lanes = 536870912);
|
|
9954
9988
|
return null;
|
|
9955
9989
|
}
|
|
9956
|
-
var nextPrimaryChildren =
|
|
9957
|
-
|
|
9958
|
-
|
|
9959
|
-
if (
|
|
9990
|
+
var nextPrimaryChildren = JSCompiler_object_inline_stack_2534.children;
|
|
9991
|
+
JSCompiler_object_inline_stack_2534 =
|
|
9992
|
+
JSCompiler_object_inline_stack_2534.fallback;
|
|
9993
|
+
if (JSCompiler_object_inline_message_2532) {
|
|
9960
9994
|
reuseSuspenseHandlerOnStack(workInProgress);
|
|
9961
9995
|
var mode = workInProgress.mode;
|
|
9962
9996
|
nextPrimaryChildren = mountWorkInProgressOffscreenFiber(
|
|
9963
9997
|
{ mode: "hidden", children: nextPrimaryChildren },
|
|
9964
9998
|
mode
|
|
9965
9999
|
);
|
|
9966
|
-
|
|
9967
|
-
|
|
10000
|
+
JSCompiler_object_inline_stack_2534 = createFiberFromFragment(
|
|
10001
|
+
JSCompiler_object_inline_stack_2534,
|
|
9968
10002
|
mode,
|
|
9969
10003
|
renderLanes,
|
|
9970
10004
|
null
|
|
9971
10005
|
);
|
|
9972
10006
|
nextPrimaryChildren.return = workInProgress;
|
|
9973
|
-
|
|
9974
|
-
nextPrimaryChildren.sibling =
|
|
10007
|
+
JSCompiler_object_inline_stack_2534.return = workInProgress;
|
|
10008
|
+
nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2534;
|
|
9975
10009
|
workInProgress.child = nextPrimaryChildren;
|
|
9976
|
-
|
|
9977
|
-
|
|
10010
|
+
JSCompiler_object_inline_stack_2534 = workInProgress.child;
|
|
10011
|
+
JSCompiler_object_inline_stack_2534.memoizedState =
|
|
9978
10012
|
mountSuspenseOffscreenState(renderLanes);
|
|
9979
|
-
|
|
10013
|
+
JSCompiler_object_inline_stack_2534.childLanes =
|
|
9980
10014
|
getRemainingWorkInPrimaryTree(
|
|
9981
10015
|
current,
|
|
9982
|
-
|
|
10016
|
+
JSCompiler_object_inline_digest_2533,
|
|
9983
10017
|
renderLanes
|
|
9984
10018
|
);
|
|
9985
10019
|
workInProgress.memoizedState = SUSPENDED_MARKER;
|
|
9986
10020
|
return bailoutOffscreenComponent(
|
|
9987
10021
|
null,
|
|
9988
|
-
|
|
10022
|
+
JSCompiler_object_inline_stack_2534
|
|
9989
10023
|
);
|
|
9990
10024
|
}
|
|
9991
10025
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
|
@@ -9996,8 +10030,8 @@
|
|
|
9996
10030
|
}
|
|
9997
10031
|
var prevState = current.memoizedState;
|
|
9998
10032
|
if (null !== prevState) {
|
|
9999
|
-
var
|
|
10000
|
-
if (null !==
|
|
10033
|
+
var JSCompiler_object_inline_componentStack_2535 = prevState.dehydrated;
|
|
10034
|
+
if (null !== JSCompiler_object_inline_componentStack_2535) {
|
|
10001
10035
|
if (didSuspend)
|
|
10002
10036
|
workInProgress.flags & 256
|
|
10003
10037
|
? (pushPrimaryTreeSuspenseHandler(workInProgress),
|
|
@@ -10014,13 +10048,13 @@
|
|
|
10014
10048
|
(workInProgress = null))
|
|
10015
10049
|
: (reuseSuspenseHandlerOnStack(workInProgress),
|
|
10016
10050
|
(nextPrimaryChildren =
|
|
10017
|
-
|
|
10051
|
+
JSCompiler_object_inline_stack_2534.fallback),
|
|
10018
10052
|
(mode = workInProgress.mode),
|
|
10019
|
-
(
|
|
10053
|
+
(JSCompiler_object_inline_stack_2534 =
|
|
10020
10054
|
mountWorkInProgressOffscreenFiber(
|
|
10021
10055
|
{
|
|
10022
10056
|
mode: "visible",
|
|
10023
|
-
children:
|
|
10057
|
+
children: JSCompiler_object_inline_stack_2534.children
|
|
10024
10058
|
},
|
|
10025
10059
|
mode
|
|
10026
10060
|
)),
|
|
@@ -10031,74 +10065,74 @@
|
|
|
10031
10065
|
null
|
|
10032
10066
|
)),
|
|
10033
10067
|
(nextPrimaryChildren.flags |= 2),
|
|
10034
|
-
(
|
|
10068
|
+
(JSCompiler_object_inline_stack_2534.return = workInProgress),
|
|
10035
10069
|
(nextPrimaryChildren.return = workInProgress),
|
|
10036
|
-
(
|
|
10070
|
+
(JSCompiler_object_inline_stack_2534.sibling =
|
|
10037
10071
|
nextPrimaryChildren),
|
|
10038
|
-
(workInProgress.child =
|
|
10072
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2534),
|
|
10039
10073
|
reconcileChildFibers(
|
|
10040
10074
|
workInProgress,
|
|
10041
10075
|
current.child,
|
|
10042
10076
|
null,
|
|
10043
10077
|
renderLanes
|
|
10044
10078
|
),
|
|
10045
|
-
(
|
|
10046
|
-
(
|
|
10079
|
+
(JSCompiler_object_inline_stack_2534 = workInProgress.child),
|
|
10080
|
+
(JSCompiler_object_inline_stack_2534.memoizedState =
|
|
10047
10081
|
mountSuspenseOffscreenState(renderLanes)),
|
|
10048
|
-
(
|
|
10082
|
+
(JSCompiler_object_inline_stack_2534.childLanes =
|
|
10049
10083
|
getRemainingWorkInPrimaryTree(
|
|
10050
10084
|
current,
|
|
10051
|
-
|
|
10085
|
+
JSCompiler_object_inline_digest_2533,
|
|
10052
10086
|
renderLanes
|
|
10053
10087
|
)),
|
|
10054
10088
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
|
10055
10089
|
(workInProgress = bailoutOffscreenComponent(
|
|
10056
10090
|
null,
|
|
10057
|
-
|
|
10091
|
+
JSCompiler_object_inline_stack_2534
|
|
10058
10092
|
)));
|
|
10059
10093
|
else if (
|
|
10060
10094
|
(pushPrimaryTreeSuspenseHandler(workInProgress),
|
|
10061
10095
|
warnIfHydrating(),
|
|
10062
10096
|
isSuspenseInstanceFallback(
|
|
10063
|
-
|
|
10097
|
+
JSCompiler_object_inline_componentStack_2535
|
|
10064
10098
|
))
|
|
10065
10099
|
) {
|
|
10066
|
-
|
|
10067
|
-
|
|
10068
|
-
|
|
10069
|
-
if (
|
|
10070
|
-
nextPrimaryChildren =
|
|
10071
|
-
var message =
|
|
10072
|
-
mode =
|
|
10073
|
-
var componentStack =
|
|
10100
|
+
JSCompiler_object_inline_digest_2533 =
|
|
10101
|
+
JSCompiler_object_inline_componentStack_2535.nextSibling &&
|
|
10102
|
+
JSCompiler_object_inline_componentStack_2535.nextSibling.dataset;
|
|
10103
|
+
if (JSCompiler_object_inline_digest_2533) {
|
|
10104
|
+
nextPrimaryChildren = JSCompiler_object_inline_digest_2533.dgst;
|
|
10105
|
+
var message = JSCompiler_object_inline_digest_2533.msg;
|
|
10106
|
+
mode = JSCompiler_object_inline_digest_2533.stck;
|
|
10107
|
+
var componentStack = JSCompiler_object_inline_digest_2533.cstck;
|
|
10074
10108
|
}
|
|
10075
|
-
|
|
10076
|
-
|
|
10077
|
-
|
|
10078
|
-
|
|
10079
|
-
nextPrimaryChildren =
|
|
10080
|
-
mode =
|
|
10109
|
+
JSCompiler_object_inline_message_2532 = message;
|
|
10110
|
+
JSCompiler_object_inline_digest_2533 = nextPrimaryChildren;
|
|
10111
|
+
JSCompiler_object_inline_stack_2534 = mode;
|
|
10112
|
+
JSCompiler_object_inline_componentStack_2535 = componentStack;
|
|
10113
|
+
nextPrimaryChildren = JSCompiler_object_inline_message_2532;
|
|
10114
|
+
mode = JSCompiler_object_inline_componentStack_2535;
|
|
10081
10115
|
nextPrimaryChildren = nextPrimaryChildren
|
|
10082
10116
|
? Error(nextPrimaryChildren)
|
|
10083
10117
|
: Error(
|
|
10084
10118
|
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
|
|
10085
10119
|
);
|
|
10086
10120
|
nextPrimaryChildren.stack =
|
|
10087
|
-
|
|
10088
|
-
nextPrimaryChildren.digest =
|
|
10089
|
-
|
|
10121
|
+
JSCompiler_object_inline_stack_2534 || "";
|
|
10122
|
+
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2533;
|
|
10123
|
+
JSCompiler_object_inline_digest_2533 =
|
|
10090
10124
|
void 0 === mode ? null : mode;
|
|
10091
|
-
|
|
10125
|
+
JSCompiler_object_inline_stack_2534 = {
|
|
10092
10126
|
value: nextPrimaryChildren,
|
|
10093
10127
|
source: null,
|
|
10094
|
-
stack:
|
|
10128
|
+
stack: JSCompiler_object_inline_digest_2533
|
|
10095
10129
|
};
|
|
10096
|
-
"string" === typeof
|
|
10130
|
+
"string" === typeof JSCompiler_object_inline_digest_2533 &&
|
|
10097
10131
|
CapturedStacks.set(
|
|
10098
10132
|
nextPrimaryChildren,
|
|
10099
|
-
|
|
10133
|
+
JSCompiler_object_inline_stack_2534
|
|
10100
10134
|
);
|
|
10101
|
-
queueHydrationError(
|
|
10135
|
+
queueHydrationError(JSCompiler_object_inline_stack_2534);
|
|
10102
10136
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
|
10103
10137
|
current,
|
|
10104
10138
|
workInProgress,
|
|
@@ -10112,35 +10146,35 @@
|
|
|
10112
10146
|
renderLanes,
|
|
10113
10147
|
!1
|
|
10114
10148
|
),
|
|
10115
|
-
(
|
|
10149
|
+
(JSCompiler_object_inline_digest_2533 =
|
|
10116
10150
|
0 !== (renderLanes & current.childLanes)),
|
|
10117
|
-
didReceiveUpdate ||
|
|
10151
|
+
didReceiveUpdate || JSCompiler_object_inline_digest_2533)
|
|
10118
10152
|
) {
|
|
10119
|
-
|
|
10153
|
+
JSCompiler_object_inline_digest_2533 = workInProgressRoot;
|
|
10120
10154
|
if (
|
|
10121
|
-
null !==
|
|
10122
|
-
((
|
|
10123
|
-
|
|
10155
|
+
null !== JSCompiler_object_inline_digest_2533 &&
|
|
10156
|
+
((JSCompiler_object_inline_stack_2534 = getBumpedLaneForHydration(
|
|
10157
|
+
JSCompiler_object_inline_digest_2533,
|
|
10124
10158
|
renderLanes
|
|
10125
10159
|
)),
|
|
10126
|
-
0 !==
|
|
10127
|
-
|
|
10160
|
+
0 !== JSCompiler_object_inline_stack_2534 &&
|
|
10161
|
+
JSCompiler_object_inline_stack_2534 !== prevState.retryLane)
|
|
10128
10162
|
)
|
|
10129
10163
|
throw (
|
|
10130
|
-
((prevState.retryLane =
|
|
10164
|
+
((prevState.retryLane = JSCompiler_object_inline_stack_2534),
|
|
10131
10165
|
enqueueConcurrentRenderForLane(
|
|
10132
10166
|
current,
|
|
10133
|
-
|
|
10167
|
+
JSCompiler_object_inline_stack_2534
|
|
10134
10168
|
),
|
|
10135
10169
|
scheduleUpdateOnFiber(
|
|
10136
|
-
|
|
10170
|
+
JSCompiler_object_inline_digest_2533,
|
|
10137
10171
|
current,
|
|
10138
|
-
|
|
10172
|
+
JSCompiler_object_inline_stack_2534
|
|
10139
10173
|
),
|
|
10140
10174
|
SelectiveHydrationException)
|
|
10141
10175
|
);
|
|
10142
10176
|
isSuspenseInstancePending(
|
|
10143
|
-
|
|
10177
|
+
JSCompiler_object_inline_componentStack_2535
|
|
10144
10178
|
) || renderDidSuspendDelayIfPossible();
|
|
10145
10179
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
|
10146
10180
|
current,
|
|
@@ -10149,14 +10183,14 @@
|
|
|
10149
10183
|
);
|
|
10150
10184
|
} else
|
|
10151
10185
|
isSuspenseInstancePending(
|
|
10152
|
-
|
|
10186
|
+
JSCompiler_object_inline_componentStack_2535
|
|
10153
10187
|
)
|
|
10154
10188
|
? ((workInProgress.flags |= 192),
|
|
10155
10189
|
(workInProgress.child = current.child),
|
|
10156
10190
|
(workInProgress = null))
|
|
10157
10191
|
: ((current = prevState.treeContext),
|
|
10158
10192
|
(nextHydratableInstance = getNextHydratable(
|
|
10159
|
-
|
|
10193
|
+
JSCompiler_object_inline_componentStack_2535.nextSibling
|
|
10160
10194
|
)),
|
|
10161
10195
|
(hydrationParentFiber = workInProgress),
|
|
10162
10196
|
(isHydrating = !0),
|
|
@@ -10168,32 +10202,32 @@
|
|
|
10168
10202
|
restoreSuspendedTreeContext(workInProgress, current),
|
|
10169
10203
|
(workInProgress = mountSuspensePrimaryChildren(
|
|
10170
10204
|
workInProgress,
|
|
10171
|
-
|
|
10205
|
+
JSCompiler_object_inline_stack_2534.children
|
|
10172
10206
|
)),
|
|
10173
10207
|
(workInProgress.flags |= 4096));
|
|
10174
10208
|
return workInProgress;
|
|
10175
10209
|
}
|
|
10176
10210
|
}
|
|
10177
|
-
if (
|
|
10211
|
+
if (JSCompiler_object_inline_message_2532)
|
|
10178
10212
|
return (
|
|
10179
10213
|
reuseSuspenseHandlerOnStack(workInProgress),
|
|
10180
|
-
(nextPrimaryChildren =
|
|
10214
|
+
(nextPrimaryChildren = JSCompiler_object_inline_stack_2534.fallback),
|
|
10181
10215
|
(mode = workInProgress.mode),
|
|
10182
10216
|
(componentStack = current.child),
|
|
10183
|
-
(
|
|
10217
|
+
(JSCompiler_object_inline_componentStack_2535 =
|
|
10184
10218
|
componentStack.sibling),
|
|
10185
|
-
(
|
|
10219
|
+
(JSCompiler_object_inline_stack_2534 = createWorkInProgress(
|
|
10186
10220
|
componentStack,
|
|
10187
10221
|
{
|
|
10188
10222
|
mode: "hidden",
|
|
10189
|
-
children:
|
|
10223
|
+
children: JSCompiler_object_inline_stack_2534.children
|
|
10190
10224
|
}
|
|
10191
10225
|
)),
|
|
10192
|
-
(
|
|
10226
|
+
(JSCompiler_object_inline_stack_2534.subtreeFlags =
|
|
10193
10227
|
componentStack.subtreeFlags & 65011712),
|
|
10194
|
-
null !==
|
|
10228
|
+
null !== JSCompiler_object_inline_componentStack_2535
|
|
10195
10229
|
? (nextPrimaryChildren = createWorkInProgress(
|
|
10196
|
-
|
|
10230
|
+
JSCompiler_object_inline_componentStack_2535,
|
|
10197
10231
|
nextPrimaryChildren
|
|
10198
10232
|
))
|
|
10199
10233
|
: ((nextPrimaryChildren = createFiberFromFragment(
|
|
@@ -10204,11 +10238,11 @@
|
|
|
10204
10238
|
)),
|
|
10205
10239
|
(nextPrimaryChildren.flags |= 2)),
|
|
10206
10240
|
(nextPrimaryChildren.return = workInProgress),
|
|
10207
|
-
(
|
|
10208
|
-
(
|
|
10209
|
-
(workInProgress.child =
|
|
10210
|
-
bailoutOffscreenComponent(null,
|
|
10211
|
-
(
|
|
10241
|
+
(JSCompiler_object_inline_stack_2534.return = workInProgress),
|
|
10242
|
+
(JSCompiler_object_inline_stack_2534.sibling = nextPrimaryChildren),
|
|
10243
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2534),
|
|
10244
|
+
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2534),
|
|
10245
|
+
(JSCompiler_object_inline_stack_2534 = workInProgress.child),
|
|
10212
10246
|
(nextPrimaryChildren = current.child.memoizedState),
|
|
10213
10247
|
null === nextPrimaryChildren
|
|
10214
10248
|
? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))
|
|
@@ -10224,18 +10258,18 @@
|
|
|
10224
10258
|
baseLanes: nextPrimaryChildren.baseLanes | renderLanes,
|
|
10225
10259
|
cachePool: mode
|
|
10226
10260
|
})),
|
|
10227
|
-
(
|
|
10261
|
+
(JSCompiler_object_inline_stack_2534.memoizedState =
|
|
10228
10262
|
nextPrimaryChildren),
|
|
10229
|
-
(
|
|
10263
|
+
(JSCompiler_object_inline_stack_2534.childLanes =
|
|
10230
10264
|
getRemainingWorkInPrimaryTree(
|
|
10231
10265
|
current,
|
|
10232
|
-
|
|
10266
|
+
JSCompiler_object_inline_digest_2533,
|
|
10233
10267
|
renderLanes
|
|
10234
10268
|
)),
|
|
10235
10269
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
|
10236
10270
|
bailoutOffscreenComponent(
|
|
10237
10271
|
current.child,
|
|
10238
|
-
|
|
10272
|
+
JSCompiler_object_inline_stack_2534
|
|
10239
10273
|
)
|
|
10240
10274
|
);
|
|
10241
10275
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
|
@@ -10243,16 +10277,16 @@
|
|
|
10243
10277
|
current = renderLanes.sibling;
|
|
10244
10278
|
renderLanes = createWorkInProgress(renderLanes, {
|
|
10245
10279
|
mode: "visible",
|
|
10246
|
-
children:
|
|
10280
|
+
children: JSCompiler_object_inline_stack_2534.children
|
|
10247
10281
|
});
|
|
10248
10282
|
renderLanes.return = workInProgress;
|
|
10249
10283
|
renderLanes.sibling = null;
|
|
10250
10284
|
null !== current &&
|
|
10251
|
-
((
|
|
10252
|
-
null ===
|
|
10285
|
+
((JSCompiler_object_inline_digest_2533 = workInProgress.deletions),
|
|
10286
|
+
null === JSCompiler_object_inline_digest_2533
|
|
10253
10287
|
? ((workInProgress.deletions = [current]),
|
|
10254
10288
|
(workInProgress.flags |= 16))
|
|
10255
|
-
:
|
|
10289
|
+
: JSCompiler_object_inline_digest_2533.push(current));
|
|
10256
10290
|
workInProgress.child = renderLanes;
|
|
10257
10291
|
workInProgress.memoizedState = null;
|
|
10258
10292
|
return renderLanes;
|
|
@@ -21216,7 +21250,7 @@
|
|
|
21216
21250
|
);
|
|
21217
21251
|
tag = ConcurrentMode;
|
|
21218
21252
|
!0 === isStrictMode && (tag |= StrictLegacyMode | StrictEffectsMode);
|
|
21219
|
-
|
|
21253
|
+
tag |= ProfileMode;
|
|
21220
21254
|
isStrictMode = createFiber(3, null, null, tag);
|
|
21221
21255
|
containerInfo.current = isStrictMode;
|
|
21222
21256
|
isStrictMode.stateNode = containerInfo;
|
|
@@ -25577,11 +25611,11 @@
|
|
|
25577
25611
|
};
|
|
25578
25612
|
(function () {
|
|
25579
25613
|
var isomorphicReactPackageVersion = React.version;
|
|
25580
|
-
if ("19.2.0-canary-
|
|
25614
|
+
if ("19.2.0-canary-8a8e9a7e-20250912" !== isomorphicReactPackageVersion)
|
|
25581
25615
|
throw Error(
|
|
25582
25616
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
25583
25617
|
(isomorphicReactPackageVersion +
|
|
25584
|
-
"\n - react-dom: 19.2.0-canary-
|
|
25618
|
+
"\n - react-dom: 19.2.0-canary-8a8e9a7e-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
25585
25619
|
);
|
|
25586
25620
|
})();
|
|
25587
25621
|
("function" === typeof Map &&
|
|
@@ -25618,10 +25652,10 @@
|
|
|
25618
25652
|
!(function () {
|
|
25619
25653
|
var internals = {
|
|
25620
25654
|
bundleType: 1,
|
|
25621
|
-
version: "19.2.0-canary-
|
|
25655
|
+
version: "19.2.0-canary-8a8e9a7e-20250912",
|
|
25622
25656
|
rendererPackageName: "react-dom",
|
|
25623
25657
|
currentDispatcherRef: ReactSharedInternals,
|
|
25624
|
-
reconcilerVersion: "19.2.0-canary-
|
|
25658
|
+
reconcilerVersion: "19.2.0-canary-8a8e9a7e-20250912"
|
|
25625
25659
|
};
|
|
25626
25660
|
internals.overrideHookState = overrideHookState;
|
|
25627
25661
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
|
@@ -25759,7 +25793,7 @@
|
|
|
25759
25793
|
listenToAllSupportedEvents(container);
|
|
25760
25794
|
return new ReactDOMHydrationRoot(initialChildren);
|
|
25761
25795
|
};
|
|
25762
|
-
exports.version = "19.2.0-canary-
|
|
25796
|
+
exports.version = "19.2.0-canary-8a8e9a7e-20250912";
|
|
25763
25797
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
25764
25798
|
"function" ===
|
|
25765
25799
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|