react-dom 19.2.0-canary-d415fd3e-20250919 → 19.2.0-canary-1eca9a27-20250922

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.
@@ -2128,14 +2128,14 @@ var isInputEventSupported = !1;
2128
2128
  if (canUseDOM) {
2129
2129
  var JSCompiler_inline_result$jscomp$303;
2130
2130
  if (canUseDOM) {
2131
- var isSupported$jscomp$inline_447 = "oninput" in document;
2132
- if (!isSupported$jscomp$inline_447) {
2133
- var element$jscomp$inline_448 = document.createElement("div");
2134
- element$jscomp$inline_448.setAttribute("oninput", "return;");
2135
- isSupported$jscomp$inline_447 =
2136
- "function" === typeof element$jscomp$inline_448.oninput;
2131
+ var isSupported$jscomp$inline_445 = "oninput" in document;
2132
+ if (!isSupported$jscomp$inline_445) {
2133
+ var element$jscomp$inline_446 = document.createElement("div");
2134
+ element$jscomp$inline_446.setAttribute("oninput", "return;");
2135
+ isSupported$jscomp$inline_445 =
2136
+ "function" === typeof element$jscomp$inline_446.oninput;
2137
2137
  }
2138
- JSCompiler_inline_result$jscomp$303 = isSupported$jscomp$inline_447;
2138
+ JSCompiler_inline_result$jscomp$303 = isSupported$jscomp$inline_445;
2139
2139
  } else JSCompiler_inline_result$jscomp$303 = !1;
2140
2140
  isInputEventSupported =
2141
2141
  JSCompiler_inline_result$jscomp$303 &&
@@ -11288,6 +11288,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
11288
11288
  !workInProgressRootDidSkipSuspendedSiblings
11289
11289
  );
11290
11290
  if (0 !== getNextLanes(shouldTimeSlice, 0, !0)) break a;
11291
+ pendingEffectsLanes = lanes;
11291
11292
  shouldTimeSlice.timeoutHandle = scheduleTimeout(
11292
11293
  commitRootWhenReady.bind(
11293
11294
  null,
@@ -11302,7 +11303,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
11302
11303
  workInProgressSuspendedRetryLanes,
11303
11304
  workInProgressRootDidSkipSuspendedSiblings,
11304
11305
  renderWasConcurrent,
11305
- 2,
11306
+ "Throttled",
11306
11307
  -0,
11307
11308
  0
11308
11309
  ),
@@ -11322,7 +11323,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
11322
11323
  workInProgressSuspendedRetryLanes,
11323
11324
  workInProgressRootDidSkipSuspendedSiblings,
11324
11325
  renderWasConcurrent,
11325
- 0,
11326
+ null,
11326
11327
  -0,
11327
11328
  0
11328
11329
  );
@@ -11361,6 +11362,7 @@ function commitRootWhenReady(
11361
11362
  imgBytes: 0,
11362
11363
  suspenseyImages: [],
11363
11364
  waitingForImages: !0,
11365
+ waitingForViewTransition: !1,
11364
11366
  unsuspend: noop$1
11365
11367
  };
11366
11368
  accumulateSuspenseyCommitOnFiber(
@@ -11379,6 +11381,7 @@ function commitRootWhenReady(
11379
11381
  timeoutOffset
11380
11382
  );
11381
11383
  if (null !== timeoutOffset) {
11384
+ pendingEffectsLanes = lanes;
11382
11385
  root.cancelPendingCommit = timeoutOffset(
11383
11386
  commitRoot.bind(
11384
11387
  null,
@@ -11393,7 +11396,17 @@ function commitRootWhenReady(
11393
11396
  suspendedRetryLanes,
11394
11397
  exitStatus,
11395
11398
  suspendedCommitReason,
11396
- 1,
11399
+ suspendedCommitReason.waitingForViewTransition
11400
+ ? "Waiting for the previous Animation"
11401
+ : 0 < suspendedCommitReason.count
11402
+ ? 0 < suspendedCommitReason.imgCount
11403
+ ? "Suspended on CSS and Images"
11404
+ : "Suspended on CSS"
11405
+ : 1 === suspendedCommitReason.imgCount
11406
+ ? "Suspended on an Image"
11407
+ : 0 < suspendedCommitReason.imgCount
11408
+ ? "Suspended on Images"
11409
+ : null,
11397
11410
  completedRenderStartTime,
11398
11411
  completedRenderEndTime
11399
11412
  )
@@ -11498,6 +11511,7 @@ function prepareFreshStack(root, lanes) {
11498
11511
  timeoutHandle = root.cancelPendingCommit;
11499
11512
  null !== timeoutHandle &&
11500
11513
  ((root.cancelPendingCommit = null), timeoutHandle());
11514
+ pendingEffectsLanes = 0;
11501
11515
  resetWorkInProgressStack();
11502
11516
  workInProgressRoot = root;
11503
11517
  workInProgress = timeoutHandle = createWorkInProgress(root.current, null);
@@ -12826,20 +12840,20 @@ function extractEvents$1(
12826
12840
  }
12827
12841
  }
12828
12842
  for (
12829
- var i$jscomp$inline_1692 = 0;
12830
- i$jscomp$inline_1692 < simpleEventPluginEvents.length;
12831
- i$jscomp$inline_1692++
12843
+ var i$jscomp$inline_1672 = 0;
12844
+ i$jscomp$inline_1672 < simpleEventPluginEvents.length;
12845
+ i$jscomp$inline_1672++
12832
12846
  ) {
12833
- var eventName$jscomp$inline_1693 =
12834
- simpleEventPluginEvents[i$jscomp$inline_1692],
12835
- domEventName$jscomp$inline_1694 =
12836
- eventName$jscomp$inline_1693.toLowerCase(),
12837
- capitalizedEvent$jscomp$inline_1695 =
12838
- eventName$jscomp$inline_1693[0].toUpperCase() +
12839
- eventName$jscomp$inline_1693.slice(1);
12847
+ var eventName$jscomp$inline_1673 =
12848
+ simpleEventPluginEvents[i$jscomp$inline_1672],
12849
+ domEventName$jscomp$inline_1674 =
12850
+ eventName$jscomp$inline_1673.toLowerCase(),
12851
+ capitalizedEvent$jscomp$inline_1675 =
12852
+ eventName$jscomp$inline_1673[0].toUpperCase() +
12853
+ eventName$jscomp$inline_1673.slice(1);
12840
12854
  registerSimpleEvent(
12841
- domEventName$jscomp$inline_1694,
12842
- "on" + capitalizedEvent$jscomp$inline_1695
12855
+ domEventName$jscomp$inline_1674,
12856
+ "on" + capitalizedEvent$jscomp$inline_1675
12843
12857
  );
12844
12858
  }
12845
12859
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -16557,16 +16571,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
16557
16571
  0 === i && attemptExplicitHydrationTarget(target);
16558
16572
  }
16559
16573
  };
16560
- var isomorphicReactPackageVersion$jscomp$inline_1957 = React.version;
16574
+ var isomorphicReactPackageVersion$jscomp$inline_1937 = React.version;
16561
16575
  if (
16562
- "19.2.0-canary-d415fd3e-20250919" !==
16563
- isomorphicReactPackageVersion$jscomp$inline_1957
16576
+ "19.2.0-canary-1eca9a27-20250922" !==
16577
+ isomorphicReactPackageVersion$jscomp$inline_1937
16564
16578
  )
16565
16579
  throw Error(
16566
16580
  formatProdErrorMessage(
16567
16581
  527,
16568
- isomorphicReactPackageVersion$jscomp$inline_1957,
16569
- "19.2.0-canary-d415fd3e-20250919"
16582
+ isomorphicReactPackageVersion$jscomp$inline_1937,
16583
+ "19.2.0-canary-1eca9a27-20250922"
16570
16584
  )
16571
16585
  );
16572
16586
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16586,12 +16600,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
16586
16600
  null === componentOrElement ? null : componentOrElement.stateNode;
16587
16601
  return componentOrElement;
16588
16602
  };
16589
- var internals$jscomp$inline_1964 = {
16603
+ var internals$jscomp$inline_1944 = {
16590
16604
  bundleType: 0,
16591
- version: "19.2.0-canary-d415fd3e-20250919",
16605
+ version: "19.2.0-canary-1eca9a27-20250922",
16592
16606
  rendererPackageName: "react-dom",
16593
16607
  currentDispatcherRef: ReactSharedInternals,
16594
- reconcilerVersion: "19.2.0-canary-d415fd3e-20250919",
16608
+ reconcilerVersion: "19.2.0-canary-1eca9a27-20250922",
16595
16609
  getLaneLabelMap: function () {
16596
16610
  for (
16597
16611
  var map = new Map(), lane = 1, index$282 = 0;
@@ -16609,16 +16623,16 @@ var internals$jscomp$inline_1964 = {
16609
16623
  }
16610
16624
  };
16611
16625
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
16612
- var hook$jscomp$inline_2428 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16626
+ var hook$jscomp$inline_2408 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16613
16627
  if (
16614
- !hook$jscomp$inline_2428.isDisabled &&
16615
- hook$jscomp$inline_2428.supportsFiber
16628
+ !hook$jscomp$inline_2408.isDisabled &&
16629
+ hook$jscomp$inline_2408.supportsFiber
16616
16630
  )
16617
16631
  try {
16618
- (rendererID = hook$jscomp$inline_2428.inject(
16619
- internals$jscomp$inline_1964
16632
+ (rendererID = hook$jscomp$inline_2408.inject(
16633
+ internals$jscomp$inline_1944
16620
16634
  )),
16621
- (injectedHook = hook$jscomp$inline_2428);
16635
+ (injectedHook = hook$jscomp$inline_2408);
16622
16636
  } catch (err) {}
16623
16637
  }
16624
16638
  function getCrossOriginStringAs(as, input) {
@@ -16864,7 +16878,7 @@ exports.useFormState = function (action, initialState, permalink) {
16864
16878
  exports.useFormStatus = function () {
16865
16879
  return ReactSharedInternals.H.useHostTransitionStatus();
16866
16880
  };
16867
- exports.version = "19.2.0-canary-d415fd3e-20250919";
16881
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
16868
16882
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
16869
16883
  "function" ===
16870
16884
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -9742,5 +9742,5 @@
9742
9742
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
9743
9743
  );
9744
9744
  };
9745
- exports.version = "19.2.0-canary-d415fd3e-20250919";
9745
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
9746
9746
  })();
@@ -6491,4 +6491,4 @@ exports.renderToString = function (children, options) {
6491
6491
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
6492
6492
  );
6493
6493
  };
6494
- exports.version = "19.2.0-canary-d415fd3e-20250919";
6494
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
@@ -9742,5 +9742,5 @@
9742
9742
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
9743
9743
  );
9744
9744
  };
9745
- exports.version = "19.2.0-canary-d415fd3e-20250919";
9745
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
9746
9746
  })();
@@ -6574,4 +6574,4 @@ exports.renderToString = function (children, options) {
6574
6574
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
6575
6575
  );
6576
6576
  };
6577
- exports.version = "19.2.0-canary-d415fd3e-20250919";
6577
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
@@ -8485,11 +8485,11 @@
8485
8485
  }
8486
8486
  function ensureCorrectIsomorphicReactVersion() {
8487
8487
  var isomorphicReactPackageVersion = React.version;
8488
- if ("19.2.0-canary-d415fd3e-20250919" !== isomorphicReactPackageVersion)
8488
+ if ("19.2.0-canary-1eca9a27-20250922" !== isomorphicReactPackageVersion)
8489
8489
  throw Error(
8490
8490
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8491
8491
  (isomorphicReactPackageVersion +
8492
- "\n - react-dom: 19.2.0-canary-d415fd3e-20250919\nLearn more: https://react.dev/warnings/version-mismatch")
8492
+ "\n - react-dom: 19.2.0-canary-1eca9a27-20250922\nLearn more: https://react.dev/warnings/version-mismatch")
8493
8493
  );
8494
8494
  }
8495
8495
  var React = require("react"),
@@ -10183,5 +10183,5 @@
10183
10183
  startWork(request);
10184
10184
  });
10185
10185
  };
10186
- exports.version = "19.2.0-canary-d415fd3e-20250919";
10186
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
10187
10187
  })();
@@ -6875,12 +6875,12 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6875
6875
  }
6876
6876
  function ensureCorrectIsomorphicReactVersion() {
6877
6877
  var isomorphicReactPackageVersion = React.version;
6878
- if ("19.2.0-canary-d415fd3e-20250919" !== isomorphicReactPackageVersion)
6878
+ if ("19.2.0-canary-1eca9a27-20250922" !== isomorphicReactPackageVersion)
6879
6879
  throw Error(
6880
6880
  formatProdErrorMessage(
6881
6881
  527,
6882
6882
  isomorphicReactPackageVersion,
6883
- "19.2.0-canary-d415fd3e-20250919"
6883
+ "19.2.0-canary-1eca9a27-20250922"
6884
6884
  )
6885
6885
  );
6886
6886
  }
@@ -7027,4 +7027,4 @@ exports.renderToReadableStream = function (children, options) {
7027
7027
  startWork(request);
7028
7028
  });
7029
7029
  };
7030
- exports.version = "19.2.0-canary-d415fd3e-20250919";
7030
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
@@ -9370,13 +9370,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
9370
9370
  }
9371
9371
  var isomorphicReactPackageVersion$jscomp$inline_764 = React.version;
9372
9372
  if (
9373
- "19.2.0-canary-d415fd3e-20250919" !==
9373
+ "19.2.0-canary-1eca9a27-20250922" !==
9374
9374
  isomorphicReactPackageVersion$jscomp$inline_764
9375
9375
  )
9376
9376
  throw Error(
9377
9377
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
9378
9378
  (isomorphicReactPackageVersion$jscomp$inline_764 +
9379
- "\n - react-dom: 19.2.0-canary-d415fd3e-20250919\nLearn more: https://react.dev/warnings/version-mismatch")
9379
+ "\n - react-dom: 19.2.0-canary-1eca9a27-20250922\nLearn more: https://react.dev/warnings/version-mismatch")
9380
9380
  );
9381
9381
  exports.renderToReadableStream = function (children, options) {
9382
9382
  return new Promise(function (resolve, reject) {
@@ -9469,4 +9469,4 @@ exports.renderToReadableStream = function (children, options) {
9469
9469
  startWork(request$jscomp$0);
9470
9470
  });
9471
9471
  };
9472
- exports.version = "19.2.0-canary-d415fd3e-20250919";
9472
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
@@ -6523,13 +6523,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6523
6523
  }
6524
6524
  var isomorphicReactPackageVersion$jscomp$inline_816 = React.version;
6525
6525
  if (
6526
- "19.2.0-canary-d415fd3e-20250919" !==
6526
+ "19.2.0-canary-1eca9a27-20250922" !==
6527
6527
  isomorphicReactPackageVersion$jscomp$inline_816
6528
6528
  )
6529
6529
  throw Error(
6530
6530
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6531
6531
  (isomorphicReactPackageVersion$jscomp$inline_816 +
6532
- "\n - react-dom: 19.2.0-canary-d415fd3e-20250919\nLearn more: https://react.dev/warnings/version-mismatch")
6532
+ "\n - react-dom: 19.2.0-canary-1eca9a27-20250922\nLearn more: https://react.dev/warnings/version-mismatch")
6533
6533
  );
6534
6534
  exports.renderToReadableStream = function (children, options) {
6535
6535
  return new Promise(function (resolve, reject) {
@@ -6620,4 +6620,4 @@ exports.renderToReadableStream = function (children, options) {
6620
6620
  startWork(request);
6621
6621
  });
6622
6622
  };
6623
- exports.version = "19.2.0-canary-d415fd3e-20250919";
6623
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
@@ -8508,11 +8508,11 @@
8508
8508
  }
8509
8509
  function ensureCorrectIsomorphicReactVersion() {
8510
8510
  var isomorphicReactPackageVersion = React.version;
8511
- if ("19.2.0-canary-d415fd3e-20250919" !== isomorphicReactPackageVersion)
8511
+ if ("19.2.0-canary-1eca9a27-20250922" !== isomorphicReactPackageVersion)
8512
8512
  throw Error(
8513
8513
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8514
8514
  (isomorphicReactPackageVersion +
8515
- "\n - react-dom: 19.2.0-canary-d415fd3e-20250919\nLearn more: https://react.dev/warnings/version-mismatch")
8515
+ "\n - react-dom: 19.2.0-canary-1eca9a27-20250922\nLearn more: https://react.dev/warnings/version-mismatch")
8516
8516
  );
8517
8517
  }
8518
8518
  var React = require("react"),
@@ -10202,5 +10202,5 @@
10202
10202
  startWork(request);
10203
10203
  });
10204
10204
  };
10205
- exports.version = "19.2.0-canary-d415fd3e-20250919";
10205
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
10206
10206
  })();
@@ -6973,11 +6973,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6973
6973
  }
6974
6974
  function ensureCorrectIsomorphicReactVersion() {
6975
6975
  var isomorphicReactPackageVersion = React.version;
6976
- if ("19.2.0-canary-d415fd3e-20250919" !== isomorphicReactPackageVersion)
6976
+ if ("19.2.0-canary-1eca9a27-20250922" !== isomorphicReactPackageVersion)
6977
6977
  throw Error(
6978
6978
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6979
6979
  (isomorphicReactPackageVersion +
6980
- "\n - react-dom: 19.2.0-canary-d415fd3e-20250919\nLearn more: https://react.dev/warnings/version-mismatch")
6980
+ "\n - react-dom: 19.2.0-canary-1eca9a27-20250922\nLearn more: https://react.dev/warnings/version-mismatch")
6981
6981
  );
6982
6982
  }
6983
6983
  ensureCorrectIsomorphicReactVersion();
@@ -7123,4 +7123,4 @@ exports.renderToReadableStream = function (children, options) {
7123
7123
  startWork(request);
7124
7124
  });
7125
7125
  };
7126
- exports.version = "19.2.0-canary-d415fd3e-20250919";
7126
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
@@ -8383,11 +8383,11 @@
8383
8383
  }
8384
8384
  function ensureCorrectIsomorphicReactVersion() {
8385
8385
  var isomorphicReactPackageVersion = React.version;
8386
- if ("19.2.0-canary-d415fd3e-20250919" !== isomorphicReactPackageVersion)
8386
+ if ("19.2.0-canary-1eca9a27-20250922" !== isomorphicReactPackageVersion)
8387
8387
  throw Error(
8388
8388
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8389
8389
  (isomorphicReactPackageVersion +
8390
- "\n - react-dom: 19.2.0-canary-d415fd3e-20250919\nLearn more: https://react.dev/warnings/version-mismatch")
8390
+ "\n - react-dom: 19.2.0-canary-1eca9a27-20250922\nLearn more: https://react.dev/warnings/version-mismatch")
8391
8391
  );
8392
8392
  }
8393
8393
  function createDrainHandler(destination, request) {
@@ -10262,5 +10262,5 @@
10262
10262
  startWork(request);
10263
10263
  });
10264
10264
  };
10265
- exports.version = "19.2.0-canary-d415fd3e-20250919";
10265
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
10266
10266
  })();
@@ -6865,11 +6865,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6865
6865
  }
6866
6866
  function ensureCorrectIsomorphicReactVersion() {
6867
6867
  var isomorphicReactPackageVersion = React.version;
6868
- if ("19.2.0-canary-d415fd3e-20250919" !== isomorphicReactPackageVersion)
6868
+ if ("19.2.0-canary-1eca9a27-20250922" !== isomorphicReactPackageVersion)
6869
6869
  throw Error(
6870
6870
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6871
6871
  (isomorphicReactPackageVersion +
6872
- "\n - react-dom: 19.2.0-canary-d415fd3e-20250919\nLearn more: https://react.dev/warnings/version-mismatch")
6872
+ "\n - react-dom: 19.2.0-canary-1eca9a27-20250922\nLearn more: https://react.dev/warnings/version-mismatch")
6873
6873
  );
6874
6874
  }
6875
6875
  ensureCorrectIsomorphicReactVersion();
@@ -7207,4 +7207,4 @@ exports.renderToReadableStream = function (children, options) {
7207
7207
  startWork(request);
7208
7208
  });
7209
7209
  };
7210
- exports.version = "19.2.0-canary-d415fd3e-20250919";
7210
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.2.0-canary-d415fd3e-20250919";
419
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
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-d415fd3e-20250919";
210
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.2.0-canary-d415fd3e-20250919";
339
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
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-d415fd3e-20250919";
152
+ exports.version = "19.2.0-canary-1eca9a27-20250922";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.2.0-canary-d415fd3e-20250919",
3
+ "version": "19.2.0-canary-1eca9a27-20250922",
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-d415fd3e-20250919"
20
+ "scheduler": "0.27.0-canary-1eca9a27-20250922"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.2.0-canary-d415fd3e-20250919"
23
+ "react": "19.2.0-canary-1eca9a27-20250922"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",