diff --git a/compiled/eslint-plugin-react-hooks/index.js b/compiled/eslint-plugin-react-hooks/index.js index 76af7317f6..ff09c5be86 100644 --- a/compiled/eslint-plugin-react-hooks/index.js +++ b/compiled/eslint-plugin-react-hooks/index.js @@ -41898,7 +41898,7 @@ function codegenFunction(fn, { uniqueIdentifiers, fbtOperands, }) { } const compiled = compileResult.unwrap(); const hookGuard = fn.env.config.enableEmitHookGuards; - if (hookGuard != null) { + if (hookGuard != null && fn.env.isInferredMemoEnabled) { compiled.body = libExports.blockStatement([ createHookGuard(hookGuard, compiled.body.body, GuardKind.PushHookGuard, GuardKind.PopHookGuard), ]); @@ -41925,7 +41925,9 @@ function codegenFunction(fn, { uniqueIdentifiers, fbtOperands, }) { compiled.body.body.unshift(...preface); } const emitInstrumentForget = fn.env.config.enableEmitInstrumentForget; - if (emitInstrumentForget != null && fn.id != null) { + if (emitInstrumentForget != null && + fn.id != null && + fn.env.isInferredMemoEnabled) { let gating; if (emitInstrumentForget.gating != null && emitInstrumentForget.globalGating != null) { @@ -42136,7 +42138,7 @@ function codegenBlockNoReset(cx, block) { return libExports.blockStatement(statements); } function wrapCacheDep(cx, value) { - if (cx.env.config.enableEmitFreeze != null) { + if (cx.env.config.enableEmitFreeze != null && cx.env.isInferredMemoEnabled) { return libExports.conditionalExpression(libExports.identifier('true'), libExports.callExpression(libExports.identifier(cx.env.config.enableEmitFreeze.importSpecifierName), [value, libExports.stringLiteral(cx.fnName)]), value); } else { @@ -42826,13 +42828,13 @@ function createHookGuard(guard, stmts, before, after) { } return libExports.tryStatement(libExports.blockStatement([createHookGuardImpl(before), ...stmts]), null, libExports.blockStatement([createHookGuardImpl(after)])); } -function createCallExpression(config, callee, args, loc, isHook) { +function createCallExpression(env, callee, args, loc, isHook) { const callExpr = libExports.callExpression(callee, args); if (loc != null && loc != GeneratedSource) { callExpr.loc = loc; } - const hookGuard = config.enableEmitHookGuards; - if (hookGuard != null && isHook) { + const hookGuard = env.config.enableEmitHookGuards; + if (hookGuard != null && isHook && env.isInferredMemoEnabled) { const iife = libExports.functionExpression(null, [], libExports.blockStatement([ createHookGuard(hookGuard, [libExports.returnStatement(callExpr)], GuardKind.AllowHook, GuardKind.DisallowHook), ])); @@ -42924,7 +42926,7 @@ function codegenInstructionValue(cx, instrValue) { const isHook = getHookKind(cx.env, instrValue.callee.identifier) != null; const callee = codegenPlaceToExpression(cx, instrValue.callee); const args = instrValue.args.map(arg => codegenArgument(cx, arg)); - value = createCallExpression(cx.env.config, callee, args, instrValue.loc, isHook); + value = createCallExpression(cx.env, callee, args, instrValue.loc, isHook); break; } case 'OptionalExpression': { @@ -42983,7 +42985,7 @@ function codegenInstructionValue(cx, instrValue) { suggestions: null, }); const args = instrValue.args.map(arg => codegenArgument(cx, arg)); - value = createCallExpression(cx.env.config, memberExpr, args, instrValue.loc, isHook); + value = createCallExpression(cx.env, memberExpr, args, instrValue.loc, isHook); break; } case 'NewExpression': { @@ -54175,6 +54177,10 @@ function compileProgram(program, pass) { kind: 'compile', compiledFn: compileFn(fn, environment, fnType, 'no_inferred_memo', useMemoCacheIdentifier.name, pass.opts.logger, pass.filename, pass.code), }; + if (!compileResult.compiledFn.hasFireRewrite && + !compileResult.compiledFn.hasLoweredContextAccess) { + return null; + } } catch (err) { if (err instanceof CompilerError) { diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 0ebfeeb2a0..332e2dcc2e 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -b630219b1377f3117036b1c6118676c16fdb21b7 +0962f684a066df4fd2a7db7489cb1984799ad674 diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 0ebfeeb2a0..332e2dcc2e 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -b630219b1377f3117036b1c6118676c16fdb21b7 +0962f684a066df4fd2a7db7489cb1984799ad674 diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index 5d8cf6ae7a..24fb73c04f 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -1510,7 +1510,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-classic-b630219b-20250320"; + exports.version = "19.1.0-www-classic-0962f684-20250320"; "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 aa17309030..8bd6fba639 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1510,7 +1510,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.1.0-www-modern-b630219b-20250320"; + exports.version = "19.1.0-www-modern-0962f684-20250320"; "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 dc17ca3dcb..d95dab7ad5 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-b630219b-20250320"; +exports.version = "19.1.0-www-classic-0962f684-20250320"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 881a0e1563..12f903c524 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-b630219b-20250320"; +exports.version = "19.1.0-www-modern-0962f684-20250320"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index 8b1898600a..d7bfdc9fda 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-b630219b-20250320"; +exports.version = "19.1.0-www-classic-0962f684-20250320"; "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 e4bf4a676c..f8cbea10c7 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-b630219b-20250320"; +exports.version = "19.1.0-www-modern-0962f684-20250320"; "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 2ce74abb6d..524b87d64c 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -18529,10 +18529,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-b630219b-20250320", + version: "19.1.0-www-classic-0962f684-20250320", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18566,7 +18566,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-classic-b630219b-20250320"; + exports.version = "19.1.0-www-classic-0962f684-20250320"; "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 9257278eea..aefe3c9f80 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -18301,10 +18301,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-b630219b-20250320", + version: "19.1.0-www-modern-0962f684-20250320", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -18338,7 +18338,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.1.0-www-modern-b630219b-20250320"; + exports.version = "19.1.0-www-modern-0962f684-20250320"; "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 4a25993ed1..112ac0f888 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -11332,10 +11332,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1583 = { bundleType: 0, - version: "19.1.0-www-classic-b630219b-20250320", + version: "19.1.0-www-classic-0962f684-20250320", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1584 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11361,4 +11361,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-classic-b630219b-20250320"; +exports.version = "19.1.0-www-classic-0962f684-20250320"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 23a2623ebf..ba6afd11e4 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -11045,10 +11045,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1556 = { bundleType: 0, - version: "19.1.0-www-modern-b630219b-20250320", + version: "19.1.0-www-modern-0962f684-20250320", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1557 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11074,4 +11074,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.1.0-www-modern-b630219b-20250320"; +exports.version = "19.1.0-www-modern-0962f684-20250320"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index df7f9dab5e..af858e6190 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -30273,11 +30273,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-b630219b-20250320" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-0962f684-20250320" !== 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-b630219b-20250320\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-0962f684-20250320\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-classic-b630219b-20250320", + version: "19.1.0-www-classic-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30921,7 +30921,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-b630219b-20250320"; + exports.version = "19.1.0-www-classic-0962f684-20250320"; "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 12546738a6..f41fb4da07 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -30059,11 +30059,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-b630219b-20250320" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-0962f684-20250320" !== 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-b630219b-20250320\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-0962f684-20250320\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30106,10 +30106,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-b630219b-20250320", + version: "19.1.0-www-modern-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -30707,7 +30707,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-b630219b-20250320"; + exports.version = "19.1.0-www-modern-0962f684-20250320"; "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 e2feb4a7fd..6d5a56cef4 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -18997,14 +18997,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1971 = React.version; if ( - "19.1.0-www-classic-b630219b-20250320" !== + "19.1.0-www-classic-0962f684-20250320" !== isomorphicReactPackageVersion$jscomp$inline_1971 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1971, - "19.1.0-www-classic-b630219b-20250320" + "19.1.0-www-classic-0962f684-20250320" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19022,10 +19022,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2559 = { bundleType: 0, - version: "19.1.0-www-classic-b630219b-20250320", + version: "19.1.0-www-classic-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2560 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19389,4 +19389,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-b630219b-20250320"; +exports.version = "19.1.0-www-classic-0962f684-20250320"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index 5bb3814fa5..2a4792f99d 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -18726,14 +18726,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1961 = React.version; if ( - "19.1.0-www-modern-b630219b-20250320" !== + "19.1.0-www-modern-0962f684-20250320" !== isomorphicReactPackageVersion$jscomp$inline_1961 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1961, - "19.1.0-www-modern-b630219b-20250320" + "19.1.0-www-modern-0962f684-20250320" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -18751,10 +18751,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2541 = { bundleType: 0, - version: "19.1.0-www-modern-b630219b-20250320", + version: "19.1.0-www-modern-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2542 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19118,4 +19118,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-b630219b-20250320"; +exports.version = "19.1.0-www-modern-0962f684-20250320"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index ce07720f74..023b8e97a7 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -20739,14 +20739,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2131 = React.version; if ( - "19.1.0-www-classic-b630219b-20250320" !== + "19.1.0-www-classic-0962f684-20250320" !== isomorphicReactPackageVersion$jscomp$inline_2131 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2131, - "19.1.0-www-classic-b630219b-20250320" + "19.1.0-www-classic-0962f684-20250320" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20764,10 +20764,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2133 = { bundleType: 0, - version: "19.1.0-www-classic-b630219b-20250320", + version: "19.1.0-www-classic-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; enableSchedulingProfiler && ((internals$jscomp$inline_2133.getLaneLabelMap = getLaneLabelMap), @@ -21134,7 +21134,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-b630219b-20250320"; +exports.version = "19.1.0-www-classic-0962f684-20250320"; "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 b146a5f511..abf8280054 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -20537,14 +20537,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2121 = React.version; if ( - "19.1.0-www-modern-b630219b-20250320" !== + "19.1.0-www-modern-0962f684-20250320" !== isomorphicReactPackageVersion$jscomp$inline_2121 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2121, - "19.1.0-www-modern-b630219b-20250320" + "19.1.0-www-modern-0962f684-20250320" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20562,10 +20562,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2123 = { bundleType: 0, - version: "19.1.0-www-modern-b630219b-20250320", + version: "19.1.0-www-modern-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; enableSchedulingProfiler && ((internals$jscomp$inline_2123.getLaneLabelMap = getLaneLabelMap), @@ -20932,7 +20932,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-b630219b-20250320"; +exports.version = "19.1.0-www-modern-0962f684-20250320"; "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 916938dd77..2d88e2909a 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -9421,5 +9421,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-b630219b-20250320"; + exports.version = "19.1.0-www-classic-0962f684-20250320"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index e03b148d08..764871448c 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -9350,5 +9350,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-b630219b-20250320"; + exports.version = "19.1.0-www-modern-0962f684-20250320"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index cd7b3dc124..f43d70b8e5 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-b630219b-20250320"; +exports.version = "19.1.0-www-classic-0962f684-20250320"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index 2f5f6635db..f5422d0a0d 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-b630219b-20250320"; +exports.version = "19.1.0-www-modern-0962f684-20250320"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index 1244e4f7a4..dd6ac5a593 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -30594,11 +30594,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-classic-b630219b-20250320" !== isomorphicReactPackageVersion) + if ("19.1.0-www-classic-0962f684-20250320" !== 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-b630219b-20250320\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-classic-0962f684-20250320\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30641,10 +30641,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-b630219b-20250320", + version: "19.1.0-www-classic-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -31408,5 +31408,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-classic-b630219b-20250320"; + exports.version = "19.1.0-www-classic-0962f684-20250320"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index 9f00306681..e60e2dca7b 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -30380,11 +30380,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.1.0-www-modern-b630219b-20250320" !== isomorphicReactPackageVersion) + if ("19.1.0-www-modern-0962f684-20250320" !== 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-b630219b-20250320\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.1.0-www-modern-0962f684-20250320\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -30427,10 +30427,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-b630219b-20250320", + version: "19.1.0-www-modern-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -31194,5 +31194,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.1.0-www-modern-b630219b-20250320"; + exports.version = "19.1.0-www-modern-0962f684-20250320"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index f999a555f9..9fc80a9654 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -19313,14 +19313,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2000 = React.version; if ( - "19.1.0-www-classic-b630219b-20250320" !== + "19.1.0-www-classic-0962f684-20250320" !== isomorphicReactPackageVersion$jscomp$inline_2000 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2000, - "19.1.0-www-classic-b630219b-20250320" + "19.1.0-www-classic-0962f684-20250320" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19338,10 +19338,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2593 = { bundleType: 0, - version: "19.1.0-www-classic-b630219b-20250320", + version: "19.1.0-www-classic-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2594 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19856,4 +19856,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-classic-b630219b-20250320"; +exports.version = "19.1.0-www-classic-0962f684-20250320"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index 5c165d05ea..52a2d46091 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -19042,14 +19042,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_1990 = React.version; if ( - "19.1.0-www-modern-b630219b-20250320" !== + "19.1.0-www-modern-0962f684-20250320" !== isomorphicReactPackageVersion$jscomp$inline_1990 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_1990, - "19.1.0-www-modern-b630219b-20250320" + "19.1.0-www-modern-0962f684-20250320" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19067,10 +19067,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2575 = { bundleType: 0, - version: "19.1.0-www-modern-b630219b-20250320", + version: "19.1.0-www-modern-0962f684-20250320", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2576 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19585,4 +19585,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.1.0-www-modern-b630219b-20250320"; +exports.version = "19.1.0-www-modern-0962f684-20250320"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index 002e7a41d8..8bcc46a88a 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -21240,7 +21240,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index eb75fb96b5..6cead5513e 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -21021,7 +21021,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index f6559191fb..623746eae9 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -13939,7 +13939,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index aff18ef9a3..99cf9a1d26 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -13656,7 +13656,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index d92ee30157..46c94ec99d 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15075,10 +15075,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-classic-b630219b-20250320", + version: "19.1.0-www-classic-0962f684-20250320", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-classic-b630219b-20250320" + reconcilerVersion: "19.1.0-www-classic-0962f684-20250320" }; 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-b630219b-20250320"; + exports.version = "19.1.0-www-classic-0962f684-20250320"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index e6b271ef3b..b6b9fead95 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15075,10 +15075,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.1.0-www-modern-b630219b-20250320", + version: "19.1.0-www-modern-0962f684-20250320", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.1.0-www-modern-b630219b-20250320" + reconcilerVersion: "19.1.0-www-modern-0962f684-20250320" }; 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-b630219b-20250320"; + exports.version = "19.1.0-www-modern-0962f684-20250320"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index db654aa04a..4533b03e4c 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.1.0-www-classic-b630219b-20250320 \ No newline at end of file +19.1.0-www-classic-0962f684-20250320 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index e743508ae8..4fbd348617 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.1.0-www-modern-b630219b-20250320 \ No newline at end of file +19.1.0-www-modern-0962f684-20250320 \ No newline at end of file