mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[Fizz] Enable the progressiveChunkSize option (#33027)
Since the very beginning we have had the `progressiveChunkSize` option
but we never actually took advantage of it because we didn't count the
bytes that we emitted. This starts counting the bytes by taking a pass
over the added chunks each time a segment completes.
That allows us to outline a Suspense boundary to stream in late even if
it is already loaded by the time that back-pressure flow and in a
`prerender`. Meaning it gets inserted with script.
The effect can be seen in the fixture where if you have large HTML
content that can block initial paint (thanks to
[`rel="expect"`](https://github.com/facebook/react/pull/33016) but also
nested Suspense boundaries). Before this fix, the paint would be blocked
until the large content loaded. This lets us paint the fallback first in
the case that the raw bytes of the content takes a while to download.
You can set it to `Infinity` to opt-out. E.g. if you want to ensure
there's never any scripts. It's always set to `Infinity` in
`renderToHTML` and the legacy `renderToString`.
One downside is that if we might choose to outline a boundary, we need
to let its fallback complete.
We don't currently discount the size of the fallback but really just
consider them additive even though in theory the fallback itself could
also add significant size or even more than the content. It should maybe
really be considered the delta but that would require us to track the
size of the fallback separately which is tricky.
One problem with the current heuristic is that we just consider the size
of the boundary content itself down to the next boundary. If you have a
lot of small boundaries adding up, it'll never kick in. I intend to
address that in a follow up.
DiffTrain build for [8e9a5fc6c1](https://github.com/facebook/react/commit/8e9a5fc6c1a6252ca1727ab8fe0d4ee13f2568ec)
This commit is contained in:
@@ -1 +1 @@
|
||||
89e8875ec48c86b366bf62398112923cdf76016a
|
||||
8e9a5fc6c1a6252ca1727ab8fe0d4ee13f2568ec
|
||||
|
||||
@@ -1 +1 @@
|
||||
89e8875ec48c86b366bf62398112923cdf76016a
|
||||
8e9a5fc6c1a6252ca1727ab8fe0d4ee13f2568ec
|
||||
|
||||
@@ -1538,7 +1538,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -1538,7 +1538,7 @@ __DEV__ &&
|
||||
exports.useTransition = function () {
|
||||
return resolveDispatcher().useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -636,4 +636,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
|
||||
@@ -636,4 +636,4 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
|
||||
@@ -640,7 +640,7 @@ exports.useSyncExternalStore = function (
|
||||
exports.useTransition = function () {
|
||||
return ReactSharedInternals.H.useTransition();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
"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-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -18800,10 +18800,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-89e8875e-20250425",
|
||||
version: "19.2.0-www-classic-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -18837,7 +18837,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -18572,10 +18572,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-89e8875e-20250425",
|
||||
version: "19.2.0-www-modern-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -18609,7 +18609,7 @@ __DEV__ &&
|
||||
exports.Shape = Shape;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -11412,10 +11412,10 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1619 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-89e8875e-20250425",
|
||||
version: "19.2.0-www-classic-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1620 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -11441,4 +11441,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
|
||||
@@ -11125,10 +11125,10 @@ var slice = Array.prototype.slice,
|
||||
})(React.Component);
|
||||
var internals$jscomp$inline_1592 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-89e8875e-20250425",
|
||||
version: "19.2.0-www-modern-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-art",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_1593 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -11154,4 +11154,4 @@ exports.RadialGradient = RadialGradient;
|
||||
exports.Shape = TYPES.SHAPE;
|
||||
exports.Surface = Surface;
|
||||
exports.Text = Text;
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
|
||||
@@ -30914,11 +30914,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-classic-89e8875e-20250425" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-classic-8e9a5fc6-20250425" !== 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-89e8875e-20250425\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-classic-8e9a5fc6-20250425\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -30961,10 +30961,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-89e8875e-20250425",
|
||||
version: "19.2.0-www-classic-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -31562,7 +31562,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -30700,11 +30700,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-modern-89e8875e-20250425" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-modern-8e9a5fc6-20250425" !== 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-89e8875e-20250425\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-modern-8e9a5fc6-20250425\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -30747,10 +30747,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-89e8875e-20250425",
|
||||
version: "19.2.0-www-modern-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -31348,7 +31348,7 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -19440,14 +19440,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2029 = React.version;
|
||||
if (
|
||||
"19.2.0-www-classic-89e8875e-20250425" !==
|
||||
"19.2.0-www-classic-8e9a5fc6-20250425" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2029
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2029,
|
||||
"19.2.0-www-classic-89e8875e-20250425"
|
||||
"19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19465,10 +19465,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2635 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-89e8875e-20250425",
|
||||
version: "19.2.0-www-classic-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2636 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -19832,4 +19832,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
|
||||
@@ -19169,14 +19169,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2019 = React.version;
|
||||
if (
|
||||
"19.2.0-www-modern-89e8875e-20250425" !==
|
||||
"19.2.0-www-modern-8e9a5fc6-20250425" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2019
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2019,
|
||||
"19.2.0-www-modern-89e8875e-20250425"
|
||||
"19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19194,10 +19194,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2617 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-89e8875e-20250425",
|
||||
version: "19.2.0-www-modern-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2618 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -19561,4 +19561,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
|
||||
@@ -21437,14 +21437,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2239 = React.version;
|
||||
if (
|
||||
"19.2.0-www-classic-89e8875e-20250425" !==
|
||||
"19.2.0-www-classic-8e9a5fc6-20250425" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2239
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2239,
|
||||
"19.2.0-www-classic-89e8875e-20250425"
|
||||
"19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -21462,10 +21462,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2241 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-89e8875e-20250425",
|
||||
version: "19.2.0-www-classic-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_2241.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -21832,7 +21832,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -21235,14 +21235,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2229 = React.version;
|
||||
if (
|
||||
"19.2.0-www-modern-89e8875e-20250425" !==
|
||||
"19.2.0-www-modern-8e9a5fc6-20250425" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2229
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2229,
|
||||
"19.2.0-www-modern-89e8875e-20250425"
|
||||
"19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -21260,10 +21260,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2231 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-89e8875e-20250425",
|
||||
version: "19.2.0-www-modern-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
enableSchedulingProfiler &&
|
||||
((internals$jscomp$inline_2231.getLaneLabelMap = getLaneLabelMap),
|
||||
@@ -21630,7 +21630,7 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
|
||||
"function" ===
|
||||
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
|
||||
|
||||
@@ -4456,6 +4456,7 @@ __DEV__ &&
|
||||
this.fatalError = null;
|
||||
this.pendingRootTasks = this.allPendingTasks = this.nextSegmentId = 0;
|
||||
this.completedPreambleSegments = this.completedRootSegment = null;
|
||||
this.byteSize = 0;
|
||||
this.abortableTasks = abortSet;
|
||||
this.pingedTasks = [];
|
||||
this.clientRenderedBoundaries = [];
|
||||
@@ -5802,9 +5803,10 @@ __DEV__ &&
|
||||
(contentRootSegment.status = COMPLETED),
|
||||
queueCompletedSegment(newBoundary, contentRootSegment),
|
||||
0 === newBoundary.pendingTasks &&
|
||||
newBoundary.status === PENDING)
|
||||
newBoundary.status === PENDING &&
|
||||
((newBoundary.status = COMPLETED),
|
||||
!(newBoundary.byteSize > request.progressiveChunkSize)))
|
||||
) {
|
||||
newBoundary.status = COMPLETED;
|
||||
0 === request.pendingRootTasks &&
|
||||
task.blockedPreamble &&
|
||||
preparePreamble(request);
|
||||
@@ -6930,11 +6932,12 @@ __DEV__ &&
|
||||
boundary.parentFlushed &&
|
||||
request.completedBoundaries.push(boundary),
|
||||
boundary.status === COMPLETED &&
|
||||
(boundary.fallbackAbortableTasks.forEach(
|
||||
abortTaskSoft,
|
||||
request
|
||||
),
|
||||
boundary.fallbackAbortableTasks.clear(),
|
||||
(boundary.byteSize > request.progressiveChunkSize ||
|
||||
(boundary.fallbackAbortableTasks.forEach(
|
||||
abortTaskSoft,
|
||||
request
|
||||
),
|
||||
boundary.fallbackAbortableTasks.clear()),
|
||||
0 === request.pendingRootTasks &&
|
||||
null === request.trackedPostpones &&
|
||||
null !== boundary.contentPreamble &&
|
||||
@@ -9500,5 +9503,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-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
})();
|
||||
|
||||
@@ -4448,6 +4448,7 @@ __DEV__ &&
|
||||
this.fatalError = null;
|
||||
this.pendingRootTasks = this.allPendingTasks = this.nextSegmentId = 0;
|
||||
this.completedPreambleSegments = this.completedRootSegment = null;
|
||||
this.byteSize = 0;
|
||||
this.abortableTasks = abortSet;
|
||||
this.pingedTasks = [];
|
||||
this.clientRenderedBoundaries = [];
|
||||
@@ -5741,9 +5742,10 @@ __DEV__ &&
|
||||
(contentRootSegment.status = COMPLETED),
|
||||
queueCompletedSegment(newBoundary, contentRootSegment),
|
||||
0 === newBoundary.pendingTasks &&
|
||||
newBoundary.status === PENDING)
|
||||
newBoundary.status === PENDING &&
|
||||
((newBoundary.status = COMPLETED),
|
||||
!(newBoundary.byteSize > request.progressiveChunkSize)))
|
||||
) {
|
||||
newBoundary.status = COMPLETED;
|
||||
0 === request.pendingRootTasks &&
|
||||
task.blockedPreamble &&
|
||||
preparePreamble(request);
|
||||
@@ -6863,11 +6865,12 @@ __DEV__ &&
|
||||
boundary.parentFlushed &&
|
||||
request.completedBoundaries.push(boundary),
|
||||
boundary.status === COMPLETED &&
|
||||
(boundary.fallbackAbortableTasks.forEach(
|
||||
abortTaskSoft,
|
||||
request
|
||||
),
|
||||
boundary.fallbackAbortableTasks.clear(),
|
||||
(boundary.byteSize > request.progressiveChunkSize ||
|
||||
(boundary.fallbackAbortableTasks.forEach(
|
||||
abortTaskSoft,
|
||||
request
|
||||
),
|
||||
boundary.fallbackAbortableTasks.clear()),
|
||||
0 === request.pendingRootTasks &&
|
||||
null === request.trackedPostpones &&
|
||||
null !== boundary.contentPreamble &&
|
||||
@@ -9429,5 +9432,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-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
})();
|
||||
|
||||
@@ -2774,17 +2774,17 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
"\x3c/script>"
|
||||
));
|
||||
bootstrapScriptContent = idPrefix + "P:";
|
||||
var JSCompiler_object_inline_segmentPrefix_1732 = idPrefix + "S:";
|
||||
var JSCompiler_object_inline_segmentPrefix_1738 = idPrefix + "S:";
|
||||
idPrefix += "B:";
|
||||
var JSCompiler_object_inline_preamble_1735 = createPreambleState(),
|
||||
JSCompiler_object_inline_preconnects_1745 = new Set(),
|
||||
JSCompiler_object_inline_fontPreloads_1746 = new Set(),
|
||||
JSCompiler_object_inline_highImagePreloads_1747 = new Set(),
|
||||
JSCompiler_object_inline_styles_1748 = new Map(),
|
||||
JSCompiler_object_inline_bootstrapScripts_1749 = new Set(),
|
||||
JSCompiler_object_inline_scripts_1750 = new Set(),
|
||||
JSCompiler_object_inline_bulkPreloads_1751 = new Set(),
|
||||
JSCompiler_object_inline_preloads_1752 = {
|
||||
var JSCompiler_object_inline_preamble_1741 = createPreambleState(),
|
||||
JSCompiler_object_inline_preconnects_1751 = new Set(),
|
||||
JSCompiler_object_inline_fontPreloads_1752 = new Set(),
|
||||
JSCompiler_object_inline_highImagePreloads_1753 = new Set(),
|
||||
JSCompiler_object_inline_styles_1754 = new Map(),
|
||||
JSCompiler_object_inline_bootstrapScripts_1755 = new Set(),
|
||||
JSCompiler_object_inline_scripts_1756 = new Set(),
|
||||
JSCompiler_object_inline_bulkPreloads_1757 = new Set(),
|
||||
JSCompiler_object_inline_preloads_1758 = {
|
||||
images: new Map(),
|
||||
stylesheets: new Map(),
|
||||
scripts: new Map(),
|
||||
@@ -2821,7 +2821,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
scriptConfig.moduleScriptResources[href] = null;
|
||||
scriptConfig = [];
|
||||
pushLinkImpl(scriptConfig, props);
|
||||
JSCompiler_object_inline_bootstrapScripts_1749.add(scriptConfig);
|
||||
JSCompiler_object_inline_bootstrapScripts_1755.add(scriptConfig);
|
||||
bootstrapChunks.push('<script src="', escapeTextForBrowser(src), '"');
|
||||
"string" === typeof integrity &&
|
||||
bootstrapChunks.push(
|
||||
@@ -2868,7 +2868,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
(props.moduleScriptResources[scriptConfig] = null),
|
||||
(props = []),
|
||||
pushLinkImpl(props, integrity),
|
||||
JSCompiler_object_inline_bootstrapScripts_1749.add(props),
|
||||
JSCompiler_object_inline_bootstrapScripts_1755.add(props),
|
||||
bootstrapChunks.push(
|
||||
'<script type="module" src="',
|
||||
escapeTextForBrowser(i),
|
||||
@@ -2890,10 +2890,10 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
bootstrapChunks.push(' async="">\x3c/script>');
|
||||
return {
|
||||
placeholderPrefix: bootstrapScriptContent,
|
||||
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1732,
|
||||
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1738,
|
||||
boundaryPrefix: idPrefix,
|
||||
startInlineScript: "<script",
|
||||
preamble: JSCompiler_object_inline_preamble_1735,
|
||||
preamble: JSCompiler_object_inline_preamble_1741,
|
||||
externalRuntimeScript: null,
|
||||
bootstrapChunks: bootstrapChunks,
|
||||
importMapChunks: [],
|
||||
@@ -2909,14 +2909,14 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
charsetChunks: [],
|
||||
viewportChunks: [],
|
||||
hoistableChunks: [],
|
||||
preconnects: JSCompiler_object_inline_preconnects_1745,
|
||||
fontPreloads: JSCompiler_object_inline_fontPreloads_1746,
|
||||
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1747,
|
||||
styles: JSCompiler_object_inline_styles_1748,
|
||||
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1749,
|
||||
scripts: JSCompiler_object_inline_scripts_1750,
|
||||
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1751,
|
||||
preloads: JSCompiler_object_inline_preloads_1752,
|
||||
preconnects: JSCompiler_object_inline_preconnects_1751,
|
||||
fontPreloads: JSCompiler_object_inline_fontPreloads_1752,
|
||||
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1753,
|
||||
styles: JSCompiler_object_inline_styles_1754,
|
||||
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1755,
|
||||
scripts: JSCompiler_object_inline_scripts_1756,
|
||||
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1757,
|
||||
preloads: JSCompiler_object_inline_preloads_1758,
|
||||
stylesToHoist: !1,
|
||||
generateStaticMarkup: generateStaticMarkup
|
||||
};
|
||||
@@ -3718,6 +3718,7 @@ function RequestInstance(
|
||||
this.fatalError = null;
|
||||
this.pendingRootTasks = this.allPendingTasks = this.nextSegmentId = 0;
|
||||
this.completedPreambleSegments = this.completedRootSegment = null;
|
||||
this.byteSize = 0;
|
||||
this.abortableTasks = abortSet;
|
||||
this.pingedTasks = [];
|
||||
this.clientRenderedBoundaries = [];
|
||||
@@ -4525,9 +4526,11 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
||||
),
|
||||
(legacyContext.status = 1),
|
||||
queueCompletedSegment(propName, legacyContext),
|
||||
0 === propName.pendingTasks && 0 === propName.status)
|
||||
0 === propName.pendingTasks &&
|
||||
0 === propName.status &&
|
||||
((propName.status = 1),
|
||||
!(propName.byteSize > request.progressiveChunkSize)))
|
||||
) {
|
||||
propName.status = 1;
|
||||
0 === request.pendingRootTasks &&
|
||||
task.blockedPreamble &&
|
||||
preparePreamble(request);
|
||||
@@ -5377,8 +5380,12 @@ function finishedTask(request, boundary, segment) {
|
||||
boundary.parentFlushed &&
|
||||
request.completedBoundaries.push(boundary),
|
||||
1 === boundary.status &&
|
||||
(boundary.fallbackAbortableTasks.forEach(abortTaskSoft, request),
|
||||
boundary.fallbackAbortableTasks.clear(),
|
||||
(boundary.byteSize > request.progressiveChunkSize ||
|
||||
(boundary.fallbackAbortableTasks.forEach(
|
||||
abortTaskSoft,
|
||||
request
|
||||
),
|
||||
boundary.fallbackAbortableTasks.clear()),
|
||||
0 === request.pendingRootTasks &&
|
||||
null === request.trackedPostpones &&
|
||||
null !== boundary.contentPreamble &&
|
||||
@@ -6254,4 +6261,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-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
|
||||
@@ -2772,17 +2772,17 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
"\x3c/script>"
|
||||
));
|
||||
bootstrapScriptContent = idPrefix + "P:";
|
||||
var JSCompiler_object_inline_segmentPrefix_1719 = idPrefix + "S:";
|
||||
var JSCompiler_object_inline_segmentPrefix_1725 = idPrefix + "S:";
|
||||
idPrefix += "B:";
|
||||
var JSCompiler_object_inline_preamble_1722 = createPreambleState(),
|
||||
JSCompiler_object_inline_preconnects_1732 = new Set(),
|
||||
JSCompiler_object_inline_fontPreloads_1733 = new Set(),
|
||||
JSCompiler_object_inline_highImagePreloads_1734 = new Set(),
|
||||
JSCompiler_object_inline_styles_1735 = new Map(),
|
||||
JSCompiler_object_inline_bootstrapScripts_1736 = new Set(),
|
||||
JSCompiler_object_inline_scripts_1737 = new Set(),
|
||||
JSCompiler_object_inline_bulkPreloads_1738 = new Set(),
|
||||
JSCompiler_object_inline_preloads_1739 = {
|
||||
var JSCompiler_object_inline_preamble_1728 = createPreambleState(),
|
||||
JSCompiler_object_inline_preconnects_1738 = new Set(),
|
||||
JSCompiler_object_inline_fontPreloads_1739 = new Set(),
|
||||
JSCompiler_object_inline_highImagePreloads_1740 = new Set(),
|
||||
JSCompiler_object_inline_styles_1741 = new Map(),
|
||||
JSCompiler_object_inline_bootstrapScripts_1742 = new Set(),
|
||||
JSCompiler_object_inline_scripts_1743 = new Set(),
|
||||
JSCompiler_object_inline_bulkPreloads_1744 = new Set(),
|
||||
JSCompiler_object_inline_preloads_1745 = {
|
||||
images: new Map(),
|
||||
stylesheets: new Map(),
|
||||
scripts: new Map(),
|
||||
@@ -2819,7 +2819,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
scriptConfig.moduleScriptResources[href] = null;
|
||||
scriptConfig = [];
|
||||
pushLinkImpl(scriptConfig, props);
|
||||
JSCompiler_object_inline_bootstrapScripts_1736.add(scriptConfig);
|
||||
JSCompiler_object_inline_bootstrapScripts_1742.add(scriptConfig);
|
||||
bootstrapChunks.push('<script src="', escapeTextForBrowser(src), '"');
|
||||
"string" === typeof integrity &&
|
||||
bootstrapChunks.push(
|
||||
@@ -2866,7 +2866,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
(props.moduleScriptResources[scriptConfig] = null),
|
||||
(props = []),
|
||||
pushLinkImpl(props, integrity),
|
||||
JSCompiler_object_inline_bootstrapScripts_1736.add(props),
|
||||
JSCompiler_object_inline_bootstrapScripts_1742.add(props),
|
||||
bootstrapChunks.push(
|
||||
'<script type="module" src="',
|
||||
escapeTextForBrowser(i),
|
||||
@@ -2888,10 +2888,10 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
bootstrapChunks.push(' async="">\x3c/script>');
|
||||
return {
|
||||
placeholderPrefix: bootstrapScriptContent,
|
||||
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1719,
|
||||
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1725,
|
||||
boundaryPrefix: idPrefix,
|
||||
startInlineScript: "<script",
|
||||
preamble: JSCompiler_object_inline_preamble_1722,
|
||||
preamble: JSCompiler_object_inline_preamble_1728,
|
||||
externalRuntimeScript: null,
|
||||
bootstrapChunks: bootstrapChunks,
|
||||
importMapChunks: [],
|
||||
@@ -2907,14 +2907,14 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
||||
charsetChunks: [],
|
||||
viewportChunks: [],
|
||||
hoistableChunks: [],
|
||||
preconnects: JSCompiler_object_inline_preconnects_1732,
|
||||
fontPreloads: JSCompiler_object_inline_fontPreloads_1733,
|
||||
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1734,
|
||||
styles: JSCompiler_object_inline_styles_1735,
|
||||
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1736,
|
||||
scripts: JSCompiler_object_inline_scripts_1737,
|
||||
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1738,
|
||||
preloads: JSCompiler_object_inline_preloads_1739,
|
||||
preconnects: JSCompiler_object_inline_preconnects_1738,
|
||||
fontPreloads: JSCompiler_object_inline_fontPreloads_1739,
|
||||
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1740,
|
||||
styles: JSCompiler_object_inline_styles_1741,
|
||||
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1742,
|
||||
scripts: JSCompiler_object_inline_scripts_1743,
|
||||
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1744,
|
||||
preloads: JSCompiler_object_inline_preloads_1745,
|
||||
stylesToHoist: !1,
|
||||
generateStaticMarkup: generateStaticMarkup
|
||||
};
|
||||
@@ -3708,6 +3708,7 @@ function RequestInstance(
|
||||
this.fatalError = null;
|
||||
this.pendingRootTasks = this.allPendingTasks = this.nextSegmentId = 0;
|
||||
this.completedPreambleSegments = this.completedRootSegment = null;
|
||||
this.byteSize = 0;
|
||||
this.abortableTasks = abortSet;
|
||||
this.pingedTasks = [];
|
||||
this.clientRenderedBoundaries = [];
|
||||
@@ -4446,9 +4447,11 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
||||
),
|
||||
(contentRootSegment.status = 1),
|
||||
queueCompletedSegment(newBoundary, contentRootSegment),
|
||||
0 === newBoundary.pendingTasks && 0 === newBoundary.status)
|
||||
0 === newBoundary.pendingTasks &&
|
||||
0 === newBoundary.status &&
|
||||
((newBoundary.status = 1),
|
||||
!(newBoundary.byteSize > request.progressiveChunkSize)))
|
||||
) {
|
||||
newBoundary.status = 1;
|
||||
0 === request.pendingRootTasks &&
|
||||
task.blockedPreamble &&
|
||||
preparePreamble(request);
|
||||
@@ -5289,8 +5292,12 @@ function finishedTask(request, boundary, segment) {
|
||||
boundary.parentFlushed &&
|
||||
request.completedBoundaries.push(boundary),
|
||||
1 === boundary.status &&
|
||||
(boundary.fallbackAbortableTasks.forEach(abortTaskSoft, request),
|
||||
boundary.fallbackAbortableTasks.clear(),
|
||||
(boundary.byteSize > request.progressiveChunkSize ||
|
||||
(boundary.fallbackAbortableTasks.forEach(
|
||||
abortTaskSoft,
|
||||
request
|
||||
),
|
||||
boundary.fallbackAbortableTasks.clear()),
|
||||
0 === request.pendingRootTasks &&
|
||||
null === request.trackedPostpones &&
|
||||
null !== boundary.contentPreamble &&
|
||||
@@ -6166,4 +6173,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-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
|
||||
@@ -4223,6 +4223,7 @@ __DEV__ &&
|
||||
this.fatalError = null;
|
||||
this.pendingRootTasks = this.allPendingTasks = this.nextSegmentId = 0;
|
||||
this.completedPreambleSegments = this.completedRootSegment = null;
|
||||
this.byteSize = 0;
|
||||
this.abortableTasks = abortSet;
|
||||
this.pingedTasks = [];
|
||||
this.clientRenderedBoundaries = [];
|
||||
@@ -5448,9 +5449,11 @@ __DEV__ &&
|
||||
contentRootSegment.chunks.push("\x3c!-- --\x3e"),
|
||||
(contentRootSegment.status = 1),
|
||||
queueCompletedSegment(newBoundary, contentRootSegment),
|
||||
0 === newBoundary.pendingTasks && 0 === newBoundary.status)
|
||||
0 === newBoundary.pendingTasks &&
|
||||
0 === newBoundary.status &&
|
||||
((newBoundary.status = 1),
|
||||
!(newBoundary.byteSize > request.progressiveChunkSize)))
|
||||
) {
|
||||
newBoundary.status = 1;
|
||||
0 === request.pendingRootTasks &&
|
||||
task.blockedPreamble &&
|
||||
preparePreamble(request);
|
||||
@@ -6570,11 +6573,12 @@ __DEV__ &&
|
||||
boundary.parentFlushed &&
|
||||
request.completedBoundaries.push(boundary),
|
||||
1 === boundary.status &&
|
||||
(boundary.fallbackAbortableTasks.forEach(
|
||||
abortTaskSoft,
|
||||
request
|
||||
),
|
||||
boundary.fallbackAbortableTasks.clear(),
|
||||
(boundary.byteSize > request.progressiveChunkSize ||
|
||||
(boundary.fallbackAbortableTasks.forEach(
|
||||
abortTaskSoft,
|
||||
request
|
||||
),
|
||||
boundary.fallbackAbortableTasks.clear()),
|
||||
0 === request.pendingRootTasks &&
|
||||
null === request.trackedPostpones &&
|
||||
null !== boundary.contentPreamble &&
|
||||
|
||||
@@ -3587,6 +3587,7 @@ function RequestInstance(
|
||||
this.fatalError = null;
|
||||
this.pendingRootTasks = this.allPendingTasks = this.nextSegmentId = 0;
|
||||
this.completedPreambleSegments = this.completedRootSegment = null;
|
||||
this.byteSize = 0;
|
||||
this.abortableTasks = abortSet;
|
||||
this.pingedTasks = [];
|
||||
this.clientRenderedBoundaries = [];
|
||||
@@ -4266,9 +4267,11 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
||||
contentRootSegment.chunks.push("\x3c!-- --\x3e"),
|
||||
(contentRootSegment.status = 1),
|
||||
queueCompletedSegment(newBoundary, contentRootSegment),
|
||||
0 === newBoundary.pendingTasks && 0 === newBoundary.status)
|
||||
0 === newBoundary.pendingTasks &&
|
||||
0 === newBoundary.status &&
|
||||
((newBoundary.status = 1),
|
||||
!(newBoundary.byteSize > request.progressiveChunkSize)))
|
||||
) {
|
||||
newBoundary.status = 1;
|
||||
0 === request.pendingRootTasks &&
|
||||
task.blockedPreamble &&
|
||||
preparePreamble(request);
|
||||
@@ -5124,8 +5127,12 @@ function finishedTask(request, boundary, segment) {
|
||||
boundary.parentFlushed &&
|
||||
request.completedBoundaries.push(boundary),
|
||||
1 === boundary.status &&
|
||||
(boundary.fallbackAbortableTasks.forEach(abortTaskSoft, request),
|
||||
boundary.fallbackAbortableTasks.clear(),
|
||||
(boundary.byteSize > request.progressiveChunkSize ||
|
||||
(boundary.fallbackAbortableTasks.forEach(
|
||||
abortTaskSoft,
|
||||
request
|
||||
),
|
||||
boundary.fallbackAbortableTasks.clear()),
|
||||
0 === request.pendingRootTasks &&
|
||||
null === request.trackedPostpones &&
|
||||
null !== boundary.contentPreamble &&
|
||||
|
||||
@@ -31235,11 +31235,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-classic-89e8875e-20250425" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-classic-8e9a5fc6-20250425" !== 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-89e8875e-20250425\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-classic-8e9a5fc6-20250425\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -31282,10 +31282,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-89e8875e-20250425",
|
||||
version: "19.2.0-www-classic-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -32049,5 +32049,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
})();
|
||||
|
||||
@@ -31021,11 +31021,11 @@ __DEV__ &&
|
||||
return_targetInst = null;
|
||||
(function () {
|
||||
var isomorphicReactPackageVersion = React.version;
|
||||
if ("19.2.0-www-modern-89e8875e-20250425" !== isomorphicReactPackageVersion)
|
||||
if ("19.2.0-www-modern-8e9a5fc6-20250425" !== 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-89e8875e-20250425\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
"\n - react-dom: 19.2.0-www-modern-8e9a5fc6-20250425\nLearn more: https://react.dev/warnings/version-mismatch")
|
||||
);
|
||||
})();
|
||||
("function" === typeof Map &&
|
||||
@@ -31068,10 +31068,10 @@ __DEV__ &&
|
||||
!(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-89e8875e-20250425",
|
||||
version: "19.2.0-www-modern-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -31835,5 +31835,5 @@ __DEV__ &&
|
||||
exports.useFormStatus = function () {
|
||||
return resolveDispatcher().useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
})();
|
||||
|
||||
@@ -19756,14 +19756,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2058 = React.version;
|
||||
if (
|
||||
"19.2.0-www-classic-89e8875e-20250425" !==
|
||||
"19.2.0-www-classic-8e9a5fc6-20250425" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2058
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2058,
|
||||
"19.2.0-www-classic-89e8875e-20250425"
|
||||
"19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19781,10 +19781,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2669 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-classic-89e8875e-20250425",
|
||||
version: "19.2.0-www-classic-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2670 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -20299,4 +20299,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
|
||||
@@ -19485,14 +19485,14 @@ function getCrossOriginStringAs(as, input) {
|
||||
}
|
||||
var isomorphicReactPackageVersion$jscomp$inline_2048 = React.version;
|
||||
if (
|
||||
"19.2.0-www-modern-89e8875e-20250425" !==
|
||||
"19.2.0-www-modern-8e9a5fc6-20250425" !==
|
||||
isomorphicReactPackageVersion$jscomp$inline_2048
|
||||
)
|
||||
throw Error(
|
||||
formatProdErrorMessage(
|
||||
527,
|
||||
isomorphicReactPackageVersion$jscomp$inline_2048,
|
||||
"19.2.0-www-modern-89e8875e-20250425"
|
||||
"19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
)
|
||||
);
|
||||
Internals.findDOMNode = function (componentOrElement) {
|
||||
@@ -19510,10 +19510,10 @@ Internals.Events = [
|
||||
];
|
||||
var internals$jscomp$inline_2651 = {
|
||||
bundleType: 0,
|
||||
version: "19.2.0-www-modern-89e8875e-20250425",
|
||||
version: "19.2.0-www-modern-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-dom",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
|
||||
var hook$jscomp$inline_2652 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
|
||||
@@ -20028,4 +20028,4 @@ exports.useFormState = function (action, initialState, permalink) {
|
||||
exports.useFormStatus = function () {
|
||||
return ReactSharedInternals.H.useHostTransitionStatus();
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
|
||||
@@ -21635,7 +21635,7 @@ __DEV__ &&
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -21416,7 +21416,7 @@ __DEV__ &&
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -14088,7 +14088,7 @@ module.exports = function ($$$config) {
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -13805,7 +13805,7 @@ module.exports = function ($$$config) {
|
||||
version: rendererVersion,
|
||||
rendererPackageName: rendererPackageName,
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
null !== extraDevToolsConfig &&
|
||||
(internals.rendererConfig = extraDevToolsConfig);
|
||||
|
||||
@@ -15341,10 +15341,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-classic-89e8875e-20250425",
|
||||
version: "19.2.0-www-classic-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-classic-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-classic-8e9a5fc6-20250425"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15479,5 +15479,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.2.0-www-classic-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-classic-8e9a5fc6-20250425";
|
||||
})();
|
||||
|
||||
@@ -15341,10 +15341,10 @@ __DEV__ &&
|
||||
(function () {
|
||||
var internals = {
|
||||
bundleType: 1,
|
||||
version: "19.2.0-www-modern-89e8875e-20250425",
|
||||
version: "19.2.0-www-modern-8e9a5fc6-20250425",
|
||||
rendererPackageName: "react-test-renderer",
|
||||
currentDispatcherRef: ReactSharedInternals,
|
||||
reconcilerVersion: "19.2.0-www-modern-89e8875e-20250425"
|
||||
reconcilerVersion: "19.2.0-www-modern-8e9a5fc6-20250425"
|
||||
};
|
||||
internals.overrideHookState = overrideHookState;
|
||||
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
|
||||
@@ -15479,5 +15479,5 @@ __DEV__ &&
|
||||
exports.unstable_batchedUpdates = function (fn, a) {
|
||||
return fn(a);
|
||||
};
|
||||
exports.version = "19.2.0-www-modern-89e8875e-20250425";
|
||||
exports.version = "19.2.0-www-modern-8e9a5fc6-20250425";
|
||||
})();
|
||||
|
||||
@@ -1 +1 @@
|
||||
19.2.0-www-classic-89e8875e-20250425
|
||||
19.2.0-www-classic-8e9a5fc6-20250425
|
||||
@@ -1 +1 @@
|
||||
19.2.0-www-modern-89e8875e-20250425
|
||||
19.2.0-www-modern-8e9a5fc6-20250425
|
||||
Reference in New Issue
Block a user