react 19.1.0-canary-c492f975-20250128 → 19.1.0-canary-9ff42a87-20250130
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.development.js
CHANGED
@@ -487,7 +487,8 @@
|
|
487
487
|
oldElement._owner,
|
488
488
|
oldElement.props
|
489
489
|
);
|
490
|
-
|
490
|
+
oldElement._store &&
|
491
|
+
(newKey._store.validated = oldElement._store.validated);
|
491
492
|
return newKey;
|
492
493
|
}
|
493
494
|
function validateChildKeys(node, parentType) {
|
@@ -1521,7 +1522,7 @@
|
|
1521
1522
|
exports.useTransition = function () {
|
1522
1523
|
return resolveDispatcher().useTransition();
|
1523
1524
|
};
|
1524
|
-
exports.version = "19.1.0-canary-
|
1525
|
+
exports.version = "19.1.0-canary-9ff42a87-20250130";
|
1525
1526
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
1526
1527
|
"function" ===
|
1527
1528
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
package/cjs/react.production.js
CHANGED
@@ -449,7 +449,8 @@
|
|
449
449
|
oldElement._owner,
|
450
450
|
oldElement.props
|
451
451
|
);
|
452
|
-
|
452
|
+
oldElement._store &&
|
453
|
+
(newKey._store.validated = oldElement._store.validated);
|
453
454
|
return newKey;
|
454
455
|
}
|
455
456
|
function validateChildKeys(node, parentType) {
|
@@ -1110,5 +1111,5 @@
|
|
1110
1111
|
exports.useMemo = function (create, deps) {
|
1111
1112
|
return resolveDispatcher().useMemo(create, deps);
|
1112
1113
|
};
|
1113
|
-
exports.version = "19.1.0-canary-
|
1114
|
+
exports.version = "19.1.0-canary-9ff42a87-20250130";
|
1114
1115
|
})();
|