@@ -1984,6 +1984,18 @@ __DEV__ &&
19841984 ));
19851985 return skipToNode + debugInfo + propName;
19861986 }
1987+ function upgradeHydrationErrorsToRecoverable() {
1988+ var queuedErrors = hydrationErrors;
1989+ null !== queuedErrors &&
1990+ (null === workInProgressRootRecoverableErrors
1991+ ? (workInProgressRootRecoverableErrors = queuedErrors)
1992+ : workInProgressRootRecoverableErrors.push.apply(
1993+ workInProgressRootRecoverableErrors,
1994+ queuedErrors
1995+ ),
1996+ (hydrationErrors = null));
1997+ return queuedErrors;
1998+ }
19871999 function resetContextDependencies() {
19882000 lastContextDependency = currentlyRenderingFiber$1 = null;
19892001 isDisallowedContextReadInDEV = !1;
@@ -9013,9 +9025,7 @@ __DEV__ &&
90139025 (current.memoizedState.isDehydrated &&
90149026 0 === (workInProgress.flags & 256)) ||
90159027 ((workInProgress.flags |= 1024),
9016- null !== hydrationErrors &&
9017- (queueRecoverableErrors(hydrationErrors),
9018- (hydrationErrors = null))),
9028+ upgradeHydrationErrorsToRecoverable()),
90199029 bubbleProperties(workInProgress),
90209030 enableTransitionTracing &&
90219031 0 !== (workInProgress.subtreeFlags & 8192) &&
@@ -9160,9 +9170,12 @@ __DEV__ &&
91609170 fallthroughToNormalSuspensePath.treeBaseDuration));
91619171 fallthroughToNormalSuspensePath = !1;
91629172 } else
9163- null !== hydrationErrors &&
9164- (queueRecoverableErrors(hydrationErrors),
9165- (hydrationErrors = null)),
9173+ (fallthroughToNormalSuspensePath =
9174+ upgradeHydrationErrorsToRecoverable()),
9175+ null !== current &&
9176+ null !== current.memoizedState &&
9177+ (current.memoizedState.hydrationErrors =
9178+ fallthroughToNormalSuspensePath),
91669179 (fallthroughToNormalSuspensePath = !0);
91679180 if (!fallthroughToNormalSuspensePath) {
91689181 if (workInProgress.flags & 256)
@@ -11696,6 +11709,14 @@ __DEV__ &&
1169611709 committedTransitions
1169711710 );
1169811711 break;
11712+ case 13:
11713+ recursivelyTraversePassiveMountEffects(
11714+ finishedRoot,
11715+ finishedWork,
11716+ committedLanes,
11717+ committedTransitions
11718+ );
11719+ break;
1169911720 case 23:
1170011721 recursivelyTraversePassiveMountEffects(
1170111722 finishedRoot,
@@ -12434,7 +12455,13 @@ __DEV__ &&
1243412455 }
1243512456 exitStatus = workInProgressRootRecoverableErrors;
1243612457 workInProgressRootRecoverableErrors = lanesThatJustErrored;
12437- null !== exitStatus && queueRecoverableErrors(exitStatus);
12458+ null !== exitStatus &&
12459+ (null === workInProgressRootRecoverableErrors
12460+ ? (workInProgressRootRecoverableErrors = exitStatus)
12461+ : workInProgressRootRecoverableErrors.push.apply(
12462+ workInProgressRootRecoverableErrors,
12463+ exitStatus
12464+ ));
1243812465 }
1243912466 exitStatus = renderWasConcurrent;
1244012467 }
@@ -12571,14 +12598,6 @@ __DEV__ &&
1257112598 } while (1);
1257212599 ensureRootIsScheduled(root);
1257312600 }
12574- function queueRecoverableErrors(errors) {
12575- null === workInProgressRootRecoverableErrors
12576- ? (workInProgressRootRecoverableErrors = errors)
12577- : workInProgressRootRecoverableErrors.push.apply(
12578- workInProgressRootRecoverableErrors,
12579- errors
12580- );
12581- }
1258212601 function commitRootWhenReady(
1258312602 root,
1258412603 finishedWork,
@@ -16546,7 +16565,12 @@ __DEV__ &&
1654616565 var didWarnAboutTailOptions = {};
1654716566 var didWarnAboutDefaultPropsOnFunctionComponent = {};
1654816567 var updateLegacyHiddenComponent = updateOffscreenComponent,
16549- SUSPENDED_MARKER = { dehydrated: null, treeContext: null, retryLane: 0 },
16568+ SUSPENDED_MARKER = {
16569+ dehydrated: null,
16570+ treeContext: null,
16571+ retryLane: 0,
16572+ hydrationErrors: null
16573+ },
1655016574 hasWarnedAboutUsingNoValuePropOnContextProvider = !1,
1655116575 emptyObject = {},
1655216576 didWarnAboutUndefinedSnapshotBeforeUpdate = null;
@@ -16870,10 +16894,10 @@ __DEV__ &&
1687016894 (function () {
1687116895 var internals = {
1687216896 bundleType: 1,
16873- version: "19.1.0-www-classic-faf6c4df-20241218 ",
16897+ version: "19.1.0-www-classic-a9bbe346-20241219 ",
1687416898 rendererPackageName: "react-art",
1687516899 currentDispatcherRef: ReactSharedInternals,
16876- reconcilerVersion: "19.1.0-www-classic-faf6c4df-20241218 "
16900+ reconcilerVersion: "19.1.0-www-classic-a9bbe346-20241219 "
1687716901 };
1687816902 internals.overrideHookState = overrideHookState;
1687916903 internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -16907,7 +16931,7 @@ __DEV__ &&
1690716931 exports.Shape = Shape;
1690816932 exports.Surface = Surface;
1690916933 exports.Text = Text;
16910- exports.version = "19.1.0-www-classic-faf6c4df-20241218 ";
16934+ exports.version = "19.1.0-www-classic-a9bbe346-20241219 ";
1691116935 "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1691216936 "function" ===
1691316937 typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
0 commit comments