From 654531ffbad8b0fa45677957c140550d42cc24ee Mon Sep 17 00:00:00 2001 From: sebmarkbage Date: Thu, 14 Nov 2024 20:58:53 -0800 Subject: [PATCH] Unify RootDidNotComplete and RootSuspendedWithDelay exit path (#31547) Also rename RootDidNotComplete to RootSuspendedAtTheShell since it specifically means something suspended in the shell during hydration. DiffTrain build for [8a41d6ceab8af642d8ab9ed04fc744a699f4ac09](https://github.com/facebook/react/commit/8a41d6ceab8af642d8ab9ed04fc744a699f4ac09) --- 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 | 48 +-- .../react-dom/cjs/ReactDOMClient-prod.js | 338 +++++++++-------- .../react-dom/cjs/ReactDOMClient-profiling.js | 344 +++++++++--------- .../react-dom/cjs/ReactDOMProfiling-dev.js | 48 +-- .../react-dom/cjs/ReactDOMProfiling-prod.js | 338 +++++++++-------- .../cjs/ReactDOMProfiling-profiling.js | 344 +++++++++--------- .../cjs/ReactTestRenderer-dev.js | 44 +-- .../cjs/ReactTestRenderer-prod.js | 58 ++- .../cjs/ReactTestRenderer-profiling.js | 64 ++-- .../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 | 42 +-- .../implementations/ReactFabric-prod.fb.js | 92 +++-- .../ReactFabric-profiling.fb.js | 102 +++--- .../ReactNativeRenderer-dev.fb.js | 46 +-- .../ReactNativeRenderer-prod.fb.js | 96 +++-- .../ReactNativeRenderer-profiling.fb.js | 106 +++--- 23 files changed, 1009 insertions(+), 1129 deletions(-) diff --git a/compiled-rn/VERSION_NATIVE_FB b/compiled-rn/VERSION_NATIVE_FB index 58912d632bfbe..a2b83cb9b7a8d 100644 --- a/compiled-rn/VERSION_NATIVE_FB +++ b/compiled-rn/VERSION_NATIVE_FB @@ -1 +1 @@ -19.0.0-native-fb-63cde684-20241114 \ No newline at end of file +19.0.0-native-fb-8a41d6ce-20241114 \ 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 f3f5499042b78..a67cebddfa3bd 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<<8db1f8874a2129441c0608ba9c2990d8>> + * @generated SignedSource<> */ "use strict"; @@ -420,5 +420,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-native-fb-63cde684-20241114"; + exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; })(); 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 134c4848203f7..30cb299edd667 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<<83fb924d282a538071fd7ba1e0da3445>> + * @generated SignedSource<> */ "use strict"; @@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; 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 134c4848203f7..30cb299edd667 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<<83fb924d282a538071fd7ba1e0da3445>> + * @generated SignedSource<> */ "use strict"; @@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; 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 03d9acd00e96f..4cab86c5a5471 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<<08dd0acbab1ea61c3d23358abf5fa96d>> + * @generated SignedSource<> */ /* @@ -15030,14 +15030,7 @@ __DEV__ && !shouldTimeSlice && markRootSuspended(root, lanes, 0, !1); break; - } else if (exitStatus === RootDidNotComplete) - markRootSuspended( - root, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root.current.alternate; if ( renderWasConcurrent && @@ -15111,16 +15104,15 @@ __DEV__ && case RootFatalErrored: throw Error("Root did not complete. This is a bug in React."); case RootSuspendedWithDelay: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case RootSuspendedAtTheShell: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case RootErrored: workInProgressRootRecoverableErrors = null; break; @@ -15537,7 +15529,7 @@ __DEV__ && switch (workInProgressSuspendedReason) { case SuspendedOnHydration: resetWorkInProgressStack(); - memoizedUpdaters = RootDidNotComplete; + memoizedUpdaters = RootSuspendedAtTheShell; break a; case SuspendedOnImmediate: case SuspendedOnData: @@ -15717,7 +15709,7 @@ __DEV__ && break; case SuspendedOnHydration: resetWorkInProgressStack(); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; break a; default: throw Error( @@ -15955,7 +15947,7 @@ __DEV__ && } workInProgress = unitOfWork = next; } while (null !== unitOfWork); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; workInProgress = null; } function commitRoot( @@ -24759,8 +24751,8 @@ __DEV__ && RootErrored = 2, RootSuspended = 3, RootSuspendedWithDelay = 4, + RootSuspendedAtTheShell = 6, RootCompleted = 5, - RootDidNotComplete = 6, executionContext = NoContext, workInProgressRoot = null, workInProgress = null, @@ -25352,11 +25344,11 @@ __DEV__ && }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-native-fb-63cde684-20241114" !== isomorphicReactPackageVersion) + if ("19.0.0-native-fb-8a41d6ce-20241114" !== 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.0.0-native-fb-63cde684-20241114\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-native-fb-8a41d6ce-20241114\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -25393,11 +25385,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -25541,5 +25533,5 @@ __DEV__ && listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; - exports.version = "19.0.0-native-fb-63cde684-20241114"; + exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; })(); 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 10b48859b8c63..59a8d592dceed 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<<383cd4c74944d46d35e2103fce56eba2>> + * @generated SignedSource<<85881c516b5a54f437a6a23f57e458bb>> */ /* @@ -2071,19 +2071,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) { } var isInputEventSupported = !1; if (canUseDOM) { - var JSCompiler_inline_result$jscomp$294; + var JSCompiler_inline_result$jscomp$293; if (canUseDOM) { - var isSupported$jscomp$inline_427 = "oninput" in document; - if (!isSupported$jscomp$inline_427) { - var element$jscomp$inline_428 = document.createElement("div"); - element$jscomp$inline_428.setAttribute("oninput", "return;"); - isSupported$jscomp$inline_427 = - "function" === typeof element$jscomp$inline_428.oninput; + var isSupported$jscomp$inline_426 = "oninput" in document; + if (!isSupported$jscomp$inline_426) { + var element$jscomp$inline_427 = document.createElement("div"); + element$jscomp$inline_427.setAttribute("oninput", "return;"); + isSupported$jscomp$inline_426 = + "function" === typeof element$jscomp$inline_427.oninput; } - JSCompiler_inline_result$jscomp$294 = isSupported$jscomp$inline_427; - } else JSCompiler_inline_result$jscomp$294 = !1; + JSCompiler_inline_result$jscomp$293 = isSupported$jscomp$inline_426; + } else JSCompiler_inline_result$jscomp$293 = !1; isInputEventSupported = - JSCompiler_inline_result$jscomp$294 && + JSCompiler_inline_result$jscomp$293 && (!document.documentMode || 9 < document.documentMode); } function stopWatchingForValueChange() { @@ -10818,14 +10818,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -10895,16 +10888,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error(formatProdErrorMessage(345)); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -11276,8 +11268,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); exitStatus = workInProgressRootExitStatus; break; - } catch (thrownValue$175) { - handleThrow(root, thrownValue$175); + } catch (thrownValue$174) { + handleThrow(root, thrownValue$174); } while (1); lanes && root.shellSuspendCounter++; @@ -11390,8 +11382,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$177) { - handleThrow(root, thrownValue$177); + } catch (thrownValue$176) { + handleThrow(root, thrownValue$176); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -11709,7 +11701,7 @@ function releaseRootPooledCache(root, remainingLanes) { } function flushPassiveEffects() { if (null !== rootWithPendingPassiveEffects) { - var root$181 = rootWithPendingPassiveEffects, + var root$180 = rootWithPendingPassiveEffects, remainingLanes = pendingPassiveEffectsRemainingLanes; pendingPassiveEffectsRemainingLanes = 0; var renderPriority = lanesToEventPriority(pendingPassiveEffectsLanes), @@ -11748,7 +11740,7 @@ function flushPassiveEffects() { } finally { (ReactDOMSharedInternals.p = previousPriority), (ReactSharedInternals.T = prevTransition), - releaseRootPooledCache(root$181, remainingLanes); + releaseRootPooledCache(root$180, remainingLanes); } } return !1; @@ -11892,14 +11884,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { isFlushingWork = !0; do { var didPerformSomeWork = !1; - for (var root$183 = firstScheduledRoot; null !== root$183; ) { - if (!onlyLegacy || 0 === root$183.tag) + for (var root$182 = firstScheduledRoot; null !== root$182; ) { + if (!onlyLegacy || 0 === root$182.tag) if (0 !== syncTransitionLanes) { - var pendingLanes = root$183.pendingLanes; + var pendingLanes = root$182.pendingLanes; if (0 === pendingLanes) var JSCompiler_inline_result = 0; else { - var suspendedLanes = root$183.suspendedLanes, - pingedLanes = root$183.pingedLanes; + var suspendedLanes = root$182.suspendedLanes, + pingedLanes = root$182.pingedLanes; JSCompiler_inline_result = (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1; JSCompiler_inline_result &= @@ -11913,18 +11905,18 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { } 0 !== JSCompiler_inline_result && ((didPerformSomeWork = !0), - performSyncWorkOnRoot(root$183, JSCompiler_inline_result)); + performSyncWorkOnRoot(root$182, JSCompiler_inline_result)); } else (JSCompiler_inline_result = workInProgressRootRenderLanes), (JSCompiler_inline_result = getNextLanes( - root$183, - root$183 === workInProgressRoot ? JSCompiler_inline_result : 0 + root$182, + root$182 === workInProgressRoot ? JSCompiler_inline_result : 0 )), 0 === (JSCompiler_inline_result & 3) || - checkIfRootIsPrerendering(root$183, JSCompiler_inline_result) || + checkIfRootIsPrerendering(root$182, JSCompiler_inline_result) || ((didPerformSomeWork = !0), - performSyncWorkOnRoot(root$183, JSCompiler_inline_result)); - root$183 = root$183.next; + performSyncWorkOnRoot(root$182, JSCompiler_inline_result)); + root$182 = root$182.next; } } while (didPerformSomeWork); isFlushingWork = !1; @@ -12153,20 +12145,20 @@ function extractEvents$1( } } for ( - var i$jscomp$inline_1455 = 0; - i$jscomp$inline_1455 < simpleEventPluginEvents.length; - i$jscomp$inline_1455++ + var i$jscomp$inline_1454 = 0; + i$jscomp$inline_1454 < simpleEventPluginEvents.length; + i$jscomp$inline_1454++ ) { - var eventName$jscomp$inline_1456 = - simpleEventPluginEvents[i$jscomp$inline_1455], - domEventName$jscomp$inline_1457 = - eventName$jscomp$inline_1456.toLowerCase(), - capitalizedEvent$jscomp$inline_1458 = - eventName$jscomp$inline_1456[0].toUpperCase() + - eventName$jscomp$inline_1456.slice(1); + var eventName$jscomp$inline_1455 = + simpleEventPluginEvents[i$jscomp$inline_1454], + domEventName$jscomp$inline_1456 = + eventName$jscomp$inline_1455.toLowerCase(), + capitalizedEvent$jscomp$inline_1457 = + eventName$jscomp$inline_1455[0].toUpperCase() + + eventName$jscomp$inline_1455.slice(1); registerSimpleEvent( - domEventName$jscomp$inline_1457, - "on" + capitalizedEvent$jscomp$inline_1458 + domEventName$jscomp$inline_1456, + "on" + capitalizedEvent$jscomp$inline_1457 ); } registerSimpleEvent(ANIMATION_END, "onAnimationEnd"); @@ -13349,34 +13341,34 @@ function setInitialProperties(domElement, tag, props) { defaultChecked = null; for (hasSrc in props) if (props.hasOwnProperty(hasSrc)) { - var propValue$197 = props[hasSrc]; - if (null != propValue$197) + var propValue$196 = props[hasSrc]; + if (null != propValue$196) switch (hasSrc) { case "name": - hasSrcSet = propValue$197; + hasSrcSet = propValue$196; break; case "type": - propValue = propValue$197; + propValue = propValue$196; break; case "checked": - checked = propValue$197; + checked = propValue$196; break; case "defaultChecked": - defaultChecked = propValue$197; + defaultChecked = propValue$196; break; case "value": - propKey = propValue$197; + propKey = propValue$196; break; case "defaultValue": - defaultValue = propValue$197; + defaultValue = propValue$196; break; case "children": case "dangerouslySetInnerHTML": - if (null != propValue$197) + if (null != propValue$196) throw Error(formatProdErrorMessage(137, tag)); break; default: - setProp(domElement, tag, hasSrc, propValue$197, props, null); + setProp(domElement, tag, hasSrc, propValue$196, props, null); } } initInput( @@ -13513,14 +13505,14 @@ function setInitialProperties(domElement, tag, props) { return; default: if (isCustomElement(tag)) { - for (propValue$197 in props) - props.hasOwnProperty(propValue$197) && - ((hasSrc = props[propValue$197]), + for (propValue$196 in props) + props.hasOwnProperty(propValue$196) && + ((hasSrc = props[propValue$196]), void 0 !== hasSrc && setPropOnCustomElement( domElement, tag, - propValue$197, + propValue$196, hasSrc, props, void 0 @@ -13568,14 +13560,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp(domElement, tag, propKey, null, nextProps, lastProp); } } - for (var propKey$214 in nextProps) { - var propKey = nextProps[propKey$214]; - lastProp = lastProps[propKey$214]; + for (var propKey$213 in nextProps) { + var propKey = nextProps[propKey$213]; + lastProp = lastProps[propKey$213]; if ( - nextProps.hasOwnProperty(propKey$214) && + nextProps.hasOwnProperty(propKey$213) && (null != propKey || null != lastProp) ) - switch (propKey$214) { + switch (propKey$213) { case "type": type = propKey; break; @@ -13604,7 +13596,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp( domElement, tag, - propKey$214, + propKey$213, propKey, nextProps, lastProp @@ -13623,7 +13615,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ); return; case "select": - propKey = value = defaultValue = propKey$214 = null; + propKey = value = defaultValue = propKey$213 = null; for (type in lastProps) if ( ((lastDefaultValue = lastProps[type]), @@ -13654,7 +13646,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ) switch (name) { case "value": - propKey$214 = type; + propKey$213 = type; break; case "defaultValue": defaultValue = type; @@ -13675,15 +13667,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) { tag = defaultValue; lastProps = value; nextProps = propKey; - null != propKey$214 - ? updateOptions(domElement, !!lastProps, propKey$214, !1) + null != propKey$213 + ? updateOptions(domElement, !!lastProps, propKey$213, !1) : !!nextProps !== !!lastProps && (null != tag ? updateOptions(domElement, !!lastProps, tag, !0) : updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1)); return; case "textarea": - propKey = propKey$214 = null; + propKey = propKey$213 = null; for (defaultValue in lastProps) if ( ((name = lastProps[defaultValue]), @@ -13707,7 +13699,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ) switch (value) { case "value": - propKey$214 = name; + propKey$213 = name; break; case "defaultValue": propKey = name; @@ -13721,17 +13713,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) { name !== type && setProp(domElement, tag, value, name, nextProps, type); } - updateTextarea(domElement, propKey$214, propKey); + updateTextarea(domElement, propKey$213, propKey); return; case "option": - for (var propKey$230 in lastProps) + for (var propKey$229 in lastProps) if ( - ((propKey$214 = lastProps[propKey$230]), - lastProps.hasOwnProperty(propKey$230) && - null != propKey$214 && - !nextProps.hasOwnProperty(propKey$230)) + ((propKey$213 = lastProps[propKey$229]), + lastProps.hasOwnProperty(propKey$229) && + null != propKey$213 && + !nextProps.hasOwnProperty(propKey$229)) ) - switch (propKey$230) { + switch (propKey$229) { case "selected": domElement.selected = !1; break; @@ -13739,33 +13731,33 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp( domElement, tag, - propKey$230, + propKey$229, null, nextProps, - propKey$214 + propKey$213 ); } for (lastDefaultValue in nextProps) if ( - ((propKey$214 = nextProps[lastDefaultValue]), + ((propKey$213 = nextProps[lastDefaultValue]), (propKey = lastProps[lastDefaultValue]), nextProps.hasOwnProperty(lastDefaultValue) && - propKey$214 !== propKey && - (null != propKey$214 || null != propKey)) + propKey$213 !== propKey && + (null != propKey$213 || null != propKey)) ) switch (lastDefaultValue) { case "selected": domElement.selected = - propKey$214 && - "function" !== typeof propKey$214 && - "symbol" !== typeof propKey$214; + propKey$213 && + "function" !== typeof propKey$213 && + "symbol" !== typeof propKey$213; break; default: setProp( domElement, tag, lastDefaultValue, - propKey$214, + propKey$213, nextProps, propKey ); @@ -13786,24 +13778,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) { case "track": case "wbr": case "menuitem": - for (var propKey$235 in lastProps) - (propKey$214 = lastProps[propKey$235]), - lastProps.hasOwnProperty(propKey$235) && - null != propKey$214 && - !nextProps.hasOwnProperty(propKey$235) && - setProp(domElement, tag, propKey$235, null, nextProps, propKey$214); + for (var propKey$234 in lastProps) + (propKey$213 = lastProps[propKey$234]), + lastProps.hasOwnProperty(propKey$234) && + null != propKey$213 && + !nextProps.hasOwnProperty(propKey$234) && + setProp(domElement, tag, propKey$234, null, nextProps, propKey$213); for (checked in nextProps) if ( - ((propKey$214 = nextProps[checked]), + ((propKey$213 = nextProps[checked]), (propKey = lastProps[checked]), nextProps.hasOwnProperty(checked) && - propKey$214 !== propKey && - (null != propKey$214 || null != propKey)) + propKey$213 !== propKey && + (null != propKey$213 || null != propKey)) ) switch (checked) { case "children": case "dangerouslySetInnerHTML": - if (null != propKey$214) + if (null != propKey$213) throw Error(formatProdErrorMessage(137, tag)); break; default: @@ -13811,7 +13803,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { domElement, tag, checked, - propKey$214, + propKey$213, nextProps, propKey ); @@ -13819,49 +13811,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) { return; default: if (isCustomElement(tag)) { - for (var propKey$240 in lastProps) - (propKey$214 = lastProps[propKey$240]), - lastProps.hasOwnProperty(propKey$240) && - void 0 !== propKey$214 && - !nextProps.hasOwnProperty(propKey$240) && + for (var propKey$239 in lastProps) + (propKey$213 = lastProps[propKey$239]), + lastProps.hasOwnProperty(propKey$239) && + void 0 !== propKey$213 && + !nextProps.hasOwnProperty(propKey$239) && setPropOnCustomElement( domElement, tag, - propKey$240, + propKey$239, void 0, nextProps, - propKey$214 + propKey$213 ); for (defaultChecked in nextProps) - (propKey$214 = nextProps[defaultChecked]), + (propKey$213 = nextProps[defaultChecked]), (propKey = lastProps[defaultChecked]), !nextProps.hasOwnProperty(defaultChecked) || - propKey$214 === propKey || - (void 0 === propKey$214 && void 0 === propKey) || + propKey$213 === propKey || + (void 0 === propKey$213 && void 0 === propKey) || setPropOnCustomElement( domElement, tag, defaultChecked, - propKey$214, + propKey$213, nextProps, propKey ); return; } } - for (var propKey$245 in lastProps) - (propKey$214 = lastProps[propKey$245]), - lastProps.hasOwnProperty(propKey$245) && - null != propKey$214 && - !nextProps.hasOwnProperty(propKey$245) && - setProp(domElement, tag, propKey$245, null, nextProps, propKey$214); + for (var propKey$244 in lastProps) + (propKey$213 = lastProps[propKey$244]), + lastProps.hasOwnProperty(propKey$244) && + null != propKey$213 && + !nextProps.hasOwnProperty(propKey$244) && + setProp(domElement, tag, propKey$244, null, nextProps, propKey$213); for (lastProp in nextProps) - (propKey$214 = nextProps[lastProp]), + (propKey$213 = nextProps[lastProp]), (propKey = lastProps[lastProp]), !nextProps.hasOwnProperty(lastProp) || - propKey$214 === propKey || - (null == propKey$214 && null == propKey) || - setProp(domElement, tag, lastProp, propKey$214, nextProps, propKey); + propKey$213 === propKey || + (null == propKey$213 && null == propKey) || + setProp(domElement, tag, lastProp, propKey$213, nextProps, propKey); } var eventsEnabled = null, selectionInformation = null; @@ -14401,26 +14393,26 @@ function getResource(type, currentProps, pendingProps, currentResource) { "string" === typeof pendingProps.precedence ) { type = getStyleKey(pendingProps.href); - var styles$253 = getResourcesFromRoot( + var styles$252 = getResourcesFromRoot( JSCompiler_inline_result ).hoistableStyles, - resource$254 = styles$253.get(type); - resource$254 || + resource$253 = styles$252.get(type); + resource$253 || ((JSCompiler_inline_result = JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result), - (resource$254 = { + (resource$253 = { type: "stylesheet", instance: null, count: 0, state: { loading: 0, preload: null } }), - styles$253.set(type, resource$254), - (styles$253 = JSCompiler_inline_result.querySelector( + styles$252.set(type, resource$253), + (styles$252 = JSCompiler_inline_result.querySelector( getStylesheetSelectorFromKey(type) )) && - !styles$253._p && - ((resource$254.instance = styles$253), - (resource$254.state.loading = 5)), + !styles$252._p && + ((resource$253.instance = styles$252), + (resource$253.state.loading = 5)), preloadPropsMap.has(type) || ((pendingProps = { rel: "preload", @@ -14433,16 +14425,16 @@ function getResource(type, currentProps, pendingProps, currentResource) { referrerPolicy: pendingProps.referrerPolicy }), preloadPropsMap.set(type, pendingProps), - styles$253 || + styles$252 || preloadStylesheet( JSCompiler_inline_result, type, pendingProps, - resource$254.state + resource$253.state ))); if (currentProps && null === currentResource) throw Error(formatProdErrorMessage(528, "")); - return resource$254; + return resource$253; } if (currentProps && null !== currentResource) throw Error(formatProdErrorMessage(529, "")); @@ -14539,37 +14531,37 @@ function acquireResource(hoistableRoot, resource, props) { return (resource.instance = instance); case "stylesheet": styleProps = getStyleKey(props.href); - var instance$259 = hoistableRoot.querySelector( + var instance$258 = hoistableRoot.querySelector( getStylesheetSelectorFromKey(styleProps) ); - if (instance$259) + if (instance$258) return ( (resource.state.loading |= 4), - (resource.instance = instance$259), - markNodeAsHoistable(instance$259), - instance$259 + (resource.instance = instance$258), + markNodeAsHoistable(instance$258), + instance$258 ); instance = stylesheetPropsFromRawProps(props); (styleProps = preloadPropsMap.get(styleProps)) && adoptPreloadPropsForStylesheet(instance, styleProps); - instance$259 = ( + instance$258 = ( hoistableRoot.ownerDocument || hoistableRoot ).createElement("link"); - markNodeAsHoistable(instance$259); - var linkInstance = instance$259; + markNodeAsHoistable(instance$258); + var linkInstance = instance$258; linkInstance._p = new Promise(function (resolve, reject) { linkInstance.onload = resolve; linkInstance.onerror = reject; }); - setInitialProperties(instance$259, "link", instance); + setInitialProperties(instance$258, "link", instance); resource.state.loading |= 4; - insertStylesheet(instance$259, props.precedence, hoistableRoot); - return (resource.instance = instance$259); + insertStylesheet(instance$258, props.precedence, hoistableRoot); + return (resource.instance = instance$258); case "script": - instance$259 = getScriptKey(props.src); + instance$258 = getScriptKey(props.src); if ( (styleProps = hoistableRoot.querySelector( - getScriptSelectorFromKey(instance$259) + getScriptSelectorFromKey(instance$258) )) ) return ( @@ -14578,7 +14570,7 @@ function acquireResource(hoistableRoot, resource, props) { styleProps ); instance = props; - if ((styleProps = preloadPropsMap.get(instance$259))) + if ((styleProps = preloadPropsMap.get(instance$258))) (instance = assign({}, props)), adoptPreloadPropsForScript(instance, styleProps); hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot; @@ -15636,16 +15628,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { 0 === i && attemptExplicitHydrationTarget(target); } }; -var isomorphicReactPackageVersion$jscomp$inline_1698 = React.version; +var isomorphicReactPackageVersion$jscomp$inline_1697 = React.version; if ( - "19.0.0-native-fb-63cde684-20241114" !== - isomorphicReactPackageVersion$jscomp$inline_1698 + "19.0.0-native-fb-8a41d6ce-20241114" !== + isomorphicReactPackageVersion$jscomp$inline_1697 ) throw Error( formatProdErrorMessage( 527, - isomorphicReactPackageVersion$jscomp$inline_1698, - "19.0.0-native-fb-63cde684-20241114" + isomorphicReactPackageVersion$jscomp$inline_1697, + "19.0.0-native-fb-8a41d6ce-20241114" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -15665,25 +15657,25 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { null === componentOrElement ? null : componentOrElement.stateNode; return componentOrElement; }; -var internals$jscomp$inline_2156 = { +var internals$jscomp$inline_2155 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hook$jscomp$inline_2157 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_2156 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_2157.isDisabled && - hook$jscomp$inline_2157.supportsFiber + !hook$jscomp$inline_2156.isDisabled && + hook$jscomp$inline_2156.supportsFiber ) try { - (rendererID = hook$jscomp$inline_2157.inject( - internals$jscomp$inline_2156 + (rendererID = hook$jscomp$inline_2156.inject( + internals$jscomp$inline_2155 )), - (injectedHook = hook$jscomp$inline_2157); + (injectedHook = hook$jscomp$inline_2156); } catch (err) {} } exports.createRoot = function (container, options) { @@ -15775,4 +15767,4 @@ exports.hydrateRoot = function (container, initialChildren, options) { listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; 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 8c01cbb1ab4bd..d98be13bfb06b 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<> + * @generated SignedSource<> */ /* @@ -2166,19 +2166,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) { } var isInputEventSupported = !1; if (canUseDOM) { - var JSCompiler_inline_result$jscomp$310; + var JSCompiler_inline_result$jscomp$309; if (canUseDOM) { - var isSupported$jscomp$inline_443 = "oninput" in document; - if (!isSupported$jscomp$inline_443) { - var element$jscomp$inline_444 = document.createElement("div"); - element$jscomp$inline_444.setAttribute("oninput", "return;"); - isSupported$jscomp$inline_443 = - "function" === typeof element$jscomp$inline_444.oninput; + var isSupported$jscomp$inline_442 = "oninput" in document; + if (!isSupported$jscomp$inline_442) { + var element$jscomp$inline_443 = document.createElement("div"); + element$jscomp$inline_443.setAttribute("oninput", "return;"); + isSupported$jscomp$inline_442 = + "function" === typeof element$jscomp$inline_443.oninput; } - JSCompiler_inline_result$jscomp$310 = isSupported$jscomp$inline_443; - } else JSCompiler_inline_result$jscomp$310 = !1; + JSCompiler_inline_result$jscomp$309 = isSupported$jscomp$inline_442; + } else JSCompiler_inline_result$jscomp$309 = !1; isInputEventSupported = - JSCompiler_inline_result$jscomp$310 && + JSCompiler_inline_result$jscomp$309 && (!document.documentMode || 9 < document.documentMode); } function stopWatchingForValueChange() { @@ -11356,14 +11356,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -11433,16 +11426,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error(formatProdErrorMessage(345)); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -11853,8 +11845,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); memoizedUpdaters = workInProgressRootExitStatus; break; - } catch (thrownValue$190) { - handleThrow(root, thrownValue$190); + } catch (thrownValue$189) { + handleThrow(root, thrownValue$189); } while (1); lanes && root.shellSuspendCounter++; @@ -11975,8 +11967,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$192) { - handleThrow(root, thrownValue$192); + } catch (thrownValue$191) { + handleThrow(root, thrownValue$191); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -12334,7 +12326,7 @@ function releaseRootPooledCache(root, remainingLanes) { } function flushPassiveEffects() { if (null !== rootWithPendingPassiveEffects) { - var root$196 = rootWithPendingPassiveEffects, + var root$195 = rootWithPendingPassiveEffects, remainingLanes = pendingPassiveEffectsRemainingLanes; pendingPassiveEffectsRemainingLanes = 0; var renderPriority = lanesToEventPriority(pendingPassiveEffectsLanes), @@ -12384,7 +12376,7 @@ function flushPassiveEffects() { } finally { (ReactDOMSharedInternals.p = previousPriority), (ReactSharedInternals.T = prevTransition), - releaseRootPooledCache(root$196, remainingLanes); + releaseRootPooledCache(root$195, remainingLanes); } } return !1; @@ -12535,14 +12527,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { isFlushingWork = !0; do { var didPerformSomeWork = !1; - for (var root$198 = firstScheduledRoot; null !== root$198; ) { - if (!onlyLegacy || 0 === root$198.tag) + for (var root$197 = firstScheduledRoot; null !== root$197; ) { + if (!onlyLegacy || 0 === root$197.tag) if (0 !== syncTransitionLanes) { - var pendingLanes = root$198.pendingLanes; + var pendingLanes = root$197.pendingLanes; if (0 === pendingLanes) var JSCompiler_inline_result = 0; else { - var suspendedLanes = root$198.suspendedLanes, - pingedLanes = root$198.pingedLanes; + var suspendedLanes = root$197.suspendedLanes, + pingedLanes = root$197.pingedLanes; JSCompiler_inline_result = (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1; JSCompiler_inline_result &= @@ -12556,18 +12548,18 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { } 0 !== JSCompiler_inline_result && ((didPerformSomeWork = !0), - performSyncWorkOnRoot(root$198, JSCompiler_inline_result)); + performSyncWorkOnRoot(root$197, JSCompiler_inline_result)); } else (JSCompiler_inline_result = workInProgressRootRenderLanes), (JSCompiler_inline_result = getNextLanes( - root$198, - root$198 === workInProgressRoot ? JSCompiler_inline_result : 0 + root$197, + root$197 === workInProgressRoot ? JSCompiler_inline_result : 0 )), 0 === (JSCompiler_inline_result & 3) || - checkIfRootIsPrerendering(root$198, JSCompiler_inline_result) || + checkIfRootIsPrerendering(root$197, JSCompiler_inline_result) || ((didPerformSomeWork = !0), - performSyncWorkOnRoot(root$198, JSCompiler_inline_result)); - root$198 = root$198.next; + performSyncWorkOnRoot(root$197, JSCompiler_inline_result)); + root$197 = root$197.next; } } while (didPerformSomeWork); isFlushingWork = !1; @@ -12799,20 +12791,20 @@ function extractEvents$1( } } for ( - var i$jscomp$inline_1543 = 0; - i$jscomp$inline_1543 < simpleEventPluginEvents.length; - i$jscomp$inline_1543++ + var i$jscomp$inline_1542 = 0; + i$jscomp$inline_1542 < simpleEventPluginEvents.length; + i$jscomp$inline_1542++ ) { - 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); + var eventName$jscomp$inline_1543 = + simpleEventPluginEvents[i$jscomp$inline_1542], + domEventName$jscomp$inline_1544 = + eventName$jscomp$inline_1543.toLowerCase(), + capitalizedEvent$jscomp$inline_1545 = + eventName$jscomp$inline_1543[0].toUpperCase() + + eventName$jscomp$inline_1543.slice(1); registerSimpleEvent( - domEventName$jscomp$inline_1545, - "on" + capitalizedEvent$jscomp$inline_1546 + domEventName$jscomp$inline_1544, + "on" + capitalizedEvent$jscomp$inline_1545 ); } registerSimpleEvent(ANIMATION_END, "onAnimationEnd"); @@ -13995,34 +13987,34 @@ function setInitialProperties(domElement, tag, props) { defaultChecked = null; for (hasSrc in props) if (props.hasOwnProperty(hasSrc)) { - var propValue$212 = props[hasSrc]; - if (null != propValue$212) + var propValue$211 = props[hasSrc]; + if (null != propValue$211) switch (hasSrc) { case "name": - hasSrcSet = propValue$212; + hasSrcSet = propValue$211; break; case "type": - propValue = propValue$212; + propValue = propValue$211; break; case "checked": - checked = propValue$212; + checked = propValue$211; break; case "defaultChecked": - defaultChecked = propValue$212; + defaultChecked = propValue$211; break; case "value": - propKey = propValue$212; + propKey = propValue$211; break; case "defaultValue": - defaultValue = propValue$212; + defaultValue = propValue$211; break; case "children": case "dangerouslySetInnerHTML": - if (null != propValue$212) + if (null != propValue$211) throw Error(formatProdErrorMessage(137, tag)); break; default: - setProp(domElement, tag, hasSrc, propValue$212, props, null); + setProp(domElement, tag, hasSrc, propValue$211, props, null); } } initInput( @@ -14159,14 +14151,14 @@ function setInitialProperties(domElement, tag, props) { return; default: if (isCustomElement(tag)) { - for (propValue$212 in props) - props.hasOwnProperty(propValue$212) && - ((hasSrc = props[propValue$212]), + for (propValue$211 in props) + props.hasOwnProperty(propValue$211) && + ((hasSrc = props[propValue$211]), void 0 !== hasSrc && setPropOnCustomElement( domElement, tag, - propValue$212, + propValue$211, hasSrc, props, void 0 @@ -14214,14 +14206,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp(domElement, tag, propKey, null, nextProps, lastProp); } } - for (var propKey$229 in nextProps) { - var propKey = nextProps[propKey$229]; - lastProp = lastProps[propKey$229]; + for (var propKey$228 in nextProps) { + var propKey = nextProps[propKey$228]; + lastProp = lastProps[propKey$228]; if ( - nextProps.hasOwnProperty(propKey$229) && + nextProps.hasOwnProperty(propKey$228) && (null != propKey || null != lastProp) ) - switch (propKey$229) { + switch (propKey$228) { case "type": type = propKey; break; @@ -14250,7 +14242,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp( domElement, tag, - propKey$229, + propKey$228, propKey, nextProps, lastProp @@ -14269,7 +14261,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ); return; case "select": - propKey = value = defaultValue = propKey$229 = null; + propKey = value = defaultValue = propKey$228 = null; for (type in lastProps) if ( ((lastDefaultValue = lastProps[type]), @@ -14300,7 +14292,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ) switch (name) { case "value": - propKey$229 = type; + propKey$228 = type; break; case "defaultValue": defaultValue = type; @@ -14321,15 +14313,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) { tag = defaultValue; lastProps = value; nextProps = propKey; - null != propKey$229 - ? updateOptions(domElement, !!lastProps, propKey$229, !1) + null != propKey$228 + ? updateOptions(domElement, !!lastProps, propKey$228, !1) : !!nextProps !== !!lastProps && (null != tag ? updateOptions(domElement, !!lastProps, tag, !0) : updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1)); return; case "textarea": - propKey = propKey$229 = null; + propKey = propKey$228 = null; for (defaultValue in lastProps) if ( ((name = lastProps[defaultValue]), @@ -14353,7 +14345,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ) switch (value) { case "value": - propKey$229 = name; + propKey$228 = name; break; case "defaultValue": propKey = name; @@ -14367,17 +14359,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) { name !== type && setProp(domElement, tag, value, name, nextProps, type); } - updateTextarea(domElement, propKey$229, propKey); + updateTextarea(domElement, propKey$228, propKey); return; case "option": - for (var propKey$245 in lastProps) + for (var propKey$244 in lastProps) if ( - ((propKey$229 = lastProps[propKey$245]), - lastProps.hasOwnProperty(propKey$245) && - null != propKey$229 && - !nextProps.hasOwnProperty(propKey$245)) + ((propKey$228 = lastProps[propKey$244]), + lastProps.hasOwnProperty(propKey$244) && + null != propKey$228 && + !nextProps.hasOwnProperty(propKey$244)) ) - switch (propKey$245) { + switch (propKey$244) { case "selected": domElement.selected = !1; break; @@ -14385,33 +14377,33 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp( domElement, tag, - propKey$245, + propKey$244, null, nextProps, - propKey$229 + propKey$228 ); } for (lastDefaultValue in nextProps) if ( - ((propKey$229 = nextProps[lastDefaultValue]), + ((propKey$228 = nextProps[lastDefaultValue]), (propKey = lastProps[lastDefaultValue]), nextProps.hasOwnProperty(lastDefaultValue) && - propKey$229 !== propKey && - (null != propKey$229 || null != propKey)) + propKey$228 !== propKey && + (null != propKey$228 || null != propKey)) ) switch (lastDefaultValue) { case "selected": domElement.selected = - propKey$229 && - "function" !== typeof propKey$229 && - "symbol" !== typeof propKey$229; + propKey$228 && + "function" !== typeof propKey$228 && + "symbol" !== typeof propKey$228; break; default: setProp( domElement, tag, lastDefaultValue, - propKey$229, + propKey$228, nextProps, propKey ); @@ -14432,24 +14424,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) { case "track": case "wbr": case "menuitem": - for (var propKey$250 in lastProps) - (propKey$229 = lastProps[propKey$250]), - lastProps.hasOwnProperty(propKey$250) && - null != propKey$229 && - !nextProps.hasOwnProperty(propKey$250) && - setProp(domElement, tag, propKey$250, null, nextProps, propKey$229); + for (var propKey$249 in lastProps) + (propKey$228 = lastProps[propKey$249]), + lastProps.hasOwnProperty(propKey$249) && + null != propKey$228 && + !nextProps.hasOwnProperty(propKey$249) && + setProp(domElement, tag, propKey$249, null, nextProps, propKey$228); for (checked in nextProps) if ( - ((propKey$229 = nextProps[checked]), + ((propKey$228 = nextProps[checked]), (propKey = lastProps[checked]), nextProps.hasOwnProperty(checked) && - propKey$229 !== propKey && - (null != propKey$229 || null != propKey)) + propKey$228 !== propKey && + (null != propKey$228 || null != propKey)) ) switch (checked) { case "children": case "dangerouslySetInnerHTML": - if (null != propKey$229) + if (null != propKey$228) throw Error(formatProdErrorMessage(137, tag)); break; default: @@ -14457,7 +14449,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { domElement, tag, checked, - propKey$229, + propKey$228, nextProps, propKey ); @@ -14465,49 +14457,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) { return; default: if (isCustomElement(tag)) { - for (var propKey$255 in lastProps) - (propKey$229 = lastProps[propKey$255]), - lastProps.hasOwnProperty(propKey$255) && - void 0 !== propKey$229 && - !nextProps.hasOwnProperty(propKey$255) && + for (var propKey$254 in lastProps) + (propKey$228 = lastProps[propKey$254]), + lastProps.hasOwnProperty(propKey$254) && + void 0 !== propKey$228 && + !nextProps.hasOwnProperty(propKey$254) && setPropOnCustomElement( domElement, tag, - propKey$255, + propKey$254, void 0, nextProps, - propKey$229 + propKey$228 ); for (defaultChecked in nextProps) - (propKey$229 = nextProps[defaultChecked]), + (propKey$228 = nextProps[defaultChecked]), (propKey = lastProps[defaultChecked]), !nextProps.hasOwnProperty(defaultChecked) || - propKey$229 === propKey || - (void 0 === propKey$229 && void 0 === propKey) || + propKey$228 === propKey || + (void 0 === propKey$228 && void 0 === propKey) || setPropOnCustomElement( domElement, tag, defaultChecked, - propKey$229, + propKey$228, nextProps, propKey ); return; } } - for (var propKey$260 in lastProps) - (propKey$229 = lastProps[propKey$260]), - lastProps.hasOwnProperty(propKey$260) && - null != propKey$229 && - !nextProps.hasOwnProperty(propKey$260) && - setProp(domElement, tag, propKey$260, null, nextProps, propKey$229); + for (var propKey$259 in lastProps) + (propKey$228 = lastProps[propKey$259]), + lastProps.hasOwnProperty(propKey$259) && + null != propKey$228 && + !nextProps.hasOwnProperty(propKey$259) && + setProp(domElement, tag, propKey$259, null, nextProps, propKey$228); for (lastProp in nextProps) - (propKey$229 = nextProps[lastProp]), + (propKey$228 = nextProps[lastProp]), (propKey = lastProps[lastProp]), !nextProps.hasOwnProperty(lastProp) || - propKey$229 === propKey || - (null == propKey$229 && null == propKey) || - setProp(domElement, tag, lastProp, propKey$229, nextProps, propKey); + propKey$228 === propKey || + (null == propKey$228 && null == propKey) || + setProp(domElement, tag, lastProp, propKey$228, nextProps, propKey); } var eventsEnabled = null, selectionInformation = null; @@ -15047,26 +15039,26 @@ function getResource(type, currentProps, pendingProps, currentResource) { "string" === typeof pendingProps.precedence ) { type = getStyleKey(pendingProps.href); - var styles$268 = getResourcesFromRoot( + var styles$267 = getResourcesFromRoot( JSCompiler_inline_result ).hoistableStyles, - resource$269 = styles$268.get(type); - resource$269 || + resource$268 = styles$267.get(type); + resource$268 || ((JSCompiler_inline_result = JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result), - (resource$269 = { + (resource$268 = { type: "stylesheet", instance: null, count: 0, state: { loading: 0, preload: null } }), - styles$268.set(type, resource$269), - (styles$268 = JSCompiler_inline_result.querySelector( + styles$267.set(type, resource$268), + (styles$267 = JSCompiler_inline_result.querySelector( getStylesheetSelectorFromKey(type) )) && - !styles$268._p && - ((resource$269.instance = styles$268), - (resource$269.state.loading = 5)), + !styles$267._p && + ((resource$268.instance = styles$267), + (resource$268.state.loading = 5)), preloadPropsMap.has(type) || ((pendingProps = { rel: "preload", @@ -15079,16 +15071,16 @@ function getResource(type, currentProps, pendingProps, currentResource) { referrerPolicy: pendingProps.referrerPolicy }), preloadPropsMap.set(type, pendingProps), - styles$268 || + styles$267 || preloadStylesheet( JSCompiler_inline_result, type, pendingProps, - resource$269.state + resource$268.state ))); if (currentProps && null === currentResource) throw Error(formatProdErrorMessage(528, "")); - return resource$269; + return resource$268; } if (currentProps && null !== currentResource) throw Error(formatProdErrorMessage(529, "")); @@ -15185,37 +15177,37 @@ function acquireResource(hoistableRoot, resource, props) { return (resource.instance = instance); case "stylesheet": styleProps = getStyleKey(props.href); - var instance$274 = hoistableRoot.querySelector( + var instance$273 = hoistableRoot.querySelector( getStylesheetSelectorFromKey(styleProps) ); - if (instance$274) + if (instance$273) return ( (resource.state.loading |= 4), - (resource.instance = instance$274), - markNodeAsHoistable(instance$274), - instance$274 + (resource.instance = instance$273), + markNodeAsHoistable(instance$273), + instance$273 ); instance = stylesheetPropsFromRawProps(props); (styleProps = preloadPropsMap.get(styleProps)) && adoptPreloadPropsForStylesheet(instance, styleProps); - instance$274 = ( + instance$273 = ( hoistableRoot.ownerDocument || hoistableRoot ).createElement("link"); - markNodeAsHoistable(instance$274); - var linkInstance = instance$274; + markNodeAsHoistable(instance$273); + var linkInstance = instance$273; linkInstance._p = new Promise(function (resolve, reject) { linkInstance.onload = resolve; linkInstance.onerror = reject; }); - setInitialProperties(instance$274, "link", instance); + setInitialProperties(instance$273, "link", instance); resource.state.loading |= 4; - insertStylesheet(instance$274, props.precedence, hoistableRoot); - return (resource.instance = instance$274); + insertStylesheet(instance$273, props.precedence, hoistableRoot); + return (resource.instance = instance$273); case "script": - instance$274 = getScriptKey(props.src); + instance$273 = getScriptKey(props.src); if ( (styleProps = hoistableRoot.querySelector( - getScriptSelectorFromKey(instance$274) + getScriptSelectorFromKey(instance$273) )) ) return ( @@ -15224,7 +15216,7 @@ function acquireResource(hoistableRoot, resource, props) { styleProps ); instance = props; - if ((styleProps = preloadPropsMap.get(instance$274))) + if ((styleProps = preloadPropsMap.get(instance$273))) (instance = assign({}, props)), adoptPreloadPropsForScript(instance, styleProps); hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot; @@ -16290,16 +16282,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.0.0-native-fb-63cde684-20241114" !== - isomorphicReactPackageVersion$jscomp$inline_1788 + "19.0.0-native-fb-8a41d6ce-20241114" !== + isomorphicReactPackageVersion$jscomp$inline_1787 ) throw Error( formatProdErrorMessage( 527, - isomorphicReactPackageVersion$jscomp$inline_1788, - "19.0.0-native-fb-63cde684-20241114" + isomorphicReactPackageVersion$jscomp$inline_1787, + "19.0.0-native-fb-8a41d6ce-20241114" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -16319,18 +16311,18 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { null === componentOrElement ? null : componentOrElement.stateNode; return componentOrElement; }; -var internals$jscomp$inline_1795 = { +var internals$jscomp$inline_1794 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114", + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114", getLaneLabelMap: function () { for ( - var map = new Map(), lane = 1, index$291 = 0; - 31 > index$291; - index$291++ + var map = new Map(), lane = 1, index$290 = 0; + 31 > index$290; + index$290++ ) { var label = getLabelForLane(lane); map.set(lane, label); @@ -16343,16 +16335,16 @@ var internals$jscomp$inline_1795 = { } }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hook$jscomp$inline_2208 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_2207 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_2208.isDisabled && - hook$jscomp$inline_2208.supportsFiber + !hook$jscomp$inline_2207.isDisabled && + hook$jscomp$inline_2207.supportsFiber ) try { - (rendererID = hook$jscomp$inline_2208.inject( - internals$jscomp$inline_1795 + (rendererID = hook$jscomp$inline_2207.inject( + internals$jscomp$inline_1794 )), - (injectedHook = hook$jscomp$inline_2208); + (injectedHook = hook$jscomp$inline_2207); } catch (err) {} } exports.createRoot = function (container, options) { @@ -16444,4 +16436,4 @@ exports.hydrateRoot = function (container, initialChildren, options) { listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; 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 c6844a79dc50c..20bc366af4fe7 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<> + * @generated SignedSource<<61534c0c0fcedc97333e9c00b8a6337b>> */ /* @@ -15038,14 +15038,7 @@ __DEV__ && !shouldTimeSlice && markRootSuspended(root, lanes, 0, !1); break; - } else if (exitStatus === RootDidNotComplete) - markRootSuspended( - root, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root.current.alternate; if ( renderWasConcurrent && @@ -15119,16 +15112,15 @@ __DEV__ && case RootFatalErrored: throw Error("Root did not complete. This is a bug in React."); case RootSuspendedWithDelay: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case RootSuspendedAtTheShell: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case RootErrored: workInProgressRootRecoverableErrors = null; break; @@ -15549,7 +15541,7 @@ __DEV__ && switch (workInProgressSuspendedReason) { case SuspendedOnHydration: resetWorkInProgressStack(); - memoizedUpdaters = RootDidNotComplete; + memoizedUpdaters = RootSuspendedAtTheShell; break a; case SuspendedOnImmediate: case SuspendedOnData: @@ -15729,7 +15721,7 @@ __DEV__ && break; case SuspendedOnHydration: resetWorkInProgressStack(); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; break a; default: throw Error( @@ -15967,7 +15959,7 @@ __DEV__ && } workInProgress = unitOfWork = next; } while (null !== unitOfWork); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; workInProgress = null; } function commitRoot( @@ -24820,8 +24812,8 @@ __DEV__ && RootErrored = 2, RootSuspended = 3, RootSuspendedWithDelay = 4, + RootSuspendedAtTheShell = 6, RootCompleted = 5, - RootDidNotComplete = 6, executionContext = NoContext, workInProgressRoot = null, workInProgress = null, @@ -25413,11 +25405,11 @@ __DEV__ && }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-native-fb-63cde684-20241114" !== isomorphicReactPackageVersion) + if ("19.0.0-native-fb-8a41d6ce-20241114" !== 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.0.0-native-fb-63cde684-20241114\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-native-fb-8a41d6ce-20241114\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -25454,11 +25446,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -25918,7 +25910,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-native-fb-63cde684-20241114"; + exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; "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 63d13de20f20d..1c7f0b58e03ee 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<<3c16b4c8e838f4c370d0e5196f6c39af>> + * @generated SignedSource<> */ /* @@ -2071,19 +2071,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) { } var isInputEventSupported = !1; if (canUseDOM) { - var JSCompiler_inline_result$jscomp$294; + var JSCompiler_inline_result$jscomp$293; if (canUseDOM) { - var isSupported$jscomp$inline_428 = "oninput" in document; - if (!isSupported$jscomp$inline_428) { - var element$jscomp$inline_429 = document.createElement("div"); - element$jscomp$inline_429.setAttribute("oninput", "return;"); - isSupported$jscomp$inline_428 = - "function" === typeof element$jscomp$inline_429.oninput; + var isSupported$jscomp$inline_427 = "oninput" in document; + if (!isSupported$jscomp$inline_427) { + var element$jscomp$inline_428 = document.createElement("div"); + element$jscomp$inline_428.setAttribute("oninput", "return;"); + isSupported$jscomp$inline_427 = + "function" === typeof element$jscomp$inline_428.oninput; } - JSCompiler_inline_result$jscomp$294 = isSupported$jscomp$inline_428; - } else JSCompiler_inline_result$jscomp$294 = !1; + JSCompiler_inline_result$jscomp$293 = isSupported$jscomp$inline_427; + } else JSCompiler_inline_result$jscomp$293 = !1; isInputEventSupported = - JSCompiler_inline_result$jscomp$294 && + JSCompiler_inline_result$jscomp$293 && (!document.documentMode || 9 < document.documentMode); } function stopWatchingForValueChange() { @@ -10818,14 +10818,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -10895,16 +10888,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error(formatProdErrorMessage(345)); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -11276,8 +11268,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); exitStatus = workInProgressRootExitStatus; break; - } catch (thrownValue$175) { - handleThrow(root, thrownValue$175); + } catch (thrownValue$174) { + handleThrow(root, thrownValue$174); } while (1); lanes && root.shellSuspendCounter++; @@ -11390,8 +11382,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$177) { - handleThrow(root, thrownValue$177); + } catch (thrownValue$176) { + handleThrow(root, thrownValue$176); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -11709,7 +11701,7 @@ function releaseRootPooledCache(root, remainingLanes) { } function flushPassiveEffects() { if (null !== rootWithPendingPassiveEffects) { - var root$181 = rootWithPendingPassiveEffects, + var root$180 = rootWithPendingPassiveEffects, remainingLanes = pendingPassiveEffectsRemainingLanes; pendingPassiveEffectsRemainingLanes = 0; var renderPriority = lanesToEventPriority(pendingPassiveEffectsLanes), @@ -11748,7 +11740,7 @@ function flushPassiveEffects() { } finally { (ReactDOMSharedInternals.p = previousPriority), (ReactSharedInternals.T = prevTransition), - releaseRootPooledCache(root$181, remainingLanes); + releaseRootPooledCache(root$180, remainingLanes); } } return !1; @@ -11892,14 +11884,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { isFlushingWork = !0; do { var didPerformSomeWork = !1; - for (var root$183 = firstScheduledRoot; null !== root$183; ) { - if (!onlyLegacy || 0 === root$183.tag) + for (var root$182 = firstScheduledRoot; null !== root$182; ) { + if (!onlyLegacy || 0 === root$182.tag) if (0 !== syncTransitionLanes) { - var pendingLanes = root$183.pendingLanes; + var pendingLanes = root$182.pendingLanes; if (0 === pendingLanes) var JSCompiler_inline_result = 0; else { - var suspendedLanes = root$183.suspendedLanes, - pingedLanes = root$183.pingedLanes; + var suspendedLanes = root$182.suspendedLanes, + pingedLanes = root$182.pingedLanes; JSCompiler_inline_result = (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1; JSCompiler_inline_result &= @@ -11913,18 +11905,18 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { } 0 !== JSCompiler_inline_result && ((didPerformSomeWork = !0), - performSyncWorkOnRoot(root$183, JSCompiler_inline_result)); + performSyncWorkOnRoot(root$182, JSCompiler_inline_result)); } else (JSCompiler_inline_result = workInProgressRootRenderLanes), (JSCompiler_inline_result = getNextLanes( - root$183, - root$183 === workInProgressRoot ? JSCompiler_inline_result : 0 + root$182, + root$182 === workInProgressRoot ? JSCompiler_inline_result : 0 )), 0 === (JSCompiler_inline_result & 3) || - checkIfRootIsPrerendering(root$183, JSCompiler_inline_result) || + checkIfRootIsPrerendering(root$182, JSCompiler_inline_result) || ((didPerformSomeWork = !0), - performSyncWorkOnRoot(root$183, JSCompiler_inline_result)); - root$183 = root$183.next; + performSyncWorkOnRoot(root$182, JSCompiler_inline_result)); + root$182 = root$182.next; } } while (didPerformSomeWork); isFlushingWork = !1; @@ -12153,20 +12145,20 @@ function extractEvents$1( } } for ( - var i$jscomp$inline_1456 = 0; - i$jscomp$inline_1456 < simpleEventPluginEvents.length; - i$jscomp$inline_1456++ + var i$jscomp$inline_1455 = 0; + i$jscomp$inline_1455 < simpleEventPluginEvents.length; + i$jscomp$inline_1455++ ) { - var eventName$jscomp$inline_1457 = - simpleEventPluginEvents[i$jscomp$inline_1456], - domEventName$jscomp$inline_1458 = - eventName$jscomp$inline_1457.toLowerCase(), - capitalizedEvent$jscomp$inline_1459 = - eventName$jscomp$inline_1457[0].toUpperCase() + - eventName$jscomp$inline_1457.slice(1); + var eventName$jscomp$inline_1456 = + simpleEventPluginEvents[i$jscomp$inline_1455], + domEventName$jscomp$inline_1457 = + eventName$jscomp$inline_1456.toLowerCase(), + capitalizedEvent$jscomp$inline_1458 = + eventName$jscomp$inline_1456[0].toUpperCase() + + eventName$jscomp$inline_1456.slice(1); registerSimpleEvent( - domEventName$jscomp$inline_1458, - "on" + capitalizedEvent$jscomp$inline_1459 + domEventName$jscomp$inline_1457, + "on" + capitalizedEvent$jscomp$inline_1458 ); } registerSimpleEvent(ANIMATION_END, "onAnimationEnd"); @@ -13349,34 +13341,34 @@ function setInitialProperties(domElement, tag, props) { defaultChecked = null; for (hasSrc in props) if (props.hasOwnProperty(hasSrc)) { - var propValue$197 = props[hasSrc]; - if (null != propValue$197) + var propValue$196 = props[hasSrc]; + if (null != propValue$196) switch (hasSrc) { case "name": - hasSrcSet = propValue$197; + hasSrcSet = propValue$196; break; case "type": - propValue = propValue$197; + propValue = propValue$196; break; case "checked": - checked = propValue$197; + checked = propValue$196; break; case "defaultChecked": - defaultChecked = propValue$197; + defaultChecked = propValue$196; break; case "value": - propKey = propValue$197; + propKey = propValue$196; break; case "defaultValue": - defaultValue = propValue$197; + defaultValue = propValue$196; break; case "children": case "dangerouslySetInnerHTML": - if (null != propValue$197) + if (null != propValue$196) throw Error(formatProdErrorMessage(137, tag)); break; default: - setProp(domElement, tag, hasSrc, propValue$197, props, null); + setProp(domElement, tag, hasSrc, propValue$196, props, null); } } initInput( @@ -13513,14 +13505,14 @@ function setInitialProperties(domElement, tag, props) { return; default: if (isCustomElement(tag)) { - for (propValue$197 in props) - props.hasOwnProperty(propValue$197) && - ((hasSrc = props[propValue$197]), + for (propValue$196 in props) + props.hasOwnProperty(propValue$196) && + ((hasSrc = props[propValue$196]), void 0 !== hasSrc && setPropOnCustomElement( domElement, tag, - propValue$197, + propValue$196, hasSrc, props, void 0 @@ -13568,14 +13560,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp(domElement, tag, propKey, null, nextProps, lastProp); } } - for (var propKey$214 in nextProps) { - var propKey = nextProps[propKey$214]; - lastProp = lastProps[propKey$214]; + for (var propKey$213 in nextProps) { + var propKey = nextProps[propKey$213]; + lastProp = lastProps[propKey$213]; if ( - nextProps.hasOwnProperty(propKey$214) && + nextProps.hasOwnProperty(propKey$213) && (null != propKey || null != lastProp) ) - switch (propKey$214) { + switch (propKey$213) { case "type": type = propKey; break; @@ -13604,7 +13596,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp( domElement, tag, - propKey$214, + propKey$213, propKey, nextProps, lastProp @@ -13623,7 +13615,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ); return; case "select": - propKey = value = defaultValue = propKey$214 = null; + propKey = value = defaultValue = propKey$213 = null; for (type in lastProps) if ( ((lastDefaultValue = lastProps[type]), @@ -13654,7 +13646,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ) switch (name) { case "value": - propKey$214 = type; + propKey$213 = type; break; case "defaultValue": defaultValue = type; @@ -13675,15 +13667,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) { tag = defaultValue; lastProps = value; nextProps = propKey; - null != propKey$214 - ? updateOptions(domElement, !!lastProps, propKey$214, !1) + null != propKey$213 + ? updateOptions(domElement, !!lastProps, propKey$213, !1) : !!nextProps !== !!lastProps && (null != tag ? updateOptions(domElement, !!lastProps, tag, !0) : updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1)); return; case "textarea": - propKey = propKey$214 = null; + propKey = propKey$213 = null; for (defaultValue in lastProps) if ( ((name = lastProps[defaultValue]), @@ -13707,7 +13699,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ) switch (value) { case "value": - propKey$214 = name; + propKey$213 = name; break; case "defaultValue": propKey = name; @@ -13721,17 +13713,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) { name !== type && setProp(domElement, tag, value, name, nextProps, type); } - updateTextarea(domElement, propKey$214, propKey); + updateTextarea(domElement, propKey$213, propKey); return; case "option": - for (var propKey$230 in lastProps) + for (var propKey$229 in lastProps) if ( - ((propKey$214 = lastProps[propKey$230]), - lastProps.hasOwnProperty(propKey$230) && - null != propKey$214 && - !nextProps.hasOwnProperty(propKey$230)) + ((propKey$213 = lastProps[propKey$229]), + lastProps.hasOwnProperty(propKey$229) && + null != propKey$213 && + !nextProps.hasOwnProperty(propKey$229)) ) - switch (propKey$230) { + switch (propKey$229) { case "selected": domElement.selected = !1; break; @@ -13739,33 +13731,33 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp( domElement, tag, - propKey$230, + propKey$229, null, nextProps, - propKey$214 + propKey$213 ); } for (lastDefaultValue in nextProps) if ( - ((propKey$214 = nextProps[lastDefaultValue]), + ((propKey$213 = nextProps[lastDefaultValue]), (propKey = lastProps[lastDefaultValue]), nextProps.hasOwnProperty(lastDefaultValue) && - propKey$214 !== propKey && - (null != propKey$214 || null != propKey)) + propKey$213 !== propKey && + (null != propKey$213 || null != propKey)) ) switch (lastDefaultValue) { case "selected": domElement.selected = - propKey$214 && - "function" !== typeof propKey$214 && - "symbol" !== typeof propKey$214; + propKey$213 && + "function" !== typeof propKey$213 && + "symbol" !== typeof propKey$213; break; default: setProp( domElement, tag, lastDefaultValue, - propKey$214, + propKey$213, nextProps, propKey ); @@ -13786,24 +13778,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) { case "track": case "wbr": case "menuitem": - for (var propKey$235 in lastProps) - (propKey$214 = lastProps[propKey$235]), - lastProps.hasOwnProperty(propKey$235) && - null != propKey$214 && - !nextProps.hasOwnProperty(propKey$235) && - setProp(domElement, tag, propKey$235, null, nextProps, propKey$214); + for (var propKey$234 in lastProps) + (propKey$213 = lastProps[propKey$234]), + lastProps.hasOwnProperty(propKey$234) && + null != propKey$213 && + !nextProps.hasOwnProperty(propKey$234) && + setProp(domElement, tag, propKey$234, null, nextProps, propKey$213); for (checked in nextProps) if ( - ((propKey$214 = nextProps[checked]), + ((propKey$213 = nextProps[checked]), (propKey = lastProps[checked]), nextProps.hasOwnProperty(checked) && - propKey$214 !== propKey && - (null != propKey$214 || null != propKey)) + propKey$213 !== propKey && + (null != propKey$213 || null != propKey)) ) switch (checked) { case "children": case "dangerouslySetInnerHTML": - if (null != propKey$214) + if (null != propKey$213) throw Error(formatProdErrorMessage(137, tag)); break; default: @@ -13811,7 +13803,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { domElement, tag, checked, - propKey$214, + propKey$213, nextProps, propKey ); @@ -13819,49 +13811,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) { return; default: if (isCustomElement(tag)) { - for (var propKey$240 in lastProps) - (propKey$214 = lastProps[propKey$240]), - lastProps.hasOwnProperty(propKey$240) && - void 0 !== propKey$214 && - !nextProps.hasOwnProperty(propKey$240) && + for (var propKey$239 in lastProps) + (propKey$213 = lastProps[propKey$239]), + lastProps.hasOwnProperty(propKey$239) && + void 0 !== propKey$213 && + !nextProps.hasOwnProperty(propKey$239) && setPropOnCustomElement( domElement, tag, - propKey$240, + propKey$239, void 0, nextProps, - propKey$214 + propKey$213 ); for (defaultChecked in nextProps) - (propKey$214 = nextProps[defaultChecked]), + (propKey$213 = nextProps[defaultChecked]), (propKey = lastProps[defaultChecked]), !nextProps.hasOwnProperty(defaultChecked) || - propKey$214 === propKey || - (void 0 === propKey$214 && void 0 === propKey) || + propKey$213 === propKey || + (void 0 === propKey$213 && void 0 === propKey) || setPropOnCustomElement( domElement, tag, defaultChecked, - propKey$214, + propKey$213, nextProps, propKey ); return; } } - for (var propKey$245 in lastProps) - (propKey$214 = lastProps[propKey$245]), - lastProps.hasOwnProperty(propKey$245) && - null != propKey$214 && - !nextProps.hasOwnProperty(propKey$245) && - setProp(domElement, tag, propKey$245, null, nextProps, propKey$214); + for (var propKey$244 in lastProps) + (propKey$213 = lastProps[propKey$244]), + lastProps.hasOwnProperty(propKey$244) && + null != propKey$213 && + !nextProps.hasOwnProperty(propKey$244) && + setProp(domElement, tag, propKey$244, null, nextProps, propKey$213); for (lastProp in nextProps) - (propKey$214 = nextProps[lastProp]), + (propKey$213 = nextProps[lastProp]), (propKey = lastProps[lastProp]), !nextProps.hasOwnProperty(lastProp) || - propKey$214 === propKey || - (null == propKey$214 && null == propKey) || - setProp(domElement, tag, lastProp, propKey$214, nextProps, propKey); + propKey$213 === propKey || + (null == propKey$213 && null == propKey) || + setProp(domElement, tag, lastProp, propKey$213, nextProps, propKey); } var eventsEnabled = null, selectionInformation = null; @@ -14401,26 +14393,26 @@ function getResource(type, currentProps, pendingProps, currentResource) { "string" === typeof pendingProps.precedence ) { type = getStyleKey(pendingProps.href); - var styles$253 = getResourcesFromRoot( + var styles$252 = getResourcesFromRoot( JSCompiler_inline_result ).hoistableStyles, - resource$254 = styles$253.get(type); - resource$254 || + resource$253 = styles$252.get(type); + resource$253 || ((JSCompiler_inline_result = JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result), - (resource$254 = { + (resource$253 = { type: "stylesheet", instance: null, count: 0, state: { loading: 0, preload: null } }), - styles$253.set(type, resource$254), - (styles$253 = JSCompiler_inline_result.querySelector( + styles$252.set(type, resource$253), + (styles$252 = JSCompiler_inline_result.querySelector( getStylesheetSelectorFromKey(type) )) && - !styles$253._p && - ((resource$254.instance = styles$253), - (resource$254.state.loading = 5)), + !styles$252._p && + ((resource$253.instance = styles$252), + (resource$253.state.loading = 5)), preloadPropsMap.has(type) || ((pendingProps = { rel: "preload", @@ -14433,16 +14425,16 @@ function getResource(type, currentProps, pendingProps, currentResource) { referrerPolicy: pendingProps.referrerPolicy }), preloadPropsMap.set(type, pendingProps), - styles$253 || + styles$252 || preloadStylesheet( JSCompiler_inline_result, type, pendingProps, - resource$254.state + resource$253.state ))); if (currentProps && null === currentResource) throw Error(formatProdErrorMessage(528, "")); - return resource$254; + return resource$253; } if (currentProps && null !== currentResource) throw Error(formatProdErrorMessage(529, "")); @@ -14539,37 +14531,37 @@ function acquireResource(hoistableRoot, resource, props) { return (resource.instance = instance); case "stylesheet": styleProps = getStyleKey(props.href); - var instance$259 = hoistableRoot.querySelector( + var instance$258 = hoistableRoot.querySelector( getStylesheetSelectorFromKey(styleProps) ); - if (instance$259) + if (instance$258) return ( (resource.state.loading |= 4), - (resource.instance = instance$259), - markNodeAsHoistable(instance$259), - instance$259 + (resource.instance = instance$258), + markNodeAsHoistable(instance$258), + instance$258 ); instance = stylesheetPropsFromRawProps(props); (styleProps = preloadPropsMap.get(styleProps)) && adoptPreloadPropsForStylesheet(instance, styleProps); - instance$259 = ( + instance$258 = ( hoistableRoot.ownerDocument || hoistableRoot ).createElement("link"); - markNodeAsHoistable(instance$259); - var linkInstance = instance$259; + markNodeAsHoistable(instance$258); + var linkInstance = instance$258; linkInstance._p = new Promise(function (resolve, reject) { linkInstance.onload = resolve; linkInstance.onerror = reject; }); - setInitialProperties(instance$259, "link", instance); + setInitialProperties(instance$258, "link", instance); resource.state.loading |= 4; - insertStylesheet(instance$259, props.precedence, hoistableRoot); - return (resource.instance = instance$259); + insertStylesheet(instance$258, props.precedence, hoistableRoot); + return (resource.instance = instance$258); case "script": - instance$259 = getScriptKey(props.src); + instance$258 = getScriptKey(props.src); if ( (styleProps = hoistableRoot.querySelector( - getScriptSelectorFromKey(instance$259) + getScriptSelectorFromKey(instance$258) )) ) return ( @@ -14578,7 +14570,7 @@ function acquireResource(hoistableRoot, resource, props) { styleProps ); instance = props; - if ((styleProps = preloadPropsMap.get(instance$259))) + if ((styleProps = preloadPropsMap.get(instance$258))) (instance = assign({}, props)), adoptPreloadPropsForScript(instance, styleProps); hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot; @@ -15647,16 +15639,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { 0 === i && attemptExplicitHydrationTarget(target); } }; -var isomorphicReactPackageVersion$jscomp$inline_1699 = React.version; +var isomorphicReactPackageVersion$jscomp$inline_1698 = React.version; if ( - "19.0.0-native-fb-63cde684-20241114" !== - isomorphicReactPackageVersion$jscomp$inline_1699 + "19.0.0-native-fb-8a41d6ce-20241114" !== + isomorphicReactPackageVersion$jscomp$inline_1698 ) throw Error( formatProdErrorMessage( 527, - isomorphicReactPackageVersion$jscomp$inline_1699, - "19.0.0-native-fb-63cde684-20241114" + isomorphicReactPackageVersion$jscomp$inline_1698, + "19.0.0-native-fb-8a41d6ce-20241114" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -15676,25 +15668,25 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { null === componentOrElement ? null : componentOrElement.stateNode; return componentOrElement; }; -var internals$jscomp$inline_2159 = { +var internals$jscomp$inline_2158 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hook$jscomp$inline_2160 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_2159 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_2160.isDisabled && - hook$jscomp$inline_2160.supportsFiber + !hook$jscomp$inline_2159.isDisabled && + hook$jscomp$inline_2159.supportsFiber ) try { - (rendererID = hook$jscomp$inline_2160.inject( - internals$jscomp$inline_2159 + (rendererID = hook$jscomp$inline_2159.inject( + internals$jscomp$inline_2158 )), - (injectedHook = hook$jscomp$inline_2160); + (injectedHook = hook$jscomp$inline_2159); } catch (err) {} } function noop() {} @@ -15940,4 +15932,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; 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 0d66596061041..bbc02526e36e3 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<<1d65bbab861baa21e3ad74357f3f13d8>> + * @generated SignedSource<> */ /* @@ -2170,19 +2170,19 @@ function getTargetInstForChangeEvent(domEventName, targetInst) { } var isInputEventSupported = !1; if (canUseDOM) { - var JSCompiler_inline_result$jscomp$310; + var JSCompiler_inline_result$jscomp$309; if (canUseDOM) { - var isSupported$jscomp$inline_444 = "oninput" in document; - if (!isSupported$jscomp$inline_444) { - var element$jscomp$inline_445 = document.createElement("div"); - element$jscomp$inline_445.setAttribute("oninput", "return;"); - isSupported$jscomp$inline_444 = - "function" === typeof element$jscomp$inline_445.oninput; + var isSupported$jscomp$inline_443 = "oninput" in document; + if (!isSupported$jscomp$inline_443) { + var element$jscomp$inline_444 = document.createElement("div"); + element$jscomp$inline_444.setAttribute("oninput", "return;"); + isSupported$jscomp$inline_443 = + "function" === typeof element$jscomp$inline_444.oninput; } - JSCompiler_inline_result$jscomp$310 = isSupported$jscomp$inline_444; - } else JSCompiler_inline_result$jscomp$310 = !1; + JSCompiler_inline_result$jscomp$309 = isSupported$jscomp$inline_443; + } else JSCompiler_inline_result$jscomp$309 = !1; isInputEventSupported = - JSCompiler_inline_result$jscomp$310 && + JSCompiler_inline_result$jscomp$309 && (!document.documentMode || 9 < document.documentMode); } function stopWatchingForValueChange() { @@ -11360,14 +11360,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -11437,16 +11430,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error(formatProdErrorMessage(345)); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -11857,8 +11849,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); memoizedUpdaters = workInProgressRootExitStatus; break; - } catch (thrownValue$190) { - handleThrow(root, thrownValue$190); + } catch (thrownValue$189) { + handleThrow(root, thrownValue$189); } while (1); lanes && root.shellSuspendCounter++; @@ -11979,8 +11971,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$192) { - handleThrow(root, thrownValue$192); + } catch (thrownValue$191) { + handleThrow(root, thrownValue$191); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -12338,7 +12330,7 @@ function releaseRootPooledCache(root, remainingLanes) { } function flushPassiveEffects() { if (null !== rootWithPendingPassiveEffects) { - var root$196 = rootWithPendingPassiveEffects, + var root$195 = rootWithPendingPassiveEffects, remainingLanes = pendingPassiveEffectsRemainingLanes; pendingPassiveEffectsRemainingLanes = 0; var renderPriority = lanesToEventPriority(pendingPassiveEffectsLanes), @@ -12388,7 +12380,7 @@ function flushPassiveEffects() { } finally { (ReactDOMSharedInternals.p = previousPriority), (ReactSharedInternals.T = prevTransition), - releaseRootPooledCache(root$196, remainingLanes); + releaseRootPooledCache(root$195, remainingLanes); } } return !1; @@ -12539,14 +12531,14 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { isFlushingWork = !0; do { var didPerformSomeWork = !1; - for (var root$198 = firstScheduledRoot; null !== root$198; ) { - if (!onlyLegacy || 0 === root$198.tag) + for (var root$197 = firstScheduledRoot; null !== root$197; ) { + if (!onlyLegacy || 0 === root$197.tag) if (0 !== syncTransitionLanes) { - var pendingLanes = root$198.pendingLanes; + var pendingLanes = root$197.pendingLanes; if (0 === pendingLanes) var JSCompiler_inline_result = 0; else { - var suspendedLanes = root$198.suspendedLanes, - pingedLanes = root$198.pingedLanes; + var suspendedLanes = root$197.suspendedLanes, + pingedLanes = root$197.pingedLanes; JSCompiler_inline_result = (1 << (31 - clz32(42 | syncTransitionLanes) + 1)) - 1; JSCompiler_inline_result &= @@ -12560,18 +12552,18 @@ function flushSyncWorkAcrossRoots_impl(syncTransitionLanes, onlyLegacy) { } 0 !== JSCompiler_inline_result && ((didPerformSomeWork = !0), - performSyncWorkOnRoot(root$198, JSCompiler_inline_result)); + performSyncWorkOnRoot(root$197, JSCompiler_inline_result)); } else (JSCompiler_inline_result = workInProgressRootRenderLanes), (JSCompiler_inline_result = getNextLanes( - root$198, - root$198 === workInProgressRoot ? JSCompiler_inline_result : 0 + root$197, + root$197 === workInProgressRoot ? JSCompiler_inline_result : 0 )), 0 === (JSCompiler_inline_result & 3) || - checkIfRootIsPrerendering(root$198, JSCompiler_inline_result) || + checkIfRootIsPrerendering(root$197, JSCompiler_inline_result) || ((didPerformSomeWork = !0), - performSyncWorkOnRoot(root$198, JSCompiler_inline_result)); - root$198 = root$198.next; + performSyncWorkOnRoot(root$197, JSCompiler_inline_result)); + root$197 = root$197.next; } } while (didPerformSomeWork); isFlushingWork = !1; @@ -12803,20 +12795,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"); @@ -13999,34 +13991,34 @@ function setInitialProperties(domElement, tag, props) { defaultChecked = null; for (hasSrc in props) if (props.hasOwnProperty(hasSrc)) { - var propValue$212 = props[hasSrc]; - if (null != propValue$212) + var propValue$211 = props[hasSrc]; + if (null != propValue$211) switch (hasSrc) { case "name": - hasSrcSet = propValue$212; + hasSrcSet = propValue$211; break; case "type": - propValue = propValue$212; + propValue = propValue$211; break; case "checked": - checked = propValue$212; + checked = propValue$211; break; case "defaultChecked": - defaultChecked = propValue$212; + defaultChecked = propValue$211; break; case "value": - propKey = propValue$212; + propKey = propValue$211; break; case "defaultValue": - defaultValue = propValue$212; + defaultValue = propValue$211; break; case "children": case "dangerouslySetInnerHTML": - if (null != propValue$212) + if (null != propValue$211) throw Error(formatProdErrorMessage(137, tag)); break; default: - setProp(domElement, tag, hasSrc, propValue$212, props, null); + setProp(domElement, tag, hasSrc, propValue$211, props, null); } } initInput( @@ -14163,14 +14155,14 @@ function setInitialProperties(domElement, tag, props) { return; default: if (isCustomElement(tag)) { - for (propValue$212 in props) - props.hasOwnProperty(propValue$212) && - ((hasSrc = props[propValue$212]), + for (propValue$211 in props) + props.hasOwnProperty(propValue$211) && + ((hasSrc = props[propValue$211]), void 0 !== hasSrc && setPropOnCustomElement( domElement, tag, - propValue$212, + propValue$211, hasSrc, props, void 0 @@ -14218,14 +14210,14 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp(domElement, tag, propKey, null, nextProps, lastProp); } } - for (var propKey$229 in nextProps) { - var propKey = nextProps[propKey$229]; - lastProp = lastProps[propKey$229]; + for (var propKey$228 in nextProps) { + var propKey = nextProps[propKey$228]; + lastProp = lastProps[propKey$228]; if ( - nextProps.hasOwnProperty(propKey$229) && + nextProps.hasOwnProperty(propKey$228) && (null != propKey || null != lastProp) ) - switch (propKey$229) { + switch (propKey$228) { case "type": type = propKey; break; @@ -14254,7 +14246,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp( domElement, tag, - propKey$229, + propKey$228, propKey, nextProps, lastProp @@ -14273,7 +14265,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ); return; case "select": - propKey = value = defaultValue = propKey$229 = null; + propKey = value = defaultValue = propKey$228 = null; for (type in lastProps) if ( ((lastDefaultValue = lastProps[type]), @@ -14304,7 +14296,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ) switch (name) { case "value": - propKey$229 = type; + propKey$228 = type; break; case "defaultValue": defaultValue = type; @@ -14325,15 +14317,15 @@ function updateProperties(domElement, tag, lastProps, nextProps) { tag = defaultValue; lastProps = value; nextProps = propKey; - null != propKey$229 - ? updateOptions(domElement, !!lastProps, propKey$229, !1) + null != propKey$228 + ? updateOptions(domElement, !!lastProps, propKey$228, !1) : !!nextProps !== !!lastProps && (null != tag ? updateOptions(domElement, !!lastProps, tag, !0) : updateOptions(domElement, !!lastProps, lastProps ? [] : "", !1)); return; case "textarea": - propKey = propKey$229 = null; + propKey = propKey$228 = null; for (defaultValue in lastProps) if ( ((name = lastProps[defaultValue]), @@ -14357,7 +14349,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { ) switch (value) { case "value": - propKey$229 = name; + propKey$228 = name; break; case "defaultValue": propKey = name; @@ -14371,17 +14363,17 @@ function updateProperties(domElement, tag, lastProps, nextProps) { name !== type && setProp(domElement, tag, value, name, nextProps, type); } - updateTextarea(domElement, propKey$229, propKey); + updateTextarea(domElement, propKey$228, propKey); return; case "option": - for (var propKey$245 in lastProps) + for (var propKey$244 in lastProps) if ( - ((propKey$229 = lastProps[propKey$245]), - lastProps.hasOwnProperty(propKey$245) && - null != propKey$229 && - !nextProps.hasOwnProperty(propKey$245)) + ((propKey$228 = lastProps[propKey$244]), + lastProps.hasOwnProperty(propKey$244) && + null != propKey$228 && + !nextProps.hasOwnProperty(propKey$244)) ) - switch (propKey$245) { + switch (propKey$244) { case "selected": domElement.selected = !1; break; @@ -14389,33 +14381,33 @@ function updateProperties(domElement, tag, lastProps, nextProps) { setProp( domElement, tag, - propKey$245, + propKey$244, null, nextProps, - propKey$229 + propKey$228 ); } for (lastDefaultValue in nextProps) if ( - ((propKey$229 = nextProps[lastDefaultValue]), + ((propKey$228 = nextProps[lastDefaultValue]), (propKey = lastProps[lastDefaultValue]), nextProps.hasOwnProperty(lastDefaultValue) && - propKey$229 !== propKey && - (null != propKey$229 || null != propKey)) + propKey$228 !== propKey && + (null != propKey$228 || null != propKey)) ) switch (lastDefaultValue) { case "selected": domElement.selected = - propKey$229 && - "function" !== typeof propKey$229 && - "symbol" !== typeof propKey$229; + propKey$228 && + "function" !== typeof propKey$228 && + "symbol" !== typeof propKey$228; break; default: setProp( domElement, tag, lastDefaultValue, - propKey$229, + propKey$228, nextProps, propKey ); @@ -14436,24 +14428,24 @@ function updateProperties(domElement, tag, lastProps, nextProps) { case "track": case "wbr": case "menuitem": - for (var propKey$250 in lastProps) - (propKey$229 = lastProps[propKey$250]), - lastProps.hasOwnProperty(propKey$250) && - null != propKey$229 && - !nextProps.hasOwnProperty(propKey$250) && - setProp(domElement, tag, propKey$250, null, nextProps, propKey$229); + for (var propKey$249 in lastProps) + (propKey$228 = lastProps[propKey$249]), + lastProps.hasOwnProperty(propKey$249) && + null != propKey$228 && + !nextProps.hasOwnProperty(propKey$249) && + setProp(domElement, tag, propKey$249, null, nextProps, propKey$228); for (checked in nextProps) if ( - ((propKey$229 = nextProps[checked]), + ((propKey$228 = nextProps[checked]), (propKey = lastProps[checked]), nextProps.hasOwnProperty(checked) && - propKey$229 !== propKey && - (null != propKey$229 || null != propKey)) + propKey$228 !== propKey && + (null != propKey$228 || null != propKey)) ) switch (checked) { case "children": case "dangerouslySetInnerHTML": - if (null != propKey$229) + if (null != propKey$228) throw Error(formatProdErrorMessage(137, tag)); break; default: @@ -14461,7 +14453,7 @@ function updateProperties(domElement, tag, lastProps, nextProps) { domElement, tag, checked, - propKey$229, + propKey$228, nextProps, propKey ); @@ -14469,49 +14461,49 @@ function updateProperties(domElement, tag, lastProps, nextProps) { return; default: if (isCustomElement(tag)) { - for (var propKey$255 in lastProps) - (propKey$229 = lastProps[propKey$255]), - lastProps.hasOwnProperty(propKey$255) && - void 0 !== propKey$229 && - !nextProps.hasOwnProperty(propKey$255) && + for (var propKey$254 in lastProps) + (propKey$228 = lastProps[propKey$254]), + lastProps.hasOwnProperty(propKey$254) && + void 0 !== propKey$228 && + !nextProps.hasOwnProperty(propKey$254) && setPropOnCustomElement( domElement, tag, - propKey$255, + propKey$254, void 0, nextProps, - propKey$229 + propKey$228 ); for (defaultChecked in nextProps) - (propKey$229 = nextProps[defaultChecked]), + (propKey$228 = nextProps[defaultChecked]), (propKey = lastProps[defaultChecked]), !nextProps.hasOwnProperty(defaultChecked) || - propKey$229 === propKey || - (void 0 === propKey$229 && void 0 === propKey) || + propKey$228 === propKey || + (void 0 === propKey$228 && void 0 === propKey) || setPropOnCustomElement( domElement, tag, defaultChecked, - propKey$229, + propKey$228, nextProps, propKey ); return; } } - for (var propKey$260 in lastProps) - (propKey$229 = lastProps[propKey$260]), - lastProps.hasOwnProperty(propKey$260) && - null != propKey$229 && - !nextProps.hasOwnProperty(propKey$260) && - setProp(domElement, tag, propKey$260, null, nextProps, propKey$229); + for (var propKey$259 in lastProps) + (propKey$228 = lastProps[propKey$259]), + lastProps.hasOwnProperty(propKey$259) && + null != propKey$228 && + !nextProps.hasOwnProperty(propKey$259) && + setProp(domElement, tag, propKey$259, null, nextProps, propKey$228); for (lastProp in nextProps) - (propKey$229 = nextProps[lastProp]), + (propKey$228 = nextProps[lastProp]), (propKey = lastProps[lastProp]), !nextProps.hasOwnProperty(lastProp) || - propKey$229 === propKey || - (null == propKey$229 && null == propKey) || - setProp(domElement, tag, lastProp, propKey$229, nextProps, propKey); + propKey$228 === propKey || + (null == propKey$228 && null == propKey) || + setProp(domElement, tag, lastProp, propKey$228, nextProps, propKey); } var eventsEnabled = null, selectionInformation = null; @@ -15051,26 +15043,26 @@ function getResource(type, currentProps, pendingProps, currentResource) { "string" === typeof pendingProps.precedence ) { type = getStyleKey(pendingProps.href); - var styles$268 = getResourcesFromRoot( + var styles$267 = getResourcesFromRoot( JSCompiler_inline_result ).hoistableStyles, - resource$269 = styles$268.get(type); - resource$269 || + resource$268 = styles$267.get(type); + resource$268 || ((JSCompiler_inline_result = JSCompiler_inline_result.ownerDocument || JSCompiler_inline_result), - (resource$269 = { + (resource$268 = { type: "stylesheet", instance: null, count: 0, state: { loading: 0, preload: null } }), - styles$268.set(type, resource$269), - (styles$268 = JSCompiler_inline_result.querySelector( + styles$267.set(type, resource$268), + (styles$267 = JSCompiler_inline_result.querySelector( getStylesheetSelectorFromKey(type) )) && - !styles$268._p && - ((resource$269.instance = styles$268), - (resource$269.state.loading = 5)), + !styles$267._p && + ((resource$268.instance = styles$267), + (resource$268.state.loading = 5)), preloadPropsMap.has(type) || ((pendingProps = { rel: "preload", @@ -15083,16 +15075,16 @@ function getResource(type, currentProps, pendingProps, currentResource) { referrerPolicy: pendingProps.referrerPolicy }), preloadPropsMap.set(type, pendingProps), - styles$268 || + styles$267 || preloadStylesheet( JSCompiler_inline_result, type, pendingProps, - resource$269.state + resource$268.state ))); if (currentProps && null === currentResource) throw Error(formatProdErrorMessage(528, "")); - return resource$269; + return resource$268; } if (currentProps && null !== currentResource) throw Error(formatProdErrorMessage(529, "")); @@ -15189,37 +15181,37 @@ function acquireResource(hoistableRoot, resource, props) { return (resource.instance = instance); case "stylesheet": styleProps = getStyleKey(props.href); - var instance$274 = hoistableRoot.querySelector( + var instance$273 = hoistableRoot.querySelector( getStylesheetSelectorFromKey(styleProps) ); - if (instance$274) + if (instance$273) return ( (resource.state.loading |= 4), - (resource.instance = instance$274), - markNodeAsHoistable(instance$274), - instance$274 + (resource.instance = instance$273), + markNodeAsHoistable(instance$273), + instance$273 ); instance = stylesheetPropsFromRawProps(props); (styleProps = preloadPropsMap.get(styleProps)) && adoptPreloadPropsForStylesheet(instance, styleProps); - instance$274 = ( + instance$273 = ( hoistableRoot.ownerDocument || hoistableRoot ).createElement("link"); - markNodeAsHoistable(instance$274); - var linkInstance = instance$274; + markNodeAsHoistable(instance$273); + var linkInstance = instance$273; linkInstance._p = new Promise(function (resolve, reject) { linkInstance.onload = resolve; linkInstance.onerror = reject; }); - setInitialProperties(instance$274, "link", instance); + setInitialProperties(instance$273, "link", instance); resource.state.loading |= 4; - insertStylesheet(instance$274, props.precedence, hoistableRoot); - return (resource.instance = instance$274); + insertStylesheet(instance$273, props.precedence, hoistableRoot); + return (resource.instance = instance$273); case "script": - instance$274 = getScriptKey(props.src); + instance$273 = getScriptKey(props.src); if ( (styleProps = hoistableRoot.querySelector( - getScriptSelectorFromKey(instance$274) + getScriptSelectorFromKey(instance$273) )) ) return ( @@ -15228,7 +15220,7 @@ function acquireResource(hoistableRoot, resource, props) { styleProps ); instance = props; - if ((styleProps = preloadPropsMap.get(instance$274))) + if ((styleProps = preloadPropsMap.get(instance$273))) (instance = assign({}, props)), adoptPreloadPropsForScript(instance, styleProps); hoistableRoot = hoistableRoot.ownerDocument || hoistableRoot; @@ -16305,16 +16297,16 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { 0 === i && attemptExplicitHydrationTarget(target); } }; -var isomorphicReactPackageVersion$jscomp$inline_1789 = React.version; +var isomorphicReactPackageVersion$jscomp$inline_1788 = React.version; if ( - "19.0.0-native-fb-63cde684-20241114" !== - isomorphicReactPackageVersion$jscomp$inline_1789 + "19.0.0-native-fb-8a41d6ce-20241114" !== + isomorphicReactPackageVersion$jscomp$inline_1788 ) throw Error( formatProdErrorMessage( 527, - isomorphicReactPackageVersion$jscomp$inline_1789, - "19.0.0-native-fb-63cde684-20241114" + isomorphicReactPackageVersion$jscomp$inline_1788, + "19.0.0-native-fb-8a41d6ce-20241114" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -16334,18 +16326,18 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { null === componentOrElement ? null : componentOrElement.stateNode; return componentOrElement; }; -var internals$jscomp$inline_1796 = { +var internals$jscomp$inline_1795 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114", + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114", getLaneLabelMap: function () { for ( - var map = new Map(), lane = 1, index$291 = 0; - 31 > index$291; - index$291++ + var map = new Map(), lane = 1, index$290 = 0; + 31 > index$290; + index$290++ ) { var label = getLabelForLane(lane); map.set(lane, label); @@ -16358,16 +16350,16 @@ var internals$jscomp$inline_1796 = { } }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hook$jscomp$inline_2211 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_2210 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_2211.isDisabled && - hook$jscomp$inline_2211.supportsFiber + !hook$jscomp$inline_2210.isDisabled && + hook$jscomp$inline_2210.supportsFiber ) try { - (rendererID = hook$jscomp$inline_2211.inject( - internals$jscomp$inline_1796 + (rendererID = hook$jscomp$inline_2210.inject( + internals$jscomp$inline_1795 )), - (injectedHook = hook$jscomp$inline_2211); + (injectedHook = hook$jscomp$inline_2210); } catch (err) {} } function noop() {} @@ -16613,7 +16605,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; "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 eace88241f859..570f5080f09d1 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,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<859b4c831071d64575318e94ba73e9e8>> + * @generated SignedSource<> */ "use strict"; @@ -10881,14 +10881,7 @@ __DEV__ && !shouldTimeSlice && markRootSuspended(root, lanes, 0, !1); break; - } else if (exitStatus === RootDidNotComplete) - markRootSuspended( - root, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root.current.alternate; if ( renderWasConcurrent && @@ -10951,16 +10944,15 @@ __DEV__ && case RootFatalErrored: throw Error("Root did not complete. This is a bug in React."); case RootSuspendedWithDelay: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case RootSuspendedAtTheShell: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case RootErrored: workInProgressRootRecoverableErrors = null; break; @@ -11369,7 +11361,7 @@ __DEV__ && switch (workInProgressSuspendedReason) { case SuspendedOnHydration: resetWorkInProgressStack(); - exitStatus = RootDidNotComplete; + exitStatus = RootSuspendedAtTheShell; break a; case SuspendedOnImmediate: case SuspendedOnData: @@ -11535,7 +11527,7 @@ __DEV__ && break; case SuspendedOnHydration: resetWorkInProgressStack(); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; break a; default: throw Error( @@ -11770,7 +11762,7 @@ __DEV__ && } workInProgress = unitOfWork = next; } while (null !== unitOfWork); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; workInProgress = null; } function commitRootImpl( @@ -14922,8 +14914,8 @@ __DEV__ && RootErrored = 2, RootSuspended = 3, RootSuspendedWithDelay = 4, + RootSuspendedAtTheShell = 6, RootCompleted = 5, - RootDidNotComplete = 6, executionContext = NoContext, workInProgressRoot = null, workInProgress = null, @@ -15191,11 +15183,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15340,5 +15332,5 @@ __DEV__ && flushSyncWorkAcrossRoots_impl(0, !0)); } }; - exports.version = "19.0.0-native-fb-63cde684-20241114"; + exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; })(); 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 f66d223f606c8..b73553d1a04bc 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<<8b074877652f39a42f0b994b22aa264e>> */ "use strict"; @@ -7879,14 +7879,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -7950,16 +7943,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error("Root did not complete. This is a bug in React."); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -8307,8 +8299,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); exitStatus = workInProgressRootExitStatus; break; - } catch (thrownValue$128) { - handleThrow(root, thrownValue$128); + } catch (thrownValue$127) { + handleThrow(root, thrownValue$127); } while (1); lanes && root.shellSuspendCounter++; @@ -8421,8 +8413,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$130) { - handleThrow(root, thrownValue$130); + } catch (thrownValue$129) { + handleThrow(root, thrownValue$129); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -9548,28 +9540,28 @@ function wrapFiber(fiber) { fiberToWrapper.set(fiber, wrapper)); return wrapper; } -var internals$jscomp$inline_1355 = { +var internals$jscomp$inline_1354 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: function (mockNode) { mockNode = nodeToInstanceMap.get(mockNode); return void 0 !== mockNode ? mockNode.internalInstanceHandle : null; }, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hook$jscomp$inline_1356 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_1355 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_1356.isDisabled && - hook$jscomp$inline_1356.supportsFiber + !hook$jscomp$inline_1355.isDisabled && + hook$jscomp$inline_1355.supportsFiber ) try { - (rendererID = hook$jscomp$inline_1356.inject( - internals$jscomp$inline_1355 + (rendererID = hook$jscomp$inline_1355.inject( + internals$jscomp$inline_1354 )), - (injectedHook = hook$jscomp$inline_1356); + (injectedHook = hook$jscomp$inline_1355); } catch (err) {} } exports._Scheduler = Scheduler; @@ -9693,4 +9685,4 @@ exports.unstable_batchedUpdates = function (fn, a) { flushSyncWorkAcrossRoots_impl(0, !0)); } }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; 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 f4eb6291ecf66..f661747ee5fb8 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<> + * @generated SignedSource<<16c93db0f13c5f2a2f1ac904f2605e40>> */ "use strict"; @@ -8349,14 +8349,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -8420,16 +8413,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error("Root did not complete. This is a bug in React."); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -8807,8 +8799,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); exitStatus = workInProgressRootExitStatus; break; - } catch (thrownValue$141) { - handleThrow(root, thrownValue$141); + } catch (thrownValue$140) { + handleThrow(root, thrownValue$140); } while (1); lanes && root.shellSuspendCounter++; @@ -8923,8 +8915,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$143) { - handleThrow(root, thrownValue$143); + } catch (thrownValue$142) { + handleThrow(root, thrownValue$142); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -10117,21 +10109,21 @@ function wrapFiber(fiber) { fiberToWrapper.set(fiber, wrapper)); return wrapper; } -var internals$jscomp$inline_1168 = { +var internals$jscomp$inline_1167 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: function (mockNode) { mockNode = nodeToInstanceMap.get(mockNode); return void 0 !== mockNode ? mockNode.internalInstanceHandle : null; }, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114", + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114", getLaneLabelMap: function () { for ( - var map = new Map(), lane = 1, index$147 = 0; - 31 > index$147; - index$147++ + var map = new Map(), lane = 1, index$146 = 0; + 31 > index$146; + index$146++ ) { var label = getLabelForLane(lane); map.set(lane, label); @@ -10144,16 +10136,16 @@ var internals$jscomp$inline_1168 = { } }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hook$jscomp$inline_1412 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_1411 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_1412.isDisabled && - hook$jscomp$inline_1412.supportsFiber + !hook$jscomp$inline_1411.isDisabled && + hook$jscomp$inline_1411.supportsFiber ) try { - (rendererID = hook$jscomp$inline_1412.inject( - internals$jscomp$inline_1168 + (rendererID = hook$jscomp$inline_1411.inject( + internals$jscomp$inline_1167 )), - (injectedHook = hook$jscomp$inline_1412); + (injectedHook = hook$jscomp$inline_1411); } catch (err) {} } exports._Scheduler = Scheduler; @@ -10277,4 +10269,4 @@ exports.unstable_batchedUpdates = function (fn, a) { flushSyncWorkAcrossRoots_impl(0, !0)); } }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; 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 8785ce63488da..c48a5c352d0ab 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<<885a23020a03aa8dc845a5886eb26d32>> + * @generated SignedSource<> */ "use strict"; @@ -1694,7 +1694,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.0.0-native-fb-63cde684-20241114"; + exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; "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 cdaeffc68290e..84a60186b7a22 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<<3c1af74dc56e79cb37f079d479087dce>> + * @generated SignedSource<> */ "use strict"; @@ -580,4 +580,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; 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 05935f02bc3c9..a5a04fba30879 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<<38636fb32103769ad751a3d6548b41f1>> + * @generated SignedSource<> */ "use strict"; @@ -584,7 +584,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.0.0-native-fb-63cde684-20241114"; +exports.version = "19.0.0-native-fb-8a41d6ce-20241114"; "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 6c770e4341ff6..e7ae49d370441 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 @@ -63cde684f5340b1ca73f6244501aac1c3d2c92a8 +8a41d6ceab8af642d8ab9ed04fc744a699f4ac09 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 3eb28d9bcf846..95cb4797c1cfe 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<<0db34c0c73779a7c35e8500884a430f0>> + * @generated SignedSource<> */ "use strict"; @@ -11779,14 +11779,7 @@ __DEV__ && !shouldTimeSlice && markRootSuspended(root, lanes, 0, !1); break; - } else if (exitStatus === RootDidNotComplete) - markRootSuspended( - root, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root.current.alternate; if ( renderWasConcurrent && @@ -11854,16 +11847,15 @@ __DEV__ && case RootFatalErrored: throw Error("Root did not complete. This is a bug in React."); case RootSuspendedWithDelay: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case RootSuspendedAtTheShell: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case RootErrored: workInProgressRootRecoverableErrors = null; break; @@ -12283,7 +12275,7 @@ __DEV__ && switch (workInProgressSuspendedReason) { case SuspendedOnHydration: resetWorkInProgressStack(); - memoizedUpdaters = RootDidNotComplete; + memoizedUpdaters = RootSuspendedAtTheShell; break a; case SuspendedOnImmediate: case SuspendedOnData: @@ -12463,7 +12455,7 @@ __DEV__ && break; case SuspendedOnHydration: resetWorkInProgressStack(); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; break a; default: throw Error( @@ -12701,7 +12693,7 @@ __DEV__ && } workInProgress = unitOfWork = next; } while (null !== unitOfWork); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; workInProgress = null; } function commitRootImpl( @@ -16618,8 +16610,8 @@ __DEV__ && RootErrored = 2, RootSuspended = 3, RootSuspendedWithDelay = 4, + RootSuspendedAtTheShell = 6, RootCompleted = 5, - RootDidNotComplete = 6, executionContext = NoContext, workInProgressRoot = null, workInProgress = null, @@ -16971,11 +16963,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; 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 72f5cd0344be8..ac271ce179013 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<<2fdfc875c3cad264006df12c65016ad0>> + * @generated SignedSource<<4897493e77847ca655e0f798df4fc4b0>> */ "use strict"; @@ -1232,7 +1232,7 @@ eventPluginOrder = Array.prototype.slice.call([ "ReactNativeBridgeEventPlugin" ]); recomputePluginOrdering(); -var injectedNamesToPlugins$jscomp$inline_287 = { +var injectedNamesToPlugins$jscomp$inline_286 = { ResponderEventPlugin: ResponderEventPlugin, ReactNativeBridgeEventPlugin: { eventTypes: {}, @@ -1278,32 +1278,32 @@ var injectedNamesToPlugins$jscomp$inline_287 = { } } }, - isOrderingDirty$jscomp$inline_288 = !1, - pluginName$jscomp$inline_289; -for (pluginName$jscomp$inline_289 in injectedNamesToPlugins$jscomp$inline_287) + isOrderingDirty$jscomp$inline_287 = !1, + pluginName$jscomp$inline_288; +for (pluginName$jscomp$inline_288 in injectedNamesToPlugins$jscomp$inline_286) if ( - injectedNamesToPlugins$jscomp$inline_287.hasOwnProperty( - pluginName$jscomp$inline_289 + injectedNamesToPlugins$jscomp$inline_286.hasOwnProperty( + pluginName$jscomp$inline_288 ) ) { - var pluginModule$jscomp$inline_290 = - injectedNamesToPlugins$jscomp$inline_287[pluginName$jscomp$inline_289]; + var pluginModule$jscomp$inline_289 = + injectedNamesToPlugins$jscomp$inline_286[pluginName$jscomp$inline_288]; if ( - !namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_289) || - namesToPlugins[pluginName$jscomp$inline_289] !== - pluginModule$jscomp$inline_290 + !namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_288) || + namesToPlugins[pluginName$jscomp$inline_288] !== + pluginModule$jscomp$inline_289 ) { - if (namesToPlugins[pluginName$jscomp$inline_289]) + if (namesToPlugins[pluginName$jscomp$inline_288]) throw Error( "EventPluginRegistry: Cannot inject two different event plugins using the same name, `" + - (pluginName$jscomp$inline_289 + "`.") + (pluginName$jscomp$inline_288 + "`.") ); - namesToPlugins[pluginName$jscomp$inline_289] = - pluginModule$jscomp$inline_290; - isOrderingDirty$jscomp$inline_288 = !0; + namesToPlugins[pluginName$jscomp$inline_288] = + pluginModule$jscomp$inline_289; + isOrderingDirty$jscomp$inline_287 = !0; } } -isOrderingDirty$jscomp$inline_288 && recomputePluginOrdering(); +isOrderingDirty$jscomp$inline_287 && recomputePluginOrdering(); var emptyObject$1 = {}, removedKeys = null, removedKeyCount = 0, @@ -9195,14 +9195,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -9266,16 +9259,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error("Root did not complete. This is a bug in React."); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -9629,8 +9621,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); exitStatus = workInProgressRootExitStatus; break; - } catch (thrownValue$132) { - handleThrow(root, thrownValue$132); + } catch (thrownValue$131) { + handleThrow(root, thrownValue$131); } while (1); lanes && root.shellSuspendCounter++; @@ -9743,8 +9735,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$134) { - handleThrow(root, thrownValue$134); + } catch (thrownValue$133) { + handleThrow(root, thrownValue$133); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -10904,27 +10896,27 @@ batchedUpdatesImpl = function (fn, a) { } }; var roots = new Map(), - internals$jscomp$inline_1177 = { + internals$jscomp$inline_1176 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; null !== extraDevToolsConfig && - (internals$jscomp$inline_1177.rendererConfig = extraDevToolsConfig); + (internals$jscomp$inline_1176.rendererConfig = extraDevToolsConfig); if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hook$jscomp$inline_1493 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_1492 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_1493.isDisabled && - hook$jscomp$inline_1493.supportsFiber + !hook$jscomp$inline_1492.isDisabled && + hook$jscomp$inline_1492.supportsFiber ) try { - (rendererID = hook$jscomp$inline_1493.inject( - internals$jscomp$inline_1177 + (rendererID = hook$jscomp$inline_1492.inject( + internals$jscomp$inline_1176 )), - (injectedHook = hook$jscomp$inline_1493); + (injectedHook = hook$jscomp$inline_1492); } catch (err) {} } exports.createPortal = function (children, containerTag) { 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 fae3f295f2b5e..f85b23ada0d54 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<<9767413dc7b007a5fa58588e5f042321>> + * @generated SignedSource<<6c57ef0bd9baabe73d7f79998b6318bc>> */ "use strict"; @@ -1236,7 +1236,7 @@ eventPluginOrder = Array.prototype.slice.call([ "ReactNativeBridgeEventPlugin" ]); recomputePluginOrdering(); -var injectedNamesToPlugins$jscomp$inline_303 = { +var injectedNamesToPlugins$jscomp$inline_302 = { ResponderEventPlugin: ResponderEventPlugin, ReactNativeBridgeEventPlugin: { eventTypes: {}, @@ -1282,32 +1282,32 @@ var injectedNamesToPlugins$jscomp$inline_303 = { } } }, - isOrderingDirty$jscomp$inline_304 = !1, - pluginName$jscomp$inline_305; -for (pluginName$jscomp$inline_305 in injectedNamesToPlugins$jscomp$inline_303) + isOrderingDirty$jscomp$inline_303 = !1, + pluginName$jscomp$inline_304; +for (pluginName$jscomp$inline_304 in injectedNamesToPlugins$jscomp$inline_302) if ( - injectedNamesToPlugins$jscomp$inline_303.hasOwnProperty( - pluginName$jscomp$inline_305 + injectedNamesToPlugins$jscomp$inline_302.hasOwnProperty( + pluginName$jscomp$inline_304 ) ) { - var pluginModule$jscomp$inline_306 = - injectedNamesToPlugins$jscomp$inline_303[pluginName$jscomp$inline_305]; + var pluginModule$jscomp$inline_305 = + injectedNamesToPlugins$jscomp$inline_302[pluginName$jscomp$inline_304]; if ( - !namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_305) || - namesToPlugins[pluginName$jscomp$inline_305] !== - pluginModule$jscomp$inline_306 + !namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_304) || + namesToPlugins[pluginName$jscomp$inline_304] !== + pluginModule$jscomp$inline_305 ) { - if (namesToPlugins[pluginName$jscomp$inline_305]) + if (namesToPlugins[pluginName$jscomp$inline_304]) throw Error( "EventPluginRegistry: Cannot inject two different event plugins using the same name, `" + - (pluginName$jscomp$inline_305 + "`.") + (pluginName$jscomp$inline_304 + "`.") ); - namesToPlugins[pluginName$jscomp$inline_305] = - pluginModule$jscomp$inline_306; - isOrderingDirty$jscomp$inline_304 = !0; + namesToPlugins[pluginName$jscomp$inline_304] = + pluginModule$jscomp$inline_305; + isOrderingDirty$jscomp$inline_303 = !0; } } -isOrderingDirty$jscomp$inline_304 && recomputePluginOrdering(); +isOrderingDirty$jscomp$inline_303 && recomputePluginOrdering(); var emptyObject$1 = {}, removedKeys = null, removedKeyCount = 0, @@ -9725,14 +9725,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -9796,16 +9789,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error("Root did not complete. This is a bug in React."); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -10198,8 +10190,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); memoizedUpdaters = workInProgressRootExitStatus; break; - } catch (thrownValue$147) { - handleThrow(root, thrownValue$147); + } catch (thrownValue$146) { + handleThrow(root, thrownValue$146); } while (1); lanes && root.shellSuspendCounter++; @@ -10320,8 +10312,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$149) { - handleThrow(root, thrownValue$149); + } catch (thrownValue$148) { + handleThrow(root, thrownValue$148); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -11562,21 +11554,21 @@ batchedUpdatesImpl = function (fn, a) { } }; var roots = new Map(), - internals$jscomp$inline_1265 = { + internals$jscomp$inline_1264 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; null !== extraDevToolsConfig && - (internals$jscomp$inline_1265.rendererConfig = extraDevToolsConfig); -internals$jscomp$inline_1265.getLaneLabelMap = function () { + (internals$jscomp$inline_1264.rendererConfig = extraDevToolsConfig); +internals$jscomp$inline_1264.getLaneLabelMap = function () { for ( - var map = new Map(), lane = 1, index$153 = 0; - 31 > index$153; - index$153++ + var map = new Map(), lane = 1, index$152 = 0; + 31 > index$152; + index$152++ ) { var label = getLabelForLane(lane); map.set(lane, label); @@ -11584,20 +11576,20 @@ internals$jscomp$inline_1265.getLaneLabelMap = function () { } return map; }; -internals$jscomp$inline_1265.injectProfilingHooks = function (profilingHooks) { +internals$jscomp$inline_1264.injectProfilingHooks = function (profilingHooks) { injectedProfilingHooks = profilingHooks; }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hook$jscomp$inline_1544 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_1543 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_1544.isDisabled && - hook$jscomp$inline_1544.supportsFiber + !hook$jscomp$inline_1543.isDisabled && + hook$jscomp$inline_1543.supportsFiber ) try { - (rendererID = hook$jscomp$inline_1544.inject( - internals$jscomp$inline_1265 + (rendererID = hook$jscomp$inline_1543.inject( + internals$jscomp$inline_1264 )), - (injectedHook = hook$jscomp$inline_1544); + (injectedHook = hook$jscomp$inline_1543); } catch (err) {} } exports.createPortal = function (children, containerTag) { 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 f17268671ef54..14c67928c0393 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<<939b76ca4056a601418024834ab3cebb>> + * @generated SignedSource<> */ "use strict"; @@ -12145,14 +12145,7 @@ __DEV__ && !shouldTimeSlice && markRootSuspended(root, lanes, 0, !1); break; - } else if (exitStatus === RootDidNotComplete) - markRootSuspended( - root, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root.current.alternate; if ( renderWasConcurrent && @@ -12215,16 +12208,15 @@ __DEV__ && case RootFatalErrored: throw Error("Root did not complete. This is a bug in React."); case RootSuspendedWithDelay: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case RootSuspendedAtTheShell: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case RootErrored: workInProgressRootRecoverableErrors = null; break; @@ -12642,7 +12634,7 @@ __DEV__ && switch (workInProgressSuspendedReason) { case SuspendedOnHydration: resetWorkInProgressStack(); - memoizedUpdaters = RootDidNotComplete; + memoizedUpdaters = RootSuspendedAtTheShell; break a; case SuspendedOnImmediate: case SuspendedOnData: @@ -12822,7 +12814,7 @@ __DEV__ && break; case SuspendedOnHydration: resetWorkInProgressStack(); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; break a; default: throw Error( @@ -13060,7 +13052,7 @@ __DEV__ && } workInProgress = unitOfWork = next; } while (null !== unitOfWork); - workInProgressRootExitStatus = RootDidNotComplete; + workInProgressRootExitStatus = RootSuspendedAtTheShell; workInProgress = null; } function commitRootImpl( @@ -17046,8 +17038,8 @@ __DEV__ && RootErrored = 2, RootSuspended = 3, RootSuspendedWithDelay = 4, + RootSuspendedAtTheShell = 6, RootCompleted = 5, - RootDidNotComplete = 6, executionContext = NoContext, workInProgressRoot = null, workInProgress = null, @@ -17189,11 +17181,11 @@ __DEV__ && shouldSuspendImpl = newShouldSuspendImpl; }; var isomorphicReactPackageVersion = React.version; - if ("19.0.0-native-fb-63cde684-20241114" !== isomorphicReactPackageVersion) + if ("19.0.0-native-fb-8a41d6ce-20241114" !== 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.0.0-native-fb-63cde684-20241114\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-native-renderer: 19.0.0-native-fb-8a41d6ce-20241114\nLearn more: https://react.dev/warnings/version-mismatch") ); if ( "function" !== @@ -17219,11 +17211,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromTag, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; 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 bd63ca01e7a62..76009d504755f 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<<401b6828b591866f24d8fa4b89e16b10>> + * @generated SignedSource<<4f7033c244c90fc3f144723fff15fe21>> */ "use strict"; @@ -1227,7 +1227,7 @@ eventPluginOrder = Array.prototype.slice.call([ "ReactNativeBridgeEventPlugin" ]); recomputePluginOrdering(); -var injectedNamesToPlugins$jscomp$inline_294 = { +var injectedNamesToPlugins$jscomp$inline_293 = { ResponderEventPlugin: ResponderEventPlugin, ReactNativeBridgeEventPlugin: { eventTypes: {}, @@ -1273,32 +1273,32 @@ var injectedNamesToPlugins$jscomp$inline_294 = { } } }, - isOrderingDirty$jscomp$inline_295 = !1, - pluginName$jscomp$inline_296; -for (pluginName$jscomp$inline_296 in injectedNamesToPlugins$jscomp$inline_294) + isOrderingDirty$jscomp$inline_294 = !1, + pluginName$jscomp$inline_295; +for (pluginName$jscomp$inline_295 in injectedNamesToPlugins$jscomp$inline_293) if ( - injectedNamesToPlugins$jscomp$inline_294.hasOwnProperty( - pluginName$jscomp$inline_296 + injectedNamesToPlugins$jscomp$inline_293.hasOwnProperty( + pluginName$jscomp$inline_295 ) ) { - var pluginModule$jscomp$inline_297 = - injectedNamesToPlugins$jscomp$inline_294[pluginName$jscomp$inline_296]; + var pluginModule$jscomp$inline_296 = + injectedNamesToPlugins$jscomp$inline_293[pluginName$jscomp$inline_295]; if ( - !namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_296) || - namesToPlugins[pluginName$jscomp$inline_296] !== - pluginModule$jscomp$inline_297 + !namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_295) || + namesToPlugins[pluginName$jscomp$inline_295] !== + pluginModule$jscomp$inline_296 ) { - if (namesToPlugins[pluginName$jscomp$inline_296]) + if (namesToPlugins[pluginName$jscomp$inline_295]) throw Error( "EventPluginRegistry: Cannot inject two different event plugins using the same name, `" + - (pluginName$jscomp$inline_296 + "`.") + (pluginName$jscomp$inline_295 + "`.") ); - namesToPlugins[pluginName$jscomp$inline_296] = - pluginModule$jscomp$inline_297; - isOrderingDirty$jscomp$inline_295 = !0; + namesToPlugins[pluginName$jscomp$inline_295] = + pluginModule$jscomp$inline_296; + isOrderingDirty$jscomp$inline_294 = !0; } } -isOrderingDirty$jscomp$inline_295 && recomputePluginOrdering(); +isOrderingDirty$jscomp$inline_294 && recomputePluginOrdering(); var instanceCache = new Map(), instanceProps = new Map(); function getInstanceFromTag(tag) { @@ -9629,14 +9629,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -9700,16 +9693,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error("Root did not complete. This is a bug in React."); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -10063,8 +10055,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); exitStatus = workInProgressRootExitStatus; break; - } catch (thrownValue$136) { - handleThrow(root, thrownValue$136); + } catch (thrownValue$135) { + handleThrow(root, thrownValue$135); } while (1); lanes && root.shellSuspendCounter++; @@ -10177,8 +10169,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$138) { - handleThrow(root, thrownValue$138); + } catch (thrownValue$137) { + handleThrow(root, thrownValue$137); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -11037,11 +11029,11 @@ function updateContainer(element, container, parentComponent, callback) { return lane; } var isomorphicReactPackageVersion = React.version; -if ("19.0.0-native-fb-63cde684-20241114" !== isomorphicReactPackageVersion) +if ("19.0.0-native-fb-8a41d6ce-20241114" !== 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.0.0-native-fb-63cde684-20241114\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-native-renderer: 19.0.0-native-fb-8a41d6ce-20241114\nLearn more: https://react.dev/warnings/version-mismatch") ); if ( "function" !== @@ -11088,27 +11080,27 @@ batchedUpdatesImpl = function (fn, a) { } }; var roots = new Map(), - internals$jscomp$inline_1243 = { + internals$jscomp$inline_1242 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromTag, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; null !== extraDevToolsConfig && - (internals$jscomp$inline_1243.rendererConfig = extraDevToolsConfig); + (internals$jscomp$inline_1242.rendererConfig = extraDevToolsConfig); if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { - var hook$jscomp$inline_1580 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_1579 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_1580.isDisabled && - hook$jscomp$inline_1580.supportsFiber + !hook$jscomp$inline_1579.isDisabled && + hook$jscomp$inline_1579.supportsFiber ) try { - (rendererID = hook$jscomp$inline_1580.inject( - internals$jscomp$inline_1243 + (rendererID = hook$jscomp$inline_1579.inject( + internals$jscomp$inline_1242 )), - (injectedHook = hook$jscomp$inline_1580); + (injectedHook = hook$jscomp$inline_1579); } catch (err) {} } exports.createPortal = function (children, containerTag) { 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 f70f90a4d7e9c..d041822dbf37b 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<<19c6166d5045a6265a4a36ef9dd7ced1>> + * @generated SignedSource<> */ "use strict"; @@ -1231,7 +1231,7 @@ eventPluginOrder = Array.prototype.slice.call([ "ReactNativeBridgeEventPlugin" ]); recomputePluginOrdering(); -var injectedNamesToPlugins$jscomp$inline_310 = { +var injectedNamesToPlugins$jscomp$inline_309 = { ResponderEventPlugin: ResponderEventPlugin, ReactNativeBridgeEventPlugin: { eventTypes: {}, @@ -1277,32 +1277,32 @@ var injectedNamesToPlugins$jscomp$inline_310 = { } } }, - isOrderingDirty$jscomp$inline_311 = !1, - pluginName$jscomp$inline_312; -for (pluginName$jscomp$inline_312 in injectedNamesToPlugins$jscomp$inline_310) + isOrderingDirty$jscomp$inline_310 = !1, + pluginName$jscomp$inline_311; +for (pluginName$jscomp$inline_311 in injectedNamesToPlugins$jscomp$inline_309) if ( - injectedNamesToPlugins$jscomp$inline_310.hasOwnProperty( - pluginName$jscomp$inline_312 + injectedNamesToPlugins$jscomp$inline_309.hasOwnProperty( + pluginName$jscomp$inline_311 ) ) { - var pluginModule$jscomp$inline_313 = - injectedNamesToPlugins$jscomp$inline_310[pluginName$jscomp$inline_312]; + var pluginModule$jscomp$inline_312 = + injectedNamesToPlugins$jscomp$inline_309[pluginName$jscomp$inline_311]; if ( - !namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_312) || - namesToPlugins[pluginName$jscomp$inline_312] !== - pluginModule$jscomp$inline_313 + !namesToPlugins.hasOwnProperty(pluginName$jscomp$inline_311) || + namesToPlugins[pluginName$jscomp$inline_311] !== + pluginModule$jscomp$inline_312 ) { - if (namesToPlugins[pluginName$jscomp$inline_312]) + if (namesToPlugins[pluginName$jscomp$inline_311]) throw Error( "EventPluginRegistry: Cannot inject two different event plugins using the same name, `" + - (pluginName$jscomp$inline_312 + "`.") + (pluginName$jscomp$inline_311 + "`.") ); - namesToPlugins[pluginName$jscomp$inline_312] = - pluginModule$jscomp$inline_313; - isOrderingDirty$jscomp$inline_311 = !0; + namesToPlugins[pluginName$jscomp$inline_311] = + pluginModule$jscomp$inline_312; + isOrderingDirty$jscomp$inline_310 = !0; } } -isOrderingDirty$jscomp$inline_311 && recomputePluginOrdering(); +isOrderingDirty$jscomp$inline_310 && recomputePluginOrdering(); var instanceCache = new Map(), instanceProps = new Map(); function getInstanceFromTag(tag) { @@ -10158,14 +10158,7 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { !shouldTimeSlice && markRootSuspended(root$jscomp$0, lanes, 0, !1); break; - } else if (6 === exitStatus) - markRootSuspended( - root$jscomp$0, - lanes, - 0, - !workInProgressRootDidSkipSuspendedSiblings - ); - else { + } else { forceSync = root$jscomp$0.current.alternate; if ( renderWasConcurrent && @@ -10229,16 +10222,15 @@ function performWorkOnRoot(root$jscomp$0, lanes, forceSync) { case 1: throw Error("Root did not complete. This is a bug in React."); case 4: - if ((lanes & 4194176) === lanes) { - markRootSuspended( - shouldTimeSlice, - lanes, - workInProgressDeferredLane, - !workInProgressRootDidSkipSuspendedSiblings - ); - break a; - } - break; + if ((lanes & 4194176) !== lanes) break; + case 6: + markRootSuspended( + shouldTimeSlice, + lanes, + workInProgressDeferredLane, + !workInProgressRootDidSkipSuspendedSiblings + ); + break a; case 2: workInProgressRootRecoverableErrors = null; break; @@ -10631,8 +10623,8 @@ function renderRootSync(root, lanes, shouldYieldForPrerendering) { workLoopSync(); memoizedUpdaters = workInProgressRootExitStatus; break; - } catch (thrownValue$151) { - handleThrow(root, thrownValue$151); + } catch (thrownValue$150) { + handleThrow(root, thrownValue$150); } while (1); lanes && root.shellSuspendCounter++; @@ -10753,8 +10745,8 @@ function renderRootConcurrent(root, lanes) { } workLoopConcurrent(); break; - } catch (thrownValue$153) { - handleThrow(root, thrownValue$153); + } catch (thrownValue$152) { + handleThrow(root, thrownValue$152); } while (1); lastContextDependency = currentlyRenderingFiber = null; @@ -11694,11 +11686,11 @@ function updateContainer(element, container, parentComponent, callback) { return lane; } var isomorphicReactPackageVersion = React.version; -if ("19.0.0-native-fb-63cde684-20241114" !== isomorphicReactPackageVersion) +if ("19.0.0-native-fb-8a41d6ce-20241114" !== 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.0.0-native-fb-63cde684-20241114\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-native-renderer: 19.0.0-native-fb-8a41d6ce-20241114\nLearn more: https://react.dev/warnings/version-mismatch") ); if ( "function" !== @@ -11745,21 +11737,21 @@ batchedUpdatesImpl = function (fn, a) { } }; var roots = new Map(), - internals$jscomp$inline_1331 = { + internals$jscomp$inline_1330 = { bundleType: 0, - version: "19.0.0-native-fb-63cde684-20241114", + version: "19.0.0-native-fb-8a41d6ce-20241114", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromTag, - reconcilerVersion: "19.0.0-native-fb-63cde684-20241114" + reconcilerVersion: "19.0.0-native-fb-8a41d6ce-20241114" }; 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$157 = 0; - 31 > index$157; - index$157++ + var map = new Map(), lane = 1, index$156 = 0; + 31 > index$156; + index$156++ ) { var label = getLabelForLane(lane); map.set(lane, label); @@ -11767,20 +11759,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_1631 = __REACT_DEVTOOLS_GLOBAL_HOOK__; + var hook$jscomp$inline_1630 = __REACT_DEVTOOLS_GLOBAL_HOOK__; if ( - !hook$jscomp$inline_1631.isDisabled && - hook$jscomp$inline_1631.supportsFiber + !hook$jscomp$inline_1630.isDisabled && + hook$jscomp$inline_1630.supportsFiber ) try { - (rendererID = hook$jscomp$inline_1631.inject( - internals$jscomp$inline_1331 + (rendererID = hook$jscomp$inline_1630.inject( + internals$jscomp$inline_1330 )), - (injectedHook = hook$jscomp$inline_1631); + (injectedHook = hook$jscomp$inline_1630); } catch (err) {} } exports.createPortal = function (children, containerTag) {