mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Resolve the .default export of a React.lazy as the canonical value (#34906)
For debug purposes this is the value that the `React.lazy` resolves to.
It also lets us look at that value for descriptions like its name.
DiffTrain build for [ec7d9a7249](https://github.com/facebook/react/commit/ec7d9a7249e84e841fbe1e4c22e1be2c0c15dae4)
This commit is contained in:
@@ -1 +1 @@
|
||||
c35f6a3041816613e704772ca9dafb26568d9f89
|
||||
ec7d9a7249e84e841fbe1e4c22e1be2c0c15dae4
|
||||
|
||||
@@ -1 +1 @@
|
||||
c35f6a3041816613e704772ca9dafb26568d9f89
|
||||
ec7d9a7249e84e841fbe1e4c22e1be2c0c15dae4
|
||||
|
||||
@@ -536,23 +536,40 @@ __DEV__ &&
|
||||
}
|
||||
function lazyInitializer(payload) {
|
||||
if (-1 === payload._status) {
|
||||
var resolveDebugValue = null,
|
||||
rejectDebugValue = null;
|
||||
if (enableAsyncDebugInfo) {
|
||||
var ioInfo = payload._ioInfo;
|
||||
null != ioInfo && (ioInfo.start = ioInfo.end = performance.now());
|
||||
null != ioInfo &&
|
||||
((ioInfo.start = ioInfo.end = performance.now()),
|
||||
(ioInfo.value = new Promise(function (resolve, reject) {
|
||||
resolveDebugValue = resolve;
|
||||
rejectDebugValue = reject;
|
||||
})));
|
||||
}
|
||||
ioInfo = payload._result;
|
||||
var thenable = ioInfo();
|
||||
thenable.then(
|
||||
function (moduleObject) {
|
||||
if (0 === payload._status || -1 === payload._status) {
|
||||
payload._status = 1;
|
||||
payload._result = moduleObject;
|
||||
var _ioInfo = payload._ioInfo;
|
||||
null != _ioInfo && (_ioInfo.end = performance.now());
|
||||
void 0 === thenable.status &&
|
||||
((thenable.status = "fulfilled"),
|
||||
(thenable.value = moduleObject));
|
||||
}
|
||||
if (0 === payload._status || -1 === payload._status)
|
||||
if (
|
||||
((payload._status = 1),
|
||||
(payload._result = moduleObject),
|
||||
enableAsyncDebugInfo)
|
||||
) {
|
||||
var _ioInfo = payload._ioInfo;
|
||||
if (null != _ioInfo) {
|
||||
_ioInfo.end = performance.now();
|
||||
var debugValue =
|
||||
null == moduleObject ? void 0 : moduleObject.default;
|
||||
resolveDebugValue(debugValue);
|
||||
_ioInfo.value.status = "fulfilled";
|
||||
_ioInfo.value.value = debugValue;
|
||||
}
|
||||
void 0 === thenable.status &&
|
||||
((thenable.status = "fulfilled"),
|
||||
(thenable.value = moduleObject));
|
||||
}
|
||||
},
|
||||
function (error) {
|
||||
if (0 === payload._status || -1 === payload._status)
|
||||
@@ -562,7 +579,12 @@ __DEV__ &&
|
||||
enableAsyncDebugInfo)
|
||||
) {
|
||||
var _ioInfo2 = payload._ioInfo;
|
||||
null != _ioInfo2 && (_ioInfo2.end = performance.now());
|
||||
null != _ioInfo2 &&
|
||||
((_ioInfo2.end = performance.now()),
|
||||
_ioInfo2.value.then(noop, noop),
|
||||
rejectDebugValue(error),
|
||||
(_ioInfo2.value.status = "rejected"),
|
||||
(_ioInfo2.value.reason = error));
|
||||
void 0 === thenable.status &&
|
||||
((thenable.status = "rejected"), (thenable.reason = error));
|
||||
}
|
||||
@@ -572,7 +594,6 @@ __DEV__ &&
|
||||
enableAsyncDebugInfo &&
|
||||
((ioInfo = payload._ioInfo), null != ioInfo)
|
||||
) {
|
||||
ioInfo.value = thenable;
|
||||
var displayName = thenable.displayName;
|
||||
"string" === typeof displayName && (ioInfo.name = displayName);
|
||||
}
|
||||
@@ -1478,7 +1499,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -536,23 +536,40 @@ __DEV__ &&
|
||||
}
|
||||
function lazyInitializer(payload) {
|
||||
if (-1 === payload._status) {
|
||||
var resolveDebugValue = null,
|
||||
rejectDebugValue = null;
|
||||
if (enableAsyncDebugInfo) {
|
||||
var ioInfo = payload._ioInfo;
|
||||
null != ioInfo && (ioInfo.start = ioInfo.end = performance.now());
|
||||
null != ioInfo &&
|
||||
((ioInfo.start = ioInfo.end = performance.now()),
|
||||
(ioInfo.value = new Promise(function (resolve, reject) {
|
||||
resolveDebugValue = resolve;
|
||||
rejectDebugValue = reject;
|
||||
})));
|
||||
}
|
||||
ioInfo = payload._result;
|
||||
var thenable = ioInfo();
|
||||
thenable.then(
|
||||
function (moduleObject) {
|
||||
if (0 === payload._status || -1 === payload._status) {
|
||||
payload._status = 1;
|
||||
payload._result = moduleObject;
|
||||
var _ioInfo = payload._ioInfo;
|
||||
null != _ioInfo && (_ioInfo.end = performance.now());
|
||||
void 0 === thenable.status &&
|
||||
((thenable.status = "fulfilled"),
|
||||
(thenable.value = moduleObject));
|
||||
}
|
||||
if (0 === payload._status || -1 === payload._status)
|
||||
if (
|
||||
((payload._status = 1),
|
||||
(payload._result = moduleObject),
|
||||
enableAsyncDebugInfo)
|
||||
) {
|
||||
var _ioInfo = payload._ioInfo;
|
||||
if (null != _ioInfo) {
|
||||
_ioInfo.end = performance.now();
|
||||
var debugValue =
|
||||
null == moduleObject ? void 0 : moduleObject.default;
|
||||
resolveDebugValue(debugValue);
|
||||
_ioInfo.value.status = "fulfilled";
|
||||
_ioInfo.value.value = debugValue;
|
||||
}
|
||||
void 0 === thenable.status &&
|
||||
((thenable.status = "fulfilled"),
|
||||
(thenable.value = moduleObject));
|
||||
}
|
||||
},
|
||||
function (error) {
|
||||
if (0 === payload._status || -1 === payload._status)
|
||||
@@ -562,7 +579,12 @@ __DEV__ &&
|
||||
enableAsyncDebugInfo)
|
||||
) {
|
||||
var _ioInfo2 = payload._ioInfo;
|
||||
null != _ioInfo2 && (_ioInfo2.end = performance.now());
|
||||
null != _ioInfo2 &&
|
||||
((_ioInfo2.end = performance.now()),
|
||||
_ioInfo2.value.then(noop, noop),
|
||||
rejectDebugValue(error),
|
||||
(_ioInfo2.value.status = "rejected"),
|
||||
(_ioInfo2.value.reason = error));
|
||||
void 0 === thenable.status &&
|
||||
((thenable.status = "rejected"), (thenable.reason = error));
|
||||
}
|
||||
@@ -572,7 +594,6 @@ __DEV__ &&
|
||||
enableAsyncDebugInfo &&
|
||||
((ioInfo = payload._ioInfo), null != ioInfo)
|
||||
) {
|
||||
ioInfo.value = thenable;
|
||||
var displayName = thenable.displayName;
|
||||
"string" === typeof displayName && (ioInfo.name = displayName);
|
||||
}
|
||||
@@ -1478,7 +1499,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -606,4 +606,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
|
||||
@@ -606,4 +606,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
|
||||
@@ -610,7 +610,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -610,7 +610,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -20371,10 +20371,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.3.0-www-classic-c35f6a30-20251017",
|
||||
version: "19.3.0-www-classic-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -20409,7 +20409,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -20142,10 +20142,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.3.0-www-modern-c35f6a30-20251017",
|
||||
version: "19.3.0-www-modern-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -20180,7 +20180,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -11442,10 +11442,10 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1647 = {
|
||||
bundleType: 0,
|
||||
version: "19.3.0-www-classic-c35f6a30-20251017",
|
||||
version: "19.3.0-www-classic-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1648 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -11471,4 +11471,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
|
||||
@@ -11154,10 +11154,10 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1620 = {
|
||||
bundleType: 0,
|
||||
version: "19.3.0-www-modern-c35f6a30-20251017",
|
||||
version: "19.3.0-www-modern-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1621 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -11183,4 +11183,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
|
||||
@@ -32933,11 +32933,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.3.0-www-classic-c35f6a30-20251017" !== isomorphicReactPackageVersion)
|
||||
if ("19.3.0-www-classic-ec7d9a72-20251019" !== 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.3.0-www-classic-c35f6a30-20251017\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.3.0-www-classic-ec7d9a72-20251019\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -32980,10 +32980,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.3.0-www-classic-c35f6a30-20251017",
|
||||
version: "19.3.0-www-classic-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -33596,7 +33596,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -32718,11 +32718,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.3.0-www-modern-c35f6a30-20251017" !== isomorphicReactPackageVersion)
|
||||
if ("19.3.0-www-modern-ec7d9a72-20251019" !== 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.3.0-www-modern-c35f6a30-20251017\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.3.0-www-modern-ec7d9a72-20251019\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -32765,10 +32765,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.3.0-www-modern-c35f6a30-20251017",
|
||||
version: "19.3.0-www-modern-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -33381,7 +33381,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -19975,14 +19975,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2129 = React.version;
|
||||
if (
|
||||
"19.3.0-www-classic-c35f6a30-20251017" !==
|
||||
"19.3.0-www-classic-ec7d9a72-20251019" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2129
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2129,
|
||||
"19.3.0-www-classic-c35f6a30-20251017"
|
||||
"19.3.0-www-classic-ec7d9a72-20251019"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -20000,10 +20000,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2761 = {
|
||||
bundleType: 0,
|
||||
version: "19.3.0-www-classic-c35f6a30-20251017",
|
||||
version: "19.3.0-www-classic-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2762 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -20432,4 +20432,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
|
||||
@@ -19704,14 +19704,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2119 = React.version;
|
||||
if (
|
||||
"19.3.0-www-modern-c35f6a30-20251017" !==
|
||||
"19.3.0-www-modern-ec7d9a72-20251019" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2119
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2119,
|
||||
"19.3.0-www-modern-c35f6a30-20251017"
|
||||
"19.3.0-www-modern-ec7d9a72-20251019"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19729,10 +19729,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2743 = {
|
||||
bundleType: 0,
|
||||
version: "19.3.0-www-modern-c35f6a30-20251017",
|
||||
version: "19.3.0-www-modern-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2744 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -20161,4 +20161,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
|
||||
@@ -22230,14 +22230,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2439 = React.version;
|
||||
if (
|
||||
"19.3.0-www-classic-c35f6a30-20251017" !==
|
||||
"19.3.0-www-classic-ec7d9a72-20251019" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2439
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2439,
|
||||
"19.3.0-www-classic-c35f6a30-20251017"
|
||||
"19.3.0-www-classic-ec7d9a72-20251019"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -22255,10 +22255,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2441 = {
|
||||
bundleType: 0,
|
||||
version: "19.3.0-www-classic-c35f6a30-20251017",
|
||||
version: "19.3.0-www-classic-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_2441.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -22691,7 +22691,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -22024,14 +22024,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2429 = React.version;
|
||||
if (
|
||||
"19.3.0-www-modern-c35f6a30-20251017" !==
|
||||
"19.3.0-www-modern-ec7d9a72-20251019" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2429
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2429,
|
||||
"19.3.0-www-modern-c35f6a30-20251017"
|
||||
"19.3.0-www-modern-ec7d9a72-20251019"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -22049,10 +22049,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2431 = {
|
||||
bundleType: 0,
|
||||
version: "19.3.0-www-modern-c35f6a30-20251017",
|
||||
version: "19.3.0-www-modern-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_2431.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -22485,7 +22485,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -10305,5 +10305,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.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
})();
|
||||
|
||||
@@ -10234,5 +10234,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.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
})();
|
||||
|
||||
@@ -6996,4 +6996,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.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
|
||||
@@ -6929,4 +6929,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.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
|
||||
@@ -33254,11 +33254,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.3.0-www-classic-c35f6a30-20251017" !== isomorphicReactPackageVersion)
|
||||
if ("19.3.0-www-classic-ec7d9a72-20251019" !== 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.3.0-www-classic-c35f6a30-20251017\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.3.0-www-classic-ec7d9a72-20251019\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -33301,10 +33301,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.3.0-www-classic-c35f6a30-20251017",
|
||||
version: "19.3.0-www-classic-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -34083,5 +34083,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
})();
|
||||
|
||||
@@ -33039,11 +33039,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.3.0-www-modern-c35f6a30-20251017" !== isomorphicReactPackageVersion)
|
||||
if ("19.3.0-www-modern-ec7d9a72-20251019" !== 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.3.0-www-modern-c35f6a30-20251017\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.3.0-www-modern-ec7d9a72-20251019\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -33086,10 +33086,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.3.0-www-modern-c35f6a30-20251017",
|
||||
version: "19.3.0-www-modern-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -33868,5 +33868,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
})();
|
||||
|
||||
@@ -20291,14 +20291,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2158 = React.version;
|
||||
if (
|
||||
"19.3.0-www-classic-c35f6a30-20251017" !==
|
||||
"19.3.0-www-classic-ec7d9a72-20251019" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2158
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2158,
|
||||
"19.3.0-www-classic-c35f6a30-20251017"
|
||||
"19.3.0-www-classic-ec7d9a72-20251019"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -20316,10 +20316,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2795 = {
|
||||
bundleType: 0,
|
||||
version: "19.3.0-www-classic-c35f6a30-20251017",
|
||||
version: "19.3.0-www-classic-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2796 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -20899,4 +20899,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
|
||||
@@ -20020,14 +20020,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2148 = React.version;
|
||||
if (
|
||||
"19.3.0-www-modern-c35f6a30-20251017" !==
|
||||
"19.3.0-www-modern-ec7d9a72-20251019" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2148
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2148,
|
||||
"19.3.0-www-modern-c35f6a30-20251017"
|
||||
"19.3.0-www-modern-ec7d9a72-20251019"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -20045,10 +20045,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2777 = {
|
||||
bundleType: 0,
|
||||
version: "19.3.0-www-modern-c35f6a30-20251017",
|
||||
version: "19.3.0-www-modern-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2778 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -20628,4 +20628,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
|
||||
@@ -23031,7 +23031,7 @@ __DEV__ &&
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -22811,7 +22811,7 @@ __DEV__ &&
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -14253,7 +14253,7 @@ module.exports = function ($$$config) {
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -13970,7 +13970,7 @@ module.exports = function ($$$config) {
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -15710,10 +15710,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.3.0-www-classic-c35f6a30-20251017",
|
||||
version: "19.3.0-www-classic-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-classic-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-classic-ec7d9a72-20251019"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15849,5 +15849,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.3.0-www-classic-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-classic-ec7d9a72-20251019";
|
||||
})();
|
||||
|
||||
@@ -15710,10 +15710,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.3.0-www-modern-c35f6a30-20251017",
|
||||
version: "19.3.0-www-modern-ec7d9a72-20251019",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.3.0-www-modern-c35f6a30-20251017"
|
||||
reconcilerVersion: "19.3.0-www-modern-ec7d9a72-20251019"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15849,5 +15849,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.3.0-www-modern-c35f6a30-20251017";
|
||||
exports.version = "19.3.0-www-modern-ec7d9a72-20251019";
|
||||
})();
|
||||
|
||||
@@ -1 +1 @@
|
||||
19.3.0-www-classic-c35f6a30-20251017
|
||||
19.3.0-www-classic-ec7d9a72-20251019
|
||||
@@ -1 +1 @@
|
||||
19.3.0-www-modern-c35f6a30-20251017
|
||||
19.3.0-www-modern-ec7d9a72-20251019
|
||||
Reference in New Issue
Block a user