react-dom 19.2.0-canary-8bb7241f-20250926 → 19.2.0-canary-d15d7fd7-20250929

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.
@@ -3659,6 +3659,11 @@ function dispatchAction(componentIdentity, queue, action) {
3659
3659
  queue.next = componentIdentity;
3660
3660
  }
3661
3661
  }
3662
+ function throwOnUseEffectEventCall() {
3663
+ throw Error(
3664
+ "A function wrapped in useEffectEvent can't be called during rendering."
3665
+ );
3666
+ }
3662
3667
  function unsupportedStartTransition() {
3663
3668
  throw Error("startTransition cannot be called during server rendering.");
3664
3669
  }
@@ -3827,6 +3832,9 @@ var HooksDispatcher = {
3827
3832
  },
3828
3833
  useCacheRefresh: function () {
3829
3834
  return unsupportedRefresh;
3835
+ },
3836
+ useEffectEvent: function () {
3837
+ return throwOnUseEffectEventCall;
3830
3838
  }
3831
3839
  },
3832
3840
  currentResumableState = null,
@@ -6994,11 +7002,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6994
7002
  }
6995
7003
  function ensureCorrectIsomorphicReactVersion() {
6996
7004
  var isomorphicReactPackageVersion = React.version;
6997
- if ("19.2.0-canary-8bb7241f-20250926" !== isomorphicReactPackageVersion)
7005
+ if ("19.2.0-canary-d15d7fd7-20250929" !== isomorphicReactPackageVersion)
6998
7006
  throw Error(
6999
7007
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7000
7008
  (isomorphicReactPackageVersion +
7001
- "\n - react-dom: 19.2.0-canary-8bb7241f-20250926\nLearn more: https://react.dev/warnings/version-mismatch")
7009
+ "\n - react-dom: 19.2.0-canary-d15d7fd7-20250929\nLearn more: https://react.dev/warnings/version-mismatch")
7002
7010
  );
7003
7011
  }
7004
7012
  ensureCorrectIsomorphicReactVersion();
@@ -7144,4 +7152,4 @@ exports.renderToReadableStream = function (children, options) {
7144
7152
  startWork(request);
7145
7153
  });
7146
7154
  };
7147
- exports.version = "19.2.0-canary-8bb7241f-20250926";
7155
+ exports.version = "19.2.0-canary-d15d7fd7-20250929";
@@ -4048,6 +4048,11 @@
4048
4048
  queue.next = componentIdentity;
4049
4049
  }
4050
4050
  }
4051
+ function throwOnUseEffectEventCall() {
4052
+ throw Error(
4053
+ "A function wrapped in useEffectEvent can't be called during rendering."
4054
+ );
4055
+ }
4051
4056
  function unsupportedStartTransition() {
4052
4057
  throw Error("startTransition cannot be called during server rendering.");
4053
4058
  }
@@ -8405,11 +8410,11 @@
8405
8410
  }
8406
8411
  function ensureCorrectIsomorphicReactVersion() {
8407
8412
  var isomorphicReactPackageVersion = React.version;
8408
- if ("19.2.0-canary-8bb7241f-20250926" !== isomorphicReactPackageVersion)
8413
+ if ("19.2.0-canary-d15d7fd7-20250929" !== isomorphicReactPackageVersion)
8409
8414
  throw Error(
8410
8415
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8411
8416
  (isomorphicReactPackageVersion +
8412
- "\n - react-dom: 19.2.0-canary-8bb7241f-20250926\nLearn more: https://react.dev/warnings/version-mismatch")
8417
+ "\n - react-dom: 19.2.0-canary-d15d7fd7-20250929\nLearn more: https://react.dev/warnings/version-mismatch")
8413
8418
  );
8414
8419
  }
8415
8420
  function createDrainHandler(destination, request) {
@@ -9952,6 +9957,9 @@
9952
9957
  },
9953
9958
  useCacheRefresh: function () {
9954
9959
  return unsupportedRefresh;
9960
+ },
9961
+ useEffectEvent: function () {
9962
+ return throwOnUseEffectEventCall;
9955
9963
  }
9956
9964
  },
9957
9965
  currentResumableState = null,
@@ -10285,5 +10293,5 @@
10285
10293
  startWork(request);
10286
10294
  });
10287
10295
  };
10288
- exports.version = "19.2.0-canary-8bb7241f-20250926";
10296
+ exports.version = "19.2.0-canary-d15d7fd7-20250929";
10289
10297
  })();
@@ -3565,6 +3565,11 @@ function dispatchAction(componentIdentity, queue, action) {
3565
3565
  queue.next = componentIdentity;
3566
3566
  }
3567
3567
  }
3568
+ function throwOnUseEffectEventCall() {
3569
+ throw Error(
3570
+ "A function wrapped in useEffectEvent can't be called during rendering."
3571
+ );
3572
+ }
3568
3573
  function unsupportedStartTransition() {
3569
3574
  throw Error("startTransition cannot be called during server rendering.");
3570
3575
  }
@@ -3730,6 +3735,9 @@ var HooksDispatcher = {
3730
3735
  },
3731
3736
  useCacheRefresh: function () {
3732
3737
  return unsupportedRefresh;
3738
+ },
3739
+ useEffectEvent: function () {
3740
+ return throwOnUseEffectEventCall;
3733
3741
  }
3734
3742
  },
3735
3743
  currentResumableState = null,
@@ -6885,11 +6893,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6885
6893
  }
6886
6894
  function ensureCorrectIsomorphicReactVersion() {
6887
6895
  var isomorphicReactPackageVersion = React.version;
6888
- if ("19.2.0-canary-8bb7241f-20250926" !== isomorphicReactPackageVersion)
6896
+ if ("19.2.0-canary-d15d7fd7-20250929" !== isomorphicReactPackageVersion)
6889
6897
  throw Error(
6890
6898
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6891
6899
  (isomorphicReactPackageVersion +
6892
- "\n - react-dom: 19.2.0-canary-8bb7241f-20250926\nLearn more: https://react.dev/warnings/version-mismatch")
6900
+ "\n - react-dom: 19.2.0-canary-d15d7fd7-20250929\nLearn more: https://react.dev/warnings/version-mismatch")
6893
6901
  );
6894
6902
  }
6895
6903
  ensureCorrectIsomorphicReactVersion();
@@ -7227,4 +7235,4 @@ exports.renderToReadableStream = function (children, options) {
7227
7235
  startWork(request);
7228
7236
  });
7229
7237
  };
7230
- exports.version = "19.2.0-canary-8bb7241f-20250926";
7238
+ exports.version = "19.2.0-canary-d15d7fd7-20250929";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.2.0-canary-8bb7241f-20250926";
419
+ exports.version = "19.2.0-canary-d15d7fd7-20250929";
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.2.0-canary-8bb7241f-20250926";
210
+ exports.version = "19.2.0-canary-d15d7fd7-20250929";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.2.0-canary-8bb7241f-20250926";
339
+ exports.version = "19.2.0-canary-d15d7fd7-20250929";
340
340
  })();
@@ -149,4 +149,4 @@ exports.preloadModule = function (href, options) {
149
149
  });
150
150
  } else Internals.d.m(href);
151
151
  };
152
- exports.version = "19.2.0-canary-8bb7241f-20250926";
152
+ exports.version = "19.2.0-canary-d15d7fd7-20250929";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.2.0-canary-8bb7241f-20250926",
3
+ "version": "19.2.0-canary-d15d7fd7-20250929",
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.27.0-canary-8bb7241f-20250926"
20
+ "scheduler": "0.27.0-canary-d15d7fd7-20250929"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.2.0-canary-8bb7241f-20250926"
23
+ "react": "19.2.0-canary-d15d7fd7-20250929"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",