mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[Fiber][DevTools] Add scheduleRetry to DevTools Hook (#34635)
When forcing suspense/error we're doing that by scheduling a sync update
on the fiber. Resuspending a Suspense boundary can only happen sync
update so that makes sense. Erroring also forces a sync commit. This
means that no View Transitions fire.
However, unsuspending (and dismissing an error dialog) can be async so
the reveal should be able to be async.
This adds another hook for scheduling using the Retry lane. That way
when you play through a reveal sequence of Suspense boundaries (like
playing through the timeline), it'll run the animations that would've
ran during a loading sequence.
DiffTrain build for [8309724cb4](https://github.com/facebook/react/commit/8309724cb4a497383cc7b3267483ab5c65dad7d6)
This commit is contained in:
@@ -1 +1 @@
|
||||
19.2.0-native-fb-df38ac9a-20250926
|
||||
19.2.0-native-fb-8309724c-20250928
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<d714422991e023d036629a14395408df>>
|
||||
* @generated SignedSource<<e9baa3bf3fdcbef5ff74d24b0679029a>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -404,5 +404,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
})();
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<3cd41ddf713e299864d514194d93b3d8>>
|
||||
* @generated SignedSource<<f9127d9dc8bb4e0e9218aa557beebe3f>>
|
||||
*/
|
||||
|
||||
"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-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<3cd41ddf713e299864d514194d93b3d8>>
|
||||
* @generated SignedSource<<f9127d9dc8bb4e0e9218aa557beebe3f>>
|
||||
*/
|
||||
|
||||
"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-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
|
||||
Vendored
+13
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<c4636e34b3c0593b0fcfaa8d51e9abf6>>
|
||||
* @generated SignedSource<<5069bd64f527764717638f5c409b1e21>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -29869,6 +29869,7 @@ __DEV__ &&
|
||||
overridePropsDeletePath = null,
|
||||
overridePropsRenamePath = null,
|
||||
scheduleUpdate = null,
|
||||
scheduleRetry = null,
|
||||
setErrorHandler = null,
|
||||
setSuspenseHandler = null;
|
||||
overrideHookState = function (fiber, id, path, value) {
|
||||
@@ -29927,6 +29928,11 @@ __DEV__ &&
|
||||
var root = enqueueConcurrentRenderForLane(fiber, 2);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, 2);
|
||||
};
|
||||
scheduleRetry = function (fiber) {
|
||||
var lane = claimNextRetryLane(),
|
||||
root = enqueueConcurrentRenderForLane(fiber, lane);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, lane);
|
||||
};
|
||||
setErrorHandler = function (newShouldErrorImpl) {
|
||||
shouldErrorImpl = newShouldErrorImpl;
|
||||
};
|
||||
@@ -30009,11 +30015,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-df38ac9a-20250926" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-8309724c-20250928" !== 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-df38ac9a-20250926\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-native-fb-8309724c-20250928\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -30050,10 +30056,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -30062,6 +30068,7 @@ __DEV__ &&
|
||||
internals.overridePropsDeletePath = overridePropsDeletePath;
|
||||
internals.overridePropsRenamePath = overridePropsRenamePath;
|
||||
internals.scheduleUpdate = scheduleUpdate;
|
||||
internals.scheduleRetry = scheduleRetry;
|
||||
internals.setErrorHandler = setErrorHandler;
|
||||
internals.setSuspenseHandler = setSuspenseHandler;
|
||||
internals.scheduleRefresh = scheduleRefresh;
|
||||
@@ -30202,5 +30209,5 @@ __DEV__ &&
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
})();
|
||||
|
||||
compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
Vendored
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<cfc9c4c85259a8248d32c8fefb7f264f>>
|
||||
* @generated SignedSource<<4a6d1261996e5f7f2de243130157112e>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -17577,14 +17577,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2058 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-df38ac9a-20250926" !==
|
||||
"19.2.0-native-fb-8309724c-20250928" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2058
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2058,
|
||||
"19.2.0-native-fb-df38ac9a-20250926"
|
||||
"19.2.0-native-fb-8309724c-20250928"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17606,10 +17606,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2635 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2636 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17716,4 +17716,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<26e889c8f1500ad74e468f9ea068cd63>>
|
||||
* @generated SignedSource<<270b54c5208874626d5c97bf4be8fe18>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -19670,14 +19670,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2349 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-df38ac9a-20250926" !==
|
||||
"19.2.0-native-fb-8309724c-20250928" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2349
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2349,
|
||||
"19.2.0-native-fb-df38ac9a-20250926"
|
||||
"19.2.0-native-fb-8309724c-20250928"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19699,10 +19699,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2356 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$330 = 0;
|
||||
@@ -19825,4 +19825,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
|
||||
+13
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a228567d6516b6a9c2a2cbf0a3311b6b>>
|
||||
* @generated SignedSource<<56ea84f50ee86c178c6cb642c0fb252e>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -29925,6 +29925,7 @@ __DEV__ &&
|
||||
overridePropsDeletePath = null,
|
||||
overridePropsRenamePath = null,
|
||||
scheduleUpdate = null,
|
||||
scheduleRetry = null,
|
||||
setErrorHandler = null,
|
||||
setSuspenseHandler = null;
|
||||
overrideHookState = function (fiber, id, path, value) {
|
||||
@@ -29983,6 +29984,11 @@ __DEV__ &&
|
||||
var root = enqueueConcurrentRenderForLane(fiber, 2);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, 2);
|
||||
};
|
||||
scheduleRetry = function (fiber) {
|
||||
var lane = claimNextRetryLane(),
|
||||
root = enqueueConcurrentRenderForLane(fiber, lane);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, lane);
|
||||
};
|
||||
setErrorHandler = function (newShouldErrorImpl) {
|
||||
shouldErrorImpl = newShouldErrorImpl;
|
||||
};
|
||||
@@ -30065,11 +30071,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-df38ac9a-20250926" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-8309724c-20250928" !== 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-df38ac9a-20250926\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-native-fb-8309724c-20250928\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -30106,10 +30112,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -30118,6 +30124,7 @@ __DEV__ &&
|
||||
internals.overridePropsDeletePath = overridePropsDeletePath;
|
||||
internals.overridePropsRenamePath = overridePropsRenamePath;
|
||||
internals.scheduleUpdate = scheduleUpdate;
|
||||
internals.scheduleRetry = scheduleRetry;
|
||||
internals.setErrorHandler = setErrorHandler;
|
||||
internals.setSuspenseHandler = setSuspenseHandler;
|
||||
internals.scheduleRefresh = scheduleRefresh;
|
||||
@@ -30574,7 +30581,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a039cb83c9fbfc059b8011ba4bb98c2c>>
|
||||
* @generated SignedSource<<97b28daee6b15332e29282fec51f4489>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -17588,14 +17588,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2059 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-df38ac9a-20250926" !==
|
||||
"19.2.0-native-fb-8309724c-20250928" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2059
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2059,
|
||||
"19.2.0-native-fb-df38ac9a-20250926"
|
||||
"19.2.0-native-fb-8309724c-20250928"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17617,10 +17617,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2638 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2639 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17880,4 +17880,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<61df1fa8147d11aabce89c49ef4c1730>>
|
||||
* @generated SignedSource<<cb9fd3b82b8663378fe3a46c705d4e98>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -19685,14 +19685,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2350 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-df38ac9a-20250926" !==
|
||||
"19.2.0-native-fb-8309724c-20250928" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2350
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2350,
|
||||
"19.2.0-native-fb-df38ac9a-20250926"
|
||||
"19.2.0-native-fb-8309724c-20250928"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19714,10 +19714,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2357 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$330 = 0;
|
||||
@@ -19993,7 +19993,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+11
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<8845ca641d4c99561d35fd3f517d0bc2>>
|
||||
* @generated SignedSource<<dc243a33bd9770f501a8b2c514547241>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -15811,6 +15811,7 @@ __DEV__ &&
|
||||
overridePropsDeletePath = null,
|
||||
overridePropsRenamePath = null,
|
||||
scheduleUpdate = null,
|
||||
scheduleRetry = null,
|
||||
setErrorHandler = null,
|
||||
setSuspenseHandler = null;
|
||||
overrideHookState = function (fiber, id, path, value) {
|
||||
@@ -15869,6 +15870,11 @@ __DEV__ &&
|
||||
var root = enqueueConcurrentRenderForLane(fiber, 2);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, 2);
|
||||
};
|
||||
scheduleRetry = function (fiber) {
|
||||
var lane = claimNextRetryLane(),
|
||||
root = enqueueConcurrentRenderForLane(fiber, lane);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, lane);
|
||||
};
|
||||
setErrorHandler = function (newShouldErrorImpl) {
|
||||
shouldErrorImpl = newShouldErrorImpl;
|
||||
};
|
||||
@@ -16005,10 +16011,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -16017,6 +16023,7 @@ __DEV__ &&
|
||||
internals.overridePropsDeletePath = overridePropsDeletePath;
|
||||
internals.overridePropsRenamePath = overridePropsRenamePath;
|
||||
internals.scheduleUpdate = scheduleUpdate;
|
||||
internals.scheduleRetry = scheduleRetry;
|
||||
internals.setErrorHandler = setErrorHandler;
|
||||
internals.setSuspenseHandler = setSuspenseHandler;
|
||||
internals.scheduleRefresh = scheduleRefresh;
|
||||
@@ -16153,5 +16160,5 @@ __DEV__ &&
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
})();
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<fb631009894a39771fbff4e74397fe75>>
|
||||
* @generated SignedSource<<726fdd5aea21d0cbb4ef1b35eccdf80b>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -10100,10 +10100,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1492 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1493 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -10239,4 +10239,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<bc5097e080c6c89160d63695971c4731>>
|
||||
* @generated SignedSource<<dd2562fb5a1445afc002ed35dd027948>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -10721,10 +10721,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1273 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$145 = 0;
|
||||
@@ -10875,4 +10875,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<38d8164373c1da932fa9a59aa110a5c8>>
|
||||
* @generated SignedSource<<34ef9e468d34c1e657c29362d31fa609>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1400,7 +1400,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<a574aab7e1b0547ff7016e2bbe1a8ae9>>
|
||||
* @generated SignedSource<<8931cf5ae65c0b1d87947c1103e5613a>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -583,4 +583,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<01cc68ffeff2a366da428dc1af7d7fc1>>
|
||||
* @generated SignedSource<<ebba8bfdd9f792a5d278b9f3c736c67e>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -587,7 +587,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-df38ac9a-20250926";
|
||||
exports.version = "19.2.0-native-fb-8309724c-20250928";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
df38ac9a3b9a5ea43c1d07c00d090a448acfd56c
|
||||
8309724cb4a497383cc7b3267483ab5c65dad7d6
|
||||
|
||||
+10
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<b45b761ead313354c94932b072af517e>>
|
||||
* @generated SignedSource<<071a4137cf3151ec32e7d39b978588a3>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -19537,6 +19537,7 @@ __DEV__ &&
|
||||
overridePropsDeletePath = null,
|
||||
overridePropsRenamePath = null,
|
||||
scheduleUpdate = null,
|
||||
scheduleRetry = null,
|
||||
setErrorHandler = null,
|
||||
setSuspenseHandler = null;
|
||||
overrideHookState = function (fiber, id, path, value) {
|
||||
@@ -19595,6 +19596,11 @@ __DEV__ &&
|
||||
var root = enqueueConcurrentRenderForLane(fiber, 2);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, 2);
|
||||
};
|
||||
scheduleRetry = function (fiber) {
|
||||
var lane = claimNextRetryLane(),
|
||||
root = enqueueConcurrentRenderForLane(fiber, lane);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, lane);
|
||||
};
|
||||
setErrorHandler = function (newShouldErrorImpl) {
|
||||
shouldErrorImpl = newShouldErrorImpl;
|
||||
};
|
||||
@@ -19953,10 +19959,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
@@ -19967,6 +19973,7 @@ __DEV__ &&
|
||||
internals.overridePropsDeletePath = overridePropsDeletePath;
|
||||
internals.overridePropsRenamePath = overridePropsRenamePath;
|
||||
internals.scheduleUpdate = scheduleUpdate;
|
||||
internals.scheduleRetry = scheduleRetry;
|
||||
internals.setErrorHandler = setErrorHandler;
|
||||
internals.setSuspenseHandler = setSuspenseHandler;
|
||||
internals.scheduleRefresh = scheduleRefresh;
|
||||
|
||||
+3
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<7b34b63d4f495dbecfe7898633f4ca20>>
|
||||
* @generated SignedSource<<33ae71f5baa013052874a17a28a89b7c>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -11261,10 +11261,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1314 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1314.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+3
-3
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<467a0dd5b7e2b0b6318a3a2d113522bf>>
|
||||
* @generated SignedSource<<29b0f83eab680f665a631353af749fdb>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -13282,10 +13282,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1598 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1598.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+12
-5
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<eabe1b37063d6edeb5bdcecfec9c07e9>>
|
||||
* @generated SignedSource<<56bae65996335c3dc07c49bfd6029883>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -20173,6 +20173,7 @@ __DEV__ &&
|
||||
overridePropsDeletePath = null,
|
||||
overridePropsRenamePath = null,
|
||||
scheduleUpdate = null,
|
||||
scheduleRetry = null,
|
||||
setErrorHandler = null,
|
||||
setSuspenseHandler = null;
|
||||
overrideHookState = function (fiber, id, path, value) {
|
||||
@@ -20231,6 +20232,11 @@ __DEV__ &&
|
||||
var root = enqueueConcurrentRenderForLane(fiber, 2);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, 2);
|
||||
};
|
||||
scheduleRetry = function (fiber) {
|
||||
var lane = claimNextRetryLane(),
|
||||
root = enqueueConcurrentRenderForLane(fiber, lane);
|
||||
null !== root && scheduleUpdateOnFiber(root, fiber, lane);
|
||||
};
|
||||
setErrorHandler = function (newShouldErrorImpl) {
|
||||
shouldErrorImpl = newShouldErrorImpl;
|
||||
};
|
||||
@@ -20238,11 +20244,11 @@ __DEV__ &&
|
||||
shouldSuspendImpl = newShouldSuspendImpl;
|
||||
};
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-df38ac9a-20250926" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-8309724c-20250928" !== 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-df38ac9a-20250926\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-8309724c-20250928\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -20268,10 +20274,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
@@ -20282,6 +20288,7 @@ __DEV__ &&
|
||||
internals.overridePropsDeletePath = overridePropsDeletePath;
|
||||
internals.overridePropsRenamePath = overridePropsRenamePath;
|
||||
internals.scheduleUpdate = scheduleUpdate;
|
||||
internals.scheduleRetry = scheduleRetry;
|
||||
internals.setErrorHandler = setErrorHandler;
|
||||
internals.setSuspenseHandler = setSuspenseHandler;
|
||||
internals.scheduleRefresh = scheduleRefresh;
|
||||
|
||||
+5
-5
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<faf3fd69f379eb929163568b2fd9016f>>
|
||||
* @generated SignedSource<<e9e95f1760162e5bf2d1a6438be8df70>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -11425,11 +11425,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-df38ac9a-20250926" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-8309724c-20250928" !== 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-df38ac9a-20250926\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-8309724c-20250928\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11479,10 +11479,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1325 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1325.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+5
-5
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<1ed1b050ebf3b332ff8297566a2642c7>>
|
||||
* @generated SignedSource<<638cc243c419fe12e7c20b0552e8fb37>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -13439,11 +13439,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-df38ac9a-20250926" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-8309724c-20250928" !== 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-df38ac9a-20250926\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-8309724c-20250928\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -13493,10 +13493,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1609 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-df38ac9a-20250926",
|
||||
version: "19.2.0-native-fb-8309724c-20250928",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-df38ac9a-20250926"
|
||||
reconcilerVersion: "19.2.0-native-fb-8309724c-20250928"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1609.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "eslint-plugin-react-hooks",
|
||||
"description": "ESLint rules for React Hooks",
|
||||
"version": "0.0.0-experimental-df38ac9a-20250926",
|
||||
"version": "0.0.0-experimental-8309724c-20250928",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/facebook/react.git",
|
||||
|
||||
Reference in New Issue
Block a user