react 19.0.0-canary-33a32441e9-20240418 → 19.0.0-canary-db913d8e17-20240422
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-jsx-dev-runtime.development.js +7 -4
- package/cjs/react-jsx-dev-runtime.production.js +4 -9
- package/cjs/react-jsx-dev-runtime.profiling.js +4 -9
- package/cjs/react-jsx-runtime.development.js +7 -4
- package/cjs/react-jsx-runtime.production.js +24 -144
- package/cjs/react-jsx-runtime.profiling.js +24 -144
- package/cjs/react-jsx-runtime.react-server.development.js +7 -4
- package/cjs/react-jsx-runtime.react-server.production.js +29 -151
- package/cjs/react.development.js +18 -8
- package/cjs/react.production.js +469 -1029
- package/cjs/react.react-server.development.js +8 -5
- package/cjs/react.react-server.production.js +479 -986
- package/index.js +1 -1
- package/jsx-dev-runtime.js +1 -1
- package/jsx-runtime.js +1 -1
- package/jsx-runtime.react-server.js +1 -1
- package/package.json +1 -1
- package/react.react-server.js +1 -1
- package/cjs/react-jsx-dev-runtime.production.min.js +0 -12
- package/cjs/react-jsx-dev-runtime.production.min.js.map +0 -1
- package/cjs/react-jsx-dev-runtime.profiling.min.js +0 -12
- package/cjs/react-jsx-dev-runtime.profiling.min.js.map +0 -1
- package/cjs/react-jsx-runtime.production.min.js +0 -12
- package/cjs/react-jsx-runtime.production.min.js.map +0 -1
- package/cjs/react-jsx-runtime.profiling.min.js +0 -12
- package/cjs/react-jsx-runtime.profiling.min.js.map +0 -1
- package/cjs/react-jsx-runtime.react-server.production.min.js +0 -13
- package/cjs/react-jsx-runtime.react-server.production.min.js.map +0 -1
- package/cjs/react.production.min.js +0 -30
- package/cjs/react.production.min.js.map +0 -1
- package/cjs/react.react-server.production.min.js +0 -29
- package/cjs/react.react-server.production.min.js.map +0 -1
@@ -1378,11 +1378,14 @@ function validateChildKeys(node, parentType) {
|
|
1378
1378
|
// but now we print a separate warning for them later.
|
1379
1379
|
if (iteratorFn !== node.entries) {
|
1380
1380
|
var iterator = iteratorFn.call(node);
|
1381
|
-
var step;
|
1382
1381
|
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1382
|
+
if (iterator !== node) {
|
1383
|
+
var step;
|
1384
|
+
|
1385
|
+
while (!(step = iterator.next()).done) {
|
1386
|
+
if (isValidElement(step.value)) {
|
1387
|
+
validateExplicitKey(step.value, parentType);
|
1388
|
+
}
|
1386
1389
|
}
|
1387
1390
|
}
|
1388
1391
|
}
|
@@ -2272,7 +2275,7 @@ function warnAboutTransitionSubscriptions(prevTransition, currentTransition) {
|
|
2272
2275
|
|
2273
2276
|
function noop() {}
|
2274
2277
|
|
2275
|
-
var ReactVersion = '19.0.0-canary-
|
2278
|
+
var ReactVersion = '19.0.0-canary-db913d8e17-20240422';
|
2276
2279
|
|
2277
2280
|
// Patch fetch
|
2278
2281
|
var Children = {
|