mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[Fiber] Track Appearing Named ViewTransition in the accumulateSuspenseyCommit Phase (#32254)
When a named ViewTransition component unmounts in one place and mounts
in a different place we need to match these up so we know a pair has
been created. Since the unmounts are tracked in the snapshot phase we
need some way to track the mounts before that.
Originally the way I did that is by reusing the render phase since there
was no other phase in the commit before that. However, that's not quite
correct. Just because something is visited in render doesn't mean it'll
commit. E.g. if that tree ends up suspending or erroring. Which would
lead to a false positive on match. The unmount shouldn't animate in that
case.
(Un)fortunately we have already added a traversal before the snapshot
phase for tracking suspensey CSS. The `accumulateSuspenseyCommit` phase.
This needs to find new mounts of Suspensey CSS or if there was a
reappearing Offscreen boundary it needs to find any Suspensey CSS
already inside that tree. This is exactly the same traversal we need to
find newly appearing View Transition components. So we can just reuse
that.
DiffTrain build for [4b3728f05e](https://github.com/facebook/react/commit/4b3728f05efbab9624e981339d8a0992a58f9a41)
This commit is contained in:
@@ -1 +1 @@
|
||||
19.1.0-native-fb-2fe5b572-20250130
|
||||
19.1.0-native-fb-4b3728f0-20250130
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<03c740ecbee7841820d9e33fc0220680>>
|
||||
* @generated SignedSource<<72ca7e17e4fb434a3af16bb4f42c2eee>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -428,5 +428,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
})();
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<90a667a52d5085bf11ffa2f70f4a860c>>
|
||||
* @generated SignedSource<<8def3f8abeae965eb21062caf3412e9b>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<90a667a52d5085bf11ffa2f70f4a860c>>
|
||||
* @generated SignedSource<<8def3f8abeae965eb21062caf3412e9b>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
|
||||
Vendored
+171
-187
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<87fcce8593d96f073a601feb76491859>>
|
||||
* @generated SignedSource<<c9fb1b80cb8851d98b5c2db2cb2a3b15>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -9418,32 +9418,32 @@ __DEV__ &&
|
||||
return current;
|
||||
}
|
||||
function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
||||
var JSCompiler_object_inline_digest_2426;
|
||||
var JSCompiler_object_inline_stack_2427 = workInProgress.pendingProps;
|
||||
var JSCompiler_object_inline_digest_2425;
|
||||
var JSCompiler_object_inline_stack_2426 = workInProgress.pendingProps;
|
||||
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
|
||||
var JSCompiler_object_inline_componentStack_2428 = !1;
|
||||
var JSCompiler_object_inline_componentStack_2427 = !1;
|
||||
var didSuspend = 0 !== (workInProgress.flags & 128);
|
||||
(JSCompiler_object_inline_digest_2426 = didSuspend) ||
|
||||
(JSCompiler_object_inline_digest_2426 =
|
||||
(JSCompiler_object_inline_digest_2425 = didSuspend) ||
|
||||
(JSCompiler_object_inline_digest_2425 =
|
||||
null !== current && null === current.memoizedState
|
||||
? !1
|
||||
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
|
||||
JSCompiler_object_inline_digest_2426 &&
|
||||
((JSCompiler_object_inline_componentStack_2428 = !0),
|
||||
JSCompiler_object_inline_digest_2425 &&
|
||||
((JSCompiler_object_inline_componentStack_2427 = !0),
|
||||
(workInProgress.flags &= -129));
|
||||
JSCompiler_object_inline_digest_2426 = 0 !== (workInProgress.flags & 32);
|
||||
JSCompiler_object_inline_digest_2425 = 0 !== (workInProgress.flags & 32);
|
||||
workInProgress.flags &= -33;
|
||||
if (null === current) {
|
||||
if (isHydrating) {
|
||||
JSCompiler_object_inline_componentStack_2428
|
||||
JSCompiler_object_inline_componentStack_2427
|
||||
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
||||
: reuseSuspenseHandlerOnStack(workInProgress);
|
||||
if (isHydrating) {
|
||||
var JSCompiler_object_inline_message_2425 = nextHydratableInstance;
|
||||
var JSCompiler_object_inline_message_2424 = nextHydratableInstance;
|
||||
var JSCompiler_temp;
|
||||
if (!(JSCompiler_temp = !JSCompiler_object_inline_message_2425)) {
|
||||
if (!(JSCompiler_temp = !JSCompiler_object_inline_message_2424)) {
|
||||
c: {
|
||||
var instance = JSCompiler_object_inline_message_2425;
|
||||
var instance = JSCompiler_object_inline_message_2424;
|
||||
for (
|
||||
JSCompiler_temp = rootOrSingletonContext;
|
||||
8 !== instance.nodeType;
|
||||
@@ -9485,89 +9485,89 @@ __DEV__ &&
|
||||
JSCompiler_temp &&
|
||||
(warnNonHydratedInstance(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_message_2425
|
||||
JSCompiler_object_inline_message_2424
|
||||
),
|
||||
throwOnHydrationMismatch(workInProgress));
|
||||
}
|
||||
JSCompiler_object_inline_message_2425 = workInProgress.memoizedState;
|
||||
JSCompiler_object_inline_message_2424 = workInProgress.memoizedState;
|
||||
if (
|
||||
null !== JSCompiler_object_inline_message_2425 &&
|
||||
((JSCompiler_object_inline_message_2425 =
|
||||
JSCompiler_object_inline_message_2425.dehydrated),
|
||||
null !== JSCompiler_object_inline_message_2425)
|
||||
null !== JSCompiler_object_inline_message_2424 &&
|
||||
((JSCompiler_object_inline_message_2424 =
|
||||
JSCompiler_object_inline_message_2424.dehydrated),
|
||||
null !== JSCompiler_object_inline_message_2424)
|
||||
)
|
||||
return (
|
||||
isSuspenseInstanceFallback(JSCompiler_object_inline_message_2425)
|
||||
isSuspenseInstanceFallback(JSCompiler_object_inline_message_2424)
|
||||
? (workInProgress.lanes = 32)
|
||||
: (workInProgress.lanes = 536870912),
|
||||
null
|
||||
);
|
||||
popSuspenseHandler(workInProgress);
|
||||
}
|
||||
JSCompiler_object_inline_message_2425 =
|
||||
JSCompiler_object_inline_stack_2427.children;
|
||||
JSCompiler_temp = JSCompiler_object_inline_stack_2427.fallback;
|
||||
if (JSCompiler_object_inline_componentStack_2428)
|
||||
JSCompiler_object_inline_message_2424 =
|
||||
JSCompiler_object_inline_stack_2426.children;
|
||||
JSCompiler_temp = JSCompiler_object_inline_stack_2426.fallback;
|
||||
if (JSCompiler_object_inline_componentStack_2427)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(JSCompiler_object_inline_stack_2427 =
|
||||
(JSCompiler_object_inline_stack_2426 =
|
||||
mountSuspenseFallbackChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_message_2425,
|
||||
JSCompiler_object_inline_message_2424,
|
||||
JSCompiler_temp,
|
||||
renderLanes
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2428 =
|
||||
(JSCompiler_object_inline_componentStack_2427 =
|
||||
workInProgress.child),
|
||||
(JSCompiler_object_inline_componentStack_2428.memoizedState =
|
||||
(JSCompiler_object_inline_componentStack_2427.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_componentStack_2428.childLanes =
|
||||
(JSCompiler_object_inline_componentStack_2427.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2426,
|
||||
JSCompiler_object_inline_digest_2425,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
JSCompiler_object_inline_stack_2427
|
||||
JSCompiler_object_inline_stack_2426
|
||||
);
|
||||
if (
|
||||
"number" ===
|
||||
typeof JSCompiler_object_inline_stack_2427.unstable_expectedLoadTime
|
||||
typeof JSCompiler_object_inline_stack_2426.unstable_expectedLoadTime
|
||||
)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(JSCompiler_object_inline_stack_2427 =
|
||||
(JSCompiler_object_inline_stack_2426 =
|
||||
mountSuspenseFallbackChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_message_2425,
|
||||
JSCompiler_object_inline_message_2424,
|
||||
JSCompiler_temp,
|
||||
renderLanes
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2428 =
|
||||
(JSCompiler_object_inline_componentStack_2427 =
|
||||
workInProgress.child),
|
||||
(JSCompiler_object_inline_componentStack_2428.memoizedState =
|
||||
(JSCompiler_object_inline_componentStack_2427.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_componentStack_2428.childLanes =
|
||||
(JSCompiler_object_inline_componentStack_2427.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2426,
|
||||
JSCompiler_object_inline_digest_2425,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
(workInProgress.lanes = 4194304),
|
||||
JSCompiler_object_inline_stack_2427
|
||||
JSCompiler_object_inline_stack_2426
|
||||
);
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress);
|
||||
return mountSuspensePrimaryChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_message_2425
|
||||
JSCompiler_object_inline_message_2424
|
||||
);
|
||||
}
|
||||
var prevState = current.memoizedState;
|
||||
if (
|
||||
null !== prevState &&
|
||||
((JSCompiler_object_inline_message_2425 = prevState.dehydrated),
|
||||
null !== JSCompiler_object_inline_message_2425)
|
||||
((JSCompiler_object_inline_message_2424 = prevState.dehydrated),
|
||||
null !== JSCompiler_object_inline_message_2424)
|
||||
) {
|
||||
if (didSuspend)
|
||||
workInProgress.flags & 256
|
||||
@@ -9584,32 +9584,32 @@ __DEV__ &&
|
||||
(workInProgress.flags |= 128),
|
||||
(workInProgress = null))
|
||||
: (reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(JSCompiler_object_inline_componentStack_2428 =
|
||||
JSCompiler_object_inline_stack_2427.fallback),
|
||||
(JSCompiler_object_inline_message_2425 = workInProgress.mode),
|
||||
(JSCompiler_object_inline_stack_2427 = createFiberFromOffscreen(
|
||||
(JSCompiler_object_inline_componentStack_2427 =
|
||||
JSCompiler_object_inline_stack_2426.fallback),
|
||||
(JSCompiler_object_inline_message_2424 = workInProgress.mode),
|
||||
(JSCompiler_object_inline_stack_2426 = createFiberFromOffscreen(
|
||||
{
|
||||
mode: "visible",
|
||||
children: JSCompiler_object_inline_stack_2427.children
|
||||
children: JSCompiler_object_inline_stack_2426.children
|
||||
},
|
||||
JSCompiler_object_inline_message_2425,
|
||||
JSCompiler_object_inline_message_2424,
|
||||
0,
|
||||
null
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2428 =
|
||||
(JSCompiler_object_inline_componentStack_2427 =
|
||||
createFiberFromFragment(
|
||||
JSCompiler_object_inline_componentStack_2428,
|
||||
JSCompiler_object_inline_message_2425,
|
||||
JSCompiler_object_inline_componentStack_2427,
|
||||
JSCompiler_object_inline_message_2424,
|
||||
renderLanes,
|
||||
null
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2428.flags |= 2),
|
||||
(JSCompiler_object_inline_stack_2427.return = workInProgress),
|
||||
(JSCompiler_object_inline_componentStack_2428.return =
|
||||
(JSCompiler_object_inline_componentStack_2427.flags |= 2),
|
||||
(JSCompiler_object_inline_stack_2426.return = workInProgress),
|
||||
(JSCompiler_object_inline_componentStack_2427.return =
|
||||
workInProgress),
|
||||
(JSCompiler_object_inline_stack_2427.sibling =
|
||||
JSCompiler_object_inline_componentStack_2428),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2427),
|
||||
(JSCompiler_object_inline_stack_2426.sibling =
|
||||
JSCompiler_object_inline_componentStack_2427),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2426),
|
||||
(workInProgress.mode & ConcurrentMode) !== NoMode &&
|
||||
reconcileChildFibers(
|
||||
workInProgress,
|
||||
@@ -9617,63 +9617,63 @@ __DEV__ &&
|
||||
null,
|
||||
renderLanes
|
||||
),
|
||||
(JSCompiler_object_inline_stack_2427 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2427.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2426 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2426.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_stack_2427.childLanes =
|
||||
(JSCompiler_object_inline_stack_2426.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2426,
|
||||
JSCompiler_object_inline_digest_2425,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
(workInProgress =
|
||||
JSCompiler_object_inline_componentStack_2428));
|
||||
JSCompiler_object_inline_componentStack_2427));
|
||||
else if (
|
||||
(pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
isHydrating &&
|
||||
error$jscomp$0(
|
||||
"We should not be hydrating here. This is a bug in React. Please file a bug."
|
||||
),
|
||||
isSuspenseInstanceFallback(JSCompiler_object_inline_message_2425))
|
||||
isSuspenseInstanceFallback(JSCompiler_object_inline_message_2424))
|
||||
) {
|
||||
JSCompiler_object_inline_digest_2426 =
|
||||
JSCompiler_object_inline_message_2425.nextSibling &&
|
||||
JSCompiler_object_inline_message_2425.nextSibling.dataset;
|
||||
if (JSCompiler_object_inline_digest_2426) {
|
||||
JSCompiler_temp = JSCompiler_object_inline_digest_2426.dgst;
|
||||
var message = JSCompiler_object_inline_digest_2426.msg;
|
||||
instance = JSCompiler_object_inline_digest_2426.stck;
|
||||
var componentStack = JSCompiler_object_inline_digest_2426.cstck;
|
||||
JSCompiler_object_inline_digest_2425 =
|
||||
JSCompiler_object_inline_message_2424.nextSibling &&
|
||||
JSCompiler_object_inline_message_2424.nextSibling.dataset;
|
||||
if (JSCompiler_object_inline_digest_2425) {
|
||||
JSCompiler_temp = JSCompiler_object_inline_digest_2425.dgst;
|
||||
var message = JSCompiler_object_inline_digest_2425.msg;
|
||||
instance = JSCompiler_object_inline_digest_2425.stck;
|
||||
var componentStack = JSCompiler_object_inline_digest_2425.cstck;
|
||||
}
|
||||
JSCompiler_object_inline_message_2425 = message;
|
||||
JSCompiler_object_inline_digest_2426 = JSCompiler_temp;
|
||||
JSCompiler_object_inline_stack_2427 = instance;
|
||||
JSCompiler_temp = JSCompiler_object_inline_componentStack_2428 =
|
||||
JSCompiler_object_inline_message_2424 = message;
|
||||
JSCompiler_object_inline_digest_2425 = JSCompiler_temp;
|
||||
JSCompiler_object_inline_stack_2426 = instance;
|
||||
JSCompiler_temp = JSCompiler_object_inline_componentStack_2427 =
|
||||
componentStack;
|
||||
JSCompiler_object_inline_componentStack_2428 =
|
||||
JSCompiler_object_inline_message_2425
|
||||
? Error(JSCompiler_object_inline_message_2425)
|
||||
JSCompiler_object_inline_componentStack_2427 =
|
||||
JSCompiler_object_inline_message_2424
|
||||
? Error(JSCompiler_object_inline_message_2424)
|
||||
: Error(
|
||||
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
|
||||
);
|
||||
JSCompiler_object_inline_componentStack_2428.stack =
|
||||
JSCompiler_object_inline_stack_2427 || "";
|
||||
JSCompiler_object_inline_componentStack_2428.digest =
|
||||
JSCompiler_object_inline_digest_2426;
|
||||
JSCompiler_object_inline_digest_2426 =
|
||||
JSCompiler_object_inline_componentStack_2427.stack =
|
||||
JSCompiler_object_inline_stack_2426 || "";
|
||||
JSCompiler_object_inline_componentStack_2427.digest =
|
||||
JSCompiler_object_inline_digest_2425;
|
||||
JSCompiler_object_inline_digest_2425 =
|
||||
void 0 === JSCompiler_temp ? null : JSCompiler_temp;
|
||||
JSCompiler_object_inline_stack_2427 = {
|
||||
value: JSCompiler_object_inline_componentStack_2428,
|
||||
JSCompiler_object_inline_stack_2426 = {
|
||||
value: JSCompiler_object_inline_componentStack_2427,
|
||||
source: null,
|
||||
stack: JSCompiler_object_inline_digest_2426
|
||||
stack: JSCompiler_object_inline_digest_2425
|
||||
};
|
||||
"string" === typeof JSCompiler_object_inline_digest_2426 &&
|
||||
"string" === typeof JSCompiler_object_inline_digest_2425 &&
|
||||
CapturedStacks.set(
|
||||
JSCompiler_object_inline_componentStack_2428,
|
||||
JSCompiler_object_inline_stack_2427
|
||||
JSCompiler_object_inline_componentStack_2427,
|
||||
JSCompiler_object_inline_stack_2426
|
||||
);
|
||||
queueHydrationError(JSCompiler_object_inline_stack_2427);
|
||||
queueHydrationError(JSCompiler_object_inline_stack_2426);
|
||||
workInProgress = retrySuspenseComponentWithoutHydrating(
|
||||
current,
|
||||
workInProgress,
|
||||
@@ -9687,44 +9687,44 @@ __DEV__ &&
|
||||
renderLanes,
|
||||
!1
|
||||
),
|
||||
(JSCompiler_object_inline_digest_2426 =
|
||||
(JSCompiler_object_inline_digest_2425 =
|
||||
0 !== (renderLanes & current.childLanes)),
|
||||
didReceiveUpdate || JSCompiler_object_inline_digest_2426)
|
||||
didReceiveUpdate || JSCompiler_object_inline_digest_2425)
|
||||
) {
|
||||
JSCompiler_object_inline_digest_2426 = workInProgressRoot;
|
||||
JSCompiler_object_inline_digest_2425 = workInProgressRoot;
|
||||
if (
|
||||
null !== JSCompiler_object_inline_digest_2426 &&
|
||||
((JSCompiler_object_inline_stack_2427 = renderLanes & -renderLanes),
|
||||
(JSCompiler_object_inline_stack_2427 =
|
||||
0 !== (JSCompiler_object_inline_stack_2427 & 42)
|
||||
null !== JSCompiler_object_inline_digest_2425 &&
|
||||
((JSCompiler_object_inline_stack_2426 = renderLanes & -renderLanes),
|
||||
(JSCompiler_object_inline_stack_2426 =
|
||||
0 !== (JSCompiler_object_inline_stack_2426 & 42)
|
||||
? 1
|
||||
: getBumpedLaneForHydrationByLane(
|
||||
JSCompiler_object_inline_stack_2427
|
||||
JSCompiler_object_inline_stack_2426
|
||||
)),
|
||||
(JSCompiler_object_inline_stack_2427 =
|
||||
(JSCompiler_object_inline_stack_2426 =
|
||||
0 !==
|
||||
(JSCompiler_object_inline_stack_2427 &
|
||||
(JSCompiler_object_inline_digest_2426.suspendedLanes |
|
||||
(JSCompiler_object_inline_stack_2426 &
|
||||
(JSCompiler_object_inline_digest_2425.suspendedLanes |
|
||||
renderLanes))
|
||||
? 0
|
||||
: JSCompiler_object_inline_stack_2427),
|
||||
0 !== JSCompiler_object_inline_stack_2427 &&
|
||||
JSCompiler_object_inline_stack_2427 !== prevState.retryLane)
|
||||
: JSCompiler_object_inline_stack_2426),
|
||||
0 !== JSCompiler_object_inline_stack_2426 &&
|
||||
JSCompiler_object_inline_stack_2426 !== prevState.retryLane)
|
||||
)
|
||||
throw (
|
||||
((prevState.retryLane = JSCompiler_object_inline_stack_2427),
|
||||
((prevState.retryLane = JSCompiler_object_inline_stack_2426),
|
||||
enqueueConcurrentRenderForLane(
|
||||
current,
|
||||
JSCompiler_object_inline_stack_2427
|
||||
JSCompiler_object_inline_stack_2426
|
||||
),
|
||||
scheduleUpdateOnFiber(
|
||||
JSCompiler_object_inline_digest_2426,
|
||||
JSCompiler_object_inline_digest_2425,
|
||||
current,
|
||||
JSCompiler_object_inline_stack_2427
|
||||
JSCompiler_object_inline_stack_2426
|
||||
),
|
||||
SelectiveHydrationException)
|
||||
);
|
||||
JSCompiler_object_inline_message_2425.data ===
|
||||
JSCompiler_object_inline_message_2424.data ===
|
||||
SUSPENSE_PENDING_START_DATA || renderDidSuspendDelayIfPossible();
|
||||
workInProgress = retrySuspenseComponentWithoutHydrating(
|
||||
current,
|
||||
@@ -9732,14 +9732,14 @@ __DEV__ &&
|
||||
renderLanes
|
||||
);
|
||||
} else
|
||||
JSCompiler_object_inline_message_2425.data ===
|
||||
JSCompiler_object_inline_message_2424.data ===
|
||||
SUSPENSE_PENDING_START_DATA
|
||||
? ((workInProgress.flags |= 192),
|
||||
(workInProgress.child = current.child),
|
||||
(workInProgress = null))
|
||||
: ((renderLanes = prevState.treeContext),
|
||||
(nextHydratableInstance = getNextHydratable(
|
||||
JSCompiler_object_inline_message_2425.nextSibling
|
||||
JSCompiler_object_inline_message_2424.nextSibling
|
||||
)),
|
||||
(hydrationParentFiber = workInProgress),
|
||||
(isHydrating = !0),
|
||||
@@ -9757,72 +9757,72 @@ __DEV__ &&
|
||||
(treeContextProvider = workInProgress)),
|
||||
(workInProgress = mountSuspensePrimaryChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_stack_2427.children
|
||||
JSCompiler_object_inline_stack_2426.children
|
||||
)),
|
||||
(workInProgress.flags |= 4096));
|
||||
return workInProgress;
|
||||
}
|
||||
if (JSCompiler_object_inline_componentStack_2428)
|
||||
if (JSCompiler_object_inline_componentStack_2427)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(JSCompiler_object_inline_componentStack_2428 =
|
||||
JSCompiler_object_inline_stack_2427.fallback),
|
||||
(JSCompiler_object_inline_message_2425 = workInProgress.mode),
|
||||
(JSCompiler_object_inline_componentStack_2427 =
|
||||
JSCompiler_object_inline_stack_2426.fallback),
|
||||
(JSCompiler_object_inline_message_2424 = workInProgress.mode),
|
||||
(JSCompiler_temp = current.child),
|
||||
(instance = JSCompiler_temp.sibling),
|
||||
(componentStack = {
|
||||
mode: "hidden",
|
||||
children: JSCompiler_object_inline_stack_2427.children
|
||||
children: JSCompiler_object_inline_stack_2426.children
|
||||
}),
|
||||
(JSCompiler_object_inline_message_2425 & ConcurrentMode) === NoMode &&
|
||||
(JSCompiler_object_inline_message_2424 & ConcurrentMode) === NoMode &&
|
||||
workInProgress.child !== JSCompiler_temp
|
||||
? ((JSCompiler_object_inline_stack_2427 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2427.childLanes = 0),
|
||||
(JSCompiler_object_inline_stack_2427.pendingProps =
|
||||
? ((JSCompiler_object_inline_stack_2426 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2426.childLanes = 0),
|
||||
(JSCompiler_object_inline_stack_2426.pendingProps =
|
||||
componentStack),
|
||||
workInProgress.mode & ProfileMode &&
|
||||
((JSCompiler_object_inline_stack_2427.actualDuration = -0),
|
||||
(JSCompiler_object_inline_stack_2427.actualStartTime = -1.1),
|
||||
(JSCompiler_object_inline_stack_2427.selfBaseDuration =
|
||||
((JSCompiler_object_inline_stack_2426.actualDuration = -0),
|
||||
(JSCompiler_object_inline_stack_2426.actualStartTime = -1.1),
|
||||
(JSCompiler_object_inline_stack_2426.selfBaseDuration =
|
||||
JSCompiler_temp.selfBaseDuration),
|
||||
(JSCompiler_object_inline_stack_2427.treeBaseDuration =
|
||||
(JSCompiler_object_inline_stack_2426.treeBaseDuration =
|
||||
JSCompiler_temp.treeBaseDuration)),
|
||||
(workInProgress.deletions = null))
|
||||
: ((JSCompiler_object_inline_stack_2427 = createWorkInProgress(
|
||||
: ((JSCompiler_object_inline_stack_2426 = createWorkInProgress(
|
||||
JSCompiler_temp,
|
||||
componentStack
|
||||
)),
|
||||
(JSCompiler_object_inline_stack_2427.subtreeFlags =
|
||||
(JSCompiler_object_inline_stack_2426.subtreeFlags =
|
||||
JSCompiler_temp.subtreeFlags & 65011712)),
|
||||
null !== instance
|
||||
? (JSCompiler_object_inline_componentStack_2428 =
|
||||
? (JSCompiler_object_inline_componentStack_2427 =
|
||||
createWorkInProgress(
|
||||
instance,
|
||||
JSCompiler_object_inline_componentStack_2428
|
||||
JSCompiler_object_inline_componentStack_2427
|
||||
))
|
||||
: ((JSCompiler_object_inline_componentStack_2428 =
|
||||
: ((JSCompiler_object_inline_componentStack_2427 =
|
||||
createFiberFromFragment(
|
||||
JSCompiler_object_inline_componentStack_2428,
|
||||
JSCompiler_object_inline_message_2425,
|
||||
JSCompiler_object_inline_componentStack_2427,
|
||||
JSCompiler_object_inline_message_2424,
|
||||
renderLanes,
|
||||
null
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2428.flags |= 2)),
|
||||
(JSCompiler_object_inline_componentStack_2428.return =
|
||||
(JSCompiler_object_inline_componentStack_2427.flags |= 2)),
|
||||
(JSCompiler_object_inline_componentStack_2427.return =
|
||||
workInProgress),
|
||||
(JSCompiler_object_inline_stack_2427.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2427.sibling =
|
||||
JSCompiler_object_inline_componentStack_2428),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2427),
|
||||
(JSCompiler_object_inline_stack_2427 =
|
||||
JSCompiler_object_inline_componentStack_2428),
|
||||
(JSCompiler_object_inline_componentStack_2428 = workInProgress.child),
|
||||
(JSCompiler_object_inline_message_2425 = current.child.memoizedState),
|
||||
null === JSCompiler_object_inline_message_2425
|
||||
? (JSCompiler_object_inline_message_2425 =
|
||||
(JSCompiler_object_inline_stack_2426.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2426.sibling =
|
||||
JSCompiler_object_inline_componentStack_2427),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2426),
|
||||
(JSCompiler_object_inline_stack_2426 =
|
||||
JSCompiler_object_inline_componentStack_2427),
|
||||
(JSCompiler_object_inline_componentStack_2427 = workInProgress.child),
|
||||
(JSCompiler_object_inline_message_2424 = current.child.memoizedState),
|
||||
null === JSCompiler_object_inline_message_2424
|
||||
? (JSCompiler_object_inline_message_2424 =
|
||||
mountSuspenseOffscreenState(renderLanes))
|
||||
: ((JSCompiler_temp =
|
||||
JSCompiler_object_inline_message_2425.cachePool),
|
||||
JSCompiler_object_inline_message_2424.cachePool),
|
||||
null !== JSCompiler_temp
|
||||
? ((instance = CacheContext._currentValue),
|
||||
(JSCompiler_temp =
|
||||
@@ -9830,45 +9830,45 @@ __DEV__ &&
|
||||
? { parent: instance, pool: instance }
|
||||
: JSCompiler_temp))
|
||||
: (JSCompiler_temp = getSuspendedCache()),
|
||||
(JSCompiler_object_inline_message_2425 = {
|
||||
(JSCompiler_object_inline_message_2424 = {
|
||||
baseLanes:
|
||||
JSCompiler_object_inline_message_2425.baseLanes | renderLanes,
|
||||
JSCompiler_object_inline_message_2424.baseLanes | renderLanes,
|
||||
cachePool: JSCompiler_temp
|
||||
})),
|
||||
(JSCompiler_object_inline_componentStack_2428.memoizedState =
|
||||
JSCompiler_object_inline_message_2425),
|
||||
(JSCompiler_object_inline_componentStack_2428.childLanes =
|
||||
(JSCompiler_object_inline_componentStack_2427.memoizedState =
|
||||
JSCompiler_object_inline_message_2424),
|
||||
(JSCompiler_object_inline_componentStack_2427.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2426,
|
||||
JSCompiler_object_inline_digest_2425,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
JSCompiler_object_inline_stack_2427
|
||||
JSCompiler_object_inline_stack_2426
|
||||
);
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress);
|
||||
JSCompiler_object_inline_digest_2426 = current.child;
|
||||
current = JSCompiler_object_inline_digest_2426.sibling;
|
||||
JSCompiler_object_inline_digest_2426 = createWorkInProgress(
|
||||
JSCompiler_object_inline_digest_2426,
|
||||
JSCompiler_object_inline_digest_2425 = current.child;
|
||||
current = JSCompiler_object_inline_digest_2425.sibling;
|
||||
JSCompiler_object_inline_digest_2425 = createWorkInProgress(
|
||||
JSCompiler_object_inline_digest_2425,
|
||||
{
|
||||
mode: "visible",
|
||||
children: JSCompiler_object_inline_stack_2427.children
|
||||
children: JSCompiler_object_inline_stack_2426.children
|
||||
}
|
||||
);
|
||||
(workInProgress.mode & ConcurrentMode) === NoMode &&
|
||||
(JSCompiler_object_inline_digest_2426.lanes = renderLanes);
|
||||
JSCompiler_object_inline_digest_2426.return = workInProgress;
|
||||
JSCompiler_object_inline_digest_2426.sibling = null;
|
||||
(JSCompiler_object_inline_digest_2425.lanes = renderLanes);
|
||||
JSCompiler_object_inline_digest_2425.return = workInProgress;
|
||||
JSCompiler_object_inline_digest_2425.sibling = null;
|
||||
null !== current &&
|
||||
((renderLanes = workInProgress.deletions),
|
||||
null === renderLanes
|
||||
? ((workInProgress.deletions = [current]),
|
||||
(workInProgress.flags |= 16))
|
||||
: renderLanes.push(current));
|
||||
workInProgress.child = JSCompiler_object_inline_digest_2426;
|
||||
workInProgress.child = JSCompiler_object_inline_digest_2425;
|
||||
workInProgress.memoizedState = null;
|
||||
return JSCompiler_object_inline_digest_2426;
|
||||
return JSCompiler_object_inline_digest_2425;
|
||||
}
|
||||
function mountSuspensePrimaryChildren(workInProgress, primaryChildren) {
|
||||
primaryChildren = createFiberFromOffscreen(
|
||||
@@ -15422,7 +15422,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
workInProgressDeferredLane,
|
||||
workInProgressRootInterleavedUpdatedLanes,
|
||||
@@ -15452,7 +15451,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -15473,7 +15471,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -15497,7 +15494,6 @@ __DEV__ &&
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -15512,14 +15508,12 @@ __DEV__ &&
|
||||
root.timeoutHandle = noTimeout;
|
||||
suspendedCommitReason = finishedWork.subtreeFlags;
|
||||
if (
|
||||
(suspendedCommitReason =
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408))
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408)
|
||||
)
|
||||
if (
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop }),
|
||||
suspendedCommitReason &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
(suspendedCommitReason = waitForCommitToBeReady()),
|
||||
null !== suspendedCommitReason)
|
||||
) {
|
||||
@@ -15531,7 +15525,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -15556,7 +15549,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -15668,7 +15660,6 @@ __DEV__ &&
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -16262,7 +16253,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -16327,12 +16317,7 @@ __DEV__ &&
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= CommitContext;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(ReactDOMSharedInternals.p = transitions),
|
||||
@@ -25446,7 +25431,6 @@ __DEV__ &&
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
FALLBACK_THROTTLE_MS = 300,
|
||||
@@ -26013,11 +25997,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-2fe5b572-20250130" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-4b3728f0-20250130" !== 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.1.0-native-fb-2fe5b572-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.1.0-native-fb-4b3728f0-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26054,10 +26038,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -26203,5 +26187,5 @@ __DEV__ &&
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
})();
|
||||
|
||||
compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
Vendored
+32
-46
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<089cb5066cd3ad0678870d167a0168d5>>
|
||||
* @generated SignedSource<<b88187312b21ec96d233aa6e221126a2>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -10919,7 +10919,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -11119,7 +11118,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11140,7 +11138,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11163,7 +11160,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -11178,13 +11174,12 @@ function commitRootWhenReady(
|
||||
root.timeoutHandle = -1;
|
||||
suspendedCommitReason = finishedWork.subtreeFlags;
|
||||
if (
|
||||
(suspendedCommitReason =
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408))
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408)
|
||||
)
|
||||
if (
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop }),
|
||||
suspendedCommitReason && accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
(suspendedCommitReason = waitForCommitToBeReady()),
|
||||
null !== suspendedCommitReason)
|
||||
) {
|
||||
@@ -11196,7 +11191,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11216,7 +11210,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11328,7 +11321,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -11771,7 +11763,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11820,12 +11811,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(ReactDOMSharedInternals.p = transitions),
|
||||
@@ -12512,20 +12498,20 @@ function extractEvents$1(
|
||||
}
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1544 = 0;
|
||||
i$jscomp$inline_1544 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1544++
|
||||
var i$jscomp$inline_1543 = 0;
|
||||
i$jscomp$inline_1543 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1543++
|
||||
) {
|
||||
var eventName$jscomp$inline_1545 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1544],
|
||||
domEventName$jscomp$inline_1546 =
|
||||
eventName$jscomp$inline_1545.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1547 =
|
||||
eventName$jscomp$inline_1545[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1545.slice(1);
|
||||
var eventName$jscomp$inline_1544 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1543],
|
||||
domEventName$jscomp$inline_1545 =
|
||||
eventName$jscomp$inline_1544.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1546 =
|
||||
eventName$jscomp$inline_1544[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1544.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1546,
|
||||
"on" + capitalizedEvent$jscomp$inline_1547
|
||||
domEventName$jscomp$inline_1545,
|
||||
"on" + capitalizedEvent$jscomp$inline_1546
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -16015,16 +16001,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
0 === i && attemptExplicitHydrationTarget(target);
|
||||
}
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1787 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1786 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-2fe5b572-20250130" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1787
|
||||
"19.1.0-native-fb-4b3728f0-20250130" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1786
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1787,
|
||||
"19.1.0-native-fb-2fe5b572-20250130"
|
||||
isomorphicReactPackageVersion$jscomp$inline_1786,
|
||||
"19.1.0-native-fb-4b3728f0-20250130"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16044,24 +16030,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
null === componentOrElement ? null : componentOrElement.stateNode;
|
||||
return componentOrElement;
|
||||
};
|
||||
var internals$jscomp$inline_2243 = {
|
||||
var internals$jscomp$inline_2242 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2244 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2243 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2244.isDisabled &&
|
||||
hook$jscomp$inline_2244.supportsFiber
|
||||
!hook$jscomp$inline_2243.isDisabled &&
|
||||
hook$jscomp$inline_2243.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2244.inject(
|
||||
internals$jscomp$inline_2243
|
||||
(rendererID = hook$jscomp$inline_2243.inject(
|
||||
internals$jscomp$inline_2242
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2244);
|
||||
(injectedHook = hook$jscomp$inline_2243);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createRoot = function (container, options) {
|
||||
@@ -16155,4 +16141,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
|
||||
+32
-46
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<e3b9faedcaa5e23deb00fe04cef7ae45>>
|
||||
* @generated SignedSource<<64da8176fb36b0f96f667e8ba1b59c48>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -11425,7 +11425,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -11626,7 +11625,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11647,7 +11645,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11670,7 +11667,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -11685,13 +11681,12 @@ function commitRootWhenReady(
|
||||
root.timeoutHandle = -1;
|
||||
suspendedCommitReason = finishedWork.subtreeFlags;
|
||||
if (
|
||||
(suspendedCommitReason =
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408))
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408)
|
||||
)
|
||||
if (
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop }),
|
||||
suspendedCommitReason && accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
(suspendedCommitReason = waitForCommitToBeReady()),
|
||||
null !== suspendedCommitReason)
|
||||
) {
|
||||
@@ -11703,7 +11698,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11723,7 +11717,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11835,7 +11828,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -12351,7 +12343,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -12405,12 +12396,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(ReactDOMSharedInternals.p = transitions),
|
||||
@@ -13153,20 +13139,20 @@ function extractEvents$1(
|
||||
}
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1637 = 0;
|
||||
i$jscomp$inline_1637 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1637++
|
||||
var i$jscomp$inline_1636 = 0;
|
||||
i$jscomp$inline_1636 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1636++
|
||||
) {
|
||||
var eventName$jscomp$inline_1638 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1637],
|
||||
domEventName$jscomp$inline_1639 =
|
||||
eventName$jscomp$inline_1638.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1640 =
|
||||
eventName$jscomp$inline_1638[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1638.slice(1);
|
||||
var eventName$jscomp$inline_1637 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1636],
|
||||
domEventName$jscomp$inline_1638 =
|
||||
eventName$jscomp$inline_1637.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1639 =
|
||||
eventName$jscomp$inline_1637[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1637.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1639,
|
||||
"on" + capitalizedEvent$jscomp$inline_1640
|
||||
domEventName$jscomp$inline_1638,
|
||||
"on" + capitalizedEvent$jscomp$inline_1639
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -16664,16 +16650,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
0 === i && attemptExplicitHydrationTarget(target);
|
||||
}
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1882 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1881 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-2fe5b572-20250130" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1882
|
||||
"19.1.0-native-fb-4b3728f0-20250130" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1881
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1882,
|
||||
"19.1.0-native-fb-2fe5b572-20250130"
|
||||
isomorphicReactPackageVersion$jscomp$inline_1881,
|
||||
"19.1.0-native-fb-4b3728f0-20250130"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16693,12 +16679,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
null === componentOrElement ? null : componentOrElement.stateNode;
|
||||
return componentOrElement;
|
||||
};
|
||||
var internals$jscomp$inline_1889 = {
|
||||
var internals$jscomp$inline_1888 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$294 = 0;
|
||||
@@ -16716,16 +16702,16 @@ var internals$jscomp$inline_1889 = {
|
||||
}
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2303 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2302 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2303.isDisabled &&
|
||||
hook$jscomp$inline_2303.supportsFiber
|
||||
!hook$jscomp$inline_2302.isDisabled &&
|
||||
hook$jscomp$inline_2302.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2303.inject(
|
||||
internals$jscomp$inline_1889
|
||||
(rendererID = hook$jscomp$inline_2302.inject(
|
||||
internals$jscomp$inline_1888
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2303);
|
||||
(injectedHook = hook$jscomp$inline_2302);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createRoot = function (container, options) {
|
||||
@@ -16819,4 +16805,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
|
||||
+171
-187
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<deb6e090b19bddfda8e924d9dc8bae61>>
|
||||
* @generated SignedSource<<915f9994db814f5a12101e8249310fd9>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -9426,32 +9426,32 @@ __DEV__ &&
|
||||
return current;
|
||||
}
|
||||
function updateSuspenseComponent(current, workInProgress, renderLanes) {
|
||||
var JSCompiler_object_inline_digest_2431;
|
||||
var JSCompiler_object_inline_stack_2432 = workInProgress.pendingProps;
|
||||
var JSCompiler_object_inline_digest_2430;
|
||||
var JSCompiler_object_inline_stack_2431 = workInProgress.pendingProps;
|
||||
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
|
||||
var JSCompiler_object_inline_componentStack_2433 = !1;
|
||||
var JSCompiler_object_inline_componentStack_2432 = !1;
|
||||
var didSuspend = 0 !== (workInProgress.flags & 128);
|
||||
(JSCompiler_object_inline_digest_2431 = didSuspend) ||
|
||||
(JSCompiler_object_inline_digest_2431 =
|
||||
(JSCompiler_object_inline_digest_2430 = didSuspend) ||
|
||||
(JSCompiler_object_inline_digest_2430 =
|
||||
null !== current && null === current.memoizedState
|
||||
? !1
|
||||
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
|
||||
JSCompiler_object_inline_digest_2431 &&
|
||||
((JSCompiler_object_inline_componentStack_2433 = !0),
|
||||
JSCompiler_object_inline_digest_2430 &&
|
||||
((JSCompiler_object_inline_componentStack_2432 = !0),
|
||||
(workInProgress.flags &= -129));
|
||||
JSCompiler_object_inline_digest_2431 = 0 !== (workInProgress.flags & 32);
|
||||
JSCompiler_object_inline_digest_2430 = 0 !== (workInProgress.flags & 32);
|
||||
workInProgress.flags &= -33;
|
||||
if (null === current) {
|
||||
if (isHydrating) {
|
||||
JSCompiler_object_inline_componentStack_2433
|
||||
JSCompiler_object_inline_componentStack_2432
|
||||
? pushPrimaryTreeSuspenseHandler(workInProgress)
|
||||
: reuseSuspenseHandlerOnStack(workInProgress);
|
||||
if (isHydrating) {
|
||||
var JSCompiler_object_inline_message_2430 = nextHydratableInstance;
|
||||
var JSCompiler_object_inline_message_2429 = nextHydratableInstance;
|
||||
var JSCompiler_temp;
|
||||
if (!(JSCompiler_temp = !JSCompiler_object_inline_message_2430)) {
|
||||
if (!(JSCompiler_temp = !JSCompiler_object_inline_message_2429)) {
|
||||
c: {
|
||||
var instance = JSCompiler_object_inline_message_2430;
|
||||
var instance = JSCompiler_object_inline_message_2429;
|
||||
for (
|
||||
JSCompiler_temp = rootOrSingletonContext;
|
||||
8 !== instance.nodeType;
|
||||
@@ -9493,89 +9493,89 @@ __DEV__ &&
|
||||
JSCompiler_temp &&
|
||||
(warnNonHydratedInstance(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_message_2430
|
||||
JSCompiler_object_inline_message_2429
|
||||
),
|
||||
throwOnHydrationMismatch(workInProgress));
|
||||
}
|
||||
JSCompiler_object_inline_message_2430 = workInProgress.memoizedState;
|
||||
JSCompiler_object_inline_message_2429 = workInProgress.memoizedState;
|
||||
if (
|
||||
null !== JSCompiler_object_inline_message_2430 &&
|
||||
((JSCompiler_object_inline_message_2430 =
|
||||
JSCompiler_object_inline_message_2430.dehydrated),
|
||||
null !== JSCompiler_object_inline_message_2430)
|
||||
null !== JSCompiler_object_inline_message_2429 &&
|
||||
((JSCompiler_object_inline_message_2429 =
|
||||
JSCompiler_object_inline_message_2429.dehydrated),
|
||||
null !== JSCompiler_object_inline_message_2429)
|
||||
)
|
||||
return (
|
||||
isSuspenseInstanceFallback(JSCompiler_object_inline_message_2430)
|
||||
isSuspenseInstanceFallback(JSCompiler_object_inline_message_2429)
|
||||
? (workInProgress.lanes = 32)
|
||||
: (workInProgress.lanes = 536870912),
|
||||
null
|
||||
);
|
||||
popSuspenseHandler(workInProgress);
|
||||
}
|
||||
JSCompiler_object_inline_message_2430 =
|
||||
JSCompiler_object_inline_stack_2432.children;
|
||||
JSCompiler_temp = JSCompiler_object_inline_stack_2432.fallback;
|
||||
if (JSCompiler_object_inline_componentStack_2433)
|
||||
JSCompiler_object_inline_message_2429 =
|
||||
JSCompiler_object_inline_stack_2431.children;
|
||||
JSCompiler_temp = JSCompiler_object_inline_stack_2431.fallback;
|
||||
if (JSCompiler_object_inline_componentStack_2432)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(JSCompiler_object_inline_stack_2432 =
|
||||
(JSCompiler_object_inline_stack_2431 =
|
||||
mountSuspenseFallbackChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_message_2430,
|
||||
JSCompiler_object_inline_message_2429,
|
||||
JSCompiler_temp,
|
||||
renderLanes
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2433 =
|
||||
(JSCompiler_object_inline_componentStack_2432 =
|
||||
workInProgress.child),
|
||||
(JSCompiler_object_inline_componentStack_2433.memoizedState =
|
||||
(JSCompiler_object_inline_componentStack_2432.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_componentStack_2433.childLanes =
|
||||
(JSCompiler_object_inline_componentStack_2432.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2431,
|
||||
JSCompiler_object_inline_digest_2430,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
JSCompiler_object_inline_stack_2432
|
||||
JSCompiler_object_inline_stack_2431
|
||||
);
|
||||
if (
|
||||
"number" ===
|
||||
typeof JSCompiler_object_inline_stack_2432.unstable_expectedLoadTime
|
||||
typeof JSCompiler_object_inline_stack_2431.unstable_expectedLoadTime
|
||||
)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(JSCompiler_object_inline_stack_2432 =
|
||||
(JSCompiler_object_inline_stack_2431 =
|
||||
mountSuspenseFallbackChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_message_2430,
|
||||
JSCompiler_object_inline_message_2429,
|
||||
JSCompiler_temp,
|
||||
renderLanes
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2433 =
|
||||
(JSCompiler_object_inline_componentStack_2432 =
|
||||
workInProgress.child),
|
||||
(JSCompiler_object_inline_componentStack_2433.memoizedState =
|
||||
(JSCompiler_object_inline_componentStack_2432.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_componentStack_2433.childLanes =
|
||||
(JSCompiler_object_inline_componentStack_2432.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2431,
|
||||
JSCompiler_object_inline_digest_2430,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
(workInProgress.lanes = 4194304),
|
||||
JSCompiler_object_inline_stack_2432
|
||||
JSCompiler_object_inline_stack_2431
|
||||
);
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress);
|
||||
return mountSuspensePrimaryChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_message_2430
|
||||
JSCompiler_object_inline_message_2429
|
||||
);
|
||||
}
|
||||
var prevState = current.memoizedState;
|
||||
if (
|
||||
null !== prevState &&
|
||||
((JSCompiler_object_inline_message_2430 = prevState.dehydrated),
|
||||
null !== JSCompiler_object_inline_message_2430)
|
||||
((JSCompiler_object_inline_message_2429 = prevState.dehydrated),
|
||||
null !== JSCompiler_object_inline_message_2429)
|
||||
) {
|
||||
if (didSuspend)
|
||||
workInProgress.flags & 256
|
||||
@@ -9592,32 +9592,32 @@ __DEV__ &&
|
||||
(workInProgress.flags |= 128),
|
||||
(workInProgress = null))
|
||||
: (reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(JSCompiler_object_inline_componentStack_2433 =
|
||||
JSCompiler_object_inline_stack_2432.fallback),
|
||||
(JSCompiler_object_inline_message_2430 = workInProgress.mode),
|
||||
(JSCompiler_object_inline_stack_2432 = createFiberFromOffscreen(
|
||||
(JSCompiler_object_inline_componentStack_2432 =
|
||||
JSCompiler_object_inline_stack_2431.fallback),
|
||||
(JSCompiler_object_inline_message_2429 = workInProgress.mode),
|
||||
(JSCompiler_object_inline_stack_2431 = createFiberFromOffscreen(
|
||||
{
|
||||
mode: "visible",
|
||||
children: JSCompiler_object_inline_stack_2432.children
|
||||
children: JSCompiler_object_inline_stack_2431.children
|
||||
},
|
||||
JSCompiler_object_inline_message_2430,
|
||||
JSCompiler_object_inline_message_2429,
|
||||
0,
|
||||
null
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2433 =
|
||||
(JSCompiler_object_inline_componentStack_2432 =
|
||||
createFiberFromFragment(
|
||||
JSCompiler_object_inline_componentStack_2433,
|
||||
JSCompiler_object_inline_message_2430,
|
||||
JSCompiler_object_inline_componentStack_2432,
|
||||
JSCompiler_object_inline_message_2429,
|
||||
renderLanes,
|
||||
null
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2433.flags |= 2),
|
||||
(JSCompiler_object_inline_stack_2432.return = workInProgress),
|
||||
(JSCompiler_object_inline_componentStack_2433.return =
|
||||
(JSCompiler_object_inline_componentStack_2432.flags |= 2),
|
||||
(JSCompiler_object_inline_stack_2431.return = workInProgress),
|
||||
(JSCompiler_object_inline_componentStack_2432.return =
|
||||
workInProgress),
|
||||
(JSCompiler_object_inline_stack_2432.sibling =
|
||||
JSCompiler_object_inline_componentStack_2433),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2432),
|
||||
(JSCompiler_object_inline_stack_2431.sibling =
|
||||
JSCompiler_object_inline_componentStack_2432),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2431),
|
||||
(workInProgress.mode & ConcurrentMode) !== NoMode &&
|
||||
reconcileChildFibers(
|
||||
workInProgress,
|
||||
@@ -9625,63 +9625,63 @@ __DEV__ &&
|
||||
null,
|
||||
renderLanes
|
||||
),
|
||||
(JSCompiler_object_inline_stack_2432 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2432.memoizedState =
|
||||
(JSCompiler_object_inline_stack_2431 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2431.memoizedState =
|
||||
mountSuspenseOffscreenState(renderLanes)),
|
||||
(JSCompiler_object_inline_stack_2432.childLanes =
|
||||
(JSCompiler_object_inline_stack_2431.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2431,
|
||||
JSCompiler_object_inline_digest_2430,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
(workInProgress =
|
||||
JSCompiler_object_inline_componentStack_2433));
|
||||
JSCompiler_object_inline_componentStack_2432));
|
||||
else if (
|
||||
(pushPrimaryTreeSuspenseHandler(workInProgress),
|
||||
isHydrating &&
|
||||
error$jscomp$0(
|
||||
"We should not be hydrating here. This is a bug in React. Please file a bug."
|
||||
),
|
||||
isSuspenseInstanceFallback(JSCompiler_object_inline_message_2430))
|
||||
isSuspenseInstanceFallback(JSCompiler_object_inline_message_2429))
|
||||
) {
|
||||
JSCompiler_object_inline_digest_2431 =
|
||||
JSCompiler_object_inline_message_2430.nextSibling &&
|
||||
JSCompiler_object_inline_message_2430.nextSibling.dataset;
|
||||
if (JSCompiler_object_inline_digest_2431) {
|
||||
JSCompiler_temp = JSCompiler_object_inline_digest_2431.dgst;
|
||||
var message = JSCompiler_object_inline_digest_2431.msg;
|
||||
instance = JSCompiler_object_inline_digest_2431.stck;
|
||||
var componentStack = JSCompiler_object_inline_digest_2431.cstck;
|
||||
JSCompiler_object_inline_digest_2430 =
|
||||
JSCompiler_object_inline_message_2429.nextSibling &&
|
||||
JSCompiler_object_inline_message_2429.nextSibling.dataset;
|
||||
if (JSCompiler_object_inline_digest_2430) {
|
||||
JSCompiler_temp = JSCompiler_object_inline_digest_2430.dgst;
|
||||
var message = JSCompiler_object_inline_digest_2430.msg;
|
||||
instance = JSCompiler_object_inline_digest_2430.stck;
|
||||
var componentStack = JSCompiler_object_inline_digest_2430.cstck;
|
||||
}
|
||||
JSCompiler_object_inline_message_2430 = message;
|
||||
JSCompiler_object_inline_digest_2431 = JSCompiler_temp;
|
||||
JSCompiler_object_inline_stack_2432 = instance;
|
||||
JSCompiler_temp = JSCompiler_object_inline_componentStack_2433 =
|
||||
JSCompiler_object_inline_message_2429 = message;
|
||||
JSCompiler_object_inline_digest_2430 = JSCompiler_temp;
|
||||
JSCompiler_object_inline_stack_2431 = instance;
|
||||
JSCompiler_temp = JSCompiler_object_inline_componentStack_2432 =
|
||||
componentStack;
|
||||
JSCompiler_object_inline_componentStack_2433 =
|
||||
JSCompiler_object_inline_message_2430
|
||||
? Error(JSCompiler_object_inline_message_2430)
|
||||
JSCompiler_object_inline_componentStack_2432 =
|
||||
JSCompiler_object_inline_message_2429
|
||||
? Error(JSCompiler_object_inline_message_2429)
|
||||
: Error(
|
||||
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
|
||||
);
|
||||
JSCompiler_object_inline_componentStack_2433.stack =
|
||||
JSCompiler_object_inline_stack_2432 || "";
|
||||
JSCompiler_object_inline_componentStack_2433.digest =
|
||||
JSCompiler_object_inline_digest_2431;
|
||||
JSCompiler_object_inline_digest_2431 =
|
||||
JSCompiler_object_inline_componentStack_2432.stack =
|
||||
JSCompiler_object_inline_stack_2431 || "";
|
||||
JSCompiler_object_inline_componentStack_2432.digest =
|
||||
JSCompiler_object_inline_digest_2430;
|
||||
JSCompiler_object_inline_digest_2430 =
|
||||
void 0 === JSCompiler_temp ? null : JSCompiler_temp;
|
||||
JSCompiler_object_inline_stack_2432 = {
|
||||
value: JSCompiler_object_inline_componentStack_2433,
|
||||
JSCompiler_object_inline_stack_2431 = {
|
||||
value: JSCompiler_object_inline_componentStack_2432,
|
||||
source: null,
|
||||
stack: JSCompiler_object_inline_digest_2431
|
||||
stack: JSCompiler_object_inline_digest_2430
|
||||
};
|
||||
"string" === typeof JSCompiler_object_inline_digest_2431 &&
|
||||
"string" === typeof JSCompiler_object_inline_digest_2430 &&
|
||||
CapturedStacks.set(
|
||||
JSCompiler_object_inline_componentStack_2433,
|
||||
JSCompiler_object_inline_stack_2432
|
||||
JSCompiler_object_inline_componentStack_2432,
|
||||
JSCompiler_object_inline_stack_2431
|
||||
);
|
||||
queueHydrationError(JSCompiler_object_inline_stack_2432);
|
||||
queueHydrationError(JSCompiler_object_inline_stack_2431);
|
||||
workInProgress = retrySuspenseComponentWithoutHydrating(
|
||||
current,
|
||||
workInProgress,
|
||||
@@ -9695,44 +9695,44 @@ __DEV__ &&
|
||||
renderLanes,
|
||||
!1
|
||||
),
|
||||
(JSCompiler_object_inline_digest_2431 =
|
||||
(JSCompiler_object_inline_digest_2430 =
|
||||
0 !== (renderLanes & current.childLanes)),
|
||||
didReceiveUpdate || JSCompiler_object_inline_digest_2431)
|
||||
didReceiveUpdate || JSCompiler_object_inline_digest_2430)
|
||||
) {
|
||||
JSCompiler_object_inline_digest_2431 = workInProgressRoot;
|
||||
JSCompiler_object_inline_digest_2430 = workInProgressRoot;
|
||||
if (
|
||||
null !== JSCompiler_object_inline_digest_2431 &&
|
||||
((JSCompiler_object_inline_stack_2432 = renderLanes & -renderLanes),
|
||||
(JSCompiler_object_inline_stack_2432 =
|
||||
0 !== (JSCompiler_object_inline_stack_2432 & 42)
|
||||
null !== JSCompiler_object_inline_digest_2430 &&
|
||||
((JSCompiler_object_inline_stack_2431 = renderLanes & -renderLanes),
|
||||
(JSCompiler_object_inline_stack_2431 =
|
||||
0 !== (JSCompiler_object_inline_stack_2431 & 42)
|
||||
? 1
|
||||
: getBumpedLaneForHydrationByLane(
|
||||
JSCompiler_object_inline_stack_2432
|
||||
JSCompiler_object_inline_stack_2431
|
||||
)),
|
||||
(JSCompiler_object_inline_stack_2432 =
|
||||
(JSCompiler_object_inline_stack_2431 =
|
||||
0 !==
|
||||
(JSCompiler_object_inline_stack_2432 &
|
||||
(JSCompiler_object_inline_digest_2431.suspendedLanes |
|
||||
(JSCompiler_object_inline_stack_2431 &
|
||||
(JSCompiler_object_inline_digest_2430.suspendedLanes |
|
||||
renderLanes))
|
||||
? 0
|
||||
: JSCompiler_object_inline_stack_2432),
|
||||
0 !== JSCompiler_object_inline_stack_2432 &&
|
||||
JSCompiler_object_inline_stack_2432 !== prevState.retryLane)
|
||||
: JSCompiler_object_inline_stack_2431),
|
||||
0 !== JSCompiler_object_inline_stack_2431 &&
|
||||
JSCompiler_object_inline_stack_2431 !== prevState.retryLane)
|
||||
)
|
||||
throw (
|
||||
((prevState.retryLane = JSCompiler_object_inline_stack_2432),
|
||||
((prevState.retryLane = JSCompiler_object_inline_stack_2431),
|
||||
enqueueConcurrentRenderForLane(
|
||||
current,
|
||||
JSCompiler_object_inline_stack_2432
|
||||
JSCompiler_object_inline_stack_2431
|
||||
),
|
||||
scheduleUpdateOnFiber(
|
||||
JSCompiler_object_inline_digest_2431,
|
||||
JSCompiler_object_inline_digest_2430,
|
||||
current,
|
||||
JSCompiler_object_inline_stack_2432
|
||||
JSCompiler_object_inline_stack_2431
|
||||
),
|
||||
SelectiveHydrationException)
|
||||
);
|
||||
JSCompiler_object_inline_message_2430.data ===
|
||||
JSCompiler_object_inline_message_2429.data ===
|
||||
SUSPENSE_PENDING_START_DATA || renderDidSuspendDelayIfPossible();
|
||||
workInProgress = retrySuspenseComponentWithoutHydrating(
|
||||
current,
|
||||
@@ -9740,14 +9740,14 @@ __DEV__ &&
|
||||
renderLanes
|
||||
);
|
||||
} else
|
||||
JSCompiler_object_inline_message_2430.data ===
|
||||
JSCompiler_object_inline_message_2429.data ===
|
||||
SUSPENSE_PENDING_START_DATA
|
||||
? ((workInProgress.flags |= 192),
|
||||
(workInProgress.child = current.child),
|
||||
(workInProgress = null))
|
||||
: ((renderLanes = prevState.treeContext),
|
||||
(nextHydratableInstance = getNextHydratable(
|
||||
JSCompiler_object_inline_message_2430.nextSibling
|
||||
JSCompiler_object_inline_message_2429.nextSibling
|
||||
)),
|
||||
(hydrationParentFiber = workInProgress),
|
||||
(isHydrating = !0),
|
||||
@@ -9765,72 +9765,72 @@ __DEV__ &&
|
||||
(treeContextProvider = workInProgress)),
|
||||
(workInProgress = mountSuspensePrimaryChildren(
|
||||
workInProgress,
|
||||
JSCompiler_object_inline_stack_2432.children
|
||||
JSCompiler_object_inline_stack_2431.children
|
||||
)),
|
||||
(workInProgress.flags |= 4096));
|
||||
return workInProgress;
|
||||
}
|
||||
if (JSCompiler_object_inline_componentStack_2433)
|
||||
if (JSCompiler_object_inline_componentStack_2432)
|
||||
return (
|
||||
reuseSuspenseHandlerOnStack(workInProgress),
|
||||
(JSCompiler_object_inline_componentStack_2433 =
|
||||
JSCompiler_object_inline_stack_2432.fallback),
|
||||
(JSCompiler_object_inline_message_2430 = workInProgress.mode),
|
||||
(JSCompiler_object_inline_componentStack_2432 =
|
||||
JSCompiler_object_inline_stack_2431.fallback),
|
||||
(JSCompiler_object_inline_message_2429 = workInProgress.mode),
|
||||
(JSCompiler_temp = current.child),
|
||||
(instance = JSCompiler_temp.sibling),
|
||||
(componentStack = {
|
||||
mode: "hidden",
|
||||
children: JSCompiler_object_inline_stack_2432.children
|
||||
children: JSCompiler_object_inline_stack_2431.children
|
||||
}),
|
||||
(JSCompiler_object_inline_message_2430 & ConcurrentMode) === NoMode &&
|
||||
(JSCompiler_object_inline_message_2429 & ConcurrentMode) === NoMode &&
|
||||
workInProgress.child !== JSCompiler_temp
|
||||
? ((JSCompiler_object_inline_stack_2432 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2432.childLanes = 0),
|
||||
(JSCompiler_object_inline_stack_2432.pendingProps =
|
||||
? ((JSCompiler_object_inline_stack_2431 = workInProgress.child),
|
||||
(JSCompiler_object_inline_stack_2431.childLanes = 0),
|
||||
(JSCompiler_object_inline_stack_2431.pendingProps =
|
||||
componentStack),
|
||||
workInProgress.mode & ProfileMode &&
|
||||
((JSCompiler_object_inline_stack_2432.actualDuration = -0),
|
||||
(JSCompiler_object_inline_stack_2432.actualStartTime = -1.1),
|
||||
(JSCompiler_object_inline_stack_2432.selfBaseDuration =
|
||||
((JSCompiler_object_inline_stack_2431.actualDuration = -0),
|
||||
(JSCompiler_object_inline_stack_2431.actualStartTime = -1.1),
|
||||
(JSCompiler_object_inline_stack_2431.selfBaseDuration =
|
||||
JSCompiler_temp.selfBaseDuration),
|
||||
(JSCompiler_object_inline_stack_2432.treeBaseDuration =
|
||||
(JSCompiler_object_inline_stack_2431.treeBaseDuration =
|
||||
JSCompiler_temp.treeBaseDuration)),
|
||||
(workInProgress.deletions = null))
|
||||
: ((JSCompiler_object_inline_stack_2432 = createWorkInProgress(
|
||||
: ((JSCompiler_object_inline_stack_2431 = createWorkInProgress(
|
||||
JSCompiler_temp,
|
||||
componentStack
|
||||
)),
|
||||
(JSCompiler_object_inline_stack_2432.subtreeFlags =
|
||||
(JSCompiler_object_inline_stack_2431.subtreeFlags =
|
||||
JSCompiler_temp.subtreeFlags & 65011712)),
|
||||
null !== instance
|
||||
? (JSCompiler_object_inline_componentStack_2433 =
|
||||
? (JSCompiler_object_inline_componentStack_2432 =
|
||||
createWorkInProgress(
|
||||
instance,
|
||||
JSCompiler_object_inline_componentStack_2433
|
||||
JSCompiler_object_inline_componentStack_2432
|
||||
))
|
||||
: ((JSCompiler_object_inline_componentStack_2433 =
|
||||
: ((JSCompiler_object_inline_componentStack_2432 =
|
||||
createFiberFromFragment(
|
||||
JSCompiler_object_inline_componentStack_2433,
|
||||
JSCompiler_object_inline_message_2430,
|
||||
JSCompiler_object_inline_componentStack_2432,
|
||||
JSCompiler_object_inline_message_2429,
|
||||
renderLanes,
|
||||
null
|
||||
)),
|
||||
(JSCompiler_object_inline_componentStack_2433.flags |= 2)),
|
||||
(JSCompiler_object_inline_componentStack_2433.return =
|
||||
(JSCompiler_object_inline_componentStack_2432.flags |= 2)),
|
||||
(JSCompiler_object_inline_componentStack_2432.return =
|
||||
workInProgress),
|
||||
(JSCompiler_object_inline_stack_2432.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2432.sibling =
|
||||
JSCompiler_object_inline_componentStack_2433),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2432),
|
||||
(JSCompiler_object_inline_stack_2432 =
|
||||
JSCompiler_object_inline_componentStack_2433),
|
||||
(JSCompiler_object_inline_componentStack_2433 = workInProgress.child),
|
||||
(JSCompiler_object_inline_message_2430 = current.child.memoizedState),
|
||||
null === JSCompiler_object_inline_message_2430
|
||||
? (JSCompiler_object_inline_message_2430 =
|
||||
(JSCompiler_object_inline_stack_2431.return = workInProgress),
|
||||
(JSCompiler_object_inline_stack_2431.sibling =
|
||||
JSCompiler_object_inline_componentStack_2432),
|
||||
(workInProgress.child = JSCompiler_object_inline_stack_2431),
|
||||
(JSCompiler_object_inline_stack_2431 =
|
||||
JSCompiler_object_inline_componentStack_2432),
|
||||
(JSCompiler_object_inline_componentStack_2432 = workInProgress.child),
|
||||
(JSCompiler_object_inline_message_2429 = current.child.memoizedState),
|
||||
null === JSCompiler_object_inline_message_2429
|
||||
? (JSCompiler_object_inline_message_2429 =
|
||||
mountSuspenseOffscreenState(renderLanes))
|
||||
: ((JSCompiler_temp =
|
||||
JSCompiler_object_inline_message_2430.cachePool),
|
||||
JSCompiler_object_inline_message_2429.cachePool),
|
||||
null !== JSCompiler_temp
|
||||
? ((instance = CacheContext._currentValue),
|
||||
(JSCompiler_temp =
|
||||
@@ -9838,45 +9838,45 @@ __DEV__ &&
|
||||
? { parent: instance, pool: instance }
|
||||
: JSCompiler_temp))
|
||||
: (JSCompiler_temp = getSuspendedCache()),
|
||||
(JSCompiler_object_inline_message_2430 = {
|
||||
(JSCompiler_object_inline_message_2429 = {
|
||||
baseLanes:
|
||||
JSCompiler_object_inline_message_2430.baseLanes | renderLanes,
|
||||
JSCompiler_object_inline_message_2429.baseLanes | renderLanes,
|
||||
cachePool: JSCompiler_temp
|
||||
})),
|
||||
(JSCompiler_object_inline_componentStack_2433.memoizedState =
|
||||
JSCompiler_object_inline_message_2430),
|
||||
(JSCompiler_object_inline_componentStack_2433.childLanes =
|
||||
(JSCompiler_object_inline_componentStack_2432.memoizedState =
|
||||
JSCompiler_object_inline_message_2429),
|
||||
(JSCompiler_object_inline_componentStack_2432.childLanes =
|
||||
getRemainingWorkInPrimaryTree(
|
||||
current,
|
||||
JSCompiler_object_inline_digest_2431,
|
||||
JSCompiler_object_inline_digest_2430,
|
||||
renderLanes
|
||||
)),
|
||||
(workInProgress.memoizedState = SUSPENDED_MARKER),
|
||||
JSCompiler_object_inline_stack_2432
|
||||
JSCompiler_object_inline_stack_2431
|
||||
);
|
||||
pushPrimaryTreeSuspenseHandler(workInProgress);
|
||||
JSCompiler_object_inline_digest_2431 = current.child;
|
||||
current = JSCompiler_object_inline_digest_2431.sibling;
|
||||
JSCompiler_object_inline_digest_2431 = createWorkInProgress(
|
||||
JSCompiler_object_inline_digest_2431,
|
||||
JSCompiler_object_inline_digest_2430 = current.child;
|
||||
current = JSCompiler_object_inline_digest_2430.sibling;
|
||||
JSCompiler_object_inline_digest_2430 = createWorkInProgress(
|
||||
JSCompiler_object_inline_digest_2430,
|
||||
{
|
||||
mode: "visible",
|
||||
children: JSCompiler_object_inline_stack_2432.children
|
||||
children: JSCompiler_object_inline_stack_2431.children
|
||||
}
|
||||
);
|
||||
(workInProgress.mode & ConcurrentMode) === NoMode &&
|
||||
(JSCompiler_object_inline_digest_2431.lanes = renderLanes);
|
||||
JSCompiler_object_inline_digest_2431.return = workInProgress;
|
||||
JSCompiler_object_inline_digest_2431.sibling = null;
|
||||
(JSCompiler_object_inline_digest_2430.lanes = renderLanes);
|
||||
JSCompiler_object_inline_digest_2430.return = workInProgress;
|
||||
JSCompiler_object_inline_digest_2430.sibling = null;
|
||||
null !== current &&
|
||||
((renderLanes = workInProgress.deletions),
|
||||
null === renderLanes
|
||||
? ((workInProgress.deletions = [current]),
|
||||
(workInProgress.flags |= 16))
|
||||
: renderLanes.push(current));
|
||||
workInProgress.child = JSCompiler_object_inline_digest_2431;
|
||||
workInProgress.child = JSCompiler_object_inline_digest_2430;
|
||||
workInProgress.memoizedState = null;
|
||||
return JSCompiler_object_inline_digest_2431;
|
||||
return JSCompiler_object_inline_digest_2430;
|
||||
}
|
||||
function mountSuspensePrimaryChildren(workInProgress, primaryChildren) {
|
||||
primaryChildren = createFiberFromOffscreen(
|
||||
@@ -15430,7 +15430,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
workInProgressDeferredLane,
|
||||
workInProgressRootInterleavedUpdatedLanes,
|
||||
@@ -15460,7 +15459,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -15481,7 +15479,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -15505,7 +15502,6 @@ __DEV__ &&
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -15520,9 +15516,8 @@ __DEV__ &&
|
||||
root.timeoutHandle = noTimeout;
|
||||
suspendedCommitReason = finishedWork.subtreeFlags;
|
||||
if (
|
||||
(suspendedCommitReason =
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408))
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408)
|
||||
)
|
||||
if (
|
||||
((suspendedState = {
|
||||
@@ -15530,8 +15525,7 @@ __DEV__ &&
|
||||
count: 0,
|
||||
unsuspend: noop$1
|
||||
}),
|
||||
suspendedCommitReason &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
(suspendedCommitReason = waitForCommitToBeReady()),
|
||||
null !== suspendedCommitReason)
|
||||
) {
|
||||
@@ -15543,7 +15537,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -15568,7 +15561,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -15680,7 +15672,6 @@ __DEV__ &&
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -16274,7 +16265,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -16339,12 +16329,7 @@ __DEV__ &&
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= CommitContext;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(ReactDOMSharedInternals.p = transitions),
|
||||
@@ -25507,7 +25492,6 @@ __DEV__ &&
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
FALLBACK_THROTTLE_MS = 300,
|
||||
@@ -26074,11 +26058,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-2fe5b572-20250130" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-4b3728f0-20250130" !== 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.1.0-native-fb-2fe5b572-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.1.0-native-fb-4b3728f0-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26115,10 +26099,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -26580,7 +26564,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+32
-46
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0adf0ca9442aa5805f124c5d022d0abc>>
|
||||
* @generated SignedSource<<dde40c7ae67f3f6999fef08389c1b759>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -10919,7 +10919,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -11119,7 +11118,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11140,7 +11138,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11163,7 +11160,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -11178,13 +11174,12 @@ function commitRootWhenReady(
|
||||
root.timeoutHandle = -1;
|
||||
suspendedCommitReason = finishedWork.subtreeFlags;
|
||||
if (
|
||||
(suspendedCommitReason =
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408))
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408)
|
||||
)
|
||||
if (
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop$1 }),
|
||||
suspendedCommitReason && accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
(suspendedCommitReason = waitForCommitToBeReady()),
|
||||
null !== suspendedCommitReason)
|
||||
) {
|
||||
@@ -11196,7 +11191,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11216,7 +11210,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11328,7 +11321,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -11771,7 +11763,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11820,12 +11811,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(ReactDOMSharedInternals.p = transitions),
|
||||
@@ -12512,20 +12498,20 @@ function extractEvents$1(
|
||||
}
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1545 = 0;
|
||||
i$jscomp$inline_1545 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1545++
|
||||
var i$jscomp$inline_1544 = 0;
|
||||
i$jscomp$inline_1544 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1544++
|
||||
) {
|
||||
var eventName$jscomp$inline_1546 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1545],
|
||||
domEventName$jscomp$inline_1547 =
|
||||
eventName$jscomp$inline_1546.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1548 =
|
||||
eventName$jscomp$inline_1546[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1546.slice(1);
|
||||
var eventName$jscomp$inline_1545 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1544],
|
||||
domEventName$jscomp$inline_1546 =
|
||||
eventName$jscomp$inline_1545.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1547 =
|
||||
eventName$jscomp$inline_1545[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1545.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1547,
|
||||
"on" + capitalizedEvent$jscomp$inline_1548
|
||||
domEventName$jscomp$inline_1546,
|
||||
"on" + capitalizedEvent$jscomp$inline_1547
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -16026,16 +16012,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
0 === i && attemptExplicitHydrationTarget(target);
|
||||
}
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1788 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1787 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-2fe5b572-20250130" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1788
|
||||
"19.1.0-native-fb-4b3728f0-20250130" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1787
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1788,
|
||||
"19.1.0-native-fb-2fe5b572-20250130"
|
||||
isomorphicReactPackageVersion$jscomp$inline_1787,
|
||||
"19.1.0-native-fb-4b3728f0-20250130"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16055,24 +16041,24 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
null === componentOrElement ? null : componentOrElement.stateNode;
|
||||
return componentOrElement;
|
||||
};
|
||||
var internals$jscomp$inline_2246 = {
|
||||
var internals$jscomp$inline_2245 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2247 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2246 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2247.isDisabled &&
|
||||
hook$jscomp$inline_2247.supportsFiber
|
||||
!hook$jscomp$inline_2246.isDisabled &&
|
||||
hook$jscomp$inline_2246.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2247.inject(
|
||||
internals$jscomp$inline_2246
|
||||
(rendererID = hook$jscomp$inline_2246.inject(
|
||||
internals$jscomp$inline_2245
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2247);
|
||||
(injectedHook = hook$jscomp$inline_2246);
|
||||
} catch (err) {}
|
||||
}
|
||||
function noop() {}
|
||||
@@ -16320,4 +16306,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
|
||||
+32
-46
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<52daf0a59bccb92aececab46d9fdda20>>
|
||||
* @generated SignedSource<<0daedbbb583ee3fea4d52c7dea219013>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -11429,7 +11429,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -11630,7 +11629,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11651,7 +11649,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11674,7 +11671,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -11689,13 +11685,12 @@ function commitRootWhenReady(
|
||||
root.timeoutHandle = -1;
|
||||
suspendedCommitReason = finishedWork.subtreeFlags;
|
||||
if (
|
||||
(suspendedCommitReason =
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408))
|
||||
suspendedCommitReason & 8192 ||
|
||||
16785408 === (suspendedCommitReason & 16785408)
|
||||
)
|
||||
if (
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop$1 }),
|
||||
suspendedCommitReason && accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
(suspendedCommitReason = waitForCommitToBeReady()),
|
||||
null !== suspendedCommitReason)
|
||||
) {
|
||||
@@ -11707,7 +11702,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11727,7 +11721,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11839,7 +11832,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -12355,7 +12347,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -12409,12 +12400,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(ReactDOMSharedInternals.p = transitions),
|
||||
@@ -13157,20 +13143,20 @@ function extractEvents$1(
|
||||
}
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1638 = 0;
|
||||
i$jscomp$inline_1638 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1638++
|
||||
var i$jscomp$inline_1637 = 0;
|
||||
i$jscomp$inline_1637 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1637++
|
||||
) {
|
||||
var eventName$jscomp$inline_1639 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1638],
|
||||
domEventName$jscomp$inline_1640 =
|
||||
eventName$jscomp$inline_1639.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1641 =
|
||||
eventName$jscomp$inline_1639[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1639.slice(1);
|
||||
var eventName$jscomp$inline_1638 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1637],
|
||||
domEventName$jscomp$inline_1639 =
|
||||
eventName$jscomp$inline_1638.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1640 =
|
||||
eventName$jscomp$inline_1638[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1638.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1640,
|
||||
"on" + capitalizedEvent$jscomp$inline_1641
|
||||
domEventName$jscomp$inline_1639,
|
||||
"on" + capitalizedEvent$jscomp$inline_1640
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -16679,16 +16665,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
0 === i && attemptExplicitHydrationTarget(target);
|
||||
}
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1883 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1882 = React.version;
|
||||
if (
|
||||
"19.1.0-native-fb-2fe5b572-20250130" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1883
|
||||
"19.1.0-native-fb-4b3728f0-20250130" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1882
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1883,
|
||||
"19.1.0-native-fb-2fe5b572-20250130"
|
||||
isomorphicReactPackageVersion$jscomp$inline_1882,
|
||||
"19.1.0-native-fb-4b3728f0-20250130"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16708,12 +16694,12 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
null === componentOrElement ? null : componentOrElement.stateNode;
|
||||
return componentOrElement;
|
||||
};
|
||||
var internals$jscomp$inline_1890 = {
|
||||
var internals$jscomp$inline_1889 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$294 = 0;
|
||||
@@ -16731,16 +16717,16 @@ var internals$jscomp$inline_1890 = {
|
||||
}
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2306 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2305 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2306.isDisabled &&
|
||||
hook$jscomp$inline_2306.supportsFiber
|
||||
!hook$jscomp$inline_2305.isDisabled &&
|
||||
hook$jscomp$inline_2305.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2306.inject(
|
||||
internals$jscomp$inline_1890
|
||||
(rendererID = hook$jscomp$inline_2305.inject(
|
||||
internals$jscomp$inline_1889
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2306);
|
||||
(injectedHook = hook$jscomp$inline_2305);
|
||||
} catch (err) {}
|
||||
}
|
||||
function noop() {}
|
||||
@@ -16988,7 +16974,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+8
-23
@@ -7,13 +7,13 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<aa3a539ddfd3b435dd3905fdbc4da41e>>
|
||||
* @generated SignedSource<<5befa7553be07dcbc1a57d9d8301ae5e>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
__DEV__ &&
|
||||
(function () {
|
||||
function JSCompiler_object_inline_createNodeMock_1174() {
|
||||
function JSCompiler_object_inline_createNodeMock_1173() {
|
||||
return null;
|
||||
}
|
||||
function findHook(fiber, id) {
|
||||
@@ -11234,7 +11234,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
workInProgressDeferredLane,
|
||||
workInProgressRootInterleavedUpdatedLanes,
|
||||
@@ -11264,7 +11263,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11285,7 +11283,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -11309,7 +11306,6 @@ __DEV__ &&
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -11318,9 +11314,7 @@ __DEV__ &&
|
||||
) {
|
||||
root.timeoutHandle = -1;
|
||||
var subtreeFlags = finishedWork.subtreeFlags;
|
||||
(subtreeFlags =
|
||||
subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
subtreeFlags &&
|
||||
(subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork);
|
||||
commitRoot(
|
||||
root,
|
||||
@@ -11328,7 +11322,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11462,7 +11455,6 @@ __DEV__ &&
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -12007,7 +11999,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -12072,12 +12063,7 @@ __DEV__ &&
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= CommitContext;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(currentUpdatePriority = transitions),
|
||||
@@ -15395,7 +15381,6 @@ __DEV__ &&
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
FALLBACK_THROTTLE_MS = 300,
|
||||
@@ -15644,10 +15629,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15669,7 +15654,7 @@ __DEV__ &&
|
||||
exports._Scheduler = Scheduler;
|
||||
exports.act = act;
|
||||
exports.create = function (element, options) {
|
||||
var createNodeMock = JSCompiler_object_inline_createNodeMock_1174,
|
||||
var createNodeMock = JSCompiler_object_inline_createNodeMock_1173,
|
||||
isConcurrent = !1,
|
||||
isStrictMode = !1;
|
||||
"object" === typeof options &&
|
||||
@@ -15792,5 +15777,5 @@ __DEV__ &&
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
})();
|
||||
|
||||
+13
-27
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<fad8da0c4b1965b8ede4327f20c76e1c>>
|
||||
* @generated SignedSource<<f96a337fa19d9161ce019da5420389f4>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -8008,7 +8008,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -8203,7 +8202,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -8224,7 +8222,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -8242,7 +8239,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -8251,9 +8247,7 @@ function commitRootWhenReady(
|
||||
) {
|
||||
root.timeoutHandle = -1;
|
||||
var subtreeFlags = finishedWork.subtreeFlags;
|
||||
(subtreeFlags =
|
||||
subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
subtreeFlags &&
|
||||
(subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork);
|
||||
commitRoot(
|
||||
root,
|
||||
@@ -8261,7 +8255,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -8385,7 +8378,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -8800,7 +8792,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -8853,12 +8844,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(currentUpdatePriority = transitions),
|
||||
@@ -9823,24 +9809,24 @@ function wrapFiber(fiber) {
|
||||
fiberToWrapper.set(fiber, wrapper));
|
||||
return wrapper;
|
||||
}
|
||||
var internals$jscomp$inline_1402 = {
|
||||
var internals$jscomp$inline_1401 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1403 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1402 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1403.isDisabled &&
|
||||
hook$jscomp$inline_1403.supportsFiber
|
||||
!hook$jscomp$inline_1402.isDisabled &&
|
||||
hook$jscomp$inline_1402.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1403.inject(
|
||||
internals$jscomp$inline_1402
|
||||
(rendererID = hook$jscomp$inline_1402.inject(
|
||||
internals$jscomp$inline_1401
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1403);
|
||||
(injectedHook = hook$jscomp$inline_1402);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports._Scheduler = Scheduler;
|
||||
@@ -9964,4 +9950,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
|
||||
+13
-27
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<e47ff74c76025d4873d07c60c2dd5801>>
|
||||
* @generated SignedSource<<1a20cce8cb8fa79c70e753a8802ed69d>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -8461,7 +8461,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -8656,7 +8655,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -8677,7 +8675,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -8695,7 +8692,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -8704,9 +8700,7 @@ function commitRootWhenReady(
|
||||
) {
|
||||
root.timeoutHandle = -1;
|
||||
var subtreeFlags = finishedWork.subtreeFlags;
|
||||
(subtreeFlags =
|
||||
subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
subtreeFlags &&
|
||||
(subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork);
|
||||
commitRoot(
|
||||
root,
|
||||
@@ -8714,7 +8708,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -8838,7 +8831,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -9311,7 +9303,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -9369,12 +9360,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(currentUpdatePriority = transitions),
|
||||
@@ -10394,12 +10380,12 @@ function wrapFiber(fiber) {
|
||||
fiberToWrapper.set(fiber, wrapper));
|
||||
return wrapper;
|
||||
}
|
||||
var internals$jscomp$inline_1220 = {
|
||||
var internals$jscomp$inline_1219 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$147 = 0;
|
||||
@@ -10417,16 +10403,16 @@ var internals$jscomp$inline_1220 = {
|
||||
}
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1460 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1459 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1460.isDisabled &&
|
||||
hook$jscomp$inline_1460.supportsFiber
|
||||
!hook$jscomp$inline_1459.isDisabled &&
|
||||
hook$jscomp$inline_1459.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1460.inject(
|
||||
internals$jscomp$inline_1220
|
||||
(rendererID = hook$jscomp$inline_1459.inject(
|
||||
internals$jscomp$inline_1219
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1460);
|
||||
(injectedHook = hook$jscomp$inline_1459);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports._Scheduler = Scheduler;
|
||||
@@ -10550,4 +10536,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<61c2e9c09889731ff3087461b81cd890>>
|
||||
* @generated SignedSource<<a8b1764849b8ad5727a65887d6a479a9>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1839,7 +1839,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0a09dd17c2928dec355901be1fb97342>>
|
||||
* @generated SignedSource<<2128cb9b5f7b6cdab64db438b73f59b8>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -592,4 +592,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<c41ad8aef85d1067002ebe8a265c85d7>>
|
||||
* @generated SignedSource<<5d98293c051535c1f51ce0d7a9deeedc>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -596,7 +596,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.1.0-native-fb-2fe5b572-20250130";
|
||||
exports.version = "19.1.0-native-fb-4b3728f0-20250130";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
14f7c072719564ee4269c5fdadb6b8a737546422
|
||||
4b3728f05efbab9624e981339d8a0992a58f9a41
|
||||
|
||||
+5
-20
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f2adc82447a3835e7a61812e1189abc2>>
|
||||
* @generated SignedSource<<d0dbf173de9b24564d8cd033e9545600>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -12259,7 +12259,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
workInProgressDeferredLane,
|
||||
workInProgressRootInterleavedUpdatedLanes,
|
||||
@@ -12290,7 +12289,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -12311,7 +12309,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -12335,7 +12332,6 @@ __DEV__ &&
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -12344,9 +12340,7 @@ __DEV__ &&
|
||||
) {
|
||||
root.timeoutHandle = noTimeout;
|
||||
var subtreeFlags = finishedWork.subtreeFlags;
|
||||
(subtreeFlags =
|
||||
subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
subtreeFlags &&
|
||||
(subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork);
|
||||
commitRoot(
|
||||
root,
|
||||
@@ -12354,7 +12348,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -12466,7 +12459,6 @@ __DEV__ &&
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -13063,7 +13055,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -13128,12 +13119,7 @@ __DEV__ &&
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= CommitContext;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(currentUpdatePriority = transitions),
|
||||
@@ -17141,7 +17127,6 @@ __DEV__ &&
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
FALLBACK_THROTTLE_MS = 300,
|
||||
@@ -17519,10 +17504,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+13
-27
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<69e6943ec27ac5f78a23aca7c89f20ca>>
|
||||
* @generated SignedSource<<3f3ca1a9564168a71a42cf91407d7d52>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -9309,7 +9309,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -9504,7 +9503,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -9525,7 +9523,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -9543,7 +9540,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -9552,9 +9548,7 @@ function commitRootWhenReady(
|
||||
) {
|
||||
root.timeoutHandle = -1;
|
||||
var subtreeFlags = finishedWork.subtreeFlags;
|
||||
(subtreeFlags =
|
||||
subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
subtreeFlags &&
|
||||
(subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork);
|
||||
commitRoot(
|
||||
root,
|
||||
@@ -9562,7 +9556,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -9669,7 +9662,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -10116,7 +10108,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -10169,12 +10160,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(currentUpdatePriority = transitions),
|
||||
@@ -11042,26 +11028,26 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1238 = {
|
||||
internals$jscomp$inline_1237 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1238.rendererConfig = extraDevToolsConfig);
|
||||
(internals$jscomp$inline_1237.rendererConfig = extraDevToolsConfig);
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1550 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1549 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1550.isDisabled &&
|
||||
hook$jscomp$inline_1550.supportsFiber
|
||||
!hook$jscomp$inline_1549.isDisabled &&
|
||||
hook$jscomp$inline_1549.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1550.inject(
|
||||
internals$jscomp$inline_1238
|
||||
(rendererID = hook$jscomp$inline_1549.inject(
|
||||
internals$jscomp$inline_1237
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1550);
|
||||
(injectedHook = hook$jscomp$inline_1549);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
+15
-29
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<db1e04cbaeb494e1ea9127729fa7b585>>
|
||||
* @generated SignedSource<<567250480dca28bb95b31f54094d1aa5>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -9806,7 +9806,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -10002,7 +10001,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -10023,7 +10021,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -10041,7 +10038,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -10050,9 +10046,7 @@ function commitRootWhenReady(
|
||||
) {
|
||||
root.timeoutHandle = -1;
|
||||
var subtreeFlags = finishedWork.subtreeFlags;
|
||||
(subtreeFlags =
|
||||
subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
subtreeFlags &&
|
||||
(subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork);
|
||||
commitRoot(
|
||||
root,
|
||||
@@ -10060,7 +10054,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -10167,7 +10160,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -10687,7 +10679,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -10745,12 +10736,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(currentUpdatePriority = transitions),
|
||||
@@ -11694,16 +11680,16 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1331 = {
|
||||
internals$jscomp$inline_1330 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1331.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1331.getLaneLabelMap = function () {
|
||||
(internals$jscomp$inline_1330.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1330.getLaneLabelMap = function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$155 = 0;
|
||||
31 > index$155;
|
||||
@@ -11715,20 +11701,20 @@ internals$jscomp$inline_1331.getLaneLabelMap = function () {
|
||||
}
|
||||
return map;
|
||||
};
|
||||
internals$jscomp$inline_1331.injectProfilingHooks = function (profilingHooks) {
|
||||
internals$jscomp$inline_1330.injectProfilingHooks = function (profilingHooks) {
|
||||
injectedProfilingHooks = profilingHooks;
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1609 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1608 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1609.isDisabled &&
|
||||
hook$jscomp$inline_1609.supportsFiber
|
||||
!hook$jscomp$inline_1608.isDisabled &&
|
||||
hook$jscomp$inline_1608.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1609.inject(
|
||||
internals$jscomp$inline_1331
|
||||
(rendererID = hook$jscomp$inline_1608.inject(
|
||||
internals$jscomp$inline_1330
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1609);
|
||||
(injectedHook = hook$jscomp$inline_1608);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
+7
-22
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a1690194010c3a9aac5734b25d11295a>>
|
||||
* @generated SignedSource<<dbbc34651004daf23d98952cb5f57bac>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -12517,7 +12517,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
workInProgressDeferredLane,
|
||||
workInProgressRootInterleavedUpdatedLanes,
|
||||
@@ -12547,7 +12546,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -12568,7 +12566,6 @@ __DEV__ &&
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -12592,7 +12589,6 @@ __DEV__ &&
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -12601,9 +12597,7 @@ __DEV__ &&
|
||||
) {
|
||||
root.timeoutHandle = -1;
|
||||
var subtreeFlags = finishedWork.subtreeFlags;
|
||||
(subtreeFlags =
|
||||
subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
subtreeFlags &&
|
||||
(subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork);
|
||||
commitRoot(
|
||||
root,
|
||||
@@ -12611,7 +12605,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -12723,7 +12716,6 @@ __DEV__ &&
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -13320,7 +13312,6 @@ __DEV__ &&
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -13385,12 +13376,7 @@ __DEV__ &&
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= CommitContext;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(currentUpdatePriority = transitions),
|
||||
@@ -17608,7 +17594,6 @@ __DEV__ &&
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
FALLBACK_THROTTLE_MS = 300,
|
||||
@@ -17731,11 +17716,11 @@ __DEV__ &&
|
||||
shouldSuspendImpl = newShouldSuspendImpl;
|
||||
};
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-2fe5b572-20250130" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-4b3728f0-20250130" !== 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.1.0-native-fb-2fe5b572-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-4b3728f0-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -17761,10 +17746,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+15
-29
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<77ee4b93e87a0be46b446320150500b1>>
|
||||
* @generated SignedSource<<12d4a8b3bfb91cb6ce7e1c63e68d96ed>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -9614,7 +9614,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -9811,7 +9810,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -9832,7 +9830,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -9850,7 +9847,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -9859,9 +9855,7 @@ function commitRootWhenReady(
|
||||
) {
|
||||
root.timeoutHandle = -1;
|
||||
var subtreeFlags = finishedWork.subtreeFlags;
|
||||
(subtreeFlags =
|
||||
subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
subtreeFlags &&
|
||||
(subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork);
|
||||
commitRoot(
|
||||
root,
|
||||
@@ -9869,7 +9863,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -9976,7 +9969,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -10423,7 +10415,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -10476,12 +10467,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(currentUpdatePriority = transitions),
|
||||
@@ -11174,11 +11160,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-2fe5b572-20250130" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-4b3728f0-20250130" !== 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.1.0-native-fb-2fe5b572-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-4b3728f0-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11225,26 +11211,26 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1290 = {
|
||||
internals$jscomp$inline_1289 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1290.rendererConfig = extraDevToolsConfig);
|
||||
(internals$jscomp$inline_1289.rendererConfig = extraDevToolsConfig);
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1623 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1622 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1623.isDisabled &&
|
||||
hook$jscomp$inline_1623.supportsFiber
|
||||
!hook$jscomp$inline_1622.isDisabled &&
|
||||
hook$jscomp$inline_1622.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1623.inject(
|
||||
internals$jscomp$inline_1290
|
||||
(rendererID = hook$jscomp$inline_1622.inject(
|
||||
internals$jscomp$inline_1289
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1623);
|
||||
(injectedHook = hook$jscomp$inline_1622);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
+17
-31
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<db75f517df6e704818a04f163bd1a75c>>
|
||||
* @generated SignedSource<<01554c72a0bb73fe2ee94aff3536c9d2>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -10111,7 +10111,6 @@ var DefaultAsyncDispatcher = {
|
||||
workInProgressSuspendedRetryLanes = 0,
|
||||
workInProgressRootConcurrentErrors = null,
|
||||
workInProgressRootRecoverableErrors = null,
|
||||
workInProgressAppearingViewTransitions = null,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1,
|
||||
globalMostRecentFallbackTime = 0,
|
||||
workInProgressRootRenderTargetTime = Infinity,
|
||||
@@ -10309,7 +10308,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -10330,7 +10328,6 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) {
|
||||
forceSync,
|
||||
workInProgressRootRecoverableErrors,
|
||||
workInProgressTransitions,
|
||||
workInProgressAppearingViewTransitions,
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate,
|
||||
lanes,
|
||||
workInProgressDeferredLane,
|
||||
@@ -10348,7 +10345,6 @@ function commitRootWhenReady(
|
||||
finishedWork,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
lanes,
|
||||
spawnedLane,
|
||||
@@ -10357,9 +10353,7 @@ function commitRootWhenReady(
|
||||
) {
|
||||
root.timeoutHandle = -1;
|
||||
var subtreeFlags = finishedWork.subtreeFlags;
|
||||
(subtreeFlags =
|
||||
subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
subtreeFlags &&
|
||||
(subtreeFlags & 8192 || 16785408 === (subtreeFlags & 16785408)) &&
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork);
|
||||
commitRoot(
|
||||
root,
|
||||
@@ -10367,7 +10361,6 @@ function commitRootWhenReady(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -10474,7 +10467,6 @@ function prepareFreshStack(root, lanes) {
|
||||
workInProgressRootRecoverableErrors = workInProgressRootConcurrentErrors =
|
||||
null;
|
||||
workInProgressRootDidIncludeRecursiveRenderUpdate = !1;
|
||||
workInProgressAppearingViewTransitions = null;
|
||||
0 !== (lanes & 8) && (lanes |= lanes & 32);
|
||||
var allEntangledLanes = root.entangledLanes;
|
||||
if (0 !== allEntangledLanes)
|
||||
@@ -10994,7 +10986,6 @@ function commitRoot(
|
||||
lanes,
|
||||
recoverableErrors,
|
||||
transitions,
|
||||
appearingViewTransitions,
|
||||
didIncludeRenderPhaseUpdate,
|
||||
spawnedLane,
|
||||
updatedLanes,
|
||||
@@ -11052,12 +11043,7 @@ function commitRoot(
|
||||
spawnedLane = executionContext;
|
||||
executionContext |= 4;
|
||||
try {
|
||||
commitBeforeMutationEffects(
|
||||
root,
|
||||
finishedWork,
|
||||
lanes,
|
||||
appearingViewTransitions
|
||||
);
|
||||
commitBeforeMutationEffects(root, finishedWork, lanes);
|
||||
} finally {
|
||||
(executionContext = spawnedLane),
|
||||
(currentUpdatePriority = transitions),
|
||||
@@ -11826,11 +11812,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.1.0-native-fb-2fe5b572-20250130" !== isomorphicReactPackageVersion)
|
||||
if ("19.1.0-native-fb-4b3728f0-20250130" !== 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.1.0-native-fb-2fe5b572-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.1.0-native-fb-4b3728f0-20250130\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11877,16 +11863,16 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
}
|
||||
};
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1383 = {
|
||||
internals$jscomp$inline_1382 = {
|
||||
bundleType: 0,
|
||||
version: "19.1.0-native-fb-2fe5b572-20250130",
|
||||
version: "19.1.0-native-fb-4b3728f0-20250130",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.1.0-native-fb-2fe5b572-20250130"
|
||||
reconcilerVersion: "19.1.0-native-fb-4b3728f0-20250130"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1383.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1383.getLaneLabelMap = function () {
|
||||
(internals$jscomp$inline_1382.rendererConfig = extraDevToolsConfig);
|
||||
internals$jscomp$inline_1382.getLaneLabelMap = function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$159 = 0;
|
||||
31 > index$159;
|
||||
@@ -11898,20 +11884,20 @@ internals$jscomp$inline_1383.getLaneLabelMap = function () {
|
||||
}
|
||||
return map;
|
||||
};
|
||||
internals$jscomp$inline_1383.injectProfilingHooks = function (profilingHooks) {
|
||||
internals$jscomp$inline_1382.injectProfilingHooks = function (profilingHooks) {
|
||||
injectedProfilingHooks = profilingHooks;
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1682 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1681 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1682.isDisabled &&
|
||||
hook$jscomp$inline_1682.supportsFiber
|
||||
!hook$jscomp$inline_1681.isDisabled &&
|
||||
hook$jscomp$inline_1681.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1682.inject(
|
||||
internals$jscomp$inline_1383
|
||||
(rendererID = hook$jscomp$inline_1681.inject(
|
||||
internals$jscomp$inline_1382
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1682);
|
||||
(injectedHook = hook$jscomp$inline_1681);
|
||||
} catch (err) {}
|
||||
}
|
||||
exports.createPortal = function (children, containerTag) {
|
||||
|
||||
Reference in New Issue
Block a user