react-dom 19.2.0-canary-2805f0ed-20250903 → 19.2.0-canary-3302d1f7-20250903

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.
@@ -591,7 +591,8 @@ function getLabelForLane(lane) {
591
591
  if (lane & 536870912) return "Offscreen";
592
592
  if (lane & 1073741824) return "Deferred";
593
593
  }
594
- var nextTransitionLane = 256,
594
+ var nextTransitionUpdateLane = 256,
595
+ nextTransitionDeferredLane = 262144,
595
596
  nextRetryLane = 4194304;
596
597
  function getHighestPriorityLanes(lanes) {
597
598
  var pendingSyncLanes = lanes & 42;
@@ -623,11 +624,12 @@ function getHighestPriorityLanes(lanes) {
623
624
  case 32768:
624
625
  case 65536:
625
626
  case 131072:
627
+ return lanes & 261888;
626
628
  case 262144:
627
629
  case 524288:
628
630
  case 1048576:
629
631
  case 2097152:
630
- return lanes & 4194048;
632
+ return lanes & 3932160;
631
633
  case 4194304:
632
634
  case 8388608:
633
635
  case 16777216:
@@ -736,12 +738,6 @@ function computeExpirationTime(lane, currentTime) {
736
738
  return -1;
737
739
  }
738
740
  }
739
- function claimNextTransitionLane() {
740
- var lane = nextTransitionLane;
741
- nextTransitionLane <<= 1;
742
- 0 === (nextTransitionLane & 4194048) && (nextTransitionLane = 256);
743
- return lane;
744
- }
745
741
  function claimNextRetryLane() {
746
742
  var lane = nextRetryLane;
747
743
  nextRetryLane <<= 1;
@@ -813,7 +809,7 @@ function markSpawnedDeferredLane(root, spawnedLane, entangledLanes) {
813
809
  root.entanglements[spawnedLaneIndex] =
814
810
  root.entanglements[spawnedLaneIndex] |
815
811
  1073741824 |
816
- (entangledLanes & 4194090);
812
+ (entangledLanes & 261930);
817
813
  }
818
814
  function markRootEntangled(root, entangledLanes) {
819
815
  var rootEntangledLanes = (root.entangledLanes |= entangledLanes);
@@ -2130,19 +2126,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
2130
2126
  }
2131
2127
  var isInputEventSupported = !1;
2132
2128
  if (canUseDOM) {
2133
- var JSCompiler_inline_result$jscomp$302;
2129
+ var JSCompiler_inline_result$jscomp$303;
2134
2130
  if (canUseDOM) {
2135
- var isSupported$jscomp$inline_446 = "oninput" in document;
2136
- if (!isSupported$jscomp$inline_446) {
2137
- var element$jscomp$inline_447 = document.createElement("div");
2138
- element$jscomp$inline_447.setAttribute("oninput", "return;");
2139
- isSupported$jscomp$inline_446 =
2140
- "function" === typeof element$jscomp$inline_447.oninput;
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;
2141
2137
  }
2142
- JSCompiler_inline_result$jscomp$302 = isSupported$jscomp$inline_446;
2143
- } else JSCompiler_inline_result$jscomp$302 = !1;
2138
+ JSCompiler_inline_result$jscomp$303 = isSupported$jscomp$inline_447;
2139
+ } else JSCompiler_inline_result$jscomp$303 = !1;
2144
2140
  isInputEventSupported =
2145
- JSCompiler_inline_result$jscomp$302 &&
2141
+ JSCompiler_inline_result$jscomp$303 &&
2146
2142
  (!document.documentMode || 9 < document.documentMode);
2147
2143
  }
2148
2144
  function stopWatchingForValueChange() {
@@ -5318,7 +5314,11 @@ function updateMemo(nextCreate, deps) {
5318
5314
  return prevState;
5319
5315
  }
5320
5316
  function mountDeferredValueImpl(hook, value, initialValue) {
5321
- if (void 0 === initialValue || 0 !== (renderLanes & 1073741824))
5317
+ if (
5318
+ void 0 === initialValue ||
5319
+ (0 !== (renderLanes & 1073741824) &&
5320
+ 0 === (workInProgressRootRenderLanes & 261930))
5321
+ )
5322
5322
  return (hook.memoizedState = value);
5323
5323
  hook.memoizedState = initialValue;
5324
5324
  hook = requestDeferredLane();
@@ -5334,7 +5334,11 @@ function updateDeferredValueImpl(hook, prevValue, value, initialValue) {
5334
5334
  objectIs(hook, prevValue) || (didReceiveUpdate = !0),
5335
5335
  hook
5336
5336
  );
5337
- if (0 === (renderLanes & 42) || 0 !== (renderLanes & 1073741824))
5337
+ if (
5338
+ 0 === (renderLanes & 42) ||
5339
+ (0 !== (renderLanes & 1073741824) &&
5340
+ 0 === (workInProgressRootRenderLanes & 261930))
5341
+ )
5338
5342
  return (didReceiveUpdate = !0), (hook.memoizedState = value);
5339
5343
  hook = requestDeferredLane();
5340
5344
  currentlyRenderingFiber.lanes |= hook;
@@ -11082,13 +11086,16 @@ function requestUpdateLane() {
11082
11086
  : resolveUpdatePriority();
11083
11087
  }
11084
11088
  function requestDeferredLane() {
11085
- 0 === workInProgressDeferredLane &&
11086
- (workInProgressDeferredLane =
11087
- 0 === (workInProgressRootRenderLanes & 536870912) || isHydrating
11088
- ? claimNextTransitionLane()
11089
- : 536870912);
11090
- var suspenseHandler = suspenseHandlerStackCursor.current;
11091
- null !== suspenseHandler && (suspenseHandler.flags |= 32);
11089
+ if (0 === workInProgressDeferredLane)
11090
+ if (0 === (workInProgressRootRenderLanes & 536870912) || isHydrating) {
11091
+ var lane = nextTransitionDeferredLane;
11092
+ nextTransitionDeferredLane <<= 1;
11093
+ 0 === (nextTransitionDeferredLane & 3932160) &&
11094
+ (nextTransitionDeferredLane = 262144);
11095
+ workInProgressDeferredLane = lane;
11096
+ } else workInProgressDeferredLane = 536870912;
11097
+ lane = suspenseHandlerStackCursor.current;
11098
+ null !== lane && (lane.flags |= 32);
11092
11099
  return workInProgressDeferredLane;
11093
11100
  }
11094
11101
  function scheduleUpdateOnFiber(root, fiber, lane) {
@@ -12250,7 +12257,7 @@ function flushSpawnedWork() {
12250
12257
  0 !== (pendingEffectsLanes & 3) && flushPendingEffects();
12251
12258
  ensureRootIsScheduled(root);
12252
12259
  remainingLanes = root.pendingLanes;
12253
- 0 !== (lanes & 4194090) && 0 !== (remainingLanes & 42)
12260
+ 0 !== (lanes & 261930) && 0 !== (remainingLanes & 42)
12254
12261
  ? ((nestedUpdateScheduled = !0),
12255
12262
  root === rootWithNestedUpdates
12256
12263
  ? nestedUpdateCount++
@@ -12655,8 +12662,12 @@ function scheduleImmediateRootScheduleTask() {
12655
12662
  function requestTransitionLane() {
12656
12663
  if (0 === currentEventTransitionLane) {
12657
12664
  var actionScopeLane = currentEntangledLane;
12658
- currentEventTransitionLane =
12659
- 0 !== actionScopeLane ? actionScopeLane : claimNextTransitionLane();
12665
+ 0 === actionScopeLane &&
12666
+ ((actionScopeLane = nextTransitionUpdateLane),
12667
+ (nextTransitionUpdateLane <<= 1),
12668
+ 0 === (nextTransitionUpdateLane & 261888) &&
12669
+ (nextTransitionUpdateLane = 256));
12670
+ currentEventTransitionLane = actionScopeLane;
12660
12671
  }
12661
12672
  return currentEventTransitionLane;
12662
12673
  }
@@ -12755,20 +12766,20 @@ function extractEvents$1(
12755
12766
  }
12756
12767
  }
12757
12768
  for (
12758
- var i$jscomp$inline_1675 = 0;
12759
- i$jscomp$inline_1675 < simpleEventPluginEvents.length;
12760
- i$jscomp$inline_1675++
12769
+ var i$jscomp$inline_1680 = 0;
12770
+ i$jscomp$inline_1680 < simpleEventPluginEvents.length;
12771
+ i$jscomp$inline_1680++
12761
12772
  ) {
12762
- var eventName$jscomp$inline_1676 =
12763
- simpleEventPluginEvents[i$jscomp$inline_1675],
12764
- domEventName$jscomp$inline_1677 =
12765
- eventName$jscomp$inline_1676.toLowerCase(),
12766
- capitalizedEvent$jscomp$inline_1678 =
12767
- eventName$jscomp$inline_1676[0].toUpperCase() +
12768
- eventName$jscomp$inline_1676.slice(1);
12773
+ var eventName$jscomp$inline_1681 =
12774
+ simpleEventPluginEvents[i$jscomp$inline_1680],
12775
+ domEventName$jscomp$inline_1682 =
12776
+ eventName$jscomp$inline_1681.toLowerCase(),
12777
+ capitalizedEvent$jscomp$inline_1683 =
12778
+ eventName$jscomp$inline_1681[0].toUpperCase() +
12779
+ eventName$jscomp$inline_1681.slice(1);
12769
12780
  registerSimpleEvent(
12770
- domEventName$jscomp$inline_1677,
12771
- "on" + capitalizedEvent$jscomp$inline_1678
12781
+ domEventName$jscomp$inline_1682,
12782
+ "on" + capitalizedEvent$jscomp$inline_1683
12772
12783
  );
12773
12784
  }
12774
12785
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -16409,16 +16420,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
16409
16420
  0 === i && attemptExplicitHydrationTarget(target);
16410
16421
  }
16411
16422
  };
16412
- var isomorphicReactPackageVersion$jscomp$inline_1937 = React.version;
16423
+ var isomorphicReactPackageVersion$jscomp$inline_1942 = React.version;
16413
16424
  if (
16414
- "19.2.0-canary-2805f0ed-20250903" !==
16415
- isomorphicReactPackageVersion$jscomp$inline_1937
16425
+ "19.2.0-canary-3302d1f7-20250903" !==
16426
+ isomorphicReactPackageVersion$jscomp$inline_1942
16416
16427
  )
16417
16428
  throw Error(
16418
16429
  formatProdErrorMessage(
16419
16430
  527,
16420
- isomorphicReactPackageVersion$jscomp$inline_1937,
16421
- "19.2.0-canary-2805f0ed-20250903"
16431
+ isomorphicReactPackageVersion$jscomp$inline_1942,
16432
+ "19.2.0-canary-3302d1f7-20250903"
16422
16433
  )
16423
16434
  );
16424
16435
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16438,12 +16449,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
16438
16449
  null === componentOrElement ? null : componentOrElement.stateNode;
16439
16450
  return componentOrElement;
16440
16451
  };
16441
- var internals$jscomp$inline_1944 = {
16452
+ var internals$jscomp$inline_1949 = {
16442
16453
  bundleType: 0,
16443
- version: "19.2.0-canary-2805f0ed-20250903",
16454
+ version: "19.2.0-canary-3302d1f7-20250903",
16444
16455
  rendererPackageName: "react-dom",
16445
16456
  currentDispatcherRef: ReactSharedInternals,
16446
- reconcilerVersion: "19.2.0-canary-2805f0ed-20250903",
16457
+ reconcilerVersion: "19.2.0-canary-3302d1f7-20250903",
16447
16458
  getLaneLabelMap: function () {
16448
16459
  for (
16449
16460
  var map = new Map(), lane = 1, index$282 = 0;
@@ -16461,16 +16472,16 @@ var internals$jscomp$inline_1944 = {
16461
16472
  }
16462
16473
  };
16463
16474
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
16464
- var hook$jscomp$inline_2408 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16475
+ var hook$jscomp$inline_2413 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16465
16476
  if (
16466
- !hook$jscomp$inline_2408.isDisabled &&
16467
- hook$jscomp$inline_2408.supportsFiber
16477
+ !hook$jscomp$inline_2413.isDisabled &&
16478
+ hook$jscomp$inline_2413.supportsFiber
16468
16479
  )
16469
16480
  try {
16470
- (rendererID = hook$jscomp$inline_2408.inject(
16471
- internals$jscomp$inline_1944
16481
+ (rendererID = hook$jscomp$inline_2413.inject(
16482
+ internals$jscomp$inline_1949
16472
16483
  )),
16473
- (injectedHook = hook$jscomp$inline_2408);
16484
+ (injectedHook = hook$jscomp$inline_2413);
16474
16485
  } catch (err) {}
16475
16486
  }
16476
16487
  function getCrossOriginStringAs(as, input) {
@@ -16716,7 +16727,7 @@ exports.useFormState = function (action, initialState, permalink) {
16716
16727
  exports.useFormStatus = function () {
16717
16728
  return ReactSharedInternals.H.useHostTransitionStatus();
16718
16729
  };
16719
- exports.version = "19.2.0-canary-2805f0ed-20250903";
16730
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
16720
16731
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
16721
16732
  "function" ===
16722
16733
  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-2805f0ed-20250903";
9745
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
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-2805f0ed-20250903";
6494
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
@@ -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-2805f0ed-20250903";
9745
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
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-2805f0ed-20250903";
6577
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
@@ -8485,11 +8485,11 @@
8485
8485
  }
8486
8486
  function ensureCorrectIsomorphicReactVersion() {
8487
8487
  var isomorphicReactPackageVersion = React.version;
8488
- if ("19.2.0-canary-2805f0ed-20250903" !== isomorphicReactPackageVersion)
8488
+ if ("19.2.0-canary-3302d1f7-20250903" !== 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-2805f0ed-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
8492
+ "\n - react-dom: 19.2.0-canary-3302d1f7-20250903\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-2805f0ed-20250903";
10186
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
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-2805f0ed-20250903" !== isomorphicReactPackageVersion)
6878
+ if ("19.2.0-canary-3302d1f7-20250903" !== isomorphicReactPackageVersion)
6879
6879
  throw Error(
6880
6880
  formatProdErrorMessage(
6881
6881
  527,
6882
6882
  isomorphicReactPackageVersion,
6883
- "19.2.0-canary-2805f0ed-20250903"
6883
+ "19.2.0-canary-3302d1f7-20250903"
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-2805f0ed-20250903";
7030
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
@@ -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-2805f0ed-20250903" !==
9373
+ "19.2.0-canary-3302d1f7-20250903" !==
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-2805f0ed-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
9379
+ "\n - react-dom: 19.2.0-canary-3302d1f7-20250903\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-2805f0ed-20250903";
9472
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
@@ -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-2805f0ed-20250903" !==
6526
+ "19.2.0-canary-3302d1f7-20250903" !==
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-2805f0ed-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
6532
+ "\n - react-dom: 19.2.0-canary-3302d1f7-20250903\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-2805f0ed-20250903";
6623
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
@@ -8508,11 +8508,11 @@
8508
8508
  }
8509
8509
  function ensureCorrectIsomorphicReactVersion() {
8510
8510
  var isomorphicReactPackageVersion = React.version;
8511
- if ("19.2.0-canary-2805f0ed-20250903" !== isomorphicReactPackageVersion)
8511
+ if ("19.2.0-canary-3302d1f7-20250903" !== 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-2805f0ed-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
8515
+ "\n - react-dom: 19.2.0-canary-3302d1f7-20250903\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-2805f0ed-20250903";
10205
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
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-2805f0ed-20250903" !== isomorphicReactPackageVersion)
6976
+ if ("19.2.0-canary-3302d1f7-20250903" !== 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-2805f0ed-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
6980
+ "\n - react-dom: 19.2.0-canary-3302d1f7-20250903\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-2805f0ed-20250903";
7126
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
@@ -8383,11 +8383,11 @@
8383
8383
  }
8384
8384
  function ensureCorrectIsomorphicReactVersion() {
8385
8385
  var isomorphicReactPackageVersion = React.version;
8386
- if ("19.2.0-canary-2805f0ed-20250903" !== isomorphicReactPackageVersion)
8386
+ if ("19.2.0-canary-3302d1f7-20250903" !== 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-2805f0ed-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
8390
+ "\n - react-dom: 19.2.0-canary-3302d1f7-20250903\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-2805f0ed-20250903";
10265
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
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-2805f0ed-20250903" !== isomorphicReactPackageVersion)
6868
+ if ("19.2.0-canary-3302d1f7-20250903" !== 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-2805f0ed-20250903\nLearn more: https://react.dev/warnings/version-mismatch")
6872
+ "\n - react-dom: 19.2.0-canary-3302d1f7-20250903\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-2805f0ed-20250903";
7210
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.2.0-canary-2805f0ed-20250903";
419
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
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-2805f0ed-20250903";
210
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.2.0-canary-2805f0ed-20250903";
339
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
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-2805f0ed-20250903";
152
+ exports.version = "19.2.0-canary-3302d1f7-20250903";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.2.0-canary-2805f0ed-20250903",
3
+ "version": "19.2.0-canary-3302d1f7-20250903",
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-2805f0ed-20250903"
20
+ "scheduler": "0.27.0-canary-3302d1f7-20250903"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.2.0-canary-2805f0ed-20250903"
23
+ "react": "19.2.0-canary-3302d1f7-20250903"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",