From 0252a0b7cbd49a80d063de250c09af591154d4db Mon Sep 17 00:00:00 2001 From: sebmarkbage Date: Fri, 13 Sep 2024 13:40:38 -0700 Subject: [PATCH] [Flight] Respect `async` flag in client manifest (#30959) In #26624, the ability to mark a client reference module as `async` in the React client manifest was removed because it was not utilized by Webpack, neither in `ReactFlightWebpackPlugin` nor in Next.js. However, some bundlers and frameworks are sophisticated enough to properly handle and identify async ESM modules (e.g., client component modules with top-level `await`), most notably Turbopack in Next.js. Therefore, we need to consider the `async` flag in the client manifest when resolving the client reference metadata on the server. The SSR manifest cannot override this flag, meaning that if a module is async, it must remain async in all client environments. x-ref: https://github.com/vercel/next.js/pull/70022 DiffTrain build for [5deb78223a269a6cb1706da8ec6aad8c007cab03](https://github.com/facebook/react/commit/5deb78223a269a6cb1706da8ec6aad8c007cab03) --- 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 | 30 +++++++++-------- compiled/facebook-www/ReactDOM-dev.modern.js | 28 ++++++++-------- .../facebook-www/ReactDOM-prod.classic.js | 33 ++++++++----------- compiled/facebook-www/ReactDOM-prod.modern.js | 33 ++++++++----------- .../ReactDOM-profiling.classic.js | 33 ++++++++----------- .../facebook-www/ReactDOM-profiling.modern.js | 33 +++++++++++-------- .../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 | 30 +++++++++-------- .../ReactDOMTesting-dev.modern.js | 30 ++++++++--------- .../ReactDOMTesting-prod.classic.js | 33 ++++++++----------- .../ReactDOMTesting-prod.modern.js | 33 ++++++++----------- .../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, 185 insertions(+), 203 deletions(-) diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 9c13e4cd7155c..e61c556b54a14 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -d9c4920e8b3fff3d3da24d14adf7ac884aee55b2 +5deb78223a269a6cb1706da8ec6aad8c007cab03 diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 9c13e4cd7155c..e61c556b54a14 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -d9c4920e8b3fff3d3da24d14adf7ac884aee55b2 +5deb78223a269a6cb1706da8ec6aad8c007cab03 diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index 858e62c932db6..3f1b9da748f47 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -2001,7 +2001,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.0.0-www-classic-d9c4920e-20240913"; + exports.version = "19.0.0-www-classic-5deb7822-20240913"; "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 14e031753a13d..79595cbe21c5b 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1981,7 +1981,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.0.0-www-modern-d9c4920e-20240913"; + exports.version = "19.0.0-www-modern-5deb7822-20240913"; "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 eca1403518a09..c459a70a37463 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -665,4 +665,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.0.0-www-classic-d9c4920e-20240913"; +exports.version = "19.0.0-www-classic-5deb7822-20240913"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 3efb6a644a5e9..179b891b14c8c 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -665,4 +665,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.0.0-www-modern-d9c4920e-20240913"; +exports.version = "19.0.0-www-modern-5deb7822-20240913"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index 3b50e9b778e09..330d27e847884 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -669,7 +669,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.0.0-www-classic-d9c4920e-20240913"; +exports.version = "19.0.0-www-classic-5deb7822-20240913"; "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 42cdefd5154d2..a843921da3d8c 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -669,7 +669,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.0.0-www-modern-d9c4920e-20240913"; +exports.version = "19.0.0-www-modern-5deb7822-20240913"; "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 4449d2d1be46c..4cc74fcb9010f 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -17112,11 +17112,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-d9c4920e-20240913", + version: "19.0.0-www-classic-5deb7822-20240913", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -17150,7 +17150,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.0.0-www-classic-d9c4920e-20240913"; + exports.version = "19.0.0-www-classic-5deb7822-20240913"; "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 baf7af32665c1..d3ccdec3db456 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -16558,11 +16558,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-d9c4920e-20240913", + version: "19.0.0-www-modern-5deb7822-20240913", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -16596,7 +16596,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.0.0-www-modern-d9c4920e-20240913"; + exports.version = "19.0.0-www-modern-5deb7822-20240913"; "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 93c9564b7f565..286e11c776935 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -10883,13 +10883,13 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1424 = { bundleType: 0, - version: "19.0.0-www-classic-d9c4920e-20240913", + version: "19.0.0-www-classic-5deb7822-20240913", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: function () { return null; }, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1425 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -10915,4 +10915,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.0.0-www-classic-d9c4920e-20240913"; +exports.version = "19.0.0-www-classic-5deb7822-20240913"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 29d794bb6a639..7070463cd3bc2 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -10397,13 +10397,13 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1416 = { bundleType: 0, - version: "19.0.0-www-modern-d9c4920e-20240913", + version: "19.0.0-www-modern-5deb7822-20240913", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: function () { return null; }, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1417 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -10429,4 +10429,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.0.0-www-modern-d9c4920e-20240913"; +exports.version = "19.0.0-www-modern-5deb7822-20240913"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index b1a89592faae2..8ede6a0a3ff30 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -18666,41 +18666,43 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmp1124481893$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm1151065292$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmp1124481893$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm1151065292$1 = + containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmp1124481893$1.defaultView) + : $jscomp$optchain$tmpm1151065292$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmp1124481893$1 = getActiveElement( + $jscomp$optchain$tmpm1151065292$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmp1124481893$1 instanceof + $jscomp$optchain$tmpm1151065292$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmp1124481893$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm1151065292$1.contentWindow.location + .href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmp1124481893$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm1151065292$1.contentWindow; else break; - $jscomp$optchain$tmp1124481893$1 = getActiveElement( + $jscomp$optchain$tmpm1151065292$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmp1124481893$1; + return $jscomp$optchain$tmpm1151065292$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -27866,11 +27868,11 @@ __DEV__ && : flushSyncErrorInBuildsThatSupportLegacyMode; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-classic-d9c4920e-20240913" !== isomorphicReactPackageVersion) + if ("19.0.0-www-classic-5deb7822-20240913" !== 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-www-classic-d9c4920e-20240913\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-classic-5deb7822-20240913\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27914,11 +27916,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-d9c4920e-20240913", + version: "19.0.0-www-classic-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -28571,7 +28573,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-classic-d9c4920e-20240913"; + exports.version = "19.0.0-www-classic-5deb7822-20240913"; "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 d72f8460a081b..9af68da395099 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -18000,41 +18000,41 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm676377794$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp1941505231$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm676377794$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp1941505231$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm676377794$1.defaultView) + : $jscomp$optchain$tmp1941505231$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm676377794$1 = getActiveElement( + $jscomp$optchain$tmp1941505231$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmpm676377794$1 instanceof + $jscomp$optchain$tmp1941505231$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm676377794$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp1941505231$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm676377794$1.contentWindow; + containerInfo = $jscomp$optchain$tmp1941505231$1.contentWindow; else break; - $jscomp$optchain$tmpm676377794$1 = getActiveElement( + $jscomp$optchain$tmp1941505231$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmpm676377794$1; + return $jscomp$optchain$tmp1941505231$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -26983,11 +26983,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-modern-d9c4920e-20240913" !== isomorphicReactPackageVersion) + if ("19.0.0-www-modern-5deb7822-20240913" !== 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-www-modern-d9c4920e-20240913\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-modern-5deb7822-20240913\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27030,11 +27030,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-d9c4920e-20240913", + version: "19.0.0-www-modern-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -27639,7 +27639,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-modern-d9c4920e-20240913"; + exports.version = "19.0.0-www-modern-5deb7822-20240913"; "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 4a9e021563f59..37a0afefa4437 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -13490,41 +13490,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm1756096108$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp587426921$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1756096108$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp587426921$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1756096108$1.defaultView) + : $jscomp$optchain$tmp587426921$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1756096108$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1756096108$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp587426921$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp587426921$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1756096108$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp587426921$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1756096108$1.contentWindow; + containerInfo = $jscomp$optchain$tmp587426921$1.contentWindow; else break; - $jscomp$optchain$tmpm1756096108$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmp587426921$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1756096108$1; + return $jscomp$optchain$tmp587426921$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17449,14 +17444,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1768 = React.version; if ( - "19.0.0-www-classic-d9c4920e-20240913" !== + "19.0.0-www-classic-5deb7822-20240913" !== isomorphicReactPackageVersion$jscomp$inline_1768 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1768, - "19.0.0-www-classic-d9c4920e-20240913" + "19.0.0-www-classic-5deb7822-20240913" ) ); function flushSyncFromReconciler(fn) { @@ -17501,11 +17496,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2263 = { bundleType: 0, - version: "19.0.0-www-classic-d9c4920e-20240913", + version: "19.0.0-www-classic-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2264 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17961,4 +17956,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-classic-d9c4920e-20240913"; +exports.version = "19.0.0-www-classic-5deb7822-20240913"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index e508bad17568e..6f29f1548aeaa 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -12917,41 +12917,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm1376391329$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp2131274180$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1376391329$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp2131274180$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1376391329$1.defaultView) + : $jscomp$optchain$tmp2131274180$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1376391329$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1376391329$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp2131274180$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp2131274180$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1376391329$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp2131274180$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1376391329$1.contentWindow; + containerInfo = $jscomp$optchain$tmp2131274180$1.contentWindow; else break; - $jscomp$optchain$tmpm1376391329$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmp2131274180$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1376391329$1; + return $jscomp$optchain$tmp2131274180$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -16825,14 +16820,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1739 = React.version; if ( - "19.0.0-www-modern-d9c4920e-20240913" !== + "19.0.0-www-modern-5deb7822-20240913" !== isomorphicReactPackageVersion$jscomp$inline_1739 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1739, - "19.0.0-www-modern-d9c4920e-20240913" + "19.0.0-www-modern-5deb7822-20240913" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -16850,11 +16845,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2254 = { bundleType: 0, - version: "19.0.0-www-modern-d9c4920e-20240913", + version: "19.0.0-www-modern-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2255 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17217,4 +17212,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-modern-d9c4920e-20240913"; +exports.version = "19.0.0-www-modern-5deb7822-20240913"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index 1cdb0de016390..7ef6dd56e6c27 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -14263,41 +14263,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm1373970798$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp2066840445$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1373970798$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp2066840445$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1373970798$1.defaultView) + : $jscomp$optchain$tmp2066840445$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1373970798$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1373970798$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp2066840445$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp2066840445$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1373970798$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp2066840445$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1373970798$1.contentWindow; + containerInfo = $jscomp$optchain$tmp2066840445$1.contentWindow; else break; - $jscomp$optchain$tmpm1373970798$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmp2066840445$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1373970798$1; + return $jscomp$optchain$tmp2066840445$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -18222,14 +18217,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1858 = React.version; if ( - "19.0.0-www-classic-d9c4920e-20240913" !== + "19.0.0-www-classic-5deb7822-20240913" !== isomorphicReactPackageVersion$jscomp$inline_1858 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1858, - "19.0.0-www-classic-d9c4920e-20240913" + "19.0.0-www-classic-5deb7822-20240913" ) ); function flushSyncFromReconciler(fn) { @@ -18274,11 +18269,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_1865 = { bundleType: 0, - version: "19.0.0-www-classic-d9c4920e-20240913", + version: "19.0.0-www-classic-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; enableSchedulingProfiler && ((internals$jscomp$inline_1865.getLaneLabelMap = getLaneLabelMap), @@ -18737,7 +18732,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-classic-d9c4920e-20240913"; +exports.version = "19.0.0-www-classic-5deb7822-20240913"; "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 8f0d780490cab..510c9f567da46 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -13673,36 +13673,41 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmp1968365513$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm2005784517$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmp1968365513$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm2005784517$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmp1968365513$1.defaultView) + : $jscomp$optchain$tmpm2005784517$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmp1968365513$1 = getActiveElement(containerInfo.document); - $jscomp$optchain$tmp1968365513$1 instanceof containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmpm2005784517$1 = getActiveElement( + containerInfo.document + ); + $jscomp$optchain$tmpm2005784517$1 instanceof + containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmp1968365513$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm2005784517$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmp1968365513$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm2005784517$1.contentWindow; else break; - $jscomp$optchain$tmp1968365513$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmpm2005784517$1 = getActiveElement( + containerInfo.document + ); } - return $jscomp$optchain$tmp1968365513$1; + return $jscomp$optchain$tmpm2005784517$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17576,14 +17581,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1829 = React.version; if ( - "19.0.0-www-modern-d9c4920e-20240913" !== + "19.0.0-www-modern-5deb7822-20240913" !== isomorphicReactPackageVersion$jscomp$inline_1829 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1829, - "19.0.0-www-modern-d9c4920e-20240913" + "19.0.0-www-modern-5deb7822-20240913" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -17601,11 +17606,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_1831 = { bundleType: 0, - version: "19.0.0-www-modern-d9c4920e-20240913", + version: "19.0.0-www-modern-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; enableSchedulingProfiler && ((internals$jscomp$inline_1831.getLaneLabelMap = getLaneLabelMap), @@ -17971,7 +17976,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-modern-d9c4920e-20240913"; +exports.version = "19.0.0-www-modern-5deb7822-20240913"; "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 62e93d3dab260..8ac1c1334fc5e 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -8986,5 +8986,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.0.0-www-classic-d9c4920e-20240913"; + exports.version = "19.0.0-www-classic-5deb7822-20240913"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index 04661db8cd5a4..de12ee38cc3a2 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -8804,5 +8804,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.0.0-www-modern-d9c4920e-20240913"; + exports.version = "19.0.0-www-modern-5deb7822-20240913"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index be3d49ec7b0af..2b5f81a7da666 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -5911,4 +5911,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.0.0-www-classic-d9c4920e-20240913"; +exports.version = "19.0.0-www-classic-5deb7822-20240913"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index 5487b843f07cb..4331c292e37c4 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -5823,4 +5823,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.0.0-www-modern-d9c4920e-20240913"; +exports.version = "19.0.0-www-modern-5deb7822-20240913"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index dc987f6133cea..1a39100c1f6a0 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -18889,41 +18889,43 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmp1798714148$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm1125555902$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmp1798714148$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm1125555902$1 = + containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmp1798714148$1.defaultView) + : $jscomp$optchain$tmpm1125555902$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmp1798714148$1 = getActiveElement( + $jscomp$optchain$tmpm1125555902$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmp1798714148$1 instanceof + $jscomp$optchain$tmpm1125555902$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmp1798714148$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm1125555902$1.contentWindow.location + .href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmp1798714148$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm1125555902$1.contentWindow; else break; - $jscomp$optchain$tmp1798714148$1 = getActiveElement( + $jscomp$optchain$tmpm1125555902$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmp1798714148$1; + return $jscomp$optchain$tmpm1125555902$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -28200,11 +28202,11 @@ __DEV__ && : flushSyncErrorInBuildsThatSupportLegacyMode; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-classic-d9c4920e-20240913" !== isomorphicReactPackageVersion) + if ("19.0.0-www-classic-5deb7822-20240913" !== 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-www-classic-d9c4920e-20240913\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-classic-5deb7822-20240913\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -28248,11 +28250,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-d9c4920e-20240913", + version: "19.0.0-www-classic-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -29071,5 +29073,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-classic-d9c4920e-20240913"; + exports.version = "19.0.0-www-classic-5deb7822-20240913"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index 3a3bdb8ef3628..16d0c50b0247a 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -18223,43 +18223,41 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm2100984584$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp1177927232$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm2100984584$1 = - containerInfo.ownerDocument) + ($jscomp$optchain$tmp1177927232$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm2100984584$1.defaultView) + : $jscomp$optchain$tmp1177927232$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm2100984584$1 = getActiveElement( + $jscomp$optchain$tmp1177927232$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmpm2100984584$1 instanceof + $jscomp$optchain$tmp1177927232$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm2100984584$1.contentWindow.location - .href; + typeof $jscomp$optchain$tmp1177927232$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm2100984584$1.contentWindow; + containerInfo = $jscomp$optchain$tmp1177927232$1.contentWindow; else break; - $jscomp$optchain$tmpm2100984584$1 = getActiveElement( + $jscomp$optchain$tmp1177927232$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmpm2100984584$1; + return $jscomp$optchain$tmp1177927232$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -27319,11 +27317,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-modern-d9c4920e-20240913" !== isomorphicReactPackageVersion) + if ("19.0.0-www-modern-5deb7822-20240913" !== 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-www-modern-d9c4920e-20240913\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-modern-5deb7822-20240913\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27366,11 +27364,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-d9c4920e-20240913", + version: "19.0.0-www-modern-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -28141,5 +28139,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-modern-d9c4920e-20240913"; + exports.version = "19.0.0-www-modern-5deb7822-20240913"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index 58ba8bc7e60e7..e7291e8f8e7f1 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -13762,41 +13762,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm1132705703$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp474758840$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1132705703$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp474758840$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1132705703$1.defaultView) + : $jscomp$optchain$tmp474758840$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1132705703$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1132705703$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp474758840$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp474758840$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1132705703$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp474758840$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1132705703$1.contentWindow; + containerInfo = $jscomp$optchain$tmp474758840$1.contentWindow; else break; - $jscomp$optchain$tmpm1132705703$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmp474758840$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1132705703$1; + return $jscomp$optchain$tmp474758840$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17778,14 +17773,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1798 = React.version; if ( - "19.0.0-www-classic-d9c4920e-20240913" !== + "19.0.0-www-classic-5deb7822-20240913" !== isomorphicReactPackageVersion$jscomp$inline_1798 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1798, - "19.0.0-www-classic-d9c4920e-20240913" + "19.0.0-www-classic-5deb7822-20240913" ) ); function flushSyncFromReconciler(fn) { @@ -17830,11 +17825,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2298 = { bundleType: 0, - version: "19.0.0-www-classic-d9c4920e-20240913", + version: "19.0.0-www-classic-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2299 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -18441,4 +18436,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-classic-d9c4920e-20240913"; +exports.version = "19.0.0-www-classic-5deb7822-20240913"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index 9052d5e2d0593..22daa35728e1e 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -13189,41 +13189,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm1356352322$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp1406463732$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1356352322$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp1406463732$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1356352322$1.defaultView) + : $jscomp$optchain$tmp1406463732$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1356352322$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1356352322$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp1406463732$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp1406463732$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1356352322$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp1406463732$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1356352322$1.contentWindow; + containerInfo = $jscomp$optchain$tmp1406463732$1.contentWindow; else break; - $jscomp$optchain$tmpm1356352322$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmp1406463732$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1356352322$1; + return $jscomp$optchain$tmp1406463732$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17154,14 +17149,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1769 = React.version; if ( - "19.0.0-www-modern-d9c4920e-20240913" !== + "19.0.0-www-modern-5deb7822-20240913" !== isomorphicReactPackageVersion$jscomp$inline_1769 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1769, - "19.0.0-www-modern-d9c4920e-20240913" + "19.0.0-www-modern-5deb7822-20240913" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -17179,11 +17174,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2289 = { bundleType: 0, - version: "19.0.0-www-modern-d9c4920e-20240913", + version: "19.0.0-www-modern-5deb7822-20240913", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2290 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17697,4 +17692,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-modern-d9c4920e-20240913"; +exports.version = "19.0.0-www-modern-5deb7822-20240913"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index c7a46da60be2f..7187762c4b364 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -19299,7 +19299,7 @@ __DEV__ && rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index d58c3b1fd72b4..0be8147522d79 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -18693,7 +18693,7 @@ __DEV__ && rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index 2d034bc87c294..d5a5d3c226d33 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -12883,7 +12883,7 @@ module.exports = function ($$$config) { rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index d525b2034f4ae..aa7ca889937e9 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -12376,7 +12376,7 @@ module.exports = function ($$$config) { rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 6892af5cb8e96..5a20058a8eb3c 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15024,11 +15024,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-d9c4920e-20240913", + version: "19.0.0-www-classic-5deb7822-20240913", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-classic-5deb7822-20240913" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15163,5 +15163,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.0.0-www-classic-d9c4920e-20240913"; + exports.version = "19.0.0-www-classic-5deb7822-20240913"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index a624d86c09648..74747e48c0779 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15024,11 +15024,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-d9c4920e-20240913", + version: "19.0.0-www-modern-5deb7822-20240913", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-d9c4920e-20240913" + reconcilerVersion: "19.0.0-www-modern-5deb7822-20240913" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15163,5 +15163,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.0.0-www-modern-d9c4920e-20240913"; + exports.version = "19.0.0-www-modern-5deb7822-20240913"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index e4032ee4fabb6..d8cdee39147c3 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.0.0-www-classic-d9c4920e-20240913 \ No newline at end of file +19.0.0-www-classic-5deb7822-20240913 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index 07c24b3dec24c..7eeecdc56fe40 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.0.0-www-modern-d9c4920e-20240913 \ No newline at end of file +19.0.0-www-modern-5deb7822-20240913 \ No newline at end of file