diff --git a/compiled/eslint-plugin-react-hooks/index.js b/compiled/eslint-plugin-react-hooks/index.js index c3b4ceffe2..b55fe54cd6 100644 --- a/compiled/eslint-plugin-react-hooks/index.js +++ b/compiled/eslint-plugin-react-hooks/index.js @@ -18001,14 +18001,20 @@ var ErrorCategory; ErrorCategory["Fire"] = "Fire"; ErrorCategory["FBT"] = "FBT"; })(ErrorCategory || (ErrorCategory = {})); +const RULE_NAME_PATTERN = /^[a-z]+(-[a-z]+)*$/; function getRuleForCategory(category) { + const rule = getRuleForCategoryImpl(category); + invariant(RULE_NAME_PATTERN.test(rule.name), `Invalid rule name, got '${rule.name}' but rules must match ${RULE_NAME_PATTERN.toString()}`); + return rule; +} +function getRuleForCategoryImpl(category) { switch (category) { case ErrorCategory.AutomaticEffectDependencies: { return { category, name: 'automatic-effect-dependencies', description: 'Verifies that automatic effect dependencies are compiled if opted-in', - recommended: true, + recommended: false, }; } case ErrorCategory.CapitalizedCalls: { @@ -18023,7 +18029,7 @@ function getRuleForCategory(category) { return { category, name: 'config', - description: 'Validates the configuration', + description: 'Validates the compiler configuration options', recommended: true, }; } @@ -18047,7 +18053,7 @@ function getRuleForCategory(category) { return { category, name: 'set-state-in-effect', - description: 'Validates against calling setState synchronously in an effect', + description: 'Validates against calling setState synchronously in an effect, which can lead to re-renders that degrade performance', recommended: true, }; } @@ -18055,7 +18061,7 @@ function getRuleForCategory(category) { return { category, name: 'error-boundaries', - description: 'Validates usage of error boundaries instead of try/catch for errors in JSX', + description: 'Validates usage of error boundaries instead of try/catch for errors in child components', recommended: true, }; } @@ -18079,7 +18085,7 @@ function getRuleForCategory(category) { return { category, name: 'gating', - description: 'Validates configuration of gating mode', + description: 'Validates configuration of [gating mode](https://react.dev/reference/react-compiler/gating)', recommended: true, }; } @@ -18087,7 +18093,8 @@ function getRuleForCategory(category) { return { category, name: 'globals', - description: 'Validates against assignment/mutation of globals during render', + description: 'Validates against assignment/mutation of globals during render, part of ensuring that ' + + '[side effects must render outside of render](https://react.dev/reference/rules/components-and-hooks-must-be-pure#side-effects-must-run-outside-of-render)', recommended: true, }; } @@ -18103,7 +18110,7 @@ function getRuleForCategory(category) { return { category, name: 'immutability', - description: 'Validates that immutable values (props, state, etc) are not mutated', + description: 'Validates against mutating props, state, and other values that [are immutable](https://react.dev/reference/rules/components-and-hooks-must-be-pure#props-and-state-are-immutable)', recommended: true, }; } @@ -18119,7 +18126,9 @@ function getRuleForCategory(category) { return { category, name: 'preserve-manual-memoization', - description: 'Validates that existing manual memoized is preserved by the compiler', + description: 'Validates that existing manual memoized is preserved by the compiler. ' + + 'React Compiler will only compile components and hooks if its inference ' + + '[matches or exceeds the existing manual memoization](https://react.dev/learn/react-compiler/introduction#what-should-i-do-about-usememo-usecallback-and-reactmemo)', recommended: true, }; } @@ -18127,7 +18136,7 @@ function getRuleForCategory(category) { return { category, name: 'purity', - description: 'Validates that the component/hook is pure, and does not call known-impure functions', + description: 'Validates that [components/hooks are pure](https://react.dev/reference/rules/components-and-hooks-must-be-pure) by checking that they do not call known-impure functions', recommended: true, }; } @@ -18135,7 +18144,7 @@ function getRuleForCategory(category) { return { category, name: 'refs', - description: 'Validates correct usage of refs, not reading/writing during render', + description: 'Validates correct usage of refs, not reading/writing during render. See the "pitfalls" section in [`useRef()` usage](https://react.dev/reference/react/useRef#usage)', recommended: true, }; } @@ -18143,7 +18152,7 @@ function getRuleForCategory(category) { return { category, name: 'set-state-in-render', - description: 'Validates against setting state during render', + description: 'Validates against setting state during render, which can trigger additional renders and potential infinite render loops', recommended: true, }; } @@ -18151,7 +18160,7 @@ function getRuleForCategory(category) { return { category, name: 'static-components', - description: 'Validates that components are static, not recreated every render', + description: 'Validates that components are static, not recreated every render. Components that are recreated dynamically can reset state and trigger excessive re-rendering', recommended: true, }; } @@ -18183,7 +18192,7 @@ function getRuleForCategory(category) { return { category, name: 'unsupported-syntax', - description: 'Validates against syntax that we do not plan to support', + description: 'Validates against syntax that we do not plan to support in React Compiler', recommended: true, }; } @@ -18191,7 +18200,7 @@ function getRuleForCategory(category) { return { category, name: 'use-memo', - description: 'Validates usage of the useMemo() hook', + description: 'Validates usage of the useMemo() hook against common mistakes. See [`useMemo()` docs](https://react.dev/reference/react/useMemo) for more information.', recommended: true, }; } diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index fd815734c7..800dccdefc 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -698bb4deb7c77010c040ac49630c26db94e6e28c +425ba0ad6d3ebd1779f6a658dcbf5c666d054948 diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index fd815734c7..800dccdefc 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -698bb4deb7c77010c040ac49630c26db94e6e28c +425ba0ad6d3ebd1779f6a658dcbf5c666d054948 diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index e86c0c81f5..92364e5568 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -1409,7 +1409,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.2.0-www-classic-698bb4de-20250822"; + exports.version = "19.2.0-www-classic-425ba0ad-20250822"; "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 2162362766..a95bb7de95 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1409,7 +1409,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.2.0-www-modern-698bb4de-20250822"; + exports.version = "19.2.0-www-modern-425ba0ad-20250822"; "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 1a7cf39f45..6eb591588f 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -600,4 +600,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-www-classic-698bb4de-20250822"; +exports.version = "19.2.0-www-classic-425ba0ad-20250822"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index 88f3a1cb03..3636774705 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -600,4 +600,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-www-modern-698bb4de-20250822"; +exports.version = "19.2.0-www-modern-425ba0ad-20250822"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index e67356fa3e..c2c43cbc96 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -604,7 +604,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-www-classic-698bb4de-20250822"; +exports.version = "19.2.0-www-classic-425ba0ad-20250822"; "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 57835b6c68..ac90701c90 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -604,7 +604,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-www-modern-698bb4de-20250822"; +exports.version = "19.2.0-www-modern-425ba0ad-20250822"; "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 1ddb70d3d3..c547febbf6 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -19588,10 +19588,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-www-classic-698bb4de-20250822", + version: "19.2.0-www-classic-425ba0ad-20250822", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -19625,7 +19625,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.2.0-www-classic-698bb4de-20250822"; + exports.version = "19.2.0-www-classic-425ba0ad-20250822"; "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 76e2cf14d7..5bfd2d953e 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -19359,10 +19359,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-www-modern-698bb4de-20250822", + version: "19.2.0-www-modern-425ba0ad-20250822", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -19396,7 +19396,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.2.0-www-modern-698bb4de-20250822"; + exports.version = "19.2.0-www-modern-425ba0ad-20250822"; "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 9039ecea52..e3d1b540d9 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -11298,10 +11298,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1603 = { bundleType: 0, - version: "19.2.0-www-classic-698bb4de-20250822", + version: "19.2.0-www-classic-425ba0ad-20250822", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1604 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11327,4 +11327,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.2.0-www-classic-698bb4de-20250822"; +exports.version = "19.2.0-www-classic-425ba0ad-20250822"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index a3703f1bd8..e239765c9b 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -11010,10 +11010,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1576 = { bundleType: 0, - version: "19.2.0-www-modern-698bb4de-20250822", + version: "19.2.0-www-modern-425ba0ad-20250822", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1577 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11039,4 +11039,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.2.0-www-modern-698bb4de-20250822"; +exports.version = "19.2.0-www-modern-425ba0ad-20250822"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index 728b1d89cf..bd2df60846 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -32115,11 +32115,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-www-classic-698bb4de-20250822" !== isomorphicReactPackageVersion) + if ("19.2.0-www-classic-425ba0ad-20250822" !== 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.2.0-www-classic-698bb4de-20250822\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-www-classic-425ba0ad-20250822\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -32162,10 +32162,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-www-classic-698bb4de-20250822", + version: "19.2.0-www-classic-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -32766,7 +32766,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-www-classic-698bb4de-20250822"; + exports.version = "19.2.0-www-classic-425ba0ad-20250822"; "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 8db5810c2f..d2e1c469fb 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -31900,11 +31900,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-www-modern-698bb4de-20250822" !== isomorphicReactPackageVersion) + if ("19.2.0-www-modern-425ba0ad-20250822" !== 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.2.0-www-modern-698bb4de-20250822\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-www-modern-425ba0ad-20250822\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -31947,10 +31947,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-www-modern-698bb4de-20250822", + version: "19.2.0-www-modern-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -32551,7 +32551,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-www-modern-698bb4de-20250822"; + exports.version = "19.2.0-www-modern-425ba0ad-20250822"; "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 ab2703e5e2..fee7ff4607 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -19599,14 +19599,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2087 = React.version; if ( - "19.2.0-www-classic-698bb4de-20250822" !== + "19.2.0-www-classic-425ba0ad-20250822" !== isomorphicReactPackageVersion$jscomp$inline_2087 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2087, - "19.2.0-www-classic-698bb4de-20250822" + "19.2.0-www-classic-425ba0ad-20250822" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19624,10 +19624,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2712 = { bundleType: 0, - version: "19.2.0-www-classic-698bb4de-20250822", + version: "19.2.0-www-classic-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2713 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20039,4 +20039,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-classic-698bb4de-20250822"; +exports.version = "19.2.0-www-classic-425ba0ad-20250822"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index 78a2aef59c..647bbe9ded 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -19328,14 +19328,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2077 = React.version; if ( - "19.2.0-www-modern-698bb4de-20250822" !== + "19.2.0-www-modern-425ba0ad-20250822" !== isomorphicReactPackageVersion$jscomp$inline_2077 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2077, - "19.2.0-www-modern-698bb4de-20250822" + "19.2.0-www-modern-425ba0ad-20250822" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19353,10 +19353,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2694 = { bundleType: 0, - version: "19.2.0-www-modern-698bb4de-20250822", + version: "19.2.0-www-modern-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2695 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -19768,4 +19768,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-modern-698bb4de-20250822"; +exports.version = "19.2.0-www-modern-425ba0ad-20250822"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index adcbe585e1..0d40f9f010 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -21654,14 +21654,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2334 = React.version; if ( - "19.2.0-www-classic-698bb4de-20250822" !== + "19.2.0-www-classic-425ba0ad-20250822" !== isomorphicReactPackageVersion$jscomp$inline_2334 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2334, - "19.2.0-www-classic-698bb4de-20250822" + "19.2.0-www-classic-425ba0ad-20250822" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -21679,10 +21679,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2336 = { bundleType: 0, - version: "19.2.0-www-classic-698bb4de-20250822", + version: "19.2.0-www-classic-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; enableSchedulingProfiler && ((internals$jscomp$inline_2336.getLaneLabelMap = getLaneLabelMap), @@ -22098,7 +22098,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-classic-698bb4de-20250822"; +exports.version = "19.2.0-www-classic-425ba0ad-20250822"; "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 6d08b0bd76..3217382a7a 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -21448,14 +21448,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2324 = React.version; if ( - "19.2.0-www-modern-698bb4de-20250822" !== + "19.2.0-www-modern-425ba0ad-20250822" !== isomorphicReactPackageVersion$jscomp$inline_2324 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2324, - "19.2.0-www-modern-698bb4de-20250822" + "19.2.0-www-modern-425ba0ad-20250822" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -21473,10 +21473,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2326 = { bundleType: 0, - version: "19.2.0-www-modern-698bb4de-20250822", + version: "19.2.0-www-modern-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; enableSchedulingProfiler && ((internals$jscomp$inline_2326.getLaneLabelMap = getLaneLabelMap), @@ -21892,7 +21892,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-modern-698bb4de-20250822"; +exports.version = "19.2.0-www-modern-425ba0ad-20250822"; "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 3187f94146..65994b7e6f 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -10163,5 +10163,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.2.0-www-classic-698bb4de-20250822"; + exports.version = "19.2.0-www-classic-425ba0ad-20250822"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index 5dfefe6f33..eb230c95ae 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -10092,5 +10092,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.2.0-www-modern-698bb4de-20250822"; + exports.version = "19.2.0-www-modern-425ba0ad-20250822"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index f9510308b2..b41a6da3a5 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -6892,4 +6892,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.2.0-www-classic-698bb4de-20250822"; +exports.version = "19.2.0-www-classic-425ba0ad-20250822"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index f7a5963db6..81645214aa 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -6825,4 +6825,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.2.0-www-modern-698bb4de-20250822"; +exports.version = "19.2.0-www-modern-425ba0ad-20250822"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index fd0b1625d7..a5fe476f54 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -32436,11 +32436,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-www-classic-698bb4de-20250822" !== isomorphicReactPackageVersion) + if ("19.2.0-www-classic-425ba0ad-20250822" !== 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.2.0-www-classic-698bb4de-20250822\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-www-classic-425ba0ad-20250822\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -32483,10 +32483,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-www-classic-698bb4de-20250822", + version: "19.2.0-www-classic-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -33253,5 +33253,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-www-classic-698bb4de-20250822"; + exports.version = "19.2.0-www-classic-425ba0ad-20250822"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index 3df19118a0..58a1151962 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -32221,11 +32221,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-www-modern-698bb4de-20250822" !== isomorphicReactPackageVersion) + if ("19.2.0-www-modern-425ba0ad-20250822" !== 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.2.0-www-modern-698bb4de-20250822\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-www-modern-425ba0ad-20250822\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -32268,10 +32268,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-www-modern-698bb4de-20250822", + version: "19.2.0-www-modern-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -33038,5 +33038,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-www-modern-698bb4de-20250822"; + exports.version = "19.2.0-www-modern-425ba0ad-20250822"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index 021dab3b44..af9139342e 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -19915,14 +19915,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2116 = React.version; if ( - "19.2.0-www-classic-698bb4de-20250822" !== + "19.2.0-www-classic-425ba0ad-20250822" !== isomorphicReactPackageVersion$jscomp$inline_2116 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2116, - "19.2.0-www-classic-698bb4de-20250822" + "19.2.0-www-classic-425ba0ad-20250822" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19940,10 +19940,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2746 = { bundleType: 0, - version: "19.2.0-www-classic-698bb4de-20250822", + version: "19.2.0-www-classic-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2747 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20506,4 +20506,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-classic-698bb4de-20250822"; +exports.version = "19.2.0-www-classic-425ba0ad-20250822"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index 59be658dd8..8000c865d9 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -19644,14 +19644,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2106 = React.version; if ( - "19.2.0-www-modern-698bb4de-20250822" !== + "19.2.0-www-modern-425ba0ad-20250822" !== isomorphicReactPackageVersion$jscomp$inline_2106 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2106, - "19.2.0-www-modern-698bb4de-20250822" + "19.2.0-www-modern-425ba0ad-20250822" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19669,10 +19669,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2728 = { bundleType: 0, - version: "19.2.0-www-modern-698bb4de-20250822", + version: "19.2.0-www-modern-425ba0ad-20250822", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2729 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20235,4 +20235,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-www-modern-698bb4de-20250822"; +exports.version = "19.2.0-www-modern-425ba0ad-20250822"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index f67b28e723..415ec0f016 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -22454,7 +22454,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index 3e596c9708..b34d3f7c0a 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -22234,7 +22234,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index 659604ab9c..4846caebbc 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -14048,7 +14048,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index 7f02235ef6..7b947f2b64 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -13765,7 +13765,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 5ea242a411..63e01cf15d 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15464,10 +15464,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-www-classic-698bb4de-20250822", + version: "19.2.0-www-classic-425ba0ad-20250822", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-classic-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-classic-425ba0ad-20250822" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15602,5 +15602,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.2.0-www-classic-698bb4de-20250822"; + exports.version = "19.2.0-www-classic-425ba0ad-20250822"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index 8ae5a0e5b5..92f911300d 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15464,10 +15464,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-www-modern-698bb4de-20250822", + version: "19.2.0-www-modern-425ba0ad-20250822", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-www-modern-698bb4de-20250822" + reconcilerVersion: "19.2.0-www-modern-425ba0ad-20250822" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15602,5 +15602,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.2.0-www-modern-698bb4de-20250822"; + exports.version = "19.2.0-www-modern-425ba0ad-20250822"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index 588a2d12d8..3c7642a4f2 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.2.0-www-classic-698bb4de-20250822 \ No newline at end of file +19.2.0-www-classic-425ba0ad-20250822 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index f534216cd6..020812aa54 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.2.0-www-modern-698bb4de-20250822 \ No newline at end of file +19.2.0-www-modern-425ba0ad-20250822 \ No newline at end of file