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.
@@ -3286,7 +3286,7 @@ function coerceRef(workInProgress, element) {
3286
3286
  element = element.props.ref;
3287
3287
  workInProgress.ref = void 0 !== element ? element : null;
3288
3288
  }
3289
- function throwOnInvalidObjectType(returnFiber, newChild) {
3289
+ function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
3290
3290
  if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
3291
3291
  throw Error(formatProdErrorMessage(525));
3292
3292
  returnFiber = Object.prototype.toString.call(newChild);
@@ -3495,7 +3495,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3495
3495
  readContextDuringReconciliation(returnFiber, newChild),
3496
3496
  lanes
3497
3497
  );
3498
- throwOnInvalidObjectType(returnFiber, newChild);
3498
+ throwOnInvalidObjectTypeImpl(returnFiber, newChild);
3499
3499
  }
3500
3500
  return null;
3501
3501
  }
@@ -3543,7 +3543,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3543
3543
  readContextDuringReconciliation(returnFiber, newChild),
3544
3544
  lanes
3545
3545
  );
3546
- throwOnInvalidObjectType(returnFiber, newChild);
3546
+ throwOnInvalidObjectTypeImpl(returnFiber, newChild);
3547
3547
  }
3548
3548
  return null;
3549
3549
  }
@@ -3614,7 +3614,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3614
3614
  readContextDuringReconciliation(returnFiber, newChild),
3615
3615
  lanes
3616
3616
  );
3617
- throwOnInvalidObjectType(returnFiber, newChild);
3617
+ throwOnInvalidObjectTypeImpl(returnFiber, newChild);
3618
3618
  }
3619
3619
  return null;
3620
3620
  }
@@ -3939,7 +3939,7 @@ function createChildReconciler(shouldTrackSideEffects) {
3939
3939
  readContextDuringReconciliation(returnFiber, newChild),
3940
3940
  lanes
3941
3941
  );
3942
- throwOnInvalidObjectType(returnFiber, newChild);
3942
+ throwOnInvalidObjectTypeImpl(returnFiber, newChild);
3943
3943
  }
3944
3944
  return ("string" === typeof newChild && "" !== newChild) ||
3945
3945
  "number" === typeof newChild ||
@@ -12086,20 +12086,20 @@ function extractEvents$1(
12086
12086
  }
12087
12087
  }
12088
12088
  for (
12089
- var i$jscomp$inline_1578 = 0;
12090
- i$jscomp$inline_1578 < simpleEventPluginEvents.length;
12091
- i$jscomp$inline_1578++
12089
+ var i$jscomp$inline_1590 = 0;
12090
+ i$jscomp$inline_1590 < simpleEventPluginEvents.length;
12091
+ i$jscomp$inline_1590++
12092
12092
  ) {
12093
- var eventName$jscomp$inline_1579 =
12094
- simpleEventPluginEvents[i$jscomp$inline_1578],
12095
- domEventName$jscomp$inline_1580 =
12096
- eventName$jscomp$inline_1579.toLowerCase(),
12097
- capitalizedEvent$jscomp$inline_1581 =
12098
- eventName$jscomp$inline_1579[0].toUpperCase() +
12099
- eventName$jscomp$inline_1579.slice(1);
12093
+ var eventName$jscomp$inline_1591 =
12094
+ simpleEventPluginEvents[i$jscomp$inline_1590],
12095
+ domEventName$jscomp$inline_1592 =
12096
+ eventName$jscomp$inline_1591.toLowerCase(),
12097
+ capitalizedEvent$jscomp$inline_1593 =
12098
+ eventName$jscomp$inline_1591[0].toUpperCase() +
12099
+ eventName$jscomp$inline_1591.slice(1);
12100
12100
  registerSimpleEvent(
12101
- domEventName$jscomp$inline_1580,
12102
- "on" + capitalizedEvent$jscomp$inline_1581
12101
+ domEventName$jscomp$inline_1592,
12102
+ "on" + capitalizedEvent$jscomp$inline_1593
12103
12103
  );
12104
12104
  }
12105
12105
  registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
@@ -15721,16 +15721,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
15721
15721
  0 === i && attemptExplicitHydrationTarget(target);
15722
15722
  }
15723
15723
  };
15724
- var isomorphicReactPackageVersion$jscomp$inline_1838 = React.version;
15724
+ var isomorphicReactPackageVersion$jscomp$inline_1850 = React.version;
15725
15725
  if (
15726
- "19.2.0-canary-f3a80361-20250911" !==
15727
- isomorphicReactPackageVersion$jscomp$inline_1838
15726
+ "19.2.0-canary-8a8e9a7e-20250912" !==
15727
+ isomorphicReactPackageVersion$jscomp$inline_1850
15728
15728
  )
15729
15729
  throw Error(
15730
15730
  formatProdErrorMessage(
15731
15731
  527,
15732
- isomorphicReactPackageVersion$jscomp$inline_1838,
15733
- "19.2.0-canary-f3a80361-20250911"
15732
+ isomorphicReactPackageVersion$jscomp$inline_1850,
15733
+ "19.2.0-canary-8a8e9a7e-20250912"
15734
15734
  )
15735
15735
  );
15736
15736
  ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -15750,24 +15750,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
15750
15750
  null === componentOrElement ? null : componentOrElement.stateNode;
15751
15751
  return componentOrElement;
15752
15752
  };
15753
- var internals$jscomp$inline_2341 = {
15753
+ var internals$jscomp$inline_2353 = {
15754
15754
  bundleType: 0,
15755
- version: "19.2.0-canary-f3a80361-20250911",
15755
+ version: "19.2.0-canary-8a8e9a7e-20250912",
15756
15756
  rendererPackageName: "react-dom",
15757
15757
  currentDispatcherRef: ReactSharedInternals,
15758
- reconcilerVersion: "19.2.0-canary-f3a80361-20250911"
15758
+ reconcilerVersion: "19.2.0-canary-8a8e9a7e-20250912"
15759
15759
  };
15760
15760
  if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
15761
- var hook$jscomp$inline_2342 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15761
+ var hook$jscomp$inline_2354 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
15762
15762
  if (
15763
- !hook$jscomp$inline_2342.isDisabled &&
15764
- hook$jscomp$inline_2342.supportsFiber
15763
+ !hook$jscomp$inline_2354.isDisabled &&
15764
+ hook$jscomp$inline_2354.supportsFiber
15765
15765
  )
15766
15766
  try {
15767
- (rendererID = hook$jscomp$inline_2342.inject(
15768
- internals$jscomp$inline_2341
15767
+ (rendererID = hook$jscomp$inline_2354.inject(
15768
+ internals$jscomp$inline_2353
15769
15769
  )),
15770
- (injectedHook = hook$jscomp$inline_2342);
15770
+ (injectedHook = hook$jscomp$inline_2354);
15771
15771
  } catch (err) {}
15772
15772
  }
15773
15773
  exports.createRoot = function (container, options) {
@@ -15853,4 +15853,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
15853
15853
  listenToAllSupportedEvents(container);
15854
15854
  return new ReactDOMHydrationRoot(initialChildren);
15855
15855
  };
15856
- exports.version = "19.2.0-canary-f3a80361-20250911";
15856
+ exports.version = "19.2.0-canary-8a8e9a7e-20250912";