react-dom 19.2.0-canary-3d14fcf0-20250724 → 19.2.0-canary-19baee81-20250725
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 +106 -107
- package/cjs/react-dom-client.production.js +5 -5
- package/cjs/react-dom-profiling.development.js +106 -107
- package/cjs/react-dom-profiling.profiling.js +5 -5
- package/cjs/react-dom-server-legacy.browser.development.js +33 -18
- package/cjs/react-dom-server-legacy.browser.production.js +1 -1
- package/cjs/react-dom-server-legacy.node.development.js +33 -18
- package/cjs/react-dom-server-legacy.node.production.js +1 -1
- package/cjs/react-dom-server.browser.development.js +35 -20
- package/cjs/react-dom-server.browser.production.js +3 -3
- package/cjs/react-dom-server.bun.development.js +35 -15
- package/cjs/react-dom-server.bun.production.js +3 -3
- package/cjs/react-dom-server.edge.development.js +35 -20
- package/cjs/react-dom-server.edge.production.js +3 -3
- package/cjs/react-dom-server.node.development.js +35 -20
- 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
|
@@ -846,11 +846,10 @@
|
|
|
846
846
|
var fiber = workInProgress;
|
|
847
847
|
workInProgress = fiber._debugOwner;
|
|
848
848
|
var debugStack = fiber._debugStack;
|
|
849
|
-
workInProgress &&
|
|
850
|
-
debugStack
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
"" !== debugStack && (info += "\n" + debugStack));
|
|
849
|
+
if (workInProgress && debugStack) {
|
|
850
|
+
var formattedStack = formatOwnerStack(debugStack);
|
|
851
|
+
"" !== formattedStack && (info += "\n" + formattedStack);
|
|
852
|
+
}
|
|
854
853
|
} else if (null != workInProgress.debugStack) {
|
|
855
854
|
var ownerStack = workInProgress.debugStack;
|
|
856
855
|
(workInProgress = workInProgress.owner) &&
|
|
@@ -9718,24 +9717,24 @@
|
|
|
9718
9717
|
return current;
|
|
9719
9718
|
}
|
|
9720
9719
|
function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
|
9721
|
-
var
|
|
9722
|
-
var
|
|
9720
|
+
var JSCompiler_object_inline_digest_2552;
|
|
9721
|
+
var JSCompiler_object_inline_stack_2553 = workInProgress.pendingProps;
|
|
9723
9722
|
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
|
|
9724
|
-
var
|
|
9723
|
+
var JSCompiler_object_inline_message_2551 = !1;
|
|
9725
9724
|
var didSuspend = 0 !== (workInProgress.flags & 128);
|
|
9726
|
-
(
|
|
9727
|
-
(
|
|
9725
|
+
(JSCompiler_object_inline_digest_2552 = didSuspend) ||
|
|
9726
|
+
(JSCompiler_object_inline_digest_2552 =
|
|
9728
9727
|
null !== current && null === current.memoizedState
|
|
9729
9728
|
? !1
|
|
9730
9729
|
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
|
|
9731
|
-
|
|
9732
|
-
((
|
|
9730
|
+
JSCompiler_object_inline_digest_2552 &&
|
|
9731
|
+
((JSCompiler_object_inline_message_2551 = !0),
|
|
9733
9732
|
(workInProgress.flags &= -129));
|
|
9734
|
-
|
|
9733
|
+
JSCompiler_object_inline_digest_2552 = 0 !== (workInProgress.flags & 32);
|
|
9735
9734
|
workInProgress.flags &= -33;
|
|
9736
9735
|
if (null === current) {
|
|
9737
9736
|
if (isHydrating) {
|
|
9738
|
-
|
|
9737
|
+
JSCompiler_object_inline_message_2551
|
|
9739
9738
|
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
|
9740
9739
|
: reuseSuspenseHandlerOnStack(workInProgress);
|
|
9741
9740
|
(current = nextHydratableInstance)
|
|
@@ -9748,18 +9747,18 @@
|
|
|
9748
9747
|
? renderLanes
|
|
9749
9748
|
: null),
|
|
9750
9749
|
null !== renderLanes &&
|
|
9751
|
-
((
|
|
9750
|
+
((JSCompiler_object_inline_digest_2552 = {
|
|
9752
9751
|
dehydrated: renderLanes,
|
|
9753
9752
|
treeContext: getSuspendedTreeContext(),
|
|
9754
9753
|
retryLane: 536870912,
|
|
9755
9754
|
hydrationErrors: null
|
|
9756
9755
|
}),
|
|
9757
9756
|
(workInProgress.memoizedState =
|
|
9758
|
-
|
|
9759
|
-
(
|
|
9757
|
+
JSCompiler_object_inline_digest_2552),
|
|
9758
|
+
(JSCompiler_object_inline_digest_2552 =
|
|
9760
9759
|
createFiberFromDehydratedFragment(renderLanes)),
|
|
9761
|
-
(
|
|
9762
|
-
(workInProgress.child =
|
|
9760
|
+
(JSCompiler_object_inline_digest_2552.return = workInProgress),
|
|
9761
|
+
(workInProgress.child = JSCompiler_object_inline_digest_2552),
|
|
9763
9762
|
(hydrationParentFiber = workInProgress),
|
|
9764
9763
|
(nextHydratableInstance = null)))
|
|
9765
9764
|
: (renderLanes = null);
|
|
@@ -9773,36 +9772,36 @@
|
|
|
9773
9772
|
: (workInProgress.lanes = 536870912);
|
|
9774
9773
|
return null;
|
|
9775
9774
|
}
|
|
9776
|
-
var nextPrimaryChildren =
|
|
9777
|
-
|
|
9778
|
-
|
|
9779
|
-
if (
|
|
9775
|
+
var nextPrimaryChildren = JSCompiler_object_inline_stack_2553.children;
|
|
9776
|
+
JSCompiler_object_inline_stack_2553 =
|
|
9777
|
+
JSCompiler_object_inline_stack_2553.fallback;
|
|
9778
|
+
if (JSCompiler_object_inline_message_2551) {
|
|
9780
9779
|
reuseSuspenseHandlerOnStack(workInProgress);
|
|
9781
9780
|
var mode = workInProgress.mode;
|
|
9782
9781
|
nextPrimaryChildren = mountWorkInProgressOffscreenFiber(
|
|
9783
9782
|
{ mode: "hidden", children: nextPrimaryChildren },
|
|
9784
9783
|
mode
|
|
9785
9784
|
);
|
|
9786
|
-
|
|
9787
|
-
|
|
9785
|
+
JSCompiler_object_inline_stack_2553 = createFiberFromFragment(
|
|
9786
|
+
JSCompiler_object_inline_stack_2553,
|
|
9788
9787
|
mode,
|
|
9789
9788
|
renderLanes,
|
|
9790
9789
|
null
|
|
9791
9790
|
);
|
|
9792
9791
|
nextPrimaryChildren.return = workInProgress;
|
|
9793
|
-
|
|
9794
|
-
nextPrimaryChildren.sibling =
|
|
9792
|
+
JSCompiler_object_inline_stack_2553.return = workInProgress;
|
|
9793
|
+
nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2553;
|
|
9795
9794
|
workInProgress.child = nextPrimaryChildren;
|
|
9796
9795
|
nextPrimaryChildren = workInProgress.child;
|
|
9797
9796
|
nextPrimaryChildren.memoizedState =
|
|
9798
9797
|
mountSuspenseOffscreenState(renderLanes);
|
|
9799
9798
|
nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
|
|
9800
9799
|
current,
|
|
9801
|
-
|
|
9800
|
+
JSCompiler_object_inline_digest_2552,
|
|
9802
9801
|
renderLanes
|
|
9803
9802
|
);
|
|
9804
9803
|
workInProgress.memoizedState = SUSPENDED_MARKER;
|
|
9805
|
-
return
|
|
9804
|
+
return JSCompiler_object_inline_stack_2553;
|
|
9806
9805
|
}
|
|
9807
9806
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
|
9808
9807
|
return mountSuspensePrimaryChildren(
|
|
@@ -9812,8 +9811,8 @@
|
|
|
9812
9811
|
}
|
|
9813
9812
|
var prevState = current.memoizedState;
|
|
9814
9813
|
if (null !== prevState) {
|
|
9815
|
-
var
|
|
9816
|
-
if (null !==
|
|
9814
|
+
var JSCompiler_object_inline_componentStack_2554 = prevState.dehydrated;
|
|
9815
|
+
if (null !== JSCompiler_object_inline_componentStack_2554) {
|
|
9817
9816
|
if (didSuspend)
|
|
9818
9817
|
workInProgress.flags & 256
|
|
9819
9818
|
? (pushPrimaryTreeSuspenseHandler(workInProgress),
|
|
@@ -9830,13 +9829,13 @@
|
|
|
9830
9829
|
(workInProgress = null))
|
|
9831
9830
|
: (reuseSuspenseHandlerOnStack(workInProgress),
|
|
9832
9831
|
(nextPrimaryChildren =
|
|
9833
|
-
|
|
9832
|
+
JSCompiler_object_inline_stack_2553.fallback),
|
|
9834
9833
|
(mode = workInProgress.mode),
|
|
9835
|
-
(
|
|
9834
|
+
(JSCompiler_object_inline_stack_2553 =
|
|
9836
9835
|
mountWorkInProgressOffscreenFiber(
|
|
9837
9836
|
{
|
|
9838
9837
|
mode: "visible",
|
|
9839
|
-
children:
|
|
9838
|
+
children: JSCompiler_object_inline_stack_2553.children
|
|
9840
9839
|
},
|
|
9841
9840
|
mode
|
|
9842
9841
|
)),
|
|
@@ -9847,24 +9846,24 @@
|
|
|
9847
9846
|
null
|
|
9848
9847
|
)),
|
|
9849
9848
|
(nextPrimaryChildren.flags |= 2),
|
|
9850
|
-
(
|
|
9849
|
+
(JSCompiler_object_inline_stack_2553.return = workInProgress),
|
|
9851
9850
|
(nextPrimaryChildren.return = workInProgress),
|
|
9852
|
-
(
|
|
9851
|
+
(JSCompiler_object_inline_stack_2553.sibling =
|
|
9853
9852
|
nextPrimaryChildren),
|
|
9854
|
-
(workInProgress.child =
|
|
9853
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2553),
|
|
9855
9854
|
reconcileChildFibers(
|
|
9856
9855
|
workInProgress,
|
|
9857
9856
|
current.child,
|
|
9858
9857
|
null,
|
|
9859
9858
|
renderLanes
|
|
9860
9859
|
),
|
|
9861
|
-
(
|
|
9862
|
-
(
|
|
9860
|
+
(JSCompiler_object_inline_stack_2553 = workInProgress.child),
|
|
9861
|
+
(JSCompiler_object_inline_stack_2553.memoizedState =
|
|
9863
9862
|
mountSuspenseOffscreenState(renderLanes)),
|
|
9864
|
-
(
|
|
9863
|
+
(JSCompiler_object_inline_stack_2553.childLanes =
|
|
9865
9864
|
getRemainingWorkInPrimaryTree(
|
|
9866
9865
|
current,
|
|
9867
|
-
|
|
9866
|
+
JSCompiler_object_inline_digest_2552,
|
|
9868
9867
|
renderLanes
|
|
9869
9868
|
)),
|
|
9870
9869
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
|
@@ -9873,45 +9872,45 @@
|
|
|
9873
9872
|
(pushPrimaryTreeSuspenseHandler(workInProgress),
|
|
9874
9873
|
warnIfHydrating(),
|
|
9875
9874
|
isSuspenseInstanceFallback(
|
|
9876
|
-
|
|
9875
|
+
JSCompiler_object_inline_componentStack_2554
|
|
9877
9876
|
))
|
|
9878
9877
|
) {
|
|
9879
|
-
|
|
9880
|
-
|
|
9881
|
-
|
|
9882
|
-
if (
|
|
9883
|
-
nextPrimaryChildren =
|
|
9884
|
-
var message =
|
|
9885
|
-
mode =
|
|
9886
|
-
var componentStack =
|
|
9878
|
+
JSCompiler_object_inline_digest_2552 =
|
|
9879
|
+
JSCompiler_object_inline_componentStack_2554.nextSibling &&
|
|
9880
|
+
JSCompiler_object_inline_componentStack_2554.nextSibling.dataset;
|
|
9881
|
+
if (JSCompiler_object_inline_digest_2552) {
|
|
9882
|
+
nextPrimaryChildren = JSCompiler_object_inline_digest_2552.dgst;
|
|
9883
|
+
var message = JSCompiler_object_inline_digest_2552.msg;
|
|
9884
|
+
mode = JSCompiler_object_inline_digest_2552.stck;
|
|
9885
|
+
var componentStack = JSCompiler_object_inline_digest_2552.cstck;
|
|
9887
9886
|
}
|
|
9888
|
-
|
|
9889
|
-
|
|
9890
|
-
|
|
9891
|
-
|
|
9892
|
-
nextPrimaryChildren =
|
|
9893
|
-
mode =
|
|
9887
|
+
JSCompiler_object_inline_message_2551 = message;
|
|
9888
|
+
JSCompiler_object_inline_digest_2552 = nextPrimaryChildren;
|
|
9889
|
+
JSCompiler_object_inline_stack_2553 = mode;
|
|
9890
|
+
JSCompiler_object_inline_componentStack_2554 = componentStack;
|
|
9891
|
+
nextPrimaryChildren = JSCompiler_object_inline_message_2551;
|
|
9892
|
+
mode = JSCompiler_object_inline_componentStack_2554;
|
|
9894
9893
|
nextPrimaryChildren = nextPrimaryChildren
|
|
9895
9894
|
? Error(nextPrimaryChildren)
|
|
9896
9895
|
: Error(
|
|
9897
9896
|
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
|
|
9898
9897
|
);
|
|
9899
9898
|
nextPrimaryChildren.stack =
|
|
9900
|
-
|
|
9901
|
-
nextPrimaryChildren.digest =
|
|
9902
|
-
|
|
9899
|
+
JSCompiler_object_inline_stack_2553 || "";
|
|
9900
|
+
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2552;
|
|
9901
|
+
JSCompiler_object_inline_digest_2552 =
|
|
9903
9902
|
void 0 === mode ? null : mode;
|
|
9904
|
-
|
|
9903
|
+
JSCompiler_object_inline_stack_2553 = {
|
|
9905
9904
|
value: nextPrimaryChildren,
|
|
9906
9905
|
source: null,
|
|
9907
|
-
stack:
|
|
9906
|
+
stack: JSCompiler_object_inline_digest_2552
|
|
9908
9907
|
};
|
|
9909
|
-
"string" === typeof
|
|
9908
|
+
"string" === typeof JSCompiler_object_inline_digest_2552 &&
|
|
9910
9909
|
CapturedStacks.set(
|
|
9911
9910
|
nextPrimaryChildren,
|
|
9912
|
-
|
|
9911
|
+
JSCompiler_object_inline_stack_2553
|
|
9913
9912
|
);
|
|
9914
|
-
queueHydrationError(
|
|
9913
|
+
queueHydrationError(JSCompiler_object_inline_stack_2553);
|
|
9915
9914
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
|
9916
9915
|
current,
|
|
9917
9916
|
workInProgress,
|
|
@@ -9925,35 +9924,35 @@
|
|
|
9925
9924
|
renderLanes,
|
|
9926
9925
|
!1
|
|
9927
9926
|
),
|
|
9928
|
-
(
|
|
9927
|
+
(JSCompiler_object_inline_digest_2552 =
|
|
9929
9928
|
0 !== (renderLanes & current.childLanes)),
|
|
9930
|
-
didReceiveUpdate ||
|
|
9929
|
+
didReceiveUpdate || JSCompiler_object_inline_digest_2552)
|
|
9931
9930
|
) {
|
|
9932
|
-
|
|
9931
|
+
JSCompiler_object_inline_digest_2552 = workInProgressRoot;
|
|
9933
9932
|
if (
|
|
9934
|
-
null !==
|
|
9935
|
-
((
|
|
9936
|
-
|
|
9933
|
+
null !== JSCompiler_object_inline_digest_2552 &&
|
|
9934
|
+
((JSCompiler_object_inline_stack_2553 = getBumpedLaneForHydration(
|
|
9935
|
+
JSCompiler_object_inline_digest_2552,
|
|
9937
9936
|
renderLanes
|
|
9938
9937
|
)),
|
|
9939
|
-
0 !==
|
|
9940
|
-
|
|
9938
|
+
0 !== JSCompiler_object_inline_stack_2553 &&
|
|
9939
|
+
JSCompiler_object_inline_stack_2553 !== prevState.retryLane)
|
|
9941
9940
|
)
|
|
9942
9941
|
throw (
|
|
9943
|
-
((prevState.retryLane =
|
|
9942
|
+
((prevState.retryLane = JSCompiler_object_inline_stack_2553),
|
|
9944
9943
|
enqueueConcurrentRenderForLane(
|
|
9945
9944
|
current,
|
|
9946
|
-
|
|
9945
|
+
JSCompiler_object_inline_stack_2553
|
|
9947
9946
|
),
|
|
9948
9947
|
scheduleUpdateOnFiber(
|
|
9949
|
-
|
|
9948
|
+
JSCompiler_object_inline_digest_2552,
|
|
9950
9949
|
current,
|
|
9951
|
-
|
|
9950
|
+
JSCompiler_object_inline_stack_2553
|
|
9952
9951
|
),
|
|
9953
9952
|
SelectiveHydrationException)
|
|
9954
9953
|
);
|
|
9955
9954
|
isSuspenseInstancePending(
|
|
9956
|
-
|
|
9955
|
+
JSCompiler_object_inline_componentStack_2554
|
|
9957
9956
|
) || renderDidSuspendDelayIfPossible();
|
|
9958
9957
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
|
9959
9958
|
current,
|
|
@@ -9962,14 +9961,14 @@
|
|
|
9962
9961
|
);
|
|
9963
9962
|
} else
|
|
9964
9963
|
isSuspenseInstancePending(
|
|
9965
|
-
|
|
9964
|
+
JSCompiler_object_inline_componentStack_2554
|
|
9966
9965
|
)
|
|
9967
9966
|
? ((workInProgress.flags |= 192),
|
|
9968
9967
|
(workInProgress.child = current.child),
|
|
9969
9968
|
(workInProgress = null))
|
|
9970
9969
|
: ((current = prevState.treeContext),
|
|
9971
9970
|
(nextHydratableInstance = getNextHydratable(
|
|
9972
|
-
|
|
9971
|
+
JSCompiler_object_inline_componentStack_2554.nextSibling
|
|
9973
9972
|
)),
|
|
9974
9973
|
(hydrationParentFiber = workInProgress),
|
|
9975
9974
|
(isHydrating = !0),
|
|
@@ -9981,32 +9980,32 @@
|
|
|
9981
9980
|
restoreSuspendedTreeContext(workInProgress, current),
|
|
9982
9981
|
(workInProgress = mountSuspensePrimaryChildren(
|
|
9983
9982
|
workInProgress,
|
|
9984
|
-
|
|
9983
|
+
JSCompiler_object_inline_stack_2553.children
|
|
9985
9984
|
)),
|
|
9986
9985
|
(workInProgress.flags |= 4096));
|
|
9987
9986
|
return workInProgress;
|
|
9988
9987
|
}
|
|
9989
9988
|
}
|
|
9990
|
-
if (
|
|
9989
|
+
if (JSCompiler_object_inline_message_2551)
|
|
9991
9990
|
return (
|
|
9992
9991
|
reuseSuspenseHandlerOnStack(workInProgress),
|
|
9993
|
-
(nextPrimaryChildren =
|
|
9992
|
+
(nextPrimaryChildren = JSCompiler_object_inline_stack_2553.fallback),
|
|
9994
9993
|
(mode = workInProgress.mode),
|
|
9995
9994
|
(componentStack = current.child),
|
|
9996
|
-
(
|
|
9995
|
+
(JSCompiler_object_inline_componentStack_2554 =
|
|
9997
9996
|
componentStack.sibling),
|
|
9998
|
-
(
|
|
9997
|
+
(JSCompiler_object_inline_stack_2553 = createWorkInProgress(
|
|
9999
9998
|
componentStack,
|
|
10000
9999
|
{
|
|
10001
10000
|
mode: "hidden",
|
|
10002
|
-
children:
|
|
10001
|
+
children: JSCompiler_object_inline_stack_2553.children
|
|
10003
10002
|
}
|
|
10004
10003
|
)),
|
|
10005
|
-
(
|
|
10004
|
+
(JSCompiler_object_inline_stack_2553.subtreeFlags =
|
|
10006
10005
|
componentStack.subtreeFlags & 65011712),
|
|
10007
|
-
null !==
|
|
10006
|
+
null !== JSCompiler_object_inline_componentStack_2554
|
|
10008
10007
|
? (nextPrimaryChildren = createWorkInProgress(
|
|
10009
|
-
|
|
10008
|
+
JSCompiler_object_inline_componentStack_2554,
|
|
10010
10009
|
nextPrimaryChildren
|
|
10011
10010
|
))
|
|
10012
10011
|
: ((nextPrimaryChildren = createFiberFromFragment(
|
|
@@ -10017,24 +10016,24 @@
|
|
|
10017
10016
|
)),
|
|
10018
10017
|
(nextPrimaryChildren.flags |= 2)),
|
|
10019
10018
|
(nextPrimaryChildren.return = workInProgress),
|
|
10020
|
-
(
|
|
10021
|
-
(
|
|
10022
|
-
(workInProgress.child =
|
|
10023
|
-
(
|
|
10019
|
+
(JSCompiler_object_inline_stack_2553.return = workInProgress),
|
|
10020
|
+
(JSCompiler_object_inline_stack_2553.sibling = nextPrimaryChildren),
|
|
10021
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2553),
|
|
10022
|
+
(JSCompiler_object_inline_stack_2553 = nextPrimaryChildren),
|
|
10024
10023
|
(nextPrimaryChildren = workInProgress.child),
|
|
10025
10024
|
(mode = current.child.memoizedState),
|
|
10026
10025
|
null === mode
|
|
10027
10026
|
? (mode = mountSuspenseOffscreenState(renderLanes))
|
|
10028
10027
|
: ((componentStack = mode.cachePool),
|
|
10029
10028
|
null !== componentStack
|
|
10030
|
-
? ((
|
|
10029
|
+
? ((JSCompiler_object_inline_componentStack_2554 =
|
|
10031
10030
|
CacheContext._currentValue),
|
|
10032
10031
|
(componentStack =
|
|
10033
10032
|
componentStack.parent !==
|
|
10034
|
-
|
|
10033
|
+
JSCompiler_object_inline_componentStack_2554
|
|
10035
10034
|
? {
|
|
10036
|
-
parent:
|
|
10037
|
-
pool:
|
|
10035
|
+
parent: JSCompiler_object_inline_componentStack_2554,
|
|
10036
|
+
pool: JSCompiler_object_inline_componentStack_2554
|
|
10038
10037
|
}
|
|
10039
10038
|
: componentStack))
|
|
10040
10039
|
: (componentStack = getSuspendedCache()),
|
|
@@ -10045,27 +10044,27 @@
|
|
|
10045
10044
|
(nextPrimaryChildren.memoizedState = mode),
|
|
10046
10045
|
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
|
|
10047
10046
|
current,
|
|
10048
|
-
|
|
10047
|
+
JSCompiler_object_inline_digest_2552,
|
|
10049
10048
|
renderLanes
|
|
10050
10049
|
)),
|
|
10051
10050
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
|
10052
|
-
|
|
10051
|
+
JSCompiler_object_inline_stack_2553
|
|
10053
10052
|
);
|
|
10054
10053
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
|
10055
10054
|
renderLanes = current.child;
|
|
10056
10055
|
current = renderLanes.sibling;
|
|
10057
10056
|
renderLanes = createWorkInProgress(renderLanes, {
|
|
10058
10057
|
mode: "visible",
|
|
10059
|
-
children:
|
|
10058
|
+
children: JSCompiler_object_inline_stack_2553.children
|
|
10060
10059
|
});
|
|
10061
10060
|
renderLanes.return = workInProgress;
|
|
10062
10061
|
renderLanes.sibling = null;
|
|
10063
10062
|
null !== current &&
|
|
10064
|
-
((
|
|
10065
|
-
null ===
|
|
10063
|
+
((JSCompiler_object_inline_digest_2552 = workInProgress.deletions),
|
|
10064
|
+
null === JSCompiler_object_inline_digest_2552
|
|
10066
10065
|
? ((workInProgress.deletions = [current]),
|
|
10067
10066
|
(workInProgress.flags |= 16))
|
|
10068
|
-
:
|
|
10067
|
+
: JSCompiler_object_inline_digest_2552.push(current));
|
|
10069
10068
|
workInProgress.child = renderLanes;
|
|
10070
10069
|
workInProgress.memoizedState = null;
|
|
10071
10070
|
return renderLanes;
|
|
@@ -25507,11 +25506,11 @@
|
|
|
25507
25506
|
};
|
|
25508
25507
|
(function () {
|
|
25509
25508
|
var isomorphicReactPackageVersion = React.version;
|
|
25510
|
-
if ("19.2.0-canary-
|
|
25509
|
+
if ("19.2.0-canary-19baee81-20250725" !== isomorphicReactPackageVersion)
|
|
25511
25510
|
throw Error(
|
|
25512
25511
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
25513
25512
|
(isomorphicReactPackageVersion +
|
|
25514
|
-
"\n - react-dom: 19.2.0-canary-
|
|
25513
|
+
"\n - react-dom: 19.2.0-canary-19baee81-20250725\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
25515
25514
|
);
|
|
25516
25515
|
})();
|
|
25517
25516
|
("function" === typeof Map &&
|
|
@@ -25548,10 +25547,10 @@
|
|
|
25548
25547
|
!(function () {
|
|
25549
25548
|
var internals = {
|
|
25550
25549
|
bundleType: 1,
|
|
25551
|
-
version: "19.2.0-canary-
|
|
25550
|
+
version: "19.2.0-canary-19baee81-20250725",
|
|
25552
25551
|
rendererPackageName: "react-dom",
|
|
25553
25552
|
currentDispatcherRef: ReactSharedInternals,
|
|
25554
|
-
reconcilerVersion: "19.2.0-canary-
|
|
25553
|
+
reconcilerVersion: "19.2.0-canary-19baee81-20250725"
|
|
25555
25554
|
};
|
|
25556
25555
|
internals.overrideHookState = overrideHookState;
|
|
25557
25556
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
|
@@ -25689,7 +25688,7 @@
|
|
|
25689
25688
|
listenToAllSupportedEvents(container);
|
|
25690
25689
|
return new ReactDOMHydrationRoot(initialChildren);
|
|
25691
25690
|
};
|
|
25692
|
-
exports.version = "19.2.0-canary-
|
|
25691
|
+
exports.version = "19.2.0-canary-19baee81-20250725";
|
|
25693
25692
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
25694
25693
|
"function" ===
|
|
25695
25694
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -15716,14 +15716,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
|
15716
15716
|
};
|
|
15717
15717
|
var isomorphicReactPackageVersion$jscomp$inline_1838 = React.version;
|
|
15718
15718
|
if (
|
|
15719
|
-
"19.2.0-canary-
|
|
15719
|
+
"19.2.0-canary-19baee81-20250725" !==
|
|
15720
15720
|
isomorphicReactPackageVersion$jscomp$inline_1838
|
|
15721
15721
|
)
|
|
15722
15722
|
throw Error(
|
|
15723
15723
|
formatProdErrorMessage(
|
|
15724
15724
|
527,
|
|
15725
15725
|
isomorphicReactPackageVersion$jscomp$inline_1838,
|
|
15726
|
-
"19.2.0-canary-
|
|
15726
|
+
"19.2.0-canary-19baee81-20250725"
|
|
15727
15727
|
)
|
|
15728
15728
|
);
|
|
15729
15729
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
@@ -15745,10 +15745,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
|
15745
15745
|
};
|
|
15746
15746
|
var internals$jscomp$inline_2331 = {
|
|
15747
15747
|
bundleType: 0,
|
|
15748
|
-
version: "19.2.0-canary-
|
|
15748
|
+
version: "19.2.0-canary-19baee81-20250725",
|
|
15749
15749
|
rendererPackageName: "react-dom",
|
|
15750
15750
|
currentDispatcherRef: ReactSharedInternals,
|
|
15751
|
-
reconcilerVersion: "19.2.0-canary-
|
|
15751
|
+
reconcilerVersion: "19.2.0-canary-19baee81-20250725"
|
|
15752
15752
|
};
|
|
15753
15753
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
|
15754
15754
|
var hook$jscomp$inline_2332 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
@@ -15846,4 +15846,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
|
15846
15846
|
listenToAllSupportedEvents(container);
|
|
15847
15847
|
return new ReactDOMHydrationRoot(initialChildren);
|
|
15848
15848
|
};
|
|
15849
|
-
exports.version = "19.2.0-canary-
|
|
15849
|
+
exports.version = "19.2.0-canary-19baee81-20250725";
|