From 4392bb2dbb35b5ab530735dfd671cf1c825a4324 Mon Sep 17 00:00:00 2001 From: rickhanlonii <2440089+rickhanlonii@users.noreply.github.com> Date: Mon, 17 Mar 2025 08:30:29 -0700 Subject: [PATCH] [bug] Fix component name for Portal and add tests (#32640) Based off: https://github.com/facebook/react/pull/32499 While looking into `React.lazy` issues for built-ins, I noticed we already error for `lazy` with build-ins, but we don't have any tests for `getComponentNameFromType` using all the built-ins. This may be something we should handle, but for now we should at least have tests. Here's why: while writing tests, I noticed we check `type` instead of `$$typeof` for portals: https://github.com/facebook/react/blob/9cdf8a99edcfd94d7420835ea663edca04237527/packages/react-reconciler/src/ReactPortal.js#L25-L32 This PR adds tests for all the built-ins and fixes the portal bug. [Commit to review](https://github.com/facebook/react/pull/32640/commits/e068c167d48d4df01e79db8f13276bb46d7ab439) DiffTrain build for [8243f3f0631698e819c690710a7f18f767068981](https://github.com/facebook/react/commit/8243f3f0631698e819c690710a7f18f767068981) --- compiled/facebook-www/JSXDEVRuntime-dev.classic.js | 4 ++-- compiled/facebook-www/JSXDEVRuntime-dev.modern.js | 4 ++-- compiled/facebook-www/REVISION | 2 +- compiled/facebook-www/REVISION_TRANSFORMS | 2 +- compiled/facebook-www/React-dev.classic.js | 6 +++--- compiled/facebook-www/React-dev.modern.js | 6 +++--- compiled/facebook-www/React-prod.classic.js | 2 +- compiled/facebook-www/React-prod.modern.js | 2 +- compiled/facebook-www/React-profiling.classic.js | 2 +- compiled/facebook-www/React-profiling.modern.js | 2 +- compiled/facebook-www/ReactART-dev.classic.js | 10 +++++----- compiled/facebook-www/ReactART-dev.modern.js | 10 +++++----- compiled/facebook-www/ReactART-prod.classic.js | 10 +++++----- compiled/facebook-www/ReactART-prod.modern.js | 10 +++++----- compiled/facebook-www/ReactDOM-dev.classic.js | 14 +++++++------- compiled/facebook-www/ReactDOM-dev.modern.js | 14 +++++++------- compiled/facebook-www/ReactDOM-prod.classic.js | 14 +++++++------- compiled/facebook-www/ReactDOM-prod.modern.js | 14 +++++++------- .../facebook-www/ReactDOM-profiling.classic.js | 14 +++++++------- compiled/facebook-www/ReactDOM-profiling.modern.js | 14 +++++++------- .../facebook-www/ReactDOMServer-dev.classic.js | 6 +++--- compiled/facebook-www/ReactDOMServer-dev.modern.js | 6 +++--- .../facebook-www/ReactDOMServer-prod.classic.js | 6 +++--- .../facebook-www/ReactDOMServer-prod.modern.js | 6 +++--- .../ReactDOMServerStreaming-dev.modern.js | 4 ++-- .../ReactDOMServerStreaming-prod.modern.js | 4 ++-- .../facebook-www/ReactDOMTesting-dev.classic.js | 14 +++++++------- .../facebook-www/ReactDOMTesting-dev.modern.js | 14 +++++++------- .../facebook-www/ReactDOMTesting-prod.classic.js | 14 +++++++------- .../facebook-www/ReactDOMTesting-prod.modern.js | 14 +++++++------- .../facebook-www/ReactReconciler-dev.classic.js | 6 +++--- .../facebook-www/ReactReconciler-dev.modern.js | 6 +++--- .../facebook-www/ReactReconciler-prod.classic.js | 6 +++--- .../facebook-www/ReactReconciler-prod.modern.js | 6 +++--- .../facebook-www/ReactTestRenderer-dev.classic.js | 10 +++++----- .../facebook-www/ReactTestRenderer-dev.modern.js | 10 +++++----- compiled/facebook-www/VERSION_CLASSIC | 2 +- compiled/facebook-www/VERSION_MODERN | 2 +- 38 files changed, 146 insertions(+), 146 deletions(-) diff --git a/compiled/facebook-www/JSXDEVRuntime-dev.classic.js b/compiled/facebook-www/JSXDEVRuntime-dev.classic.js index 3e317258e9..aee444bc79 100644 --- a/compiled/facebook-www/JSXDEVRuntime-dev.classic.js +++ b/compiled/facebook-www/JSXDEVRuntime-dev.classic.js @@ -23,8 +23,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -48,6 +46,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; diff --git a/compiled/facebook-www/JSXDEVRuntime-dev.modern.js b/compiled/facebook-www/JSXDEVRuntime-dev.modern.js index 3e317258e9..aee444bc79 100644 --- a/compiled/facebook-www/JSXDEVRuntime-dev.modern.js +++ b/compiled/facebook-www/JSXDEVRuntime-dev.modern.js @@ -23,8 +23,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -48,6 +46,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 495fd6f7d8..962c049c5f 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -df319522758b7fdfed3ddfa517cc1cc298ef1602 +8243f3f0631698e819c690710a7f18f767068981 diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 495fd6f7d8..962c049c5f 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -df319522758b7fdfed3ddfa517cc1cc298ef1602 +8243f3f0631698e819c690710a7f18f767068981 diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index 008b53b6a9..2f89b39432 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -96,8 +96,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -121,6 +119,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -1534,7 +1534,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-classic-df319522-20250317"; + exports.version = "19.1.0-www-classic-8243f3f0-20250317"; "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 53b46dba88..ee1cdb178e 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -96,8 +96,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -121,6 +119,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -1534,7 +1534,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-modern-df319522-20250317"; + exports.version = "19.1.0-www-modern-8243f3f0-20250317"; "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 67443df163..d3962050c4 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -641,4 +641,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-df319522-20250317"; +exports.version = "19.1.0-www-classic-8243f3f0-20250317"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index ac7301592f..58c00ec01b 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -641,4 +641,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-df319522-20250317"; +exports.version = "19.1.0-www-modern-8243f3f0-20250317"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index 806baf5b8e..fcc2bcea1f 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -645,7 +645,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-df319522-20250317"; +exports.version = "19.1.0-www-classic-8243f3f0-20250317"; "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 5617218593..e6786acc47 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -645,7 +645,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-df319522-20250317"; +exports.version = "19.1.0-www-modern-8243f3f0-20250317"; "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 b9112441dd..9ccf1c8e93 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -177,8 +177,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -202,6 +200,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -18541,10 +18541,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-df319522-20250317", + version: "19.1.0-www-classic-8243f3f0-20250317", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18578,7 +18578,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-classic-df319522-20250317"; + exports.version = "19.1.0-www-classic-8243f3f0-20250317"; "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 5472354853..25614211e3 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -177,8 +177,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -202,6 +200,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -18313,10 +18313,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-df319522-20250317", + version: "19.1.0-www-modern-8243f3f0-20250317", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18350,7 +18350,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-modern-df319522-20250317"; + exports.version = "19.1.0-www-modern-8243f3f0-20250317"; "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 8b3210750f..afffdd5667 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -149,8 +149,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -168,6 +166,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -11334,10 +11334,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1582 = { bundleType: 0, - version: "19.1.0-www-classic-df319522-20250317", + version: "19.1.0-www-classic-8243f3f0-20250317", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1583 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11363,4 +11363,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-classic-df319522-20250317"; +exports.version = "19.1.0-www-classic-8243f3f0-20250317"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 1d26252d13..18354406a9 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -147,8 +147,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -166,6 +164,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -11047,10 +11047,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1555 = { bundleType: 0, - version: "19.1.0-www-modern-df319522-20250317", + version: "19.1.0-www-modern-8243f3f0-20250317", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1556 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11076,4 +11076,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-modern-df319522-20250317"; +exports.version = "19.1.0-www-modern-8243f3f0-20250317"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index e61f7875ac..449de88b56 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -1376,8 +1376,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1401,6 +1399,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -30166,11 +30166,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-df319522-20250317" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-8243f3f0-20250317" !== 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.1.0-www-classic-df319522-20250317\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-8243f3f0-20250317\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30213,10 +30213,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-df319522-20250317", + version: "19.1.0-www-classic-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30814,7 +30814,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-df319522-20250317"; + exports.version = "19.1.0-www-classic-8243f3f0-20250317"; "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 3ed332d49b..5d454adbc1 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -1376,8 +1376,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1401,6 +1399,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -29952,11 +29952,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-df319522-20250317" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-8243f3f0-20250317" !== 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.1.0-www-modern-df319522-20250317\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-8243f3f0-20250317\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -29999,10 +29999,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-df319522-20250317", + version: "19.1.0-www-modern-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30600,7 +30600,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-df319522-20250317"; + exports.version = "19.1.0-www-modern-8243f3f0-20250317"; "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 ff01a01b46..23ffda9038 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -985,8 +985,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1004,6 +1002,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -18899,14 +18899,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1918 = React.version; if ( - "19.1.0-www-classic-df319522-20250317" !== + "19.1.0-www-classic-8243f3f0-20250317" !== isomorphicReactPackageVersion$jscomp$inline_1918 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1918, - "19.1.0-www-classic-df319522-20250317" + "19.1.0-www-classic-8243f3f0-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18924,10 +18924,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2507 = { bundleType: 0, - version: "19.1.0-www-classic-df319522-20250317", + version: "19.1.0-www-classic-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2508 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19291,4 +19291,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-df319522-20250317"; +exports.version = "19.1.0-www-classic-8243f3f0-20250317"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index e7c1c3c07f..33118185f1 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -983,8 +983,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1002,6 +1000,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -18628,14 +18628,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1908 = React.version; if ( - "19.1.0-www-modern-df319522-20250317" !== + "19.1.0-www-modern-8243f3f0-20250317" !== isomorphicReactPackageVersion$jscomp$inline_1908 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1908, - "19.1.0-www-modern-df319522-20250317" + "19.1.0-www-modern-8243f3f0-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18653,10 +18653,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2489 = { bundleType: 0, - version: "19.1.0-www-modern-df319522-20250317", + version: "19.1.0-www-modern-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2490 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19020,4 +19020,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-df319522-20250317"; +exports.version = "19.1.0-www-modern-8243f3f0-20250317"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index 903e27e9ce..a58a38b646 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -1098,8 +1098,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1117,6 +1115,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -20641,14 +20641,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2078 = React.version; if ( - "19.1.0-www-classic-df319522-20250317" !== + "19.1.0-www-classic-8243f3f0-20250317" !== isomorphicReactPackageVersion$jscomp$inline_2078 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2078, - "19.1.0-www-classic-df319522-20250317" + "19.1.0-www-classic-8243f3f0-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20666,10 +20666,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2080 = { bundleType: 0, - version: "19.1.0-www-classic-df319522-20250317", + version: "19.1.0-www-classic-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; enableSchedulingProfiler && ((internals$jscomp$inline_2080.getLaneLabelMap = getLaneLabelMap), @@ -21036,7 +21036,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-df319522-20250317"; +exports.version = "19.1.0-www-classic-8243f3f0-20250317"; "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 93bccea593..46a5442b7f 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -1096,8 +1096,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1115,6 +1113,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -20439,14 +20439,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2068 = React.version; if ( - "19.1.0-www-modern-df319522-20250317" !== + "19.1.0-www-modern-8243f3f0-20250317" !== isomorphicReactPackageVersion$jscomp$inline_2068 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2068, - "19.1.0-www-modern-df319522-20250317" + "19.1.0-www-modern-8243f3f0-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20464,10 +20464,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2070 = { bundleType: 0, - version: "19.1.0-www-modern-df319522-20250317", + version: "19.1.0-www-modern-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; enableSchedulingProfiler && ((internals$jscomp$inline_2070.getLaneLabelMap = getLaneLabelMap), @@ -20834,7 +20834,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-df319522-20250317"; +exports.version = "19.1.0-www-modern-8243f3f0-20250317"; "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 80cc806e84..4d22cb345f 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -3605,8 +3605,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -3630,6 +3628,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -9414,5 +9414,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.1.0-www-classic-df319522-20250317"; + exports.version = "19.1.0-www-classic-8243f3f0-20250317"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index ddf4289513..c8dc0d7645 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -3605,8 +3605,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -3630,6 +3628,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -9240,5 +9240,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.1.0-www-modern-df319522-20250317"; + exports.version = "19.1.0-www-modern-8243f3f0-20250317"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index b49bc545af..1e8dde8a52 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -2921,8 +2921,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -2940,6 +2938,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -6198,4 +6198,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.1.0-www-classic-df319522-20250317"; +exports.version = "19.1.0-www-classic-8243f3f0-20250317"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index d26b9fee43..2cf490350d 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -2919,8 +2919,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -2938,6 +2936,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -6110,4 +6110,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.1.0-www-modern-df319522-20250317"; +exports.version = "19.1.0-www-modern-8243f3f0-20250317"; diff --git a/compiled/facebook-www/ReactDOMServerStreaming-dev.modern.js b/compiled/facebook-www/ReactDOMServerStreaming-dev.modern.js index 4b5a131d9f..c899a21060 100644 --- a/compiled/facebook-www/ReactDOMServerStreaming-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServerStreaming-dev.modern.js @@ -3384,8 +3384,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -3409,6 +3407,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; diff --git a/compiled/facebook-www/ReactDOMServerStreaming-prod.modern.js b/compiled/facebook-www/ReactDOMServerStreaming-prod.modern.js index aa8b285345..3604197ccf 100644 --- a/compiled/facebook-www/ReactDOMServerStreaming-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServerStreaming-prod.modern.js @@ -2775,8 +2775,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -2794,6 +2792,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index 22042da9a9..897e0bb88e 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -1417,8 +1417,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1442,6 +1440,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -30487,11 +30487,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-df319522-20250317" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-8243f3f0-20250317" !== 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.1.0-www-classic-df319522-20250317\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-8243f3f0-20250317\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30534,10 +30534,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-df319522-20250317", + version: "19.1.0-www-classic-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -31301,5 +31301,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-df319522-20250317"; + exports.version = "19.1.0-www-classic-8243f3f0-20250317"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index c1ef78f7e5..00a321f436 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -1417,8 +1417,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1442,6 +1440,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -30273,11 +30273,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-df319522-20250317" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-8243f3f0-20250317" !== 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.1.0-www-modern-df319522-20250317\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-8243f3f0-20250317\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30320,10 +30320,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-df319522-20250317", + version: "19.1.0-www-modern-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -31087,5 +31087,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-df319522-20250317"; + exports.version = "19.1.0-www-modern-8243f3f0-20250317"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index 60feb0565a..1fc1442979 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -1071,8 +1071,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1090,6 +1088,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -19215,14 +19215,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1947 = React.version; if ( - "19.1.0-www-classic-df319522-20250317" !== + "19.1.0-www-classic-8243f3f0-20250317" !== isomorphicReactPackageVersion$jscomp$inline_1947 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1947, - "19.1.0-www-classic-df319522-20250317" + "19.1.0-www-classic-8243f3f0-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19240,10 +19240,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2541 = { bundleType: 0, - version: "19.1.0-www-classic-df319522-20250317", + version: "19.1.0-www-classic-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2542 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19758,4 +19758,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-df319522-20250317"; +exports.version = "19.1.0-www-classic-8243f3f0-20250317"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index deadfc3e3f..09ced17b3f 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -1069,8 +1069,6 @@ function getComponentNameFromType(type) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -1088,6 +1086,8 @@ function getComponentNameFromType(type) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -18944,14 +18944,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1937 = React.version; if ( - "19.1.0-www-modern-df319522-20250317" !== + "19.1.0-www-modern-8243f3f0-20250317" !== isomorphicReactPackageVersion$jscomp$inline_1937 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1937, - "19.1.0-www-modern-df319522-20250317" + "19.1.0-www-modern-8243f3f0-20250317" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18969,10 +18969,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2523 = { bundleType: 0, - version: "19.1.0-www-modern-df319522-20250317", + version: "19.1.0-www-modern-8243f3f0-20250317", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2524 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19487,4 +19487,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-df319522-20250317"; +exports.version = "19.1.0-www-modern-8243f3f0-20250317"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index ab933131e6..8cb291111d 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -270,8 +270,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -295,6 +293,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -21233,7 +21233,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index a790b28ca2..f6d6961447 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -270,8 +270,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -295,6 +293,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -21014,7 +21014,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index 423c0bc17d..5a07834c89 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -175,8 +175,6 @@ module.exports = function ($$$config) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -194,6 +192,8 @@ module.exports = function ($$$config) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -13939,7 +13939,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index a2933f218a..9f9fbe4f4a 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -175,8 +175,6 @@ module.exports = function ($$$config) { switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -194,6 +192,8 @@ module.exports = function ($$$config) { } if ("object" === typeof type) switch (type.$$typeof) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: if (enableRenderableContext) break; else return (type._context.displayName || "Context") + ".Provider"; @@ -13656,7 +13656,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 45636f61b0..8a2754e56d 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -273,8 +273,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -294,6 +292,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: return (type._context.displayName || "Context") + ".Provider"; case REACT_CONTEXT_TYPE: @@ -15075,10 +15075,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-df319522-20250317", + version: "19.1.0-www-classic-8243f3f0-20250317", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-df319522-20250317" + reconcilerVersion: "19.1.0-www-classic-8243f3f0-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15213,5 +15213,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-classic-df319522-20250317"; + exports.version = "19.1.0-www-classic-8243f3f0-20250317"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index 574a9796c1..897969e312 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -273,8 +273,6 @@ __DEV__ && switch (type) { case REACT_FRAGMENT_TYPE: return "Fragment"; - case REACT_PORTAL_TYPE: - return "Portal"; case REACT_PROFILER_TYPE: return "Profiler"; case REACT_STRICT_MODE_TYPE: @@ -294,6 +292,8 @@ __DEV__ && ), type.$$typeof) ) { + case REACT_PORTAL_TYPE: + return "Portal"; case REACT_PROVIDER_TYPE: return (type._context.displayName || "Context") + ".Provider"; case REACT_CONTEXT_TYPE: @@ -15075,10 +15075,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-df319522-20250317", + version: "19.1.0-www-modern-8243f3f0-20250317", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-df319522-20250317" + reconcilerVersion: "19.1.0-www-modern-8243f3f0-20250317" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15213,5 +15213,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-modern-df319522-20250317"; + exports.version = "19.1.0-www-modern-8243f3f0-20250317"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index 5bc34ebae1..2c31f9cd17 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.1.0-www-classic-df319522-20250317 \ No newline at end of file +19.1.0-www-classic-8243f3f0-20250317 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index c97489d3b9..951a255e3d 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.1.0-www-modern-df319522-20250317 \ No newline at end of file +19.1.0-www-modern-8243f3f0-20250317 \ No newline at end of file