From ebb0c7ffeb21ff7604f5f4fea002735ea0d9c884 Mon Sep 17 00:00:00 2001 From: poteto Date: Thu, 2 Oct 2025 15:50:29 -0700 Subject: [PATCH] [fixtures] Update eslint fixture lockfiles (#34699) Updates the eslint fixture lockfiles. --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/34699). * #34703 * #34700 * __->__ #34699 * #34675 DiffTrain build for [056a586928fe1b6186d3693743ac7019ce39cb7b](https://github.com/facebook/react/commit/056a586928fe1b6186d3693743ac7019ce39cb7b) --- compiled/eslint-plugin-react-hooks/index.js | 29 +++++++++++++++---- compiled/facebook-www/REVISION | 2 +- compiled/facebook-www/REVISION_TRANSFORMS | 2 +- compiled/facebook-www/React-dev.classic.js | 2 +- compiled/facebook-www/React-dev.modern.js | 2 +- compiled/facebook-www/React-prod.classic.js | 2 +- compiled/facebook-www/React-prod.modern.js | 2 +- .../facebook-www/React-profiling.classic.js | 2 +- .../facebook-www/React-profiling.modern.js | 2 +- compiled/facebook-www/ReactART-dev.classic.js | 6 ++-- compiled/facebook-www/ReactART-dev.modern.js | 6 ++-- .../facebook-www/ReactART-prod.classic.js | 6 ++-- compiled/facebook-www/ReactART-prod.modern.js | 6 ++-- compiled/facebook-www/ReactDOM-dev.classic.js | 10 +++---- compiled/facebook-www/ReactDOM-dev.modern.js | 10 +++---- .../facebook-www/ReactDOM-prod.classic.js | 10 +++---- compiled/facebook-www/ReactDOM-prod.modern.js | 10 +++---- .../ReactDOM-profiling.classic.js | 10 +++---- .../facebook-www/ReactDOM-profiling.modern.js | 10 +++---- .../ReactDOMServer-dev.classic.js | 2 +- .../facebook-www/ReactDOMServer-dev.modern.js | 2 +- .../ReactDOMServer-prod.classic.js | 2 +- .../ReactDOMServer-prod.modern.js | 2 +- .../ReactDOMTesting-dev.classic.js | 10 +++---- .../ReactDOMTesting-dev.modern.js | 10 +++---- .../ReactDOMTesting-prod.classic.js | 10 +++---- .../ReactDOMTesting-prod.modern.js | 10 +++---- .../ReactReconciler-dev.classic.js | 2 +- .../ReactReconciler-dev.modern.js | 2 +- .../ReactReconciler-prod.classic.js | 2 +- .../ReactReconciler-prod.modern.js | 2 +- .../ReactTestRenderer-dev.classic.js | 6 ++-- .../ReactTestRenderer-dev.modern.js | 6 ++-- compiled/facebook-www/VERSION_CLASSIC | 2 +- compiled/facebook-www/VERSION_MODERN | 2 +- 35 files changed, 110 insertions(+), 91 deletions(-) diff --git a/compiled/eslint-plugin-react-hooks/index.js b/compiled/eslint-plugin-react-hooks/index.js index 8d05254319..cd38d2bd70 100644 --- a/compiled/eslint-plugin-react-hooks/index.js +++ b/compiled/eslint-plugin-react-hooks/index.js @@ -54497,7 +54497,7 @@ const allRules = LintRules.reduce((acc, rule) => { severity: ErrorSeverity.Error, }, }); -LintRules.filter(rule => rule.recommended).reduce((acc, rule) => { +const recommendedRules = LintRules.filter(rule => rule.recommended).reduce((acc, rule) => { acc[rule.name] = { rule: makeRule(rule), severity: rule.severity }; return acc; }, { @@ -54506,6 +54506,23 @@ LintRules.filter(rule => rule.recommended).reduce((acc, rule) => { severity: ErrorSeverity.Error, }, }); +function mapErrorSeverityToESlint(severity) { + switch (severity) { + case ErrorSeverity.Error: { + return 'error'; + } + case ErrorSeverity.Warning: { + return 'warn'; + } + case ErrorSeverity.Hint: + case ErrorSeverity.Off: { + return 'off'; + } + default: { + assertExhaustive(severity, `Unhandled severity: ${severity}`); + } + } +} var assert_1; var hasRequiredAssert; @@ -57793,10 +57810,12 @@ function last(array) { } const rules = Object.assign({ 'exhaustive-deps': rule$1, 'rules-of-hooks': rule }, Object.fromEntries(Object.entries(allRules).map(([name, config]) => [name, config.rule]))); -const ruleConfigs = { - 'react-hooks/rules-of-hooks': 'error', - 'react-hooks/exhaustive-deps': 'warn', -}; +const ruleConfigs = Object.assign({ 'react-hooks/rules-of-hooks': 'error', 'react-hooks/exhaustive-deps': 'warn' }, Object.fromEntries(Object.entries(recommendedRules).map(([name, ruleConfig]) => { + return [ + 'react-hooks/' + name, + mapErrorSeverityToESlint(ruleConfig.severity), + ]; +}))); const plugin = { meta: { name: 'eslint-plugin-react-hooks', diff --git a/compiled/facebook-www/REVISION b/compiled/facebook-www/REVISION index 6a4f9a7dc6..9b3254cd41 100644 --- a/compiled/facebook-www/REVISION +++ b/compiled/facebook-www/REVISION @@ -1 +1 @@ -7d9f876cbc7e9363092e60436704cf8ae435b969 +056a586928fe1b6186d3693743ac7019ce39cb7b diff --git a/compiled/facebook-www/REVISION_TRANSFORMS b/compiled/facebook-www/REVISION_TRANSFORMS index 6a4f9a7dc6..9b3254cd41 100644 --- a/compiled/facebook-www/REVISION_TRANSFORMS +++ b/compiled/facebook-www/REVISION_TRANSFORMS @@ -1 +1 @@ -7d9f876cbc7e9363092e60436704cf8ae435b969 +056a586928fe1b6186d3693743ac7019ce39cb7b diff --git a/compiled/facebook-www/React-dev.classic.js b/compiled/facebook-www/React-dev.classic.js index 4df6d86a33..74032d1780 100644 --- a/compiled/facebook-www/React-dev.classic.js +++ b/compiled/facebook-www/React-dev.classic.js @@ -1458,7 +1458,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.3.0-www-classic-7d9f876c-20251002"; + exports.version = "19.3.0-www-classic-056a5869-20251002"; "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 00a0b2be94..d72d1b217c 100644 --- a/compiled/facebook-www/React-dev.modern.js +++ b/compiled/facebook-www/React-dev.modern.js @@ -1458,7 +1458,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.3.0-www-modern-7d9f876c-20251002"; + exports.version = "19.3.0-www-modern-056a5869-20251002"; "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 e623c3cbf6..c0e388bd90 100644 --- a/compiled/facebook-www/React-prod.classic.js +++ b/compiled/facebook-www/React-prod.classic.js @@ -604,4 +604,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.3.0-www-classic-7d9f876c-20251002"; +exports.version = "19.3.0-www-classic-056a5869-20251002"; diff --git a/compiled/facebook-www/React-prod.modern.js b/compiled/facebook-www/React-prod.modern.js index fdb437a0ef..d0219fe5d0 100644 --- a/compiled/facebook-www/React-prod.modern.js +++ b/compiled/facebook-www/React-prod.modern.js @@ -604,4 +604,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.3.0-www-modern-7d9f876c-20251002"; +exports.version = "19.3.0-www-modern-056a5869-20251002"; diff --git a/compiled/facebook-www/React-profiling.classic.js b/compiled/facebook-www/React-profiling.classic.js index da93b9a34d..d4e6ae9796 100644 --- a/compiled/facebook-www/React-profiling.classic.js +++ b/compiled/facebook-www/React-profiling.classic.js @@ -608,7 +608,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.3.0-www-classic-7d9f876c-20251002"; +exports.version = "19.3.0-www-classic-056a5869-20251002"; "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 1085045f01..a29017bf0c 100644 --- a/compiled/facebook-www/React-profiling.modern.js +++ b/compiled/facebook-www/React-profiling.modern.js @@ -608,7 +608,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.3.0-www-modern-7d9f876c-20251002"; +exports.version = "19.3.0-www-modern-056a5869-20251002"; "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 379f78468d..06b9e14df6 100644 --- a/compiled/facebook-www/ReactART-dev.classic.js +++ b/compiled/facebook-www/ReactART-dev.classic.js @@ -20303,10 +20303,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.3.0-www-classic-7d9f876c-20251002", + version: "19.3.0-www-classic-056a5869-20251002", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -20341,7 +20341,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.3.0-www-classic-7d9f876c-20251002"; + exports.version = "19.3.0-www-classic-056a5869-20251002"; "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 bae8789adc..bc7f72de7e 100644 --- a/compiled/facebook-www/ReactART-dev.modern.js +++ b/compiled/facebook-www/ReactART-dev.modern.js @@ -20074,10 +20074,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.3.0-www-modern-7d9f876c-20251002", + version: "19.3.0-www-modern-056a5869-20251002", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -20112,7 +20112,7 @@ __DEV__ && exports.Shape = Shape; exports.Surface = Surface; exports.Text = Text; - exports.version = "19.3.0-www-modern-7d9f876c-20251002"; + exports.version = "19.3.0-www-modern-056a5869-20251002"; "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 2023fc9039..f8ce06f86b 100644 --- a/compiled/facebook-www/ReactART-prod.classic.js +++ b/compiled/facebook-www/ReactART-prod.classic.js @@ -11434,10 +11434,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1646 = { bundleType: 0, - version: "19.3.0-www-classic-7d9f876c-20251002", + version: "19.3.0-www-classic-056a5869-20251002", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1647 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11463,4 +11463,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.3.0-www-classic-7d9f876c-20251002"; +exports.version = "19.3.0-www-classic-056a5869-20251002"; diff --git a/compiled/facebook-www/ReactART-prod.modern.js b/compiled/facebook-www/ReactART-prod.modern.js index 21f17a2071..8d4aa7bc1a 100644 --- a/compiled/facebook-www/ReactART-prod.modern.js +++ b/compiled/facebook-www/ReactART-prod.modern.js @@ -11146,10 +11146,10 @@ var slice = Array.prototype.slice, })(React.Component); var internals$jscomp$inline_1619 = { bundleType: 0, - version: "19.3.0-www-modern-7d9f876c-20251002", + version: "19.3.0-www-modern-056a5869-20251002", rendererPackageName: "react-art", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1620 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -11175,4 +11175,4 @@ exports.RadialGradient = RadialGradient; exports.Shape = TYPES.SHAPE; exports.Surface = Surface; exports.Text = Text; -exports.version = "19.3.0-www-modern-7d9f876c-20251002"; +exports.version = "19.3.0-www-modern-056a5869-20251002"; diff --git a/compiled/facebook-www/ReactDOM-dev.classic.js b/compiled/facebook-www/ReactDOM-dev.classic.js index 17311a74db..624189e142 100644 --- a/compiled/facebook-www/ReactDOM-dev.classic.js +++ b/compiled/facebook-www/ReactDOM-dev.classic.js @@ -32865,11 +32865,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.3.0-www-classic-7d9f876c-20251002" !== isomorphicReactPackageVersion) + if ("19.3.0-www-classic-056a5869-20251002" !== 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.3.0-www-classic-7d9f876c-20251002\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.3.0-www-classic-056a5869-20251002\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -32912,10 +32912,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.3.0-www-classic-7d9f876c-20251002", + version: "19.3.0-www-classic-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -33528,7 +33528,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.3.0-www-classic-7d9f876c-20251002"; + exports.version = "19.3.0-www-classic-056a5869-20251002"; "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 e3d5095a3e..c59f3b183c 100644 --- a/compiled/facebook-www/ReactDOM-dev.modern.js +++ b/compiled/facebook-www/ReactDOM-dev.modern.js @@ -32650,11 +32650,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.3.0-www-modern-7d9f876c-20251002" !== isomorphicReactPackageVersion) + if ("19.3.0-www-modern-056a5869-20251002" !== 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.3.0-www-modern-7d9f876c-20251002\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.3.0-www-modern-056a5869-20251002\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -32697,10 +32697,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.3.0-www-modern-7d9f876c-20251002", + version: "19.3.0-www-modern-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -33313,7 +33313,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.3.0-www-modern-7d9f876c-20251002"; + exports.version = "19.3.0-www-modern-056a5869-20251002"; "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 1cb5202eb6..e621005edf 100644 --- a/compiled/facebook-www/ReactDOM-prod.classic.js +++ b/compiled/facebook-www/ReactDOM-prod.classic.js @@ -19972,14 +19972,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2128 = React.version; if ( - "19.3.0-www-classic-7d9f876c-20251002" !== + "19.3.0-www-classic-056a5869-20251002" !== isomorphicReactPackageVersion$jscomp$inline_2128 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2128, - "19.3.0-www-classic-7d9f876c-20251002" + "19.3.0-www-classic-056a5869-20251002" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19997,10 +19997,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2760 = { bundleType: 0, - version: "19.3.0-www-classic-7d9f876c-20251002", + version: "19.3.0-www-classic-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2761 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20429,4 +20429,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-classic-7d9f876c-20251002"; +exports.version = "19.3.0-www-classic-056a5869-20251002"; diff --git a/compiled/facebook-www/ReactDOM-prod.modern.js b/compiled/facebook-www/ReactDOM-prod.modern.js index 7f044a2c1f..13c92416c0 100644 --- a/compiled/facebook-www/ReactDOM-prod.modern.js +++ b/compiled/facebook-www/ReactDOM-prod.modern.js @@ -19701,14 +19701,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2118 = React.version; if ( - "19.3.0-www-modern-7d9f876c-20251002" !== + "19.3.0-www-modern-056a5869-20251002" !== isomorphicReactPackageVersion$jscomp$inline_2118 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2118, - "19.3.0-www-modern-7d9f876c-20251002" + "19.3.0-www-modern-056a5869-20251002" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -19726,10 +19726,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2742 = { bundleType: 0, - version: "19.3.0-www-modern-7d9f876c-20251002", + version: "19.3.0-www-modern-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2743 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20158,4 +20158,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-modern-7d9f876c-20251002"; +exports.version = "19.3.0-www-modern-056a5869-20251002"; diff --git a/compiled/facebook-www/ReactDOM-profiling.classic.js b/compiled/facebook-www/ReactDOM-profiling.classic.js index a9c83758f7..c13c94ddf6 100644 --- a/compiled/facebook-www/ReactDOM-profiling.classic.js +++ b/compiled/facebook-www/ReactDOM-profiling.classic.js @@ -22226,14 +22226,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2438 = React.version; if ( - "19.3.0-www-classic-7d9f876c-20251002" !== + "19.3.0-www-classic-056a5869-20251002" !== isomorphicReactPackageVersion$jscomp$inline_2438 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2438, - "19.3.0-www-classic-7d9f876c-20251002" + "19.3.0-www-classic-056a5869-20251002" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -22251,10 +22251,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2440 = { bundleType: 0, - version: "19.3.0-www-classic-7d9f876c-20251002", + version: "19.3.0-www-classic-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; enableSchedulingProfiler && ((internals$jscomp$inline_2440.getLaneLabelMap = getLaneLabelMap), @@ -22687,7 +22687,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-classic-7d9f876c-20251002"; +exports.version = "19.3.0-www-classic-056a5869-20251002"; "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 a68d73d174..dbd134c0f4 100644 --- a/compiled/facebook-www/ReactDOM-profiling.modern.js +++ b/compiled/facebook-www/ReactDOM-profiling.modern.js @@ -22020,14 +22020,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2428 = React.version; if ( - "19.3.0-www-modern-7d9f876c-20251002" !== + "19.3.0-www-modern-056a5869-20251002" !== isomorphicReactPackageVersion$jscomp$inline_2428 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2428, - "19.3.0-www-modern-7d9f876c-20251002" + "19.3.0-www-modern-056a5869-20251002" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -22045,10 +22045,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2430 = { bundleType: 0, - version: "19.3.0-www-modern-7d9f876c-20251002", + version: "19.3.0-www-modern-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; enableSchedulingProfiler && ((internals$jscomp$inline_2430.getLaneLabelMap = getLaneLabelMap), @@ -22481,7 +22481,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-modern-7d9f876c-20251002"; +exports.version = "19.3.0-www-modern-056a5869-20251002"; "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 fdf7eaeffb..fc6d26404d 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.classic.js +++ b/compiled/facebook-www/ReactDOMServer-dev.classic.js @@ -10305,5 +10305,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.3.0-www-classic-7d9f876c-20251002"; + exports.version = "19.3.0-www-classic-056a5869-20251002"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-dev.modern.js b/compiled/facebook-www/ReactDOMServer-dev.modern.js index 217ea0e9ee..c6f7364514 100644 --- a/compiled/facebook-www/ReactDOMServer-dev.modern.js +++ b/compiled/facebook-www/ReactDOMServer-dev.modern.js @@ -10234,5 +10234,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.3.0-www-modern-7d9f876c-20251002"; + exports.version = "19.3.0-www-modern-056a5869-20251002"; })(); diff --git a/compiled/facebook-www/ReactDOMServer-prod.classic.js b/compiled/facebook-www/ReactDOMServer-prod.classic.js index 2c877a458e..8c5d3809a0 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.classic.js +++ b/compiled/facebook-www/ReactDOMServer-prod.classic.js @@ -6996,4 +6996,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.3.0-www-classic-7d9f876c-20251002"; +exports.version = "19.3.0-www-classic-056a5869-20251002"; diff --git a/compiled/facebook-www/ReactDOMServer-prod.modern.js b/compiled/facebook-www/ReactDOMServer-prod.modern.js index 09e33e6185..bdbf01d8e1 100644 --- a/compiled/facebook-www/ReactDOMServer-prod.modern.js +++ b/compiled/facebook-www/ReactDOMServer-prod.modern.js @@ -6929,4 +6929,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.3.0-www-modern-7d9f876c-20251002"; +exports.version = "19.3.0-www-modern-056a5869-20251002"; diff --git a/compiled/facebook-www/ReactDOMTesting-dev.classic.js b/compiled/facebook-www/ReactDOMTesting-dev.classic.js index 8e3d2abb28..56bb349734 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.classic.js @@ -33186,11 +33186,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.3.0-www-classic-7d9f876c-20251002" !== isomorphicReactPackageVersion) + if ("19.3.0-www-classic-056a5869-20251002" !== 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.3.0-www-classic-7d9f876c-20251002\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.3.0-www-classic-056a5869-20251002\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -33233,10 +33233,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.3.0-www-classic-7d9f876c-20251002", + version: "19.3.0-www-classic-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -34015,5 +34015,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.3.0-www-classic-7d9f876c-20251002"; + exports.version = "19.3.0-www-classic-056a5869-20251002"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-dev.modern.js b/compiled/facebook-www/ReactDOMTesting-dev.modern.js index e16f802a64..bb7d54f091 100644 --- a/compiled/facebook-www/ReactDOMTesting-dev.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-dev.modern.js @@ -32971,11 +32971,11 @@ __DEV__ && return_targetInst = null; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.3.0-www-modern-7d9f876c-20251002" !== isomorphicReactPackageVersion) + if ("19.3.0-www-modern-056a5869-20251002" !== 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.3.0-www-modern-7d9f876c-20251002\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.3.0-www-modern-056a5869-20251002\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -33018,10 +33018,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.3.0-www-modern-7d9f876c-20251002", + version: "19.3.0-www-modern-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -33800,5 +33800,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.3.0-www-modern-7d9f876c-20251002"; + exports.version = "19.3.0-www-modern-056a5869-20251002"; })(); diff --git a/compiled/facebook-www/ReactDOMTesting-prod.classic.js b/compiled/facebook-www/ReactDOMTesting-prod.classic.js index 29f4ee7e48..e9786b1041 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.classic.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.classic.js @@ -20288,14 +20288,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2157 = React.version; if ( - "19.3.0-www-classic-7d9f876c-20251002" !== + "19.3.0-www-classic-056a5869-20251002" !== isomorphicReactPackageVersion$jscomp$inline_2157 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2157, - "19.3.0-www-classic-7d9f876c-20251002" + "19.3.0-www-classic-056a5869-20251002" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20313,10 +20313,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2794 = { bundleType: 0, - version: "19.3.0-www-classic-7d9f876c-20251002", + version: "19.3.0-www-classic-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2795 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20896,4 +20896,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-classic-7d9f876c-20251002"; +exports.version = "19.3.0-www-classic-056a5869-20251002"; diff --git a/compiled/facebook-www/ReactDOMTesting-prod.modern.js b/compiled/facebook-www/ReactDOMTesting-prod.modern.js index d280606f96..b4c6ddeba9 100644 --- a/compiled/facebook-www/ReactDOMTesting-prod.modern.js +++ b/compiled/facebook-www/ReactDOMTesting-prod.modern.js @@ -20017,14 +20017,14 @@ function getCrossOriginStringAs(as, input) { } var isomorphicReactPackageVersion$jscomp$inline_2147 = React.version; if ( - "19.3.0-www-modern-7d9f876c-20251002" !== + "19.3.0-www-modern-056a5869-20251002" !== isomorphicReactPackageVersion$jscomp$inline_2147 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2147, - "19.3.0-www-modern-7d9f876c-20251002" + "19.3.0-www-modern-056a5869-20251002" ) ); Internals.findDOMNode = function (componentOrElement) { @@ -20042,10 +20042,10 @@ Internals.Events = [ ]; var internals$jscomp$inline_2776 = { bundleType: 0, - version: "19.3.0-www-modern-7d9f876c-20251002", + version: "19.3.0-www-modern-056a5869-20251002", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2777 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -20625,4 +20625,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.3.0-www-modern-7d9f876c-20251002"; +exports.version = "19.3.0-www-modern-056a5869-20251002"; diff --git a/compiled/facebook-www/ReactReconciler-dev.classic.js b/compiled/facebook-www/ReactReconciler-dev.classic.js index de837a8ad9..0aff219561 100644 --- a/compiled/facebook-www/ReactReconciler-dev.classic.js +++ b/compiled/facebook-www/ReactReconciler-dev.classic.js @@ -22958,7 +22958,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-dev.modern.js b/compiled/facebook-www/ReactReconciler-dev.modern.js index 2766e86701..28a832373b 100644 --- a/compiled/facebook-www/ReactReconciler-dev.modern.js +++ b/compiled/facebook-www/ReactReconciler-dev.modern.js @@ -22738,7 +22738,7 @@ __DEV__ && version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.classic.js b/compiled/facebook-www/ReactReconciler-prod.classic.js index faeea787b4..02efde29db 100644 --- a/compiled/facebook-www/ReactReconciler-prod.classic.js +++ b/compiled/facebook-www/ReactReconciler-prod.classic.js @@ -14245,7 +14245,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactReconciler-prod.modern.js b/compiled/facebook-www/ReactReconciler-prod.modern.js index d30370d1df..2e18696086 100644 --- a/compiled/facebook-www/ReactReconciler-prod.modern.js +++ b/compiled/facebook-www/ReactReconciler-prod.modern.js @@ -13962,7 +13962,7 @@ module.exports = function ($$$config) { version: rendererVersion, rendererPackageName: rendererPackageName, currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.classic.js b/compiled/facebook-www/ReactTestRenderer-dev.classic.js index 17d207d225..c5a6bb9e85 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.classic.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.classic.js @@ -15705,10 +15705,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.3.0-www-classic-7d9f876c-20251002", + version: "19.3.0-www-classic-056a5869-20251002", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-classic-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-classic-056a5869-20251002" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15844,5 +15844,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.3.0-www-classic-7d9f876c-20251002"; + exports.version = "19.3.0-www-classic-056a5869-20251002"; })(); diff --git a/compiled/facebook-www/ReactTestRenderer-dev.modern.js b/compiled/facebook-www/ReactTestRenderer-dev.modern.js index bb03945426..d038193e33 100644 --- a/compiled/facebook-www/ReactTestRenderer-dev.modern.js +++ b/compiled/facebook-www/ReactTestRenderer-dev.modern.js @@ -15705,10 +15705,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.3.0-www-modern-7d9f876c-20251002", + version: "19.3.0-www-modern-056a5869-20251002", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.3.0-www-modern-7d9f876c-20251002" + reconcilerVersion: "19.3.0-www-modern-056a5869-20251002" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15844,5 +15844,5 @@ __DEV__ && exports.unstable_batchedUpdates = function (fn, a) { return fn(a); }; - exports.version = "19.3.0-www-modern-7d9f876c-20251002"; + exports.version = "19.3.0-www-modern-056a5869-20251002"; })(); diff --git a/compiled/facebook-www/VERSION_CLASSIC b/compiled/facebook-www/VERSION_CLASSIC index a60195232e..4f8c4283f2 100644 --- a/compiled/facebook-www/VERSION_CLASSIC +++ b/compiled/facebook-www/VERSION_CLASSIC @@ -1 +1 @@ -19.3.0-www-classic-7d9f876c-20251002 \ No newline at end of file +19.3.0-www-classic-056a5869-20251002 \ No newline at end of file diff --git a/compiled/facebook-www/VERSION_MODERN b/compiled/facebook-www/VERSION_MODERN index f752182139..26eec31f19 100644 --- a/compiled/facebook-www/VERSION_MODERN +++ b/compiled/facebook-www/VERSION_MODERN @@ -1 +1 @@ -19.3.0-www-modern-7d9f876c-20251002 \ No newline at end of file +19.3.0-www-modern-056a5869-20251002 \ No newline at end of file