react-dom 19.2.0-canary-f3a80361-20250911 → 19.2.0-canary-8a8e9a7e-20250912

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.
@@ -3445,7 +3445,7 @@ function coerceRef(workInProgress, element) {
3445
3445
  element = element.props.ref;
3446
3446
  workInProgress.ref = void 0 !== element ? element : null;
3447
3447
  }
3448
- function throwOnInvalidObjectType(returnFiber, newChild) {
3448
+ function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
3449
3449
  if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
3450
3450
  throw Error(formatProdErrorMessage(525));
3451
3451
  returnFiber = Object.prototype.toString.call(newChild);
@@ -3654,7 +3654,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3654
3654
  readContextDuringReconciliation(returnFiber, newChild),
3655
3655
  lanes
3656
3656
  );
3657
- throwOnInvalidObjectType(returnFiber, newChild);
3657
+ throwOnInvalidObjectTypeImpl(returnFiber, newChild);
3658
3658
  }
3659
3659
  return null;
3660
3660
  }
@@ -3702,7 +3702,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3702
3702
  readContextDuringReconciliation(returnFiber, newChild),
3703
3703
  lanes
3704
3704
  );
3705
- throwOnInvalidObjectType(returnFiber, newChild);
3705
+ throwOnInvalidObjectTypeImpl(returnFiber, newChild);
3706
3706
  }
3707
3707
  return null;
3708
3708
  }
@@ -3773,7 +3773,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3773
3773
  readContextDuringReconciliation(returnFiber, newChild),
3774
3774
  lanes
3775
3775
  );
3776
- throwOnInvalidObjectType(returnFiber, newChild);
3776
+ throwOnInvalidObjectTypeImpl(returnFiber, newChild);
3777
3777
  }
3778
3778
  return null;
3779
3779
  }
@@ -4098,7 +4098,7 @@ function createChildReconciler(shouldTrackSideEffects) {
4098
4098
  readContextDuringReconciliation(returnFiber, newChild),
4099
4099
  lanes
4100
4100
  );
4101
- throwOnInvalidObjectType(returnFiber, newChild);
4101
+ throwOnInvalidObjectTypeImpl(returnFiber, newChild);
4102
4102
  }
4103
4103
  return ("string" === typeof newChild && "" !== newChild) ||
4104
4104
  "number" === typeof newChild ||
@@ -12766,20 +12766,20 @@ function extractEvents$1(
12766
12766
  }
12767
12767
  }
12768
12768
  for (
12769
- var i$jscomp$inline_1680 = 0;
12770
- i$jscomp$inline_1680 < simpleEventPluginEvents.length;
12771
- i$jscomp$inline_1680++
12769
+ var i$jscomp$inline_1692 = 0;
12770
+ i$jscomp$inline_1692 < simpleEventPluginEvents.length;
12771
+ i$jscomp$inline_1692++
12772
12772
  ) {
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);
12773
+ var eventName$jscomp$inline_1693 =
12774
+ simpleEventPluginEvents[i$jscomp$inline_1692],
12775
+ domEventName$jscomp$inline_1694 =
12776
+ eventName$jscomp$inline_1693.toLowerCase(),
12777
+ capitalizedEvent$jscomp$inline_1695 =
12778
+ eventName$jscomp$inline_1693[0].toUpperCase() +
12779
+ eventName$jscomp$inline_1693.slice(1);
12780
12780
  registerSimpleEvent(
12781
- domEventName$jscomp$inline_1682,
12782
- "on" + capitalizedEvent$jscomp$inline_1683
12781
+ domEventName$jscomp$inline_1694,
12782
+ "on" + capitalizedEvent$jscomp$inline_1695
12783
12783
  );
12784
12784
  }
12785
12785
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -16420,16 +16420,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
16420
16420
  0 === i && attemptExplicitHydrationTarget(target);
16421
16421
  }
16422
16422
  };
16423
- var isomorphicReactPackageVersion$jscomp$inline_1942 = React.version;
16423
+ var isomorphicReactPackageVersion$jscomp$inline_1954 = React.version;
16424
16424
  if (
16425
- "19.2.0-canary-f3a80361-20250911" !==
16426
- isomorphicReactPackageVersion$jscomp$inline_1942
16425
+ "19.2.0-canary-8a8e9a7e-20250912" !==
16426
+ isomorphicReactPackageVersion$jscomp$inline_1954
16427
16427
  )
16428
16428
  throw Error(
16429
16429
  formatProdErrorMessage(
16430
16430
  527,
16431
- isomorphicReactPackageVersion$jscomp$inline_1942,
16432
- "19.2.0-canary-f3a80361-20250911"
16431
+ isomorphicReactPackageVersion$jscomp$inline_1954,
16432
+ "19.2.0-canary-8a8e9a7e-20250912"
16433
16433
  )
16434
16434
  );
16435
16435
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -16449,12 +16449,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
16449
16449
  null === componentOrElement ? null : componentOrElement.stateNode;
16450
16450
  return componentOrElement;
16451
16451
  };
16452
- var internals$jscomp$inline_1949 = {
16452
+ var internals$jscomp$inline_1961 = {
16453
16453
  bundleType: 0,
16454
- version: "19.2.0-canary-f3a80361-20250911",
16454
+ version: "19.2.0-canary-8a8e9a7e-20250912",
16455
16455
  rendererPackageName: "react-dom",
16456
16456
  currentDispatcherRef: ReactSharedInternals,
16457
- reconcilerVersion: "19.2.0-canary-f3a80361-20250911",
16457
+ reconcilerVersion: "19.2.0-canary-8a8e9a7e-20250912",
16458
16458
  getLaneLabelMap: function () {
16459
16459
  for (
16460
16460
  var map = new Map(), lane = 1, index$282 = 0;
@@ -16472,16 +16472,16 @@ var internals$jscomp$inline_1949 = {
16472
16472
  }
16473
16473
  };
16474
16474
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
16475
- var hook$jscomp$inline_2413 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16475
+ var hook$jscomp$inline_2425 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
16476
16476
  if (
16477
- !hook$jscomp$inline_2413.isDisabled &&
16478
- hook$jscomp$inline_2413.supportsFiber
16477
+ !hook$jscomp$inline_2425.isDisabled &&
16478
+ hook$jscomp$inline_2425.supportsFiber
16479
16479
  )
16480
16480
  try {
16481
- (rendererID = hook$jscomp$inline_2413.inject(
16482
- internals$jscomp$inline_1949
16481
+ (rendererID = hook$jscomp$inline_2425.inject(
16482
+ internals$jscomp$inline_1961
16483
16483
  )),
16484
- (injectedHook = hook$jscomp$inline_2413);
16484
+ (injectedHook = hook$jscomp$inline_2425);
16485
16485
  } catch (err) {}
16486
16486
  }
16487
16487
  function getCrossOriginStringAs(as, input) {
@@ -16727,7 +16727,7 @@ exports.useFormState = function (action, initialState, permalink) {
16727
16727
  exports.useFormStatus = function () {
16728
16728
  return ReactSharedInternals.H.useHostTransitionStatus();
16729
16729
  };
16730
- exports.version = "19.2.0-canary-f3a80361-20250911";
16730
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
16731
16731
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
16732
16732
  "function" ===
16733
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-f3a80361-20250911";
9745
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
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-f3a80361-20250911";
6494
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
@@ -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-f3a80361-20250911";
9745
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
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-f3a80361-20250911";
6577
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
@@ -8485,11 +8485,11 @@
8485
8485
  }
8486
8486
  function ensureCorrectIsomorphicReactVersion() {
8487
8487
  var isomorphicReactPackageVersion = React.version;
8488
- if ("19.2.0-canary-f3a80361-20250911" !== isomorphicReactPackageVersion)
8488
+ if ("19.2.0-canary-8a8e9a7e-20250912" !== 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-f3a80361-20250911\nLearn more: https://react.dev/warnings/version-mismatch")
8492
+ "\n - react-dom: 19.2.0-canary-8a8e9a7e-20250912\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-f3a80361-20250911";
10186
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
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-f3a80361-20250911" !== isomorphicReactPackageVersion)
6878
+ if ("19.2.0-canary-8a8e9a7e-20250912" !== isomorphicReactPackageVersion)
6879
6879
  throw Error(
6880
6880
  formatProdErrorMessage(
6881
6881
  527,
6882
6882
  isomorphicReactPackageVersion,
6883
- "19.2.0-canary-f3a80361-20250911"
6883
+ "19.2.0-canary-8a8e9a7e-20250912"
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-f3a80361-20250911";
7030
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
@@ -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-f3a80361-20250911" !==
9373
+ "19.2.0-canary-8a8e9a7e-20250912" !==
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-f3a80361-20250911\nLearn more: https://react.dev/warnings/version-mismatch")
9379
+ "\n - react-dom: 19.2.0-canary-8a8e9a7e-20250912\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-f3a80361-20250911";
9472
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
@@ -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-f3a80361-20250911" !==
6526
+ "19.2.0-canary-8a8e9a7e-20250912" !==
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-f3a80361-20250911\nLearn more: https://react.dev/warnings/version-mismatch")
6532
+ "\n - react-dom: 19.2.0-canary-8a8e9a7e-20250912\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-f3a80361-20250911";
6623
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
@@ -8508,11 +8508,11 @@
8508
8508
  }
8509
8509
  function ensureCorrectIsomorphicReactVersion() {
8510
8510
  var isomorphicReactPackageVersion = React.version;
8511
- if ("19.2.0-canary-f3a80361-20250911" !== isomorphicReactPackageVersion)
8511
+ if ("19.2.0-canary-8a8e9a7e-20250912" !== 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-f3a80361-20250911\nLearn more: https://react.dev/warnings/version-mismatch")
8515
+ "\n - react-dom: 19.2.0-canary-8a8e9a7e-20250912\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-f3a80361-20250911";
10205
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
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-f3a80361-20250911" !== isomorphicReactPackageVersion)
6976
+ if ("19.2.0-canary-8a8e9a7e-20250912" !== 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-f3a80361-20250911\nLearn more: https://react.dev/warnings/version-mismatch")
6980
+ "\n - react-dom: 19.2.0-canary-8a8e9a7e-20250912\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-f3a80361-20250911";
7126
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
@@ -8383,11 +8383,11 @@
8383
8383
  }
8384
8384
  function ensureCorrectIsomorphicReactVersion() {
8385
8385
  var isomorphicReactPackageVersion = React.version;
8386
- if ("19.2.0-canary-f3a80361-20250911" !== isomorphicReactPackageVersion)
8386
+ if ("19.2.0-canary-8a8e9a7e-20250912" !== 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-f3a80361-20250911\nLearn more: https://react.dev/warnings/version-mismatch")
8390
+ "\n - react-dom: 19.2.0-canary-8a8e9a7e-20250912\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-f3a80361-20250911";
10265
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
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-f3a80361-20250911" !== isomorphicReactPackageVersion)
6868
+ if ("19.2.0-canary-8a8e9a7e-20250912" !== 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-f3a80361-20250911\nLearn more: https://react.dev/warnings/version-mismatch")
6872
+ "\n - react-dom: 19.2.0-canary-8a8e9a7e-20250912\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-f3a80361-20250911";
7210
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.2.0-canary-f3a80361-20250911";
419
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
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-f3a80361-20250911";
210
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.2.0-canary-f3a80361-20250911";
339
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
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-f3a80361-20250911";
152
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.2.0-canary-f3a80361-20250911",
3
+ "version": "19.2.0-canary-8a8e9a7e-20250912",
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-f3a80361-20250911"
20
+ "scheduler": "0.27.0-canary-8a8e9a7e-20250912"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.2.0-canary-f3a80361-20250911"
23
+ "react": "19.2.0-canary-8a8e9a7e-20250912"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",