react-dom 19.1.0-canary-37906d4d-20250127 → 19.1.0-canary-c492f975-20250128
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 +363 -310
- package/cjs/react-dom-client.production.js +391 -353
- package/cjs/react-dom-profiling.development.js +363 -310
- package/cjs/react-dom-profiling.profiling.js +405 -365
- 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
|
@@ -8806,5 +8806,5 @@
|
|
|
8806
8806
|
'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'
|
|
8807
8807
|
);
|
|
8808
8808
|
};
|
|
8809
|
-
exports.version = "19.1.0-canary-
|
|
8809
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
8810
8810
|
})();
|
|
@@ -5840,4 +5840,4 @@ exports.renderToString = function (children, options) {
|
|
|
5840
5840
|
'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'
|
|
5841
5841
|
);
|
|
5842
5842
|
};
|
|
5843
|
-
exports.version = "19.1.0-canary-
|
|
5843
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
@@ -8806,5 +8806,5 @@
|
|
|
8806
8806
|
'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'
|
|
8807
8807
|
);
|
|
8808
8808
|
};
|
|
8809
|
-
exports.version = "19.1.0-canary-
|
|
8809
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
8810
8810
|
})();
|
|
@@ -5920,4 +5920,4 @@ exports.renderToString = function (children, options) {
|
|
|
5920
5920
|
'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'
|
|
5921
5921
|
);
|
|
5922
5922
|
};
|
|
5923
|
-
exports.version = "19.1.0-canary-
|
|
5923
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
@@ -7534,11 +7534,11 @@
|
|
|
7534
7534
|
}
|
|
7535
7535
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7536
7536
|
var isomorphicReactPackageVersion = React.version;
|
|
7537
|
-
if ("19.1.0-canary-
|
|
7537
|
+
if ("19.1.0-canary-c492f975-20250128" !== isomorphicReactPackageVersion)
|
|
7538
7538
|
throw Error(
|
|
7539
7539
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
7540
7540
|
(isomorphicReactPackageVersion +
|
|
7541
|
-
"\n - react-dom: 19.1.0-canary-
|
|
7541
|
+
"\n - react-dom: 19.1.0-canary-c492f975-20250128\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
7542
7542
|
);
|
|
7543
7543
|
}
|
|
7544
7544
|
var React = require("react"),
|
|
@@ -9188,5 +9188,5 @@
|
|
|
9188
9188
|
startWork(request);
|
|
9189
9189
|
});
|
|
9190
9190
|
};
|
|
9191
|
-
exports.version = "19.1.0-canary-
|
|
9191
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
9192
9192
|
})();
|
|
@@ -6170,12 +6170,12 @@ function abort(request, reason) {
|
|
|
6170
6170
|
}
|
|
6171
6171
|
function ensureCorrectIsomorphicReactVersion() {
|
|
6172
6172
|
var isomorphicReactPackageVersion = React.version;
|
|
6173
|
-
if ("19.1.0-canary-
|
|
6173
|
+
if ("19.1.0-canary-c492f975-20250128" !== isomorphicReactPackageVersion)
|
|
6174
6174
|
throw Error(
|
|
6175
6175
|
formatProdErrorMessage(
|
|
6176
6176
|
527,
|
|
6177
6177
|
isomorphicReactPackageVersion,
|
|
6178
|
-
"19.1.0-canary-
|
|
6178
|
+
"19.1.0-canary-c492f975-20250128"
|
|
6179
6179
|
)
|
|
6180
6180
|
);
|
|
6181
6181
|
}
|
|
@@ -6322,4 +6322,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
6322
6322
|
startWork(request);
|
|
6323
6323
|
});
|
|
6324
6324
|
};
|
|
6325
|
-
exports.version = "19.1.0-canary-
|
|
6325
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
@@ -8422,13 +8422,13 @@ function abort(request, reason) {
|
|
|
8422
8422
|
}
|
|
8423
8423
|
var isomorphicReactPackageVersion$jscomp$inline_722 = React.version;
|
|
8424
8424
|
if (
|
|
8425
|
-
"19.1.0-canary-
|
|
8425
|
+
"19.1.0-canary-c492f975-20250128" !==
|
|
8426
8426
|
isomorphicReactPackageVersion$jscomp$inline_722
|
|
8427
8427
|
)
|
|
8428
8428
|
throw Error(
|
|
8429
8429
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
8430
8430
|
(isomorphicReactPackageVersion$jscomp$inline_722 +
|
|
8431
|
-
"\n - react-dom: 19.1.0-canary-
|
|
8431
|
+
"\n - react-dom: 19.1.0-canary-c492f975-20250128\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
8432
8432
|
);
|
|
8433
8433
|
exports.renderToReadableStream = function (children, options) {
|
|
8434
8434
|
return new Promise(function (resolve, reject) {
|
|
@@ -8520,4 +8520,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
8520
8520
|
startWork(request$jscomp$0);
|
|
8521
8521
|
});
|
|
8522
8522
|
};
|
|
8523
|
-
exports.version = "19.1.0-canary-
|
|
8523
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
@@ -5811,13 +5811,13 @@ function abort(request, reason) {
|
|
|
5811
5811
|
}
|
|
5812
5812
|
var isomorphicReactPackageVersion$jscomp$inline_751 = React.version;
|
|
5813
5813
|
if (
|
|
5814
|
-
"19.1.0-canary-
|
|
5814
|
+
"19.1.0-canary-c492f975-20250128" !==
|
|
5815
5815
|
isomorphicReactPackageVersion$jscomp$inline_751
|
|
5816
5816
|
)
|
|
5817
5817
|
throw Error(
|
|
5818
5818
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
5819
5819
|
(isomorphicReactPackageVersion$jscomp$inline_751 +
|
|
5820
|
-
"\n - react-dom: 19.1.0-canary-
|
|
5820
|
+
"\n - react-dom: 19.1.0-canary-c492f975-20250128\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
5821
5821
|
);
|
|
5822
5822
|
exports.renderToReadableStream = function (children, options) {
|
|
5823
5823
|
return new Promise(function (resolve, reject) {
|
|
@@ -5908,4 +5908,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
5908
5908
|
startWork(request);
|
|
5909
5909
|
});
|
|
5910
5910
|
};
|
|
5911
|
-
exports.version = "19.1.0-canary-
|
|
5911
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
@@ -7557,11 +7557,11 @@
|
|
|
7557
7557
|
}
|
|
7558
7558
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7559
7559
|
var isomorphicReactPackageVersion = React.version;
|
|
7560
|
-
if ("19.1.0-canary-
|
|
7560
|
+
if ("19.1.0-canary-c492f975-20250128" !== isomorphicReactPackageVersion)
|
|
7561
7561
|
throw Error(
|
|
7562
7562
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
7563
7563
|
(isomorphicReactPackageVersion +
|
|
7564
|
-
"\n - react-dom: 19.1.0-canary-
|
|
7564
|
+
"\n - react-dom: 19.1.0-canary-c492f975-20250128\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
7565
7565
|
);
|
|
7566
7566
|
}
|
|
7567
7567
|
var React = require("react"),
|
|
@@ -9207,5 +9207,5 @@
|
|
|
9207
9207
|
startWork(request);
|
|
9208
9208
|
});
|
|
9209
9209
|
};
|
|
9210
|
-
exports.version = "19.1.0-canary-
|
|
9210
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
9211
9211
|
})();
|
|
@@ -6265,11 +6265,11 @@ function abort(request, reason) {
|
|
|
6265
6265
|
}
|
|
6266
6266
|
function ensureCorrectIsomorphicReactVersion() {
|
|
6267
6267
|
var isomorphicReactPackageVersion = React.version;
|
|
6268
|
-
if ("19.1.0-canary-
|
|
6268
|
+
if ("19.1.0-canary-c492f975-20250128" !== isomorphicReactPackageVersion)
|
|
6269
6269
|
throw Error(
|
|
6270
6270
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
6271
6271
|
(isomorphicReactPackageVersion +
|
|
6272
|
-
"\n - react-dom: 19.1.0-canary-
|
|
6272
|
+
"\n - react-dom: 19.1.0-canary-c492f975-20250128\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
6273
6273
|
);
|
|
6274
6274
|
}
|
|
6275
6275
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -6415,4 +6415,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
|
6415
6415
|
startWork(request);
|
|
6416
6416
|
});
|
|
6417
6417
|
};
|
|
6418
|
-
exports.version = "19.1.0-canary-
|
|
6418
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
@@ -7432,11 +7432,11 @@
|
|
|
7432
7432
|
}
|
|
7433
7433
|
function ensureCorrectIsomorphicReactVersion() {
|
|
7434
7434
|
var isomorphicReactPackageVersion = React.version;
|
|
7435
|
-
if ("19.1.0-canary-
|
|
7435
|
+
if ("19.1.0-canary-c492f975-20250128" !== isomorphicReactPackageVersion)
|
|
7436
7436
|
throw Error(
|
|
7437
7437
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
7438
7438
|
(isomorphicReactPackageVersion +
|
|
7439
|
-
"\n - react-dom: 19.1.0-canary-
|
|
7439
|
+
"\n - react-dom: 19.1.0-canary-c492f975-20250128\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
7440
7440
|
);
|
|
7441
7441
|
}
|
|
7442
7442
|
function createDrainHandler(destination, request) {
|
|
@@ -9081,5 +9081,5 @@
|
|
|
9081
9081
|
}
|
|
9082
9082
|
};
|
|
9083
9083
|
};
|
|
9084
|
-
exports.version = "19.1.0-canary-
|
|
9084
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
9085
9085
|
})();
|
|
@@ -6157,11 +6157,11 @@ function abort(request, reason) {
|
|
|
6157
6157
|
}
|
|
6158
6158
|
function ensureCorrectIsomorphicReactVersion() {
|
|
6159
6159
|
var isomorphicReactPackageVersion = React.version;
|
|
6160
|
-
if ("19.1.0-canary-
|
|
6160
|
+
if ("19.1.0-canary-c492f975-20250128" !== isomorphicReactPackageVersion)
|
|
6161
6161
|
throw Error(
|
|
6162
6162
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
|
6163
6163
|
(isomorphicReactPackageVersion +
|
|
6164
|
-
"\n - react-dom: 19.1.0-canary-
|
|
6164
|
+
"\n - react-dom: 19.1.0-canary-c492f975-20250128\nLearn more: https://react.dev/warnings/version-mismatch")
|
|
6165
6165
|
);
|
|
6166
6166
|
}
|
|
6167
6167
|
ensureCorrectIsomorphicReactVersion();
|
|
@@ -6310,4 +6310,4 @@ exports.renderToPipeableStream = function (children, options) {
|
|
|
6310
6310
|
}
|
|
6311
6311
|
};
|
|
6312
6312
|
};
|
|
6313
|
-
exports.version = "19.1.0-canary-
|
|
6313
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
@@ -416,7 +416,7 @@
|
|
|
416
416
|
exports.useFormStatus = function () {
|
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
|
418
418
|
};
|
|
419
|
-
exports.version = "19.1.0-canary-
|
|
419
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
|
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.1.0-canary-
|
|
210
|
+
exports.version = "19.1.0-canary-c492f975-20250128";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dom",
|
|
3
|
-
"version": "19.1.0-canary-
|
|
3
|
+
"version": "19.1.0-canary-c492f975-20250128",
|
|
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.26.0-canary-
|
|
20
|
+
"scheduler": "0.26.0-canary-c492f975-20250128"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"react": "19.1.0-canary-
|
|
23
|
+
"react": "19.1.0-canary-c492f975-20250128"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"LICENSE",
|