react-dom 19.2.0-canary-1bd1f01f-20251001 → 19.2.0
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 +24 -14
- package/cjs/react-dom-client.production.js +9 -9
- package/cjs/react-dom-profiling.development.js +24 -14
- package/cjs/react-dom-profiling.profiling.js +21 -10
- 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
@@ -14364,12 +14364,11 @@
|
|
14364
14364
|
case 11:
|
14365
14365
|
case 14:
|
14366
14366
|
case 15:
|
14367
|
-
|
14368
|
-
|
14369
|
-
|
14370
|
-
|
14371
|
-
|
14372
|
-
);
|
14367
|
+
commitHookEffectListUnmount(
|
14368
|
+
Insertion,
|
14369
|
+
deletedFiber,
|
14370
|
+
nearestMountedAncestor
|
14371
|
+
);
|
14373
14372
|
offscreenSubtreeWasHidden ||
|
14374
14373
|
commitHookLayoutUnmountEffects(
|
14375
14374
|
deletedFiber,
|
@@ -15678,7 +15677,10 @@
|
|
15678
15677
|
finishedWork,
|
15679
15678
|
committedLanes,
|
15680
15679
|
committedTransitions,
|
15681
|
-
0 !== (finishedWork.subtreeFlags & 10256)
|
15680
|
+
0 !== (finishedWork.subtreeFlags & 10256) ||
|
15681
|
+
(0 !== finishedWork.actualDuration &&
|
15682
|
+
(null === finishedWork.alternate ||
|
15683
|
+
finishedWork.alternate.child !== finishedWork.child)),
|
15682
15684
|
endTime
|
15683
15685
|
),
|
15684
15686
|
(finishedWork.mode & ProfileMode) === NoMode ||
|
@@ -15773,7 +15775,10 @@
|
|
15773
15775
|
) {
|
15774
15776
|
includeWorkInProgressEffects =
|
15775
15777
|
includeWorkInProgressEffects &&
|
15776
|
-
0 !== (parentFiber.subtreeFlags & 10256)
|
15778
|
+
(0 !== (parentFiber.subtreeFlags & 10256) ||
|
15779
|
+
(0 !== parentFiber.actualDuration &&
|
15780
|
+
(null === parentFiber.alternate ||
|
15781
|
+
parentFiber.alternate.child !== parentFiber.child)));
|
15777
15782
|
for (parentFiber = parentFiber.child; null !== parentFiber; ) {
|
15778
15783
|
var nextSibling = parentFiber.sibling;
|
15779
15784
|
reconnectPassiveEffects(
|
@@ -15910,7 +15915,12 @@
|
|
15910
15915
|
committedTransitions$jscomp$0,
|
15911
15916
|
endTime$jscomp$0
|
15912
15917
|
) {
|
15913
|
-
if (
|
15918
|
+
if (
|
15919
|
+
parentFiber.subtreeFlags & 10256 ||
|
15920
|
+
(0 !== parentFiber.actualDuration &&
|
15921
|
+
(null === parentFiber.alternate ||
|
15922
|
+
parentFiber.alternate.child !== parentFiber.child))
|
15923
|
+
)
|
15914
15924
|
for (var child = parentFiber.child; null !== child; ) {
|
15915
15925
|
parentFiber = child.sibling;
|
15916
15926
|
var finishedRoot = finishedRoot$jscomp$0,
|
@@ -27921,11 +27931,11 @@
|
|
27921
27931
|
};
|
27922
27932
|
(function () {
|
27923
27933
|
var isomorphicReactPackageVersion = React.version;
|
27924
|
-
if ("19.2.0
|
27934
|
+
if ("19.2.0" !== isomorphicReactPackageVersion)
|
27925
27935
|
throw Error(
|
27926
27936
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
27927
27937
|
(isomorphicReactPackageVersion +
|
27928
|
-
"\n - react-dom: 19.2.0
|
27938
|
+
"\n - react-dom: 19.2.0\nLearn more: https://react.dev/warnings/version-mismatch")
|
27929
27939
|
);
|
27930
27940
|
})();
|
27931
27941
|
("function" === typeof Map &&
|
@@ -27962,10 +27972,10 @@
|
|
27962
27972
|
!(function () {
|
27963
27973
|
var internals = {
|
27964
27974
|
bundleType: 1,
|
27965
|
-
version: "19.2.0
|
27975
|
+
version: "19.2.0",
|
27966
27976
|
rendererPackageName: "react-dom",
|
27967
27977
|
currentDispatcherRef: ReactSharedInternals,
|
27968
|
-
reconcilerVersion: "19.2.0
|
27978
|
+
reconcilerVersion: "19.2.0"
|
27969
27979
|
};
|
27970
27980
|
internals.overrideHookState = overrideHookState;
|
27971
27981
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -28103,7 +28113,7 @@
|
|
28103
28113
|
listenToAllSupportedEvents(container);
|
28104
28114
|
return new ReactDOMHydrationRoot(initialChildren);
|
28105
28115
|
};
|
28106
|
-
exports.version = "19.2.0
|
28116
|
+
exports.version = "19.2.0";
|
28107
28117
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
28108
28118
|
"function" ===
|
28109
28119
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -9269,8 +9269,7 @@ function commitDeletionEffectsOnFiber(
|
|
9269
9269
|
case 11:
|
9270
9270
|
case 14:
|
9271
9271
|
case 15:
|
9272
|
-
|
9273
|
-
commitHookEffectListUnmount(2, deletedFiber, nearestMountedAncestor);
|
9272
|
+
commitHookEffectListUnmount(2, deletedFiber, nearestMountedAncestor);
|
9274
9273
|
offscreenSubtreeWasHidden ||
|
9275
9274
|
commitHookEffectListUnmount(4, deletedFiber, nearestMountedAncestor);
|
9276
9275
|
recursivelyTraverseDeletionEffects(
|
@@ -10224,7 +10223,7 @@ function commitPassiveMountOnFiber(
|
|
10224
10223
|
finishedWork,
|
10225
10224
|
committedLanes,
|
10226
10225
|
committedTransitions,
|
10227
|
-
0 !== (finishedWork.subtreeFlags & 10256)
|
10226
|
+
0 !== (finishedWork.subtreeFlags & 10256) || !1
|
10228
10227
|
));
|
10229
10228
|
flags & 2048 && commitOffscreenPassiveMountEffects(id, finishedWork);
|
10230
10229
|
break;
|
@@ -10255,7 +10254,8 @@ function recursivelyTraverseReconnectPassiveEffects(
|
|
10255
10254
|
includeWorkInProgressEffects
|
10256
10255
|
) {
|
10257
10256
|
includeWorkInProgressEffects =
|
10258
|
-
includeWorkInProgressEffects &&
|
10257
|
+
includeWorkInProgressEffects &&
|
10258
|
+
(0 !== (parentFiber.subtreeFlags & 10256) || !1);
|
10259
10259
|
for (parentFiber = parentFiber.child; null !== parentFiber; ) {
|
10260
10260
|
var finishedRoot = finishedRoot$jscomp$0,
|
10261
10261
|
finishedWork = parentFiber,
|
@@ -15916,14 +15916,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15916
15916
|
};
|
15917
15917
|
var isomorphicReactPackageVersion$jscomp$inline_1840 = React.version;
|
15918
15918
|
if (
|
15919
|
-
"19.2.0
|
15919
|
+
"19.2.0" !==
|
15920
15920
|
isomorphicReactPackageVersion$jscomp$inline_1840
|
15921
15921
|
)
|
15922
15922
|
throw Error(
|
15923
15923
|
formatProdErrorMessage(
|
15924
15924
|
527,
|
15925
15925
|
isomorphicReactPackageVersion$jscomp$inline_1840,
|
15926
|
-
"19.2.0
|
15926
|
+
"19.2.0"
|
15927
15927
|
)
|
15928
15928
|
);
|
15929
15929
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15945,10 +15945,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15945
15945
|
};
|
15946
15946
|
var internals$jscomp$inline_2347 = {
|
15947
15947
|
bundleType: 0,
|
15948
|
-
version: "19.2.0
|
15948
|
+
version: "19.2.0",
|
15949
15949
|
rendererPackageName: "react-dom",
|
15950
15950
|
currentDispatcherRef: ReactSharedInternals,
|
15951
|
-
reconcilerVersion: "19.2.0
|
15951
|
+
reconcilerVersion: "19.2.0"
|
15952
15952
|
};
|
15953
15953
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15954
15954
|
var hook$jscomp$inline_2348 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
@@ -16046,4 +16046,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
16046
16046
|
listenToAllSupportedEvents(container);
|
16047
16047
|
return new ReactDOMHydrationRoot(initialChildren);
|
16048
16048
|
};
|
16049
|
-
exports.version = "19.2.0
|
16049
|
+
exports.version = "19.2.0";
|
@@ -14372,12 +14372,11 @@
|
|
14372
14372
|
case 11:
|
14373
14373
|
case 14:
|
14374
14374
|
case 15:
|
14375
|
-
|
14376
|
-
|
14377
|
-
|
14378
|
-
|
14379
|
-
|
14380
|
-
);
|
14375
|
+
commitHookEffectListUnmount(
|
14376
|
+
Insertion,
|
14377
|
+
deletedFiber,
|
14378
|
+
nearestMountedAncestor
|
14379
|
+
);
|
14381
14380
|
offscreenSubtreeWasHidden ||
|
14382
14381
|
commitHookLayoutUnmountEffects(
|
14383
14382
|
deletedFiber,
|
@@ -15686,7 +15685,10 @@
|
|
15686
15685
|
finishedWork,
|
15687
15686
|
committedLanes,
|
15688
15687
|
committedTransitions,
|
15689
|
-
0 !== (finishedWork.subtreeFlags & 10256)
|
15688
|
+
0 !== (finishedWork.subtreeFlags & 10256) ||
|
15689
|
+
(0 !== finishedWork.actualDuration &&
|
15690
|
+
(null === finishedWork.alternate ||
|
15691
|
+
finishedWork.alternate.child !== finishedWork.child)),
|
15690
15692
|
endTime
|
15691
15693
|
),
|
15692
15694
|
(finishedWork.mode & ProfileMode) === NoMode ||
|
@@ -15781,7 +15783,10 @@
|
|
15781
15783
|
) {
|
15782
15784
|
includeWorkInProgressEffects =
|
15783
15785
|
includeWorkInProgressEffects &&
|
15784
|
-
0 !== (parentFiber.subtreeFlags & 10256)
|
15786
|
+
(0 !== (parentFiber.subtreeFlags & 10256) ||
|
15787
|
+
(0 !== parentFiber.actualDuration &&
|
15788
|
+
(null === parentFiber.alternate ||
|
15789
|
+
parentFiber.alternate.child !== parentFiber.child)));
|
15785
15790
|
for (parentFiber = parentFiber.child; null !== parentFiber; ) {
|
15786
15791
|
var nextSibling = parentFiber.sibling;
|
15787
15792
|
reconnectPassiveEffects(
|
@@ -15918,7 +15923,12 @@
|
|
15918
15923
|
committedTransitions$jscomp$0,
|
15919
15924
|
endTime$jscomp$0
|
15920
15925
|
) {
|
15921
|
-
if (
|
15926
|
+
if (
|
15927
|
+
parentFiber.subtreeFlags & 10256 ||
|
15928
|
+
(0 !== parentFiber.actualDuration &&
|
15929
|
+
(null === parentFiber.alternate ||
|
15930
|
+
parentFiber.alternate.child !== parentFiber.child))
|
15931
|
+
)
|
15922
15932
|
for (var child = parentFiber.child; null !== child; ) {
|
15923
15933
|
parentFiber = child.sibling;
|
15924
15934
|
var finishedRoot = finishedRoot$jscomp$0,
|
@@ -27973,11 +27983,11 @@
|
|
27973
27983
|
};
|
27974
27984
|
(function () {
|
27975
27985
|
var isomorphicReactPackageVersion = React.version;
|
27976
|
-
if ("19.2.0
|
27986
|
+
if ("19.2.0" !== isomorphicReactPackageVersion)
|
27977
27987
|
throw Error(
|
27978
27988
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
27979
27989
|
(isomorphicReactPackageVersion +
|
27980
|
-
"\n - react-dom: 19.2.0
|
27990
|
+
"\n - react-dom: 19.2.0\nLearn more: https://react.dev/warnings/version-mismatch")
|
27981
27991
|
);
|
27982
27992
|
})();
|
27983
27993
|
("function" === typeof Map &&
|
@@ -28014,10 +28024,10 @@
|
|
28014
28024
|
!(function () {
|
28015
28025
|
var internals = {
|
28016
28026
|
bundleType: 1,
|
28017
|
-
version: "19.2.0
|
28027
|
+
version: "19.2.0",
|
28018
28028
|
rendererPackageName: "react-dom",
|
28019
28029
|
currentDispatcherRef: ReactSharedInternals,
|
28020
|
-
reconcilerVersion: "19.2.0
|
28030
|
+
reconcilerVersion: "19.2.0"
|
28021
28031
|
};
|
28022
28032
|
internals.overrideHookState = overrideHookState;
|
28023
28033
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -28485,7 +28495,7 @@
|
|
28485
28495
|
exports.useFormStatus = function () {
|
28486
28496
|
return resolveDispatcher().useHostTransitionStatus();
|
28487
28497
|
};
|
28488
|
-
exports.version = "19.2.0
|
28498
|
+
exports.version = "19.2.0";
|
28489
28499
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
28490
28500
|
"function" ===
|
28491
28501
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -10046,8 +10046,7 @@ function commitDeletionEffectsOnFiber(
|
|
10046
10046
|
case 11:
|
10047
10047
|
case 14:
|
10048
10048
|
case 15:
|
10049
|
-
|
10050
|
-
commitHookEffectListUnmount(2, deletedFiber, nearestMountedAncestor);
|
10049
|
+
commitHookEffectListUnmount(2, deletedFiber, nearestMountedAncestor);
|
10051
10050
|
offscreenSubtreeWasHidden ||
|
10052
10051
|
commitHookLayoutUnmountEffects(deletedFiber, nearestMountedAncestor, 4);
|
10053
10052
|
recursivelyTraverseDeletionEffects(
|
@@ -11269,7 +11268,10 @@ function commitPassiveMountOnFiber(
|
|
11269
11268
|
finishedWork,
|
11270
11269
|
committedLanes,
|
11271
11270
|
committedTransitions,
|
11272
|
-
0 !== (finishedWork.subtreeFlags & 10256)
|
11271
|
+
0 !== (finishedWork.subtreeFlags & 10256) ||
|
11272
|
+
(0 !== finishedWork.actualDuration &&
|
11273
|
+
(null === finishedWork.alternate ||
|
11274
|
+
finishedWork.alternate.child !== finishedWork.child)),
|
11273
11275
|
endTime
|
11274
11276
|
),
|
11275
11277
|
0 === (finishedWork.mode & 2) ||
|
@@ -11357,7 +11359,11 @@ function recursivelyTraverseReconnectPassiveEffects(
|
|
11357
11359
|
endTime$jscomp$0
|
11358
11360
|
) {
|
11359
11361
|
includeWorkInProgressEffects =
|
11360
|
-
includeWorkInProgressEffects &&
|
11362
|
+
includeWorkInProgressEffects &&
|
11363
|
+
(0 !== (parentFiber.subtreeFlags & 10256) ||
|
11364
|
+
(0 !== parentFiber.actualDuration &&
|
11365
|
+
(null === parentFiber.alternate ||
|
11366
|
+
parentFiber.alternate.child !== parentFiber.child)));
|
11361
11367
|
for (var child = parentFiber.child; null !== child; ) {
|
11362
11368
|
parentFiber = child.sibling;
|
11363
11369
|
var finishedRoot = finishedRoot$jscomp$0,
|
@@ -11476,7 +11482,12 @@ function recursivelyTraverseAtomicPassiveEffects(
|
|
11476
11482
|
committedTransitions$jscomp$0,
|
11477
11483
|
endTime$jscomp$0
|
11478
11484
|
) {
|
11479
|
-
if (
|
11485
|
+
if (
|
11486
|
+
parentFiber.subtreeFlags & 10256 ||
|
11487
|
+
(0 !== parentFiber.actualDuration &&
|
11488
|
+
(null === parentFiber.alternate ||
|
11489
|
+
parentFiber.alternate.child !== parentFiber.child))
|
11490
|
+
)
|
11480
11491
|
for (var child = parentFiber.child; null !== child; ) {
|
11481
11492
|
parentFiber = child.sibling;
|
11482
11493
|
var finishedRoot = finishedRoot$jscomp$0,
|
@@ -17759,14 +17770,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
17759
17770
|
};
|
17760
17771
|
var isomorphicReactPackageVersion$jscomp$inline_2138 = React.version;
|
17761
17772
|
if (
|
17762
|
-
"19.2.0
|
17773
|
+
"19.2.0" !==
|
17763
17774
|
isomorphicReactPackageVersion$jscomp$inline_2138
|
17764
17775
|
)
|
17765
17776
|
throw Error(
|
17766
17777
|
formatProdErrorMessage(
|
17767
17778
|
527,
|
17768
17779
|
isomorphicReactPackageVersion$jscomp$inline_2138,
|
17769
|
-
"19.2.0
|
17780
|
+
"19.2.0"
|
17770
17781
|
)
|
17771
17782
|
);
|
17772
17783
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -17788,10 +17799,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
17788
17799
|
};
|
17789
17800
|
var internals$jscomp$inline_2658 = {
|
17790
17801
|
bundleType: 0,
|
17791
|
-
version: "19.2.0
|
17802
|
+
version: "19.2.0",
|
17792
17803
|
rendererPackageName: "react-dom",
|
17793
17804
|
currentDispatcherRef: ReactSharedInternals,
|
17794
|
-
reconcilerVersion: "19.2.0
|
17805
|
+
reconcilerVersion: "19.2.0"
|
17795
17806
|
};
|
17796
17807
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
17797
17808
|
var hook$jscomp$inline_2659 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
@@ -18050,7 +18061,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
18050
18061
|
exports.useFormStatus = function () {
|
18051
18062
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
18052
18063
|
};
|
18053
|
-
exports.version = "19.2.0
|
18064
|
+
exports.version = "19.2.0";
|
18054
18065
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
18055
18066
|
"function" ===
|
18056
18067
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -9873,5 +9873,5 @@
|
|
9873
9873
|
'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'
|
9874
9874
|
);
|
9875
9875
|
};
|
9876
|
-
exports.version = "19.2.0
|
9876
|
+
exports.version = "19.2.0";
|
9877
9877
|
})();
|
@@ -6600,4 +6600,4 @@ exports.renderToString = function (children, options) {
|
|
6600
6600
|
'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'
|
6601
6601
|
);
|
6602
6602
|
};
|
6603
|
-
exports.version = "19.2.0
|
6603
|
+
exports.version = "19.2.0";
|
@@ -9873,5 +9873,5 @@
|
|
9873
9873
|
'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'
|
9874
9874
|
);
|
9875
9875
|
};
|
9876
|
-
exports.version = "19.2.0
|
9876
|
+
exports.version = "19.2.0";
|
9877
9877
|
})();
|
@@ -6689,4 +6689,4 @@ exports.renderToString = function (children, options) {
|
|
6689
6689
|
'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'
|
6690
6690
|
);
|
6691
6691
|
};
|
6692
|
-
exports.version = "19.2.0
|
6692
|
+
exports.version = "19.2.0";
|
@@ -8784,11 +8784,11 @@
|
|
8784
8784
|
}
|
8785
8785
|
function ensureCorrectIsomorphicReactVersion() {
|
8786
8786
|
var isomorphicReactPackageVersion = React.version;
|
8787
|
-
if ("19.2.0
|
8787
|
+
if ("19.2.0" !== isomorphicReactPackageVersion)
|
8788
8788
|
throw Error(
|
8789
8789
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8790
8790
|
(isomorphicReactPackageVersion +
|
8791
|
-
"\n - react-dom: 19.2.0
|
8791
|
+
"\n - react-dom: 19.2.0\nLearn more: https://react.dev/warnings/version-mismatch")
|
8792
8792
|
);
|
8793
8793
|
}
|
8794
8794
|
var React = require("react"),
|
@@ -10597,5 +10597,5 @@
|
|
10597
10597
|
startWork(request);
|
10598
10598
|
});
|
10599
10599
|
};
|
10600
|
-
exports.version = "19.2.0
|
10600
|
+
exports.version = "19.2.0";
|
10601
10601
|
})();
|
@@ -7147,12 +7147,12 @@ function getPostponedState(request) {
|
|
7147
7147
|
}
|
7148
7148
|
function ensureCorrectIsomorphicReactVersion() {
|
7149
7149
|
var isomorphicReactPackageVersion = React.version;
|
7150
|
-
if ("19.2.0
|
7150
|
+
if ("19.2.0" !== isomorphicReactPackageVersion)
|
7151
7151
|
throw Error(
|
7152
7152
|
formatProdErrorMessage(
|
7153
7153
|
527,
|
7154
7154
|
isomorphicReactPackageVersion,
|
7155
|
-
"19.2.0
|
7155
|
+
"19.2.0"
|
7156
7156
|
)
|
7157
7157
|
);
|
7158
7158
|
}
|
@@ -7407,4 +7407,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
|
|
7407
7407
|
startWork(request);
|
7408
7408
|
});
|
7409
7409
|
};
|
7410
|
-
exports.version = "19.2.0
|
7410
|
+
exports.version = "19.2.0";
|
@@ -9503,13 +9503,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
9503
9503
|
}
|
9504
9504
|
var isomorphicReactPackageVersion$jscomp$inline_766 = React.version;
|
9505
9505
|
if (
|
9506
|
-
"19.2.0
|
9506
|
+
"19.2.0" !==
|
9507
9507
|
isomorphicReactPackageVersion$jscomp$inline_766
|
9508
9508
|
)
|
9509
9509
|
throw Error(
|
9510
9510
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
9511
9511
|
(isomorphicReactPackageVersion$jscomp$inline_766 +
|
9512
|
-
"\n - react-dom: 19.2.0
|
9512
|
+
"\n - react-dom: 19.2.0\nLearn more: https://react.dev/warnings/version-mismatch")
|
9513
9513
|
);
|
9514
9514
|
exports.renderToReadableStream = function (children, options) {
|
9515
9515
|
return new Promise(function (resolve, reject) {
|
@@ -9602,4 +9602,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
9602
9602
|
startWork(request$jscomp$0);
|
9603
9603
|
});
|
9604
9604
|
};
|
9605
|
-
exports.version = "19.2.0
|
9605
|
+
exports.version = "19.2.0";
|
@@ -6645,13 +6645,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6645
6645
|
}
|
6646
6646
|
var isomorphicReactPackageVersion$jscomp$inline_821 = React.version;
|
6647
6647
|
if (
|
6648
|
-
"19.2.0
|
6648
|
+
"19.2.0" !==
|
6649
6649
|
isomorphicReactPackageVersion$jscomp$inline_821
|
6650
6650
|
)
|
6651
6651
|
throw Error(
|
6652
6652
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6653
6653
|
(isomorphicReactPackageVersion$jscomp$inline_821 +
|
6654
|
-
"\n - react-dom: 19.2.0
|
6654
|
+
"\n - react-dom: 19.2.0\nLearn more: https://react.dev/warnings/version-mismatch")
|
6655
6655
|
);
|
6656
6656
|
exports.renderToReadableStream = function (children, options) {
|
6657
6657
|
return new Promise(function (resolve, reject) {
|
@@ -6742,4 +6742,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6742
6742
|
startWork(request);
|
6743
6743
|
});
|
6744
6744
|
};
|
6745
|
-
exports.version = "19.2.0
|
6745
|
+
exports.version = "19.2.0";
|
@@ -8807,11 +8807,11 @@
|
|
8807
8807
|
}
|
8808
8808
|
function ensureCorrectIsomorphicReactVersion() {
|
8809
8809
|
var isomorphicReactPackageVersion = React.version;
|
8810
|
-
if ("19.2.0
|
8810
|
+
if ("19.2.0" !== isomorphicReactPackageVersion)
|
8811
8811
|
throw Error(
|
8812
8812
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8813
8813
|
(isomorphicReactPackageVersion +
|
8814
|
-
"\n - react-dom: 19.2.0
|
8814
|
+
"\n - react-dom: 19.2.0\nLearn more: https://react.dev/warnings/version-mismatch")
|
8815
8815
|
);
|
8816
8816
|
}
|
8817
8817
|
var React = require("react"),
|
@@ -10616,5 +10616,5 @@
|
|
10616
10616
|
startWork(request);
|
10617
10617
|
});
|
10618
10618
|
};
|
10619
|
-
exports.version = "19.2.0
|
10619
|
+
exports.version = "19.2.0";
|
10620
10620
|
})();
|
@@ -7251,11 +7251,11 @@ function getPostponedState(request) {
|
|
7251
7251
|
}
|
7252
7252
|
function ensureCorrectIsomorphicReactVersion() {
|
7253
7253
|
var isomorphicReactPackageVersion = React.version;
|
7254
|
-
if ("19.2.0
|
7254
|
+
if ("19.2.0" !== isomorphicReactPackageVersion)
|
7255
7255
|
throw Error(
|
7256
7256
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7257
7257
|
(isomorphicReactPackageVersion +
|
7258
|
-
"\n - react-dom: 19.2.0
|
7258
|
+
"\n - react-dom: 19.2.0\nLearn more: https://react.dev/warnings/version-mismatch")
|
7259
7259
|
);
|
7260
7260
|
}
|
7261
7261
|
ensureCorrectIsomorphicReactVersion();
|
@@ -7509,4 +7509,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
|
|
7509
7509
|
startWork(request);
|
7510
7510
|
});
|
7511
7511
|
};
|
7512
|
-
exports.version = "19.2.0
|
7512
|
+
exports.version = "19.2.0";
|
@@ -8681,11 +8681,11 @@
|
|
8681
8681
|
}
|
8682
8682
|
function ensureCorrectIsomorphicReactVersion() {
|
8683
8683
|
var isomorphicReactPackageVersion = React.version;
|
8684
|
-
if ("19.2.0
|
8684
|
+
if ("19.2.0" !== isomorphicReactPackageVersion)
|
8685
8685
|
throw Error(
|
8686
8686
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8687
8687
|
(isomorphicReactPackageVersion +
|
8688
|
-
"\n - react-dom: 19.2.0
|
8688
|
+
"\n - react-dom: 19.2.0\nLearn more: https://react.dev/warnings/version-mismatch")
|
8689
8689
|
);
|
8690
8690
|
}
|
8691
8691
|
function createDrainHandler(destination, request) {
|
@@ -10798,5 +10798,5 @@
|
|
10798
10798
|
}
|
10799
10799
|
};
|
10800
10800
|
};
|
10801
|
-
exports.version = "19.2.0
|
10801
|
+
exports.version = "19.2.0";
|
10802
10802
|
})();
|
@@ -7142,11 +7142,11 @@ function getPostponedState(request) {
|
|
7142
7142
|
}
|
7143
7143
|
function ensureCorrectIsomorphicReactVersion() {
|
7144
7144
|
var isomorphicReactPackageVersion = React.version;
|
7145
|
-
if ("19.2.0
|
7145
|
+
if ("19.2.0" !== isomorphicReactPackageVersion)
|
7146
7146
|
throw Error(
|
7147
7147
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7148
7148
|
(isomorphicReactPackageVersion +
|
7149
|
-
"\n - react-dom: 19.2.0
|
7149
|
+
"\n - react-dom: 19.2.0\nLearn more: https://react.dev/warnings/version-mismatch")
|
7150
7150
|
);
|
7151
7151
|
}
|
7152
7152
|
ensureCorrectIsomorphicReactVersion();
|
@@ -7704,4 +7704,4 @@ exports.resumeToPipeableStream = function (children, postponedState, options) {
|
|
7704
7704
|
}
|
7705
7705
|
};
|
7706
7706
|
};
|
7707
|
-
exports.version = "19.2.0
|
7707
|
+
exports.version = "19.2.0";
|
@@ -416,7 +416,7 @@
|
|
416
416
|
exports.useFormStatus = function () {
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
418
418
|
};
|
419
|
-
exports.version = "19.2.0
|
419
|
+
exports.version = "19.2.0";
|
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
|
210
|
+
exports.version = "19.2.0";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-dom",
|
3
|
-
"version": "19.2.0
|
3
|
+
"version": "19.2.0",
|
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
|
20
|
+
"scheduler": "^0.27.0"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"react": "19.2.0
|
23
|
+
"react": "^19.2.0"
|
24
24
|
},
|
25
25
|
"files": [
|
26
26
|
"LICENSE",
|