From 36ded714ecfceb13cc12c4a9c56bfbfd2bff8f1f Mon Sep 17 00:00:00 2001 From: gnoff Date: Sat, 14 Sep 2024 08:25:42 -0700 Subject: [PATCH] Fix nodeName to UPPERCASE in insertStylesheetIntoRoot (#28255) ## Summary image The condition `node.nodeName === 'link'` is always `false`, because `node.nodeName` is Uppercase in specification. And the condition `node.nodeName === 'LINK'` is unnecessary, because Fizz hoists tags when it's `media` attribute is `"not all"`, whether it is a `link` or a `style` (line 36): https://github.com/facebook/react/blob/18cbcbf783377c5a22277a63ae41af54504502e0/packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetExternalRuntime.js#L30-L44 https://github.com/facebook/react/blob/18cbcbf783377c5a22277a63ae41af54504502e0/packages/react-dom-bindings/src/server/fizz-instruction-set/ReactDOMFizzInstructionSetInlineSource.js#L30-L44 DiffTrain build for [b75cc078c5fda0d57135523a7a2f4e8d1536472f](https://github.com/facebook/react/commit/b75cc078c5fda0d57135523a7a2f4e8d1536472f) --- 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 | 32 +++++++++-------- compiled/facebook-www/ReactDOM-dev.modern.js | 30 ++++++++-------- .../facebook-www/ReactDOM-prod.classic.js | 30 ++++++++-------- compiled/facebook-www/ReactDOM-prod.modern.js | 30 ++++++++-------- .../ReactDOM-profiling.classic.js | 30 ++++++++-------- .../facebook-www/ReactDOM-profiling.modern.js | 35 ++++++++----------- .../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 | 32 +++++++++-------- .../ReactDOMTesting-dev.modern.js | 30 ++++++++-------- .../ReactDOMTesting-prod.classic.js | 35 ++++++++----------- .../ReactDOMTesting-prod.modern.js | 35 ++++++++----------- .../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, 190 insertions(+), 201 deletions(-) diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 5db82e3735..18d3d3bfa1 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -3d95c43b8967d4dda1ec9a22f0d9ea4999fee8b8 +b75cc078c5fda0d57135523a7a2f4e8d1536472f diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 5db82e3735..18d3d3bfa1 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -3d95c43b8967d4dda1ec9a22f0d9ea4999fee8b8 +b75cc078c5fda0d57135523a7a2f4e8d1536472f diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index 4635eb1b14..819f5ad6a6 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-3d95c43b-20240913"; + exports.version = "19.0.0-www-classic-b75cc078-20240914"; "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 07a46539d9..5cdd8356c5 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-3d95c43b-20240913"; + exports.version = "19.0.0-www-modern-b75cc078-20240914"; "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 7ff67c7aa8..7c5c147a2a 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-classic-b75cc078-20240914"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 2b51a6718d..108319fc10 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-modern-b75cc078-20240914"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index 4f8ac06bf3..4e56dca69c 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-classic-b75cc078-20240914"; "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 129f8d1066..d4ef7b2f81 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-modern-b75cc078-20240914"; "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 e44224b191..b294d052f2 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -17121,11 +17121,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-3d95c43b-20240913", + version: "19.0.0-www-classic-b75cc078-20240914", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -17159,7 +17159,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.0.0-www-classic-3d95c43b-20240913"; + exports.version = "19.0.0-www-classic-b75cc078-20240914"; "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 8f1df388e3..ec90b3d8dc 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -16567,11 +16567,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-3d95c43b-20240913", + version: "19.0.0-www-modern-b75cc078-20240914", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -16605,7 +16605,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.0.0-www-modern-3d95c43b-20240913"; + exports.version = "19.0.0-www-modern-b75cc078-20240914"; "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 3f4dc497d1..b8c754eaa7 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-3d95c43b-20240913", + version: "19.0.0-www-classic-b75cc078-20240914", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: function () { return null; }, - reconcilerVersion: "19.0.0-www-classic-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-classic-b75cc078-20240914"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index e047bcadc9..eb47eb3ec7 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-3d95c43b-20240913", + version: "19.0.0-www-modern-b75cc078-20240914", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: function () { return null; }, - reconcilerVersion: "19.0.0-www-modern-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-modern-b75cc078-20240914"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index 978c0f160a..a75cb65d2e 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -18675,41 +18675,43 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm180540846$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm1084463550$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm180540846$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm1084463550$1 = + containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm180540846$1.defaultView) + : $jscomp$optchain$tmpm1084463550$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm180540846$1 = getActiveElement( + $jscomp$optchain$tmpm1084463550$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmpm180540846$1 instanceof + $jscomp$optchain$tmpm1084463550$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm180540846$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm1084463550$1.contentWindow.location + .href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm180540846$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm1084463550$1.contentWindow; else break; - $jscomp$optchain$tmpm180540846$1 = getActiveElement( + $jscomp$optchain$tmpm1084463550$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmpm180540846$1; + return $jscomp$optchain$tmpm1084463550$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -23134,7 +23136,7 @@ __DEV__ && ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -27875,11 +27877,11 @@ __DEV__ && : flushSyncErrorInBuildsThatSupportLegacyMode; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-classic-3d95c43b-20240913" !== isomorphicReactPackageVersion) + if ("19.0.0-www-classic-b75cc078-20240914" !== 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-3d95c43b-20240913\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-classic-b75cc078-20240914\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27923,11 +27925,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-3d95c43b-20240913", + version: "19.0.0-www-classic-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -28580,7 +28582,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-classic-3d95c43b-20240913"; + exports.version = "19.0.0-www-classic-b75cc078-20240914"; "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 67e452ab91..adf8d5e484 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -18009,41 +18009,41 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm468437908$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp1906584142$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm468437908$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp1906584142$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm468437908$1.defaultView) + : $jscomp$optchain$tmp1906584142$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm468437908$1 = getActiveElement( + $jscomp$optchain$tmp1906584142$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmpm468437908$1 instanceof + $jscomp$optchain$tmp1906584142$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm468437908$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp1906584142$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm468437908$1.contentWindow; + containerInfo = $jscomp$optchain$tmp1906584142$1.contentWindow; else break; - $jscomp$optchain$tmpm468437908$1 = getActiveElement( + $jscomp$optchain$tmp1906584142$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmpm468437908$1; + return $jscomp$optchain$tmp1906584142$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -22440,7 +22440,7 @@ __DEV__ && ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -26992,11 +26992,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-modern-3d95c43b-20240913" !== isomorphicReactPackageVersion) + if ("19.0.0-www-modern-b75cc078-20240914" !== 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-3d95c43b-20240913\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-modern-b75cc078-20240914\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27039,11 +27039,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-3d95c43b-20240913", + version: "19.0.0-www-modern-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -27648,7 +27648,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-modern-3d95c43b-20240913"; + exports.version = "19.0.0-www-modern-b75cc078-20240914"; "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 8635482476..f19127b9c9 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -13490,36 +13490,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmp1382830644$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp1626644331$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmp1382830644$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp1626644331$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmp1382830644$1.defaultView) + : $jscomp$optchain$tmp1626644331$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmp1382830644$1 = getActiveElement(containerInfo.document); - $jscomp$optchain$tmp1382830644$1 instanceof containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp1626644331$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp1626644331$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmp1382830644$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp1626644331$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmp1382830644$1.contentWindow; + containerInfo = $jscomp$optchain$tmp1626644331$1.contentWindow; else break; - $jscomp$optchain$tmp1382830644$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp1626644331$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmp1382830644$1; + return $jscomp$optchain$tmp1626644331$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -16671,7 +16671,7 @@ function insertStylesheetIntoRoot(root, resource) { ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -17444,14 +17444,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1768 = React.version; if ( - "19.0.0-www-classic-3d95c43b-20240913" !== + "19.0.0-www-classic-b75cc078-20240914" !== isomorphicReactPackageVersion$jscomp$inline_1768 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1768, - "19.0.0-www-classic-3d95c43b-20240913" + "19.0.0-www-classic-b75cc078-20240914" ) ); function flushSyncFromReconciler(fn) { @@ -17496,11 +17496,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2263 = { bundleType: 0, - version: "19.0.0-www-classic-3d95c43b-20240913", + version: "19.0.0-www-classic-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2264 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17956,4 +17956,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-classic-3d95c43b-20240913"; +exports.version = "19.0.0-www-classic-b75cc078-20240914"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index 8a03d588ad..3a12be627e 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -12917,36 +12917,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmp1077789423$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp302141691$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmp1077789423$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp302141691$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmp1077789423$1.defaultView) + : $jscomp$optchain$tmp302141691$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmp1077789423$1 = getActiveElement(containerInfo.document); - $jscomp$optchain$tmp1077789423$1 instanceof containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp302141691$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp302141691$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmp1077789423$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp302141691$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmp1077789423$1.contentWindow; + containerInfo = $jscomp$optchain$tmp302141691$1.contentWindow; else break; - $jscomp$optchain$tmp1077789423$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp302141691$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmp1077789423$1; + return $jscomp$optchain$tmp302141691$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -16076,7 +16076,7 @@ function insertStylesheetIntoRoot(root, resource) { ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -16820,14 +16820,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1739 = React.version; if ( - "19.0.0-www-modern-3d95c43b-20240913" !== + "19.0.0-www-modern-b75cc078-20240914" !== isomorphicReactPackageVersion$jscomp$inline_1739 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1739, - "19.0.0-www-modern-3d95c43b-20240913" + "19.0.0-www-modern-b75cc078-20240914" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -16845,11 +16845,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2254 = { bundleType: 0, - version: "19.0.0-www-modern-3d95c43b-20240913", + version: "19.0.0-www-modern-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2255 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17212,4 +17212,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-modern-3d95c43b-20240913"; +exports.version = "19.0.0-www-modern-b75cc078-20240914"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index 1d8f3e7870..ff5d7de19c 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -14270,36 +14270,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm279967055$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm67989094$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm279967055$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm67989094$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm279967055$1.defaultView) + : $jscomp$optchain$tmpm67989094$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm279967055$1 = getActiveElement(containerInfo.document); - $jscomp$optchain$tmpm279967055$1 instanceof containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmpm67989094$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmpm67989094$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm279967055$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm67989094$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm279967055$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm67989094$1.contentWindow; else break; - $jscomp$optchain$tmpm279967055$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmpm67989094$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm279967055$1; + return $jscomp$optchain$tmpm67989094$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17451,7 +17451,7 @@ function insertStylesheetIntoRoot(root, resource) { ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -18224,14 +18224,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1858 = React.version; if ( - "19.0.0-www-classic-3d95c43b-20240913" !== + "19.0.0-www-classic-b75cc078-20240914" !== isomorphicReactPackageVersion$jscomp$inline_1858 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1858, - "19.0.0-www-classic-3d95c43b-20240913" + "19.0.0-www-classic-b75cc078-20240914" ) ); function flushSyncFromReconciler(fn) { @@ -18276,11 +18276,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_1865 = { bundleType: 0, - version: "19.0.0-www-classic-3d95c43b-20240913", + version: "19.0.0-www-classic-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; enableSchedulingProfiler && ((internals$jscomp$inline_1865.getLaneLabelMap = getLaneLabelMap), @@ -18739,7 +18739,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-classic-3d95c43b-20240913"; +exports.version = "19.0.0-www-classic-b75cc078-20240914"; "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 b79f6152ad..f8527bfdf5 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -13680,41 +13680,36 @@ function containsNode(outerNode, innerNode) { : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmpm1874826397$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp1256254996$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1874826397$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp1256254996$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1874826397$1.defaultView) + : $jscomp$optchain$tmp1256254996$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1874826397$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1874826397$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmp1256254996$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmp1256254996$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1874826397$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp1256254996$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1874826397$1.contentWindow; + containerInfo = $jscomp$optchain$tmp1256254996$1.contentWindow; else break; - $jscomp$optchain$tmpm1874826397$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmp1256254996$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1874826397$1; + return $jscomp$optchain$tmp1256254996$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -16844,7 +16839,7 @@ function insertStylesheetIntoRoot(root, resource) { ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -17588,14 +17583,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1829 = React.version; if ( - "19.0.0-www-modern-3d95c43b-20240913" !== + "19.0.0-www-modern-b75cc078-20240914" !== isomorphicReactPackageVersion$jscomp$inline_1829 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1829, - "19.0.0-www-modern-3d95c43b-20240913" + "19.0.0-www-modern-b75cc078-20240914" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -17613,11 +17608,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_1831 = { bundleType: 0, - version: "19.0.0-www-modern-3d95c43b-20240913", + version: "19.0.0-www-modern-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; enableSchedulingProfiler && ((internals$jscomp$inline_1831.getLaneLabelMap = getLaneLabelMap), @@ -17983,7 +17978,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.0.0-www-modern-3d95c43b-20240913"; +exports.version = "19.0.0-www-modern-b75cc078-20240914"; "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 4961006c3c..da5dea7cbf 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-3d95c43b-20240913"; + exports.version = "19.0.0-www-classic-b75cc078-20240914"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index bcf7e17081..1c091e1a10 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-3d95c43b-20240913"; + exports.version = "19.0.0-www-modern-b75cc078-20240914"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index e791a3710d..ce2892d0b9 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-classic-b75cc078-20240914"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index a082600247..63d9f858f3 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-modern-b75cc078-20240914"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index 05bc1e7220..4882a60293 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -18898,41 +18898,43 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmp932040565$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm1836617862$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmp932040565$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm1836617862$1 = + containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmp932040565$1.defaultView) + : $jscomp$optchain$tmpm1836617862$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmp932040565$1 = getActiveElement( + $jscomp$optchain$tmpm1836617862$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmp932040565$1 instanceof + $jscomp$optchain$tmpm1836617862$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmp932040565$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm1836617862$1.contentWindow.location + .href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmp932040565$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm1836617862$1.contentWindow; else break; - $jscomp$optchain$tmp932040565$1 = getActiveElement( + $jscomp$optchain$tmpm1836617862$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmp932040565$1; + return $jscomp$optchain$tmpm1836617862$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -23422,7 +23424,7 @@ __DEV__ && ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -28209,11 +28211,11 @@ __DEV__ && : flushSyncErrorInBuildsThatSupportLegacyMode; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-classic-3d95c43b-20240913" !== isomorphicReactPackageVersion) + if ("19.0.0-www-classic-b75cc078-20240914" !== 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-3d95c43b-20240913\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-classic-b75cc078-20240914\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -28257,11 +28259,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-3d95c43b-20240913", + version: "19.0.0-www-classic-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -29080,5 +29082,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-classic-3d95c43b-20240913"; + exports.version = "19.0.0-www-classic-b75cc078-20240914"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index 0fde406a07..8cfd319109 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -18232,41 +18232,41 @@ __DEV__ && : !1; } function getActiveElementDeep(containerInfo) { - var $jscomp$optchain$tmp2143713499$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmp125440354$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmp2143713499$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmp125440354$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmp2143713499$1.defaultView) + : $jscomp$optchain$tmp125440354$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmp2143713499$1 = getActiveElement( + $jscomp$optchain$tmp125440354$1 = getActiveElement( containerInfo.document ); - $jscomp$optchain$tmp2143713499$1 instanceof + $jscomp$optchain$tmp125440354$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmp2143713499$1.contentWindow.location.href; + typeof $jscomp$optchain$tmp125440354$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmp2143713499$1.contentWindow; + containerInfo = $jscomp$optchain$tmp125440354$1.contentWindow; else break; - $jscomp$optchain$tmp2143713499$1 = getActiveElement( + $jscomp$optchain$tmp125440354$1 = getActiveElement( containerInfo.document ); } - return $jscomp$optchain$tmp2143713499$1; + return $jscomp$optchain$tmp125440354$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -22728,7 +22728,7 @@ __DEV__ && ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -27326,11 +27326,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.0.0-www-modern-3d95c43b-20240913" !== isomorphicReactPackageVersion) + if ("19.0.0-www-modern-b75cc078-20240914" !== 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-3d95c43b-20240913\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.0.0-www-modern-b75cc078-20240914\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27373,11 +27373,11 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-3d95c43b-20240913", + version: "19.0.0-www-modern-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -28148,5 +28148,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.0.0-www-modern-3d95c43b-20240913"; + exports.version = "19.0.0-www-modern-b75cc078-20240914"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index 99dc12482c..235cd27712 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$tmpm1875791674$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm136133008$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1875791674$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm136133008$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1875791674$1.defaultView) + : $jscomp$optchain$tmpm136133008$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1875791674$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1875791674$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmpm136133008$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmpm136133008$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1875791674$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm136133008$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1875791674$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm136133008$1.contentWindow; else break; - $jscomp$optchain$tmpm1875791674$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmpm136133008$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1875791674$1; + return $jscomp$optchain$tmpm136133008$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -17005,7 +17000,7 @@ function insertStylesheetIntoRoot(root, resource) { ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -17778,14 +17773,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1798 = React.version; if ( - "19.0.0-www-classic-3d95c43b-20240913" !== + "19.0.0-www-classic-b75cc078-20240914" !== isomorphicReactPackageVersion$jscomp$inline_1798 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1798, - "19.0.0-www-classic-3d95c43b-20240913" + "19.0.0-www-classic-b75cc078-20240914" ) ); function flushSyncFromReconciler(fn) { @@ -17830,11 +17825,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2298 = { bundleType: 0, - version: "19.0.0-www-classic-3d95c43b-20240913", + version: "19.0.0-www-classic-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-classic-b75cc078-20240914"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index 8a4920c632..f29a5ec7ff 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$tmpm1634999360$1, $jscomp$nullish$tmp0; + var $jscomp$optchain$tmpm643457079$1, $jscomp$nullish$tmp0; containerInfo = null != ($jscomp$nullish$tmp0 = null == containerInfo ? void 0 : null == - ($jscomp$optchain$tmpm1634999360$1 = containerInfo.ownerDocument) + ($jscomp$optchain$tmpm643457079$1 = containerInfo.ownerDocument) ? void 0 - : $jscomp$optchain$tmpm1634999360$1.defaultView) + : $jscomp$optchain$tmpm643457079$1.defaultView) ? $jscomp$nullish$tmp0 : window; for ( - $jscomp$optchain$tmpm1634999360$1 = getActiveElement( - containerInfo.document - ); - $jscomp$optchain$tmpm1634999360$1 instanceof - containerInfo.HTMLIFrameElement; + $jscomp$optchain$tmpm643457079$1 = getActiveElement(containerInfo.document); + $jscomp$optchain$tmpm643457079$1 instanceof containerInfo.HTMLIFrameElement; ) { try { var JSCompiler_inline_result = "string" === - typeof $jscomp$optchain$tmpm1634999360$1.contentWindow.location.href; + typeof $jscomp$optchain$tmpm643457079$1.contentWindow.location.href; } catch (err) { JSCompiler_inline_result = !1; } if (JSCompiler_inline_result) - containerInfo = $jscomp$optchain$tmpm1634999360$1.contentWindow; + containerInfo = $jscomp$optchain$tmpm643457079$1.contentWindow; else break; - $jscomp$optchain$tmpm1634999360$1 = getActiveElement( - containerInfo.document - ); + $jscomp$optchain$tmpm643457079$1 = getActiveElement(containerInfo.document); } - return $jscomp$optchain$tmpm1634999360$1; + return $jscomp$optchain$tmpm643457079$1; } function hasSelectionCapabilities(elem) { var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase(); @@ -16410,7 +16405,7 @@ function insertStylesheetIntoRoot(root, resource) { ) { var node = nodes[i]; if ( - "link" === node.nodeName || + "LINK" === node.nodeName || "not all" !== node.getAttribute("media") ) precedences.set(node.dataset.precedence, node), (last = node); @@ -17154,14 +17149,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1769 = React.version; if ( - "19.0.0-www-modern-3d95c43b-20240913" !== + "19.0.0-www-modern-b75cc078-20240914" !== isomorphicReactPackageVersion$jscomp$inline_1769 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1769, - "19.0.0-www-modern-3d95c43b-20240913" + "19.0.0-www-modern-b75cc078-20240914" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -17179,11 +17174,11 @@ Internals.Events = [ ]; var internals$jscomp$inline_2289 = { bundleType: 0, - version: "19.0.0-www-modern-3d95c43b-20240913", + version: "19.0.0-www-modern-b75cc078-20240914", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getClosestInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; 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-3d95c43b-20240913"; +exports.version = "19.0.0-www-modern-b75cc078-20240914"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index 4db8b5c91f..b5a7279837 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -19308,7 +19308,7 @@ __DEV__ && rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index 85583d4aa5..e004551f54 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -18702,7 +18702,7 @@ __DEV__ && rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index 1288ea2c45..266f1c1e59 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-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index ea7f3e9271..8fd0f3fc42 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-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 33a70d156f..85cb8323c2 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15033,11 +15033,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-classic-3d95c43b-20240913", + version: "19.0.0-www-classic-b75cc078-20240914", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-classic-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15172,5 +15172,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.0.0-www-classic-3d95c43b-20240913"; + exports.version = "19.0.0-www-classic-b75cc078-20240914"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index a4d4f1ec43..56c5fdccb8 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15033,11 +15033,11 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.0.0-www-modern-3d95c43b-20240913", + version: "19.0.0-www-modern-b75cc078-20240914", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, findFiberByHostInstance: getInstanceFromNode, - reconcilerVersion: "19.0.0-www-modern-3d95c43b-20240913" + reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15172,5 +15172,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.0.0-www-modern-3d95c43b-20240913"; + exports.version = "19.0.0-www-modern-b75cc078-20240914"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index 4fe6999593..1af39e8a46 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.0.0-www-classic-3d95c43b-20240913 \ No newline at end of file +19.0.0-www-classic-b75cc078-20240914 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index c9e0ff8834..dee21e3281 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.0.0-www-modern-3d95c43b-20240913 \ No newline at end of file +19.0.0-www-modern-b75cc078-20240914 \ No newline at end of file