mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Stringify context as SomeContext instead of SomeContext.Provider (#33507)
This matches the change in React 19 to use `<SomeContext>` as the
preferred way to provide a context.
DiffTrain build for [b7e2de632b](https://github.com/facebook/react/commit/b7e2de632b2a160bc09edda1fbb9b8f85a6914e8)
This commit is contained in:
@@ -49,7 +49,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
|
||||
@@ -49,7 +49,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
|
||||
@@ -1 +1 @@
|
||||
6c86e56a0fa3c8f253da133330cd5b7d1d20e7e5
|
||||
b7e2de632b2a160bc09edda1fbb9b8f85a6914e8
|
||||
|
||||
@@ -1 +1 @@
|
||||
6c86e56a0fa3c8f253da133330cd5b7d1d20e7e5
|
||||
b7e2de632b2a160bc09edda1fbb9b8f85a6914e8
|
||||
|
||||
@@ -123,7 +123,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1476,7 +1476,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -123,7 +123,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1476,7 +1476,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -627,4 +627,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
|
||||
@@ -627,4 +627,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
|
||||
@@ -631,7 +631,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -631,7 +631,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -203,7 +203,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -239,7 +239,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -19066,10 +19066,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-6c86e56a-20250611",
|
||||
version: "19.2.0-www-classic-b7e2de63-20250611",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -19103,7 +19103,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -203,7 +203,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -239,7 +239,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -18838,10 +18838,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-6c86e56a-20250611",
|
||||
version: "19.2.0-www-modern-b7e2de63-20250611",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -18875,7 +18875,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -165,7 +165,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -201,7 +201,7 @@ function getComponentNameFromFiber(fiber) {
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -11348,10 +11348,10 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1623 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-6c86e56a-20250611",
|
||||
version: "19.2.0-www-classic-b7e2de63-20250611",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1624 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -11377,4 +11377,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
|
||||
@@ -163,7 +163,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -11064,10 +11064,10 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1596 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-6c86e56a-20250611",
|
||||
version: "19.2.0-www-modern-b7e2de63-20250611",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1597 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -11093,4 +11093,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
|
||||
@@ -1303,7 +1303,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1346,7 +1346,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -31443,11 +31443,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-classic-6c86e56a-20250611" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-classic-b7e2de63-20250611" !== 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-www-classic-6c86e56a-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-classic-b7e2de63-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -31490,10 +31490,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-6c86e56a-20250611",
|
||||
version: "19.2.0-www-classic-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -32093,7 +32093,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1303,7 +1303,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1346,7 +1346,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -31229,11 +31229,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-modern-6c86e56a-20250611" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-modern-b7e2de63-20250611" !== 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-www-modern-6c86e56a-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-modern-b7e2de63-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -31276,10 +31276,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-6c86e56a-20250611",
|
||||
version: "19.2.0-www-modern-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -31879,7 +31879,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -995,7 +995,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1031,7 +1031,7 @@ function getComponentNameFromFiber(fiber) {
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -19540,14 +19540,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2082 = React.version;
|
||||
if (
|
||||
"19.2.0-www-classic-6c86e56a-20250611" !==
|
||||
"19.2.0-www-classic-b7e2de63-20250611" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2082
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2082,
|
||||
"19.2.0-www-classic-6c86e56a-20250611"
|
||||
"19.2.0-www-classic-b7e2de63-20250611"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19565,10 +19565,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2695 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-6c86e56a-20250611",
|
||||
version: "19.2.0-www-classic-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2696 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -19980,4 +19980,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
|
||||
@@ -993,7 +993,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -19273,14 +19273,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2072 = React.version;
|
||||
if (
|
||||
"19.2.0-www-modern-6c86e56a-20250611" !==
|
||||
"19.2.0-www-modern-b7e2de63-20250611" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2072
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2072,
|
||||
"19.2.0-www-modern-6c86e56a-20250611"
|
||||
"19.2.0-www-modern-b7e2de63-20250611"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19298,10 +19298,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2677 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-6c86e56a-20250611",
|
||||
version: "19.2.0-www-modern-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2678 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -19713,4 +19713,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
|
||||
@@ -1108,7 +1108,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1144,7 +1144,7 @@ function getComponentNameFromFiber(fiber) {
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -21522,14 +21522,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2326 = React.version;
|
||||
if (
|
||||
"19.2.0-www-classic-6c86e56a-20250611" !==
|
||||
"19.2.0-www-classic-b7e2de63-20250611" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2326
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2326,
|
||||
"19.2.0-www-classic-6c86e56a-20250611"
|
||||
"19.2.0-www-classic-b7e2de63-20250611"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -21547,10 +21547,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2328 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-6c86e56a-20250611",
|
||||
version: "19.2.0-www-classic-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_2328.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -21965,7 +21965,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1106,7 +1106,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1142,7 +1142,7 @@ function getComponentNameFromFiber(fiber) {
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -21320,14 +21320,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2316 = React.version;
|
||||
if (
|
||||
"19.2.0-www-modern-6c86e56a-20250611" !==
|
||||
"19.2.0-www-modern-b7e2de63-20250611" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2316
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2316,
|
||||
"19.2.0-www-modern-6c86e56a-20250611"
|
||||
"19.2.0-www-modern-b7e2de63-20250611"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -21345,10 +21345,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2318 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-6c86e56a-20250611",
|
||||
version: "19.2.0-www-modern-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_2318.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -21763,7 +21763,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -3805,7 +3805,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -10149,5 +10149,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.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
})();
|
||||
|
||||
@@ -3805,7 +3805,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -10078,5 +10078,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.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
})();
|
||||
|
||||
@@ -3105,7 +3105,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -6855,4 +6855,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.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
|
||||
@@ -3103,7 +3103,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -6787,4 +6787,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.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
|
||||
@@ -3585,7 +3585,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
|
||||
@@ -2949,7 +2949,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
|
||||
@@ -1303,7 +1303,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1346,7 +1346,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -31764,11 +31764,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-classic-6c86e56a-20250611" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-classic-b7e2de63-20250611" !== 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-www-classic-6c86e56a-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-classic-b7e2de63-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -31811,10 +31811,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-6c86e56a-20250611",
|
||||
version: "19.2.0-www-classic-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -32580,5 +32580,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
})();
|
||||
|
||||
@@ -1303,7 +1303,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1346,7 +1346,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -31550,11 +31550,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-modern-6c86e56a-20250611" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-modern-b7e2de63-20250611" !== 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-www-modern-6c86e56a-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-modern-b7e2de63-20250611\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -31597,10 +31597,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-6c86e56a-20250611",
|
||||
version: "19.2.0-www-modern-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -32366,5 +32366,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
})();
|
||||
|
||||
@@ -995,7 +995,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -1031,7 +1031,7 @@ function getComponentNameFromFiber(fiber) {
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -19856,14 +19856,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2111 = React.version;
|
||||
if (
|
||||
"19.2.0-www-classic-6c86e56a-20250611" !==
|
||||
"19.2.0-www-classic-b7e2de63-20250611" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2111
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2111,
|
||||
"19.2.0-www-classic-6c86e56a-20250611"
|
||||
"19.2.0-www-classic-b7e2de63-20250611"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19881,10 +19881,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2729 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-6c86e56a-20250611",
|
||||
version: "19.2.0-www-classic-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2730 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -20447,4 +20447,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
|
||||
@@ -993,7 +993,7 @@ function getComponentNameFromType(type) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -19589,14 +19589,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2101 = React.version;
|
||||
if (
|
||||
"19.2.0-www-modern-6c86e56a-20250611" !==
|
||||
"19.2.0-www-modern-b7e2de63-20250611" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2101
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2101,
|
||||
"19.2.0-www-modern-6c86e56a-20250611"
|
||||
"19.2.0-www-modern-b7e2de63-20250611"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19614,10 +19614,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2711 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-6c86e56a-20250611",
|
||||
version: "19.2.0-www-modern-b7e2de63-20250611",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2712 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -20180,4 +20180,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
|
||||
@@ -296,7 +296,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -332,7 +332,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -21902,7 +21902,7 @@ __DEV__ &&
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -296,7 +296,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -332,7 +332,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -21683,7 +21683,7 @@ __DEV__ &&
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -195,7 +195,7 @@ module.exports = function ($$$config) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -231,7 +231,7 @@ module.exports = function ($$$config) {
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -14111,7 +14111,7 @@ module.exports = function ($$$config) {
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -195,7 +195,7 @@ module.exports = function ($$$config) {
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -13832,7 +13832,7 @@ module.exports = function ($$$config) {
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -295,7 +295,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -331,7 +331,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -15417,10 +15417,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-6c86e56a-20250611",
|
||||
version: "19.2.0-www-classic-b7e2de63-20250611",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-classic-b7e2de63-20250611"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15555,5 +15555,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-classic-b7e2de63-20250611";
|
||||
})();
|
||||
|
||||
@@ -295,7 +295,7 @@ __DEV__ &&
|
||||
case REACT_PORTAL_TYPE:
|
||||
return "Portal";
|
||||
case REACT_CONTEXT_TYPE:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case REACT_CONSUMER_TYPE:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case REACT_FORWARD_REF_TYPE:
|
||||
@@ -331,7 +331,7 @@ __DEV__ &&
|
||||
case 9:
|
||||
return (type._context.displayName || "Context") + ".Consumer";
|
||||
case 10:
|
||||
return (type.displayName || "Context") + ".Provider";
|
||||
return type.displayName || "Context";
|
||||
case 18:
|
||||
return "DehydratedFragment";
|
||||
case 11:
|
||||
@@ -15417,10 +15417,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-6c86e56a-20250611",
|
||||
version: "19.2.0-www-modern-b7e2de63-20250611",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-6c86e56a-20250611"
|
||||
reconcilerVersion: "19.2.0-www-modern-b7e2de63-20250611"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15555,5 +15555,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-6c86e56a-20250611";
|
||||
exports.version = "19.2.0-www-modern-b7e2de63-20250611";
|
||||
})();
|
||||
|
||||
@@ -1 +1 @@
|
||||
19.2.0-www-classic-6c86e56a-20250611
|
||||
19.2.0-www-classic-b7e2de63-20250611
|
||||
@@ -1 +1 @@
|
||||
19.2.0-www-modern-6c86e56a-20250611
|
||||
19.2.0-www-modern-b7e2de63-20250611
|
||||
Reference in New Issue
Block a user