mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Dedupe legacy context warnings (#30299)
Similar to other warnings about legacy APIs, only raise a warning once per component.
DiffTrain build for [39e69dc665](https://github.com/facebook/react/commit/39e69dc665ef6f6dd1f9fe2f63348afb09694eab)
This commit is contained in:
@@ -1 +1 @@
|
||||
b73dcdc04ffa2dd9f2197d796388657d64ad53be
|
||||
39e69dc665ef6f6dd1f9fe2f63348afb09694eab
|
||||
|
||||
@@ -1 +1 @@
|
||||
b73dcdc04ffa2dd9f2197d796388657d64ad53be
|
||||
39e69dc665ef6f6dd1f9fe2f63348afb09694eab
|
||||
|
||||
@@ -1998,7 +1998,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1978,7 +1978,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -669,4 +669,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
|
||||
@@ -669,4 +669,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
|
||||
@@ -673,7 +673,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -673,7 +673,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -16937,14 +16937,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
return null;
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-classic-39e69dc665-20240709",
|
||||
rendererPackageName: "react-art"
|
||||
});
|
||||
var ClippingRectangle = TYPES.CLIPPING_RECTANGLE,
|
||||
|
||||
@@ -6460,15 +6460,19 @@ __DEV__ &&
|
||||
state
|
||||
);
|
||||
Component.childContextTypes &&
|
||||
!didWarnAboutChildContextTypes.has(Component) &&
|
||||
(didWarnAboutChildContextTypes.add(Component),
|
||||
error$jscomp$0(
|
||||
"%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead.",
|
||||
state
|
||||
);
|
||||
));
|
||||
Component.contextTypes &&
|
||||
!didWarnAboutContextTypes.has(Component) &&
|
||||
(didWarnAboutContextTypes.add(Component),
|
||||
error$jscomp$0(
|
||||
"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead.",
|
||||
state
|
||||
);
|
||||
));
|
||||
"function" === typeof _instance.componentShouldUpdate &&
|
||||
error$jscomp$0(
|
||||
"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",
|
||||
@@ -15847,6 +15851,8 @@ __DEV__ &&
|
||||
var didWarnAboutLegacyLifecyclesAndDerivedState = new Set();
|
||||
var didWarnAboutDirectlyAssigningPropsToState = new Set();
|
||||
var didWarnAboutUndefinedDerivedState = new Set();
|
||||
var didWarnAboutContextTypes = new Set();
|
||||
var didWarnAboutChildContextTypes = new Set();
|
||||
var didWarnAboutInvalidateContextType = new Set();
|
||||
var didWarnOnInvalidCallback = new Set();
|
||||
Object.freeze(fakeInternalInstance);
|
||||
@@ -16367,14 +16373,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
return null;
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-modern-39e69dc665-20240709",
|
||||
rendererPackageName: "react-art"
|
||||
});
|
||||
var ClippingRectangle = TYPES.CLIPPING_RECTANGLE,
|
||||
|
||||
@@ -10718,7 +10718,7 @@ var slice = Array.prototype.slice,
|
||||
return null;
|
||||
},
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-classic-39e69dc665-20240709",
|
||||
rendererPackageName: "react-art"
|
||||
};
|
||||
var internals$jscomp$inline_1386 = {
|
||||
@@ -10749,7 +10749,7 @@ var internals$jscomp$inline_1386 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1387 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
|
||||
@@ -10171,7 +10171,7 @@ var slice = Array.prototype.slice,
|
||||
return null;
|
||||
},
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-modern-39e69dc665-20240709",
|
||||
rendererPackageName: "react-art"
|
||||
};
|
||||
var internals$jscomp$inline_1372 = {
|
||||
@@ -10202,7 +10202,7 @@ var internals$jscomp$inline_1372 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1373 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
|
||||
@@ -27373,11 +27373,11 @@ __DEV__ &&
|
||||
: flushSyncErrorInBuildsThatSupportLegacyMode;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-classic-b73dcdc04f-20240709" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-classic-39e69dc665-20240709" !== 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.0.0-www-classic-b73dcdc04f-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-classic-39e69dc665-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27443,12 +27443,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-classic-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -28091,7 +28091,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -8293,15 +8293,19 @@ __DEV__ &&
|
||||
state
|
||||
);
|
||||
Component.childContextTypes &&
|
||||
!didWarnAboutChildContextTypes.has(Component) &&
|
||||
(didWarnAboutChildContextTypes.add(Component),
|
||||
error$jscomp$0(
|
||||
"%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead.",
|
||||
state
|
||||
);
|
||||
));
|
||||
Component.contextTypes &&
|
||||
!didWarnAboutContextTypes.has(Component) &&
|
||||
(didWarnAboutContextTypes.add(Component),
|
||||
error$jscomp$0(
|
||||
"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead.",
|
||||
state
|
||||
);
|
||||
));
|
||||
"function" === typeof _instance.componentShouldUpdate &&
|
||||
error$jscomp$0(
|
||||
"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",
|
||||
@@ -25429,6 +25433,8 @@ __DEV__ &&
|
||||
var didWarnAboutLegacyLifecyclesAndDerivedState = new Set();
|
||||
var didWarnAboutDirectlyAssigningPropsToState = new Set();
|
||||
var didWarnAboutUndefinedDerivedState = new Set();
|
||||
var didWarnAboutContextTypes = new Set();
|
||||
var didWarnAboutChildContextTypes = new Set();
|
||||
var didWarnAboutInvalidateContextType = new Set();
|
||||
var didWarnOnInvalidCallback = new Set();
|
||||
Object.freeze(fakeInternalInstance);
|
||||
@@ -26520,11 +26526,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-b73dcdc04f-20240709" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-39e69dc665-20240709" !== 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.0.0-www-modern-b73dcdc04f-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-39e69dc665-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26589,12 +26595,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-modern-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -27190,7 +27196,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -17163,14 +17163,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1769 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-b73dcdc04f-20240709" !==
|
||||
"19.0.0-www-classic-39e69dc665-20240709" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1769
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1769,
|
||||
"19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
"19.0.0-www-classic-39e69dc665-20240709"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17216,7 +17216,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1776 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-classic-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2220 = {
|
||||
@@ -17246,7 +17246,7 @@ var internals$jscomp$inline_2220 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2221 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17710,4 +17710,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
|
||||
@@ -16478,14 +16478,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1740 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-b73dcdc04f-20240709" !==
|
||||
"19.0.0-www-modern-39e69dc665-20240709" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1740
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1740,
|
||||
"19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
"19.0.0-www-modern-39e69dc665-20240709"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16504,7 +16504,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1742 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-modern-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2211 = {
|
||||
@@ -16534,7 +16534,7 @@ var internals$jscomp$inline_2211 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2212 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -16905,4 +16905,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
|
||||
@@ -17930,14 +17930,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1856 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-b73dcdc04f-20240709" !==
|
||||
"19.0.0-www-classic-39e69dc665-20240709" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1856
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1856,
|
||||
"19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
"19.0.0-www-classic-39e69dc665-20240709"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17983,7 +17983,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1863 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-classic-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
(function (internals) {
|
||||
@@ -18027,7 +18027,7 @@ var devToolsConfig$jscomp$inline_1863 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
});
|
||||
function ReactDOMRoot(internalRoot) {
|
||||
this._internalRoot = internalRoot;
|
||||
@@ -18478,7 +18478,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -17228,14 +17228,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1827 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-b73dcdc04f-20240709" !==
|
||||
"19.0.0-www-modern-39e69dc665-20240709" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1827
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1827,
|
||||
"19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
"19.0.0-www-modern-39e69dc665-20240709"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17254,7 +17254,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1829 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-modern-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
(function (internals) {
|
||||
@@ -17298,7 +17298,7 @@ var devToolsConfig$jscomp$inline_1829 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
});
|
||||
function ReactDOMRoot(internalRoot) {
|
||||
this._internalRoot = internalRoot;
|
||||
@@ -17656,7 +17656,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -8707,5 +8707,5 @@ __DEV__ &&
|
||||
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
||||
);
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
})();
|
||||
|
||||
@@ -4911,15 +4911,19 @@ __DEV__ &&
|
||||
defaultProps
|
||||
);
|
||||
type.childContextTypes &&
|
||||
!didWarnAboutChildContextTypes.has(type) &&
|
||||
(didWarnAboutChildContextTypes.add(type),
|
||||
error$jscomp$2(
|
||||
"%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead.",
|
||||
defaultProps
|
||||
);
|
||||
));
|
||||
type.contextTypes &&
|
||||
!didWarnAboutContextTypes.has(type) &&
|
||||
(didWarnAboutContextTypes.add(type),
|
||||
error$jscomp$2(
|
||||
"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead.",
|
||||
defaultProps
|
||||
);
|
||||
));
|
||||
"function" === typeof newProps.componentShouldUpdate &&
|
||||
error$jscomp$2(
|
||||
"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",
|
||||
@@ -8443,6 +8447,8 @@ __DEV__ &&
|
||||
var didWarnAboutLegacyLifecyclesAndDerivedState = new Set();
|
||||
var didWarnAboutDirectlyAssigningPropsToState = new Set();
|
||||
var didWarnAboutUndefinedDerivedState = new Set();
|
||||
var didWarnAboutContextTypes = new Set();
|
||||
var didWarnAboutChildContextTypes = new Set();
|
||||
var didWarnAboutInvalidateContextType = new Set();
|
||||
var didWarnOnInvalidCallback = new Set();
|
||||
var classComponentUpdater = {
|
||||
@@ -8661,5 +8667,5 @@ __DEV__ &&
|
||||
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
||||
);
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
})();
|
||||
|
||||
@@ -5799,4 +5799,4 @@ exports.renderToString = function (children, options) {
|
||||
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
||||
);
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
|
||||
@@ -5722,4 +5722,4 @@ exports.renderToString = function (children, options) {
|
||||
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
||||
);
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
|
||||
@@ -4694,15 +4694,19 @@ __DEV__ &&
|
||||
defaultProps
|
||||
);
|
||||
type.childContextTypes &&
|
||||
!didWarnAboutChildContextTypes.has(type) &&
|
||||
(didWarnAboutChildContextTypes.add(type),
|
||||
error$jscomp$2(
|
||||
"%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead.",
|
||||
defaultProps
|
||||
);
|
||||
));
|
||||
type.contextTypes &&
|
||||
!didWarnAboutContextTypes.has(type) &&
|
||||
(didWarnAboutContextTypes.add(type),
|
||||
error$jscomp$2(
|
||||
"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead.",
|
||||
defaultProps
|
||||
);
|
||||
));
|
||||
"function" === typeof newProps.componentShouldUpdate &&
|
||||
error$jscomp$2(
|
||||
"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",
|
||||
@@ -7843,6 +7847,8 @@ __DEV__ &&
|
||||
var didWarnAboutLegacyLifecyclesAndDerivedState = new Set();
|
||||
var didWarnAboutDirectlyAssigningPropsToState = new Set();
|
||||
var didWarnAboutUndefinedDerivedState = new Set();
|
||||
var didWarnAboutContextTypes = new Set();
|
||||
var didWarnAboutChildContextTypes = new Set();
|
||||
var didWarnAboutInvalidateContextType = new Set();
|
||||
var didWarnOnInvalidCallback = new Set();
|
||||
var classComponentUpdater = {
|
||||
|
||||
@@ -27707,11 +27707,11 @@ __DEV__ &&
|
||||
: flushSyncErrorInBuildsThatSupportLegacyMode;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-classic-b73dcdc04f-20240709" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-classic-39e69dc665-20240709" !== 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.0.0-www-classic-b73dcdc04f-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-classic-39e69dc665-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27777,12 +27777,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-classic-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -28591,5 +28591,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
})();
|
||||
|
||||
@@ -8334,15 +8334,19 @@ __DEV__ &&
|
||||
state
|
||||
);
|
||||
Component.childContextTypes &&
|
||||
!didWarnAboutChildContextTypes.has(Component) &&
|
||||
(didWarnAboutChildContextTypes.add(Component),
|
||||
error$jscomp$0(
|
||||
"%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead.",
|
||||
state
|
||||
);
|
||||
));
|
||||
Component.contextTypes &&
|
||||
!didWarnAboutContextTypes.has(Component) &&
|
||||
(didWarnAboutContextTypes.add(Component),
|
||||
error$jscomp$0(
|
||||
"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead.",
|
||||
state
|
||||
);
|
||||
));
|
||||
"function" === typeof _instance.componentShouldUpdate &&
|
||||
error$jscomp$0(
|
||||
"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",
|
||||
@@ -25758,6 +25762,8 @@ __DEV__ &&
|
||||
var didWarnAboutLegacyLifecyclesAndDerivedState = new Set();
|
||||
var didWarnAboutDirectlyAssigningPropsToState = new Set();
|
||||
var didWarnAboutUndefinedDerivedState = new Set();
|
||||
var didWarnAboutContextTypes = new Set();
|
||||
var didWarnAboutChildContextTypes = new Set();
|
||||
var didWarnAboutInvalidateContextType = new Set();
|
||||
var didWarnOnInvalidCallback = new Set();
|
||||
Object.freeze(fakeInternalInstance);
|
||||
@@ -26854,11 +26860,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-b73dcdc04f-20240709" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-39e69dc665-20240709" !== 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.0.0-www-modern-b73dcdc04f-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-39e69dc665-20240709\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26923,12 +26929,12 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-modern-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
}) &&
|
||||
canUseDOM &&
|
||||
@@ -27690,5 +27696,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
})();
|
||||
|
||||
@@ -17492,14 +17492,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1799 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-b73dcdc04f-20240709" !==
|
||||
"19.0.0-www-classic-39e69dc665-20240709" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1799
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1799,
|
||||
"19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
"19.0.0-www-classic-39e69dc665-20240709"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17545,7 +17545,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1806 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-classic-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2255 = {
|
||||
@@ -17575,7 +17575,7 @@ var internals$jscomp$inline_2255 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2256 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -18190,4 +18190,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-classic-39e69dc665-20240709";
|
||||
|
||||
@@ -16866,14 +16866,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1770 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-b73dcdc04f-20240709" !==
|
||||
"19.0.0-www-modern-39e69dc665-20240709" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1770
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1770,
|
||||
"19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
"19.0.0-www-modern-39e69dc665-20240709"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16892,7 +16892,7 @@ Internals.Events = [
|
||||
var devToolsConfig$jscomp$inline_1772 = {
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-modern-39e69dc665-20240709",
|
||||
rendererPackageName: "react-dom"
|
||||
};
|
||||
var internals$jscomp$inline_2246 = {
|
||||
@@ -16922,7 +16922,7 @@ var internals$jscomp$inline_2246 = {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2247 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17444,4 +17444,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b73dcdc04f-20240709";
|
||||
exports.version = "19.0.0-www-modern-39e69dc665-20240709";
|
||||
|
||||
@@ -18996,7 +18996,7 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
});
|
||||
};
|
||||
exports.isAlreadyRendering = function () {
|
||||
|
||||
@@ -6677,15 +6677,19 @@ __DEV__ &&
|
||||
state
|
||||
);
|
||||
Component.childContextTypes &&
|
||||
!didWarnAboutChildContextTypes.has(Component) &&
|
||||
(didWarnAboutChildContextTypes.add(Component),
|
||||
error$jscomp$0(
|
||||
"%s uses the legacy childContextTypes API which was removed in React 19. Use React.createContext() instead.",
|
||||
state
|
||||
);
|
||||
));
|
||||
Component.contextTypes &&
|
||||
!didWarnAboutContextTypes.has(Component) &&
|
||||
(didWarnAboutContextTypes.add(Component),
|
||||
error$jscomp$0(
|
||||
"%s uses the legacy contextTypes API which was removed in React 19. Use React.createContext() with static contextType instead.",
|
||||
state
|
||||
);
|
||||
));
|
||||
"function" === typeof _instance.componentShouldUpdate &&
|
||||
error$jscomp$0(
|
||||
"%s has a method called componentShouldUpdate(). Did you mean shouldComponentUpdate()? The name is phrased as a question because the function is expected to return a value.",
|
||||
@@ -17548,6 +17552,8 @@ __DEV__ &&
|
||||
var didWarnAboutLegacyLifecyclesAndDerivedState = new Set();
|
||||
var didWarnAboutDirectlyAssigningPropsToState = new Set();
|
||||
var didWarnAboutUndefinedDerivedState = new Set();
|
||||
var didWarnAboutContextTypes = new Set();
|
||||
var didWarnAboutChildContextTypes = new Set();
|
||||
var didWarnAboutInvalidateContextType = new Set();
|
||||
var didWarnOnInvalidCallback = new Set();
|
||||
Object.freeze(fakeInternalInstance);
|
||||
@@ -18375,7 +18381,7 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
});
|
||||
};
|
||||
exports.isAlreadyRendering = function () {
|
||||
|
||||
@@ -12705,7 +12705,7 @@ module.exports = function ($$$config) {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
};
|
||||
if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)
|
||||
devToolsConfig = !1;
|
||||
|
||||
@@ -12197,7 +12197,7 @@ module.exports = function ($$$config) {
|
||||
scheduleRoot: null,
|
||||
setRefreshHandler: null,
|
||||
getCurrentFiber: null,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
};
|
||||
if ("undefined" === typeof __REACT_DEVTOOLS_GLOBAL_HOOK__)
|
||||
devToolsConfig = !1;
|
||||
|
||||
@@ -14720,14 +14720,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-classic-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-classic-39e69dc665-20240709"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
throw Error("TestRenderer does not support findFiberByHostInstance()");
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-classic-39e69dc665-20240709",
|
||||
rendererPackageName: "react-test-renderer"
|
||||
});
|
||||
exports._Scheduler = Scheduler;
|
||||
|
||||
@@ -14720,14 +14720,14 @@ __DEV__ &&
|
||||
scheduleRoot: scheduleRoot,
|
||||
setRefreshHandler: setRefreshHandler,
|
||||
getCurrentFiber: getCurrentFiberForDevTools,
|
||||
reconcilerVersion: "19.0.0-www-modern-b73dcdc04f-20240709"
|
||||
reconcilerVersion: "19.0.0-www-modern-39e69dc665-20240709"
|
||||
});
|
||||
})({
|
||||
findFiberByHostInstance: function () {
|
||||
throw Error("TestRenderer does not support findFiberByHostInstance()");
|
||||
},
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-b73dcdc04f-20240709",
|
||||
version: "19.0.0-www-modern-39e69dc665-20240709",
|
||||
rendererPackageName: "react-test-renderer"
|
||||
});
|
||||
exports._Scheduler = Scheduler;
|
||||
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-classic-b73dcdc04f-20240709
|
||||
19.0.0-www-classic-39e69dc665-20240709
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-modern-b73dcdc04f-20240709
|
||||
19.0.0-www-modern-39e69dc665-20240709
|
||||
Reference in New Issue
Block a user