mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
feat[react-devtools]: add settings to global hook object (#30564)
Right now we are patching console 2 times: when hook is installed
(before page is loaded) and when backend is connected. Because of this,
even if user had `appendComponentStack` setting enabled, all emitted
error and warning logs are not going to have component stacks appended.
They also won't have component stacks appended retroactively when user
opens browser DevTools (this is when frontend is initialized and
connects to backend).
This behavior adds potential race conditions with LogBox in React
Native, and also unpredictable to the user, because in order to get
component stacks logged you have to open browser DevTools, but by the
time you do it, error or warning log was already emitted.
To solve this, we are going to only patch console in the hook object,
because it is guaranteed to load even before React. Settings are going
to be synchronized with the hook via Bridge, and React DevTools Backend
Host (React Native or browser extension shell) will be responsible for
persisting these settings across the session, this is going to be
implemented in a separate PR.
DiffTrain build for [5e83d9ab3b](https://github.com/facebook/react/commit/5e83d9ab3b3f88853591dff43cd70ee4e5c90c5d)
This commit is contained in:
@@ -1 +1 @@
|
||||
5dcb009760160c085496e943f76090d98528f971
|
||||
5e83d9ab3b3f88853591dff43cd70ee4e5c90c5d
|
||||
|
||||
@@ -1 +1 @@
|
||||
5dcb009760160c085496e943f76090d98528f971
|
||||
5e83d9ab3b3f88853591dff43cd70ee4e5c90c5d
|
||||
|
||||
@@ -2000,7 +2000,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1980,7 +1980,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -665,4 +665,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
|
||||
@@ -665,4 +665,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
|
||||
@@ -669,7 +669,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -669,7 +669,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -17026,11 +17026,11 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-5dcb0097-20240918",
|
||||
version: "19.0.0-www-classic-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -17064,7 +17064,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -16472,11 +16472,11 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-5dcb0097-20240918",
|
||||
version: "19.0.0-www-modern-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -16510,7 +16510,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -10853,13 +10853,13 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1439 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-5dcb0097-20240918",
|
||||
version: "19.0.0-www-classic-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: function () {
|
||||
return null;
|
||||
},
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1440 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -10885,4 +10885,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
|
||||
@@ -10367,13 +10367,13 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1431 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-5dcb0097-20240918",
|
||||
version: "19.0.0-www-modern-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: function () {
|
||||
return null;
|
||||
},
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1432 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -10399,4 +10399,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
|
||||
@@ -18576,41 +18576,41 @@ __DEV__ &&
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmpm70183647$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmp1765074778$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmpm70183647$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmp1765074778$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmpm70183647$1.defaultView)
|
||||
: $jscomp$optchain$tmp1765074778$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmpm70183647$1 = getActiveElement(
|
||||
$jscomp$optchain$tmp1765074778$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmpm70183647$1 instanceof
|
||||
$jscomp$optchain$tmp1765074778$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmpm70183647$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmp1765074778$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmpm70183647$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmp1765074778$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmpm70183647$1 = getActiveElement(
|
||||
$jscomp$optchain$tmp1765074778$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmpm70183647$1;
|
||||
return $jscomp$optchain$tmp1765074778$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -27774,11 +27774,11 @@ __DEV__ &&
|
||||
: flushSyncErrorInBuildsThatSupportLegacyMode;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-classic-5dcb0097-20240918" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-classic-5e83d9ab-20240918" !== 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-5dcb0097-20240918\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-classic-5e83d9ab-20240918\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27822,11 +27822,11 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-5dcb0097-20240918",
|
||||
version: "19.0.0-www-classic-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -28479,7 +28479,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -17910,41 +17910,41 @@ __DEV__ &&
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp225122935$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmp1980021184$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp225122935$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmp1980021184$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp225122935$1.defaultView)
|
||||
: $jscomp$optchain$tmp1980021184$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp225122935$1 = getActiveElement(
|
||||
$jscomp$optchain$tmp1980021184$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmp225122935$1 instanceof
|
||||
$jscomp$optchain$tmp1980021184$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp225122935$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmp1980021184$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp225122935$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmp1980021184$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp225122935$1 = getActiveElement(
|
||||
$jscomp$optchain$tmp1980021184$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmp225122935$1;
|
||||
return $jscomp$optchain$tmp1980021184$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -26891,11 +26891,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-5dcb0097-20240918" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-5e83d9ab-20240918" !== 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-5dcb0097-20240918\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-5e83d9ab-20240918\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -26938,11 +26938,11 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-5dcb0097-20240918",
|
||||
version: "19.0.0-www-modern-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -27547,7 +27547,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -13456,36 +13456,36 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp1550452178$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm302065798$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp1550452178$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm302065798$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp1550452178$1.defaultView)
|
||||
: $jscomp$optchain$tmpm302065798$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp1550452178$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1550452178$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmpm302065798$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm302065798$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp1550452178$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm302065798$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp1550452178$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm302065798$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp1550452178$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm302065798$1 = getActiveElement(containerInfo.document);
|
||||
}
|
||||
return $jscomp$optchain$tmp1550452178$1;
|
||||
return $jscomp$optchain$tmpm302065798$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -17410,14 +17410,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1768 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-5dcb0097-20240918" !==
|
||||
"19.0.0-www-classic-5e83d9ab-20240918" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1768
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1768,
|
||||
"19.0.0-www-classic-5dcb0097-20240918"
|
||||
"19.0.0-www-classic-5e83d9ab-20240918"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17462,11 +17462,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2276 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-5dcb0097-20240918",
|
||||
version: "19.0.0-www-classic-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2277 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17922,4 +17922,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
|
||||
@@ -12883,41 +12883,41 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmpm1128607364$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm1799151757$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmpm1128607364$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm1799151757$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmpm1128607364$1.defaultView)
|
||||
: $jscomp$optchain$tmpm1799151757$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmpm1128607364$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm1799151757$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmpm1128607364$1 instanceof
|
||||
$jscomp$optchain$tmpm1799151757$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmpm1128607364$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm1799151757$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmpm1128607364$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm1799151757$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmpm1128607364$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm1799151757$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmpm1128607364$1;
|
||||
return $jscomp$optchain$tmpm1799151757$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -16791,14 +16791,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1739 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-5dcb0097-20240918" !==
|
||||
"19.0.0-www-modern-5e83d9ab-20240918" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1739
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1739,
|
||||
"19.0.0-www-modern-5dcb0097-20240918"
|
||||
"19.0.0-www-modern-5e83d9ab-20240918"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16816,11 +16816,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2267 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-5dcb0097-20240918",
|
||||
version: "19.0.0-www-modern-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2268 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17183,4 +17183,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
|
||||
@@ -14181,36 +14181,35 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp1004617619$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmp61475057$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp1004617619$1 = containerInfo.ownerDocument)
|
||||
: null == ($jscomp$optchain$tmp61475057$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp1004617619$1.defaultView)
|
||||
: $jscomp$optchain$tmp61475057$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp1004617619$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1004617619$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmp61475057$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp61475057$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp1004617619$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmp61475057$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp1004617619$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmp61475057$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp1004617619$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp61475057$1 = getActiveElement(containerInfo.document);
|
||||
}
|
||||
return $jscomp$optchain$tmp1004617619$1;
|
||||
return $jscomp$optchain$tmp61475057$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -18135,14 +18134,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1862 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-5dcb0097-20240918" !==
|
||||
"19.0.0-www-classic-5e83d9ab-20240918" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1862
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1862,
|
||||
"19.0.0-www-classic-5dcb0097-20240918"
|
||||
"19.0.0-www-classic-5e83d9ab-20240918"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -18187,11 +18186,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_1869 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-5dcb0097-20240918",
|
||||
version: "19.0.0-www-classic-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_1869.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -18650,7 +18649,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -13591,36 +13591,36 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp1978476690$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm870840843$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp1978476690$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm870840843$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp1978476690$1.defaultView)
|
||||
: $jscomp$optchain$tmpm870840843$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp1978476690$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1978476690$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmpm870840843$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm870840843$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp1978476690$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm870840843$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp1978476690$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm870840843$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp1978476690$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm870840843$1 = getActiveElement(containerInfo.document);
|
||||
}
|
||||
return $jscomp$optchain$tmp1978476690$1;
|
||||
return $jscomp$optchain$tmpm870840843$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -17494,14 +17494,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1833 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-5dcb0097-20240918" !==
|
||||
"19.0.0-www-modern-5e83d9ab-20240918" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1833
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1833,
|
||||
"19.0.0-www-modern-5dcb0097-20240918"
|
||||
"19.0.0-www-modern-5e83d9ab-20240918"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17519,11 +17519,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_1835 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-5dcb0097-20240918",
|
||||
version: "19.0.0-www-modern-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_1835.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -17889,7 +17889,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -8986,5 +8986,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-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
})();
|
||||
|
||||
@@ -8804,5 +8804,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-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
})();
|
||||
|
||||
@@ -5911,4 +5911,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-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
|
||||
@@ -5823,4 +5823,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-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
|
||||
@@ -18799,41 +18799,41 @@ __DEV__ &&
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp1500329965$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm461677163$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp1500329965$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm461677163$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp1500329965$1.defaultView)
|
||||
: $jscomp$optchain$tmpm461677163$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp1500329965$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm461677163$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmp1500329965$1 instanceof
|
||||
$jscomp$optchain$tmpm461677163$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp1500329965$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm461677163$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp1500329965$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm461677163$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp1500329965$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm461677163$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmp1500329965$1;
|
||||
return $jscomp$optchain$tmpm461677163$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -28108,11 +28108,11 @@ __DEV__ &&
|
||||
: flushSyncErrorInBuildsThatSupportLegacyMode;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-classic-5dcb0097-20240918" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-classic-5e83d9ab-20240918" !== 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-5dcb0097-20240918\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-classic-5e83d9ab-20240918\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -28156,11 +28156,11 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-5dcb0097-20240918",
|
||||
version: "19.0.0-www-classic-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -28979,5 +28979,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
})();
|
||||
|
||||
@@ -18133,41 +18133,41 @@ __DEV__ &&
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmpm395357926$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmp1045709209$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmpm395357926$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmp1045709209$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmpm395357926$1.defaultView)
|
||||
: $jscomp$optchain$tmp1045709209$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmpm395357926$1 = getActiveElement(
|
||||
$jscomp$optchain$tmp1045709209$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmpm395357926$1 instanceof
|
||||
$jscomp$optchain$tmp1045709209$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmpm395357926$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmp1045709209$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmpm395357926$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmp1045709209$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmpm395357926$1 = getActiveElement(
|
||||
$jscomp$optchain$tmp1045709209$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmpm395357926$1;
|
||||
return $jscomp$optchain$tmp1045709209$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -27225,11 +27225,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-5dcb0097-20240918" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-5e83d9ab-20240918" !== 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-5dcb0097-20240918\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-5e83d9ab-20240918\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27272,11 +27272,11 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-5dcb0097-20240918",
|
||||
version: "19.0.0-www-modern-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -28047,5 +28047,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
})();
|
||||
|
||||
@@ -13728,36 +13728,41 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp558384781$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm2142846790$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp558384781$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm2142846790$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp558384781$1.defaultView)
|
||||
: $jscomp$optchain$tmpm2142846790$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp558384781$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp558384781$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmpm2142846790$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmpm2142846790$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp558384781$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm2142846790$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp558384781$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm2142846790$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp558384781$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm2142846790$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmp558384781$1;
|
||||
return $jscomp$optchain$tmpm2142846790$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -17739,14 +17744,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1798 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-5dcb0097-20240918" !==
|
||||
"19.0.0-www-classic-5e83d9ab-20240918" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1798
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1798,
|
||||
"19.0.0-www-classic-5dcb0097-20240918"
|
||||
"19.0.0-www-classic-5e83d9ab-20240918"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17791,11 +17796,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2311 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-5dcb0097-20240918",
|
||||
version: "19.0.0-www-classic-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2312 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -18402,4 +18407,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
|
||||
@@ -13155,36 +13155,36 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp1770632366$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmp1781946534$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp1770632366$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmp1781946534$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp1770632366$1.defaultView)
|
||||
: $jscomp$optchain$tmp1781946534$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp1770632366$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1770632366$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmp1781946534$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1781946534$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp1770632366$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmp1781946534$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp1770632366$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmp1781946534$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp1770632366$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1781946534$1 = getActiveElement(containerInfo.document);
|
||||
}
|
||||
return $jscomp$optchain$tmp1770632366$1;
|
||||
return $jscomp$optchain$tmp1781946534$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -17115,14 +17115,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1769 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-5dcb0097-20240918" !==
|
||||
"19.0.0-www-modern-5e83d9ab-20240918" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1769
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1769,
|
||||
"19.0.0-www-modern-5dcb0097-20240918"
|
||||
"19.0.0-www-modern-5e83d9ab-20240918"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17140,11 +17140,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2302 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-5dcb0097-20240918",
|
||||
version: "19.0.0-www-modern-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2303 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17658,4 +17658,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
|
||||
@@ -19212,7 +19212,7 @@ __DEV__ &&
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -18606,7 +18606,7 @@ __DEV__ &&
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -12849,7 +12849,7 @@ module.exports = function ($$$config) {
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -12342,7 +12342,7 @@ module.exports = function ($$$config) {
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -14974,11 +14974,11 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-5dcb0097-20240918",
|
||||
version: "19.0.0-www-classic-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-classic-5e83d9ab-20240918"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15113,5 +15113,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-classic-5e83d9ab-20240918";
|
||||
})();
|
||||
|
||||
@@ -14974,11 +14974,11 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-5dcb0097-20240918",
|
||||
version: "19.0.0-www-modern-5e83d9ab-20240918",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-5dcb0097-20240918"
|
||||
reconcilerVersion: "19.0.0-www-modern-5e83d9ab-20240918"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15113,5 +15113,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-5dcb0097-20240918";
|
||||
exports.version = "19.0.0-www-modern-5e83d9ab-20240918";
|
||||
})();
|
||||
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-classic-5dcb0097-20240918
|
||||
19.0.0-www-classic-5e83d9ab-20240918
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-modern-5dcb0097-20240918
|
||||
19.0.0-www-modern-5e83d9ab-20240918
|
||||
Reference in New Issue
Block a user