Add plumbing for onDefaultTransitionIndicator (#33150)

This just adds the options at the root and wire it up to the root but it
doesn't do anything yet.

DiffTrain build for [9b79292ae7](https://github.com/facebook/react/commit/9b79292ae7c2980acb531f1dff3cf1ca2d2f40b7)
This commit is contained in:
sebmarkbage
2025-05-08 17:49:44 -07:00
parent 3c4769e864
commit 39532890fe
34 changed files with 1176 additions and 890 deletions
+1 -1
View File
@@ -1 +1 @@
ac06829246287751e6b74bd99cd1b39d1aeba06a
9b79292ae7c2980acb531f1dff3cf1ca2d2f40b7
+1 -1
View File
@@ -1 +1 @@
ac06829246287751e6b74bd99cd1b39d1aeba06a
9b79292ae7c2980acb531f1dff3cf1ca2d2f40b7
+1 -1
View File
@@ -1538,7 +1538,7 @@ __DEV__ &&
exports.useTransition = function () {
return resolveDispatcher().useTransition();
};
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+1 -1
View File
@@ -1538,7 +1538,7 @@ __DEV__ &&
exports.useTransition = function () {
return resolveDispatcher().useTransition();
};
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+1 -1
View File
@@ -636,4 +636,4 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
+1 -1
View File
@@ -636,4 +636,4 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
@@ -640,7 +640,7 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -640,7 +640,7 @@ exports.useSyncExternalStore = function (
exports.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+161 -89
View File
@@ -6430,9 +6430,72 @@ __DEV__ &&
}
return baseProps;
}
function defaultOnUncaughtError(error) {
reportGlobalError(error);
console.warn(
"%s\n\n%s\n",
componentName
? "An error occurred in the <" + componentName + "> component."
: "An error occurred in one of your React components.",
"Consider adding an error boundary to your tree to customize error handling behavior.\nVisit https://react.dev/link/error-boundaries to learn more about error boundaries."
);
}
function defaultOnCaughtError(error) {
var componentNameMessage = componentName
? "The above error occurred in the <" + componentName + "> component."
: "The above error occurred in one of your React components.",
recreateMessage =
"React will try to recreate this component tree from scratch using the error boundary you provided, " +
((errorBoundaryName || "Anonymous") + ".");
if (
"object" === typeof error &&
null !== error &&
"string" === typeof error.environmentName
) {
var JSCompiler_inline_result = error.environmentName;
error = [
"%o\n\n%s\n\n%s\n",
error,
componentNameMessage,
recreateMessage
].slice(0);
"string" === typeof error[0]
? error.splice(
0,
1,
"%c%s%c " + error[0],
"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px",
" " + JSCompiler_inline_result + " ",
""
)
: error.splice(
0,
0,
"%c%s%c ",
"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px",
" " + JSCompiler_inline_result + " ",
""
);
error.unshift(console);
JSCompiler_inline_result = bind.apply(console.error, error);
JSCompiler_inline_result();
} else
console.error(
"%o\n\n%s\n\n%s\n",
error,
componentNameMessage,
recreateMessage
);
}
function defaultOnRecoverableError(error) {
reportGlobalError(error);
}
function logUncaughtError(root, errorInfo) {
try {
errorInfo.source && getComponentNameFromFiber(errorInfo.source);
componentName = errorInfo.source
? getComponentNameFromFiber(errorInfo.source)
: null;
errorBoundaryName = null;
var error = errorInfo.value;
if (null !== ReactSharedInternals.actQueue)
ReactSharedInternals.thrownErrors.push(error);
@@ -6448,8 +6511,10 @@ __DEV__ &&
}
function logCaughtError(root, boundary, errorInfo) {
try {
errorInfo.source && getComponentNameFromFiber(errorInfo.source);
getComponentNameFromFiber(boundary);
componentName = errorInfo.source
? getComponentNameFromFiber(errorInfo.source)
: null;
errorBoundaryName = getComponentNameFromFiber(boundary);
var onCaughtError = root.onCaughtError;
onCaughtError(errorInfo.value, {
componentStack: errorInfo.stack,
@@ -16678,6 +16743,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -16826,6 +16892,7 @@ __DEV__ &&
}
return null;
}
function defaultOnDefaultTransitionIndicator() {}
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&
@@ -16959,6 +17026,7 @@ __DEV__ &&
_currentValue2: null,
_threadCount: 0
},
bind = Function.prototype.bind,
valueStack = [];
var fiberStack = [];
var index$jscomp$0 = -1;
@@ -18584,87 +18652,90 @@ __DEV__ &&
var didWarnOnInvalidCallback = new Set();
Object.freeze(fakeInternalInstance);
var classComponentUpdater = {
enqueueSetState: function (inst, payload, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.payload = payload;
void 0 !== callback &&
enqueueSetState: function (inst, payload, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.payload = payload;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
payload = enqueueUpdate(inst, update, lane);
null !== payload &&
(startUpdateTimerByLane(lane, "this.setState()"),
scheduleUpdateOnFiber(payload, inst, lane),
entangleTransitions(payload, inst, lane));
enableSchedulingProfiler && markStateUpdateScheduled(inst, lane);
},
enqueueReplaceState: function (inst, payload, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.tag = ReplaceState;
update.payload = payload;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
payload = enqueueUpdate(inst, update, lane);
null !== payload &&
(startUpdateTimerByLane(lane, "this.replaceState()"),
scheduleUpdateOnFiber(payload, inst, lane),
entangleTransitions(payload, inst, lane));
enableSchedulingProfiler && markStateUpdateScheduled(inst, lane);
},
enqueueForceUpdate: function (inst, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.tag = ForceUpdate;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
callback = enqueueUpdate(inst, update, lane);
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
payload = enqueueUpdate(inst, update, lane);
null !== payload &&
(startUpdateTimerByLane(lane, "this.setState()"),
scheduleUpdateOnFiber(payload, inst, lane),
entangleTransitions(payload, inst, lane));
enableSchedulingProfiler && markStateUpdateScheduled(inst, lane);
},
enqueueReplaceState: function (inst, payload, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.tag = ReplaceState;
update.payload = payload;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
payload = enqueueUpdate(inst, update, lane);
null !== payload &&
(startUpdateTimerByLane(lane, "this.replaceState()"),
scheduleUpdateOnFiber(payload, inst, lane),
entangleTransitions(payload, inst, lane));
enableSchedulingProfiler && markStateUpdateScheduled(inst, lane);
},
enqueueForceUpdate: function (inst, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.tag = ForceUpdate;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
callback = enqueueUpdate(inst, update, lane);
null !== callback &&
(startUpdateTimerByLane(lane, "this.forceUpdate()"),
scheduleUpdateOnFiber(callback, inst, lane),
entangleTransitions(callback, inst, lane));
enableSchedulingProfiler &&
(startUpdateTimerByLane(lane, "this.forceUpdate()"),
scheduleUpdateOnFiber(callback, inst, lane),
entangleTransitions(callback, inst, lane));
enableSchedulingProfiler &&
null !== injectedProfilingHooks &&
"function" ===
typeof injectedProfilingHooks.markForceUpdateScheduled &&
injectedProfilingHooks.markForceUpdateScheduled(inst, lane);
}
};
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: !0,
cancelable: !0,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
};
var TransitionRoot = 0,
enableSchedulingProfiler &&
null !== injectedProfilingHooks &&
"function" ===
typeof injectedProfilingHooks.markForceUpdateScheduled &&
injectedProfilingHooks.markForceUpdateScheduled(inst, lane);
}
},
reportGlobalError =
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: !0,
cancelable: !0,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
},
componentName = null,
errorBoundaryName = null,
TransitionRoot = 0,
TransitionTracingMarker = 1,
markerInstanceStack = createCursor(null),
SelectiveHydrationException = Error(
@@ -18945,13 +19016,14 @@ __DEV__ &&
1,
!1,
"",
void 0,
void 0,
void 0,
defaultOnUncaughtError,
defaultOnCaughtError,
defaultOnRecoverableError,
defaultOnDefaultTransitionIndicator,
null
);
_this$props.hydrationCallbacks = null;
enableTransitionTracing && (_this$props.transitionCallbacks = void 0);
enableTransitionTracing && (_this$props.transitionCallbacks = null);
var uninitializedFiber = 1;
isDevToolsPresent && (uninitializedFiber |= 2);
uninitializedFiber = createFiber(3, null, null, uninitializedFiber);
@@ -19032,10 +19104,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-ac068292-20250508",
version: "19.2.0-www-classic-9b79292a-20250508",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -19069,7 +19141,7 @@ __DEV__ &&
exports.Shape = Shape;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+161 -89
View File
@@ -6336,9 +6336,72 @@ __DEV__ &&
}
return baseProps;
}
function defaultOnUncaughtError(error) {
reportGlobalError(error);
console.warn(
"%s\n\n%s\n",
componentName
? "An error occurred in the <" + componentName + "> component."
: "An error occurred in one of your React components.",
"Consider adding an error boundary to your tree to customize error handling behavior.\nVisit https://react.dev/link/error-boundaries to learn more about error boundaries."
);
}
function defaultOnCaughtError(error) {
var componentNameMessage = componentName
? "The above error occurred in the <" + componentName + "> component."
: "The above error occurred in one of your React components.",
recreateMessage =
"React will try to recreate this component tree from scratch using the error boundary you provided, " +
((errorBoundaryName || "Anonymous") + ".");
if (
"object" === typeof error &&
null !== error &&
"string" === typeof error.environmentName
) {
var JSCompiler_inline_result = error.environmentName;
error = [
"%o\n\n%s\n\n%s\n",
error,
componentNameMessage,
recreateMessage
].slice(0);
"string" === typeof error[0]
? error.splice(
0,
1,
"%c%s%c " + error[0],
"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px",
" " + JSCompiler_inline_result + " ",
""
)
: error.splice(
0,
0,
"%c%s%c ",
"background: #e6e6e6;background: light-dark(rgba(0,0,0,0.1), rgba(255,255,255,0.25));color: #000000;color: light-dark(#000000, #ffffff);border-radius: 2px",
" " + JSCompiler_inline_result + " ",
""
);
error.unshift(console);
JSCompiler_inline_result = bind.apply(console.error, error);
JSCompiler_inline_result();
} else
console.error(
"%o\n\n%s\n\n%s\n",
error,
componentNameMessage,
recreateMessage
);
}
function defaultOnRecoverableError(error) {
reportGlobalError(error);
}
function logUncaughtError(root, errorInfo) {
try {
errorInfo.source && getComponentNameFromFiber(errorInfo.source);
componentName = errorInfo.source
? getComponentNameFromFiber(errorInfo.source)
: null;
errorBoundaryName = null;
var error = errorInfo.value;
if (null !== ReactSharedInternals.actQueue)
ReactSharedInternals.thrownErrors.push(error);
@@ -6354,8 +6417,10 @@ __DEV__ &&
}
function logCaughtError(root, boundary, errorInfo) {
try {
errorInfo.source && getComponentNameFromFiber(errorInfo.source);
getComponentNameFromFiber(boundary);
componentName = errorInfo.source
? getComponentNameFromFiber(errorInfo.source)
: null;
errorBoundaryName = getComponentNameFromFiber(boundary);
var onCaughtError = root.onCaughtError;
onCaughtError(errorInfo.value, {
componentStack: errorInfo.stack,
@@ -16492,6 +16557,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -16605,6 +16671,7 @@ __DEV__ &&
}
return null;
}
function defaultOnDefaultTransitionIndicator() {}
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&
@@ -16736,6 +16803,7 @@ __DEV__ &&
_currentValue2: null,
_threadCount: 0
},
bind = Function.prototype.bind,
valueStack = [];
var fiberStack = [];
var index$jscomp$0 = -1,
@@ -18356,87 +18424,90 @@ __DEV__ &&
var didWarnOnInvalidCallback = new Set();
Object.freeze(fakeInternalInstance);
var classComponentUpdater = {
enqueueSetState: function (inst, payload, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.payload = payload;
void 0 !== callback &&
enqueueSetState: function (inst, payload, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.payload = payload;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
payload = enqueueUpdate(inst, update, lane);
null !== payload &&
(startUpdateTimerByLane(lane, "this.setState()"),
scheduleUpdateOnFiber(payload, inst, lane),
entangleTransitions(payload, inst, lane));
enableSchedulingProfiler && markStateUpdateScheduled(inst, lane);
},
enqueueReplaceState: function (inst, payload, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.tag = ReplaceState;
update.payload = payload;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
payload = enqueueUpdate(inst, update, lane);
null !== payload &&
(startUpdateTimerByLane(lane, "this.replaceState()"),
scheduleUpdateOnFiber(payload, inst, lane),
entangleTransitions(payload, inst, lane));
enableSchedulingProfiler && markStateUpdateScheduled(inst, lane);
},
enqueueForceUpdate: function (inst, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.tag = ForceUpdate;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
callback = enqueueUpdate(inst, update, lane);
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
payload = enqueueUpdate(inst, update, lane);
null !== payload &&
(startUpdateTimerByLane(lane, "this.setState()"),
scheduleUpdateOnFiber(payload, inst, lane),
entangleTransitions(payload, inst, lane));
enableSchedulingProfiler && markStateUpdateScheduled(inst, lane);
},
enqueueReplaceState: function (inst, payload, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.tag = ReplaceState;
update.payload = payload;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
payload = enqueueUpdate(inst, update, lane);
null !== payload &&
(startUpdateTimerByLane(lane, "this.replaceState()"),
scheduleUpdateOnFiber(payload, inst, lane),
entangleTransitions(payload, inst, lane));
enableSchedulingProfiler && markStateUpdateScheduled(inst, lane);
},
enqueueForceUpdate: function (inst, callback) {
inst = inst._reactInternals;
var lane = requestUpdateLane(inst),
update = createUpdate(lane);
update.tag = ForceUpdate;
void 0 !== callback &&
null !== callback &&
(warnOnInvalidCallback(callback), (update.callback = callback));
callback = enqueueUpdate(inst, update, lane);
null !== callback &&
(startUpdateTimerByLane(lane, "this.forceUpdate()"),
scheduleUpdateOnFiber(callback, inst, lane),
entangleTransitions(callback, inst, lane));
enableSchedulingProfiler &&
(startUpdateTimerByLane(lane, "this.forceUpdate()"),
scheduleUpdateOnFiber(callback, inst, lane),
entangleTransitions(callback, inst, lane));
enableSchedulingProfiler &&
null !== injectedProfilingHooks &&
"function" ===
typeof injectedProfilingHooks.markForceUpdateScheduled &&
injectedProfilingHooks.markForceUpdateScheduled(inst, lane);
}
};
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: !0,
cancelable: !0,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
};
var TransitionRoot = 0,
enableSchedulingProfiler &&
null !== injectedProfilingHooks &&
"function" ===
typeof injectedProfilingHooks.markForceUpdateScheduled &&
injectedProfilingHooks.markForceUpdateScheduled(inst, lane);
}
},
reportGlobalError =
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: !0,
cancelable: !0,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
},
componentName = null,
errorBoundaryName = null,
TransitionRoot = 0,
TransitionTracingMarker = 1,
markerInstanceStack = createCursor(null),
SelectiveHydrationException = Error(
@@ -18717,13 +18788,14 @@ __DEV__ &&
1,
!1,
"",
void 0,
void 0,
void 0,
defaultOnUncaughtError,
defaultOnCaughtError,
defaultOnRecoverableError,
defaultOnDefaultTransitionIndicator,
null
);
_this$props.hydrationCallbacks = null;
enableTransitionTracing && (_this$props.transitionCallbacks = void 0);
enableTransitionTracing && (_this$props.transitionCallbacks = null);
var uninitializedFiber = 1;
isDevToolsPresent && (uninitializedFiber |= 2);
uninitializedFiber = createFiber(3, null, null, uninitializedFiber);
@@ -18804,10 +18876,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-ac068292-20250508",
version: "19.2.0-www-modern-9b79292a-20250508",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -18841,7 +18913,7 @@ __DEV__ &&
exports.Shape = Shape;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+55 -42
View File
@@ -4399,34 +4399,44 @@ function resolveDefaultPropsOnNonClassComponent(Component, baseProps) {
}
return baseProps;
}
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: !0,
cancelable: !0,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
};
var reportGlobalError =
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: !0,
cancelable: !0,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
};
function defaultOnUncaughtError(error) {
reportGlobalError(error);
}
function defaultOnCaughtError(error) {
console.error(error);
}
function defaultOnRecoverableError(error) {
reportGlobalError(error);
}
function logUncaughtError(root, errorInfo) {
try {
var onUncaughtError = root.onUncaughtError;
@@ -11200,6 +11210,7 @@ function FiberRootNode(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -11289,6 +11300,7 @@ function updateContainerSync(element, container, parentComponent, callback) {
entangleTransitions(element, current, 2));
return 2;
}
function defaultOnDefaultTransitionIndicator() {}
Mode$1.setCurrent(FastNoSideEffects);
var slice = Array.prototype.slice,
LinearGradient = (function () {
@@ -11336,13 +11348,14 @@ var slice = Array.prototype.slice,
1,
!1,
"",
void 0,
void 0,
void 0,
defaultOnUncaughtError,
defaultOnCaughtError,
defaultOnRecoverableError,
defaultOnDefaultTransitionIndicator,
null
);
_this$props.hydrationCallbacks = null;
enableTransitionTracing && (_this$props.transitionCallbacks = void 0);
enableTransitionTracing && (_this$props.transitionCallbacks = null);
var JSCompiler_inline_result = createFiber(3, null, null, 1);
_this$props.current = JSCompiler_inline_result;
JSCompiler_inline_result.stateNode = _this$props;
@@ -11417,24 +11430,24 @@ var slice = Array.prototype.slice,
};
return Text;
})(React.Component);
var internals$jscomp$inline_1620 = {
var internals$jscomp$inline_1622 = {
bundleType: 0,
version: "19.2.0-www-classic-ac068292-20250508",
version: "19.2.0-www-classic-9b79292a-20250508",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1621 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
var hook$jscomp$inline_1623 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
if (
!hook$jscomp$inline_1621.isDisabled &&
hook$jscomp$inline_1621.supportsFiber
!hook$jscomp$inline_1623.isDisabled &&
hook$jscomp$inline_1623.supportsFiber
)
try {
(rendererID = hook$jscomp$inline_1621.inject(
internals$jscomp$inline_1620
(rendererID = hook$jscomp$inline_1623.inject(
internals$jscomp$inline_1622
)),
(injectedHook = hook$jscomp$inline_1621);
(injectedHook = hook$jscomp$inline_1623);
} catch (err) {}
}
var Path = Mode$1.Path;
@@ -11448,4 +11461,4 @@ exports.RadialGradient = RadialGradient;
exports.Shape = TYPES.SHAPE;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
+55 -42
View File
@@ -4253,34 +4253,44 @@ function resolveDefaultPropsOnNonClassComponent(Component, baseProps) {
}
return baseProps;
}
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: !0,
cancelable: !0,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
};
var reportGlobalError =
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: !0,
cancelable: !0,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
};
function defaultOnUncaughtError(error) {
reportGlobalError(error);
}
function defaultOnCaughtError(error) {
console.error(error);
}
function defaultOnRecoverableError(error) {
reportGlobalError(error);
}
function logUncaughtError(root, errorInfo) {
try {
var onUncaughtError = root.onUncaughtError;
@@ -10947,6 +10957,7 @@ function FiberRootNode(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -11001,6 +11012,7 @@ function updateContainerSync(element, container, parentComponent, callback) {
entangleTransitions(element, parentComponent, 2));
return 2;
}
function defaultOnDefaultTransitionIndicator() {}
Mode$1.setCurrent(FastNoSideEffects);
var slice = Array.prototype.slice,
LinearGradient = (function () {
@@ -11048,13 +11060,14 @@ var slice = Array.prototype.slice,
1,
!1,
"",
void 0,
void 0,
void 0,
defaultOnUncaughtError,
defaultOnCaughtError,
defaultOnRecoverableError,
defaultOnDefaultTransitionIndicator,
null
);
_this$props.hydrationCallbacks = null;
enableTransitionTracing && (_this$props.transitionCallbacks = void 0);
enableTransitionTracing && (_this$props.transitionCallbacks = null);
var JSCompiler_inline_result = createFiber(3, null, null, 1);
_this$props.current = JSCompiler_inline_result;
JSCompiler_inline_result.stateNode = _this$props;
@@ -11129,24 +11142,24 @@ var slice = Array.prototype.slice,
};
return Text;
})(React.Component);
var internals$jscomp$inline_1593 = {
var internals$jscomp$inline_1595 = {
bundleType: 0,
version: "19.2.0-www-modern-ac068292-20250508",
version: "19.2.0-www-modern-9b79292a-20250508",
rendererPackageName: "react-art",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_1594 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
var hook$jscomp$inline_1596 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
if (
!hook$jscomp$inline_1594.isDisabled &&
hook$jscomp$inline_1594.supportsFiber
!hook$jscomp$inline_1596.isDisabled &&
hook$jscomp$inline_1596.supportsFiber
)
try {
(rendererID = hook$jscomp$inline_1594.inject(
internals$jscomp$inline_1593
(rendererID = hook$jscomp$inline_1596.inject(
internals$jscomp$inline_1595
)),
(injectedHook = hook$jscomp$inline_1594);
(injectedHook = hook$jscomp$inline_1596);
} catch (err) {}
}
var Path = Mode$1.Path;
@@ -11160,4 +11173,4 @@ exports.RadialGradient = RadialGradient;
exports.Shape = TYPES.SHAPE;
exports.Surface = Surface;
exports.Text = Text;
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
+125 -117
View File
@@ -10149,24 +10149,24 @@ __DEV__ &&
return current;
}
function updateSuspenseComponent(current, workInProgress, renderLanes) {
var JSCompiler_object_inline_digest_2990;
var JSCompiler_object_inline_stack_2991 = workInProgress.pendingProps;
var JSCompiler_object_inline_digest_2993;
var JSCompiler_object_inline_stack_2994 = workInProgress.pendingProps;
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
var JSCompiler_object_inline_message_2989 = !1;
var JSCompiler_object_inline_message_2992 = !1;
var didSuspend = 0 !== (workInProgress.flags & 128);
(JSCompiler_object_inline_digest_2990 = didSuspend) ||
(JSCompiler_object_inline_digest_2990 =
(JSCompiler_object_inline_digest_2993 = didSuspend) ||
(JSCompiler_object_inline_digest_2993 =
null !== current && null === current.memoizedState
? !1
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
JSCompiler_object_inline_digest_2990 &&
((JSCompiler_object_inline_message_2989 = !0),
JSCompiler_object_inline_digest_2993 &&
((JSCompiler_object_inline_message_2992 = !0),
(workInProgress.flags &= -129));
JSCompiler_object_inline_digest_2990 = 0 !== (workInProgress.flags & 32);
JSCompiler_object_inline_digest_2993 = 0 !== (workInProgress.flags & 32);
workInProgress.flags &= -33;
if (null === current) {
if (isHydrating) {
JSCompiler_object_inline_message_2989
JSCompiler_object_inline_message_2992
? pushPrimaryTreeSuspenseHandler(workInProgress)
: reuseSuspenseHandlerOnStack(workInProgress);
(current = nextHydratableInstance)
@@ -10179,18 +10179,18 @@ __DEV__ &&
? renderLanes
: null),
null !== renderLanes &&
((JSCompiler_object_inline_digest_2990 = {
((JSCompiler_object_inline_digest_2993 = {
dehydrated: renderLanes,
treeContext: getSuspendedTreeContext(),
retryLane: 536870912,
hydrationErrors: null
}),
(workInProgress.memoizedState =
JSCompiler_object_inline_digest_2990),
(JSCompiler_object_inline_digest_2990 =
JSCompiler_object_inline_digest_2993),
(JSCompiler_object_inline_digest_2993 =
createFiberFromDehydratedFragment(renderLanes)),
(JSCompiler_object_inline_digest_2990.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_2990),
(JSCompiler_object_inline_digest_2993.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_2993),
(hydrationParentFiber = workInProgress),
(nextHydratableInstance = null)))
: (renderLanes = null);
@@ -10204,12 +10204,12 @@ __DEV__ &&
: (workInProgress.lanes = 536870912);
return null;
}
var nextPrimaryChildren = JSCompiler_object_inline_stack_2991.children,
nextFallbackChildren = JSCompiler_object_inline_stack_2991.fallback;
if (JSCompiler_object_inline_message_2989)
var nextPrimaryChildren = JSCompiler_object_inline_stack_2994.children,
nextFallbackChildren = JSCompiler_object_inline_stack_2994.fallback;
if (JSCompiler_object_inline_message_2992)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_2991 =
(JSCompiler_object_inline_stack_2994 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10221,7 +10221,7 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_2990,
JSCompiler_object_inline_digest_2993,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10242,15 +10242,15 @@ __DEV__ &&
})
: ((renderLanes.transitions = workInProgress),
(renderLanes.markerInstances = current)))),
JSCompiler_object_inline_stack_2991
JSCompiler_object_inline_stack_2994
);
if (
"number" ===
typeof JSCompiler_object_inline_stack_2991.unstable_expectedLoadTime
typeof JSCompiler_object_inline_stack_2994.unstable_expectedLoadTime
)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_2991 =
(JSCompiler_object_inline_stack_2994 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10262,12 +10262,12 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_2990,
JSCompiler_object_inline_digest_2993,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
(workInProgress.lanes = 4194304),
JSCompiler_object_inline_stack_2991
JSCompiler_object_inline_stack_2994
);
pushPrimaryTreeSuspenseHandler(workInProgress);
return mountSuspensePrimaryChildren(
@@ -10277,8 +10277,8 @@ __DEV__ &&
}
var prevState = current.memoizedState;
if (null !== prevState) {
var JSCompiler_object_inline_componentStack_2992 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_2992) {
var JSCompiler_object_inline_componentStack_2995 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_2995) {
if (didSuspend)
workInProgress.flags & 256
? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10295,13 +10295,13 @@ __DEV__ &&
(workInProgress = null))
: (reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren =
JSCompiler_object_inline_stack_2991.fallback),
JSCompiler_object_inline_stack_2994.fallback),
(nextFallbackChildren = workInProgress.mode),
(JSCompiler_object_inline_stack_2991 =
(JSCompiler_object_inline_stack_2994 =
mountWorkInProgressOffscreenFiber(
{
mode: "visible",
children: JSCompiler_object_inline_stack_2991.children
children: JSCompiler_object_inline_stack_2994.children
},
nextFallbackChildren
)),
@@ -10312,24 +10312,24 @@ __DEV__ &&
null
)),
(nextPrimaryChildren.flags |= 2),
(JSCompiler_object_inline_stack_2991.return = workInProgress),
(JSCompiler_object_inline_stack_2994.return = workInProgress),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_2991.sibling =
(JSCompiler_object_inline_stack_2994.sibling =
nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_2991),
(workInProgress.child = JSCompiler_object_inline_stack_2994),
reconcileChildFibers(
workInProgress,
current.child,
null,
renderLanes
),
(JSCompiler_object_inline_stack_2991 = workInProgress.child),
(JSCompiler_object_inline_stack_2991.memoizedState =
(JSCompiler_object_inline_stack_2994 = workInProgress.child),
(JSCompiler_object_inline_stack_2994.memoizedState =
mountSuspenseOffscreenState(renderLanes)),
(JSCompiler_object_inline_stack_2991.childLanes =
(JSCompiler_object_inline_stack_2994.childLanes =
getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_2990,
JSCompiler_object_inline_digest_2993,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10338,45 +10338,45 @@ __DEV__ &&
(pushPrimaryTreeSuspenseHandler(workInProgress),
warnIfHydrating(),
isSuspenseInstanceFallback(
JSCompiler_object_inline_componentStack_2992
JSCompiler_object_inline_componentStack_2995
))
) {
JSCompiler_object_inline_digest_2990 =
JSCompiler_object_inline_componentStack_2992.nextSibling &&
JSCompiler_object_inline_componentStack_2992.nextSibling.dataset;
if (JSCompiler_object_inline_digest_2990) {
nextPrimaryChildren = JSCompiler_object_inline_digest_2990.dgst;
var message = JSCompiler_object_inline_digest_2990.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_2990.stck;
var componentStack = JSCompiler_object_inline_digest_2990.cstck;
JSCompiler_object_inline_digest_2993 =
JSCompiler_object_inline_componentStack_2995.nextSibling &&
JSCompiler_object_inline_componentStack_2995.nextSibling.dataset;
if (JSCompiler_object_inline_digest_2993) {
nextPrimaryChildren = JSCompiler_object_inline_digest_2993.dgst;
var message = JSCompiler_object_inline_digest_2993.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_2993.stck;
var componentStack = JSCompiler_object_inline_digest_2993.cstck;
}
JSCompiler_object_inline_message_2989 = message;
JSCompiler_object_inline_digest_2990 = nextPrimaryChildren;
JSCompiler_object_inline_stack_2991 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_2992 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_2989;
nextFallbackChildren = JSCompiler_object_inline_componentStack_2992;
JSCompiler_object_inline_message_2992 = message;
JSCompiler_object_inline_digest_2993 = nextPrimaryChildren;
JSCompiler_object_inline_stack_2994 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_2995 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_2992;
nextFallbackChildren = JSCompiler_object_inline_componentStack_2995;
nextPrimaryChildren = nextPrimaryChildren
? Error(nextPrimaryChildren)
: Error(
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
);
nextPrimaryChildren.stack =
JSCompiler_object_inline_stack_2991 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2990;
JSCompiler_object_inline_digest_2990 =
JSCompiler_object_inline_stack_2994 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2993;
JSCompiler_object_inline_digest_2993 =
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
JSCompiler_object_inline_stack_2991 = {
JSCompiler_object_inline_stack_2994 = {
value: nextPrimaryChildren,
source: null,
stack: JSCompiler_object_inline_digest_2990
stack: JSCompiler_object_inline_digest_2993
};
"string" === typeof JSCompiler_object_inline_digest_2990 &&
"string" === typeof JSCompiler_object_inline_digest_2993 &&
CapturedStacks.set(
nextPrimaryChildren,
JSCompiler_object_inline_stack_2991
JSCompiler_object_inline_stack_2994
);
queueHydrationError(JSCompiler_object_inline_stack_2991);
queueHydrationError(JSCompiler_object_inline_stack_2994);
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
workInProgress,
@@ -10390,35 +10390,35 @@ __DEV__ &&
renderLanes,
!1
),
(JSCompiler_object_inline_digest_2990 =
(JSCompiler_object_inline_digest_2993 =
0 !== (renderLanes & current.childLanes)),
didReceiveUpdate || JSCompiler_object_inline_digest_2990)
didReceiveUpdate || JSCompiler_object_inline_digest_2993)
) {
JSCompiler_object_inline_digest_2990 = workInProgressRoot;
JSCompiler_object_inline_digest_2993 = workInProgressRoot;
if (
null !== JSCompiler_object_inline_digest_2990 &&
((JSCompiler_object_inline_stack_2991 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_2990,
null !== JSCompiler_object_inline_digest_2993 &&
((JSCompiler_object_inline_stack_2994 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_2993,
renderLanes
)),
0 !== JSCompiler_object_inline_stack_2991 &&
JSCompiler_object_inline_stack_2991 !== prevState.retryLane)
0 !== JSCompiler_object_inline_stack_2994 &&
JSCompiler_object_inline_stack_2994 !== prevState.retryLane)
)
throw (
((prevState.retryLane = JSCompiler_object_inline_stack_2991),
((prevState.retryLane = JSCompiler_object_inline_stack_2994),
enqueueConcurrentRenderForLane(
current,
JSCompiler_object_inline_stack_2991
JSCompiler_object_inline_stack_2994
),
scheduleUpdateOnFiber(
JSCompiler_object_inline_digest_2990,
JSCompiler_object_inline_digest_2993,
current,
JSCompiler_object_inline_stack_2991
JSCompiler_object_inline_stack_2994
),
SelectiveHydrationException)
);
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_2992
JSCompiler_object_inline_componentStack_2995
) || renderDidSuspendDelayIfPossible();
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
@@ -10427,14 +10427,14 @@ __DEV__ &&
);
} else
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_2992
JSCompiler_object_inline_componentStack_2995
)
? ((workInProgress.flags |= 192),
(workInProgress.child = current.child),
(workInProgress = null))
: ((current = prevState.treeContext),
(nextHydratableInstance = getNextHydratable(
JSCompiler_object_inline_componentStack_2992.nextSibling
JSCompiler_object_inline_componentStack_2995.nextSibling
)),
(hydrationParentFiber = workInProgress),
(isHydrating = !0),
@@ -10446,32 +10446,32 @@ __DEV__ &&
restoreSuspendedTreeContext(workInProgress, current),
(workInProgress = mountSuspensePrimaryChildren(
workInProgress,
JSCompiler_object_inline_stack_2991.children
JSCompiler_object_inline_stack_2994.children
)),
(workInProgress.flags |= 4096));
return workInProgress;
}
}
if (JSCompiler_object_inline_message_2989)
if (JSCompiler_object_inline_message_2992)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren = JSCompiler_object_inline_stack_2991.fallback),
(nextPrimaryChildren = JSCompiler_object_inline_stack_2994.fallback),
(nextFallbackChildren = workInProgress.mode),
(componentStack = current.child),
(JSCompiler_object_inline_componentStack_2992 =
(JSCompiler_object_inline_componentStack_2995 =
componentStack.sibling),
(JSCompiler_object_inline_stack_2991 = createWorkInProgress(
(JSCompiler_object_inline_stack_2994 = createWorkInProgress(
componentStack,
{
mode: "hidden",
children: JSCompiler_object_inline_stack_2991.children
children: JSCompiler_object_inline_stack_2994.children
}
)),
(JSCompiler_object_inline_stack_2991.subtreeFlags =
(JSCompiler_object_inline_stack_2994.subtreeFlags =
componentStack.subtreeFlags & 65011712),
null !== JSCompiler_object_inline_componentStack_2992
null !== JSCompiler_object_inline_componentStack_2995
? (nextPrimaryChildren = createWorkInProgress(
JSCompiler_object_inline_componentStack_2992,
JSCompiler_object_inline_componentStack_2995,
nextPrimaryChildren
))
: ((nextPrimaryChildren = createFiberFromFragment(
@@ -10482,24 +10482,24 @@ __DEV__ &&
)),
(nextPrimaryChildren.flags |= 2)),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_2991.return = workInProgress),
(JSCompiler_object_inline_stack_2991.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_2991),
(JSCompiler_object_inline_stack_2991 = nextPrimaryChildren),
(JSCompiler_object_inline_stack_2994.return = workInProgress),
(JSCompiler_object_inline_stack_2994.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_2994),
(JSCompiler_object_inline_stack_2994 = nextPrimaryChildren),
(nextPrimaryChildren = workInProgress.child),
(nextFallbackChildren = current.child.memoizedState),
null === nextFallbackChildren
? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes))
: ((componentStack = nextFallbackChildren.cachePool),
null !== componentStack
? ((JSCompiler_object_inline_componentStack_2992 =
? ((JSCompiler_object_inline_componentStack_2995 =
CacheContext._currentValue),
(componentStack =
componentStack.parent !==
JSCompiler_object_inline_componentStack_2992
JSCompiler_object_inline_componentStack_2995
? {
parent: JSCompiler_object_inline_componentStack_2992,
pool: JSCompiler_object_inline_componentStack_2992
parent: JSCompiler_object_inline_componentStack_2995,
pool: JSCompiler_object_inline_componentStack_2995
}
: componentStack))
: (componentStack = getSuspendedCache()),
@@ -10516,52 +10516,52 @@ __DEV__ &&
((componentStack = enableTransitionTracing
? markerInstanceStack.current
: null),
(JSCompiler_object_inline_componentStack_2992 =
(JSCompiler_object_inline_componentStack_2995 =
nextPrimaryChildren.updateQueue),
(JSCompiler_object_inline_message_2989 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_2992
(JSCompiler_object_inline_message_2992 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_2995
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue: null
})
: JSCompiler_object_inline_componentStack_2992 ===
JSCompiler_object_inline_message_2989
: JSCompiler_object_inline_componentStack_2995 ===
JSCompiler_object_inline_message_2992
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue:
null !== JSCompiler_object_inline_message_2989
? JSCompiler_object_inline_message_2989.retryQueue
null !== JSCompiler_object_inline_message_2992
? JSCompiler_object_inline_message_2992.retryQueue
: null
})
: ((JSCompiler_object_inline_componentStack_2992.transitions =
: ((JSCompiler_object_inline_componentStack_2995.transitions =
nextFallbackChildren),
(JSCompiler_object_inline_componentStack_2992.markerInstances =
(JSCompiler_object_inline_componentStack_2995.markerInstances =
componentStack)))),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_2990,
JSCompiler_object_inline_digest_2993,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
JSCompiler_object_inline_stack_2991
JSCompiler_object_inline_stack_2994
);
pushPrimaryTreeSuspenseHandler(workInProgress);
renderLanes = current.child;
current = renderLanes.sibling;
renderLanes = createWorkInProgress(renderLanes, {
mode: "visible",
children: JSCompiler_object_inline_stack_2991.children
children: JSCompiler_object_inline_stack_2994.children
});
renderLanes.return = workInProgress;
renderLanes.sibling = null;
null !== current &&
((JSCompiler_object_inline_digest_2990 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_2990
((JSCompiler_object_inline_digest_2993 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_2993
? ((workInProgress.deletions = [current]),
(workInProgress.flags |= 16))
: JSCompiler_object_inline_digest_2990.push(current));
: JSCompiler_object_inline_digest_2993.push(current));
workInProgress.child = renderLanes;
workInProgress.memoizedState = null;
return renderLanes;
@@ -20808,6 +20808,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -20860,11 +20861,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -20874,6 +20876,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -27316,6 +27319,9 @@ __DEV__ &&
? "`" + thing + "`"
: 'something with type "' + typeof thing + '"';
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -31382,11 +31388,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-classic-ac068292-20250508" !== isomorphicReactPackageVersion)
if ("19.2.0-www-classic-9b79292a-20250508" !== 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-ac068292-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-classic-9b79292a-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -31429,10 +31435,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-ac068292-20250508",
version: "19.2.0-www-classic-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -31596,11 +31602,12 @@ __DEV__ &&
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -31688,11 +31695,12 @@ __DEV__ &&
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
options = initialChildren.current;
@@ -32030,7 +32038,7 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+125 -117
View File
@@ -9961,24 +9961,24 @@ __DEV__ &&
return current;
}
function updateSuspenseComponent(current, workInProgress, renderLanes) {
var JSCompiler_object_inline_digest_2985;
var JSCompiler_object_inline_stack_2986 = workInProgress.pendingProps;
var JSCompiler_object_inline_digest_2988;
var JSCompiler_object_inline_stack_2989 = workInProgress.pendingProps;
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
var JSCompiler_object_inline_message_2984 = !1;
var JSCompiler_object_inline_message_2987 = !1;
var didSuspend = 0 !== (workInProgress.flags & 128);
(JSCompiler_object_inline_digest_2985 = didSuspend) ||
(JSCompiler_object_inline_digest_2985 =
(JSCompiler_object_inline_digest_2988 = didSuspend) ||
(JSCompiler_object_inline_digest_2988 =
null !== current && null === current.memoizedState
? !1
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
JSCompiler_object_inline_digest_2985 &&
((JSCompiler_object_inline_message_2984 = !0),
JSCompiler_object_inline_digest_2988 &&
((JSCompiler_object_inline_message_2987 = !0),
(workInProgress.flags &= -129));
JSCompiler_object_inline_digest_2985 = 0 !== (workInProgress.flags & 32);
JSCompiler_object_inline_digest_2988 = 0 !== (workInProgress.flags & 32);
workInProgress.flags &= -33;
if (null === current) {
if (isHydrating) {
JSCompiler_object_inline_message_2984
JSCompiler_object_inline_message_2987
? pushPrimaryTreeSuspenseHandler(workInProgress)
: reuseSuspenseHandlerOnStack(workInProgress);
(current = nextHydratableInstance)
@@ -9991,18 +9991,18 @@ __DEV__ &&
? renderLanes
: null),
null !== renderLanes &&
((JSCompiler_object_inline_digest_2985 = {
((JSCompiler_object_inline_digest_2988 = {
dehydrated: renderLanes,
treeContext: getSuspendedTreeContext(),
retryLane: 536870912,
hydrationErrors: null
}),
(workInProgress.memoizedState =
JSCompiler_object_inline_digest_2985),
(JSCompiler_object_inline_digest_2985 =
JSCompiler_object_inline_digest_2988),
(JSCompiler_object_inline_digest_2988 =
createFiberFromDehydratedFragment(renderLanes)),
(JSCompiler_object_inline_digest_2985.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_2985),
(JSCompiler_object_inline_digest_2988.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_2988),
(hydrationParentFiber = workInProgress),
(nextHydratableInstance = null)))
: (renderLanes = null);
@@ -10016,12 +10016,12 @@ __DEV__ &&
: (workInProgress.lanes = 536870912);
return null;
}
var nextPrimaryChildren = JSCompiler_object_inline_stack_2986.children,
nextFallbackChildren = JSCompiler_object_inline_stack_2986.fallback;
if (JSCompiler_object_inline_message_2984)
var nextPrimaryChildren = JSCompiler_object_inline_stack_2989.children,
nextFallbackChildren = JSCompiler_object_inline_stack_2989.fallback;
if (JSCompiler_object_inline_message_2987)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_2986 =
(JSCompiler_object_inline_stack_2989 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10033,7 +10033,7 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_2985,
JSCompiler_object_inline_digest_2988,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10054,15 +10054,15 @@ __DEV__ &&
})
: ((renderLanes.transitions = workInProgress),
(renderLanes.markerInstances = current)))),
JSCompiler_object_inline_stack_2986
JSCompiler_object_inline_stack_2989
);
if (
"number" ===
typeof JSCompiler_object_inline_stack_2986.unstable_expectedLoadTime
typeof JSCompiler_object_inline_stack_2989.unstable_expectedLoadTime
)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_2986 =
(JSCompiler_object_inline_stack_2989 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10074,12 +10074,12 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_2985,
JSCompiler_object_inline_digest_2988,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
(workInProgress.lanes = 4194304),
JSCompiler_object_inline_stack_2986
JSCompiler_object_inline_stack_2989
);
pushPrimaryTreeSuspenseHandler(workInProgress);
return mountSuspensePrimaryChildren(
@@ -10089,8 +10089,8 @@ __DEV__ &&
}
var prevState = current.memoizedState;
if (null !== prevState) {
var JSCompiler_object_inline_componentStack_2987 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_2987) {
var JSCompiler_object_inline_componentStack_2990 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_2990) {
if (didSuspend)
workInProgress.flags & 256
? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10107,13 +10107,13 @@ __DEV__ &&
(workInProgress = null))
: (reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren =
JSCompiler_object_inline_stack_2986.fallback),
JSCompiler_object_inline_stack_2989.fallback),
(nextFallbackChildren = workInProgress.mode),
(JSCompiler_object_inline_stack_2986 =
(JSCompiler_object_inline_stack_2989 =
mountWorkInProgressOffscreenFiber(
{
mode: "visible",
children: JSCompiler_object_inline_stack_2986.children
children: JSCompiler_object_inline_stack_2989.children
},
nextFallbackChildren
)),
@@ -10124,24 +10124,24 @@ __DEV__ &&
null
)),
(nextPrimaryChildren.flags |= 2),
(JSCompiler_object_inline_stack_2986.return = workInProgress),
(JSCompiler_object_inline_stack_2989.return = workInProgress),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_2986.sibling =
(JSCompiler_object_inline_stack_2989.sibling =
nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_2986),
(workInProgress.child = JSCompiler_object_inline_stack_2989),
reconcileChildFibers(
workInProgress,
current.child,
null,
renderLanes
),
(JSCompiler_object_inline_stack_2986 = workInProgress.child),
(JSCompiler_object_inline_stack_2986.memoizedState =
(JSCompiler_object_inline_stack_2989 = workInProgress.child),
(JSCompiler_object_inline_stack_2989.memoizedState =
mountSuspenseOffscreenState(renderLanes)),
(JSCompiler_object_inline_stack_2986.childLanes =
(JSCompiler_object_inline_stack_2989.childLanes =
getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_2985,
JSCompiler_object_inline_digest_2988,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10150,45 +10150,45 @@ __DEV__ &&
(pushPrimaryTreeSuspenseHandler(workInProgress),
warnIfHydrating(),
isSuspenseInstanceFallback(
JSCompiler_object_inline_componentStack_2987
JSCompiler_object_inline_componentStack_2990
))
) {
JSCompiler_object_inline_digest_2985 =
JSCompiler_object_inline_componentStack_2987.nextSibling &&
JSCompiler_object_inline_componentStack_2987.nextSibling.dataset;
if (JSCompiler_object_inline_digest_2985) {
nextPrimaryChildren = JSCompiler_object_inline_digest_2985.dgst;
var message = JSCompiler_object_inline_digest_2985.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_2985.stck;
var componentStack = JSCompiler_object_inline_digest_2985.cstck;
JSCompiler_object_inline_digest_2988 =
JSCompiler_object_inline_componentStack_2990.nextSibling &&
JSCompiler_object_inline_componentStack_2990.nextSibling.dataset;
if (JSCompiler_object_inline_digest_2988) {
nextPrimaryChildren = JSCompiler_object_inline_digest_2988.dgst;
var message = JSCompiler_object_inline_digest_2988.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_2988.stck;
var componentStack = JSCompiler_object_inline_digest_2988.cstck;
}
JSCompiler_object_inline_message_2984 = message;
JSCompiler_object_inline_digest_2985 = nextPrimaryChildren;
JSCompiler_object_inline_stack_2986 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_2987 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_2984;
nextFallbackChildren = JSCompiler_object_inline_componentStack_2987;
JSCompiler_object_inline_message_2987 = message;
JSCompiler_object_inline_digest_2988 = nextPrimaryChildren;
JSCompiler_object_inline_stack_2989 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_2990 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_2987;
nextFallbackChildren = JSCompiler_object_inline_componentStack_2990;
nextPrimaryChildren = nextPrimaryChildren
? Error(nextPrimaryChildren)
: Error(
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
);
nextPrimaryChildren.stack =
JSCompiler_object_inline_stack_2986 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2985;
JSCompiler_object_inline_digest_2985 =
JSCompiler_object_inline_stack_2989 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_2988;
JSCompiler_object_inline_digest_2988 =
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
JSCompiler_object_inline_stack_2986 = {
JSCompiler_object_inline_stack_2989 = {
value: nextPrimaryChildren,
source: null,
stack: JSCompiler_object_inline_digest_2985
stack: JSCompiler_object_inline_digest_2988
};
"string" === typeof JSCompiler_object_inline_digest_2985 &&
"string" === typeof JSCompiler_object_inline_digest_2988 &&
CapturedStacks.set(
nextPrimaryChildren,
JSCompiler_object_inline_stack_2986
JSCompiler_object_inline_stack_2989
);
queueHydrationError(JSCompiler_object_inline_stack_2986);
queueHydrationError(JSCompiler_object_inline_stack_2989);
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
workInProgress,
@@ -10202,35 +10202,35 @@ __DEV__ &&
renderLanes,
!1
),
(JSCompiler_object_inline_digest_2985 =
(JSCompiler_object_inline_digest_2988 =
0 !== (renderLanes & current.childLanes)),
didReceiveUpdate || JSCompiler_object_inline_digest_2985)
didReceiveUpdate || JSCompiler_object_inline_digest_2988)
) {
JSCompiler_object_inline_digest_2985 = workInProgressRoot;
JSCompiler_object_inline_digest_2988 = workInProgressRoot;
if (
null !== JSCompiler_object_inline_digest_2985 &&
((JSCompiler_object_inline_stack_2986 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_2985,
null !== JSCompiler_object_inline_digest_2988 &&
((JSCompiler_object_inline_stack_2989 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_2988,
renderLanes
)),
0 !== JSCompiler_object_inline_stack_2986 &&
JSCompiler_object_inline_stack_2986 !== prevState.retryLane)
0 !== JSCompiler_object_inline_stack_2989 &&
JSCompiler_object_inline_stack_2989 !== prevState.retryLane)
)
throw (
((prevState.retryLane = JSCompiler_object_inline_stack_2986),
((prevState.retryLane = JSCompiler_object_inline_stack_2989),
enqueueConcurrentRenderForLane(
current,
JSCompiler_object_inline_stack_2986
JSCompiler_object_inline_stack_2989
),
scheduleUpdateOnFiber(
JSCompiler_object_inline_digest_2985,
JSCompiler_object_inline_digest_2988,
current,
JSCompiler_object_inline_stack_2986
JSCompiler_object_inline_stack_2989
),
SelectiveHydrationException)
);
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_2987
JSCompiler_object_inline_componentStack_2990
) || renderDidSuspendDelayIfPossible();
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
@@ -10239,14 +10239,14 @@ __DEV__ &&
);
} else
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_2987
JSCompiler_object_inline_componentStack_2990
)
? ((workInProgress.flags |= 192),
(workInProgress.child = current.child),
(workInProgress = null))
: ((current = prevState.treeContext),
(nextHydratableInstance = getNextHydratable(
JSCompiler_object_inline_componentStack_2987.nextSibling
JSCompiler_object_inline_componentStack_2990.nextSibling
)),
(hydrationParentFiber = workInProgress),
(isHydrating = !0),
@@ -10258,32 +10258,32 @@ __DEV__ &&
restoreSuspendedTreeContext(workInProgress, current),
(workInProgress = mountSuspensePrimaryChildren(
workInProgress,
JSCompiler_object_inline_stack_2986.children
JSCompiler_object_inline_stack_2989.children
)),
(workInProgress.flags |= 4096));
return workInProgress;
}
}
if (JSCompiler_object_inline_message_2984)
if (JSCompiler_object_inline_message_2987)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren = JSCompiler_object_inline_stack_2986.fallback),
(nextPrimaryChildren = JSCompiler_object_inline_stack_2989.fallback),
(nextFallbackChildren = workInProgress.mode),
(componentStack = current.child),
(JSCompiler_object_inline_componentStack_2987 =
(JSCompiler_object_inline_componentStack_2990 =
componentStack.sibling),
(JSCompiler_object_inline_stack_2986 = createWorkInProgress(
(JSCompiler_object_inline_stack_2989 = createWorkInProgress(
componentStack,
{
mode: "hidden",
children: JSCompiler_object_inline_stack_2986.children
children: JSCompiler_object_inline_stack_2989.children
}
)),
(JSCompiler_object_inline_stack_2986.subtreeFlags =
(JSCompiler_object_inline_stack_2989.subtreeFlags =
componentStack.subtreeFlags & 65011712),
null !== JSCompiler_object_inline_componentStack_2987
null !== JSCompiler_object_inline_componentStack_2990
? (nextPrimaryChildren = createWorkInProgress(
JSCompiler_object_inline_componentStack_2987,
JSCompiler_object_inline_componentStack_2990,
nextPrimaryChildren
))
: ((nextPrimaryChildren = createFiberFromFragment(
@@ -10294,24 +10294,24 @@ __DEV__ &&
)),
(nextPrimaryChildren.flags |= 2)),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_2986.return = workInProgress),
(JSCompiler_object_inline_stack_2986.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_2986),
(JSCompiler_object_inline_stack_2986 = nextPrimaryChildren),
(JSCompiler_object_inline_stack_2989.return = workInProgress),
(JSCompiler_object_inline_stack_2989.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_2989),
(JSCompiler_object_inline_stack_2989 = nextPrimaryChildren),
(nextPrimaryChildren = workInProgress.child),
(nextFallbackChildren = current.child.memoizedState),
null === nextFallbackChildren
? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes))
: ((componentStack = nextFallbackChildren.cachePool),
null !== componentStack
? ((JSCompiler_object_inline_componentStack_2987 =
? ((JSCompiler_object_inline_componentStack_2990 =
CacheContext._currentValue),
(componentStack =
componentStack.parent !==
JSCompiler_object_inline_componentStack_2987
JSCompiler_object_inline_componentStack_2990
? {
parent: JSCompiler_object_inline_componentStack_2987,
pool: JSCompiler_object_inline_componentStack_2987
parent: JSCompiler_object_inline_componentStack_2990,
pool: JSCompiler_object_inline_componentStack_2990
}
: componentStack))
: (componentStack = getSuspendedCache()),
@@ -10328,52 +10328,52 @@ __DEV__ &&
((componentStack = enableTransitionTracing
? markerInstanceStack.current
: null),
(JSCompiler_object_inline_componentStack_2987 =
(JSCompiler_object_inline_componentStack_2990 =
nextPrimaryChildren.updateQueue),
(JSCompiler_object_inline_message_2984 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_2987
(JSCompiler_object_inline_message_2987 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_2990
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue: null
})
: JSCompiler_object_inline_componentStack_2987 ===
JSCompiler_object_inline_message_2984
: JSCompiler_object_inline_componentStack_2990 ===
JSCompiler_object_inline_message_2987
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue:
null !== JSCompiler_object_inline_message_2984
? JSCompiler_object_inline_message_2984.retryQueue
null !== JSCompiler_object_inline_message_2987
? JSCompiler_object_inline_message_2987.retryQueue
: null
})
: ((JSCompiler_object_inline_componentStack_2987.transitions =
: ((JSCompiler_object_inline_componentStack_2990.transitions =
nextFallbackChildren),
(JSCompiler_object_inline_componentStack_2987.markerInstances =
(JSCompiler_object_inline_componentStack_2990.markerInstances =
componentStack)))),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_2985,
JSCompiler_object_inline_digest_2988,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
JSCompiler_object_inline_stack_2986
JSCompiler_object_inline_stack_2989
);
pushPrimaryTreeSuspenseHandler(workInProgress);
renderLanes = current.child;
current = renderLanes.sibling;
renderLanes = createWorkInProgress(renderLanes, {
mode: "visible",
children: JSCompiler_object_inline_stack_2986.children
children: JSCompiler_object_inline_stack_2989.children
});
renderLanes.return = workInProgress;
renderLanes.sibling = null;
null !== current &&
((JSCompiler_object_inline_digest_2985 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_2985
((JSCompiler_object_inline_digest_2988 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_2988
? ((workInProgress.deletions = [current]),
(workInProgress.flags |= 16))
: JSCompiler_object_inline_digest_2985.push(current));
: JSCompiler_object_inline_digest_2988.push(current));
workInProgress.child = renderLanes;
workInProgress.memoizedState = null;
return renderLanes;
@@ -20603,6 +20603,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -20655,11 +20656,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -20669,6 +20671,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -27110,6 +27113,9 @@ __DEV__ &&
? "`" + thing + "`"
: 'something with type "' + typeof thing + '"';
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -31168,11 +31174,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-modern-ac068292-20250508" !== isomorphicReactPackageVersion)
if ("19.2.0-www-modern-9b79292a-20250508" !== 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-ac068292-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-modern-9b79292a-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -31215,10 +31221,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-ac068292-20250508",
version: "19.2.0-www-modern-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -31382,11 +31388,12 @@ __DEV__ &&
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -31474,11 +31481,12 @@ __DEV__ &&
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
options = initialChildren.current;
@@ -31816,7 +31824,7 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
+26 -18
View File
@@ -14034,6 +14034,7 @@ function FiberRootNode(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -14081,11 +14082,12 @@ function createFiberRoot(
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -14095,6 +14097,7 @@ function createFiberRoot(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -19579,14 +19582,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2079 = React.version;
if (
"19.2.0-www-classic-ac068292-20250508" !==
"19.2.0-www-classic-9b79292a-20250508" !==
isomorphicReactPackageVersion$jscomp$inline_2079
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2079,
"19.2.0-www-classic-ac068292-20250508"
"19.2.0-www-classic-9b79292a-20250508"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19602,26 +19605,29 @@ Internals.Events = [
return fn(a);
}
];
var internals$jscomp$inline_2690 = {
var internals$jscomp$inline_2692 = {
bundleType: 0,
version: "19.2.0-www-classic-ac068292-20250508",
version: "19.2.0-www-classic-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2691 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
var hook$jscomp$inline_2693 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
if (
!hook$jscomp$inline_2691.isDisabled &&
hook$jscomp$inline_2691.supportsFiber
!hook$jscomp$inline_2693.isDisabled &&
hook$jscomp$inline_2693.supportsFiber
)
try {
(rendererID = hook$jscomp$inline_2691.inject(
internals$jscomp$inline_2690
(rendererID = hook$jscomp$inline_2693.inject(
internals$jscomp$inline_2692
)),
(injectedHook = hook$jscomp$inline_2691);
(injectedHook = hook$jscomp$inline_2693);
} catch (err) {}
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -19730,11 +19736,12 @@ exports.createRoot = function (container, options) {
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -19794,11 +19801,12 @@ exports.hydrateRoot = function (container, initialChildren, options) {
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
options = initialChildren.current;
@@ -19971,4 +19979,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
+26 -18
View File
@@ -13774,6 +13774,7 @@ function FiberRootNode(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -13821,11 +13822,12 @@ function createFiberRoot(
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -13835,6 +13837,7 @@ function createFiberRoot(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -19308,14 +19311,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2069 = React.version;
if (
"19.2.0-www-modern-ac068292-20250508" !==
"19.2.0-www-modern-9b79292a-20250508" !==
isomorphicReactPackageVersion$jscomp$inline_2069
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2069,
"19.2.0-www-modern-ac068292-20250508"
"19.2.0-www-modern-9b79292a-20250508"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19331,26 +19334,29 @@ Internals.Events = [
return fn(a);
}
];
var internals$jscomp$inline_2672 = {
var internals$jscomp$inline_2674 = {
bundleType: 0,
version: "19.2.0-www-modern-ac068292-20250508",
version: "19.2.0-www-modern-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2673 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
var hook$jscomp$inline_2675 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
if (
!hook$jscomp$inline_2673.isDisabled &&
hook$jscomp$inline_2673.supportsFiber
!hook$jscomp$inline_2675.isDisabled &&
hook$jscomp$inline_2675.supportsFiber
)
try {
(rendererID = hook$jscomp$inline_2673.inject(
internals$jscomp$inline_2672
(rendererID = hook$jscomp$inline_2675.inject(
internals$jscomp$inline_2674
)),
(injectedHook = hook$jscomp$inline_2673);
(injectedHook = hook$jscomp$inline_2675);
} catch (err) {}
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -19459,11 +19465,12 @@ exports.createRoot = function (container, options) {
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -19523,11 +19530,12 @@ exports.hydrateRoot = function (container, initialChildren, options) {
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = emptyContextObject;
options = initialChildren.current;
@@ -19700,4 +19708,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
@@ -15974,6 +15974,7 @@ function FiberRootNode(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -16025,11 +16026,12 @@ function createFiberRoot(
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -16039,6 +16041,7 @@ function createFiberRoot(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -21554,14 +21557,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2323 = React.version;
if (
"19.2.0-www-classic-ac068292-20250508" !==
"19.2.0-www-classic-9b79292a-20250508" !==
isomorphicReactPackageVersion$jscomp$inline_2323
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2323,
"19.2.0-www-classic-ac068292-20250508"
"19.2.0-www-classic-9b79292a-20250508"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -21579,27 +21582,30 @@ Internals.Events = [
];
var internals$jscomp$inline_2325 = {
bundleType: 0,
version: "19.2.0-www-classic-ac068292-20250508",
version: "19.2.0-www-classic-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
enableSchedulingProfiler &&
((internals$jscomp$inline_2325.getLaneLabelMap = getLaneLabelMap),
(internals$jscomp$inline_2325.injectProfilingHooks = injectProfilingHooks));
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2922 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
var hook$jscomp$inline_2924 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
if (
!hook$jscomp$inline_2922.isDisabled &&
hook$jscomp$inline_2922.supportsFiber
!hook$jscomp$inline_2924.isDisabled &&
hook$jscomp$inline_2924.supportsFiber
)
try {
(rendererID = hook$jscomp$inline_2922.inject(
(rendererID = hook$jscomp$inline_2924.inject(
internals$jscomp$inline_2325
)),
(injectedHook = hook$jscomp$inline_2922);
(injectedHook = hook$jscomp$inline_2924);
} catch (err) {}
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -21708,11 +21714,12 @@ exports.createRoot = function (container, options) {
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -21772,11 +21779,12 @@ exports.hydrateRoot = function (container, initialChildren, options) {
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
options = initialChildren.current;
@@ -21949,7 +21957,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -15783,6 +15783,7 @@ function FiberRootNode(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -15834,11 +15835,12 @@ function createFiberRoot(
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -15848,6 +15850,7 @@ function createFiberRoot(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -21352,14 +21355,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2313 = React.version;
if (
"19.2.0-www-modern-ac068292-20250508" !==
"19.2.0-www-modern-9b79292a-20250508" !==
isomorphicReactPackageVersion$jscomp$inline_2313
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2313,
"19.2.0-www-modern-ac068292-20250508"
"19.2.0-www-modern-9b79292a-20250508"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -21377,27 +21380,30 @@ Internals.Events = [
];
var internals$jscomp$inline_2315 = {
bundleType: 0,
version: "19.2.0-www-modern-ac068292-20250508",
version: "19.2.0-www-modern-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
enableSchedulingProfiler &&
((internals$jscomp$inline_2315.getLaneLabelMap = getLaneLabelMap),
(internals$jscomp$inline_2315.injectProfilingHooks = injectProfilingHooks));
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2904 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
var hook$jscomp$inline_2906 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
if (
!hook$jscomp$inline_2904.isDisabled &&
hook$jscomp$inline_2904.supportsFiber
!hook$jscomp$inline_2906.isDisabled &&
hook$jscomp$inline_2906.supportsFiber
)
try {
(rendererID = hook$jscomp$inline_2904.inject(
(rendererID = hook$jscomp$inline_2906.inject(
internals$jscomp$inline_2315
)),
(injectedHook = hook$jscomp$inline_2904);
(injectedHook = hook$jscomp$inline_2906);
} catch (err) {}
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -21506,11 +21512,12 @@ exports.createRoot = function (container, options) {
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -21570,11 +21577,12 @@ exports.hydrateRoot = function (container, initialChildren, options) {
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = emptyContextObject;
options = initialChildren.current;
@@ -21747,7 +21755,7 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -9536,5 +9536,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-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
})();
@@ -9465,5 +9465,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-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
})();
@@ -6287,4 +6287,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-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
@@ -6199,4 +6199,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-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
@@ -10190,24 +10190,24 @@ __DEV__ &&
return current;
}
function updateSuspenseComponent(current, workInProgress, renderLanes) {
var JSCompiler_object_inline_digest_3024;
var JSCompiler_object_inline_stack_3025 = workInProgress.pendingProps;
var JSCompiler_object_inline_digest_3027;
var JSCompiler_object_inline_stack_3028 = workInProgress.pendingProps;
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
var JSCompiler_object_inline_message_3023 = !1;
var JSCompiler_object_inline_message_3026 = !1;
var didSuspend = 0 !== (workInProgress.flags & 128);
(JSCompiler_object_inline_digest_3024 = didSuspend) ||
(JSCompiler_object_inline_digest_3024 =
(JSCompiler_object_inline_digest_3027 = didSuspend) ||
(JSCompiler_object_inline_digest_3027 =
null !== current && null === current.memoizedState
? !1
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
JSCompiler_object_inline_digest_3024 &&
((JSCompiler_object_inline_message_3023 = !0),
JSCompiler_object_inline_digest_3027 &&
((JSCompiler_object_inline_message_3026 = !0),
(workInProgress.flags &= -129));
JSCompiler_object_inline_digest_3024 = 0 !== (workInProgress.flags & 32);
JSCompiler_object_inline_digest_3027 = 0 !== (workInProgress.flags & 32);
workInProgress.flags &= -33;
if (null === current) {
if (isHydrating) {
JSCompiler_object_inline_message_3023
JSCompiler_object_inline_message_3026
? pushPrimaryTreeSuspenseHandler(workInProgress)
: reuseSuspenseHandlerOnStack(workInProgress);
(current = nextHydratableInstance)
@@ -10220,18 +10220,18 @@ __DEV__ &&
? renderLanes
: null),
null !== renderLanes &&
((JSCompiler_object_inline_digest_3024 = {
((JSCompiler_object_inline_digest_3027 = {
dehydrated: renderLanes,
treeContext: getSuspendedTreeContext(),
retryLane: 536870912,
hydrationErrors: null
}),
(workInProgress.memoizedState =
JSCompiler_object_inline_digest_3024),
(JSCompiler_object_inline_digest_3024 =
JSCompiler_object_inline_digest_3027),
(JSCompiler_object_inline_digest_3027 =
createFiberFromDehydratedFragment(renderLanes)),
(JSCompiler_object_inline_digest_3024.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3024),
(JSCompiler_object_inline_digest_3027.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3027),
(hydrationParentFiber = workInProgress),
(nextHydratableInstance = null)))
: (renderLanes = null);
@@ -10245,12 +10245,12 @@ __DEV__ &&
: (workInProgress.lanes = 536870912);
return null;
}
var nextPrimaryChildren = JSCompiler_object_inline_stack_3025.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3025.fallback;
if (JSCompiler_object_inline_message_3023)
var nextPrimaryChildren = JSCompiler_object_inline_stack_3028.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3028.fallback;
if (JSCompiler_object_inline_message_3026)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3025 =
(JSCompiler_object_inline_stack_3028 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10262,7 +10262,7 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3024,
JSCompiler_object_inline_digest_3027,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10283,15 +10283,15 @@ __DEV__ &&
})
: ((renderLanes.transitions = workInProgress),
(renderLanes.markerInstances = current)))),
JSCompiler_object_inline_stack_3025
JSCompiler_object_inline_stack_3028
);
if (
"number" ===
typeof JSCompiler_object_inline_stack_3025.unstable_expectedLoadTime
typeof JSCompiler_object_inline_stack_3028.unstable_expectedLoadTime
)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3025 =
(JSCompiler_object_inline_stack_3028 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10303,12 +10303,12 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3024,
JSCompiler_object_inline_digest_3027,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
(workInProgress.lanes = 4194304),
JSCompiler_object_inline_stack_3025
JSCompiler_object_inline_stack_3028
);
pushPrimaryTreeSuspenseHandler(workInProgress);
return mountSuspensePrimaryChildren(
@@ -10318,8 +10318,8 @@ __DEV__ &&
}
var prevState = current.memoizedState;
if (null !== prevState) {
var JSCompiler_object_inline_componentStack_3026 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3026) {
var JSCompiler_object_inline_componentStack_3029 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3029) {
if (didSuspend)
workInProgress.flags & 256
? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10336,13 +10336,13 @@ __DEV__ &&
(workInProgress = null))
: (reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren =
JSCompiler_object_inline_stack_3025.fallback),
JSCompiler_object_inline_stack_3028.fallback),
(nextFallbackChildren = workInProgress.mode),
(JSCompiler_object_inline_stack_3025 =
(JSCompiler_object_inline_stack_3028 =
mountWorkInProgressOffscreenFiber(
{
mode: "visible",
children: JSCompiler_object_inline_stack_3025.children
children: JSCompiler_object_inline_stack_3028.children
},
nextFallbackChildren
)),
@@ -10353,24 +10353,24 @@ __DEV__ &&
null
)),
(nextPrimaryChildren.flags |= 2),
(JSCompiler_object_inline_stack_3025.return = workInProgress),
(JSCompiler_object_inline_stack_3028.return = workInProgress),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3025.sibling =
(JSCompiler_object_inline_stack_3028.sibling =
nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3025),
(workInProgress.child = JSCompiler_object_inline_stack_3028),
reconcileChildFibers(
workInProgress,
current.child,
null,
renderLanes
),
(JSCompiler_object_inline_stack_3025 = workInProgress.child),
(JSCompiler_object_inline_stack_3025.memoizedState =
(JSCompiler_object_inline_stack_3028 = workInProgress.child),
(JSCompiler_object_inline_stack_3028.memoizedState =
mountSuspenseOffscreenState(renderLanes)),
(JSCompiler_object_inline_stack_3025.childLanes =
(JSCompiler_object_inline_stack_3028.childLanes =
getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3024,
JSCompiler_object_inline_digest_3027,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10379,45 +10379,45 @@ __DEV__ &&
(pushPrimaryTreeSuspenseHandler(workInProgress),
warnIfHydrating(),
isSuspenseInstanceFallback(
JSCompiler_object_inline_componentStack_3026
JSCompiler_object_inline_componentStack_3029
))
) {
JSCompiler_object_inline_digest_3024 =
JSCompiler_object_inline_componentStack_3026.nextSibling &&
JSCompiler_object_inline_componentStack_3026.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3024) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3024.dgst;
var message = JSCompiler_object_inline_digest_3024.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3024.stck;
var componentStack = JSCompiler_object_inline_digest_3024.cstck;
JSCompiler_object_inline_digest_3027 =
JSCompiler_object_inline_componentStack_3029.nextSibling &&
JSCompiler_object_inline_componentStack_3029.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3027) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3027.dgst;
var message = JSCompiler_object_inline_digest_3027.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3027.stck;
var componentStack = JSCompiler_object_inline_digest_3027.cstck;
}
JSCompiler_object_inline_message_3023 = message;
JSCompiler_object_inline_digest_3024 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3025 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3026 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3023;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3026;
JSCompiler_object_inline_message_3026 = message;
JSCompiler_object_inline_digest_3027 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3028 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3029 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3026;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3029;
nextPrimaryChildren = nextPrimaryChildren
? Error(nextPrimaryChildren)
: Error(
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
);
nextPrimaryChildren.stack =
JSCompiler_object_inline_stack_3025 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3024;
JSCompiler_object_inline_digest_3024 =
JSCompiler_object_inline_stack_3028 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3027;
JSCompiler_object_inline_digest_3027 =
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
JSCompiler_object_inline_stack_3025 = {
JSCompiler_object_inline_stack_3028 = {
value: nextPrimaryChildren,
source: null,
stack: JSCompiler_object_inline_digest_3024
stack: JSCompiler_object_inline_digest_3027
};
"string" === typeof JSCompiler_object_inline_digest_3024 &&
"string" === typeof JSCompiler_object_inline_digest_3027 &&
CapturedStacks.set(
nextPrimaryChildren,
JSCompiler_object_inline_stack_3025
JSCompiler_object_inline_stack_3028
);
queueHydrationError(JSCompiler_object_inline_stack_3025);
queueHydrationError(JSCompiler_object_inline_stack_3028);
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
workInProgress,
@@ -10431,35 +10431,35 @@ __DEV__ &&
renderLanes,
!1
),
(JSCompiler_object_inline_digest_3024 =
(JSCompiler_object_inline_digest_3027 =
0 !== (renderLanes & current.childLanes)),
didReceiveUpdate || JSCompiler_object_inline_digest_3024)
didReceiveUpdate || JSCompiler_object_inline_digest_3027)
) {
JSCompiler_object_inline_digest_3024 = workInProgressRoot;
JSCompiler_object_inline_digest_3027 = workInProgressRoot;
if (
null !== JSCompiler_object_inline_digest_3024 &&
((JSCompiler_object_inline_stack_3025 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3024,
null !== JSCompiler_object_inline_digest_3027 &&
((JSCompiler_object_inline_stack_3028 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3027,
renderLanes
)),
0 !== JSCompiler_object_inline_stack_3025 &&
JSCompiler_object_inline_stack_3025 !== prevState.retryLane)
0 !== JSCompiler_object_inline_stack_3028 &&
JSCompiler_object_inline_stack_3028 !== prevState.retryLane)
)
throw (
((prevState.retryLane = JSCompiler_object_inline_stack_3025),
((prevState.retryLane = JSCompiler_object_inline_stack_3028),
enqueueConcurrentRenderForLane(
current,
JSCompiler_object_inline_stack_3025
JSCompiler_object_inline_stack_3028
),
scheduleUpdateOnFiber(
JSCompiler_object_inline_digest_3024,
JSCompiler_object_inline_digest_3027,
current,
JSCompiler_object_inline_stack_3025
JSCompiler_object_inline_stack_3028
),
SelectiveHydrationException)
);
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3026
JSCompiler_object_inline_componentStack_3029
) || renderDidSuspendDelayIfPossible();
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
@@ -10468,14 +10468,14 @@ __DEV__ &&
);
} else
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3026
JSCompiler_object_inline_componentStack_3029
)
? ((workInProgress.flags |= 192),
(workInProgress.child = current.child),
(workInProgress = null))
: ((current = prevState.treeContext),
(nextHydratableInstance = getNextHydratable(
JSCompiler_object_inline_componentStack_3026.nextSibling
JSCompiler_object_inline_componentStack_3029.nextSibling
)),
(hydrationParentFiber = workInProgress),
(isHydrating = !0),
@@ -10487,32 +10487,32 @@ __DEV__ &&
restoreSuspendedTreeContext(workInProgress, current),
(workInProgress = mountSuspensePrimaryChildren(
workInProgress,
JSCompiler_object_inline_stack_3025.children
JSCompiler_object_inline_stack_3028.children
)),
(workInProgress.flags |= 4096));
return workInProgress;
}
}
if (JSCompiler_object_inline_message_3023)
if (JSCompiler_object_inline_message_3026)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3025.fallback),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3028.fallback),
(nextFallbackChildren = workInProgress.mode),
(componentStack = current.child),
(JSCompiler_object_inline_componentStack_3026 =
(JSCompiler_object_inline_componentStack_3029 =
componentStack.sibling),
(JSCompiler_object_inline_stack_3025 = createWorkInProgress(
(JSCompiler_object_inline_stack_3028 = createWorkInProgress(
componentStack,
{
mode: "hidden",
children: JSCompiler_object_inline_stack_3025.children
children: JSCompiler_object_inline_stack_3028.children
}
)),
(JSCompiler_object_inline_stack_3025.subtreeFlags =
(JSCompiler_object_inline_stack_3028.subtreeFlags =
componentStack.subtreeFlags & 65011712),
null !== JSCompiler_object_inline_componentStack_3026
null !== JSCompiler_object_inline_componentStack_3029
? (nextPrimaryChildren = createWorkInProgress(
JSCompiler_object_inline_componentStack_3026,
JSCompiler_object_inline_componentStack_3029,
nextPrimaryChildren
))
: ((nextPrimaryChildren = createFiberFromFragment(
@@ -10523,24 +10523,24 @@ __DEV__ &&
)),
(nextPrimaryChildren.flags |= 2)),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3025.return = workInProgress),
(JSCompiler_object_inline_stack_3025.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3025),
(JSCompiler_object_inline_stack_3025 = nextPrimaryChildren),
(JSCompiler_object_inline_stack_3028.return = workInProgress),
(JSCompiler_object_inline_stack_3028.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3028),
(JSCompiler_object_inline_stack_3028 = nextPrimaryChildren),
(nextPrimaryChildren = workInProgress.child),
(nextFallbackChildren = current.child.memoizedState),
null === nextFallbackChildren
? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes))
: ((componentStack = nextFallbackChildren.cachePool),
null !== componentStack
? ((JSCompiler_object_inline_componentStack_3026 =
? ((JSCompiler_object_inline_componentStack_3029 =
CacheContext._currentValue),
(componentStack =
componentStack.parent !==
JSCompiler_object_inline_componentStack_3026
JSCompiler_object_inline_componentStack_3029
? {
parent: JSCompiler_object_inline_componentStack_3026,
pool: JSCompiler_object_inline_componentStack_3026
parent: JSCompiler_object_inline_componentStack_3029,
pool: JSCompiler_object_inline_componentStack_3029
}
: componentStack))
: (componentStack = getSuspendedCache()),
@@ -10557,52 +10557,52 @@ __DEV__ &&
((componentStack = enableTransitionTracing
? markerInstanceStack.current
: null),
(JSCompiler_object_inline_componentStack_3026 =
(JSCompiler_object_inline_componentStack_3029 =
nextPrimaryChildren.updateQueue),
(JSCompiler_object_inline_message_3023 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3026
(JSCompiler_object_inline_message_3026 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3029
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue: null
})
: JSCompiler_object_inline_componentStack_3026 ===
JSCompiler_object_inline_message_3023
: JSCompiler_object_inline_componentStack_3029 ===
JSCompiler_object_inline_message_3026
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue:
null !== JSCompiler_object_inline_message_3023
? JSCompiler_object_inline_message_3023.retryQueue
null !== JSCompiler_object_inline_message_3026
? JSCompiler_object_inline_message_3026.retryQueue
: null
})
: ((JSCompiler_object_inline_componentStack_3026.transitions =
: ((JSCompiler_object_inline_componentStack_3029.transitions =
nextFallbackChildren),
(JSCompiler_object_inline_componentStack_3026.markerInstances =
(JSCompiler_object_inline_componentStack_3029.markerInstances =
componentStack)))),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3024,
JSCompiler_object_inline_digest_3027,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
JSCompiler_object_inline_stack_3025
JSCompiler_object_inline_stack_3028
);
pushPrimaryTreeSuspenseHandler(workInProgress);
renderLanes = current.child;
current = renderLanes.sibling;
renderLanes = createWorkInProgress(renderLanes, {
mode: "visible",
children: JSCompiler_object_inline_stack_3025.children
children: JSCompiler_object_inline_stack_3028.children
});
renderLanes.return = workInProgress;
renderLanes.sibling = null;
null !== current &&
((JSCompiler_object_inline_digest_3024 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3024
((JSCompiler_object_inline_digest_3027 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3027
? ((workInProgress.deletions = [current]),
(workInProgress.flags |= 16))
: JSCompiler_object_inline_digest_3024.push(current));
: JSCompiler_object_inline_digest_3027.push(current));
workInProgress.child = renderLanes;
workInProgress.memoizedState = null;
return renderLanes;
@@ -21031,6 +21031,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -21083,11 +21084,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -21097,6 +21099,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -27591,6 +27594,9 @@ __DEV__ &&
? "`" + thing + "`"
: 'something with type "' + typeof thing + '"';
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -31703,11 +31709,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-classic-ac068292-20250508" !== isomorphicReactPackageVersion)
if ("19.2.0-www-classic-9b79292a-20250508" !== 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-ac068292-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-classic-9b79292a-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -31750,10 +31756,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-ac068292-20250508",
version: "19.2.0-www-classic-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -31926,11 +31932,12 @@ __DEV__ &&
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -32146,11 +32153,12 @@ __DEV__ &&
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
options = initialChildren.current;
@@ -32517,5 +32525,5 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
})();
@@ -10002,24 +10002,24 @@ __DEV__ &&
return current;
}
function updateSuspenseComponent(current, workInProgress, renderLanes) {
var JSCompiler_object_inline_digest_3019;
var JSCompiler_object_inline_stack_3020 = workInProgress.pendingProps;
var JSCompiler_object_inline_digest_3022;
var JSCompiler_object_inline_stack_3023 = workInProgress.pendingProps;
shouldSuspendImpl(workInProgress) && (workInProgress.flags |= 128);
var JSCompiler_object_inline_message_3018 = !1;
var JSCompiler_object_inline_message_3021 = !1;
var didSuspend = 0 !== (workInProgress.flags & 128);
(JSCompiler_object_inline_digest_3019 = didSuspend) ||
(JSCompiler_object_inline_digest_3019 =
(JSCompiler_object_inline_digest_3022 = didSuspend) ||
(JSCompiler_object_inline_digest_3022 =
null !== current && null === current.memoizedState
? !1
: 0 !== (suspenseStackCursor.current & ForceSuspenseFallback));
JSCompiler_object_inline_digest_3019 &&
((JSCompiler_object_inline_message_3018 = !0),
JSCompiler_object_inline_digest_3022 &&
((JSCompiler_object_inline_message_3021 = !0),
(workInProgress.flags &= -129));
JSCompiler_object_inline_digest_3019 = 0 !== (workInProgress.flags & 32);
JSCompiler_object_inline_digest_3022 = 0 !== (workInProgress.flags & 32);
workInProgress.flags &= -33;
if (null === current) {
if (isHydrating) {
JSCompiler_object_inline_message_3018
JSCompiler_object_inline_message_3021
? pushPrimaryTreeSuspenseHandler(workInProgress)
: reuseSuspenseHandlerOnStack(workInProgress);
(current = nextHydratableInstance)
@@ -10032,18 +10032,18 @@ __DEV__ &&
? renderLanes
: null),
null !== renderLanes &&
((JSCompiler_object_inline_digest_3019 = {
((JSCompiler_object_inline_digest_3022 = {
dehydrated: renderLanes,
treeContext: getSuspendedTreeContext(),
retryLane: 536870912,
hydrationErrors: null
}),
(workInProgress.memoizedState =
JSCompiler_object_inline_digest_3019),
(JSCompiler_object_inline_digest_3019 =
JSCompiler_object_inline_digest_3022),
(JSCompiler_object_inline_digest_3022 =
createFiberFromDehydratedFragment(renderLanes)),
(JSCompiler_object_inline_digest_3019.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3019),
(JSCompiler_object_inline_digest_3022.return = workInProgress),
(workInProgress.child = JSCompiler_object_inline_digest_3022),
(hydrationParentFiber = workInProgress),
(nextHydratableInstance = null)))
: (renderLanes = null);
@@ -10057,12 +10057,12 @@ __DEV__ &&
: (workInProgress.lanes = 536870912);
return null;
}
var nextPrimaryChildren = JSCompiler_object_inline_stack_3020.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3020.fallback;
if (JSCompiler_object_inline_message_3018)
var nextPrimaryChildren = JSCompiler_object_inline_stack_3023.children,
nextFallbackChildren = JSCompiler_object_inline_stack_3023.fallback;
if (JSCompiler_object_inline_message_3021)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3020 =
(JSCompiler_object_inline_stack_3023 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10074,7 +10074,7 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3019,
JSCompiler_object_inline_digest_3022,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10095,15 +10095,15 @@ __DEV__ &&
})
: ((renderLanes.transitions = workInProgress),
(renderLanes.markerInstances = current)))),
JSCompiler_object_inline_stack_3020
JSCompiler_object_inline_stack_3023
);
if (
"number" ===
typeof JSCompiler_object_inline_stack_3020.unstable_expectedLoadTime
typeof JSCompiler_object_inline_stack_3023.unstable_expectedLoadTime
)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(JSCompiler_object_inline_stack_3020 =
(JSCompiler_object_inline_stack_3023 =
mountSuspenseFallbackChildren(
workInProgress,
nextPrimaryChildren,
@@ -10115,12 +10115,12 @@ __DEV__ &&
mountSuspenseOffscreenState(renderLanes)),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3019,
JSCompiler_object_inline_digest_3022,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
(workInProgress.lanes = 4194304),
JSCompiler_object_inline_stack_3020
JSCompiler_object_inline_stack_3023
);
pushPrimaryTreeSuspenseHandler(workInProgress);
return mountSuspensePrimaryChildren(
@@ -10130,8 +10130,8 @@ __DEV__ &&
}
var prevState = current.memoizedState;
if (null !== prevState) {
var JSCompiler_object_inline_componentStack_3021 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3021) {
var JSCompiler_object_inline_componentStack_3024 = prevState.dehydrated;
if (null !== JSCompiler_object_inline_componentStack_3024) {
if (didSuspend)
workInProgress.flags & 256
? (pushPrimaryTreeSuspenseHandler(workInProgress),
@@ -10148,13 +10148,13 @@ __DEV__ &&
(workInProgress = null))
: (reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren =
JSCompiler_object_inline_stack_3020.fallback),
JSCompiler_object_inline_stack_3023.fallback),
(nextFallbackChildren = workInProgress.mode),
(JSCompiler_object_inline_stack_3020 =
(JSCompiler_object_inline_stack_3023 =
mountWorkInProgressOffscreenFiber(
{
mode: "visible",
children: JSCompiler_object_inline_stack_3020.children
children: JSCompiler_object_inline_stack_3023.children
},
nextFallbackChildren
)),
@@ -10165,24 +10165,24 @@ __DEV__ &&
null
)),
(nextPrimaryChildren.flags |= 2),
(JSCompiler_object_inline_stack_3020.return = workInProgress),
(JSCompiler_object_inline_stack_3023.return = workInProgress),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3020.sibling =
(JSCompiler_object_inline_stack_3023.sibling =
nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3020),
(workInProgress.child = JSCompiler_object_inline_stack_3023),
reconcileChildFibers(
workInProgress,
current.child,
null,
renderLanes
),
(JSCompiler_object_inline_stack_3020 = workInProgress.child),
(JSCompiler_object_inline_stack_3020.memoizedState =
(JSCompiler_object_inline_stack_3023 = workInProgress.child),
(JSCompiler_object_inline_stack_3023.memoizedState =
mountSuspenseOffscreenState(renderLanes)),
(JSCompiler_object_inline_stack_3020.childLanes =
(JSCompiler_object_inline_stack_3023.childLanes =
getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3019,
JSCompiler_object_inline_digest_3022,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
@@ -10191,45 +10191,45 @@ __DEV__ &&
(pushPrimaryTreeSuspenseHandler(workInProgress),
warnIfHydrating(),
isSuspenseInstanceFallback(
JSCompiler_object_inline_componentStack_3021
JSCompiler_object_inline_componentStack_3024
))
) {
JSCompiler_object_inline_digest_3019 =
JSCompiler_object_inline_componentStack_3021.nextSibling &&
JSCompiler_object_inline_componentStack_3021.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3019) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3019.dgst;
var message = JSCompiler_object_inline_digest_3019.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3019.stck;
var componentStack = JSCompiler_object_inline_digest_3019.cstck;
JSCompiler_object_inline_digest_3022 =
JSCompiler_object_inline_componentStack_3024.nextSibling &&
JSCompiler_object_inline_componentStack_3024.nextSibling.dataset;
if (JSCompiler_object_inline_digest_3022) {
nextPrimaryChildren = JSCompiler_object_inline_digest_3022.dgst;
var message = JSCompiler_object_inline_digest_3022.msg;
nextFallbackChildren = JSCompiler_object_inline_digest_3022.stck;
var componentStack = JSCompiler_object_inline_digest_3022.cstck;
}
JSCompiler_object_inline_message_3018 = message;
JSCompiler_object_inline_digest_3019 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3020 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3021 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3018;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3021;
JSCompiler_object_inline_message_3021 = message;
JSCompiler_object_inline_digest_3022 = nextPrimaryChildren;
JSCompiler_object_inline_stack_3023 = nextFallbackChildren;
JSCompiler_object_inline_componentStack_3024 = componentStack;
nextPrimaryChildren = JSCompiler_object_inline_message_3021;
nextFallbackChildren = JSCompiler_object_inline_componentStack_3024;
nextPrimaryChildren = nextPrimaryChildren
? Error(nextPrimaryChildren)
: Error(
"The server could not finish this Suspense boundary, likely due to an error during server rendering. Switched to client rendering."
);
nextPrimaryChildren.stack =
JSCompiler_object_inline_stack_3020 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3019;
JSCompiler_object_inline_digest_3019 =
JSCompiler_object_inline_stack_3023 || "";
nextPrimaryChildren.digest = JSCompiler_object_inline_digest_3022;
JSCompiler_object_inline_digest_3022 =
void 0 === nextFallbackChildren ? null : nextFallbackChildren;
JSCompiler_object_inline_stack_3020 = {
JSCompiler_object_inline_stack_3023 = {
value: nextPrimaryChildren,
source: null,
stack: JSCompiler_object_inline_digest_3019
stack: JSCompiler_object_inline_digest_3022
};
"string" === typeof JSCompiler_object_inline_digest_3019 &&
"string" === typeof JSCompiler_object_inline_digest_3022 &&
CapturedStacks.set(
nextPrimaryChildren,
JSCompiler_object_inline_stack_3020
JSCompiler_object_inline_stack_3023
);
queueHydrationError(JSCompiler_object_inline_stack_3020);
queueHydrationError(JSCompiler_object_inline_stack_3023);
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
workInProgress,
@@ -10243,35 +10243,35 @@ __DEV__ &&
renderLanes,
!1
),
(JSCompiler_object_inline_digest_3019 =
(JSCompiler_object_inline_digest_3022 =
0 !== (renderLanes & current.childLanes)),
didReceiveUpdate || JSCompiler_object_inline_digest_3019)
didReceiveUpdate || JSCompiler_object_inline_digest_3022)
) {
JSCompiler_object_inline_digest_3019 = workInProgressRoot;
JSCompiler_object_inline_digest_3022 = workInProgressRoot;
if (
null !== JSCompiler_object_inline_digest_3019 &&
((JSCompiler_object_inline_stack_3020 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3019,
null !== JSCompiler_object_inline_digest_3022 &&
((JSCompiler_object_inline_stack_3023 = getBumpedLaneForHydration(
JSCompiler_object_inline_digest_3022,
renderLanes
)),
0 !== JSCompiler_object_inline_stack_3020 &&
JSCompiler_object_inline_stack_3020 !== prevState.retryLane)
0 !== JSCompiler_object_inline_stack_3023 &&
JSCompiler_object_inline_stack_3023 !== prevState.retryLane)
)
throw (
((prevState.retryLane = JSCompiler_object_inline_stack_3020),
((prevState.retryLane = JSCompiler_object_inline_stack_3023),
enqueueConcurrentRenderForLane(
current,
JSCompiler_object_inline_stack_3020
JSCompiler_object_inline_stack_3023
),
scheduleUpdateOnFiber(
JSCompiler_object_inline_digest_3019,
JSCompiler_object_inline_digest_3022,
current,
JSCompiler_object_inline_stack_3020
JSCompiler_object_inline_stack_3023
),
SelectiveHydrationException)
);
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3021
JSCompiler_object_inline_componentStack_3024
) || renderDidSuspendDelayIfPossible();
workInProgress = retrySuspenseComponentWithoutHydrating(
current,
@@ -10280,14 +10280,14 @@ __DEV__ &&
);
} else
isSuspenseInstancePending(
JSCompiler_object_inline_componentStack_3021
JSCompiler_object_inline_componentStack_3024
)
? ((workInProgress.flags |= 192),
(workInProgress.child = current.child),
(workInProgress = null))
: ((current = prevState.treeContext),
(nextHydratableInstance = getNextHydratable(
JSCompiler_object_inline_componentStack_3021.nextSibling
JSCompiler_object_inline_componentStack_3024.nextSibling
)),
(hydrationParentFiber = workInProgress),
(isHydrating = !0),
@@ -10299,32 +10299,32 @@ __DEV__ &&
restoreSuspendedTreeContext(workInProgress, current),
(workInProgress = mountSuspensePrimaryChildren(
workInProgress,
JSCompiler_object_inline_stack_3020.children
JSCompiler_object_inline_stack_3023.children
)),
(workInProgress.flags |= 4096));
return workInProgress;
}
}
if (JSCompiler_object_inline_message_3018)
if (JSCompiler_object_inline_message_3021)
return (
reuseSuspenseHandlerOnStack(workInProgress),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3020.fallback),
(nextPrimaryChildren = JSCompiler_object_inline_stack_3023.fallback),
(nextFallbackChildren = workInProgress.mode),
(componentStack = current.child),
(JSCompiler_object_inline_componentStack_3021 =
(JSCompiler_object_inline_componentStack_3024 =
componentStack.sibling),
(JSCompiler_object_inline_stack_3020 = createWorkInProgress(
(JSCompiler_object_inline_stack_3023 = createWorkInProgress(
componentStack,
{
mode: "hidden",
children: JSCompiler_object_inline_stack_3020.children
children: JSCompiler_object_inline_stack_3023.children
}
)),
(JSCompiler_object_inline_stack_3020.subtreeFlags =
(JSCompiler_object_inline_stack_3023.subtreeFlags =
componentStack.subtreeFlags & 65011712),
null !== JSCompiler_object_inline_componentStack_3021
null !== JSCompiler_object_inline_componentStack_3024
? (nextPrimaryChildren = createWorkInProgress(
JSCompiler_object_inline_componentStack_3021,
JSCompiler_object_inline_componentStack_3024,
nextPrimaryChildren
))
: ((nextPrimaryChildren = createFiberFromFragment(
@@ -10335,24 +10335,24 @@ __DEV__ &&
)),
(nextPrimaryChildren.flags |= 2)),
(nextPrimaryChildren.return = workInProgress),
(JSCompiler_object_inline_stack_3020.return = workInProgress),
(JSCompiler_object_inline_stack_3020.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3020),
(JSCompiler_object_inline_stack_3020 = nextPrimaryChildren),
(JSCompiler_object_inline_stack_3023.return = workInProgress),
(JSCompiler_object_inline_stack_3023.sibling = nextPrimaryChildren),
(workInProgress.child = JSCompiler_object_inline_stack_3023),
(JSCompiler_object_inline_stack_3023 = nextPrimaryChildren),
(nextPrimaryChildren = workInProgress.child),
(nextFallbackChildren = current.child.memoizedState),
null === nextFallbackChildren
? (nextFallbackChildren = mountSuspenseOffscreenState(renderLanes))
: ((componentStack = nextFallbackChildren.cachePool),
null !== componentStack
? ((JSCompiler_object_inline_componentStack_3021 =
? ((JSCompiler_object_inline_componentStack_3024 =
CacheContext._currentValue),
(componentStack =
componentStack.parent !==
JSCompiler_object_inline_componentStack_3021
JSCompiler_object_inline_componentStack_3024
? {
parent: JSCompiler_object_inline_componentStack_3021,
pool: JSCompiler_object_inline_componentStack_3021
parent: JSCompiler_object_inline_componentStack_3024,
pool: JSCompiler_object_inline_componentStack_3024
}
: componentStack))
: (componentStack = getSuspendedCache()),
@@ -10369,52 +10369,52 @@ __DEV__ &&
((componentStack = enableTransitionTracing
? markerInstanceStack.current
: null),
(JSCompiler_object_inline_componentStack_3021 =
(JSCompiler_object_inline_componentStack_3024 =
nextPrimaryChildren.updateQueue),
(JSCompiler_object_inline_message_3018 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3021
(JSCompiler_object_inline_message_3021 = current.updateQueue),
null === JSCompiler_object_inline_componentStack_3024
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue: null
})
: JSCompiler_object_inline_componentStack_3021 ===
JSCompiler_object_inline_message_3018
: JSCompiler_object_inline_componentStack_3024 ===
JSCompiler_object_inline_message_3021
? (nextPrimaryChildren.updateQueue = {
transitions: nextFallbackChildren,
markerInstances: componentStack,
retryQueue:
null !== JSCompiler_object_inline_message_3018
? JSCompiler_object_inline_message_3018.retryQueue
null !== JSCompiler_object_inline_message_3021
? JSCompiler_object_inline_message_3021.retryQueue
: null
})
: ((JSCompiler_object_inline_componentStack_3021.transitions =
: ((JSCompiler_object_inline_componentStack_3024.transitions =
nextFallbackChildren),
(JSCompiler_object_inline_componentStack_3021.markerInstances =
(JSCompiler_object_inline_componentStack_3024.markerInstances =
componentStack)))),
(nextPrimaryChildren.childLanes = getRemainingWorkInPrimaryTree(
current,
JSCompiler_object_inline_digest_3019,
JSCompiler_object_inline_digest_3022,
renderLanes
)),
(workInProgress.memoizedState = SUSPENDED_MARKER),
JSCompiler_object_inline_stack_3020
JSCompiler_object_inline_stack_3023
);
pushPrimaryTreeSuspenseHandler(workInProgress);
renderLanes = current.child;
current = renderLanes.sibling;
renderLanes = createWorkInProgress(renderLanes, {
mode: "visible",
children: JSCompiler_object_inline_stack_3020.children
children: JSCompiler_object_inline_stack_3023.children
});
renderLanes.return = workInProgress;
renderLanes.sibling = null;
null !== current &&
((JSCompiler_object_inline_digest_3019 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3019
((JSCompiler_object_inline_digest_3022 = workInProgress.deletions),
null === JSCompiler_object_inline_digest_3022
? ((workInProgress.deletions = [current]),
(workInProgress.flags |= 16))
: JSCompiler_object_inline_digest_3019.push(current));
: JSCompiler_object_inline_digest_3022.push(current));
workInProgress.child = renderLanes;
workInProgress.memoizedState = null;
return renderLanes;
@@ -20826,6 +20826,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -20878,11 +20879,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -20892,6 +20894,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -27385,6 +27388,9 @@ __DEV__ &&
? "`" + thing + "`"
: 'something with type "' + typeof thing + '"';
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -31489,11 +31495,11 @@ __DEV__ &&
return_targetInst = null;
(function () {
var isomorphicReactPackageVersion = React.version;
if ("19.2.0-www-modern-ac068292-20250508" !== isomorphicReactPackageVersion)
if ("19.2.0-www-modern-9b79292a-20250508" !== 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-ac068292-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
"\n - react-dom: 19.2.0-www-modern-9b79292a-20250508\nLearn more: https://react.dev/warnings/version-mismatch")
);
})();
("function" === typeof Map &&
@@ -31536,10 +31542,10 @@ __DEV__ &&
!(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-ac068292-20250508",
version: "19.2.0-www-modern-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -31712,11 +31718,12 @@ __DEV__ &&
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -31932,11 +31939,12 @@ __DEV__ &&
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
options = initialChildren.current;
@@ -32303,5 +32311,5 @@ __DEV__ &&
exports.useFormStatus = function () {
return resolveDispatcher().useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
})();
@@ -14306,6 +14306,7 @@ function FiberRootNode(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -14353,11 +14354,12 @@ function createFiberRoot(
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -14367,6 +14369,7 @@ function createFiberRoot(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -19895,14 +19898,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2108 = React.version;
if (
"19.2.0-www-classic-ac068292-20250508" !==
"19.2.0-www-classic-9b79292a-20250508" !==
isomorphicReactPackageVersion$jscomp$inline_2108
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2108,
"19.2.0-www-classic-ac068292-20250508"
"19.2.0-www-classic-9b79292a-20250508"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19918,26 +19921,29 @@ Internals.Events = [
return fn(a);
}
];
var internals$jscomp$inline_2724 = {
var internals$jscomp$inline_2726 = {
bundleType: 0,
version: "19.2.0-www-classic-ac068292-20250508",
version: "19.2.0-www-classic-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2725 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
var hook$jscomp$inline_2727 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
if (
!hook$jscomp$inline_2725.isDisabled &&
hook$jscomp$inline_2725.supportsFiber
!hook$jscomp$inline_2727.isDisabled &&
hook$jscomp$inline_2727.supportsFiber
)
try {
(rendererID = hook$jscomp$inline_2725.inject(
internals$jscomp$inline_2724
(rendererID = hook$jscomp$inline_2727.inject(
internals$jscomp$inline_2726
)),
(injectedHook = hook$jscomp$inline_2725);
(injectedHook = hook$jscomp$inline_2727);
} catch (err) {}
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -20055,11 +20061,12 @@ exports.createRoot = function (container, options) {
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -20243,11 +20250,12 @@ exports.hydrateRoot = function (container, initialChildren, options) {
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
options = initialChildren.current;
@@ -20438,4 +20446,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
@@ -14046,6 +14046,7 @@ function FiberRootNode(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -14093,11 +14094,12 @@ function createFiberRoot(
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -14107,6 +14109,7 @@ function createFiberRoot(
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -19624,14 +19627,14 @@ function getCrossOriginStringAs(as, input) {
}
var isomorphicReactPackageVersion$jscomp$inline_2098 = React.version;
if (
"19.2.0-www-modern-ac068292-20250508" !==
"19.2.0-www-modern-9b79292a-20250508" !==
isomorphicReactPackageVersion$jscomp$inline_2098
)
throw Error(
formatProdErrorMessage(
527,
isomorphicReactPackageVersion$jscomp$inline_2098,
"19.2.0-www-modern-ac068292-20250508"
"19.2.0-www-modern-9b79292a-20250508"
)
);
Internals.findDOMNode = function (componentOrElement) {
@@ -19647,26 +19650,29 @@ Internals.Events = [
return fn(a);
}
];
var internals$jscomp$inline_2706 = {
var internals$jscomp$inline_2708 = {
bundleType: 0,
version: "19.2.0-www-modern-ac068292-20250508",
version: "19.2.0-www-modern-9b79292a-20250508",
rendererPackageName: "react-dom",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
var hook$jscomp$inline_2707 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
var hook$jscomp$inline_2709 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
if (
!hook$jscomp$inline_2707.isDisabled &&
hook$jscomp$inline_2707.supportsFiber
!hook$jscomp$inline_2709.isDisabled &&
hook$jscomp$inline_2709.supportsFiber
)
try {
(rendererID = hook$jscomp$inline_2707.inject(
internals$jscomp$inline_2706
(rendererID = hook$jscomp$inline_2709.inject(
internals$jscomp$inline_2708
)),
(injectedHook = hook$jscomp$inline_2707);
(injectedHook = hook$jscomp$inline_2709);
} catch (err) {}
}
function defaultOnDefaultTransitionIndicator() {
return function () {};
}
function ReactDOMRoot(internalRoot) {
this._internalRoot = internalRoot;
}
@@ -19784,11 +19790,12 @@ exports.createRoot = function (container, options) {
null,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
container[internalContainerInstanceKey] = options.current;
listenToAllSupportedEvents(
@@ -19972,11 +19979,12 @@ exports.hydrateRoot = function (container, initialChildren, options) {
null != options ? options : null,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
defaultOnDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = emptyContextObject;
options = initialChildren.current;
@@ -20167,4 +20175,4 @@ exports.useFormState = function (action, initialState, permalink) {
exports.useFormStatus = function () {
return ReactSharedInternals.H.useHostTransitionStatus();
};
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
@@ -18894,6 +18894,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -18946,11 +18947,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -18960,6 +18962,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -21478,6 +21481,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
transitionCallbacks
) {
return createFiberRoot(
@@ -21488,11 +21492,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
onDefaultTransitionIndicator,
transitionCallbacks
);
};
exports.createHasPseudoClassSelector = function (selectors) {
@@ -21510,6 +21515,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
transitionCallbacks,
formState
) {
@@ -21521,11 +21527,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
containerInfo = initialChildren.current;
@@ -21856,7 +21863,7 @@ __DEV__ &&
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -18708,6 +18708,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -18760,11 +18761,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -18774,6 +18776,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -21259,6 +21262,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
transitionCallbacks
) {
return createFiberRoot(
@@ -21269,11 +21273,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
onDefaultTransitionIndicator,
transitionCallbacks
);
};
exports.createHasPseudoClassSelector = function (selectors) {
@@ -21291,6 +21296,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
transitionCallbacks,
formState
) {
@@ -21302,11 +21308,12 @@ __DEV__ &&
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
containerInfo = initialChildren.current;
@@ -21637,7 +21644,7 @@ __DEV__ &&
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -12698,6 +12698,7 @@ module.exports = function ($$$config) {
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -12745,11 +12746,12 @@ module.exports = function ($$$config) {
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -12759,6 +12761,7 @@ module.exports = function ($$$config) {
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -13811,6 +13814,7 @@ module.exports = function ($$$config) {
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
transitionCallbacks
) {
return createFiberRoot(
@@ -13821,11 +13825,12 @@ module.exports = function ($$$config) {
hydrationCallbacks,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
onDefaultTransitionIndicator,
transitionCallbacks
);
};
exports.createHasPseudoClassSelector = function (selectors) {
@@ -13843,6 +13848,7 @@ module.exports = function ($$$config) {
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
transitionCallbacks,
formState
) {
@@ -13854,11 +13860,12 @@ module.exports = function ($$$config) {
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
containerInfo = initialChildren.current;
@@ -14100,7 +14107,7 @@ module.exports = function ($$$config) {
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -12449,6 +12449,7 @@ module.exports = function ($$$config) {
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -12496,11 +12497,12 @@ module.exports = function ($$$config) {
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -12510,6 +12512,7 @@ module.exports = function ($$$config) {
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -13528,6 +13531,7 @@ module.exports = function ($$$config) {
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
transitionCallbacks
) {
return createFiberRoot(
@@ -13538,11 +13542,12 @@ module.exports = function ($$$config) {
hydrationCallbacks,
isStrictMode,
identifierPrefix,
null,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
null
onDefaultTransitionIndicator,
transitionCallbacks
);
};
exports.createHasPseudoClassSelector = function (selectors) {
@@ -13560,6 +13565,7 @@ module.exports = function ($$$config) {
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
transitionCallbacks,
formState
) {
@@ -13571,11 +13577,12 @@ module.exports = function ($$$config) {
hydrationCallbacks,
isStrictMode,
identifierPrefix,
formState,
onUncaughtError,
onCaughtError,
onRecoverableError,
transitionCallbacks,
formState
onDefaultTransitionIndicator,
transitionCallbacks
);
initialChildren.context = getContextForSubtree(null);
containerInfo = initialChildren.current;
@@ -13817,7 +13824,7 @@ module.exports = function ($$$config) {
version: rendererVersion,
rendererPackageName: rendererPackageName,
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
null !== extraDevToolsConfig &&
(internals.rendererConfig = extraDevToolsConfig);
@@ -13,7 +13,7 @@
"use strict";
__DEV__ &&
(function () {
function JSCompiler_object_inline_createNodeMock_1164() {
function JSCompiler_object_inline_createNodeMock_1165() {
return null;
}
function findHook(fiber, id) {
@@ -12992,6 +12992,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -13041,7 +13042,8 @@ __DEV__ &&
identifierPrefix,
onUncaughtError,
onCaughtError,
onRecoverableError
onRecoverableError,
onDefaultTransitionIndicator
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -13051,6 +13053,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
null
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -13172,6 +13175,7 @@ __DEV__ &&
function getCurrentFiberForDevTools() {
return current;
}
function defaultOnDefaultTransitionIndicator() {}
function toJSON(inst) {
if (inst.isHidden) return null;
switch (inst.tag) {
@@ -15364,10 +15368,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-classic-ac068292-20250508",
version: "19.2.0-www-classic-9b79292a-20250508",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-classic-ac068292-20250508"
reconcilerVersion: "19.2.0-www-classic-9b79292a-20250508"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -15387,7 +15391,7 @@ __DEV__ &&
exports._Scheduler = Scheduler;
exports.act = act;
exports.create = function (element, options) {
var createNodeMock = JSCompiler_object_inline_createNodeMock_1164,
var createNodeMock = JSCompiler_object_inline_createNodeMock_1165,
isConcurrentOnly = !0 !== global.IS_REACT_NATIVE_TEST_ENVIRONMENT,
isConcurrent = isConcurrentOnly,
isStrictMode = !1;
@@ -15413,7 +15417,7 @@ __DEV__ &&
defaultOnUncaughtError,
defaultOnCaughtError,
defaultOnRecoverableError,
null
defaultOnDefaultTransitionIndicator
);
if (null == root) throw Error("something went wrong");
updateContainer(element, root, null, null);
@@ -15502,5 +15506,5 @@ __DEV__ &&
exports.unstable_batchedUpdates = function (fn, a) {
return fn(a);
};
exports.version = "19.2.0-www-classic-ac068292-20250508";
exports.version = "19.2.0-www-classic-9b79292a-20250508";
})();
@@ -13,7 +13,7 @@
"use strict";
__DEV__ &&
(function () {
function JSCompiler_object_inline_createNodeMock_1164() {
function JSCompiler_object_inline_createNodeMock_1165() {
return null;
}
function findHook(fiber, id) {
@@ -12992,6 +12992,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
formState
) {
this.tag = 1;
@@ -13041,7 +13042,8 @@ __DEV__ &&
identifierPrefix,
onUncaughtError,
onCaughtError,
onRecoverableError
onRecoverableError,
onDefaultTransitionIndicator
) {
containerInfo = new FiberRootNode(
containerInfo,
@@ -13051,6 +13053,7 @@ __DEV__ &&
onUncaughtError,
onCaughtError,
onRecoverableError,
onDefaultTransitionIndicator,
null
);
containerInfo.hydrationCallbacks = hydrationCallbacks;
@@ -13172,6 +13175,7 @@ __DEV__ &&
function getCurrentFiberForDevTools() {
return current;
}
function defaultOnDefaultTransitionIndicator() {}
function toJSON(inst) {
if (inst.isHidden) return null;
switch (inst.tag) {
@@ -15364,10 +15368,10 @@ __DEV__ &&
(function () {
var internals = {
bundleType: 1,
version: "19.2.0-www-modern-ac068292-20250508",
version: "19.2.0-www-modern-9b79292a-20250508",
rendererPackageName: "react-test-renderer",
currentDispatcherRef: ReactSharedInternals,
reconcilerVersion: "19.2.0-www-modern-ac068292-20250508"
reconcilerVersion: "19.2.0-www-modern-9b79292a-20250508"
};
internals.overrideHookState = overrideHookState;
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -15387,7 +15391,7 @@ __DEV__ &&
exports._Scheduler = Scheduler;
exports.act = act;
exports.create = function (element, options) {
var createNodeMock = JSCompiler_object_inline_createNodeMock_1164,
var createNodeMock = JSCompiler_object_inline_createNodeMock_1165,
isConcurrentOnly = !0 !== global.IS_REACT_NATIVE_TEST_ENVIRONMENT,
isConcurrent = isConcurrentOnly,
isStrictMode = !1;
@@ -15413,7 +15417,7 @@ __DEV__ &&
defaultOnUncaughtError,
defaultOnCaughtError,
defaultOnRecoverableError,
null
defaultOnDefaultTransitionIndicator
);
if (null == root) throw Error("something went wrong");
updateContainer(element, root, null, null);
@@ -15502,5 +15506,5 @@ __DEV__ &&
exports.unstable_batchedUpdates = function (fn, a) {
return fn(a);
};
exports.version = "19.2.0-www-modern-ac068292-20250508";
exports.version = "19.2.0-www-modern-9b79292a-20250508";
})();
+1 -1
View File
@@ -1 +1 @@
19.2.0-www-classic-ac068292-20250508
19.2.0-www-classic-9b79292a-20250508
+1 -1
View File
@@ -1 +1 @@
19.2.0-www-modern-ac068292-20250508
19.2.0-www-modern-9b79292a-20250508