mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Use a shared noop function from shared/noop (#33154)
Stacked on #33150.
We use `noop` functions in a lot of places as place holders. I don't
think there's any real optimizations we get from having separate
instances. This moves them to use a common instance in `shared/noop`.
DiffTrain build for [21fdf308a1](https://github.com/facebook/react/commit/21fdf308a1a01af69c28c00a70086aa1bd4c2411)
This commit is contained in:
@@ -1 +1 @@
|
||||
19.2.0-native-fb-4ca97e48-20250508
|
||||
19.2.0-native-fb-21fdf308-20250508
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<6be1231f0a2cf5263e09a1bc1ecddf64>>
|
||||
* @generated SignedSource<<879734e451df2cdd333c693d19eea634>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -404,5 +404,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
})();
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<90bf4ce482387e50d0dc3389b4019c01>>
|
||||
* @generated SignedSource<<e334c27c92cc40ff972f97bccdb82f2d>>
|
||||
*/
|
||||
|
||||
"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-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
|
||||
Vendored
+2
-2
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<90bf4ce482387e50d0dc3389b4019c01>>
|
||||
* @generated SignedSource<<e334c27c92cc40ff972f97bccdb82f2d>>
|
||||
*/
|
||||
|
||||
"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-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
|
||||
Vendored
+16
-14
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<43b19660149a48f857a91e01876b46dd>>
|
||||
* @generated SignedSource<<601a133d3a33f7f0b400fa8b4d795409>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -85,7 +85,7 @@ __DEV__ &&
|
||||
"Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo()."
|
||||
);
|
||||
}
|
||||
function noop$2() {}
|
||||
function noop() {}
|
||||
function warnForMissingKey() {}
|
||||
function setToSortedString(set) {
|
||||
var array = [];
|
||||
@@ -3246,6 +3246,7 @@ __DEV__ &&
|
||||
? "javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')"
|
||||
: url;
|
||||
}
|
||||
function noop$1() {}
|
||||
function getEventTarget(nativeEvent) {
|
||||
nativeEvent = nativeEvent.target || nativeEvent.srcElement || window;
|
||||
nativeEvent.correspondingUseElement &&
|
||||
@@ -5244,7 +5245,6 @@ __DEV__ &&
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop$3() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
null !== ReactSharedInternals.actQueue &&
|
||||
(ReactSharedInternals.didUsePromise = !0);
|
||||
@@ -5258,7 +5258,7 @@ __DEV__ &&
|
||||
console.error(
|
||||
"A component was suspended by an uncached promise. Creating promises inside a Client Component or hook is not yet supported, except via a Suspense-compatible library or framework."
|
||||
)),
|
||||
thenable.then(noop$3, noop$3),
|
||||
thenable.then(noop$1, noop$1),
|
||||
(thenable = index));
|
||||
switch (thenable.status) {
|
||||
case "fulfilled":
|
||||
@@ -5271,7 +5271,7 @@ __DEV__ &&
|
||||
);
|
||||
default:
|
||||
if ("string" === typeof thenable.status)
|
||||
thenable.then(noop$3, noop$3);
|
||||
thenable.then(noop$1, noop$1);
|
||||
else {
|
||||
thenableState = workInProgressRoot;
|
||||
if (
|
||||
@@ -8169,7 +8169,7 @@ __DEV__ &&
|
||||
pendingState,
|
||||
NotPendingTransition,
|
||||
null === action
|
||||
? noop$2
|
||||
? noop
|
||||
: function () {
|
||||
requestFormReset$1(formFiber);
|
||||
return action(formData);
|
||||
@@ -15911,7 +15911,11 @@ __DEV__ &&
|
||||
16785408 === (suspendedCommitReason & 16785408)
|
||||
)
|
||||
if (
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop }),
|
||||
((suspendedState = {
|
||||
stylesheets: null,
|
||||
count: 0,
|
||||
unsuspend: noop$1
|
||||
}),
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
(suspendedCommitReason = waitForCommitToBeReady()),
|
||||
null !== suspendedCommitReason)
|
||||
@@ -18663,7 +18667,6 @@ __DEV__ &&
|
||||
? !0
|
||||
: !1;
|
||||
}
|
||||
function noop$1() {}
|
||||
function setProp(domElement, tag, key, value, props, prevValue) {
|
||||
switch (key) {
|
||||
case "children":
|
||||
@@ -22140,7 +22143,6 @@ __DEV__ &&
|
||||
? !1
|
||||
: !0;
|
||||
}
|
||||
function noop() {}
|
||||
function suspendResource(hoistableRoot, resource, props) {
|
||||
if (null === suspendedState)
|
||||
throw Error(
|
||||
@@ -26956,11 +26958,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-4ca97e48-20250508" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-21fdf308-20250508" !== 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-4ca97e48-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-native-fb-21fdf308-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26997,10 +26999,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -27138,5 +27140,5 @@ __DEV__ &&
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
})();
|
||||
|
||||
compiled-rn/facebook-fbsource/xplat/js/RKJSModules/vendor/react/react-dom/cjs/ReactDOMClient-prod.js
Vendored
+12
-14
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<ca6f3798ed0c2aa38084c61ca21da62f>>
|
||||
* @generated SignedSource<<ee6f2363f2caf79f0a55f1f40eb6728c>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -1528,6 +1528,7 @@ function sanitizeURL(url) {
|
||||
? "javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')"
|
||||
: url;
|
||||
}
|
||||
function noop$1() {}
|
||||
var currentReplayingEvent = null;
|
||||
function getEventTarget(nativeEvent) {
|
||||
nativeEvent = nativeEvent.target || nativeEvent.srcElement || window;
|
||||
@@ -3391,12 +3392,11 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop$3() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
? thenableState.push(thenable)
|
||||
: index !== thenable && (thenable.then(noop$3, noop$3), (thenable = index));
|
||||
: index !== thenable && (thenable.then(noop$1, noop$1), (thenable = index));
|
||||
switch (thenable.status) {
|
||||
case "fulfilled":
|
||||
return thenable.value;
|
||||
@@ -3407,7 +3407,7 @@ function trackUsedThenable(thenableState, thenable, index) {
|
||||
thenableState)
|
||||
);
|
||||
default:
|
||||
if ("string" === typeof thenable.status) thenable.then(noop$3, noop$3);
|
||||
if ("string" === typeof thenable.status) thenable.then(noop$1, noop$1);
|
||||
else {
|
||||
thenableState = workInProgressRoot;
|
||||
if (null !== thenableState && 100 < thenableState.shellSuspendCounter)
|
||||
@@ -5426,7 +5426,7 @@ function startTransition(fiber, queue, pendingState, finishedState, callback) {
|
||||
(ReactSharedInternals.T = prevTransition);
|
||||
}
|
||||
}
|
||||
function noop$2() {}
|
||||
function noop() {}
|
||||
function startHostTransition(formFiber, pendingState, action, formData) {
|
||||
if (5 !== formFiber.tag) throw Error(formatProdErrorMessage(476));
|
||||
var queue = ensureFormComponentIsStateful(formFiber).queue;
|
||||
@@ -5436,7 +5436,7 @@ function startHostTransition(formFiber, pendingState, action, formData) {
|
||||
pendingState,
|
||||
sharedNotPendingObject,
|
||||
null === action
|
||||
? noop$2
|
||||
? noop
|
||||
: function () {
|
||||
requestFormReset$1(formFiber);
|
||||
return action(formData);
|
||||
@@ -11587,7 +11587,7 @@ function commitRootWhenReady(
|
||||
16785408 === (suspendedCommitReason & 16785408)
|
||||
)
|
||||
if (
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop }),
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop$1 }),
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
(suspendedCommitReason = waitForCommitToBeReady()),
|
||||
null !== suspendedCommitReason)
|
||||
@@ -13757,7 +13757,6 @@ function checkForUnmatchedText(serverText, clientText) {
|
||||
clientText = normalizeMarkupForTextOrAttribute(clientText);
|
||||
return normalizeMarkupForTextOrAttribute(serverText) === clientText ? !0 : !1;
|
||||
}
|
||||
function noop$1() {}
|
||||
function setProp(domElement, tag, key, value, props, prevValue) {
|
||||
switch (key) {
|
||||
case "children":
|
||||
@@ -16138,7 +16137,6 @@ function preloadResource(resource) {
|
||||
: !0;
|
||||
}
|
||||
var suspendedState = null;
|
||||
function noop() {}
|
||||
function suspendResource(hoistableRoot, resource, props) {
|
||||
if (null === suspendedState) throw Error(formatProdErrorMessage(475));
|
||||
var state = suspendedState;
|
||||
@@ -17051,14 +17049,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2015 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-4ca97e48-20250508" !==
|
||||
"19.2.0-native-fb-21fdf308-20250508" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2015
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2015,
|
||||
"19.2.0-native-fb-4ca97e48-20250508"
|
||||
"19.2.0-native-fb-21fdf308-20250508"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17080,10 +17078,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2534 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2535 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17181,4 +17179,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
|
||||
+12
-14
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f7783176ca027ebc8cf6781d4ec2cb48>>
|
||||
* @generated SignedSource<<2970d22405605456b8cf708921aaf2af>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -1606,6 +1606,7 @@ function sanitizeURL(url) {
|
||||
? "javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')"
|
||||
: url;
|
||||
}
|
||||
function noop$1() {}
|
||||
var currentReplayingEvent = null;
|
||||
function getEventTarget(nativeEvent) {
|
||||
nativeEvent = nativeEvent.target || nativeEvent.srcElement || window;
|
||||
@@ -3550,12 +3551,11 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop$3() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
? thenableState.push(thenable)
|
||||
: index !== thenable && (thenable.then(noop$3, noop$3), (thenable = index));
|
||||
: index !== thenable && (thenable.then(noop$1, noop$1), (thenable = index));
|
||||
switch (thenable.status) {
|
||||
case "fulfilled":
|
||||
return thenable.value;
|
||||
@@ -3566,7 +3566,7 @@ function trackUsedThenable(thenableState, thenable, index) {
|
||||
thenableState)
|
||||
);
|
||||
default:
|
||||
if ("string" === typeof thenable.status) thenable.then(noop$3, noop$3);
|
||||
if ("string" === typeof thenable.status) thenable.then(noop$1, noop$1);
|
||||
else {
|
||||
thenableState = workInProgressRoot;
|
||||
if (null !== thenableState && 100 < thenableState.shellSuspendCounter)
|
||||
@@ -5585,7 +5585,7 @@ function startTransition(fiber, queue, pendingState, finishedState, callback) {
|
||||
(ReactSharedInternals.T = prevTransition);
|
||||
}
|
||||
}
|
||||
function noop$2() {}
|
||||
function noop() {}
|
||||
function startHostTransition(formFiber, pendingState, action, formData) {
|
||||
if (5 !== formFiber.tag) throw Error(formatProdErrorMessage(476));
|
||||
var queue = ensureFormComponentIsStateful(formFiber).queue;
|
||||
@@ -5595,7 +5595,7 @@ function startHostTransition(formFiber, pendingState, action, formData) {
|
||||
pendingState,
|
||||
sharedNotPendingObject,
|
||||
null === action
|
||||
? noop$2
|
||||
? noop
|
||||
: function () {
|
||||
requestFormReset$1(formFiber);
|
||||
return action(formData);
|
||||
@@ -12149,7 +12149,7 @@ function commitRootWhenReady(
|
||||
16785408 === (suspendedCommitReason & 16785408)
|
||||
)
|
||||
if (
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop }),
|
||||
((suspendedState = { stylesheets: null, count: 0, unsuspend: noop$1 }),
|
||||
accumulateSuspenseyCommitOnFiber(finishedWork),
|
||||
(suspendedCommitReason = waitForCommitToBeReady()),
|
||||
null !== suspendedCommitReason)
|
||||
@@ -14459,7 +14459,6 @@ function checkForUnmatchedText(serverText, clientText) {
|
||||
clientText = normalizeMarkupForTextOrAttribute(clientText);
|
||||
return normalizeMarkupForTextOrAttribute(serverText) === clientText ? !0 : !1;
|
||||
}
|
||||
function noop$1() {}
|
||||
function setProp(domElement, tag, key, value, props, prevValue) {
|
||||
switch (key) {
|
||||
case "children":
|
||||
@@ -16840,7 +16839,6 @@ function preloadResource(resource) {
|
||||
: !0;
|
||||
}
|
||||
var suspendedState = null;
|
||||
function noop() {}
|
||||
function suspendResource(hoistableRoot, resource, props) {
|
||||
if (null === suspendedState) throw Error(formatProdErrorMessage(475));
|
||||
var state = suspendedState;
|
||||
@@ -17761,14 +17759,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2118 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-4ca97e48-20250508" !==
|
||||
"19.2.0-native-fb-21fdf308-20250508" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2118
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2118,
|
||||
"19.2.0-native-fb-4ca97e48-20250508"
|
||||
"19.2.0-native-fb-21fdf308-20250508"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17790,10 +17788,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2125 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$313 = 0;
|
||||
@@ -17906,4 +17904,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
|
||||
listenToAllSupportedEvents(container);
|
||||
return new ReactDOMHydrationRoot(initialChildren);
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
|
||||
+23
-26
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<ed3628df764c1bf0d20f0adb1cf6e371>>
|
||||
* @generated SignedSource<<2cc7c3faa855ad3ff7853816437d358b>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -85,7 +85,7 @@ __DEV__ &&
|
||||
"Context can only be read while React is rendering. In classes, you can read it in the render method or getDerivedStateFromProps. In function components, you can read it directly in the function body, but not inside Hooks like useReducer() or useMemo()."
|
||||
);
|
||||
}
|
||||
function noop$3() {}
|
||||
function noop() {}
|
||||
function warnForMissingKey() {}
|
||||
function setToSortedString(set) {
|
||||
var array = [];
|
||||
@@ -3254,6 +3254,7 @@ __DEV__ &&
|
||||
? "javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')"
|
||||
: url;
|
||||
}
|
||||
function noop$1() {}
|
||||
function getEventTarget(nativeEvent) {
|
||||
nativeEvent = nativeEvent.target || nativeEvent.srcElement || window;
|
||||
nativeEvent.correspondingUseElement &&
|
||||
@@ -4764,7 +4765,7 @@ __DEV__ &&
|
||||
null != props.onScrollEnd &&
|
||||
(listenToNonDelegatedEvent("scrollend", didHydrate),
|
||||
listenToNonDelegatedEvent("scroll", didHydrate)),
|
||||
null != props.onClick && (didHydrate.onclick = noop$2),
|
||||
null != props.onClick && (didHydrate.onclick = noop$1),
|
||||
(didHydrate = !0))
|
||||
: (didHydrate = !1);
|
||||
didHydrate || throwOnHydrationMismatch(fiber, !0);
|
||||
@@ -5252,7 +5253,6 @@ __DEV__ &&
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop$4() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
null !== ReactSharedInternals.actQueue &&
|
||||
(ReactSharedInternals.didUsePromise = !0);
|
||||
@@ -5266,7 +5266,7 @@ __DEV__ &&
|
||||
console.error(
|
||||
"A component was suspended by an uncached promise. Creating promises inside a Client Component or hook is not yet supported, except via a Suspense-compatible library or framework."
|
||||
)),
|
||||
thenable.then(noop$4, noop$4),
|
||||
thenable.then(noop$1, noop$1),
|
||||
(thenable = index));
|
||||
switch (thenable.status) {
|
||||
case "fulfilled":
|
||||
@@ -5279,7 +5279,7 @@ __DEV__ &&
|
||||
);
|
||||
default:
|
||||
if ("string" === typeof thenable.status)
|
||||
thenable.then(noop$4, noop$4);
|
||||
thenable.then(noop$1, noop$1);
|
||||
else {
|
||||
thenableState = workInProgressRoot;
|
||||
if (
|
||||
@@ -8177,7 +8177,7 @@ __DEV__ &&
|
||||
pendingState,
|
||||
NotPendingTransition,
|
||||
null === action
|
||||
? noop$3
|
||||
? noop
|
||||
: function () {
|
||||
requestFormReset$2(formFiber);
|
||||
return action(formData);
|
||||
@@ -13276,7 +13276,7 @@ __DEV__ &&
|
||||
(stateNode = parent._reactRootContainer),
|
||||
(null !== stateNode && void 0 !== stateNode) ||
|
||||
null !== before.onclick ||
|
||||
(before.onclick = noop$2));
|
||||
(before.onclick = noop$1));
|
||||
enableFragmentRefs &&
|
||||
5 === tag &&
|
||||
null === node.alternate &&
|
||||
@@ -18675,7 +18675,6 @@ __DEV__ &&
|
||||
? !0
|
||||
: !1;
|
||||
}
|
||||
function noop$2() {}
|
||||
function setProp(domElement, tag, key, value, props, prevValue) {
|
||||
switch (key) {
|
||||
case "children":
|
||||
@@ -18876,7 +18875,7 @@ __DEV__ &&
|
||||
null != value &&
|
||||
("function" !== typeof value &&
|
||||
warnForInvalidEventListener(key, value),
|
||||
(domElement.onclick = noop$2));
|
||||
(domElement.onclick = noop$1));
|
||||
break;
|
||||
case "onScroll":
|
||||
null != value &&
|
||||
@@ -19181,7 +19180,7 @@ __DEV__ &&
|
||||
null != value &&
|
||||
("function" !== typeof value &&
|
||||
warnForInvalidEventListener(key, value),
|
||||
(domElement.onclick = noop$2));
|
||||
(domElement.onclick = noop$1));
|
||||
break;
|
||||
case "suppressContentEditableWarning":
|
||||
case "suppressHydrationWarning":
|
||||
@@ -22152,7 +22151,6 @@ __DEV__ &&
|
||||
? !1
|
||||
: !0;
|
||||
}
|
||||
function noop$1() {}
|
||||
function suspendResource(hoistableRoot, resource, props) {
|
||||
if (null === suspendedState)
|
||||
throw Error(
|
||||
@@ -23131,7 +23129,6 @@ __DEV__ &&
|
||||
"You are calling ReactDOMClient.createRoot() on a container that has already been passed to createRoot() before. Instead, call root.render() on the existing root instead if you want to update it."
|
||||
));
|
||||
}
|
||||
function noop() {}
|
||||
function getCrossOriginStringAs(as, input) {
|
||||
if ("font" === as) return "";
|
||||
if ("string" === typeof input)
|
||||
@@ -27017,11 +27014,11 @@ __DEV__ &&
|
||||
};
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-4ca97e48-20250508" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-21fdf308-20250508" !== 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-4ca97e48-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-native-fb-21fdf308-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27058,10 +27055,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -27098,19 +27095,19 @@ __DEV__ &&
|
||||
}
|
||||
var Internals = {
|
||||
d: {
|
||||
f: noop,
|
||||
f: noop$1,
|
||||
r: function () {
|
||||
throw Error(
|
||||
"Invalid form element. requestFormReset must be passed a form that was rendered by React."
|
||||
);
|
||||
},
|
||||
D: noop,
|
||||
C: noop,
|
||||
L: noop,
|
||||
m: noop,
|
||||
X: noop,
|
||||
S: noop,
|
||||
M: noop
|
||||
D: noop$1,
|
||||
C: noop$1,
|
||||
L: noop$1,
|
||||
m: noop$1,
|
||||
X: noop$1,
|
||||
S: noop$1,
|
||||
M: noop$1
|
||||
},
|
||||
p: 0,
|
||||
findDOMNode: null
|
||||
@@ -27515,7 +27512,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+23
-26
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<696b23ded17845c6a44f534bd4b7b6d9>>
|
||||
* @generated SignedSource<<f11f66a86f34cd9a7357cf0404c9b890>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -1528,6 +1528,7 @@ function sanitizeURL(url) {
|
||||
? "javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')"
|
||||
: url;
|
||||
}
|
||||
function noop$1() {}
|
||||
var currentReplayingEvent = null;
|
||||
function getEventTarget(nativeEvent) {
|
||||
nativeEvent = nativeEvent.target || nativeEvent.srcElement || window;
|
||||
@@ -3005,7 +3006,7 @@ function prepareToHydrateHostInstance(fiber) {
|
||||
null != props.onScrollEnd &&
|
||||
(listenToNonDelegatedEvent("scrollend", instance),
|
||||
listenToNonDelegatedEvent("scroll", instance)),
|
||||
null != props.onClick && (instance.onclick = noop$2),
|
||||
null != props.onClick && (instance.onclick = noop$1),
|
||||
(instance = !0))
|
||||
: (instance = !1);
|
||||
instance || throwOnHydrationMismatch(fiber, !0);
|
||||
@@ -3391,12 +3392,11 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop$4() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
? thenableState.push(thenable)
|
||||
: index !== thenable && (thenable.then(noop$4, noop$4), (thenable = index));
|
||||
: index !== thenable && (thenable.then(noop$1, noop$1), (thenable = index));
|
||||
switch (thenable.status) {
|
||||
case "fulfilled":
|
||||
return thenable.value;
|
||||
@@ -3407,7 +3407,7 @@ function trackUsedThenable(thenableState, thenable, index) {
|
||||
thenableState)
|
||||
);
|
||||
default:
|
||||
if ("string" === typeof thenable.status) thenable.then(noop$4, noop$4);
|
||||
if ("string" === typeof thenable.status) thenable.then(noop$1, noop$1);
|
||||
else {
|
||||
thenableState = workInProgressRoot;
|
||||
if (null !== thenableState && 100 < thenableState.shellSuspendCounter)
|
||||
@@ -5426,7 +5426,7 @@ function startTransition(fiber, queue, pendingState, finishedState, callback) {
|
||||
(ReactSharedInternals.T = prevTransition);
|
||||
}
|
||||
}
|
||||
function noop$3() {}
|
||||
function noop() {}
|
||||
function startHostTransition(formFiber, pendingState, action, formData) {
|
||||
if (5 !== formFiber.tag) throw Error(formatProdErrorMessage(476));
|
||||
var queue = ensureFormComponentIsStateful(formFiber).queue;
|
||||
@@ -5436,7 +5436,7 @@ function startHostTransition(formFiber, pendingState, action, formData) {
|
||||
pendingState,
|
||||
sharedNotPendingObject,
|
||||
null === action
|
||||
? noop$3
|
||||
? noop
|
||||
: function () {
|
||||
requestFormReset$2(formFiber);
|
||||
return action(formData);
|
||||
@@ -9270,7 +9270,7 @@ function insertOrAppendPlacementNodeIntoContainer(
|
||||
(stateNode = before._reactRootContainer),
|
||||
(null !== stateNode && void 0 !== stateNode) ||
|
||||
null !== parent.onclick ||
|
||||
(parent.onclick = noop$2));
|
||||
(parent.onclick = noop$1));
|
||||
enableFragmentRefs &&
|
||||
5 === tag &&
|
||||
null === node.alternate &&
|
||||
@@ -13757,7 +13757,6 @@ function checkForUnmatchedText(serverText, clientText) {
|
||||
clientText = normalizeMarkupForTextOrAttribute(clientText);
|
||||
return normalizeMarkupForTextOrAttribute(serverText) === clientText ? !0 : !1;
|
||||
}
|
||||
function noop$2() {}
|
||||
function setProp(domElement, tag, key, value, props, prevValue) {
|
||||
switch (key) {
|
||||
case "children":
|
||||
@@ -13860,7 +13859,7 @@ function setProp(domElement, tag, key, value, props, prevValue) {
|
||||
domElement.setAttribute(key, value);
|
||||
break;
|
||||
case "onClick":
|
||||
null != value && (domElement.onclick = noop$2);
|
||||
null != value && (domElement.onclick = noop$1);
|
||||
break;
|
||||
case "onScroll":
|
||||
null != value && listenToNonDelegatedEvent("scroll", domElement);
|
||||
@@ -14110,7 +14109,7 @@ function setPropOnCustomElement(domElement, tag, key, value, props, prevValue) {
|
||||
listenToNonDelegatedEvent("scroll", domElement));
|
||||
break;
|
||||
case "onClick":
|
||||
null != value && (domElement.onclick = noop$2);
|
||||
null != value && (domElement.onclick = noop$1);
|
||||
break;
|
||||
case "suppressContentEditableWarning":
|
||||
case "suppressHydrationWarning":
|
||||
@@ -16138,7 +16137,6 @@ function preloadResource(resource) {
|
||||
: !0;
|
||||
}
|
||||
var suspendedState = null;
|
||||
function noop$1() {}
|
||||
function suspendResource(hoistableRoot, resource, props) {
|
||||
if (null === suspendedState) throw Error(formatProdErrorMessage(475));
|
||||
var state = suspendedState;
|
||||
@@ -17062,14 +17060,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2016 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-4ca97e48-20250508" !==
|
||||
"19.2.0-native-fb-21fdf308-20250508" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2016
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2016,
|
||||
"19.2.0-native-fb-4ca97e48-20250508"
|
||||
"19.2.0-native-fb-21fdf308-20250508"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17091,10 +17089,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2537 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2538 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17109,7 +17107,6 @@ if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
(injectedHook = hook$jscomp$inline_2538);
|
||||
} catch (err) {}
|
||||
}
|
||||
function noop() {}
|
||||
function getCrossOriginStringAs(as, input) {
|
||||
if ("font" === as) return "";
|
||||
if ("string" === typeof input)
|
||||
@@ -17117,17 +17114,17 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = {
|
||||
d: {
|
||||
f: noop,
|
||||
f: noop$1,
|
||||
r: function () {
|
||||
throw Error(formatProdErrorMessage(522));
|
||||
},
|
||||
D: noop,
|
||||
C: noop,
|
||||
L: noop,
|
||||
m: noop,
|
||||
X: noop,
|
||||
S: noop,
|
||||
M: noop
|
||||
D: noop$1,
|
||||
C: noop$1,
|
||||
L: noop$1,
|
||||
m: noop$1,
|
||||
X: noop$1,
|
||||
S: noop$1,
|
||||
M: noop$1
|
||||
},
|
||||
p: 0,
|
||||
findDOMNode: null
|
||||
@@ -17346,4 +17343,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
|
||||
+23
-26
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f2ab10b84296aa48b60e3b88b7969c9a>>
|
||||
* @generated SignedSource<<38606c08d071500d2026b16ab5ab8102>>
|
||||
*/
|
||||
|
||||
/*
|
||||
@@ -1610,6 +1610,7 @@ function sanitizeURL(url) {
|
||||
? "javascript:throw new Error('React has blocked a javascript: URL as a security precaution.')"
|
||||
: url;
|
||||
}
|
||||
function noop$1() {}
|
||||
var currentReplayingEvent = null;
|
||||
function getEventTarget(nativeEvent) {
|
||||
nativeEvent = nativeEvent.target || nativeEvent.srcElement || window;
|
||||
@@ -3103,7 +3104,7 @@ function prepareToHydrateHostInstance(fiber) {
|
||||
null != props.onScrollEnd &&
|
||||
(listenToNonDelegatedEvent("scrollend", instance),
|
||||
listenToNonDelegatedEvent("scroll", instance)),
|
||||
null != props.onClick && (instance.onclick = noop$2),
|
||||
null != props.onClick && (instance.onclick = noop$1),
|
||||
(instance = !0))
|
||||
: (instance = !1);
|
||||
instance || throwOnHydrationMismatch(fiber, !0);
|
||||
@@ -3554,12 +3555,11 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop$4() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
? thenableState.push(thenable)
|
||||
: index !== thenable && (thenable.then(noop$4, noop$4), (thenable = index));
|
||||
: index !== thenable && (thenable.then(noop$1, noop$1), (thenable = index));
|
||||
switch (thenable.status) {
|
||||
case "fulfilled":
|
||||
return thenable.value;
|
||||
@@ -3570,7 +3570,7 @@ function trackUsedThenable(thenableState, thenable, index) {
|
||||
thenableState)
|
||||
);
|
||||
default:
|
||||
if ("string" === typeof thenable.status) thenable.then(noop$4, noop$4);
|
||||
if ("string" === typeof thenable.status) thenable.then(noop$1, noop$1);
|
||||
else {
|
||||
thenableState = workInProgressRoot;
|
||||
if (null !== thenableState && 100 < thenableState.shellSuspendCounter)
|
||||
@@ -5589,7 +5589,7 @@ function startTransition(fiber, queue, pendingState, finishedState, callback) {
|
||||
(ReactSharedInternals.T = prevTransition);
|
||||
}
|
||||
}
|
||||
function noop$3() {}
|
||||
function noop() {}
|
||||
function startHostTransition(formFiber, pendingState, action, formData) {
|
||||
if (5 !== formFiber.tag) throw Error(formatProdErrorMessage(476));
|
||||
var queue = ensureFormComponentIsStateful(formFiber).queue;
|
||||
@@ -5599,7 +5599,7 @@ function startHostTransition(formFiber, pendingState, action, formData) {
|
||||
pendingState,
|
||||
sharedNotPendingObject,
|
||||
null === action
|
||||
? noop$3
|
||||
? noop
|
||||
: function () {
|
||||
requestFormReset$2(formFiber);
|
||||
return action(formData);
|
||||
@@ -9724,7 +9724,7 @@ function insertOrAppendPlacementNodeIntoContainer(
|
||||
(stateNode = before._reactRootContainer),
|
||||
(null !== stateNode && void 0 !== stateNode) ||
|
||||
null !== parent.onclick ||
|
||||
(parent.onclick = noop$2));
|
||||
(parent.onclick = noop$1));
|
||||
enableFragmentRefs &&
|
||||
5 === tag &&
|
||||
null === node.alternate &&
|
||||
@@ -14463,7 +14463,6 @@ function checkForUnmatchedText(serverText, clientText) {
|
||||
clientText = normalizeMarkupForTextOrAttribute(clientText);
|
||||
return normalizeMarkupForTextOrAttribute(serverText) === clientText ? !0 : !1;
|
||||
}
|
||||
function noop$2() {}
|
||||
function setProp(domElement, tag, key, value, props, prevValue) {
|
||||
switch (key) {
|
||||
case "children":
|
||||
@@ -14566,7 +14565,7 @@ function setProp(domElement, tag, key, value, props, prevValue) {
|
||||
domElement.setAttribute(key, value);
|
||||
break;
|
||||
case "onClick":
|
||||
null != value && (domElement.onclick = noop$2);
|
||||
null != value && (domElement.onclick = noop$1);
|
||||
break;
|
||||
case "onScroll":
|
||||
null != value && listenToNonDelegatedEvent("scroll", domElement);
|
||||
@@ -14816,7 +14815,7 @@ function setPropOnCustomElement(domElement, tag, key, value, props, prevValue) {
|
||||
listenToNonDelegatedEvent("scroll", domElement));
|
||||
break;
|
||||
case "onClick":
|
||||
null != value && (domElement.onclick = noop$2);
|
||||
null != value && (domElement.onclick = noop$1);
|
||||
break;
|
||||
case "suppressContentEditableWarning":
|
||||
case "suppressHydrationWarning":
|
||||
@@ -16844,7 +16843,6 @@ function preloadResource(resource) {
|
||||
: !0;
|
||||
}
|
||||
var suspendedState = null;
|
||||
function noop$1() {}
|
||||
function suspendResource(hoistableRoot, resource, props) {
|
||||
if (null === suspendedState) throw Error(formatProdErrorMessage(475));
|
||||
var state = suspendedState;
|
||||
@@ -17776,14 +17774,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
|
||||
};
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2119 = React.version;
|
||||
if (
|
||||
"19.2.0-native-fb-4ca97e48-20250508" !==
|
||||
"19.2.0-native-fb-21fdf308-20250508" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2119
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2119,
|
||||
"19.2.0-native-fb-4ca97e48-20250508"
|
||||
"19.2.0-native-fb-21fdf308-20250508"
|
||||
)
|
||||
);
|
||||
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17805,10 +17803,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
|
||||
};
|
||||
var internals$jscomp$inline_2126 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$313 = 0;
|
||||
@@ -17838,7 +17836,6 @@ if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
(injectedHook = hook$jscomp$inline_2605);
|
||||
} catch (err) {}
|
||||
}
|
||||
function noop() {}
|
||||
function getCrossOriginStringAs(as, input) {
|
||||
if ("font" === as) return "";
|
||||
if ("string" === typeof input)
|
||||
@@ -17846,17 +17843,17 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = {
|
||||
d: {
|
||||
f: noop,
|
||||
f: noop$1,
|
||||
r: function () {
|
||||
throw Error(formatProdErrorMessage(522));
|
||||
},
|
||||
D: noop,
|
||||
C: noop,
|
||||
L: noop,
|
||||
m: noop,
|
||||
X: noop,
|
||||
S: noop,
|
||||
M: noop
|
||||
D: noop$1,
|
||||
C: noop$1,
|
||||
L: noop$1,
|
||||
m: noop$1,
|
||||
X: noop$1,
|
||||
S: noop$1,
|
||||
M: noop$1
|
||||
},
|
||||
p: 0,
|
||||
findDOMNode: null
|
||||
@@ -18075,7 +18072,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+7
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0727698385cd02e03cb17f887f33ff88>>
|
||||
* @generated SignedSource<<a1a53a1272f475eee0c4071e03e24851>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -2471,6 +2471,7 @@ __DEV__ &&
|
||||
}
|
||||
return !0;
|
||||
}
|
||||
function noop() {}
|
||||
function createThenableState() {
|
||||
return { didWarnAboutUncachedPromise: !1, thenables: [] };
|
||||
}
|
||||
@@ -2478,7 +2479,6 @@ __DEV__ &&
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
null !== ReactSharedInternals.actQueue &&
|
||||
(ReactSharedInternals.didUsePromise = !0);
|
||||
@@ -13458,7 +13458,6 @@ __DEV__ &&
|
||||
}
|
||||
return map;
|
||||
}
|
||||
function defaultOnDefaultTransitionIndicator() {}
|
||||
function toJSON(inst) {
|
||||
if (inst.isHidden) return null;
|
||||
switch (inst.tag) {
|
||||
@@ -15527,7 +15526,8 @@ __DEV__ &&
|
||||
setSuspenseHandler = function (newShouldSuspendImpl) {
|
||||
shouldSuspendImpl = newShouldSuspendImpl;
|
||||
};
|
||||
var act = React.act,
|
||||
var defaultOnDefaultTransitionIndicator = noop,
|
||||
act = React.act,
|
||||
validWrapperTypes = new Set([0, 1, 5, 11, 14, 15, 3]),
|
||||
ReactTestInstance = (function () {
|
||||
function ReactTestInstance(fiber) {
|
||||
@@ -15657,10 +15657,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15805,5 +15805,5 @@ __DEV__ &&
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
})();
|
||||
|
||||
+6
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<25b270370a88cb5910f24b0ffc6b0906>>
|
||||
* @generated SignedSource<<dbd3cea2cfe27a62fa0ad375c65e6097>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1511,6 +1511,7 @@ function shallowEqual(objA, objB) {
|
||||
}
|
||||
return !0;
|
||||
}
|
||||
function noop() {}
|
||||
var SuspenseException = Error(
|
||||
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
||||
),
|
||||
@@ -1525,7 +1526,6 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
@@ -9602,7 +9602,6 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
entangleTransitions(element, current, lane));
|
||||
return lane;
|
||||
}
|
||||
function defaultOnDefaultTransitionIndicator() {}
|
||||
var act = React.act,
|
||||
defaultTestOptions = {
|
||||
createNodeMock: function () {
|
||||
@@ -9897,10 +9896,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1446 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1447 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -9942,7 +9941,7 @@ exports.create = function (element, options) {
|
||||
defaultOnUncaughtError,
|
||||
defaultOnCaughtError,
|
||||
defaultOnRecoverableError,
|
||||
defaultOnDefaultTransitionIndicator
|
||||
noop
|
||||
);
|
||||
if (null == root) throw Error("something went wrong");
|
||||
updateContainer(element, root, null, null);
|
||||
@@ -10036,4 +10035,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
|
||||
+6
-7
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<b8f0e21d586c0758b7138fa79c1b378c>>
|
||||
* @generated SignedSource<<e7ced30467138bd6b27dd72eec487d82>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -1627,6 +1627,7 @@ function shallowEqual(objA, objB) {
|
||||
}
|
||||
return !0;
|
||||
}
|
||||
function noop() {}
|
||||
var SuspenseException = Error(
|
||||
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
||||
),
|
||||
@@ -1641,7 +1642,6 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
@@ -10222,7 +10222,6 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
entangleTransitions(element, current, lane));
|
||||
return lane;
|
||||
}
|
||||
function defaultOnDefaultTransitionIndicator() {}
|
||||
var act = React.act,
|
||||
defaultTestOptions = {
|
||||
createNodeMock: function () {
|
||||
@@ -10517,10 +10516,10 @@ function wrapFiber(fiber) {
|
||||
}
|
||||
var internals$jscomp$inline_1254 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508",
|
||||
getLaneLabelMap: function () {
|
||||
for (
|
||||
var map = new Map(), lane = 1, index$155 = 0;
|
||||
@@ -10577,7 +10576,7 @@ exports.create = function (element, options) {
|
||||
defaultOnUncaughtError,
|
||||
defaultOnCaughtError,
|
||||
defaultOnRecoverableError,
|
||||
defaultOnDefaultTransitionIndicator
|
||||
noop
|
||||
);
|
||||
if (null == root) throw Error("something went wrong");
|
||||
updateContainer(element, root, null, null);
|
||||
@@ -10671,4 +10670,4 @@ exports.unstable_batchedUpdates = function (fn, a) {
|
||||
flushSyncWorkAcrossRoots_impl(0, !0));
|
||||
}
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
|
||||
+4
-5
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<1e5073d3dd4f3b88a5e8535af900ba1f>>
|
||||
* @generated SignedSource<<f5194ad16c4e4fca85d2ca2940df756a>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -59,6 +59,7 @@ __DEV__ &&
|
||||
this.refs = emptyObject;
|
||||
this.updater = updater || ReactNoopUpdateQueue;
|
||||
}
|
||||
function noop() {}
|
||||
function testStringCoercion(value) {
|
||||
return "" + value;
|
||||
}
|
||||
@@ -366,7 +367,6 @@ __DEV__ &&
|
||||
? (checkKeyStringCoercion(element.key), escape("" + element.key))
|
||||
: index.toString(36);
|
||||
}
|
||||
function noop$1() {}
|
||||
function resolveThenable(thenable) {
|
||||
switch (thenable.status) {
|
||||
case "fulfilled":
|
||||
@@ -376,7 +376,7 @@ __DEV__ &&
|
||||
default:
|
||||
switch (
|
||||
("string" === typeof thenable.status
|
||||
? thenable.then(noop$1, noop$1)
|
||||
? thenable.then(noop, noop)
|
||||
: ((thenable.status = "pending"),
|
||||
thenable.then(
|
||||
function (fulfilledValue) {
|
||||
@@ -584,7 +584,6 @@ __DEV__ &&
|
||||
function releaseAsyncTransition() {
|
||||
ReactSharedInternals.asyncTransitions--;
|
||||
}
|
||||
function noop() {}
|
||||
function enqueueTask(task) {
|
||||
if (null === enqueueTaskImpl)
|
||||
try {
|
||||
@@ -1412,7 +1411,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+35
-36
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<8240078643da491fbc312cbddbb217b7>>
|
||||
* @generated SignedSource<<ff62777d309e93d3db4a442e177879f8>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -84,8 +84,9 @@ var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
|
||||
pureComponentPrototype.constructor = PureComponent;
|
||||
assign(pureComponentPrototype, Component.prototype);
|
||||
pureComponentPrototype.isPureReactComponent = !0;
|
||||
var isArrayImpl = Array.isArray,
|
||||
ReactSharedInternals = { H: null, A: null, T: null, S: null },
|
||||
var isArrayImpl = Array.isArray;
|
||||
function noop() {}
|
||||
var ReactSharedInternals = { H: null, A: null, T: null, S: null },
|
||||
hasOwnProperty = Object.prototype.hasOwnProperty;
|
||||
function ReactElement(type, key, self, source, owner, props) {
|
||||
self = props.ref;
|
||||
@@ -140,7 +141,6 @@ function getElementKey(element, index) {
|
||||
? escape("" + element.key)
|
||||
: index.toString(36);
|
||||
}
|
||||
function noop$1() {}
|
||||
function resolveThenable(thenable) {
|
||||
switch (thenable.status) {
|
||||
case "fulfilled":
|
||||
@@ -150,7 +150,7 @@ function resolveThenable(thenable) {
|
||||
default:
|
||||
switch (
|
||||
("string" === typeof thenable.status
|
||||
? thenable.then(noop$1, noop$1)
|
||||
? thenable.then(noop, noop)
|
||||
: ((thenable.status = "pending"),
|
||||
thenable.then(
|
||||
function (fulfilledValue) {
|
||||
@@ -314,36 +314,35 @@ function useMemoCache(size) {
|
||||
return ReactSharedInternals.H.useMemoCache(size);
|
||||
}
|
||||
var reportGlobalError =
|
||||
"function" === typeof reportError
|
||||
? reportError
|
||||
: function (error) {
|
||||
if (
|
||||
"object" === typeof window &&
|
||||
"function" === typeof window.ErrorEvent
|
||||
) {
|
||||
var event = new window.ErrorEvent("error", {
|
||||
bubbles: !0,
|
||||
cancelable: !0,
|
||||
message:
|
||||
"object" === typeof error &&
|
||||
null !== error &&
|
||||
"string" === typeof error.message
|
||||
? String(error.message)
|
||||
: String(error),
|
||||
error: error
|
||||
});
|
||||
if (!window.dispatchEvent(event)) return;
|
||||
} else if (
|
||||
"object" === typeof process &&
|
||||
"function" === typeof process.emit
|
||||
) {
|
||||
process.emit("uncaughtException", error);
|
||||
return;
|
||||
}
|
||||
console.error(error);
|
||||
};
|
||||
function noop() {}
|
||||
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache };
|
||||
"function" === typeof reportError
|
||||
? reportError
|
||||
: function (error) {
|
||||
if (
|
||||
"object" === typeof window &&
|
||||
"function" === typeof window.ErrorEvent
|
||||
) {
|
||||
var event = new window.ErrorEvent("error", {
|
||||
bubbles: !0,
|
||||
cancelable: !0,
|
||||
message:
|
||||
"object" === typeof error &&
|
||||
null !== error &&
|
||||
"string" === typeof error.message
|
||||
? String(error.message)
|
||||
: String(error),
|
||||
error: error
|
||||
});
|
||||
if (!window.dispatchEvent(event)) return;
|
||||
} else if (
|
||||
"object" === typeof process &&
|
||||
"function" === typeof process.emit
|
||||
) {
|
||||
process.emit("uncaughtException", error);
|
||||
return;
|
||||
}
|
||||
console.error(error);
|
||||
},
|
||||
ReactCompilerRuntime = { __proto__: null, c: useMemoCache };
|
||||
exports.Children = {
|
||||
map: mapChildren,
|
||||
forEach: function (children, forEachFunc, forEachContext) {
|
||||
@@ -587,4 +586,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
|
||||
Vendored
+35
-36
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<4ee04691bedbde59df883517763ebce2>>
|
||||
* @generated SignedSource<<fcd8f17b08efdd46d27e88068b883539>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -88,8 +88,9 @@ var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
|
||||
pureComponentPrototype.constructor = PureComponent;
|
||||
assign(pureComponentPrototype, Component.prototype);
|
||||
pureComponentPrototype.isPureReactComponent = !0;
|
||||
var isArrayImpl = Array.isArray,
|
||||
ReactSharedInternals = { H: null, A: null, T: null, S: null },
|
||||
var isArrayImpl = Array.isArray;
|
||||
function noop() {}
|
||||
var ReactSharedInternals = { H: null, A: null, T: null, S: null },
|
||||
hasOwnProperty = Object.prototype.hasOwnProperty;
|
||||
function ReactElement(type, key, self, source, owner, props) {
|
||||
self = props.ref;
|
||||
@@ -144,7 +145,6 @@ function getElementKey(element, index) {
|
||||
? escape("" + element.key)
|
||||
: index.toString(36);
|
||||
}
|
||||
function noop$1() {}
|
||||
function resolveThenable(thenable) {
|
||||
switch (thenable.status) {
|
||||
case "fulfilled":
|
||||
@@ -154,7 +154,7 @@ function resolveThenable(thenable) {
|
||||
default:
|
||||
switch (
|
||||
("string" === typeof thenable.status
|
||||
? thenable.then(noop$1, noop$1)
|
||||
? thenable.then(noop, noop)
|
||||
: ((thenable.status = "pending"),
|
||||
thenable.then(
|
||||
function (fulfilledValue) {
|
||||
@@ -318,36 +318,35 @@ function useMemoCache(size) {
|
||||
return ReactSharedInternals.H.useMemoCache(size);
|
||||
}
|
||||
var reportGlobalError =
|
||||
"function" === typeof reportError
|
||||
? reportError
|
||||
: function (error) {
|
||||
if (
|
||||
"object" === typeof window &&
|
||||
"function" === typeof window.ErrorEvent
|
||||
) {
|
||||
var event = new window.ErrorEvent("error", {
|
||||
bubbles: !0,
|
||||
cancelable: !0,
|
||||
message:
|
||||
"object" === typeof error &&
|
||||
null !== error &&
|
||||
"string" === typeof error.message
|
||||
? String(error.message)
|
||||
: String(error),
|
||||
error: error
|
||||
});
|
||||
if (!window.dispatchEvent(event)) return;
|
||||
} else if (
|
||||
"object" === typeof process &&
|
||||
"function" === typeof process.emit
|
||||
) {
|
||||
process.emit("uncaughtException", error);
|
||||
return;
|
||||
}
|
||||
console.error(error);
|
||||
};
|
||||
function noop() {}
|
||||
var ReactCompilerRuntime = { __proto__: null, c: useMemoCache };
|
||||
"function" === typeof reportError
|
||||
? reportError
|
||||
: function (error) {
|
||||
if (
|
||||
"object" === typeof window &&
|
||||
"function" === typeof window.ErrorEvent
|
||||
) {
|
||||
var event = new window.ErrorEvent("error", {
|
||||
bubbles: !0,
|
||||
cancelable: !0,
|
||||
message:
|
||||
"object" === typeof error &&
|
||||
null !== error &&
|
||||
"string" === typeof error.message
|
||||
? String(error.message)
|
||||
: String(error),
|
||||
error: error
|
||||
});
|
||||
if (!window.dispatchEvent(event)) return;
|
||||
} else if (
|
||||
"object" === typeof process &&
|
||||
"function" === typeof process.emit
|
||||
) {
|
||||
process.emit("uncaughtException", error);
|
||||
return;
|
||||
}
|
||||
console.error(error);
|
||||
},
|
||||
ReactCompilerRuntime = { __proto__: null, c: useMemoCache };
|
||||
exports.Children = {
|
||||
map: mapChildren,
|
||||
forEach: function (children, forEachFunc, forEachContext) {
|
||||
@@ -591,7 +590,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-native-fb-4ca97e48-20250508";
|
||||
exports.version = "19.2.0-native-fb-21fdf308-20250508";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
4ca97e4891b6a664b4c3a183f16b81139655ff57
|
||||
21fdf308a1a01af69c28c00a70086aa1bd4c2411
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<0bd5a6a3a37e6a0854848032962925d0>>
|
||||
* @generated SignedSource<<2627092a746359299d7b34450cfc0a5c>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -3399,6 +3399,7 @@ __DEV__ &&
|
||||
}
|
||||
return !0;
|
||||
}
|
||||
function noop() {}
|
||||
function createThenableState() {
|
||||
return { didWarnAboutUncachedPromise: !1, thenables: [] };
|
||||
}
|
||||
@@ -3406,7 +3407,6 @@ __DEV__ &&
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
null !== ReactSharedInternals.actQueue &&
|
||||
(ReactSharedInternals.didUsePromise = !0);
|
||||
@@ -17479,10 +17479,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<e92986c93cb2ef0bc0f8ba9bf56ebc3e>>
|
||||
* @generated SignedSource<<2205a5e6a16d38374be6a4b8923b09e7>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -2780,6 +2780,7 @@ function shallowEqual(objA, objB) {
|
||||
}
|
||||
return !0;
|
||||
}
|
||||
function noop() {}
|
||||
var SuspenseException = Error(
|
||||
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
||||
),
|
||||
@@ -2794,7 +2795,6 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
@@ -11195,10 +11195,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1255 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1255.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+4
-4
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<476b19fd71cf5e4adf8ef0113ef287fa>>
|
||||
* @generated SignedSource<<8e7f4beecf3ec8db21478a459cbb4487>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -2930,6 +2930,7 @@ function shallowEqual(objA, objB) {
|
||||
}
|
||||
return !0;
|
||||
}
|
||||
function noop() {}
|
||||
var SuspenseException = Error(
|
||||
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
||||
),
|
||||
@@ -2944,7 +2945,6 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
@@ -11899,10 +11899,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1356 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1356.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<72d23e6ef987ae06b304dac6e6d6b204>>
|
||||
* @generated SignedSource<<189b931642f337f5add08e9643cdc278>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -3486,6 +3486,7 @@ __DEV__ &&
|
||||
}
|
||||
return !0;
|
||||
}
|
||||
function noop() {}
|
||||
function createThenableState() {
|
||||
return { didWarnAboutUncachedPromise: !1, thenables: [] };
|
||||
}
|
||||
@@ -3493,7 +3494,6 @@ __DEV__ &&
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
null !== ReactSharedInternals.actQueue &&
|
||||
(ReactSharedInternals.didUsePromise = !0);
|
||||
@@ -17607,11 +17607,11 @@ __DEV__ &&
|
||||
shouldSuspendImpl = newShouldSuspendImpl;
|
||||
};
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-4ca97e48-20250508" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-21fdf308-20250508" !== 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-4ca97e48-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-21fdf308-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -17637,10 +17637,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<f7e39e47f6bd3c0f24a299c6b70a56d6>>
|
||||
* @generated SignedSource<<3e97694ed94f097e717c1fef81c72971>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -2914,6 +2914,7 @@ function shallowEqual(objA, objB) {
|
||||
}
|
||||
return !0;
|
||||
}
|
||||
function noop() {}
|
||||
var SuspenseException = Error(
|
||||
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
||||
),
|
||||
@@ -2928,7 +2929,6 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
@@ -11212,11 +11212,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-4ca97e48-20250508" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-21fdf308-20250508" !== 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-4ca97e48-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-21fdf308-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11266,10 +11266,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1306 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1306.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
+6
-6
@@ -7,7 +7,7 @@
|
||||
* @noflow
|
||||
* @nolint
|
||||
* @preventMunge
|
||||
* @generated SignedSource<<cc3c977a9808af8bd1ea9f6e1224a8e1>>
|
||||
* @generated SignedSource<<a962b98170bb722c8f5ed3fee21212f6>>
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
@@ -3064,6 +3064,7 @@ function shallowEqual(objA, objB) {
|
||||
}
|
||||
return !0;
|
||||
}
|
||||
function noop() {}
|
||||
var SuspenseException = Error(
|
||||
"Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`."
|
||||
),
|
||||
@@ -3078,7 +3079,6 @@ function isThenableResolved(thenable) {
|
||||
thenable = thenable.status;
|
||||
return "fulfilled" === thenable || "rejected" === thenable;
|
||||
}
|
||||
function noop() {}
|
||||
function trackUsedThenable(thenableState, thenable, index) {
|
||||
index = thenableState[index];
|
||||
void 0 === index
|
||||
@@ -11914,11 +11914,11 @@ function updateContainer(element, container, parentComponent, callback) {
|
||||
return lane;
|
||||
}
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-native-fb-4ca97e48-20250508" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-native-fb-21fdf308-20250508" !== 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-4ca97e48-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-native-renderer: 19.2.0-native-fb-21fdf308-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
if (
|
||||
"function" !==
|
||||
@@ -11968,10 +11968,10 @@ batchedUpdatesImpl = function (fn, a) {
|
||||
var roots = new Map(),
|
||||
internals$jscomp$inline_1407 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-native-fb-4ca97e48-20250508",
|
||||
version: "19.2.0-native-fb-21fdf308-20250508",
|
||||
rendererPackageName: "react-native-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-native-fb-4ca97e48-20250508"
|
||||
reconcilerVersion: "19.2.0-native-fb-21fdf308-20250508"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals$jscomp$inline_1407.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "eslint-plugin-react-hooks",
|
||||
"description": "ESLint rules for React Hooks",
|
||||
"version": "0.0.0-experimental-4ca97e48-20250508",
|
||||
"version": "0.0.0-experimental-21fdf308-20250508",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/facebook/react.git",
|
||||
|
||||
Reference in New Issue
Block a user