react-dom 19.2.0-canary-ac7820a9-20250811 → 19.2.0-canary-f1222f76-20250812
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 +6 -6
- package/cjs/react-dom-client.production.js +10 -8
- package/cjs/react-dom-profiling.development.js +6 -6
- package/cjs/react-dom-profiling.profiling.js +6 -6
- package/cjs/react-dom-server-legacy.browser.development.js +3 -3
- package/cjs/react-dom-server-legacy.browser.production.js +3 -3
- package/cjs/react-dom-server-legacy.node.development.js +3 -3
- package/cjs/react-dom-server-legacy.node.production.js +3 -3
- package/cjs/react-dom-server.browser.development.js +5 -5
- package/cjs/react-dom-server.browser.production.js +5 -5
- package/cjs/react-dom-server.bun.development.js +5 -5
- package/cjs/react-dom-server.bun.production.js +5 -5
- package/cjs/react-dom-server.edge.development.js +5 -5
- package/cjs/react-dom-server.edge.production.js +5 -5
- package/cjs/react-dom-server.node.development.js +5 -5
- package/cjs/react-dom-server.node.production.js +5 -5
- 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
@@ -13549,7 +13549,6 @@
|
|
13549
13549
|
function attachSuspenseRetryListeners(finishedWork, wakeables) {
|
13550
13550
|
var retryCache = getRetryCache(finishedWork);
|
13551
13551
|
wakeables.forEach(function (wakeable) {
|
13552
|
-
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
|
13553
13552
|
if (!retryCache.has(wakeable)) {
|
13554
13553
|
retryCache.add(wakeable);
|
13555
13554
|
if (isDevToolsPresent)
|
@@ -13559,6 +13558,7 @@
|
|
13559
13558
|
throw Error(
|
13560
13559
|
"Expected finished root and lanes to be set. This is a bug in React."
|
13561
13560
|
);
|
13561
|
+
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
|
13562
13562
|
wakeable.then(retry, retry);
|
13563
13563
|
}
|
13564
13564
|
});
|
@@ -25556,11 +25556,11 @@
|
|
25556
25556
|
};
|
25557
25557
|
(function () {
|
25558
25558
|
var isomorphicReactPackageVersion = React.version;
|
25559
|
-
if ("19.2.0-canary-
|
25559
|
+
if ("19.2.0-canary-f1222f76-20250812" !== isomorphicReactPackageVersion)
|
25560
25560
|
throw Error(
|
25561
25561
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25562
25562
|
(isomorphicReactPackageVersion +
|
25563
|
-
"\n - react-dom: 19.2.0-canary-
|
25563
|
+
"\n - react-dom: 19.2.0-canary-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
|
25564
25564
|
);
|
25565
25565
|
})();
|
25566
25566
|
("function" === typeof Map &&
|
@@ -25597,10 +25597,10 @@
|
|
25597
25597
|
!(function () {
|
25598
25598
|
var internals = {
|
25599
25599
|
bundleType: 1,
|
25600
|
-
version: "19.2.0-canary-
|
25600
|
+
version: "19.2.0-canary-f1222f76-20250812",
|
25601
25601
|
rendererPackageName: "react-dom",
|
25602
25602
|
currentDispatcherRef: ReactSharedInternals,
|
25603
|
-
reconcilerVersion: "19.2.0-canary-
|
25603
|
+
reconcilerVersion: "19.2.0-canary-f1222f76-20250812"
|
25604
25604
|
};
|
25605
25605
|
internals.overrideHookState = overrideHookState;
|
25606
25606
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -25738,7 +25738,7 @@
|
|
25738
25738
|
listenToAllSupportedEvents(container);
|
25739
25739
|
return new ReactDOMHydrationRoot(initialChildren);
|
25740
25740
|
};
|
25741
|
-
exports.version = "19.2.0-canary-
|
25741
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
25742
25742
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
25743
25743
|
"function" ===
|
25744
25744
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -9318,9 +9318,11 @@ function getRetryCache(finishedWork) {
|
|
9318
9318
|
function attachSuspenseRetryListeners(finishedWork, wakeables) {
|
9319
9319
|
var retryCache = getRetryCache(finishedWork);
|
9320
9320
|
wakeables.forEach(function (wakeable) {
|
9321
|
-
|
9322
|
-
|
9323
|
-
|
9321
|
+
if (!retryCache.has(wakeable)) {
|
9322
|
+
retryCache.add(wakeable);
|
9323
|
+
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
|
9324
|
+
wakeable.then(retry, retry);
|
9325
|
+
}
|
9324
9326
|
});
|
9325
9327
|
}
|
9326
9328
|
function recursivelyTraverseMutationEffects(root$jscomp$0, parentFiber) {
|
@@ -15704,14 +15706,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15704
15706
|
};
|
15705
15707
|
var isomorphicReactPackageVersion$jscomp$inline_1833 = React.version;
|
15706
15708
|
if (
|
15707
|
-
"19.2.0-canary-
|
15709
|
+
"19.2.0-canary-f1222f76-20250812" !==
|
15708
15710
|
isomorphicReactPackageVersion$jscomp$inline_1833
|
15709
15711
|
)
|
15710
15712
|
throw Error(
|
15711
15713
|
formatProdErrorMessage(
|
15712
15714
|
527,
|
15713
15715
|
isomorphicReactPackageVersion$jscomp$inline_1833,
|
15714
|
-
"19.2.0-canary-
|
15716
|
+
"19.2.0-canary-f1222f76-20250812"
|
15715
15717
|
)
|
15716
15718
|
);
|
15717
15719
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15733,10 +15735,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15733
15735
|
};
|
15734
15736
|
var internals$jscomp$inline_2336 = {
|
15735
15737
|
bundleType: 0,
|
15736
|
-
version: "19.2.0-canary-
|
15738
|
+
version: "19.2.0-canary-f1222f76-20250812",
|
15737
15739
|
rendererPackageName: "react-dom",
|
15738
15740
|
currentDispatcherRef: ReactSharedInternals,
|
15739
|
-
reconcilerVersion: "19.2.0-canary-
|
15741
|
+
reconcilerVersion: "19.2.0-canary-f1222f76-20250812"
|
15740
15742
|
};
|
15741
15743
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15742
15744
|
var hook$jscomp$inline_2337 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
@@ -15834,4 +15836,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
15834
15836
|
listenToAllSupportedEvents(container);
|
15835
15837
|
return new ReactDOMHydrationRoot(initialChildren);
|
15836
15838
|
};
|
15837
|
-
exports.version = "19.2.0-canary-
|
15839
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
@@ -13557,7 +13557,6 @@
|
|
13557
13557
|
function attachSuspenseRetryListeners(finishedWork, wakeables) {
|
13558
13558
|
var retryCache = getRetryCache(finishedWork);
|
13559
13559
|
wakeables.forEach(function (wakeable) {
|
13560
|
-
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
|
13561
13560
|
if (!retryCache.has(wakeable)) {
|
13562
13561
|
retryCache.add(wakeable);
|
13563
13562
|
if (isDevToolsPresent)
|
@@ -13567,6 +13566,7 @@
|
|
13567
13566
|
throw Error(
|
13568
13567
|
"Expected finished root and lanes to be set. This is a bug in React."
|
13569
13568
|
);
|
13569
|
+
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
|
13570
13570
|
wakeable.then(retry, retry);
|
13571
13571
|
}
|
13572
13572
|
});
|
@@ -25608,11 +25608,11 @@
|
|
25608
25608
|
};
|
25609
25609
|
(function () {
|
25610
25610
|
var isomorphicReactPackageVersion = React.version;
|
25611
|
-
if ("19.2.0-canary-
|
25611
|
+
if ("19.2.0-canary-f1222f76-20250812" !== isomorphicReactPackageVersion)
|
25612
25612
|
throw Error(
|
25613
25613
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25614
25614
|
(isomorphicReactPackageVersion +
|
25615
|
-
"\n - react-dom: 19.2.0-canary-
|
25615
|
+
"\n - react-dom: 19.2.0-canary-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
|
25616
25616
|
);
|
25617
25617
|
})();
|
25618
25618
|
("function" === typeof Map &&
|
@@ -25649,10 +25649,10 @@
|
|
25649
25649
|
!(function () {
|
25650
25650
|
var internals = {
|
25651
25651
|
bundleType: 1,
|
25652
|
-
version: "19.2.0-canary-
|
25652
|
+
version: "19.2.0-canary-f1222f76-20250812",
|
25653
25653
|
rendererPackageName: "react-dom",
|
25654
25654
|
currentDispatcherRef: ReactSharedInternals,
|
25655
|
-
reconcilerVersion: "19.2.0-canary-
|
25655
|
+
reconcilerVersion: "19.2.0-canary-f1222f76-20250812"
|
25656
25656
|
};
|
25657
25657
|
internals.overrideHookState = overrideHookState;
|
25658
25658
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -26120,7 +26120,7 @@
|
|
26120
26120
|
exports.useFormStatus = function () {
|
26121
26121
|
return resolveDispatcher().useHostTransitionStatus();
|
26122
26122
|
};
|
26123
|
-
exports.version = "19.2.0-canary-
|
26123
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
26124
26124
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
26125
26125
|
"function" ===
|
26126
26126
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -9796,13 +9796,13 @@ function getRetryCache(finishedWork) {
|
|
9796
9796
|
function attachSuspenseRetryListeners(finishedWork, wakeables) {
|
9797
9797
|
var retryCache = getRetryCache(finishedWork);
|
9798
9798
|
wakeables.forEach(function (wakeable) {
|
9799
|
-
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
|
9800
9799
|
if (!retryCache.has(wakeable)) {
|
9801
9800
|
retryCache.add(wakeable);
|
9802
9801
|
if (isDevToolsPresent)
|
9803
9802
|
if (null !== inProgressLanes && null !== inProgressRoot)
|
9804
9803
|
restorePendingUpdaters(inProgressRoot, inProgressLanes);
|
9805
9804
|
else throw Error(formatProdErrorMessage(413));
|
9805
|
+
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
|
9806
9806
|
wakeable.then(retry, retry);
|
9807
9807
|
}
|
9808
9808
|
});
|
@@ -16405,14 +16405,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
16405
16405
|
};
|
16406
16406
|
var isomorphicReactPackageVersion$jscomp$inline_1937 = React.version;
|
16407
16407
|
if (
|
16408
|
-
"19.2.0-canary-
|
16408
|
+
"19.2.0-canary-f1222f76-20250812" !==
|
16409
16409
|
isomorphicReactPackageVersion$jscomp$inline_1937
|
16410
16410
|
)
|
16411
16411
|
throw Error(
|
16412
16412
|
formatProdErrorMessage(
|
16413
16413
|
527,
|
16414
16414
|
isomorphicReactPackageVersion$jscomp$inline_1937,
|
16415
|
-
"19.2.0-canary-
|
16415
|
+
"19.2.0-canary-f1222f76-20250812"
|
16416
16416
|
)
|
16417
16417
|
);
|
16418
16418
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -16434,10 +16434,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
16434
16434
|
};
|
16435
16435
|
var internals$jscomp$inline_1944 = {
|
16436
16436
|
bundleType: 0,
|
16437
|
-
version: "19.2.0-canary-
|
16437
|
+
version: "19.2.0-canary-f1222f76-20250812",
|
16438
16438
|
rendererPackageName: "react-dom",
|
16439
16439
|
currentDispatcherRef: ReactSharedInternals,
|
16440
|
-
reconcilerVersion: "19.2.0-canary-
|
16440
|
+
reconcilerVersion: "19.2.0-canary-f1222f76-20250812",
|
16441
16441
|
getLaneLabelMap: function () {
|
16442
16442
|
for (
|
16443
16443
|
var map = new Map(), lane = 1, index$282 = 0;
|
@@ -16710,7 +16710,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
16710
16710
|
exports.useFormStatus = function () {
|
16711
16711
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
16712
16712
|
};
|
16713
|
-
exports.version = "19.2.0-canary-
|
16713
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
16714
16714
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
16715
16715
|
"function" ===
|
16716
16716
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -6741,7 +6741,7 @@
|
|
6741
6741
|
thrownValue === SuspenseException
|
6742
6742
|
? getSuspendedThenable()
|
6743
6743
|
: thrownValue),
|
6744
|
-
"object" === typeof node && null !== node)
|
6744
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
6745
6745
|
) {
|
6746
6746
|
if ("function" === typeof node.then) {
|
6747
6747
|
childIndex =
|
@@ -6797,7 +6797,7 @@
|
|
6797
6797
|
thrownValue$3 === SuspenseException
|
6798
6798
|
? getSuspendedThenable()
|
6799
6799
|
: thrownValue$3),
|
6800
|
-
"object" === typeof node && null !== node)
|
6800
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
6801
6801
|
) {
|
6802
6802
|
if ("function" === typeof node.then) {
|
6803
6803
|
segment = node;
|
@@ -9738,5 +9738,5 @@
|
|
9738
9738
|
'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'
|
9739
9739
|
);
|
9740
9740
|
};
|
9741
|
-
exports.version = "19.2.0-canary-
|
9741
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
9742
9742
|
})();
|
@@ -5182,7 +5182,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5182
5182
|
thrownValue === SuspenseException
|
5183
5183
|
? getSuspendedThenable()
|
5184
5184
|
: thrownValue),
|
5185
|
-
"object" === typeof node && null !== node)
|
5185
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5186
5186
|
) {
|
5187
5187
|
if ("function" === typeof node.then) {
|
5188
5188
|
childIndex =
|
@@ -5232,7 +5232,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5232
5232
|
thrownValue$60 === SuspenseException
|
5233
5233
|
? getSuspendedThenable()
|
5234
5234
|
: thrownValue$60),
|
5235
|
-
"object" === typeof node && null !== node)
|
5235
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5236
5236
|
) {
|
5237
5237
|
if ("function" === typeof node.then) {
|
5238
5238
|
segment = node;
|
@@ -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-f1222f76-20250812";
|
@@ -6741,7 +6741,7 @@
|
|
6741
6741
|
thrownValue === SuspenseException
|
6742
6742
|
? getSuspendedThenable()
|
6743
6743
|
: thrownValue),
|
6744
|
-
"object" === typeof node && null !== node)
|
6744
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
6745
6745
|
) {
|
6746
6746
|
if ("function" === typeof node.then) {
|
6747
6747
|
childIndex =
|
@@ -6797,7 +6797,7 @@
|
|
6797
6797
|
thrownValue$3 === SuspenseException
|
6798
6798
|
? getSuspendedThenable()
|
6799
6799
|
: thrownValue$3),
|
6800
|
-
"object" === typeof node && null !== node)
|
6800
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
6801
6801
|
) {
|
6802
6802
|
if ("function" === typeof node.then) {
|
6803
6803
|
segment = node;
|
@@ -9738,5 +9738,5 @@
|
|
9738
9738
|
'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'
|
9739
9739
|
);
|
9740
9740
|
};
|
9741
|
-
exports.version = "19.2.0-canary-
|
9741
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
9742
9742
|
})();
|
@@ -5242,7 +5242,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5242
5242
|
thrownValue === SuspenseException
|
5243
5243
|
? getSuspendedThenable()
|
5244
5244
|
: thrownValue),
|
5245
|
-
"object" === typeof node && null !== node)
|
5245
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5246
5246
|
) {
|
5247
5247
|
if ("function" === typeof node.then) {
|
5248
5248
|
childIndex =
|
@@ -5292,7 +5292,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5292
5292
|
thrownValue$60 === SuspenseException
|
5293
5293
|
? getSuspendedThenable()
|
5294
5294
|
: thrownValue$60),
|
5295
|
-
"object" === typeof node && null !== node)
|
5295
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5296
5296
|
) {
|
5297
5297
|
if ("function" === typeof node.then) {
|
5298
5298
|
segment = node;
|
@@ -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-f1222f76-20250812";
|
@@ -6954,7 +6954,7 @@
|
|
6954
6954
|
thrownValue === SuspenseException
|
6955
6955
|
? getSuspendedThenable()
|
6956
6956
|
: thrownValue),
|
6957
|
-
"object" === typeof node && null !== node)
|
6957
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
6958
6958
|
) {
|
6959
6959
|
if ("function" === typeof node.then) {
|
6960
6960
|
childIndex =
|
@@ -7010,7 +7010,7 @@
|
|
7010
7010
|
thrownValue$3 === SuspenseException
|
7011
7011
|
? getSuspendedThenable()
|
7012
7012
|
: thrownValue$3),
|
7013
|
-
"object" === typeof node && null !== node)
|
7013
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
7014
7014
|
) {
|
7015
7015
|
if ("function" === typeof node.then) {
|
7016
7016
|
segment = node;
|
@@ -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-f1222f76-20250812" !== 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-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
|
8493
8493
|
);
|
8494
8494
|
}
|
8495
8495
|
var React = require("react"),
|
@@ -10179,5 +10179,5 @@
|
|
10179
10179
|
startWork(request);
|
10180
10180
|
});
|
10181
10181
|
};
|
10182
|
-
exports.version = "19.2.0-canary-
|
10182
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
10183
10183
|
})();
|
@@ -5624,7 +5624,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5624
5624
|
thrownValue === SuspenseException
|
5625
5625
|
? getSuspendedThenable()
|
5626
5626
|
: thrownValue),
|
5627
|
-
"object" === typeof node && null !== node)
|
5627
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5628
5628
|
) {
|
5629
5629
|
if ("function" === typeof node.then) {
|
5630
5630
|
childIndex =
|
@@ -5674,7 +5674,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5674
5674
|
thrownValue$60 === SuspenseException
|
5675
5675
|
? getSuspendedThenable()
|
5676
5676
|
: thrownValue$60),
|
5677
|
-
"object" === typeof node && null !== node)
|
5677
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5678
5678
|
) {
|
5679
5679
|
if ("function" === typeof node.then) {
|
5680
5680
|
segment = node;
|
@@ -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-f1222f76-20250812" !== isomorphicReactPackageVersion)
|
6879
6879
|
throw Error(
|
6880
6880
|
formatProdErrorMessage(
|
6881
6881
|
527,
|
6882
6882
|
isomorphicReactPackageVersion,
|
6883
|
-
"19.2.0-canary-
|
6883
|
+
"19.2.0-canary-f1222f76-20250812"
|
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-f1222f76-20250812";
|
@@ -7972,7 +7972,7 @@ function renderNode(request, task, node, childIndex) {
|
|
7972
7972
|
thrownValue === SuspenseException
|
7973
7973
|
? getSuspendedThenable()
|
7974
7974
|
: thrownValue),
|
7975
|
-
"object" === typeof node && null !== node)
|
7975
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
7976
7976
|
) {
|
7977
7977
|
if ("function" === typeof node.then) {
|
7978
7978
|
childIndex =
|
@@ -8024,7 +8024,7 @@ function renderNode(request, task, node, childIndex) {
|
|
8024
8024
|
thrownValue$3 === SuspenseException
|
8025
8025
|
? getSuspendedThenable()
|
8026
8026
|
: thrownValue$3),
|
8027
|
-
"object" === typeof node && null !== node)
|
8027
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
8028
8028
|
) {
|
8029
8029
|
if ("function" === typeof node.then) {
|
8030
8030
|
segment = node;
|
@@ -9366,13 +9366,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
9366
9366
|
}
|
9367
9367
|
var isomorphicReactPackageVersion$jscomp$inline_764 = React.version;
|
9368
9368
|
if (
|
9369
|
-
"19.2.0-canary-
|
9369
|
+
"19.2.0-canary-f1222f76-20250812" !==
|
9370
9370
|
isomorphicReactPackageVersion$jscomp$inline_764
|
9371
9371
|
)
|
9372
9372
|
throw Error(
|
9373
9373
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
9374
9374
|
(isomorphicReactPackageVersion$jscomp$inline_764 +
|
9375
|
-
"\n - react-dom: 19.2.0-canary-
|
9375
|
+
"\n - react-dom: 19.2.0-canary-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
|
9376
9376
|
);
|
9377
9377
|
exports.renderToReadableStream = function (children, options) {
|
9378
9378
|
return new Promise(function (resolve, reject) {
|
@@ -9465,4 +9465,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
9465
9465
|
startWork(request$jscomp$0);
|
9466
9466
|
});
|
9467
9467
|
};
|
9468
|
-
exports.version = "19.2.0-canary-
|
9468
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
@@ -5259,7 +5259,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5259
5259
|
thrownValue === SuspenseException
|
5260
5260
|
? getSuspendedThenable()
|
5261
5261
|
: thrownValue),
|
5262
|
-
"object" === typeof node && null !== node)
|
5262
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5263
5263
|
) {
|
5264
5264
|
if ("function" === typeof node.then) {
|
5265
5265
|
childIndex =
|
@@ -5309,7 +5309,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5309
5309
|
thrownValue$60 === SuspenseException
|
5310
5310
|
? getSuspendedThenable()
|
5311
5311
|
: thrownValue$60),
|
5312
|
-
"object" === typeof node && null !== node)
|
5312
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5313
5313
|
) {
|
5314
5314
|
if ("function" === typeof node.then) {
|
5315
5315
|
segment = node;
|
@@ -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-f1222f76-20250812" !==
|
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-f1222f76-20250812\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-f1222f76-20250812";
|
@@ -6964,7 +6964,7 @@
|
|
6964
6964
|
thrownValue === SuspenseException
|
6965
6965
|
? getSuspendedThenable()
|
6966
6966
|
: thrownValue),
|
6967
|
-
"object" === typeof node && null !== node)
|
6967
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
6968
6968
|
) {
|
6969
6969
|
if ("function" === typeof node.then) {
|
6970
6970
|
childIndex =
|
@@ -7020,7 +7020,7 @@
|
|
7020
7020
|
thrownValue$3 === SuspenseException
|
7021
7021
|
? getSuspendedThenable()
|
7022
7022
|
: thrownValue$3),
|
7023
|
-
"object" === typeof node && null !== node)
|
7023
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
7024
7024
|
) {
|
7025
7025
|
if ("function" === typeof node.then) {
|
7026
7026
|
segment = node;
|
@@ -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-f1222f76-20250812" !== 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-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
|
8516
8516
|
);
|
8517
8517
|
}
|
8518
8518
|
var React = require("react"),
|
@@ -10198,5 +10198,5 @@
|
|
10198
10198
|
startWork(request);
|
10199
10199
|
});
|
10200
10200
|
};
|
10201
|
-
exports.version = "19.2.0-canary-
|
10201
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
10202
10202
|
})();
|
@@ -5689,7 +5689,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5689
5689
|
thrownValue === SuspenseException
|
5690
5690
|
? getSuspendedThenable()
|
5691
5691
|
: thrownValue),
|
5692
|
-
"object" === typeof node && null !== node)
|
5692
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5693
5693
|
) {
|
5694
5694
|
if ("function" === typeof node.then) {
|
5695
5695
|
childIndex =
|
@@ -5739,7 +5739,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5739
5739
|
thrownValue$60 === SuspenseException
|
5740
5740
|
? getSuspendedThenable()
|
5741
5741
|
: thrownValue$60),
|
5742
|
-
"object" === typeof node && null !== node)
|
5742
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5743
5743
|
) {
|
5744
5744
|
if ("function" === typeof node.then) {
|
5745
5745
|
segment = node;
|
@@ -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-f1222f76-20250812" !== 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-f1222f76-20250812\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-f1222f76-20250812";
|
@@ -6863,7 +6863,7 @@
|
|
6863
6863
|
thrownValue === SuspenseException
|
6864
6864
|
? getSuspendedThenable()
|
6865
6865
|
: thrownValue),
|
6866
|
-
"object" === typeof node && null !== node)
|
6866
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
6867
6867
|
) {
|
6868
6868
|
if ("function" === typeof node.then) {
|
6869
6869
|
childIndex =
|
@@ -6919,7 +6919,7 @@
|
|
6919
6919
|
thrownValue$3 === SuspenseException
|
6920
6920
|
? getSuspendedThenable()
|
6921
6921
|
: thrownValue$3),
|
6922
|
-
"object" === typeof node && null !== node)
|
6922
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
6923
6923
|
) {
|
6924
6924
|
if ("function" === typeof node.then) {
|
6925
6925
|
segment = node;
|
@@ -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-f1222f76-20250812" !== 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-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
|
8391
8391
|
);
|
8392
8392
|
}
|
8393
8393
|
function createDrainHandler(destination, request) {
|
@@ -10258,5 +10258,5 @@
|
|
10258
10258
|
startWork(request);
|
10259
10259
|
});
|
10260
10260
|
};
|
10261
|
-
exports.version = "19.2.0-canary-
|
10261
|
+
exports.version = "19.2.0-canary-f1222f76-20250812";
|
10262
10262
|
})();
|
@@ -5589,7 +5589,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5589
5589
|
thrownValue === SuspenseException
|
5590
5590
|
? getSuspendedThenable()
|
5591
5591
|
: thrownValue),
|
5592
|
-
"object" === typeof node && null !== node)
|
5592
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5593
5593
|
) {
|
5594
5594
|
if ("function" === typeof node.then) {
|
5595
5595
|
childIndex =
|
@@ -5639,7 +5639,7 @@ function renderNode(request, task, node, childIndex) {
|
|
5639
5639
|
thrownValue$60 === SuspenseException
|
5640
5640
|
? getSuspendedThenable()
|
5641
5641
|
: thrownValue$60),
|
5642
|
-
"object" === typeof node && null !== node)
|
5642
|
+
12 !== request.status && "object" === typeof node && null !== node)
|
5643
5643
|
) {
|
5644
5644
|
if ("function" === typeof node.then) {
|
5645
5645
|
segment = node;
|
@@ -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-f1222f76-20250812" !== 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-f1222f76-20250812\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-f1222f76-20250812";
|
@@ -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-f1222f76-20250812";
|
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-f1222f76-20250812";
|
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-f1222f76-20250812",
|
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-f1222f76-20250812"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"react": "19.2.0-canary-
|
23
|
+
"react": "19.2.0-canary-f1222f76-20250812"
|
24
24
|
},
|
25
25
|
"files": [
|
26
26
|
"LICENSE",
|