react-dom 19.2.0-canary-83c88ad4-20250923 → 19.2.0-canary-e2332183-20250924
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 +8 -8
- package/cjs/react-dom-client.production.js +8 -8
- package/cjs/react-dom-profiling.development.js +8 -8
- package/cjs/react-dom-profiling.profiling.js +8 -8
- 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
|
@@ -7293,7 +7293,7 @@
|
|
|
7293
7293
|
throw Error(
|
|
7294
7294
|
"Expected a work-in-progress root. This is a bug in React. Please file an issue."
|
|
7295
7295
|
);
|
|
7296
|
-
0 !== (workInProgressRootRenderLanes &
|
|
7296
|
+
0 !== (workInProgressRootRenderLanes & 127) ||
|
|
7297
7297
|
pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot);
|
|
7298
7298
|
}
|
|
7299
7299
|
hook.memoizedState = nextSnapshot;
|
|
@@ -7376,7 +7376,7 @@
|
|
|
7376
7376
|
"Expected a work-in-progress root. This is a bug in React. Please file an issue."
|
|
7377
7377
|
);
|
|
7378
7378
|
isHydrating$jscomp$0 ||
|
|
7379
|
-
0 !== (renderLanes &
|
|
7379
|
+
0 !== (renderLanes & 127) ||
|
|
7380
7380
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
|
7381
7381
|
}
|
|
7382
7382
|
return getServerSnapshot;
|
|
@@ -15059,7 +15059,7 @@
|
|
|
15059
15059
|
throw Error("Should not already be working.");
|
|
15060
15060
|
var shouldTimeSlice =
|
|
15061
15061
|
(!forceSync &&
|
|
15062
|
-
0 === (lanes &
|
|
15062
|
+
0 === (lanes & 127) &&
|
|
15063
15063
|
0 === (lanes & root.expiredLanes)) ||
|
|
15064
15064
|
checkIfRootIsPrerendering(root, lanes),
|
|
15065
15065
|
exitStatus = shouldTimeSlice
|
|
@@ -25759,11 +25759,11 @@
|
|
|
25759
25759
|
};
|
|
25760
25760
|
(function () {
|
|
25761
25761
|
var isomorphicReactPackageVersion = React.version;
|
|
25762
|
-
if ("19.2.0-canary-
|
|
25762
|
+
if ("19.2.0-canary-e2332183-20250924" !== isomorphicReactPackageVersion)
|
|
25763
25763
|
throw Error(
|
|
25764
25764
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
25765
25765
|
(isomorphicReactPackageVersion +
|
|
25766
|
-
"\n - react-dom: 19.2.0-canary-
|
|
25766
|
+
"\n - react-dom: 19.2.0-canary-e2332183-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
25767
25767
|
);
|
|
25768
25768
|
})();
|
|
25769
25769
|
("function" === typeof Map &&
|
|
@@ -25800,10 +25800,10 @@
|
|
|
25800
25800
|
!(function () {
|
|
25801
25801
|
var internals = {
|
|
25802
25802
|
bundleType: 1,
|
|
25803
|
-
version: "19.2.0-canary-
|
|
25803
|
+
version: "19.2.0-canary-e2332183-20250924",
|
|
25804
25804
|
rendererPackageName: "react-dom",
|
|
25805
25805
|
currentDispatcherRef: ReactSharedInternals,
|
|
25806
|
-
reconcilerVersion: "19.2.0-canary-
|
|
25806
|
+
reconcilerVersion: "19.2.0-canary-e2332183-20250924"
|
|
25807
25807
|
};
|
|
25808
25808
|
internals.overrideHookState = overrideHookState;
|
|
25809
25809
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
|
@@ -25941,7 +25941,7 @@
|
|
|
25941
25941
|
listenToAllSupportedEvents(container);
|
|
25942
25942
|
return new ReactDOMHydrationRoot(initialChildren);
|
|
25943
25943
|
};
|
|
25944
|
-
exports.version = "19.2.0-canary-
|
|
25944
|
+
exports.version = "19.2.0-canary-e2332183-20250924";
|
|
25945
25945
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
25946
25946
|
"function" ===
|
|
25947
25947
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -4720,7 +4720,7 @@ function updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
|
|
4720
4720
|
);
|
|
4721
4721
|
if (null === workInProgressRoot) throw Error(formatProdErrorMessage(349));
|
|
4722
4722
|
isHydrating$jscomp$0 ||
|
|
4723
|
-
0 !== (renderLanes &
|
|
4723
|
+
0 !== (renderLanes & 127) ||
|
|
4724
4724
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
|
4725
4725
|
}
|
|
4726
4726
|
return getServerSnapshot;
|
|
@@ -5573,7 +5573,7 @@ var ContextOnlyDispatcher = {
|
|
|
5573
5573
|
getServerSnapshot = getSnapshot();
|
|
5574
5574
|
if (null === workInProgressRoot)
|
|
5575
5575
|
throw Error(formatProdErrorMessage(349));
|
|
5576
|
-
0 !== (workInProgressRootRenderLanes &
|
|
5576
|
+
0 !== (workInProgressRootRenderLanes & 127) ||
|
|
5577
5577
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
|
5578
5578
|
}
|
|
5579
5579
|
hook.memoizedState = getServerSnapshot;
|
|
@@ -10630,7 +10630,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
|
10630
10630
|
if (0 !== (executionContext & 6)) throw Error(formatProdErrorMessage(327));
|
|
10631
10631
|
var shouldTimeSlice =
|
|
10632
10632
|
(!forceSync &&
|
|
10633
|
-
0 === (lanes &
|
|
10633
|
+
0 === (lanes & 127) &&
|
|
10634
10634
|
0 === (lanes & root$jscomp$0.expiredLanes)) ||
|
|
10635
10635
|
checkIfRootIsPrerendering(root$jscomp$0, lanes),
|
|
10636
10636
|
exitStatus = shouldTimeSlice
|
|
@@ -15864,14 +15864,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
|
15864
15864
|
};
|
|
15865
15865
|
var isomorphicReactPackageVersion$jscomp$inline_1833 = React.version;
|
|
15866
15866
|
if (
|
|
15867
|
-
"19.2.0-canary-
|
|
15867
|
+
"19.2.0-canary-e2332183-20250924" !==
|
|
15868
15868
|
isomorphicReactPackageVersion$jscomp$inline_1833
|
|
15869
15869
|
)
|
|
15870
15870
|
throw Error(
|
|
15871
15871
|
formatProdErrorMessage(
|
|
15872
15872
|
527,
|
|
15873
15873
|
isomorphicReactPackageVersion$jscomp$inline_1833,
|
|
15874
|
-
"19.2.0-canary-
|
|
15874
|
+
"19.2.0-canary-e2332183-20250924"
|
|
15875
15875
|
)
|
|
15876
15876
|
);
|
|
15877
15877
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
@@ -15893,10 +15893,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
|
15893
15893
|
};
|
|
15894
15894
|
var internals$jscomp$inline_2336 = {
|
|
15895
15895
|
bundleType: 0,
|
|
15896
|
-
version: "19.2.0-canary-
|
|
15896
|
+
version: "19.2.0-canary-e2332183-20250924",
|
|
15897
15897
|
rendererPackageName: "react-dom",
|
|
15898
15898
|
currentDispatcherRef: ReactSharedInternals,
|
|
15899
|
-
reconcilerVersion: "19.2.0-canary-
|
|
15899
|
+
reconcilerVersion: "19.2.0-canary-e2332183-20250924"
|
|
15900
15900
|
};
|
|
15901
15901
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
|
15902
15902
|
var hook$jscomp$inline_2337 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
|
@@ -15994,4 +15994,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
|
15994
15994
|
listenToAllSupportedEvents(container);
|
|
15995
15995
|
return new ReactDOMHydrationRoot(initialChildren);
|
|
15996
15996
|
};
|
|
15997
|
-
exports.version = "19.2.0-canary-
|
|
15997
|
+
exports.version = "19.2.0-canary-e2332183-20250924";
|
|
@@ -7301,7 +7301,7 @@
|
|
|
7301
7301
|
throw Error(
|
|
7302
7302
|
"Expected a work-in-progress root. This is a bug in React. Please file an issue."
|
|
7303
7303
|
);
|
|
7304
|
-
0 !== (workInProgressRootRenderLanes &
|
|
7304
|
+
0 !== (workInProgressRootRenderLanes & 127) ||
|
|
7305
7305
|
pushStoreConsistencyCheck(fiber, getSnapshot, nextSnapshot);
|
|
7306
7306
|
}
|
|
7307
7307
|
hook.memoizedState = nextSnapshot;
|
|
@@ -7384,7 +7384,7 @@
|
|
|
7384
7384
|
"Expected a work-in-progress root. This is a bug in React. Please file an issue."
|
|
7385
7385
|
);
|
|
7386
7386
|
isHydrating$jscomp$0 ||
|
|
7387
|
-
0 !== (renderLanes &
|
|
7387
|
+
0 !== (renderLanes & 127) ||
|
|
7388
7388
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
|
7389
7389
|
}
|
|
7390
7390
|
return getServerSnapshot;
|
|
@@ -15067,7 +15067,7 @@
|
|
|
15067
15067
|
throw Error("Should not already be working.");
|
|
15068
15068
|
var shouldTimeSlice =
|
|
15069
15069
|
(!forceSync &&
|
|
15070
|
-
0 === (lanes &
|
|
15070
|
+
0 === (lanes & 127) &&
|
|
15071
15071
|
0 === (lanes & root.expiredLanes)) ||
|
|
15072
15072
|
checkIfRootIsPrerendering(root, lanes),
|
|
15073
15073
|
exitStatus = shouldTimeSlice
|
|
@@ -25811,11 +25811,11 @@
|
|
|
25811
25811
|
};
|
|
25812
25812
|
(function () {
|
|
25813
25813
|
var isomorphicReactPackageVersion = React.version;
|
|
25814
|
-
if ("19.2.0-canary-
|
|
25814
|
+
if ("19.2.0-canary-e2332183-20250924" !== isomorphicReactPackageVersion)
|
|
25815
25815
|
throw Error(
|
|
25816
25816
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
25817
25817
|
(isomorphicReactPackageVersion +
|
|
25818
|
-
"\n - react-dom: 19.2.0-canary-
|
|
25818
|
+
"\n - react-dom: 19.2.0-canary-e2332183-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
25819
25819
|
);
|
|
25820
25820
|
})();
|
|
25821
25821
|
("function" === typeof Map &&
|
|
@@ -25852,10 +25852,10 @@
|
|
|
25852
25852
|
!(function () {
|
|
25853
25853
|
var internals = {
|
|
25854
25854
|
bundleType: 1,
|
|
25855
|
-
version: "19.2.0-canary-
|
|
25855
|
+
version: "19.2.0-canary-e2332183-20250924",
|
|
25856
25856
|
rendererPackageName: "react-dom",
|
|
25857
25857
|
currentDispatcherRef: ReactSharedInternals,
|
|
25858
|
-
reconcilerVersion: "19.2.0-canary-
|
|
25858
|
+
reconcilerVersion: "19.2.0-canary-e2332183-20250924"
|
|
25859
25859
|
};
|
|
25860
25860
|
internals.overrideHookState = overrideHookState;
|
|
25861
25861
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
|
@@ -26323,7 +26323,7 @@
|
|
|
26323
26323
|
exports.useFormStatus = function () {
|
|
26324
26324
|
return resolveDispatcher().useHostTransitionStatus();
|
|
26325
26325
|
};
|
|
26326
|
-
exports.version = "19.2.0-canary-
|
|
26326
|
+
exports.version = "19.2.0-canary-e2332183-20250924";
|
|
26327
26327
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
26328
26328
|
"function" ===
|
|
26329
26329
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
|
@@ -4879,7 +4879,7 @@ function updateSyncExternalStore(subscribe, getSnapshot, getServerSnapshot) {
|
|
|
4879
4879
|
);
|
|
4880
4880
|
if (null === workInProgressRoot) throw Error(formatProdErrorMessage(349));
|
|
4881
4881
|
isHydrating$jscomp$0 ||
|
|
4882
|
-
0 !== (renderLanes &
|
|
4882
|
+
0 !== (renderLanes & 127) ||
|
|
4883
4883
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
|
4884
4884
|
}
|
|
4885
4885
|
return getServerSnapshot;
|
|
@@ -5735,7 +5735,7 @@ var ContextOnlyDispatcher = {
|
|
|
5735
5735
|
getServerSnapshot = getSnapshot();
|
|
5736
5736
|
if (null === workInProgressRoot)
|
|
5737
5737
|
throw Error(formatProdErrorMessage(349));
|
|
5738
|
-
0 !== (workInProgressRootRenderLanes &
|
|
5738
|
+
0 !== (workInProgressRootRenderLanes & 127) ||
|
|
5739
5739
|
pushStoreConsistencyCheck(fiber, getSnapshot, getServerSnapshot);
|
|
5740
5740
|
}
|
|
5741
5741
|
hook.memoizedState = getServerSnapshot;
|
|
@@ -11170,7 +11170,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
|
|
11170
11170
|
if (0 !== (executionContext & 6)) throw Error(formatProdErrorMessage(327));
|
|
11171
11171
|
var shouldTimeSlice =
|
|
11172
11172
|
(!forceSync &&
|
|
11173
|
-
0 === (lanes &
|
|
11173
|
+
0 === (lanes & 127) &&
|
|
11174
11174
|
0 === (lanes & root$jscomp$0.expiredLanes)) ||
|
|
11175
11175
|
checkIfRootIsPrerendering(root$jscomp$0, lanes),
|
|
11176
11176
|
exitStatus = shouldTimeSlice
|
|
@@ -16573,14 +16573,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
|
16573
16573
|
};
|
|
16574
16574
|
var isomorphicReactPackageVersion$jscomp$inline_1937 = React.version;
|
|
16575
16575
|
if (
|
|
16576
|
-
"19.2.0-canary-
|
|
16576
|
+
"19.2.0-canary-e2332183-20250924" !==
|
|
16577
16577
|
isomorphicReactPackageVersion$jscomp$inline_1937
|
|
16578
16578
|
)
|
|
16579
16579
|
throw Error(
|
|
16580
16580
|
formatProdErrorMessage(
|
|
16581
16581
|
527,
|
|
16582
16582
|
isomorphicReactPackageVersion$jscomp$inline_1937,
|
|
16583
|
-
"19.2.0-canary-
|
|
16583
|
+
"19.2.0-canary-e2332183-20250924"
|
|
16584
16584
|
)
|
|
16585
16585
|
);
|
|
16586
16586
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
@@ -16602,10 +16602,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
|
16602
16602
|
};
|
|
16603
16603
|
var internals$jscomp$inline_1944 = {
|
|
16604
16604
|
bundleType: 0,
|
|
16605
|
-
version: "19.2.0-canary-
|
|
16605
|
+
version: "19.2.0-canary-e2332183-20250924",
|
|
16606
16606
|
rendererPackageName: "react-dom",
|
|
16607
16607
|
currentDispatcherRef: ReactSharedInternals,
|
|
16608
|
-
reconcilerVersion: "19.2.0-canary-
|
|
16608
|
+
reconcilerVersion: "19.2.0-canary-e2332183-20250924",
|
|
16609
16609
|
getLaneLabelMap: function () {
|
|
16610
16610
|
for (
|
|
16611
16611
|
var map = new Map(), lane = 1, index$282 = 0;
|
|
@@ -16878,7 +16878,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
|
16878
16878
|
exports.useFormStatus = function () {
|
|
16879
16879
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
|
16880
16880
|
};
|
|
16881
|
-
exports.version = "19.2.0-canary-
|
|
16881
|
+
exports.version = "19.2.0-canary-e2332183-20250924";
|
|
16882
16882
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
16883
16883
|
"function" ===
|
|
16884
16884
|
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-e2332183-20250924";
|
|
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-e2332183-20250924";
|
|
@@ -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-e2332183-20250924";
|
|
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-e2332183-20250924";
|
|
@@ -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-e2332183-20250924" !== 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-e2332183-20250924\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-e2332183-20250924";
|
|
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-e2332183-20250924" !== isomorphicReactPackageVersion)
|
|
6879
6879
|
throw Error(
|
|
6880
6880
|
formatProdErrorMessage(
|
|
6881
6881
|
527,
|
|
6882
6882
|
isomorphicReactPackageVersion,
|
|
6883
|
-
"19.2.0-canary-
|
|
6883
|
+
"19.2.0-canary-e2332183-20250924"
|
|
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-e2332183-20250924";
|
|
@@ -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-e2332183-20250924" !==
|
|
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-e2332183-20250924\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-e2332183-20250924";
|
|
@@ -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-e2332183-20250924" !==
|
|
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-e2332183-20250924\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-e2332183-20250924";
|
|
@@ -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-e2332183-20250924" !== 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-e2332183-20250924\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-e2332183-20250924";
|
|
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-e2332183-20250924" !== 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-e2332183-20250924\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-e2332183-20250924";
|
|
@@ -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-e2332183-20250924" !== 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-e2332183-20250924\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-e2332183-20250924";
|
|
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-e2332183-20250924" !== 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-e2332183-20250924\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-e2332183-20250924";
|
|
@@ -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-e2332183-20250924";
|
|
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-e2332183-20250924";
|
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-e2332183-20250924",
|
|
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-e2332183-20250924"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"react": "19.2.0-canary-
|
|
23
|
+
"react": "19.2.0-canary-e2332183-20250924"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"LICENSE",
|