react-dom 19.0.0-rc.0 → 19.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/react-dom-client.development.js +24461 -37682
- package/cjs/react-dom-client.production.js +2444 -2054
- package/cjs/react-dom-profiling.development.js +24830 -38118
- package/cjs/react-dom-profiling.profiling.js +2675 -2331
- package/cjs/react-dom-server-legacy.browser.development.js +8491 -11690
- package/cjs/react-dom-server-legacy.browser.production.js +914 -760
- package/cjs/react-dom-server-legacy.node.development.js +8491 -11690
- package/cjs/react-dom-server-legacy.node.production.js +910 -760
- package/cjs/react-dom-server.browser.development.js +8871 -11719
- package/cjs/react-dom-server.browser.production.js +1064 -772
- package/cjs/react-dom-server.bun.development.js +7850 -11199
- package/cjs/react-dom-server.bun.production.js +922 -758
- package/cjs/react-dom-server.edge.development.js +8892 -11737
- package/cjs/react-dom-server.edge.production.js +1047 -774
- package/cjs/react-dom-server.node.development.js +8762 -11698
- package/cjs/react-dom-server.node.production.js +1293 -988
- package/cjs/react-dom-test-utils.development.js +13 -75
- package/cjs/react-dom.development.js +401 -615
- package/cjs/react-dom.production.js +3 -2
- package/cjs/react-dom.react-server.development.js +322 -401
- package/cjs/react-dom.react-server.production.js +5 -7
- package/package.json +5 -5
- package/static.browser.js +1 -0
- package/static.edge.js +1 -0
- package/static.node.js +1 -0
@@ -9,6 +9,7 @@
|
|
9
9
|
*/
|
10
10
|
|
11
11
|
"use strict";
|
12
|
+
var React = require("react");
|
12
13
|
function formatProdErrorMessage(code) {
|
13
14
|
var url = "https://react.dev/errors/" + code;
|
14
15
|
if (1 < arguments.length) {
|
@@ -24,8 +25,6 @@ function formatProdErrorMessage(code) {
|
|
24
25
|
" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."
|
25
26
|
);
|
26
27
|
}
|
27
|
-
var ReactSharedInternals =
|
28
|
-
require("react").__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
29
28
|
function noop() {}
|
30
29
|
var Internals = {
|
31
30
|
d: {
|
@@ -56,6 +55,8 @@ function createPortal$1(children, containerInfo, implementation) {
|
|
56
55
|
implementation: implementation
|
57
56
|
};
|
58
57
|
}
|
58
|
+
var ReactSharedInternals =
|
59
|
+
React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;
|
59
60
|
function getCrossOriginStringAs(as, input) {
|
60
61
|
if ("font" === as) return "";
|
61
62
|
if ("string" === typeof input)
|