@@ -9292,29 +9292,23 @@ function insertOrAppendPlacementNodeIntoContainer(
92929292 if (5 === tag || 6 === tag)
92939293 (tag = node.stateNode),
92949294 before
9295- ? ((parent =
9295+ ? (9 === parent.nodeType
9296+ ? parent.body
9297+ : "HTML" === parent.nodeName
9298+ ? parent.ownerDocument.body
9299+ : parent
9300+ ).insertBefore(tag, before)
9301+ : ((before =
92969302 9 === parent.nodeType
92979303 ? parent.body
92989304 : "HTML" === parent.nodeName
92999305 ? parent.ownerDocument.body
93009306 : parent),
9301- supportsMoveBefore && null !== tag.parentNode
9302- ? parent.moveBefore(tag, before)
9303- : parent.insertBefore(tag, before))
9304- : ((before = parent),
9305- (parent =
9306- 9 === before.nodeType
9307- ? before.body
9308- : "HTML" === before.nodeName
9309- ? before.ownerDocument.body
9310- : before),
9311- supportsMoveBefore && null !== tag.parentNode
9312- ? parent.moveBefore(tag, null)
9313- : parent.appendChild(tag),
9314- (tag = before._reactRootContainer),
9315- (null !== tag && void 0 !== tag) ||
9316- null !== parent.onclick ||
9317- (parent.onclick = noop$1)),
9307+ before.appendChild(tag),
9308+ (parent = parent._reactRootContainer),
9309+ (null !== parent && void 0 !== parent) ||
9310+ null !== before.onclick ||
9311+ (before.onclick = noop$1)),
93189312 commitNewChildToFragmentInstances(node, parentFragmentInstances),
93199313 (viewTransitionMutationContext = !0);
93209314 else if (
@@ -9353,11 +9347,7 @@ function insertOrAppendPlacementNode(
93539347 var tag = node.tag;
93549348 if (5 === tag || 6 === tag)
93559349 (tag = node.stateNode),
9356- before
9357- ? supportsMoveBefore && null !== tag.parentNode
9358- ? parent.moveBefore(tag, before)
9359- : parent.insertBefore(tag, before)
9360- : appendChild(parent, tag),
9350+ before ? parent.insertBefore(tag, before) : parent.appendChild(tag),
93619351 commitNewChildToFragmentInstances(node, parentFragmentInstances),
93629352 (viewTransitionMutationContext = !0);
93639353 else if (
@@ -12039,7 +12029,7 @@ function recursivelyInsertNewFiber(
1203912029 case 5:
1204012030 var instance = finishedWork.stateNode;
1204112031 7 !== visitPhase
12042- ? (appendChild(hostParentClone, instance),
12032+ ? (hostParentClone. appendChild(instance),
1204312033 (viewTransitionMutationContext = !0),
1204412034 recursivelyInsertNew(finishedWork, instance, null, 7))
1204512035 : recursivelyInsertNew(finishedWork, instance, null, visitPhase);
@@ -12052,7 +12042,7 @@ function recursivelyInsertNewFiber(
1205212042 finishedWork = finishedWork.stateNode;
1205312043 if (null === finishedWork) throw Error(formatProdErrorMessage(162));
1205412044 7 !== visitPhase &&
12055- (appendChild(hostParentClone, finishedWork),
12045+ (hostParentClone. appendChild(finishedWork),
1205612046 (viewTransitionMutationContext = !0));
1205712047 break;
1205812048 case 4:
@@ -12119,7 +12109,7 @@ function recursivelyInsertClonesFromExistingTree(
1211912109 nextPhase
1212012110 ))
1212112111 : (instance = instance.cloneNode(!0));
12122- appendChild(hostParentClone, instance);
12112+ hostParentClone. appendChild(instance);
1212312113 null !== parentViewTransition &&
1212412114 (null === parentViewTransition.clones
1212512115 ? (parentViewTransition.clones = [instance])
@@ -12132,7 +12122,7 @@ function recursivelyInsertClonesFromExistingTree(
1213212122 nextPhase = parentFiber.stateNode;
1213312123 if (null === nextPhase) throw Error(formatProdErrorMessage(162));
1213412124 nextPhase = nextPhase.cloneNode(!1);
12135- appendChild(hostParentClone, nextPhase);
12125+ hostParentClone. appendChild(nextPhase);
1213612126 if (1 === visitPhase || 2 === visitPhase)
1213712127 (nextPhase.nodeValue = parentFiber.memoizedProps),
1213812128 (viewTransitionMutationContext = !0);
@@ -12247,11 +12237,11 @@ function recursivelyInsertClones(
1224712237 nextPhase$187[internalPropsKey] = newProps;
1224812238 }
1224912239 1 === visitPhase || 2 === visitPhase
12250- ? (appendChild(i, clone),
12240+ ? (i. appendChild(clone),
1225112241 unhideInstance(clone, deletions.memoizedProps),
1225212242 recursivelyInsertClones(deletions, clone, null, 3),
1225312243 (viewTransitionMutationContext = !0))
12254- : (appendChild(i, clone),
12244+ : (i. appendChild(clone),
1225512245 recursivelyInsertClones(deletions, clone, null, visitPhase));
1225612246 null !== parentViewTransition &&
1225712247 (null === parentViewTransition.clones
@@ -12266,7 +12256,7 @@ function recursivelyInsertClones(
1226612256 nextPhase$187 & 4 &&
1226712257 ((parentViewTransition.nodeValue = nextPhase.memoizedProps),
1226812258 (viewTransitionMutationContext = !0));
12269- appendChild(i, parentViewTransition);
12259+ i. appendChild(parentViewTransition);
1227012260 if (1 === visitPhase || 2 === visitPhase)
1227112261 (parentViewTransition.nodeValue = deletions.memoizedProps),
1227212262 (viewTransitionMutationContext = !0);
@@ -16356,14 +16346,6 @@ function handleErrorInNextTick(error) {
1635616346 throw error;
1635716347 });
1635816348}
16359- var supportsMoveBefore =
16360- "undefined" !== typeof window &&
16361- "function" === typeof window.Element.prototype.moveBefore;
16362- function appendChild(parentInstance, child) {
16363- supportsMoveBefore && null !== child.parentNode
16364- ? parentInstance.moveBefore(child, null)
16365- : parentInstance.appendChild(child);
16366- }
1636716349function isSingletonScope(type) {
1636816350 return "head" === type;
1636916351}
@@ -19150,14 +19132,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1915019132};
1915119133var isomorphicReactPackageVersion$jscomp$inline_2180 = React.version;
1915219134if (
19153- "19.2.0-experimental-8ce15b0f-20250522 " !==
19135+ "19.2.0-experimental-c0464aed-20250523 " !==
1915419136 isomorphicReactPackageVersion$jscomp$inline_2180
1915519137)
1915619138 throw Error(
1915719139 formatProdErrorMessage(
1915819140 527,
1915919141 isomorphicReactPackageVersion$jscomp$inline_2180,
19160- "19.2.0-experimental-8ce15b0f-20250522 "
19142+ "19.2.0-experimental-c0464aed-20250523 "
1916119143 )
1916219144 );
1916319145ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19177,24 +19159,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1917719159 null === componentOrElement ? null : componentOrElement.stateNode;
1917819160 return componentOrElement;
1917919161};
19180- var internals$jscomp$inline_2840 = {
19162+ var internals$jscomp$inline_2865 = {
1918119163 bundleType: 0,
19182- version: "19.2.0-experimental-8ce15b0f-20250522 ",
19164+ version: "19.2.0-experimental-c0464aed-20250523 ",
1918319165 rendererPackageName: "react-dom",
1918419166 currentDispatcherRef: ReactSharedInternals,
19185- reconcilerVersion: "19.2.0-experimental-8ce15b0f-20250522 "
19167+ reconcilerVersion: "19.2.0-experimental-c0464aed-20250523 "
1918619168};
1918719169if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
19188- var hook$jscomp$inline_2841 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
19170+ var hook$jscomp$inline_2866 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
1918919171 if (
19190- !hook$jscomp$inline_2841 .isDisabled &&
19191- hook$jscomp$inline_2841 .supportsFiber
19172+ !hook$jscomp$inline_2866 .isDisabled &&
19173+ hook$jscomp$inline_2866 .supportsFiber
1919219174 )
1919319175 try {
19194- (rendererID = hook$jscomp$inline_2841 .inject(
19195- internals$jscomp$inline_2840
19176+ (rendererID = hook$jscomp$inline_2866 .inject(
19177+ internals$jscomp$inline_2865
1919619178 )),
19197- (injectedHook = hook$jscomp$inline_2841 );
19179+ (injectedHook = hook$jscomp$inline_2866 );
1919819180 } catch (err) {}
1919919181}
1920019182exports.createRoot = function (container, options) {
@@ -19289,4 +19271,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
1928919271 listenToAllSupportedEvents(container);
1929019272 return new ReactDOMHydrationRoot(initialChildren);
1929119273};
19292- exports.version = "19.2.0-experimental-8ce15b0f-20250522 ";
19274+ exports.version = "19.2.0-experimental-c0464aed-20250523 ";
0 commit comments