diff --git a/compiled/eslint-plugin-react-hooks/index.js b/compiled/eslint-plugin-react-hooks/index.js index 0ff1baef0d..31b12b6be1 100644 --- a/compiled/eslint-plugin-react-hooks/index.js +++ b/compiled/eslint-plugin-react-hooks/index.js @@ -31354,6 +31354,19 @@ function lowerExpression(builder, exprPath) { kind: 'TypeCastExpression', value: lowerExpressionToTemporary(builder, expr.get('expression')), typeAnnotation: typeAnnotation.node, + typeAnnotationKind: 'cast', + type: lowerType(typeAnnotation.node), + loc: exprLoc, + }; + } + case 'TSSatisfiesExpression': { + let expr = exprPath; + const typeAnnotation = expr.get('typeAnnotation'); + return { + kind: 'TypeCastExpression', + value: lowerExpressionToTemporary(builder, expr.get('expression')), + typeAnnotation: typeAnnotation.node, + typeAnnotationKind: 'satisfies', type: lowerType(typeAnnotation.node), loc: exprLoc, }; @@ -31365,6 +31378,7 @@ function lowerExpression(builder, exprPath) { kind: 'TypeCastExpression', value: lowerExpressionToTemporary(builder, expr.get('expression')), typeAnnotation: typeAnnotation.node, + typeAnnotationKind: 'as', type: lowerType(typeAnnotation.node), loc: exprLoc, }; @@ -43346,7 +43360,12 @@ function codegenInstructionValue(cx, instrValue) { } case 'TypeCastExpression': { if (libExports.isTSType(instrValue.typeAnnotation)) { - value = libExports.tsAsExpression(codegenPlaceToExpression(cx, instrValue.value), instrValue.typeAnnotation); + if (instrValue.typeAnnotationKind === 'satisfies') { + value = libExports.tsSatisfiesExpression(codegenPlaceToExpression(cx, instrValue.value), instrValue.typeAnnotation); + } + else { + value = libExports.tsAsExpression(codegenPlaceToExpression(cx, instrValue.value), instrValue.typeAnnotation); + } } else { value = libExports.typeCastExpression(codegenPlaceToExpression(cx, instrValue.value), libExports.typeAnnotation(instrValue.typeAnnotation)); diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index bc92913e64..96a2f4753a 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -8039f1b2a05d00437cd29707761aeae098c80adc +ef4bc8b4f91023afac437be9179beef350b32db3 diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index bc92913e64..96a2f4753a 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -8039f1b2a05d00437cd29707761aeae098c80adc +ef4bc8b4f91023afac437be9179beef350b32db3 diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index 41f10fb61e..0ce56b8571 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -1511,7 +1511,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-classic-8039f1b2-20250327"; + exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; "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 a1198cc588..a59f965ba0 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1511,7 +1511,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-modern-8039f1b2-20250327"; + exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; "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 888af43d7b..bc2e318cc6 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -624,4 +624,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-8039f1b2-20250327"; +exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 006ec70f1a..c4f321d0e8 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -624,4 +624,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-8039f1b2-20250327"; +exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index 2a395c9829..4e6ab3ebd0 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -628,7 +628,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-classic-8039f1b2-20250327"; +exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; "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 5e0029b8ee..8851e83a7d 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -628,7 +628,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.1.0-www-modern-8039f1b2-20250327"; +exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; "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 0710a21092..a59e737c9d 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -18200,10 +18200,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-8039f1b2-20250327", + version: "19.1.0-www-classic-ef4bc8b4-20250328", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18237,7 +18237,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-classic-8039f1b2-20250327"; + exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; "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 45b02ddd0a..cdaf6ca67e 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -17972,10 +17972,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-8039f1b2-20250327", + version: "19.1.0-www-modern-ef4bc8b4-20250328", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18009,7 +18009,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-modern-8039f1b2-20250327"; + exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; "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 c0a3fd78f7..d146208f10 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -11152,10 +11152,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1582 = { bundleType: 0, - version: "19.1.0-www-classic-8039f1b2-20250327", + version: "19.1.0-www-classic-ef4bc8b4-20250328", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1583 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11181,4 +11181,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-classic-8039f1b2-20250327"; +exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 38a03885d9..3457ba1eb7 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -10865,10 +10865,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1555 = { bundleType: 0, - version: "19.1.0-www-modern-8039f1b2-20250327", + version: "19.1.0-www-modern-ef4bc8b4-20250328", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1556 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -10894,4 +10894,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-modern-8039f1b2-20250327"; +exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index d3266fae4d..ca10916766 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -29918,11 +29918,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-8039f1b2-20250327" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-ef4bc8b4-20250328" !== 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-8039f1b2-20250327\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-ef4bc8b4-20250328\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -29965,10 +29965,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-8039f1b2-20250327", + version: "19.1.0-www-classic-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30566,7 +30566,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-8039f1b2-20250327"; + exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; "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 501229e22a..1454446fb7 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -29704,11 +29704,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-8039f1b2-20250327" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-ef4bc8b4-20250328" !== 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-8039f1b2-20250327\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-ef4bc8b4-20250328\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -29751,10 +29751,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-8039f1b2-20250327", + version: "19.1.0-www-modern-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30352,7 +30352,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-8039f1b2-20250327"; + exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; "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 99ffaafe5f..b446e32f3d 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -18807,14 +18807,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1974 = React.version; if ( - "19.1.0-www-classic-8039f1b2-20250327" !== + "19.1.0-www-classic-ef4bc8b4-20250328" !== isomorphicReactPackageVersion$jscomp$inline_1974 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1974, - "19.1.0-www-classic-8039f1b2-20250327" + "19.1.0-www-classic-ef4bc8b4-20250328" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18832,10 +18832,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2558 = { bundleType: 0, - version: "19.1.0-www-classic-8039f1b2-20250327", + version: "19.1.0-www-classic-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2559 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19199,4 +19199,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-8039f1b2-20250327"; +exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index 86bb01d6be..993a2628a4 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -18536,14 +18536,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1964 = React.version; if ( - "19.1.0-www-modern-8039f1b2-20250327" !== + "19.1.0-www-modern-ef4bc8b4-20250328" !== isomorphicReactPackageVersion$jscomp$inline_1964 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1964, - "19.1.0-www-modern-8039f1b2-20250327" + "19.1.0-www-modern-ef4bc8b4-20250328" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18561,10 +18561,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2540 = { bundleType: 0, - version: "19.1.0-www-modern-8039f1b2-20250327", + version: "19.1.0-www-modern-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2541 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -18928,4 +18928,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-8039f1b2-20250327"; +exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index fe616c1dce..258ee52562 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -20540,14 +20540,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2134 = React.version; if ( - "19.1.0-www-classic-8039f1b2-20250327" !== + "19.1.0-www-classic-ef4bc8b4-20250328" !== isomorphicReactPackageVersion$jscomp$inline_2134 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2134, - "19.1.0-www-classic-8039f1b2-20250327" + "19.1.0-www-classic-ef4bc8b4-20250328" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20565,10 +20565,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2136 = { bundleType: 0, - version: "19.1.0-www-classic-8039f1b2-20250327", + version: "19.1.0-www-classic-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; enableSchedulingProfiler && ((internals$jscomp$inline_2136.getLaneLabelMap = getLaneLabelMap), @@ -20935,7 +20935,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-8039f1b2-20250327"; +exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; "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 fcd73b5440..e91eeaa2fe 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -20338,14 +20338,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2124 = React.version; if ( - "19.1.0-www-modern-8039f1b2-20250327" !== + "19.1.0-www-modern-ef4bc8b4-20250328" !== isomorphicReactPackageVersion$jscomp$inline_2124 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2124, - "19.1.0-www-modern-8039f1b2-20250327" + "19.1.0-www-modern-ef4bc8b4-20250328" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20363,10 +20363,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2126 = { bundleType: 0, - version: "19.1.0-www-modern-8039f1b2-20250327", + version: "19.1.0-www-modern-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; enableSchedulingProfiler && ((internals$jscomp$inline_2126.getLaneLabelMap = getLaneLabelMap), @@ -20733,7 +20733,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-8039f1b2-20250327"; +exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; "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 081502d3cd..d0c15db812 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -9440,5 +9440,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-8039f1b2-20250327"; + exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index d12a9d234a..445a8bc3c9 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -9369,5 +9369,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-8039f1b2-20250327"; + exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index ff1653a6a6..e6722634ea 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -6203,4 +6203,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-8039f1b2-20250327"; +exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index 5684c8a68d..5ea5b8f768 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -6115,4 +6115,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-8039f1b2-20250327"; +exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index d51ac39263..60e5670e59 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -30239,11 +30239,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-8039f1b2-20250327" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-ef4bc8b4-20250328" !== 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-8039f1b2-20250327\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-ef4bc8b4-20250328\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30286,10 +30286,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-8039f1b2-20250327", + version: "19.1.0-www-classic-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -31053,5 +31053,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-8039f1b2-20250327"; + exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index bff7bf22ec..4630cef1c2 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -30025,11 +30025,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-8039f1b2-20250327" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-ef4bc8b4-20250328" !== 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-8039f1b2-20250327\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-ef4bc8b4-20250328\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30072,10 +30072,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-8039f1b2-20250327", + version: "19.1.0-www-modern-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30839,5 +30839,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-8039f1b2-20250327"; + exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index 68db216783..5ad7577336 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -19123,14 +19123,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2003 = React.version; if ( - "19.1.0-www-classic-8039f1b2-20250327" !== + "19.1.0-www-classic-ef4bc8b4-20250328" !== isomorphicReactPackageVersion$jscomp$inline_2003 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2003, - "19.1.0-www-classic-8039f1b2-20250327" + "19.1.0-www-classic-ef4bc8b4-20250328" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19148,10 +19148,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2592 = { bundleType: 0, - version: "19.1.0-www-classic-8039f1b2-20250327", + version: "19.1.0-www-classic-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2593 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19666,4 +19666,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-8039f1b2-20250327"; +exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index a26526e37b..c6a08fda47 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -18852,14 +18852,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1993 = React.version; if ( - "19.1.0-www-modern-8039f1b2-20250327" !== + "19.1.0-www-modern-ef4bc8b4-20250328" !== isomorphicReactPackageVersion$jscomp$inline_1993 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1993, - "19.1.0-www-modern-8039f1b2-20250327" + "19.1.0-www-modern-ef4bc8b4-20250328" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18877,10 +18877,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2574 = { bundleType: 0, - version: "19.1.0-www-modern-8039f1b2-20250327", + version: "19.1.0-www-modern-ef4bc8b4-20250328", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2575 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19395,4 +19395,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-8039f1b2-20250327"; +exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index 4f1be7b985..a4fd739cdc 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -20845,7 +20845,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index c148b1b249..a4a81243ee 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -20626,7 +20626,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index d10af949ed..52e7af4f61 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -13701,7 +13701,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index 71b4a8a4ac..69587ac5fd 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -13418,7 +13418,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index f341c701d1..17bfb3cfee 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15031,10 +15031,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-8039f1b2-20250327", + version: "19.1.0-www-classic-ef4bc8b4-20250328", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-classic-ef4bc8b4-20250328" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15169,5 +15169,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-classic-8039f1b2-20250327"; + exports.version = "19.1.0-www-classic-ef4bc8b4-20250328"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index cc98bc6dbe..b3ce2f1ef0 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15031,10 +15031,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-8039f1b2-20250327", + version: "19.1.0-www-modern-ef4bc8b4-20250328", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-8039f1b2-20250327" + reconcilerVersion: "19.1.0-www-modern-ef4bc8b4-20250328" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15169,5 +15169,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.1.0-www-modern-8039f1b2-20250327"; + exports.version = "19.1.0-www-modern-ef4bc8b4-20250328"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index 6173aaf86f..df711c8f1d 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.1.0-www-classic-8039f1b2-20250327 \ No newline at end of file +19.1.0-www-classic-ef4bc8b4-20250328 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index e82787c569..c685cc7e4b 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.1.0-www-modern-8039f1b2-20250327 \ No newline at end of file +19.1.0-www-modern-ef4bc8b4-20250328 \ No newline at end of file