react 19.0.0-rc-f2df5694-20240916 → 19.0.0-rc-5dcb0097-20240918

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.
@@ -1416,15 +1416,14 @@
1416
1416
  };
1417
1417
  exports.startTransition = function (scope) {
1418
1418
  var prevTransition = ReactSharedInternals.T,
1419
- transition = {};
1420
- ReactSharedInternals.T = transition;
1421
- var currentTransition = ReactSharedInternals.T;
1422
- ReactSharedInternals.T._updatedFibers = new Set();
1419
+ currentTransition = {};
1420
+ ReactSharedInternals.T = currentTransition;
1421
+ currentTransition._updatedFibers = new Set();
1423
1422
  try {
1424
1423
  var returnValue = scope(),
1425
1424
  onStartTransitionFinish = ReactSharedInternals.S;
1426
1425
  null !== onStartTransitionFinish &&
1427
- onStartTransitionFinish(transition, returnValue);
1426
+ onStartTransitionFinish(currentTransition, returnValue);
1428
1427
  "object" === typeof returnValue &&
1429
1428
  null !== returnValue &&
1430
1429
  "function" === typeof returnValue.then &&
@@ -1517,7 +1516,7 @@
1517
1516
  exports.useTransition = function () {
1518
1517
  return resolveDispatcher().useTransition();
1519
1518
  };
1520
- exports.version = "19.0.0-rc-f2df5694-20240916";
1519
+ exports.version = "19.0.0-rc-5dcb0097-20240918";
1521
1520
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
1522
1521
  "function" ===
1523
1522
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -456,13 +456,13 @@ exports.memo = function (type, compare) {
456
456
  };
457
457
  exports.startTransition = function (scope) {
458
458
  var prevTransition = ReactSharedInternals.T,
459
- transition = {};
460
- ReactSharedInternals.T = transition;
459
+ currentTransition = {};
460
+ ReactSharedInternals.T = currentTransition;
461
461
  try {
462
462
  var returnValue = scope(),
463
463
  onStartTransitionFinish = ReactSharedInternals.S;
464
464
  null !== onStartTransitionFinish &&
465
- onStartTransitionFinish(transition, returnValue);
465
+ onStartTransitionFinish(currentTransition, returnValue);
466
466
  "object" === typeof returnValue &&
467
467
  null !== returnValue &&
468
468
  "function" === typeof returnValue.then &&
@@ -536,4 +536,4 @@ exports.useSyncExternalStore = function (
536
536
  exports.useTransition = function () {
537
537
  return ReactSharedInternals.H.useTransition();
538
538
  };
539
- exports.version = "19.0.0-rc-f2df5694-20240916";
539
+ exports.version = "19.0.0-rc-5dcb0097-20240918";
@@ -1113,5 +1113,5 @@
1113
1113
  exports.useMemo = function (create, deps) {
1114
1114
  return resolveDispatcher().useMemo(create, deps);
1115
1115
  };
1116
- exports.version = "19.0.0-rc-f2df5694-20240916";
1116
+ exports.version = "19.0.0-rc-5dcb0097-20240918";
1117
1117
  })();
@@ -424,4 +424,4 @@ exports.useId = function () {
424
424
  exports.useMemo = function (create, deps) {
425
425
  return ReactSharedInternals.H.useMemo(create, deps);
426
426
  };
427
- exports.version = "19.0.0-rc-f2df5694-20240916";
427
+ exports.version = "19.0.0-rc-5dcb0097-20240918";
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "keywords": [
5
5
  "react"
6
6
  ],
7
- "version": "19.0.0-rc-f2df5694-20240916",
7
+ "version": "19.0.0-rc-5dcb0097-20240918",
8
8
  "homepage": "https://react.dev/",
9
9
  "bugs": "https://github.com/facebook/react/issues",
10
10
  "license": "MIT",