react 19.2.0-canary-e2332183-20250924 → 19.2.0-canary-8bb7241f-20250926
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
|
@@ -1224,6 +1224,9 @@
|
|
|
1224
1224
|
);
|
|
1225
1225
|
return resolveDispatcher().useEffect(create, deps);
|
|
1226
1226
|
};
|
|
1227
|
+
exports.useEffectEvent = function (callback) {
|
|
1228
|
+
return resolveDispatcher().useEffectEvent(callback);
|
|
1229
|
+
};
|
|
1227
1230
|
exports.useId = function () {
|
|
1228
1231
|
return resolveDispatcher().useId();
|
|
1229
1232
|
};
|
|
@@ -1273,7 +1276,7 @@
|
|
|
1273
1276
|
exports.useTransition = function () {
|
|
1274
1277
|
return resolveDispatcher().useTransition();
|
|
1275
1278
|
};
|
|
1276
|
-
exports.version = "19.2.0-canary-
|
|
1279
|
+
exports.version = "19.2.0-canary-8bb7241f-20250926";
|
|
1277
1280
|
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
|
1278
1281
|
"function" ===
|
|
1279
1282
|
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
package/cjs/react.production.js
CHANGED
|
@@ -495,6 +495,9 @@ exports.useDeferredValue = function (value, initialValue) {
|
|
|
495
495
|
exports.useEffect = function (create, deps) {
|
|
496
496
|
return ReactSharedInternals.H.useEffect(create, deps);
|
|
497
497
|
};
|
|
498
|
+
exports.useEffectEvent = function (callback) {
|
|
499
|
+
return ReactSharedInternals.H.useEffectEvent(callback);
|
|
500
|
+
};
|
|
498
501
|
exports.useId = function () {
|
|
499
502
|
return ReactSharedInternals.H.useId();
|
|
500
503
|
};
|
|
@@ -536,4 +539,4 @@ exports.useSyncExternalStore = function (
|
|
|
536
539
|
exports.useTransition = function () {
|
|
537
540
|
return ReactSharedInternals.H.useTransition();
|
|
538
541
|
};
|
|
539
|
-
exports.version = "19.2.0-canary-
|
|
542
|
+
exports.version = "19.2.0-canary-8bb7241f-20250926";
|