react-dom 19.2.0-canary-67a44bcd-20250915 → 19.2.0-canary-5e0c951b-20250916
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 +279 -142
- package/cjs/react-dom-client.production.js +191 -54
- package/cjs/react-dom-profiling.development.js +279 -142
- package/cjs/react-dom-profiling.profiling.js +191 -54
- 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
|
@@ -3323,6 +3323,7 @@ function chainThenableValue(thenable, result) {
|
|
|
3323
3323
|
}
|
|
3324
3324
|
var prevOnStartTransitionFinish = ReactSharedInternals.S;
|
|
3325
3325
|
ReactSharedInternals.S = function (transition, returnValue) {
|
|
3326
|
+
globalMostRecentTransitionTime = now$1();
|
|
3326
3327
|
"object" === typeof returnValue &&
|
|
3327
3328
|
null !== returnValue &&
|
|
3328
3329
|
"function" === typeof returnValue.then &&
|
|
@@ -10831,32 +10832,57 @@ function recursivelyTraverseAtomicPassiveEffects(
|
|
|
10831
10832
|
}
|
|
10832
10833
|
}
|
|
10833
10834
|
var suspenseyCommitFlag = 8192;
|
|
10834
|
-
function recursivelyAccumulateSuspenseyCommit(
|
|
10835
|
+
function recursivelyAccumulateSuspenseyCommit(
|
|
10836
|
+
parentFiber,
|
|
10837
|
+
committedLanes,
|
|
10838
|
+
suspendedState
|
|
10839
|
+
) {
|
|
10835
10840
|
if (parentFiber.subtreeFlags & suspenseyCommitFlag)
|
|
10836
10841
|
for (parentFiber = parentFiber.child; null !== parentFiber; )
|
|
10837
|
-
accumulateSuspenseyCommitOnFiber(
|
|
10842
|
+
accumulateSuspenseyCommitOnFiber(
|
|
10843
|
+
parentFiber,
|
|
10844
|
+
committedLanes,
|
|
10845
|
+
suspendedState
|
|
10846
|
+
),
|
|
10838
10847
|
(parentFiber = parentFiber.sibling);
|
|
10839
10848
|
}
|
|
10840
|
-
function accumulateSuspenseyCommitOnFiber(
|
|
10849
|
+
function accumulateSuspenseyCommitOnFiber(
|
|
10850
|
+
fiber,
|
|
10851
|
+
committedLanes,
|
|
10852
|
+
suspendedState
|
|
10853
|
+
) {
|
|
10841
10854
|
switch (fiber.tag) {
|
|
10842
10855
|
case 26:
|
|
10843
|
-
recursivelyAccumulateSuspenseyCommit(
|
|
10856
|
+
recursivelyAccumulateSuspenseyCommit(
|
|
10857
|
+
fiber,
|
|
10858
|
+
committedLanes,
|
|
10859
|
+
suspendedState
|
|
10860
|
+
);
|
|
10844
10861
|
fiber.flags & suspenseyCommitFlag &&
|
|
10845
10862
|
null !== fiber.memoizedState &&
|
|
10846
10863
|
suspendResource(
|
|
10864
|
+
suspendedState,
|
|
10847
10865
|
currentHoistableRoot,
|
|
10848
10866
|
fiber.memoizedState,
|
|
10849
10867
|
fiber.memoizedProps
|
|
10850
10868
|
);
|
|
10851
10869
|
break;
|
|
10852
10870
|
case 5:
|
|
10853
|
-
recursivelyAccumulateSuspenseyCommit(
|
|
10871
|
+
recursivelyAccumulateSuspenseyCommit(
|
|
10872
|
+
fiber,
|
|
10873
|
+
committedLanes,
|
|
10874
|
+
suspendedState
|
|
10875
|
+
);
|
|
10854
10876
|
break;
|
|
10855
10877
|
case 3:
|
|
10856
10878
|
case 4:
|
|
10857
10879
|
var previousHoistableRoot = currentHoistableRoot;
|
|
10858
10880
|
currentHoistableRoot = getHoistableRoot(fiber.stateNode.containerInfo);
|
|
10859
|
-
recursivelyAccumulateSuspenseyCommit(
|
|
10881
|
+
recursivelyAccumulateSuspenseyCommit(
|
|
10882
|
+
fiber,
|
|
10883
|
+
committedLanes,
|
|
10884
|
+
suspendedState
|
|
10885
|
+
);
|
|
10860
10886
|
currentHoistableRoot = previousHoistableRoot;
|
|
10861
10887
|
break;
|
|
10862
10888
|
case 22:
|
|
@@ -10866,12 +10892,24 @@ function accumulateSuspenseyCommitOnFiber(fiber) {
|
|
|
10866
10892
|
null !== previousHoistableRoot.memoizedState
|
|
10867
10893
|
? ((previousHoistableRoot = suspenseyCommitFlag),
|
|
10868
10894
|
(suspenseyCommitFlag = 16777216),
|
|
10869
|
-
recursivelyAccumulateSuspenseyCommit(
|
|
10895
|
+
recursivelyAccumulateSuspenseyCommit(
|
|
10896
|
+
fiber,
|
|
10897
|
+
committedLanes,
|
|
10898
|
+
suspendedState
|
|
10899
|
+
),
|
|
10870
10900
|
(suspenseyCommitFlag = previousHoistableRoot))
|
|
10871
|
-
: recursivelyAccumulateSuspenseyCommit(
|
|
10901
|
+
: recursivelyAccumulateSuspenseyCommit(
|
|
10902
|
+
fiber,
|
|
10903
|
+
committedLanes,
|
|
10904
|
+
suspendedState
|
|
10905
|
+
));
|
|
10872
10906
|
break;
|
|
10873
10907
|
default:
|
|
10874
|
-
recursivelyAccumulateSuspenseyCommit(
|
|
10908
|
+
recursivelyAccumulateSuspenseyCommit(
|
|
10909
|
+
fiber,
|
|
10910
|
+
committedLanes,
|
|
10911
|
+
suspendedState
|
|
10912
|
+
);
|
|
10875
10913
|
}
|
|
10876
10914
|
}
|
|
10877
10915
|
function detachAlternateSiblings(parentFiber) {
|
|
@@ -11066,6 +11104,7 @@ var DefaultAsyncDispatcher = {
|
|
|
11066
11104
|
workInProgressRootRecoverableErrors = null,
|
|
11067
11105
|
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
|
11068
11106
|
globalMostRecentFallbackTime = 0,
|
|
11107
|
+
globalMostRecentTransitionTime = 0,
|
|
11069
11108
|
workInProgressRootRenderTargetTime = Infinity,
|
|
11070
11109
|
workInProgressTransitions = null,
|
|
11071
11110
|
legacyErrorBoundariesThatAlreadyFailed = null,
|
|
@@ -11314,14 +11353,33 @@ function commitRootWhenReady(
|
|
|
11314
11353
|
if (
|
|
11315
11354
|
suspendedCommitReason & 8192 ||
|
|
11316
11355
|
16785408 === (suspendedCommitReason & 16785408)
|
|
11317
|
-
)
|
|
11318
|
-
|
|
11319
|
-
|
|
11320
|
-
|
|
11321
|
-
|
|
11322
|
-
|
|
11323
|
-
|
|
11324
|
-
|
|
11356
|
+
) {
|
|
11357
|
+
suspendedCommitReason = {
|
|
11358
|
+
stylesheets: null,
|
|
11359
|
+
count: 0,
|
|
11360
|
+
imgCount: 0,
|
|
11361
|
+
imgBytes: 0,
|
|
11362
|
+
suspenseyImages: [],
|
|
11363
|
+
waitingForImages: !0,
|
|
11364
|
+
unsuspend: noop$1
|
|
11365
|
+
};
|
|
11366
|
+
accumulateSuspenseyCommitOnFiber(
|
|
11367
|
+
finishedWork,
|
|
11368
|
+
lanes,
|
|
11369
|
+
suspendedCommitReason
|
|
11370
|
+
);
|
|
11371
|
+
var timeoutOffset =
|
|
11372
|
+
(lanes & 62914560) === lanes
|
|
11373
|
+
? globalMostRecentFallbackTime - now$1()
|
|
11374
|
+
: (lanes & 4194048) === lanes
|
|
11375
|
+
? globalMostRecentTransitionTime - now$1()
|
|
11376
|
+
: 0;
|
|
11377
|
+
timeoutOffset = waitForCommitToBeReady(
|
|
11378
|
+
suspendedCommitReason,
|
|
11379
|
+
timeoutOffset
|
|
11380
|
+
);
|
|
11381
|
+
if (null !== timeoutOffset) {
|
|
11382
|
+
root.cancelPendingCommit = timeoutOffset(
|
|
11325
11383
|
commitRoot.bind(
|
|
11326
11384
|
null,
|
|
11327
11385
|
root,
|
|
@@ -11334,6 +11392,7 @@ function commitRootWhenReady(
|
|
|
11334
11392
|
updatedLanes,
|
|
11335
11393
|
suspendedRetryLanes,
|
|
11336
11394
|
exitStatus,
|
|
11395
|
+
suspendedCommitReason,
|
|
11337
11396
|
1,
|
|
11338
11397
|
completedRenderStartTime,
|
|
11339
11398
|
completedRenderEndTime
|
|
@@ -11342,6 +11401,7 @@ function commitRootWhenReady(
|
|
|
11342
11401
|
markRootSuspended(root, lanes, spawnedLane, !didSkipSuspendedSiblings);
|
|
11343
11402
|
return;
|
|
11344
11403
|
}
|
|
11404
|
+
}
|
|
11345
11405
|
commitRoot(
|
|
11346
11406
|
root,
|
|
11347
11407
|
finishedWork,
|
|
@@ -12766,20 +12826,20 @@ function extractEvents$1(
|
|
|
12766
12826
|
}
|
|
12767
12827
|
}
|
|
12768
12828
|
for (
|
|
12769
|
-
var i$jscomp$
|
|
12770
|
-
i$jscomp$
|
|
12771
|
-
i$jscomp$
|
|
12829
|
+
var i$jscomp$inline_1693 = 0;
|
|
12830
|
+
i$jscomp$inline_1693 < simpleEventPluginEvents.length;
|
|
12831
|
+
i$jscomp$inline_1693++
|
|
12772
12832
|
) {
|
|
12773
|
-
var eventName$jscomp$
|
|
12774
|
-
simpleEventPluginEvents[i$jscomp$
|
|
12775
|
-
domEventName$jscomp$
|
|
12776
|
-
eventName$jscomp$
|
|
12777
|
-
capitalizedEvent$jscomp$
|
|
12778
|
-
eventName$jscomp$
|
|
12779
|
-
eventName$jscomp$
|
|
12833
|
+
var eventName$jscomp$inline_1694 =
|
|
12834
|
+
simpleEventPluginEvents[i$jscomp$inline_1693],
|
|
12835
|
+
domEventName$jscomp$inline_1695 =
|
|
12836
|
+
eventName$jscomp$inline_1694.toLowerCase(),
|
|
12837
|
+
capitalizedEvent$jscomp$inline_1696 =
|
|
12838
|
+
eventName$jscomp$inline_1694[0].toUpperCase() +
|
|
12839
|
+
eventName$jscomp$inline_1694.slice(1);
|
|
12780
12840
|
registerSimpleEvent(
|
|
12781
|
-
domEventName$jscomp$
|
|
12782
|
-
"on" + capitalizedEvent$jscomp$
|
|
12841
|
+
domEventName$jscomp$inline_1695,
|
|
12842
|
+
"on" + capitalizedEvent$jscomp$inline_1696
|
|
12783
12843
|
);
|
|
12784
12844
|
}
|
|
12785
12845
|
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
|
@@ -14467,6 +14527,66 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
|
|
14467
14527
|
(null == propKey$217 && null == propKey) ||
|
|
14468
14528
|
setProp(domElement, tag, lastProp, propKey$217, nextProps, propKey);
|
|
14469
14529
|
}
|
|
14530
|
+
function isLikelyStaticResource(initiatorType) {
|
|
14531
|
+
switch (initiatorType) {
|
|
14532
|
+
case "css":
|
|
14533
|
+
case "script":
|
|
14534
|
+
case "font":
|
|
14535
|
+
case "img":
|
|
14536
|
+
case "image":
|
|
14537
|
+
case "input":
|
|
14538
|
+
case "link":
|
|
14539
|
+
return !0;
|
|
14540
|
+
default:
|
|
14541
|
+
return !1;
|
|
14542
|
+
}
|
|
14543
|
+
}
|
|
14544
|
+
function estimateBandwidth() {
|
|
14545
|
+
if ("function" === typeof performance.getEntriesByType) {
|
|
14546
|
+
for (
|
|
14547
|
+
var count = 0,
|
|
14548
|
+
bits = 0,
|
|
14549
|
+
resourceEntries = performance.getEntriesByType("resource"),
|
|
14550
|
+
i = 0;
|
|
14551
|
+
i < resourceEntries.length;
|
|
14552
|
+
i++
|
|
14553
|
+
) {
|
|
14554
|
+
var entry = resourceEntries[i],
|
|
14555
|
+
transferSize = entry.transferSize,
|
|
14556
|
+
initiatorType = entry.initiatorType,
|
|
14557
|
+
duration = entry.duration;
|
|
14558
|
+
if (transferSize && duration && isLikelyStaticResource(initiatorType)) {
|
|
14559
|
+
initiatorType = 0;
|
|
14560
|
+
duration = entry.responseEnd;
|
|
14561
|
+
for (i += 1; i < resourceEntries.length; i++) {
|
|
14562
|
+
var overlapEntry = resourceEntries[i],
|
|
14563
|
+
overlapStartTime = overlapEntry.startTime;
|
|
14564
|
+
if (overlapStartTime > duration) break;
|
|
14565
|
+
var overlapTransferSize = overlapEntry.transferSize,
|
|
14566
|
+
overlapInitiatorType = overlapEntry.initiatorType;
|
|
14567
|
+
overlapTransferSize &&
|
|
14568
|
+
isLikelyStaticResource(overlapInitiatorType) &&
|
|
14569
|
+
((overlapEntry = overlapEntry.responseEnd),
|
|
14570
|
+
(initiatorType +=
|
|
14571
|
+
overlapTransferSize *
|
|
14572
|
+
(overlapEntry < duration
|
|
14573
|
+
? 1
|
|
14574
|
+
: (duration - overlapStartTime) /
|
|
14575
|
+
(overlapEntry - overlapStartTime))));
|
|
14576
|
+
}
|
|
14577
|
+
--i;
|
|
14578
|
+
bits += (8 * (transferSize + initiatorType)) / (entry.duration / 1e3);
|
|
14579
|
+
count++;
|
|
14580
|
+
if (10 < count) break;
|
|
14581
|
+
}
|
|
14582
|
+
}
|
|
14583
|
+
if (0 < count) return bits / count / 1e6;
|
|
14584
|
+
}
|
|
14585
|
+
return navigator.connection &&
|
|
14586
|
+
((count = navigator.connection.downlink), "number" === typeof count)
|
|
14587
|
+
? count
|
|
14588
|
+
: 5;
|
|
14589
|
+
}
|
|
14470
14590
|
var eventsEnabled = null,
|
|
14471
14591
|
selectionInformation = null;
|
|
14472
14592
|
function getOwnerDocumentFromRootContainer(rootContainerElement) {
|
|
@@ -15463,10 +15583,7 @@ function preloadResource(resource) {
|
|
|
15463
15583
|
? !1
|
|
15464
15584
|
: !0;
|
|
15465
15585
|
}
|
|
15466
|
-
|
|
15467
|
-
function suspendResource(hoistableRoot, resource, props) {
|
|
15468
|
-
if (null === suspendedState) throw Error(formatProdErrorMessage(475));
|
|
15469
|
-
var state = suspendedState;
|
|
15586
|
+
function suspendResource(state, hoistableRoot, resource, props) {
|
|
15470
15587
|
if (
|
|
15471
15588
|
"stylesheet" === resource.type &&
|
|
15472
15589
|
("string" !== typeof props.media ||
|
|
@@ -15515,13 +15632,12 @@ function suspendResource(hoistableRoot, resource, props) {
|
|
|
15515
15632
|
hoistableRoot.addEventListener("error", resource));
|
|
15516
15633
|
}
|
|
15517
15634
|
}
|
|
15518
|
-
|
|
15519
|
-
|
|
15520
|
-
var state = suspendedState;
|
|
15635
|
+
var estimatedBytesWithinLimit = 0;
|
|
15636
|
+
function waitForCommitToBeReady(state, timeoutOffset) {
|
|
15521
15637
|
state.stylesheets &&
|
|
15522
15638
|
0 === state.count &&
|
|
15523
15639
|
insertSuspendedStylesheets(state, state.stylesheets);
|
|
15524
|
-
return 0 < state.count
|
|
15640
|
+
return 0 < state.count || 0 < state.imgCount
|
|
15525
15641
|
? function (commit) {
|
|
15526
15642
|
var stylesheetTimer = setTimeout(function () {
|
|
15527
15643
|
state.stylesheets &&
|
|
@@ -15531,18 +15647,39 @@ function waitForCommitToBeReady() {
|
|
|
15531
15647
|
state.unsuspend = null;
|
|
15532
15648
|
unsuspend();
|
|
15533
15649
|
}
|
|
15534
|
-
}, 6e4);
|
|
15650
|
+
}, 6e4 + timeoutOffset);
|
|
15651
|
+
0 < state.imgBytes &&
|
|
15652
|
+
0 === estimatedBytesWithinLimit &&
|
|
15653
|
+
(estimatedBytesWithinLimit = 62500 * estimateBandwidth());
|
|
15654
|
+
var imgTimer = setTimeout(
|
|
15655
|
+
function () {
|
|
15656
|
+
state.waitingForImages = !1;
|
|
15657
|
+
if (
|
|
15658
|
+
0 === state.count &&
|
|
15659
|
+
(state.stylesheets &&
|
|
15660
|
+
insertSuspendedStylesheets(state, state.stylesheets),
|
|
15661
|
+
state.unsuspend)
|
|
15662
|
+
) {
|
|
15663
|
+
var unsuspend = state.unsuspend;
|
|
15664
|
+
state.unsuspend = null;
|
|
15665
|
+
unsuspend();
|
|
15666
|
+
}
|
|
15667
|
+
},
|
|
15668
|
+
(state.imgBytes > estimatedBytesWithinLimit ? 50 : 800) +
|
|
15669
|
+
timeoutOffset
|
|
15670
|
+
);
|
|
15535
15671
|
state.unsuspend = commit;
|
|
15536
15672
|
return function () {
|
|
15537
15673
|
state.unsuspend = null;
|
|
15538
15674
|
clearTimeout(stylesheetTimer);
|
|
15675
|
+
clearTimeout(imgTimer);
|
|
15539
15676
|
};
|
|
15540
15677
|
}
|
|
15541
15678
|
: null;
|
|
15542
15679
|
}
|
|
15543
15680
|
function onUnsuspend() {
|
|
15544
15681
|
this.count--;
|
|
15545
|
-
if (0 === this.count)
|
|
15682
|
+
if (0 === this.count && (0 === this.imgCount || !this.waitingForImages))
|
|
15546
15683
|
if (this.stylesheets) insertSuspendedStylesheets(this, this.stylesheets);
|
|
15547
15684
|
else if (this.unsuspend) {
|
|
15548
15685
|
var unsuspend = this.unsuspend;
|
|
@@ -16420,16 +16557,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
|
16420
16557
|
0 === i && attemptExplicitHydrationTarget(target);
|
|
16421
16558
|
}
|
|
16422
16559
|
};
|
|
16423
|
-
var isomorphicReactPackageVersion$jscomp$
|
|
16560
|
+
var isomorphicReactPackageVersion$jscomp$inline_1958 = React.version;
|
|
16424
16561
|
if (
|
|
16425
|
-
"19.2.0-canary-
|
|
16426
|
-
isomorphicReactPackageVersion$jscomp$
|
|
16562
|
+
"19.2.0-canary-5e0c951b-20250916" !==
|
|
16563
|
+
isomorphicReactPackageVersion$jscomp$inline_1958
|
|
16427
16564
|
)
|
|
16428
16565
|
throw Error(
|
|
16429
16566
|
formatProdErrorMessage(
|
|
16430
16567
|
527,
|
|
16431
|
-
isomorphicReactPackageVersion$jscomp$
|
|
16432
|
-
"19.2.0-canary-
|
|
16568
|
+
isomorphicReactPackageVersion$jscomp$inline_1958,
|
|
16569
|
+
"19.2.0-canary-5e0c951b-20250916"
|
|
16433
16570
|
)
|
|
16434
16571
|
);
|
|
16435
16572
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
@@ -16449,12 +16586,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
|
16449
16586
|
null === componentOrElement ? null : componentOrElement.stateNode;
|
|
16450
16587
|
return componentOrElement;
|
|
16451
16588
|
};
|
|
16452
|
-
var internals$jscomp$
|
|
16589
|
+
var internals$jscomp$inline_1965 = {
|
|
16453
16590
|
bundleType: 0,
|
|
16454
|
-
version: "19.2.0-canary-
|
|
16591
|
+
version: "19.2.0-canary-5e0c951b-20250916",
|
|
16455
16592
|
rendererPackageName: "react-dom",
|
|
16456
16593
|
currentDispatcherRef: ReactSharedInternals,
|
|
16457
|
-
reconcilerVersion: "19.2.0-canary-
|
|
16594
|
+
reconcilerVersion: "19.2.0-canary-5e0c951b-20250916",
|
|
16458
16595
|
getLaneLabelMap: function () {
|
|
16459
16596
|
for (
|
|
16460
16597
|
var map = new Map(), lane = 1, index$282 = 0;
|
|
@@ -16472,16 +16609,16 @@ var internals$jscomp$inline_1961 = {
|
|
|
16472
16609
|
}
|
|
16473
16610
|
};
|
|
16474
16611
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
|
16475
|
-
var hook$jscomp$
|
|
16612
|
+
var hook$jscomp$inline_2429 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
16476
16613
|
if (
|
|
16477
|
-
!hook$jscomp$
|
|
16478
|
-
hook$jscomp$
|
|
16614
|
+
!hook$jscomp$inline_2429.isDisabled &&
|
|
16615
|
+
hook$jscomp$inline_2429.supportsFiber
|
|
16479
16616
|
)
|
|
16480
16617
|
try {
|
|
16481
|
-
(rendererID = hook$jscomp$
|
|
16482
|
-
internals$jscomp$
|
|
16618
|
+
(rendererID = hook$jscomp$inline_2429.inject(
|
|
16619
|
+
internals$jscomp$inline_1965
|
|
16483
16620
|
)),
|
|
16484
|
-
(injectedHook = hook$jscomp$
|
|
16621
|
+
(injectedHook = hook$jscomp$inline_2429);
|
|
16485
16622
|
} catch (err) {}
|
|
16486
16623
|
}
|
|
16487
16624
|
function getCrossOriginStringAs(as, input) {
|
|
@@ -16727,7 +16864,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
|
16727
16864
|
exports.useFormStatus = function () {
|
|
16728
16865
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
|
16729
16866
|
};
|
|
16730
|
-
exports.version = "19.2.0-canary-
|
|
16867
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
16731
16868
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
16732
16869
|
"function" ===
|
|
16733
16870
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -9742,5 +9742,5 @@
|
|
|
9742
9742
|
'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'
|
|
9743
9743
|
);
|
|
9744
9744
|
};
|
|
9745
|
-
exports.version = "19.2.0-canary-
|
|
9745
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
9746
9746
|
})();
|
|
@@ -6491,4 +6491,4 @@ exports.renderToString = function (children, options) {
|
|
|
6491
6491
|
'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'
|
|
6492
6492
|
);
|
|
6493
6493
|
};
|
|
6494
|
-
exports.version = "19.2.0-canary-
|
|
6494
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
@@ -9742,5 +9742,5 @@
|
|
|
9742
9742
|
'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'
|
|
9743
9743
|
);
|
|
9744
9744
|
};
|
|
9745
|
-
exports.version = "19.2.0-canary-
|
|
9745
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
9746
9746
|
})();
|
|
@@ -6574,4 +6574,4 @@ exports.renderToString = function (children, options) {
|
|
|
6574
6574
|
'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'
|
|
6575
6575
|
);
|
|
6576
6576
|
};
|
|
6577
|
-
exports.version = "19.2.0-canary-
|
|
6577
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
@@ -8485,11 +8485,11 @@
|
|
|
8485
8485
|
}
|
|
8486
8486
|
function ensureCorrectIsomorphicReactVersion() {
|
|
8487
8487
|
var isomorphicReactPackageVersion = React.version;
|
|
8488
|
-
if ("19.2.0-canary-
|
|
8488
|
+
if ("19.2.0-canary-5e0c951b-20250916" !== isomorphicReactPackageVersion)
|
|
8489
8489
|
throw Error(
|
|
8490
8490
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
8491
8491
|
(isomorphicReactPackageVersion +
|
|
8492
|
-
"\n - react-dom: 19.2.0-canary-
|
|
8492
|
+
"\n - react-dom: 19.2.0-canary-5e0c951b-20250916\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
8493
8493
|
);
|
|
8494
8494
|
}
|
|
8495
8495
|
var React = require("react"),
|
|
@@ -10183,5 +10183,5 @@
|
|
|
10183
10183
|
startWork(request);
|
|
10184
10184
|
});
|
|
10185
10185
|
};
|
|
10186
|
-
exports.version = "19.2.0-canary-
|
|
10186
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
10187
10187
|
})();
|
|
@@ -6875,12 +6875,12 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
|
6875
6875
|
}
|
|
6876
6876
|
function ensureCorrectIsomorphicReactVersion() {
|
|
6877
6877
|
var isomorphicReactPackageVersion = React.version;
|
|
6878
|
-
if ("19.2.0-canary-
|
|
6878
|
+
if ("19.2.0-canary-5e0c951b-20250916" !== isomorphicReactPackageVersion)
|
|
6879
6879
|
throw Error(
|
|
6880
6880
|
formatProdErrorMessage(
|
|
6881
6881
|
527,
|
|
6882
6882
|
isomorphicReactPackageVersion,
|
|
6883
|
-
"19.2.0-canary-
|
|
6883
|
+
"19.2.0-canary-5e0c951b-20250916"
|
|
6884
6884
|
)
|
|
6885
6885
|
);
|
|
6886
6886
|
}
|
|
@@ -7027,4 +7027,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
7027
7027
|
startWork(request);
|
|
7028
7028
|
});
|
|
7029
7029
|
};
|
|
7030
|
-
exports.version = "19.2.0-canary-
|
|
7030
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
@@ -9370,13 +9370,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
|
9370
9370
|
}
|
|
9371
9371
|
var isomorphicReactPackageVersion$jscomp$inline_764 = React.version;
|
|
9372
9372
|
if (
|
|
9373
|
-
"19.2.0-canary-
|
|
9373
|
+
"19.2.0-canary-5e0c951b-20250916" !==
|
|
9374
9374
|
isomorphicReactPackageVersion$jscomp$inline_764
|
|
9375
9375
|
)
|
|
9376
9376
|
throw Error(
|
|
9377
9377
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
9378
9378
|
(isomorphicReactPackageVersion$jscomp$inline_764 +
|
|
9379
|
-
"\n - react-dom: 19.2.0-canary-
|
|
9379
|
+
"\n - react-dom: 19.2.0-canary-5e0c951b-20250916\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
9380
9380
|
);
|
|
9381
9381
|
exports.renderToReadableStream = function (children, options) {
|
|
9382
9382
|
return new Promise(function (resolve, reject) {
|
|
@@ -9469,4 +9469,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
9469
9469
|
startWork(request$jscomp$0);
|
|
9470
9470
|
});
|
|
9471
9471
|
};
|
|
9472
|
-
exports.version = "19.2.0-canary-
|
|
9472
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
@@ -6523,13 +6523,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
|
6523
6523
|
}
|
|
6524
6524
|
var isomorphicReactPackageVersion$jscomp$inline_816 = React.version;
|
|
6525
6525
|
if (
|
|
6526
|
-
"19.2.0-canary-
|
|
6526
|
+
"19.2.0-canary-5e0c951b-20250916" !==
|
|
6527
6527
|
isomorphicReactPackageVersion$jscomp$inline_816
|
|
6528
6528
|
)
|
|
6529
6529
|
throw Error(
|
|
6530
6530
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
6531
6531
|
(isomorphicReactPackageVersion$jscomp$inline_816 +
|
|
6532
|
-
"\n - react-dom: 19.2.0-canary-
|
|
6532
|
+
"\n - react-dom: 19.2.0-canary-5e0c951b-20250916\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
6533
6533
|
);
|
|
6534
6534
|
exports.renderToReadableStream = function (children, options) {
|
|
6535
6535
|
return new Promise(function (resolve, reject) {
|
|
@@ -6620,4 +6620,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
6620
6620
|
startWork(request);
|
|
6621
6621
|
});
|
|
6622
6622
|
};
|
|
6623
|
-
exports.version = "19.2.0-canary-
|
|
6623
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
@@ -8508,11 +8508,11 @@
|
|
|
8508
8508
|
}
|
|
8509
8509
|
function ensureCorrectIsomorphicReactVersion() {
|
|
8510
8510
|
var isomorphicReactPackageVersion = React.version;
|
|
8511
|
-
if ("19.2.0-canary-
|
|
8511
|
+
if ("19.2.0-canary-5e0c951b-20250916" !== isomorphicReactPackageVersion)
|
|
8512
8512
|
throw Error(
|
|
8513
8513
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
8514
8514
|
(isomorphicReactPackageVersion +
|
|
8515
|
-
"\n - react-dom: 19.2.0-canary-
|
|
8515
|
+
"\n - react-dom: 19.2.0-canary-5e0c951b-20250916\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
8516
8516
|
);
|
|
8517
8517
|
}
|
|
8518
8518
|
var React = require("react"),
|
|
@@ -10202,5 +10202,5 @@
|
|
|
10202
10202
|
startWork(request);
|
|
10203
10203
|
});
|
|
10204
10204
|
};
|
|
10205
|
-
exports.version = "19.2.0-canary-
|
|
10205
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
10206
10206
|
})();
|
|
@@ -6973,11 +6973,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
|
6973
6973
|
}
|
|
6974
6974
|
function ensureCorrectIsomorphicReactVersion() {
|
|
6975
6975
|
var isomorphicReactPackageVersion = React.version;
|
|
6976
|
-
if ("19.2.0-canary-
|
|
6976
|
+
if ("19.2.0-canary-5e0c951b-20250916" !== isomorphicReactPackageVersion)
|
|
6977
6977
|
throw Error(
|
|
6978
6978
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
6979
6979
|
(isomorphicReactPackageVersion +
|
|
6980
|
-
"\n - react-dom: 19.2.0-canary-
|
|
6980
|
+
"\n - react-dom: 19.2.0-canary-5e0c951b-20250916\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
6981
6981
|
);
|
|
6982
6982
|
}
|
|
6983
6983
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -7123,4 +7123,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
7123
7123
|
startWork(request);
|
|
7124
7124
|
});
|
|
7125
7125
|
};
|
|
7126
|
-
exports.version = "19.2.0-canary-
|
|
7126
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
@@ -8383,11 +8383,11 @@
|
|
|
8383
8383
|
}
|
|
8384
8384
|
function ensureCorrectIsomorphicReactVersion() {
|
|
8385
8385
|
var isomorphicReactPackageVersion = React.version;
|
|
8386
|
-
if ("19.2.0-canary-
|
|
8386
|
+
if ("19.2.0-canary-5e0c951b-20250916" !== isomorphicReactPackageVersion)
|
|
8387
8387
|
throw Error(
|
|
8388
8388
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
8389
8389
|
(isomorphicReactPackageVersion +
|
|
8390
|
-
"\n - react-dom: 19.2.0-canary-
|
|
8390
|
+
"\n - react-dom: 19.2.0-canary-5e0c951b-20250916\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
8391
8391
|
);
|
|
8392
8392
|
}
|
|
8393
8393
|
function createDrainHandler(destination, request) {
|
|
@@ -10262,5 +10262,5 @@
|
|
|
10262
10262
|
startWork(request);
|
|
10263
10263
|
});
|
|
10264
10264
|
};
|
|
10265
|
-
exports.version = "19.2.0-canary-
|
|
10265
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
10266
10266
|
})();
|
|
@@ -6865,11 +6865,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
|
6865
6865
|
}
|
|
6866
6866
|
function ensureCorrectIsomorphicReactVersion() {
|
|
6867
6867
|
var isomorphicReactPackageVersion = React.version;
|
|
6868
|
-
if ("19.2.0-canary-
|
|
6868
|
+
if ("19.2.0-canary-5e0c951b-20250916" !== isomorphicReactPackageVersion)
|
|
6869
6869
|
throw Error(
|
|
6870
6870
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
6871
6871
|
(isomorphicReactPackageVersion +
|
|
6872
|
-
"\n - react-dom: 19.2.0-canary-
|
|
6872
|
+
"\n - react-dom: 19.2.0-canary-5e0c951b-20250916\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
6873
6873
|
);
|
|
6874
6874
|
}
|
|
6875
6875
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -7207,4 +7207,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
7207
7207
|
startWork(request);
|
|
7208
7208
|
});
|
|
7209
7209
|
};
|
|
7210
|
-
exports.version = "19.2.0-canary-
|
|
7210
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
@@ -416,7 +416,7 @@
|
|
|
416
416
|
exports.useFormStatus = function () {
|
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
|
418
418
|
};
|
|
419
|
-
exports.version = "19.2.0-canary-
|
|
419
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
|
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.2.0-canary-
|
|
210
|
+
exports.version = "19.2.0-canary-5e0c951b-20250916";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dom",
|
|
3
|
-
"version": "19.2.0-canary-
|
|
3
|
+
"version": "19.2.0-canary-5e0c951b-20250916",
|
|
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.27.0-canary-
|
|
20
|
+
"scheduler": "0.27.0-canary-5e0c951b-20250916"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"react": "19.2.0-canary-
|
|
23
|
+
"react": "19.2.0-canary-5e0c951b-20250916"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"LICENSE",
|