From 3eca8ac7948c505b4de40e490c1d534b61faae8b Mon Sep 17 00:00:00 2001 From: jackpope Date: Wed, 7 May 2025 09:53:26 -0700 Subject: [PATCH] Allow fragment refs to attempt focus/focusLast on nested host children (#33058) This enables `focus` and `focusLast` methods on FragmentInstances to search nested host components, depth first. Attempts focus on each child and bails if one is successful. Previously, only the first level of host children would attempt focus. Now if we have an example like ``` component MenuItem() { return (
{...}
) } component Menu() { return {items.map(i => )} } ``` We can target focus on the first or last a tag, rather than checking each wrapping div and then noop. DiffTrain build for [4206fe49825787eda57a5d142640a63772ccbf2b](https://github.com/facebook/react/commit/4206fe49825787eda57a5d142640a63772ccbf2b) --- compiled/facebook-www/REVISION | 2 +- compiled/facebook-www/REVISION_TRANSFORMS | 2 +- compiled/facebook-www/React-dev.classic.js | 2 +- compiled/facebook-www/React-dev.modern.js | 2 +- compiled/facebook-www/React-prod.classic.js | 2 +- compiled/facebook-www/React-prod.modern.js | 2 +- .../facebook-www/React-profiling.classic.js | 2 +- .../facebook-www/React-profiling.modern.js | 2 +- compiled/facebook-www/ReactART-dev.classic.js | 6 +-- compiled/facebook-www/ReactART-dev.modern.js | 6 +-- .../facebook-www/ReactART-prod.classic.js | 6 +-- compiled/facebook-www/ReactART-prod.modern.js | 6 +-- compiled/facebook-www/ReactDOM-dev.classic.js | 50 +++++++------------ compiled/facebook-www/ReactDOM-dev.modern.js | 50 +++++++------------ .../facebook-www/ReactDOM-prod.classic.js | 43 +++++++--------- compiled/facebook-www/ReactDOM-prod.modern.js | 43 +++++++--------- .../ReactDOM-profiling.classic.js | 43 +++++++--------- .../facebook-www/ReactDOM-profiling.modern.js | 43 +++++++--------- .../ReactDOMServer-dev.classic.js | 2 +- .../facebook-www/ReactDOMServer-dev.modern.js | 2 +- .../ReactDOMServer-prod.classic.js | 2 +- .../ReactDOMServer-prod.modern.js | 2 +- .../ReactDOMTesting-dev.classic.js | 50 +++++++------------ .../ReactDOMTesting-dev.modern.js | 50 +++++++------------ .../ReactDOMTesting-prod.classic.js | 43 +++++++--------- .../ReactDOMTesting-prod.modern.js | 43 +++++++--------- .../ReactReconciler-dev.classic.js | 2 +- .../ReactReconciler-dev.modern.js | 2 +- .../ReactReconciler-prod.classic.js | 2 +- .../ReactReconciler-prod.modern.js | 2 +- .../ReactTestRenderer-dev.classic.js | 6 +-- .../ReactTestRenderer-dev.modern.js | 6 +-- compiled/facebook-www/VERSION_CLASSIC | 2 +- compiled/facebook-www/VERSION_MODERN | 2 +- 34 files changed, 226 insertions(+), 304 deletions(-) diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index cfb9c41f7c..1bb1562156 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -e5a8de81e57181692d33ce916dfd6aa23638ec92 +4206fe49825787eda57a5d142640a63772ccbf2b diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index cfb9c41f7c..1bb1562156 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -e5a8de81e57181692d33ce916dfd6aa23638ec92 +4206fe49825787eda57a5d142640a63772ccbf2b diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index aba3f712c3..e6fe838310 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -1538,7 +1538,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.2.0-www-classic-e5a8de81-20250506"; + exports.version = "19.2.0-www-classic-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-dev.modern.js b/compiled/facebook-www/React-dev.modern.js index 9f385870a0..997ef14c44 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1538,7 +1538,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.2.0-www-modern-e5a8de81-20250506"; + exports.version = "19.2.0-www-modern-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-prod.classic.js b/compiled/facebook-www/React-prod.classic.js index 56a6a601c7..20cb55c7ef 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -636,4 +636,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-www-classic-e5a8de81-20250506"; +exports.version = "19.2.0-www-classic-4206fe49-20250507"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 800c4e2d31..1293b5b84f 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -636,4 +636,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-www-modern-e5a8de81-20250506"; +exports.version = "19.2.0-www-modern-4206fe49-20250507"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index 125e781e9b..595a1fc185 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -640,7 +640,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-www-classic-e5a8de81-20250506"; +exports.version = "19.2.0-www-classic-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/React-profiling.modern.js b/compiled/facebook-www/React-profiling.modern.js index cf1f21ca3b..eeeb45e0c7 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -640,7 +640,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-www-modern-e5a8de81-20250506"; +exports.version = "19.2.0-www-modern-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-dev.classic.js b/compiled/facebook-www/ReactART-dev.classic.js index 9f165f661e..ccad86e40a 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -19032,10 +19032,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-www-classic-e5a8de81-20250506", + version: "19.2.0-www-classic-4206fe49-20250507", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -19069,7 +19069,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.2.0-www-classic-e5a8de81-20250506"; + exports.version = "19.2.0-www-classic-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-dev.modern.js b/compiled/facebook-www/ReactART-dev.modern.js index 39cbc92e85..54eba6ab5c 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -18804,10 +18804,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-www-modern-e5a8de81-20250506", + version: "19.2.0-www-modern-4206fe49-20250507", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18841,7 +18841,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.2.0-www-modern-e5a8de81-20250506"; + exports.version = "19.2.0-www-modern-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactART-prod.classic.js b/compiled/facebook-www/ReactART-prod.classic.js index ecd2ead1d7..730549e479 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -11419,10 +11419,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1620 = { bundleType: 0, - version: "19.2.0-www-classic-e5a8de81-20250506", + version: "19.2.0-www-classic-4206fe49-20250507", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1621 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11448,4 +11448,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.2.0-www-classic-e5a8de81-20250506"; +exports.version = "19.2.0-www-classic-4206fe49-20250507"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 2016cfe7aa..5d7ea5f48f 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -11131,10 +11131,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1593 = { bundleType: 0, - version: "19.2.0-www-modern-e5a8de81-20250506", + version: "19.2.0-www-modern-4206fe49-20250507", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1594 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11160,4 +11160,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.2.0-www-modern-e5a8de81-20250506"; +exports.version = "19.2.0-www-modern-4206fe49-20250507"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index e8e2a8e1ab..f636564b72 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -272,30 +272,18 @@ __DEV__ && c ) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - ) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -30927,7 +30915,7 @@ __DEV__ && FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -30938,7 +30926,7 @@ __DEV__ && var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -31360,11 +31348,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-www-classic-e5a8de81-20250506" !== isomorphicReactPackageVersion) + if ("19.2.0-www-classic-4206fe49-20250507" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.2.0-www-classic-e5a8de81-20250506\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-www-classic-4206fe49-20250507\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -31407,10 +31395,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-www-classic-e5a8de81-20250506", + version: "19.2.0-www-classic-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -32008,7 +31996,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-www-classic-e5a8de81-20250506"; + exports.version = "19.2.0-www-classic-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-dev.modern.js b/compiled/facebook-www/ReactDOM-dev.modern.js index 79ae6eae21..3c524c8c57 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -272,30 +272,18 @@ __DEV__ && c ) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - ) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -30713,7 +30701,7 @@ __DEV__ && FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -30724,7 +30712,7 @@ __DEV__ && var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -31146,11 +31134,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-www-modern-e5a8de81-20250506" !== isomorphicReactPackageVersion) + if ("19.2.0-www-modern-4206fe49-20250507" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.2.0-www-modern-e5a8de81-20250506\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-www-modern-4206fe49-20250507\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -31193,10 +31181,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-www-modern-e5a8de81-20250506", + version: "19.2.0-www-modern-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -31794,7 +31782,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-www-modern-e5a8de81-20250506"; + exports.version = "19.2.0-www-modern-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-prod.classic.js b/compiled/facebook-www/ReactDOM-prod.classic.js index a44dde1a21..77bc6c21c6 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -201,23 +201,18 @@ function doesFiberContain(parentFiber, childFiber) { } function traverseVisibleHostChildren(child, searchWithinHosts, fn, a, b, c) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren(child.child, searchWithinHosts, fn, a, b, c) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -17520,7 +17515,7 @@ function removeEventListenerFromChild( FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -17535,7 +17530,7 @@ FragmentInstance.prototype.focusLast = function (focusOptions) { var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -19550,14 +19545,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2075 = React.version; if ( - "19.2.0-www-classic-e5a8de81-20250506" !== + "19.2.0-www-classic-4206fe49-20250507" !== isomorphicReactPackageVersion$jscomp$inline_2075 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2075, - "19.2.0-www-classic-e5a8de81-20250506" + "19.2.0-www-classic-4206fe49-20250507" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19575,10 +19570,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2686 = { bundleType: 0, - version: "19.2.0-www-classic-e5a8de81-20250506", + version: "19.2.0-www-classic-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2687 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19942,4 +19937,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-classic-e5a8de81-20250506"; +exports.version = "19.2.0-www-classic-4206fe49-20250507"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index 652a46f12e..bc941a5b43 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -199,23 +199,18 @@ function doesFiberContain(parentFiber, childFiber) { } function traverseVisibleHostChildren(child, searchWithinHosts, fn, a, b, c) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren(child.child, searchWithinHosts, fn, a, b, c) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -17249,7 +17244,7 @@ function removeEventListenerFromChild( FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -17264,7 +17259,7 @@ FragmentInstance.prototype.focusLast = function (focusOptions) { var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -19279,14 +19274,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2065 = React.version; if ( - "19.2.0-www-modern-e5a8de81-20250506" !== + "19.2.0-www-modern-4206fe49-20250507" !== isomorphicReactPackageVersion$jscomp$inline_2065 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2065, - "19.2.0-www-modern-e5a8de81-20250506" + "19.2.0-www-modern-4206fe49-20250507" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19304,10 +19299,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2668 = { bundleType: 0, - version: "19.2.0-www-modern-e5a8de81-20250506", + version: "19.2.0-www-modern-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2669 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19671,4 +19666,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-modern-e5a8de81-20250506"; +exports.version = "19.2.0-www-modern-4206fe49-20250507"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index c2f76a2334..75ae982f2f 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -208,23 +208,18 @@ function doesFiberContain(parentFiber, childFiber) { } function traverseVisibleHostChildren(child, searchWithinHosts, fn, a, b, c) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren(child.child, searchWithinHosts, fn, a, b, c) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -19495,7 +19490,7 @@ function removeEventListenerFromChild( FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -19510,7 +19505,7 @@ FragmentInstance.prototype.focusLast = function (focusOptions) { var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -21525,14 +21520,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2319 = React.version; if ( - "19.2.0-www-classic-e5a8de81-20250506" !== + "19.2.0-www-classic-4206fe49-20250507" !== isomorphicReactPackageVersion$jscomp$inline_2319 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2319, - "19.2.0-www-classic-e5a8de81-20250506" + "19.2.0-www-classic-4206fe49-20250507" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -21550,10 +21545,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2321 = { bundleType: 0, - version: "19.2.0-www-classic-e5a8de81-20250506", + version: "19.2.0-www-classic-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; enableSchedulingProfiler && ((internals$jscomp$inline_2321.getLaneLabelMap = getLaneLabelMap), @@ -21920,7 +21915,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-classic-e5a8de81-20250506"; +exports.version = "19.2.0-www-classic-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOM-profiling.modern.js b/compiled/facebook-www/ReactDOM-profiling.modern.js index 4ec3468e1e..d25a9f03d8 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -206,23 +206,18 @@ function doesFiberContain(parentFiber, childFiber) { } function traverseVisibleHostChildren(child, searchWithinHosts, fn, a, b, c) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren(child.child, searchWithinHosts, fn, a, b, c) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -19293,7 +19288,7 @@ function removeEventListenerFromChild( FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -19308,7 +19303,7 @@ FragmentInstance.prototype.focusLast = function (focusOptions) { var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -21323,14 +21318,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2309 = React.version; if ( - "19.2.0-www-modern-e5a8de81-20250506" !== + "19.2.0-www-modern-4206fe49-20250507" !== isomorphicReactPackageVersion$jscomp$inline_2309 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2309, - "19.2.0-www-modern-e5a8de81-20250506" + "19.2.0-www-modern-4206fe49-20250507" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -21348,10 +21343,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2311 = { bundleType: 0, - version: "19.2.0-www-modern-e5a8de81-20250506", + version: "19.2.0-www-modern-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; enableSchedulingProfiler && ((internals$jscomp$inline_2311.getLaneLabelMap = getLaneLabelMap), @@ -21718,7 +21713,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-modern-e5a8de81-20250506"; +exports.version = "19.2.0-www-modern-4206fe49-20250507"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled/facebook-www/ReactDOMServer-dev.classic.js b/compiled/facebook-www/ReactDOMServer-dev.classic.js index e4ea2a8433..0cb0a81f4d 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -9536,5 +9536,5 @@ __DEV__ && 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; - exports.version = "19.2.0-www-classic-e5a8de81-20250506"; + exports.version = "19.2.0-www-classic-4206fe49-20250507"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index a64da9afaf..d74d677e36 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -9465,5 +9465,5 @@ __DEV__ && 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; - exports.version = "19.2.0-www-modern-e5a8de81-20250506"; + exports.version = "19.2.0-www-modern-4206fe49-20250507"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index b5fd90e5c1..d4ae263f2e 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -6287,4 +6287,4 @@ exports.renderToString = function (children, options) { 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; -exports.version = "19.2.0-www-classic-e5a8de81-20250506"; +exports.version = "19.2.0-www-classic-4206fe49-20250507"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index 6cafc5afdd..05e5c070bf 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -6199,4 +6199,4 @@ exports.renderToString = function (children, options) { 'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server' ); }; -exports.version = "19.2.0-www-modern-e5a8de81-20250506"; +exports.version = "19.2.0-www-modern-4206fe49-20250507"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index f927954d0d..046510ae05 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -272,30 +272,18 @@ __DEV__ && c ) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - ) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -31248,7 +31236,7 @@ __DEV__ && FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -31259,7 +31247,7 @@ __DEV__ && var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -31681,11 +31669,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-www-classic-e5a8de81-20250506" !== isomorphicReactPackageVersion) + if ("19.2.0-www-classic-4206fe49-20250507" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.2.0-www-classic-e5a8de81-20250506\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-www-classic-4206fe49-20250507\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -31728,10 +31716,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-www-classic-e5a8de81-20250506", + version: "19.2.0-www-classic-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -32495,5 +32483,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-www-classic-e5a8de81-20250506"; + exports.version = "19.2.0-www-classic-4206fe49-20250507"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index d2b816dbc9..11d1fc5272 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -272,30 +272,18 @@ __DEV__ && c ) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - ) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -31034,7 +31022,7 @@ __DEV__ && FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -31045,7 +31033,7 @@ __DEV__ && var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -31467,11 +31455,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-www-modern-e5a8de81-20250506" !== isomorphicReactPackageVersion) + if ("19.2.0-www-modern-4206fe49-20250507" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-dom: 19.2.0-www-modern-e5a8de81-20250506\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-www-modern-4206fe49-20250507\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -31514,10 +31502,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-www-modern-e5a8de81-20250506", + version: "19.2.0-www-modern-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -32281,5 +32269,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-www-modern-e5a8de81-20250506"; + exports.version = "19.2.0-www-modern-4206fe49-20250507"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index 82e189d5a1..90b4257a0c 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -201,23 +201,18 @@ function doesFiberContain(parentFiber, childFiber) { } function traverseVisibleHostChildren(child, searchWithinHosts, fn, a, b, c) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren(child.child, searchWithinHosts, fn, a, b, c) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -17792,7 +17787,7 @@ function removeEventListenerFromChild( FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -17807,7 +17802,7 @@ FragmentInstance.prototype.focusLast = function (focusOptions) { var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -19866,14 +19861,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2104 = React.version; if ( - "19.2.0-www-classic-e5a8de81-20250506" !== + "19.2.0-www-classic-4206fe49-20250507" !== isomorphicReactPackageVersion$jscomp$inline_2104 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2104, - "19.2.0-www-classic-e5a8de81-20250506" + "19.2.0-www-classic-4206fe49-20250507" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19891,10 +19886,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2720 = { bundleType: 0, - version: "19.2.0-www-classic-e5a8de81-20250506", + version: "19.2.0-www-classic-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2721 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20409,4 +20404,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-classic-e5a8de81-20250506"; +exports.version = "19.2.0-www-classic-4206fe49-20250507"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index fa3ca4d211..752c6e1de6 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -199,23 +199,18 @@ function doesFiberContain(parentFiber, childFiber) { } function traverseVisibleHostChildren(child, searchWithinHosts, fn, a, b, c) { for (; null !== child; ) { - if (5 === child.tag) { - if ( - fn(child, a, b, c) || - (searchWithinHosts && - traverseVisibleHostChildren( - child.child, - searchWithinHosts, - fn, - a, - b, - c - )) - ) - return !0; - } else if ( - (22 !== child.tag || null === child.memoizedState) && - traverseVisibleHostChildren(child.child, searchWithinHosts, fn, a, b, c) + if ( + (5 === child.tag && fn(child, a, b, c)) || + ((22 !== child.tag || null === child.memoizedState) && + (searchWithinHosts || 5 !== child.tag) && + traverseVisibleHostChildren( + child.child, + searchWithinHosts, + fn, + a, + b, + c + )) ) return !0; child = child.sibling; @@ -17521,7 +17516,7 @@ function removeEventListenerFromChild( FragmentInstance.prototype.focus = function (focusOptions) { traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, setFocusOnFiberIfFocusable, focusOptions, void 0, @@ -17536,7 +17531,7 @@ FragmentInstance.prototype.focusLast = function (focusOptions) { var children = []; traverseVisibleHostChildren( this._fragmentFiber.child, - !1, + !0, collectChildren, children, void 0, @@ -19595,14 +19590,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2094 = React.version; if ( - "19.2.0-www-modern-e5a8de81-20250506" !== + "19.2.0-www-modern-4206fe49-20250507" !== isomorphicReactPackageVersion$jscomp$inline_2094 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2094, - "19.2.0-www-modern-e5a8de81-20250506" + "19.2.0-www-modern-4206fe49-20250507" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19620,10 +19615,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2702 = { bundleType: 0, - version: "19.2.0-www-modern-e5a8de81-20250506", + version: "19.2.0-www-modern-4206fe49-20250507", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2703 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20138,4 +20133,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-modern-e5a8de81-20250506"; +exports.version = "19.2.0-www-modern-4206fe49-20250507"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index 1cfe96e311..6265f0756f 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -21856,7 +21856,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index 8336af28b4..cb0ce53cd1 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -21637,7 +21637,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index db21fad089..ddb28d9f27 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -14100,7 +14100,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index 0909725d52..b6f30fd353 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -13817,7 +13817,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 07fb8adb03..7fc115a0c4 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15364,10 +15364,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-www-classic-e5a8de81-20250506", + version: "19.2.0-www-classic-4206fe49-20250507", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-classic-4206fe49-20250507" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15502,5 +15502,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.2.0-www-classic-e5a8de81-20250506"; + exports.version = "19.2.0-www-classic-4206fe49-20250507"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index 410e229712..17a089b538 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15364,10 +15364,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-www-modern-e5a8de81-20250506", + version: "19.2.0-www-modern-4206fe49-20250507", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-e5a8de81-20250506" + reconcilerVersion: "19.2.0-www-modern-4206fe49-20250507" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15502,5 +15502,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.2.0-www-modern-e5a8de81-20250506"; + exports.version = "19.2.0-www-modern-4206fe49-20250507"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index fb08fabd04..20ba0d600a 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.2.0-www-classic-e5a8de81-20250506 \ No newline at end of file +19.2.0-www-classic-4206fe49-20250507 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index 1b81b5317a..dde4e1910f 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.2.0-www-modern-e5a8de81-20250506 \ No newline at end of file +19.2.0-www-modern-4206fe49-20250507 \ No newline at end of file