diff --git a/compiled-rn/VERSION_NATIVE_FB b/compiled-rn/VERSION_NATIVE_FB index 1968bd9dd4..7884a8942c 100644 --- a/compiled-rn/VERSION_NATIVE_FB +++ b/compiled-rn/VERSION_NATIVE_FB @@ -1 +1 @@ -19.2.0-native-fb-b480865d-20250513 \ No newline at end of file +19.2.0-native-fb-59440424-20250513 \ No newline at end of file diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js index 90e7827e92..9ad6b681c2 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-dev.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<0ab47b372b965d3d02258f47dc0402f2>> + * @generated SignedSource<> */ "use strict"; @@ -404,5 +404,5 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-native-fb-b480865d-20250513"; + exports.version = "19.2.0-native-fb-59440424-20250513"; })(); diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js index ad6423a835..dfb2bebb06 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<8818e9dff1a8e3a8643381d87dda4bd0>> + * @generated SignedSource<<2e17e4696030242c7e8aced13f53e62a>> */ "use strict"; @@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js index ad6423a835..dfb2bebb06 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOM-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<8818e9dff1a8e3a8643381d87dda4bd0>> + * @generated SignedSource<<2e17e4696030242c7e8aced13f53e62a>> */ "use strict"; @@ -203,4 +203,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js index 21c8606a4f..7d90d5473d 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-dev.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<6df1c2dec5d32d3e650052606abec7b1>> + * @generated SignedSource<<030115b4e4980785e31f5c7ff2c5cc14>> */ /* @@ -23088,7 +23088,57 @@ __DEV__ && } } function defaultOnDefaultTransitionIndicator() { - return function () {}; + function handleNavigate(event) { + event.canIntercept && + "react-transition" === event.info && + event.intercept({ + handler: function () { + return new Promise(function (resolve) { + return (pendingResolve = resolve); + }); + }, + focusReset: "manual", + scroll: "manual" + }); + } + function handleNavigateComplete() { + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + isCancelled || startFakeNavigation(); + } + function startFakeNavigation() { + if (!isCancelled && !navigation.transition) { + var currentEntry = navigation.currentEntry; + currentEntry && + null != currentEntry.url && + navigation.navigate(currentEntry.url, { + state: currentEntry.getState(), + info: "react-transition", + history: "replace" + }); + } + } + if ("object" === typeof navigation) { + var isCancelled = !1, + pendingResolve = null; + navigation.addEventListener("navigate", handleNavigate); + navigation.addEventListener("navigatesuccess", handleNavigateComplete); + navigation.addEventListener("navigateerror", handleNavigateComplete); + setTimeout(startFakeNavigation, 100); + return function () { + isCancelled = !0; + navigation.removeEventListener("navigate", handleNavigate); + navigation.removeEventListener( + "navigatesuccess", + handleNavigateComplete + ); + navigation.removeEventListener( + "navigateerror", + handleNavigateComplete + ); + null !== pendingResolve && + (pendingResolve(), (pendingResolve = null)); + }; + } } function ReactDOMRoot(internalRoot) { this._internalRoot = internalRoot; @@ -26960,11 +27010,11 @@ __DEV__ && }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-native-fb-b480865d-20250513" !== isomorphicReactPackageVersion) + if ("19.2.0-native-fb-59440424-20250513" !== 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-native-fb-b480865d-20250513\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-native-fb-59440424-20250513\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27001,10 +27051,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -27142,5 +27192,5 @@ __DEV__ && listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; - exports.version = "19.2.0-native-fb-b480865d-20250513"; + exports.version = "19.2.0-native-fb-59440424-20250513"; })(); diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js index f231ff9aae..aeae11cac3 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<5bd08c285c559e1d555ed66bced9133a>> */ /* @@ -17006,7 +17006,50 @@ function retryIfBlockedOn(unblocked) { } } function defaultOnDefaultTransitionIndicator() { - return function () {}; + function handleNavigate(event) { + event.canIntercept && + "react-transition" === event.info && + event.intercept({ + handler: function () { + return new Promise(function (resolve) { + return (pendingResolve = resolve); + }); + }, + focusReset: "manual", + scroll: "manual" + }); + } + function handleNavigateComplete() { + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + isCancelled || startFakeNavigation(); + } + function startFakeNavigation() { + if (!isCancelled && !navigation.transition) { + var currentEntry = navigation.currentEntry; + currentEntry && + null != currentEntry.url && + navigation.navigate(currentEntry.url, { + state: currentEntry.getState(), + info: "react-transition", + history: "replace" + }); + } + } + if ("object" === typeof navigation) { + var isCancelled = !1, + pendingResolve = null; + navigation.addEventListener("navigate", handleNavigate); + navigation.addEventListener("navigatesuccess", handleNavigateComplete); + navigation.addEventListener("navigateerror", handleNavigateComplete); + setTimeout(startFakeNavigation, 100); + return function () { + isCancelled = !0; + navigation.removeEventListener("navigate", handleNavigate); + navigation.removeEventListener("navigatesuccess", handleNavigateComplete); + navigation.removeEventListener("navigateerror", handleNavigateComplete); + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + }; + } } function ReactDOMRoot(internalRoot) { this._internalRoot = internalRoot; @@ -17051,14 +17094,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_2015 = React.version; if ( - "19.2.0-native-fb-b480865d-20250513" !== + "19.2.0-native-fb-59440424-20250513" !== isomorphicReactPackageVersion$jscomp$inline_2015 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2015, - "19.2.0-native-fb-b480865d-20250513" + "19.2.0-native-fb-59440424-20250513" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -17080,10 +17123,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2534 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2535 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17181,4 +17224,4 @@ exports.hydrateRoot = function (container, initialChildren, options) { listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js index 5d3b66c85a..47e8d24547 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<7e1f32d8db4f8fd1ee8f002787de4b01>> */ /* @@ -17716,7 +17716,50 @@ function retryIfBlockedOn(unblocked) { } } function defaultOnDefaultTransitionIndicator() { - return function () {}; + function handleNavigate(event) { + event.canIntercept && + "react-transition" === event.info && + event.intercept({ + handler: function () { + return new Promise(function (resolve) { + return (pendingResolve = resolve); + }); + }, + focusReset: "manual", + scroll: "manual" + }); + } + function handleNavigateComplete() { + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + isCancelled || startFakeNavigation(); + } + function startFakeNavigation() { + if (!isCancelled && !navigation.transition) { + var currentEntry = navigation.currentEntry; + currentEntry && + null != currentEntry.url && + navigation.navigate(currentEntry.url, { + state: currentEntry.getState(), + info: "react-transition", + history: "replace" + }); + } + } + if ("object" === typeof navigation) { + var isCancelled = !1, + pendingResolve = null; + navigation.addEventListener("navigate", handleNavigate); + navigation.addEventListener("navigatesuccess", handleNavigateComplete); + navigation.addEventListener("navigateerror", handleNavigateComplete); + setTimeout(startFakeNavigation, 100); + return function () { + isCancelled = !0; + navigation.removeEventListener("navigate", handleNavigate); + navigation.removeEventListener("navigatesuccess", handleNavigateComplete); + navigation.removeEventListener("navigateerror", handleNavigateComplete); + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + }; + } } function ReactDOMRoot(internalRoot) { this._internalRoot = internalRoot; @@ -17761,14 +17804,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_2118 = React.version; if ( - "19.2.0-native-fb-b480865d-20250513" !== + "19.2.0-native-fb-59440424-20250513" !== isomorphicReactPackageVersion$jscomp$inline_2118 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2118, - "19.2.0-native-fb-b480865d-20250513" + "19.2.0-native-fb-59440424-20250513" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -17790,10 +17833,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2125 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513", + reconcilerVersion: "19.2.0-native-fb-59440424-20250513", getLaneLabelMap: function () { for ( var map = new Map(), lane = 1, index$313 = 0; @@ -17906,4 +17949,4 @@ exports.hydrateRoot = function (container, initialChildren, options) { listenToAllSupportedEvents(container); return new ReactDOMHydrationRoot(initialChildren); }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js index 2786c920c7..c70115ec55 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-dev.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<7a69574b96a456be3dc7359f1fc26017>> + * @generated SignedSource<> */ /* @@ -23113,7 +23113,57 @@ __DEV__ && } } function defaultOnDefaultTransitionIndicator() { - return function () {}; + function handleNavigate(event) { + event.canIntercept && + "react-transition" === event.info && + event.intercept({ + handler: function () { + return new Promise(function (resolve) { + return (pendingResolve = resolve); + }); + }, + focusReset: "manual", + scroll: "manual" + }); + } + function handleNavigateComplete() { + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + isCancelled || startFakeNavigation(); + } + function startFakeNavigation() { + if (!isCancelled && !navigation.transition) { + var currentEntry = navigation.currentEntry; + currentEntry && + null != currentEntry.url && + navigation.navigate(currentEntry.url, { + state: currentEntry.getState(), + info: "react-transition", + history: "replace" + }); + } + } + if ("object" === typeof navigation) { + var isCancelled = !1, + pendingResolve = null; + navigation.addEventListener("navigate", handleNavigate); + navigation.addEventListener("navigatesuccess", handleNavigateComplete); + navigation.addEventListener("navigateerror", handleNavigateComplete); + setTimeout(startFakeNavigation, 100); + return function () { + isCancelled = !0; + navigation.removeEventListener("navigate", handleNavigate); + navigation.removeEventListener( + "navigatesuccess", + handleNavigateComplete + ); + navigation.removeEventListener( + "navigateerror", + handleNavigateComplete + ); + null !== pendingResolve && + (pendingResolve(), (pendingResolve = null)); + }; + } } function ReactDOMRoot(internalRoot) { this._internalRoot = internalRoot; @@ -27016,11 +27066,11 @@ __DEV__ && }; (function () { var isomorphicReactPackageVersion = React.version; - if ("19.2.0-native-fb-b480865d-20250513" !== isomorphicReactPackageVersion) + if ("19.2.0-native-fb-59440424-20250513" !== 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-native-fb-b480865d-20250513\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-dom: 19.2.0-native-fb-59440424-20250513\nLearn more: https://react.dev/warnings/version-mismatch") ); })(); ("function" === typeof Map && @@ -27057,10 +27107,10 @@ __DEV__ && !(function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -27514,7 +27564,7 @@ __DEV__ && exports.useFormStatus = function () { return resolveDispatcher().useHostTransitionStatus(); }; - exports.version = "19.2.0-native-fb-b480865d-20250513"; + exports.version = "19.2.0-native-fb-59440424-20250513"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js index 13e5b499be..58ca912ae6 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<6a686fdd5152c2144439e4d73c8dc376>> + * @generated SignedSource<<01adbc294113268e3776663698f74862>> */ /* @@ -17017,7 +17017,50 @@ function retryIfBlockedOn(unblocked) { } } function defaultOnDefaultTransitionIndicator() { - return function () {}; + function handleNavigate(event) { + event.canIntercept && + "react-transition" === event.info && + event.intercept({ + handler: function () { + return new Promise(function (resolve) { + return (pendingResolve = resolve); + }); + }, + focusReset: "manual", + scroll: "manual" + }); + } + function handleNavigateComplete() { + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + isCancelled || startFakeNavigation(); + } + function startFakeNavigation() { + if (!isCancelled && !navigation.transition) { + var currentEntry = navigation.currentEntry; + currentEntry && + null != currentEntry.url && + navigation.navigate(currentEntry.url, { + state: currentEntry.getState(), + info: "react-transition", + history: "replace" + }); + } + } + if ("object" === typeof navigation) { + var isCancelled = !1, + pendingResolve = null; + navigation.addEventListener("navigate", handleNavigate); + navigation.addEventListener("navigatesuccess", handleNavigateComplete); + navigation.addEventListener("navigateerror", handleNavigateComplete); + setTimeout(startFakeNavigation, 100); + return function () { + isCancelled = !0; + navigation.removeEventListener("navigate", handleNavigate); + navigation.removeEventListener("navigatesuccess", handleNavigateComplete); + navigation.removeEventListener("navigateerror", handleNavigateComplete); + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + }; + } } function ReactDOMRoot(internalRoot) { this._internalRoot = internalRoot; @@ -17062,14 +17105,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_2016 = React.version; if ( - "19.2.0-native-fb-b480865d-20250513" !== + "19.2.0-native-fb-59440424-20250513" !== isomorphicReactPackageVersion$jscomp$inline_2016 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2016, - "19.2.0-native-fb-b480865d-20250513" + "19.2.0-native-fb-59440424-20250513" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -17091,10 +17134,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2537 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_2538 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -17345,4 +17388,4 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js index 56ddb9b5b8..338218d959 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMProfiling-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<41f01b170d2e068c9c040151a986517b>> + * @generated SignedSource<<22804a49fa5dd8572821b97d90acc4a3>> */ /* @@ -17731,7 +17731,50 @@ function retryIfBlockedOn(unblocked) { } } function defaultOnDefaultTransitionIndicator() { - return function () {}; + function handleNavigate(event) { + event.canIntercept && + "react-transition" === event.info && + event.intercept({ + handler: function () { + return new Promise(function (resolve) { + return (pendingResolve = resolve); + }); + }, + focusReset: "manual", + scroll: "manual" + }); + } + function handleNavigateComplete() { + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + isCancelled || startFakeNavigation(); + } + function startFakeNavigation() { + if (!isCancelled && !navigation.transition) { + var currentEntry = navigation.currentEntry; + currentEntry && + null != currentEntry.url && + navigation.navigate(currentEntry.url, { + state: currentEntry.getState(), + info: "react-transition", + history: "replace" + }); + } + } + if ("object" === typeof navigation) { + var isCancelled = !1, + pendingResolve = null; + navigation.addEventListener("navigate", handleNavigate); + navigation.addEventListener("navigatesuccess", handleNavigateComplete); + navigation.addEventListener("navigateerror", handleNavigateComplete); + setTimeout(startFakeNavigation, 100); + return function () { + isCancelled = !0; + navigation.removeEventListener("navigate", handleNavigate); + navigation.removeEventListener("navigatesuccess", handleNavigateComplete); + navigation.removeEventListener("navigateerror", handleNavigateComplete); + null !== pendingResolve && (pendingResolve(), (pendingResolve = null)); + }; + } } function ReactDOMRoot(internalRoot) { this._internalRoot = internalRoot; @@ -17776,14 +17819,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) { }; var isomorphicReactPackageVersion$jscomp$inline_2119 = React.version; if ( - "19.2.0-native-fb-b480865d-20250513" !== + "19.2.0-native-fb-59440424-20250513" !== isomorphicReactPackageVersion$jscomp$inline_2119 ) throw Error( formatProdErrorMessage( 527, isomorphicReactPackageVersion$jscomp$inline_2119, - "19.2.0-native-fb-b480865d-20250513" + "19.2.0-native-fb-59440424-20250513" ) ); ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { @@ -17805,10 +17848,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) { }; var internals$jscomp$inline_2126 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-dom", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513", + reconcilerVersion: "19.2.0-native-fb-59440424-20250513", getLaneLabelMap: function () { for ( var map = new Map(), lane = 1, index$313 = 0; @@ -18074,7 +18117,7 @@ exports.useFormState = function (action, initialState, permalink) { exports.useFormStatus = function () { return ReactSharedInternals.H.useHostTransitionStatus(); }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js index 2a51a12054..d09a1d20fa 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-dev.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<095ce9109f965d84b638a6e498a605f4>> + * @generated SignedSource<<0dbed81cbc519d42773eabdb962161a3>> */ "use strict"; @@ -15658,10 +15658,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; internals.overrideHookState = overrideHookState; internals.overrideHookStateDeletePath = overrideHookStateDeletePath; @@ -15806,5 +15806,5 @@ __DEV__ && flushSyncWorkAcrossRoots_impl(0, !0)); } }; - exports.version = "19.2.0-native-fb-b480865d-20250513"; + exports.version = "19.2.0-native-fb-59440424-20250513"; })(); diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js index d998adefa3..e5637dbd0f 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<85c6b71c5e6fed8e1c271b1588ae02be>> */ "use strict"; @@ -9895,10 +9895,10 @@ function wrapFiber(fiber) { } var internals$jscomp$inline_1446 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) { var hook$jscomp$inline_1447 = __REACT_DEVTOOLS_GLOBAL_HOOK__; @@ -10034,4 +10034,4 @@ exports.unstable_batchedUpdates = function (fn, a) { flushSyncWorkAcrossRoots_impl(0, !0)); } }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js index 4b5ac35364..1646507380 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-test-renderer/cjs/ReactTestRenderer-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<78893cb9c19090c905e9221e3e494a29>> + * @generated SignedSource<<6a1f8ce4b87d03fd0933b53b239cf25b>> */ "use strict"; @@ -10515,10 +10515,10 @@ function wrapFiber(fiber) { } var internals$jscomp$inline_1254 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-test-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513", + reconcilerVersion: "19.2.0-native-fb-59440424-20250513", getLaneLabelMap: function () { for ( var map = new Map(), lane = 1, index$155 = 0; @@ -10669,4 +10669,4 @@ exports.unstable_batchedUpdates = function (fn, a) { flushSyncWorkAcrossRoots_impl(0, !0)); } }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js index 5c89020f94..74c2419f1f 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-dev.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<2ce7b3f148e9fd49390ff312b64947f9>> + * @generated SignedSource<> */ "use strict"; @@ -1411,7 +1411,7 @@ __DEV__ && exports.useTransition = function () { return resolveDispatcher().useTransition(); }; - exports.version = "19.2.0-native-fb-b480865d-20250513"; + exports.version = "19.2.0-native-fb-59440424-20250513"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js index 34590d7d5b..0f7ecb9fef 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-prod.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<5cc56d91a19083ad8995110343f38ff6>> */ "use strict"; @@ -586,4 +586,4 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; diff --git a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js index af885bef35..84b3ef5db1 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js +++ b/compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react/cjs/React-profiling.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<20655fa8ecfb88cdc9f86d7e59db521c>> + * @generated SignedSource<<55cb83f6a26ce22fd76bb5a7c5901e0c>> */ "use strict"; @@ -590,7 +590,7 @@ exports.useSyncExternalStore = function ( exports.useTransition = function () { return ReactSharedInternals.H.useTransition(); }; -exports.version = "19.2.0-native-fb-b480865d-20250513"; +exports.version = "19.2.0-native-fb-59440424-20250513"; "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ && "function" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop && diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION index 93a1406418..e98a475662 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/REVISION @@ -1 +1 @@ -b480865db0babfcad602a1a1909775069b5779f9 +59440424d05360cca32ca6f46ae33661f70d43e2 diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js index a5f5522db4..271ea0251a 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-dev.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<7420d195b4dedea736a7398bde419066>> + * @generated SignedSource<<574ab45d59c7d4cc4bfc147bbcfdaac4>> */ "use strict"; @@ -17486,10 +17486,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js index c605448bc3..dc83aad670 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-prod.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<3de9573c0e5881986d4a835277049c02>> + * @generated SignedSource<> */ "use strict"; @@ -11202,10 +11202,10 @@ batchedUpdatesImpl = function (fn, a) { var roots = new Map(), internals$jscomp$inline_1255 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; null !== extraDevToolsConfig && (internals$jscomp$inline_1255.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js index 076b91c3ac..40250dd493 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactFabric-profiling.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<> + * @generated SignedSource<<8eb4aa97ce9dec715ed3503e1b4030e0>> */ "use strict"; @@ -11906,10 +11906,10 @@ batchedUpdatesImpl = function (fn, a) { var roots = new Map(), internals$jscomp$inline_1356 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; null !== extraDevToolsConfig && (internals$jscomp$inline_1356.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js index 77786345db..13d2c5a20c 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-dev.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<244bbb42754a3a9b52a634ba06501d9c>> + * @generated SignedSource<<36a95af6746f77f31a4ac9a7574d4181>> */ "use strict"; @@ -17609,11 +17609,11 @@ __DEV__ && shouldSuspendImpl = newShouldSuspendImpl; }; var isomorphicReactPackageVersion = React.version; - if ("19.2.0-native-fb-b480865d-20250513" !== isomorphicReactPackageVersion) + if ("19.2.0-native-fb-59440424-20250513" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-native-renderer: 19.2.0-native-fb-b480865d-20250513\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-native-renderer: 19.2.0-native-fb-59440424-20250513\nLearn more: https://react.dev/warnings/version-mismatch") ); if ( "function" !== @@ -17639,10 +17639,10 @@ __DEV__ && (function () { var internals = { bundleType: 1, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; null !== extraDevToolsConfig && (internals.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js index 9127ed4f45..37551a3791 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-prod.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<7fe288a30387ffb0c6bc173939a82794>> + * @generated SignedSource<> */ "use strict"; @@ -11211,11 +11211,11 @@ function updateContainer(element, container, parentComponent, callback) { return lane; } var isomorphicReactPackageVersion = React.version; -if ("19.2.0-native-fb-b480865d-20250513" !== isomorphicReactPackageVersion) +if ("19.2.0-native-fb-59440424-20250513" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-native-renderer: 19.2.0-native-fb-b480865d-20250513\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-native-renderer: 19.2.0-native-fb-59440424-20250513\nLearn more: https://react.dev/warnings/version-mismatch") ); if ( "function" !== @@ -11265,10 +11265,10 @@ batchedUpdatesImpl = function (fn, a) { var roots = new Map(), internals$jscomp$inline_1306 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; null !== extraDevToolsConfig && (internals$jscomp$inline_1306.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js index 5896827361..da88d3cbb5 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js +++ b/compiled-rn/facebook-fbsource/xplat/js/react-native-github/Libraries/Renderer/implementations/ReactNativeRenderer-profiling.fb.js @@ -7,7 +7,7 @@ * @noflow * @nolint * @preventMunge - * @generated SignedSource<<61312a9627893bd3425e582e0d1490a4>> + * @generated SignedSource<> */ "use strict"; @@ -11913,11 +11913,11 @@ function updateContainer(element, container, parentComponent, callback) { return lane; } var isomorphicReactPackageVersion = React.version; -if ("19.2.0-native-fb-b480865d-20250513" !== isomorphicReactPackageVersion) +if ("19.2.0-native-fb-59440424-20250513" !== isomorphicReactPackageVersion) throw Error( 'Incompatible React versions: The "react" and "react-native-renderer" packages must have the exact same version. Instead got:\n - react: ' + (isomorphicReactPackageVersion + - "\n - react-native-renderer: 19.2.0-native-fb-b480865d-20250513\nLearn more: https://react.dev/warnings/version-mismatch") + "\n - react-native-renderer: 19.2.0-native-fb-59440424-20250513\nLearn more: https://react.dev/warnings/version-mismatch") ); if ( "function" !== @@ -11967,10 +11967,10 @@ batchedUpdatesImpl = function (fn, a) { var roots = new Map(), internals$jscomp$inline_1407 = { bundleType: 0, - version: "19.2.0-native-fb-b480865d-20250513", + version: "19.2.0-native-fb-59440424-20250513", rendererPackageName: "react-native-renderer", currentDispatcherRef: ReactSharedInternals, - reconcilerVersion: "19.2.0-native-fb-b480865d-20250513" + reconcilerVersion: "19.2.0-native-fb-59440424-20250513" }; null !== extraDevToolsConfig && (internals$jscomp$inline_1407.rendererConfig = extraDevToolsConfig); diff --git a/compiled-rn/facebook-fbsource/xplat/js/tools/eslint-plugin-react-hooks/package.json b/compiled-rn/facebook-fbsource/xplat/js/tools/eslint-plugin-react-hooks/package.json index cb973a8f1d..2a5a8d445d 100644 --- a/compiled-rn/facebook-fbsource/xplat/js/tools/eslint-plugin-react-hooks/package.json +++ b/compiled-rn/facebook-fbsource/xplat/js/tools/eslint-plugin-react-hooks/package.json @@ -1,7 +1,7 @@ { "name": "eslint-plugin-react-hooks", "description": "ESLint rules for React Hooks", - "version": "0.0.0-experimental-b480865d-20250513", + "version": "0.0.0-experimental-59440424-20250513", "repository": { "type": "git", "url": "https://github.com/facebook/react.git",