mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[Flight][Fiber] Encode owner in the error payload in dev and use it as the Error's Task (#34460)
When we report an error we typically log the owner stack of the thing
that caught the error. Similarly we restore the `console.createTask`
scope of the catching component when we call `reportError` or
`console.error`.
We also have a special case if something throws during reconciliation
which uses the Server Component task as far as we got before we threw.
https://github.com/facebook/react/blob/main/packages/react-reconciler/src/ReactChildFiber.js#L1952-L1960
Chrome has since fixed it (on our request) that the Error constructor
snapshots the Task at the time the constructor was created and logs that
in `reportError`. This is a good thing since it means we get a coherent
stack. Unfortunately, it means that the fake Errors that we create in
Flight Client gets a snapshot of the task where they were created so
when they're reported in the console they get the root Task instead of
the Task of the handler of the error.
Ideally we'd transfer the Task from the server and restore it. However,
since we don't instrument the Error object to snapshot the owner and we
can't read the native Task (if it's even enabled on the server) we don't
actually have a correct snapshot to transfer for a Server Component
Error. However, we can use the parent's task for where the error was
observed by Flight Server and then encode that as a pseudo owner of the
Error.
Then we use this owner as the Task which the Error is created within.
Now the client snapshots that Task which is reported by `reportError` so
now we have an async stack for Server Component errors again. (Note that
this owner may differ from the one observed by `captureOwnerStack` which
gets the nearest Server Component from where it was caught. We could
attach the owner to the Error object and use that owner when calling
`onCaughtError`/`onUncaughtError`).
Before:
<img width="911" height="57" alt="Screenshot 2025-09-10 at 10 57 54 AM"
src="https://github.com/user-attachments/assets/0446ef96-fad9-4e17-8a9a-d89c334233ec"
/>
After:
<img width="910" height="128" alt="Screenshot 2025-09-10 at 11 06 20 AM"
src="https://github.com/user-attachments/assets/b30e5892-cf40-4246-a588-0f309575439b"
/>
Similarly, there are Errors and warnings created by ChildFiber itself.
Those execute in the scope of the general render of the parent Fiber.
They used to get the scope of the nearest client component parent (e.g.
div in this case) but that's the parent of the Server Component. It
would be too expensive to run every level of reconciliation in its own
task optimistically, so this does it only when we know that we'll throw
or log an error that needs this context. Unfortunately this doesn't
cover user space errors (such as if an iterable errors).
Before:
<img width="903" height="298" alt="Screenshot 2025-09-10 at 11 31 55 AM"
src="https://github.com/user-attachments/assets/cffc94da-8c14-4d6e-9a5b-bf0833b8b762"
/>
After:
<img width="1216" height="252" alt="Screenshot 2025-09-10 at 11 50
54 AM"
src="https://github.com/user-attachments/assets/f85f93cf-ab73-4046-af3d-dd93b73b3552"
/>
<img width="412" height="115" alt="Screenshot 2025-09-10 at 11 52 46 AM"
src="https://github.com/user-attachments/assets/a76cef7b-b162-4ecf-9b0a-68bf34afc239"
/>
DiffTrain build for [20e5431747](https://github.com/facebook/react/commit/20e5431747347796b3be8312e56cef655b26ef4d)
This commit is contained in:
@@ -1 +1 @@
|
||||
0e10ee906e3ea55e4d717d4db498e1159235b06b
|
||||
20e5431747347796b3be8312e56cef655b26ef4d
|
||||
|
||||
@@ -1 +1 @@
|
||||
0e10ee906e3ea55e4d717d4db498e1159235b06b
|
||||
20e5431747347796b3be8312e56cef655b26ef4d
|
||||
|
||||
@@ -1418,7 +1418,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1418,7 +1418,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -600,4 +600,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
|
||||
@@ -600,4 +600,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
|
||||
@@ -604,7 +604,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -604,7 +604,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -3784,6 +3784,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -3825,7 +3835,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -3839,7 +3849,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -3861,7 +3879,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -3878,6 +3904,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -19720,10 +19754,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-0e10ee90-20250912",
|
||||
version: "19.2.0-www-classic-20e54317-20250912",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -19757,7 +19791,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -3690,6 +3690,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -3731,7 +3741,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -3745,7 +3755,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -3767,7 +3785,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -3784,6 +3810,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -19491,10 +19525,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-0e10ee90-20250912",
|
||||
version: "19.2.0-www-modern-20e54317-20250912",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -19528,7 +19562,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1938,7 +1938,7 @@ function coerceRef(workInProgress, element) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -2151,7 +2151,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2199,7 +2199,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2270,7 +2270,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2590,7 +2590,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -11417,24 +11417,24 @@ var slice = Array.prototype.slice,
|
||||
};
|
||||
return Text;
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1631 = {
|
||||
var internals$jscomp$inline_1643 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-0e10ee90-20250912",
|
||||
version: "19.2.0-www-classic-20e54317-20250912",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1632 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1644 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1632.isDisabled &&
|
||||
hook$jscomp$inline_1632.supportsFiber
|
||||
!hook$jscomp$inline_1644.isDisabled &&
|
||||
hook$jscomp$inline_1644.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1632.inject(
|
||||
internals$jscomp$inline_1631
|
||||
(rendererID = hook$jscomp$inline_1644.inject(
|
||||
internals$jscomp$inline_1643
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1632);
|
||||
(injectedHook = hook$jscomp$inline_1644);
|
||||
} catch (err) {}
|
||||
}
|
||||
var Path = Mode$1.Path;
|
||||
@@ -11448,4 +11448,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
|
||||
@@ -1796,7 +1796,7 @@ function coerceRef(workInProgress, element) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -2009,7 +2009,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2057,7 +2057,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2128,7 +2128,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2448,7 +2448,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -11129,24 +11129,24 @@ var slice = Array.prototype.slice,
|
||||
};
|
||||
return Text;
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1604 = {
|
||||
var internals$jscomp$inline_1616 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-0e10ee90-20250912",
|
||||
version: "19.2.0-www-modern-20e54317-20250912",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1605 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_1617 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_1605.isDisabled &&
|
||||
hook$jscomp$inline_1605.supportsFiber
|
||||
!hook$jscomp$inline_1617.isDisabled &&
|
||||
hook$jscomp$inline_1617.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_1605.inject(
|
||||
internals$jscomp$inline_1604
|
||||
(rendererID = hook$jscomp$inline_1617.inject(
|
||||
internals$jscomp$inline_1616
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_1605);
|
||||
(injectedHook = hook$jscomp$inline_1617);
|
||||
} catch (err) {}
|
||||
}
|
||||
var Path = Mode$1.Path;
|
||||
@@ -11160,4 +11160,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
|
||||
@@ -5828,6 +5828,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -5869,7 +5879,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -5883,7 +5893,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -5905,7 +5923,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -5922,6 +5948,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -32320,11 +32354,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-classic-0e10ee90-20250912" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-classic-20e54317-20250912" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-dom: 19.2.0-www-classic-0e10ee90-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-classic-20e54317-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -32367,10 +32401,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-0e10ee90-20250912",
|
||||
version: "19.2.0-www-classic-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -32982,7 +33016,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -5715,6 +5715,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -5756,7 +5766,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -5770,7 +5780,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -5792,7 +5810,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -5809,6 +5835,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -32105,11 +32139,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-modern-0e10ee90-20250912" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-modern-20e54317-20250912" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-dom: 19.2.0-www-modern-0e10ee90-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-modern-20e54317-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -32152,10 +32186,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-0e10ee90-20250912",
|
||||
version: "19.2.0-www-modern-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -32767,7 +32801,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -2873,7 +2873,7 @@ function coerceRef(workInProgress, element) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -3086,7 +3086,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3134,7 +3134,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3205,7 +3205,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3533,7 +3533,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -15154,20 +15154,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1834 = 0;
|
||||
i$jscomp$inline_1834 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1834++
|
||||
var i$jscomp$inline_1846 = 0;
|
||||
i$jscomp$inline_1846 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1846++
|
||||
) {
|
||||
var eventName$jscomp$inline_1835 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1834],
|
||||
domEventName$jscomp$inline_1836 =
|
||||
eventName$jscomp$inline_1835.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1837 =
|
||||
eventName$jscomp$inline_1835[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1835.slice(1);
|
||||
var eventName$jscomp$inline_1847 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1846],
|
||||
domEventName$jscomp$inline_1848 =
|
||||
eventName$jscomp$inline_1847.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1849 =
|
||||
eventName$jscomp$inline_1847[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1847.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1836,
|
||||
"on" + capitalizedEvent$jscomp$inline_1837
|
||||
domEventName$jscomp$inline_1848,
|
||||
"on" + capitalizedEvent$jscomp$inline_1849
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -19780,16 +19780,16 @@ function getCrossOriginStringAs(as, input) {
|
||||
if ("string" === typeof input)
|
||||
return "use-credentials" === input ? input : "";
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2114 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2126 = React.version;
|
||||
if (
|
||||
"19.2.0-www-classic-0e10ee90-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2114
|
||||
"19.2.0-www-classic-20e54317-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2126
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2114,
|
||||
"19.2.0-www-classic-0e10ee90-20250912"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2126,
|
||||
"19.2.0-www-classic-20e54317-20250912"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19805,24 +19805,24 @@ Internals.Events = [
|
||||
return fn(a);
|
||||
}
|
||||
];
|
||||
var internals$jscomp$inline_2746 = {
|
||||
var internals$jscomp$inline_2758 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-0e10ee90-20250912",
|
||||
version: "19.2.0-www-classic-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2747 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2759 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2747.isDisabled &&
|
||||
hook$jscomp$inline_2747.supportsFiber
|
||||
!hook$jscomp$inline_2759.isDisabled &&
|
||||
hook$jscomp$inline_2759.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2747.inject(
|
||||
internals$jscomp$inline_2746
|
||||
(rendererID = hook$jscomp$inline_2759.inject(
|
||||
internals$jscomp$inline_2758
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2747);
|
||||
(injectedHook = hook$jscomp$inline_2759);
|
||||
} catch (err) {}
|
||||
}
|
||||
function defaultOnDefaultTransitionIndicator() {
|
||||
@@ -20239,4 +20239,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
|
||||
@@ -2721,7 +2721,7 @@ function coerceRef(workInProgress, element) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -2934,7 +2934,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2982,7 +2982,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3053,7 +3053,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3381,7 +3381,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -14888,20 +14888,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1824 = 0;
|
||||
i$jscomp$inline_1824 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1824++
|
||||
var i$jscomp$inline_1836 = 0;
|
||||
i$jscomp$inline_1836 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1836++
|
||||
) {
|
||||
var eventName$jscomp$inline_1825 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1824],
|
||||
domEventName$jscomp$inline_1826 =
|
||||
eventName$jscomp$inline_1825.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1827 =
|
||||
eventName$jscomp$inline_1825[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1825.slice(1);
|
||||
var eventName$jscomp$inline_1837 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1836],
|
||||
domEventName$jscomp$inline_1838 =
|
||||
eventName$jscomp$inline_1837.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1839 =
|
||||
eventName$jscomp$inline_1837[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1837.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1826,
|
||||
"on" + capitalizedEvent$jscomp$inline_1827
|
||||
domEventName$jscomp$inline_1838,
|
||||
"on" + capitalizedEvent$jscomp$inline_1839
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -19509,16 +19509,16 @@ function getCrossOriginStringAs(as, input) {
|
||||
if ("string" === typeof input)
|
||||
return "use-credentials" === input ? input : "";
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2104 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2116 = React.version;
|
||||
if (
|
||||
"19.2.0-www-modern-0e10ee90-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2104
|
||||
"19.2.0-www-modern-20e54317-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2116
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2104,
|
||||
"19.2.0-www-modern-0e10ee90-20250912"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2116,
|
||||
"19.2.0-www-modern-20e54317-20250912"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19534,24 +19534,24 @@ Internals.Events = [
|
||||
return fn(a);
|
||||
}
|
||||
];
|
||||
var internals$jscomp$inline_2728 = {
|
||||
var internals$jscomp$inline_2740 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-0e10ee90-20250912",
|
||||
version: "19.2.0-www-modern-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2729 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2741 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2729.isDisabled &&
|
||||
hook$jscomp$inline_2729.supportsFiber
|
||||
!hook$jscomp$inline_2741.isDisabled &&
|
||||
hook$jscomp$inline_2741.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2729.inject(
|
||||
internals$jscomp$inline_2728
|
||||
(rendererID = hook$jscomp$inline_2741.inject(
|
||||
internals$jscomp$inline_2740
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2729);
|
||||
(injectedHook = hook$jscomp$inline_2741);
|
||||
} catch (err) {}
|
||||
}
|
||||
function defaultOnDefaultTransitionIndicator() {
|
||||
@@ -19968,4 +19968,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
|
||||
@@ -3381,7 +3381,7 @@ function coerceRef(workInProgress, element) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -3594,7 +3594,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3642,7 +3642,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3713,7 +3713,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -4041,7 +4041,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -17199,20 +17199,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_2087 = 0;
|
||||
i$jscomp$inline_2087 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_2087++
|
||||
var i$jscomp$inline_2099 = 0;
|
||||
i$jscomp$inline_2099 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_2099++
|
||||
) {
|
||||
var eventName$jscomp$inline_2088 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_2087],
|
||||
domEventName$jscomp$inline_2089 =
|
||||
eventName$jscomp$inline_2088.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_2090 =
|
||||
eventName$jscomp$inline_2088[0].toUpperCase() +
|
||||
eventName$jscomp$inline_2088.slice(1);
|
||||
var eventName$jscomp$inline_2100 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_2099],
|
||||
domEventName$jscomp$inline_2101 =
|
||||
eventName$jscomp$inline_2100.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_2102 =
|
||||
eventName$jscomp$inline_2100[0].toUpperCase() +
|
||||
eventName$jscomp$inline_2100.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_2089,
|
||||
"on" + capitalizedEvent$jscomp$inline_2090
|
||||
domEventName$jscomp$inline_2101,
|
||||
"on" + capitalizedEvent$jscomp$inline_2102
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -21834,16 +21834,16 @@ function getCrossOriginStringAs(as, input) {
|
||||
if ("string" === typeof input)
|
||||
return "use-credentials" === input ? input : "";
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2367 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2379 = React.version;
|
||||
if (
|
||||
"19.2.0-www-classic-0e10ee90-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2367
|
||||
"19.2.0-www-classic-20e54317-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2379
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2367,
|
||||
"19.2.0-www-classic-0e10ee90-20250912"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2379,
|
||||
"19.2.0-www-classic-20e54317-20250912"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -21859,27 +21859,27 @@ Internals.Events = [
|
||||
return fn(a);
|
||||
}
|
||||
];
|
||||
var internals$jscomp$inline_2369 = {
|
||||
var internals$jscomp$inline_2381 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-0e10ee90-20250912",
|
||||
version: "19.2.0-www-classic-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_2369.getLaneLabelMap = getLaneLabelMap),
|
||||
(internals$jscomp$inline_2369.injectProfilingHooks = injectProfilingHooks));
|
||||
((internals$jscomp$inline_2381.getLaneLabelMap = getLaneLabelMap),
|
||||
(internals$jscomp$inline_2381.injectProfilingHooks = injectProfilingHooks));
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2987 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2999 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2987.isDisabled &&
|
||||
hook$jscomp$inline_2987.supportsFiber
|
||||
!hook$jscomp$inline_2999.isDisabled &&
|
||||
hook$jscomp$inline_2999.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2987.inject(
|
||||
internals$jscomp$inline_2369
|
||||
(rendererID = hook$jscomp$inline_2999.inject(
|
||||
internals$jscomp$inline_2381
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2987);
|
||||
(injectedHook = hook$jscomp$inline_2999);
|
||||
} catch (err) {}
|
||||
}
|
||||
function defaultOnDefaultTransitionIndicator() {
|
||||
@@ -22297,7 +22297,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -3295,7 +3295,7 @@ function coerceRef(workInProgress, element) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -3508,7 +3508,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3556,7 +3556,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3627,7 +3627,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3955,7 +3955,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -16998,20 +16998,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_2077 = 0;
|
||||
i$jscomp$inline_2077 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_2077++
|
||||
var i$jscomp$inline_2089 = 0;
|
||||
i$jscomp$inline_2089 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_2089++
|
||||
) {
|
||||
var eventName$jscomp$inline_2078 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_2077],
|
||||
domEventName$jscomp$inline_2079 =
|
||||
eventName$jscomp$inline_2078.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_2080 =
|
||||
eventName$jscomp$inline_2078[0].toUpperCase() +
|
||||
eventName$jscomp$inline_2078.slice(1);
|
||||
var eventName$jscomp$inline_2090 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_2089],
|
||||
domEventName$jscomp$inline_2091 =
|
||||
eventName$jscomp$inline_2090.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_2092 =
|
||||
eventName$jscomp$inline_2090[0].toUpperCase() +
|
||||
eventName$jscomp$inline_2090.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_2079,
|
||||
"on" + capitalizedEvent$jscomp$inline_2080
|
||||
domEventName$jscomp$inline_2091,
|
||||
"on" + capitalizedEvent$jscomp$inline_2092
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -21628,16 +21628,16 @@ function getCrossOriginStringAs(as, input) {
|
||||
if ("string" === typeof input)
|
||||
return "use-credentials" === input ? input : "";
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2357 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2369 = React.version;
|
||||
if (
|
||||
"19.2.0-www-modern-0e10ee90-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2357
|
||||
"19.2.0-www-modern-20e54317-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2369
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2357,
|
||||
"19.2.0-www-modern-0e10ee90-20250912"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2369,
|
||||
"19.2.0-www-modern-20e54317-20250912"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -21653,27 +21653,27 @@ Internals.Events = [
|
||||
return fn(a);
|
||||
}
|
||||
];
|
||||
var internals$jscomp$inline_2359 = {
|
||||
var internals$jscomp$inline_2371 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-0e10ee90-20250912",
|
||||
version: "19.2.0-www-modern-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_2359.getLaneLabelMap = getLaneLabelMap),
|
||||
(internals$jscomp$inline_2359.injectProfilingHooks = injectProfilingHooks));
|
||||
((internals$jscomp$inline_2371.getLaneLabelMap = getLaneLabelMap),
|
||||
(internals$jscomp$inline_2371.injectProfilingHooks = injectProfilingHooks));
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2969 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2981 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2969.isDisabled &&
|
||||
hook$jscomp$inline_2969.supportsFiber
|
||||
!hook$jscomp$inline_2981.isDisabled &&
|
||||
hook$jscomp$inline_2981.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2969.inject(
|
||||
internals$jscomp$inline_2359
|
||||
(rendererID = hook$jscomp$inline_2981.inject(
|
||||
internals$jscomp$inline_2371
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2969);
|
||||
(injectedHook = hook$jscomp$inline_2981);
|
||||
} catch (err) {}
|
||||
}
|
||||
function defaultOnDefaultTransitionIndicator() {
|
||||
@@ -22091,7 +22091,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -10163,5 +10163,5 @@ __DEV__ &&
|
||||
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
||||
);
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
})();
|
||||
|
||||
@@ -10092,5 +10092,5 @@ __DEV__ &&
|
||||
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
||||
);
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
})();
|
||||
|
||||
@@ -6892,4 +6892,4 @@ exports.renderToString = function (children, options) {
|
||||
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
||||
);
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
|
||||
@@ -6825,4 +6825,4 @@ exports.renderToString = function (children, options) {
|
||||
'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToReadableStream" which supports Suspense on the server'
|
||||
);
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
|
||||
@@ -5869,6 +5869,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -5910,7 +5920,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -5924,7 +5934,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -5946,7 +5964,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -5963,6 +5989,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -32641,11 +32675,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-classic-0e10ee90-20250912" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-classic-20e54317-20250912" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-dom: 19.2.0-www-classic-0e10ee90-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-classic-20e54317-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -32688,10 +32722,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-0e10ee90-20250912",
|
||||
version: "19.2.0-www-classic-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -33469,5 +33503,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
})();
|
||||
|
||||
@@ -5756,6 +5756,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -5797,7 +5807,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -5811,7 +5821,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -5833,7 +5851,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -5850,6 +5876,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -32426,11 +32460,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-modern-0e10ee90-20250912" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-modern-20e54317-20250912" !== isomorphicReactPackageVersion)
|
||||
throw Error(
|
||||
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
||||
(isomorphicReactPackageVersion +
|
||||
"\n - react-dom: 19.2.0-www-modern-0e10ee90-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-modern-20e54317-20250912\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -32473,10 +32507,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-0e10ee90-20250912",
|
||||
version: "19.2.0-www-modern-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -33254,5 +33288,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
})();
|
||||
|
||||
@@ -2959,7 +2959,7 @@ function coerceRef(workInProgress, element) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -3172,7 +3172,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3220,7 +3220,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3291,7 +3291,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3619,7 +3619,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -15426,20 +15426,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1863 = 0;
|
||||
i$jscomp$inline_1863 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1863++
|
||||
var i$jscomp$inline_1875 = 0;
|
||||
i$jscomp$inline_1875 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1875++
|
||||
) {
|
||||
var eventName$jscomp$inline_1864 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1863],
|
||||
domEventName$jscomp$inline_1865 =
|
||||
eventName$jscomp$inline_1864.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1866 =
|
||||
eventName$jscomp$inline_1864[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1864.slice(1);
|
||||
var eventName$jscomp$inline_1876 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1875],
|
||||
domEventName$jscomp$inline_1877 =
|
||||
eventName$jscomp$inline_1876.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1878 =
|
||||
eventName$jscomp$inline_1876[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1876.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1865,
|
||||
"on" + capitalizedEvent$jscomp$inline_1866
|
||||
domEventName$jscomp$inline_1877,
|
||||
"on" + capitalizedEvent$jscomp$inline_1878
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -20096,16 +20096,16 @@ function getCrossOriginStringAs(as, input) {
|
||||
if ("string" === typeof input)
|
||||
return "use-credentials" === input ? input : "";
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2143 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2155 = React.version;
|
||||
if (
|
||||
"19.2.0-www-classic-0e10ee90-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2143
|
||||
"19.2.0-www-classic-20e54317-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2155
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2143,
|
||||
"19.2.0-www-classic-0e10ee90-20250912"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2155,
|
||||
"19.2.0-www-classic-20e54317-20250912"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -20121,24 +20121,24 @@ Internals.Events = [
|
||||
return fn(a);
|
||||
}
|
||||
];
|
||||
var internals$jscomp$inline_2780 = {
|
||||
var internals$jscomp$inline_2792 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-0e10ee90-20250912",
|
||||
version: "19.2.0-www-classic-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2781 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2793 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2781.isDisabled &&
|
||||
hook$jscomp$inline_2781.supportsFiber
|
||||
!hook$jscomp$inline_2793.isDisabled &&
|
||||
hook$jscomp$inline_2793.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2781.inject(
|
||||
internals$jscomp$inline_2780
|
||||
(rendererID = hook$jscomp$inline_2793.inject(
|
||||
internals$jscomp$inline_2792
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2781);
|
||||
(injectedHook = hook$jscomp$inline_2793);
|
||||
} catch (err) {}
|
||||
}
|
||||
function defaultOnDefaultTransitionIndicator() {
|
||||
@@ -20706,4 +20706,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
|
||||
@@ -2807,7 +2807,7 @@ function coerceRef(workInProgress, element) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -3020,7 +3020,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3068,7 +3068,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3139,7 +3139,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -3467,7 +3467,7 @@ function createChildReconciler(shouldTrackSideEffects) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -15160,20 +15160,20 @@ function debounceScrollEnd(targetInst, nativeEvent, nativeEventTarget) {
|
||||
(nativeEventTarget[internalScrollTimer] = targetInst));
|
||||
}
|
||||
for (
|
||||
var i$jscomp$inline_1853 = 0;
|
||||
i$jscomp$inline_1853 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1853++
|
||||
var i$jscomp$inline_1865 = 0;
|
||||
i$jscomp$inline_1865 < simpleEventPluginEvents.length;
|
||||
i$jscomp$inline_1865++
|
||||
) {
|
||||
var eventName$jscomp$inline_1854 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1853],
|
||||
domEventName$jscomp$inline_1855 =
|
||||
eventName$jscomp$inline_1854.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1856 =
|
||||
eventName$jscomp$inline_1854[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1854.slice(1);
|
||||
var eventName$jscomp$inline_1866 =
|
||||
simpleEventPluginEvents[i$jscomp$inline_1865],
|
||||
domEventName$jscomp$inline_1867 =
|
||||
eventName$jscomp$inline_1866.toLowerCase(),
|
||||
capitalizedEvent$jscomp$inline_1868 =
|
||||
eventName$jscomp$inline_1866[0].toUpperCase() +
|
||||
eventName$jscomp$inline_1866.slice(1);
|
||||
registerSimpleEvent(
|
||||
domEventName$jscomp$inline_1855,
|
||||
"on" + capitalizedEvent$jscomp$inline_1856
|
||||
domEventName$jscomp$inline_1867,
|
||||
"on" + capitalizedEvent$jscomp$inline_1868
|
||||
);
|
||||
}
|
||||
registerSimpleEvent(ANIMATION_END, "onAnimationEnd");
|
||||
@@ -19825,16 +19825,16 @@ function getCrossOriginStringAs(as, input) {
|
||||
if ("string" === typeof input)
|
||||
return "use-credentials" === input ? input : "";
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2133 = React.version;
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2145 = React.version;
|
||||
if (
|
||||
"19.2.0-www-modern-0e10ee90-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2133
|
||||
"19.2.0-www-modern-20e54317-20250912" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2145
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2133,
|
||||
"19.2.0-www-modern-0e10ee90-20250912"
|
||||
isomorphicReactPackageVersion$jscomp$inline_2145,
|
||||
"19.2.0-www-modern-20e54317-20250912"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19850,24 +19850,24 @@ Internals.Events = [
|
||||
return fn(a);
|
||||
}
|
||||
];
|
||||
var internals$jscomp$inline_2762 = {
|
||||
var internals$jscomp$inline_2774 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-0e10ee90-20250912",
|
||||
version: "19.2.0-www-modern-20e54317-20250912",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2763 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
var hook$jscomp$inline_2775 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
if (
|
||||
!hook$jscomp$inline_2763.isDisabled &&
|
||||
hook$jscomp$inline_2763.supportsFiber
|
||||
!hook$jscomp$inline_2775.isDisabled &&
|
||||
hook$jscomp$inline_2775.supportsFiber
|
||||
)
|
||||
try {
|
||||
(rendererID = hook$jscomp$inline_2763.inject(
|
||||
internals$jscomp$inline_2762
|
||||
(rendererID = hook$jscomp$inline_2775.inject(
|
||||
internals$jscomp$inline_2774
|
||||
)),
|
||||
(injectedHook = hook$jscomp$inline_2763);
|
||||
(injectedHook = hook$jscomp$inline_2775);
|
||||
} catch (err) {}
|
||||
}
|
||||
function defaultOnDefaultTransitionIndicator() {
|
||||
@@ -20435,4 +20435,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
|
||||
@@ -4092,6 +4092,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -4133,7 +4143,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -4147,7 +4157,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -4169,7 +4187,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -4186,6 +4212,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -22585,7 +22619,7 @@ __DEV__ &&
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -3998,6 +3998,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -4039,7 +4049,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -4053,7 +4063,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -4075,7 +4093,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -4092,6 +4118,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -22365,7 +22399,7 @@ __DEV__ &&
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -1840,7 +1840,7 @@ module.exports = function ($$$config) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -2054,7 +2054,7 @@ module.exports = function ($$$config) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2102,7 +2102,7 @@ module.exports = function ($$$config) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2173,7 +2173,7 @@ module.exports = function ($$$config) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2515,7 +2515,7 @@ module.exports = function ($$$config) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -14163,7 +14163,7 @@ module.exports = function ($$$config) {
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -1703,7 +1703,7 @@ module.exports = function ($$$config) {
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(formatProdErrorMessage(525));
|
||||
returnFiber = Object.prototype.toString.call(newChild);
|
||||
@@ -1917,7 +1917,7 @@ module.exports = function ($$$config) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -1965,7 +1965,7 @@ module.exports = function ($$$config) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2036,7 +2036,7 @@ module.exports = function ($$$config) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@@ -2378,7 +2378,7 @@ module.exports = function ($$$config) {
|
||||
readContextDuringReconciliation(returnFiber, newChild),
|
||||
lanes
|
||||
);
|
||||
throwOnInvalidObjectType(returnFiber, newChild);
|
||||
throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
return ("string" === typeof newChild && "" !== newChild) ||
|
||||
"number" === typeof newChild ||
|
||||
@@ -13880,7 +13880,7 @@ module.exports = function ($$$config) {
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -2620,6 +2620,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -2652,7 +2662,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -2666,7 +2676,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -2688,7 +2706,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -2705,6 +2731,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -15569,10 +15603,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-0e10ee90-20250912",
|
||||
version: "19.2.0-www-classic-20e54317-20250912",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-classic-20e54317-20250912"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15707,5 +15741,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-classic-20e54317-20250912";
|
||||
})();
|
||||
|
||||
@@ -2620,6 +2620,16 @@ __DEV__ &&
|
||||
: previousDebugInfo.concat(debugInfo));
|
||||
return previousDebugInfo;
|
||||
}
|
||||
function getCurrentDebugTask() {
|
||||
var debugInfo = currentDebugInfo;
|
||||
if (null != debugInfo)
|
||||
for (var i = debugInfo.length - 1; 0 <= i; i--)
|
||||
if (null != debugInfo[i].name) {
|
||||
var debugTask = debugInfo[i].debugTask;
|
||||
if (null != debugTask) return debugTask;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
function validateFragmentProps(element, fiber, returnFiber) {
|
||||
for (var keys = Object.keys(element.props), i = 0; i < keys.length; i++) {
|
||||
var key = keys[i];
|
||||
@@ -2652,7 +2662,7 @@ __DEV__ &&
|
||||
element = element.props.ref;
|
||||
workInProgress.ref = void 0 !== element ? element : null;
|
||||
}
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
function throwOnInvalidObjectTypeImpl(returnFiber, newChild) {
|
||||
if (newChild.$$typeof === REACT_LEGACY_ELEMENT_TYPE)
|
||||
throw Error(
|
||||
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
||||
@@ -2666,7 +2676,15 @@ __DEV__ &&
|
||||
"). If you meant to render a collection of children, use an array instead."
|
||||
);
|
||||
}
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
function throwOnInvalidObjectType(returnFiber, newChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
throwOnInvalidObjectTypeImpl.bind(null, returnFiber, newChild)
|
||||
)
|
||||
: throwOnInvalidObjectTypeImpl(returnFiber, newChild);
|
||||
}
|
||||
function warnOnFunctionTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasFunctionTypeWarning[parentName] ||
|
||||
((ownerHasFunctionTypeWarning[parentName] = !0),
|
||||
@@ -2688,7 +2706,15 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
function warnOnFunctionType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnFunctionTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnFunctionTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function warnOnSymbolTypeImpl(returnFiber, invalidChild) {
|
||||
var parentName = getComponentNameFromFiber(returnFiber) || "Component";
|
||||
ownerHasSymbolTypeWarning[parentName] ||
|
||||
((ownerHasSymbolTypeWarning[parentName] = !0),
|
||||
@@ -2705,6 +2731,14 @@ __DEV__ &&
|
||||
parentName
|
||||
));
|
||||
}
|
||||
function warnOnSymbolType(returnFiber, invalidChild) {
|
||||
var debugTask = getCurrentDebugTask();
|
||||
null !== debugTask
|
||||
? debugTask.run(
|
||||
warnOnSymbolTypeImpl.bind(null, returnFiber, invalidChild)
|
||||
)
|
||||
: warnOnSymbolTypeImpl(returnFiber, invalidChild);
|
||||
}
|
||||
function createChildReconciler(shouldTrackSideEffects) {
|
||||
function deleteChild(returnFiber, childToDelete) {
|
||||
if (shouldTrackSideEffects) {
|
||||
@@ -15569,10 +15603,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-0e10ee90-20250912",
|
||||
version: "19.2.0-www-modern-20e54317-20250912",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-0e10ee90-20250912"
|
||||
reconcilerVersion: "19.2.0-www-modern-20e54317-20250912"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15707,5 +15741,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-0e10ee90-20250912";
|
||||
exports.version = "19.2.0-www-modern-20e54317-20250912";
|
||||
})();
|
||||
|
||||
@@ -1 +1 @@
|
||||
19.2.0-www-classic-0e10ee90-20250912
|
||||
19.2.0-www-classic-20e54317-20250912
|
||||
@@ -1 +1 @@
|
||||
19.2.0-www-modern-0e10ee90-20250912
|
||||
19.2.0-www-modern-20e54317-20250912
|
||||
Reference in New Issue
Block a user