react-dom 19.2.0-canary-fa3feba6-20250623 → 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
@@ -540,6 +540,27 @@
|
|
540
540
|
"disabledDepth fell below zero. This is a bug in React. Please file an issue."
|
541
541
|
);
|
542
542
|
}
|
543
|
+
function formatOwnerStack(error) {
|
544
|
+
var prevPrepareStackTrace = Error.prepareStackTrace;
|
545
|
+
Error.prepareStackTrace = void 0;
|
546
|
+
error = error.stack;
|
547
|
+
Error.prepareStackTrace = prevPrepareStackTrace;
|
548
|
+
error.startsWith("Error: react-stack-top-frame\n") &&
|
549
|
+
(error = error.slice(29));
|
550
|
+
prevPrepareStackTrace = error.indexOf("\n");
|
551
|
+
-1 !== prevPrepareStackTrace &&
|
552
|
+
(error = error.slice(prevPrepareStackTrace + 1));
|
553
|
+
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
|
554
|
+
-1 !== prevPrepareStackTrace &&
|
555
|
+
(prevPrepareStackTrace = error.lastIndexOf(
|
556
|
+
"\n",
|
557
|
+
prevPrepareStackTrace
|
558
|
+
));
|
559
|
+
if (-1 !== prevPrepareStackTrace)
|
560
|
+
error = error.slice(0, prevPrepareStackTrace);
|
561
|
+
else return "";
|
562
|
+
return error;
|
563
|
+
}
|
543
564
|
function describeBuiltInComponentFrame(name) {
|
544
565
|
if (void 0 === prefix)
|
545
566
|
try {
|
@@ -712,27 +733,6 @@
|
|
712
733
|
"function" === typeof fn && componentFrameCache.set(fn, sampleLines);
|
713
734
|
return sampleLines;
|
714
735
|
}
|
715
|
-
function formatOwnerStack(error) {
|
716
|
-
var prevPrepareStackTrace = Error.prepareStackTrace;
|
717
|
-
Error.prepareStackTrace = void 0;
|
718
|
-
error = error.stack;
|
719
|
-
Error.prepareStackTrace = prevPrepareStackTrace;
|
720
|
-
error.startsWith("Error: react-stack-top-frame\n") &&
|
721
|
-
(error = error.slice(29));
|
722
|
-
prevPrepareStackTrace = error.indexOf("\n");
|
723
|
-
-1 !== prevPrepareStackTrace &&
|
724
|
-
(error = error.slice(prevPrepareStackTrace + 1));
|
725
|
-
prevPrepareStackTrace = error.indexOf("react-stack-bottom-frame");
|
726
|
-
-1 !== prevPrepareStackTrace &&
|
727
|
-
(prevPrepareStackTrace = error.lastIndexOf(
|
728
|
-
"\n",
|
729
|
-
prevPrepareStackTrace
|
730
|
-
));
|
731
|
-
if (-1 !== prevPrepareStackTrace)
|
732
|
-
error = error.slice(0, prevPrepareStackTrace);
|
733
|
-
else return "";
|
734
|
-
return error;
|
735
|
-
}
|
736
736
|
function describeFiber(fiber) {
|
737
737
|
switch (fiber.tag) {
|
738
738
|
case 26:
|
@@ -768,11 +768,25 @@
|
|
768
768
|
for (var i = debugInfo.length - 1; 0 <= i; i--) {
|
769
769
|
var entry = debugInfo[i];
|
770
770
|
if ("string" === typeof entry.name) {
|
771
|
-
var JSCompiler_temp_const = info
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
771
|
+
var JSCompiler_temp_const = info;
|
772
|
+
a: {
|
773
|
+
var name = entry.name,
|
774
|
+
env = entry.env,
|
775
|
+
location = entry.debugLocation;
|
776
|
+
if (null != location) {
|
777
|
+
var childStack = formatOwnerStack(location),
|
778
|
+
idx = childStack.lastIndexOf("\n"),
|
779
|
+
lastLine =
|
780
|
+
-1 === idx ? childStack : childStack.slice(idx + 1);
|
781
|
+
if (-1 !== lastLine.indexOf(name)) {
|
782
|
+
var JSCompiler_inline_result = "\n" + lastLine;
|
783
|
+
break a;
|
784
|
+
}
|
785
|
+
}
|
786
|
+
JSCompiler_inline_result = describeBuiltInComponentFrame(
|
787
|
+
name + (env ? " [" + env + "]" : "")
|
788
|
+
);
|
789
|
+
}
|
776
790
|
info = JSCompiler_temp_const + JSCompiler_inline_result;
|
777
791
|
}
|
778
792
|
}
|
@@ -9708,24 +9722,24 @@
|
|
9708
9722
|
return current;
|
9709
9723
|
}
|
9710
9724
|
function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
9711
|
-
var
|
9712
|
-
var
|
9725
|
+
var JSCompiler_object_inline_digest_2559;
|
9726
|
+
var JSCompiler_object_inline_stack_2560 = workInProgress.pendingProps;
|
9713
9727
|
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
|
9714
|
-
var
|
9728
|
+
var JSCompiler_object_inline_message_2558 = !1;
|
9715
9729
|
var didSuspend = 0 !== (workInProgress.flags & 128);
|
9716
|
-
(
|
9717
|
-
(
|
9730
|
+
(JSCompiler_object_inline_digest_2559 = didSuspend) ||
|
9731
|
+
(JSCompiler_object_inline_digest_2559 =
|
9718
9732
|
null !== current && null === current.memoizedState
|
9719
9733
|
? !1
|
9720
9734
|
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
|
9721
|
-
|
9722
|
-
((
|
9735
|
+
JSCompiler_object_inline_digest_2559 &&
|
9736
|
+
((JSCompiler_object_inline_message_2558 = !0),
|
9723
9737
|
(workInProgress.flags &= -129));
|
9724
|
-
|
9738
|
+
JSCompiler_object_inline_digest_2559 = 0 !== (workInProgress.flags & 32);
|
9725
9739
|
workInProgress.flags &= -33;
|
9726
9740
|
if (null === current) {
|
9727
9741
|
if (isHydrating) {
|
9728
|
-
|
9742
|
+
JSCompiler_object_inline_message_2558
|
9729
9743
|
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
9730
9744
|
: reuseSuspenseHandlerOnStack(workInProgress);
|
9731
9745
|
(current = nextHydratableInstance)
|
@@ -9738,18 +9752,18 @@
|
|
9738
9752
|
? renderLanes
|
9739
9753
|
: null),
|
9740
9754
|
null !== renderLanes &&
|
9741
|
-
((
|
9755
|
+
((JSCompiler_object_inline_digest_2559 = {
|
9742
9756
|
dehydrated: renderLanes,
|
9743
9757
|
treeContext: getSuspendedTreeContext(),
|
9744
9758
|
retryLane: 536870912,
|
9745
9759
|
hydrationErrors: null
|
9746
9760
|
}),
|
9747
9761
|
(workInProgress.memoizedState =
|
9748
|
-
|
9749
|
-
(
|
9762
|
+
JSCompiler_object_inline_digest_2559),
|
9763
|
+
(JSCompiler_object_inline_digest_2559 =
|
9750
9764
|
createFiberFromDehydratedFragment(renderLanes)),
|
9751
|
-
(
|
9752
|
-
(workInProgress.child =
|
9765
|
+
(JSCompiler_object_inline_digest_2559.return = workInProgress),
|
9766
|
+
(workInProgress.child = JSCompiler_object_inline_digest_2559),
|
9753
9767
|
(hydrationParentFiber = workInProgress),
|
9754
9768
|
(nextHydratableInstance = null)))
|
9755
9769
|
: (renderLanes = null);
|
@@ -9763,36 +9777,36 @@
|
|
9763
9777
|
: (workInProgress.lanes = 536870912);
|
9764
9778
|
return null;
|
9765
9779
|
}
|
9766
|
-
var nextPrimaryChildren =
|
9767
|
-
|
9768
|
-
|
9769
|
-
if (
|
9780
|
+
var nextPrimaryChildren = JSCompiler_object_inline_stack_2560.children;
|
9781
|
+
JSCompiler_object_inline_stack_2560 =
|
9782
|
+
JSCompiler_object_inline_stack_2560.fallback;
|
9783
|
+
if (JSCompiler_object_inline_message_2558) {
|
9770
9784
|
reuseSuspenseHandlerOnStack(workInProgress);
|
9771
9785
|
var mode = workInProgress.mode;
|
9772
9786
|
nextPrimaryChildren = mountWorkInProgressOffscreenFiber(
|
9773
9787
|
{ mode: "hidden", children: nextPrimaryChildren },
|
9774
9788
|
mode
|
9775
9789
|
);
|
9776
|
-
|
9777
|
-
|
9790
|
+
JSCompiler_object_inline_stack_2560 = createFiberFromFragment(
|
9791
|
+
JSCompiler_object_inline_stack_2560,
|
9778
9792
|
mode,
|
9779
9793
|
renderLanes,
|
9780
9794
|
null
|
9781
9795
|
);
|
9782
9796
|
nextPrimaryChildren.return = workInProgress;
|
9783
|
-
|
9784
|
-
nextPrimaryChildren.sibling =
|
9797
|
+
JSCompiler_object_inline_stack_2560.return = workInProgress;
|
9798
|
+
nextPrimaryChildren.sibling = JSCompiler_object_inline_stack_2560;
|
9785
9799
|
workInProgress.child = nextPrimaryChildren;
|
9786
9800
|
nextPrimaryChildren = workInProgress.child;
|
9787
9801
|
nextPrimaryChildren.memoizedState =
|
9788
9802
|
mountSuspenseOffscreenState(renderLanes);
|
9789
9803
|
nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
|
9790
9804
|
current,
|
9791
|
-
|
9805
|
+
JSCompiler_object_inline_digest_2559,
|
9792
9806
|
renderLanes
|
9793
9807
|
);
|
9794
9808
|
workInProgress.memoizedState = SUSPENDED_MARKER;
|
9795
|
-
return
|
9809
|
+
return JSCompiler_object_inline_stack_2560;
|
9796
9810
|
}
|
9797
9811
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
9798
9812
|
return mountSuspensePrimaryChildren(
|
@@ -9802,8 +9816,8 @@
|
|
9802
9816
|
}
|
9803
9817
|
var prevState = current.memoizedState;
|
9804
9818
|
if (null !== prevState) {
|
9805
|
-
var
|
9806
|
-
if (null !==
|
9819
|
+
var JSCompiler_object_inline_componentStack_2561 = prevState.dehydrated;
|
9820
|
+
if (null !== JSCompiler_object_inline_componentStack_2561) {
|
9807
9821
|
if (didSuspend)
|
9808
9822
|
workInProgress.flags & 256
|
9809
9823
|
? (pushPrimaryTreeSuspenseHandler(workInProgress),
|
@@ -9820,13 +9834,13 @@
|
|
9820
9834
|
(workInProgress = null))
|
9821
9835
|
: (reuseSuspenseHandlerOnStack(workInProgress),
|
9822
9836
|
(nextPrimaryChildren =
|
9823
|
-
|
9837
|
+
JSCompiler_object_inline_stack_2560.fallback),
|
9824
9838
|
(mode = workInProgress.mode),
|
9825
|
-
(
|
9839
|
+
(JSCompiler_object_inline_stack_2560 =
|
9826
9840
|
mountWorkInProgressOffscreenFiber(
|
9827
9841
|
{
|
9828
9842
|
mode: "visible",
|
9829
|
-
children:
|
9843
|
+
children: JSCompiler_object_inline_stack_2560.children
|
9830
9844
|
},
|
9831
9845
|
mode
|
9832
9846
|
)),
|
@@ -9837,24 +9851,24 @@
|
|
9837
9851
|
null
|
9838
9852
|
)),
|
9839
9853
|
(nextPrimaryChildren.flags |= 2),
|
9840
|
-
(
|
9854
|
+
(JSCompiler_object_inline_stack_2560.return = workInProgress),
|
9841
9855
|
(nextPrimaryChildren.return = workInProgress),
|
9842
|
-
(
|
9856
|
+
(JSCompiler_object_inline_stack_2560.sibling =
|
9843
9857
|
nextPrimaryChildren),
|
9844
|
-
(workInProgress.child =
|
9858
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2560),
|
9845
9859
|
reconcileChildFibers(
|
9846
9860
|
workInProgress,
|
9847
9861
|
current.child,
|
9848
9862
|
null,
|
9849
9863
|
renderLanes
|
9850
9864
|
),
|
9851
|
-
(
|
9852
|
-
(
|
9865
|
+
(JSCompiler_object_inline_stack_2560 = workInProgress.child),
|
9866
|
+
(JSCompiler_object_inline_stack_2560.memoizedState =
|
9853
9867
|
mountSuspenseOffscreenState(renderLanes)),
|
9854
|
-
(
|
9868
|
+
(JSCompiler_object_inline_stack_2560.childLanes =
|
9855
9869
|
getRemainingWorkInPrimaryTree(
|
9856
9870
|
current,
|
9857
|
-
|
9871
|
+
JSCompiler_object_inline_digest_2559,
|
9858
9872
|
renderLanes
|
9859
9873
|
)),
|
9860
9874
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
@@ -9863,45 +9877,45 @@
|
|
9863
9877
|
(pushPrimaryTreeSuspenseHandler(workInProgress),
|
9864
9878
|
warnIfHydrating(),
|
9865
9879
|
isSuspenseInstanceFallback(
|
9866
|
-
|
9880
|
+
JSCompiler_object_inline_componentStack_2561
|
9867
9881
|
))
|
9868
9882
|
) {
|
9869
|
-
|
9870
|
-
|
9871
|
-
|
9872
|
-
if (
|
9873
|
-
nextPrimaryChildren =
|
9874
|
-
var message =
|
9875
|
-
mode =
|
9876
|
-
var componentStack =
|
9883
|
+
JSCompiler_object_inline_digest_2559 =
|
9884
|
+
JSCompiler_object_inline_componentStack_2561.nextSibling &&
|
9885
|
+
JSCompiler_object_inline_componentStack_2561.nextSibling.dataset;
|
9886
|
+
if (JSCompiler_object_inline_digest_2559) {
|
9887
|
+
nextPrimaryChildren = JSCompiler_object_inline_digest_2559.dgst;
|
9888
|
+
var message = JSCompiler_object_inline_digest_2559.msg;
|
9889
|
+
mode = JSCompiler_object_inline_digest_2559.stck;
|
9890
|
+
var componentStack = JSCompiler_object_inline_digest_2559.cstck;
|
9877
9891
|
}
|
9878
|
-
|
9879
|
-
|
9880
|
-
|
9881
|
-
|
9882
|
-
nextPrimaryChildren =
|
9883
|
-
mode =
|
9892
|
+
JSCompiler_object_inline_message_2558 = message;
|
9893
|
+
JSCompiler_object_inline_digest_2559 = nextPrimaryChildren;
|
9894
|
+
JSCompiler_object_inline_stack_2560 = mode;
|
9895
|
+
JSCompiler_object_inline_componentStack_2561 = componentStack;
|
9896
|
+
nextPrimaryChildren = JSCompiler_object_inline_message_2558;
|
9897
|
+
mode = JSCompiler_object_inline_componentStack_2561;
|
9884
9898
|
nextPrimaryChildren = nextPrimaryChildren
|
9885
9899
|
? Error(nextPrimaryChildren)
|
9886
9900
|
: Error(
|
9887
9901
|
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
|
9888
9902
|
);
|
9889
9903
|
nextPrimaryChildren.stack =
|
9890
|
-
|
9891
|
-
nextPrimaryChildren.digest =
|
9892
|
-
|
9904
|
+
JSCompiler_object_inline_stack_2560 || "";
|
9905
|
+
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2559;
|
9906
|
+
JSCompiler_object_inline_digest_2559 =
|
9893
9907
|
void 0 === mode ? null : mode;
|
9894
|
-
|
9908
|
+
JSCompiler_object_inline_stack_2560 = {
|
9895
9909
|
value: nextPrimaryChildren,
|
9896
9910
|
source: null,
|
9897
|
-
stack:
|
9911
|
+
stack: JSCompiler_object_inline_digest_2559
|
9898
9912
|
};
|
9899
|
-
"string" === typeof
|
9913
|
+
"string" === typeof JSCompiler_object_inline_digest_2559 &&
|
9900
9914
|
CapturedStacks.set(
|
9901
9915
|
nextPrimaryChildren,
|
9902
|
-
|
9916
|
+
JSCompiler_object_inline_stack_2560
|
9903
9917
|
);
|
9904
|
-
queueHydrationError(
|
9918
|
+
queueHydrationError(JSCompiler_object_inline_stack_2560);
|
9905
9919
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
9906
9920
|
current,
|
9907
9921
|
workInProgress,
|
@@ -9915,35 +9929,35 @@
|
|
9915
9929
|
renderLanes,
|
9916
9930
|
!1
|
9917
9931
|
),
|
9918
|
-
(
|
9932
|
+
(JSCompiler_object_inline_digest_2559 =
|
9919
9933
|
0 !== (renderLanes & current.childLanes)),
|
9920
|
-
didReceiveUpdate ||
|
9934
|
+
didReceiveUpdate || JSCompiler_object_inline_digest_2559)
|
9921
9935
|
) {
|
9922
|
-
|
9936
|
+
JSCompiler_object_inline_digest_2559 = workInProgressRoot;
|
9923
9937
|
if (
|
9924
|
-
null !==
|
9925
|
-
((
|
9926
|
-
|
9938
|
+
null !== JSCompiler_object_inline_digest_2559 &&
|
9939
|
+
((JSCompiler_object_inline_stack_2560 = getBumpedLaneForHydration(
|
9940
|
+
JSCompiler_object_inline_digest_2559,
|
9927
9941
|
renderLanes
|
9928
9942
|
)),
|
9929
|
-
0 !==
|
9930
|
-
|
9943
|
+
0 !== JSCompiler_object_inline_stack_2560 &&
|
9944
|
+
JSCompiler_object_inline_stack_2560 !== prevState.retryLane)
|
9931
9945
|
)
|
9932
9946
|
throw (
|
9933
|
-
((prevState.retryLane =
|
9947
|
+
((prevState.retryLane = JSCompiler_object_inline_stack_2560),
|
9934
9948
|
enqueueConcurrentRenderForLane(
|
9935
9949
|
current,
|
9936
|
-
|
9950
|
+
JSCompiler_object_inline_stack_2560
|
9937
9951
|
),
|
9938
9952
|
scheduleUpdateOnFiber(
|
9939
|
-
|
9953
|
+
JSCompiler_object_inline_digest_2559,
|
9940
9954
|
current,
|
9941
|
-
|
9955
|
+
JSCompiler_object_inline_stack_2560
|
9942
9956
|
),
|
9943
9957
|
SelectiveHydrationException)
|
9944
9958
|
);
|
9945
9959
|
isSuspenseInstancePending(
|
9946
|
-
|
9960
|
+
JSCompiler_object_inline_componentStack_2561
|
9947
9961
|
) || renderDidSuspendDelayIfPossible();
|
9948
9962
|
workInProgress = retrySuspenseComponentWithoutHydrating(
|
9949
9963
|
current,
|
@@ -9952,14 +9966,14 @@
|
|
9952
9966
|
);
|
9953
9967
|
} else
|
9954
9968
|
isSuspenseInstancePending(
|
9955
|
-
|
9969
|
+
JSCompiler_object_inline_componentStack_2561
|
9956
9970
|
)
|
9957
9971
|
? ((workInProgress.flags |= 192),
|
9958
9972
|
(workInProgress.child = current.child),
|
9959
9973
|
(workInProgress = null))
|
9960
9974
|
: ((current = prevState.treeContext),
|
9961
9975
|
(nextHydratableInstance = getNextHydratable(
|
9962
|
-
|
9976
|
+
JSCompiler_object_inline_componentStack_2561.nextSibling
|
9963
9977
|
)),
|
9964
9978
|
(hydrationParentFiber = workInProgress),
|
9965
9979
|
(isHydrating = !0),
|
@@ -9971,32 +9985,32 @@
|
|
9971
9985
|
restoreSuspendedTreeContext(workInProgress, current),
|
9972
9986
|
(workInProgress = mountSuspensePrimaryChildren(
|
9973
9987
|
workInProgress,
|
9974
|
-
|
9988
|
+
JSCompiler_object_inline_stack_2560.children
|
9975
9989
|
)),
|
9976
9990
|
(workInProgress.flags |= 4096));
|
9977
9991
|
return workInProgress;
|
9978
9992
|
}
|
9979
9993
|
}
|
9980
|
-
if (
|
9994
|
+
if (JSCompiler_object_inline_message_2558)
|
9981
9995
|
return (
|
9982
9996
|
reuseSuspenseHandlerOnStack(workInProgress),
|
9983
|
-
(nextPrimaryChildren =
|
9997
|
+
(nextPrimaryChildren = JSCompiler_object_inline_stack_2560.fallback),
|
9984
9998
|
(mode = workInProgress.mode),
|
9985
9999
|
(componentStack = current.child),
|
9986
|
-
(
|
10000
|
+
(JSCompiler_object_inline_componentStack_2561 =
|
9987
10001
|
componentStack.sibling),
|
9988
|
-
(
|
10002
|
+
(JSCompiler_object_inline_stack_2560 = createWorkInProgress(
|
9989
10003
|
componentStack,
|
9990
10004
|
{
|
9991
10005
|
mode: "hidden",
|
9992
|
-
children:
|
10006
|
+
children: JSCompiler_object_inline_stack_2560.children
|
9993
10007
|
}
|
9994
10008
|
)),
|
9995
|
-
(
|
10009
|
+
(JSCompiler_object_inline_stack_2560.subtreeFlags =
|
9996
10010
|
componentStack.subtreeFlags & 65011712),
|
9997
|
-
null !==
|
10011
|
+
null !== JSCompiler_object_inline_componentStack_2561
|
9998
10012
|
? (nextPrimaryChildren = createWorkInProgress(
|
9999
|
-
|
10013
|
+
JSCompiler_object_inline_componentStack_2561,
|
10000
10014
|
nextPrimaryChildren
|
10001
10015
|
))
|
10002
10016
|
: ((nextPrimaryChildren = createFiberFromFragment(
|
@@ -10007,24 +10021,24 @@
|
|
10007
10021
|
)),
|
10008
10022
|
(nextPrimaryChildren.flags |= 2)),
|
10009
10023
|
(nextPrimaryChildren.return = workInProgress),
|
10010
|
-
(
|
10011
|
-
(
|
10012
|
-
(workInProgress.child =
|
10013
|
-
(
|
10024
|
+
(JSCompiler_object_inline_stack_2560.return = workInProgress),
|
10025
|
+
(JSCompiler_object_inline_stack_2560.sibling = nextPrimaryChildren),
|
10026
|
+
(workInProgress.child = JSCompiler_object_inline_stack_2560),
|
10027
|
+
(JSCompiler_object_inline_stack_2560 = nextPrimaryChildren),
|
10014
10028
|
(nextPrimaryChildren = workInProgress.child),
|
10015
10029
|
(mode = current.child.memoizedState),
|
10016
10030
|
null === mode
|
10017
10031
|
? (mode = mountSuspenseOffscreenState(renderLanes))
|
10018
10032
|
: ((componentStack = mode.cachePool),
|
10019
10033
|
null !== componentStack
|
10020
|
-
? ((
|
10034
|
+
? ((JSCompiler_object_inline_componentStack_2561 =
|
10021
10035
|
CacheContext._currentValue),
|
10022
10036
|
(componentStack =
|
10023
10037
|
componentStack.parent !==
|
10024
|
-
|
10038
|
+
JSCompiler_object_inline_componentStack_2561
|
10025
10039
|
? {
|
10026
|
-
parent:
|
10027
|
-
pool:
|
10040
|
+
parent: JSCompiler_object_inline_componentStack_2561,
|
10041
|
+
pool: JSCompiler_object_inline_componentStack_2561
|
10028
10042
|
}
|
10029
10043
|
: componentStack))
|
10030
10044
|
: (componentStack = getSuspendedCache()),
|
@@ -10035,27 +10049,27 @@
|
|
10035
10049
|
(nextPrimaryChildren.memoizedState = mode),
|
10036
10050
|
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
|
10037
10051
|
current,
|
10038
|
-
|
10052
|
+
JSCompiler_object_inline_digest_2559,
|
10039
10053
|
renderLanes
|
10040
10054
|
)),
|
10041
10055
|
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
10042
|
-
|
10056
|
+
JSCompiler_object_inline_stack_2560
|
10043
10057
|
);
|
10044
10058
|
pushPrimaryTreeSuspenseHandler(workInProgress);
|
10045
10059
|
renderLanes = current.child;
|
10046
10060
|
current = renderLanes.sibling;
|
10047
10061
|
renderLanes = createWorkInProgress(renderLanes, {
|
10048
10062
|
mode: "visible",
|
10049
|
-
children:
|
10063
|
+
children: JSCompiler_object_inline_stack_2560.children
|
10050
10064
|
});
|
10051
10065
|
renderLanes.return = workInProgress;
|
10052
10066
|
renderLanes.sibling = null;
|
10053
10067
|
null !== current &&
|
10054
|
-
((
|
10055
|
-
null ===
|
10068
|
+
((JSCompiler_object_inline_digest_2559 = workInProgress.deletions),
|
10069
|
+
null === JSCompiler_object_inline_digest_2559
|
10056
10070
|
? ((workInProgress.deletions = [current]),
|
10057
10071
|
(workInProgress.flags |= 16))
|
10058
|
-
:
|
10072
|
+
: JSCompiler_object_inline_digest_2559.push(current));
|
10059
10073
|
workInProgress.child = renderLanes;
|
10060
10074
|
workInProgress.memoizedState = null;
|
10061
10075
|
return renderLanes;
|
@@ -25539,11 +25553,11 @@
|
|
25539
25553
|
};
|
25540
25554
|
(function () {
|
25541
25555
|
var isomorphicReactPackageVersion = React.version;
|
25542
|
-
if ("19.2.0-canary-
|
25556
|
+
if ("19.2.0-canary-cee7939b-20250625" !== isomorphicReactPackageVersion)
|
25543
25557
|
throw Error(
|
25544
25558
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25545
25559
|
(isomorphicReactPackageVersion +
|
25546
|
-
"\n - react-dom: 19.2.0-canary-
|
25560
|
+
"\n - react-dom: 19.2.0-canary-cee7939b-20250625\nLearn more: https://react.dev/warnings/version-mismatch")
|
25547
25561
|
);
|
25548
25562
|
})();
|
25549
25563
|
("function" === typeof Map &&
|
@@ -25580,10 +25594,10 @@
|
|
25580
25594
|
!(function () {
|
25581
25595
|
var internals = {
|
25582
25596
|
bundleType: 1,
|
25583
|
-
version: "19.2.0-canary-
|
25597
|
+
version: "19.2.0-canary-cee7939b-20250625",
|
25584
25598
|
rendererPackageName: "react-dom",
|
25585
25599
|
currentDispatcherRef: ReactSharedInternals,
|
25586
|
-
reconcilerVersion: "19.2.0-canary-
|
25600
|
+
reconcilerVersion: "19.2.0-canary-cee7939b-20250625"
|
25587
25601
|
};
|
25588
25602
|
internals.overrideHookState = overrideHookState;
|
25589
25603
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -26051,7 +26065,7 @@
|
|
26051
26065
|
exports.useFormStatus = function () {
|
26052
26066
|
return resolveDispatcher().useHostTransitionStatus();
|
26053
26067
|
};
|
26054
|
-
exports.version = "19.2.0-canary-
|
26068
|
+
exports.version = "19.2.0-canary-cee7939b-20250625";
|
26055
26069
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
26056
26070
|
"function" ===
|
26057
26071
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -2126,19 +2126,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
|
|
2126
2126
|
}
|
2127
2127
|
var isInputEventSupported = !1;
|
2128
2128
|
if (canUseDOM) {
|
2129
|
-
var JSCompiler_inline_result$jscomp$
|
2129
|
+
var JSCompiler_inline_result$jscomp$313;
|
2130
2130
|
if (canUseDOM) {
|
2131
|
-
var isSupported$jscomp$
|
2132
|
-
if (!isSupported$jscomp$
|
2133
|
-
var element$jscomp$
|
2134
|
-
element$jscomp$
|
2135
|
-
isSupported$jscomp$
|
2136
|
-
"function" === typeof element$jscomp$
|
2131
|
+
var isSupported$jscomp$inline_459 = "oninput" in document;
|
2132
|
+
if (!isSupported$jscomp$inline_459) {
|
2133
|
+
var element$jscomp$inline_460 = document.createElement("div");
|
2134
|
+
element$jscomp$inline_460.setAttribute("oninput", "return;");
|
2135
|
+
isSupported$jscomp$inline_459 =
|
2136
|
+
"function" === typeof element$jscomp$inline_460.oninput;
|
2137
2137
|
}
|
2138
|
-
JSCompiler_inline_result$jscomp$
|
2139
|
-
} else JSCompiler_inline_result$jscomp$
|
2138
|
+
JSCompiler_inline_result$jscomp$313 = isSupported$jscomp$inline_459;
|
2139
|
+
} else JSCompiler_inline_result$jscomp$313 = !1;
|
2140
2140
|
isInputEventSupported =
|
2141
|
-
JSCompiler_inline_result$jscomp$
|
2141
|
+
JSCompiler_inline_result$jscomp$313 &&
|
2142
2142
|
(!document.documentMode || 9 < document.documentMode);
|
2143
2143
|
}
|
2144
2144
|
function stopWatchingForValueChange() {
|
@@ -12764,20 +12764,20 @@ function extractEvents$1(
|
|
12764
12764
|
}
|
12765
12765
|
}
|
12766
12766
|
for (
|
12767
|
-
var i$jscomp$
|
12768
|
-
i$jscomp$
|
12769
|
-
i$jscomp$
|
12767
|
+
var i$jscomp$inline_1699 = 0;
|
12768
|
+
i$jscomp$inline_1699 < simpleEventPluginEvents.length;
|
12769
|
+
i$jscomp$inline_1699++
|
12770
12770
|
) {
|
12771
|
-
var eventName$jscomp$
|
12772
|
-
simpleEventPluginEvents[i$jscomp$
|
12773
|
-
domEventName$jscomp$
|
12774
|
-
eventName$jscomp$
|
12775
|
-
capitalizedEvent$jscomp$
|
12776
|
-
eventName$jscomp$
|
12777
|
-
eventName$jscomp$
|
12771
|
+
var eventName$jscomp$inline_1700 =
|
12772
|
+
simpleEventPluginEvents[i$jscomp$inline_1699],
|
12773
|
+
domEventName$jscomp$inline_1701 =
|
12774
|
+
eventName$jscomp$inline_1700.toLowerCase(),
|
12775
|
+
capitalizedEvent$jscomp$inline_1702 =
|
12776
|
+
eventName$jscomp$inline_1700[0].toUpperCase() +
|
12777
|
+
eventName$jscomp$inline_1700.slice(1);
|
12778
12778
|
registerSimpleEvent(
|
12779
|
-
domEventName$jscomp$
|
12780
|
-
"on" + capitalizedEvent$jscomp$
|
12779
|
+
domEventName$jscomp$inline_1701,
|
12780
|
+
"on" + capitalizedEvent$jscomp$inline_1702
|
12781
12781
|
);
|
12782
12782
|
}
|
12783
12783
|
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
@@ -16412,16 +16412,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
16412
16412
|
0 === i && attemptExplicitHydrationTarget(target);
|
16413
16413
|
}
|
16414
16414
|
};
|
16415
|
-
var isomorphicReactPackageVersion$jscomp$
|
16415
|
+
var isomorphicReactPackageVersion$jscomp$inline_1961 = React.version;
|
16416
16416
|
if (
|
16417
|
-
"19.2.0-canary-
|
16418
|
-
isomorphicReactPackageVersion$jscomp$
|
16417
|
+
"19.2.0-canary-cee7939b-20250625" !==
|
16418
|
+
isomorphicReactPackageVersion$jscomp$inline_1961
|
16419
16419
|
)
|
16420
16420
|
throw Error(
|
16421
16421
|
formatProdErrorMessage(
|
16422
16422
|
527,
|
16423
|
-
isomorphicReactPackageVersion$jscomp$
|
16424
|
-
"19.2.0-canary-
|
16423
|
+
isomorphicReactPackageVersion$jscomp$inline_1961,
|
16424
|
+
"19.2.0-canary-cee7939b-20250625"
|
16425
16425
|
)
|
16426
16426
|
);
|
16427
16427
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -16441,12 +16441,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
16441
16441
|
null === componentOrElement ? null : componentOrElement.stateNode;
|
16442
16442
|
return componentOrElement;
|
16443
16443
|
};
|
16444
|
-
var internals$jscomp$
|
16444
|
+
var internals$jscomp$inline_1968 = {
|
16445
16445
|
bundleType: 0,
|
16446
|
-
version: "19.2.0-canary-
|
16446
|
+
version: "19.2.0-canary-cee7939b-20250625",
|
16447
16447
|
rendererPackageName: "react-dom",
|
16448
16448
|
currentDispatcherRef: ReactSharedInternals,
|
16449
|
-
reconcilerVersion: "19.2.0-canary-
|
16449
|
+
reconcilerVersion: "19.2.0-canary-cee7939b-20250625",
|
16450
16450
|
getLaneLabelMap: function () {
|
16451
16451
|
for (
|
16452
16452
|
var map = new Map(), lane = 1, index$293 = 0;
|
@@ -16464,16 +16464,16 @@ var internals$jscomp$inline_1962 = {
|
|
16464
16464
|
}
|
16465
16465
|
};
|
16466
16466
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
16467
|
-
var hook$jscomp$
|
16467
|
+
var hook$jscomp$inline_2422 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
16468
16468
|
if (
|
16469
|
-
!hook$jscomp$
|
16470
|
-
hook$jscomp$
|
16469
|
+
!hook$jscomp$inline_2422.isDisabled &&
|
16470
|
+
hook$jscomp$inline_2422.supportsFiber
|
16471
16471
|
)
|
16472
16472
|
try {
|
16473
|
-
(rendererID = hook$jscomp$
|
16474
|
-
internals$jscomp$
|
16473
|
+
(rendererID = hook$jscomp$inline_2422.inject(
|
16474
|
+
internals$jscomp$inline_1968
|
16475
16475
|
)),
|
16476
|
-
(injectedHook = hook$jscomp$
|
16476
|
+
(injectedHook = hook$jscomp$inline_2422);
|
16477
16477
|
} catch (err) {}
|
16478
16478
|
}
|
16479
16479
|
function getCrossOriginStringAs(as, input) {
|
@@ -16719,7 +16719,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
16719
16719
|
exports.useFormStatus = function () {
|
16720
16720
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
16721
16721
|
};
|
16722
|
-
exports.version = "19.2.0-canary-
|
16722
|
+
exports.version = "19.2.0-canary-cee7939b-20250625";
|
16723
16723
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
16724
16724
|
"function" ===
|
16725
16725
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|