react-dom 19.2.0-canary-b9cfa0d3-20250505 → 19.2.0-canary-7a2c7045-20250506
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 +182 -155
- package/cjs/react-dom-client.production.js +72 -67
- package/cjs/react-dom-profiling.development.js +182 -155
- package/cjs/react-dom-profiling.profiling.js +72 -67
- 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
@@ -1100,13 +1100,11 @@ function isCheckable(elem) {
|
|
1100
1100
|
("checkbox" === type || "radio" === type)
|
1101
1101
|
);
|
1102
1102
|
}
|
1103
|
-
function trackValueOnNode(node) {
|
1104
|
-
var
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1108
|
-
),
|
1109
|
-
currentValue = "" + node[valueField];
|
1103
|
+
function trackValueOnNode(node, valueField, currentValue) {
|
1104
|
+
var descriptor = Object.getOwnPropertyDescriptor(
|
1105
|
+
node.constructor.prototype,
|
1106
|
+
valueField
|
1107
|
+
);
|
1110
1108
|
if (
|
1111
1109
|
!node.hasOwnProperty(valueField) &&
|
1112
1110
|
"undefined" !== typeof descriptor &&
|
@@ -1143,7 +1141,14 @@ function trackValueOnNode(node) {
|
|
1143
1141
|
}
|
1144
1142
|
}
|
1145
1143
|
function track(node) {
|
1146
|
-
|
1144
|
+
if (!node._valueTracker) {
|
1145
|
+
var valueField = isCheckable(node) ? "checked" : "value";
|
1146
|
+
node._valueTracker = trackValueOnNode(
|
1147
|
+
node,
|
1148
|
+
valueField,
|
1149
|
+
"" + node[valueField]
|
1150
|
+
);
|
1151
|
+
}
|
1147
1152
|
}
|
1148
1153
|
function updateValueIfChanged(node) {
|
1149
1154
|
if (!node) return !1;
|
@@ -1243,8 +1248,10 @@ function initInput(
|
|
1243
1248
|
("submit" !== type && "reset" !== type) ||
|
1244
1249
|
(void 0 !== value && null !== value)
|
1245
1250
|
)
|
1246
|
-
)
|
1251
|
+
) {
|
1252
|
+
track(element);
|
1247
1253
|
return;
|
1254
|
+
}
|
1248
1255
|
defaultValue =
|
1249
1256
|
null != defaultValue ? "" + getToStringValue(defaultValue) : "";
|
1250
1257
|
value = null != value ? "" + getToStringValue(value) : defaultValue;
|
@@ -1261,6 +1268,7 @@ function initInput(
|
|
1261
1268
|
"symbol" !== typeof name &&
|
1262
1269
|
"boolean" !== typeof name &&
|
1263
1270
|
(element.name = name);
|
1271
|
+
track(element);
|
1264
1272
|
}
|
1265
1273
|
function setDefaultValue(node, type, value) {
|
1266
1274
|
("number" === type && getActiveElement(node.ownerDocument) === node) ||
|
@@ -1324,6 +1332,7 @@ function initTextarea(element, value, defaultValue, children) {
|
|
1324
1332
|
"" !== children &&
|
1325
1333
|
null !== children &&
|
1326
1334
|
(element.value = children);
|
1335
|
+
track(element);
|
1327
1336
|
}
|
1328
1337
|
function setTextContent(node, text) {
|
1329
1338
|
if (text) {
|
@@ -2119,14 +2128,14 @@ var isInputEventSupported = !1;
|
|
2119
2128
|
if (canUseDOM) {
|
2120
2129
|
var JSCompiler_inline_result$jscomp$311;
|
2121
2130
|
if (canUseDOM) {
|
2122
|
-
var isSupported$jscomp$
|
2123
|
-
if (!isSupported$jscomp$
|
2124
|
-
var element$jscomp$
|
2125
|
-
element$jscomp$
|
2126
|
-
isSupported$jscomp$
|
2127
|
-
"function" === typeof element$jscomp$
|
2131
|
+
var isSupported$jscomp$inline_453 = "oninput" in document;
|
2132
|
+
if (!isSupported$jscomp$inline_453) {
|
2133
|
+
var element$jscomp$inline_454 = document.createElement("div");
|
2134
|
+
element$jscomp$inline_454.setAttribute("oninput", "return;");
|
2135
|
+
isSupported$jscomp$inline_453 =
|
2136
|
+
"function" === typeof element$jscomp$inline_454.oninput;
|
2128
2137
|
}
|
2129
|
-
JSCompiler_inline_result$jscomp$311 = isSupported$jscomp$
|
2138
|
+
JSCompiler_inline_result$jscomp$311 = isSupported$jscomp$inline_453;
|
2130
2139
|
} else JSCompiler_inline_result$jscomp$311 = !1;
|
2131
2140
|
isInputEventSupported =
|
2132
2141
|
JSCompiler_inline_result$jscomp$311 &&
|
@@ -2377,25 +2386,6 @@ function registerSimpleEvent(domEventName, reactName) {
|
|
2377
2386
|
topLevelEventsToReactNames.set(domEventName, reactName);
|
2378
2387
|
registerTwoPhaseEvent(reactName, [domEventName]);
|
2379
2388
|
}
|
2380
|
-
var CapturedStacks = new WeakMap();
|
2381
|
-
function createCapturedValueAtFiber(value, source) {
|
2382
|
-
if ("object" === typeof value && null !== value) {
|
2383
|
-
var existing = CapturedStacks.get(value);
|
2384
|
-
if (void 0 !== existing) return existing;
|
2385
|
-
source = {
|
2386
|
-
value: value,
|
2387
|
-
source: source,
|
2388
|
-
stack: getStackByFiberInDevAndProd(source)
|
2389
|
-
};
|
2390
|
-
CapturedStacks.set(value, source);
|
2391
|
-
return source;
|
2392
|
-
}
|
2393
|
-
return {
|
2394
|
-
value: value,
|
2395
|
-
source: source,
|
2396
|
-
stack: getStackByFiberInDevAndProd(source)
|
2397
|
-
};
|
2398
|
-
}
|
2399
2389
|
var concurrentQueues = [],
|
2400
2390
|
concurrentQueuesIndex = 0,
|
2401
2391
|
concurrentlyUpdatedLanes = 0;
|
@@ -2713,6 +2703,25 @@ function createFiberFromPortal(portal, mode, lanes) {
|
|
2713
2703
|
};
|
2714
2704
|
return mode;
|
2715
2705
|
}
|
2706
|
+
var CapturedStacks = new WeakMap();
|
2707
|
+
function createCapturedValueAtFiber(value, source) {
|
2708
|
+
if ("object" === typeof value && null !== value) {
|
2709
|
+
var existing = CapturedStacks.get(value);
|
2710
|
+
if (void 0 !== existing) return existing;
|
2711
|
+
source = {
|
2712
|
+
value: value,
|
2713
|
+
source: source,
|
2714
|
+
stack: getStackByFiberInDevAndProd(source)
|
2715
|
+
};
|
2716
|
+
CapturedStacks.set(value, source);
|
2717
|
+
return source;
|
2718
|
+
}
|
2719
|
+
return {
|
2720
|
+
value: value,
|
2721
|
+
source: source,
|
2722
|
+
stack: getStackByFiberInDevAndProd(source)
|
2723
|
+
};
|
2724
|
+
}
|
2716
2725
|
var forkStack = [],
|
2717
2726
|
forkStackIndex = 0,
|
2718
2727
|
treeForkProvider = null,
|
@@ -2847,15 +2856,13 @@ function prepareToHydrateHostInstance(fiber) {
|
|
2847
2856
|
props.name,
|
2848
2857
|
!0
|
2849
2858
|
);
|
2850
|
-
track(instance);
|
2851
2859
|
break;
|
2852
2860
|
case "select":
|
2853
2861
|
listenToNonDelegatedEvent("invalid", instance);
|
2854
2862
|
break;
|
2855
2863
|
case "textarea":
|
2856
2864
|
listenToNonDelegatedEvent("invalid", instance),
|
2857
|
-
initTextarea(instance, props.value, props.defaultValue, props.children)
|
2858
|
-
track(instance);
|
2865
|
+
initTextarea(instance, props.value, props.defaultValue, props.children);
|
2859
2866
|
}
|
2860
2867
|
type = props.children;
|
2861
2868
|
("string" !== typeof type &&
|
@@ -12728,20 +12735,20 @@ function extractEvents$1(
|
|
12728
12735
|
}
|
12729
12736
|
}
|
12730
12737
|
for (
|
12731
|
-
var i$jscomp$
|
12732
|
-
i$jscomp$
|
12733
|
-
i$jscomp$
|
12738
|
+
var i$jscomp$inline_1692 = 0;
|
12739
|
+
i$jscomp$inline_1692 < simpleEventPluginEvents.length;
|
12740
|
+
i$jscomp$inline_1692++
|
12734
12741
|
) {
|
12735
|
-
var eventName$jscomp$
|
12736
|
-
simpleEventPluginEvents[i$jscomp$
|
12737
|
-
domEventName$jscomp$
|
12738
|
-
eventName$jscomp$
|
12739
|
-
capitalizedEvent$jscomp$
|
12740
|
-
eventName$jscomp$
|
12741
|
-
eventName$jscomp$
|
12742
|
+
var eventName$jscomp$inline_1693 =
|
12743
|
+
simpleEventPluginEvents[i$jscomp$inline_1692],
|
12744
|
+
domEventName$jscomp$inline_1694 =
|
12745
|
+
eventName$jscomp$inline_1693.toLowerCase(),
|
12746
|
+
capitalizedEvent$jscomp$inline_1695 =
|
12747
|
+
eventName$jscomp$inline_1693[0].toUpperCase() +
|
12748
|
+
eventName$jscomp$inline_1693.slice(1);
|
12742
12749
|
registerSimpleEvent(
|
12743
|
-
domEventName$jscomp$
|
12744
|
-
"on" + capitalizedEvent$jscomp$
|
12750
|
+
domEventName$jscomp$inline_1694,
|
12751
|
+
"on" + capitalizedEvent$jscomp$inline_1695
|
12745
12752
|
);
|
12746
12753
|
}
|
12747
12754
|
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
@@ -13958,7 +13965,6 @@ function setInitialProperties(domElement, tag, props) {
|
|
13958
13965
|
hasSrcSet,
|
13959
13966
|
!1
|
13960
13967
|
);
|
13961
|
-
track(domElement);
|
13962
13968
|
return;
|
13963
13969
|
case "select":
|
13964
13970
|
listenToNonDelegatedEvent("invalid", domElement);
|
@@ -14012,7 +14018,6 @@ function setInitialProperties(domElement, tag, props) {
|
|
14012
14018
|
setProp(domElement, tag, propValue, defaultValue, props, null);
|
14013
14019
|
}
|
14014
14020
|
initTextarea(domElement, hasSrc, hasSrcSet, propKey);
|
14015
|
-
track(domElement);
|
14016
14021
|
return;
|
14017
14022
|
case "option":
|
14018
14023
|
for (checked in props)
|
@@ -16334,16 +16339,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
|
16334
16339
|
0 === i && attemptExplicitHydrationTarget(target);
|
16335
16340
|
}
|
16336
16341
|
};
|
16337
|
-
var isomorphicReactPackageVersion$jscomp$
|
16342
|
+
var isomorphicReactPackageVersion$jscomp$inline_1950 = React.version;
|
16338
16343
|
if (
|
16339
|
-
"19.2.0-canary-
|
16340
|
-
isomorphicReactPackageVersion$jscomp$
|
16344
|
+
"19.2.0-canary-7a2c7045-20250506" !==
|
16345
|
+
isomorphicReactPackageVersion$jscomp$inline_1950
|
16341
16346
|
)
|
16342
16347
|
throw Error(
|
16343
16348
|
formatProdErrorMessage(
|
16344
16349
|
527,
|
16345
|
-
isomorphicReactPackageVersion$jscomp$
|
16346
|
-
"19.2.0-canary-
|
16350
|
+
isomorphicReactPackageVersion$jscomp$inline_1950,
|
16351
|
+
"19.2.0-canary-7a2c7045-20250506"
|
16347
16352
|
)
|
16348
16353
|
);
|
16349
16354
|
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
@@ -16363,12 +16368,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
|
16363
16368
|
null === componentOrElement ? null : componentOrElement.stateNode;
|
16364
16369
|
return componentOrElement;
|
16365
16370
|
};
|
16366
|
-
var internals$jscomp$
|
16371
|
+
var internals$jscomp$inline_1957 = {
|
16367
16372
|
bundleType: 0,
|
16368
|
-
version: "19.2.0-canary-
|
16373
|
+
version: "19.2.0-canary-7a2c7045-20250506",
|
16369
16374
|
rendererPackageName: "react-dom",
|
16370
16375
|
currentDispatcherRef: ReactSharedInternals,
|
16371
|
-
reconcilerVersion: "19.2.0-canary-
|
16376
|
+
reconcilerVersion: "19.2.0-canary-7a2c7045-20250506",
|
16372
16377
|
getLaneLabelMap: function () {
|
16373
16378
|
for (
|
16374
16379
|
var map = new Map(), lane = 1, index$293 = 0;
|
@@ -16386,16 +16391,16 @@ var internals$jscomp$inline_1940 = {
|
|
16386
16391
|
}
|
16387
16392
|
};
|
16388
16393
|
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
16389
|
-
var hook$jscomp$
|
16394
|
+
var hook$jscomp$inline_2411 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
16390
16395
|
if (
|
16391
|
-
!hook$jscomp$
|
16392
|
-
hook$jscomp$
|
16396
|
+
!hook$jscomp$inline_2411.isDisabled &&
|
16397
|
+
hook$jscomp$inline_2411.supportsFiber
|
16393
16398
|
)
|
16394
16399
|
try {
|
16395
|
-
(rendererID = hook$jscomp$
|
16396
|
-
internals$jscomp$
|
16400
|
+
(rendererID = hook$jscomp$inline_2411.inject(
|
16401
|
+
internals$jscomp$inline_1957
|
16397
16402
|
)),
|
16398
|
-
(injectedHook = hook$jscomp$
|
16403
|
+
(injectedHook = hook$jscomp$inline_2411);
|
16399
16404
|
} catch (err) {}
|
16400
16405
|
}
|
16401
16406
|
function noop() {}
|
@@ -16648,7 +16653,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
|
16648
16653
|
exports.useFormStatus = function () {
|
16649
16654
|
return ReactSharedInternals.H.useHostTransitionStatus();
|
16650
16655
|
};
|
16651
|
-
exports.version = "19.2.0-canary-
|
16656
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
16652
16657
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
16653
16658
|
"function" ===
|
16654
16659
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
@@ -9146,5 +9146,5 @@
|
|
9146
9146
|
'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'
|
9147
9147
|
);
|
9148
9148
|
};
|
9149
|
-
exports.version = "19.2.0-canary-
|
9149
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
9150
9150
|
})();
|
@@ -5989,4 +5989,4 @@ exports.renderToString = function (children, options) {
|
|
5989
5989
|
'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'
|
5990
5990
|
);
|
5991
5991
|
};
|
5992
|
-
exports.version = "19.2.0-canary-
|
5992
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
@@ -9146,5 +9146,5 @@
|
|
9146
9146
|
'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'
|
9147
9147
|
);
|
9148
9148
|
};
|
9149
|
-
exports.version = "19.2.0-canary-
|
9149
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
9150
9150
|
})();
|
@@ -6069,4 +6069,4 @@ exports.renderToString = function (children, options) {
|
|
6069
6069
|
'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'
|
6070
6070
|
);
|
6071
6071
|
};
|
6072
|
-
exports.version = "19.2.0-canary-
|
6072
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
@@ -7872,11 +7872,11 @@
|
|
7872
7872
|
}
|
7873
7873
|
function ensureCorrectIsomorphicReactVersion() {
|
7874
7874
|
var isomorphicReactPackageVersion = React.version;
|
7875
|
-
if ("19.2.0-canary-
|
7875
|
+
if ("19.2.0-canary-7a2c7045-20250506" !== isomorphicReactPackageVersion)
|
7876
7876
|
throw Error(
|
7877
7877
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7878
7878
|
(isomorphicReactPackageVersion +
|
7879
|
-
"\n - react-dom: 19.2.0-canary-
|
7879
|
+
"\n - react-dom: 19.2.0-canary-7a2c7045-20250506\nLearn more: https://react.dev/warnings/version-mismatch")
|
7880
7880
|
);
|
7881
7881
|
}
|
7882
7882
|
var React = require("react"),
|
@@ -9566,5 +9566,5 @@
|
|
9566
9566
|
startWork(request);
|
9567
9567
|
});
|
9568
9568
|
};
|
9569
|
-
exports.version = "19.2.0-canary-
|
9569
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
9570
9570
|
})();
|
@@ -6344,12 +6344,12 @@ function abort(request, reason) {
|
|
6344
6344
|
}
|
6345
6345
|
function ensureCorrectIsomorphicReactVersion() {
|
6346
6346
|
var isomorphicReactPackageVersion = React.version;
|
6347
|
-
if ("19.2.0-canary-
|
6347
|
+
if ("19.2.0-canary-7a2c7045-20250506" !== isomorphicReactPackageVersion)
|
6348
6348
|
throw Error(
|
6349
6349
|
formatProdErrorMessage(
|
6350
6350
|
527,
|
6351
6351
|
isomorphicReactPackageVersion,
|
6352
|
-
"19.2.0-canary-
|
6352
|
+
"19.2.0-canary-7a2c7045-20250506"
|
6353
6353
|
)
|
6354
6354
|
);
|
6355
6355
|
}
|
@@ -6496,4 +6496,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6496
6496
|
startWork(request);
|
6497
6497
|
});
|
6498
6498
|
};
|
6499
|
-
exports.version = "19.2.0-canary-
|
6499
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
@@ -8751,13 +8751,13 @@ function abort(request, reason) {
|
|
8751
8751
|
}
|
8752
8752
|
var isomorphicReactPackageVersion$jscomp$inline_748 = React.version;
|
8753
8753
|
if (
|
8754
|
-
"19.2.0-canary-
|
8754
|
+
"19.2.0-canary-7a2c7045-20250506" !==
|
8755
8755
|
isomorphicReactPackageVersion$jscomp$inline_748
|
8756
8756
|
)
|
8757
8757
|
throw Error(
|
8758
8758
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8759
8759
|
(isomorphicReactPackageVersion$jscomp$inline_748 +
|
8760
|
-
"\n - react-dom: 19.2.0-canary-
|
8760
|
+
"\n - react-dom: 19.2.0-canary-7a2c7045-20250506\nLearn more: https://react.dev/warnings/version-mismatch")
|
8761
8761
|
);
|
8762
8762
|
exports.renderToReadableStream = function (children, options) {
|
8763
8763
|
return new Promise(function (resolve, reject) {
|
@@ -8850,4 +8850,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
8850
8850
|
startWork(request$jscomp$0);
|
8851
8851
|
});
|
8852
8852
|
};
|
8853
|
-
exports.version = "19.2.0-canary-
|
8853
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
@@ -5972,13 +5972,13 @@ function abort(request, reason) {
|
|
5972
5972
|
}
|
5973
5973
|
var isomorphicReactPackageVersion$jscomp$inline_768 = React.version;
|
5974
5974
|
if (
|
5975
|
-
"19.2.0-canary-
|
5975
|
+
"19.2.0-canary-7a2c7045-20250506" !==
|
5976
5976
|
isomorphicReactPackageVersion$jscomp$inline_768
|
5977
5977
|
)
|
5978
5978
|
throw Error(
|
5979
5979
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
5980
5980
|
(isomorphicReactPackageVersion$jscomp$inline_768 +
|
5981
|
-
"\n - react-dom: 19.2.0-canary-
|
5981
|
+
"\n - react-dom: 19.2.0-canary-7a2c7045-20250506\nLearn more: https://react.dev/warnings/version-mismatch")
|
5982
5982
|
);
|
5983
5983
|
exports.renderToReadableStream = function (children, options) {
|
5984
5984
|
return new Promise(function (resolve, reject) {
|
@@ -6069,4 +6069,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6069
6069
|
startWork(request);
|
6070
6070
|
});
|
6071
6071
|
};
|
6072
|
-
exports.version = "19.2.0-canary-
|
6072
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
@@ -7895,11 +7895,11 @@
|
|
7895
7895
|
}
|
7896
7896
|
function ensureCorrectIsomorphicReactVersion() {
|
7897
7897
|
var isomorphicReactPackageVersion = React.version;
|
7898
|
-
if ("19.2.0-canary-
|
7898
|
+
if ("19.2.0-canary-7a2c7045-20250506" !== isomorphicReactPackageVersion)
|
7899
7899
|
throw Error(
|
7900
7900
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7901
7901
|
(isomorphicReactPackageVersion +
|
7902
|
-
"\n - react-dom: 19.2.0-canary-
|
7902
|
+
"\n - react-dom: 19.2.0-canary-7a2c7045-20250506\nLearn more: https://react.dev/warnings/version-mismatch")
|
7903
7903
|
);
|
7904
7904
|
}
|
7905
7905
|
var React = require("react"),
|
@@ -9585,5 +9585,5 @@
|
|
9585
9585
|
startWork(request);
|
9586
9586
|
});
|
9587
9587
|
};
|
9588
|
-
exports.version = "19.2.0-canary-
|
9588
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
9589
9589
|
})();
|
@@ -6439,11 +6439,11 @@ function abort(request, reason) {
|
|
6439
6439
|
}
|
6440
6440
|
function ensureCorrectIsomorphicReactVersion() {
|
6441
6441
|
var isomorphicReactPackageVersion = React.version;
|
6442
|
-
if ("19.2.0-canary-
|
6442
|
+
if ("19.2.0-canary-7a2c7045-20250506" !== isomorphicReactPackageVersion)
|
6443
6443
|
throw Error(
|
6444
6444
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6445
6445
|
(isomorphicReactPackageVersion +
|
6446
|
-
"\n - react-dom: 19.2.0-canary-
|
6446
|
+
"\n - react-dom: 19.2.0-canary-7a2c7045-20250506\nLearn more: https://react.dev/warnings/version-mismatch")
|
6447
6447
|
);
|
6448
6448
|
}
|
6449
6449
|
ensureCorrectIsomorphicReactVersion();
|
@@ -6589,4 +6589,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6589
6589
|
startWork(request);
|
6590
6590
|
});
|
6591
6591
|
};
|
6592
|
-
exports.version = "19.2.0-canary-
|
6592
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
@@ -7764,11 +7764,11 @@
|
|
7764
7764
|
}
|
7765
7765
|
function ensureCorrectIsomorphicReactVersion() {
|
7766
7766
|
var isomorphicReactPackageVersion = React.version;
|
7767
|
-
if ("19.2.0-canary-
|
7767
|
+
if ("19.2.0-canary-7a2c7045-20250506" !== isomorphicReactPackageVersion)
|
7768
7768
|
throw Error(
|
7769
7769
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
7770
7770
|
(isomorphicReactPackageVersion +
|
7771
|
-
"\n - react-dom: 19.2.0-canary-
|
7771
|
+
"\n - react-dom: 19.2.0-canary-7a2c7045-20250506\nLearn more: https://react.dev/warnings/version-mismatch")
|
7772
7772
|
);
|
7773
7773
|
}
|
7774
7774
|
function createDrainHandler(destination, request) {
|
@@ -9453,5 +9453,5 @@
|
|
9453
9453
|
}
|
9454
9454
|
};
|
9455
9455
|
};
|
9456
|
-
exports.version = "19.2.0-canary-
|
9456
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
9457
9457
|
})();
|
@@ -6334,11 +6334,11 @@ function abort(request, reason) {
|
|
6334
6334
|
}
|
6335
6335
|
function ensureCorrectIsomorphicReactVersion() {
|
6336
6336
|
var isomorphicReactPackageVersion = React.version;
|
6337
|
-
if ("19.2.0-canary-
|
6337
|
+
if ("19.2.0-canary-7a2c7045-20250506" !== isomorphicReactPackageVersion)
|
6338
6338
|
throw Error(
|
6339
6339
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6340
6340
|
(isomorphicReactPackageVersion +
|
6341
|
-
"\n - react-dom: 19.2.0-canary-
|
6341
|
+
"\n - react-dom: 19.2.0-canary-7a2c7045-20250506\nLearn more: https://react.dev/warnings/version-mismatch")
|
6342
6342
|
);
|
6343
6343
|
}
|
6344
6344
|
ensureCorrectIsomorphicReactVersion();
|
@@ -6487,4 +6487,4 @@ exports.renderToPipeableStream = function (children, options) {
|
|
6487
6487
|
}
|
6488
6488
|
};
|
6489
6489
|
};
|
6490
|
-
exports.version = "19.2.0-canary-
|
6490
|
+
exports.version = "19.2.0-canary-7a2c7045-20250506";
|
@@ -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-7a2c7045-20250506";
|
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-7a2c7045-20250506";
|
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-7a2c7045-20250506",
|
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-7a2c7045-20250506"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"react": "19.2.0-canary-
|
23
|
+
"react": "19.2.0-canary-7a2c7045-20250506"
|
24
24
|
},
|
25
25
|
"files": [
|
26
26
|
"LICENSE",
|