react-dom 19.1.0-canary-32b0cad8-20250213 → 19.1.0-canary-4632e36a-20250216
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 +39 -37
- package/cjs/react-dom-client.production.js +37 -35
- package/cjs/react-dom-profiling.development.js +39 -37
- package/cjs/react-dom-profiling.profiling.js +39 -37
- package/cjs/react-dom-server-legacy.browser.development.js +1 -1
- package/cjs/react-dom-server-legacy.browser.production.js +1 -1
- package/cjs/react-dom-server-legacy.node.development.js +1 -1
- package/cjs/react-dom-server-legacy.node.production.js +1 -1
- package/cjs/react-dom-server.browser.development.js +3 -3
- package/cjs/react-dom-server.browser.production.js +3 -3
- package/cjs/react-dom-server.bun.development.js +3 -3
- package/cjs/react-dom-server.bun.production.js +3 -3
- package/cjs/react-dom-server.edge.development.js +3 -3
- package/cjs/react-dom-server.edge.production.js +3 -3
- package/cjs/react-dom-server.node.development.js +3 -3
- package/cjs/react-dom-server.node.production.js +3 -3
- 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
@@ -601,8 +601,8 @@
|
|
601
601
|
if (lane & 8) return "InputContinuous";
|
602
602
|
if (lane & 16) return "DefaultHydration";
|
603
603
|
if (lane & 32) return "Default";
|
604
|
-
if (lane &
|
605
|
-
if (lane &
|
604
|
+
if (lane & 128) return "TransitionHydration";
|
605
|
+
if (lane & 4194048) return "Transition";
|
606
606
|
if (lane & 62914560) return "Retry";
|
607
607
|
if (lane & 67108864) return "SelectiveHydration";
|
608
608
|
if (lane & 134217728) return "IdleHydration";
|
@@ -629,6 +629,7 @@
|
|
629
629
|
case 64:
|
630
630
|
return 64;
|
631
631
|
case 128:
|
632
|
+
return 128;
|
632
633
|
case 256:
|
633
634
|
case 512:
|
634
635
|
case 1024:
|
@@ -643,7 +644,7 @@
|
|
643
644
|
case 524288:
|
644
645
|
case 1048576:
|
645
646
|
case 2097152:
|
646
|
-
return lanes &
|
647
|
+
return lanes & 4194048;
|
647
648
|
case 4194304:
|
648
649
|
case 8388608:
|
649
650
|
case 16777216:
|
@@ -705,7 +706,7 @@
|
|
705
706
|
((suspendedLanes = nextLanes & -nextLanes),
|
706
707
|
(rootHasPendingCommit = wipLanes & -wipLanes),
|
707
708
|
suspendedLanes >= rootHasPendingCommit ||
|
708
|
-
(32 === suspendedLanes && 0 !== (rootHasPendingCommit &
|
709
|
+
(32 === suspendedLanes && 0 !== (rootHasPendingCommit & 4194048)))
|
709
710
|
? wipLanes
|
710
711
|
: nextLanes;
|
711
712
|
}
|
@@ -723,10 +724,10 @@
|
|
723
724
|
case 2:
|
724
725
|
case 4:
|
725
726
|
case 8:
|
727
|
+
case 64:
|
726
728
|
return currentTime + 250;
|
727
729
|
case 16:
|
728
730
|
case 32:
|
729
|
-
case 64:
|
730
731
|
case 128:
|
731
732
|
case 256:
|
732
733
|
case 512:
|
@@ -766,7 +767,7 @@
|
|
766
767
|
function claimNextTransitionLane() {
|
767
768
|
var lane = nextTransitionLane;
|
768
769
|
nextTransitionLane <<= 1;
|
769
|
-
0 === (nextTransitionLane &
|
770
|
+
0 === (nextTransitionLane & 4194048) && (nextTransitionLane = 256);
|
770
771
|
return lane;
|
771
772
|
}
|
772
773
|
function claimNextRetryLane() {
|
@@ -842,7 +843,7 @@
|
|
842
843
|
root.entanglements[spawnedLaneIndex] =
|
843
844
|
root.entanglements[spawnedLaneIndex] |
|
844
845
|
1073741824 |
|
845
|
-
(entangledLanes &
|
846
|
+
(entangledLanes & 4194090);
|
846
847
|
}
|
847
848
|
function markRootEntangled(root, entangledLanes) {
|
848
849
|
var rootEntangledLanes = (root.entangledLanes |= entangledLanes);
|
@@ -865,7 +866,6 @@
|
|
865
866
|
case 32:
|
866
867
|
lane = 16;
|
867
868
|
break;
|
868
|
-
case 128:
|
869
869
|
case 256:
|
870
870
|
case 512:
|
871
871
|
case 1024:
|
@@ -884,7 +884,7 @@
|
|
884
884
|
case 8388608:
|
885
885
|
case 16777216:
|
886
886
|
case 33554432:
|
887
|
-
lane =
|
887
|
+
lane = 128;
|
888
888
|
break;
|
889
889
|
case 268435456:
|
890
890
|
lane = 134217728;
|
@@ -3829,17 +3829,19 @@
|
|
3829
3829
|
(isHidden = !0)),
|
3830
3830
|
(sourceFiber = parent),
|
3831
3831
|
(parent = parent.return);
|
3832
|
-
|
3833
|
-
|
3834
|
-
|
3835
|
-
|
3836
|
-
|
3837
|
-
|
3838
|
-
|
3839
|
-
|
3840
|
-
|
3841
|
-
|
3842
|
-
|
3832
|
+
return 3 === sourceFiber.tag
|
3833
|
+
? ((parent = sourceFiber.stateNode),
|
3834
|
+
isHidden &&
|
3835
|
+
null !== update &&
|
3836
|
+
((isHidden = 31 - clz32(lane)),
|
3837
|
+
(sourceFiber = parent.hiddenUpdates),
|
3838
|
+
(alternate = sourceFiber[isHidden]),
|
3839
|
+
null === alternate
|
3840
|
+
? (sourceFiber[isHidden] = [update])
|
3841
|
+
: alternate.push(update),
|
3842
|
+
(update.lane = lane | 536870912)),
|
3843
|
+
parent)
|
3844
|
+
: null;
|
3843
3845
|
}
|
3844
3846
|
function getRootForUpdatedFiber(sourceFiber) {
|
3845
3847
|
if (nestedUpdateCount > NESTED_UPDATE_LIMIT)
|
@@ -4362,7 +4364,7 @@
|
|
4362
4364
|
}
|
4363
4365
|
function entangleTransitions(root, fiber, lane) {
|
4364
4366
|
fiber = fiber.updateQueue;
|
4365
|
-
if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane &
|
4367
|
+
if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane & 4194048))) {
|
4366
4368
|
var queueLanes = fiber.lanes;
|
4367
4369
|
queueLanes &= root.pendingLanes;
|
4368
4370
|
lane |= queueLanes;
|
@@ -5542,7 +5544,7 @@
|
|
5542
5544
|
throw Error(
|
5543
5545
|
"Expected a work-in-progress root. This is a bug in React. Please file an issue."
|
5544
5546
|
);
|
5545
|
-
0 !== (workInProgressRootRenderLanes &
|
5547
|
+
0 !== (workInProgressRootRenderLanes & 124) ||
|
5546
5548
|
pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot);
|
5547
5549
|
}
|
5548
5550
|
hook.memoizedState = nextSnapshot;
|
@@ -5625,7 +5627,7 @@
|
|
5625
5627
|
"Expected a work-in-progress root. This is a bug in React. Please file an issue."
|
5626
5628
|
);
|
5627
5629
|
isHydrating$jscomp$0 ||
|
5628
|
-
0 !== (renderLanes &
|
5630
|
+
0 !== (renderLanes & 124) ||
|
5629
5631
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
5630
5632
|
}
|
5631
5633
|
return getServerSnapshot;
|
@@ -6568,7 +6570,7 @@
|
|
6568
6570
|
queue.pending = update;
|
6569
6571
|
}
|
6570
6572
|
function entangleTransitionUpdate(root, queue, lane) {
|
6571
|
-
if (0 !== (lane &
|
6573
|
+
if (0 !== (lane & 4194048)) {
|
6572
6574
|
var queueLanes = queue.lanes;
|
6573
6575
|
queueLanes &= root.pendingLanes;
|
6574
6576
|
lane |= queueLanes;
|
@@ -13512,7 +13514,7 @@
|
|
13512
13514
|
resource = suspenseHandlerStackCursor.current;
|
13513
13515
|
if (
|
13514
13516
|
null !== resource &&
|
13515
|
-
((workInProgressRootRenderLanes &
|
13517
|
+
((workInProgressRootRenderLanes & 4194048) ===
|
13516
13518
|
workInProgressRootRenderLanes
|
13517
13519
|
? null !== shellBoundary
|
13518
13520
|
: ((workInProgressRootRenderLanes & 62914560) !==
|
@@ -14393,7 +14395,7 @@
|
|
14393
14395
|
throw Error("Should not already be working.");
|
14394
14396
|
var shouldTimeSlice =
|
14395
14397
|
(!forceSync &&
|
14396
|
-
0 === (lanes &
|
14398
|
+
0 === (lanes & 124) &&
|
14397
14399
|
0 === (lanes & root.expiredLanes)) ||
|
14398
14400
|
checkIfRootIsPrerendering(root, lanes),
|
14399
14401
|
exitStatus = shouldTimeSlice
|
@@ -14486,7 +14488,7 @@
|
|
14486
14488
|
case RootFatalErrored:
|
14487
14489
|
throw Error("Root did not complete. This is a bug in React.");
|
14488
14490
|
case RootSuspendedWithDelay:
|
14489
|
-
if ((lanes &
|
14491
|
+
if ((lanes & 4194048) !== lanes) break;
|
14490
14492
|
case RootSuspendedAtTheShell:
|
14491
14493
|
markRootSuspended(
|
14492
14494
|
shouldTimeSlice,
|
@@ -14838,7 +14840,7 @@
|
|
14838
14840
|
function renderDidSuspendDelayIfPossible() {
|
14839
14841
|
workInProgressRootExitStatus = RootSuspendedWithDelay;
|
14840
14842
|
workInProgressRootDidSkipSuspendedSiblings ||
|
14841
|
-
((workInProgressRootRenderLanes &
|
14843
|
+
((workInProgressRootRenderLanes & 4194048) !==
|
14842
14844
|
workInProgressRootRenderLanes &&
|
14843
14845
|
null !== suspenseHandlerStackCursor.current) ||
|
14844
14846
|
(workInProgressRootIsPrerendering = !0);
|
@@ -15646,7 +15648,7 @@
|
|
15646
15648
|
0 !== (pendingEffectsLanes & 3) && flushPendingEffects();
|
15647
15649
|
ensureRootIsScheduled(root);
|
15648
15650
|
remainingLanes = root.pendingLanes;
|
15649
|
-
0 !== (lanes &
|
15651
|
+
0 !== (lanes & 4194090) && 0 !== (remainingLanes & 42)
|
15650
15652
|
? ((nestedUpdateScheduled = !0),
|
15651
15653
|
root === rootWithNestedUpdates
|
15652
15654
|
? nestedUpdateCount++
|
@@ -16034,8 +16036,8 @@
|
|
16034
16036
|
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
16035
16037
|
nextLanes &= pendingLanes & ~(suspendedLanes & ~pingedLanes);
|
16036
16038
|
nextLanes =
|
16037
|
-
nextLanes &
|
16038
|
-
? (nextLanes &
|
16039
|
+
nextLanes & 201326741
|
16040
|
+
? (nextLanes & 201326741) | 1
|
16039
16041
|
: nextLanes
|
16040
16042
|
? nextLanes | 2
|
16041
16043
|
: 0;
|
@@ -21242,7 +21244,7 @@
|
|
21242
21244
|
clz32 = Math.clz32 ? Math.clz32 : clz32Fallback,
|
21243
21245
|
log = Math.log,
|
21244
21246
|
LN2 = Math.LN2,
|
21245
|
-
nextTransitionLane =
|
21247
|
+
nextTransitionLane = 256,
|
21246
21248
|
nextRetryLane = 4194304,
|
21247
21249
|
DiscreteEventPriority = 2,
|
21248
21250
|
ContinuousEventPriority = 8,
|
@@ -24754,11 +24756,11 @@
|
|
24754
24756
|
};
|
24755
24757
|
(function () {
|
24756
24758
|
var isomorphicReactPackageVersion = React.version;
|
24757
|
-
if ("19.1.0-canary-
|
24759
|
+
if ("19.1.0-canary-4632e36a-20250216" !== isomorphicReactPackageVersion)
|
24758
24760
|
throw Error(
|
24759
24761
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
24760
24762
|
(isomorphicReactPackageVersion +
|
24761
|
-
"\n - react-dom: 19.1.0-canary-
|
24763
|
+
"\n - react-dom: 19.1.0-canary-4632e36a-20250216\nLearn more: https://react.dev/warnings/version-mismatch")
|
24762
24764
|
);
|
24763
24765
|
})();
|
24764
24766
|
("function" === typeof Map &&
|
@@ -24795,10 +24797,10 @@
|
|
24795
24797
|
!(function () {
|
24796
24798
|
var internals = {
|
24797
24799
|
bundleType: 1,
|
24798
|
-
version: "19.1.0-canary-
|
24800
|
+
version: "19.1.0-canary-4632e36a-20250216",
|
24799
24801
|
rendererPackageName: "react-dom",
|
24800
24802
|
currentDispatcherRef: ReactSharedInternals,
|
24801
|
-
reconcilerVersion: "19.1.0-canary-
|
24803
|
+
reconcilerVersion: "19.1.0-canary-4632e36a-20250216"
|
24802
24804
|
};
|
24803
24805
|
internals.overrideHookState = overrideHookState;
|
24804
24806
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -24942,7 +24944,7 @@
|
|
24942
24944
|
listenToAllSupportedEvents(container);
|
24943
24945
|
return new ReactDOMHydrationRoot(initialChildren);
|
24944
24946
|
};
|
24945
|
-
exports.version = "19.1.0-canary-
|
24947
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
24946
24948
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
24947
24949
|
"function" ===
|
24948
24950
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -336,7 +336,7 @@ function clz32Fallback(x) {
|
|
336
336
|
x >>>= 0;
|
337
337
|
return 0 === x ? 32 : (31 - ((log(x) / LN2) | 0)) | 0;
|
338
338
|
}
|
339
|
-
var nextTransitionLane =
|
339
|
+
var nextTransitionLane = 256,
|
340
340
|
nextRetryLane = 4194304;
|
341
341
|
function getHighestPriorityLanes(lanes) {
|
342
342
|
var pendingSyncLanes = lanes & 42;
|
@@ -357,6 +357,7 @@ function getHighestPriorityLanes(lanes) {
|
|
357
357
|
case 64:
|
358
358
|
return 64;
|
359
359
|
case 128:
|
360
|
+
return 128;
|
360
361
|
case 256:
|
361
362
|
case 512:
|
362
363
|
case 1024:
|
@@ -371,7 +372,7 @@ function getHighestPriorityLanes(lanes) {
|
|
371
372
|
case 524288:
|
372
373
|
case 1048576:
|
373
374
|
case 2097152:
|
374
|
-
return lanes &
|
375
|
+
return lanes & 4194048;
|
375
376
|
case 4194304:
|
376
377
|
case 8388608:
|
377
378
|
case 16777216:
|
@@ -427,7 +428,7 @@ function getNextLanes(root, wipLanes, rootHasPendingCommit) {
|
|
427
428
|
((suspendedLanes = nextLanes & -nextLanes),
|
428
429
|
(rootHasPendingCommit = wipLanes & -wipLanes),
|
429
430
|
suspendedLanes >= rootHasPendingCommit ||
|
430
|
-
(32 === suspendedLanes && 0 !== (rootHasPendingCommit &
|
431
|
+
(32 === suspendedLanes && 0 !== (rootHasPendingCommit & 4194048)))
|
431
432
|
? wipLanes
|
432
433
|
: nextLanes;
|
433
434
|
}
|
@@ -445,10 +446,10 @@ function computeExpirationTime(lane, currentTime) {
|
|
445
446
|
case 2:
|
446
447
|
case 4:
|
447
448
|
case 8:
|
449
|
+
case 64:
|
448
450
|
return currentTime + 250;
|
449
451
|
case 16:
|
450
452
|
case 32:
|
451
|
-
case 64:
|
452
453
|
case 128:
|
453
454
|
case 256:
|
454
455
|
case 512:
|
@@ -483,7 +484,7 @@ function computeExpirationTime(lane, currentTime) {
|
|
483
484
|
function claimNextTransitionLane() {
|
484
485
|
var lane = nextTransitionLane;
|
485
486
|
nextTransitionLane <<= 1;
|
486
|
-
0 === (nextTransitionLane &
|
487
|
+
0 === (nextTransitionLane & 4194048) && (nextTransitionLane = 256);
|
487
488
|
return lane;
|
488
489
|
}
|
489
490
|
function claimNextRetryLane() {
|
@@ -557,7 +558,7 @@ function markSpawnedDeferredLane(root, spawnedLane, entangledLanes) {
|
|
557
558
|
root.entanglements[spawnedLaneIndex] =
|
558
559
|
root.entanglements[spawnedLaneIndex] |
|
559
560
|
1073741824 |
|
560
|
-
(entangledLanes &
|
561
|
+
(entangledLanes & 4194090);
|
561
562
|
}
|
562
563
|
function markRootEntangled(root, entangledLanes) {
|
563
564
|
var rootEntangledLanes = (root.entangledLanes |= entangledLanes);
|
@@ -580,7 +581,6 @@ function getBumpedLaneForHydrationByLane(lane) {
|
|
580
581
|
case 32:
|
581
582
|
lane = 16;
|
582
583
|
break;
|
583
|
-
case 128:
|
584
584
|
case 256:
|
585
585
|
case 512:
|
586
586
|
case 1024:
|
@@ -599,7 +599,7 @@ function getBumpedLaneForHydrationByLane(lane) {
|
|
599
599
|
case 8388608:
|
600
600
|
case 16777216:
|
601
601
|
case 33554432:
|
602
|
-
lane =
|
602
|
+
lane = 128;
|
603
603
|
break;
|
604
604
|
case 268435456:
|
605
605
|
lane = 134217728;
|
@@ -2349,17 +2349,19 @@ function markUpdateLaneFromFiberToRoot(sourceFiber, update, lane) {
|
|
2349
2349
|
null === sourceFiber || sourceFiber._visibility & 1 || (isHidden = !0)),
|
2350
2350
|
(sourceFiber = parent),
|
2351
2351
|
(parent = parent.return);
|
2352
|
-
|
2353
|
-
|
2354
|
-
|
2355
|
-
|
2356
|
-
|
2357
|
-
|
2358
|
-
|
2359
|
-
|
2360
|
-
|
2361
|
-
|
2362
|
-
|
2352
|
+
return 3 === sourceFiber.tag
|
2353
|
+
? ((parent = sourceFiber.stateNode),
|
2354
|
+
isHidden &&
|
2355
|
+
null !== update &&
|
2356
|
+
((isHidden = 31 - clz32(lane)),
|
2357
|
+
(sourceFiber = parent.hiddenUpdates),
|
2358
|
+
(alternate = sourceFiber[isHidden]),
|
2359
|
+
null === alternate
|
2360
|
+
? (sourceFiber[isHidden] = [update])
|
2361
|
+
: alternate.push(update),
|
2362
|
+
(update.lane = lane | 536870912)),
|
2363
|
+
parent)
|
2364
|
+
: null;
|
2363
2365
|
}
|
2364
2366
|
function getRootForUpdatedFiber(sourceFiber) {
|
2365
2367
|
if (50 < nestedUpdateCount)
|
@@ -2643,7 +2645,7 @@ function enqueueUpdate(fiber, update, lane) {
|
|
2643
2645
|
}
|
2644
2646
|
function entangleTransitions(root, fiber, lane) {
|
2645
2647
|
fiber = fiber.updateQueue;
|
2646
|
-
if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane &
|
2648
|
+
if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane & 4194048))) {
|
2647
2649
|
var queueLanes = fiber.lanes;
|
2648
2650
|
queueLanes &= root.pendingLanes;
|
2649
2651
|
lane |= queueLanes;
|
@@ -3571,7 +3573,7 @@ function updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
|
3571
3573
|
);
|
3572
3574
|
if (null === workInProgressRoot) throw Error(formatProdErrorMessage(349));
|
3573
3575
|
isHydrating$jscomp$0 ||
|
3574
|
-
0 !== (renderLanes &
|
3576
|
+
0 !== (renderLanes & 124) ||
|
3575
3577
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
3576
3578
|
}
|
3577
3579
|
return getServerSnapshot;
|
@@ -4261,7 +4263,7 @@ function enqueueRenderPhaseUpdate(queue, update) {
|
|
4261
4263
|
queue.pending = update;
|
4262
4264
|
}
|
4263
4265
|
function entangleTransitionUpdate(root, queue, lane) {
|
4264
|
-
if (0 !== (lane &
|
4266
|
+
if (0 !== (lane & 4194048)) {
|
4265
4267
|
var queueLanes = queue.lanes;
|
4266
4268
|
queueLanes &= root.pendingLanes;
|
4267
4269
|
lane |= queueLanes;
|
@@ -4405,7 +4407,7 @@ var ContextOnlyDispatcher = {
|
|
4405
4407
|
getServerSnapshot = getSnapshot();
|
4406
4408
|
if (null === workInProgressRoot)
|
4407
4409
|
throw Error(formatProdErrorMessage(349));
|
4408
|
-
0 !== (workInProgressRootRenderLanes &
|
4410
|
+
0 !== (workInProgressRootRenderLanes & 124) ||
|
4409
4411
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
4410
4412
|
}
|
4411
4413
|
hook.memoizedState = getServerSnapshot;
|
@@ -9583,7 +9585,7 @@ function preloadResourceAndSuspendIfNeeded(workInProgress, resource) {
|
|
9583
9585
|
resource = suspenseHandlerStackCursor.current;
|
9584
9586
|
if (
|
9585
9587
|
null !== resource &&
|
9586
|
-
((workInProgressRootRenderLanes &
|
9588
|
+
((workInProgressRootRenderLanes & 4194048) ===
|
9587
9589
|
workInProgressRootRenderLanes
|
9588
9590
|
? null !== shellBoundary
|
9589
9591
|
: ((workInProgressRootRenderLanes & 62914560) !==
|
@@ -10275,7 +10277,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
10275
10277
|
if (0 !== (executionContext & 6)) throw Error(formatProdErrorMessage(327));
|
10276
10278
|
var shouldTimeSlice =
|
10277
10279
|
(!forceSync &&
|
10278
|
-
0 === (lanes &
|
10280
|
+
0 === (lanes & 124) &&
|
10279
10281
|
0 === (lanes & root$jscomp$0.expiredLanes)) ||
|
10280
10282
|
checkIfRootIsPrerendering(root$jscomp$0, lanes),
|
10281
10283
|
exitStatus = shouldTimeSlice
|
@@ -10363,7 +10365,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
10363
10365
|
case 1:
|
10364
10366
|
throw Error(formatProdErrorMessage(345));
|
10365
10367
|
case 4:
|
10366
|
-
if ((lanes &
|
10368
|
+
if ((lanes & 4194048) !== lanes) break;
|
10367
10369
|
case 6:
|
10368
10370
|
markRootSuspended(
|
10369
10371
|
shouldTimeSlice,
|
@@ -10656,7 +10658,7 @@ function pushAsyncDispatcher() {
|
|
10656
10658
|
function renderDidSuspendDelayIfPossible() {
|
10657
10659
|
workInProgressRootExitStatus = 4;
|
10658
10660
|
workInProgressRootDidSkipSuspendedSiblings ||
|
10659
|
-
((workInProgressRootRenderLanes &
|
10661
|
+
((workInProgressRootRenderLanes & 4194048) !==
|
10660
10662
|
workInProgressRootRenderLanes &&
|
10661
10663
|
null !== suspenseHandlerStackCursor.current) ||
|
10662
10664
|
(workInProgressRootIsPrerendering = !0);
|
@@ -11267,7 +11269,7 @@ function flushSpawnedWork() {
|
|
11267
11269
|
0 !== (pendingEffectsLanes & 3) && flushPendingEffects();
|
11268
11270
|
ensureRootIsScheduled(root);
|
11269
11271
|
remainingLanes = root.pendingLanes;
|
11270
|
-
0 !== (lanes &
|
11272
|
+
0 !== (lanes & 4194090) && 0 !== (remainingLanes & 42)
|
11271
11273
|
? root === rootWithNestedUpdates
|
11272
11274
|
? nestedUpdateCount++
|
11273
11275
|
: ((nestedUpdateCount = 0), (rootWithNestedUpdates = root))
|
@@ -11481,8 +11483,8 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
11481
11483
|
JSCompiler_inline_result &=
|
11482
11484
|
pendingLanes & ~(suspendedLanes & ~pingedLanes);
|
11483
11485
|
JSCompiler_inline_result =
|
11484
|
-
JSCompiler_inline_result &
|
11485
|
-
? (JSCompiler_inline_result &
|
11486
|
+
JSCompiler_inline_result & 201326741
|
11487
|
+
? (JSCompiler_inline_result & 201326741) | 1
|
11486
11488
|
: JSCompiler_inline_result
|
11487
11489
|
? JSCompiler_inline_result | 2
|
11488
11490
|
: 0;
|
@@ -15250,14 +15252,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15250
15252
|
};
|
15251
15253
|
var isomorphicReactPackageVersion$jscomp$inline_1762 = React.version;
|
15252
15254
|
if (
|
15253
|
-
"19.1.0-canary-
|
15255
|
+
"19.1.0-canary-4632e36a-20250216" !==
|
15254
15256
|
isomorphicReactPackageVersion$jscomp$inline_1762
|
15255
15257
|
)
|
15256
15258
|
throw Error(
|
15257
15259
|
formatProdErrorMessage(
|
15258
15260
|
527,
|
15259
15261
|
isomorphicReactPackageVersion$jscomp$inline_1762,
|
15260
|
-
"19.1.0-canary-
|
15262
|
+
"19.1.0-canary-4632e36a-20250216"
|
15261
15263
|
)
|
15262
15264
|
);
|
15263
15265
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15279,10 +15281,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15279
15281
|
};
|
15280
15282
|
var internals$jscomp$inline_2243 = {
|
15281
15283
|
bundleType: 0,
|
15282
|
-
version: "19.1.0-canary-
|
15284
|
+
version: "19.1.0-canary-4632e36a-20250216",
|
15283
15285
|
rendererPackageName: "react-dom",
|
15284
15286
|
currentDispatcherRef: ReactSharedInternals,
|
15285
|
-
reconcilerVersion: "19.1.0-canary-
|
15287
|
+
reconcilerVersion: "19.1.0-canary-4632e36a-20250216"
|
15286
15288
|
};
|
15287
15289
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15288
15290
|
var hook$jscomp$inline_2244 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
@@ -15386,4 +15388,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
15386
15388
|
listenToAllSupportedEvents(container);
|
15387
15389
|
return new ReactDOMHydrationRoot(initialChildren);
|
15388
15390
|
};
|
15389
|
-
exports.version = "19.1.0-canary-
|
15391
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
@@ -609,8 +609,8 @@
|
|
609
609
|
if (lane & 8) return "InputContinuous";
|
610
610
|
if (lane & 16) return "DefaultHydration";
|
611
611
|
if (lane & 32) return "Default";
|
612
|
-
if (lane &
|
613
|
-
if (lane &
|
612
|
+
if (lane & 128) return "TransitionHydration";
|
613
|
+
if (lane & 4194048) return "Transition";
|
614
614
|
if (lane & 62914560) return "Retry";
|
615
615
|
if (lane & 67108864) return "SelectiveHydration";
|
616
616
|
if (lane & 134217728) return "IdleHydration";
|
@@ -637,6 +637,7 @@
|
|
637
637
|
case 64:
|
638
638
|
return 64;
|
639
639
|
case 128:
|
640
|
+
return 128;
|
640
641
|
case 256:
|
641
642
|
case 512:
|
642
643
|
case 1024:
|
@@ -651,7 +652,7 @@
|
|
651
652
|
case 524288:
|
652
653
|
case 1048576:
|
653
654
|
case 2097152:
|
654
|
-
return lanes &
|
655
|
+
return lanes & 4194048;
|
655
656
|
case 4194304:
|
656
657
|
case 8388608:
|
657
658
|
case 16777216:
|
@@ -713,7 +714,7 @@
|
|
713
714
|
((suspendedLanes = nextLanes & -nextLanes),
|
714
715
|
(rootHasPendingCommit = wipLanes & -wipLanes),
|
715
716
|
suspendedLanes >= rootHasPendingCommit ||
|
716
|
-
(32 === suspendedLanes && 0 !== (rootHasPendingCommit &
|
717
|
+
(32 === suspendedLanes && 0 !== (rootHasPendingCommit & 4194048)))
|
717
718
|
? wipLanes
|
718
719
|
: nextLanes;
|
719
720
|
}
|
@@ -731,10 +732,10 @@
|
|
731
732
|
case 2:
|
732
733
|
case 4:
|
733
734
|
case 8:
|
735
|
+
case 64:
|
734
736
|
return currentTime + 250;
|
735
737
|
case 16:
|
736
738
|
case 32:
|
737
|
-
case 64:
|
738
739
|
case 128:
|
739
740
|
case 256:
|
740
741
|
case 512:
|
@@ -774,7 +775,7 @@
|
|
774
775
|
function claimNextTransitionLane() {
|
775
776
|
var lane = nextTransitionLane;
|
776
777
|
nextTransitionLane <<= 1;
|
777
|
-
0 === (nextTransitionLane &
|
778
|
+
0 === (nextTransitionLane & 4194048) && (nextTransitionLane = 256);
|
778
779
|
return lane;
|
779
780
|
}
|
780
781
|
function claimNextRetryLane() {
|
@@ -850,7 +851,7 @@
|
|
850
851
|
root.entanglements[spawnedLaneIndex] =
|
851
852
|
root.entanglements[spawnedLaneIndex] |
|
852
853
|
1073741824 |
|
853
|
-
(entangledLanes &
|
854
|
+
(entangledLanes & 4194090);
|
854
855
|
}
|
855
856
|
function markRootEntangled(root, entangledLanes) {
|
856
857
|
var rootEntangledLanes = (root.entangledLanes |= entangledLanes);
|
@@ -873,7 +874,6 @@
|
|
873
874
|
case 32:
|
874
875
|
lane = 16;
|
875
876
|
break;
|
876
|
-
case 128:
|
877
877
|
case 256:
|
878
878
|
case 512:
|
879
879
|
case 1024:
|
@@ -892,7 +892,7 @@
|
|
892
892
|
case 8388608:
|
893
893
|
case 16777216:
|
894
894
|
case 33554432:
|
895
|
-
lane =
|
895
|
+
lane = 128;
|
896
896
|
break;
|
897
897
|
case 268435456:
|
898
898
|
lane = 134217728;
|
@@ -3837,17 +3837,19 @@
|
|
3837
3837
|
(isHidden = !0)),
|
3838
3838
|
(sourceFiber = parent),
|
3839
3839
|
(parent = parent.return);
|
3840
|
-
|
3841
|
-
|
3842
|
-
|
3843
|
-
|
3844
|
-
|
3845
|
-
|
3846
|
-
|
3847
|
-
|
3848
|
-
|
3849
|
-
|
3850
|
-
|
3840
|
+
return 3 === sourceFiber.tag
|
3841
|
+
? ((parent = sourceFiber.stateNode),
|
3842
|
+
isHidden &&
|
3843
|
+
null !== update &&
|
3844
|
+
((isHidden = 31 - clz32(lane)),
|
3845
|
+
(sourceFiber = parent.hiddenUpdates),
|
3846
|
+
(alternate = sourceFiber[isHidden]),
|
3847
|
+
null === alternate
|
3848
|
+
? (sourceFiber[isHidden] = [update])
|
3849
|
+
: alternate.push(update),
|
3850
|
+
(update.lane = lane | 536870912)),
|
3851
|
+
parent)
|
3852
|
+
: null;
|
3851
3853
|
}
|
3852
3854
|
function getRootForUpdatedFiber(sourceFiber) {
|
3853
3855
|
if (nestedUpdateCount > NESTED_UPDATE_LIMIT)
|
@@ -4370,7 +4372,7 @@
|
|
4370
4372
|
}
|
4371
4373
|
function entangleTransitions(root, fiber, lane) {
|
4372
4374
|
fiber = fiber.updateQueue;
|
4373
|
-
if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane &
|
4375
|
+
if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane & 4194048))) {
|
4374
4376
|
var queueLanes = fiber.lanes;
|
4375
4377
|
queueLanes &= root.pendingLanes;
|
4376
4378
|
lane |= queueLanes;
|
@@ -5550,7 +5552,7 @@
|
|
5550
5552
|
throw Error(
|
5551
5553
|
"Expected a work-in-progress root. This is a bug in React. Please file an issue."
|
5552
5554
|
);
|
5553
|
-
0 !== (workInProgressRootRenderLanes &
|
5555
|
+
0 !== (workInProgressRootRenderLanes & 124) ||
|
5554
5556
|
pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot);
|
5555
5557
|
}
|
5556
5558
|
hook.memoizedState = nextSnapshot;
|
@@ -5633,7 +5635,7 @@
|
|
5633
5635
|
"Expected a work-in-progress root. This is a bug in React. Please file an issue."
|
5634
5636
|
);
|
5635
5637
|
isHydrating$jscomp$0 ||
|
5636
|
-
0 !== (renderLanes &
|
5638
|
+
0 !== (renderLanes & 124) ||
|
5637
5639
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
5638
5640
|
}
|
5639
5641
|
return getServerSnapshot;
|
@@ -6576,7 +6578,7 @@
|
|
6576
6578
|
queue.pending = update;
|
6577
6579
|
}
|
6578
6580
|
function entangleTransitionUpdate(root, queue, lane) {
|
6579
|
-
if (0 !== (lane &
|
6581
|
+
if (0 !== (lane & 4194048)) {
|
6580
6582
|
var queueLanes = queue.lanes;
|
6581
6583
|
queueLanes &= root.pendingLanes;
|
6582
6584
|
lane |= queueLanes;
|
@@ -13520,7 +13522,7 @@
|
|
13520
13522
|
resource = suspenseHandlerStackCursor.current;
|
13521
13523
|
if (
|
13522
13524
|
null !== resource &&
|
13523
|
-
((workInProgressRootRenderLanes &
|
13525
|
+
((workInProgressRootRenderLanes & 4194048) ===
|
13524
13526
|
workInProgressRootRenderLanes
|
13525
13527
|
? null !== shellBoundary
|
13526
13528
|
: ((workInProgressRootRenderLanes & 62914560) !==
|
@@ -14401,7 +14403,7 @@
|
|
14401
14403
|
throw Error("Should not already be working.");
|
14402
14404
|
var shouldTimeSlice =
|
14403
14405
|
(!forceSync &&
|
14404
|
-
0 === (lanes &
|
14406
|
+
0 === (lanes & 124) &&
|
14405
14407
|
0 === (lanes & root.expiredLanes)) ||
|
14406
14408
|
checkIfRootIsPrerendering(root, lanes),
|
14407
14409
|
exitStatus = shouldTimeSlice
|
@@ -14494,7 +14496,7 @@
|
|
14494
14496
|
case RootFatalErrored:
|
14495
14497
|
throw Error("Root did not complete. This is a bug in React.");
|
14496
14498
|
case RootSuspendedWithDelay:
|
14497
|
-
if ((lanes &
|
14499
|
+
if ((lanes & 4194048) !== lanes) break;
|
14498
14500
|
case RootSuspendedAtTheShell:
|
14499
14501
|
markRootSuspended(
|
14500
14502
|
shouldTimeSlice,
|
@@ -14850,7 +14852,7 @@
|
|
14850
14852
|
function renderDidSuspendDelayIfPossible() {
|
14851
14853
|
workInProgressRootExitStatus = RootSuspendedWithDelay;
|
14852
14854
|
workInProgressRootDidSkipSuspendedSiblings ||
|
14853
|
-
((workInProgressRootRenderLanes &
|
14855
|
+
((workInProgressRootRenderLanes & 4194048) !==
|
14854
14856
|
workInProgressRootRenderLanes &&
|
14855
14857
|
null !== suspenseHandlerStackCursor.current) ||
|
14856
14858
|
(workInProgressRootIsPrerendering = !0);
|
@@ -15658,7 +15660,7 @@
|
|
15658
15660
|
0 !== (pendingEffectsLanes & 3) && flushPendingEffects();
|
15659
15661
|
ensureRootIsScheduled(root);
|
15660
15662
|
remainingLanes = root.pendingLanes;
|
15661
|
-
0 !== (lanes &
|
15663
|
+
0 !== (lanes & 4194090) && 0 !== (remainingLanes & 42)
|
15662
15664
|
? ((nestedUpdateScheduled = !0),
|
15663
15665
|
root === rootWithNestedUpdates
|
15664
15666
|
? nestedUpdateCount++
|
@@ -16046,8 +16048,8 @@
|
|
16046
16048
|
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
16047
16049
|
nextLanes &= pendingLanes & ~(suspendedLanes & ~pingedLanes);
|
16048
16050
|
nextLanes =
|
16049
|
-
nextLanes &
|
16050
|
-
? (nextLanes &
|
16051
|
+
nextLanes & 201326741
|
16052
|
+
? (nextLanes & 201326741) | 1
|
16051
16053
|
: nextLanes
|
16052
16054
|
? nextLanes | 2
|
16053
16055
|
: 0;
|
@@ -21299,7 +21301,7 @@
|
|
21299
21301
|
clz32 = Math.clz32 ? Math.clz32 : clz32Fallback,
|
21300
21302
|
log = Math.log,
|
21301
21303
|
LN2 = Math.LN2,
|
21302
|
-
nextTransitionLane =
|
21304
|
+
nextTransitionLane = 256,
|
21303
21305
|
nextRetryLane = 4194304,
|
21304
21306
|
DiscreteEventPriority = 2,
|
21305
21307
|
ContinuousEventPriority = 8,
|
@@ -24811,11 +24813,11 @@
|
|
24811
24813
|
};
|
24812
24814
|
(function () {
|
24813
24815
|
var isomorphicReactPackageVersion = React.version;
|
24814
|
-
if ("19.1.0-canary-
|
24816
|
+
if ("19.1.0-canary-4632e36a-20250216" !== isomorphicReactPackageVersion)
|
24815
24817
|
throw Error(
|
24816
24818
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
24817
24819
|
(isomorphicReactPackageVersion +
|
24818
|
-
"\n - react-dom: 19.1.0-canary-
|
24820
|
+
"\n - react-dom: 19.1.0-canary-4632e36a-20250216\nLearn more: https://react.dev/warnings/version-mismatch")
|
24819
24821
|
);
|
24820
24822
|
})();
|
24821
24823
|
("function" === typeof Map &&
|
@@ -24852,10 +24854,10 @@
|
|
24852
24854
|
!(function () {
|
24853
24855
|
var internals = {
|
24854
24856
|
bundleType: 1,
|
24855
|
-
version: "19.1.0-canary-
|
24857
|
+
version: "19.1.0-canary-4632e36a-20250216",
|
24856
24858
|
rendererPackageName: "react-dom",
|
24857
24859
|
currentDispatcherRef: ReactSharedInternals,
|
24858
|
-
reconcilerVersion: "19.1.0-canary-
|
24860
|
+
reconcilerVersion: "19.1.0-canary-4632e36a-20250216"
|
24859
24861
|
};
|
24860
24862
|
internals.overrideHookState = overrideHookState;
|
24861
24863
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -25329,7 +25331,7 @@
|
|
25329
25331
|
exports.useFormStatus = function () {
|
25330
25332
|
return resolveDispatcher().useHostTransitionStatus();
|
25331
25333
|
};
|
25332
|
-
exports.version = "19.1.0-canary-
|
25334
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
25333
25335
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
25334
25336
|
"function" ===
|
25335
25337
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -379,8 +379,8 @@ function getLabelForLane(lane) {
|
|
379
379
|
if (lane & 8) return "InputContinuous";
|
380
380
|
if (lane & 16) return "DefaultHydration";
|
381
381
|
if (lane & 32) return "Default";
|
382
|
-
if (lane &
|
383
|
-
if (lane &
|
382
|
+
if (lane & 128) return "TransitionHydration";
|
383
|
+
if (lane & 4194048) return "Transition";
|
384
384
|
if (lane & 62914560) return "Retry";
|
385
385
|
if (lane & 67108864) return "SelectiveHydration";
|
386
386
|
if (lane & 134217728) return "IdleHydration";
|
@@ -388,7 +388,7 @@ function getLabelForLane(lane) {
|
|
388
388
|
if (lane & 536870912) return "Offscreen";
|
389
389
|
if (lane & 1073741824) return "Deferred";
|
390
390
|
}
|
391
|
-
var nextTransitionLane =
|
391
|
+
var nextTransitionLane = 256,
|
392
392
|
nextRetryLane = 4194304;
|
393
393
|
function getHighestPriorityLanes(lanes) {
|
394
394
|
var pendingSyncLanes = lanes & 42;
|
@@ -409,6 +409,7 @@ function getHighestPriorityLanes(lanes) {
|
|
409
409
|
case 64:
|
410
410
|
return 64;
|
411
411
|
case 128:
|
412
|
+
return 128;
|
412
413
|
case 256:
|
413
414
|
case 512:
|
414
415
|
case 1024:
|
@@ -423,7 +424,7 @@ function getHighestPriorityLanes(lanes) {
|
|
423
424
|
case 524288:
|
424
425
|
case 1048576:
|
425
426
|
case 2097152:
|
426
|
-
return lanes &
|
427
|
+
return lanes & 4194048;
|
427
428
|
case 4194304:
|
428
429
|
case 8388608:
|
429
430
|
case 16777216:
|
@@ -479,7 +480,7 @@ function getNextLanes(root, wipLanes, rootHasPendingCommit) {
|
|
479
480
|
((suspendedLanes = nextLanes & -nextLanes),
|
480
481
|
(rootHasPendingCommit = wipLanes & -wipLanes),
|
481
482
|
suspendedLanes >= rootHasPendingCommit ||
|
482
|
-
(32 === suspendedLanes && 0 !== (rootHasPendingCommit &
|
483
|
+
(32 === suspendedLanes && 0 !== (rootHasPendingCommit & 4194048)))
|
483
484
|
? wipLanes
|
484
485
|
: nextLanes;
|
485
486
|
}
|
@@ -497,10 +498,10 @@ function computeExpirationTime(lane, currentTime) {
|
|
497
498
|
case 2:
|
498
499
|
case 4:
|
499
500
|
case 8:
|
501
|
+
case 64:
|
500
502
|
return currentTime + 250;
|
501
503
|
case 16:
|
502
504
|
case 32:
|
503
|
-
case 64:
|
504
505
|
case 128:
|
505
506
|
case 256:
|
506
507
|
case 512:
|
@@ -535,7 +536,7 @@ function computeExpirationTime(lane, currentTime) {
|
|
535
536
|
function claimNextTransitionLane() {
|
536
537
|
var lane = nextTransitionLane;
|
537
538
|
nextTransitionLane <<= 1;
|
538
|
-
0 === (nextTransitionLane &
|
539
|
+
0 === (nextTransitionLane & 4194048) && (nextTransitionLane = 256);
|
539
540
|
return lane;
|
540
541
|
}
|
541
542
|
function claimNextRetryLane() {
|
@@ -609,7 +610,7 @@ function markSpawnedDeferredLane(root, spawnedLane, entangledLanes) {
|
|
609
610
|
root.entanglements[spawnedLaneIndex] =
|
610
611
|
root.entanglements[spawnedLaneIndex] |
|
611
612
|
1073741824 |
|
612
|
-
(entangledLanes &
|
613
|
+
(entangledLanes & 4194090);
|
613
614
|
}
|
614
615
|
function markRootEntangled(root, entangledLanes) {
|
615
616
|
var rootEntangledLanes = (root.entangledLanes |= entangledLanes);
|
@@ -632,7 +633,6 @@ function getBumpedLaneForHydrationByLane(lane) {
|
|
632
633
|
case 32:
|
633
634
|
lane = 16;
|
634
635
|
break;
|
635
|
-
case 128:
|
636
636
|
case 256:
|
637
637
|
case 512:
|
638
638
|
case 1024:
|
@@ -651,7 +651,7 @@ function getBumpedLaneForHydrationByLane(lane) {
|
|
651
651
|
case 8388608:
|
652
652
|
case 16777216:
|
653
653
|
case 33554432:
|
654
|
-
lane =
|
654
|
+
lane = 128;
|
655
655
|
break;
|
656
656
|
case 268435456:
|
657
657
|
lane = 134217728;
|
@@ -2431,17 +2431,19 @@ function markUpdateLaneFromFiberToRoot(sourceFiber, update, lane) {
|
|
2431
2431
|
null === sourceFiber || sourceFiber._visibility & 1 || (isHidden = !0)),
|
2432
2432
|
(sourceFiber = parent),
|
2433
2433
|
(parent = parent.return);
|
2434
|
-
|
2435
|
-
|
2436
|
-
|
2437
|
-
|
2438
|
-
|
2439
|
-
|
2440
|
-
|
2441
|
-
|
2442
|
-
|
2443
|
-
|
2444
|
-
|
2434
|
+
return 3 === sourceFiber.tag
|
2435
|
+
? ((parent = sourceFiber.stateNode),
|
2436
|
+
isHidden &&
|
2437
|
+
null !== update &&
|
2438
|
+
((isHidden = 31 - clz32(lane)),
|
2439
|
+
(sourceFiber = parent.hiddenUpdates),
|
2440
|
+
(alternate = sourceFiber[isHidden]),
|
2441
|
+
null === alternate
|
2442
|
+
? (sourceFiber[isHidden] = [update])
|
2443
|
+
: alternate.push(update),
|
2444
|
+
(update.lane = lane | 536870912)),
|
2445
|
+
parent)
|
2446
|
+
: null;
|
2445
2447
|
}
|
2446
2448
|
function getRootForUpdatedFiber(sourceFiber) {
|
2447
2449
|
if (50 < nestedUpdateCount)
|
@@ -2779,7 +2781,7 @@ function enqueueUpdate(fiber, update, lane) {
|
|
2779
2781
|
}
|
2780
2782
|
function entangleTransitions(root, fiber, lane) {
|
2781
2783
|
fiber = fiber.updateQueue;
|
2782
|
-
if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane &
|
2784
|
+
if (null !== fiber && ((fiber = fiber.shared), 0 !== (lane & 4194048))) {
|
2783
2785
|
var queueLanes = fiber.lanes;
|
2784
2786
|
queueLanes &= root.pendingLanes;
|
2785
2787
|
lane |= queueLanes;
|
@@ -3712,7 +3714,7 @@ function updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
|
3712
3714
|
);
|
3713
3715
|
if (null === workInProgressRoot) throw Error(formatProdErrorMessage(349));
|
3714
3716
|
isHydrating$jscomp$0 ||
|
3715
|
-
0 !== (renderLanes &
|
3717
|
+
0 !== (renderLanes & 124) ||
|
3716
3718
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
3717
3719
|
}
|
3718
3720
|
return getServerSnapshot;
|
@@ -4405,7 +4407,7 @@ function enqueueRenderPhaseUpdate(queue, update) {
|
|
4405
4407
|
queue.pending = update;
|
4406
4408
|
}
|
4407
4409
|
function entangleTransitionUpdate(root, queue, lane) {
|
4408
|
-
if (0 !== (lane &
|
4410
|
+
if (0 !== (lane & 4194048)) {
|
4409
4411
|
var queueLanes = queue.lanes;
|
4410
4412
|
queueLanes &= root.pendingLanes;
|
4411
4413
|
lane |= queueLanes;
|
@@ -4549,7 +4551,7 @@ var ContextOnlyDispatcher = {
|
|
4549
4551
|
getServerSnapshot = getSnapshot();
|
4550
4552
|
if (null === workInProgressRoot)
|
4551
4553
|
throw Error(formatProdErrorMessage(349));
|
4552
|
-
0 !== (workInProgressRootRenderLanes &
|
4554
|
+
0 !== (workInProgressRootRenderLanes & 124) ||
|
4553
4555
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
4554
4556
|
}
|
4555
4557
|
hook.memoizedState = getServerSnapshot;
|
@@ -10011,7 +10013,7 @@ function preloadResourceAndSuspendIfNeeded(workInProgress, resource) {
|
|
10011
10013
|
resource = suspenseHandlerStackCursor.current;
|
10012
10014
|
if (
|
10013
10015
|
null !== resource &&
|
10014
|
-
((workInProgressRootRenderLanes &
|
10016
|
+
((workInProgressRootRenderLanes & 4194048) ===
|
10015
10017
|
workInProgressRootRenderLanes
|
10016
10018
|
? null !== shellBoundary
|
10017
10019
|
: ((workInProgressRootRenderLanes & 62914560) !==
|
@@ -10770,7 +10772,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
10770
10772
|
if (0 !== (executionContext & 6)) throw Error(formatProdErrorMessage(327));
|
10771
10773
|
var shouldTimeSlice =
|
10772
10774
|
(!forceSync &&
|
10773
|
-
0 === (lanes &
|
10775
|
+
0 === (lanes & 124) &&
|
10774
10776
|
0 === (lanes & root$jscomp$0.expiredLanes)) ||
|
10775
10777
|
checkIfRootIsPrerendering(root$jscomp$0, lanes),
|
10776
10778
|
exitStatus = shouldTimeSlice
|
@@ -10858,7 +10860,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
10858
10860
|
case 1:
|
10859
10861
|
throw Error(formatProdErrorMessage(345));
|
10860
10862
|
case 4:
|
10861
|
-
if ((lanes &
|
10863
|
+
if ((lanes & 4194048) !== lanes) break;
|
10862
10864
|
case 6:
|
10863
10865
|
markRootSuspended(
|
10864
10866
|
shouldTimeSlice,
|
@@ -11181,7 +11183,7 @@ function pushAsyncDispatcher() {
|
|
11181
11183
|
function renderDidSuspendDelayIfPossible() {
|
11182
11184
|
workInProgressRootExitStatus = 4;
|
11183
11185
|
workInProgressRootDidSkipSuspendedSiblings ||
|
11184
|
-
((workInProgressRootRenderLanes &
|
11186
|
+
((workInProgressRootRenderLanes & 4194048) !==
|
11185
11187
|
workInProgressRootRenderLanes &&
|
11186
11188
|
null !== suspenseHandlerStackCursor.current) ||
|
11187
11189
|
(workInProgressRootIsPrerendering = !0);
|
@@ -11875,7 +11877,7 @@ function flushSpawnedWork() {
|
|
11875
11877
|
0 !== (pendingEffectsLanes & 3) && flushPendingEffects();
|
11876
11878
|
ensureRootIsScheduled(root);
|
11877
11879
|
remainingLanes = root.pendingLanes;
|
11878
|
-
0 !== (lanes &
|
11880
|
+
0 !== (lanes & 4194090) && 0 !== (remainingLanes & 42)
|
11879
11881
|
? ((nestedUpdateScheduled = !0),
|
11880
11882
|
root === rootWithNestedUpdates
|
11881
11883
|
? nestedUpdateCount++
|
@@ -12107,8 +12109,8 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
|
12107
12109
|
JSCompiler_inline_result &=
|
12108
12110
|
pendingLanes & ~(suspendedLanes & ~pingedLanes);
|
12109
12111
|
JSCompiler_inline_result =
|
12110
|
-
JSCompiler_inline_result &
|
12111
|
-
? (JSCompiler_inline_result &
|
12112
|
+
JSCompiler_inline_result & 201326741
|
12113
|
+
? (JSCompiler_inline_result & 201326741) | 1
|
12112
12114
|
: JSCompiler_inline_result
|
12113
12115
|
? JSCompiler_inline_result | 2
|
12114
12116
|
: 0;
|
@@ -15898,14 +15900,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15898
15900
|
};
|
15899
15901
|
var isomorphicReactPackageVersion$jscomp$inline_1858 = React.version;
|
15900
15902
|
if (
|
15901
|
-
"19.1.0-canary-
|
15903
|
+
"19.1.0-canary-4632e36a-20250216" !==
|
15902
15904
|
isomorphicReactPackageVersion$jscomp$inline_1858
|
15903
15905
|
)
|
15904
15906
|
throw Error(
|
15905
15907
|
formatProdErrorMessage(
|
15906
15908
|
527,
|
15907
15909
|
isomorphicReactPackageVersion$jscomp$inline_1858,
|
15908
|
-
"19.1.0-canary-
|
15910
|
+
"19.1.0-canary-4632e36a-20250216"
|
15909
15911
|
)
|
15910
15912
|
);
|
15911
15913
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15927,10 +15929,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15927
15929
|
};
|
15928
15930
|
var internals$jscomp$inline_1865 = {
|
15929
15931
|
bundleType: 0,
|
15930
|
-
version: "19.1.0-canary-
|
15932
|
+
version: "19.1.0-canary-4632e36a-20250216",
|
15931
15933
|
rendererPackageName: "react-dom",
|
15932
15934
|
currentDispatcherRef: ReactSharedInternals,
|
15933
|
-
reconcilerVersion: "19.1.0-canary-
|
15935
|
+
reconcilerVersion: "19.1.0-canary-4632e36a-20250216",
|
15934
15936
|
getLaneLabelMap: function () {
|
15935
15937
|
for (
|
15936
15938
|
var map = new Map(), lane = 1, index$281 = 0;
|
@@ -16210,7 +16212,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
16210
16212
|
exports.useFormStatus = function () {
|
16211
16213
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
16212
16214
|
};
|
16213
|
-
exports.version = "19.1.0-canary-
|
16215
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
16214
16216
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
16215
16217
|
"function" ===
|
16216
16218
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -9008,5 +9008,5 @@
|
|
9008
9008
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
9009
9009
|
);
|
9010
9010
|
};
|
9011
|
-
exports.version = "19.1.0-canary-
|
9011
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
9012
9012
|
})();
|
@@ -5885,4 +5885,4 @@ exports.renderToString = function (children, options) {
|
|
5885
5885
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
5886
5886
|
);
|
5887
5887
|
};
|
5888
|
-
exports.version = "19.1.0-canary-
|
5888
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
@@ -9008,5 +9008,5 @@
|
|
9008
9008
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
|
9009
9009
|
);
|
9010
9010
|
};
|
9011
|
-
exports.version = "19.1.0-canary-
|
9011
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
9012
9012
|
})();
|
@@ -5965,4 +5965,4 @@ exports.renderToString = function (children, options) {
|
|
5965
5965
|
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
|
5966
5966
|
);
|
5967
5967
|
};
|
5968
|
-
exports.version = "19.1.0-canary-
|
5968
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
@@ -7739,11 +7739,11 @@
|
|
7739
7739
|
}
|
7740
7740
|
function ensureCorrectIsomorphicReactVersion() {
|
7741
7741
|
var isomorphicReactPackageVersion = React.version;
|
7742
|
-
if ("19.1.0-canary-
|
7742
|
+
if ("19.1.0-canary-4632e36a-20250216" !== isomorphicReactPackageVersion)
|
7743
7743
|
throw Error(
|
7744
7744
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7745
7745
|
(isomorphicReactPackageVersion +
|
7746
|
-
"\n - react-dom: 19.1.0-canary-
|
7746
|
+
"\n - react-dom: 19.1.0-canary-4632e36a-20250216\nLearn more: https://react.dev/warnings/version-mismatch")
|
7747
7747
|
);
|
7748
7748
|
}
|
7749
7749
|
var React = require("react"),
|
@@ -9397,5 +9397,5 @@
|
|
9397
9397
|
startWork(request);
|
9398
9398
|
});
|
9399
9399
|
};
|
9400
|
-
exports.version = "19.1.0-canary-
|
9400
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
9401
9401
|
})();
|
@@ -6225,12 +6225,12 @@ function abort(request, reason) {
|
|
6225
6225
|
}
|
6226
6226
|
function ensureCorrectIsomorphicReactVersion() {
|
6227
6227
|
var isomorphicReactPackageVersion = React.version;
|
6228
|
-
if ("19.1.0-canary-
|
6228
|
+
if ("19.1.0-canary-4632e36a-20250216" !== isomorphicReactPackageVersion)
|
6229
6229
|
throw Error(
|
6230
6230
|
formatProdErrorMessage(
|
6231
6231
|
527,
|
6232
6232
|
isomorphicReactPackageVersion,
|
6233
|
-
"19.1.0-canary-
|
6233
|
+
"19.1.0-canary-4632e36a-20250216"
|
6234
6234
|
)
|
6235
6235
|
);
|
6236
6236
|
}
|
@@ -6377,4 +6377,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6377
6377
|
startWork(request);
|
6378
6378
|
});
|
6379
6379
|
};
|
6380
|
-
exports.version = "19.1.0-canary-
|
6380
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
@@ -8616,13 +8616,13 @@ function abort(request, reason) {
|
|
8616
8616
|
}
|
8617
8617
|
var isomorphicReactPackageVersion$jscomp$inline_740 = React.version;
|
8618
8618
|
if (
|
8619
|
-
"19.1.0-canary-
|
8619
|
+
"19.1.0-canary-4632e36a-20250216" !==
|
8620
8620
|
isomorphicReactPackageVersion$jscomp$inline_740
|
8621
8621
|
)
|
8622
8622
|
throw Error(
|
8623
8623
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8624
8624
|
(isomorphicReactPackageVersion$jscomp$inline_740 +
|
8625
|
-
"\n - react-dom: 19.1.0-canary-
|
8625
|
+
"\n - react-dom: 19.1.0-canary-4632e36a-20250216\nLearn more: https://react.dev/warnings/version-mismatch")
|
8626
8626
|
);
|
8627
8627
|
exports.renderToReadableStream = function (children, options) {
|
8628
8628
|
return new Promise(function (resolve, reject) {
|
@@ -8715,4 +8715,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
8715
8715
|
startWork(request$jscomp$0);
|
8716
8716
|
});
|
8717
8717
|
};
|
8718
|
-
exports.version = "19.1.0-canary-
|
8718
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
@@ -5863,13 +5863,13 @@ function abort(request, reason) {
|
|
5863
5863
|
}
|
5864
5864
|
var isomorphicReactPackageVersion$jscomp$inline_761 = React.version;
|
5865
5865
|
if (
|
5866
|
-
"19.1.0-canary-
|
5866
|
+
"19.1.0-canary-4632e36a-20250216" !==
|
5867
5867
|
isomorphicReactPackageVersion$jscomp$inline_761
|
5868
5868
|
)
|
5869
5869
|
throw Error(
|
5870
5870
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
5871
5871
|
(isomorphicReactPackageVersion$jscomp$inline_761 +
|
5872
|
-
"\n - react-dom: 19.1.0-canary-
|
5872
|
+
"\n - react-dom: 19.1.0-canary-4632e36a-20250216\nLearn more: https://react.dev/warnings/version-mismatch")
|
5873
5873
|
);
|
5874
5874
|
exports.renderToReadableStream = function (children, options) {
|
5875
5875
|
return new Promise(function (resolve, reject) {
|
@@ -5960,4 +5960,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
5960
5960
|
startWork(request);
|
5961
5961
|
});
|
5962
5962
|
};
|
5963
|
-
exports.version = "19.1.0-canary-
|
5963
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
@@ -7762,11 +7762,11 @@
|
|
7762
7762
|
}
|
7763
7763
|
function ensureCorrectIsomorphicReactVersion() {
|
7764
7764
|
var isomorphicReactPackageVersion = React.version;
|
7765
|
-
if ("19.1.0-canary-
|
7765
|
+
if ("19.1.0-canary-4632e36a-20250216" !== isomorphicReactPackageVersion)
|
7766
7766
|
throw Error(
|
7767
7767
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7768
7768
|
(isomorphicReactPackageVersion +
|
7769
|
-
"\n - react-dom: 19.1.0-canary-
|
7769
|
+
"\n - react-dom: 19.1.0-canary-4632e36a-20250216\nLearn more: https://react.dev/warnings/version-mismatch")
|
7770
7770
|
);
|
7771
7771
|
}
|
7772
7772
|
var React = require("react"),
|
@@ -9416,5 +9416,5 @@
|
|
9416
9416
|
startWork(request);
|
9417
9417
|
});
|
9418
9418
|
};
|
9419
|
-
exports.version = "19.1.0-canary-
|
9419
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
9420
9420
|
})();
|
@@ -6320,11 +6320,11 @@ function abort(request, reason) {
|
|
6320
6320
|
}
|
6321
6321
|
function ensureCorrectIsomorphicReactVersion() {
|
6322
6322
|
var isomorphicReactPackageVersion = React.version;
|
6323
|
-
if ("19.1.0-canary-
|
6323
|
+
if ("19.1.0-canary-4632e36a-20250216" !== isomorphicReactPackageVersion)
|
6324
6324
|
throw Error(
|
6325
6325
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6326
6326
|
(isomorphicReactPackageVersion +
|
6327
|
-
"\n - react-dom: 19.1.0-canary-
|
6327
|
+
"\n - react-dom: 19.1.0-canary-4632e36a-20250216\nLearn more: https://react.dev/warnings/version-mismatch")
|
6328
6328
|
);
|
6329
6329
|
}
|
6330
6330
|
ensureCorrectIsomorphicReactVersion();
|
@@ -6470,4 +6470,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6470
6470
|
startWork(request);
|
6471
6471
|
});
|
6472
6472
|
};
|
6473
|
-
exports.version = "19.1.0-canary-
|
6473
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
@@ -7637,11 +7637,11 @@
|
|
7637
7637
|
}
|
7638
7638
|
function ensureCorrectIsomorphicReactVersion() {
|
7639
7639
|
var isomorphicReactPackageVersion = React.version;
|
7640
|
-
if ("19.1.0-canary-
|
7640
|
+
if ("19.1.0-canary-4632e36a-20250216" !== isomorphicReactPackageVersion)
|
7641
7641
|
throw Error(
|
7642
7642
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7643
7643
|
(isomorphicReactPackageVersion +
|
7644
|
-
"\n - react-dom: 19.1.0-canary-
|
7644
|
+
"\n - react-dom: 19.1.0-canary-4632e36a-20250216\nLearn more: https://react.dev/warnings/version-mismatch")
|
7645
7645
|
);
|
7646
7646
|
}
|
7647
7647
|
function createDrainHandler(destination, request) {
|
@@ -9290,5 +9290,5 @@
|
|
9290
9290
|
}
|
9291
9291
|
};
|
9292
9292
|
};
|
9293
|
-
exports.version = "19.1.0-canary-
|
9293
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
9294
9294
|
})();
|
@@ -6212,11 +6212,11 @@ function abort(request, reason) {
|
|
6212
6212
|
}
|
6213
6213
|
function ensureCorrectIsomorphicReactVersion() {
|
6214
6214
|
var isomorphicReactPackageVersion = React.version;
|
6215
|
-
if ("19.1.0-canary-
|
6215
|
+
if ("19.1.0-canary-4632e36a-20250216" !== isomorphicReactPackageVersion)
|
6216
6216
|
throw Error(
|
6217
6217
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6218
6218
|
(isomorphicReactPackageVersion +
|
6219
|
-
"\n - react-dom: 19.1.0-canary-
|
6219
|
+
"\n - react-dom: 19.1.0-canary-4632e36a-20250216\nLearn more: https://react.dev/warnings/version-mismatch")
|
6220
6220
|
);
|
6221
6221
|
}
|
6222
6222
|
ensureCorrectIsomorphicReactVersion();
|
@@ -6365,4 +6365,4 @@ exports.renderToPipeableStream = function (children, options) {
|
|
6365
6365
|
}
|
6366
6366
|
};
|
6367
6367
|
};
|
6368
|
-
exports.version = "19.1.0-canary-
|
6368
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
@@ -416,7 +416,7 @@
|
|
416
416
|
exports.useFormStatus = function () {
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
418
418
|
};
|
419
|
-
exports.version = "19.1.0-canary-
|
419
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
420
420
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
421
421
|
"function" ===
|
422
422
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
207
207
|
exports.useFormStatus = function () {
|
208
208
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
209
209
|
};
|
210
|
-
exports.version = "19.1.0-canary-
|
210
|
+
exports.version = "19.1.0-canary-4632e36a-20250216";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-dom",
|
3
|
-
"version": "19.1.0-canary-
|
3
|
+
"version": "19.1.0-canary-4632e36a-20250216",
|
4
4
|
"description": "React package for working with the DOM.",
|
5
5
|
"main": "index.js",
|
6
6
|
"repository": {
|
@@ -17,10 +17,10 @@
|
|
17
17
|
},
|
18
18
|
"homepage": "https://react.dev/",
|
19
19
|
"dependencies": {
|
20
|
-
"scheduler": "0.26.0-canary-
|
20
|
+
"scheduler": "0.26.0-canary-4632e36a-20250216"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"react": "19.1.0-canary-
|
23
|
+
"react": "19.1.0-canary-4632e36a-20250216"
|
24
24
|
},
|
25
25
|
"files": [
|
26
26
|
"LICENSE",
|