7
7
* @noflow
8
8
* @nolint
9
9
* @preventMunge
10
- * @generated SignedSource<<4824b23c5f4ff96fb4802c9f8adf2471 >>
10
+ * @generated SignedSource<<1f9731688cb275b818de4cd35d1795ac >>
11
11
*/
12
12
13
13
/*
@@ -739,7 +739,8 @@ function getNextLanes(root, wipLanes) {
739
739
: ((pingedLanes &= nonIdlePendingLanes),
740
740
0 !== pingedLanes
741
741
? (nextLanes = getHighestPriorityLanes(pingedLanes))
742
- : root ||
742
+ : enableSiblingPrerendering &&
743
+ !root &&
743
744
((warmLanes = nonIdlePendingLanes & ~warmLanes),
744
745
0 !== warmLanes &&
745
746
(nextLanes = getHighestPriorityLanes(warmLanes)))))
@@ -748,7 +749,8 @@ function getNextLanes(root, wipLanes) {
748
749
? (nextLanes = getHighestPriorityLanes(nonIdlePendingLanes))
749
750
: 0 !== pingedLanes
750
751
? (nextLanes = getHighestPriorityLanes(pingedLanes))
751
- : root ||
752
+ : enableSiblingPrerendering &&
753
+ !root &&
752
754
((warmLanes = pendingLanes & ~warmLanes),
753
755
0 !== warmLanes &&
754
756
(nextLanes = getHighestPriorityLanes(warmLanes))));
@@ -868,7 +870,8 @@ function markRootFinished(
868
870
remainingLanes &= ~lane;
869
871
}
870
872
0 !== spawnedLane && markSpawnedDeferredLane(root, spawnedLane, 0);
871
- 0 !== suspendedRetryLanes &&
873
+ enableSiblingPrerendering &&
874
+ 0 !== suspendedRetryLanes &&
872
875
0 === updatedLanes &&
873
876
(root.suspendedLanes |=
874
877
suspendedRetryLanes & ~(previouslyPendingLanes & ~finishedLanes));
@@ -10552,7 +10555,8 @@ function scheduleRetryEffect(workInProgress, retryQueue) {
10552
10555
((retryQueue =
10553
10556
22 !== workInProgress.tag ? claimNextRetryLane() : 536870912),
10554
10557
(workInProgress.lanes |= retryQueue),
10555
- (workInProgressSuspendedRetryLanes |= retryQueue));
10558
+ enableSiblingPrerendering &&
10559
+ (workInProgressSuspendedRetryLanes |= retryQueue));
10556
10560
}
10557
10561
function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
10558
10562
if (!isHydrating)
@@ -11589,7 +11593,9 @@ function markRootSuspended(
11589
11593
suspendedLanes &= ~workInProgressRootInterleavedUpdatedLanes;
11590
11594
root.suspendedLanes |= suspendedLanes;
11591
11595
root.pingedLanes &= ~suspendedLanes;
11592
- didSkipSuspendedSiblings || (root.warmLanes |= suspendedLanes);
11596
+ enableSiblingPrerendering &&
11597
+ !didSkipSuspendedSiblings &&
11598
+ (root.warmLanes |= suspendedLanes);
11593
11599
didSkipSuspendedSiblings = root.expirationTimes;
11594
11600
for (var lanes = suspendedLanes; 0 < lanes; ) {
11595
11601
var index$6 = 31 - clz32(lanes),
@@ -16255,14 +16261,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
16255
16261
};
16256
16262
var isomorphicReactPackageVersion$jscomp$inline_1781 = React.version;
16257
16263
if (
16258
- "19.0.0-native-fb-de43d560-20241009 " !==
16264
+ "19.0.0-native-fb-13411e45-20241014 " !==
16259
16265
isomorphicReactPackageVersion$jscomp$inline_1781
16260
16266
)
16261
16267
throw Error(
16262
16268
formatProdErrorMessage(
16263
16269
527,
16264
16270
isomorphicReactPackageVersion$jscomp$inline_1781,
16265
- "19.0.0-native-fb-de43d560-20241009 "
16271
+ "19.0.0-native-fb-13411e45-20241014 "
16266
16272
)
16267
16273
);
16268
16274
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16284,11 +16290,11 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
16284
16290
};
16285
16291
var internals$jscomp$inline_1788 = {
16286
16292
bundleType: 0,
16287
- version: "19.0.0-native-fb-de43d560-20241009 ",
16293
+ version: "19.0.0-native-fb-13411e45-20241014 ",
16288
16294
rendererPackageName: "react-dom",
16289
16295
currentDispatcherRef: ReactSharedInternals,
16290
16296
findFiberByHostInstance: getClosestInstanceFromNode,
16291
- reconcilerVersion: "19.0.0-native-fb-de43d560-20241009 ",
16297
+ reconcilerVersion: "19.0.0-native-fb-13411e45-20241014 ",
16292
16298
getLaneLabelMap: function () {
16293
16299
for (
16294
16300
var map = new Map(), lane = 1, index$286 = 0;
@@ -16407,4 +16413,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
16407
16413
listenToAllSupportedEvents(container);
16408
16414
return new ReactDOMHydrationRoot(initialChildren);
16409
16415
};
16410
- exports.version = "19.0.0-native-fb-de43d560-20241009 ";
16416
+ exports.version = "19.0.0-native-fb-13411e45-20241014 ";
0 commit comments