From e5d64ee8e3a3dccfaa30b3b5e0552a38ba5b74f9 Mon Sep 17 00:00:00 2001 From: sebmarkbage Date: Thu, 24 Jul 2025 10:44:28 -0700 Subject: [PATCH] [Fiber] Don't throw away the Error object retaining the owner stack (#33976) We currently throw away the Error once we've used to the owner stack of a Fiber once. This maybe helps a bit with memory and redoing it but we really don't expect most Fibers to hit this at all. It's not very hot. If we throw away the Error, then we can't use native debugger protocols to inspect the native stack. Instead, we'd have to maintain a url to resource map indefinitely like what Chrome DevTools does to map a url to a resource. Technically it's not even technically correct since the file path might not be reversible and could in theory conflict. DiffTrain build for [4f34cc4a2e1198493375867d1876509ae9771aee](https://github.com/facebook/react/commit/4f34cc4a2e1198493375867d1876509ae9771aee) --- compiled-rn/VERSION_NATIVE_FB | 2 +- .../react/react-dom/cjs/ReactDOM-dev.js | 4 +- .../react/react-dom/cjs/ReactDOM-prod.js | 4 +- .../react/react-dom/cjs/ReactDOM-profiling.js | 4 +- .../react/react-dom/cjs/ReactDOMClient-dev.js | 247 +++++++++--------- .../react-dom/cjs/ReactDOMClient-prod.js | 12 +- .../react-dom/cjs/ReactDOMClient-profiling.js | 12 +- .../react-dom/cjs/ReactDOMProfiling-dev.js | 247 +++++++++--------- .../react-dom/cjs/ReactDOMProfiling-prod.js | 12 +- .../cjs/ReactDOMProfiling-profiling.js | 12 +- .../cjs/ReactTestRenderer-dev.js | 21 +- .../cjs/ReactTestRenderer-prod.js | 8 +- .../cjs/ReactTestRenderer-profiling.js | 8 +- .../vendor/react/react/cjs/React-dev.js | 4 +- .../vendor/react/react/cjs/React-prod.js | 4 +- .../vendor/react/react/cjs/React-profiling.js | 4 +- .../Libraries/Renderer/REVISION | 2 +- .../implementations/ReactFabric-dev.fb.js | 15 +- .../implementations/ReactFabric-prod.fb.js | 6 +- .../ReactFabric-profiling.fb.js | 6 +- .../ReactNativeRenderer-dev.fb.js | 19 +- .../ReactNativeRenderer-prod.fb.js | 10 +- .../ReactNativeRenderer-profiling.fb.js | 10 +- .../eslint-plugin-react-hooks/package.json | 2 +- 24 files changed, 335 insertions(+), 340 deletions(-) diff --git a/compiled-rn/VERSION_NATIVE_FB b/compiled-rn/VERSION_NATIVE_FB index 4500c27aeb..974033f9f2 100644 --- a/compiled-rn/VERSION_NATIVE_FB +++ b/compiled-rn/VERSION_NATIVE_FB @@ -1 +1 @@ -19.2.0-native-fb-f6fb1a07-20250723 \ No newline at end of file +19.2.0-native-fb-4f34cc4a-20250724 \ No newline at end of file diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js index 450bdc73c1..73fbb7c9f6 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<36576a06e92c04401c7b6a51ba51b65e>> */ "use strict"; @@ -404,5 +404,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; + exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; })(); diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js index aaccf387b5..4b2ece3e8a 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<19b337269316c827065a6292577a989b>> */ "use strict"; @@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js index aaccf387b5..4b2ece3e8a 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<19b337269316c827065a6292577a989b>> */ "use strict"; @@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js index 94345b4865..bae1f27ea6 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<869ec36921e0ad473a27157bc599b98a>> + * @generated SignedSource<<7afe6f1dab6a762fecc3cd5f836c374c>> */ /* @@ -947,11 +947,10 @@ __DEV__ && var fiber = workInProgress; workInProgress = fiber._debugOwner; var debugStack = fiber._debugStack; - workInProgress && - debugStack && - ("string" !== typeof debugStack && - (fiber._debugStack = debugStack = formatOwnerStack(debugStack)), - "" !== debugStack && (info += "\n" + debugStack)); + if (workInProgress && debugStack) { + var formattedStack = formatOwnerStack(debugStack); + "" !== formattedStack && (info += "\n" + formattedStack); + } } else if (null != workInProgress.debugStack) { var ownerStack = workInProgress.debugStack; (workInProgress = workInProgress.owner) && @@ -10787,24 +10786,24 @@ __DEV__ && return current; } function updateSuspenseComponent(current, workInProgress, renderLanes) { - var JSCompiler_object_inline_digest_2842; - var JSCompiler_object_inline_stack_2843 = workInProgress.pendingProps; + var JSCompiler_object_inline_digest_2843; + var JSCompiler_object_inline_stack_2844 = workInProgress.pendingProps; shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128); - var JSCompiler_object_inline_message_2841 = !1; + var JSCompiler_object_inline_message_2842 = !1; var didSuspend = 0 !== (workInProgress.flags & 128); - (JSCompiler_object_inline_digest_2842 = didSuspend) || - (JSCompiler_object_inline_digest_2842 = + (JSCompiler_object_inline_digest_2843 = didSuspend) || + (JSCompiler_object_inline_digest_2843 = null !== current && null === current.memoizedState ? !1 : 0 !== (suspenseStackCursor.current & ForceSuspenseFallback)); - JSCompiler_object_inline_digest_2842 && - ((JSCompiler_object_inline_message_2841 = !0), + JSCompiler_object_inline_digest_2843 && + ((JSCompiler_object_inline_message_2842 = !0), (workInProgress.flags &= -129)); - JSCompiler_object_inline_digest_2842 = 0 !== (workInProgress.flags & 32); + JSCompiler_object_inline_digest_2843 = 0 !== (workInProgress.flags & 32); workInProgress.flags &= -33; if (null === current) { if (isHydrating) { - JSCompiler_object_inline_message_2841 + JSCompiler_object_inline_message_2842 ? pushPrimaryTreeSuspenseHandler(workInProgress) : reuseSuspenseHandlerOnStack(workInProgress); (renderLanes = nextHydratableInstance) @@ -10817,18 +10816,18 @@ __DEV__ && ? current : null), null !== current && - ((JSCompiler_object_inline_digest_2842 = { + ((JSCompiler_object_inline_digest_2843 = { dehydrated: current, treeContext: getSuspendedTreeContext(), retryLane: 536870912, hydrationErrors: null }), (workInProgress.memoizedState = - JSCompiler_object_inline_digest_2842), - (JSCompiler_object_inline_digest_2842 = + JSCompiler_object_inline_digest_2843), + (JSCompiler_object_inline_digest_2843 = createFiberFromDehydratedFragment(current)), - (JSCompiler_object_inline_digest_2842.return = workInProgress), - (workInProgress.child = JSCompiler_object_inline_digest_2842), + (JSCompiler_object_inline_digest_2843.return = workInProgress), + (workInProgress.child = JSCompiler_object_inline_digest_2843), (hydrationParentFiber = workInProgress), (nextHydratableInstance = null))) : (current = null); @@ -10842,12 +10841,12 @@ __DEV__ && : (workInProgress.lanes = 536870912); return null; } - var nextPrimaryChildren = JSCompiler_object_inline_stack_2843.children, - nextFallbackChildren = JSCompiler_object_inline_stack_2843.fallback; - if (JSCompiler_object_inline_message_2841) + var nextPrimaryChildren = JSCompiler_object_inline_stack_2844.children, + nextFallbackChildren = JSCompiler_object_inline_stack_2844.fallback; + if (JSCompiler_object_inline_message_2842) return ( reuseSuspenseHandlerOnStack(workInProgress), - (JSCompiler_object_inline_stack_2843 = + (JSCompiler_object_inline_stack_2844 = mountSuspenseFallbackChildren( workInProgress, nextPrimaryChildren, @@ -10859,19 +10858,19 @@ __DEV__ && mountSuspenseOffscreenState(renderLanes)), (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree( current, - JSCompiler_object_inline_digest_2842, + JSCompiler_object_inline_digest_2843, renderLanes )), (workInProgress.memoizedState = SUSPENDED_MARKER), - JSCompiler_object_inline_stack_2843 + JSCompiler_object_inline_stack_2844 ); if ( "number" === - typeof JSCompiler_object_inline_stack_2843.unstable_expectedLoadTime + typeof JSCompiler_object_inline_stack_2844.unstable_expectedLoadTime ) return ( reuseSuspenseHandlerOnStack(workInProgress), - (JSCompiler_object_inline_stack_2843 = + (JSCompiler_object_inline_stack_2844 = mountSuspenseFallbackChildren( workInProgress, nextPrimaryChildren, @@ -10883,12 +10882,12 @@ __DEV__ && mountSuspenseOffscreenState(renderLanes)), (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree( current, - JSCompiler_object_inline_digest_2842, + JSCompiler_object_inline_digest_2843, renderLanes )), (workInProgress.memoizedState = SUSPENDED_MARKER), (workInProgress.lanes = 4194304), - JSCompiler_object_inline_stack_2843 + JSCompiler_object_inline_stack_2844 ); pushPrimaryTreeSuspenseHandler(workInProgress); return mountSuspensePrimaryChildren( @@ -10898,8 +10897,8 @@ __DEV__ && } var prevState = current.memoizedState; if (null !== prevState) { - var JSCompiler_object_inline_componentStack_2844 = prevState.dehydrated; - if (null !== JSCompiler_object_inline_componentStack_2844) { + var JSCompiler_object_inline_componentStack_2845 = prevState.dehydrated; + if (null !== JSCompiler_object_inline_componentStack_2845) { if (didSuspend) workInProgress.flags & 256 ? (pushPrimaryTreeSuspenseHandler(workInProgress), @@ -10916,13 +10915,13 @@ __DEV__ && (workInProgress = null)) : (reuseSuspenseHandlerOnStack(workInProgress), (nextPrimaryChildren = - JSCompiler_object_inline_stack_2843.fallback), + JSCompiler_object_inline_stack_2844.fallback), (nextFallbackChildren = workInProgress.mode), - (JSCompiler_object_inline_stack_2843 = + (JSCompiler_object_inline_stack_2844 = mountWorkInProgressOffscreenFiber( { mode: "visible", - children: JSCompiler_object_inline_stack_2843.children + children: JSCompiler_object_inline_stack_2844.children }, nextFallbackChildren )), @@ -10933,11 +10932,11 @@ __DEV__ && null )), (nextPrimaryChildren.flags |= 2), - (JSCompiler_object_inline_stack_2843.return = workInProgress), + (JSCompiler_object_inline_stack_2844.return = workInProgress), (nextPrimaryChildren.return = workInProgress), - (JSCompiler_object_inline_stack_2843.sibling = + (JSCompiler_object_inline_stack_2844.sibling = nextPrimaryChildren), - (workInProgress.child = JSCompiler_object_inline_stack_2843), + (workInProgress.child = JSCompiler_object_inline_stack_2844), (workInProgress.mode & ConcurrentMode) !== NoMode && reconcileChildFibers( workInProgress, @@ -10945,13 +10944,13 @@ __DEV__ && null, renderLanes ), - (JSCompiler_object_inline_stack_2843 = workInProgress.child), - (JSCompiler_object_inline_stack_2843.memoizedState = + (JSCompiler_object_inline_stack_2844 = workInProgress.child), + (JSCompiler_object_inline_stack_2844.memoizedState = mountSuspenseOffscreenState(renderLanes)), - (JSCompiler_object_inline_stack_2843.childLanes = + (JSCompiler_object_inline_stack_2844.childLanes = getRemainingWorkInPrimaryTree( current, - JSCompiler_object_inline_digest_2842, + JSCompiler_object_inline_digest_2843, renderLanes )), (workInProgress.memoizedState = SUSPENDED_MARKER), @@ -10960,45 +10959,45 @@ __DEV__ && (pushPrimaryTreeSuspenseHandler(workInProgress), warnIfHydrating(), isSuspenseInstanceFallback( - JSCompiler_object_inline_componentStack_2844 + JSCompiler_object_inline_componentStack_2845 )) ) { - JSCompiler_object_inline_digest_2842 = - JSCompiler_object_inline_componentStack_2844.nextSibling && - JSCompiler_object_inline_componentStack_2844.nextSibling.dataset; - if (JSCompiler_object_inline_digest_2842) { - nextPrimaryChildren = JSCompiler_object_inline_digest_2842.dgst; - var message = JSCompiler_object_inline_digest_2842.msg; - nextFallbackChildren = JSCompiler_object_inline_digest_2842.stck; - var componentStack = JSCompiler_object_inline_digest_2842.cstck; + JSCompiler_object_inline_digest_2843 = + JSCompiler_object_inline_componentStack_2845.nextSibling && + JSCompiler_object_inline_componentStack_2845.nextSibling.dataset; + if (JSCompiler_object_inline_digest_2843) { + nextPrimaryChildren = JSCompiler_object_inline_digest_2843.dgst; + var message = JSCompiler_object_inline_digest_2843.msg; + nextFallbackChildren = JSCompiler_object_inline_digest_2843.stck; + var componentStack = JSCompiler_object_inline_digest_2843.cstck; } - JSCompiler_object_inline_message_2841 = message; - JSCompiler_object_inline_digest_2842 = nextPrimaryChildren; - JSCompiler_object_inline_stack_2843 = nextFallbackChildren; - JSCompiler_object_inline_componentStack_2844 = componentStack; - nextPrimaryChildren = JSCompiler_object_inline_message_2841; - nextFallbackChildren = JSCompiler_object_inline_componentStack_2844; + JSCompiler_object_inline_message_2842 = message; + JSCompiler_object_inline_digest_2843 = nextPrimaryChildren; + JSCompiler_object_inline_stack_2844 = nextFallbackChildren; + JSCompiler_object_inline_componentStack_2845 = componentStack; + nextPrimaryChildren = JSCompiler_object_inline_message_2842; + nextFallbackChildren = JSCompiler_object_inline_componentStack_2845; nextPrimaryChildren = nextPrimaryChildren ? Error(nextPrimaryChildren) : Error( "The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering." ); nextPrimaryChildren.stack = - JSCompiler_object_inline_stack_2843 || ""; - nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2842; - JSCompiler_object_inline_digest_2842 = + JSCompiler_object_inline_stack_2844 || ""; + nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2843; + JSCompiler_object_inline_digest_2843 = void 0 === nextFallbackChildren ? null : nextFallbackChildren; - JSCompiler_object_inline_stack_2843 = { + JSCompiler_object_inline_stack_2844 = { value: nextPrimaryChildren, source: null, - stack: JSCompiler_object_inline_digest_2842 + stack: JSCompiler_object_inline_digest_2843 }; - "string" === typeof JSCompiler_object_inline_digest_2842 && + "string" === typeof JSCompiler_object_inline_digest_2843 && CapturedStacks.set( nextPrimaryChildren, - JSCompiler_object_inline_stack_2843 + JSCompiler_object_inline_stack_2844 ); - queueHydrationError(JSCompiler_object_inline_stack_2843); + queueHydrationError(JSCompiler_object_inline_stack_2844); workInProgress = retrySuspenseComponentWithoutHydrating( current, workInProgress, @@ -11012,35 +11011,35 @@ __DEV__ && renderLanes, !1 ), - (JSCompiler_object_inline_digest_2842 = + (JSCompiler_object_inline_digest_2843 = 0 !== (renderLanes & current.childLanes)), - didReceiveUpdate || JSCompiler_object_inline_digest_2842) + didReceiveUpdate || JSCompiler_object_inline_digest_2843) ) { - JSCompiler_object_inline_digest_2842 = workInProgressRoot; + JSCompiler_object_inline_digest_2843 = workInProgressRoot; if ( - null !== JSCompiler_object_inline_digest_2842 && - ((JSCompiler_object_inline_stack_2843 = getBumpedLaneForHydration( - JSCompiler_object_inline_digest_2842, + null !== JSCompiler_object_inline_digest_2843 && + ((JSCompiler_object_inline_stack_2844 = getBumpedLaneForHydration( + JSCompiler_object_inline_digest_2843, renderLanes )), - 0 !== JSCompiler_object_inline_stack_2843 && - JSCompiler_object_inline_stack_2843 !== prevState.retryLane) + 0 !== JSCompiler_object_inline_stack_2844 && + JSCompiler_object_inline_stack_2844 !== prevState.retryLane) ) throw ( - ((prevState.retryLane = JSCompiler_object_inline_stack_2843), + ((prevState.retryLane = JSCompiler_object_inline_stack_2844), enqueueConcurrentRenderForLane( current, - JSCompiler_object_inline_stack_2843 + JSCompiler_object_inline_stack_2844 ), scheduleUpdateOnFiber( - JSCompiler_object_inline_digest_2842, + JSCompiler_object_inline_digest_2843, current, - JSCompiler_object_inline_stack_2843 + JSCompiler_object_inline_stack_2844 ), SelectiveHydrationException) ); isSuspenseInstancePending( - JSCompiler_object_inline_componentStack_2844 + JSCompiler_object_inline_componentStack_2845 ) || renderDidSuspendDelayIfPossible(); workInProgress = retrySuspenseComponentWithoutHydrating( current, @@ -11049,14 +11048,14 @@ __DEV__ && ); } else isSuspenseInstancePending( - JSCompiler_object_inline_componentStack_2844 + JSCompiler_object_inline_componentStack_2845 ) ? ((workInProgress.flags |= 192), (workInProgress.child = current.child), (workInProgress = null)) : ((renderLanes = prevState.treeContext), (nextHydratableInstance = getNextHydratable( - JSCompiler_object_inline_componentStack_2844.nextSibling + JSCompiler_object_inline_componentStack_2845.nextSibling )), (hydrationParentFiber = workInProgress), (isHydrating = !0), @@ -11068,47 +11067,47 @@ __DEV__ && restoreSuspendedTreeContext(workInProgress, renderLanes), (workInProgress = mountSuspensePrimaryChildren( workInProgress, - JSCompiler_object_inline_stack_2843.children + JSCompiler_object_inline_stack_2844.children )), (workInProgress.flags |= 4096)); return workInProgress; } } - if (JSCompiler_object_inline_message_2841) + if (JSCompiler_object_inline_message_2842) return ( reuseSuspenseHandlerOnStack(workInProgress), - (nextPrimaryChildren = JSCompiler_object_inline_stack_2843.fallback), + (nextPrimaryChildren = JSCompiler_object_inline_stack_2844.fallback), (nextFallbackChildren = workInProgress.mode), (componentStack = current.child), - (JSCompiler_object_inline_componentStack_2844 = + (JSCompiler_object_inline_componentStack_2845 = componentStack.sibling), - (JSCompiler_object_inline_message_2841 = { + (JSCompiler_object_inline_message_2842 = { mode: "hidden", - children: JSCompiler_object_inline_stack_2843.children + children: JSCompiler_object_inline_stack_2844.children }), (nextFallbackChildren & ConcurrentMode) === NoMode && workInProgress.child !== componentStack - ? ((JSCompiler_object_inline_stack_2843 = workInProgress.child), - (JSCompiler_object_inline_stack_2843.childLanes = 0), - (JSCompiler_object_inline_stack_2843.pendingProps = - JSCompiler_object_inline_message_2841), + ? ((JSCompiler_object_inline_stack_2844 = workInProgress.child), + (JSCompiler_object_inline_stack_2844.childLanes = 0), + (JSCompiler_object_inline_stack_2844.pendingProps = + JSCompiler_object_inline_message_2842), workInProgress.mode & ProfileMode && - ((JSCompiler_object_inline_stack_2843.actualDuration = -0), - (JSCompiler_object_inline_stack_2843.actualStartTime = -1.1), - (JSCompiler_object_inline_stack_2843.selfBaseDuration = + ((JSCompiler_object_inline_stack_2844.actualDuration = -0), + (JSCompiler_object_inline_stack_2844.actualStartTime = -1.1), + (JSCompiler_object_inline_stack_2844.selfBaseDuration = componentStack.selfBaseDuration), - (JSCompiler_object_inline_stack_2843.treeBaseDuration = + (JSCompiler_object_inline_stack_2844.treeBaseDuration = componentStack.treeBaseDuration)), (workInProgress.deletions = null)) - : ((JSCompiler_object_inline_stack_2843 = createWorkInProgress( + : ((JSCompiler_object_inline_stack_2844 = createWorkInProgress( componentStack, - JSCompiler_object_inline_message_2841 + JSCompiler_object_inline_message_2842 )), - (JSCompiler_object_inline_stack_2843.subtreeFlags = + (JSCompiler_object_inline_stack_2844.subtreeFlags = componentStack.subtreeFlags & 65011712)), - null !== JSCompiler_object_inline_componentStack_2844 + null !== JSCompiler_object_inline_componentStack_2845 ? (nextPrimaryChildren = createWorkInProgress( - JSCompiler_object_inline_componentStack_2844, + JSCompiler_object_inline_componentStack_2845, nextPrimaryChildren )) : ((nextPrimaryChildren = createFiberFromFragment( @@ -11119,24 +11118,24 @@ __DEV__ && )), (nextPrimaryChildren.flags |= 2)), (nextPrimaryChildren.return = workInProgress), - (JSCompiler_object_inline_stack_2843.return = workInProgress), - (JSCompiler_object_inline_stack_2843.sibling = nextPrimaryChildren), - (workInProgress.child = JSCompiler_object_inline_stack_2843), - (JSCompiler_object_inline_stack_2843 = nextPrimaryChildren), + (JSCompiler_object_inline_stack_2844.return = workInProgress), + (JSCompiler_object_inline_stack_2844.sibling = nextPrimaryChildren), + (workInProgress.child = JSCompiler_object_inline_stack_2844), + (JSCompiler_object_inline_stack_2844 = nextPrimaryChildren), (nextPrimaryChildren = workInProgress.child), (nextFallbackChildren = current.child.memoizedState), null === nextFallbackChildren ? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes)) : ((componentStack = nextFallbackChildren.cachePool), null !== componentStack - ? ((JSCompiler_object_inline_componentStack_2844 = + ? ((JSCompiler_object_inline_componentStack_2845 = CacheContext._currentValue), (componentStack = componentStack.parent !== - JSCompiler_object_inline_componentStack_2844 + JSCompiler_object_inline_componentStack_2845 ? { - parent: JSCompiler_object_inline_componentStack_2844, - pool: JSCompiler_object_inline_componentStack_2844 + parent: JSCompiler_object_inline_componentStack_2845, + pool: JSCompiler_object_inline_componentStack_2845 } : componentStack)) : (componentStack = getSuspendedCache()), @@ -11147,35 +11146,35 @@ __DEV__ && (nextPrimaryChildren.memoizedState = nextFallbackChildren), (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree( current, - JSCompiler_object_inline_digest_2842, + JSCompiler_object_inline_digest_2843, renderLanes )), (workInProgress.memoizedState = SUSPENDED_MARKER), - JSCompiler_object_inline_stack_2843 + JSCompiler_object_inline_stack_2844 ); pushPrimaryTreeSuspenseHandler(workInProgress); - JSCompiler_object_inline_digest_2842 = current.child; - current = JSCompiler_object_inline_digest_2842.sibling; - JSCompiler_object_inline_digest_2842 = createWorkInProgress( - JSCompiler_object_inline_digest_2842, + JSCompiler_object_inline_digest_2843 = current.child; + current = JSCompiler_object_inline_digest_2843.sibling; + JSCompiler_object_inline_digest_2843 = createWorkInProgress( + JSCompiler_object_inline_digest_2843, { mode: "visible", - children: JSCompiler_object_inline_stack_2843.children + children: JSCompiler_object_inline_stack_2844.children } ); (workInProgress.mode & ConcurrentMode) === NoMode && - (JSCompiler_object_inline_digest_2842.lanes = renderLanes); - JSCompiler_object_inline_digest_2842.return = workInProgress; - JSCompiler_object_inline_digest_2842.sibling = null; + (JSCompiler_object_inline_digest_2843.lanes = renderLanes); + JSCompiler_object_inline_digest_2843.return = workInProgress; + JSCompiler_object_inline_digest_2843.sibling = null; null !== current && ((renderLanes = workInProgress.deletions), null === renderLanes ? ((workInProgress.deletions = [current]), (workInProgress.flags |= 16)) : renderLanes.push(current)); - workInProgress.child = JSCompiler_object_inline_digest_2842; + workInProgress.child = JSCompiler_object_inline_digest_2843; workInProgress.memoizedState = null; - return JSCompiler_object_inline_digest_2842; + return JSCompiler_object_inline_digest_2843; } function mountSuspensePrimaryChildren(workInProgress, primaryChildren) { primaryChildren = mountWorkInProgressOffscreenFiber( @@ -29007,11 +29006,11 @@ __DEV__ && }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-native-fb-f6fb1a07-20250723" !== isomorphicReactPackageVersion) + if ("19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.2.0-native-fb-f6fb1a07-20250723\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-native-fb-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -29048,10 +29047,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -29189,5 +29188,5 @@ __DEV__ && listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; - exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; + exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; })(); diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js index 7e9a223813..a4e07e2cc2 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<987465422a3c8669ee3e87c5ee069431>> */ /* @@ -17123,14 +17123,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_2004 = React.version; if ( - "19.2.0-native-fb-f6fb1a07-20250723" !== + "19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion$jscomp$inline_2004 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2004, - "19.2.0-native-fb-f6fb1a07-20250723" + "19.2.0-native-fb-4f34cc4a-20250724" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -17152,10 +17152,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2523 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2524 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17253,4 +17253,4 @@ exports.hydrateRoot = function (container, initialChildren, options) { listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js index 405765c08a..a835fedae2 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<1faf471b209222037d76afad6d50ef29>> + * @generated SignedSource<<201ce386f08a0993745350b476773407>> */ /* @@ -19081,14 +19081,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_2244 = React.version; if ( - "19.2.0-native-fb-f6fb1a07-20250723" !== + "19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion$jscomp$inline_2244 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2244, - "19.2.0-native-fb-f6fb1a07-20250723" + "19.2.0-native-fb-4f34cc4a-20250724" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -19110,10 +19110,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2251 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723", + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724", getLaneLabelMap: function () { for ( var map = new Map(), lane = 1, index$319 = 0; @@ -19226,4 +19226,4 @@ exports.hydrateRoot = function (container, initialChildren, options) { listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js index f26a22671e..8e96504411 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<3fcb77415d753f9861a08f285eb6486f>> + * @generated SignedSource<> */ /* @@ -955,11 +955,10 @@ __DEV__ && var fiber = workInProgress; workInProgress = fiber._debugOwner; var debugStack = fiber._debugStack; - workInProgress && - debugStack && - ("string" !== typeof debugStack && - (fiber._debugStack = debugStack = formatOwnerStack(debugStack)), - "" !== debugStack && (info += "\n" + debugStack)); + if (workInProgress && debugStack) { + var formattedStack = formatOwnerStack(debugStack); + "" !== formattedStack && (info += "\n" + formattedStack); + } } else if (null != workInProgress.debugStack) { var ownerStack = workInProgress.debugStack; (workInProgress = workInProgress.owner) && @@ -10795,24 +10794,24 @@ __DEV__ && return current; } function updateSuspenseComponent(current, workInProgress, renderLanes) { - var JSCompiler_object_inline_digest_2847; - var JSCompiler_object_inline_stack_2848 = workInProgress.pendingProps; + var JSCompiler_object_inline_digest_2848; + var JSCompiler_object_inline_stack_2849 = workInProgress.pendingProps; shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128); - var JSCompiler_object_inline_message_2846 = !1; + var JSCompiler_object_inline_message_2847 = !1; var didSuspend = 0 !== (workInProgress.flags & 128); - (JSCompiler_object_inline_digest_2847 = didSuspend) || - (JSCompiler_object_inline_digest_2847 = + (JSCompiler_object_inline_digest_2848 = didSuspend) || + (JSCompiler_object_inline_digest_2848 = null !== current && null === current.memoizedState ? !1 : 0 !== (suspenseStackCursor.current & ForceSuspenseFallback)); - JSCompiler_object_inline_digest_2847 && - ((JSCompiler_object_inline_message_2846 = !0), + JSCompiler_object_inline_digest_2848 && + ((JSCompiler_object_inline_message_2847 = !0), (workInProgress.flags &= -129)); - JSCompiler_object_inline_digest_2847 = 0 !== (workInProgress.flags & 32); + JSCompiler_object_inline_digest_2848 = 0 !== (workInProgress.flags & 32); workInProgress.flags &= -33; if (null === current) { if (isHydrating) { - JSCompiler_object_inline_message_2846 + JSCompiler_object_inline_message_2847 ? pushPrimaryTreeSuspenseHandler(workInProgress) : reuseSuspenseHandlerOnStack(workInProgress); (renderLanes = nextHydratableInstance) @@ -10825,18 +10824,18 @@ __DEV__ && ? current : null), null !== current && - ((JSCompiler_object_inline_digest_2847 = { + ((JSCompiler_object_inline_digest_2848 = { dehydrated: current, treeContext: getSuspendedTreeContext(), retryLane: 536870912, hydrationErrors: null }), (workInProgress.memoizedState = - JSCompiler_object_inline_digest_2847), - (JSCompiler_object_inline_digest_2847 = + JSCompiler_object_inline_digest_2848), + (JSCompiler_object_inline_digest_2848 = createFiberFromDehydratedFragment(current)), - (JSCompiler_object_inline_digest_2847.return = workInProgress), - (workInProgress.child = JSCompiler_object_inline_digest_2847), + (JSCompiler_object_inline_digest_2848.return = workInProgress), + (workInProgress.child = JSCompiler_object_inline_digest_2848), (hydrationParentFiber = workInProgress), (nextHydratableInstance = null))) : (current = null); @@ -10850,12 +10849,12 @@ __DEV__ && : (workInProgress.lanes = 536870912); return null; } - var nextPrimaryChildren = JSCompiler_object_inline_stack_2848.children, - nextFallbackChildren = JSCompiler_object_inline_stack_2848.fallback; - if (JSCompiler_object_inline_message_2846) + var nextPrimaryChildren = JSCompiler_object_inline_stack_2849.children, + nextFallbackChildren = JSCompiler_object_inline_stack_2849.fallback; + if (JSCompiler_object_inline_message_2847) return ( reuseSuspenseHandlerOnStack(workInProgress), - (JSCompiler_object_inline_stack_2848 = + (JSCompiler_object_inline_stack_2849 = mountSuspenseFallbackChildren( workInProgress, nextPrimaryChildren, @@ -10867,19 +10866,19 @@ __DEV__ && mountSuspenseOffscreenState(renderLanes)), (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree( current, - JSCompiler_object_inline_digest_2847, + JSCompiler_object_inline_digest_2848, renderLanes )), (workInProgress.memoizedState = SUSPENDED_MARKER), - JSCompiler_object_inline_stack_2848 + JSCompiler_object_inline_stack_2849 ); if ( "number" === - typeof JSCompiler_object_inline_stack_2848.unstable_expectedLoadTime + typeof JSCompiler_object_inline_stack_2849.unstable_expectedLoadTime ) return ( reuseSuspenseHandlerOnStack(workInProgress), - (JSCompiler_object_inline_stack_2848 = + (JSCompiler_object_inline_stack_2849 = mountSuspenseFallbackChildren( workInProgress, nextPrimaryChildren, @@ -10891,12 +10890,12 @@ __DEV__ && mountSuspenseOffscreenState(renderLanes)), (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree( current, - JSCompiler_object_inline_digest_2847, + JSCompiler_object_inline_digest_2848, renderLanes )), (workInProgress.memoizedState = SUSPENDED_MARKER), (workInProgress.lanes = 4194304), - JSCompiler_object_inline_stack_2848 + JSCompiler_object_inline_stack_2849 ); pushPrimaryTreeSuspenseHandler(workInProgress); return mountSuspensePrimaryChildren( @@ -10906,8 +10905,8 @@ __DEV__ && } var prevState = current.memoizedState; if (null !== prevState) { - var JSCompiler_object_inline_componentStack_2849 = prevState.dehydrated; - if (null !== JSCompiler_object_inline_componentStack_2849) { + var JSCompiler_object_inline_componentStack_2850 = prevState.dehydrated; + if (null !== JSCompiler_object_inline_componentStack_2850) { if (didSuspend) workInProgress.flags & 256 ? (pushPrimaryTreeSuspenseHandler(workInProgress), @@ -10924,13 +10923,13 @@ __DEV__ && (workInProgress = null)) : (reuseSuspenseHandlerOnStack(workInProgress), (nextPrimaryChildren = - JSCompiler_object_inline_stack_2848.fallback), + JSCompiler_object_inline_stack_2849.fallback), (nextFallbackChildren = workInProgress.mode), - (JSCompiler_object_inline_stack_2848 = + (JSCompiler_object_inline_stack_2849 = mountWorkInProgressOffscreenFiber( { mode: "visible", - children: JSCompiler_object_inline_stack_2848.children + children: JSCompiler_object_inline_stack_2849.children }, nextFallbackChildren )), @@ -10941,11 +10940,11 @@ __DEV__ && null )), (nextPrimaryChildren.flags |= 2), - (JSCompiler_object_inline_stack_2848.return = workInProgress), + (JSCompiler_object_inline_stack_2849.return = workInProgress), (nextPrimaryChildren.return = workInProgress), - (JSCompiler_object_inline_stack_2848.sibling = + (JSCompiler_object_inline_stack_2849.sibling = nextPrimaryChildren), - (workInProgress.child = JSCompiler_object_inline_stack_2848), + (workInProgress.child = JSCompiler_object_inline_stack_2849), (workInProgress.mode & ConcurrentMode) !== NoMode && reconcileChildFibers( workInProgress, @@ -10953,13 +10952,13 @@ __DEV__ && null, renderLanes ), - (JSCompiler_object_inline_stack_2848 = workInProgress.child), - (JSCompiler_object_inline_stack_2848.memoizedState = + (JSCompiler_object_inline_stack_2849 = workInProgress.child), + (JSCompiler_object_inline_stack_2849.memoizedState = mountSuspenseOffscreenState(renderLanes)), - (JSCompiler_object_inline_stack_2848.childLanes = + (JSCompiler_object_inline_stack_2849.childLanes = getRemainingWorkInPrimaryTree( current, - JSCompiler_object_inline_digest_2847, + JSCompiler_object_inline_digest_2848, renderLanes )), (workInProgress.memoizedState = SUSPENDED_MARKER), @@ -10968,45 +10967,45 @@ __DEV__ && (pushPrimaryTreeSuspenseHandler(workInProgress), warnIfHydrating(), isSuspenseInstanceFallback( - JSCompiler_object_inline_componentStack_2849 + JSCompiler_object_inline_componentStack_2850 )) ) { - JSCompiler_object_inline_digest_2847 = - JSCompiler_object_inline_componentStack_2849.nextSibling && - JSCompiler_object_inline_componentStack_2849.nextSibling.dataset; - if (JSCompiler_object_inline_digest_2847) { - nextPrimaryChildren = JSCompiler_object_inline_digest_2847.dgst; - var message = JSCompiler_object_inline_digest_2847.msg; - nextFallbackChildren = JSCompiler_object_inline_digest_2847.stck; - var componentStack = JSCompiler_object_inline_digest_2847.cstck; + JSCompiler_object_inline_digest_2848 = + JSCompiler_object_inline_componentStack_2850.nextSibling && + JSCompiler_object_inline_componentStack_2850.nextSibling.dataset; + if (JSCompiler_object_inline_digest_2848) { + nextPrimaryChildren = JSCompiler_object_inline_digest_2848.dgst; + var message = JSCompiler_object_inline_digest_2848.msg; + nextFallbackChildren = JSCompiler_object_inline_digest_2848.stck; + var componentStack = JSCompiler_object_inline_digest_2848.cstck; } - JSCompiler_object_inline_message_2846 = message; - JSCompiler_object_inline_digest_2847 = nextPrimaryChildren; - JSCompiler_object_inline_stack_2848 = nextFallbackChildren; - JSCompiler_object_inline_componentStack_2849 = componentStack; - nextPrimaryChildren = JSCompiler_object_inline_message_2846; - nextFallbackChildren = JSCompiler_object_inline_componentStack_2849; + JSCompiler_object_inline_message_2847 = message; + JSCompiler_object_inline_digest_2848 = nextPrimaryChildren; + JSCompiler_object_inline_stack_2849 = nextFallbackChildren; + JSCompiler_object_inline_componentStack_2850 = componentStack; + nextPrimaryChildren = JSCompiler_object_inline_message_2847; + nextFallbackChildren = JSCompiler_object_inline_componentStack_2850; nextPrimaryChildren = nextPrimaryChildren ? Error(nextPrimaryChildren) : Error( "The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering." ); nextPrimaryChildren.stack = - JSCompiler_object_inline_stack_2848 || ""; - nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2847; - JSCompiler_object_inline_digest_2847 = + JSCompiler_object_inline_stack_2849 || ""; + nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2848; + JSCompiler_object_inline_digest_2848 = void 0 === nextFallbackChildren ? null : nextFallbackChildren; - JSCompiler_object_inline_stack_2848 = { + JSCompiler_object_inline_stack_2849 = { value: nextPrimaryChildren, source: null, - stack: JSCompiler_object_inline_digest_2847 + stack: JSCompiler_object_inline_digest_2848 }; - "string" === typeof JSCompiler_object_inline_digest_2847 && + "string" === typeof JSCompiler_object_inline_digest_2848 && CapturedStacks.set( nextPrimaryChildren, - JSCompiler_object_inline_stack_2848 + JSCompiler_object_inline_stack_2849 ); - queueHydrationError(JSCompiler_object_inline_stack_2848); + queueHydrationError(JSCompiler_object_inline_stack_2849); workInProgress = retrySuspenseComponentWithoutHydrating( current, workInProgress, @@ -11020,35 +11019,35 @@ __DEV__ && renderLanes, !1 ), - (JSCompiler_object_inline_digest_2847 = + (JSCompiler_object_inline_digest_2848 = 0 !== (renderLanes & current.childLanes)), - didReceiveUpdate || JSCompiler_object_inline_digest_2847) + didReceiveUpdate || JSCompiler_object_inline_digest_2848) ) { - JSCompiler_object_inline_digest_2847 = workInProgressRoot; + JSCompiler_object_inline_digest_2848 = workInProgressRoot; if ( - null !== JSCompiler_object_inline_digest_2847 && - ((JSCompiler_object_inline_stack_2848 = getBumpedLaneForHydration( - JSCompiler_object_inline_digest_2847, + null !== JSCompiler_object_inline_digest_2848 && + ((JSCompiler_object_inline_stack_2849 = getBumpedLaneForHydration( + JSCompiler_object_inline_digest_2848, renderLanes )), - 0 !== JSCompiler_object_inline_stack_2848 && - JSCompiler_object_inline_stack_2848 !== prevState.retryLane) + 0 !== JSCompiler_object_inline_stack_2849 && + JSCompiler_object_inline_stack_2849 !== prevState.retryLane) ) throw ( - ((prevState.retryLane = JSCompiler_object_inline_stack_2848), + ((prevState.retryLane = JSCompiler_object_inline_stack_2849), enqueueConcurrentRenderForLane( current, - JSCompiler_object_inline_stack_2848 + JSCompiler_object_inline_stack_2849 ), scheduleUpdateOnFiber( - JSCompiler_object_inline_digest_2847, + JSCompiler_object_inline_digest_2848, current, - JSCompiler_object_inline_stack_2848 + JSCompiler_object_inline_stack_2849 ), SelectiveHydrationException) ); isSuspenseInstancePending( - JSCompiler_object_inline_componentStack_2849 + JSCompiler_object_inline_componentStack_2850 ) || renderDidSuspendDelayIfPossible(); workInProgress = retrySuspenseComponentWithoutHydrating( current, @@ -11057,14 +11056,14 @@ __DEV__ && ); } else isSuspenseInstancePending( - JSCompiler_object_inline_componentStack_2849 + JSCompiler_object_inline_componentStack_2850 ) ? ((workInProgress.flags |= 192), (workInProgress.child = current.child), (workInProgress = null)) : ((renderLanes = prevState.treeContext), (nextHydratableInstance = getNextHydratable( - JSCompiler_object_inline_componentStack_2849.nextSibling + JSCompiler_object_inline_componentStack_2850.nextSibling )), (hydrationParentFiber = workInProgress), (isHydrating = !0), @@ -11076,47 +11075,47 @@ __DEV__ && restoreSuspendedTreeContext(workInProgress, renderLanes), (workInProgress = mountSuspensePrimaryChildren( workInProgress, - JSCompiler_object_inline_stack_2848.children + JSCompiler_object_inline_stack_2849.children )), (workInProgress.flags |= 4096)); return workInProgress; } } - if (JSCompiler_object_inline_message_2846) + if (JSCompiler_object_inline_message_2847) return ( reuseSuspenseHandlerOnStack(workInProgress), - (nextPrimaryChildren = JSCompiler_object_inline_stack_2848.fallback), + (nextPrimaryChildren = JSCompiler_object_inline_stack_2849.fallback), (nextFallbackChildren = workInProgress.mode), (componentStack = current.child), - (JSCompiler_object_inline_componentStack_2849 = + (JSCompiler_object_inline_componentStack_2850 = componentStack.sibling), - (JSCompiler_object_inline_message_2846 = { + (JSCompiler_object_inline_message_2847 = { mode: "hidden", - children: JSCompiler_object_inline_stack_2848.children + children: JSCompiler_object_inline_stack_2849.children }), (nextFallbackChildren & ConcurrentMode) === NoMode && workInProgress.child !== componentStack - ? ((JSCompiler_object_inline_stack_2848 = workInProgress.child), - (JSCompiler_object_inline_stack_2848.childLanes = 0), - (JSCompiler_object_inline_stack_2848.pendingProps = - JSCompiler_object_inline_message_2846), + ? ((JSCompiler_object_inline_stack_2849 = workInProgress.child), + (JSCompiler_object_inline_stack_2849.childLanes = 0), + (JSCompiler_object_inline_stack_2849.pendingProps = + JSCompiler_object_inline_message_2847), workInProgress.mode & ProfileMode && - ((JSCompiler_object_inline_stack_2848.actualDuration = -0), - (JSCompiler_object_inline_stack_2848.actualStartTime = -1.1), - (JSCompiler_object_inline_stack_2848.selfBaseDuration = + ((JSCompiler_object_inline_stack_2849.actualDuration = -0), + (JSCompiler_object_inline_stack_2849.actualStartTime = -1.1), + (JSCompiler_object_inline_stack_2849.selfBaseDuration = componentStack.selfBaseDuration), - (JSCompiler_object_inline_stack_2848.treeBaseDuration = + (JSCompiler_object_inline_stack_2849.treeBaseDuration = componentStack.treeBaseDuration)), (workInProgress.deletions = null)) - : ((JSCompiler_object_inline_stack_2848 = createWorkInProgress( + : ((JSCompiler_object_inline_stack_2849 = createWorkInProgress( componentStack, - JSCompiler_object_inline_message_2846 + JSCompiler_object_inline_message_2847 )), - (JSCompiler_object_inline_stack_2848.subtreeFlags = + (JSCompiler_object_inline_stack_2849.subtreeFlags = componentStack.subtreeFlags & 65011712)), - null !== JSCompiler_object_inline_componentStack_2849 + null !== JSCompiler_object_inline_componentStack_2850 ? (nextPrimaryChildren = createWorkInProgress( - JSCompiler_object_inline_componentStack_2849, + JSCompiler_object_inline_componentStack_2850, nextPrimaryChildren )) : ((nextPrimaryChildren = createFiberFromFragment( @@ -11127,24 +11126,24 @@ __DEV__ && )), (nextPrimaryChildren.flags |= 2)), (nextPrimaryChildren.return = workInProgress), - (JSCompiler_object_inline_stack_2848.return = workInProgress), - (JSCompiler_object_inline_stack_2848.sibling = nextPrimaryChildren), - (workInProgress.child = JSCompiler_object_inline_stack_2848), - (JSCompiler_object_inline_stack_2848 = nextPrimaryChildren), + (JSCompiler_object_inline_stack_2849.return = workInProgress), + (JSCompiler_object_inline_stack_2849.sibling = nextPrimaryChildren), + (workInProgress.child = JSCompiler_object_inline_stack_2849), + (JSCompiler_object_inline_stack_2849 = nextPrimaryChildren), (nextPrimaryChildren = workInProgress.child), (nextFallbackChildren = current.child.memoizedState), null === nextFallbackChildren ? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes)) : ((componentStack = nextFallbackChildren.cachePool), null !== componentStack - ? ((JSCompiler_object_inline_componentStack_2849 = + ? ((JSCompiler_object_inline_componentStack_2850 = CacheContext._currentValue), (componentStack = componentStack.parent !== - JSCompiler_object_inline_componentStack_2849 + JSCompiler_object_inline_componentStack_2850 ? { - parent: JSCompiler_object_inline_componentStack_2849, - pool: JSCompiler_object_inline_componentStack_2849 + parent: JSCompiler_object_inline_componentStack_2850, + pool: JSCompiler_object_inline_componentStack_2850 } : componentStack)) : (componentStack = getSuspendedCache()), @@ -11155,35 +11154,35 @@ __DEV__ && (nextPrimaryChildren.memoizedState = nextFallbackChildren), (nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree( current, - JSCompiler_object_inline_digest_2847, + JSCompiler_object_inline_digest_2848, renderLanes )), (workInProgress.memoizedState = SUSPENDED_MARKER), - JSCompiler_object_inline_stack_2848 + JSCompiler_object_inline_stack_2849 ); pushPrimaryTreeSuspenseHandler(workInProgress); - JSCompiler_object_inline_digest_2847 = current.child; - current = JSCompiler_object_inline_digest_2847.sibling; - JSCompiler_object_inline_digest_2847 = createWorkInProgress( - JSCompiler_object_inline_digest_2847, + JSCompiler_object_inline_digest_2848 = current.child; + current = JSCompiler_object_inline_digest_2848.sibling; + JSCompiler_object_inline_digest_2848 = createWorkInProgress( + JSCompiler_object_inline_digest_2848, { mode: "visible", - children: JSCompiler_object_inline_stack_2848.children + children: JSCompiler_object_inline_stack_2849.children } ); (workInProgress.mode & ConcurrentMode) === NoMode && - (JSCompiler_object_inline_digest_2847.lanes = renderLanes); - JSCompiler_object_inline_digest_2847.return = workInProgress; - JSCompiler_object_inline_digest_2847.sibling = null; + (JSCompiler_object_inline_digest_2848.lanes = renderLanes); + JSCompiler_object_inline_digest_2848.return = workInProgress; + JSCompiler_object_inline_digest_2848.sibling = null; null !== current && ((renderLanes = workInProgress.deletions), null === renderLanes ? ((workInProgress.deletions = [current]), (workInProgress.flags |= 16)) : renderLanes.push(current)); - workInProgress.child = JSCompiler_object_inline_digest_2847; + workInProgress.child = JSCompiler_object_inline_digest_2848; workInProgress.memoizedState = null; - return JSCompiler_object_inline_digest_2847; + return JSCompiler_object_inline_digest_2848; } function mountSuspensePrimaryChildren(workInProgress, primaryChildren) { primaryChildren = mountWorkInProgressOffscreenFiber( @@ -29063,11 +29062,11 @@ __DEV__ && }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-native-fb-f6fb1a07-20250723" !== isomorphicReactPackageVersion) + if ("19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.2.0-native-fb-f6fb1a07-20250723\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-native-fb-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -29104,10 +29103,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -29561,7 +29560,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; + exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js index c81940baa4..f2f345c294 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<5b0baaab13ef01e3b3b1c97ddfb33b35>> */ /* @@ -17134,14 +17134,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_2005 = React.version; if ( - "19.2.0-native-fb-f6fb1a07-20250723" !== + "19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion$jscomp$inline_2005 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2005, - "19.2.0-native-fb-f6fb1a07-20250723" + "19.2.0-native-fb-4f34cc4a-20250724" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -17163,10 +17163,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2526 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2527 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17417,4 +17417,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js index 386cbc76e0..6556c7f031 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<70e933310e78afbaac8cb79049727603>> + * @generated SignedSource<<0efa130b0c81e8a43c1bbaba338e429b>> */ /* @@ -19096,14 +19096,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_2245 = React.version; if ( - "19.2.0-native-fb-f6fb1a07-20250723" !== + "19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion$jscomp$inline_2245 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2245, - "19.2.0-native-fb-f6fb1a07-20250723" + "19.2.0-native-fb-4f34cc4a-20250724" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -19125,10 +19125,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2252 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723", + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724", getLaneLabelMap: function () { for ( var map = new Map(), lane = 1, index$319 = 0; @@ -19394,7 +19394,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js index 495611aaae..cdc96369f9 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js @@ -7,13 +7,13 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<> */ "use strict"; __DEV__ && (function () { - function JSCompiler_object_inline_createNodeMock_1158() { + function JSCompiler_object_inline_createNodeMock_1159() { return null; } function findHook(fiber, id) { @@ -1810,11 +1810,10 @@ __DEV__ && var fiber = workInProgress; workInProgress = fiber._debugOwner; var debugStack = fiber._debugStack; - workInProgress && - debugStack && - ("string" !== typeof debugStack && - (fiber._debugStack = debugStack = formatOwnerStack(debugStack)), - "" !== debugStack && (info += "\n" + debugStack)); + if (workInProgress && debugStack) { + var formattedStack = formatOwnerStack(debugStack); + "" !== formattedStack && (info += "\n" + formattedStack); + } } else if (null != workInProgress.debugStack) { var ownerStack = workInProgress.debugStack; (workInProgress = workInProgress.owner) && @@ -15727,10 +15726,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15752,7 +15751,7 @@ __DEV__ && exports._Scheduler = Scheduler; exports.act = act; exports.create = function (element, options) { - var createNodeMock = JSCompiler_object_inline_createNodeMock_1158, + var createNodeMock = JSCompiler_object_inline_createNodeMock_1159, isConcurrent = !1, isStrictMode = !1; "object" === typeof options && @@ -15875,5 +15874,5 @@ __DEV__ && flushSyncWorkAcrossRoots_impl(0, !0)); } }; - exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; + exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; })(); diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js index 8d4a670019..613a435a96 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<0257c09cd3a9323cf2c6e8c6a069fa71>> */ "use strict"; @@ -9907,10 +9907,10 @@ function wrapFiber(fiber) { } var internals$jscomp$inline_1434 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1435 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -10046,4 +10046,4 @@ exports.unstable_batchedUpdates = function (fn, a) { flushSyncWorkAcrossRoots_impl(0, !0)); } }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js index 6a418dcc4f..dca104f149 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<2d55759ada6ec8c721947c831b1a5f4d>> + * @generated SignedSource<<90294a300cba460b3c1750bf6914c73b>> */ "use strict"; @@ -10527,10 +10527,10 @@ function wrapFiber(fiber) { } var internals$jscomp$inline_1241 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723", + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724", getLaneLabelMap: function () { for ( var map = new Map(), lane = 1, index$143 = 0; @@ -10681,4 +10681,4 @@ exports.unstable_batchedUpdates = function (fn, a) { flushSyncWorkAcrossRoots_impl(0, !0)); } }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js index c1002c8bda..e36f083e5f 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<216c5c3584563fb41316ef01f12b2f4a>> + * @generated SignedSource<> */ "use strict"; @@ -1413,7 +1413,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; + exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js index ca34a2d073..6335c3373a 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<03883779e3596fd278c7571ff94420c3>> */ "use strict"; @@ -589,4 +589,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js index cd0623b212..5ea62d376a 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<75d42f00ce265a88d37b045fa5c5b277>> + * @generated SignedSource<<750b0c7b7dbe8def93936fd6902e139f>> */ "use strict"; @@ -593,7 +593,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-native-fb-f6fb1a07-20250723"; +exports.version = "19.2.0-native-fb-4f34cc4a-20250724"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION index 7a8a6c1029..a476ff49b3 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION @@ -1 +1 @@ -f6fb1a07a5fda2aa436f6ddf9a31025945cd67b3 +4f34cc4a2e1198493375867d1876509ae9771aee diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js index 8e34877ad8..867040b44e 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<593e083f91d6ec0feb5dab396c79afcc>> */ "use strict"; @@ -667,11 +667,10 @@ __DEV__ && var fiber = workInProgress; workInProgress = fiber._debugOwner; var debugStack = fiber._debugStack; - workInProgress && - debugStack && - ("string" !== typeof debugStack && - (fiber._debugStack = debugStack = formatOwnerStack(debugStack)), - "" !== debugStack && (info += "\n" + debugStack)); + if (workInProgress && debugStack) { + var formattedStack = formatOwnerStack(debugStack); + "" !== formattedStack && (info += "\n" + formattedStack); + } } else if (null != workInProgress.debugStack) { var ownerStack = workInProgress.debugStack; (workInProgress = workInProgress.owner) && @@ -19226,10 +19225,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js index 10af1dcf96..21841bca1d 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<803eb08f7f5ab19bdf6acc5f8d522557>> + * @generated SignedSource<> */ "use strict"; @@ -11011,10 +11011,10 @@ batchedUpdatesImpl = function (fn, a) { var roots = new Map(), internals$jscomp$inline_1237 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; null !== extraDevToolsConfig && (internals$jscomp$inline_1237.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js index 6f56cf56a7..78a8d4b7c8 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<591f0e0efce32d82b7b886d0a101da9c>> + * @generated SignedSource<<960ec2c4c09f0d0068b4d2c0ee26d26c>> */ "use strict"; @@ -12940,10 +12940,10 @@ batchedUpdatesImpl = function (fn, a) { var roots = new Map(), internals$jscomp$inline_1472 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; null !== extraDevToolsConfig && (internals$jscomp$inline_1472.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js index e1f1760226..b8bfeba511 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<622eac0126e07dfe728900caacce4f30>> + * @generated SignedSource<<9f9312bcbe3167eae88f9f35abd64d47>> */ "use strict"; @@ -662,11 +662,10 @@ __DEV__ && var fiber = workInProgress; workInProgress = fiber._debugOwner; var debugStack = fiber._debugStack; - workInProgress && - debugStack && - ("string" !== typeof debugStack && - (fiber._debugStack = debugStack = formatOwnerStack(debugStack)), - "" !== debugStack && (info += "\n" + debugStack)); + if (workInProgress && debugStack) { + var formattedStack = formatOwnerStack(debugStack); + "" !== formattedStack && (info += "\n" + formattedStack); + } } else if (null != workInProgress.debugStack) { var ownerStack = workInProgress.debugStack; (workInProgress = workInProgress.owner) && @@ -19584,11 +19583,11 @@ __DEV__ && shouldSuspendImpl = newShouldSuspendImpl; }; var isomorphicReactPackageVersion = React.version; - if ("19.2.0-native-fb-f6fb1a07-20250723" !== isomorphicReactPackageVersion) + if ("19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-native-renderer: 19.2.0-native-fb-f6fb1a07-20250723\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-native-renderer: 19.2.0-native-fb-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch") ); if ( "function" !== @@ -19614,10 +19613,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js index 3528154a20..6fb4c102d6 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<08aa1d49687bd73a29245a697e88d74b>> */ "use strict"; @@ -11237,11 +11237,11 @@ function updateContainer(element, container, parentComponent, callback) { return lane; } var isomorphicReactPackageVersion = React.version; -if ("19.2.0-native-fb-f6fb1a07-20250723" !== isomorphicReactPackageVersion) +if ("19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-native-renderer: 19.2.0-native-fb-f6fb1a07-20250723\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-native-renderer: 19.2.0-native-fb-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch") ); if ( "function" !== @@ -11291,10 +11291,10 @@ batchedUpdatesImpl = function (fn, a) { var roots = new Map(), internals$jscomp$inline_1295 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; null !== extraDevToolsConfig && (internals$jscomp$inline_1295.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js index 553629c8f0..014e349c4e 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<7d5fb33703745aa1a0ce3f33e6a37f2d>> + * @generated SignedSource<<7186e4ab7f259938c9a88ca4c77bc165>> */ "use strict"; @@ -13155,11 +13155,11 @@ function updateContainer(element, container, parentComponent, callback) { return lane; } var isomorphicReactPackageVersion = React.version; -if ("19.2.0-native-fb-f6fb1a07-20250723" !== isomorphicReactPackageVersion) +if ("19.2.0-native-fb-4f34cc4a-20250724" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-native-renderer: 19.2.0-native-fb-f6fb1a07-20250723\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-native-renderer: 19.2.0-native-fb-4f34cc4a-20250724\nLearn more: https://react.dev/warnings/version-mismatch") ); if ( "function" !== @@ -13209,10 +13209,10 @@ batchedUpdatesImpl = function (fn, a) { var roots = new Map(), internals$jscomp$inline_1530 = { bundleType: 0, - version: "19.2.0-native-fb-f6fb1a07-20250723", + version: "19.2.0-native-fb-4f34cc4a-20250724", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-f6fb1a07-20250723" + reconcilerVersion: "19.2.0-native-fb-4f34cc4a-20250724" }; null !== extraDevToolsConfig && (internals$jscomp$inline_1530.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/tools/eslint-plugin-react-hooks/package.json b/compiled-rn/facebook-fbsource/xplat/js/tools/eslint-plugin-react-hooks/package.json index 7f6b342dcb..64d42afc86 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/tools/eslint-plugin-react-hooks/package.json +++ b/compiled-rn/facebook-fbsource/xplat/js/tools/eslint-plugin-react-hooks/package.json @@ -1,7 +1,7 @@ { "name": "eslint-plugin-react-hooks", "description": "ESLint rules for React Hooks", - "version": "0.0.0-experimental-f6fb1a07-20250723", + "version": "0.0.0-experimental-4f34cc4a-20250724", "repository": { "type": "git", "url": "https://github.com/facebook/react.git",