react-dom 19.2.0-canary-b9cfa0d3-20250505 → 19.2.0-canary-0ff1d13b-20250507

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.
@@ -1100,13 +1100,11 @@ function isCheckable(elem) {
1100
1100
  ("checkbox" === type || "radio" === type)
1101
1101
  );
1102
1102
  }
1103
- function trackValueOnNode(node) {
1104
- var valueField = isCheckable(node) ? "checked" : "value",
1105
- descriptor = Object.getOwnPropertyDescriptor(
1106
- node.constructor.prototype,
1107
- valueField
1108
- ),
1109
- currentValue = "" + node[valueField];
1103
+ function trackValueOnNode(node, valueField, currentValue) {
1104
+ var descriptor = Object.getOwnPropertyDescriptor(
1105
+ node.constructor.prototype,
1106
+ valueField
1107
+ );
1110
1108
  if (
1111
1109
  !node.hasOwnProperty(valueField) &&
1112
1110
  "undefined" !== typeof descriptor &&
@@ -1143,7 +1141,14 @@ function trackValueOnNode(node) {
1143
1141
  }
1144
1142
  }
1145
1143
  function track(node) {
1146
- node._valueTracker || (node._valueTracker = trackValueOnNode(node));
1144
+ if (!node._valueTracker) {
1145
+ var valueField = isCheckable(node) ? "checked" : "value";
1146
+ node._valueTracker = trackValueOnNode(
1147
+ node,
1148
+ valueField,
1149
+ "" + node[valueField]
1150
+ );
1151
+ }
1147
1152
  }
1148
1153
  function updateValueIfChanged(node) {
1149
1154
  if (!node) return !1;
@@ -1243,8 +1248,10 @@ function initInput(
1243
1248
  ("submit" !== type && "reset" !== type) ||
1244
1249
  (void 0 !== value && null !== value)
1245
1250
  )
1246
- )
1251
+ ) {
1252
+ track(element);
1247
1253
  return;
1254
+ }
1248
1255
  defaultValue =
1249
1256
  null != defaultValue ? "" + getToStringValue(defaultValue) : "";
1250
1257
  value = null != value ? "" + getToStringValue(value) : defaultValue;
@@ -1261,6 +1268,7 @@ function initInput(
1261
1268
  "symbol" !== typeof name &&
1262
1269
  "boolean" !== typeof name &&
1263
1270
  (element.name = name);
1271
+ track(element);
1264
1272
  }
1265
1273
  function setDefaultValue(node, type, value) {
1266
1274
  ("number" === type && getActiveElement(node.ownerDocument) === node) ||
@@ -1324,6 +1332,7 @@ function initTextarea(element, value, defaultValue, children) {
1324
1332
  "" !== children &&
1325
1333
  null !== children &&
1326
1334
  (element.value = children);
1335
+ track(element);
1327
1336
  }
1328
1337
  function setTextContent(node, text) {
1329
1338
  if (text) {
@@ -2117,19 +2126,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) {
2117
2126
  }
2118
2127
  var isInputEventSupported = !1;
2119
2128
  if (canUseDOM) {
2120
- var JSCompiler_inline_result$jscomp$311;
2129
+ var JSCompiler_inline_result$jscomp$312;
2121
2130
  if (canUseDOM) {
2122
- var isSupported$jscomp$inline_452 = "oninput" in document;
2123
- if (!isSupported$jscomp$inline_452) {
2124
- var element$jscomp$inline_453 = document.createElement("div");
2125
- element$jscomp$inline_453.setAttribute("oninput", "return;");
2126
- isSupported$jscomp$inline_452 =
2127
- "function" === typeof element$jscomp$inline_453.oninput;
2131
+ var isSupported$jscomp$inline_453 = "oninput" in document;
2132
+ if (!isSupported$jscomp$inline_453) {
2133
+ var element$jscomp$inline_454 = document.createElement("div");
2134
+ element$jscomp$inline_454.setAttribute("oninput", "return;");
2135
+ isSupported$jscomp$inline_453 =
2136
+ "function" === typeof element$jscomp$inline_454.oninput;
2128
2137
  }
2129
- JSCompiler_inline_result$jscomp$311 = isSupported$jscomp$inline_452;
2130
- } else JSCompiler_inline_result$jscomp$311 = !1;
2138
+ JSCompiler_inline_result$jscomp$312 = isSupported$jscomp$inline_453;
2139
+ } else JSCompiler_inline_result$jscomp$312 = !1;
2131
2140
  isInputEventSupported =
2132
- JSCompiler_inline_result$jscomp$311 &&
2141
+ JSCompiler_inline_result$jscomp$312 &&
2133
2142
  (!document.documentMode || 9 < document.documentMode);
2134
2143
  }
2135
2144
  function stopWatchingForValueChange() {
@@ -2377,25 +2386,6 @@ function registerSimpleEvent(domEventName, reactName) {
2377
2386
  topLevelEventsToReactNames.set(domEventName, reactName);
2378
2387
  registerTwoPhaseEvent(reactName, [domEventName]);
2379
2388
  }
2380
- var CapturedStacks = new WeakMap();
2381
- function createCapturedValueAtFiber(value, source) {
2382
- if ("object" === typeof value && null !== value) {
2383
- var existing = CapturedStacks.get(value);
2384
- if (void 0 !== existing) return existing;
2385
- source = {
2386
- value: value,
2387
- source: source,
2388
- stack: getStackByFiberInDevAndProd(source)
2389
- };
2390
- CapturedStacks.set(value, source);
2391
- return source;
2392
- }
2393
- return {
2394
- value: value,
2395
- source: source,
2396
- stack: getStackByFiberInDevAndProd(source)
2397
- };
2398
- }
2399
2389
  var concurrentQueues = [],
2400
2390
  concurrentQueuesIndex = 0,
2401
2391
  concurrentlyUpdatedLanes = 0;
@@ -2713,6 +2703,25 @@ function createFiberFromPortal(portal, mode, lanes) {
2713
2703
  };
2714
2704
  return mode;
2715
2705
  }
2706
+ var CapturedStacks = new WeakMap();
2707
+ function createCapturedValueAtFiber(value, source) {
2708
+ if ("object" === typeof value && null !== value) {
2709
+ var existing = CapturedStacks.get(value);
2710
+ if (void 0 !== existing) return existing;
2711
+ source = {
2712
+ value: value,
2713
+ source: source,
2714
+ stack: getStackByFiberInDevAndProd(source)
2715
+ };
2716
+ CapturedStacks.set(value, source);
2717
+ return source;
2718
+ }
2719
+ return {
2720
+ value: value,
2721
+ source: source,
2722
+ stack: getStackByFiberInDevAndProd(source)
2723
+ };
2724
+ }
2716
2725
  var forkStack = [],
2717
2726
  forkStackIndex = 0,
2718
2727
  treeForkProvider = null,
@@ -2847,15 +2856,13 @@ function prepareToHydrateHostInstance(fiber) {
2847
2856
  props.name,
2848
2857
  !0
2849
2858
  );
2850
- track(instance);
2851
2859
  break;
2852
2860
  case "select":
2853
2861
  listenToNonDelegatedEvent("invalid", instance);
2854
2862
  break;
2855
2863
  case "textarea":
2856
2864
  listenToNonDelegatedEvent("invalid", instance),
2857
- initTextarea(instance, props.value, props.defaultValue, props.children),
2858
- track(instance);
2865
+ initTextarea(instance, props.value, props.defaultValue, props.children);
2859
2866
  }
2860
2867
  type = props.children;
2861
2868
  ("string" !== typeof type &&
@@ -12728,20 +12735,20 @@ function extractEvents$1(
12728
12735
  }
12729
12736
  }
12730
12737
  for (
12731
- var i$jscomp$inline_1675 = 0;
12732
- i$jscomp$inline_1675 < simpleEventPluginEvents.length;
12733
- i$jscomp$inline_1675++
12738
+ var i$jscomp$inline_1692 = 0;
12739
+ i$jscomp$inline_1692 < simpleEventPluginEvents.length;
12740
+ i$jscomp$inline_1692++
12734
12741
  ) {
12735
- var eventName$jscomp$inline_1676 =
12736
- simpleEventPluginEvents[i$jscomp$inline_1675],
12737
- domEventName$jscomp$inline_1677 =
12738
- eventName$jscomp$inline_1676.toLowerCase(),
12739
- capitalizedEvent$jscomp$inline_1678 =
12740
- eventName$jscomp$inline_1676[0].toUpperCase() +
12741
- eventName$jscomp$inline_1676.slice(1);
12742
+ var eventName$jscomp$inline_1693 =
12743
+ simpleEventPluginEvents[i$jscomp$inline_1692],
12744
+ domEventName$jscomp$inline_1694 =
12745
+ eventName$jscomp$inline_1693.toLowerCase(),
12746
+ capitalizedEvent$jscomp$inline_1695 =
12747
+ eventName$jscomp$inline_1693[0].toUpperCase() +
12748
+ eventName$jscomp$inline_1693.slice(1);
12742
12749
  registerSimpleEvent(
12743
- domEventName$jscomp$inline_1677,
12744
- "on" + capitalizedEvent$jscomp$inline_1678
12750
+ domEventName$jscomp$inline_1694,
12751
+ "on" + capitalizedEvent$jscomp$inline_1695
12745
12752
  );
12746
12753
  }
12747
12754
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -13191,36 +13198,34 @@ function dispatchEventForPluginEventSystem(
13191
13198
  accumulateTargetOnly = _instance;
13192
13199
  if (SyntheticEventCtor && reactEventType)
13193
13200
  b: {
13194
- inCapturePhase = SyntheticEventCtor;
13195
- reactEventName = reactEventType;
13196
- instance = 0;
13197
- for (
13198
- lastHostComponent = inCapturePhase;
13199
- lastHostComponent;
13200
- lastHostComponent = getParent(lastHostComponent)
13201
- )
13202
- instance++;
13201
+ inCapturePhase = getParent;
13202
+ reactEventName = SyntheticEventCtor;
13203
+ instance = reactEventType;
13203
13204
  lastHostComponent = 0;
13204
13205
  for (
13205
13206
  _instance = reactEventName;
13206
13207
  _instance;
13207
- _instance = getParent(_instance)
13208
+ _instance = inCapturePhase(_instance)
13208
13209
  )
13209
13210
  lastHostComponent++;
13210
- for (; 0 < instance - lastHostComponent; )
13211
- (inCapturePhase = getParent(inCapturePhase)), instance--;
13212
- for (; 0 < lastHostComponent - instance; )
13213
- (reactEventName = getParent(reactEventName)),
13211
+ _instance = 0;
13212
+ for (var tempB = instance; tempB; tempB = inCapturePhase(tempB))
13213
+ _instance++;
13214
+ for (; 0 < lastHostComponent - _instance; )
13215
+ (reactEventName = inCapturePhase(reactEventName)),
13214
13216
  lastHostComponent--;
13215
- for (; instance--; ) {
13217
+ for (; 0 < _instance - lastHostComponent; )
13218
+ (instance = inCapturePhase(instance)), _instance--;
13219
+ for (; lastHostComponent--; ) {
13216
13220
  if (
13217
- inCapturePhase === reactEventName ||
13218
- (null !== reactEventName &&
13219
- inCapturePhase === reactEventName.alternate)
13220
- )
13221
+ reactEventName === instance ||
13222
+ (null !== instance && reactEventName === instance.alternate)
13223
+ ) {
13224
+ inCapturePhase = reactEventName;
13221
13225
  break b;
13222
- inCapturePhase = getParent(inCapturePhase);
13223
- reactEventName = getParent(reactEventName);
13226
+ }
13227
+ reactEventName = inCapturePhase(reactEventName);
13228
+ instance = inCapturePhase(instance);
13224
13229
  }
13225
13230
  inCapturePhase = null;
13226
13231
  }
@@ -13958,7 +13963,6 @@ function setInitialProperties(domElement, tag, props) {
13958
13963
  hasSrcSet,
13959
13964
  !1
13960
13965
  );
13961
- track(domElement);
13962
13966
  return;
13963
13967
  case "select":
13964
13968
  listenToNonDelegatedEvent("invalid", domElement);
@@ -14012,7 +14016,6 @@ function setInitialProperties(domElement, tag, props) {
14012
14016
  setProp(domElement, tag, propValue, defaultValue, props, null);
14013
14017
  }
14014
14018
  initTextarea(domElement, hasSrc, hasSrcSet, propKey);
14015
- track(domElement);
14016
14019
  return;
14017
14020
  case "option":
14018
14021
  for (checked in props)
@@ -16334,16 +16337,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
16334
16337
  0 === i && attemptExplicitHydrationTarget(target);
16335
16338
  }
16336
16339
  };
16337
- var isomorphicReactPackageVersion$jscomp$inline_1933 = React.version;
16340
+ var isomorphicReactPackageVersion$jscomp$inline_1951 = React.version;
16338
16341
  if (
16339
- "19.2.0-canary-b9cfa0d3-20250505" !==
16340
- isomorphicReactPackageVersion$jscomp$inline_1933
16342
+ "19.2.0-canary-0ff1d13b-20250507" !==
16343
+ isomorphicReactPackageVersion$jscomp$inline_1951
16341
16344
  )
16342
16345
  throw Error(
16343
16346
  formatProdErrorMessage(
16344
16347
  527,
16345
- isomorphicReactPackageVersion$jscomp$inline_1933,
16346
- "19.2.0-canary-b9cfa0d3-20250505"
16348
+ isomorphicReactPackageVersion$jscomp$inline_1951,
16349
+ "19.2.0-canary-0ff1d13b-20250507"
16347
16350
  )
16348
16351
  );
16349
16352
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16363,12 +16366,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
16363
16366
  null === componentOrElement ? null : componentOrElement.stateNode;
16364
16367
  return componentOrElement;
16365
16368
  };
16366
- var internals$jscomp$inline_1940 = {
16369
+ var internals$jscomp$inline_1958 = {
16367
16370
  bundleType: 0,
16368
- version: "19.2.0-canary-b9cfa0d3-20250505",
16371
+ version: "19.2.0-canary-0ff1d13b-20250507",
16369
16372
  rendererPackageName: "react-dom",
16370
16373
  currentDispatcherRef: ReactSharedInternals,
16371
- reconcilerVersion: "19.2.0-canary-b9cfa0d3-20250505",
16374
+ reconcilerVersion: "19.2.0-canary-0ff1d13b-20250507",
16372
16375
  getLaneLabelMap: function () {
16373
16376
  for (
16374
16377
  var map = new Map(), lane = 1, index$293 = 0;
@@ -16386,16 +16389,16 @@ var internals$jscomp$inline_1940 = {
16386
16389
  }
16387
16390
  };
16388
16391
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
16389
- var hook$jscomp$inline_2390 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16392
+ var hook$jscomp$inline_2412 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16390
16393
  if (
16391
- !hook$jscomp$inline_2390.isDisabled &&
16392
- hook$jscomp$inline_2390.supportsFiber
16394
+ !hook$jscomp$inline_2412.isDisabled &&
16395
+ hook$jscomp$inline_2412.supportsFiber
16393
16396
  )
16394
16397
  try {
16395
- (rendererID = hook$jscomp$inline_2390.inject(
16396
- internals$jscomp$inline_1940
16398
+ (rendererID = hook$jscomp$inline_2412.inject(
16399
+ internals$jscomp$inline_1958
16397
16400
  )),
16398
- (injectedHook = hook$jscomp$inline_2390);
16401
+ (injectedHook = hook$jscomp$inline_2412);
16399
16402
  } catch (err) {}
16400
16403
  }
16401
16404
  function noop() {}
@@ -16648,7 +16651,7 @@ exports.useFormState = function (action, initialState, permalink) {
16648
16651
  exports.useFormStatus = function () {
16649
16652
  return ReactSharedInternals.H.useHostTransitionStatus();
16650
16653
  };
16651
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
16654
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
16652
16655
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
16653
16656
  "function" ===
16654
16657
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -9146,5 +9146,5 @@
9146
9146
  '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'
9147
9147
  );
9148
9148
  };
9149
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
9149
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
9150
9150
  })();
@@ -5989,4 +5989,4 @@ exports.renderToString = function (children, options) {
5989
5989
  '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'
5990
5990
  );
5991
5991
  };
5992
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
5992
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
@@ -9146,5 +9146,5 @@
9146
9146
  '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'
9147
9147
  );
9148
9148
  };
9149
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
9149
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
9150
9150
  })();
@@ -6069,4 +6069,4 @@ exports.renderToString = function (children, options) {
6069
6069
  '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'
6070
6070
  );
6071
6071
  };
6072
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
6072
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
@@ -7872,11 +7872,11 @@
7872
7872
  }
7873
7873
  function ensureCorrectIsomorphicReactVersion() {
7874
7874
  var isomorphicReactPackageVersion = React.version;
7875
- if ("19.2.0-canary-b9cfa0d3-20250505" !== isomorphicReactPackageVersion)
7875
+ if ("19.2.0-canary-0ff1d13b-20250507" !== isomorphicReactPackageVersion)
7876
7876
  throw Error(
7877
7877
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7878
7878
  (isomorphicReactPackageVersion +
7879
- "\n - react-dom: 19.2.0-canary-b9cfa0d3-20250505\nLearn more: https://react.dev/warnings/version-mismatch")
7879
+ "\n - react-dom: 19.2.0-canary-0ff1d13b-20250507\nLearn more: https://react.dev/warnings/version-mismatch")
7880
7880
  );
7881
7881
  }
7882
7882
  var React = require("react"),
@@ -9566,5 +9566,5 @@
9566
9566
  startWork(request);
9567
9567
  });
9568
9568
  };
9569
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
9569
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
9570
9570
  })();
@@ -6344,12 +6344,12 @@ function abort(request, reason) {
6344
6344
  }
6345
6345
  function ensureCorrectIsomorphicReactVersion() {
6346
6346
  var isomorphicReactPackageVersion = React.version;
6347
- if ("19.2.0-canary-b9cfa0d3-20250505" !== isomorphicReactPackageVersion)
6347
+ if ("19.2.0-canary-0ff1d13b-20250507" !== isomorphicReactPackageVersion)
6348
6348
  throw Error(
6349
6349
  formatProdErrorMessage(
6350
6350
  527,
6351
6351
  isomorphicReactPackageVersion,
6352
- "19.2.0-canary-b9cfa0d3-20250505"
6352
+ "19.2.0-canary-0ff1d13b-20250507"
6353
6353
  )
6354
6354
  );
6355
6355
  }
@@ -6496,4 +6496,4 @@ exports.renderToReadableStream = function (children, options) {
6496
6496
  startWork(request);
6497
6497
  });
6498
6498
  };
6499
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
6499
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
@@ -8751,13 +8751,13 @@ function abort(request, reason) {
8751
8751
  }
8752
8752
  var isomorphicReactPackageVersion$jscomp$inline_748 = React.version;
8753
8753
  if (
8754
- "19.2.0-canary-b9cfa0d3-20250505" !==
8754
+ "19.2.0-canary-0ff1d13b-20250507" !==
8755
8755
  isomorphicReactPackageVersion$jscomp$inline_748
8756
8756
  )
8757
8757
  throw Error(
8758
8758
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8759
8759
  (isomorphicReactPackageVersion$jscomp$inline_748 +
8760
- "\n - react-dom: 19.2.0-canary-b9cfa0d3-20250505\nLearn more: https://react.dev/warnings/version-mismatch")
8760
+ "\n - react-dom: 19.2.0-canary-0ff1d13b-20250507\nLearn more: https://react.dev/warnings/version-mismatch")
8761
8761
  );
8762
8762
  exports.renderToReadableStream = function (children, options) {
8763
8763
  return new Promise(function (resolve, reject) {
@@ -8850,4 +8850,4 @@ exports.renderToReadableStream = function (children, options) {
8850
8850
  startWork(request$jscomp$0);
8851
8851
  });
8852
8852
  };
8853
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
8853
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
@@ -5972,13 +5972,13 @@ function abort(request, reason) {
5972
5972
  }
5973
5973
  var isomorphicReactPackageVersion$jscomp$inline_768 = React.version;
5974
5974
  if (
5975
- "19.2.0-canary-b9cfa0d3-20250505" !==
5975
+ "19.2.0-canary-0ff1d13b-20250507" !==
5976
5976
  isomorphicReactPackageVersion$jscomp$inline_768
5977
5977
  )
5978
5978
  throw Error(
5979
5979
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
5980
5980
  (isomorphicReactPackageVersion$jscomp$inline_768 +
5981
- "\n - react-dom: 19.2.0-canary-b9cfa0d3-20250505\nLearn more: https://react.dev/warnings/version-mismatch")
5981
+ "\n - react-dom: 19.2.0-canary-0ff1d13b-20250507\nLearn more: https://react.dev/warnings/version-mismatch")
5982
5982
  );
5983
5983
  exports.renderToReadableStream = function (children, options) {
5984
5984
  return new Promise(function (resolve, reject) {
@@ -6069,4 +6069,4 @@ exports.renderToReadableStream = function (children, options) {
6069
6069
  startWork(request);
6070
6070
  });
6071
6071
  };
6072
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
6072
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
@@ -7895,11 +7895,11 @@
7895
7895
  }
7896
7896
  function ensureCorrectIsomorphicReactVersion() {
7897
7897
  var isomorphicReactPackageVersion = React.version;
7898
- if ("19.2.0-canary-b9cfa0d3-20250505" !== isomorphicReactPackageVersion)
7898
+ if ("19.2.0-canary-0ff1d13b-20250507" !== isomorphicReactPackageVersion)
7899
7899
  throw Error(
7900
7900
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7901
7901
  (isomorphicReactPackageVersion +
7902
- "\n - react-dom: 19.2.0-canary-b9cfa0d3-20250505\nLearn more: https://react.dev/warnings/version-mismatch")
7902
+ "\n - react-dom: 19.2.0-canary-0ff1d13b-20250507\nLearn more: https://react.dev/warnings/version-mismatch")
7903
7903
  );
7904
7904
  }
7905
7905
  var React = require("react"),
@@ -9585,5 +9585,5 @@
9585
9585
  startWork(request);
9586
9586
  });
9587
9587
  };
9588
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
9588
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
9589
9589
  })();
@@ -6439,11 +6439,11 @@ function abort(request, reason) {
6439
6439
  }
6440
6440
  function ensureCorrectIsomorphicReactVersion() {
6441
6441
  var isomorphicReactPackageVersion = React.version;
6442
- if ("19.2.0-canary-b9cfa0d3-20250505" !== isomorphicReactPackageVersion)
6442
+ if ("19.2.0-canary-0ff1d13b-20250507" !== isomorphicReactPackageVersion)
6443
6443
  throw Error(
6444
6444
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6445
6445
  (isomorphicReactPackageVersion +
6446
- "\n - react-dom: 19.2.0-canary-b9cfa0d3-20250505\nLearn more: https://react.dev/warnings/version-mismatch")
6446
+ "\n - react-dom: 19.2.0-canary-0ff1d13b-20250507\nLearn more: https://react.dev/warnings/version-mismatch")
6447
6447
  );
6448
6448
  }
6449
6449
  ensureCorrectIsomorphicReactVersion();
@@ -6589,4 +6589,4 @@ exports.renderToReadableStream = function (children, options) {
6589
6589
  startWork(request);
6590
6590
  });
6591
6591
  };
6592
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
6592
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
@@ -7764,11 +7764,11 @@
7764
7764
  }
7765
7765
  function ensureCorrectIsomorphicReactVersion() {
7766
7766
  var isomorphicReactPackageVersion = React.version;
7767
- if ("19.2.0-canary-b9cfa0d3-20250505" !== isomorphicReactPackageVersion)
7767
+ if ("19.2.0-canary-0ff1d13b-20250507" !== isomorphicReactPackageVersion)
7768
7768
  throw Error(
7769
7769
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
7770
7770
  (isomorphicReactPackageVersion +
7771
- "\n - react-dom: 19.2.0-canary-b9cfa0d3-20250505\nLearn more: https://react.dev/warnings/version-mismatch")
7771
+ "\n - react-dom: 19.2.0-canary-0ff1d13b-20250507\nLearn more: https://react.dev/warnings/version-mismatch")
7772
7772
  );
7773
7773
  }
7774
7774
  function createDrainHandler(destination, request) {
@@ -9453,5 +9453,5 @@
9453
9453
  }
9454
9454
  };
9455
9455
  };
9456
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
9456
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
9457
9457
  })();
@@ -6334,11 +6334,11 @@ function abort(request, reason) {
6334
6334
  }
6335
6335
  function ensureCorrectIsomorphicReactVersion() {
6336
6336
  var isomorphicReactPackageVersion = React.version;
6337
- if ("19.2.0-canary-b9cfa0d3-20250505" !== isomorphicReactPackageVersion)
6337
+ if ("19.2.0-canary-0ff1d13b-20250507" !== isomorphicReactPackageVersion)
6338
6338
  throw Error(
6339
6339
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6340
6340
  (isomorphicReactPackageVersion +
6341
- "\n - react-dom: 19.2.0-canary-b9cfa0d3-20250505\nLearn more: https://react.dev/warnings/version-mismatch")
6341
+ "\n - react-dom: 19.2.0-canary-0ff1d13b-20250507\nLearn more: https://react.dev/warnings/version-mismatch")
6342
6342
  );
6343
6343
  }
6344
6344
  ensureCorrectIsomorphicReactVersion();
@@ -6487,4 +6487,4 @@ exports.renderToPipeableStream = function (children, options) {
6487
6487
  }
6488
6488
  };
6489
6489
  };
6490
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
6490
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
419
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
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-b9cfa0d3-20250505";
210
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.2.0-canary-b9cfa0d3-20250505";
339
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
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-b9cfa0d3-20250505";
152
+ exports.version = "19.2.0-canary-0ff1d13b-20250507";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.2.0-canary-b9cfa0d3-20250505",
3
+ "version": "19.2.0-canary-0ff1d13b-20250507",
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-b9cfa0d3-20250505"
20
+ "scheduler": "0.27.0-canary-0ff1d13b-20250507"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.2.0-canary-b9cfa0d3-20250505"
23
+ "react": "19.2.0-canary-0ff1d13b-20250507"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",