react-dom 19.2.0-canary-bbc13fa1-20250624 → 19.2.0-canary-cee7939b-20250625
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 +142 -128
- package/cjs/react-dom-client.production.js +37 -37
- package/cjs/react-dom-profiling.development.js +142 -128
- package/cjs/react-dom-profiling.profiling.js +37 -37
- package/cjs/react-dom-server-legacy.browser.development.js +50 -32
- package/cjs/react-dom-server-legacy.browser.production.js +52 -28
- package/cjs/react-dom-server-legacy.node.development.js +50 -32
- package/cjs/react-dom-server-legacy.node.production.js +52 -28
- package/cjs/react-dom-server.browser.development.js +52 -34
- package/cjs/react-dom-server.browser.production.js +34 -10
- package/cjs/react-dom-server.bun.development.js +52 -34
- package/cjs/react-dom-server.bun.production.js +37 -13
- package/cjs/react-dom-server.edge.development.js +52 -34
- package/cjs/react-dom-server.edge.production.js +34 -10
- package/cjs/react-dom-server.node.development.js +52 -34
- package/cjs/react-dom-server.node.production.js +34 -10
- 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
@@ -532,6 +532,27 @@
|
|
532
532
|
"disabledDepth fell below zero. This is a bug in React. Please file an issue."
|
533
533
|
);
|
534
534
|
}
|
535
|
+
function formatOwnerStack(error) {
|
536
|
+
var prevPrepareStackTrace = Error.prepareStackTrace;
|
537
|
+
Error.prepareStackTrace = void 0;
|
538
|
+
error = error.stack;
|
539
|
+
Error.prepareStackTrace = prevPrepareStackTrace;
|
540
|
+
error.startsWith("Error: react-stack-top-frame\n") &&
|
541
|
+
(error = error.slice(29));
|
542
|
+
prevPrepareStackTrace = error.indexOf("\n");
|
543
|
+
-1 !== prevPrepareStackTrace &&
|
544
|
+
(error = error.slice(prevPrepareStackTrace + 1));
|
545
|
+
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
|
546
|
+
-1 !== prevPrepareStackTrace &&
|
547
|
+
(prevPrepareStackTrace = error.lastIndexOf(
|
548
|
+
"\n",
|
549
|
+
prevPrepareStackTrace
|
550
|
+
));
|
551
|
+
if (-1 !== prevPrepareStackTrace)
|
552
|
+
error = error.slice(0, prevPrepareStackTrace);
|
553
|
+
else return "";
|
554
|
+
return error;
|
555
|
+
}
|
535
556
|
function describeBuiltInComponentFrame(name) {
|
536
557
|
if (void 0 === prefix)
|
537
558
|
try {
|
@@ -704,27 +725,6 @@
|
|
704
725
|
"function" === typeof fn && componentFrameCache.set(fn, sampleLines);
|
705
726
|
return sampleLines;
|
706
727
|
}
|
707
|
-
function formatOwnerStack(error) {
|
708
|
-
var prevPrepareStackTrace = Error.prepareStackTrace;
|
709
|
-
Error.prepareStackTrace = void 0;
|
710
|
-
error = error.stack;
|
711
|
-
Error.prepareStackTrace = prevPrepareStackTrace;
|
712
|
-
error.startsWith("Error: react-stack-top-frame\n") &&
|
713
|
-
(error = error.slice(29));
|
714
|
-
prevPrepareStackTrace = error.indexOf("\n");
|
715
|
-
-1 !== prevPrepareStackTrace &&
|
716
|
-
(error = error.slice(prevPrepareStackTrace + 1));
|
717
|
-
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
|
718
|
-
-1 !== prevPrepareStackTrace &&
|
719
|
-
(prevPrepareStackTrace = error.lastIndexOf(
|
720
|
-
"\n",
|
721
|
-
prevPrepareStackTrace
|
722
|
-
));
|
723
|
-
if (-1 !== prevPrepareStackTrace)
|
724
|
-
error = error.slice(0, prevPrepareStackTrace);
|
725
|
-
else return "";
|
726
|
-
return error;
|
727
|
-
}
|
728
728
|
function describeFiber(fiber) {
|
729
729
|
switch (fiber.tag) {
|
730
730
|
case 26:
|
@@ -760,11 +760,25 @@
|
|
760
760
|
for (var i = debugInfo.length - 1; 0 <= i; i--) {
|
761
761
|
var entry = debugInfo[i];
|
762
762
|
if ("string" === typeof entry.name) {
|
763
|
-
var JSCompiler_temp_const = info
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
763
|
+
var JSCompiler_temp_const = info;
|
764
|
+
a: {
|
765
|
+
var name = entry.name,
|
766
|
+
env = entry.env,
|
767
|
+
location = entry.debugLocation;
|
768
|
+
if (null != location) {
|
769
|
+
var childStack = formatOwnerStack(location),
|
770
|
+
idx = childStack.lastIndexOf("\n"),
|
771
|
+
lastLine =
|
772
|
+
-1 === idx ? childStack : childStack.slice(idx + 1);
|
773
|
+
if (-1 !== lastLine.indexOf(name)) {
|
774
|
+
var JSCompiler_inline_result = "\n" + lastLine;
|
775
|
+
break a;
|
776
|
+
}
|
777
|
+
}
|
778
|
+
JSCompiler_inline_result = describeBuiltInComponentFrame(
|
779
|
+
name + (env ? " [" + env + "]" : "")
|
780
|
+
);
|
781
|
+
}
|
768
782
|
info = JSCompiler_temp_const + JSCompiler_inline_result;
|
769
783
|
}
|
770
784
|
}
|
@@ -9700,24 +9714,24 @@
|
|
9700
9714
|
return current;
|
9701
9715
|
}
|
9702
9716
|
function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
9703
|
-
var
|
9704
|
-
var
|
9717
|
+
var JSCompiler_object_inline_digest_2554;
|
9718
|
+
var JSCompiler_object_inline_stack_2555 = workInProgress.pendingProps;
|
9705
9719
|
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
|
9706
|
-
var
|
9720
|
+
var JSCompiler_object_inline_message_2553 = !1;
|
9707
9721
|
var didSuspend = 0 !== (workInProgress.flags & 128);
|
9708
|
-
(
|
9709
|
-
(
|
9722
|
+
(JSCompiler_object_inline_digest_2554 = didSuspend) ||
|
9723
|
+
(JSCompiler_object_inline_digest_2554 =
|
9710
9724
|
null !== current && null === current.memoizedState
|
9711
9725
|
? !1
|
9712
9726
|
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
|
9713
|
-
|
9714
|
-
((
|
9727
|
+
JSCompiler_object_inline_digest_2554 &&
|
9728
|
+
((JSCompiler_object_inline_message_2553 = !0),
|
9715
9729
|
(workInProgress.flags &= -129));
|
9716
|
-
|
9730
|
+
JSCompiler_object_inline_digest_2554 = 0 !== (workInProgress.flags & 32);
|
9717
9731
|
workInProgress.flags &= -33;
|
9718
9732
|
if (null === current) {
|
9719
9733
|
if (isHydrating) {
|
9720
|
-
|
9734
|
+
JSCompiler_object_inline_message_2553
|
9721
9735
|
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
9722
9736
|
: reuseSuspenseHandlerOnStack(workInProgress);
|
9723
9737
|
(current = nextHydratableInstance)
|
@@ -9730,18 +9744,18 @@
|
|
9730
9744
|
? renderLanes
|
9731
9745
|
: null),
|
9732
9746
|
null !== renderLanes &&
|
9733
|
-
((
|
9747
|
+
((JSCompiler_object_inline_digest_2554 = {
|
9734
9748
|
dehydrated: renderLanes,
|
9735
9749
|
treeContext: getSuspendedTreeContext(),
|
9736
9750
|
retryLane: 536870912,
|
9737
9751
|
hydrationErrors: null
|
9738
9752
|
}),
|
9739
9753
|
(workInProgress.memoizedState =
|
9740
|
-
|
9741
|
-
(
|
9754
|
+
JSCompiler_object_inline_digest_2554),
|
9755
|
+
(JSCompiler_object_inline_digest_2554 =
|
9742
9756
|
createFiberFromDehydratedFragment(renderLanes)),
|
9743
|
-
(
|
9744
|
-
(workInProgress.child =
|
9757
|
+
(JSCompiler_object_inline_digest_2554.return = workInProgress),
|
9758
|
+
(workInProgress.child = JSCompiler_object_inline_digest_2554),
|
9745
9759
|
(hydrationParentFiber = workInProgress),
|
9746
9760
|
(nextHydratableInstance = null)))
|
9747
9761
|
: (renderLanes = null);
|
@@ -9755,36 +9769,36 @@
|
|
9755
9769
|
: (workInProgress.lanes = 536870912);
|
9756
9770
|
return null;
|
9757
9771
|
}
|
9758
|
-
var nextPrimaryChildren =
|
9759
|
-
|
9760
|
-
|
9761
|
-
if (
|
9772
|
+
var nextPrimaryChildren = JSCompiler_object_inline_stack_2555.children;
|
9773
|
+
JSCompiler_object_inline_stack_2555 =
|
9774
|
+
JSCompiler_object_inline_stack_2555.fallback;
|
9775
|
+
if (JSCompiler_object_inline_message_2553) {
|
9762
9776
|
reuseSuspenseHandlerOnStack(workInProgress);
|
9763
9777
|
var mode = workInProgress.mode;
|
9764
9778
|
nextPrimaryChildren = mountWorkInProgressOffscreenFiber(
|
9765
9779
|
{ mode: "hidden", children: nextPrimaryChildren },
|
9766
9780
|
mode
|
9767
9781
|
);
|
9768
|
-
|
9769
|
-
|
9782
|
+
JSCompiler_object_inline_stack_2555 = createFiberFromFragment(
|
9783
|
+
JSCompiler_object_inline_stack_2555,
|
9770
9784
|
mode,
|
9771
9785
|
renderLanes,
|
9772
9786
|
null
|
9773
9787
|
);
|
9774
9788
|
nextPrimaryChildren.return = workInProgress;
|
9775
|
-
|
9776
|
-
nextPrimaryChildren.sibling =
|
9789
|
+
JSCompiler_object_inline_stack_2555.return = workInProgress;
|
9790
|
+
nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2555;
|
9777
9791
|
workInProgress.child = nextPrimaryChildren;
|
9778
9792
|
nextPrimaryChildren = workInProgress.child;
|
9779
9793
|
nextPrimaryChildren.memoizedState =
|
9780
9794
|
mountSuspenseOffscreenState(renderLanes);
|
9781
9795
|
nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
|
9782
9796
|
current,
|
9783
|
-
|
9797
|
+
JSCompiler_object_inline_digest_2554,
|
9784
9798
|
renderLanes
|
9785
9799
|
);
|
9786
9800
|
workInProgress.memoizedState = SUSPENDED_MARKER;
|
9787
|
-
return
|
9801
|
+
return JSCompiler_object_inline_stack_2555;
|
9788
9802
|
}
|
9789
9803
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
9790
9804
|
return mountSuspensePrimaryChildren(
|
@@ -9794,8 +9808,8 @@
|
|
9794
9808
|
}
|
9795
9809
|
var prevState = current.memoizedState;
|
9796
9810
|
if (null !== prevState) {
|
9797
|
-
var
|
9798
|
-
if (null !==
|
9811
|
+
var JSCompiler_object_inline_componentStack_2556 = prevState.dehydrated;
|
9812
|
+
if (null !== JSCompiler_object_inline_componentStack_2556) {
|
9799
9813
|
if (didSuspend)
|
9800
9814
|
workInProgress.flags & 256
|
9801
9815
|
? (pushPrimaryTreeSuspenseHandler(workInProgress),
|
@@ -9812,13 +9826,13 @@
|
|
9812
9826
|
(workInProgress = null))
|
9813
9827
|
: (reuseSuspenseHandlerOnStack(workInProgress),
|
9814
9828
|
(nextPrimaryChildren =
|
9815
|
-
|
9829
|
+
JSCompiler_object_inline_stack_2555.fallback),
|
9816
9830
|
(mode = workInProgress.mode),
|
9817
|
-
(
|
9831
|
+
(JSCompiler_object_inline_stack_2555 =
|
9818
9832
|
mountWorkInProgressOffscreenFiber(
|
9819
9833
|
{
|
9820
9834
|
mode: "visible",
|
9821
|
-
children:
|
9835
|
+
children: JSCompiler_object_inline_stack_2555.children
|
9822
9836
|
},
|
9823
9837
|
mode
|
9824
9838
|
)),
|
@@ -9829,24 +9843,24 @@
|
|
9829
9843
|
null
|
9830
9844
|
)),
|
9831
9845
|
(nextPrimaryChildren.flags |= 2),
|
9832
|
-
(
|
9846
|
+
(JSCompiler_object_inline_stack_2555.return = workInProgress),
|
9833
9847
|
(nextPrimaryChildren.return = workInProgress),
|
9834
|
-
(
|
9848
|
+
(JSCompiler_object_inline_stack_2555.sibling =
|
9835
9849
|
nextPrimaryChildren),
|
9836
|
-
(workInProgress.child =
|
9850
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2555),
|
9837
9851
|
reconcileChildFibers(
|
9838
9852
|
workInProgress,
|
9839
9853
|
current.child,
|
9840
9854
|
null,
|
9841
9855
|
renderLanes
|
9842
9856
|
),
|
9843
|
-
(
|
9844
|
-
(
|
9857
|
+
(JSCompiler_object_inline_stack_2555 = workInProgress.child),
|
9858
|
+
(JSCompiler_object_inline_stack_2555.memoizedState =
|
9845
9859
|
mountSuspenseOffscreenState(renderLanes)),
|
9846
|
-
(
|
9860
|
+
(JSCompiler_object_inline_stack_2555.childLanes =
|
9847
9861
|
getRemainingWorkInPrimaryTree(
|
9848
9862
|
current,
|
9849
|
-
|
9863
|
+
JSCompiler_object_inline_digest_2554,
|
9850
9864
|
renderLanes
|
9851
9865
|
)),
|
9852
9866
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
@@ -9855,45 +9869,45 @@
|
|
9855
9869
|
(pushPrimaryTreeSuspenseHandler(workInProgress),
|
9856
9870
|
warnIfHydrating(),
|
9857
9871
|
isSuspenseInstanceFallback(
|
9858
|
-
|
9872
|
+
JSCompiler_object_inline_componentStack_2556
|
9859
9873
|
))
|
9860
9874
|
) {
|
9861
|
-
|
9862
|
-
|
9863
|
-
|
9864
|
-
if (
|
9865
|
-
nextPrimaryChildren =
|
9866
|
-
var message =
|
9867
|
-
mode =
|
9868
|
-
var componentStack =
|
9875
|
+
JSCompiler_object_inline_digest_2554 =
|
9876
|
+
JSCompiler_object_inline_componentStack_2556.nextSibling &&
|
9877
|
+
JSCompiler_object_inline_componentStack_2556.nextSibling.dataset;
|
9878
|
+
if (JSCompiler_object_inline_digest_2554) {
|
9879
|
+
nextPrimaryChildren = JSCompiler_object_inline_digest_2554.dgst;
|
9880
|
+
var message = JSCompiler_object_inline_digest_2554.msg;
|
9881
|
+
mode = JSCompiler_object_inline_digest_2554.stck;
|
9882
|
+
var componentStack = JSCompiler_object_inline_digest_2554.cstck;
|
9869
9883
|
}
|
9870
|
-
|
9871
|
-
|
9872
|
-
|
9873
|
-
|
9874
|
-
nextPrimaryChildren =
|
9875
|
-
mode =
|
9884
|
+
JSCompiler_object_inline_message_2553 = message;
|
9885
|
+
JSCompiler_object_inline_digest_2554 = nextPrimaryChildren;
|
9886
|
+
JSCompiler_object_inline_stack_2555 = mode;
|
9887
|
+
JSCompiler_object_inline_componentStack_2556 = componentStack;
|
9888
|
+
nextPrimaryChildren = JSCompiler_object_inline_message_2553;
|
9889
|
+
mode = JSCompiler_object_inline_componentStack_2556;
|
9876
9890
|
nextPrimaryChildren = nextPrimaryChildren
|
9877
9891
|
? Error(nextPrimaryChildren)
|
9878
9892
|
: Error(
|
9879
9893
|
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
|
9880
9894
|
);
|
9881
9895
|
nextPrimaryChildren.stack =
|
9882
|
-
|
9883
|
-
nextPrimaryChildren.digest =
|
9884
|
-
|
9896
|
+
JSCompiler_object_inline_stack_2555 || "";
|
9897
|
+
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2554;
|
9898
|
+
JSCompiler_object_inline_digest_2554 =
|
9885
9899
|
void 0 === mode ? null : mode;
|
9886
|
-
|
9900
|
+
JSCompiler_object_inline_stack_2555 = {
|
9887
9901
|
value: nextPrimaryChildren,
|
9888
9902
|
source: null,
|
9889
|
-
stack:
|
9903
|
+
stack: JSCompiler_object_inline_digest_2554
|
9890
9904
|
};
|
9891
|
-
"string" === typeof
|
9905
|
+
"string" === typeof JSCompiler_object_inline_digest_2554 &&
|
9892
9906
|
CapturedStacks.set(
|
9893
9907
|
nextPrimaryChildren,
|
9894
|
-
|
9908
|
+
JSCompiler_object_inline_stack_2555
|
9895
9909
|
);
|
9896
|
-
queueHydrationError(
|
9910
|
+
queueHydrationError(JSCompiler_object_inline_stack_2555);
|
9897
9911
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
9898
9912
|
current,
|
9899
9913
|
workInProgress,
|
@@ -9907,35 +9921,35 @@
|
|
9907
9921
|
renderLanes,
|
9908
9922
|
!1
|
9909
9923
|
),
|
9910
|
-
(
|
9924
|
+
(JSCompiler_object_inline_digest_2554 =
|
9911
9925
|
0 !== (renderLanes & current.childLanes)),
|
9912
|
-
didReceiveUpdate ||
|
9926
|
+
didReceiveUpdate || JSCompiler_object_inline_digest_2554)
|
9913
9927
|
) {
|
9914
|
-
|
9928
|
+
JSCompiler_object_inline_digest_2554 = workInProgressRoot;
|
9915
9929
|
if (
|
9916
|
-
null !==
|
9917
|
-
((
|
9918
|
-
|
9930
|
+
null !== JSCompiler_object_inline_digest_2554 &&
|
9931
|
+
((JSCompiler_object_inline_stack_2555 = getBumpedLaneForHydration(
|
9932
|
+
JSCompiler_object_inline_digest_2554,
|
9919
9933
|
renderLanes
|
9920
9934
|
)),
|
9921
|
-
0 !==
|
9922
|
-
|
9935
|
+
0 !== JSCompiler_object_inline_stack_2555 &&
|
9936
|
+
JSCompiler_object_inline_stack_2555 !== prevState.retryLane)
|
9923
9937
|
)
|
9924
9938
|
throw (
|
9925
|
-
((prevState.retryLane =
|
9939
|
+
((prevState.retryLane = JSCompiler_object_inline_stack_2555),
|
9926
9940
|
enqueueConcurrentRenderForLane(
|
9927
9941
|
current,
|
9928
|
-
|
9942
|
+
JSCompiler_object_inline_stack_2555
|
9929
9943
|
),
|
9930
9944
|
scheduleUpdateOnFiber(
|
9931
|
-
|
9945
|
+
JSCompiler_object_inline_digest_2554,
|
9932
9946
|
current,
|
9933
|
-
|
9947
|
+
JSCompiler_object_inline_stack_2555
|
9934
9948
|
),
|
9935
9949
|
SelectiveHydrationException)
|
9936
9950
|
);
|
9937
9951
|
isSuspenseInstancePending(
|
9938
|
-
|
9952
|
+
JSCompiler_object_inline_componentStack_2556
|
9939
9953
|
) || renderDidSuspendDelayIfPossible();
|
9940
9954
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
9941
9955
|
current,
|
@@ -9944,14 +9958,14 @@
|
|
9944
9958
|
);
|
9945
9959
|
} else
|
9946
9960
|
isSuspenseInstancePending(
|
9947
|
-
|
9961
|
+
JSCompiler_object_inline_componentStack_2556
|
9948
9962
|
)
|
9949
9963
|
? ((workInProgress.flags |= 192),
|
9950
9964
|
(workInProgress.child = current.child),
|
9951
9965
|
(workInProgress = null))
|
9952
9966
|
: ((current = prevState.treeContext),
|
9953
9967
|
(nextHydratableInstance = getNextHydratable(
|
9954
|
-
|
9968
|
+
JSCompiler_object_inline_componentStack_2556.nextSibling
|
9955
9969
|
)),
|
9956
9970
|
(hydrationParentFiber = workInProgress),
|
9957
9971
|
(isHydrating = !0),
|
@@ -9963,32 +9977,32 @@
|
|
9963
9977
|
restoreSuspendedTreeContext(workInProgress, current),
|
9964
9978
|
(workInProgress = mountSuspensePrimaryChildren(
|
9965
9979
|
workInProgress,
|
9966
|
-
|
9980
|
+
JSCompiler_object_inline_stack_2555.children
|
9967
9981
|
)),
|
9968
9982
|
(workInProgress.flags |= 4096));
|
9969
9983
|
return workInProgress;
|
9970
9984
|
}
|
9971
9985
|
}
|
9972
|
-
if (
|
9986
|
+
if (JSCompiler_object_inline_message_2553)
|
9973
9987
|
return (
|
9974
9988
|
reuseSuspenseHandlerOnStack(workInProgress),
|
9975
|
-
(nextPrimaryChildren =
|
9989
|
+
(nextPrimaryChildren = JSCompiler_object_inline_stack_2555.fallback),
|
9976
9990
|
(mode = workInProgress.mode),
|
9977
9991
|
(componentStack = current.child),
|
9978
|
-
(
|
9992
|
+
(JSCompiler_object_inline_componentStack_2556 =
|
9979
9993
|
componentStack.sibling),
|
9980
|
-
(
|
9994
|
+
(JSCompiler_object_inline_stack_2555 = createWorkInProgress(
|
9981
9995
|
componentStack,
|
9982
9996
|
{
|
9983
9997
|
mode: "hidden",
|
9984
|
-
children:
|
9998
|
+
children: JSCompiler_object_inline_stack_2555.children
|
9985
9999
|
}
|
9986
10000
|
)),
|
9987
|
-
(
|
10001
|
+
(JSCompiler_object_inline_stack_2555.subtreeFlags =
|
9988
10002
|
componentStack.subtreeFlags & 65011712),
|
9989
|
-
null !==
|
10003
|
+
null !== JSCompiler_object_inline_componentStack_2556
|
9990
10004
|
? (nextPrimaryChildren = createWorkInProgress(
|
9991
|
-
|
10005
|
+
JSCompiler_object_inline_componentStack_2556,
|
9992
10006
|
nextPrimaryChildren
|
9993
10007
|
))
|
9994
10008
|
: ((nextPrimaryChildren = createFiberFromFragment(
|
@@ -9999,24 +10013,24 @@
|
|
9999
10013
|
)),
|
10000
10014
|
(nextPrimaryChildren.flags |= 2)),
|
10001
10015
|
(nextPrimaryChildren.return = workInProgress),
|
10002
|
-
(
|
10003
|
-
(
|
10004
|
-
(workInProgress.child =
|
10005
|
-
(
|
10016
|
+
(JSCompiler_object_inline_stack_2555.return = workInProgress),
|
10017
|
+
(JSCompiler_object_inline_stack_2555.sibling = nextPrimaryChildren),
|
10018
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2555),
|
10019
|
+
(JSCompiler_object_inline_stack_2555 = nextPrimaryChildren),
|
10006
10020
|
(nextPrimaryChildren = workInProgress.child),
|
10007
10021
|
(mode = current.child.memoizedState),
|
10008
10022
|
null === mode
|
10009
10023
|
? (mode = mountSuspenseOffscreenState(renderLanes))
|
10010
10024
|
: ((componentStack = mode.cachePool),
|
10011
10025
|
null !== componentStack
|
10012
|
-
? ((
|
10026
|
+
? ((JSCompiler_object_inline_componentStack_2556 =
|
10013
10027
|
CacheContext._currentValue),
|
10014
10028
|
(componentStack =
|
10015
10029
|
componentStack.parent !==
|
10016
|
-
|
10030
|
+
JSCompiler_object_inline_componentStack_2556
|
10017
10031
|
? {
|
10018
|
-
parent:
|
10019
|
-
pool:
|
10032
|
+
parent: JSCompiler_object_inline_componentStack_2556,
|
10033
|
+
pool: JSCompiler_object_inline_componentStack_2556
|
10020
10034
|
}
|
10021
10035
|
: componentStack))
|
10022
10036
|
: (componentStack = getSuspendedCache()),
|
@@ -10027,27 +10041,27 @@
|
|
10027
10041
|
(nextPrimaryChildren.memoizedState = mode),
|
10028
10042
|
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
|
10029
10043
|
current,
|
10030
|
-
|
10044
|
+
JSCompiler_object_inline_digest_2554,
|
10031
10045
|
renderLanes
|
10032
10046
|
)),
|
10033
10047
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
10034
|
-
|
10048
|
+
JSCompiler_object_inline_stack_2555
|
10035
10049
|
);
|
10036
10050
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
10037
10051
|
renderLanes = current.child;
|
10038
10052
|
current = renderLanes.sibling;
|
10039
10053
|
renderLanes = createWorkInProgress(renderLanes, {
|
10040
10054
|
mode: "visible",
|
10041
|
-
children:
|
10055
|
+
children: JSCompiler_object_inline_stack_2555.children
|
10042
10056
|
});
|
10043
10057
|
renderLanes.return = workInProgress;
|
10044
10058
|
renderLanes.sibling = null;
|
10045
10059
|
null !== current &&
|
10046
|
-
((
|
10047
|
-
null ===
|
10060
|
+
((JSCompiler_object_inline_digest_2554 = workInProgress.deletions),
|
10061
|
+
null === JSCompiler_object_inline_digest_2554
|
10048
10062
|
? ((workInProgress.deletions = [current]),
|
10049
10063
|
(workInProgress.flags |= 16))
|
10050
|
-
:
|
10064
|
+
: JSCompiler_object_inline_digest_2554.push(current));
|
10051
10065
|
workInProgress.child = renderLanes;
|
10052
10066
|
workInProgress.memoizedState = null;
|
10053
10067
|
return renderLanes;
|
@@ -25487,11 +25501,11 @@
|
|
25487
25501
|
};
|
25488
25502
|
(function () {
|
25489
25503
|
var isomorphicReactPackageVersion = React.version;
|
25490
|
-
if ("19.2.0-canary-
|
25504
|
+
if ("19.2.0-canary-cee7939b-20250625" !== isomorphicReactPackageVersion)
|
25491
25505
|
throw Error(
|
25492
25506
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25493
25507
|
(isomorphicReactPackageVersion +
|
25494
|
-
"\n - react-dom: 19.2.0-canary-
|
25508
|
+
"\n - react-dom: 19.2.0-canary-cee7939b-20250625\nLearn more: https://react.dev/warnings/version-mismatch")
|
25495
25509
|
);
|
25496
25510
|
})();
|
25497
25511
|
("function" === typeof Map &&
|
@@ -25528,10 +25542,10 @@
|
|
25528
25542
|
!(function () {
|
25529
25543
|
var internals = {
|
25530
25544
|
bundleType: 1,
|
25531
|
-
version: "19.2.0-canary-
|
25545
|
+
version: "19.2.0-canary-cee7939b-20250625",
|
25532
25546
|
rendererPackageName: "react-dom",
|
25533
25547
|
currentDispatcherRef: ReactSharedInternals,
|
25534
|
-
reconcilerVersion: "19.2.0-canary-
|
25548
|
+
reconcilerVersion: "19.2.0-canary-cee7939b-20250625"
|
25535
25549
|
};
|
25536
25550
|
internals.overrideHookState = overrideHookState;
|
25537
25551
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -25669,7 +25683,7 @@
|
|
25669
25683
|
listenToAllSupportedEvents(container);
|
25670
25684
|
return new ReactDOMHydrationRoot(initialChildren);
|
25671
25685
|
};
|
25672
|
-
exports.version = "19.2.0-canary-
|
25686
|
+
exports.version = "19.2.0-canary-cee7939b-20250625";
|
25673
25687
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
25674
25688
|
"function" ===
|
25675
25689
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -2044,19 +2044,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
|
|
2044
2044
|
}
|
2045
2045
|
var isInputEventSupported = !1;
|
2046
2046
|
if (canUseDOM) {
|
2047
|
-
var JSCompiler_inline_result$jscomp$
|
2047
|
+
var JSCompiler_inline_result$jscomp$295;
|
2048
2048
|
if (canUseDOM) {
|
2049
|
-
var isSupported$jscomp$
|
2050
|
-
if (!isSupported$jscomp$
|
2051
|
-
var element$jscomp$
|
2052
|
-
element$jscomp$
|
2053
|
-
isSupported$jscomp$
|
2054
|
-
"function" === typeof element$jscomp$
|
2049
|
+
var isSupported$jscomp$inline_440 = "oninput" in document;
|
2050
|
+
if (!isSupported$jscomp$inline_440) {
|
2051
|
+
var element$jscomp$inline_441 = document.createElement("div");
|
2052
|
+
element$jscomp$inline_441.setAttribute("oninput", "return;");
|
2053
|
+
isSupported$jscomp$inline_440 =
|
2054
|
+
"function" === typeof element$jscomp$inline_441.oninput;
|
2055
2055
|
}
|
2056
|
-
JSCompiler_inline_result$jscomp$
|
2057
|
-
} else JSCompiler_inline_result$jscomp$
|
2056
|
+
JSCompiler_inline_result$jscomp$295 = isSupported$jscomp$inline_440;
|
2057
|
+
} else JSCompiler_inline_result$jscomp$295 = !1;
|
2058
2058
|
isInputEventSupported =
|
2059
|
-
JSCompiler_inline_result$jscomp$
|
2059
|
+
JSCompiler_inline_result$jscomp$295 &&
|
2060
2060
|
(!document.documentMode || 9 < document.documentMode);
|
2061
2061
|
}
|
2062
2062
|
function stopWatchingForValueChange() {
|
@@ -12082,20 +12082,20 @@ function extractEvents$1(
|
|
12082
12082
|
}
|
12083
12083
|
}
|
12084
12084
|
for (
|
12085
|
-
var i$jscomp$
|
12086
|
-
i$jscomp$
|
12087
|
-
i$jscomp$
|
12085
|
+
var i$jscomp$inline_1597 = 0;
|
12086
|
+
i$jscomp$inline_1597 < simpleEventPluginEvents.length;
|
12087
|
+
i$jscomp$inline_1597++
|
12088
12088
|
) {
|
12089
|
-
var eventName$jscomp$
|
12090
|
-
simpleEventPluginEvents[i$jscomp$
|
12091
|
-
domEventName$jscomp$
|
12092
|
-
eventName$jscomp$
|
12093
|
-
capitalizedEvent$jscomp$
|
12094
|
-
eventName$jscomp$
|
12095
|
-
eventName$jscomp$
|
12089
|
+
var eventName$jscomp$inline_1598 =
|
12090
|
+
simpleEventPluginEvents[i$jscomp$inline_1597],
|
12091
|
+
domEventName$jscomp$inline_1599 =
|
12092
|
+
eventName$jscomp$inline_1598.toLowerCase(),
|
12093
|
+
capitalizedEvent$jscomp$inline_1600 =
|
12094
|
+
eventName$jscomp$inline_1598[0].toUpperCase() +
|
12095
|
+
eventName$jscomp$inline_1598.slice(1);
|
12096
12096
|
registerSimpleEvent(
|
12097
|
-
domEventName$jscomp$
|
12098
|
-
"on" + capitalizedEvent$jscomp$
|
12097
|
+
domEventName$jscomp$inline_1599,
|
12098
|
+
"on" + capitalizedEvent$jscomp$inline_1600
|
12099
12099
|
);
|
12100
12100
|
}
|
12101
12101
|
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
@@ -15711,16 +15711,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15711
15711
|
0 === i && attemptExplicitHydrationTarget(target);
|
15712
15712
|
}
|
15713
15713
|
};
|
15714
|
-
var isomorphicReactPackageVersion$jscomp$
|
15714
|
+
var isomorphicReactPackageVersion$jscomp$inline_1857 = React.version;
|
15715
15715
|
if (
|
15716
|
-
"19.2.0-canary-
|
15717
|
-
isomorphicReactPackageVersion$jscomp$
|
15716
|
+
"19.2.0-canary-cee7939b-20250625" !==
|
15717
|
+
isomorphicReactPackageVersion$jscomp$inline_1857
|
15718
15718
|
)
|
15719
15719
|
throw Error(
|
15720
15720
|
formatProdErrorMessage(
|
15721
15721
|
527,
|
15722
|
-
isomorphicReactPackageVersion$jscomp$
|
15723
|
-
"19.2.0-canary-
|
15722
|
+
isomorphicReactPackageVersion$jscomp$inline_1857,
|
15723
|
+
"19.2.0-canary-cee7939b-20250625"
|
15724
15724
|
)
|
15725
15725
|
);
|
15726
15726
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15740,24 +15740,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15740
15740
|
null === componentOrElement ? null : componentOrElement.stateNode;
|
15741
15741
|
return componentOrElement;
|
15742
15742
|
};
|
15743
|
-
var internals$jscomp$
|
15743
|
+
var internals$jscomp$inline_2350 = {
|
15744
15744
|
bundleType: 0,
|
15745
|
-
version: "19.2.0-canary-
|
15745
|
+
version: "19.2.0-canary-cee7939b-20250625",
|
15746
15746
|
rendererPackageName: "react-dom",
|
15747
15747
|
currentDispatcherRef: ReactSharedInternals,
|
15748
|
-
reconcilerVersion: "19.2.0-canary-
|
15748
|
+
reconcilerVersion: "19.2.0-canary-cee7939b-20250625"
|
15749
15749
|
};
|
15750
15750
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15751
|
-
var hook$jscomp$
|
15751
|
+
var hook$jscomp$inline_2351 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
15752
15752
|
if (
|
15753
|
-
!hook$jscomp$
|
15754
|
-
hook$jscomp$
|
15753
|
+
!hook$jscomp$inline_2351.isDisabled &&
|
15754
|
+
hook$jscomp$inline_2351.supportsFiber
|
15755
15755
|
)
|
15756
15756
|
try {
|
15757
|
-
(rendererID = hook$jscomp$
|
15758
|
-
internals$jscomp$
|
15757
|
+
(rendererID = hook$jscomp$inline_2351.inject(
|
15758
|
+
internals$jscomp$inline_2350
|
15759
15759
|
)),
|
15760
|
-
(injectedHook = hook$jscomp$
|
15760
|
+
(injectedHook = hook$jscomp$inline_2351);
|
15761
15761
|
} catch (err) {}
|
15762
15762
|
}
|
15763
15763
|
exports.createRoot = function (container, options) {
|
@@ -15843,4 +15843,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
15843
15843
|
listenToAllSupportedEvents(container);
|
15844
15844
|
return new ReactDOMHydrationRoot(initialChildren);
|
15845
15845
|
};
|
15846
|
-
exports.version = "19.2.0-canary-
|
15846
|
+
exports.version = "19.2.0-canary-cee7939b-20250625";
|