mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[Flight] Start initial work immediately (#30961)
In a past update we made render and prerender have different work
scheduling behavior because these methods are meant to be used in
differeent environments with different performance tradeoffs in mind.
For instance to prioritize streaming we want to allow as much IO to
complete before triggering a round of work because we want to flush as
few intermediate UI states. With Prerendering there will never be any
intermediate UI states so we can more aggressively render tasks as they
complete.
One thing we've found is that even during render we should ideally kick
off work immediately. This update normalizes the intitial work for
render and prerender to start in a microtask. Choosing microtask over
sync is somewhat arbitrary but there really isn't a reason to make them
different between render/prerender so for now we'll unify them and keep
it as a microtask for now.
This change also updates pinging behavior. If the request is still in
the initial task that spawned it then pings will schedule on the
microtask queue. This allows immediately available async APIs to resolve
right away. The concern with doing this for normal pings is that it
might crowd out IO events but since this is the initial task there would
be IO to already be scheduled.
DiffTrain build for [fc5ef50da8](https://github.com/facebook/react/commit/fc5ef50da8e975a569622d477f1fed54cb8b193d)
This commit is contained in:
@@ -1 +1 @@
|
||||
b75cc078c5fda0d57135523a7a2f4e8d1536472f
|
||||
fc5ef50da8e975a569622d477f1fed54cb8b193d
|
||||
|
||||
@@ -1 +1 @@
|
||||
b75cc078c5fda0d57135523a7a2f4e8d1536472f
|
||||
fc5ef50da8e975a569622d477f1fed54cb8b193d
|
||||
|
||||
@@ -2001,7 +2001,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1981,7 +1981,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
"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-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
|
||||
@@ -665,4 +665,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
|
||||
@@ -669,7 +669,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
"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-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -17121,11 +17121,11 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-b75cc078-20240914",
|
||||
version: "19.0.0-www-classic-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -17159,7 +17159,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -16567,11 +16567,11 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-b75cc078-20240914",
|
||||
version: "19.0.0-www-modern-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -16605,7 +16605,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -10883,13 +10883,13 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1424 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-b75cc078-20240914",
|
||||
version: "19.0.0-www-classic-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: function () {
|
||||
return null;
|
||||
},
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1425 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -10915,4 +10915,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
|
||||
@@ -10397,13 +10397,13 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1416 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-b75cc078-20240914",
|
||||
version: "19.0.0-www-modern-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: function () {
|
||||
return null;
|
||||
},
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1417 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -10429,4 +10429,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
|
||||
@@ -18675,43 +18675,41 @@ __DEV__ &&
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmpm1084463550$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm615502224$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmpm1084463550$1 =
|
||||
containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm615502224$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmpm1084463550$1.defaultView)
|
||||
: $jscomp$optchain$tmpm615502224$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmpm1084463550$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm615502224$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmpm1084463550$1 instanceof
|
||||
$jscomp$optchain$tmpm615502224$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmpm1084463550$1.contentWindow.location
|
||||
.href;
|
||||
typeof $jscomp$optchain$tmpm615502224$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmpm1084463550$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm615502224$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmpm1084463550$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm615502224$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmpm1084463550$1;
|
||||
return $jscomp$optchain$tmpm615502224$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -27877,11 +27875,11 @@ __DEV__ &&
|
||||
: flushSyncErrorInBuildsThatSupportLegacyMode;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-classic-b75cc078-20240914" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-classic-fc5ef50d-20240914" !== 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-b75cc078-20240914\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-classic-fc5ef50d-20240914\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27925,11 +27923,11 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-b75cc078-20240914",
|
||||
version: "19.0.0-www-classic-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -28582,7 +28580,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -18009,41 +18009,41 @@ __DEV__ &&
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp1906584142$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm82189054$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp1906584142$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm82189054$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp1906584142$1.defaultView)
|
||||
: $jscomp$optchain$tmpm82189054$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp1906584142$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm82189054$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmp1906584142$1 instanceof
|
||||
$jscomp$optchain$tmpm82189054$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp1906584142$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm82189054$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp1906584142$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm82189054$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp1906584142$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm82189054$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmp1906584142$1;
|
||||
return $jscomp$optchain$tmpm82189054$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -26992,11 +26992,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-b75cc078-20240914" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-fc5ef50d-20240914" !== 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-b75cc078-20240914\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-fc5ef50d-20240914\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27039,11 +27039,11 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-b75cc078-20240914",
|
||||
version: "19.0.0-www-modern-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -27648,7 +27648,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -13490,36 +13490,41 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp1626644331$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm2146495835$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp1626644331$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm2146495835$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp1626644331$1.defaultView)
|
||||
: $jscomp$optchain$tmpm2146495835$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp1626644331$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1626644331$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmpm2146495835$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmpm2146495835$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp1626644331$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm2146495835$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp1626644331$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm2146495835$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp1626644331$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm2146495835$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmp1626644331$1;
|
||||
return $jscomp$optchain$tmpm2146495835$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -17444,14 +17449,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1768 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-b75cc078-20240914" !==
|
||||
"19.0.0-www-classic-fc5ef50d-20240914" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1768
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1768,
|
||||
"19.0.0-www-classic-b75cc078-20240914"
|
||||
"19.0.0-www-classic-fc5ef50d-20240914"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17496,11 +17501,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2263 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-b75cc078-20240914",
|
||||
version: "19.0.0-www-classic-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2264 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17956,4 +17961,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
|
||||
@@ -12917,36 +12917,36 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp302141691$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmp1238375230$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp302141691$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmp1238375230$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp302141691$1.defaultView)
|
||||
: $jscomp$optchain$tmp1238375230$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp302141691$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp302141691$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmp1238375230$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1238375230$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp302141691$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmp1238375230$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp302141691$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmp1238375230$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp302141691$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1238375230$1 = getActiveElement(containerInfo.document);
|
||||
}
|
||||
return $jscomp$optchain$tmp302141691$1;
|
||||
return $jscomp$optchain$tmp1238375230$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -16820,14 +16820,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1739 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-b75cc078-20240914" !==
|
||||
"19.0.0-www-modern-fc5ef50d-20240914" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1739
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1739,
|
||||
"19.0.0-www-modern-b75cc078-20240914"
|
||||
"19.0.0-www-modern-fc5ef50d-20240914"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -16845,11 +16845,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2254 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-b75cc078-20240914",
|
||||
version: "19.0.0-www-modern-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2255 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17212,4 +17212,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
|
||||
@@ -14270,36 +14270,36 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmpm67989094$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm208419484$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmpm67989094$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm208419484$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmpm67989094$1.defaultView)
|
||||
: $jscomp$optchain$tmpm208419484$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmpm67989094$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm67989094$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmpm208419484$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm208419484$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmpm67989094$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm208419484$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmpm67989094$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm208419484$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmpm67989094$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm208419484$1 = getActiveElement(containerInfo.document);
|
||||
}
|
||||
return $jscomp$optchain$tmpm67989094$1;
|
||||
return $jscomp$optchain$tmpm208419484$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -18224,14 +18224,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1858 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-b75cc078-20240914" !==
|
||||
"19.0.0-www-classic-fc5ef50d-20240914" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1858
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1858,
|
||||
"19.0.0-www-classic-b75cc078-20240914"
|
||||
"19.0.0-www-classic-fc5ef50d-20240914"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -18276,11 +18276,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_1865 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-b75cc078-20240914",
|
||||
version: "19.0.0-www-classic-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_1865.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -18739,7 +18739,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -13680,36 +13680,36 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp1256254996$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm973567564$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp1256254996$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm973567564$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp1256254996$1.defaultView)
|
||||
: $jscomp$optchain$tmpm973567564$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp1256254996$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmp1256254996$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmpm973567564$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm973567564$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp1256254996$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm973567564$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp1256254996$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm973567564$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp1256254996$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm973567564$1 = getActiveElement(containerInfo.document);
|
||||
}
|
||||
return $jscomp$optchain$tmp1256254996$1;
|
||||
return $jscomp$optchain$tmpm973567564$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -17583,14 +17583,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1829 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-b75cc078-20240914" !==
|
||||
"19.0.0-www-modern-fc5ef50d-20240914" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1829
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1829,
|
||||
"19.0.0-www-modern-b75cc078-20240914"
|
||||
"19.0.0-www-modern-fc5ef50d-20240914"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17608,11 +17608,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_1831 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-b75cc078-20240914",
|
||||
version: "19.0.0-www-modern-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_1831.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -17978,7 +17978,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
"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-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
})();
|
||||
|
||||
@@ -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-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
})();
|
||||
|
||||
@@ -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-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
|
||||
@@ -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-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
|
||||
@@ -18898,43 +18898,41 @@ __DEV__ &&
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmpm1836617862$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm671970366$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmpm1836617862$1 =
|
||||
containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm671970366$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmpm1836617862$1.defaultView)
|
||||
: $jscomp$optchain$tmpm671970366$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmpm1836617862$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm671970366$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmpm1836617862$1 instanceof
|
||||
$jscomp$optchain$tmpm671970366$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmpm1836617862$1.contentWindow.location
|
||||
.href;
|
||||
typeof $jscomp$optchain$tmpm671970366$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmpm1836617862$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm671970366$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmpm1836617862$1 = getActiveElement(
|
||||
$jscomp$optchain$tmpm671970366$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmpm1836617862$1;
|
||||
return $jscomp$optchain$tmpm671970366$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -28211,11 +28209,11 @@ __DEV__ &&
|
||||
: flushSyncErrorInBuildsThatSupportLegacyMode;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-classic-b75cc078-20240914" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-classic-fc5ef50d-20240914" !== 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-b75cc078-20240914\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-classic-fc5ef50d-20240914\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -28259,11 +28257,11 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-b75cc078-20240914",
|
||||
version: "19.0.0-www-classic-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -29082,5 +29080,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
})();
|
||||
|
||||
@@ -18232,41 +18232,41 @@ __DEV__ &&
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmp125440354$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmp63692026$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmp125440354$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmp63692026$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmp125440354$1.defaultView)
|
||||
: $jscomp$optchain$tmp63692026$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmp125440354$1 = getActiveElement(
|
||||
$jscomp$optchain$tmp63692026$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmp125440354$1 instanceof
|
||||
$jscomp$optchain$tmp63692026$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmp125440354$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmp63692026$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmp125440354$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmp63692026$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmp125440354$1 = getActiveElement(
|
||||
$jscomp$optchain$tmp63692026$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmp125440354$1;
|
||||
return $jscomp$optchain$tmp63692026$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -27326,11 +27326,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.0.0-www-modern-b75cc078-20240914" !== isomorphicReactPackageVersion)
|
||||
if ("19.0.0-www-modern-fc5ef50d-20240914" !== 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-b75cc078-20240914\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.0.0-www-modern-fc5ef50d-20240914\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -27373,11 +27373,11 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-b75cc078-20240914",
|
||||
version: "19.0.0-www-modern-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -28148,5 +28148,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
})();
|
||||
|
||||
@@ -13762,36 +13762,41 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmpm136133008$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm2050826177$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmpm136133008$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm2050826177$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmpm136133008$1.defaultView)
|
||||
: $jscomp$optchain$tmpm2050826177$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmpm136133008$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm136133008$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmpm2050826177$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
$jscomp$optchain$tmpm2050826177$1 instanceof
|
||||
containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmpm136133008$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm2050826177$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmpm136133008$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm2050826177$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmpm136133008$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm2050826177$1 = getActiveElement(
|
||||
containerInfo.document
|
||||
);
|
||||
}
|
||||
return $jscomp$optchain$tmpm136133008$1;
|
||||
return $jscomp$optchain$tmpm2050826177$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -17773,14 +17778,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1798 = React.version;
|
||||
if (
|
||||
"19.0.0-www-classic-b75cc078-20240914" !==
|
||||
"19.0.0-www-classic-fc5ef50d-20240914" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1798
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1798,
|
||||
"19.0.0-www-classic-b75cc078-20240914"
|
||||
"19.0.0-www-classic-fc5ef50d-20240914"
|
||||
)
|
||||
);
|
||||
function flushSyncFromReconciler(fn) {
|
||||
@@ -17825,11 +17830,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2298 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-classic-b75cc078-20240914",
|
||||
version: "19.0.0-www-classic-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2299 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -18436,4 +18441,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
|
||||
@@ -13189,36 +13189,36 @@ function containsNode(outerNode, innerNode) {
|
||||
: !1;
|
||||
}
|
||||
function getActiveElementDeep(containerInfo) {
|
||||
var $jscomp$optchain$tmpm643457079$1, $jscomp$nullish$tmp0;
|
||||
var $jscomp$optchain$tmpm262067389$1, $jscomp$nullish$tmp0;
|
||||
containerInfo =
|
||||
null !=
|
||||
($jscomp$nullish$tmp0 =
|
||||
null == containerInfo
|
||||
? void 0
|
||||
: null ==
|
||||
($jscomp$optchain$tmpm643457079$1 = containerInfo.ownerDocument)
|
||||
($jscomp$optchain$tmpm262067389$1 = containerInfo.ownerDocument)
|
||||
? void 0
|
||||
: $jscomp$optchain$tmpm643457079$1.defaultView)
|
||||
: $jscomp$optchain$tmpm262067389$1.defaultView)
|
||||
? $jscomp$nullish$tmp0
|
||||
: window;
|
||||
for (
|
||||
$jscomp$optchain$tmpm643457079$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm643457079$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
$jscomp$optchain$tmpm262067389$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm262067389$1 instanceof containerInfo.HTMLIFrameElement;
|
||||
|
||||
) {
|
||||
try {
|
||||
var JSCompiler_inline_result =
|
||||
"string" ===
|
||||
typeof $jscomp$optchain$tmpm643457079$1.contentWindow.location.href;
|
||||
typeof $jscomp$optchain$tmpm262067389$1.contentWindow.location.href;
|
||||
} catch (err) {
|
||||
JSCompiler_inline_result = !1;
|
||||
}
|
||||
if (JSCompiler_inline_result)
|
||||
containerInfo = $jscomp$optchain$tmpm643457079$1.contentWindow;
|
||||
containerInfo = $jscomp$optchain$tmpm262067389$1.contentWindow;
|
||||
else break;
|
||||
$jscomp$optchain$tmpm643457079$1 = getActiveElement(containerInfo.document);
|
||||
$jscomp$optchain$tmpm262067389$1 = getActiveElement(containerInfo.document);
|
||||
}
|
||||
return $jscomp$optchain$tmpm643457079$1;
|
||||
return $jscomp$optchain$tmpm262067389$1;
|
||||
}
|
||||
function hasSelectionCapabilities(elem) {
|
||||
var nodeName = elem && elem.nodeName && elem.nodeName.toLowerCase();
|
||||
@@ -17149,14 +17149,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_1769 = React.version;
|
||||
if (
|
||||
"19.0.0-www-modern-b75cc078-20240914" !==
|
||||
"19.0.0-www-modern-fc5ef50d-20240914" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_1769
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_1769,
|
||||
"19.0.0-www-modern-b75cc078-20240914"
|
||||
"19.0.0-www-modern-fc5ef50d-20240914"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -17174,11 +17174,11 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2289 = {
|
||||
bundleType: 0,
|
||||
version: "19.0.0-www-modern-b75cc078-20240914",
|
||||
version: "19.0.0-www-modern-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getClosestInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2290 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -17692,4 +17692,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
|
||||
@@ -19308,7 +19308,7 @@ __DEV__ &&
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -18702,7 +18702,7 @@ __DEV__ &&
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -12883,7 +12883,7 @@ module.exports = function ($$$config) {
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -12376,7 +12376,7 @@ module.exports = function ($$$config) {
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -15033,11 +15033,11 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-classic-b75cc078-20240914",
|
||||
version: "19.0.0-www-classic-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-classic-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-classic-fc5ef50d-20240914"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15172,5 +15172,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.0.0-www-classic-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-classic-fc5ef50d-20240914";
|
||||
})();
|
||||
|
||||
@@ -15033,11 +15033,11 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.0.0-www-modern-b75cc078-20240914",
|
||||
version: "19.0.0-www-modern-fc5ef50d-20240914",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
findFiberByHostInstance: getInstanceFromNode,
|
||||
reconcilerVersion: "19.0.0-www-modern-b75cc078-20240914"
|
||||
reconcilerVersion: "19.0.0-www-modern-fc5ef50d-20240914"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15172,5 +15172,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.0.0-www-modern-b75cc078-20240914";
|
||||
exports.version = "19.0.0-www-modern-fc5ef50d-20240914";
|
||||
})();
|
||||
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-classic-b75cc078-20240914
|
||||
19.0.0-www-classic-fc5ef50d-20240914
|
||||
@@ -1 +1 @@
|
||||
19.0.0-www-modern-b75cc078-20240914
|
||||
19.0.0-www-modern-fc5ef50d-20240914
|
||||
Reference in New Issue
Block a user