From 02b8f6c26b0eae912feb65edcc02d0a2fa650fac Mon Sep 17 00:00:00 2001 From: rickhanlonii <2440089+rickhanlonii@users.noreply.github.com> Date: Wed, 5 Feb 2025 15:37:59 -0800 Subject: [PATCH] Export addTransitionType for www (#32311) need dis based api DiffTrain build for [ff6283340a10bb72ad0fb16ca027606a9ea1e67c](https://github.com/facebook/react/commit/ff6283340a10bb72ad0fb16ca027606a9ea1e67c) --- compiled/facebook-www/REVISION | 2 +- compiled/facebook-www/REVISION_TRANSFORMS | 2 +- compiled/facebook-www/React-dev.classic.js | 9 ++++++++- compiled/facebook-www/React-dev.modern.js | 9 ++++++++- compiled/facebook-www/React-prod.classic.js | 9 ++++++++- compiled/facebook-www/React-prod.modern.js | 9 ++++++++- compiled/facebook-www/React-profiling.classic.js | 9 ++++++++- compiled/facebook-www/React-profiling.modern.js | 9 ++++++++- compiled/facebook-www/ReactART-dev.classic.js | 6 +++--- compiled/facebook-www/ReactART-dev.modern.js | 6 +++--- compiled/facebook-www/ReactART-prod.classic.js | 6 +++--- compiled/facebook-www/ReactART-prod.modern.js | 6 +++--- compiled/facebook-www/ReactDOM-dev.classic.js | 10 +++++----- compiled/facebook-www/ReactDOM-dev.modern.js | 10 +++++----- compiled/facebook-www/ReactDOM-prod.classic.js | 10 +++++----- compiled/facebook-www/ReactDOM-prod.modern.js | 10 +++++----- compiled/facebook-www/ReactDOM-profiling.classic.js | 10 +++++----- compiled/facebook-www/ReactDOM-profiling.modern.js | 10 +++++----- compiled/facebook-www/ReactDOMServer-dev.classic.js | 2 +- compiled/facebook-www/ReactDOMServer-dev.modern.js | 2 +- compiled/facebook-www/ReactDOMServer-prod.classic.js | 2 +- compiled/facebook-www/ReactDOMServer-prod.modern.js | 2 +- compiled/facebook-www/ReactDOMTesting-dev.classic.js | 10 +++++----- compiled/facebook-www/ReactDOMTesting-dev.modern.js | 10 +++++----- compiled/facebook-www/ReactDOMTesting-prod.classic.js | 10 +++++----- compiled/facebook-www/ReactDOMTesting-prod.modern.js | 10 +++++----- compiled/facebook-www/ReactReconciler-dev.classic.js | 2 +- compiled/facebook-www/ReactReconciler-dev.modern.js | 2 +- compiled/facebook-www/ReactReconciler-prod.classic.js | 2 +- compiled/facebook-www/ReactReconciler-prod.modern.js | 2 +- compiled/facebook-www/ReactTestRenderer-dev.classic.js | 6 +++--- compiled/facebook-www/ReactTestRenderer-dev.modern.js | 6 +++--- compiled/facebook-www/VERSION_CLASSIC | 2 +- compiled/facebook-www/VERSION_MODERN | 2 +- 34 files changed, 128 insertions(+), 86 deletions(-) diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 10afa4b350..94368cde9f 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -32b411496b92455cede3b286eb37c8b183989051 +ff6283340a10bb72ad0fb16ca027606a9ea1e67c diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 10afa4b350..94368cde9f 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -32b411496b92455cede3b286eb37c8b183989051 +ff6283340a10bb72ad0fb16ca027606a9ea1e67c diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index 899970bdc3..0e993c41f7 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -1884,6 +1884,13 @@ __DEV__ && exports.unstable_SuspenseList = REACT_SUSPENSE_LIST_TYPE; exports.unstable_TracingMarker = REACT_TRACING_MARKER_TYPE; exports.unstable_ViewTransition = REACT_VIEW_TRANSITION_TYPE; + exports.unstable_addTransitionType = function (type) { + var pendingTransitionTypes = ReactSharedInternals.V; + null === pendingTransitionTypes + ? (ReactSharedInternals.V = [type]) + : -1 === pendingTransitionTypes.indexOf(type) && + pendingTransitionTypes.push(type); + }; exports.unstable_getCacheForType = function (resourceType) { var dispatcher = ReactSharedInternals.A; return dispatcher @@ -1965,7 +1972,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-classic-32b41149-20250204"; + exports.version = "19.1.0-www-classic-ff628334-20250205"; "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 b6878c1e43..3cc6566b6f 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1884,6 +1884,13 @@ __DEV__ && exports.unstable_SuspenseList = REACT_SUSPENSE_LIST_TYPE; exports.unstable_TracingMarker = REACT_TRACING_MARKER_TYPE; exports.unstable_ViewTransition = REACT_VIEW_TRANSITION_TYPE; + exports.unstable_addTransitionType = function (type) { + var pendingTransitionTypes = ReactSharedInternals.V; + null === pendingTransitionTypes + ? (ReactSharedInternals.V = [type]) + : -1 === pendingTransitionTypes.indexOf(type) && + pendingTransitionTypes.push(type); + }; exports.unstable_getCacheForType = function (resourceType) { var dispatcher = ReactSharedInternals.A; return dispatcher @@ -1965,7 +1972,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-modern-32b41149-20250204"; + exports.version = "19.1.0-www-modern-ff628334-20250205"; "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 4ab5980cdc..517d449c9a 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -564,6 +564,13 @@ exports.unstable_Scope = REACT_SCOPE_TYPE; exports.unstable_SuspenseList = REACT_SUSPENSE_LIST_TYPE; exports.unstable_TracingMarker = REACT_TRACING_MARKER_TYPE; exports.unstable_ViewTransition = REACT_VIEW_TRANSITION_TYPE; +exports.unstable_addTransitionType = function (type) { + var pendingTransitionTypes = ReactSharedInternals.V; + null === pendingTransitionTypes + ? (ReactSharedInternals.V = [type]) + : -1 === pendingTransitionTypes.indexOf(type) && + pendingTransitionTypes.push(type); +}; exports.unstable_getCacheForType = function (resourceType) { var dispatcher = ReactSharedInternals.A; return dispatcher ? dispatcher.getCacheForType(resourceType) : resourceType(); @@ -632,4 +639,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-32b41149-20250204"; +exports.version = "19.1.0-www-classic-ff628334-20250205"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index ce06d6d64e..49caf9b864 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -564,6 +564,13 @@ exports.unstable_Scope = REACT_SCOPE_TYPE; exports.unstable_SuspenseList = REACT_SUSPENSE_LIST_TYPE; exports.unstable_TracingMarker = REACT_TRACING_MARKER_TYPE; exports.unstable_ViewTransition = REACT_VIEW_TRANSITION_TYPE; +exports.unstable_addTransitionType = function (type) { + var pendingTransitionTypes = ReactSharedInternals.V; + null === pendingTransitionTypes + ? (ReactSharedInternals.V = [type]) + : -1 === pendingTransitionTypes.indexOf(type) && + pendingTransitionTypes.push(type); +}; exports.unstable_getCacheForType = function (resourceType) { var dispatcher = ReactSharedInternals.A; return dispatcher ? dispatcher.getCacheForType(resourceType) : resourceType(); @@ -632,4 +639,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-32b41149-20250204"; +exports.version = "19.1.0-www-modern-ff628334-20250205"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index 48459083dd..bdad9cd900 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -568,6 +568,13 @@ exports.unstable_Scope = REACT_SCOPE_TYPE; exports.unstable_SuspenseList = REACT_SUSPENSE_LIST_TYPE; exports.unstable_TracingMarker = REACT_TRACING_MARKER_TYPE; exports.unstable_ViewTransition = REACT_VIEW_TRANSITION_TYPE; +exports.unstable_addTransitionType = function (type) { + var pendingTransitionTypes = ReactSharedInternals.V; + null === pendingTransitionTypes + ? (ReactSharedInternals.V = [type]) + : -1 === pendingTransitionTypes.indexOf(type) && + pendingTransitionTypes.push(type); +}; exports.unstable_getCacheForType = function (resourceType) { var dispatcher = ReactSharedInternals.A; return dispatcher ? dispatcher.getCacheForType(resourceType) : resourceType(); @@ -636,7 +643,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-32b41149-20250204"; +exports.version = "19.1.0-www-classic-ff628334-20250205"; "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 55ecd74060..e2c790b65e 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -568,6 +568,13 @@ exports.unstable_Scope = REACT_SCOPE_TYPE; exports.unstable_SuspenseList = REACT_SUSPENSE_LIST_TYPE; exports.unstable_TracingMarker = REACT_TRACING_MARKER_TYPE; exports.unstable_ViewTransition = REACT_VIEW_TRANSITION_TYPE; +exports.unstable_addTransitionType = function (type) { + var pendingTransitionTypes = ReactSharedInternals.V; + null === pendingTransitionTypes + ? (ReactSharedInternals.V = [type]) + : -1 === pendingTransitionTypes.indexOf(type) && + pendingTransitionTypes.push(type); +}; exports.unstable_getCacheForType = function (resourceType) { var dispatcher = ReactSharedInternals.A; return dispatcher ? dispatcher.getCacheForType(resourceType) : resourceType(); @@ -636,7 +643,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-32b41149-20250204"; +exports.version = "19.1.0-www-modern-ff628334-20250205"; "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 6956a64f15..6f1b55171f 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -17417,10 +17417,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-32b41149-20250204", + version: "19.1.0-www-classic-ff628334-20250205", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -17454,7 +17454,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-classic-32b41149-20250204"; + exports.version = "19.1.0-www-classic-ff628334-20250205"; "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 d9e2de8991..7bad72d535 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -17189,10 +17189,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-32b41149-20250204", + version: "19.1.0-www-modern-ff628334-20250205", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -17226,7 +17226,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-modern-32b41149-20250204"; + exports.version = "19.1.0-www-modern-ff628334-20250205"; "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 7e1ff45443..c1419641fd 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -11275,10 +11275,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1567 = { bundleType: 0, - version: "19.1.0-www-classic-32b41149-20250204", + version: "19.1.0-www-classic-ff628334-20250205", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1568 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11304,4 +11304,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-classic-32b41149-20250204"; +exports.version = "19.1.0-www-classic-ff628334-20250205"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 6527d9e8a8..5fbd26dd72 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -10990,10 +10990,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1540 = { bundleType: 0, - version: "19.1.0-www-modern-32b41149-20250204", + version: "19.1.0-www-modern-ff628334-20250205", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1541 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11019,4 +11019,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-modern-32b41149-20250204"; +exports.version = "19.1.0-www-modern-ff628334-20250205"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index 86fb803df7..b8eaff6c13 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -28615,11 +28615,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-32b41149-20250204" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-ff628334-20250205" !== 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-32b41149-20250204\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-ff628334-20250205\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -28662,10 +28662,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-32b41149-20250204", + version: "19.1.0-www-classic-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -29263,7 +29263,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-32b41149-20250204"; + exports.version = "19.1.0-www-classic-ff628334-20250205"; "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 92588a5a19..1930ece9d5 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -28401,11 +28401,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-32b41149-20250204" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-ff628334-20250205" !== 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-32b41149-20250204\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-ff628334-20250205\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -28448,10 +28448,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-32b41149-20250204", + version: "19.1.0-www-modern-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -29049,7 +29049,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-32b41149-20250204"; + exports.version = "19.1.0-www-modern-ff628334-20250205"; "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 b27ee3e333..28fadfd92e 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -18440,14 +18440,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1871 = React.version; if ( - "19.1.0-www-classic-32b41149-20250204" !== + "19.1.0-www-classic-ff628334-20250205" !== isomorphicReactPackageVersion$jscomp$inline_1871 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1871, - "19.1.0-www-classic-32b41149-20250204" + "19.1.0-www-classic-ff628334-20250205" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18465,10 +18465,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2431 = { bundleType: 0, - version: "19.1.0-www-classic-32b41149-20250204", + version: "19.1.0-www-classic-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2432 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -18832,4 +18832,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-32b41149-20250204"; +exports.version = "19.1.0-www-classic-ff628334-20250205"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index de6d675338..916eb7ae9c 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -18171,14 +18171,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1861 = React.version; if ( - "19.1.0-www-modern-32b41149-20250204" !== + "19.1.0-www-modern-ff628334-20250205" !== isomorphicReactPackageVersion$jscomp$inline_1861 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1861, - "19.1.0-www-modern-32b41149-20250204" + "19.1.0-www-modern-ff628334-20250205" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18196,10 +18196,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2413 = { bundleType: 0, - version: "19.1.0-www-modern-32b41149-20250204", + version: "19.1.0-www-modern-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2414 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -18563,4 +18563,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-32b41149-20250204"; +exports.version = "19.1.0-www-modern-ff628334-20250205"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index 7e0e338ae0..0f3884afd0 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -19131,14 +19131,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1968 = React.version; if ( - "19.1.0-www-classic-32b41149-20250204" !== + "19.1.0-www-classic-ff628334-20250205" !== isomorphicReactPackageVersion$jscomp$inline_1968 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1968, - "19.1.0-www-classic-32b41149-20250204" + "19.1.0-www-classic-ff628334-20250205" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19156,10 +19156,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_1970 = { bundleType: 0, - version: "19.1.0-www-classic-32b41149-20250204", + version: "19.1.0-www-classic-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; enableSchedulingProfiler && ((internals$jscomp$inline_1970.getLaneLabelMap = getLaneLabelMap), @@ -19526,7 +19526,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-32b41149-20250204"; +exports.version = "19.1.0-www-classic-ff628334-20250205"; "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 fef67c535d..d7f8f401bc 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -18861,14 +18861,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1958 = React.version; if ( - "19.1.0-www-modern-32b41149-20250204" !== + "19.1.0-www-modern-ff628334-20250205" !== isomorphicReactPackageVersion$jscomp$inline_1958 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1958, - "19.1.0-www-modern-32b41149-20250204" + "19.1.0-www-modern-ff628334-20250205" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18886,10 +18886,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_1960 = { bundleType: 0, - version: "19.1.0-www-modern-32b41149-20250204", + version: "19.1.0-www-modern-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; enableSchedulingProfiler && ((internals$jscomp$inline_1960.getLaneLabelMap = getLaneLabelMap), @@ -19256,7 +19256,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-32b41149-20250204"; +exports.version = "19.1.0-www-modern-ff628334-20250205"; "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 1fed26f42a..9b4a07cc50 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -9479,5 +9479,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-32b41149-20250204"; + exports.version = "19.1.0-www-classic-ff628334-20250205"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index 0f3ddc3ec7..5929554115 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -9305,5 +9305,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-32b41149-20250204"; + exports.version = "19.1.0-www-modern-ff628334-20250205"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index eeec89a590..a3a423944b 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -6194,4 +6194,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-32b41149-20250204"; +exports.version = "19.1.0-www-classic-ff628334-20250205"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index bb98387a23..3df5641ee0 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -6106,4 +6106,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-32b41149-20250204"; +exports.version = "19.1.0-www-modern-ff628334-20250205"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index a5ebce8f5e..eb859aeba6 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -28949,11 +28949,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-32b41149-20250204" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-ff628334-20250205" !== 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-32b41149-20250204\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-ff628334-20250205\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -28996,10 +28996,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-32b41149-20250204", + version: "19.1.0-www-classic-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -29763,5 +29763,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-32b41149-20250204"; + exports.version = "19.1.0-www-classic-ff628334-20250205"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index 6a293e2990..b1aa10b94d 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -28735,11 +28735,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-32b41149-20250204" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-ff628334-20250205" !== 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-32b41149-20250204\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-ff628334-20250205\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -28782,10 +28782,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-32b41149-20250204", + version: "19.1.0-www-modern-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -29549,5 +29549,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-32b41149-20250204"; + exports.version = "19.1.0-www-modern-ff628334-20250205"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index 5d9a60fe9e..5a83e6f0e2 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -18769,14 +18769,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1900 = React.version; if ( - "19.1.0-www-classic-32b41149-20250204" !== + "19.1.0-www-classic-ff628334-20250205" !== isomorphicReactPackageVersion$jscomp$inline_1900 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1900, - "19.1.0-www-classic-32b41149-20250204" + "19.1.0-www-classic-ff628334-20250205" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18794,10 +18794,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2465 = { bundleType: 0, - version: "19.1.0-www-classic-32b41149-20250204", + version: "19.1.0-www-classic-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2466 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19312,4 +19312,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-32b41149-20250204"; +exports.version = "19.1.0-www-classic-ff628334-20250205"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index e348bad449..f972c67dab 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -18500,14 +18500,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1890 = React.version; if ( - "19.1.0-www-modern-32b41149-20250204" !== + "19.1.0-www-modern-ff628334-20250205" !== isomorphicReactPackageVersion$jscomp$inline_1890 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1890, - "19.1.0-www-modern-32b41149-20250204" + "19.1.0-www-modern-ff628334-20250205" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18525,10 +18525,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2447 = { bundleType: 0, - version: "19.1.0-www-modern-32b41149-20250204", + version: "19.1.0-www-modern-ff628334-20250205", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2448 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19043,4 +19043,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-32b41149-20250204"; +exports.version = "19.1.0-www-modern-ff628334-20250205"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index a4ac4fc2de..9befe96991 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -20047,7 +20047,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index a97b09b7af..95bafda1a5 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -19828,7 +19828,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index fd6150c42b..4ca5596831 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -13764,7 +13764,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index d447c73206..52d72c5e92 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -13483,7 +13483,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 60d7b9b66e..4e0da8c74a 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -14991,10 +14991,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-32b41149-20250204", + version: "19.1.0-www-classic-ff628334-20250205", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-32b41149-20250204" + reconcilerVersion: "19.1.0-www-classic-ff628334-20250205" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15129,5 +15129,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-classic-32b41149-20250204"; + exports.version = "19.1.0-www-classic-ff628334-20250205"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index 827a5cf4f3..09e53e7d0e 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -14991,10 +14991,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-32b41149-20250204", + version: "19.1.0-www-modern-ff628334-20250205", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-32b41149-20250204" + reconcilerVersion: "19.1.0-www-modern-ff628334-20250205" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15129,5 +15129,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-modern-32b41149-20250204"; + exports.version = "19.1.0-www-modern-ff628334-20250205"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index 49d6ddb6a5..ab28b36c5e 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.1.0-www-classic-32b41149-20250204 \ No newline at end of file +19.1.0-www-classic-ff628334-20250205 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index 1e564a0860..d52b8cc061 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.1.0-www-modern-32b41149-20250204 \ No newline at end of file +19.1.0-www-modern-ff628334-20250205 \ No newline at end of file