From 7b7ffbd4b5b0723f45f57a2a5e9e6f4e2630e932 Mon Sep 17 00:00:00 2001 From: sebmarkbage Date: Tue, 17 Sep 2024 13:22:20 -0700 Subject: [PATCH] [Fiber] Log Component Effects to Performance Track (#30983) Stacked on #30981. Same as #30967 but for effects. This logs a tree of components using `performance.measure()`. In addition to the previous render phase this logs one tree for each commit phase: - Mutation Phase - Layout Effect - Passive Unmounts - Passive Mounts I currently skip the Before Mutation phase since the snapshots are so unusual it's not worth creating trees for those. The mechanism is that I reuse the timings we track for `enableProfilerCommitHooks`. I track first and last effect timestamp within each component subtree. Then on the way up do we log the entry. This means that we don't include overhead to find our way down to a component and that we don't need to add any additional overhead by reading timestamps. To ensure that the entries get ordered correctly we need to ensure that the start time of each parent is slightly before the inner one. DiffTrain build for [e1c20902c39d1dfe2649185622f2f21b526e2be2](https://github.com/facebook/react/commit/e1c20902c39d1dfe2649185622f2f21b526e2be2) --- 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 | 28 ++++++++-------- compiled/facebook-www/ReactDOM-dev.modern.js | 30 +++++++++-------- .../facebook-www/ReactDOM-prod.classic.js | 33 ++++++++----------- compiled/facebook-www/ReactDOM-prod.modern.js | 28 ++++++++-------- .../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 | 28 ++++++++-------- .../ReactDOMTesting-dev.modern.js | 30 +++++++++-------- .../ReactDOMTesting-prod.classic.js | 33 ++++++++----------- .../ReactDOMTesting-prod.modern.js | 28 ++++++++-------- .../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(+), 191 deletions(-) diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index be0e37f27a..ac918e0fb7 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -15da9174518f18f82869767ebe2a21be2fc8bd90 +e1c20902c39d1dfe2649185622f2f21b526e2be2 diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index be0e37f27a..ac918e0fb7 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -15da9174518f18f82869767ebe2a21be2fc8bd90 +e1c20902c39d1dfe2649185622f2f21b526e2be2 diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index ea3166b324..9d483babd2 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -2000,7 +2000,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.0.0-www-classic-15da9174-20240917"; + exports.version = "19.0.0-www-classic-e1c20902-20240917"; "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 654f4fecbe..cb120c3630 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1980,7 +1980,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.0.0-www-modern-15da9174-20240917"; + exports.version = "19.0.0-www-modern-e1c20902-20240917"; "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 8171d14dcd..af68a481ba 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-15da9174-20240917"; +exports.version = "19.0.0-www-classic-e1c20902-20240917"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 4216c61d8a..9ccab23728 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-15da9174-20240917"; +exports.version = "19.0.0-www-modern-e1c20902-20240917"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index 0e59d77bb6..5c85345649 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-15da9174-20240917"; +exports.version = "19.0.0-www-classic-e1c20902-20240917"; "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 458134cc32..282dc2fdd2 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-15da9174-20240917"; +exports.version = "19.0.0-www-modern-e1c20902-20240917"; "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 05a4c74f88..1a0c5abee9 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -17026,11 +17026,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-15da9174-20240917", + version: "19.0.0-www-classic-e1c20902-20240917", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -17064,7 +17064,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.0.0-www-classic-15da9174-20240917"; + exports.version = "19.0.0-www-classic-e1c20902-20240917"; "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 2acadcb15e..ec520d109b 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -16472,11 +16472,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-15da9174-20240917", + version: "19.0.0-www-modern-e1c20902-20240917", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -16510,7 +16510,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.0.0-www-modern-15da9174-20240917"; + exports.version = "19.0.0-www-modern-e1c20902-20240917"; "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 45a6856b85..1fa5d0d92a 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -10853,13 +10853,13 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1439 = { bundleType: 0, - version: "19.0.0-www-classic-15da9174-20240917", + version: "19.0.0-www-classic-e1c20902-20240917", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: function () { return null; }, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1440 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -10885,4 +10885,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.0.0-www-classic-15da9174-20240917"; +exports.version = "19.0.0-www-classic-e1c20902-20240917"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 0b4f65651c..069a4bdf7d 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -10367,13 +10367,13 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1431 = { bundleType: 0, - version: "19.0.0-www-modern-15da9174-20240917", + version: "19.0.0-www-modern-e1c20902-20240917", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: function () { return null; }, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1432 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -10399,4 +10399,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.0.0-www-modern-15da9174-20240917"; +exports.version = "19.0.0-www-modern-e1c20902-20240917"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index c3f1a29226..756e51c2de 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -18576,41 +18576,41 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm591242023$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp1055089991$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm591242023$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp1055089991$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm591242023$1.defaultView) + : $jscomp$optchain$tmp1055089991$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm591242023$1 = getActiveElement( + $jscomp$optchain$tmp1055089991$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmpm591242023$1 instanceof + $jscomp$optchain$tmp1055089991$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm591242023$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp1055089991$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm591242023$1.contentWindow; + containerInfo = $jscomp$optchain$tmp1055089991$1.contentWindow; else break; - $jscomp$optchain$tmpm591242023$1 = getActiveElement( + $jscomp$optchain$tmp1055089991$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmpm591242023$1; + return $jscomp$optchain$tmp1055089991$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -27774,11 +27774,11 @@ __DEV__ && : flushSyncErrorInBuildsThatSupportLegacyMode; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-classic-15da9174-20240917" !== isomorphicReactPackageVersion) + if ("19.0.0-www-classic-e1c20902-20240917" !== 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-15da9174-20240917\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-classic-e1c20902-20240917\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27822,11 +27822,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-15da9174-20240917", + version: "19.0.0-www-classic-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -28479,7 +28479,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-classic-15da9174-20240917"; + exports.version = "19.0.0-www-classic-e1c20902-20240917"; "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 18271b524f..0fdb452b43 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -17910,41 +17910,43 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmp1859924392$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm1669231707$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmp1859924392$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm1669231707$1 = + containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmp1859924392$1.defaultView) + : $jscomp$optchain$tmpm1669231707$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmp1859924392$1 = getActiveElement( + $jscomp$optchain$tmpm1669231707$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmp1859924392$1 instanceof + $jscomp$optchain$tmpm1669231707$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmp1859924392$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm1669231707$1.contentWindow.location + .href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmp1859924392$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm1669231707$1.contentWindow; else break; - $jscomp$optchain$tmp1859924392$1 = getActiveElement( + $jscomp$optchain$tmpm1669231707$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmp1859924392$1; + return $jscomp$optchain$tmpm1669231707$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -26891,11 +26893,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-modern-15da9174-20240917" !== isomorphicReactPackageVersion) + if ("19.0.0-www-modern-e1c20902-20240917" !== 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-15da9174-20240917\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-modern-e1c20902-20240917\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -26938,11 +26940,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-15da9174-20240917", + version: "19.0.0-www-modern-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -27547,7 +27549,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-modern-15da9174-20240917"; + exports.version = "19.0.0-www-modern-e1c20902-20240917"; "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 1bc4068b1a..79fe1b117f 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -13456,41 +13456,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm1819306662$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp946714619$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1819306662$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp946714619$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1819306662$1.defaultView) + : $jscomp$optchain$tmp946714619$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1819306662$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1819306662$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp946714619$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp946714619$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1819306662$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp946714619$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1819306662$1.contentWindow; + containerInfo = $jscomp$optchain$tmp946714619$1.contentWindow; else break; - $jscomp$optchain$tmpm1819306662$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmp946714619$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1819306662$1; + return $jscomp$optchain$tmp946714619$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17415,14 +17410,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1768 = React.version; if ( - "19.0.0-www-classic-15da9174-20240917" !== + "19.0.0-www-classic-e1c20902-20240917" !== isomorphicReactPackageVersion$jscomp$inline_1768 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1768, - "19.0.0-www-classic-15da9174-20240917" + "19.0.0-www-classic-e1c20902-20240917" ) ); function flushSyncFromReconciler(fn) { @@ -17467,11 +17462,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2276 = { bundleType: 0, - version: "19.0.0-www-classic-15da9174-20240917", + version: "19.0.0-www-classic-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2277 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17927,4 +17922,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-classic-15da9174-20240917"; +exports.version = "19.0.0-www-classic-e1c20902-20240917"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index 91c19cf6a5..9165a22edc 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -12883,36 +12883,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm743188543$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp2131062520$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm743188543$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp2131062520$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm743188543$1.defaultView) + : $jscomp$optchain$tmp2131062520$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm743188543$1 = getActiveElement(containerInfo.document); - $jscomp$optchain$tmpm743188543$1 instanceof containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp2131062520$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp2131062520$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm743188543$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp2131062520$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm743188543$1.contentWindow; + containerInfo = $jscomp$optchain$tmp2131062520$1.contentWindow; else break; - $jscomp$optchain$tmpm743188543$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp2131062520$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm743188543$1; + return $jscomp$optchain$tmp2131062520$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -16786,14 +16786,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1739 = React.version; if ( - "19.0.0-www-modern-15da9174-20240917" !== + "19.0.0-www-modern-e1c20902-20240917" !== isomorphicReactPackageVersion$jscomp$inline_1739 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1739, - "19.0.0-www-modern-15da9174-20240917" + "19.0.0-www-modern-e1c20902-20240917" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -16811,11 +16811,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2267 = { bundleType: 0, - version: "19.0.0-www-modern-15da9174-20240917", + version: "19.0.0-www-modern-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2268 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17178,4 +17178,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-modern-15da9174-20240917"; +exports.version = "19.0.0-www-modern-e1c20902-20240917"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index bf49b95a6d..d2d538d644 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -14181,36 +14181,41 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm273927982$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm1363488200$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm273927982$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm1363488200$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm273927982$1.defaultView) + : $jscomp$optchain$tmpm1363488200$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm273927982$1 = getActiveElement(containerInfo.document); - $jscomp$optchain$tmpm273927982$1 instanceof containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmpm1363488200$1 = getActiveElement( + containerInfo.document + ); + $jscomp$optchain$tmpm1363488200$1 instanceof + containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm273927982$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm1363488200$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm273927982$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm1363488200$1.contentWindow; else break; - $jscomp$optchain$tmpm273927982$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmpm1363488200$1 = getActiveElement( + containerInfo.document + ); } - return $jscomp$optchain$tmpm273927982$1; + return $jscomp$optchain$tmpm1363488200$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -18135,14 +18140,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1862 = React.version; if ( - "19.0.0-www-classic-15da9174-20240917" !== + "19.0.0-www-classic-e1c20902-20240917" !== isomorphicReactPackageVersion$jscomp$inline_1862 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1862, - "19.0.0-www-classic-15da9174-20240917" + "19.0.0-www-classic-e1c20902-20240917" ) ); function flushSyncFromReconciler(fn) { @@ -18187,11 +18192,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_1869 = { bundleType: 0, - version: "19.0.0-www-classic-15da9174-20240917", + version: "19.0.0-www-classic-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; enableSchedulingProfiler && ((internals$jscomp$inline_1869.getLaneLabelMap = getLaneLabelMap), @@ -18650,7 +18655,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-classic-15da9174-20240917"; +exports.version = "19.0.0-www-classic-e1c20902-20240917"; "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 be60be83f4..d6a6ac62d5 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -13591,41 +13591,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm1241486383$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp2111812401$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1241486383$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp2111812401$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1241486383$1.defaultView) + : $jscomp$optchain$tmp2111812401$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1241486383$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1241486383$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp2111812401$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp2111812401$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1241486383$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp2111812401$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1241486383$1.contentWindow; + containerInfo = $jscomp$optchain$tmp2111812401$1.contentWindow; else break; - $jscomp$optchain$tmpm1241486383$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmp2111812401$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1241486383$1; + return $jscomp$optchain$tmp2111812401$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17499,14 +17494,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1833 = React.version; if ( - "19.0.0-www-modern-15da9174-20240917" !== + "19.0.0-www-modern-e1c20902-20240917" !== isomorphicReactPackageVersion$jscomp$inline_1833 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1833, - "19.0.0-www-modern-15da9174-20240917" + "19.0.0-www-modern-e1c20902-20240917" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -17524,11 +17519,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_1835 = { bundleType: 0, - version: "19.0.0-www-modern-15da9174-20240917", + version: "19.0.0-www-modern-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; enableSchedulingProfiler && ((internals$jscomp$inline_1835.getLaneLabelMap = getLaneLabelMap), @@ -17894,7 +17889,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-modern-15da9174-20240917"; +exports.version = "19.0.0-www-modern-e1c20902-20240917"; "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 9806eb889e..93252135ed 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-15da9174-20240917"; + exports.version = "19.0.0-www-classic-e1c20902-20240917"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index ac3c4fc5b7..6bd442ee0b 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-15da9174-20240917"; + exports.version = "19.0.0-www-modern-e1c20902-20240917"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index 962db487b0..8054ab1a42 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-15da9174-20240917"; +exports.version = "19.0.0-www-classic-e1c20902-20240917"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index ce6f20e7ed..fcbfc537b7 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-15da9174-20240917"; +exports.version = "19.0.0-www-modern-e1c20902-20240917"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index 6abf953b12..02cb50473c 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -18799,41 +18799,41 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm226845175$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp563779104$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm226845175$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp563779104$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm226845175$1.defaultView) + : $jscomp$optchain$tmp563779104$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm226845175$1 = getActiveElement( + $jscomp$optchain$tmp563779104$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmpm226845175$1 instanceof + $jscomp$optchain$tmp563779104$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm226845175$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp563779104$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm226845175$1.contentWindow; + containerInfo = $jscomp$optchain$tmp563779104$1.contentWindow; else break; - $jscomp$optchain$tmpm226845175$1 = getActiveElement( + $jscomp$optchain$tmp563779104$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmpm226845175$1; + return $jscomp$optchain$tmp563779104$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -28108,11 +28108,11 @@ __DEV__ && : flushSyncErrorInBuildsThatSupportLegacyMode; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-classic-15da9174-20240917" !== isomorphicReactPackageVersion) + if ("19.0.0-www-classic-e1c20902-20240917" !== 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-15da9174-20240917\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-classic-e1c20902-20240917\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -28156,11 +28156,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-15da9174-20240917", + version: "19.0.0-www-classic-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -28979,5 +28979,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-classic-15da9174-20240917"; + exports.version = "19.0.0-www-classic-e1c20902-20240917"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index c035559baf..dc7fdce06d 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -18133,41 +18133,43 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm287316196$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm1428800364$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm287316196$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm1428800364$1 = + containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm287316196$1.defaultView) + : $jscomp$optchain$tmpm1428800364$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm287316196$1 = getActiveElement( + $jscomp$optchain$tmpm1428800364$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmpm287316196$1 instanceof + $jscomp$optchain$tmpm1428800364$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm287316196$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm1428800364$1.contentWindow.location + .href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm287316196$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm1428800364$1.contentWindow; else break; - $jscomp$optchain$tmpm287316196$1 = getActiveElement( + $jscomp$optchain$tmpm1428800364$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmpm287316196$1; + return $jscomp$optchain$tmpm1428800364$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -27225,11 +27227,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-modern-15da9174-20240917" !== isomorphicReactPackageVersion) + if ("19.0.0-www-modern-e1c20902-20240917" !== 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-15da9174-20240917\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-modern-e1c20902-20240917\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27272,11 +27274,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-15da9174-20240917", + version: "19.0.0-www-modern-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -28047,5 +28049,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-modern-15da9174-20240917"; + exports.version = "19.0.0-www-modern-e1c20902-20240917"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index fb45586162..3bf9cceb9c 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -13728,41 +13728,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm1618494169$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm131430870$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1618494169$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm131430870$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1618494169$1.defaultView) + : $jscomp$optchain$tmpm131430870$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1618494169$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1618494169$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmpm131430870$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmpm131430870$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1618494169$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm131430870$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1618494169$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm131430870$1.contentWindow; else break; - $jscomp$optchain$tmpm1618494169$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmpm131430870$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1618494169$1; + return $jscomp$optchain$tmpm131430870$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17744,14 +17739,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1798 = React.version; if ( - "19.0.0-www-classic-15da9174-20240917" !== + "19.0.0-www-classic-e1c20902-20240917" !== isomorphicReactPackageVersion$jscomp$inline_1798 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1798, - "19.0.0-www-classic-15da9174-20240917" + "19.0.0-www-classic-e1c20902-20240917" ) ); function flushSyncFromReconciler(fn) { @@ -17796,11 +17791,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2311 = { bundleType: 0, - version: "19.0.0-www-classic-15da9174-20240917", + version: "19.0.0-www-classic-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2312 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -18407,4 +18402,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-classic-15da9174-20240917"; +exports.version = "19.0.0-www-classic-e1c20902-20240917"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index 0e57f0ac6c..37f331540b 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -13155,36 +13155,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmp838708801$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm89292316$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmp838708801$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm89292316$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmp838708801$1.defaultView) + : $jscomp$optchain$tmpm89292316$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmp838708801$1 = getActiveElement(containerInfo.document); - $jscomp$optchain$tmp838708801$1 instanceof containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmpm89292316$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmpm89292316$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmp838708801$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm89292316$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmp838708801$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm89292316$1.contentWindow; else break; - $jscomp$optchain$tmp838708801$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmpm89292316$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmp838708801$1; + return $jscomp$optchain$tmpm89292316$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17115,14 +17115,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1769 = React.version; if ( - "19.0.0-www-modern-15da9174-20240917" !== + "19.0.0-www-modern-e1c20902-20240917" !== isomorphicReactPackageVersion$jscomp$inline_1769 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1769, - "19.0.0-www-modern-15da9174-20240917" + "19.0.0-www-modern-e1c20902-20240917" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -17140,11 +17140,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2302 = { bundleType: 0, - version: "19.0.0-www-modern-15da9174-20240917", + version: "19.0.0-www-modern-e1c20902-20240917", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2303 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17658,4 +17658,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-modern-15da9174-20240917"; +exports.version = "19.0.0-www-modern-e1c20902-20240917"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index c7f1dd1012..214dc71b94 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -19212,7 +19212,7 @@ __DEV__ && rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index c20bdcd6cb..d5bd277459 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -18606,7 +18606,7 @@ __DEV__ && rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index 20cd369bb8..3bc2dc54b7 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -12849,7 +12849,7 @@ module.exports = function ($$$config) { rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index 482d3d7acf..a85c2e3f1d 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -12342,7 +12342,7 @@ module.exports = function ($$$config) { rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index f920ce81a2..9879f338da 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -14974,11 +14974,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-15da9174-20240917", + version: "19.0.0-www-classic-e1c20902-20240917", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-15da9174-20240917" + reconcilerVersion: "19.0.0-www-classic-e1c20902-20240917" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15113,5 +15113,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.0.0-www-classic-15da9174-20240917"; + exports.version = "19.0.0-www-classic-e1c20902-20240917"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index 1b205dc824..5c15eaa47b 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -14974,11 +14974,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-15da9174-20240917", + version: "19.0.0-www-modern-e1c20902-20240917", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-15da9174-20240917" + reconcilerVersion: "19.0.0-www-modern-e1c20902-20240917" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15113,5 +15113,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.0.0-www-modern-15da9174-20240917"; + exports.version = "19.0.0-www-modern-e1c20902-20240917"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index 37b9be37d4..0b9ebe41fb 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.0.0-www-classic-15da9174-20240917 \ No newline at end of file +19.0.0-www-classic-e1c20902-20240917 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index 851cde9a85..26b4471bed 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.0.0-www-modern-15da9174-20240917 \ No newline at end of file +19.0.0-www-modern-e1c20902-20240917 \ No newline at end of file