react-dom 19.2.0-canary-873f7112-20250821 → 19.2.0-canary-4123f6b7-20250826
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 +17 -7
- package/cjs/react-dom-client.production.js +12 -6
- package/cjs/react-dom-profiling.development.js +17 -7
- package/cjs/react-dom-profiling.profiling.js +12 -6
- package/cjs/react-dom-server-legacy.browser.development.js +6 -2
- package/cjs/react-dom-server-legacy.browser.production.js +1 -1
- package/cjs/react-dom-server-legacy.node.development.js +6 -2
- package/cjs/react-dom-server-legacy.node.production.js +1 -1
- package/cjs/react-dom-server.browser.development.js +8 -4
- package/cjs/react-dom-server.browser.production.js +3 -3
- package/cjs/react-dom-server.bun.development.js +8 -4
- package/cjs/react-dom-server.bun.production.js +3 -3
- package/cjs/react-dom-server.edge.development.js +8 -4
- package/cjs/react-dom-server.edge.production.js +3 -3
- package/cjs/react-dom-server.node.development.js +8 -4
- 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
@@ -20211,7 +20211,13 @@
|
|
20211
20211
|
}
|
20212
20212
|
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
|
20213
20213
|
for (; 8 !== instance.nodeType; ) {
|
20214
|
-
if (
|
20214
|
+
if (
|
20215
|
+
(1 !== instance.nodeType ||
|
20216
|
+
"INPUT" !== instance.nodeName ||
|
20217
|
+
"hidden" !== instance.type) &&
|
20218
|
+
!inRootOrSingleton
|
20219
|
+
)
|
20220
|
+
return null;
|
20215
20221
|
instance = getNextHydratable(instance.nextSibling);
|
20216
20222
|
if (null === instance) return null;
|
20217
20223
|
}
|
@@ -22881,7 +22887,11 @@
|
|
22881
22887
|
"aria-rowcount": 0,
|
22882
22888
|
"aria-rowindex": 0,
|
22883
22889
|
"aria-rowspan": 0,
|
22884
|
-
"aria-setsize": 0
|
22890
|
+
"aria-setsize": 0,
|
22891
|
+
"aria-braillelabel": 0,
|
22892
|
+
"aria-brailleroledescription": 0,
|
22893
|
+
"aria-colindextext": 0,
|
22894
|
+
"aria-rowindextext": 0
|
22885
22895
|
},
|
22886
22896
|
warnedProperties$1 = {},
|
22887
22897
|
rARIA$1 = RegExp(
|
@@ -25556,11 +25566,11 @@
|
|
25556
25566
|
};
|
25557
25567
|
(function () {
|
25558
25568
|
var isomorphicReactPackageVersion = React.version;
|
25559
|
-
if ("19.2.0-canary-
|
25569
|
+
if ("19.2.0-canary-4123f6b7-20250826" !== isomorphicReactPackageVersion)
|
25560
25570
|
throw Error(
|
25561
25571
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25562
25572
|
(isomorphicReactPackageVersion +
|
25563
|
-
"\n - react-dom: 19.2.0-canary-
|
25573
|
+
"\n - react-dom: 19.2.0-canary-4123f6b7-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
|
25564
25574
|
);
|
25565
25575
|
})();
|
25566
25576
|
("function" === typeof Map &&
|
@@ -25597,10 +25607,10 @@
|
|
25597
25607
|
!(function () {
|
25598
25608
|
var internals = {
|
25599
25609
|
bundleType: 1,
|
25600
|
-
version: "19.2.0-canary-
|
25610
|
+
version: "19.2.0-canary-4123f6b7-20250826",
|
25601
25611
|
rendererPackageName: "react-dom",
|
25602
25612
|
currentDispatcherRef: ReactSharedInternals,
|
25603
|
-
reconcilerVersion: "19.2.0-canary-
|
25613
|
+
reconcilerVersion: "19.2.0-canary-4123f6b7-20250826"
|
25604
25614
|
};
|
25605
25615
|
internals.overrideHookState = overrideHookState;
|
25606
25616
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -25738,7 +25748,7 @@
|
|
25738
25748
|
listenToAllSupportedEvents(container);
|
25739
25749
|
return new ReactDOMHydrationRoot(initialChildren);
|
25740
25750
|
};
|
25741
|
-
exports.version = "19.2.0-canary-
|
25751
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
25742
25752
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
25743
25753
|
"function" ===
|
25744
25754
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -14026,7 +14026,13 @@ function canHydrateTextInstance(instance, text, inRootOrSingleton) {
|
|
14026
14026
|
}
|
14027
14027
|
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
|
14028
14028
|
for (; 8 !== instance.nodeType; ) {
|
14029
|
-
if (
|
14029
|
+
if (
|
14030
|
+
(1 !== instance.nodeType ||
|
14031
|
+
"INPUT" !== instance.nodeName ||
|
14032
|
+
"hidden" !== instance.type) &&
|
14033
|
+
!inRootOrSingleton
|
14034
|
+
)
|
14035
|
+
return null;
|
14030
14036
|
instance = getNextHydratable(instance.nextSibling);
|
14031
14037
|
if (null === instance) return null;
|
14032
14038
|
}
|
@@ -15706,14 +15712,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
15706
15712
|
};
|
15707
15713
|
var isomorphicReactPackageVersion$jscomp$inline_1833 = React.version;
|
15708
15714
|
if (
|
15709
|
-
"19.2.0-canary-
|
15715
|
+
"19.2.0-canary-4123f6b7-20250826" !==
|
15710
15716
|
isomorphicReactPackageVersion$jscomp$inline_1833
|
15711
15717
|
)
|
15712
15718
|
throw Error(
|
15713
15719
|
formatProdErrorMessage(
|
15714
15720
|
527,
|
15715
15721
|
isomorphicReactPackageVersion$jscomp$inline_1833,
|
15716
|
-
"19.2.0-canary-
|
15722
|
+
"19.2.0-canary-4123f6b7-20250826"
|
15717
15723
|
)
|
15718
15724
|
);
|
15719
15725
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -15735,10 +15741,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
15735
15741
|
};
|
15736
15742
|
var internals$jscomp$inline_2336 = {
|
15737
15743
|
bundleType: 0,
|
15738
|
-
version: "19.2.0-canary-
|
15744
|
+
version: "19.2.0-canary-4123f6b7-20250826",
|
15739
15745
|
rendererPackageName: "react-dom",
|
15740
15746
|
currentDispatcherRef: ReactSharedInternals,
|
15741
|
-
reconcilerVersion: "19.2.0-canary-
|
15747
|
+
reconcilerVersion: "19.2.0-canary-4123f6b7-20250826"
|
15742
15748
|
};
|
15743
15749
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
15744
15750
|
var hook$jscomp$inline_2337 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
@@ -15836,4 +15842,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
|
15836
15842
|
listenToAllSupportedEvents(container);
|
15837
15843
|
return new ReactDOMHydrationRoot(initialChildren);
|
15838
15844
|
};
|
15839
|
-
exports.version = "19.2.0-canary-
|
15845
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
@@ -20219,7 +20219,13 @@
|
|
20219
20219
|
}
|
20220
20220
|
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
|
20221
20221
|
for (; 8 !== instance.nodeType; ) {
|
20222
|
-
if (
|
20222
|
+
if (
|
20223
|
+
(1 !== instance.nodeType ||
|
20224
|
+
"INPUT" !== instance.nodeName ||
|
20225
|
+
"hidden" !== instance.type) &&
|
20226
|
+
!inRootOrSingleton
|
20227
|
+
)
|
20228
|
+
return null;
|
20223
20229
|
instance = getNextHydratable(instance.nextSibling);
|
20224
20230
|
if (null === instance) return null;
|
20225
20231
|
}
|
@@ -22933,7 +22939,11 @@
|
|
22933
22939
|
"aria-rowcount": 0,
|
22934
22940
|
"aria-rowindex": 0,
|
22935
22941
|
"aria-rowspan": 0,
|
22936
|
-
"aria-setsize": 0
|
22942
|
+
"aria-setsize": 0,
|
22943
|
+
"aria-braillelabel": 0,
|
22944
|
+
"aria-brailleroledescription": 0,
|
22945
|
+
"aria-colindextext": 0,
|
22946
|
+
"aria-rowindextext": 0
|
22937
22947
|
},
|
22938
22948
|
warnedProperties$1 = {},
|
22939
22949
|
rARIA$1 = RegExp(
|
@@ -25608,11 +25618,11 @@
|
|
25608
25618
|
};
|
25609
25619
|
(function () {
|
25610
25620
|
var isomorphicReactPackageVersion = React.version;
|
25611
|
-
if ("19.2.0-canary-
|
25621
|
+
if ("19.2.0-canary-4123f6b7-20250826" !== isomorphicReactPackageVersion)
|
25612
25622
|
throw Error(
|
25613
25623
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
25614
25624
|
(isomorphicReactPackageVersion +
|
25615
|
-
"\n - react-dom: 19.2.0-canary-
|
25625
|
+
"\n - react-dom: 19.2.0-canary-4123f6b7-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
|
25616
25626
|
);
|
25617
25627
|
})();
|
25618
25628
|
("function" === typeof Map &&
|
@@ -25649,10 +25659,10 @@
|
|
25649
25659
|
!(function () {
|
25650
25660
|
var internals = {
|
25651
25661
|
bundleType: 1,
|
25652
|
-
version: "19.2.0-canary-
|
25662
|
+
version: "19.2.0-canary-4123f6b7-20250826",
|
25653
25663
|
rendererPackageName: "react-dom",
|
25654
25664
|
currentDispatcherRef: ReactSharedInternals,
|
25655
|
-
reconcilerVersion: "19.2.0-canary-
|
25665
|
+
reconcilerVersion: "19.2.0-canary-4123f6b7-20250826"
|
25656
25666
|
};
|
25657
25667
|
internals.overrideHookState = overrideHookState;
|
25658
25668
|
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
@@ -26120,7 +26130,7 @@
|
|
26120
26130
|
exports.useFormStatus = function () {
|
26121
26131
|
return resolveDispatcher().useHostTransitionStatus();
|
26122
26132
|
};
|
26123
|
-
exports.version = "19.2.0-canary-
|
26133
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
26124
26134
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
26125
26135
|
"function" ===
|
26126
26136
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -14706,7 +14706,13 @@ function canHydrateTextInstance(instance, text, inRootOrSingleton) {
|
|
14706
14706
|
}
|
14707
14707
|
function canHydrateHydrationBoundary(instance, inRootOrSingleton) {
|
14708
14708
|
for (; 8 !== instance.nodeType; ) {
|
14709
|
-
if (
|
14709
|
+
if (
|
14710
|
+
(1 !== instance.nodeType ||
|
14711
|
+
"INPUT" !== instance.nodeName ||
|
14712
|
+
"hidden" !== instance.type) &&
|
14713
|
+
!inRootOrSingleton
|
14714
|
+
)
|
14715
|
+
return null;
|
14710
14716
|
instance = getNextHydratable(instance.nextSibling);
|
14711
14717
|
if (null === instance) return null;
|
14712
14718
|
}
|
@@ -16405,14 +16411,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
16405
16411
|
};
|
16406
16412
|
var isomorphicReactPackageVersion$jscomp$inline_1937 = React.version;
|
16407
16413
|
if (
|
16408
|
-
"19.2.0-canary-
|
16414
|
+
"19.2.0-canary-4123f6b7-20250826" !==
|
16409
16415
|
isomorphicReactPackageVersion$jscomp$inline_1937
|
16410
16416
|
)
|
16411
16417
|
throw Error(
|
16412
16418
|
formatProdErrorMessage(
|
16413
16419
|
527,
|
16414
16420
|
isomorphicReactPackageVersion$jscomp$inline_1937,
|
16415
|
-
"19.2.0-canary-
|
16421
|
+
"19.2.0-canary-4123f6b7-20250826"
|
16416
16422
|
)
|
16417
16423
|
);
|
16418
16424
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -16434,10 +16440,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
16434
16440
|
};
|
16435
16441
|
var internals$jscomp$inline_1944 = {
|
16436
16442
|
bundleType: 0,
|
16437
|
-
version: "19.2.0-canary-
|
16443
|
+
version: "19.2.0-canary-4123f6b7-20250826",
|
16438
16444
|
rendererPackageName: "react-dom",
|
16439
16445
|
currentDispatcherRef: ReactSharedInternals,
|
16440
|
-
reconcilerVersion: "19.2.0-canary-
|
16446
|
+
reconcilerVersion: "19.2.0-canary-4123f6b7-20250826",
|
16441
16447
|
getLaneLabelMap: function () {
|
16442
16448
|
for (
|
16443
16449
|
var map = new Map(), lane = 1, index$282 = 0;
|
@@ -16710,7 +16716,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
16710
16716
|
exports.useFormStatus = function () {
|
16711
16717
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
16712
16718
|
};
|
16713
|
-
exports.version = "19.2.0-canary-
|
16719
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
16714
16720
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
16715
16721
|
"function" ===
|
16716
16722
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -8443,7 +8443,11 @@
|
|
8443
8443
|
"aria-rowcount": 0,
|
8444
8444
|
"aria-rowindex": 0,
|
8445
8445
|
"aria-rowspan": 0,
|
8446
|
-
"aria-setsize": 0
|
8446
|
+
"aria-setsize": 0,
|
8447
|
+
"aria-braillelabel": 0,
|
8448
|
+
"aria-brailleroledescription": 0,
|
8449
|
+
"aria-colindextext": 0,
|
8450
|
+
"aria-rowindextext": 0
|
8447
8451
|
},
|
8448
8452
|
warnedProperties$1 = {},
|
8449
8453
|
rARIA$1 = RegExp(
|
@@ -9738,5 +9742,5 @@
|
|
9738
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'
|
9739
9743
|
);
|
9740
9744
|
};
|
9741
|
-
exports.version = "19.2.0-canary-
|
9745
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
9742
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-4123f6b7-20250826";
|
@@ -8443,7 +8443,11 @@
|
|
8443
8443
|
"aria-rowcount": 0,
|
8444
8444
|
"aria-rowindex": 0,
|
8445
8445
|
"aria-rowspan": 0,
|
8446
|
-
"aria-setsize": 0
|
8446
|
+
"aria-setsize": 0,
|
8447
|
+
"aria-braillelabel": 0,
|
8448
|
+
"aria-brailleroledescription": 0,
|
8449
|
+
"aria-colindextext": 0,
|
8450
|
+
"aria-rowindextext": 0
|
8447
8451
|
},
|
8448
8452
|
warnedProperties$1 = {},
|
8449
8453
|
rARIA$1 = RegExp(
|
@@ -9738,5 +9742,5 @@
|
|
9738
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'
|
9739
9743
|
);
|
9740
9744
|
};
|
9741
|
-
exports.version = "19.2.0-canary-
|
9745
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
9742
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-4123f6b7-20250826";
|
@@ -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-4123f6b7-20250826" !== 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-4123f6b7-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
|
8493
8493
|
);
|
8494
8494
|
}
|
8495
8495
|
var React = require("react"),
|
@@ -8684,7 +8684,11 @@
|
|
8684
8684
|
"aria-rowcount": 0,
|
8685
8685
|
"aria-rowindex": 0,
|
8686
8686
|
"aria-rowspan": 0,
|
8687
|
-
"aria-setsize": 0
|
8687
|
+
"aria-setsize": 0,
|
8688
|
+
"aria-braillelabel": 0,
|
8689
|
+
"aria-brailleroledescription": 0,
|
8690
|
+
"aria-colindextext": 0,
|
8691
|
+
"aria-rowindextext": 0
|
8688
8692
|
},
|
8689
8693
|
warnedProperties$1 = {},
|
8690
8694
|
rARIA$1 = RegExp(
|
@@ -10179,5 +10183,5 @@
|
|
10179
10183
|
startWork(request);
|
10180
10184
|
});
|
10181
10185
|
};
|
10182
|
-
exports.version = "19.2.0-canary-
|
10186
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
10183
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-4123f6b7-20250826" !== isomorphicReactPackageVersion)
|
6879
6879
|
throw Error(
|
6880
6880
|
formatProdErrorMessage(
|
6881
6881
|
527,
|
6882
6882
|
isomorphicReactPackageVersion,
|
6883
|
-
"19.2.0-canary-
|
6883
|
+
"19.2.0-canary-4123f6b7-20250826"
|
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-4123f6b7-20250826";
|
@@ -445,7 +445,11 @@ var ariaProperties = {
|
|
445
445
|
"aria-rowcount": 0,
|
446
446
|
"aria-rowindex": 0,
|
447
447
|
"aria-rowspan": 0,
|
448
|
-
"aria-setsize": 0
|
448
|
+
"aria-setsize": 0,
|
449
|
+
"aria-braillelabel": 0,
|
450
|
+
"aria-brailleroledescription": 0,
|
451
|
+
"aria-colindextext": 0,
|
452
|
+
"aria-rowindextext": 0
|
449
453
|
},
|
450
454
|
warnedProperties$1 = {},
|
451
455
|
rARIA$1 = RegExp(
|
@@ -9366,13 +9370,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
9366
9370
|
}
|
9367
9371
|
var isomorphicReactPackageVersion$jscomp$inline_764 = React.version;
|
9368
9372
|
if (
|
9369
|
-
"19.2.0-canary-
|
9373
|
+
"19.2.0-canary-4123f6b7-20250826" !==
|
9370
9374
|
isomorphicReactPackageVersion$jscomp$inline_764
|
9371
9375
|
)
|
9372
9376
|
throw Error(
|
9373
9377
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
9374
9378
|
(isomorphicReactPackageVersion$jscomp$inline_764 +
|
9375
|
-
"\n - react-dom: 19.2.0-canary-
|
9379
|
+
"\n - react-dom: 19.2.0-canary-4123f6b7-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
|
9376
9380
|
);
|
9377
9381
|
exports.renderToReadableStream = function (children, options) {
|
9378
9382
|
return new Promise(function (resolve, reject) {
|
@@ -9465,4 +9469,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
9465
9469
|
startWork(request$jscomp$0);
|
9466
9470
|
});
|
9467
9471
|
};
|
9468
|
-
exports.version = "19.2.0-canary-
|
9472
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
@@ -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-4123f6b7-20250826" !==
|
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-4123f6b7-20250826\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-4123f6b7-20250826";
|
@@ -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-4123f6b7-20250826" !== 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-4123f6b7-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
|
8516
8516
|
);
|
8517
8517
|
}
|
8518
8518
|
var React = require("react"),
|
@@ -8701,7 +8701,11 @@
|
|
8701
8701
|
"aria-rowcount": 0,
|
8702
8702
|
"aria-rowindex": 0,
|
8703
8703
|
"aria-rowspan": 0,
|
8704
|
-
"aria-setsize": 0
|
8704
|
+
"aria-setsize": 0,
|
8705
|
+
"aria-braillelabel": 0,
|
8706
|
+
"aria-brailleroledescription": 0,
|
8707
|
+
"aria-colindextext": 0,
|
8708
|
+
"aria-rowindextext": 0
|
8705
8709
|
},
|
8706
8710
|
warnedProperties$1 = {},
|
8707
8711
|
rARIA$1 = RegExp(
|
@@ -10198,5 +10202,5 @@
|
|
10198
10202
|
startWork(request);
|
10199
10203
|
});
|
10200
10204
|
};
|
10201
|
-
exports.version = "19.2.0-canary-
|
10205
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
10202
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-4123f6b7-20250826" !== 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-4123f6b7-20250826\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-4123f6b7-20250826";
|
@@ -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-4123f6b7-20250826" !== 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-4123f6b7-20250826\nLearn more: https://react.dev/warnings/version-mismatch")
|
8391
8391
|
);
|
8392
8392
|
}
|
8393
8393
|
function createDrainHandler(destination, request) {
|
@@ -8661,7 +8661,11 @@
|
|
8661
8661
|
"aria-rowcount": 0,
|
8662
8662
|
"aria-rowindex": 0,
|
8663
8663
|
"aria-rowspan": 0,
|
8664
|
-
"aria-setsize": 0
|
8664
|
+
"aria-setsize": 0,
|
8665
|
+
"aria-braillelabel": 0,
|
8666
|
+
"aria-brailleroledescription": 0,
|
8667
|
+
"aria-colindextext": 0,
|
8668
|
+
"aria-rowindextext": 0
|
8665
8669
|
},
|
8666
8670
|
warnedProperties$1 = {},
|
8667
8671
|
rARIA$1 = RegExp(
|
@@ -10258,5 +10262,5 @@
|
|
10258
10262
|
startWork(request);
|
10259
10263
|
});
|
10260
10264
|
};
|
10261
|
-
exports.version = "19.2.0-canary-
|
10265
|
+
exports.version = "19.2.0-canary-4123f6b7-20250826";
|
10262
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-4123f6b7-20250826" !== 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-4123f6b7-20250826\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-4123f6b7-20250826";
|
@@ -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-4123f6b7-20250826";
|
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-4123f6b7-20250826";
|
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-4123f6b7-20250826",
|
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-4123f6b7-20250826"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"react": "19.2.0-canary-
|
23
|
+
"react": "19.2.0-canary-4123f6b7-20250826"
|
24
24
|
},
|
25
25
|
"files": [
|
26
26
|
"LICENSE",
|