@@ -10512,7 +10512,10 @@ function performConcurrentWorkOnRoot(root, didTimeout) {
10512
10512
workInProgressDeferredLane,
10513
10513
workInProgressRootInterleavedUpdatedLanes,
10514
10514
workInProgressSuspendedRetryLanes,
10515
- workInProgressRootDidSkipSuspendedSiblings
10515
+ workInProgressRootDidSkipSuspendedSiblings,
10516
+ 2,
10517
+ -0,
10518
+ 0
10516
10519
),
10517
10520
didTimeout
10518
10521
);
@@ -10528,7 +10531,10 @@ function performConcurrentWorkOnRoot(root, didTimeout) {
10528
10531
workInProgressDeferredLane,
10529
10532
workInProgressRootInterleavedUpdatedLanes,
10530
10533
workInProgressSuspendedRetryLanes,
10531
- workInProgressRootDidSkipSuspendedSiblings
10534
+ workInProgressRootDidSkipSuspendedSiblings,
10535
+ 0,
10536
+ -0,
10537
+ 0
10532
10538
);
10533
10539
}
10534
10540
}
@@ -10583,7 +10589,10 @@ function commitRootWhenReady(
10583
10589
spawnedLane,
10584
10590
updatedLanes,
10585
10591
suspendedRetryLanes,
10586
- didSkipSuspendedSiblings
10592
+ didSkipSuspendedSiblings,
10593
+ suspendedCommitReason,
10594
+ completedRenderStartTime,
10595
+ completedRenderEndTime
10587
10596
) {
10588
10597
var subtreeFlags = finishedWork.subtreeFlags;
10589
10598
if (subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408))
@@ -10602,7 +10611,8 @@ function commitRootWhenReady(
10602
10611
didIncludeRenderPhaseUpdate,
10603
10612
spawnedLane,
10604
10613
updatedLanes,
10605
- suspendedRetryLanes
10614
+ suspendedRetryLanes,
10615
+ 1
10606
10616
)
10607
10617
);
10608
10618
markRootSuspended(root, lanes, spawnedLane, didSkipSuspendedSiblings);
@@ -10615,7 +10625,10 @@ function commitRootWhenReady(
10615
10625
didIncludeRenderPhaseUpdate,
10616
10626
spawnedLane,
10617
10627
updatedLanes,
10618
- suspendedRetryLanes
10628
+ suspendedRetryLanes,
10629
+ suspendedCommitReason,
10630
+ completedRenderStartTime,
10631
+ completedRenderEndTime
10619
10632
);
10620
10633
}
10621
10634
function isRenderConsistentWithExternalStores(finishedWork) {
@@ -10727,7 +10740,10 @@ function performSyncWorkOnRoot(root, lanes) {
10727
10740
workInProgressRootDidIncludeRecursiveRenderUpdate,
10728
10741
workInProgressDeferredLane,
10729
10742
workInProgressRootInterleavedUpdatedLanes,
10730
- workInProgressSuspendedRetryLanes
10743
+ workInProgressSuspendedRetryLanes,
10744
+ 0,
10745
+ -0,
10746
+ 0
10731
10747
);
10732
10748
ensureRootIsScheduled(root);
10733
10749
return null;
@@ -11168,7 +11184,10 @@ function commitRoot(
11168
11184
didIncludeRenderPhaseUpdate,
11169
11185
spawnedLane,
11170
11186
updatedLanes,
11171
- suspendedRetryLanes
11187
+ suspendedRetryLanes,
11188
+ suspendedCommitReason,
11189
+ completedRenderStartTime,
11190
+ completedRenderEndTime
11172
11191
) {
11173
11192
var prevTransition = ReactSharedInternals.T,
11174
11193
previousUpdateLanePriority = ReactDOMSharedInternals.p;
@@ -11183,7 +11202,10 @@ function commitRoot(
11183
11202
previousUpdateLanePriority,
11184
11203
spawnedLane,
11185
11204
updatedLanes,
11186
- suspendedRetryLanes
11205
+ suspendedRetryLanes,
11206
+ suspendedCommitReason,
11207
+ completedRenderStartTime,
11208
+ completedRenderEndTime
11187
11209
);
11188
11210
} finally {
11189
11211
(ReactSharedInternals.T = prevTransition),
@@ -11234,7 +11256,7 @@ function commitRootImpl(
11234
11256
(pendingPassiveEffectsRemainingLanes = remainingLanes),
11235
11257
(pendingPassiveTransitions = transitions),
11236
11258
scheduleCallback$1(NormalPriority$1, function () {
11237
- flushPassiveEffects();
11259
+ flushPassiveEffects(!0 );
11238
11260
return null;
11239
11261
}));
11240
11262
transitions = 0 !== (finishedWork.flags & 15990);
@@ -11458,7 +11480,7 @@ function resolveRetryWakeable(boundaryFiber, wakeable) {
11458
11480
retryTimedOutBoundary(boundaryFiber, retryLane);
11459
11481
}
11460
11482
function throwIfInfiniteUpdateLoopDetected() {
11461
- if (50 < nestedUpdateCount)
11483
+ if (100 < nestedUpdateCount)
11462
11484
throw (
11463
11485
((nestedUpdateCount = 0),
11464
11486
(rootWithNestedUpdates = null),
@@ -11735,20 +11757,20 @@ function extractEvents$1(
11735
11757
}
11736
11758
}
11737
11759
for (
11738
- var i$jscomp$inline_1404 = 0;
11739
- i$jscomp$inline_1404 < simpleEventPluginEvents.length;
11740
- i$jscomp$inline_1404 ++
11760
+ var i$jscomp$inline_1407 = 0;
11761
+ i$jscomp$inline_1407 < simpleEventPluginEvents.length;
11762
+ i$jscomp$inline_1407 ++
11741
11763
) {
11742
- var eventName$jscomp$inline_1405 =
11743
- simpleEventPluginEvents[i$jscomp$inline_1404 ],
11744
- domEventName$jscomp$inline_1406 =
11745
- eventName$jscomp$inline_1405 .toLowerCase(),
11746
- capitalizedEvent$jscomp$inline_1407 =
11747
- eventName$jscomp$inline_1405 [0].toUpperCase() +
11748
- eventName$jscomp$inline_1405 .slice(1);
11764
+ var eventName$jscomp$inline_1408 =
11765
+ simpleEventPluginEvents[i$jscomp$inline_1407 ],
11766
+ domEventName$jscomp$inline_1409 =
11767
+ eventName$jscomp$inline_1408 .toLowerCase(),
11768
+ capitalizedEvent$jscomp$inline_1410 =
11769
+ eventName$jscomp$inline_1408 [0].toUpperCase() +
11770
+ eventName$jscomp$inline_1408 .slice(1);
11749
11771
registerSimpleEvent(
11750
- domEventName$jscomp$inline_1406 ,
11751
- "on" + capitalizedEvent$jscomp$inline_1407
11772
+ domEventName$jscomp$inline_1409 ,
11773
+ "on" + capitalizedEvent$jscomp$inline_1410
11752
11774
);
11753
11775
}
11754
11776
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -15189,16 +15211,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15189
15211
0 === i && attemptExplicitHydrationTarget(target);
15190
15212
}
15191
15213
};
15192
- var isomorphicReactPackageVersion$jscomp$inline_1651 = React.version;
15214
+ var isomorphicReactPackageVersion$jscomp$inline_1654 = React.version;
15193
15215
if (
15194
- "19.0.0-experimental-5d19e1c8-20240923 " !==
15195
- isomorphicReactPackageVersion$jscomp$inline_1651
15216
+ "19.0.0-experimental-f9ebd85a-20240925 " !==
15217
+ isomorphicReactPackageVersion$jscomp$inline_1654
15196
15218
)
15197
15219
throw Error(
15198
15220
formatProdErrorMessage(
15199
15221
527,
15200
- isomorphicReactPackageVersion$jscomp$inline_1651 ,
15201
- "19.0.0-experimental-5d19e1c8-20240923 "
15222
+ isomorphicReactPackageVersion$jscomp$inline_1654 ,
15223
+ "19.0.0-experimental-f9ebd85a-20240925 "
15202
15224
)
15203
15225
);
15204
15226
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -15218,25 +15240,25 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15218
15240
null === componentOrElement ? null : componentOrElement.stateNode;
15219
15241
return componentOrElement;
15220
15242
};
15221
- var internals$jscomp$inline_2111 = {
15243
+ var internals$jscomp$inline_2114 = {
15222
15244
bundleType: 0,
15223
- version: "19.0.0-experimental-5d19e1c8-20240923 ",
15245
+ version: "19.0.0-experimental-f9ebd85a-20240925 ",
15224
15246
rendererPackageName: "react-dom",
15225
15247
currentDispatcherRef: ReactSharedInternals,
15226
15248
findFiberByHostInstance: getClosestInstanceFromNode,
15227
- reconcilerVersion: "19.0.0-experimental-5d19e1c8-20240923 "
15249
+ reconcilerVersion: "19.0.0-experimental-f9ebd85a-20240925 "
15228
15250
};
15229
15251
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15230
- var hook$jscomp$inline_2112 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15252
+ var hook$jscomp$inline_2115 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15231
15253
if (
15232
- !hook$jscomp$inline_2112 .isDisabled &&
15233
- hook$jscomp$inline_2112 .supportsFiber
15254
+ !hook$jscomp$inline_2115 .isDisabled &&
15255
+ hook$jscomp$inline_2115 .supportsFiber
15234
15256
)
15235
15257
try {
15236
- (rendererID = hook$jscomp$inline_2112 .inject(
15237
- internals$jscomp$inline_2111
15258
+ (rendererID = hook$jscomp$inline_2115 .inject(
15259
+ internals$jscomp$inline_2114
15238
15260
)),
15239
- (injectedHook = hook$jscomp$inline_2112 );
15261
+ (injectedHook = hook$jscomp$inline_2115 );
15240
15262
} catch (err) {}
15241
15263
}
15242
15264
exports.createRoot = function (container, options) {
@@ -15328,4 +15350,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
15328
15350
listenToAllSupportedEvents(container);
15329
15351
return new ReactDOMHydrationRoot(initialChildren);
15330
15352
};
15331
- exports.version = "19.0.0-experimental-5d19e1c8-20240923 ";
15353
+ exports.version = "19.0.0-experimental-f9ebd85a-20240925 ";
0 commit comments