Skip to content

Commit 72b8086

Browse files
committed
ncc-compiled
1 parent c063402 commit 72b8086

File tree

60 files changed

+204
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+204
-198
lines changed

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.development.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15595,7 +15595,6 @@
1559515595
function attachSuspenseRetryListeners(finishedWork, wakeables) {
1559615596
var retryCache = getRetryCache(finishedWork);
1559715597
wakeables.forEach(function (wakeable) {
15598-
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
1559915598
if (!retryCache.has(wakeable)) {
1560015599
retryCache.add(wakeable);
1560115600
if (isDevToolsPresent)
@@ -15605,6 +15604,7 @@
1560515604
throw Error(
1560615605
"Expected finished root and lanes to be set. This is a bug in React."
1560715606
);
15607+
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
1560815608
wakeable.then(retry, retry);
1560915609
}
1561015610
});
@@ -31422,11 +31422,11 @@
3142231422
};
3142331423
(function () {
3142431424
var isomorphicReactPackageVersion = React.version;
31425-
if ("19.2.0-experimental-1dc3bdea-20250812" !== isomorphicReactPackageVersion)
31425+
if ("19.2.0-experimental-f1222f76-20250812" !== isomorphicReactPackageVersion)
3142631426
throw Error(
3142731427
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3142831428
(isomorphicReactPackageVersion +
31429-
"\n - react-dom: 19.2.0-experimental-1dc3bdea-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
31429+
"\n - react-dom: 19.2.0-experimental-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
3143031430
);
3143131431
})();
3143231432
("function" === typeof Map &&
@@ -31463,10 +31463,10 @@
3146331463
!(function () {
3146431464
var internals = {
3146531465
bundleType: 1,
31466-
version: "19.2.0-experimental-1dc3bdea-20250812",
31466+
version: "19.2.0-experimental-f1222f76-20250812",
3146731467
rendererPackageName: "react-dom",
3146831468
currentDispatcherRef: ReactSharedInternals,
31469-
reconcilerVersion: "19.2.0-experimental-1dc3bdea-20250812"
31469+
reconcilerVersion: "19.2.0-experimental-f1222f76-20250812"
3147031470
};
3147131471
internals.overrideHookState = overrideHookState;
3147231472
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -31613,7 +31613,7 @@
3161331613
listenToAllSupportedEvents(container);
3161431614
return new ReactDOMHydrationRoot(initialChildren);
3161531615
};
31616-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
31616+
exports.version = "19.2.0-experimental-f1222f76-20250812";
3161731617
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3161831618
"function" ===
3161931619
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-client.production.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10530,9 +10530,11 @@ function getRetryCache(finishedWork) {
1053010530
function attachSuspenseRetryListeners(finishedWork, wakeables) {
1053110531
var retryCache = getRetryCache(finishedWork);
1053210532
wakeables.forEach(function (wakeable) {
10533-
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
10534-
retryCache.has(wakeable) ||
10535-
(retryCache.add(wakeable), wakeable.then(retry, retry));
10533+
if (!retryCache.has(wakeable)) {
10534+
retryCache.add(wakeable);
10535+
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
10536+
wakeable.then(retry, retry);
10537+
}
1053610538
});
1053710539
}
1053810540
function recursivelyTraverseMutationEffects(root$jscomp$0, parentFiber, lanes) {
@@ -19239,14 +19241,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1923919241
};
1924019242
var isomorphicReactPackageVersion$jscomp$inline_2165 = React.version;
1924119243
if (
19242-
"19.2.0-experimental-1dc3bdea-20250812" !==
19244+
"19.2.0-experimental-f1222f76-20250812" !==
1924319245
isomorphicReactPackageVersion$jscomp$inline_2165
1924419246
)
1924519247
throw Error(
1924619248
formatProdErrorMessage(
1924719249
527,
1924819250
isomorphicReactPackageVersion$jscomp$inline_2165,
19249-
"19.2.0-experimental-1dc3bdea-20250812"
19251+
"19.2.0-experimental-f1222f76-20250812"
1925019252
)
1925119253
);
1925219254
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19268,10 +19270,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1926819270
};
1926919271
var internals$jscomp$inline_2860 = {
1927019272
bundleType: 0,
19271-
version: "19.2.0-experimental-1dc3bdea-20250812",
19273+
version: "19.2.0-experimental-f1222f76-20250812",
1927219274
rendererPackageName: "react-dom",
1927319275
currentDispatcherRef: ReactSharedInternals,
19274-
reconcilerVersion: "19.2.0-experimental-1dc3bdea-20250812"
19276+
reconcilerVersion: "19.2.0-experimental-f1222f76-20250812"
1927519277
};
1927619278
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1927719279
var hook$jscomp$inline_2861 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19378,4 +19380,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
1937819380
listenToAllSupportedEvents(container);
1937919381
return new ReactDOMHydrationRoot(initialChildren);
1938019382
};
19381-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
19383+
exports.version = "19.2.0-experimental-f1222f76-20250812";

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.development.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15603,7 +15603,6 @@
1560315603
function attachSuspenseRetryListeners(finishedWork, wakeables) {
1560415604
var retryCache = getRetryCache(finishedWork);
1560515605
wakeables.forEach(function (wakeable) {
15606-
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
1560715606
if (!retryCache.has(wakeable)) {
1560815607
retryCache.add(wakeable);
1560915608
if (isDevToolsPresent)
@@ -15613,6 +15612,7 @@
1561315612
throw Error(
1561415613
"Expected finished root and lanes to be set. This is a bug in React."
1561515614
);
15615+
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
1561615616
wakeable.then(retry, retry);
1561715617
}
1561815618
});
@@ -31474,11 +31474,11 @@
3147431474
};
3147531475
(function () {
3147631476
var isomorphicReactPackageVersion = React.version;
31477-
if ("19.2.0-experimental-1dc3bdea-20250812" !== isomorphicReactPackageVersion)
31477+
if ("19.2.0-experimental-f1222f76-20250812" !== isomorphicReactPackageVersion)
3147831478
throw Error(
3147931479
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3148031480
(isomorphicReactPackageVersion +
31481-
"\n - react-dom: 19.2.0-experimental-1dc3bdea-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
31481+
"\n - react-dom: 19.2.0-experimental-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
3148231482
);
3148331483
})();
3148431484
("function" === typeof Map &&
@@ -31515,10 +31515,10 @@
3151531515
!(function () {
3151631516
var internals = {
3151731517
bundleType: 1,
31518-
version: "19.2.0-experimental-1dc3bdea-20250812",
31518+
version: "19.2.0-experimental-f1222f76-20250812",
3151931519
rendererPackageName: "react-dom",
3152031520
currentDispatcherRef: ReactSharedInternals,
31521-
reconcilerVersion: "19.2.0-experimental-1dc3bdea-20250812"
31521+
reconcilerVersion: "19.2.0-experimental-f1222f76-20250812"
3152231522
};
3152331523
internals.overrideHookState = overrideHookState;
3152431524
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -31995,7 +31995,7 @@
3199531995
exports.useFormStatus = function () {
3199631996
return resolveDispatcher().useHostTransitionStatus();
3199731997
};
31998-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
31998+
exports.version = "19.2.0-experimental-f1222f76-20250812";
3199931999
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3200032000
"function" ===
3200132001
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-profiling.profiling.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11311,13 +11311,13 @@ function getRetryCache(finishedWork) {
1131111311
function attachSuspenseRetryListeners(finishedWork, wakeables) {
1131211312
var retryCache = getRetryCache(finishedWork);
1131311313
wakeables.forEach(function (wakeable) {
11314-
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
1131511314
if (!retryCache.has(wakeable)) {
1131611315
retryCache.add(wakeable);
1131711316
if (isDevToolsPresent)
1131811317
if (null !== inProgressLanes && null !== inProgressRoot)
1131911318
restorePendingUpdaters(inProgressRoot, inProgressLanes);
1132011319
else throw Error(formatProdErrorMessage(413));
11320+
var retry = resolveRetryWakeable.bind(null, finishedWork, wakeable);
1132111321
wakeable.then(retry, retry);
1132211322
}
1132311323
});
@@ -20975,14 +20975,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
2097520975
};
2097620976
var isomorphicReactPackageVersion$jscomp$inline_2398 = React.version;
2097720977
if (
20978-
"19.2.0-experimental-1dc3bdea-20250812" !==
20978+
"19.2.0-experimental-f1222f76-20250812" !==
2097920979
isomorphicReactPackageVersion$jscomp$inline_2398
2098020980
)
2098120981
throw Error(
2098220982
formatProdErrorMessage(
2098320983
527,
2098420984
isomorphicReactPackageVersion$jscomp$inline_2398,
20985-
"19.2.0-experimental-1dc3bdea-20250812"
20985+
"19.2.0-experimental-f1222f76-20250812"
2098620986
)
2098720987
);
2098820988
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -21004,10 +21004,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
2100421004
};
2100521005
var internals$jscomp$inline_3095 = {
2100621006
bundleType: 0,
21007-
version: "19.2.0-experimental-1dc3bdea-20250812",
21007+
version: "19.2.0-experimental-f1222f76-20250812",
2100821008
rendererPackageName: "react-dom",
2100921009
currentDispatcherRef: ReactSharedInternals,
21010-
reconcilerVersion: "19.2.0-experimental-1dc3bdea-20250812"
21010+
reconcilerVersion: "19.2.0-experimental-f1222f76-20250812"
2101121011
};
2101221012
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
2101321013
var hook$jscomp$inline_3096 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -21275,7 +21275,7 @@ exports.useFormState = function (action, initialState, permalink) {
2127521275
exports.useFormStatus = function () {
2127621276
return ReactSharedInternals.H.useHostTransitionStatus();
2127721277
};
21278-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
21278+
exports.version = "19.2.0-experimental-f1222f76-20250812";
2127921279
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2128021280
"function" ===
2128121281
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.development.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7217,7 +7217,7 @@
72177217
thrownValue === SuspenseException
72187218
? getSuspendedThenable()
72197219
: thrownValue),
7220-
"object" === typeof node && null !== node)
7220+
12 !== request.status && "object" === typeof node && null !== node)
72217221
) {
72227222
if ("function" === typeof node.then) {
72237223
childIndex =
@@ -7273,7 +7273,7 @@
72737273
thrownValue$3 === SuspenseException
72747274
? getSuspendedThenable()
72757275
: thrownValue$3),
7276-
"object" === typeof node && null !== node)
7276+
12 !== request.status && "object" === typeof node && null !== node)
72777277
) {
72787278
if ("function" === typeof node.then) {
72797279
segment = node;
@@ -10523,5 +10523,5 @@
1052310523
'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'
1052410524
);
1052510525
};
10526-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
10526+
exports.version = "19.2.0-experimental-f1222f76-20250812";
1052710527
})();

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.browser.production.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5664,7 +5664,7 @@ function renderNode(request, task, node, childIndex) {
56645664
thrownValue === SuspenseException
56655665
? getSuspendedThenable()
56665666
: thrownValue),
5667-
"object" === typeof node && null !== node)
5667+
12 !== request.status && "object" === typeof node && null !== node)
56685668
) {
56695669
if ("function" === typeof node.then) {
56705670
childIndex =
@@ -5714,7 +5714,7 @@ function renderNode(request, task, node, childIndex) {
57145714
thrownValue$69 === SuspenseException
57155715
? getSuspendedThenable()
57165716
: thrownValue$69),
5717-
"object" === typeof node && null !== node)
5717+
12 !== request.status && "object" === typeof node && null !== node)
57185718
) {
57195719
if ("function" === typeof node.then) {
57205720
segment = node;
@@ -7142,4 +7142,4 @@ exports.renderToString = function (children, options) {
71427142
'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'
71437143
);
71447144
};
7145-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
7145+
exports.version = "19.2.0-experimental-f1222f76-20250812";

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.development.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7217,7 +7217,7 @@
72177217
thrownValue === SuspenseException
72187218
? getSuspendedThenable()
72197219
: thrownValue),
7220-
"object" === typeof node && null !== node)
7220+
12 !== request.status && "object" === typeof node && null !== node)
72217221
) {
72227222
if ("function" === typeof node.then) {
72237223
childIndex =
@@ -7273,7 +7273,7 @@
72737273
thrownValue$3 === SuspenseException
72747274
? getSuspendedThenable()
72757275
: thrownValue$3),
7276-
"object" === typeof node && null !== node)
7276+
12 !== request.status && "object" === typeof node && null !== node)
72777277
) {
72787278
if ("function" === typeof node.then) {
72797279
segment = node;
@@ -10523,5 +10523,5 @@
1052310523
'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 "renderToPipeableStream" which supports Suspense on the server'
1052410524
);
1052510525
};
10526-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
10526+
exports.version = "19.2.0-experimental-f1222f76-20250812";
1052710527
})();

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server-legacy.node.production.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5735,7 +5735,7 @@ function renderNode(request, task, node, childIndex) {
57355735
thrownValue === SuspenseException
57365736
? getSuspendedThenable()
57375737
: thrownValue),
5738-
"object" === typeof node && null !== node)
5738+
12 !== request.status && "object" === typeof node && null !== node)
57395739
) {
57405740
if ("function" === typeof node.then) {
57415741
childIndex =
@@ -5785,7 +5785,7 @@ function renderNode(request, task, node, childIndex) {
57855785
thrownValue$69 === SuspenseException
57865786
? getSuspendedThenable()
57875787
: thrownValue$69),
5788-
"object" === typeof node && null !== node)
5788+
12 !== request.status && "object" === typeof node && null !== node)
57895789
) {
57905790
if ("function" === typeof node.then) {
57915791
segment = node;
@@ -7245,4 +7245,4 @@ exports.renderToString = function (children, options) {
72457245
'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 "renderToPipeableStream" which supports Suspense on the server'
72467246
);
72477247
};
7248-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
7248+
exports.version = "19.2.0-experimental-f1222f76-20250812";

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.development.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7648,7 +7648,7 @@
76487648
thrownValue === SuspenseException
76497649
? getSuspendedThenable()
76507650
: thrownValue),
7651-
"object" === typeof node && null !== node)
7651+
12 !== request.status && "object" === typeof node && null !== node)
76527652
) {
76537653
if ("function" === typeof node.then) {
76547654
childIndex =
@@ -7704,7 +7704,7 @@
77047704
thrownValue$3 === SuspenseException
77057705
? getSuspendedThenable()
77067706
: thrownValue$3),
7707-
"object" === typeof node && null !== node)
7707+
12 !== request.status && "object" === typeof node && null !== node)
77087708
) {
77097709
if ("function" === typeof node.then) {
77107710
segment = node;
@@ -9512,11 +9512,11 @@
95129512
}
95139513
function ensureCorrectIsomorphicReactVersion() {
95149514
var isomorphicReactPackageVersion = React.version;
9515-
if ("19.2.0-experimental-1dc3bdea-20250812" !== isomorphicReactPackageVersion)
9515+
if ("19.2.0-experimental-f1222f76-20250812" !== isomorphicReactPackageVersion)
95169516
throw Error(
95179517
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
95189518
(isomorphicReactPackageVersion +
9519-
"\n - react-dom: 19.2.0-experimental-1dc3bdea-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
9519+
"\n - react-dom: 19.2.0-experimental-f1222f76-20250812\nLearn more: https://react.dev/warnings/version-mismatch")
95209520
);
95219521
}
95229522
var React = require("next/dist/compiled/react-experimental"),
@@ -11335,5 +11335,5 @@
1133511335
startWork(request);
1133611336
});
1133711337
};
11338-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
11338+
exports.version = "19.2.0-experimental-f1222f76-20250812";
1133911339
})();

packages/next/src/compiled/react-dom-experimental/cjs/react-dom-server.browser.production.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6328,7 +6328,7 @@ function renderNode(request, task, node, childIndex) {
63286328
thrownValue === SuspenseException
63296329
? getSuspendedThenable()
63306330
: thrownValue),
6331-
"object" === typeof node && null !== node)
6331+
12 !== request.status && "object" === typeof node && null !== node)
63326332
) {
63336333
if ("function" === typeof node.then) {
63346334
childIndex =
@@ -6378,7 +6378,7 @@ function renderNode(request, task, node, childIndex) {
63786378
thrownValue$70 === SuspenseException
63796379
? getSuspendedThenable()
63806380
: thrownValue$70),
6381-
"object" === typeof node && null !== node)
6381+
12 !== request.status && "object" === typeof node && null !== node)
63826382
) {
63836383
if ("function" === typeof node.then) {
63846384
segment = node;
@@ -7805,12 +7805,12 @@ function getPostponedState(request) {
78057805
}
78067806
function ensureCorrectIsomorphicReactVersion() {
78077807
var isomorphicReactPackageVersion = React.version;
7808-
if ("19.2.0-experimental-1dc3bdea-20250812" !== isomorphicReactPackageVersion)
7808+
if ("19.2.0-experimental-f1222f76-20250812" !== isomorphicReactPackageVersion)
78097809
throw Error(
78107810
formatProdErrorMessage(
78117811
527,
78127812
isomorphicReactPackageVersion,
7813-
"19.2.0-experimental-1dc3bdea-20250812"
7813+
"19.2.0-experimental-f1222f76-20250812"
78147814
)
78157815
);
78167816
}
@@ -8065,4 +8065,4 @@ exports.resumeAndPrerender = function (children, postponedState, options) {
80658065
startWork(request);
80668066
});
80678067
};
8068-
exports.version = "19.2.0-experimental-1dc3bdea-20250812";
8068+
exports.version = "19.2.0-experimental-f1222f76-20250812";

0 commit comments

Comments
 (0)