mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Add Gesture Track in Performance Tab (#34546)
DiffTrain build for [05b61f812a](https://github.com/facebook/react/commit/05b61f812a2070276c5db0d2107808a6161632fc)
This commit is contained in:
@@ -1 +1 @@
|
||||
19.2.0-native-fb-e0c421ab-20250924
|
||||
19.2.0-native-fb-05b61f81-20250924
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<195fc6ed89ffd3e6b532c623418fdb4d>>
|
||||
* @generated SignedSource<<da723ce072c674bb525c8b7d680ee444>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -404,5 +404,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
})();
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<6d87274d00e2617ad57a9c90f8f228af>>
|
||||
* @generated SignedSource<<8ba48f6c7cf846853b9cde7f39bb162d>>
|
||||
*/
|
||||
|
||||
"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-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<6d87274d00e2617ad57a9c90f8f228af>>
|
||||
* @generated SignedSource<<8ba48f6c7cf846853b9cde7f39bb162d>>
|
||||
*/
|
||||
|
||||
"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-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
|
||||
Vendored
+133
-131
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f7904da83770d5c3844d0e86de483d34>>
|
||||
* @generated SignedSource<<da148c57ea43928efb447b82d00ddba1>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -4175,15 +4175,17 @@ __DEV__ &&
|
||||
}
|
||||
function setCurrentTrackFromLanes(lanes) {
|
||||
currentTrack =
|
||||
lanes & 127
|
||||
lanes & 63
|
||||
? "Blocking"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
: lanes & 64
|
||||
? "Gesture"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
}
|
||||
function logComponentTrigger(fiber, startTime, endTime, trigger) {
|
||||
supportsUserTiming &&
|
||||
@@ -11194,24 +11196,24 @@ __DEV__ &&
|
||||
return current;
|
||||
}
|
||||
function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
||||
var JSCompiler_object_inline_digest_2925;
|
||||
var JSCompiler_object_inline_stack_2926 = workInProgress.pendingProps;
|
||||
var JSCompiler_object_inline_digest_2943;
|
||||
var JSCompiler_object_inline_stack_2944 = workInProgress.pendingProps;
|
||||
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
|
||||
var JSCompiler_object_inline_message_2924 = !1;
|
||||
var JSCompiler_object_inline_message_2942 = !1;
|
||||
var didSuspend = 0 !== (workInProgress.flags & 128);
|
||||
(JSCompiler_object_inline_digest_2925 = didSuspend) ||
|
||||
(JSCompiler_object_inline_digest_2925 =
|
||||
(JSCompiler_object_inline_digest_2943 = didSuspend) ||
|
||||
(JSCompiler_object_inline_digest_2943 =
|
||||
null !== current && null === current.memoizedState
|
||||
? !1
|
||||
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
|
||||
JSCompiler_object_inline_digest_2925 &&
|
||||
((JSCompiler_object_inline_message_2924 = !0),
|
||||
JSCompiler_object_inline_digest_2943 &&
|
||||
((JSCompiler_object_inline_message_2942 = !0),
|
||||
(workInProgress.flags &= -129));
|
||||
JSCompiler_object_inline_digest_2925 = 0 !== (workInProgress.flags & 32);
|
||||
JSCompiler_object_inline_digest_2943 = 0 !== (workInProgress.flags & 32);
|
||||
workInProgress.flags &= -33;
|
||||
if (null === current) {
|
||||
if (isHydrating) {
|
||||
JSCompiler_object_inline_message_2924
|
||||
JSCompiler_object_inline_message_2942
|
||||
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
||||
: reuseSuspenseHandlerOnStack(workInProgress);
|
||||
(renderLanes = nextHydratableInstance)
|
||||
@@ -11224,18 +11226,18 @@ __DEV__ &&
|
||||
? current
|
||||
: null),
|
||||
null !== current &&
|
||||
((JSCompiler_object_inline_digest_2925 = {
|
||||
((JSCompiler_object_inline_digest_2943 = {
|
||||
dehydrated: current,
|
||||
treeContext: getSuspendedTreeContext(),
|
||||
retryLane: 536870912,
|
||||
hydrationErrors: null
|
||||
}),
|
||||
(workInProgress.memoizedState =
|
||||
JSCompiler_object_inline_digest_2925),
|
||||
(JSCompiler_object_inline_digest_2925 =
|
||||
JSCompiler_object_inline_digest_2943),
|
||||
(JSCompiler_object_inline_digest_2943 =
|
||||
createFiberFromDehydratedFragment(current)),
|
||||
(JSCompiler_object_inline_digest_2925.return = workInProgress),
|
||||
(workInProgress.child = JSCompiler_object_inline_digest_2925),
|
||||
(JSCompiler_object_inline_digest_2943.return = workInProgress),
|
||||
(workInProgress.child = JSCompiler_object_inline_digest_2943),
|
||||
(hydrationParentFiber = workInProgress),
|
||||
(nextHydratableInstance = null)))
|
||||
: (current = null);
|
||||
@@ -11249,9 +11251,9 @@ __DEV__ &&
|
||||
: (workInProgress.lanes = 536870912);
|
||||
return null;
|
||||
}
|
||||
var nextPrimaryChildren = JSCompiler_object_inline_stack_2926.children,
|
||||
nextFallbackChildren = JSCompiler_object_inline_stack_2926.fallback;
|
||||
if (JSCompiler_object_inline_message_2924)
|
||||
var nextPrimaryChildren = JSCompiler_object_inline_stack_2944.children,
|
||||
nextFallbackChildren = JSCompiler_object_inline_stack_2944.fallback;
|
||||
if (JSCompiler_object_inline_message_2942)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
mountSuspenseFallbackChildren(
|
||||
@@ -11260,21 +11262,21 @@ __DEV__ &&
|
||||
nextFallbackChildren,
|
||||
renderLanes
|
||||
),
|
||||
(JSCompiler_object_inline_stack_2926 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2926.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2944 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2944.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_stack_2926.childLanes =
|
||||
(JSCompiler_object_inline_stack_2944.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2925,
|
||||
JSCompiler_object_inline_digest_2943,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2926)
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2944)
|
||||
);
|
||||
if (
|
||||
"number" ===
|
||||
typeof JSCompiler_object_inline_stack_2926.unstable_expectedLoadTime
|
||||
typeof JSCompiler_object_inline_stack_2944.unstable_expectedLoadTime
|
||||
)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
@@ -11284,18 +11286,18 @@ __DEV__ &&
|
||||
nextFallbackChildren,
|
||||
renderLanes
|
||||
),
|
||||
(JSCompiler_object_inline_stack_2926 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2926.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2944 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2944.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_stack_2926.childLanes =
|
||||
(JSCompiler_object_inline_stack_2944.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2925,
|
||||
JSCompiler_object_inline_digest_2943,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
(workInProgress.lanes = 4194304),
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2926)
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2944)
|
||||
);
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress);
|
||||
return mountSuspensePrimaryChildren(
|
||||
@@ -11305,8 +11307,8 @@ __DEV__ &&
|
||||
}
|
||||
var prevState = current.memoizedState;
|
||||
if (null !== prevState) {
|
||||
var JSCompiler_object_inline_componentStack_2927 = prevState.dehydrated;
|
||||
if (null !== JSCompiler_object_inline_componentStack_2927) {
|
||||
var JSCompiler_object_inline_componentStack_2945 = prevState.dehydrated;
|
||||
if (null !== JSCompiler_object_inline_componentStack_2945) {
|
||||
if (didSuspend)
|
||||
workInProgress.flags & 256
|
||||
? (pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
@@ -11323,13 +11325,13 @@ __DEV__ &&
|
||||
(workInProgress = null))
|
||||
: (reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(nextPrimaryChildren =
|
||||
JSCompiler_object_inline_stack_2926.fallback),
|
||||
JSCompiler_object_inline_stack_2944.fallback),
|
||||
(nextFallbackChildren = workInProgress.mode),
|
||||
(JSCompiler_object_inline_stack_2926 =
|
||||
(JSCompiler_object_inline_stack_2944 =
|
||||
mountWorkInProgressOffscreenFiber(
|
||||
{
|
||||
mode: "visible",
|
||||
children: JSCompiler_object_inline_stack_2926.children
|
||||
children: JSCompiler_object_inline_stack_2944.children
|
||||
},
|
||||
nextFallbackChildren
|
||||
)),
|
||||
@@ -11340,11 +11342,11 @@ __DEV__ &&
|
||||
null
|
||||
)),
|
||||
(nextPrimaryChildren.flags |= 2),
|
||||
(JSCompiler_object_inline_stack_2926.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2944.return = workInProgress),
|
||||
(nextPrimaryChildren.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2926.sibling =
|
||||
(JSCompiler_object_inline_stack_2944.sibling =
|
||||
nextPrimaryChildren),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2926),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2944),
|
||||
(workInProgress.mode & ConcurrentMode) !== NoMode &&
|
||||
reconcileChildFibers(
|
||||
workInProgress,
|
||||
@@ -11352,19 +11354,19 @@ __DEV__ &&
|
||||
null,
|
||||
renderLanes
|
||||
),
|
||||
(JSCompiler_object_inline_stack_2926 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2926.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2944 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2944.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_stack_2926.childLanes =
|
||||
(JSCompiler_object_inline_stack_2944.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2925,
|
||||
JSCompiler_object_inline_digest_2943,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
(workInProgress = bailoutOffscreenComponent(
|
||||
null,
|
||||
JSCompiler_object_inline_stack_2926
|
||||
JSCompiler_object_inline_stack_2944
|
||||
)));
|
||||
else if (
|
||||
(pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
@@ -11372,45 +11374,45 @@ __DEV__ &&
|
||||
0 !== (renderLanes & 536870912) &&
|
||||
markRenderDerivedCause(workInProgress),
|
||||
isSuspenseInstanceFallback(
|
||||
JSCompiler_object_inline_componentStack_2927
|
||||
JSCompiler_object_inline_componentStack_2945
|
||||
))
|
||||
) {
|
||||
JSCompiler_object_inline_digest_2925 =
|
||||
JSCompiler_object_inline_componentStack_2927.nextSibling &&
|
||||
JSCompiler_object_inline_componentStack_2927.nextSibling.dataset;
|
||||
if (JSCompiler_object_inline_digest_2925) {
|
||||
nextPrimaryChildren = JSCompiler_object_inline_digest_2925.dgst;
|
||||
var message = JSCompiler_object_inline_digest_2925.msg;
|
||||
nextFallbackChildren = JSCompiler_object_inline_digest_2925.stck;
|
||||
var componentStack = JSCompiler_object_inline_digest_2925.cstck;
|
||||
JSCompiler_object_inline_digest_2943 =
|
||||
JSCompiler_object_inline_componentStack_2945.nextSibling &&
|
||||
JSCompiler_object_inline_componentStack_2945.nextSibling.dataset;
|
||||
if (JSCompiler_object_inline_digest_2943) {
|
||||
nextPrimaryChildren = JSCompiler_object_inline_digest_2943.dgst;
|
||||
var message = JSCompiler_object_inline_digest_2943.msg;
|
||||
nextFallbackChildren = JSCompiler_object_inline_digest_2943.stck;
|
||||
var componentStack = JSCompiler_object_inline_digest_2943.cstck;
|
||||
}
|
||||
JSCompiler_object_inline_message_2924 = message;
|
||||
JSCompiler_object_inline_digest_2925 = nextPrimaryChildren;
|
||||
JSCompiler_object_inline_stack_2926 = nextFallbackChildren;
|
||||
JSCompiler_object_inline_componentStack_2927 = componentStack;
|
||||
nextPrimaryChildren = JSCompiler_object_inline_message_2924;
|
||||
nextFallbackChildren = JSCompiler_object_inline_componentStack_2927;
|
||||
JSCompiler_object_inline_message_2942 = message;
|
||||
JSCompiler_object_inline_digest_2943 = nextPrimaryChildren;
|
||||
JSCompiler_object_inline_stack_2944 = nextFallbackChildren;
|
||||
JSCompiler_object_inline_componentStack_2945 = componentStack;
|
||||
nextPrimaryChildren = JSCompiler_object_inline_message_2942;
|
||||
nextFallbackChildren = JSCompiler_object_inline_componentStack_2945;
|
||||
nextPrimaryChildren = nextPrimaryChildren
|
||||
? Error(nextPrimaryChildren)
|
||||
: Error(
|
||||
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
|
||||
);
|
||||
nextPrimaryChildren.stack =
|
||||
JSCompiler_object_inline_stack_2926 || "";
|
||||
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2925;
|
||||
JSCompiler_object_inline_digest_2925 =
|
||||
JSCompiler_object_inline_stack_2944 || "";
|
||||
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2943;
|
||||
JSCompiler_object_inline_digest_2943 =
|
||||
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
|
||||
JSCompiler_object_inline_stack_2926 = {
|
||||
JSCompiler_object_inline_stack_2944 = {
|
||||
value: nextPrimaryChildren,
|
||||
source: null,
|
||||
stack: JSCompiler_object_inline_digest_2925
|
||||
stack: JSCompiler_object_inline_digest_2943
|
||||
};
|
||||
"string" === typeof JSCompiler_object_inline_digest_2925 &&
|
||||
"string" === typeof JSCompiler_object_inline_digest_2943 &&
|
||||
CapturedStacks.set(
|
||||
nextPrimaryChildren,
|
||||
JSCompiler_object_inline_stack_2926
|
||||
JSCompiler_object_inline_stack_2944
|
||||
);
|
||||
queueHydrationError(JSCompiler_object_inline_stack_2926);
|
||||
queueHydrationError(JSCompiler_object_inline_stack_2944);
|
||||
workInProgress = retrySuspenseComponentWithoutHydrating(
|
||||
current,
|
||||
workInProgress,
|
||||
@@ -11424,35 +11426,35 @@ __DEV__ &&
|
||||
renderLanes,
|
||||
!1
|
||||
),
|
||||
(JSCompiler_object_inline_digest_2925 =
|
||||
(JSCompiler_object_inline_digest_2943 =
|
||||
0 !== (renderLanes & current.childLanes)),
|
||||
didReceiveUpdate || JSCompiler_object_inline_digest_2925)
|
||||
didReceiveUpdate || JSCompiler_object_inline_digest_2943)
|
||||
) {
|
||||
JSCompiler_object_inline_digest_2925 = workInProgressRoot;
|
||||
JSCompiler_object_inline_digest_2943 = workInProgressRoot;
|
||||
if (
|
||||
null !== JSCompiler_object_inline_digest_2925 &&
|
||||
((JSCompiler_object_inline_stack_2926 = getBumpedLaneForHydration(
|
||||
JSCompiler_object_inline_digest_2925,
|
||||
null !== JSCompiler_object_inline_digest_2943 &&
|
||||
((JSCompiler_object_inline_stack_2944 = getBumpedLaneForHydration(
|
||||
JSCompiler_object_inline_digest_2943,
|
||||
renderLanes
|
||||
)),
|
||||
0 !== JSCompiler_object_inline_stack_2926 &&
|
||||
JSCompiler_object_inline_stack_2926 !== prevState.retryLane)
|
||||
0 !== JSCompiler_object_inline_stack_2944 &&
|
||||
JSCompiler_object_inline_stack_2944 !== prevState.retryLane)
|
||||
)
|
||||
throw (
|
||||
((prevState.retryLane = JSCompiler_object_inline_stack_2926),
|
||||
((prevState.retryLane = JSCompiler_object_inline_stack_2944),
|
||||
enqueueConcurrentRenderForLane(
|
||||
current,
|
||||
JSCompiler_object_inline_stack_2926
|
||||
JSCompiler_object_inline_stack_2944
|
||||
),
|
||||
scheduleUpdateOnFiber(
|
||||
JSCompiler_object_inline_digest_2925,
|
||||
JSCompiler_object_inline_digest_2943,
|
||||
current,
|
||||
JSCompiler_object_inline_stack_2926
|
||||
JSCompiler_object_inline_stack_2944
|
||||
),
|
||||
SelectiveHydrationException)
|
||||
);
|
||||
isSuspenseInstancePending(
|
||||
JSCompiler_object_inline_componentStack_2927
|
||||
JSCompiler_object_inline_componentStack_2945
|
||||
) || renderDidSuspendDelayIfPossible();
|
||||
workInProgress = retrySuspenseComponentWithoutHydrating(
|
||||
current,
|
||||
@@ -11461,14 +11463,14 @@ __DEV__ &&
|
||||
);
|
||||
} else
|
||||
isSuspenseInstancePending(
|
||||
JSCompiler_object_inline_componentStack_2927
|
||||
JSCompiler_object_inline_componentStack_2945
|
||||
)
|
||||
? ((workInProgress.flags |= 192),
|
||||
(workInProgress.child = current.child),
|
||||
(workInProgress = null))
|
||||
: ((renderLanes = prevState.treeContext),
|
||||
(nextHydratableInstance = getNextHydratable(
|
||||
JSCompiler_object_inline_componentStack_2927.nextSibling
|
||||
JSCompiler_object_inline_componentStack_2945.nextSibling
|
||||
)),
|
||||
(hydrationParentFiber = workInProgress),
|
||||
(isHydrating = !0),
|
||||
@@ -11480,47 +11482,47 @@ __DEV__ &&
|
||||
restoreSuspendedTreeContext(workInProgress, renderLanes),
|
||||
(workInProgress = mountSuspensePrimaryChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_stack_2926.children
|
||||
JSCompiler_object_inline_stack_2944.children
|
||||
)),
|
||||
(workInProgress.flags |= 4096));
|
||||
return workInProgress;
|
||||
}
|
||||
}
|
||||
if (JSCompiler_object_inline_message_2924)
|
||||
if (JSCompiler_object_inline_message_2942)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(nextPrimaryChildren = JSCompiler_object_inline_stack_2926.fallback),
|
||||
(nextPrimaryChildren = JSCompiler_object_inline_stack_2944.fallback),
|
||||
(nextFallbackChildren = workInProgress.mode),
|
||||
(componentStack = current.child),
|
||||
(JSCompiler_object_inline_componentStack_2927 =
|
||||
(JSCompiler_object_inline_componentStack_2945 =
|
||||
componentStack.sibling),
|
||||
(JSCompiler_object_inline_message_2924 = {
|
||||
(JSCompiler_object_inline_message_2942 = {
|
||||
mode: "hidden",
|
||||
children: JSCompiler_object_inline_stack_2926.children
|
||||
children: JSCompiler_object_inline_stack_2944.children
|
||||
}),
|
||||
(nextFallbackChildren & ConcurrentMode) === NoMode &&
|
||||
workInProgress.child !== componentStack
|
||||
? ((JSCompiler_object_inline_stack_2926 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2926.childLanes = 0),
|
||||
(JSCompiler_object_inline_stack_2926.pendingProps =
|
||||
JSCompiler_object_inline_message_2924),
|
||||
? ((JSCompiler_object_inline_stack_2944 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2944.childLanes = 0),
|
||||
(JSCompiler_object_inline_stack_2944.pendingProps =
|
||||
JSCompiler_object_inline_message_2942),
|
||||
workInProgress.mode & ProfileMode &&
|
||||
((JSCompiler_object_inline_stack_2926.actualDuration = -0),
|
||||
(JSCompiler_object_inline_stack_2926.actualStartTime = -1.1),
|
||||
(JSCompiler_object_inline_stack_2926.selfBaseDuration =
|
||||
((JSCompiler_object_inline_stack_2944.actualDuration = -0),
|
||||
(JSCompiler_object_inline_stack_2944.actualStartTime = -1.1),
|
||||
(JSCompiler_object_inline_stack_2944.selfBaseDuration =
|
||||
componentStack.selfBaseDuration),
|
||||
(JSCompiler_object_inline_stack_2926.treeBaseDuration =
|
||||
(JSCompiler_object_inline_stack_2944.treeBaseDuration =
|
||||
componentStack.treeBaseDuration)),
|
||||
(workInProgress.deletions = null))
|
||||
: ((JSCompiler_object_inline_stack_2926 = createWorkInProgress(
|
||||
: ((JSCompiler_object_inline_stack_2944 = createWorkInProgress(
|
||||
componentStack,
|
||||
JSCompiler_object_inline_message_2924
|
||||
JSCompiler_object_inline_message_2942
|
||||
)),
|
||||
(JSCompiler_object_inline_stack_2926.subtreeFlags =
|
||||
(JSCompiler_object_inline_stack_2944.subtreeFlags =
|
||||
componentStack.subtreeFlags & 65011712)),
|
||||
null !== JSCompiler_object_inline_componentStack_2927
|
||||
null !== JSCompiler_object_inline_componentStack_2945
|
||||
? (nextPrimaryChildren = createWorkInProgress(
|
||||
JSCompiler_object_inline_componentStack_2927,
|
||||
JSCompiler_object_inline_componentStack_2945,
|
||||
nextPrimaryChildren
|
||||
))
|
||||
: ((nextPrimaryChildren = createFiberFromFragment(
|
||||
@@ -11531,11 +11533,11 @@ __DEV__ &&
|
||||
)),
|
||||
(nextPrimaryChildren.flags |= 2)),
|
||||
(nextPrimaryChildren.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2926.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2926.sibling = nextPrimaryChildren),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2926),
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2926),
|
||||
(JSCompiler_object_inline_stack_2926 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2944.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2944.sibling = nextPrimaryChildren),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2944),
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2944),
|
||||
(JSCompiler_object_inline_stack_2944 = workInProgress.child),
|
||||
(nextPrimaryChildren = current.child.memoizedState),
|
||||
null === nextPrimaryChildren
|
||||
? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))
|
||||
@@ -11551,18 +11553,18 @@ __DEV__ &&
|
||||
baseLanes: nextPrimaryChildren.baseLanes | renderLanes,
|
||||
cachePool: nextFallbackChildren
|
||||
})),
|
||||
(JSCompiler_object_inline_stack_2926.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2944.memoizedState =
|
||||
nextPrimaryChildren),
|
||||
(JSCompiler_object_inline_stack_2926.childLanes =
|
||||
(JSCompiler_object_inline_stack_2944.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2925,
|
||||
JSCompiler_object_inline_digest_2943,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
bailoutOffscreenComponent(
|
||||
current.child,
|
||||
JSCompiler_object_inline_stack_2926
|
||||
JSCompiler_object_inline_stack_2944
|
||||
)
|
||||
);
|
||||
null !== prevState &&
|
||||
@@ -11570,28 +11572,28 @@ __DEV__ &&
|
||||
0 !== (renderLanes & current.lanes) &&
|
||||
markRenderDerivedCause(workInProgress);
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress);
|
||||
JSCompiler_object_inline_digest_2925 = current.child;
|
||||
current = JSCompiler_object_inline_digest_2925.sibling;
|
||||
JSCompiler_object_inline_digest_2925 = createWorkInProgress(
|
||||
JSCompiler_object_inline_digest_2925,
|
||||
JSCompiler_object_inline_digest_2943 = current.child;
|
||||
current = JSCompiler_object_inline_digest_2943.sibling;
|
||||
JSCompiler_object_inline_digest_2943 = createWorkInProgress(
|
||||
JSCompiler_object_inline_digest_2943,
|
||||
{
|
||||
mode: "visible",
|
||||
children: JSCompiler_object_inline_stack_2926.children
|
||||
children: JSCompiler_object_inline_stack_2944.children
|
||||
}
|
||||
);
|
||||
(workInProgress.mode & ConcurrentMode) === NoMode &&
|
||||
(JSCompiler_object_inline_digest_2925.lanes = renderLanes);
|
||||
JSCompiler_object_inline_digest_2925.return = workInProgress;
|
||||
JSCompiler_object_inline_digest_2925.sibling = null;
|
||||
(JSCompiler_object_inline_digest_2943.lanes = renderLanes);
|
||||
JSCompiler_object_inline_digest_2943.return = workInProgress;
|
||||
JSCompiler_object_inline_digest_2943.sibling = null;
|
||||
null !== current &&
|
||||
((renderLanes = workInProgress.deletions),
|
||||
null === renderLanes
|
||||
? ((workInProgress.deletions = [current]),
|
||||
(workInProgress.flags |= 16))
|
||||
: renderLanes.push(current));
|
||||
workInProgress.child = JSCompiler_object_inline_digest_2925;
|
||||
workInProgress.child = JSCompiler_object_inline_digest_2943;
|
||||
workInProgress.memoizedState = null;
|
||||
return JSCompiler_object_inline_digest_2925;
|
||||
return JSCompiler_object_inline_digest_2943;
|
||||
}
|
||||
function mountSuspensePrimaryChildren(workInProgress, primaryChildren) {
|
||||
primaryChildren = mountWorkInProgressOffscreenFiber(
|
||||
@@ -29918,11 +29920,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-e0c421ab-20250924" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-05b61f81-20250924" !== 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-e0c421ab-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-native-fb-05b61f81-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -29959,10 +29961,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -30111,5 +30113,5 @@ __DEV__ &&
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
})();
|
||||
|
||||
compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
Vendored
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<7828a4fded494848b6a5cdda31ea4a26>>
|
||||
* @generated SignedSource<<27ddc6a0b3df51ba1a8af89d253a8698>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -17529,14 +17529,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2052 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-e0c421ab-20250924" !==
|
||||
"19.2.0-native-fb-05b61f81-20250924" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2052
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2052,
|
||||
"19.2.0-native-fb-e0c421ab-20250924"
|
||||
"19.2.0-native-fb-05b61f81-20250924"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17558,10 +17558,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2625 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2626 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17668,4 +17668,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
|
||||
+257
-250
File diff suppressed because it is too large
Load Diff
+133
-131
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<8683648d99e2b196f580e4ed67a904b0>>
|
||||
* @generated SignedSource<<7a686dbd839af29c7bece4ff5f45c6a4>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -4183,15 +4183,17 @@ __DEV__ &&
|
||||
}
|
||||
function setCurrentTrackFromLanes(lanes) {
|
||||
currentTrack =
|
||||
lanes & 127
|
||||
lanes & 63
|
||||
? "Blocking"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
: lanes & 64
|
||||
? "Gesture"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
}
|
||||
function logComponentTrigger(fiber, startTime, endTime, trigger) {
|
||||
supportsUserTiming &&
|
||||
@@ -11202,24 +11204,24 @@ __DEV__ &&
|
||||
return current;
|
||||
}
|
||||
function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
||||
var JSCompiler_object_inline_digest_2930;
|
||||
var JSCompiler_object_inline_stack_2931 = workInProgress.pendingProps;
|
||||
var JSCompiler_object_inline_digest_2948;
|
||||
var JSCompiler_object_inline_stack_2949 = workInProgress.pendingProps;
|
||||
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
|
||||
var JSCompiler_object_inline_message_2929 = !1;
|
||||
var JSCompiler_object_inline_message_2947 = !1;
|
||||
var didSuspend = 0 !== (workInProgress.flags & 128);
|
||||
(JSCompiler_object_inline_digest_2930 = didSuspend) ||
|
||||
(JSCompiler_object_inline_digest_2930 =
|
||||
(JSCompiler_object_inline_digest_2948 = didSuspend) ||
|
||||
(JSCompiler_object_inline_digest_2948 =
|
||||
null !== current && null === current.memoizedState
|
||||
? !1
|
||||
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
|
||||
JSCompiler_object_inline_digest_2930 &&
|
||||
((JSCompiler_object_inline_message_2929 = !0),
|
||||
JSCompiler_object_inline_digest_2948 &&
|
||||
((JSCompiler_object_inline_message_2947 = !0),
|
||||
(workInProgress.flags &= -129));
|
||||
JSCompiler_object_inline_digest_2930 = 0 !== (workInProgress.flags & 32);
|
||||
JSCompiler_object_inline_digest_2948 = 0 !== (workInProgress.flags & 32);
|
||||
workInProgress.flags &= -33;
|
||||
if (null === current) {
|
||||
if (isHydrating) {
|
||||
JSCompiler_object_inline_message_2929
|
||||
JSCompiler_object_inline_message_2947
|
||||
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
||||
: reuseSuspenseHandlerOnStack(workInProgress);
|
||||
(renderLanes = nextHydratableInstance)
|
||||
@@ -11232,18 +11234,18 @@ __DEV__ &&
|
||||
? current
|
||||
: null),
|
||||
null !== current &&
|
||||
((JSCompiler_object_inline_digest_2930 = {
|
||||
((JSCompiler_object_inline_digest_2948 = {
|
||||
dehydrated: current,
|
||||
treeContext: getSuspendedTreeContext(),
|
||||
retryLane: 536870912,
|
||||
hydrationErrors: null
|
||||
}),
|
||||
(workInProgress.memoizedState =
|
||||
JSCompiler_object_inline_digest_2930),
|
||||
(JSCompiler_object_inline_digest_2930 =
|
||||
JSCompiler_object_inline_digest_2948),
|
||||
(JSCompiler_object_inline_digest_2948 =
|
||||
createFiberFromDehydratedFragment(current)),
|
||||
(JSCompiler_object_inline_digest_2930.return = workInProgress),
|
||||
(workInProgress.child = JSCompiler_object_inline_digest_2930),
|
||||
(JSCompiler_object_inline_digest_2948.return = workInProgress),
|
||||
(workInProgress.child = JSCompiler_object_inline_digest_2948),
|
||||
(hydrationParentFiber = workInProgress),
|
||||
(nextHydratableInstance = null)))
|
||||
: (current = null);
|
||||
@@ -11257,9 +11259,9 @@ __DEV__ &&
|
||||
: (workInProgress.lanes = 536870912);
|
||||
return null;
|
||||
}
|
||||
var nextPrimaryChildren = JSCompiler_object_inline_stack_2931.children,
|
||||
nextFallbackChildren = JSCompiler_object_inline_stack_2931.fallback;
|
||||
if (JSCompiler_object_inline_message_2929)
|
||||
var nextPrimaryChildren = JSCompiler_object_inline_stack_2949.children,
|
||||
nextFallbackChildren = JSCompiler_object_inline_stack_2949.fallback;
|
||||
if (JSCompiler_object_inline_message_2947)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
mountSuspenseFallbackChildren(
|
||||
@@ -11268,21 +11270,21 @@ __DEV__ &&
|
||||
nextFallbackChildren,
|
||||
renderLanes
|
||||
),
|
||||
(JSCompiler_object_inline_stack_2931 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2931.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2949 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2949.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_stack_2931.childLanes =
|
||||
(JSCompiler_object_inline_stack_2949.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2930,
|
||||
JSCompiler_object_inline_digest_2948,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2931)
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2949)
|
||||
);
|
||||
if (
|
||||
"number" ===
|
||||
typeof JSCompiler_object_inline_stack_2931.unstable_expectedLoadTime
|
||||
typeof JSCompiler_object_inline_stack_2949.unstable_expectedLoadTime
|
||||
)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
@@ -11292,18 +11294,18 @@ __DEV__ &&
|
||||
nextFallbackChildren,
|
||||
renderLanes
|
||||
),
|
||||
(JSCompiler_object_inline_stack_2931 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2931.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2949 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2949.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_stack_2931.childLanes =
|
||||
(JSCompiler_object_inline_stack_2949.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2930,
|
||||
JSCompiler_object_inline_digest_2948,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
(workInProgress.lanes = 4194304),
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2931)
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2949)
|
||||
);
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress);
|
||||
return mountSuspensePrimaryChildren(
|
||||
@@ -11313,8 +11315,8 @@ __DEV__ &&
|
||||
}
|
||||
var prevState = current.memoizedState;
|
||||
if (null !== prevState) {
|
||||
var JSCompiler_object_inline_componentStack_2932 = prevState.dehydrated;
|
||||
if (null !== JSCompiler_object_inline_componentStack_2932) {
|
||||
var JSCompiler_object_inline_componentStack_2950 = prevState.dehydrated;
|
||||
if (null !== JSCompiler_object_inline_componentStack_2950) {
|
||||
if (didSuspend)
|
||||
workInProgress.flags & 256
|
||||
? (pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
@@ -11331,13 +11333,13 @@ __DEV__ &&
|
||||
(workInProgress = null))
|
||||
: (reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(nextPrimaryChildren =
|
||||
JSCompiler_object_inline_stack_2931.fallback),
|
||||
JSCompiler_object_inline_stack_2949.fallback),
|
||||
(nextFallbackChildren = workInProgress.mode),
|
||||
(JSCompiler_object_inline_stack_2931 =
|
||||
(JSCompiler_object_inline_stack_2949 =
|
||||
mountWorkInProgressOffscreenFiber(
|
||||
{
|
||||
mode: "visible",
|
||||
children: JSCompiler_object_inline_stack_2931.children
|
||||
children: JSCompiler_object_inline_stack_2949.children
|
||||
},
|
||||
nextFallbackChildren
|
||||
)),
|
||||
@@ -11348,11 +11350,11 @@ __DEV__ &&
|
||||
null
|
||||
)),
|
||||
(nextPrimaryChildren.flags |= 2),
|
||||
(JSCompiler_object_inline_stack_2931.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2949.return = workInProgress),
|
||||
(nextPrimaryChildren.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2931.sibling =
|
||||
(JSCompiler_object_inline_stack_2949.sibling =
|
||||
nextPrimaryChildren),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2931),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2949),
|
||||
(workInProgress.mode & ConcurrentMode) !== NoMode &&
|
||||
reconcileChildFibers(
|
||||
workInProgress,
|
||||
@@ -11360,19 +11362,19 @@ __DEV__ &&
|
||||
null,
|
||||
renderLanes
|
||||
),
|
||||
(JSCompiler_object_inline_stack_2931 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2931.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2949 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2949.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_stack_2931.childLanes =
|
||||
(JSCompiler_object_inline_stack_2949.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2930,
|
||||
JSCompiler_object_inline_digest_2948,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
(workInProgress = bailoutOffscreenComponent(
|
||||
null,
|
||||
JSCompiler_object_inline_stack_2931
|
||||
JSCompiler_object_inline_stack_2949
|
||||
)));
|
||||
else if (
|
||||
(pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
@@ -11380,45 +11382,45 @@ __DEV__ &&
|
||||
0 !== (renderLanes & 536870912) &&
|
||||
markRenderDerivedCause(workInProgress),
|
||||
isSuspenseInstanceFallback(
|
||||
JSCompiler_object_inline_componentStack_2932
|
||||
JSCompiler_object_inline_componentStack_2950
|
||||
))
|
||||
) {
|
||||
JSCompiler_object_inline_digest_2930 =
|
||||
JSCompiler_object_inline_componentStack_2932.nextSibling &&
|
||||
JSCompiler_object_inline_componentStack_2932.nextSibling.dataset;
|
||||
if (JSCompiler_object_inline_digest_2930) {
|
||||
nextPrimaryChildren = JSCompiler_object_inline_digest_2930.dgst;
|
||||
var message = JSCompiler_object_inline_digest_2930.msg;
|
||||
nextFallbackChildren = JSCompiler_object_inline_digest_2930.stck;
|
||||
var componentStack = JSCompiler_object_inline_digest_2930.cstck;
|
||||
JSCompiler_object_inline_digest_2948 =
|
||||
JSCompiler_object_inline_componentStack_2950.nextSibling &&
|
||||
JSCompiler_object_inline_componentStack_2950.nextSibling.dataset;
|
||||
if (JSCompiler_object_inline_digest_2948) {
|
||||
nextPrimaryChildren = JSCompiler_object_inline_digest_2948.dgst;
|
||||
var message = JSCompiler_object_inline_digest_2948.msg;
|
||||
nextFallbackChildren = JSCompiler_object_inline_digest_2948.stck;
|
||||
var componentStack = JSCompiler_object_inline_digest_2948.cstck;
|
||||
}
|
||||
JSCompiler_object_inline_message_2929 = message;
|
||||
JSCompiler_object_inline_digest_2930 = nextPrimaryChildren;
|
||||
JSCompiler_object_inline_stack_2931 = nextFallbackChildren;
|
||||
JSCompiler_object_inline_componentStack_2932 = componentStack;
|
||||
nextPrimaryChildren = JSCompiler_object_inline_message_2929;
|
||||
nextFallbackChildren = JSCompiler_object_inline_componentStack_2932;
|
||||
JSCompiler_object_inline_message_2947 = message;
|
||||
JSCompiler_object_inline_digest_2948 = nextPrimaryChildren;
|
||||
JSCompiler_object_inline_stack_2949 = nextFallbackChildren;
|
||||
JSCompiler_object_inline_componentStack_2950 = componentStack;
|
||||
nextPrimaryChildren = JSCompiler_object_inline_message_2947;
|
||||
nextFallbackChildren = JSCompiler_object_inline_componentStack_2950;
|
||||
nextPrimaryChildren = nextPrimaryChildren
|
||||
? Error(nextPrimaryChildren)
|
||||
: Error(
|
||||
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
|
||||
);
|
||||
nextPrimaryChildren.stack =
|
||||
JSCompiler_object_inline_stack_2931 || "";
|
||||
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2930;
|
||||
JSCompiler_object_inline_digest_2930 =
|
||||
JSCompiler_object_inline_stack_2949 || "";
|
||||
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2948;
|
||||
JSCompiler_object_inline_digest_2948 =
|
||||
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
|
||||
JSCompiler_object_inline_stack_2931 = {
|
||||
JSCompiler_object_inline_stack_2949 = {
|
||||
value: nextPrimaryChildren,
|
||||
source: null,
|
||||
stack: JSCompiler_object_inline_digest_2930
|
||||
stack: JSCompiler_object_inline_digest_2948
|
||||
};
|
||||
"string" === typeof JSCompiler_object_inline_digest_2930 &&
|
||||
"string" === typeof JSCompiler_object_inline_digest_2948 &&
|
||||
CapturedStacks.set(
|
||||
nextPrimaryChildren,
|
||||
JSCompiler_object_inline_stack_2931
|
||||
JSCompiler_object_inline_stack_2949
|
||||
);
|
||||
queueHydrationError(JSCompiler_object_inline_stack_2931);
|
||||
queueHydrationError(JSCompiler_object_inline_stack_2949);
|
||||
workInProgress = retrySuspenseComponentWithoutHydrating(
|
||||
current,
|
||||
workInProgress,
|
||||
@@ -11432,35 +11434,35 @@ __DEV__ &&
|
||||
renderLanes,
|
||||
!1
|
||||
),
|
||||
(JSCompiler_object_inline_digest_2930 =
|
||||
(JSCompiler_object_inline_digest_2948 =
|
||||
0 !== (renderLanes & current.childLanes)),
|
||||
didReceiveUpdate || JSCompiler_object_inline_digest_2930)
|
||||
didReceiveUpdate || JSCompiler_object_inline_digest_2948)
|
||||
) {
|
||||
JSCompiler_object_inline_digest_2930 = workInProgressRoot;
|
||||
JSCompiler_object_inline_digest_2948 = workInProgressRoot;
|
||||
if (
|
||||
null !== JSCompiler_object_inline_digest_2930 &&
|
||||
((JSCompiler_object_inline_stack_2931 = getBumpedLaneForHydration(
|
||||
JSCompiler_object_inline_digest_2930,
|
||||
null !== JSCompiler_object_inline_digest_2948 &&
|
||||
((JSCompiler_object_inline_stack_2949 = getBumpedLaneForHydration(
|
||||
JSCompiler_object_inline_digest_2948,
|
||||
renderLanes
|
||||
)),
|
||||
0 !== JSCompiler_object_inline_stack_2931 &&
|
||||
JSCompiler_object_inline_stack_2931 !== prevState.retryLane)
|
||||
0 !== JSCompiler_object_inline_stack_2949 &&
|
||||
JSCompiler_object_inline_stack_2949 !== prevState.retryLane)
|
||||
)
|
||||
throw (
|
||||
((prevState.retryLane = JSCompiler_object_inline_stack_2931),
|
||||
((prevState.retryLane = JSCompiler_object_inline_stack_2949),
|
||||
enqueueConcurrentRenderForLane(
|
||||
current,
|
||||
JSCompiler_object_inline_stack_2931
|
||||
JSCompiler_object_inline_stack_2949
|
||||
),
|
||||
scheduleUpdateOnFiber(
|
||||
JSCompiler_object_inline_digest_2930,
|
||||
JSCompiler_object_inline_digest_2948,
|
||||
current,
|
||||
JSCompiler_object_inline_stack_2931
|
||||
JSCompiler_object_inline_stack_2949
|
||||
),
|
||||
SelectiveHydrationException)
|
||||
);
|
||||
isSuspenseInstancePending(
|
||||
JSCompiler_object_inline_componentStack_2932
|
||||
JSCompiler_object_inline_componentStack_2950
|
||||
) || renderDidSuspendDelayIfPossible();
|
||||
workInProgress = retrySuspenseComponentWithoutHydrating(
|
||||
current,
|
||||
@@ -11469,14 +11471,14 @@ __DEV__ &&
|
||||
);
|
||||
} else
|
||||
isSuspenseInstancePending(
|
||||
JSCompiler_object_inline_componentStack_2932
|
||||
JSCompiler_object_inline_componentStack_2950
|
||||
)
|
||||
? ((workInProgress.flags |= 192),
|
||||
(workInProgress.child = current.child),
|
||||
(workInProgress = null))
|
||||
: ((renderLanes = prevState.treeContext),
|
||||
(nextHydratableInstance = getNextHydratable(
|
||||
JSCompiler_object_inline_componentStack_2932.nextSibling
|
||||
JSCompiler_object_inline_componentStack_2950.nextSibling
|
||||
)),
|
||||
(hydrationParentFiber = workInProgress),
|
||||
(isHydrating = !0),
|
||||
@@ -11488,47 +11490,47 @@ __DEV__ &&
|
||||
restoreSuspendedTreeContext(workInProgress, renderLanes),
|
||||
(workInProgress = mountSuspensePrimaryChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_stack_2931.children
|
||||
JSCompiler_object_inline_stack_2949.children
|
||||
)),
|
||||
(workInProgress.flags |= 4096));
|
||||
return workInProgress;
|
||||
}
|
||||
}
|
||||
if (JSCompiler_object_inline_message_2929)
|
||||
if (JSCompiler_object_inline_message_2947)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(nextPrimaryChildren = JSCompiler_object_inline_stack_2931.fallback),
|
||||
(nextPrimaryChildren = JSCompiler_object_inline_stack_2949.fallback),
|
||||
(nextFallbackChildren = workInProgress.mode),
|
||||
(componentStack = current.child),
|
||||
(JSCompiler_object_inline_componentStack_2932 =
|
||||
(JSCompiler_object_inline_componentStack_2950 =
|
||||
componentStack.sibling),
|
||||
(JSCompiler_object_inline_message_2929 = {
|
||||
(JSCompiler_object_inline_message_2947 = {
|
||||
mode: "hidden",
|
||||
children: JSCompiler_object_inline_stack_2931.children
|
||||
children: JSCompiler_object_inline_stack_2949.children
|
||||
}),
|
||||
(nextFallbackChildren & ConcurrentMode) === NoMode &&
|
||||
workInProgress.child !== componentStack
|
||||
? ((JSCompiler_object_inline_stack_2931 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2931.childLanes = 0),
|
||||
(JSCompiler_object_inline_stack_2931.pendingProps =
|
||||
JSCompiler_object_inline_message_2929),
|
||||
? ((JSCompiler_object_inline_stack_2949 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2949.childLanes = 0),
|
||||
(JSCompiler_object_inline_stack_2949.pendingProps =
|
||||
JSCompiler_object_inline_message_2947),
|
||||
workInProgress.mode & ProfileMode &&
|
||||
((JSCompiler_object_inline_stack_2931.actualDuration = -0),
|
||||
(JSCompiler_object_inline_stack_2931.actualStartTime = -1.1),
|
||||
(JSCompiler_object_inline_stack_2931.selfBaseDuration =
|
||||
((JSCompiler_object_inline_stack_2949.actualDuration = -0),
|
||||
(JSCompiler_object_inline_stack_2949.actualStartTime = -1.1),
|
||||
(JSCompiler_object_inline_stack_2949.selfBaseDuration =
|
||||
componentStack.selfBaseDuration),
|
||||
(JSCompiler_object_inline_stack_2931.treeBaseDuration =
|
||||
(JSCompiler_object_inline_stack_2949.treeBaseDuration =
|
||||
componentStack.treeBaseDuration)),
|
||||
(workInProgress.deletions = null))
|
||||
: ((JSCompiler_object_inline_stack_2931 = createWorkInProgress(
|
||||
: ((JSCompiler_object_inline_stack_2949 = createWorkInProgress(
|
||||
componentStack,
|
||||
JSCompiler_object_inline_message_2929
|
||||
JSCompiler_object_inline_message_2947
|
||||
)),
|
||||
(JSCompiler_object_inline_stack_2931.subtreeFlags =
|
||||
(JSCompiler_object_inline_stack_2949.subtreeFlags =
|
||||
componentStack.subtreeFlags & 65011712)),
|
||||
null !== JSCompiler_object_inline_componentStack_2932
|
||||
null !== JSCompiler_object_inline_componentStack_2950
|
||||
? (nextPrimaryChildren = createWorkInProgress(
|
||||
JSCompiler_object_inline_componentStack_2932,
|
||||
JSCompiler_object_inline_componentStack_2950,
|
||||
nextPrimaryChildren
|
||||
))
|
||||
: ((nextPrimaryChildren = createFiberFromFragment(
|
||||
@@ -11539,11 +11541,11 @@ __DEV__ &&
|
||||
)),
|
||||
(nextPrimaryChildren.flags |= 2)),
|
||||
(nextPrimaryChildren.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2931.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2931.sibling = nextPrimaryChildren),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2931),
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2931),
|
||||
(JSCompiler_object_inline_stack_2931 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2949.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2949.sibling = nextPrimaryChildren),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2949),
|
||||
bailoutOffscreenComponent(null, JSCompiler_object_inline_stack_2949),
|
||||
(JSCompiler_object_inline_stack_2949 = workInProgress.child),
|
||||
(nextPrimaryChildren = current.child.memoizedState),
|
||||
null === nextPrimaryChildren
|
||||
? (nextPrimaryChildren = mountSuspenseOffscreenState(renderLanes))
|
||||
@@ -11559,18 +11561,18 @@ __DEV__ &&
|
||||
baseLanes: nextPrimaryChildren.baseLanes | renderLanes,
|
||||
cachePool: nextFallbackChildren
|
||||
})),
|
||||
(JSCompiler_object_inline_stack_2931.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2949.memoizedState =
|
||||
nextPrimaryChildren),
|
||||
(JSCompiler_object_inline_stack_2931.childLanes =
|
||||
(JSCompiler_object_inline_stack_2949.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2930,
|
||||
JSCompiler_object_inline_digest_2948,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
bailoutOffscreenComponent(
|
||||
current.child,
|
||||
JSCompiler_object_inline_stack_2931
|
||||
JSCompiler_object_inline_stack_2949
|
||||
)
|
||||
);
|
||||
null !== prevState &&
|
||||
@@ -11578,28 +11580,28 @@ __DEV__ &&
|
||||
0 !== (renderLanes & current.lanes) &&
|
||||
markRenderDerivedCause(workInProgress);
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress);
|
||||
JSCompiler_object_inline_digest_2930 = current.child;
|
||||
current = JSCompiler_object_inline_digest_2930.sibling;
|
||||
JSCompiler_object_inline_digest_2930 = createWorkInProgress(
|
||||
JSCompiler_object_inline_digest_2930,
|
||||
JSCompiler_object_inline_digest_2948 = current.child;
|
||||
current = JSCompiler_object_inline_digest_2948.sibling;
|
||||
JSCompiler_object_inline_digest_2948 = createWorkInProgress(
|
||||
JSCompiler_object_inline_digest_2948,
|
||||
{
|
||||
mode: "visible",
|
||||
children: JSCompiler_object_inline_stack_2931.children
|
||||
children: JSCompiler_object_inline_stack_2949.children
|
||||
}
|
||||
);
|
||||
(workInProgress.mode & ConcurrentMode) === NoMode &&
|
||||
(JSCompiler_object_inline_digest_2930.lanes = renderLanes);
|
||||
JSCompiler_object_inline_digest_2930.return = workInProgress;
|
||||
JSCompiler_object_inline_digest_2930.sibling = null;
|
||||
(JSCompiler_object_inline_digest_2948.lanes = renderLanes);
|
||||
JSCompiler_object_inline_digest_2948.return = workInProgress;
|
||||
JSCompiler_object_inline_digest_2948.sibling = null;
|
||||
null !== current &&
|
||||
((renderLanes = workInProgress.deletions),
|
||||
null === renderLanes
|
||||
? ((workInProgress.deletions = [current]),
|
||||
(workInProgress.flags |= 16))
|
||||
: renderLanes.push(current));
|
||||
workInProgress.child = JSCompiler_object_inline_digest_2930;
|
||||
workInProgress.child = JSCompiler_object_inline_digest_2948;
|
||||
workInProgress.memoizedState = null;
|
||||
return JSCompiler_object_inline_digest_2930;
|
||||
return JSCompiler_object_inline_digest_2948;
|
||||
}
|
||||
function mountSuspensePrimaryChildren(workInProgress, primaryChildren) {
|
||||
primaryChildren = mountWorkInProgressOffscreenFiber(
|
||||
@@ -29974,11 +29976,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-e0c421ab-20250924" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-05b61f81-20250924" !== 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-e0c421ab-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-native-fb-05b61f81-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -30015,10 +30017,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -30483,7 +30485,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a1833e04ef4187f2aea30260b7e51cc7>>
|
||||
* @generated SignedSource<<3943a7423750590cd4f0d591611c27a0>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -17540,14 +17540,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2053 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-e0c421ab-20250924" !==
|
||||
"19.2.0-native-fb-05b61f81-20250924" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2053
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2053,
|
||||
"19.2.0-native-fb-e0c421ab-20250924"
|
||||
"19.2.0-native-fb-05b61f81-20250924"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17569,10 +17569,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2628 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2629 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17832,4 +17832,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
|
||||
+257
-250
File diff suppressed because it is too large
Load Diff
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<5299e78a73170e4e8dc3cad66d299402>>
|
||||
* @generated SignedSource<<128e66d982372c38203ed4ef973291a0>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -15920,10 +15920,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -16068,5 +16068,5 @@ __DEV__ &&
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
})();
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<54006c4c6791344d15c38ceeff7628ed>>
|
||||
* @generated SignedSource<<61d11b3f76c99e305dfb6254f721612b>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -10054,10 +10054,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1482 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1483 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -10193,4 +10193,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<b2ac548fbae9991c243dcaf0b2a73c23>>
|
||||
* @generated SignedSource<<3ab1bfba8283b50ae2a50ba0062e7002>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -10675,10 +10675,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1267 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$145 = 0;
|
||||
@@ -10829,4 +10829,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<ff5d48c72a382768abbef49c5f37017c>>
|
||||
* @generated SignedSource<<85ccfba7fb5b6e89a7bec5e87d0e4ee5>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1398,7 +1398,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0a750c7ffabacb9faba621c791ef8adc>>
|
||||
* @generated SignedSource<<16569fb1939ee358d8b109a95ed58fd4>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -581,4 +581,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a106d0765526d946c7a1d8703f31a14b>>
|
||||
* @generated SignedSource<<66fcf732af4bed3b1714beb3aa3741ad>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -585,7 +585,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-e0c421ab-20250924";
|
||||
exports.version = "19.2.0-native-fb-05b61f81-20250924";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
e0c421ab71e26c05afe506662a4574070c13d131
|
||||
05b61f812a2070276c5db0d2107808a6161632fc
|
||||
|
||||
+13
-11
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<238e70cc7a0969eaf5e5dff3d1b01f74>>
|
||||
* @generated SignedSource<<b98040bf98ba35eb231ea2765f99a891>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -2298,15 +2298,17 @@ __DEV__ &&
|
||||
}
|
||||
function setCurrentTrackFromLanes(lanes) {
|
||||
currentTrack =
|
||||
lanes & 127
|
||||
lanes & 63
|
||||
? "Blocking"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
: lanes & 64
|
||||
? "Gesture"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
}
|
||||
function logComponentTrigger(fiber, startTime, endTime, trigger) {
|
||||
supportsUserTiming &&
|
||||
@@ -19866,10 +19868,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+3
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<e00d71e35b37e7c71894ffa9095a467e>>
|
||||
* @generated SignedSource<<0732da8e0ad5c25295dff91352c056e5>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -11215,10 +11215,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1308 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1308.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+118
-114
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0c32632fb3e3b21ebd57163ab03321e0>>
|
||||
* @generated SignedSource<<dd96b37595041b86ae201b92bcd6d659>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1249,7 +1249,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_321 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_327 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -1295,32 +1295,32 @@ var injectedNamesToPlugins$jscomp$inline_321 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_322 = !1,
|
||||
pluginName$jscomp$inline_323;
|
||||
for (pluginName$jscomp$inline_323 in injectedNamesToPlugins$jscomp$inline_321)
|
||||
isOrderingDirty$jscomp$inline_328 = !1,
|
||||
pluginName$jscomp$inline_329;
|
||||
for (pluginName$jscomp$inline_329 in injectedNamesToPlugins$jscomp$inline_327)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_321.hasOwnProperty(
|
||||
pluginName$jscomp$inline_323
|
||||
injectedNamesToPlugins$jscomp$inline_327.hasOwnProperty(
|
||||
pluginName$jscomp$inline_329
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_324 =
|
||||
injectedNamesToPlugins$jscomp$inline_321[pluginName$jscomp$inline_323];
|
||||
var pluginModule$jscomp$inline_330 =
|
||||
injectedNamesToPlugins$jscomp$inline_327[pluginName$jscomp$inline_329];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_323) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_323] !==
|
||||
pluginModule$jscomp$inline_324
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_329) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_329] !==
|
||||
pluginModule$jscomp$inline_330
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_323])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_329])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_323 + "`.")
|
||||
(pluginName$jscomp$inline_329 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_323] =
|
||||
pluginModule$jscomp$inline_324;
|
||||
isOrderingDirty$jscomp$inline_322 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_329] =
|
||||
pluginModule$jscomp$inline_330;
|
||||
isOrderingDirty$jscomp$inline_328 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_322 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_328 && recomputePluginOrdering();
|
||||
function batchedUpdatesImpl(fn, bookkeeping) {
|
||||
return fn(bookkeeping);
|
||||
}
|
||||
@@ -2054,15 +2054,17 @@ var objectIs = "function" === typeof Object.is ? Object.is : is,
|
||||
currentTrack = "Blocking";
|
||||
function setCurrentTrackFromLanes(lanes) {
|
||||
currentTrack =
|
||||
lanes & 127
|
||||
lanes & 63
|
||||
? "Blocking"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
: lanes & 64
|
||||
? "Gesture"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
}
|
||||
function logComponentTrigger(fiber, startTime, endTime, trigger) {
|
||||
supportsUserTiming &&
|
||||
@@ -4518,7 +4520,7 @@ function updateReducerImpl(hook, current, reducer) {
|
||||
var newBaseQueueFirst = (baseFirst = null),
|
||||
newBaseQueueLast = null,
|
||||
update = current,
|
||||
didReadFromEntangledAsyncAction$51 = !1;
|
||||
didReadFromEntangledAsyncAction$53 = !1;
|
||||
do {
|
||||
var updateLane = update.lane & -536870913;
|
||||
if (
|
||||
@@ -4540,11 +4542,11 @@ function updateReducerImpl(hook, current, reducer) {
|
||||
next: null
|
||||
}),
|
||||
updateLane === currentEntangledLane &&
|
||||
(didReadFromEntangledAsyncAction$51 = !0);
|
||||
(didReadFromEntangledAsyncAction$53 = !0);
|
||||
else if ((renderLanes & revertLane) === revertLane) {
|
||||
update = update.next;
|
||||
revertLane === currentEntangledLane &&
|
||||
(didReadFromEntangledAsyncAction$51 = !0);
|
||||
(didReadFromEntangledAsyncAction$53 = !0);
|
||||
continue;
|
||||
} else
|
||||
(updateLane = {
|
||||
@@ -4592,7 +4594,7 @@ function updateReducerImpl(hook, current, reducer) {
|
||||
if (
|
||||
!objectIs(pendingQueue, hook.memoizedState) &&
|
||||
((didReceiveUpdate = !0),
|
||||
didReadFromEntangledAsyncAction$51 &&
|
||||
didReadFromEntangledAsyncAction$53 &&
|
||||
((reducer = currentEntangledActionThenable), null !== reducer))
|
||||
)
|
||||
throw reducer;
|
||||
@@ -4794,8 +4796,8 @@ function runActionStateAction(actionQueue, node) {
|
||||
try {
|
||||
(prevTransition = action(prevState, payload)),
|
||||
handleActionReturnValue(actionQueue, node, prevTransition);
|
||||
} catch (error$55) {
|
||||
onActionError(actionQueue, node, error$55);
|
||||
} catch (error$57) {
|
||||
onActionError(actionQueue, node, error$57);
|
||||
}
|
||||
}
|
||||
function handleActionReturnValue(actionQueue, node, returnValue) {
|
||||
@@ -5719,9 +5721,9 @@ function resolveClassComponentProps(Component, baseProps) {
|
||||
}
|
||||
if ((Component = Component.defaultProps)) {
|
||||
newProps === baseProps && (newProps = assign({}, newProps));
|
||||
for (var propName$57 in Component)
|
||||
void 0 === newProps[propName$57] &&
|
||||
(newProps[propName$57] = Component[propName$57]);
|
||||
for (var propName$59 in Component)
|
||||
void 0 === newProps[propName$59] &&
|
||||
(newProps[propName$59] = Component[propName$59]);
|
||||
}
|
||||
return newProps;
|
||||
}
|
||||
@@ -7735,14 +7737,14 @@ function cutOffTailIfNeeded(renderState, hasRenderedATailFallback) {
|
||||
break;
|
||||
case "collapsed":
|
||||
lastTailNode = renderState.tail;
|
||||
for (var lastTailNode$90 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$90 = lastTailNode),
|
||||
for (var lastTailNode$92 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$92 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$90
|
||||
null === lastTailNode$92
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$90.sibling = null);
|
||||
: (lastTailNode$92.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -7754,53 +7756,53 @@ function bubbleProperties(completedWork) {
|
||||
if (didBailout)
|
||||
if (0 !== (completedWork.mode & 2)) {
|
||||
for (
|
||||
var treeBaseDuration$92 = completedWork.selfBaseDuration,
|
||||
child$93 = completedWork.child;
|
||||
null !== child$93;
|
||||
var treeBaseDuration$94 = completedWork.selfBaseDuration,
|
||||
child$95 = completedWork.child;
|
||||
null !== child$95;
|
||||
|
||||
)
|
||||
(newChildLanes |= child$93.lanes | child$93.childLanes),
|
||||
(subtreeFlags |= child$93.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= child$93.flags & 65011712),
|
||||
(treeBaseDuration$92 += child$93.treeBaseDuration),
|
||||
(child$93 = child$93.sibling);
|
||||
completedWork.treeBaseDuration = treeBaseDuration$92;
|
||||
(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;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$92 = completedWork.child;
|
||||
null !== treeBaseDuration$92;
|
||||
treeBaseDuration$94 = completedWork.child;
|
||||
null !== treeBaseDuration$94;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$92.lanes | treeBaseDuration$92.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$92.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$92.flags & 65011712),
|
||||
(treeBaseDuration$92.return = completedWork),
|
||||
(treeBaseDuration$92 = treeBaseDuration$92.sibling);
|
||||
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);
|
||||
else if (0 !== (completedWork.mode & 2)) {
|
||||
treeBaseDuration$92 = completedWork.actualDuration;
|
||||
child$93 = completedWork.selfBaseDuration;
|
||||
treeBaseDuration$94 = completedWork.actualDuration;
|
||||
child$95 = completedWork.selfBaseDuration;
|
||||
for (var child = completedWork.child; null !== child; )
|
||||
(newChildLanes |= child.lanes | child.childLanes),
|
||||
(subtreeFlags |= child.subtreeFlags),
|
||||
(subtreeFlags |= child.flags),
|
||||
(treeBaseDuration$92 += child.actualDuration),
|
||||
(child$93 += child.treeBaseDuration),
|
||||
(treeBaseDuration$94 += child.actualDuration),
|
||||
(child$95 += child.treeBaseDuration),
|
||||
(child = child.sibling);
|
||||
completedWork.actualDuration = treeBaseDuration$92;
|
||||
completedWork.treeBaseDuration = child$93;
|
||||
completedWork.actualDuration = treeBaseDuration$94;
|
||||
completedWork.treeBaseDuration = child$95;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$92 = completedWork.child;
|
||||
null !== treeBaseDuration$92;
|
||||
treeBaseDuration$94 = completedWork.child;
|
||||
null !== treeBaseDuration$94;
|
||||
|
||||
)
|
||||
(newChildLanes |=
|
||||
treeBaseDuration$92.lanes | treeBaseDuration$92.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$92.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$92.flags),
|
||||
(treeBaseDuration$92.return = completedWork),
|
||||
(treeBaseDuration$92 = treeBaseDuration$92.sibling);
|
||||
treeBaseDuration$94.lanes | treeBaseDuration$94.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$94.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$94.flags),
|
||||
(treeBaseDuration$94.return = completedWork),
|
||||
(treeBaseDuration$94 = treeBaseDuration$94.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -8586,8 +8588,8 @@ function safelyCallComponentWillUnmount(
|
||||
} else
|
||||
try {
|
||||
instance.componentWillUnmount();
|
||||
} catch (error$127) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$127);
|
||||
} catch (error$129) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$129);
|
||||
}
|
||||
}
|
||||
function safelyAttachRef(current, nearestMountedAncestor) {
|
||||
@@ -8656,8 +8658,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
recordEffectDuration(current);
|
||||
}
|
||||
else ref(null);
|
||||
} catch (error$128) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$128);
|
||||
} catch (error$130) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$130);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -8862,11 +8864,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
} else
|
||||
try {
|
||||
finishedRoot.componentDidMount();
|
||||
} catch (error$124) {
|
||||
} catch (error$126) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$124
|
||||
error$126
|
||||
);
|
||||
}
|
||||
else {
|
||||
@@ -8883,11 +8885,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$125) {
|
||||
} catch (error$127) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$125
|
||||
error$127
|
||||
);
|
||||
}
|
||||
recordEffectDuration();
|
||||
@@ -8898,11 +8900,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$126) {
|
||||
} catch (error$128) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$126
|
||||
error$128
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -11241,7 +11243,7 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= blockingEventTime && blockingEventTime < blockingClampTime
|
||||
? blockingClampTime
|
||||
: blockingEventTime;
|
||||
var clampedRenderStartTime =
|
||||
var clampedRenderStartTime$161 =
|
||||
0 <= endTime
|
||||
? endTime
|
||||
: 0 <= previousRenderStartTime
|
||||
@@ -11251,10 +11253,10 @@ function prepareFreshStack(root, lanes) {
|
||||
(setCurrentTrackFromLanes(2),
|
||||
logSuspendedWithDelayPhase(
|
||||
blockingSuspendedTime,
|
||||
clampedRenderStartTime,
|
||||
clampedRenderStartTime$161,
|
||||
lanes
|
||||
));
|
||||
clampedRenderStartTime = blockingEventType;
|
||||
clampedRenderStartTime$161 = blockingEventType;
|
||||
var eventIsRepeat = blockingEventIsRepeat,
|
||||
isSpawnedUpdate = 1 === blockingUpdateType,
|
||||
isPingedUpdate = 2 === blockingUpdateType,
|
||||
@@ -11269,10 +11271,12 @@ function prepareFreshStack(root, lanes) {
|
||||
? endTime > previousRenderStartTime &&
|
||||
(endTime = previousRenderStartTime)
|
||||
: (endTime = previousRenderStartTime),
|
||||
null !== clampedRenderStartTime &&
|
||||
null !== clampedRenderStartTime$161 &&
|
||||
previousRenderStartTime > endTime &&
|
||||
console.timeStamp(
|
||||
eventIsRepeat ? "Consecutive" : "Event: " + clampedRenderStartTime,
|
||||
eventIsRepeat
|
||||
? "Consecutive"
|
||||
: "Event: " + clampedRenderStartTime$161,
|
||||
endTime,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
@@ -11313,13 +11317,13 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= transitionUpdateTime && transitionUpdateTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionUpdateTime),
|
||||
(clampedRenderStartTime =
|
||||
(clampedRenderStartTime$161 =
|
||||
0 <= transitionEventTime && transitionEventTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionEventTime),
|
||||
(eventIsRepeat =
|
||||
0 <= clampedRenderStartTime
|
||||
? clampedRenderStartTime
|
||||
0 <= clampedRenderStartTime$161
|
||||
? clampedRenderStartTime$161
|
||||
: 0 <= endTime
|
||||
? endTime
|
||||
: renderStartTime),
|
||||
@@ -11344,15 +11348,15 @@ function prepareFreshStack(root, lanes) {
|
||||
? previousRenderStartTime > endTime &&
|
||||
(previousRenderStartTime = endTime)
|
||||
: (previousRenderStartTime = endTime),
|
||||
0 < clampedRenderStartTime
|
||||
? clampedRenderStartTime > previousRenderStartTime &&
|
||||
(clampedRenderStartTime = previousRenderStartTime)
|
||||
: (clampedRenderStartTime = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime &&
|
||||
0 < clampedRenderStartTime$161
|
||||
? clampedRenderStartTime$161 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$161 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$161 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$161 &&
|
||||
null !== eventIsRepeat &&
|
||||
console.timeStamp(
|
||||
isSpawnedUpdate ? "Consecutive" : "Event: " + eventIsRepeat,
|
||||
clampedRenderStartTime,
|
||||
clampedRenderStartTime$161,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
"Scheduler \u269b",
|
||||
@@ -11419,9 +11423,9 @@ function prepareFreshStack(root, lanes) {
|
||||
endTime = root.entangledLanes;
|
||||
if (0 !== endTime)
|
||||
for (root = root.entanglements, endTime &= lanes; 0 < endTime; )
|
||||
(clampedRenderStartTime = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime),
|
||||
(lanes |= root[clampedRenderStartTime]),
|
||||
(clampedRenderStartTime$161 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$161),
|
||||
(lanes |= root[clampedRenderStartTime$161]),
|
||||
(endTime &= ~eventIsRepeat);
|
||||
entangledRenderLanes = lanes;
|
||||
finishQueueingConcurrentUpdates();
|
||||
@@ -11565,8 +11569,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
memoizedUpdaters = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$161) {
|
||||
handleThrow(root, thrownValue$161);
|
||||
} catch (thrownValue$167) {
|
||||
handleThrow(root, thrownValue$167);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -11689,8 +11693,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$163) {
|
||||
handleThrow(root, thrownValue$163);
|
||||
} catch (thrownValue$169) {
|
||||
handleThrow(root, thrownValue$169);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -13230,20 +13234,20 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1572 = {
|
||||
internals$jscomp$inline_1594 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1572.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1572.getLaneLabelMap = function () {
|
||||
(internals$jscomp$inline_1594.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1594.getLaneLabelMap = function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$168 = 0;
|
||||
31 > index$168;
|
||||
index$168++
|
||||
var map = new Map(), lane = 1, index$174 = 0;
|
||||
31 > index$174;
|
||||
index$174++
|
||||
) {
|
||||
var label = getLabelForLane(lane);
|
||||
map.set(lane, label);
|
||||
@@ -13251,20 +13255,20 @@ internals$jscomp$inline_1572.getLaneLabelMap = function () {
|
||||
}
|
||||
return map;
|
||||
};
|
||||
internals$jscomp$inline_1572.injectProfilingHooks = function (profilingHooks) {
|
||||
internals$jscomp$inline_1594.injectProfilingHooks = function (profilingHooks) {
|
||||
injectedProfilingHooks = profilingHooks;
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1905 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1927 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1905.isDisabled &&
|
||||
hook$jscomp$inline_1905.supportsFiber
|
||||
!hook$jscomp$inline_1927.isDisabled &&
|
||||
hook$jscomp$inline_1927.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1905.inject(
|
||||
internals$jscomp$inline_1572
|
||||
(rendererID = hook$jscomp$inline_1927.inject(
|
||||
internals$jscomp$inline_1594
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1905);
|
||||
(injectedHook = hook$jscomp$inline_1927);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
+15
-13
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<1c7c5d36145e38ddc0449f257e785d60>>
|
||||
* @generated SignedSource<<55faa3e4adbfbbc20bb187c579000fbf>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -2683,15 +2683,17 @@ __DEV__ &&
|
||||
}
|
||||
function setCurrentTrackFromLanes(lanes) {
|
||||
currentTrack =
|
||||
lanes & 127
|
||||
lanes & 63
|
||||
? "Blocking"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
: lanes & 64
|
||||
? "Gesture"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
}
|
||||
function logComponentTrigger(fiber, startTime, endTime, trigger) {
|
||||
supportsUserTiming &&
|
||||
@@ -20151,11 +20153,11 @@ __DEV__ &&
|
||||
shouldSuspendImpl = newShouldSuspendImpl;
|
||||
};
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-e0c421ab-20250924" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-05b61f81-20250924" !== 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-e0c421ab-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-05b61f81-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -20181,10 +20183,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+5
-5
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a8f4fd14693b771ce1f68ab57d67bcba>>
|
||||
* @generated SignedSource<<15143e861053e0e44dc149805db37e3b>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -11379,11 +11379,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-e0c421ab-20250924" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-05b61f81-20250924" !== 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-e0c421ab-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-05b61f81-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11433,10 +11433,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1319 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1319.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+126
-122
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<4def06d7ead0adce343f770848b5ce0b>>
|
||||
* @generated SignedSource<<dddcaae9ffd1c4c43baf9a4adcae6636>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1245,7 +1245,7 @@ eventPluginOrder = Array.prototype.slice.call([
|
||||
"ReactNativeBridgeEventPlugin"
|
||||
]);
|
||||
recomputePluginOrdering();
|
||||
var injectedNamesToPlugins$jscomp$inline_329 = {
|
||||
var injectedNamesToPlugins$jscomp$inline_335 = {
|
||||
ResponderEventPlugin: ResponderEventPlugin,
|
||||
ReactNativeBridgeEventPlugin: {
|
||||
eventTypes: {},
|
||||
@@ -1291,32 +1291,32 @@ var injectedNamesToPlugins$jscomp$inline_329 = {
|
||||
}
|
||||
}
|
||||
},
|
||||
isOrderingDirty$jscomp$inline_330 = !1,
|
||||
pluginName$jscomp$inline_331;
|
||||
for (pluginName$jscomp$inline_331 in injectedNamesToPlugins$jscomp$inline_329)
|
||||
isOrderingDirty$jscomp$inline_336 = !1,
|
||||
pluginName$jscomp$inline_337;
|
||||
for (pluginName$jscomp$inline_337 in injectedNamesToPlugins$jscomp$inline_335)
|
||||
if (
|
||||
injectedNamesToPlugins$jscomp$inline_329.hasOwnProperty(
|
||||
pluginName$jscomp$inline_331
|
||||
injectedNamesToPlugins$jscomp$inline_335.hasOwnProperty(
|
||||
pluginName$jscomp$inline_337
|
||||
)
|
||||
) {
|
||||
var pluginModule$jscomp$inline_332 =
|
||||
injectedNamesToPlugins$jscomp$inline_329[pluginName$jscomp$inline_331];
|
||||
var pluginModule$jscomp$inline_338 =
|
||||
injectedNamesToPlugins$jscomp$inline_335[pluginName$jscomp$inline_337];
|
||||
if (
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_331) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_331] !==
|
||||
pluginModule$jscomp$inline_332
|
||||
!namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_337) ||
|
||||
namesToPlugins[pluginName$jscomp$inline_337] !==
|
||||
pluginModule$jscomp$inline_338
|
||||
) {
|
||||
if (namesToPlugins[pluginName$jscomp$inline_331])
|
||||
if (namesToPlugins[pluginName$jscomp$inline_337])
|
||||
throw Error(
|
||||
"EventPluginRegistry: Cannot inject two different event plugins using the same name, `" +
|
||||
(pluginName$jscomp$inline_331 + "`.")
|
||||
(pluginName$jscomp$inline_337 + "`.")
|
||||
);
|
||||
namesToPlugins[pluginName$jscomp$inline_331] =
|
||||
pluginModule$jscomp$inline_332;
|
||||
isOrderingDirty$jscomp$inline_330 = !0;
|
||||
namesToPlugins[pluginName$jscomp$inline_337] =
|
||||
pluginModule$jscomp$inline_338;
|
||||
isOrderingDirty$jscomp$inline_336 = !0;
|
||||
}
|
||||
}
|
||||
isOrderingDirty$jscomp$inline_330 && recomputePluginOrdering();
|
||||
isOrderingDirty$jscomp$inline_336 && recomputePluginOrdering();
|
||||
var instanceCache = new Map(),
|
||||
instanceProps = new Map();
|
||||
function getInstanceFromTag(tag) {
|
||||
@@ -2465,15 +2465,17 @@ var objectIs = "function" === typeof Object.is ? Object.is : is,
|
||||
currentTrack = "Blocking";
|
||||
function setCurrentTrackFromLanes(lanes) {
|
||||
currentTrack =
|
||||
lanes & 127
|
||||
lanes & 63
|
||||
? "Blocking"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
: lanes & 64
|
||||
? "Gesture"
|
||||
: lanes & 4194176
|
||||
? "Transition"
|
||||
: lanes & 62914560
|
||||
? "Suspense"
|
||||
: lanes & 2080374784
|
||||
? "Idle"
|
||||
: "Other";
|
||||
}
|
||||
function logComponentTrigger(fiber, startTime, endTime, trigger) {
|
||||
supportsUserTiming &&
|
||||
@@ -4933,7 +4935,7 @@ function updateReducerImpl(hook, current, reducer) {
|
||||
var newBaseQueueFirst = (baseFirst = null),
|
||||
newBaseQueueLast = null,
|
||||
update = current,
|
||||
didReadFromEntangledAsyncAction$55 = !1;
|
||||
didReadFromEntangledAsyncAction$57 = !1;
|
||||
do {
|
||||
var updateLane = update.lane & -536870913;
|
||||
if (
|
||||
@@ -4955,11 +4957,11 @@ function updateReducerImpl(hook, current, reducer) {
|
||||
next: null
|
||||
}),
|
||||
updateLane === currentEntangledLane &&
|
||||
(didReadFromEntangledAsyncAction$55 = !0);
|
||||
(didReadFromEntangledAsyncAction$57 = !0);
|
||||
else if ((renderLanes & revertLane) === revertLane) {
|
||||
update = update.next;
|
||||
revertLane === currentEntangledLane &&
|
||||
(didReadFromEntangledAsyncAction$55 = !0);
|
||||
(didReadFromEntangledAsyncAction$57 = !0);
|
||||
continue;
|
||||
} else
|
||||
(updateLane = {
|
||||
@@ -5007,7 +5009,7 @@ function updateReducerImpl(hook, current, reducer) {
|
||||
if (
|
||||
!objectIs(pendingQueue, hook.memoizedState) &&
|
||||
((didReceiveUpdate = !0),
|
||||
didReadFromEntangledAsyncAction$55 &&
|
||||
didReadFromEntangledAsyncAction$57 &&
|
||||
((reducer = currentEntangledActionThenable), null !== reducer))
|
||||
)
|
||||
throw reducer;
|
||||
@@ -5209,8 +5211,8 @@ function runActionStateAction(actionQueue, node) {
|
||||
try {
|
||||
(prevTransition = action(prevState, payload)),
|
||||
handleActionReturnValue(actionQueue, node, prevTransition);
|
||||
} catch (error$59) {
|
||||
onActionError(actionQueue, node, error$59);
|
||||
} catch (error$61) {
|
||||
onActionError(actionQueue, node, error$61);
|
||||
}
|
||||
}
|
||||
function handleActionReturnValue(actionQueue, node, returnValue) {
|
||||
@@ -6134,9 +6136,9 @@ function resolveClassComponentProps(Component, baseProps) {
|
||||
}
|
||||
if ((Component = Component.defaultProps)) {
|
||||
newProps === baseProps && (newProps = assign({}, newProps));
|
||||
for (var propName$61 in Component)
|
||||
void 0 === newProps[propName$61] &&
|
||||
(newProps[propName$61] = Component[propName$61]);
|
||||
for (var propName$63 in Component)
|
||||
void 0 === newProps[propName$63] &&
|
||||
(newProps[propName$63] = Component[propName$63]);
|
||||
}
|
||||
return newProps;
|
||||
}
|
||||
@@ -8034,14 +8036,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$94 = null; null !== lastTailNode; )
|
||||
null !== lastTailNode.alternate && (lastTailNode$94 = lastTailNode),
|
||||
(lastTailNode = lastTailNode.sibling);
|
||||
null === lastTailNode$92
|
||||
null === lastTailNode$94
|
||||
? hasRenderedATailFallback || null === renderState.tail
|
||||
? (renderState.tail = null)
|
||||
: (renderState.tail.sibling = null)
|
||||
: (lastTailNode$92.sibling = null);
|
||||
: (lastTailNode$94.sibling = null);
|
||||
}
|
||||
}
|
||||
function bubbleProperties(completedWork) {
|
||||
@@ -8053,53 +8055,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$96 = completedWork.selfBaseDuration,
|
||||
child$97 = completedWork.child;
|
||||
null !== child$97;
|
||||
|
||||
)
|
||||
(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$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;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$94 = completedWork.child;
|
||||
null !== treeBaseDuration$94;
|
||||
treeBaseDuration$96 = completedWork.child;
|
||||
null !== treeBaseDuration$96;
|
||||
|
||||
)
|
||||
(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$96.lanes | treeBaseDuration$96.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$96.subtreeFlags & 65011712),
|
||||
(subtreeFlags |= treeBaseDuration$96.flags & 65011712),
|
||||
(treeBaseDuration$96.return = completedWork),
|
||||
(treeBaseDuration$96 = treeBaseDuration$96.sibling);
|
||||
else if (0 !== (completedWork.mode & 2)) {
|
||||
treeBaseDuration$94 = completedWork.actualDuration;
|
||||
child$95 = completedWork.selfBaseDuration;
|
||||
treeBaseDuration$96 = completedWork.actualDuration;
|
||||
child$97 = 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$96 += child.actualDuration),
|
||||
(child$97 += child.treeBaseDuration),
|
||||
(child = child.sibling);
|
||||
completedWork.actualDuration = treeBaseDuration$94;
|
||||
completedWork.treeBaseDuration = child$95;
|
||||
completedWork.actualDuration = treeBaseDuration$96;
|
||||
completedWork.treeBaseDuration = child$97;
|
||||
} else
|
||||
for (
|
||||
treeBaseDuration$94 = completedWork.child;
|
||||
null !== treeBaseDuration$94;
|
||||
treeBaseDuration$96 = completedWork.child;
|
||||
null !== treeBaseDuration$96;
|
||||
|
||||
)
|
||||
(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$96.lanes | treeBaseDuration$96.childLanes),
|
||||
(subtreeFlags |= treeBaseDuration$96.subtreeFlags),
|
||||
(subtreeFlags |= treeBaseDuration$96.flags),
|
||||
(treeBaseDuration$96.return = completedWork),
|
||||
(treeBaseDuration$96 = treeBaseDuration$96.sibling);
|
||||
completedWork.subtreeFlags |= subtreeFlags;
|
||||
completedWork.childLanes = newChildLanes;
|
||||
return didBailout;
|
||||
@@ -8690,9 +8692,9 @@ function commitHookEffectListMount(flags, finishedWork) {
|
||||
finishedWork
|
||||
);
|
||||
lastEffect = void 0;
|
||||
var create$126 = updateQueue.create,
|
||||
var create$128 = updateQueue.create,
|
||||
inst = updateQueue.inst;
|
||||
lastEffect = create$126();
|
||||
lastEffect = create$128();
|
||||
inst.destroy = lastEffect;
|
||||
0 !== (flags & 8)
|
||||
? null !== injectedProfilingHooks &&
|
||||
@@ -8832,8 +8834,8 @@ function safelyCallComponentWillUnmount(
|
||||
} else
|
||||
try {
|
||||
instance.componentWillUnmount();
|
||||
} catch (error$130) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$130);
|
||||
} catch (error$132) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$132);
|
||||
}
|
||||
}
|
||||
function safelyAttachRef(current, nearestMountedAncestor) {
|
||||
@@ -8901,8 +8903,8 @@ function safelyDetachRef(current, nearestMountedAncestor) {
|
||||
recordEffectDuration(current);
|
||||
}
|
||||
else ref(null);
|
||||
} catch (error$131) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$131);
|
||||
} catch (error$133) {
|
||||
captureCommitPhaseError(current, nearestMountedAncestor, error$133);
|
||||
}
|
||||
else ref.current = null;
|
||||
}
|
||||
@@ -9157,11 +9159,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
} else
|
||||
try {
|
||||
finishedRoot.componentDidMount();
|
||||
} catch (error$127) {
|
||||
} catch (error$129) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$127
|
||||
error$129
|
||||
);
|
||||
}
|
||||
else {
|
||||
@@ -9178,11 +9180,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$128) {
|
||||
} catch (error$130) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$128
|
||||
error$130
|
||||
);
|
||||
}
|
||||
recordEffectDuration();
|
||||
@@ -9193,11 +9195,11 @@ function commitLayoutEffectOnFiber(finishedRoot, current, finishedWork) {
|
||||
current,
|
||||
finishedRoot.__reactInternalSnapshotBeforeUpdate
|
||||
);
|
||||
} catch (error$129) {
|
||||
} catch (error$131) {
|
||||
captureCommitPhaseError(
|
||||
finishedWork,
|
||||
finishedWork.return,
|
||||
error$129
|
||||
error$131
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10044,12 +10046,12 @@ function commitReconciliationEffects(finishedWork) {
|
||||
break;
|
||||
case 3:
|
||||
case 4:
|
||||
var parent$132 = hostParentFiber.stateNode.containerInfo,
|
||||
before$133 = getHostSibling(finishedWork);
|
||||
var parent$134 = hostParentFiber.stateNode.containerInfo,
|
||||
before$135 = getHostSibling(finishedWork);
|
||||
insertOrAppendPlacementNodeIntoContainer(
|
||||
finishedWork,
|
||||
before$133,
|
||||
parent$132
|
||||
before$135,
|
||||
parent$134
|
||||
);
|
||||
break;
|
||||
default:
|
||||
@@ -11729,7 +11731,7 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= blockingEventTime && blockingEventTime < blockingClampTime
|
||||
? blockingClampTime
|
||||
: blockingEventTime;
|
||||
var clampedRenderStartTime =
|
||||
var clampedRenderStartTime$168 =
|
||||
0 <= endTime
|
||||
? endTime
|
||||
: 0 <= previousRenderStartTime
|
||||
@@ -11739,10 +11741,10 @@ function prepareFreshStack(root, lanes) {
|
||||
(setCurrentTrackFromLanes(2),
|
||||
logSuspendedWithDelayPhase(
|
||||
blockingSuspendedTime,
|
||||
clampedRenderStartTime,
|
||||
clampedRenderStartTime$168,
|
||||
lanes
|
||||
));
|
||||
clampedRenderStartTime = blockingEventType;
|
||||
clampedRenderStartTime$168 = blockingEventType;
|
||||
var eventIsRepeat = blockingEventIsRepeat,
|
||||
isSpawnedUpdate = 1 === blockingUpdateType,
|
||||
isPingedUpdate = 2 === blockingUpdateType,
|
||||
@@ -11757,10 +11759,12 @@ function prepareFreshStack(root, lanes) {
|
||||
? endTime > previousRenderStartTime &&
|
||||
(endTime = previousRenderStartTime)
|
||||
: (endTime = previousRenderStartTime),
|
||||
null !== clampedRenderStartTime &&
|
||||
null !== clampedRenderStartTime$168 &&
|
||||
previousRenderStartTime > endTime &&
|
||||
console.timeStamp(
|
||||
eventIsRepeat ? "Consecutive" : "Event: " + clampedRenderStartTime,
|
||||
eventIsRepeat
|
||||
? "Consecutive"
|
||||
: "Event: " + clampedRenderStartTime$168,
|
||||
endTime,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
@@ -11801,13 +11805,13 @@ function prepareFreshStack(root, lanes) {
|
||||
0 <= transitionUpdateTime && transitionUpdateTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionUpdateTime),
|
||||
(clampedRenderStartTime =
|
||||
(clampedRenderStartTime$168 =
|
||||
0 <= transitionEventTime && transitionEventTime < transitionClampTime
|
||||
? transitionClampTime
|
||||
: transitionEventTime),
|
||||
(eventIsRepeat =
|
||||
0 <= clampedRenderStartTime
|
||||
? clampedRenderStartTime
|
||||
0 <= clampedRenderStartTime$168
|
||||
? clampedRenderStartTime$168
|
||||
: 0 <= endTime
|
||||
? endTime
|
||||
: renderStartTime),
|
||||
@@ -11832,15 +11836,15 @@ function prepareFreshStack(root, lanes) {
|
||||
? previousRenderStartTime > endTime &&
|
||||
(previousRenderStartTime = endTime)
|
||||
: (previousRenderStartTime = endTime),
|
||||
0 < clampedRenderStartTime
|
||||
? clampedRenderStartTime > previousRenderStartTime &&
|
||||
(clampedRenderStartTime = previousRenderStartTime)
|
||||
: (clampedRenderStartTime = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime &&
|
||||
0 < clampedRenderStartTime$168
|
||||
? clampedRenderStartTime$168 > previousRenderStartTime &&
|
||||
(clampedRenderStartTime$168 = previousRenderStartTime)
|
||||
: (clampedRenderStartTime$168 = previousRenderStartTime),
|
||||
previousRenderStartTime > clampedRenderStartTime$168 &&
|
||||
null !== eventIsRepeat &&
|
||||
console.timeStamp(
|
||||
isSpawnedUpdate ? "Consecutive" : "Event: " + eventIsRepeat,
|
||||
clampedRenderStartTime,
|
||||
clampedRenderStartTime$168,
|
||||
previousRenderStartTime,
|
||||
currentTrack,
|
||||
"Scheduler \u269b",
|
||||
@@ -11907,9 +11911,9 @@ function prepareFreshStack(root, lanes) {
|
||||
endTime = root.entangledLanes;
|
||||
if (0 !== endTime)
|
||||
for (root = root.entanglements, endTime &= lanes; 0 < endTime; )
|
||||
(clampedRenderStartTime = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime),
|
||||
(lanes |= root[clampedRenderStartTime]),
|
||||
(clampedRenderStartTime$168 = 31 - clz32(endTime)),
|
||||
(eventIsRepeat = 1 << clampedRenderStartTime$168),
|
||||
(lanes |= root[clampedRenderStartTime$168]),
|
||||
(endTime &= ~eventIsRepeat);
|
||||
entangledRenderLanes = lanes;
|
||||
finishQueueingConcurrentUpdates();
|
||||
@@ -12053,8 +12057,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) {
|
||||
workLoopSync();
|
||||
memoizedUpdaters = workInProgressRootExitStatus;
|
||||
break;
|
||||
} catch (thrownValue$168) {
|
||||
handleThrow(root, thrownValue$168);
|
||||
} catch (thrownValue$174) {
|
||||
handleThrow(root, thrownValue$174);
|
||||
}
|
||||
while (1);
|
||||
lanes && root.shellSuspendCounter++;
|
||||
@@ -12177,8 +12181,8 @@ function renderRootConcurrent(root, lanes) {
|
||||
}
|
||||
workLoopConcurrentByScheduler();
|
||||
break;
|
||||
} catch (thrownValue$170) {
|
||||
handleThrow(root, thrownValue$170);
|
||||
} catch (thrownValue$176) {
|
||||
handleThrow(root, thrownValue$176);
|
||||
}
|
||||
while (1);
|
||||
lastContextDependency = currentlyRenderingFiber$1 = null;
|
||||
@@ -13389,11 +13393,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-e0c421ab-20250924" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-05b61f81-20250924" !== 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-e0c421ab-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-05b61f81-20250924\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -13441,20 +13445,20 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1583 = {
|
||||
internals$jscomp$inline_1605 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-e0c421ab-20250924",
|
||||
version: "19.2.0-native-fb-05b61f81-20250924",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-e0c421ab-20250924"
|
||||
reconcilerVersion: "19.2.0-native-fb-05b61f81-20250924"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1583.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1583.getLaneLabelMap = function () {
|
||||
(internals$jscomp$inline_1605.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1605.getLaneLabelMap = function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$175 = 0;
|
||||
31 > index$175;
|
||||
index$175++
|
||||
var map = new Map(), lane = 1, index$181 = 0;
|
||||
31 > index$181;
|
||||
index$181++
|
||||
) {
|
||||
var label = getLabelForLane(lane);
|
||||
map.set(lane, label);
|
||||
@@ -13462,20 +13466,20 @@ internals$jscomp$inline_1583.getLaneLabelMap = function () {
|
||||
}
|
||||
return map;
|
||||
};
|
||||
internals$jscomp$inline_1583.injectProfilingHooks = function (profilingHooks) {
|
||||
internals$jscomp$inline_1605.injectProfilingHooks = function (profilingHooks) {
|
||||
injectedProfilingHooks = profilingHooks;
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1955 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1977 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1955.isDisabled &&
|
||||
hook$jscomp$inline_1955.supportsFiber
|
||||
!hook$jscomp$inline_1977.isDisabled &&
|
||||
hook$jscomp$inline_1977.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1955.inject(
|
||||
internals$jscomp$inline_1583
|
||||
(rendererID = hook$jscomp$inline_1977.inject(
|
||||
internals$jscomp$inline_1605
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1955);
|
||||
(injectedHook = hook$jscomp$inline_1977);
|
||||
} 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-e0c421ab-20250924",
|
||||
"version": "0.0.0-experimental-05b61f81-20250924",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/facebook/react.git",
|
||||
|
||||
Reference in New Issue
Block a user