mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[Fiber] Reset remaining child lanes after propagating context inside Offscreen (#34658)
Otherwise, when a context is propagated into an Activity (or Suspense)
this will leave work behind on the Offscreen component itself. Which
will cause an extra unnecessary render and commit pass just to figure
out that we're still defering it to idle.
This is because lazy context propagation, when calling to schedule some
work walks back up the tree all the way to the root. This is usually
fine for other nodes since they'll recompute their remaining child lanes
on the way up. However, for the Offscreen component we'll have already
computed it. We need to set it after propagation to ensure it gets
reset.
DiffTrain build for [d8a15c49a4](https://github.com/facebook/react/commit/d8a15c49a4bac8fb6730737c34eaf9c74c2f0d7e)
This commit is contained in:
@@ -1 +1 @@
|
||||
19.2.0-native-fb-ef889445-20250930
|
||||
19.2.0-native-fb-d8a15c49-20250930
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f9ccd5dad29ba39f13f47a184d09a8fe>>
|
||||
* @generated SignedSource<<53c88d493c32ef61ce751b2c599c9eb0>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -404,5 +404,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
})();
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<dda06da31d489376c47d0e051387241b>>
|
||||
* @generated SignedSource<<8fb59adc10ba673bbab75aeca0c77315>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<dda06da31d489376c47d0e051387241b>>
|
||||
* @generated SignedSource<<8fb59adc10ba673bbab75aeca0c77315>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
|
||||
Vendored
+23
-19
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<9eaa4aacdf43b85d796620c647bb5a83>>
|
||||
* @generated SignedSource<<2e0ad4688ede49d1493fbccc9cc1ce16>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -10496,23 +10496,24 @@ __DEV__ &&
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if ((workInProgress.mode & ConcurrentMode) === NoMode)
|
||||
@@ -10533,14 +10534,15 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -10570,7 +10572,8 @@ __DEV__ &&
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -10589,6 +10592,7 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -30010,11 +30014,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-ef889445-20250930" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-d8a15c49-20250930" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-dom: 19.2.0-native-fb-ef889445-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-native-fb-d8a15c49-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -30051,10 +30055,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -30204,5 +30208,5 @@ __DEV__ &&
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
})();
|
||||
|
||||
compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
Vendored
+200
-196
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<4a659b1260e75907514539c0a223aff2>>
|
||||
* @generated SignedSource<<829a808790b8b0d5cf38a04b82e7de75>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -6662,21 +6662,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -6697,12 +6698,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -6732,7 +6734,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -6748,6 +6751,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -7791,9 +7795,9 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
);
|
||||
break;
|
||||
case 13:
|
||||
var state$108 = workInProgress.memoizedState;
|
||||
if (null !== state$108) {
|
||||
if (null !== state$108.dehydrated)
|
||||
var state$109 = workInProgress.memoizedState;
|
||||
if (null !== state$109) {
|
||||
if (null !== state$109.dehydrated)
|
||||
return (
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
(workInProgress.flags |= 128),
|
||||
@@ -7813,17 +7817,17 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
break;
|
||||
case 19:
|
||||
var didSuspendBefore = 0 !== (current.flags & 128);
|
||||
state$108 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$108 ||
|
||||
state$109 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$109 ||
|
||||
(propagateParentContextChanges(
|
||||
current,
|
||||
workInProgress,
|
||||
renderLanes,
|
||||
!1
|
||||
),
|
||||
(state$108 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
(state$109 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
if (didSuspendBefore) {
|
||||
if (state$108)
|
||||
if (state$109)
|
||||
return updateSuspenseListComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
@@ -7837,7 +7841,7 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
(didSuspendBefore.tail = null),
|
||||
(didSuspendBefore.lastEffect = null));
|
||||
push(suspenseStackCursor, suspenseStackCursor.current);
|
||||
if (state$108) break;
|
||||
if (state$109) break;
|
||||
else return null;
|
||||
case 22:
|
||||
return (
|
||||
@@ -8440,14 +8444,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$118 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$118 = lastTailNode),
|
||||
for (var lastTailNode$119 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$119 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$118
|
||||
null === lastTailNode$119
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$118.sibling = null);
|
||||
: (lastTailNode$119.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -8457,19 +8461,19 @@ function bubbleProperties(completedWork) {
|
||||
newChildLanes = 0,
|
||||
subtreeFlags = 0;
|
||||
if (didBailout)
|
||||
for (var child$119 = completedWork.child; null !== child$119; )
|
||||
(newChildLanes |= child$119.lanes | child$119.childLanes),
|
||||
(subtreeFlags |= child$119.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$119.flags & 65011712),
|
||||
(child$119.return = completedWork),
|
||||
(child$119 = child$119.sibling);
|
||||
for (var child$120 = completedWork.child; null !== child$120; )
|
||||
(newChildLanes |= child$120.lanes | child$120.childLanes),
|
||||
(subtreeFlags |= child$120.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$120.flags & 65011712),
|
||||
(child$120.return = completedWork),
|
||||
(child$120 = child$120.sibling);
|
||||
else
|
||||
for (child$119 = completedWork.child; null !== child$119; )
|
||||
(newChildLanes |= child$119.lanes | child$119.childLanes),
|
||||
(subtreeFlags |= child$119.subtreeFlags),
|
||||
(subtreeFlags |= child$119.flags),
|
||||
(child$119.return = completedWork),
|
||||
(child$119 = child$119.sibling);
|
||||
for (child$120 = completedWork.child; null !== child$120; )
|
||||
(newChildLanes |= child$120.lanes | child$120.childLanes),
|
||||
(subtreeFlags |= child$120.subtreeFlags),
|
||||
(subtreeFlags |= child$120.flags),
|
||||
(child$120.return = completedWork),
|
||||
(child$120 = child$120.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -9263,8 +9267,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
else if ("function" === typeof ref)
|
||||
try {
|
||||
ref(null);
|
||||
} catch (error$153) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$153);
|
||||
} catch (error$154) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$154);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -9688,11 +9692,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
prevState,
|
||||
instance.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$152) {
|
||||
} catch (error$153) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$152
|
||||
error$153
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10711,25 +10715,25 @@ function commitReconciliationEffects(finishedWork) {
|
||||
);
|
||||
break;
|
||||
case 5:
|
||||
var parent$154 = hostParentFiber.stateNode;
|
||||
var parent$155 = hostParentFiber.stateNode;
|
||||
hostParentFiber.flags & 32 &&
|
||||
(setTextContent(parent$154, ""), (hostParentFiber.flags &= -33));
|
||||
var before$155 = getHostSibling(finishedWork);
|
||||
(setTextContent(parent$155, ""), (hostParentFiber.flags &= -33));
|
||||
var before$156 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNode(
|
||||
finishedWork,
|
||||
before$155,
|
||||
parent$154,
|
||||
before$156,
|
||||
parent$155,
|
||||
parentFragmentInstances
|
||||
);
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
var parent$156 = hostParentFiber.stateNode.containerInfo,
|
||||
before$157 = getHostSibling(finishedWork);
|
||||
var parent$157 = hostParentFiber.stateNode.containerInfo,
|
||||
before$158 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNodeIntoContainer(
|
||||
finishedWork,
|
||||
before$157,
|
||||
parent$156,
|
||||
before$158,
|
||||
parent$157,
|
||||
parentFragmentInstances
|
||||
);
|
||||
break;
|
||||
@@ -12065,8 +12069,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
exitStatus = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$178) {
|
||||
handleThrow(root, thrownValue$178);
|
||||
} catch (thrownValue$179) {
|
||||
handleThrow(root, thrownValue$179);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -12185,8 +12189,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$180) {
|
||||
handleThrow(root, thrownValue$180);
|
||||
} catch (thrownValue$181) {
|
||||
handleThrow(root, thrownValue$181);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -12879,14 +12883,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
||||
isFlushingWork = !0;
|
||||
do {
|
||||
var didPerformSomeWork = !1;
|
||||
for (var root$186 = firstScheduledRoot; null !== root$186; ) {
|
||||
if (!onlyLegacy || 0 === root$186.tag)
|
||||
for (var root$187 = firstScheduledRoot; null !== root$187; ) {
|
||||
if (!onlyLegacy || 0 === root$187.tag)
|
||||
if (0 !== syncTransitionLanes) {
|
||||
var pendingLanes = root$186.pendingLanes;
|
||||
var pendingLanes = root$187.pendingLanes;
|
||||
if (0 === pendingLanes) var JSCompiler_inline_result = 0;
|
||||
else {
|
||||
var suspendedLanes = root$186.suspendedLanes,
|
||||
pingedLanes = root$186.pingedLanes;
|
||||
var suspendedLanes = root$187.suspendedLanes,
|
||||
pingedLanes = root$187.pingedLanes;
|
||||
JSCompiler_inline_result =
|
||||
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
||||
JSCompiler_inline_result &=
|
||||
@@ -12900,20 +12904,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
||||
}
|
||||
0 !== JSCompiler_inline_result &&
|
||||
((didPerformSomeWork = !0),
|
||||
performSyncWorkOnRoot(root$186, JSCompiler_inline_result));
|
||||
performSyncWorkOnRoot(root$187, JSCompiler_inline_result));
|
||||
} else
|
||||
(JSCompiler_inline_result = workInProgressRootRenderLanes),
|
||||
(JSCompiler_inline_result = getNextLanes(
|
||||
root$186,
|
||||
root$186 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
||||
null !== root$186.cancelPendingCommit ||
|
||||
-1 !== root$186.timeoutHandle
|
||||
root$187,
|
||||
root$187 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
||||
null !== root$187.cancelPendingCommit ||
|
||||
-1 !== root$187.timeoutHandle
|
||||
)),
|
||||
0 === (JSCompiler_inline_result & 3) ||
|
||||
checkIfRootIsPrerendering(root$186, JSCompiler_inline_result) ||
|
||||
checkIfRootIsPrerendering(root$187, JSCompiler_inline_result) ||
|
||||
((didPerformSomeWork = !0),
|
||||
performSyncWorkOnRoot(root$186, JSCompiler_inline_result));
|
||||
root$186 = root$186.next;
|
||||
performSyncWorkOnRoot(root$187, JSCompiler_inline_result));
|
||||
root$187 = root$187.next;
|
||||
}
|
||||
} while (didPerformSomeWork);
|
||||
isFlushingWork = !1;
|
||||
@@ -13235,20 +13239,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1649 = 0;
|
||||
i$jscomp$inline_1649 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1649++
|
||||
var i$jscomp$inline_1650 = 0;
|
||||
i$jscomp$inline_1650 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1650++
|
||||
) {
|
||||
var eventName$jscomp$inline_1650 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1649],
|
||||
domEventName$jscomp$inline_1651 =
|
||||
eventName$jscomp$inline_1650.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1652 =
|
||||
eventName$jscomp$inline_1650[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1650.slice(1);
|
||||
var eventName$jscomp$inline_1651 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1650],
|
||||
domEventName$jscomp$inline_1652 =
|
||||
eventName$jscomp$inline_1651.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1653 =
|
||||
eventName$jscomp$inline_1651[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1651.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1651,
|
||||
"on" + capitalizedEvent$jscomp$inline_1652
|
||||
domEventName$jscomp$inline_1652,
|
||||
"on" + capitalizedEvent$jscomp$inline_1653
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -14473,34 +14477,34 @@ function setInitialProperties(domElement, tag, props) {
|
||||
var propKey = null;
|
||||
for (hasSrc in props)
|
||||
if (props.hasOwnProperty(hasSrc)) {
|
||||
var propValue$200 = props[hasSrc];
|
||||
if (null != propValue$200)
|
||||
var propValue$201 = props[hasSrc];
|
||||
if (null != propValue$201)
|
||||
switch (hasSrc) {
|
||||
case "name":
|
||||
hasSrcSet = propValue$200;
|
||||
hasSrcSet = propValue$201;
|
||||
break;
|
||||
case "type":
|
||||
propValue = propValue$200;
|
||||
propValue = propValue$201;
|
||||
break;
|
||||
case "checked":
|
||||
checked = propValue$200;
|
||||
checked = propValue$201;
|
||||
break;
|
||||
case "defaultChecked":
|
||||
propKey = propValue$200;
|
||||
propKey = propValue$201;
|
||||
break;
|
||||
case "value":
|
||||
value = propValue$200;
|
||||
value = propValue$201;
|
||||
break;
|
||||
case "defaultValue":
|
||||
defaultValue = propValue$200;
|
||||
defaultValue = propValue$201;
|
||||
break;
|
||||
case "children":
|
||||
case "dangerouslySetInnerHTML":
|
||||
if (null != propValue$200)
|
||||
if (null != propValue$201)
|
||||
throw Error(formatProdErrorMessage(137, tag));
|
||||
break;
|
||||
default:
|
||||
setProp(domElement, tag, hasSrc, propValue$200, props, null);
|
||||
setProp(domElement, tag, hasSrc, propValue$201, props, null);
|
||||
}
|
||||
}
|
||||
a: {
|
||||
@@ -14683,14 +14687,14 @@ function setInitialProperties(domElement, tag, props) {
|
||||
return;
|
||||
default:
|
||||
if (isCustomElement(tag)) {
|
||||
for (propValue$200 in props)
|
||||
props.hasOwnProperty(propValue$200) &&
|
||||
((hasSrc = props[propValue$200]),
|
||||
for (propValue$201 in props)
|
||||
props.hasOwnProperty(propValue$201) &&
|
||||
((hasSrc = props[propValue$201]),
|
||||
void 0 !== hasSrc &&
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
propValue$200,
|
||||
propValue$201,
|
||||
hasSrc,
|
||||
props,
|
||||
void 0
|
||||
@@ -14737,14 +14741,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(domElement, tag, propKey, null, nextProps, lastProp);
|
||||
}
|
||||
}
|
||||
for (var propKey$217 in nextProps) {
|
||||
var propKey = nextProps[propKey$217];
|
||||
lastProp = lastProps[propKey$217];
|
||||
for (var propKey$218 in nextProps) {
|
||||
var propKey = nextProps[propKey$218];
|
||||
lastProp = lastProps[propKey$218];
|
||||
if (
|
||||
nextProps.hasOwnProperty(propKey$217) &&
|
||||
nextProps.hasOwnProperty(propKey$218) &&
|
||||
(null != propKey || null != lastProp)
|
||||
)
|
||||
switch (propKey$217) {
|
||||
switch (propKey$218) {
|
||||
case "type":
|
||||
propKey !== lastProp && (rootMutationContext = !0);
|
||||
type = propKey;
|
||||
@@ -14779,7 +14783,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$217,
|
||||
propKey$218,
|
||||
propKey,
|
||||
nextProps,
|
||||
lastProp
|
||||
@@ -14798,7 +14802,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
);
|
||||
return;
|
||||
case "select":
|
||||
propKey = value = defaultValue = propKey$217 = null;
|
||||
propKey = value = defaultValue = propKey$218 = null;
|
||||
for (type in lastProps)
|
||||
if (
|
||||
((lastDefaultValue = lastProps[type]),
|
||||
@@ -14830,7 +14834,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
switch (name) {
|
||||
case "value":
|
||||
type !== lastDefaultValue && (rootMutationContext = !0);
|
||||
propKey$217 = type;
|
||||
propKey$218 = type;
|
||||
break;
|
||||
case "defaultValue":
|
||||
type !== lastDefaultValue && (rootMutationContext = !0);
|
||||
@@ -14853,15 +14857,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
tag = defaultValue;
|
||||
lastProps = value;
|
||||
nextProps = propKey;
|
||||
null != propKey$217
|
||||
? updateOptions(domElement, !!lastProps, propKey$217, !1)
|
||||
null != propKey$218
|
||||
? updateOptions(domElement, !!lastProps, propKey$218, !1)
|
||||
: !!nextProps !== !!lastProps &&
|
||||
(null != tag
|
||||
? updateOptions(domElement, !!lastProps, tag, !0)
|
||||
: updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
|
||||
return;
|
||||
case "textarea":
|
||||
propKey = propKey$217 = null;
|
||||
propKey = propKey$218 = null;
|
||||
for (defaultValue in lastProps)
|
||||
if (
|
||||
((name = lastProps[defaultValue]),
|
||||
@@ -14886,7 +14890,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
switch (value) {
|
||||
case "value":
|
||||
name !== type && (rootMutationContext = !0);
|
||||
propKey$217 = name;
|
||||
propKey$218 = name;
|
||||
break;
|
||||
case "defaultValue":
|
||||
name !== type && (rootMutationContext = !0);
|
||||
@@ -14901,17 +14905,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
name !== type &&
|
||||
setProp(domElement, tag, value, name, nextProps, type);
|
||||
}
|
||||
updateTextarea(domElement, propKey$217, propKey);
|
||||
updateTextarea(domElement, propKey$218, propKey);
|
||||
return;
|
||||
case "option":
|
||||
for (var propKey$233 in lastProps)
|
||||
for (var propKey$234 in lastProps)
|
||||
if (
|
||||
((propKey$217 = lastProps[propKey$233]),
|
||||
lastProps.hasOwnProperty(propKey$233) &&
|
||||
null != propKey$217 &&
|
||||
!nextProps.hasOwnProperty(propKey$233))
|
||||
((propKey$218 = lastProps[propKey$234]),
|
||||
lastProps.hasOwnProperty(propKey$234) &&
|
||||
null != propKey$218 &&
|
||||
!nextProps.hasOwnProperty(propKey$234))
|
||||
)
|
||||
switch (propKey$233) {
|
||||
switch (propKey$234) {
|
||||
case "selected":
|
||||
domElement.selected = !1;
|
||||
break;
|
||||
@@ -14919,34 +14923,34 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$233,
|
||||
propKey$234,
|
||||
null,
|
||||
nextProps,
|
||||
propKey$217
|
||||
propKey$218
|
||||
);
|
||||
}
|
||||
for (lastDefaultValue in nextProps)
|
||||
if (
|
||||
((propKey$217 = nextProps[lastDefaultValue]),
|
||||
((propKey$218 = nextProps[lastDefaultValue]),
|
||||
(propKey = lastProps[lastDefaultValue]),
|
||||
nextProps.hasOwnProperty(lastDefaultValue) &&
|
||||
propKey$217 !== propKey &&
|
||||
(null != propKey$217 || null != propKey))
|
||||
propKey$218 !== propKey &&
|
||||
(null != propKey$218 || null != propKey))
|
||||
)
|
||||
switch (lastDefaultValue) {
|
||||
case "selected":
|
||||
propKey$217 !== propKey && (rootMutationContext = !0);
|
||||
propKey$218 !== propKey && (rootMutationContext = !0);
|
||||
domElement.selected =
|
||||
propKey$217 &&
|
||||
"function" !== typeof propKey$217 &&
|
||||
"symbol" !== typeof propKey$217;
|
||||
propKey$218 &&
|
||||
"function" !== typeof propKey$218 &&
|
||||
"symbol" !== typeof propKey$218;
|
||||
break;
|
||||
default:
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
lastDefaultValue,
|
||||
propKey$217,
|
||||
propKey$218,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
@@ -14967,24 +14971,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
case "track":
|
||||
case "wbr":
|
||||
case "menuitem":
|
||||
for (var propKey$238 in lastProps)
|
||||
(propKey$217 = lastProps[propKey$238]),
|
||||
lastProps.hasOwnProperty(propKey$238) &&
|
||||
null != propKey$217 &&
|
||||
!nextProps.hasOwnProperty(propKey$238) &&
|
||||
setProp(domElement, tag, propKey$238, null, nextProps, propKey$217);
|
||||
for (var propKey$239 in lastProps)
|
||||
(propKey$218 = lastProps[propKey$239]),
|
||||
lastProps.hasOwnProperty(propKey$239) &&
|
||||
null != propKey$218 &&
|
||||
!nextProps.hasOwnProperty(propKey$239) &&
|
||||
setProp(domElement, tag, propKey$239, null, nextProps, propKey$218);
|
||||
for (checked in nextProps)
|
||||
if (
|
||||
((propKey$217 = nextProps[checked]),
|
||||
((propKey$218 = nextProps[checked]),
|
||||
(propKey = lastProps[checked]),
|
||||
nextProps.hasOwnProperty(checked) &&
|
||||
propKey$217 !== propKey &&
|
||||
(null != propKey$217 || null != propKey))
|
||||
propKey$218 !== propKey &&
|
||||
(null != propKey$218 || null != propKey))
|
||||
)
|
||||
switch (checked) {
|
||||
case "children":
|
||||
case "dangerouslySetInnerHTML":
|
||||
if (null != propKey$217)
|
||||
if (null != propKey$218)
|
||||
throw Error(formatProdErrorMessage(137, tag));
|
||||
break;
|
||||
default:
|
||||
@@ -14992,7 +14996,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
domElement,
|
||||
tag,
|
||||
checked,
|
||||
propKey$217,
|
||||
propKey$218,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
@@ -15000,49 +15004,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
return;
|
||||
default:
|
||||
if (isCustomElement(tag)) {
|
||||
for (var propKey$243 in lastProps)
|
||||
(propKey$217 = lastProps[propKey$243]),
|
||||
lastProps.hasOwnProperty(propKey$243) &&
|
||||
void 0 !== propKey$217 &&
|
||||
!nextProps.hasOwnProperty(propKey$243) &&
|
||||
for (var propKey$244 in lastProps)
|
||||
(propKey$218 = lastProps[propKey$244]),
|
||||
lastProps.hasOwnProperty(propKey$244) &&
|
||||
void 0 !== propKey$218 &&
|
||||
!nextProps.hasOwnProperty(propKey$244) &&
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$243,
|
||||
propKey$244,
|
||||
void 0,
|
||||
nextProps,
|
||||
propKey$217
|
||||
propKey$218
|
||||
);
|
||||
for (defaultChecked in nextProps)
|
||||
(propKey$217 = nextProps[defaultChecked]),
|
||||
(propKey$218 = nextProps[defaultChecked]),
|
||||
(propKey = lastProps[defaultChecked]),
|
||||
!nextProps.hasOwnProperty(defaultChecked) ||
|
||||
propKey$217 === propKey ||
|
||||
(void 0 === propKey$217 && void 0 === propKey) ||
|
||||
propKey$218 === propKey ||
|
||||
(void 0 === propKey$218 && void 0 === propKey) ||
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
defaultChecked,
|
||||
propKey$217,
|
||||
propKey$218,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
for (var propKey$248 in lastProps)
|
||||
(propKey$217 = lastProps[propKey$248]),
|
||||
lastProps.hasOwnProperty(propKey$248) &&
|
||||
null != propKey$217 &&
|
||||
!nextProps.hasOwnProperty(propKey$248) &&
|
||||
setProp(domElement, tag, propKey$248, null, nextProps, propKey$217);
|
||||
for (var propKey$249 in lastProps)
|
||||
(propKey$218 = lastProps[propKey$249]),
|
||||
lastProps.hasOwnProperty(propKey$249) &&
|
||||
null != propKey$218 &&
|
||||
!nextProps.hasOwnProperty(propKey$249) &&
|
||||
setProp(domElement, tag, propKey$249, null, nextProps, propKey$218);
|
||||
for (lastProp in nextProps)
|
||||
(propKey$217 = nextProps[lastProp]),
|
||||
(propKey$218 = nextProps[lastProp]),
|
||||
(propKey = lastProps[lastProp]),
|
||||
!nextProps.hasOwnProperty(lastProp) ||
|
||||
propKey$217 === propKey ||
|
||||
(null == propKey$217 && null == propKey) ||
|
||||
setProp(domElement, tag, lastProp, propKey$217, nextProps, propKey);
|
||||
propKey$218 === propKey ||
|
||||
(null == propKey$218 && null == propKey) ||
|
||||
setProp(domElement, tag, lastProp, propKey$218, nextProps, propKey);
|
||||
}
|
||||
function isLikelyStaticResource(initiatorType) {
|
||||
switch (initiatorType) {
|
||||
@@ -16275,26 +16279,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
||||
"string" === typeof pendingProps.precedence
|
||||
) {
|
||||
type = getStyleKey(pendingProps.href);
|
||||
var styles$264 = getResourcesFromRoot(
|
||||
var styles$265 = getResourcesFromRoot(
|
||||
JSCompiler_inline_result
|
||||
).hoistableStyles,
|
||||
resource$265 = styles$264.get(type);
|
||||
resource$265 ||
|
||||
resource$266 = styles$265.get(type);
|
||||
resource$266 ||
|
||||
((JSCompiler_inline_result =
|
||||
JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
|
||||
(resource$265 = {
|
||||
(resource$266 = {
|
||||
type: "stylesheet",
|
||||
instance: null,
|
||||
count: 0,
|
||||
state: { loading: 0, preload: null }
|
||||
}),
|
||||
styles$264.set(type, resource$265),
|
||||
(styles$264 = JSCompiler_inline_result.querySelector(
|
||||
styles$265.set(type, resource$266),
|
||||
(styles$265 = JSCompiler_inline_result.querySelector(
|
||||
getStylesheetSelectorFromKey(type)
|
||||
)) &&
|
||||
!styles$264._p &&
|
||||
((resource$265.instance = styles$264),
|
||||
(resource$265.state.loading = 5)),
|
||||
!styles$265._p &&
|
||||
((resource$266.instance = styles$265),
|
||||
(resource$266.state.loading = 5)),
|
||||
preloadPropsMap.has(type) ||
|
||||
((pendingProps = {
|
||||
rel: "preload",
|
||||
@@ -16307,16 +16311,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
||||
referrerPolicy: pendingProps.referrerPolicy
|
||||
}),
|
||||
preloadPropsMap.set(type, pendingProps),
|
||||
styles$264 ||
|
||||
styles$265 ||
|
||||
preloadStylesheet(
|
||||
JSCompiler_inline_result,
|
||||
type,
|
||||
pendingProps,
|
||||
resource$265.state
|
||||
resource$266.state
|
||||
)));
|
||||
if (currentProps && null === currentResource)
|
||||
throw Error(formatProdErrorMessage(528, ""));
|
||||
return resource$265;
|
||||
return resource$266;
|
||||
}
|
||||
if (currentProps && null !== currentResource)
|
||||
throw Error(formatProdErrorMessage(529, ""));
|
||||
@@ -16413,37 +16417,37 @@ function acquireResource(hoistableRoot, resource, props) {
|
||||
return (resource.instance = instance);
|
||||
case "stylesheet":
|
||||
styleProps = getStyleKey(props.href);
|
||||
var instance$270 = hoistableRoot.querySelector(
|
||||
var instance$271 = hoistableRoot.querySelector(
|
||||
getStylesheetSelectorFromKey(styleProps)
|
||||
);
|
||||
if (instance$270)
|
||||
if (instance$271)
|
||||
return (
|
||||
(resource.state.loading |= 4),
|
||||
(resource.instance = instance$270),
|
||||
markNodeAsHoistable(instance$270),
|
||||
instance$270
|
||||
(resource.instance = instance$271),
|
||||
markNodeAsHoistable(instance$271),
|
||||
instance$271
|
||||
);
|
||||
instance = stylesheetPropsFromRawProps(props);
|
||||
(styleProps = preloadPropsMap.get(styleProps)) &&
|
||||
adoptPreloadPropsForStylesheet(instance, styleProps);
|
||||
instance$270 = (
|
||||
instance$271 = (
|
||||
hoistableRoot.ownerDocument || hoistableRoot
|
||||
).createElement("link");
|
||||
markNodeAsHoistable(instance$270);
|
||||
var linkInstance = instance$270;
|
||||
markNodeAsHoistable(instance$271);
|
||||
var linkInstance = instance$271;
|
||||
linkInstance._p = new Promise(function (resolve, reject) {
|
||||
linkInstance.onload = resolve;
|
||||
linkInstance.onerror = reject;
|
||||
});
|
||||
setInitialProperties(instance$270, "link", instance);
|
||||
setInitialProperties(instance$271, "link", instance);
|
||||
resource.state.loading |= 4;
|
||||
insertStylesheet(instance$270, props.precedence, hoistableRoot);
|
||||
return (resource.instance = instance$270);
|
||||
insertStylesheet(instance$271, props.precedence, hoistableRoot);
|
||||
return (resource.instance = instance$271);
|
||||
case "script":
|
||||
instance$270 = getScriptKey(props.src);
|
||||
instance$271 = getScriptKey(props.src);
|
||||
if (
|
||||
(styleProps = hoistableRoot.querySelector(
|
||||
getScriptSelectorFromKey(instance$270)
|
||||
getScriptSelectorFromKey(instance$271)
|
||||
))
|
||||
)
|
||||
return (
|
||||
@@ -16452,7 +16456,7 @@ function acquireResource(hoistableRoot, resource, props) {
|
||||
styleProps
|
||||
);
|
||||
instance = props;
|
||||
if ((styleProps = preloadPropsMap.get(instance$270)))
|
||||
if ((styleProps = preloadPropsMap.get(instance$271)))
|
||||
(instance = assign({}, props)),
|
||||
adoptPreloadPropsForScript(instance, styleProps);
|
||||
hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
|
||||
@@ -17571,16 +17575,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
0 === i && attemptExplicitHydrationTarget(target);
|
||||
}
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2058 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2059 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-ef889445-20250930" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2058
|
||||
"19.2.0-native-fb-d8a15c49-20250930" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2059
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2058,
|
||||
"19.2.0-native-fb-ef889445-20250930"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2059,
|
||||
"19.2.0-native-fb-d8a15c49-20250930"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17600,24 +17604,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
null === componentOrElement ? null : componentOrElement.stateNode;
|
||||
return componentOrElement;
|
||||
};
|
||||
var internals$jscomp$inline_2635 = {
|
||||
var internals$jscomp$inline_2636 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2636 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2637 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2636.isDisabled &&
|
||||
hook$jscomp$inline_2636.supportsFiber
|
||||
!hook$jscomp$inline_2637.isDisabled &&
|
||||
hook$jscomp$inline_2637.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2636.inject(
|
||||
internals$jscomp$inline_2635
|
||||
(rendererID = hook$jscomp$inline_2637.inject(
|
||||
internals$jscomp$inline_2636
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2636);
|
||||
(injectedHook = hook$jscomp$inline_2637);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createRoot = function (container, options) {
|
||||
@@ -17712,4 +17716,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
|
||||
+235
-231
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<6ef47753f614d9c051900a8ccc7d2c3f>>
|
||||
* @generated SignedSource<<87f16e3b9532f25f56a2a4193ba55c49>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -7135,21 +7135,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -7170,12 +7171,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -7205,7 +7207,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -7221,6 +7224,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -8952,14 +8956,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$128 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$128 = lastTailNode),
|
||||
for (var lastTailNode$129 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$129 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$128
|
||||
null === lastTailNode$129
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$128.sibling = null);
|
||||
: (lastTailNode$129.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -8971,53 +8975,53 @@ function bubbleProperties(completedWork) {
|
||||
if (didBailout)
|
||||
if (0 !== (completedWork.mode & 2)) {
|
||||
for (
|
||||
var treeBaseDuration$130 = completedWork.selfBaseDuration,
|
||||
child$131 = completedWork.child;
|
||||
null !== child$131;
|
||||
var treeBaseDuration$131 = completedWork.selfBaseDuration,
|
||||
child$132 = completedWork.child;
|
||||
null !== child$132;
|
||||
|
||||
)
|
||||
(newChildLanes |= child$131.lanes | child$131.childLanes),
|
||||
(subtreeFlags |= child$131.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$131.flags & 65011712),
|
||||
(treeBaseDuration$130 += child$131.treeBaseDuration),
|
||||
(child$131 = child$131.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$130;
|
||||
(newChildLanes |= child$132.lanes | child$132.childLanes),
|
||||
(subtreeFlags |= child$132.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$132.flags & 65011712),
|
||||
(treeBaseDuration$131 += child$132.treeBaseDuration),
|
||||
(child$132 = child$132.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$131;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$130 = completedWork.child;
|
||||
null !== treeBaseDuration$130;
|
||||
treeBaseDuration$131 = completedWork.child;
|
||||
null !== treeBaseDuration$131;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$130.lanes | treeBaseDuration$130.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$130.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$130.flags & 65011712),
|
||||
(treeBaseDuration$130.return = completedWork),
|
||||
(treeBaseDuration$130 = treeBaseDuration$130.sibling);
|
||||
treeBaseDuration$131.lanes | treeBaseDuration$131.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$131.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$131.flags & 65011712),
|
||||
(treeBaseDuration$131.return = completedWork),
|
||||
(treeBaseDuration$131 = treeBaseDuration$131.sibling);
|
||||
else if (0 !== (completedWork.mode & 2)) {
|
||||
treeBaseDuration$130 = completedWork.actualDuration;
|
||||
child$131 = completedWork.selfBaseDuration;
|
||||
treeBaseDuration$131 = completedWork.actualDuration;
|
||||
child$132 = completedWork.selfBaseDuration;
|
||||
for (var child = completedWork.child; null !== child; )
|
||||
(newChildLanes |= child.lanes | child.childLanes),
|
||||
(subtreeFlags |= child.subtreeFlags),
|
||||
(subtreeFlags |= child.flags),
|
||||
(treeBaseDuration$130 += child.actualDuration),
|
||||
(child$131 += child.treeBaseDuration),
|
||||
(treeBaseDuration$131 += child.actualDuration),
|
||||
(child$132 += child.treeBaseDuration),
|
||||
(child = child.sibling);
|
||||
completedWork.actualDuration = treeBaseDuration$130;
|
||||
completedWork.treeBaseDuration = child$131;
|
||||
completedWork.actualDuration = treeBaseDuration$131;
|
||||
completedWork.treeBaseDuration = child$132;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$130 = completedWork.child;
|
||||
null !== treeBaseDuration$130;
|
||||
treeBaseDuration$131 = completedWork.child;
|
||||
null !== treeBaseDuration$131;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$130.lanes | treeBaseDuration$130.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$130.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$130.flags),
|
||||
(treeBaseDuration$130.return = completedWork),
|
||||
(treeBaseDuration$130 = treeBaseDuration$130.sibling);
|
||||
treeBaseDuration$131.lanes | treeBaseDuration$131.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$131.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$131.flags),
|
||||
(treeBaseDuration$131.return = completedWork),
|
||||
(treeBaseDuration$131 = treeBaseDuration$131.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -9918,8 +9922,8 @@ function safelyCallComponentWillUnmount(
|
||||
} else
|
||||
try {
|
||||
instance.componentWillUnmount();
|
||||
} catch (error$172) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$172);
|
||||
} catch (error$173) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$173);
|
||||
}
|
||||
}
|
||||
function safelyAttachRef(current, nearestMountedAncestor) {
|
||||
@@ -9988,8 +9992,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
recordEffectDuration(current);
|
||||
}
|
||||
else ref(null);
|
||||
} catch (error$173) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$173);
|
||||
} catch (error$174) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$174);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -10453,11 +10457,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
} else
|
||||
try {
|
||||
finishedRoot.componentDidMount();
|
||||
} catch (error$169) {
|
||||
} catch (error$170) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$169
|
||||
error$170
|
||||
);
|
||||
}
|
||||
else {
|
||||
@@ -10474,11 +10478,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
prevState,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$170) {
|
||||
} catch (error$171) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$170
|
||||
error$171
|
||||
);
|
||||
}
|
||||
recordEffectDuration();
|
||||
@@ -10489,11 +10493,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
prevState,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$171) {
|
||||
} catch (error$172) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$171
|
||||
error$172
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11669,25 +11673,25 @@ function commitReconciliationEffects(finishedWork) {
|
||||
);
|
||||
break;
|
||||
case 5:
|
||||
var parent$174 = hostParentFiber.stateNode;
|
||||
var parent$175 = hostParentFiber.stateNode;
|
||||
hostParentFiber.flags & 32 &&
|
||||
(setTextContent(parent$174, ""), (hostParentFiber.flags &= -33));
|
||||
var before$175 = getHostSibling(finishedWork);
|
||||
(setTextContent(parent$175, ""), (hostParentFiber.flags &= -33));
|
||||
var before$176 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNode(
|
||||
finishedWork,
|
||||
before$175,
|
||||
parent$174,
|
||||
before$176,
|
||||
parent$175,
|
||||
parentFragmentInstances
|
||||
);
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
var parent$176 = hostParentFiber.stateNode.containerInfo,
|
||||
before$177 = getHostSibling(finishedWork);
|
||||
var parent$177 = hostParentFiber.stateNode.containerInfo,
|
||||
before$178 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNodeIntoContainer(
|
||||
finishedWork,
|
||||
before$177,
|
||||
parent$176,
|
||||
before$178,
|
||||
parent$177,
|
||||
parentFragmentInstances
|
||||
);
|
||||
break;
|
||||
@@ -13499,7 +13503,7 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= blockingEventTime && blockingEventTime < blockingClampTime
|
||||
? blockingClampTime
|
||||
: blockingEventTime;
|
||||
var clampedRenderStartTime$216 =
|
||||
var clampedRenderStartTime$217 =
|
||||
0 <= endTime
|
||||
? endTime
|
||||
: 0 <= previousRenderStartTime
|
||||
@@ -13509,10 +13513,10 @@ function prepareFreshStack(root, lanes) {
|
||||
(setCurrentTrackFromLanes(2),
|
||||
logSuspendedWithDelayPhase(
|
||||
blockingSuspendedTime,
|
||||
clampedRenderStartTime$216,
|
||||
clampedRenderStartTime$217,
|
||||
lanes
|
||||
));
|
||||
clampedRenderStartTime$216 = blockingEventType;
|
||||
clampedRenderStartTime$217 = blockingEventType;
|
||||
var eventIsRepeat = blockingEventIsRepeat,
|
||||
isSpawnedUpdate = 1 === blockingUpdateType,
|
||||
isPingedUpdate = 2 === blockingUpdateType,
|
||||
@@ -13527,12 +13531,12 @@ function prepareFreshStack(root, lanes) {
|
||||
? endTime > previousRenderStartTime &&
|
||||
(endTime = previousRenderStartTime)
|
||||
: (endTime = previousRenderStartTime),
|
||||
null !== clampedRenderStartTime$216 &&
|
||||
null !== clampedRenderStartTime$217 &&
|
||||
previousRenderStartTime > endTime &&
|
||||
console.timeStamp(
|
||||
eventIsRepeat
|
||||
? "Consecutive"
|
||||
: "Event: " + clampedRenderStartTime$216,
|
||||
: "Event: " + clampedRenderStartTime$217,
|
||||
endTime,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
@@ -13573,13 +13577,13 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= transitionUpdateTime && transitionUpdateTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionUpdateTime),
|
||||
(clampedRenderStartTime$216 =
|
||||
(clampedRenderStartTime$217 =
|
||||
0 <= transitionEventTime && transitionEventTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionEventTime),
|
||||
(eventIsRepeat =
|
||||
0 <= clampedRenderStartTime$216
|
||||
? clampedRenderStartTime$216
|
||||
0 <= clampedRenderStartTime$217
|
||||
? clampedRenderStartTime$217
|
||||
: 0 <= endTime
|
||||
? endTime
|
||||
: renderStartTime),
|
||||
@@ -13604,15 +13608,15 @@ function prepareFreshStack(root, lanes) {
|
||||
? previousRenderStartTime > endTime &&
|
||||
(previousRenderStartTime = endTime)
|
||||
: (previousRenderStartTime = endTime),
|
||||
0 < clampedRenderStartTime$216
|
||||
? clampedRenderStartTime$216 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$216 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$216 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$216 &&
|
||||
0 < clampedRenderStartTime$217
|
||||
? clampedRenderStartTime$217 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$217 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$217 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$217 &&
|
||||
null !== eventIsRepeat &&
|
||||
console.timeStamp(
|
||||
isSpawnedUpdate ? "Consecutive" : "Event: " + eventIsRepeat,
|
||||
clampedRenderStartTime$216,
|
||||
clampedRenderStartTime$217,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
"Scheduler \u269b",
|
||||
@@ -13679,9 +13683,9 @@ function prepareFreshStack(root, lanes) {
|
||||
endTime = root.entangledLanes;
|
||||
if (0 !== endTime)
|
||||
for (root = root.entanglements, endTime &= lanes; 0 < endTime; )
|
||||
(clampedRenderStartTime$216 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$216),
|
||||
(lanes |= root[clampedRenderStartTime$216]),
|
||||
(clampedRenderStartTime$217 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$217),
|
||||
(lanes |= root[clampedRenderStartTime$217]),
|
||||
(endTime &= ~eventIsRepeat);
|
||||
entangledRenderLanes = lanes;
|
||||
finishQueueingConcurrentUpdates();
|
||||
@@ -13840,8 +13844,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
memoizedUpdaters = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$221) {
|
||||
handleThrow(root, thrownValue$221);
|
||||
} catch (thrownValue$222) {
|
||||
handleThrow(root, thrownValue$222);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -13968,8 +13972,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$223) {
|
||||
handleThrow(root, thrownValue$223);
|
||||
} catch (thrownValue$224) {
|
||||
handleThrow(root, thrownValue$224);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -14948,14 +14952,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
||||
isFlushingWork = !0;
|
||||
do {
|
||||
var didPerformSomeWork = !1;
|
||||
for (var root$229 = firstScheduledRoot; null !== root$229; ) {
|
||||
if (!onlyLegacy || 0 === root$229.tag)
|
||||
for (var root$230 = firstScheduledRoot; null !== root$230; ) {
|
||||
if (!onlyLegacy || 0 === root$230.tag)
|
||||
if (0 !== syncTransitionLanes) {
|
||||
var pendingLanes = root$229.pendingLanes;
|
||||
var pendingLanes = root$230.pendingLanes;
|
||||
if (0 === pendingLanes) var JSCompiler_inline_result = 0;
|
||||
else {
|
||||
var suspendedLanes = root$229.suspendedLanes,
|
||||
pingedLanes = root$229.pingedLanes;
|
||||
var suspendedLanes = root$230.suspendedLanes,
|
||||
pingedLanes = root$230.pingedLanes;
|
||||
JSCompiler_inline_result =
|
||||
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
||||
JSCompiler_inline_result &=
|
||||
@@ -14969,20 +14973,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
||||
}
|
||||
0 !== JSCompiler_inline_result &&
|
||||
((didPerformSomeWork = !0),
|
||||
performSyncWorkOnRoot(root$229, JSCompiler_inline_result));
|
||||
performSyncWorkOnRoot(root$230, JSCompiler_inline_result));
|
||||
} else
|
||||
(JSCompiler_inline_result = workInProgressRootRenderLanes),
|
||||
(JSCompiler_inline_result = getNextLanes(
|
||||
root$229,
|
||||
root$229 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
||||
null !== root$229.cancelPendingCommit ||
|
||||
-1 !== root$229.timeoutHandle
|
||||
root$230,
|
||||
root$230 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
||||
null !== root$230.cancelPendingCommit ||
|
||||
-1 !== root$230.timeoutHandle
|
||||
)),
|
||||
0 === (JSCompiler_inline_result & 3) ||
|
||||
checkIfRootIsPrerendering(root$229, JSCompiler_inline_result) ||
|
||||
checkIfRootIsPrerendering(root$230, JSCompiler_inline_result) ||
|
||||
((didPerformSomeWork = !0),
|
||||
performSyncWorkOnRoot(root$229, JSCompiler_inline_result));
|
||||
root$229 = root$229.next;
|
||||
performSyncWorkOnRoot(root$230, JSCompiler_inline_result));
|
||||
root$230 = root$230.next;
|
||||
}
|
||||
} while (didPerformSomeWork);
|
||||
isFlushingWork = !1;
|
||||
@@ -15310,20 +15314,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1938 = 0;
|
||||
i$jscomp$inline_1938 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1938++
|
||||
var i$jscomp$inline_1939 = 0;
|
||||
i$jscomp$inline_1939 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1939++
|
||||
) {
|
||||
var eventName$jscomp$inline_1939 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1938],
|
||||
domEventName$jscomp$inline_1940 =
|
||||
eventName$jscomp$inline_1939.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1941 =
|
||||
eventName$jscomp$inline_1939[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1939.slice(1);
|
||||
var eventName$jscomp$inline_1940 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1939],
|
||||
domEventName$jscomp$inline_1941 =
|
||||
eventName$jscomp$inline_1940.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1942 =
|
||||
eventName$jscomp$inline_1940[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1940.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1940,
|
||||
"on" + capitalizedEvent$jscomp$inline_1941
|
||||
domEventName$jscomp$inline_1941,
|
||||
"on" + capitalizedEvent$jscomp$inline_1942
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -16548,34 +16552,34 @@ function setInitialProperties(domElement, tag, props) {
|
||||
var propKey = null;
|
||||
for (hasSrc in props)
|
||||
if (props.hasOwnProperty(hasSrc)) {
|
||||
var propValue$243 = props[hasSrc];
|
||||
if (null != propValue$243)
|
||||
var propValue$244 = props[hasSrc];
|
||||
if (null != propValue$244)
|
||||
switch (hasSrc) {
|
||||
case "name":
|
||||
hasSrcSet = propValue$243;
|
||||
hasSrcSet = propValue$244;
|
||||
break;
|
||||
case "type":
|
||||
propValue = propValue$243;
|
||||
propValue = propValue$244;
|
||||
break;
|
||||
case "checked":
|
||||
checked = propValue$243;
|
||||
checked = propValue$244;
|
||||
break;
|
||||
case "defaultChecked":
|
||||
propKey = propValue$243;
|
||||
propKey = propValue$244;
|
||||
break;
|
||||
case "value":
|
||||
value = propValue$243;
|
||||
value = propValue$244;
|
||||
break;
|
||||
case "defaultValue":
|
||||
defaultValue = propValue$243;
|
||||
defaultValue = propValue$244;
|
||||
break;
|
||||
case "children":
|
||||
case "dangerouslySetInnerHTML":
|
||||
if (null != propValue$243)
|
||||
if (null != propValue$244)
|
||||
throw Error(formatProdErrorMessage(137, tag));
|
||||
break;
|
||||
default:
|
||||
setProp(domElement, tag, hasSrc, propValue$243, props, null);
|
||||
setProp(domElement, tag, hasSrc, propValue$244, props, null);
|
||||
}
|
||||
}
|
||||
a: {
|
||||
@@ -16758,14 +16762,14 @@ function setInitialProperties(domElement, tag, props) {
|
||||
return;
|
||||
default:
|
||||
if (isCustomElement(tag)) {
|
||||
for (propValue$243 in props)
|
||||
props.hasOwnProperty(propValue$243) &&
|
||||
((hasSrc = props[propValue$243]),
|
||||
for (propValue$244 in props)
|
||||
props.hasOwnProperty(propValue$244) &&
|
||||
((hasSrc = props[propValue$244]),
|
||||
void 0 !== hasSrc &&
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
propValue$243,
|
||||
propValue$244,
|
||||
hasSrc,
|
||||
props,
|
||||
void 0
|
||||
@@ -16812,14 +16816,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(domElement, tag, propKey, null, nextProps, lastProp);
|
||||
}
|
||||
}
|
||||
for (var propKey$260 in nextProps) {
|
||||
var propKey = nextProps[propKey$260];
|
||||
lastProp = lastProps[propKey$260];
|
||||
for (var propKey$261 in nextProps) {
|
||||
var propKey = nextProps[propKey$261];
|
||||
lastProp = lastProps[propKey$261];
|
||||
if (
|
||||
nextProps.hasOwnProperty(propKey$260) &&
|
||||
nextProps.hasOwnProperty(propKey$261) &&
|
||||
(null != propKey || null != lastProp)
|
||||
)
|
||||
switch (propKey$260) {
|
||||
switch (propKey$261) {
|
||||
case "type":
|
||||
propKey !== lastProp && (rootMutationContext = !0);
|
||||
type = propKey;
|
||||
@@ -16854,7 +16858,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$260,
|
||||
propKey$261,
|
||||
propKey,
|
||||
nextProps,
|
||||
lastProp
|
||||
@@ -16873,7 +16877,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
);
|
||||
return;
|
||||
case "select":
|
||||
propKey = value = defaultValue = propKey$260 = null;
|
||||
propKey = value = defaultValue = propKey$261 = null;
|
||||
for (type in lastProps)
|
||||
if (
|
||||
((lastDefaultValue = lastProps[type]),
|
||||
@@ -16905,7 +16909,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
switch (name) {
|
||||
case "value":
|
||||
type !== lastDefaultValue && (rootMutationContext = !0);
|
||||
propKey$260 = type;
|
||||
propKey$261 = type;
|
||||
break;
|
||||
case "defaultValue":
|
||||
type !== lastDefaultValue && (rootMutationContext = !0);
|
||||
@@ -16928,15 +16932,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
tag = defaultValue;
|
||||
lastProps = value;
|
||||
nextProps = propKey;
|
||||
null != propKey$260
|
||||
? updateOptions(domElement, !!lastProps, propKey$260, !1)
|
||||
null != propKey$261
|
||||
? updateOptions(domElement, !!lastProps, propKey$261, !1)
|
||||
: !!nextProps !== !!lastProps &&
|
||||
(null != tag
|
||||
? updateOptions(domElement, !!lastProps, tag, !0)
|
||||
: updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
|
||||
return;
|
||||
case "textarea":
|
||||
propKey = propKey$260 = null;
|
||||
propKey = propKey$261 = null;
|
||||
for (defaultValue in lastProps)
|
||||
if (
|
||||
((name = lastProps[defaultValue]),
|
||||
@@ -16961,7 +16965,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
switch (value) {
|
||||
case "value":
|
||||
name !== type && (rootMutationContext = !0);
|
||||
propKey$260 = name;
|
||||
propKey$261 = name;
|
||||
break;
|
||||
case "defaultValue":
|
||||
name !== type && (rootMutationContext = !0);
|
||||
@@ -16976,17 +16980,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
name !== type &&
|
||||
setProp(domElement, tag, value, name, nextProps, type);
|
||||
}
|
||||
updateTextarea(domElement, propKey$260, propKey);
|
||||
updateTextarea(domElement, propKey$261, propKey);
|
||||
return;
|
||||
case "option":
|
||||
for (var propKey$276 in lastProps)
|
||||
for (var propKey$277 in lastProps)
|
||||
if (
|
||||
((propKey$260 = lastProps[propKey$276]),
|
||||
lastProps.hasOwnProperty(propKey$276) &&
|
||||
null != propKey$260 &&
|
||||
!nextProps.hasOwnProperty(propKey$276))
|
||||
((propKey$261 = lastProps[propKey$277]),
|
||||
lastProps.hasOwnProperty(propKey$277) &&
|
||||
null != propKey$261 &&
|
||||
!nextProps.hasOwnProperty(propKey$277))
|
||||
)
|
||||
switch (propKey$276) {
|
||||
switch (propKey$277) {
|
||||
case "selected":
|
||||
domElement.selected = !1;
|
||||
break;
|
||||
@@ -16994,34 +16998,34 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$276,
|
||||
propKey$277,
|
||||
null,
|
||||
nextProps,
|
||||
propKey$260
|
||||
propKey$261
|
||||
);
|
||||
}
|
||||
for (lastDefaultValue in nextProps)
|
||||
if (
|
||||
((propKey$260 = nextProps[lastDefaultValue]),
|
||||
((propKey$261 = nextProps[lastDefaultValue]),
|
||||
(propKey = lastProps[lastDefaultValue]),
|
||||
nextProps.hasOwnProperty(lastDefaultValue) &&
|
||||
propKey$260 !== propKey &&
|
||||
(null != propKey$260 || null != propKey))
|
||||
propKey$261 !== propKey &&
|
||||
(null != propKey$261 || null != propKey))
|
||||
)
|
||||
switch (lastDefaultValue) {
|
||||
case "selected":
|
||||
propKey$260 !== propKey && (rootMutationContext = !0);
|
||||
propKey$261 !== propKey && (rootMutationContext = !0);
|
||||
domElement.selected =
|
||||
propKey$260 &&
|
||||
"function" !== typeof propKey$260 &&
|
||||
"symbol" !== typeof propKey$260;
|
||||
propKey$261 &&
|
||||
"function" !== typeof propKey$261 &&
|
||||
"symbol" !== typeof propKey$261;
|
||||
break;
|
||||
default:
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
lastDefaultValue,
|
||||
propKey$260,
|
||||
propKey$261,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
@@ -17042,24 +17046,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
case "track":
|
||||
case "wbr":
|
||||
case "menuitem":
|
||||
for (var propKey$281 in lastProps)
|
||||
(propKey$260 = lastProps[propKey$281]),
|
||||
lastProps.hasOwnProperty(propKey$281) &&
|
||||
null != propKey$260 &&
|
||||
!nextProps.hasOwnProperty(propKey$281) &&
|
||||
setProp(domElement, tag, propKey$281, null, nextProps, propKey$260);
|
||||
for (var propKey$282 in lastProps)
|
||||
(propKey$261 = lastProps[propKey$282]),
|
||||
lastProps.hasOwnProperty(propKey$282) &&
|
||||
null != propKey$261 &&
|
||||
!nextProps.hasOwnProperty(propKey$282) &&
|
||||
setProp(domElement, tag, propKey$282, null, nextProps, propKey$261);
|
||||
for (checked in nextProps)
|
||||
if (
|
||||
((propKey$260 = nextProps[checked]),
|
||||
((propKey$261 = nextProps[checked]),
|
||||
(propKey = lastProps[checked]),
|
||||
nextProps.hasOwnProperty(checked) &&
|
||||
propKey$260 !== propKey &&
|
||||
(null != propKey$260 || null != propKey))
|
||||
propKey$261 !== propKey &&
|
||||
(null != propKey$261 || null != propKey))
|
||||
)
|
||||
switch (checked) {
|
||||
case "children":
|
||||
case "dangerouslySetInnerHTML":
|
||||
if (null != propKey$260)
|
||||
if (null != propKey$261)
|
||||
throw Error(formatProdErrorMessage(137, tag));
|
||||
break;
|
||||
default:
|
||||
@@ -17067,7 +17071,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
domElement,
|
||||
tag,
|
||||
checked,
|
||||
propKey$260,
|
||||
propKey$261,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
@@ -17075,49 +17079,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
return;
|
||||
default:
|
||||
if (isCustomElement(tag)) {
|
||||
for (var propKey$286 in lastProps)
|
||||
(propKey$260 = lastProps[propKey$286]),
|
||||
lastProps.hasOwnProperty(propKey$286) &&
|
||||
void 0 !== propKey$260 &&
|
||||
!nextProps.hasOwnProperty(propKey$286) &&
|
||||
for (var propKey$287 in lastProps)
|
||||
(propKey$261 = lastProps[propKey$287]),
|
||||
lastProps.hasOwnProperty(propKey$287) &&
|
||||
void 0 !== propKey$261 &&
|
||||
!nextProps.hasOwnProperty(propKey$287) &&
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$286,
|
||||
propKey$287,
|
||||
void 0,
|
||||
nextProps,
|
||||
propKey$260
|
||||
propKey$261
|
||||
);
|
||||
for (defaultChecked in nextProps)
|
||||
(propKey$260 = nextProps[defaultChecked]),
|
||||
(propKey$261 = nextProps[defaultChecked]),
|
||||
(propKey = lastProps[defaultChecked]),
|
||||
!nextProps.hasOwnProperty(defaultChecked) ||
|
||||
propKey$260 === propKey ||
|
||||
(void 0 === propKey$260 && void 0 === propKey) ||
|
||||
propKey$261 === propKey ||
|
||||
(void 0 === propKey$261 && void 0 === propKey) ||
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
defaultChecked,
|
||||
propKey$260,
|
||||
propKey$261,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
for (var propKey$291 in lastProps)
|
||||
(propKey$260 = lastProps[propKey$291]),
|
||||
lastProps.hasOwnProperty(propKey$291) &&
|
||||
null != propKey$260 &&
|
||||
!nextProps.hasOwnProperty(propKey$291) &&
|
||||
setProp(domElement, tag, propKey$291, null, nextProps, propKey$260);
|
||||
for (var propKey$292 in lastProps)
|
||||
(propKey$261 = lastProps[propKey$292]),
|
||||
lastProps.hasOwnProperty(propKey$292) &&
|
||||
null != propKey$261 &&
|
||||
!nextProps.hasOwnProperty(propKey$292) &&
|
||||
setProp(domElement, tag, propKey$292, null, nextProps, propKey$261);
|
||||
for (lastProp in nextProps)
|
||||
(propKey$260 = nextProps[lastProp]),
|
||||
(propKey$261 = nextProps[lastProp]),
|
||||
(propKey = lastProps[lastProp]),
|
||||
!nextProps.hasOwnProperty(lastProp) ||
|
||||
propKey$260 === propKey ||
|
||||
(null == propKey$260 && null == propKey) ||
|
||||
setProp(domElement, tag, lastProp, propKey$260, nextProps, propKey);
|
||||
propKey$261 === propKey ||
|
||||
(null == propKey$261 && null == propKey) ||
|
||||
setProp(domElement, tag, lastProp, propKey$261, nextProps, propKey);
|
||||
}
|
||||
function isLikelyStaticResource(initiatorType) {
|
||||
switch (initiatorType) {
|
||||
@@ -18359,26 +18363,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
||||
"string" === typeof pendingProps.precedence
|
||||
) {
|
||||
type = getStyleKey(pendingProps.href);
|
||||
var styles$307 = getResourcesFromRoot(
|
||||
var styles$308 = getResourcesFromRoot(
|
||||
JSCompiler_inline_result
|
||||
).hoistableStyles,
|
||||
resource$308 = styles$307.get(type);
|
||||
resource$308 ||
|
||||
resource$309 = styles$308.get(type);
|
||||
resource$309 ||
|
||||
((JSCompiler_inline_result =
|
||||
JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
|
||||
(resource$308 = {
|
||||
(resource$309 = {
|
||||
type: "stylesheet",
|
||||
instance: null,
|
||||
count: 0,
|
||||
state: { loading: 0, preload: null }
|
||||
}),
|
||||
styles$307.set(type, resource$308),
|
||||
(styles$307 = JSCompiler_inline_result.querySelector(
|
||||
styles$308.set(type, resource$309),
|
||||
(styles$308 = JSCompiler_inline_result.querySelector(
|
||||
getStylesheetSelectorFromKey(type)
|
||||
)) &&
|
||||
!styles$307._p &&
|
||||
((resource$308.instance = styles$307),
|
||||
(resource$308.state.loading = 5)),
|
||||
!styles$308._p &&
|
||||
((resource$309.instance = styles$308),
|
||||
(resource$309.state.loading = 5)),
|
||||
preloadPropsMap.has(type) ||
|
||||
((pendingProps = {
|
||||
rel: "preload",
|
||||
@@ -18391,16 +18395,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
||||
referrerPolicy: pendingProps.referrerPolicy
|
||||
}),
|
||||
preloadPropsMap.set(type, pendingProps),
|
||||
styles$307 ||
|
||||
styles$308 ||
|
||||
preloadStylesheet(
|
||||
JSCompiler_inline_result,
|
||||
type,
|
||||
pendingProps,
|
||||
resource$308.state
|
||||
resource$309.state
|
||||
)));
|
||||
if (currentProps && null === currentResource)
|
||||
throw Error(formatProdErrorMessage(528, ""));
|
||||
return resource$308;
|
||||
return resource$309;
|
||||
}
|
||||
if (currentProps && null !== currentResource)
|
||||
throw Error(formatProdErrorMessage(529, ""));
|
||||
@@ -18497,37 +18501,37 @@ function acquireResource(hoistableRoot, resource, props) {
|
||||
return (resource.instance = instance);
|
||||
case "stylesheet":
|
||||
styleProps = getStyleKey(props.href);
|
||||
var instance$313 = hoistableRoot.querySelector(
|
||||
var instance$314 = hoistableRoot.querySelector(
|
||||
getStylesheetSelectorFromKey(styleProps)
|
||||
);
|
||||
if (instance$313)
|
||||
if (instance$314)
|
||||
return (
|
||||
(resource.state.loading |= 4),
|
||||
(resource.instance = instance$313),
|
||||
markNodeAsHoistable(instance$313),
|
||||
instance$313
|
||||
(resource.instance = instance$314),
|
||||
markNodeAsHoistable(instance$314),
|
||||
instance$314
|
||||
);
|
||||
instance = stylesheetPropsFromRawProps(props);
|
||||
(styleProps = preloadPropsMap.get(styleProps)) &&
|
||||
adoptPreloadPropsForStylesheet(instance, styleProps);
|
||||
instance$313 = (
|
||||
instance$314 = (
|
||||
hoistableRoot.ownerDocument || hoistableRoot
|
||||
).createElement("link");
|
||||
markNodeAsHoistable(instance$313);
|
||||
var linkInstance = instance$313;
|
||||
markNodeAsHoistable(instance$314);
|
||||
var linkInstance = instance$314;
|
||||
linkInstance._p = new Promise(function (resolve, reject) {
|
||||
linkInstance.onload = resolve;
|
||||
linkInstance.onerror = reject;
|
||||
});
|
||||
setInitialProperties(instance$313, "link", instance);
|
||||
setInitialProperties(instance$314, "link", instance);
|
||||
resource.state.loading |= 4;
|
||||
insertStylesheet(instance$313, props.precedence, hoistableRoot);
|
||||
return (resource.instance = instance$313);
|
||||
insertStylesheet(instance$314, props.precedence, hoistableRoot);
|
||||
return (resource.instance = instance$314);
|
||||
case "script":
|
||||
instance$313 = getScriptKey(props.src);
|
||||
instance$314 = getScriptKey(props.src);
|
||||
if (
|
||||
(styleProps = hoistableRoot.querySelector(
|
||||
getScriptSelectorFromKey(instance$313)
|
||||
getScriptSelectorFromKey(instance$314)
|
||||
))
|
||||
)
|
||||
return (
|
||||
@@ -18536,7 +18540,7 @@ function acquireResource(hoistableRoot, resource, props) {
|
||||
styleProps
|
||||
);
|
||||
instance = props;
|
||||
if ((styleProps = preloadPropsMap.get(instance$313)))
|
||||
if ((styleProps = preloadPropsMap.get(instance$314)))
|
||||
(instance = assign({}, props)),
|
||||
adoptPreloadPropsForScript(instance, styleProps);
|
||||
hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
|
||||
@@ -19664,16 +19668,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
0 === i && attemptExplicitHydrationTarget(target);
|
||||
}
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2349 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2350 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-ef889445-20250930" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2349
|
||||
"19.2.0-native-fb-d8a15c49-20250930" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2350
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2349,
|
||||
"19.2.0-native-fb-ef889445-20250930"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2350,
|
||||
"19.2.0-native-fb-d8a15c49-20250930"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19693,17 +19697,17 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
null === componentOrElement ? null : componentOrElement.stateNode;
|
||||
return componentOrElement;
|
||||
};
|
||||
var internals$jscomp$inline_2356 = {
|
||||
var internals$jscomp$inline_2357 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930",
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$330 = 0;
|
||||
31 > index$330;
|
||||
index$330++
|
||||
var map = new Map(), lane = 1, index$331 = 0;
|
||||
31 > index$331;
|
||||
index$331++
|
||||
) {
|
||||
var label = getLabelForLane(lane);
|
||||
map.set(lane, label);
|
||||
@@ -19716,16 +19720,16 @@ var internals$jscomp$inline_2356 = {
|
||||
}
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2928 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2929 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2928.isDisabled &&
|
||||
hook$jscomp$inline_2928.supportsFiber
|
||||
!hook$jscomp$inline_2929.isDisabled &&
|
||||
hook$jscomp$inline_2929.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2928.inject(
|
||||
internals$jscomp$inline_2356
|
||||
(rendererID = hook$jscomp$inline_2929.inject(
|
||||
internals$jscomp$inline_2357
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2928);
|
||||
(injectedHook = hook$jscomp$inline_2929);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createRoot = function (container, options) {
|
||||
@@ -19821,4 +19825,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
|
||||
+23
-19
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<c7e1644b8ca15fa8799166e16f9e2902>>
|
||||
* @generated SignedSource<<02101265e11ba5362ecc2831cf8f10b0>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -10504,23 +10504,24 @@ __DEV__ &&
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if ((workInProgress.mode & ConcurrentMode) === NoMode)
|
||||
@@ -10541,14 +10542,15 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -10578,7 +10580,8 @@ __DEV__ &&
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -10597,6 +10600,7 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -30066,11 +30070,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-ef889445-20250930" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-d8a15c49-20250930" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-dom: 19.2.0-native-fb-ef889445-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-native-fb-d8a15c49-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -30107,10 +30111,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -30576,7 +30580,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+200
-196
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<435d61e618850a28b41851d24372f2ef>>
|
||||
* @generated SignedSource<<7a7348b3970e3efc6769d8e5ff3b85de>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -6662,21 +6662,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -6697,12 +6698,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -6732,7 +6734,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -6748,6 +6751,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -7791,9 +7795,9 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
);
|
||||
break;
|
||||
case 13:
|
||||
var state$108 = workInProgress.memoizedState;
|
||||
if (null !== state$108) {
|
||||
if (null !== state$108.dehydrated)
|
||||
var state$109 = workInProgress.memoizedState;
|
||||
if (null !== state$109) {
|
||||
if (null !== state$109.dehydrated)
|
||||
return (
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
(workInProgress.flags |= 128),
|
||||
@@ -7813,17 +7817,17 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
break;
|
||||
case 19:
|
||||
var didSuspendBefore = 0 !== (current.flags & 128);
|
||||
state$108 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$108 ||
|
||||
state$109 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$109 ||
|
||||
(propagateParentContextChanges(
|
||||
current,
|
||||
workInProgress,
|
||||
renderLanes,
|
||||
!1
|
||||
),
|
||||
(state$108 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
(state$109 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
if (didSuspendBefore) {
|
||||
if (state$108)
|
||||
if (state$109)
|
||||
return updateSuspenseListComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
@@ -7837,7 +7841,7 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
(didSuspendBefore.tail = null),
|
||||
(didSuspendBefore.lastEffect = null));
|
||||
push(suspenseStackCursor, suspenseStackCursor.current);
|
||||
if (state$108) break;
|
||||
if (state$109) break;
|
||||
else return null;
|
||||
case 22:
|
||||
return (
|
||||
@@ -8440,14 +8444,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$118 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$118 = lastTailNode),
|
||||
for (var lastTailNode$119 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$119 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$118
|
||||
null === lastTailNode$119
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$118.sibling = null);
|
||||
: (lastTailNode$119.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -8457,19 +8461,19 @@ function bubbleProperties(completedWork) {
|
||||
newChildLanes = 0,
|
||||
subtreeFlags = 0;
|
||||
if (didBailout)
|
||||
for (var child$119 = completedWork.child; null !== child$119; )
|
||||
(newChildLanes |= child$119.lanes | child$119.childLanes),
|
||||
(subtreeFlags |= child$119.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$119.flags & 65011712),
|
||||
(child$119.return = completedWork),
|
||||
(child$119 = child$119.sibling);
|
||||
for (var child$120 = completedWork.child; null !== child$120; )
|
||||
(newChildLanes |= child$120.lanes | child$120.childLanes),
|
||||
(subtreeFlags |= child$120.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$120.flags & 65011712),
|
||||
(child$120.return = completedWork),
|
||||
(child$120 = child$120.sibling);
|
||||
else
|
||||
for (child$119 = completedWork.child; null !== child$119; )
|
||||
(newChildLanes |= child$119.lanes | child$119.childLanes),
|
||||
(subtreeFlags |= child$119.subtreeFlags),
|
||||
(subtreeFlags |= child$119.flags),
|
||||
(child$119.return = completedWork),
|
||||
(child$119 = child$119.sibling);
|
||||
for (child$120 = completedWork.child; null !== child$120; )
|
||||
(newChildLanes |= child$120.lanes | child$120.childLanes),
|
||||
(subtreeFlags |= child$120.subtreeFlags),
|
||||
(subtreeFlags |= child$120.flags),
|
||||
(child$120.return = completedWork),
|
||||
(child$120 = child$120.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -9263,8 +9267,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
else if ("function" === typeof ref)
|
||||
try {
|
||||
ref(null);
|
||||
} catch (error$153) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$153);
|
||||
} catch (error$154) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$154);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -9688,11 +9692,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
prevState,
|
||||
instance.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$152) {
|
||||
} catch (error$153) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$152
|
||||
error$153
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10711,25 +10715,25 @@ function commitReconciliationEffects(finishedWork) {
|
||||
);
|
||||
break;
|
||||
case 5:
|
||||
var parent$154 = hostParentFiber.stateNode;
|
||||
var parent$155 = hostParentFiber.stateNode;
|
||||
hostParentFiber.flags & 32 &&
|
||||
(setTextContent(parent$154, ""), (hostParentFiber.flags &= -33));
|
||||
var before$155 = getHostSibling(finishedWork);
|
||||
(setTextContent(parent$155, ""), (hostParentFiber.flags &= -33));
|
||||
var before$156 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNode(
|
||||
finishedWork,
|
||||
before$155,
|
||||
parent$154,
|
||||
before$156,
|
||||
parent$155,
|
||||
parentFragmentInstances
|
||||
);
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
var parent$156 = hostParentFiber.stateNode.containerInfo,
|
||||
before$157 = getHostSibling(finishedWork);
|
||||
var parent$157 = hostParentFiber.stateNode.containerInfo,
|
||||
before$158 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNodeIntoContainer(
|
||||
finishedWork,
|
||||
before$157,
|
||||
parent$156,
|
||||
before$158,
|
||||
parent$157,
|
||||
parentFragmentInstances
|
||||
);
|
||||
break;
|
||||
@@ -12065,8 +12069,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
exitStatus = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$178) {
|
||||
handleThrow(root, thrownValue$178);
|
||||
} catch (thrownValue$179) {
|
||||
handleThrow(root, thrownValue$179);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -12185,8 +12189,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$180) {
|
||||
handleThrow(root, thrownValue$180);
|
||||
} catch (thrownValue$181) {
|
||||
handleThrow(root, thrownValue$181);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -12879,14 +12883,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
||||
isFlushingWork = !0;
|
||||
do {
|
||||
var didPerformSomeWork = !1;
|
||||
for (var root$186 = firstScheduledRoot; null !== root$186; ) {
|
||||
if (!onlyLegacy || 0 === root$186.tag)
|
||||
for (var root$187 = firstScheduledRoot; null !== root$187; ) {
|
||||
if (!onlyLegacy || 0 === root$187.tag)
|
||||
if (0 !== syncTransitionLanes) {
|
||||
var pendingLanes = root$186.pendingLanes;
|
||||
var pendingLanes = root$187.pendingLanes;
|
||||
if (0 === pendingLanes) var JSCompiler_inline_result = 0;
|
||||
else {
|
||||
var suspendedLanes = root$186.suspendedLanes,
|
||||
pingedLanes = root$186.pingedLanes;
|
||||
var suspendedLanes = root$187.suspendedLanes,
|
||||
pingedLanes = root$187.pingedLanes;
|
||||
JSCompiler_inline_result =
|
||||
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
||||
JSCompiler_inline_result &=
|
||||
@@ -12900,20 +12904,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
||||
}
|
||||
0 !== JSCompiler_inline_result &&
|
||||
((didPerformSomeWork = !0),
|
||||
performSyncWorkOnRoot(root$186, JSCompiler_inline_result));
|
||||
performSyncWorkOnRoot(root$187, JSCompiler_inline_result));
|
||||
} else
|
||||
(JSCompiler_inline_result = workInProgressRootRenderLanes),
|
||||
(JSCompiler_inline_result = getNextLanes(
|
||||
root$186,
|
||||
root$186 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
||||
null !== root$186.cancelPendingCommit ||
|
||||
-1 !== root$186.timeoutHandle
|
||||
root$187,
|
||||
root$187 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
||||
null !== root$187.cancelPendingCommit ||
|
||||
-1 !== root$187.timeoutHandle
|
||||
)),
|
||||
0 === (JSCompiler_inline_result & 3) ||
|
||||
checkIfRootIsPrerendering(root$186, JSCompiler_inline_result) ||
|
||||
checkIfRootIsPrerendering(root$187, JSCompiler_inline_result) ||
|
||||
((didPerformSomeWork = !0),
|
||||
performSyncWorkOnRoot(root$186, JSCompiler_inline_result));
|
||||
root$186 = root$186.next;
|
||||
performSyncWorkOnRoot(root$187, JSCompiler_inline_result));
|
||||
root$187 = root$187.next;
|
||||
}
|
||||
} while (didPerformSomeWork);
|
||||
isFlushingWork = !1;
|
||||
@@ -13235,20 +13239,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1650 = 0;
|
||||
i$jscomp$inline_1650 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1650++
|
||||
var i$jscomp$inline_1651 = 0;
|
||||
i$jscomp$inline_1651 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1651++
|
||||
) {
|
||||
var eventName$jscomp$inline_1651 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1650],
|
||||
domEventName$jscomp$inline_1652 =
|
||||
eventName$jscomp$inline_1651.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1653 =
|
||||
eventName$jscomp$inline_1651[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1651.slice(1);
|
||||
var eventName$jscomp$inline_1652 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1651],
|
||||
domEventName$jscomp$inline_1653 =
|
||||
eventName$jscomp$inline_1652.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1654 =
|
||||
eventName$jscomp$inline_1652[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1652.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1652,
|
||||
"on" + capitalizedEvent$jscomp$inline_1653
|
||||
domEventName$jscomp$inline_1653,
|
||||
"on" + capitalizedEvent$jscomp$inline_1654
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -14473,34 +14477,34 @@ function setInitialProperties(domElement, tag, props) {
|
||||
var propKey = null;
|
||||
for (hasSrc in props)
|
||||
if (props.hasOwnProperty(hasSrc)) {
|
||||
var propValue$200 = props[hasSrc];
|
||||
if (null != propValue$200)
|
||||
var propValue$201 = props[hasSrc];
|
||||
if (null != propValue$201)
|
||||
switch (hasSrc) {
|
||||
case "name":
|
||||
hasSrcSet = propValue$200;
|
||||
hasSrcSet = propValue$201;
|
||||
break;
|
||||
case "type":
|
||||
propValue = propValue$200;
|
||||
propValue = propValue$201;
|
||||
break;
|
||||
case "checked":
|
||||
checked = propValue$200;
|
||||
checked = propValue$201;
|
||||
break;
|
||||
case "defaultChecked":
|
||||
propKey = propValue$200;
|
||||
propKey = propValue$201;
|
||||
break;
|
||||
case "value":
|
||||
value = propValue$200;
|
||||
value = propValue$201;
|
||||
break;
|
||||
case "defaultValue":
|
||||
defaultValue = propValue$200;
|
||||
defaultValue = propValue$201;
|
||||
break;
|
||||
case "children":
|
||||
case "dangerouslySetInnerHTML":
|
||||
if (null != propValue$200)
|
||||
if (null != propValue$201)
|
||||
throw Error(formatProdErrorMessage(137, tag));
|
||||
break;
|
||||
default:
|
||||
setProp(domElement, tag, hasSrc, propValue$200, props, null);
|
||||
setProp(domElement, tag, hasSrc, propValue$201, props, null);
|
||||
}
|
||||
}
|
||||
a: {
|
||||
@@ -14683,14 +14687,14 @@ function setInitialProperties(domElement, tag, props) {
|
||||
return;
|
||||
default:
|
||||
if (isCustomElement(tag)) {
|
||||
for (propValue$200 in props)
|
||||
props.hasOwnProperty(propValue$200) &&
|
||||
((hasSrc = props[propValue$200]),
|
||||
for (propValue$201 in props)
|
||||
props.hasOwnProperty(propValue$201) &&
|
||||
((hasSrc = props[propValue$201]),
|
||||
void 0 !== hasSrc &&
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
propValue$200,
|
||||
propValue$201,
|
||||
hasSrc,
|
||||
props,
|
||||
void 0
|
||||
@@ -14737,14 +14741,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(domElement, tag, propKey, null, nextProps, lastProp);
|
||||
}
|
||||
}
|
||||
for (var propKey$217 in nextProps) {
|
||||
var propKey = nextProps[propKey$217];
|
||||
lastProp = lastProps[propKey$217];
|
||||
for (var propKey$218 in nextProps) {
|
||||
var propKey = nextProps[propKey$218];
|
||||
lastProp = lastProps[propKey$218];
|
||||
if (
|
||||
nextProps.hasOwnProperty(propKey$217) &&
|
||||
nextProps.hasOwnProperty(propKey$218) &&
|
||||
(null != propKey || null != lastProp)
|
||||
)
|
||||
switch (propKey$217) {
|
||||
switch (propKey$218) {
|
||||
case "type":
|
||||
propKey !== lastProp && (rootMutationContext = !0);
|
||||
type = propKey;
|
||||
@@ -14779,7 +14783,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$217,
|
||||
propKey$218,
|
||||
propKey,
|
||||
nextProps,
|
||||
lastProp
|
||||
@@ -14798,7 +14802,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
);
|
||||
return;
|
||||
case "select":
|
||||
propKey = value = defaultValue = propKey$217 = null;
|
||||
propKey = value = defaultValue = propKey$218 = null;
|
||||
for (type in lastProps)
|
||||
if (
|
||||
((lastDefaultValue = lastProps[type]),
|
||||
@@ -14830,7 +14834,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
switch (name) {
|
||||
case "value":
|
||||
type !== lastDefaultValue && (rootMutationContext = !0);
|
||||
propKey$217 = type;
|
||||
propKey$218 = type;
|
||||
break;
|
||||
case "defaultValue":
|
||||
type !== lastDefaultValue && (rootMutationContext = !0);
|
||||
@@ -14853,15 +14857,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
tag = defaultValue;
|
||||
lastProps = value;
|
||||
nextProps = propKey;
|
||||
null != propKey$217
|
||||
? updateOptions(domElement, !!lastProps, propKey$217, !1)
|
||||
null != propKey$218
|
||||
? updateOptions(domElement, !!lastProps, propKey$218, !1)
|
||||
: !!nextProps !== !!lastProps &&
|
||||
(null != tag
|
||||
? updateOptions(domElement, !!lastProps, tag, !0)
|
||||
: updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
|
||||
return;
|
||||
case "textarea":
|
||||
propKey = propKey$217 = null;
|
||||
propKey = propKey$218 = null;
|
||||
for (defaultValue in lastProps)
|
||||
if (
|
||||
((name = lastProps[defaultValue]),
|
||||
@@ -14886,7 +14890,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
switch (value) {
|
||||
case "value":
|
||||
name !== type && (rootMutationContext = !0);
|
||||
propKey$217 = name;
|
||||
propKey$218 = name;
|
||||
break;
|
||||
case "defaultValue":
|
||||
name !== type && (rootMutationContext = !0);
|
||||
@@ -14901,17 +14905,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
name !== type &&
|
||||
setProp(domElement, tag, value, name, nextProps, type);
|
||||
}
|
||||
updateTextarea(domElement, propKey$217, propKey);
|
||||
updateTextarea(domElement, propKey$218, propKey);
|
||||
return;
|
||||
case "option":
|
||||
for (var propKey$233 in lastProps)
|
||||
for (var propKey$234 in lastProps)
|
||||
if (
|
||||
((propKey$217 = lastProps[propKey$233]),
|
||||
lastProps.hasOwnProperty(propKey$233) &&
|
||||
null != propKey$217 &&
|
||||
!nextProps.hasOwnProperty(propKey$233))
|
||||
((propKey$218 = lastProps[propKey$234]),
|
||||
lastProps.hasOwnProperty(propKey$234) &&
|
||||
null != propKey$218 &&
|
||||
!nextProps.hasOwnProperty(propKey$234))
|
||||
)
|
||||
switch (propKey$233) {
|
||||
switch (propKey$234) {
|
||||
case "selected":
|
||||
domElement.selected = !1;
|
||||
break;
|
||||
@@ -14919,34 +14923,34 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$233,
|
||||
propKey$234,
|
||||
null,
|
||||
nextProps,
|
||||
propKey$217
|
||||
propKey$218
|
||||
);
|
||||
}
|
||||
for (lastDefaultValue in nextProps)
|
||||
if (
|
||||
((propKey$217 = nextProps[lastDefaultValue]),
|
||||
((propKey$218 = nextProps[lastDefaultValue]),
|
||||
(propKey = lastProps[lastDefaultValue]),
|
||||
nextProps.hasOwnProperty(lastDefaultValue) &&
|
||||
propKey$217 !== propKey &&
|
||||
(null != propKey$217 || null != propKey))
|
||||
propKey$218 !== propKey &&
|
||||
(null != propKey$218 || null != propKey))
|
||||
)
|
||||
switch (lastDefaultValue) {
|
||||
case "selected":
|
||||
propKey$217 !== propKey && (rootMutationContext = !0);
|
||||
propKey$218 !== propKey && (rootMutationContext = !0);
|
||||
domElement.selected =
|
||||
propKey$217 &&
|
||||
"function" !== typeof propKey$217 &&
|
||||
"symbol" !== typeof propKey$217;
|
||||
propKey$218 &&
|
||||
"function" !== typeof propKey$218 &&
|
||||
"symbol" !== typeof propKey$218;
|
||||
break;
|
||||
default:
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
lastDefaultValue,
|
||||
propKey$217,
|
||||
propKey$218,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
@@ -14967,24 +14971,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
case "track":
|
||||
case "wbr":
|
||||
case "menuitem":
|
||||
for (var propKey$238 in lastProps)
|
||||
(propKey$217 = lastProps[propKey$238]),
|
||||
lastProps.hasOwnProperty(propKey$238) &&
|
||||
null != propKey$217 &&
|
||||
!nextProps.hasOwnProperty(propKey$238) &&
|
||||
setProp(domElement, tag, propKey$238, null, nextProps, propKey$217);
|
||||
for (var propKey$239 in lastProps)
|
||||
(propKey$218 = lastProps[propKey$239]),
|
||||
lastProps.hasOwnProperty(propKey$239) &&
|
||||
null != propKey$218 &&
|
||||
!nextProps.hasOwnProperty(propKey$239) &&
|
||||
setProp(domElement, tag, propKey$239, null, nextProps, propKey$218);
|
||||
for (checked in nextProps)
|
||||
if (
|
||||
((propKey$217 = nextProps[checked]),
|
||||
((propKey$218 = nextProps[checked]),
|
||||
(propKey = lastProps[checked]),
|
||||
nextProps.hasOwnProperty(checked) &&
|
||||
propKey$217 !== propKey &&
|
||||
(null != propKey$217 || null != propKey))
|
||||
propKey$218 !== propKey &&
|
||||
(null != propKey$218 || null != propKey))
|
||||
)
|
||||
switch (checked) {
|
||||
case "children":
|
||||
case "dangerouslySetInnerHTML":
|
||||
if (null != propKey$217)
|
||||
if (null != propKey$218)
|
||||
throw Error(formatProdErrorMessage(137, tag));
|
||||
break;
|
||||
default:
|
||||
@@ -14992,7 +14996,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
domElement,
|
||||
tag,
|
||||
checked,
|
||||
propKey$217,
|
||||
propKey$218,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
@@ -15000,49 +15004,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
return;
|
||||
default:
|
||||
if (isCustomElement(tag)) {
|
||||
for (var propKey$243 in lastProps)
|
||||
(propKey$217 = lastProps[propKey$243]),
|
||||
lastProps.hasOwnProperty(propKey$243) &&
|
||||
void 0 !== propKey$217 &&
|
||||
!nextProps.hasOwnProperty(propKey$243) &&
|
||||
for (var propKey$244 in lastProps)
|
||||
(propKey$218 = lastProps[propKey$244]),
|
||||
lastProps.hasOwnProperty(propKey$244) &&
|
||||
void 0 !== propKey$218 &&
|
||||
!nextProps.hasOwnProperty(propKey$244) &&
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$243,
|
||||
propKey$244,
|
||||
void 0,
|
||||
nextProps,
|
||||
propKey$217
|
||||
propKey$218
|
||||
);
|
||||
for (defaultChecked in nextProps)
|
||||
(propKey$217 = nextProps[defaultChecked]),
|
||||
(propKey$218 = nextProps[defaultChecked]),
|
||||
(propKey = lastProps[defaultChecked]),
|
||||
!nextProps.hasOwnProperty(defaultChecked) ||
|
||||
propKey$217 === propKey ||
|
||||
(void 0 === propKey$217 && void 0 === propKey) ||
|
||||
propKey$218 === propKey ||
|
||||
(void 0 === propKey$218 && void 0 === propKey) ||
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
defaultChecked,
|
||||
propKey$217,
|
||||
propKey$218,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
for (var propKey$248 in lastProps)
|
||||
(propKey$217 = lastProps[propKey$248]),
|
||||
lastProps.hasOwnProperty(propKey$248) &&
|
||||
null != propKey$217 &&
|
||||
!nextProps.hasOwnProperty(propKey$248) &&
|
||||
setProp(domElement, tag, propKey$248, null, nextProps, propKey$217);
|
||||
for (var propKey$249 in lastProps)
|
||||
(propKey$218 = lastProps[propKey$249]),
|
||||
lastProps.hasOwnProperty(propKey$249) &&
|
||||
null != propKey$218 &&
|
||||
!nextProps.hasOwnProperty(propKey$249) &&
|
||||
setProp(domElement, tag, propKey$249, null, nextProps, propKey$218);
|
||||
for (lastProp in nextProps)
|
||||
(propKey$217 = nextProps[lastProp]),
|
||||
(propKey$218 = nextProps[lastProp]),
|
||||
(propKey = lastProps[lastProp]),
|
||||
!nextProps.hasOwnProperty(lastProp) ||
|
||||
propKey$217 === propKey ||
|
||||
(null == propKey$217 && null == propKey) ||
|
||||
setProp(domElement, tag, lastProp, propKey$217, nextProps, propKey);
|
||||
propKey$218 === propKey ||
|
||||
(null == propKey$218 && null == propKey) ||
|
||||
setProp(domElement, tag, lastProp, propKey$218, nextProps, propKey);
|
||||
}
|
||||
function isLikelyStaticResource(initiatorType) {
|
||||
switch (initiatorType) {
|
||||
@@ -16275,26 +16279,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
||||
"string" === typeof pendingProps.precedence
|
||||
) {
|
||||
type = getStyleKey(pendingProps.href);
|
||||
var styles$264 = getResourcesFromRoot(
|
||||
var styles$265 = getResourcesFromRoot(
|
||||
JSCompiler_inline_result
|
||||
).hoistableStyles,
|
||||
resource$265 = styles$264.get(type);
|
||||
resource$265 ||
|
||||
resource$266 = styles$265.get(type);
|
||||
resource$266 ||
|
||||
((JSCompiler_inline_result =
|
||||
JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
|
||||
(resource$265 = {
|
||||
(resource$266 = {
|
||||
type: "stylesheet",
|
||||
instance: null,
|
||||
count: 0,
|
||||
state: { loading: 0, preload: null }
|
||||
}),
|
||||
styles$264.set(type, resource$265),
|
||||
(styles$264 = JSCompiler_inline_result.querySelector(
|
||||
styles$265.set(type, resource$266),
|
||||
(styles$265 = JSCompiler_inline_result.querySelector(
|
||||
getStylesheetSelectorFromKey(type)
|
||||
)) &&
|
||||
!styles$264._p &&
|
||||
((resource$265.instance = styles$264),
|
||||
(resource$265.state.loading = 5)),
|
||||
!styles$265._p &&
|
||||
((resource$266.instance = styles$265),
|
||||
(resource$266.state.loading = 5)),
|
||||
preloadPropsMap.has(type) ||
|
||||
((pendingProps = {
|
||||
rel: "preload",
|
||||
@@ -16307,16 +16311,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
||||
referrerPolicy: pendingProps.referrerPolicy
|
||||
}),
|
||||
preloadPropsMap.set(type, pendingProps),
|
||||
styles$264 ||
|
||||
styles$265 ||
|
||||
preloadStylesheet(
|
||||
JSCompiler_inline_result,
|
||||
type,
|
||||
pendingProps,
|
||||
resource$265.state
|
||||
resource$266.state
|
||||
)));
|
||||
if (currentProps && null === currentResource)
|
||||
throw Error(formatProdErrorMessage(528, ""));
|
||||
return resource$265;
|
||||
return resource$266;
|
||||
}
|
||||
if (currentProps && null !== currentResource)
|
||||
throw Error(formatProdErrorMessage(529, ""));
|
||||
@@ -16413,37 +16417,37 @@ function acquireResource(hoistableRoot, resource, props) {
|
||||
return (resource.instance = instance);
|
||||
case "stylesheet":
|
||||
styleProps = getStyleKey(props.href);
|
||||
var instance$270 = hoistableRoot.querySelector(
|
||||
var instance$271 = hoistableRoot.querySelector(
|
||||
getStylesheetSelectorFromKey(styleProps)
|
||||
);
|
||||
if (instance$270)
|
||||
if (instance$271)
|
||||
return (
|
||||
(resource.state.loading |= 4),
|
||||
(resource.instance = instance$270),
|
||||
markNodeAsHoistable(instance$270),
|
||||
instance$270
|
||||
(resource.instance = instance$271),
|
||||
markNodeAsHoistable(instance$271),
|
||||
instance$271
|
||||
);
|
||||
instance = stylesheetPropsFromRawProps(props);
|
||||
(styleProps = preloadPropsMap.get(styleProps)) &&
|
||||
adoptPreloadPropsForStylesheet(instance, styleProps);
|
||||
instance$270 = (
|
||||
instance$271 = (
|
||||
hoistableRoot.ownerDocument || hoistableRoot
|
||||
).createElement("link");
|
||||
markNodeAsHoistable(instance$270);
|
||||
var linkInstance = instance$270;
|
||||
markNodeAsHoistable(instance$271);
|
||||
var linkInstance = instance$271;
|
||||
linkInstance._p = new Promise(function (resolve, reject) {
|
||||
linkInstance.onload = resolve;
|
||||
linkInstance.onerror = reject;
|
||||
});
|
||||
setInitialProperties(instance$270, "link", instance);
|
||||
setInitialProperties(instance$271, "link", instance);
|
||||
resource.state.loading |= 4;
|
||||
insertStylesheet(instance$270, props.precedence, hoistableRoot);
|
||||
return (resource.instance = instance$270);
|
||||
insertStylesheet(instance$271, props.precedence, hoistableRoot);
|
||||
return (resource.instance = instance$271);
|
||||
case "script":
|
||||
instance$270 = getScriptKey(props.src);
|
||||
instance$271 = getScriptKey(props.src);
|
||||
if (
|
||||
(styleProps = hoistableRoot.querySelector(
|
||||
getScriptSelectorFromKey(instance$270)
|
||||
getScriptSelectorFromKey(instance$271)
|
||||
))
|
||||
)
|
||||
return (
|
||||
@@ -16452,7 +16456,7 @@ function acquireResource(hoistableRoot, resource, props) {
|
||||
styleProps
|
||||
);
|
||||
instance = props;
|
||||
if ((styleProps = preloadPropsMap.get(instance$270)))
|
||||
if ((styleProps = preloadPropsMap.get(instance$271)))
|
||||
(instance = assign({}, props)),
|
||||
adoptPreloadPropsForScript(instance, styleProps);
|
||||
hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
|
||||
@@ -17582,16 +17586,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
0 === i && attemptExplicitHydrationTarget(target);
|
||||
}
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2059 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2060 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-ef889445-20250930" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2059
|
||||
"19.2.0-native-fb-d8a15c49-20250930" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2060
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2059,
|
||||
"19.2.0-native-fb-ef889445-20250930"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2060,
|
||||
"19.2.0-native-fb-d8a15c49-20250930"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17611,24 +17615,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
null === componentOrElement ? null : componentOrElement.stateNode;
|
||||
return componentOrElement;
|
||||
};
|
||||
var internals$jscomp$inline_2638 = {
|
||||
var internals$jscomp$inline_2639 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2639 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2640 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2639.isDisabled &&
|
||||
hook$jscomp$inline_2639.supportsFiber
|
||||
!hook$jscomp$inline_2640.isDisabled &&
|
||||
hook$jscomp$inline_2640.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2639.inject(
|
||||
internals$jscomp$inline_2638
|
||||
(rendererID = hook$jscomp$inline_2640.inject(
|
||||
internals$jscomp$inline_2639
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2639);
|
||||
(injectedHook = hook$jscomp$inline_2640);
|
||||
} catch (err) {}
|
||||
}
|
||||
function getCrossOriginStringAs(as, input) {
|
||||
@@ -17876,4 +17880,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
|
||||
+235
-231
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0c9b887bbd1ea751b81f1b34e1f6ad02>>
|
||||
* @generated SignedSource<<6c7d2e6c41828bc28696c20f1c1d666a>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -7139,21 +7139,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -7174,12 +7175,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -7209,7 +7211,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -7225,6 +7228,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -8956,14 +8960,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$128 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$128 = lastTailNode),
|
||||
for (var lastTailNode$129 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$129 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$128
|
||||
null === lastTailNode$129
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$128.sibling = null);
|
||||
: (lastTailNode$129.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -8975,53 +8979,53 @@ function bubbleProperties(completedWork) {
|
||||
if (didBailout)
|
||||
if (0 !== (completedWork.mode & 2)) {
|
||||
for (
|
||||
var treeBaseDuration$130 = completedWork.selfBaseDuration,
|
||||
child$131 = completedWork.child;
|
||||
null !== child$131;
|
||||
var treeBaseDuration$131 = completedWork.selfBaseDuration,
|
||||
child$132 = completedWork.child;
|
||||
null !== child$132;
|
||||
|
||||
)
|
||||
(newChildLanes |= child$131.lanes | child$131.childLanes),
|
||||
(subtreeFlags |= child$131.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$131.flags & 65011712),
|
||||
(treeBaseDuration$130 += child$131.treeBaseDuration),
|
||||
(child$131 = child$131.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$130;
|
||||
(newChildLanes |= child$132.lanes | child$132.childLanes),
|
||||
(subtreeFlags |= child$132.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$132.flags & 65011712),
|
||||
(treeBaseDuration$131 += child$132.treeBaseDuration),
|
||||
(child$132 = child$132.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$131;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$130 = completedWork.child;
|
||||
null !== treeBaseDuration$130;
|
||||
treeBaseDuration$131 = completedWork.child;
|
||||
null !== treeBaseDuration$131;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$130.lanes | treeBaseDuration$130.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$130.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$130.flags & 65011712),
|
||||
(treeBaseDuration$130.return = completedWork),
|
||||
(treeBaseDuration$130 = treeBaseDuration$130.sibling);
|
||||
treeBaseDuration$131.lanes | treeBaseDuration$131.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$131.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$131.flags & 65011712),
|
||||
(treeBaseDuration$131.return = completedWork),
|
||||
(treeBaseDuration$131 = treeBaseDuration$131.sibling);
|
||||
else if (0 !== (completedWork.mode & 2)) {
|
||||
treeBaseDuration$130 = completedWork.actualDuration;
|
||||
child$131 = completedWork.selfBaseDuration;
|
||||
treeBaseDuration$131 = completedWork.actualDuration;
|
||||
child$132 = completedWork.selfBaseDuration;
|
||||
for (var child = completedWork.child; null !== child; )
|
||||
(newChildLanes |= child.lanes | child.childLanes),
|
||||
(subtreeFlags |= child.subtreeFlags),
|
||||
(subtreeFlags |= child.flags),
|
||||
(treeBaseDuration$130 += child.actualDuration),
|
||||
(child$131 += child.treeBaseDuration),
|
||||
(treeBaseDuration$131 += child.actualDuration),
|
||||
(child$132 += child.treeBaseDuration),
|
||||
(child = child.sibling);
|
||||
completedWork.actualDuration = treeBaseDuration$130;
|
||||
completedWork.treeBaseDuration = child$131;
|
||||
completedWork.actualDuration = treeBaseDuration$131;
|
||||
completedWork.treeBaseDuration = child$132;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$130 = completedWork.child;
|
||||
null !== treeBaseDuration$130;
|
||||
treeBaseDuration$131 = completedWork.child;
|
||||
null !== treeBaseDuration$131;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$130.lanes | treeBaseDuration$130.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$130.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$130.flags),
|
||||
(treeBaseDuration$130.return = completedWork),
|
||||
(treeBaseDuration$130 = treeBaseDuration$130.sibling);
|
||||
treeBaseDuration$131.lanes | treeBaseDuration$131.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$131.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$131.flags),
|
||||
(treeBaseDuration$131.return = completedWork),
|
||||
(treeBaseDuration$131 = treeBaseDuration$131.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -9922,8 +9926,8 @@ function safelyCallComponentWillUnmount(
|
||||
} else
|
||||
try {
|
||||
instance.componentWillUnmount();
|
||||
} catch (error$172) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$172);
|
||||
} catch (error$173) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$173);
|
||||
}
|
||||
}
|
||||
function safelyAttachRef(current, nearestMountedAncestor) {
|
||||
@@ -9992,8 +9996,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
recordEffectDuration(current);
|
||||
}
|
||||
else ref(null);
|
||||
} catch (error$173) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$173);
|
||||
} catch (error$174) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$174);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -10457,11 +10461,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
} else
|
||||
try {
|
||||
finishedRoot.componentDidMount();
|
||||
} catch (error$169) {
|
||||
} catch (error$170) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$169
|
||||
error$170
|
||||
);
|
||||
}
|
||||
else {
|
||||
@@ -10478,11 +10482,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
prevState,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$170) {
|
||||
} catch (error$171) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$170
|
||||
error$171
|
||||
);
|
||||
}
|
||||
recordEffectDuration();
|
||||
@@ -10493,11 +10497,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
prevState,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$171) {
|
||||
} catch (error$172) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$171
|
||||
error$172
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11673,25 +11677,25 @@ function commitReconciliationEffects(finishedWork) {
|
||||
);
|
||||
break;
|
||||
case 5:
|
||||
var parent$174 = hostParentFiber.stateNode;
|
||||
var parent$175 = hostParentFiber.stateNode;
|
||||
hostParentFiber.flags & 32 &&
|
||||
(setTextContent(parent$174, ""), (hostParentFiber.flags &= -33));
|
||||
var before$175 = getHostSibling(finishedWork);
|
||||
(setTextContent(parent$175, ""), (hostParentFiber.flags &= -33));
|
||||
var before$176 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNode(
|
||||
finishedWork,
|
||||
before$175,
|
||||
parent$174,
|
||||
before$176,
|
||||
parent$175,
|
||||
parentFragmentInstances
|
||||
);
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
var parent$176 = hostParentFiber.stateNode.containerInfo,
|
||||
before$177 = getHostSibling(finishedWork);
|
||||
var parent$177 = hostParentFiber.stateNode.containerInfo,
|
||||
before$178 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNodeIntoContainer(
|
||||
finishedWork,
|
||||
before$177,
|
||||
parent$176,
|
||||
before$178,
|
||||
parent$177,
|
||||
parentFragmentInstances
|
||||
);
|
||||
break;
|
||||
@@ -13503,7 +13507,7 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= blockingEventTime && blockingEventTime < blockingClampTime
|
||||
? blockingClampTime
|
||||
: blockingEventTime;
|
||||
var clampedRenderStartTime$216 =
|
||||
var clampedRenderStartTime$217 =
|
||||
0 <= endTime
|
||||
? endTime
|
||||
: 0 <= previousRenderStartTime
|
||||
@@ -13513,10 +13517,10 @@ function prepareFreshStack(root, lanes) {
|
||||
(setCurrentTrackFromLanes(2),
|
||||
logSuspendedWithDelayPhase(
|
||||
blockingSuspendedTime,
|
||||
clampedRenderStartTime$216,
|
||||
clampedRenderStartTime$217,
|
||||
lanes
|
||||
));
|
||||
clampedRenderStartTime$216 = blockingEventType;
|
||||
clampedRenderStartTime$217 = blockingEventType;
|
||||
var eventIsRepeat = blockingEventIsRepeat,
|
||||
isSpawnedUpdate = 1 === blockingUpdateType,
|
||||
isPingedUpdate = 2 === blockingUpdateType,
|
||||
@@ -13531,12 +13535,12 @@ function prepareFreshStack(root, lanes) {
|
||||
? endTime > previousRenderStartTime &&
|
||||
(endTime = previousRenderStartTime)
|
||||
: (endTime = previousRenderStartTime),
|
||||
null !== clampedRenderStartTime$216 &&
|
||||
null !== clampedRenderStartTime$217 &&
|
||||
previousRenderStartTime > endTime &&
|
||||
console.timeStamp(
|
||||
eventIsRepeat
|
||||
? "Consecutive"
|
||||
: "Event: " + clampedRenderStartTime$216,
|
||||
: "Event: " + clampedRenderStartTime$217,
|
||||
endTime,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
@@ -13577,13 +13581,13 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= transitionUpdateTime && transitionUpdateTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionUpdateTime),
|
||||
(clampedRenderStartTime$216 =
|
||||
(clampedRenderStartTime$217 =
|
||||
0 <= transitionEventTime && transitionEventTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionEventTime),
|
||||
(eventIsRepeat =
|
||||
0 <= clampedRenderStartTime$216
|
||||
? clampedRenderStartTime$216
|
||||
0 <= clampedRenderStartTime$217
|
||||
? clampedRenderStartTime$217
|
||||
: 0 <= endTime
|
||||
? endTime
|
||||
: renderStartTime),
|
||||
@@ -13608,15 +13612,15 @@ function prepareFreshStack(root, lanes) {
|
||||
? previousRenderStartTime > endTime &&
|
||||
(previousRenderStartTime = endTime)
|
||||
: (previousRenderStartTime = endTime),
|
||||
0 < clampedRenderStartTime$216
|
||||
? clampedRenderStartTime$216 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$216 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$216 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$216 &&
|
||||
0 < clampedRenderStartTime$217
|
||||
? clampedRenderStartTime$217 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$217 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$217 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$217 &&
|
||||
null !== eventIsRepeat &&
|
||||
console.timeStamp(
|
||||
isSpawnedUpdate ? "Consecutive" : "Event: " + eventIsRepeat,
|
||||
clampedRenderStartTime$216,
|
||||
clampedRenderStartTime$217,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
"Scheduler \u269b",
|
||||
@@ -13683,9 +13687,9 @@ function prepareFreshStack(root, lanes) {
|
||||
endTime = root.entangledLanes;
|
||||
if (0 !== endTime)
|
||||
for (root = root.entanglements, endTime &= lanes; 0 < endTime; )
|
||||
(clampedRenderStartTime$216 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$216),
|
||||
(lanes |= root[clampedRenderStartTime$216]),
|
||||
(clampedRenderStartTime$217 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$217),
|
||||
(lanes |= root[clampedRenderStartTime$217]),
|
||||
(endTime &= ~eventIsRepeat);
|
||||
entangledRenderLanes = lanes;
|
||||
finishQueueingConcurrentUpdates();
|
||||
@@ -13844,8 +13848,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
memoizedUpdaters = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$221) {
|
||||
handleThrow(root, thrownValue$221);
|
||||
} catch (thrownValue$222) {
|
||||
handleThrow(root, thrownValue$222);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -13972,8 +13976,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$223) {
|
||||
handleThrow(root, thrownValue$223);
|
||||
} catch (thrownValue$224) {
|
||||
handleThrow(root, thrownValue$224);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -14952,14 +14956,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
||||
isFlushingWork = !0;
|
||||
do {
|
||||
var didPerformSomeWork = !1;
|
||||
for (var root$229 = firstScheduledRoot; null !== root$229; ) {
|
||||
if (!onlyLegacy || 0 === root$229.tag)
|
||||
for (var root$230 = firstScheduledRoot; null !== root$230; ) {
|
||||
if (!onlyLegacy || 0 === root$230.tag)
|
||||
if (0 !== syncTransitionLanes) {
|
||||
var pendingLanes = root$229.pendingLanes;
|
||||
var pendingLanes = root$230.pendingLanes;
|
||||
if (0 === pendingLanes) var JSCompiler_inline_result = 0;
|
||||
else {
|
||||
var suspendedLanes = root$229.suspendedLanes,
|
||||
pingedLanes = root$229.pingedLanes;
|
||||
var suspendedLanes = root$230.suspendedLanes,
|
||||
pingedLanes = root$230.pingedLanes;
|
||||
JSCompiler_inline_result =
|
||||
(1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1;
|
||||
JSCompiler_inline_result &=
|
||||
@@ -14973,20 +14977,20 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) {
|
||||
}
|
||||
0 !== JSCompiler_inline_result &&
|
||||
((didPerformSomeWork = !0),
|
||||
performSyncWorkOnRoot(root$229, JSCompiler_inline_result));
|
||||
performSyncWorkOnRoot(root$230, JSCompiler_inline_result));
|
||||
} else
|
||||
(JSCompiler_inline_result = workInProgressRootRenderLanes),
|
||||
(JSCompiler_inline_result = getNextLanes(
|
||||
root$229,
|
||||
root$229 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
||||
null !== root$229.cancelPendingCommit ||
|
||||
-1 !== root$229.timeoutHandle
|
||||
root$230,
|
||||
root$230 === workInProgressRoot ? JSCompiler_inline_result : 0,
|
||||
null !== root$230.cancelPendingCommit ||
|
||||
-1 !== root$230.timeoutHandle
|
||||
)),
|
||||
0 === (JSCompiler_inline_result & 3) ||
|
||||
checkIfRootIsPrerendering(root$229, JSCompiler_inline_result) ||
|
||||
checkIfRootIsPrerendering(root$230, JSCompiler_inline_result) ||
|
||||
((didPerformSomeWork = !0),
|
||||
performSyncWorkOnRoot(root$229, JSCompiler_inline_result));
|
||||
root$229 = root$229.next;
|
||||
performSyncWorkOnRoot(root$230, JSCompiler_inline_result));
|
||||
root$230 = root$230.next;
|
||||
}
|
||||
} while (didPerformSomeWork);
|
||||
isFlushingWork = !1;
|
||||
@@ -15314,20 +15318,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1939 = 0;
|
||||
i$jscomp$inline_1939 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1939++
|
||||
var i$jscomp$inline_1940 = 0;
|
||||
i$jscomp$inline_1940 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1940++
|
||||
) {
|
||||
var eventName$jscomp$inline_1940 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1939],
|
||||
domEventName$jscomp$inline_1941 =
|
||||
eventName$jscomp$inline_1940.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1942 =
|
||||
eventName$jscomp$inline_1940[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1940.slice(1);
|
||||
var eventName$jscomp$inline_1941 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1940],
|
||||
domEventName$jscomp$inline_1942 =
|
||||
eventName$jscomp$inline_1941.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1943 =
|
||||
eventName$jscomp$inline_1941[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1941.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1941,
|
||||
"on" + capitalizedEvent$jscomp$inline_1942
|
||||
domEventName$jscomp$inline_1942,
|
||||
"on" + capitalizedEvent$jscomp$inline_1943
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -16552,34 +16556,34 @@ function setInitialProperties(domElement, tag, props) {
|
||||
var propKey = null;
|
||||
for (hasSrc in props)
|
||||
if (props.hasOwnProperty(hasSrc)) {
|
||||
var propValue$243 = props[hasSrc];
|
||||
if (null != propValue$243)
|
||||
var propValue$244 = props[hasSrc];
|
||||
if (null != propValue$244)
|
||||
switch (hasSrc) {
|
||||
case "name":
|
||||
hasSrcSet = propValue$243;
|
||||
hasSrcSet = propValue$244;
|
||||
break;
|
||||
case "type":
|
||||
propValue = propValue$243;
|
||||
propValue = propValue$244;
|
||||
break;
|
||||
case "checked":
|
||||
checked = propValue$243;
|
||||
checked = propValue$244;
|
||||
break;
|
||||
case "defaultChecked":
|
||||
propKey = propValue$243;
|
||||
propKey = propValue$244;
|
||||
break;
|
||||
case "value":
|
||||
value = propValue$243;
|
||||
value = propValue$244;
|
||||
break;
|
||||
case "defaultValue":
|
||||
defaultValue = propValue$243;
|
||||
defaultValue = propValue$244;
|
||||
break;
|
||||
case "children":
|
||||
case "dangerouslySetInnerHTML":
|
||||
if (null != propValue$243)
|
||||
if (null != propValue$244)
|
||||
throw Error(formatProdErrorMessage(137, tag));
|
||||
break;
|
||||
default:
|
||||
setProp(domElement, tag, hasSrc, propValue$243, props, null);
|
||||
setProp(domElement, tag, hasSrc, propValue$244, props, null);
|
||||
}
|
||||
}
|
||||
a: {
|
||||
@@ -16762,14 +16766,14 @@ function setInitialProperties(domElement, tag, props) {
|
||||
return;
|
||||
default:
|
||||
if (isCustomElement(tag)) {
|
||||
for (propValue$243 in props)
|
||||
props.hasOwnProperty(propValue$243) &&
|
||||
((hasSrc = props[propValue$243]),
|
||||
for (propValue$244 in props)
|
||||
props.hasOwnProperty(propValue$244) &&
|
||||
((hasSrc = props[propValue$244]),
|
||||
void 0 !== hasSrc &&
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
propValue$243,
|
||||
propValue$244,
|
||||
hasSrc,
|
||||
props,
|
||||
void 0
|
||||
@@ -16816,14 +16820,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(domElement, tag, propKey, null, nextProps, lastProp);
|
||||
}
|
||||
}
|
||||
for (var propKey$260 in nextProps) {
|
||||
var propKey = nextProps[propKey$260];
|
||||
lastProp = lastProps[propKey$260];
|
||||
for (var propKey$261 in nextProps) {
|
||||
var propKey = nextProps[propKey$261];
|
||||
lastProp = lastProps[propKey$261];
|
||||
if (
|
||||
nextProps.hasOwnProperty(propKey$260) &&
|
||||
nextProps.hasOwnProperty(propKey$261) &&
|
||||
(null != propKey || null != lastProp)
|
||||
)
|
||||
switch (propKey$260) {
|
||||
switch (propKey$261) {
|
||||
case "type":
|
||||
propKey !== lastProp && (rootMutationContext = !0);
|
||||
type = propKey;
|
||||
@@ -16858,7 +16862,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$260,
|
||||
propKey$261,
|
||||
propKey,
|
||||
nextProps,
|
||||
lastProp
|
||||
@@ -16877,7 +16881,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
);
|
||||
return;
|
||||
case "select":
|
||||
propKey = value = defaultValue = propKey$260 = null;
|
||||
propKey = value = defaultValue = propKey$261 = null;
|
||||
for (type in lastProps)
|
||||
if (
|
||||
((lastDefaultValue = lastProps[type]),
|
||||
@@ -16909,7 +16913,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
switch (name) {
|
||||
case "value":
|
||||
type !== lastDefaultValue && (rootMutationContext = !0);
|
||||
propKey$260 = type;
|
||||
propKey$261 = type;
|
||||
break;
|
||||
case "defaultValue":
|
||||
type !== lastDefaultValue && (rootMutationContext = !0);
|
||||
@@ -16932,15 +16936,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
tag = defaultValue;
|
||||
lastProps = value;
|
||||
nextProps = propKey;
|
||||
null != propKey$260
|
||||
? updateOptions(domElement, !!lastProps, propKey$260, !1)
|
||||
null != propKey$261
|
||||
? updateOptions(domElement, !!lastProps, propKey$261, !1)
|
||||
: !!nextProps !== !!lastProps &&
|
||||
(null != tag
|
||||
? updateOptions(domElement, !!lastProps, tag, !0)
|
||||
: updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1));
|
||||
return;
|
||||
case "textarea":
|
||||
propKey = propKey$260 = null;
|
||||
propKey = propKey$261 = null;
|
||||
for (defaultValue in lastProps)
|
||||
if (
|
||||
((name = lastProps[defaultValue]),
|
||||
@@ -16965,7 +16969,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
switch (value) {
|
||||
case "value":
|
||||
name !== type && (rootMutationContext = !0);
|
||||
propKey$260 = name;
|
||||
propKey$261 = name;
|
||||
break;
|
||||
case "defaultValue":
|
||||
name !== type && (rootMutationContext = !0);
|
||||
@@ -16980,17 +16984,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
name !== type &&
|
||||
setProp(domElement, tag, value, name, nextProps, type);
|
||||
}
|
||||
updateTextarea(domElement, propKey$260, propKey);
|
||||
updateTextarea(domElement, propKey$261, propKey);
|
||||
return;
|
||||
case "option":
|
||||
for (var propKey$276 in lastProps)
|
||||
for (var propKey$277 in lastProps)
|
||||
if (
|
||||
((propKey$260 = lastProps[propKey$276]),
|
||||
lastProps.hasOwnProperty(propKey$276) &&
|
||||
null != propKey$260 &&
|
||||
!nextProps.hasOwnProperty(propKey$276))
|
||||
((propKey$261 = lastProps[propKey$277]),
|
||||
lastProps.hasOwnProperty(propKey$277) &&
|
||||
null != propKey$261 &&
|
||||
!nextProps.hasOwnProperty(propKey$277))
|
||||
)
|
||||
switch (propKey$276) {
|
||||
switch (propKey$277) {
|
||||
case "selected":
|
||||
domElement.selected = !1;
|
||||
break;
|
||||
@@ -16998,34 +17002,34 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$276,
|
||||
propKey$277,
|
||||
null,
|
||||
nextProps,
|
||||
propKey$260
|
||||
propKey$261
|
||||
);
|
||||
}
|
||||
for (lastDefaultValue in nextProps)
|
||||
if (
|
||||
((propKey$260 = nextProps[lastDefaultValue]),
|
||||
((propKey$261 = nextProps[lastDefaultValue]),
|
||||
(propKey = lastProps[lastDefaultValue]),
|
||||
nextProps.hasOwnProperty(lastDefaultValue) &&
|
||||
propKey$260 !== propKey &&
|
||||
(null != propKey$260 || null != propKey))
|
||||
propKey$261 !== propKey &&
|
||||
(null != propKey$261 || null != propKey))
|
||||
)
|
||||
switch (lastDefaultValue) {
|
||||
case "selected":
|
||||
propKey$260 !== propKey && (rootMutationContext = !0);
|
||||
propKey$261 !== propKey && (rootMutationContext = !0);
|
||||
domElement.selected =
|
||||
propKey$260 &&
|
||||
"function" !== typeof propKey$260 &&
|
||||
"symbol" !== typeof propKey$260;
|
||||
propKey$261 &&
|
||||
"function" !== typeof propKey$261 &&
|
||||
"symbol" !== typeof propKey$261;
|
||||
break;
|
||||
default:
|
||||
setProp(
|
||||
domElement,
|
||||
tag,
|
||||
lastDefaultValue,
|
||||
propKey$260,
|
||||
propKey$261,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
@@ -17046,24 +17050,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
case "track":
|
||||
case "wbr":
|
||||
case "menuitem":
|
||||
for (var propKey$281 in lastProps)
|
||||
(propKey$260 = lastProps[propKey$281]),
|
||||
lastProps.hasOwnProperty(propKey$281) &&
|
||||
null != propKey$260 &&
|
||||
!nextProps.hasOwnProperty(propKey$281) &&
|
||||
setProp(domElement, tag, propKey$281, null, nextProps, propKey$260);
|
||||
for (var propKey$282 in lastProps)
|
||||
(propKey$261 = lastProps[propKey$282]),
|
||||
lastProps.hasOwnProperty(propKey$282) &&
|
||||
null != propKey$261 &&
|
||||
!nextProps.hasOwnProperty(propKey$282) &&
|
||||
setProp(domElement, tag, propKey$282, null, nextProps, propKey$261);
|
||||
for (checked in nextProps)
|
||||
if (
|
||||
((propKey$260 = nextProps[checked]),
|
||||
((propKey$261 = nextProps[checked]),
|
||||
(propKey = lastProps[checked]),
|
||||
nextProps.hasOwnProperty(checked) &&
|
||||
propKey$260 !== propKey &&
|
||||
(null != propKey$260 || null != propKey))
|
||||
propKey$261 !== propKey &&
|
||||
(null != propKey$261 || null != propKey))
|
||||
)
|
||||
switch (checked) {
|
||||
case "children":
|
||||
case "dangerouslySetInnerHTML":
|
||||
if (null != propKey$260)
|
||||
if (null != propKey$261)
|
||||
throw Error(formatProdErrorMessage(137, tag));
|
||||
break;
|
||||
default:
|
||||
@@ -17071,7 +17075,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
domElement,
|
||||
tag,
|
||||
checked,
|
||||
propKey$260,
|
||||
propKey$261,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
@@ -17079,49 +17083,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) {
|
||||
return;
|
||||
default:
|
||||
if (isCustomElement(tag)) {
|
||||
for (var propKey$286 in lastProps)
|
||||
(propKey$260 = lastProps[propKey$286]),
|
||||
lastProps.hasOwnProperty(propKey$286) &&
|
||||
void 0 !== propKey$260 &&
|
||||
!nextProps.hasOwnProperty(propKey$286) &&
|
||||
for (var propKey$287 in lastProps)
|
||||
(propKey$261 = lastProps[propKey$287]),
|
||||
lastProps.hasOwnProperty(propKey$287) &&
|
||||
void 0 !== propKey$261 &&
|
||||
!nextProps.hasOwnProperty(propKey$287) &&
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
propKey$286,
|
||||
propKey$287,
|
||||
void 0,
|
||||
nextProps,
|
||||
propKey$260
|
||||
propKey$261
|
||||
);
|
||||
for (defaultChecked in nextProps)
|
||||
(propKey$260 = nextProps[defaultChecked]),
|
||||
(propKey$261 = nextProps[defaultChecked]),
|
||||
(propKey = lastProps[defaultChecked]),
|
||||
!nextProps.hasOwnProperty(defaultChecked) ||
|
||||
propKey$260 === propKey ||
|
||||
(void 0 === propKey$260 && void 0 === propKey) ||
|
||||
propKey$261 === propKey ||
|
||||
(void 0 === propKey$261 && void 0 === propKey) ||
|
||||
setPropOnCustomElement(
|
||||
domElement,
|
||||
tag,
|
||||
defaultChecked,
|
||||
propKey$260,
|
||||
propKey$261,
|
||||
nextProps,
|
||||
propKey
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
for (var propKey$291 in lastProps)
|
||||
(propKey$260 = lastProps[propKey$291]),
|
||||
lastProps.hasOwnProperty(propKey$291) &&
|
||||
null != propKey$260 &&
|
||||
!nextProps.hasOwnProperty(propKey$291) &&
|
||||
setProp(domElement, tag, propKey$291, null, nextProps, propKey$260);
|
||||
for (var propKey$292 in lastProps)
|
||||
(propKey$261 = lastProps[propKey$292]),
|
||||
lastProps.hasOwnProperty(propKey$292) &&
|
||||
null != propKey$261 &&
|
||||
!nextProps.hasOwnProperty(propKey$292) &&
|
||||
setProp(domElement, tag, propKey$292, null, nextProps, propKey$261);
|
||||
for (lastProp in nextProps)
|
||||
(propKey$260 = nextProps[lastProp]),
|
||||
(propKey$261 = nextProps[lastProp]),
|
||||
(propKey = lastProps[lastProp]),
|
||||
!nextProps.hasOwnProperty(lastProp) ||
|
||||
propKey$260 === propKey ||
|
||||
(null == propKey$260 && null == propKey) ||
|
||||
setProp(domElement, tag, lastProp, propKey$260, nextProps, propKey);
|
||||
propKey$261 === propKey ||
|
||||
(null == propKey$261 && null == propKey) ||
|
||||
setProp(domElement, tag, lastProp, propKey$261, nextProps, propKey);
|
||||
}
|
||||
function isLikelyStaticResource(initiatorType) {
|
||||
switch (initiatorType) {
|
||||
@@ -18363,26 +18367,26 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
||||
"string" === typeof pendingProps.precedence
|
||||
) {
|
||||
type = getStyleKey(pendingProps.href);
|
||||
var styles$307 = getResourcesFromRoot(
|
||||
var styles$308 = getResourcesFromRoot(
|
||||
JSCompiler_inline_result
|
||||
).hoistableStyles,
|
||||
resource$308 = styles$307.get(type);
|
||||
resource$308 ||
|
||||
resource$309 = styles$308.get(type);
|
||||
resource$309 ||
|
||||
((JSCompiler_inline_result =
|
||||
JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result),
|
||||
(resource$308 = {
|
||||
(resource$309 = {
|
||||
type: "stylesheet",
|
||||
instance: null,
|
||||
count: 0,
|
||||
state: { loading: 0, preload: null }
|
||||
}),
|
||||
styles$307.set(type, resource$308),
|
||||
(styles$307 = JSCompiler_inline_result.querySelector(
|
||||
styles$308.set(type, resource$309),
|
||||
(styles$308 = JSCompiler_inline_result.querySelector(
|
||||
getStylesheetSelectorFromKey(type)
|
||||
)) &&
|
||||
!styles$307._p &&
|
||||
((resource$308.instance = styles$307),
|
||||
(resource$308.state.loading = 5)),
|
||||
!styles$308._p &&
|
||||
((resource$309.instance = styles$308),
|
||||
(resource$309.state.loading = 5)),
|
||||
preloadPropsMap.has(type) ||
|
||||
((pendingProps = {
|
||||
rel: "preload",
|
||||
@@ -18395,16 +18399,16 @@ function getResource(type, currentProps, pendingProps, currentResource) {
|
||||
referrerPolicy: pendingProps.referrerPolicy
|
||||
}),
|
||||
preloadPropsMap.set(type, pendingProps),
|
||||
styles$307 ||
|
||||
styles$308 ||
|
||||
preloadStylesheet(
|
||||
JSCompiler_inline_result,
|
||||
type,
|
||||
pendingProps,
|
||||
resource$308.state
|
||||
resource$309.state
|
||||
)));
|
||||
if (currentProps && null === currentResource)
|
||||
throw Error(formatProdErrorMessage(528, ""));
|
||||
return resource$308;
|
||||
return resource$309;
|
||||
}
|
||||
if (currentProps && null !== currentResource)
|
||||
throw Error(formatProdErrorMessage(529, ""));
|
||||
@@ -18501,37 +18505,37 @@ function acquireResource(hoistableRoot, resource, props) {
|
||||
return (resource.instance = instance);
|
||||
case "stylesheet":
|
||||
styleProps = getStyleKey(props.href);
|
||||
var instance$313 = hoistableRoot.querySelector(
|
||||
var instance$314 = hoistableRoot.querySelector(
|
||||
getStylesheetSelectorFromKey(styleProps)
|
||||
);
|
||||
if (instance$313)
|
||||
if (instance$314)
|
||||
return (
|
||||
(resource.state.loading |= 4),
|
||||
(resource.instance = instance$313),
|
||||
markNodeAsHoistable(instance$313),
|
||||
instance$313
|
||||
(resource.instance = instance$314),
|
||||
markNodeAsHoistable(instance$314),
|
||||
instance$314
|
||||
);
|
||||
instance = stylesheetPropsFromRawProps(props);
|
||||
(styleProps = preloadPropsMap.get(styleProps)) &&
|
||||
adoptPreloadPropsForStylesheet(instance, styleProps);
|
||||
instance$313 = (
|
||||
instance$314 = (
|
||||
hoistableRoot.ownerDocument || hoistableRoot
|
||||
).createElement("link");
|
||||
markNodeAsHoistable(instance$313);
|
||||
var linkInstance = instance$313;
|
||||
markNodeAsHoistable(instance$314);
|
||||
var linkInstance = instance$314;
|
||||
linkInstance._p = new Promise(function (resolve, reject) {
|
||||
linkInstance.onload = resolve;
|
||||
linkInstance.onerror = reject;
|
||||
});
|
||||
setInitialProperties(instance$313, "link", instance);
|
||||
setInitialProperties(instance$314, "link", instance);
|
||||
resource.state.loading |= 4;
|
||||
insertStylesheet(instance$313, props.precedence, hoistableRoot);
|
||||
return (resource.instance = instance$313);
|
||||
insertStylesheet(instance$314, props.precedence, hoistableRoot);
|
||||
return (resource.instance = instance$314);
|
||||
case "script":
|
||||
instance$313 = getScriptKey(props.src);
|
||||
instance$314 = getScriptKey(props.src);
|
||||
if (
|
||||
(styleProps = hoistableRoot.querySelector(
|
||||
getScriptSelectorFromKey(instance$313)
|
||||
getScriptSelectorFromKey(instance$314)
|
||||
))
|
||||
)
|
||||
return (
|
||||
@@ -18540,7 +18544,7 @@ function acquireResource(hoistableRoot, resource, props) {
|
||||
styleProps
|
||||
);
|
||||
instance = props;
|
||||
if ((styleProps = preloadPropsMap.get(instance$313)))
|
||||
if ((styleProps = preloadPropsMap.get(instance$314)))
|
||||
(instance = assign({}, props)),
|
||||
adoptPreloadPropsForScript(instance, styleProps);
|
||||
hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot;
|
||||
@@ -19679,16 +19683,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
0 === i && attemptExplicitHydrationTarget(target);
|
||||
}
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2350 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2351 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-ef889445-20250930" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2350
|
||||
"19.2.0-native-fb-d8a15c49-20250930" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2351
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2350,
|
||||
"19.2.0-native-fb-ef889445-20250930"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2351,
|
||||
"19.2.0-native-fb-d8a15c49-20250930"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19708,17 +19712,17 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
null === componentOrElement ? null : componentOrElement.stateNode;
|
||||
return componentOrElement;
|
||||
};
|
||||
var internals$jscomp$inline_2357 = {
|
||||
var internals$jscomp$inline_2358 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930",
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$330 = 0;
|
||||
31 > index$330;
|
||||
index$330++
|
||||
var map = new Map(), lane = 1, index$331 = 0;
|
||||
31 > index$331;
|
||||
index$331++
|
||||
) {
|
||||
var label = getLabelForLane(lane);
|
||||
map.set(lane, label);
|
||||
@@ -19731,16 +19735,16 @@ var internals$jscomp$inline_2357 = {
|
||||
}
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2931 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2932 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2931.isDisabled &&
|
||||
hook$jscomp$inline_2931.supportsFiber
|
||||
!hook$jscomp$inline_2932.isDisabled &&
|
||||
hook$jscomp$inline_2932.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2931.inject(
|
||||
internals$jscomp$inline_2357
|
||||
(rendererID = hook$jscomp$inline_2932.inject(
|
||||
internals$jscomp$inline_2358
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2931);
|
||||
(injectedHook = hook$jscomp$inline_2932);
|
||||
} catch (err) {}
|
||||
}
|
||||
function getCrossOriginStringAs(as, input) {
|
||||
@@ -19989,7 +19993,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+21
-17
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<3f934fe75f8e47f8ec2076835cdc6955>>
|
||||
* @generated SignedSource<<bb4f590305b77783e72d67d0e8adc2c4>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -6703,23 +6703,24 @@ __DEV__ &&
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -6740,14 +6741,15 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -6777,7 +6779,8 @@ __DEV__ &&
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -6796,6 +6799,7 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -16011,10 +16015,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -16160,5 +16164,5 @@ __DEV__ &&
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
})();
|
||||
|
||||
+81
-77
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<4eba89e9a6b93cfe57dad60722be9f29>>
|
||||
* @generated SignedSource<<9e4182a17f4d2584b01dfd43b302f6d7>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -4728,21 +4728,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -4763,12 +4764,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -4798,7 +4800,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -4814,6 +4817,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -5677,9 +5681,9 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
);
|
||||
break;
|
||||
case 13:
|
||||
var state$69 = workInProgress.memoizedState;
|
||||
if (null !== state$69) {
|
||||
if (null !== state$69.dehydrated)
|
||||
var state$70 = workInProgress.memoizedState;
|
||||
if (null !== state$70) {
|
||||
if (null !== state$70.dehydrated)
|
||||
return (
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
(workInProgress.flags |= 128),
|
||||
@@ -5699,17 +5703,17 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
break;
|
||||
case 19:
|
||||
var didSuspendBefore = 0 !== (current.flags & 128);
|
||||
state$69 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$69 ||
|
||||
state$70 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$70 ||
|
||||
(propagateParentContextChanges(
|
||||
current,
|
||||
workInProgress,
|
||||
renderLanes,
|
||||
!1
|
||||
),
|
||||
(state$69 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
(state$70 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
if (didSuspendBefore) {
|
||||
if (state$69)
|
||||
if (state$70)
|
||||
return updateSuspenseListComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
@@ -5723,7 +5727,7 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
(didSuspendBefore.tail = null),
|
||||
(didSuspendBefore.lastEffect = null));
|
||||
push(suspenseStackCursor, suspenseStackCursor.current);
|
||||
if (state$69) break;
|
||||
if (state$70) break;
|
||||
else return null;
|
||||
case 22:
|
||||
return (
|
||||
@@ -6202,14 +6206,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$79 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$79 = lastTailNode),
|
||||
for (var lastTailNode$80 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$80 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$79
|
||||
null === lastTailNode$80
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$79.sibling = null);
|
||||
: (lastTailNode$80.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -6219,19 +6223,19 @@ function bubbleProperties(completedWork) {
|
||||
newChildLanes = 0,
|
||||
subtreeFlags = 0;
|
||||
if (didBailout)
|
||||
for (var child$80 = completedWork.child; null !== child$80; )
|
||||
(newChildLanes |= child$80.lanes | child$80.childLanes),
|
||||
(subtreeFlags |= child$80.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$80.flags & 65011712),
|
||||
(child$80.return = completedWork),
|
||||
(child$80 = child$80.sibling);
|
||||
for (var child$81 = completedWork.child; null !== child$81; )
|
||||
(newChildLanes |= child$81.lanes | child$81.childLanes),
|
||||
(subtreeFlags |= child$81.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$81.flags & 65011712),
|
||||
(child$81.return = completedWork),
|
||||
(child$81 = child$81.sibling);
|
||||
else
|
||||
for (child$80 = completedWork.child; null !== child$80; )
|
||||
(newChildLanes |= child$80.lanes | child$80.childLanes),
|
||||
(subtreeFlags |= child$80.subtreeFlags),
|
||||
(subtreeFlags |= child$80.flags),
|
||||
(child$80.return = completedWork),
|
||||
(child$80 = child$80.sibling);
|
||||
for (child$81 = completedWork.child; null !== child$81; )
|
||||
(newChildLanes |= child$81.lanes | child$81.childLanes),
|
||||
(subtreeFlags |= child$81.subtreeFlags),
|
||||
(subtreeFlags |= child$81.flags),
|
||||
(child$81.return = completedWork),
|
||||
(child$81 = child$81.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -6430,11 +6434,11 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
null !== newProps.alternate.memoizedState &&
|
||||
null !== newProps.alternate.memoizedState.cachePool &&
|
||||
(index = newProps.alternate.memoizedState.cachePool.pool);
|
||||
var cache$87 = null;
|
||||
var cache$88 = null;
|
||||
null !== newProps.memoizedState &&
|
||||
null !== newProps.memoizedState.cachePool &&
|
||||
(cache$87 = newProps.memoizedState.cachePool.pool);
|
||||
cache$87 !== index && (newProps.flags |= 2048);
|
||||
(cache$88 = newProps.memoizedState.cachePool.pool);
|
||||
cache$88 !== index && (newProps.flags |= 2048);
|
||||
}
|
||||
renderLanes !== current &&
|
||||
renderLanes &&
|
||||
@@ -6459,8 +6463,8 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
index = workInProgress.memoizedState;
|
||||
if (null === index) return bubbleProperties(workInProgress), null;
|
||||
newProps = 0 !== (workInProgress.flags & 128);
|
||||
cache$87 = index.rendering;
|
||||
if (null === cache$87)
|
||||
cache$88 = index.rendering;
|
||||
if (null === cache$88)
|
||||
if (newProps) cutOffTailIfNeeded(index, !1);
|
||||
else {
|
||||
if (
|
||||
@@ -6468,11 +6472,11 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
(null !== current && 0 !== (current.flags & 128))
|
||||
)
|
||||
for (current = workInProgress.child; null !== current; ) {
|
||||
cache$87 = findFirstSuspended(current);
|
||||
if (null !== cache$87) {
|
||||
cache$88 = findFirstSuspended(current);
|
||||
if (null !== cache$88) {
|
||||
workInProgress.flags |= 128;
|
||||
cutOffTailIfNeeded(index, !1);
|
||||
current = cache$87.updateQueue;
|
||||
current = cache$88.updateQueue;
|
||||
workInProgress.updateQueue = current;
|
||||
scheduleRetryEffect(workInProgress, current);
|
||||
workInProgress.subtreeFlags = 0;
|
||||
@@ -6497,7 +6501,7 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
}
|
||||
else {
|
||||
if (!newProps)
|
||||
if (((current = findFirstSuspended(cache$87)), null !== current)) {
|
||||
if (((current = findFirstSuspended(cache$88)), null !== current)) {
|
||||
if (
|
||||
((workInProgress.flags |= 128),
|
||||
(newProps = !0),
|
||||
@@ -6507,7 +6511,7 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
cutOffTailIfNeeded(index, !0),
|
||||
null === index.tail &&
|
||||
"hidden" === index.tailMode &&
|
||||
!cache$87.alternate)
|
||||
!cache$88.alternate)
|
||||
)
|
||||
return bubbleProperties(workInProgress), null;
|
||||
} else
|
||||
@@ -6519,13 +6523,13 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
cutOffTailIfNeeded(index, !1),
|
||||
(workInProgress.lanes = 4194304));
|
||||
index.isBackwards
|
||||
? ((cache$87.sibling = workInProgress.child),
|
||||
(workInProgress.child = cache$87))
|
||||
? ((cache$88.sibling = workInProgress.child),
|
||||
(workInProgress.child = cache$88))
|
||||
: ((current = index.last),
|
||||
null !== current
|
||||
? (current.sibling = cache$87)
|
||||
: (workInProgress.child = cache$87),
|
||||
(index.last = cache$87));
|
||||
? (current.sibling = cache$88)
|
||||
: (workInProgress.child = cache$88),
|
||||
(index.last = cache$88));
|
||||
}
|
||||
if (null !== index.tail)
|
||||
return (
|
||||
@@ -6725,9 +6729,9 @@ function commitHookEffectListMount(flags, finishedWork) {
|
||||
do {
|
||||
if ((updateQueue.tag & flags) === flags) {
|
||||
lastEffect = void 0;
|
||||
var create$104 = updateQueue.create,
|
||||
var create$105 = updateQueue.create,
|
||||
inst = updateQueue.inst;
|
||||
lastEffect = create$104();
|
||||
lastEffect = create$105();
|
||||
inst.destroy = lastEffect;
|
||||
}
|
||||
updateQueue = updateQueue.next;
|
||||
@@ -6843,8 +6847,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
else if ("function" === typeof ref)
|
||||
try {
|
||||
ref(null);
|
||||
} catch (error$106) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$106);
|
||||
} catch (error$107) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$107);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -7012,11 +7016,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$105) {
|
||||
} catch (error$106) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$105
|
||||
error$106
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7600,12 +7604,12 @@ function commitReconciliationEffects(finishedWork) {
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
var parent$107 = hostParentFiber.stateNode.containerInfo,
|
||||
before$108 = getHostSibling(finishedWork);
|
||||
var parent$108 = hostParentFiber.stateNode.containerInfo,
|
||||
before$109 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNodeIntoContainer(
|
||||
finishedWork,
|
||||
before$108,
|
||||
parent$107
|
||||
before$109,
|
||||
parent$108
|
||||
);
|
||||
break;
|
||||
default:
|
||||
@@ -8793,8 +8797,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
exitStatus = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$123) {
|
||||
handleThrow(root, thrownValue$123);
|
||||
} catch (thrownValue$124) {
|
||||
handleThrow(root, thrownValue$124);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -8909,8 +8913,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$125) {
|
||||
handleThrow(root, thrownValue$125);
|
||||
} catch (thrownValue$126) {
|
||||
handleThrow(root, thrownValue$126);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -10098,24 +10102,24 @@ function wrapFiber(fiber) {
|
||||
fiberToWrapper.set(fiber, wrapper));
|
||||
return wrapper;
|
||||
}
|
||||
var internals$jscomp$inline_1492 = {
|
||||
var internals$jscomp$inline_1493 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1493 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1494 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1493.isDisabled &&
|
||||
hook$jscomp$inline_1493.supportsFiber
|
||||
!hook$jscomp$inline_1494.isDisabled &&
|
||||
hook$jscomp$inline_1494.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1493.inject(
|
||||
internals$jscomp$inline_1492
|
||||
(rendererID = hook$jscomp$inline_1494.inject(
|
||||
internals$jscomp$inline_1493
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1493);
|
||||
(injectedHook = hook$jscomp$inline_1494);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports._Scheduler = Scheduler;
|
||||
@@ -10239,4 +10243,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
|
||||
+99
-95
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<26edd51c2d52fd1f93f86d4cef6afcc4>>
|
||||
* @generated SignedSource<<87a4e2040f44e845baff44d0abee1d68>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -4854,21 +4854,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -4889,12 +4890,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -4924,7 +4926,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -4940,6 +4943,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -6365,14 +6369,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$80 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$80 = lastTailNode),
|
||||
for (var lastTailNode$81 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$81 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$80
|
||||
null === lastTailNode$81
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$80.sibling = null);
|
||||
: (lastTailNode$81.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -6384,53 +6388,53 @@ function bubbleProperties(completedWork) {
|
||||
if (didBailout)
|
||||
if (0 !== (completedWork.mode & 2)) {
|
||||
for (
|
||||
var treeBaseDuration$82 = completedWork.selfBaseDuration,
|
||||
child$83 = completedWork.child;
|
||||
null !== child$83;
|
||||
var treeBaseDuration$83 = completedWork.selfBaseDuration,
|
||||
child$84 = completedWork.child;
|
||||
null !== child$84;
|
||||
|
||||
)
|
||||
(newChildLanes |= child$83.lanes | child$83.childLanes),
|
||||
(subtreeFlags |= child$83.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$83.flags & 65011712),
|
||||
(treeBaseDuration$82 += child$83.treeBaseDuration),
|
||||
(child$83 = child$83.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$82;
|
||||
(newChildLanes |= child$84.lanes | child$84.childLanes),
|
||||
(subtreeFlags |= child$84.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$84.flags & 65011712),
|
||||
(treeBaseDuration$83 += child$84.treeBaseDuration),
|
||||
(child$84 = child$84.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$83;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$82 = completedWork.child;
|
||||
null !== treeBaseDuration$82;
|
||||
treeBaseDuration$83 = completedWork.child;
|
||||
null !== treeBaseDuration$83;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$82.lanes | treeBaseDuration$82.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$82.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$82.flags & 65011712),
|
||||
(treeBaseDuration$82.return = completedWork),
|
||||
(treeBaseDuration$82 = treeBaseDuration$82.sibling);
|
||||
treeBaseDuration$83.lanes | treeBaseDuration$83.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$83.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$83.flags & 65011712),
|
||||
(treeBaseDuration$83.return = completedWork),
|
||||
(treeBaseDuration$83 = treeBaseDuration$83.sibling);
|
||||
else if (0 !== (completedWork.mode & 2)) {
|
||||
treeBaseDuration$82 = completedWork.actualDuration;
|
||||
child$83 = completedWork.selfBaseDuration;
|
||||
treeBaseDuration$83 = completedWork.actualDuration;
|
||||
child$84 = completedWork.selfBaseDuration;
|
||||
for (var child = completedWork.child; null !== child; )
|
||||
(newChildLanes |= child.lanes | child.childLanes),
|
||||
(subtreeFlags |= child.subtreeFlags),
|
||||
(subtreeFlags |= child.flags),
|
||||
(treeBaseDuration$82 += child.actualDuration),
|
||||
(child$83 += child.treeBaseDuration),
|
||||
(treeBaseDuration$83 += child.actualDuration),
|
||||
(child$84 += child.treeBaseDuration),
|
||||
(child = child.sibling);
|
||||
completedWork.actualDuration = treeBaseDuration$82;
|
||||
completedWork.treeBaseDuration = child$83;
|
||||
completedWork.actualDuration = treeBaseDuration$83;
|
||||
completedWork.treeBaseDuration = child$84;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$82 = completedWork.child;
|
||||
null !== treeBaseDuration$82;
|
||||
treeBaseDuration$83 = completedWork.child;
|
||||
null !== treeBaseDuration$83;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$82.lanes | treeBaseDuration$82.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$82.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$82.flags),
|
||||
(treeBaseDuration$82.return = completedWork),
|
||||
(treeBaseDuration$82 = treeBaseDuration$82.sibling);
|
||||
treeBaseDuration$83.lanes | treeBaseDuration$83.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$83.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$83.flags),
|
||||
(treeBaseDuration$83.return = completedWork),
|
||||
(treeBaseDuration$83 = treeBaseDuration$83.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -6645,11 +6649,11 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
null !== newProps.alternate.memoizedState &&
|
||||
null !== newProps.alternate.memoizedState.cachePool &&
|
||||
(index = newProps.alternate.memoizedState.cachePool.pool);
|
||||
var cache$95 = null;
|
||||
var cache$96 = null;
|
||||
null !== newProps.memoizedState &&
|
||||
null !== newProps.memoizedState.cachePool &&
|
||||
(cache$95 = newProps.memoizedState.cachePool.pool);
|
||||
cache$95 !== index && (newProps.flags |= 2048);
|
||||
(cache$96 = newProps.memoizedState.cachePool.pool);
|
||||
cache$96 !== index && (newProps.flags |= 2048);
|
||||
}
|
||||
renderLanes !== current &&
|
||||
renderLanes &&
|
||||
@@ -6679,8 +6683,8 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
index = workInProgress.memoizedState;
|
||||
if (null === index) return bubbleProperties(workInProgress), null;
|
||||
newProps = 0 !== (workInProgress.flags & 128);
|
||||
cache$95 = index.rendering;
|
||||
if (null === cache$95)
|
||||
cache$96 = index.rendering;
|
||||
if (null === cache$96)
|
||||
if (newProps) cutOffTailIfNeeded(index, !1);
|
||||
else {
|
||||
if (
|
||||
@@ -6688,11 +6692,11 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
(null !== current && 0 !== (current.flags & 128))
|
||||
)
|
||||
for (current = workInProgress.child; null !== current; ) {
|
||||
cache$95 = findFirstSuspended(current);
|
||||
if (null !== cache$95) {
|
||||
cache$96 = findFirstSuspended(current);
|
||||
if (null !== cache$96) {
|
||||
workInProgress.flags |= 128;
|
||||
cutOffTailIfNeeded(index, !1);
|
||||
current = cache$95.updateQueue;
|
||||
current = cache$96.updateQueue;
|
||||
workInProgress.updateQueue = current;
|
||||
scheduleRetryEffect(workInProgress, current);
|
||||
workInProgress.subtreeFlags = 0;
|
||||
@@ -6717,7 +6721,7 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
}
|
||||
else {
|
||||
if (!newProps)
|
||||
if (((current = findFirstSuspended(cache$95)), null !== current)) {
|
||||
if (((current = findFirstSuspended(cache$96)), null !== current)) {
|
||||
if (
|
||||
((workInProgress.flags |= 128),
|
||||
(newProps = !0),
|
||||
@@ -6727,7 +6731,7 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
cutOffTailIfNeeded(index, !0),
|
||||
null === index.tail &&
|
||||
"hidden" === index.tailMode &&
|
||||
!cache$95.alternate)
|
||||
!cache$96.alternate)
|
||||
)
|
||||
return bubbleProperties(workInProgress), null;
|
||||
} else
|
||||
@@ -6739,13 +6743,13 @@ function completeWork(current, workInProgress, renderLanes) {
|
||||
cutOffTailIfNeeded(index, !1),
|
||||
(workInProgress.lanes = 4194304));
|
||||
index.isBackwards
|
||||
? ((cache$95.sibling = workInProgress.child),
|
||||
(workInProgress.child = cache$95))
|
||||
? ((cache$96.sibling = workInProgress.child),
|
||||
(workInProgress.child = cache$96))
|
||||
: ((current = index.last),
|
||||
null !== current
|
||||
? (current.sibling = cache$95)
|
||||
: (workInProgress.child = cache$95),
|
||||
(index.last = cache$95));
|
||||
? (current.sibling = cache$96)
|
||||
: (workInProgress.child = cache$96),
|
||||
(index.last = cache$96));
|
||||
}
|
||||
if (null !== index.tail)
|
||||
return (
|
||||
@@ -7000,9 +7004,9 @@ function commitHookEffectListMount(flags, finishedWork) {
|
||||
finishedWork
|
||||
);
|
||||
lastEffect = void 0;
|
||||
var create$112 = updateQueue.create,
|
||||
var create$113 = updateQueue.create,
|
||||
inst = updateQueue.inst;
|
||||
lastEffect = create$112();
|
||||
lastEffect = create$113();
|
||||
inst.destroy = lastEffect;
|
||||
0 !== (flags & 8)
|
||||
? null !== injectedProfilingHooks &&
|
||||
@@ -7142,8 +7146,8 @@ function safelyCallComponentWillUnmount(
|
||||
} else
|
||||
try {
|
||||
instance.componentWillUnmount();
|
||||
} catch (error$116) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$116);
|
||||
} catch (error$117) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$117);
|
||||
}
|
||||
}
|
||||
function safelyAttachRef(current, nearestMountedAncestor) {
|
||||
@@ -7205,8 +7209,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
recordEffectDuration(current);
|
||||
}
|
||||
else ref(null);
|
||||
} catch (error$117) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$117);
|
||||
} catch (error$118) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$118);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -7397,11 +7401,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
} else
|
||||
try {
|
||||
finishedRoot.componentDidMount();
|
||||
} catch (error$113) {
|
||||
} catch (error$114) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$113
|
||||
error$114
|
||||
);
|
||||
}
|
||||
else {
|
||||
@@ -7418,11 +7422,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$114) {
|
||||
} catch (error$115) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$114
|
||||
error$115
|
||||
);
|
||||
}
|
||||
recordEffectDuration();
|
||||
@@ -7433,11 +7437,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$115) {
|
||||
} catch (error$116) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$115
|
||||
error$116
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -8048,12 +8052,12 @@ function commitReconciliationEffects(finishedWork) {
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
var parent$118 = hostParentFiber.stateNode.containerInfo,
|
||||
before$119 = getHostSibling(finishedWork);
|
||||
var parent$119 = hostParentFiber.stateNode.containerInfo,
|
||||
before$120 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNodeIntoContainer(
|
||||
finishedWork,
|
||||
before$119,
|
||||
parent$118
|
||||
before$120,
|
||||
parent$119
|
||||
);
|
||||
break;
|
||||
default:
|
||||
@@ -9321,8 +9325,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
exitStatus = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$138) {
|
||||
handleThrow(root, thrownValue$138);
|
||||
} catch (thrownValue$139) {
|
||||
handleThrow(root, thrownValue$139);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -9439,8 +9443,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$140) {
|
||||
handleThrow(root, thrownValue$140);
|
||||
} catch (thrownValue$141) {
|
||||
handleThrow(root, thrownValue$141);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -10719,17 +10723,17 @@ function wrapFiber(fiber) {
|
||||
fiberToWrapper.set(fiber, wrapper));
|
||||
return wrapper;
|
||||
}
|
||||
var internals$jscomp$inline_1273 = {
|
||||
var internals$jscomp$inline_1274 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930",
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$145 = 0;
|
||||
31 > index$145;
|
||||
index$145++
|
||||
var map = new Map(), lane = 1, index$146 = 0;
|
||||
31 > index$146;
|
||||
index$146++
|
||||
) {
|
||||
var label = getLabelForLane(lane);
|
||||
map.set(lane, label);
|
||||
@@ -10742,16 +10746,16 @@ var internals$jscomp$inline_1273 = {
|
||||
}
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1558 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1559 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1558.isDisabled &&
|
||||
hook$jscomp$inline_1558.supportsFiber
|
||||
!hook$jscomp$inline_1559.isDisabled &&
|
||||
hook$jscomp$inline_1559.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1558.inject(
|
||||
internals$jscomp$inline_1273
|
||||
(rendererID = hook$jscomp$inline_1559.inject(
|
||||
internals$jscomp$inline_1274
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1558);
|
||||
(injectedHook = hook$jscomp$inline_1559);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports._Scheduler = Scheduler;
|
||||
@@ -10875,4 +10879,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<953e18bd14a77e1105b2c7adfb07abc0>>
|
||||
* @generated SignedSource<<97a4058dc4c945936732649860f2a58e>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1400,7 +1400,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<c2ccb93038efaa374e810366dd8e02e7>>
|
||||
* @generated SignedSource<<1641faad311e2fd3ea386a92cefd5b03>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -583,4 +583,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<3ce6e8813fc1a9d088d82f4aa7998375>>
|
||||
* @generated SignedSource<<b7aee20955a9a0b99a56d9748f768acd>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -587,7 +587,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-ef889445-20250930";
|
||||
exports.version = "19.2.0-native-fb-d8a15c49-20250930";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
ef8894452b826f905d69e61435c6f2c30731bfa6
|
||||
d8a15c49a4bac8fb6730737c34eaf9c74c2f0d7e
|
||||
|
||||
+20
-16
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<b2333a2e1ac5df00f727e95662bfca66>>
|
||||
* @generated SignedSource<<25b9d09f76adde51eda73537902dea9c>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -8172,23 +8172,24 @@ __DEV__ &&
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -8209,14 +8210,15 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -8246,7 +8248,8 @@ __DEV__ &&
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -8265,6 +8268,7 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -19947,10 +19951,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+77
-73
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<78938c743c70fcf06bafef49602bf267>>
|
||||
* @generated SignedSource<<fb02fd8c280fe5104a4bbf20f8c0ffe0>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1241,7 +1241,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_282 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_283 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -1287,32 +1287,32 @@ var injectedNamesToPlugins$jscomp$inline_282 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_283 = !1,
|
||||
pluginName$jscomp$inline_284;
|
||||
for (pluginName$jscomp$inline_284 in injectedNamesToPlugins$jscomp$inline_282)
|
||||
isOrderingDirty$jscomp$inline_284 = !1,
|
||||
pluginName$jscomp$inline_285;
|
||||
for (pluginName$jscomp$inline_285 in injectedNamesToPlugins$jscomp$inline_283)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_282.hasOwnProperty(
|
||||
pluginName$jscomp$inline_284
|
||||
injectedNamesToPlugins$jscomp$inline_283.hasOwnProperty(
|
||||
pluginName$jscomp$inline_285
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_285 =
|
||||
injectedNamesToPlugins$jscomp$inline_282[pluginName$jscomp$inline_284];
|
||||
var pluginModule$jscomp$inline_286 =
|
||||
injectedNamesToPlugins$jscomp$inline_283[pluginName$jscomp$inline_285];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_284) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_284] !==
|
||||
pluginModule$jscomp$inline_285
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_285) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_285] !==
|
||||
pluginModule$jscomp$inline_286
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_284])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_285])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_284 + "`.")
|
||||
(pluginName$jscomp$inline_285 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_284] =
|
||||
pluginModule$jscomp$inline_285;
|
||||
isOrderingDirty$jscomp$inline_283 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_285] =
|
||||
pluginModule$jscomp$inline_286;
|
||||
isOrderingDirty$jscomp$inline_284 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_283 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_284 && recomputePluginOrdering();
|
||||
function batchedUpdatesImpl(fn, bookkeeping) {
|
||||
return fn(bookkeeping);
|
||||
}
|
||||
@@ -5729,21 +5729,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -5764,12 +5765,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -5799,7 +5801,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -5815,6 +5818,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -6678,9 +6682,9 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
);
|
||||
break;
|
||||
case 13:
|
||||
var state$72 = workInProgress.memoizedState;
|
||||
if (null !== state$72) {
|
||||
if (null !== state$72.dehydrated)
|
||||
var state$73 = workInProgress.memoizedState;
|
||||
if (null !== state$73) {
|
||||
if (null !== state$73.dehydrated)
|
||||
return (
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
(workInProgress.flags |= 128),
|
||||
@@ -6700,17 +6704,17 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
break;
|
||||
case 19:
|
||||
var didSuspendBefore = 0 !== (current.flags & 128);
|
||||
state$72 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$72 ||
|
||||
state$73 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$73 ||
|
||||
(propagateParentContextChanges(
|
||||
current,
|
||||
workInProgress,
|
||||
renderLanes,
|
||||
!1
|
||||
),
|
||||
(state$72 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
(state$73 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
if (didSuspendBefore) {
|
||||
if (state$72)
|
||||
if (state$73)
|
||||
return updateSuspenseListComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
@@ -6724,7 +6728,7 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
(didSuspendBefore.tail = null),
|
||||
(didSuspendBefore.lastEffect = null));
|
||||
push(suspenseStackCursor, suspenseStackCursor.current);
|
||||
if (state$72) break;
|
||||
if (state$73) break;
|
||||
else return null;
|
||||
case 22:
|
||||
return (
|
||||
@@ -7312,14 +7316,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$84 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$84 = lastTailNode),
|
||||
for (var lastTailNode$85 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$85 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$84
|
||||
null === lastTailNode$85
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$84.sibling = null);
|
||||
: (lastTailNode$85.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -7329,19 +7333,19 @@ function bubbleProperties(completedWork) {
|
||||
newChildLanes = 0,
|
||||
subtreeFlags = 0;
|
||||
if (didBailout)
|
||||
for (var child$85 = completedWork.child; null !== child$85; )
|
||||
(newChildLanes |= child$85.lanes | child$85.childLanes),
|
||||
(subtreeFlags |= child$85.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$85.flags & 65011712),
|
||||
(child$85.return = completedWork),
|
||||
(child$85 = child$85.sibling);
|
||||
for (var child$86 = completedWork.child; null !== child$86; )
|
||||
(newChildLanes |= child$86.lanes | child$86.childLanes),
|
||||
(subtreeFlags |= child$86.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$86.flags & 65011712),
|
||||
(child$86.return = completedWork),
|
||||
(child$86 = child$86.sibling);
|
||||
else
|
||||
for (child$85 = completedWork.child; null !== child$85; )
|
||||
(newChildLanes |= child$85.lanes | child$85.childLanes),
|
||||
(subtreeFlags |= child$85.subtreeFlags),
|
||||
(subtreeFlags |= child$85.flags),
|
||||
(child$85.return = completedWork),
|
||||
(child$85 = child$85.sibling);
|
||||
for (child$86 = completedWork.child; null !== child$86; )
|
||||
(newChildLanes |= child$86.lanes | child$86.childLanes),
|
||||
(subtreeFlags |= child$86.subtreeFlags),
|
||||
(subtreeFlags |= child$86.flags),
|
||||
(child$86.return = completedWork),
|
||||
(child$86 = child$86.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -8032,8 +8036,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
else if ("function" === typeof ref)
|
||||
try {
|
||||
ref(null);
|
||||
} catch (error$112) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$112);
|
||||
} catch (error$113) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$113);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -8203,11 +8207,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$111) {
|
||||
} catch (error$112) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$111
|
||||
error$112
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -9890,8 +9894,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
exitStatus = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$125) {
|
||||
handleThrow(root, thrownValue$125);
|
||||
} catch (thrownValue$126) {
|
||||
handleThrow(root, thrownValue$126);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -10006,8 +10010,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$127) {
|
||||
handleThrow(root, thrownValue$127);
|
||||
} catch (thrownValue$128) {
|
||||
handleThrow(root, thrownValue$128);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -11249,26 +11253,26 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1318 = {
|
||||
internals$jscomp$inline_1319 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1318.rendererConfig = extraDevToolsConfig);
|
||||
(internals$jscomp$inline_1319.rendererConfig = extraDevToolsConfig);
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1641 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1642 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1641.isDisabled &&
|
||||
hook$jscomp$inline_1641.supportsFiber
|
||||
!hook$jscomp$inline_1642.isDisabled &&
|
||||
hook$jscomp$inline_1642.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1641.inject(
|
||||
internals$jscomp$inline_1318
|
||||
(rendererID = hook$jscomp$inline_1642.inject(
|
||||
internals$jscomp$inline_1319
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1641);
|
||||
(injectedHook = hook$jscomp$inline_1642);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
+114
-110
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a1ccb0d8d30f48afdd59a5f95c0870be>>
|
||||
* @generated SignedSource<<d950979c8dd048d76d40cf38ac5fcbd4>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1247,7 +1247,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_326 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_327 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -1293,32 +1293,32 @@ var injectedNamesToPlugins$jscomp$inline_326 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_327 = !1,
|
||||
pluginName$jscomp$inline_328;
|
||||
for (pluginName$jscomp$inline_328 in injectedNamesToPlugins$jscomp$inline_326)
|
||||
isOrderingDirty$jscomp$inline_328 = !1,
|
||||
pluginName$jscomp$inline_329;
|
||||
for (pluginName$jscomp$inline_329 in injectedNamesToPlugins$jscomp$inline_327)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_326.hasOwnProperty(
|
||||
pluginName$jscomp$inline_328
|
||||
injectedNamesToPlugins$jscomp$inline_327.hasOwnProperty(
|
||||
pluginName$jscomp$inline_329
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_329 =
|
||||
injectedNamesToPlugins$jscomp$inline_326[pluginName$jscomp$inline_328];
|
||||
var pluginModule$jscomp$inline_330 =
|
||||
injectedNamesToPlugins$jscomp$inline_327[pluginName$jscomp$inline_329];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_328) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_328] !==
|
||||
pluginModule$jscomp$inline_329
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_329) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_329] !==
|
||||
pluginModule$jscomp$inline_330
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_328])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_329])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_328 + "`.")
|
||||
(pluginName$jscomp$inline_329 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_328] =
|
||||
pluginModule$jscomp$inline_329;
|
||||
isOrderingDirty$jscomp$inline_327 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_329] =
|
||||
pluginModule$jscomp$inline_330;
|
||||
isOrderingDirty$jscomp$inline_328 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_327 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_328 && recomputePluginOrdering();
|
||||
function batchedUpdatesImpl(fn, bookkeeping) {
|
||||
return fn(bookkeeping);
|
||||
}
|
||||
@@ -6151,21 +6151,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -6186,12 +6187,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -6221,7 +6223,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -6237,6 +6240,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -7771,14 +7775,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$92 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$92 = lastTailNode),
|
||||
for (var lastTailNode$93 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$93 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$92
|
||||
null === lastTailNode$93
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$92.sibling = null);
|
||||
: (lastTailNode$93.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -7790,53 +7794,53 @@ function bubbleProperties(completedWork) {
|
||||
if (didBailout)
|
||||
if (0 !== (completedWork.mode & 2)) {
|
||||
for (
|
||||
var treeBaseDuration$94 = completedWork.selfBaseDuration,
|
||||
child$95 = completedWork.child;
|
||||
null !== child$95;
|
||||
var treeBaseDuration$95 = completedWork.selfBaseDuration,
|
||||
child$96 = completedWork.child;
|
||||
null !== child$96;
|
||||
|
||||
)
|
||||
(newChildLanes |= child$95.lanes | child$95.childLanes),
|
||||
(subtreeFlags |= child$95.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$95.flags & 65011712),
|
||||
(treeBaseDuration$94 += child$95.treeBaseDuration),
|
||||
(child$95 = child$95.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$94;
|
||||
(newChildLanes |= child$96.lanes | child$96.childLanes),
|
||||
(subtreeFlags |= child$96.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$96.flags & 65011712),
|
||||
(treeBaseDuration$95 += child$96.treeBaseDuration),
|
||||
(child$96 = child$96.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$95;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$94 = completedWork.child;
|
||||
null !== treeBaseDuration$94;
|
||||
treeBaseDuration$95 = completedWork.child;
|
||||
null !== treeBaseDuration$95;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$94.lanes | treeBaseDuration$94.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$94.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$94.flags & 65011712),
|
||||
(treeBaseDuration$94.return = completedWork),
|
||||
(treeBaseDuration$94 = treeBaseDuration$94.sibling);
|
||||
treeBaseDuration$95.lanes | treeBaseDuration$95.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$95.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$95.flags & 65011712),
|
||||
(treeBaseDuration$95.return = completedWork),
|
||||
(treeBaseDuration$95 = treeBaseDuration$95.sibling);
|
||||
else if (0 !== (completedWork.mode & 2)) {
|
||||
treeBaseDuration$94 = completedWork.actualDuration;
|
||||
child$95 = completedWork.selfBaseDuration;
|
||||
treeBaseDuration$95 = completedWork.actualDuration;
|
||||
child$96 = completedWork.selfBaseDuration;
|
||||
for (var child = completedWork.child; null !== child; )
|
||||
(newChildLanes |= child.lanes | child.childLanes),
|
||||
(subtreeFlags |= child.subtreeFlags),
|
||||
(subtreeFlags |= child.flags),
|
||||
(treeBaseDuration$94 += child.actualDuration),
|
||||
(child$95 += child.treeBaseDuration),
|
||||
(treeBaseDuration$95 += child.actualDuration),
|
||||
(child$96 += child.treeBaseDuration),
|
||||
(child = child.sibling);
|
||||
completedWork.actualDuration = treeBaseDuration$94;
|
||||
completedWork.treeBaseDuration = child$95;
|
||||
completedWork.actualDuration = treeBaseDuration$95;
|
||||
completedWork.treeBaseDuration = child$96;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$94 = completedWork.child;
|
||||
null !== treeBaseDuration$94;
|
||||
treeBaseDuration$95 = completedWork.child;
|
||||
null !== treeBaseDuration$95;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$94.lanes | treeBaseDuration$94.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$94.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$94.flags),
|
||||
(treeBaseDuration$94.return = completedWork),
|
||||
(treeBaseDuration$94 = treeBaseDuration$94.sibling);
|
||||
treeBaseDuration$95.lanes | treeBaseDuration$95.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$95.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$95.flags),
|
||||
(treeBaseDuration$95.return = completedWork),
|
||||
(treeBaseDuration$95 = treeBaseDuration$95.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -8620,8 +8624,8 @@ function safelyCallComponentWillUnmount(
|
||||
} else
|
||||
try {
|
||||
instance.componentWillUnmount();
|
||||
} catch (error$129) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$129);
|
||||
} catch (error$130) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$130);
|
||||
}
|
||||
}
|
||||
function safelyAttachRef(current, nearestMountedAncestor) {
|
||||
@@ -8690,8 +8694,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
recordEffectDuration(current);
|
||||
}
|
||||
else ref(null);
|
||||
} catch (error$130) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$130);
|
||||
} catch (error$131) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$131);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -8902,11 +8906,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
} else
|
||||
try {
|
||||
finishedRoot.componentDidMount();
|
||||
} catch (error$126) {
|
||||
} catch (error$127) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$126
|
||||
error$127
|
||||
);
|
||||
}
|
||||
else {
|
||||
@@ -8923,11 +8927,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$127) {
|
||||
} catch (error$128) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$127
|
||||
error$128
|
||||
);
|
||||
}
|
||||
recordEffectDuration();
|
||||
@@ -8938,11 +8942,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$128) {
|
||||
} catch (error$129) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$128
|
||||
error$129
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11279,7 +11283,7 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= blockingEventTime && blockingEventTime < blockingClampTime
|
||||
? blockingClampTime
|
||||
: blockingEventTime;
|
||||
var clampedRenderStartTime$161 =
|
||||
var clampedRenderStartTime$162 =
|
||||
0 <= endTime
|
||||
? endTime
|
||||
: 0 <= previousRenderStartTime
|
||||
@@ -11289,10 +11293,10 @@ function prepareFreshStack(root, lanes) {
|
||||
(setCurrentTrackFromLanes(2),
|
||||
logSuspendedWithDelayPhase(
|
||||
blockingSuspendedTime,
|
||||
clampedRenderStartTime$161,
|
||||
clampedRenderStartTime$162,
|
||||
lanes
|
||||
));
|
||||
clampedRenderStartTime$161 = blockingEventType;
|
||||
clampedRenderStartTime$162 = blockingEventType;
|
||||
var eventIsRepeat = blockingEventIsRepeat,
|
||||
isSpawnedUpdate = 1 === blockingUpdateType,
|
||||
isPingedUpdate = 2 === blockingUpdateType,
|
||||
@@ -11307,12 +11311,12 @@ function prepareFreshStack(root, lanes) {
|
||||
? endTime > previousRenderStartTime &&
|
||||
(endTime = previousRenderStartTime)
|
||||
: (endTime = previousRenderStartTime),
|
||||
null !== clampedRenderStartTime$161 &&
|
||||
null !== clampedRenderStartTime$162 &&
|
||||
previousRenderStartTime > endTime &&
|
||||
console.timeStamp(
|
||||
eventIsRepeat
|
||||
? "Consecutive"
|
||||
: "Event: " + clampedRenderStartTime$161,
|
||||
: "Event: " + clampedRenderStartTime$162,
|
||||
endTime,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
@@ -11353,13 +11357,13 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= transitionUpdateTime && transitionUpdateTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionUpdateTime),
|
||||
(clampedRenderStartTime$161 =
|
||||
(clampedRenderStartTime$162 =
|
||||
0 <= transitionEventTime && transitionEventTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionEventTime),
|
||||
(eventIsRepeat =
|
||||
0 <= clampedRenderStartTime$161
|
||||
? clampedRenderStartTime$161
|
||||
0 <= clampedRenderStartTime$162
|
||||
? clampedRenderStartTime$162
|
||||
: 0 <= endTime
|
||||
? endTime
|
||||
: renderStartTime),
|
||||
@@ -11384,15 +11388,15 @@ function prepareFreshStack(root, lanes) {
|
||||
? previousRenderStartTime > endTime &&
|
||||
(previousRenderStartTime = endTime)
|
||||
: (previousRenderStartTime = endTime),
|
||||
0 < clampedRenderStartTime$161
|
||||
? clampedRenderStartTime$161 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$161 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$161 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$161 &&
|
||||
0 < clampedRenderStartTime$162
|
||||
? clampedRenderStartTime$162 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$162 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$162 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$162 &&
|
||||
null !== eventIsRepeat &&
|
||||
console.timeStamp(
|
||||
isSpawnedUpdate ? "Consecutive" : "Event: " + eventIsRepeat,
|
||||
clampedRenderStartTime$161,
|
||||
clampedRenderStartTime$162,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
"Scheduler \u269b",
|
||||
@@ -11459,9 +11463,9 @@ function prepareFreshStack(root, lanes) {
|
||||
endTime = root.entangledLanes;
|
||||
if (0 !== endTime)
|
||||
for (root = root.entanglements, endTime &= lanes; 0 < endTime; )
|
||||
(clampedRenderStartTime$161 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$161),
|
||||
(lanes |= root[clampedRenderStartTime$161]),
|
||||
(clampedRenderStartTime$162 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$162),
|
||||
(lanes |= root[clampedRenderStartTime$162]),
|
||||
(endTime &= ~eventIsRepeat);
|
||||
entangledRenderLanes = lanes;
|
||||
finishQueueingConcurrentUpdates();
|
||||
@@ -11605,8 +11609,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
memoizedUpdaters = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$166) {
|
||||
handleThrow(root, thrownValue$166);
|
||||
} catch (thrownValue$167) {
|
||||
handleThrow(root, thrownValue$167);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -11729,8 +11733,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$168) {
|
||||
handleThrow(root, thrownValue$168);
|
||||
} catch (thrownValue$169) {
|
||||
handleThrow(root, thrownValue$169);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -13270,20 +13274,20 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1602 = {
|
||||
internals$jscomp$inline_1603 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1602.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1602.getLaneLabelMap = function () {
|
||||
(internals$jscomp$inline_1603.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1603.getLaneLabelMap = function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$173 = 0;
|
||||
31 > index$173;
|
||||
index$173++
|
||||
var map = new Map(), lane = 1, index$174 = 0;
|
||||
31 > index$174;
|
||||
index$174++
|
||||
) {
|
||||
var label = getLabelForLane(lane);
|
||||
map.set(lane, label);
|
||||
@@ -13291,20 +13295,20 @@ internals$jscomp$inline_1602.getLaneLabelMap = function () {
|
||||
}
|
||||
return map;
|
||||
};
|
||||
internals$jscomp$inline_1602.injectProfilingHooks = function (profilingHooks) {
|
||||
internals$jscomp$inline_1603.injectProfilingHooks = function (profilingHooks) {
|
||||
injectedProfilingHooks = profilingHooks;
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1928 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1929 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1928.isDisabled &&
|
||||
hook$jscomp$inline_1928.supportsFiber
|
||||
!hook$jscomp$inline_1929.isDisabled &&
|
||||
hook$jscomp$inline_1929.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1928.inject(
|
||||
internals$jscomp$inline_1602
|
||||
(rendererID = hook$jscomp$inline_1929.inject(
|
||||
internals$jscomp$inline_1603
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1928);
|
||||
(injectedHook = hook$jscomp$inline_1929);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
+22
-18
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<58ce43fb769c36d4bd3bcd2a2ab075e6>>
|
||||
* @generated SignedSource<<28b936acb9898be745f398994095a774>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -8544,23 +8544,24 @@ __DEV__ &&
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -8581,14 +8582,15 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState
|
||||
? prevState.baseLanes | renderLanes
|
||||
: renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -8618,7 +8620,8 @@ __DEV__ &&
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -8637,6 +8640,7 @@ __DEV__ &&
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -20239,11 +20243,11 @@ __DEV__ &&
|
||||
shouldSuspendImpl = newShouldSuspendImpl;
|
||||
};
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-ef889445-20250930" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-d8a15c49-20250930" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-ef889445-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-d8a15c49-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -20269,10 +20273,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+85
-81
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<bab0a5d7bdb8ecbd3bc44714c3a19f0f>>
|
||||
* @generated SignedSource<<9aff46833e45fb1801781cb906f213be>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1237,7 +1237,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_290 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_291 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -1283,32 +1283,32 @@ var injectedNamesToPlugins$jscomp$inline_290 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_291 = !1,
|
||||
pluginName$jscomp$inline_292;
|
||||
for (pluginName$jscomp$inline_292 in injectedNamesToPlugins$jscomp$inline_290)
|
||||
isOrderingDirty$jscomp$inline_292 = !1,
|
||||
pluginName$jscomp$inline_293;
|
||||
for (pluginName$jscomp$inline_293 in injectedNamesToPlugins$jscomp$inline_291)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_290.hasOwnProperty(
|
||||
pluginName$jscomp$inline_292
|
||||
injectedNamesToPlugins$jscomp$inline_291.hasOwnProperty(
|
||||
pluginName$jscomp$inline_293
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_293 =
|
||||
injectedNamesToPlugins$jscomp$inline_290[pluginName$jscomp$inline_292];
|
||||
var pluginModule$jscomp$inline_294 =
|
||||
injectedNamesToPlugins$jscomp$inline_291[pluginName$jscomp$inline_293];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_292) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_292] !==
|
||||
pluginModule$jscomp$inline_293
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_293) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_293] !==
|
||||
pluginModule$jscomp$inline_294
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_292])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_293])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_292 + "`.")
|
||||
(pluginName$jscomp$inline_293 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_292] =
|
||||
pluginModule$jscomp$inline_293;
|
||||
isOrderingDirty$jscomp$inline_291 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_293] =
|
||||
pluginModule$jscomp$inline_294;
|
||||
isOrderingDirty$jscomp$inline_292 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_291 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_292 && recomputePluginOrdering();
|
||||
var instanceCache = new Map(),
|
||||
instanceProps = new Map();
|
||||
function getInstanceFromTag(tag) {
|
||||
@@ -6144,21 +6144,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -6179,12 +6180,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -6214,7 +6216,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -6230,6 +6233,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -7093,9 +7097,9 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
);
|
||||
break;
|
||||
case 13:
|
||||
var state$76 = workInProgress.memoizedState;
|
||||
if (null !== state$76) {
|
||||
if (null !== state$76.dehydrated)
|
||||
var state$77 = workInProgress.memoizedState;
|
||||
if (null !== state$77) {
|
||||
if (null !== state$77.dehydrated)
|
||||
return (
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
(workInProgress.flags |= 128),
|
||||
@@ -7115,17 +7119,17 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
break;
|
||||
case 19:
|
||||
var didSuspendBefore = 0 !== (current.flags & 128);
|
||||
state$76 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$76 ||
|
||||
state$77 = 0 !== (renderLanes & workInProgress.childLanes);
|
||||
state$77 ||
|
||||
(propagateParentContextChanges(
|
||||
current,
|
||||
workInProgress,
|
||||
renderLanes,
|
||||
!1
|
||||
),
|
||||
(state$76 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
(state$77 = 0 !== (renderLanes & workInProgress.childLanes)));
|
||||
if (didSuspendBefore) {
|
||||
if (state$76)
|
||||
if (state$77)
|
||||
return updateSuspenseListComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
@@ -7139,7 +7143,7 @@ function attemptEarlyBailoutIfNoScheduledUpdate(
|
||||
(didSuspendBefore.tail = null),
|
||||
(didSuspendBefore.lastEffect = null));
|
||||
push(suspenseStackCursor, suspenseStackCursor.current);
|
||||
if (state$76) break;
|
||||
if (state$77) break;
|
||||
else return null;
|
||||
case 22:
|
||||
return (
|
||||
@@ -7615,14 +7619,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$86 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$86 = lastTailNode),
|
||||
for (var lastTailNode$87 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$87 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$86
|
||||
null === lastTailNode$87
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$86.sibling = null);
|
||||
: (lastTailNode$87.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -7632,19 +7636,19 @@ function bubbleProperties(completedWork) {
|
||||
newChildLanes = 0,
|
||||
subtreeFlags = 0;
|
||||
if (didBailout)
|
||||
for (var child$87 = completedWork.child; null !== child$87; )
|
||||
(newChildLanes |= child$87.lanes | child$87.childLanes),
|
||||
(subtreeFlags |= child$87.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$87.flags & 65011712),
|
||||
(child$87.return = completedWork),
|
||||
(child$87 = child$87.sibling);
|
||||
for (var child$88 = completedWork.child; null !== child$88; )
|
||||
(newChildLanes |= child$88.lanes | child$88.childLanes),
|
||||
(subtreeFlags |= child$88.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$88.flags & 65011712),
|
||||
(child$88.return = completedWork),
|
||||
(child$88 = child$88.sibling);
|
||||
else
|
||||
for (child$87 = completedWork.child; null !== child$87; )
|
||||
(newChildLanes |= child$87.lanes | child$87.childLanes),
|
||||
(subtreeFlags |= child$87.subtreeFlags),
|
||||
(subtreeFlags |= child$87.flags),
|
||||
(child$87.return = completedWork),
|
||||
(child$87 = child$87.sibling);
|
||||
for (child$88 = completedWork.child; null !== child$88; )
|
||||
(newChildLanes |= child$88.lanes | child$88.childLanes),
|
||||
(subtreeFlags |= child$88.subtreeFlags),
|
||||
(subtreeFlags |= child$88.flags),
|
||||
(child$88.return = completedWork),
|
||||
(child$88 = child$88.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -8159,9 +8163,9 @@ function commitHookEffectListMount(flags, finishedWork) {
|
||||
do {
|
||||
if ((updateQueue.tag & flags) === flags) {
|
||||
lastEffect = void 0;
|
||||
var create$113 = updateQueue.create,
|
||||
var create$114 = updateQueue.create,
|
||||
inst = updateQueue.inst;
|
||||
lastEffect = create$113();
|
||||
lastEffect = create$114();
|
||||
inst.destroy = lastEffect;
|
||||
}
|
||||
updateQueue = updateQueue.next;
|
||||
@@ -8283,8 +8287,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
else if ("function" === typeof ref)
|
||||
try {
|
||||
ref(null);
|
||||
} catch (error$115) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$115);
|
||||
} catch (error$116) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$116);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -8504,11 +8508,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$114) {
|
||||
} catch (error$115) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$114
|
||||
error$115
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -9211,12 +9215,12 @@ function commitReconciliationEffects(finishedWork) {
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
var parent$116 = hostParentFiber.stateNode.containerInfo,
|
||||
before$117 = getHostSibling(finishedWork);
|
||||
var parent$117 = hostParentFiber.stateNode.containerInfo,
|
||||
before$118 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNodeIntoContainer(
|
||||
finishedWork,
|
||||
before$117,
|
||||
parent$116
|
||||
before$118,
|
||||
parent$117
|
||||
);
|
||||
break;
|
||||
default:
|
||||
@@ -10391,8 +10395,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
exitStatus = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$132) {
|
||||
handleThrow(root, thrownValue$132);
|
||||
} catch (thrownValue$133) {
|
||||
handleThrow(root, thrownValue$133);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -10507,8 +10511,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$134) {
|
||||
handleThrow(root, thrownValue$134);
|
||||
} catch (thrownValue$135) {
|
||||
handleThrow(root, thrownValue$135);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -11421,11 +11425,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-ef889445-20250930" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-d8a15c49-20250930" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-ef889445-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-d8a15c49-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11473,26 +11477,26 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1325 = {
|
||||
internals$jscomp$inline_1326 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1325.rendererConfig = extraDevToolsConfig);
|
||||
(internals$jscomp$inline_1326.rendererConfig = extraDevToolsConfig);
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1698 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1699 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1698.isDisabled &&
|
||||
hook$jscomp$inline_1698.supportsFiber
|
||||
!hook$jscomp$inline_1699.isDisabled &&
|
||||
hook$jscomp$inline_1699.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1698.inject(
|
||||
internals$jscomp$inline_1325
|
||||
(rendererID = hook$jscomp$inline_1699.inject(
|
||||
internals$jscomp$inline_1326
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1698);
|
||||
(injectedHook = hook$jscomp$inline_1699);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
+122
-118
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<ff814583e7c2c6c2b950b73c2f10133a>>
|
||||
* @generated SignedSource<<bc6be7945ee23500c94d35cecbb8c927>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1243,7 +1243,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_334 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_335 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -1289,32 +1289,32 @@ var injectedNamesToPlugins$jscomp$inline_334 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_335 = !1,
|
||||
pluginName$jscomp$inline_336;
|
||||
for (pluginName$jscomp$inline_336 in injectedNamesToPlugins$jscomp$inline_334)
|
||||
isOrderingDirty$jscomp$inline_336 = !1,
|
||||
pluginName$jscomp$inline_337;
|
||||
for (pluginName$jscomp$inline_337 in injectedNamesToPlugins$jscomp$inline_335)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_334.hasOwnProperty(
|
||||
pluginName$jscomp$inline_336
|
||||
injectedNamesToPlugins$jscomp$inline_335.hasOwnProperty(
|
||||
pluginName$jscomp$inline_337
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_337 =
|
||||
injectedNamesToPlugins$jscomp$inline_334[pluginName$jscomp$inline_336];
|
||||
var pluginModule$jscomp$inline_338 =
|
||||
injectedNamesToPlugins$jscomp$inline_335[pluginName$jscomp$inline_337];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_336) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_336] !==
|
||||
pluginModule$jscomp$inline_337
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_337) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_337] !==
|
||||
pluginModule$jscomp$inline_338
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_336])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_337])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_336 + "`.")
|
||||
(pluginName$jscomp$inline_337 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_336] =
|
||||
pluginModule$jscomp$inline_337;
|
||||
isOrderingDirty$jscomp$inline_335 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_337] =
|
||||
pluginModule$jscomp$inline_338;
|
||||
isOrderingDirty$jscomp$inline_336 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_335 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_336 && recomputePluginOrdering();
|
||||
var instanceCache = new Map(),
|
||||
instanceProps = new Map();
|
||||
function getInstanceFromTag(tag) {
|
||||
@@ -6566,21 +6566,22 @@ function updateOffscreenComponent(
|
||||
});
|
||||
if ("hidden" === nextProps.mode) {
|
||||
if (0 !== (workInProgress.flags & 128)) {
|
||||
nextProps =
|
||||
prevState =
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes;
|
||||
if (null !== current) {
|
||||
nextChildren = workInProgress.child = current.child;
|
||||
for (prevState = 0; null !== nextChildren; )
|
||||
(prevState =
|
||||
prevState | nextChildren.lanes | nextChildren.childLanes),
|
||||
(nextChildren = nextChildren.sibling);
|
||||
workInProgress.childLanes = prevState & ~nextProps;
|
||||
} else (workInProgress.childLanes = 0), (workInProgress.child = null);
|
||||
nextProps = workInProgress.child = current.child;
|
||||
for (nextChildren = 0; null !== nextProps; )
|
||||
(nextChildren =
|
||||
nextChildren | nextProps.lanes | nextProps.childLanes),
|
||||
(nextProps = nextProps.sibling);
|
||||
nextProps = nextChildren & ~prevState;
|
||||
} else (nextProps = 0), (workInProgress.child = null);
|
||||
return deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextProps,
|
||||
renderLanes
|
||||
prevState,
|
||||
renderLanes,
|
||||
nextProps
|
||||
);
|
||||
}
|
||||
if (0 === (workInProgress.mode & 1))
|
||||
@@ -6601,12 +6602,13 @@ function updateOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
else
|
||||
return (
|
||||
(workInProgress.lanes = workInProgress.childLanes = 536870912),
|
||||
(nextProps = workInProgress.lanes = 536870912),
|
||||
deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
null !== prevState ? prevState.baseLanes | renderLanes : renderLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
nextProps
|
||||
)
|
||||
);
|
||||
} else
|
||||
@@ -6636,7 +6638,8 @@ function deferHiddenOffscreenComponent(
|
||||
current,
|
||||
workInProgress,
|
||||
nextBaseLanes,
|
||||
renderLanes
|
||||
renderLanes,
|
||||
remainingChildLanes
|
||||
) {
|
||||
var JSCompiler_inline_result = peekCacheFromPool();
|
||||
JSCompiler_inline_result =
|
||||
@@ -6652,6 +6655,7 @@ function deferHiddenOffscreenComponent(
|
||||
pushOffscreenSuspenseHandler(workInProgress);
|
||||
null !== current &&
|
||||
propagateParentContextChanges(current, workInProgress, renderLanes, !0);
|
||||
workInProgress.childLanes = remainingChildLanes;
|
||||
return null;
|
||||
}
|
||||
function mountActivityChildren(workInProgress, nextProps) {
|
||||
@@ -8074,14 +8078,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$94 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$94 = lastTailNode),
|
||||
for (var lastTailNode$95 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$95 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$94
|
||||
null === lastTailNode$95
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$94.sibling = null);
|
||||
: (lastTailNode$95.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -8093,53 +8097,53 @@ function bubbleProperties(completedWork) {
|
||||
if (didBailout)
|
||||
if (0 !== (completedWork.mode & 2)) {
|
||||
for (
|
||||
var treeBaseDuration$96 = completedWork.selfBaseDuration,
|
||||
child$97 = completedWork.child;
|
||||
null !== child$97;
|
||||
var treeBaseDuration$97 = completedWork.selfBaseDuration,
|
||||
child$98 = completedWork.child;
|
||||
null !== child$98;
|
||||
|
||||
)
|
||||
(newChildLanes |= child$97.lanes | child$97.childLanes),
|
||||
(subtreeFlags |= child$97.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$97.flags & 65011712),
|
||||
(treeBaseDuration$96 += child$97.treeBaseDuration),
|
||||
(child$97 = child$97.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$96;
|
||||
(newChildLanes |= child$98.lanes | child$98.childLanes),
|
||||
(subtreeFlags |= child$98.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$98.flags & 65011712),
|
||||
(treeBaseDuration$97 += child$98.treeBaseDuration),
|
||||
(child$98 = child$98.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$97;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$96 = completedWork.child;
|
||||
null !== treeBaseDuration$96;
|
||||
treeBaseDuration$97 = completedWork.child;
|
||||
null !== treeBaseDuration$97;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$96.lanes | treeBaseDuration$96.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$96.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$96.flags & 65011712),
|
||||
(treeBaseDuration$96.return = completedWork),
|
||||
(treeBaseDuration$96 = treeBaseDuration$96.sibling);
|
||||
treeBaseDuration$97.lanes | treeBaseDuration$97.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$97.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$97.flags & 65011712),
|
||||
(treeBaseDuration$97.return = completedWork),
|
||||
(treeBaseDuration$97 = treeBaseDuration$97.sibling);
|
||||
else if (0 !== (completedWork.mode & 2)) {
|
||||
treeBaseDuration$96 = completedWork.actualDuration;
|
||||
child$97 = completedWork.selfBaseDuration;
|
||||
treeBaseDuration$97 = completedWork.actualDuration;
|
||||
child$98 = completedWork.selfBaseDuration;
|
||||
for (var child = completedWork.child; null !== child; )
|
||||
(newChildLanes |= child.lanes | child.childLanes),
|
||||
(subtreeFlags |= child.subtreeFlags),
|
||||
(subtreeFlags |= child.flags),
|
||||
(treeBaseDuration$96 += child.actualDuration),
|
||||
(child$97 += child.treeBaseDuration),
|
||||
(treeBaseDuration$97 += child.actualDuration),
|
||||
(child$98 += child.treeBaseDuration),
|
||||
(child = child.sibling);
|
||||
completedWork.actualDuration = treeBaseDuration$96;
|
||||
completedWork.treeBaseDuration = child$97;
|
||||
completedWork.actualDuration = treeBaseDuration$97;
|
||||
completedWork.treeBaseDuration = child$98;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$96 = completedWork.child;
|
||||
null !== treeBaseDuration$96;
|
||||
treeBaseDuration$97 = completedWork.child;
|
||||
null !== treeBaseDuration$97;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$96.lanes | treeBaseDuration$96.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$96.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$96.flags),
|
||||
(treeBaseDuration$96.return = completedWork),
|
||||
(treeBaseDuration$96 = treeBaseDuration$96.sibling);
|
||||
treeBaseDuration$97.lanes | treeBaseDuration$97.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$97.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$97.flags),
|
||||
(treeBaseDuration$97.return = completedWork),
|
||||
(treeBaseDuration$97 = treeBaseDuration$97.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -8730,9 +8734,9 @@ function commitHookEffectListMount(flags, finishedWork) {
|
||||
finishedWork
|
||||
);
|
||||
lastEffect = void 0;
|
||||
var create$128 = updateQueue.create,
|
||||
var create$129 = updateQueue.create,
|
||||
inst = updateQueue.inst;
|
||||
lastEffect = create$128();
|
||||
lastEffect = create$129();
|
||||
inst.destroy = lastEffect;
|
||||
0 !== (flags & 8)
|
||||
? null !== injectedProfilingHooks &&
|
||||
@@ -8872,8 +8876,8 @@ function safelyCallComponentWillUnmount(
|
||||
} else
|
||||
try {
|
||||
instance.componentWillUnmount();
|
||||
} catch (error$132) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$132);
|
||||
} catch (error$133) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$133);
|
||||
}
|
||||
}
|
||||
function safelyAttachRef(current, nearestMountedAncestor) {
|
||||
@@ -8941,8 +8945,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
recordEffectDuration(current);
|
||||
}
|
||||
else ref(null);
|
||||
} catch (error$133) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$133);
|
||||
} catch (error$134) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$134);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -9203,11 +9207,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
} else
|
||||
try {
|
||||
finishedRoot.componentDidMount();
|
||||
} catch (error$129) {
|
||||
} catch (error$130) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$129
|
||||
error$130
|
||||
);
|
||||
}
|
||||
else {
|
||||
@@ -9224,11 +9228,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$130) {
|
||||
} catch (error$131) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$130
|
||||
error$131
|
||||
);
|
||||
}
|
||||
recordEffectDuration();
|
||||
@@ -9239,11 +9243,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$131) {
|
||||
} catch (error$132) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$131
|
||||
error$132
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10088,12 +10092,12 @@ function commitReconciliationEffects(finishedWork) {
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
var parent$134 = hostParentFiber.stateNode.containerInfo,
|
||||
before$135 = getHostSibling(finishedWork);
|
||||
var parent$135 = hostParentFiber.stateNode.containerInfo,
|
||||
before$136 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNodeIntoContainer(
|
||||
finishedWork,
|
||||
before$135,
|
||||
parent$134
|
||||
before$136,
|
||||
parent$135
|
||||
);
|
||||
break;
|
||||
default:
|
||||
@@ -11773,7 +11777,7 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= blockingEventTime && blockingEventTime < blockingClampTime
|
||||
? blockingClampTime
|
||||
: blockingEventTime;
|
||||
var clampedRenderStartTime$168 =
|
||||
var clampedRenderStartTime$169 =
|
||||
0 <= endTime
|
||||
? endTime
|
||||
: 0 <= previousRenderStartTime
|
||||
@@ -11783,10 +11787,10 @@ function prepareFreshStack(root, lanes) {
|
||||
(setCurrentTrackFromLanes(2),
|
||||
logSuspendedWithDelayPhase(
|
||||
blockingSuspendedTime,
|
||||
clampedRenderStartTime$168,
|
||||
clampedRenderStartTime$169,
|
||||
lanes
|
||||
));
|
||||
clampedRenderStartTime$168 = blockingEventType;
|
||||
clampedRenderStartTime$169 = blockingEventType;
|
||||
var eventIsRepeat = blockingEventIsRepeat,
|
||||
isSpawnedUpdate = 1 === blockingUpdateType,
|
||||
isPingedUpdate = 2 === blockingUpdateType,
|
||||
@@ -11801,12 +11805,12 @@ function prepareFreshStack(root, lanes) {
|
||||
? endTime > previousRenderStartTime &&
|
||||
(endTime = previousRenderStartTime)
|
||||
: (endTime = previousRenderStartTime),
|
||||
null !== clampedRenderStartTime$168 &&
|
||||
null !== clampedRenderStartTime$169 &&
|
||||
previousRenderStartTime > endTime &&
|
||||
console.timeStamp(
|
||||
eventIsRepeat
|
||||
? "Consecutive"
|
||||
: "Event: " + clampedRenderStartTime$168,
|
||||
: "Event: " + clampedRenderStartTime$169,
|
||||
endTime,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
@@ -11847,13 +11851,13 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= transitionUpdateTime && transitionUpdateTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionUpdateTime),
|
||||
(clampedRenderStartTime$168 =
|
||||
(clampedRenderStartTime$169 =
|
||||
0 <= transitionEventTime && transitionEventTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionEventTime),
|
||||
(eventIsRepeat =
|
||||
0 <= clampedRenderStartTime$168
|
||||
? clampedRenderStartTime$168
|
||||
0 <= clampedRenderStartTime$169
|
||||
? clampedRenderStartTime$169
|
||||
: 0 <= endTime
|
||||
? endTime
|
||||
: renderStartTime),
|
||||
@@ -11878,15 +11882,15 @@ function prepareFreshStack(root, lanes) {
|
||||
? previousRenderStartTime > endTime &&
|
||||
(previousRenderStartTime = endTime)
|
||||
: (previousRenderStartTime = endTime),
|
||||
0 < clampedRenderStartTime$168
|
||||
? clampedRenderStartTime$168 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$168 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$168 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$168 &&
|
||||
0 < clampedRenderStartTime$169
|
||||
? clampedRenderStartTime$169 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$169 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$169 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$169 &&
|
||||
null !== eventIsRepeat &&
|
||||
console.timeStamp(
|
||||
isSpawnedUpdate ? "Consecutive" : "Event: " + eventIsRepeat,
|
||||
clampedRenderStartTime$168,
|
||||
clampedRenderStartTime$169,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
"Scheduler \u269b",
|
||||
@@ -11953,9 +11957,9 @@ function prepareFreshStack(root, lanes) {
|
||||
endTime = root.entangledLanes;
|
||||
if (0 !== endTime)
|
||||
for (root = root.entanglements, endTime &= lanes; 0 < endTime; )
|
||||
(clampedRenderStartTime$168 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$168),
|
||||
(lanes |= root[clampedRenderStartTime$168]),
|
||||
(clampedRenderStartTime$169 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$169),
|
||||
(lanes |= root[clampedRenderStartTime$169]),
|
||||
(endTime &= ~eventIsRepeat);
|
||||
entangledRenderLanes = lanes;
|
||||
finishQueueingConcurrentUpdates();
|
||||
@@ -12099,8 +12103,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
memoizedUpdaters = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$173) {
|
||||
handleThrow(root, thrownValue$173);
|
||||
} catch (thrownValue$174) {
|
||||
handleThrow(root, thrownValue$174);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -12223,8 +12227,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$175) {
|
||||
handleThrow(root, thrownValue$175);
|
||||
} catch (thrownValue$176) {
|
||||
handleThrow(root, thrownValue$176);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -13435,11 +13439,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-ef889445-20250930" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-d8a15c49-20250930" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-ef889445-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-d8a15c49-20250930\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -13487,20 +13491,20 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1609 = {
|
||||
internals$jscomp$inline_1610 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-ef889445-20250930",
|
||||
version: "19.2.0-native-fb-d8a15c49-20250930",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-ef889445-20250930"
|
||||
reconcilerVersion: "19.2.0-native-fb-d8a15c49-20250930"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1609.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1609.getLaneLabelMap = function () {
|
||||
(internals$jscomp$inline_1610.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1610.getLaneLabelMap = function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$180 = 0;
|
||||
31 > index$180;
|
||||
index$180++
|
||||
var map = new Map(), lane = 1, index$181 = 0;
|
||||
31 > index$181;
|
||||
index$181++
|
||||
) {
|
||||
var label = getLabelForLane(lane);
|
||||
map.set(lane, label);
|
||||
@@ -13508,20 +13512,20 @@ internals$jscomp$inline_1609.getLaneLabelMap = function () {
|
||||
}
|
||||
return map;
|
||||
};
|
||||
internals$jscomp$inline_1609.injectProfilingHooks = function (profilingHooks) {
|
||||
internals$jscomp$inline_1610.injectProfilingHooks = function (profilingHooks) {
|
||||
injectedProfilingHooks = profilingHooks;
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1985 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1986 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1985.isDisabled &&
|
||||
hook$jscomp$inline_1985.supportsFiber
|
||||
!hook$jscomp$inline_1986.isDisabled &&
|
||||
hook$jscomp$inline_1986.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1985.inject(
|
||||
internals$jscomp$inline_1609
|
||||
(rendererID = hook$jscomp$inline_1986.inject(
|
||||
internals$jscomp$inline_1610
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1985);
|
||||
(injectedHook = hook$jscomp$inline_1986);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "eslint-plugin-react-hooks",
|
||||
"description": "ESLint rules for React Hooks",
|
||||
"version": "0.0.0-experimental-ef889445-20250930",
|
||||
"version": "0.0.0-experimental-d8a15c49-20250930",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/facebook/react.git",
|
||||
|
||||
Reference in New Issue
Block a user