Skip to content

Commit 4ef7bf1

Browse files
committed
ncc-compiled
1 parent d39d84d commit 4ef7bf1

File tree

60 files changed

+277
-205
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

+277
-205
lines changed

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

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15587,12 +15587,11 @@
1558715587
case 11:
1558815588
case 14:
1558915589
case 15:
15590-
offscreenSubtreeWasHidden ||
15591-
commitHookEffectListUnmount(
15592-
Insertion,
15593-
deletedFiber,
15594-
nearestMountedAncestor
15595-
);
15590+
commitHookEffectListUnmount(
15591+
Insertion,
15592+
deletedFiber,
15593+
nearestMountedAncestor
15594+
);
1559615595
offscreenSubtreeWasHidden ||
1559715596
commitHookLayoutUnmountEffects(
1559815597
deletedFiber,
@@ -17054,7 +17053,10 @@
1705417053
finishedWork,
1705517054
committedLanes,
1705617055
committedTransitions,
17057-
0 !== (finishedWork.subtreeFlags & 10256),
17056+
0 !== (finishedWork.subtreeFlags & 10256) ||
17057+
(0 !== finishedWork.actualDuration &&
17058+
(null === finishedWork.alternate ||
17059+
finishedWork.alternate.child !== finishedWork.child)),
1705817060
endTime
1705917061
),
1706017062
(finishedWork.mode & ProfileMode) === NoMode ||
@@ -17168,7 +17170,10 @@
1716817170
) {
1716917171
includeWorkInProgressEffects =
1717017172
includeWorkInProgressEffects &&
17171-
0 !== (parentFiber.subtreeFlags & 10256);
17173+
(0 !== (parentFiber.subtreeFlags & 10256) ||
17174+
(0 !== parentFiber.actualDuration &&
17175+
(null === parentFiber.alternate ||
17176+
parentFiber.alternate.child !== parentFiber.child)));
1717217177
for (parentFiber = parentFiber.child; null !== parentFiber; ) {
1717317178
var nextSibling = parentFiber.sibling;
1717417179
reconnectPassiveEffects(
@@ -17305,7 +17310,12 @@
1730517310
committedTransitions$jscomp$0,
1730617311
endTime$jscomp$0
1730717312
) {
17308-
if (parentFiber.subtreeFlags & 10256)
17313+
if (
17314+
parentFiber.subtreeFlags & 10256 ||
17315+
(0 !== parentFiber.actualDuration &&
17316+
(null === parentFiber.alternate ||
17317+
parentFiber.alternate.child !== parentFiber.child))
17318+
)
1730917319
for (var child = parentFiber.child; null !== child; ) {
1731017320
parentFiber = child.sibling;
1731117321
var finishedRoot = finishedRoot$jscomp$0,
@@ -32260,11 +32270,11 @@
3226032270
};
3226132271
(function () {
3226232272
var isomorphicReactPackageVersion = React.version;
32263-
if ("19.2.0-experimental-1bd1f01f-20251001" !== isomorphicReactPackageVersion)
32273+
if ("19.2.0-experimental-86181134-20251001" !== isomorphicReactPackageVersion)
3226432274
throw Error(
3226532275
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3226632276
(isomorphicReactPackageVersion +
32267-
"\n - react-dom: 19.2.0-experimental-1bd1f01f-20251001\nLearn more: https://react.dev/warnings/version-mismatch")
32277+
"\n - react-dom: 19.2.0-experimental-86181134-20251001\nLearn more: https://react.dev/warnings/version-mismatch")
3226832278
);
3226932279
})();
3227032280
("function" === typeof Map &&
@@ -32301,10 +32311,10 @@
3230132311
!(function () {
3230232312
var internals = {
3230332313
bundleType: 1,
32304-
version: "19.2.0-experimental-1bd1f01f-20251001",
32314+
version: "19.2.0-experimental-86181134-20251001",
3230532315
rendererPackageName: "react-dom",
3230632316
currentDispatcherRef: ReactSharedInternals,
32307-
reconcilerVersion: "19.2.0-experimental-1bd1f01f-20251001"
32317+
reconcilerVersion: "19.2.0-experimental-86181134-20251001"
3230832318
};
3230932319
internals.overrideHookState = overrideHookState;
3231032320
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32452,7 +32462,7 @@
3245232462
listenToAllSupportedEvents(container);
3245332463
return new ReactDOMHydrationRoot(initialChildren);
3245432464
};
32455-
exports.version = "19.2.0-experimental-1bd1f01f-20251001";
32465+
exports.version = "19.2.0-experimental-86181134-20251001";
3245632466
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3245732467
"function" ===
3245832468
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10409,8 +10409,7 @@ function commitDeletionEffectsOnFiber(
1040910409
case 11:
1041010410
case 14:
1041110411
case 15:
10412-
offscreenSubtreeWasHidden ||
10413-
commitHookEffectListUnmount(2, deletedFiber, nearestMountedAncestor);
10412+
commitHookEffectListUnmount(2, deletedFiber, nearestMountedAncestor);
1041410413
offscreenSubtreeWasHidden ||
1041510414
commitHookEffectListUnmount(4, deletedFiber, nearestMountedAncestor);
1041610415
recursivelyTraverseDeletionEffects(
@@ -11540,7 +11539,7 @@ function commitPassiveMountOnFiber(
1154011539
finishedWork,
1154111540
committedLanes,
1154211541
committedTransitions,
11543-
0 !== (finishedWork.subtreeFlags & 10256)
11542+
0 !== (finishedWork.subtreeFlags & 10256) || !1
1154411543
)));
1154511544
flags & 2048 && commitOffscreenPassiveMountEffects(id, finishedWork);
1154611545
break;
@@ -11587,7 +11586,8 @@ function recursivelyTraverseReconnectPassiveEffects(
1158711586
includeWorkInProgressEffects
1158811587
) {
1158911588
includeWorkInProgressEffects =
11590-
includeWorkInProgressEffects && 0 !== (parentFiber.subtreeFlags & 10256);
11589+
includeWorkInProgressEffects &&
11590+
(0 !== (parentFiber.subtreeFlags & 10256) || !1);
1159111591
for (parentFiber = parentFiber.child; null !== parentFiber; ) {
1159211592
var finishedRoot = finishedRoot$jscomp$0,
1159311593
finishedWork = parentFiber,
@@ -19566,14 +19566,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1956619566
};
1956719567
var isomorphicReactPackageVersion$jscomp$inline_2217 = React.version;
1956819568
if (
19569-
"19.2.0-experimental-1bd1f01f-20251001" !==
19569+
"19.2.0-experimental-86181134-20251001" !==
1957019570
isomorphicReactPackageVersion$jscomp$inline_2217
1957119571
)
1957219572
throw Error(
1957319573
formatProdErrorMessage(
1957419574
527,
1957519575
isomorphicReactPackageVersion$jscomp$inline_2217,
19576-
"19.2.0-experimental-1bd1f01f-20251001"
19576+
"19.2.0-experimental-86181134-20251001"
1957719577
)
1957819578
);
1957919579
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19595,10 +19595,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1959519595
};
1959619596
var internals$jscomp$inline_2914 = {
1959719597
bundleType: 0,
19598-
version: "19.2.0-experimental-1bd1f01f-20251001",
19598+
version: "19.2.0-experimental-86181134-20251001",
1959919599
rendererPackageName: "react-dom",
1960019600
currentDispatcherRef: ReactSharedInternals,
19601-
reconcilerVersion: "19.2.0-experimental-1bd1f01f-20251001"
19601+
reconcilerVersion: "19.2.0-experimental-86181134-20251001"
1960219602
};
1960319603
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1960419604
var hook$jscomp$inline_2915 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19705,4 +19705,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
1970519705
listenToAllSupportedEvents(container);
1970619706
return new ReactDOMHydrationRoot(initialChildren);
1970719707
};
19708-
exports.version = "19.2.0-experimental-1bd1f01f-20251001";
19708+
exports.version = "19.2.0-experimental-86181134-20251001";

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

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15595,12 +15595,11 @@
1559515595
case 11:
1559615596
case 14:
1559715597
case 15:
15598-
offscreenSubtreeWasHidden ||
15599-
commitHookEffectListUnmount(
15600-
Insertion,
15601-
deletedFiber,
15602-
nearestMountedAncestor
15603-
);
15598+
commitHookEffectListUnmount(
15599+
Insertion,
15600+
deletedFiber,
15601+
nearestMountedAncestor
15602+
);
1560415603
offscreenSubtreeWasHidden ||
1560515604
commitHookLayoutUnmountEffects(
1560615605
deletedFiber,
@@ -17062,7 +17061,10 @@
1706217061
finishedWork,
1706317062
committedLanes,
1706417063
committedTransitions,
17065-
0 !== (finishedWork.subtreeFlags & 10256),
17064+
0 !== (finishedWork.subtreeFlags & 10256) ||
17065+
(0 !== finishedWork.actualDuration &&
17066+
(null === finishedWork.alternate ||
17067+
finishedWork.alternate.child !== finishedWork.child)),
1706617068
endTime
1706717069
),
1706817070
(finishedWork.mode & ProfileMode) === NoMode ||
@@ -17176,7 +17178,10 @@
1717617178
) {
1717717179
includeWorkInProgressEffects =
1717817180
includeWorkInProgressEffects &&
17179-
0 !== (parentFiber.subtreeFlags & 10256);
17181+
(0 !== (parentFiber.subtreeFlags & 10256) ||
17182+
(0 !== parentFiber.actualDuration &&
17183+
(null === parentFiber.alternate ||
17184+
parentFiber.alternate.child !== parentFiber.child)));
1718017185
for (parentFiber = parentFiber.child; null !== parentFiber; ) {
1718117186
var nextSibling = parentFiber.sibling;
1718217187
reconnectPassiveEffects(
@@ -17313,7 +17318,12 @@
1731317318
committedTransitions$jscomp$0,
1731417319
endTime$jscomp$0
1731517320
) {
17316-
if (parentFiber.subtreeFlags & 10256)
17321+
if (
17322+
parentFiber.subtreeFlags & 10256 ||
17323+
(0 !== parentFiber.actualDuration &&
17324+
(null === parentFiber.alternate ||
17325+
parentFiber.alternate.child !== parentFiber.child))
17326+
)
1731717327
for (var child = parentFiber.child; null !== child; ) {
1731817328
parentFiber = child.sibling;
1731917329
var finishedRoot = finishedRoot$jscomp$0,
@@ -32312,11 +32322,11 @@
3231232322
};
3231332323
(function () {
3231432324
var isomorphicReactPackageVersion = React.version;
32315-
if ("19.2.0-experimental-1bd1f01f-20251001" !== isomorphicReactPackageVersion)
32325+
if ("19.2.0-experimental-86181134-20251001" !== isomorphicReactPackageVersion)
3231632326
throw Error(
3231732327
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
3231832328
(isomorphicReactPackageVersion +
32319-
"\n - react-dom: 19.2.0-experimental-1bd1f01f-20251001\nLearn more: https://react.dev/warnings/version-mismatch")
32329+
"\n - react-dom: 19.2.0-experimental-86181134-20251001\nLearn more: https://react.dev/warnings/version-mismatch")
3232032330
);
3232132331
})();
3232232332
("function" === typeof Map &&
@@ -32353,10 +32363,10 @@
3235332363
!(function () {
3235432364
var internals = {
3235532365
bundleType: 1,
32356-
version: "19.2.0-experimental-1bd1f01f-20251001",
32366+
version: "19.2.0-experimental-86181134-20251001",
3235732367
rendererPackageName: "react-dom",
3235832368
currentDispatcherRef: ReactSharedInternals,
32359-
reconcilerVersion: "19.2.0-experimental-1bd1f01f-20251001"
32369+
reconcilerVersion: "19.2.0-experimental-86181134-20251001"
3236032370
};
3236132371
internals.overrideHookState = overrideHookState;
3236232372
internals.overrideHookStateDeletePath = overrideHookStateDeletePath;
@@ -32834,7 +32844,7 @@
3283432844
exports.useFormStatus = function () {
3283532845
return resolveDispatcher().useHostTransitionStatus();
3283632846
};
32837-
exports.version = "19.2.0-experimental-1bd1f01f-20251001";
32847+
exports.version = "19.2.0-experimental-86181134-20251001";
3283832848
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
3283932849
"function" ===
3284032850
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11253,8 +11253,7 @@ function commitDeletionEffectsOnFiber(
1125311253
case 11:
1125411254
case 14:
1125511255
case 15:
11256-
offscreenSubtreeWasHidden ||
11257-
commitHookEffectListUnmount(2, deletedFiber, nearestMountedAncestor);
11256+
commitHookEffectListUnmount(2, deletedFiber, nearestMountedAncestor);
1125811257
offscreenSubtreeWasHidden ||
1125911258
commitHookLayoutUnmountEffects(deletedFiber, nearestMountedAncestor, 4);
1126011259
recursivelyTraverseDeletionEffects(
@@ -12637,7 +12636,10 @@ function commitPassiveMountOnFiber(
1263712636
finishedWork,
1263812637
committedLanes,
1263912638
committedTransitions,
12640-
0 !== (finishedWork.subtreeFlags & 10256),
12639+
0 !== (finishedWork.subtreeFlags & 10256) ||
12640+
(0 !== finishedWork.actualDuration &&
12641+
(null === finishedWork.alternate ||
12642+
finishedWork.alternate.child !== finishedWork.child)),
1264112643
endTime
1264212644
),
1264312645
0 === (finishedWork.mode & 2) ||
@@ -12739,7 +12741,11 @@ function recursivelyTraverseReconnectPassiveEffects(
1273912741
endTime$jscomp$0
1274012742
) {
1274112743
includeWorkInProgressEffects =
12742-
includeWorkInProgressEffects && 0 !== (parentFiber.subtreeFlags & 10256);
12744+
includeWorkInProgressEffects &&
12745+
(0 !== (parentFiber.subtreeFlags & 10256) ||
12746+
(0 !== parentFiber.actualDuration &&
12747+
(null === parentFiber.alternate ||
12748+
parentFiber.alternate.child !== parentFiber.child)));
1274312749
for (var child = parentFiber.child; null !== child; ) {
1274412750
parentFiber = child.sibling;
1274512751
var finishedRoot = finishedRoot$jscomp$0,
@@ -12858,7 +12864,12 @@ function recursivelyTraverseAtomicPassiveEffects(
1285812864
committedTransitions$jscomp$0,
1285912865
endTime$jscomp$0
1286012866
) {
12861-
if (parentFiber.subtreeFlags & 10256)
12867+
if (
12868+
parentFiber.subtreeFlags & 10256 ||
12869+
(0 !== parentFiber.actualDuration &&
12870+
(null === parentFiber.alternate ||
12871+
parentFiber.alternate.child !== parentFiber.child))
12872+
)
1286212873
for (var child = parentFiber.child; null !== child; ) {
1286312874
parentFiber = child.sibling;
1286412875
var finishedRoot = finishedRoot$jscomp$0,
@@ -21606,14 +21617,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
2160621617
};
2160721618
var isomorphicReactPackageVersion$jscomp$inline_2513 = React.version;
2160821619
if (
21609-
"19.2.0-experimental-1bd1f01f-20251001" !==
21620+
"19.2.0-experimental-86181134-20251001" !==
2161021621
isomorphicReactPackageVersion$jscomp$inline_2513
2161121622
)
2161221623
throw Error(
2161321624
formatProdErrorMessage(
2161421625
527,
2161521626
isomorphicReactPackageVersion$jscomp$inline_2513,
21616-
"19.2.0-experimental-1bd1f01f-20251001"
21627+
"19.2.0-experimental-86181134-20251001"
2161721628
)
2161821629
);
2161921630
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -21635,10 +21646,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
2163521646
};
2163621647
var internals$jscomp$inline_3223 = {
2163721648
bundleType: 0,
21638-
version: "19.2.0-experimental-1bd1f01f-20251001",
21649+
version: "19.2.0-experimental-86181134-20251001",
2163921650
rendererPackageName: "react-dom",
2164021651
currentDispatcherRef: ReactSharedInternals,
21641-
reconcilerVersion: "19.2.0-experimental-1bd1f01f-20251001"
21652+
reconcilerVersion: "19.2.0-experimental-86181134-20251001"
2164221653
};
2164321654
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
2164421655
var hook$jscomp$inline_3224 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -21906,7 +21917,7 @@ exports.useFormState = function (action, initialState, permalink) {
2190621917
exports.useFormStatus = function () {
2190721918
return ReactSharedInternals.H.useHostTransitionStatus();
2190821919
};
21909-
exports.version = "19.2.0-experimental-1bd1f01f-20251001";
21920+
exports.version = "19.2.0-experimental-86181134-20251001";
2191021921
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2191121922
"function" ===
2191221923
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10543,5 +10543,5 @@
1054310543
'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'
1054410544
);
1054510545
};
10546-
exports.version = "19.2.0-experimental-1bd1f01f-20251001";
10546+
exports.version = "19.2.0-experimental-86181134-20251001";
1054710547
})();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7156,4 +7156,4 @@ exports.renderToString = function (children, options) {
71567156
'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'
71577157
);
71587158
};
7159-
exports.version = "19.2.0-experimental-1bd1f01f-20251001";
7159+
exports.version = "19.2.0-experimental-86181134-20251001";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10543,5 +10543,5 @@
1054310543
'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'
1054410544
);
1054510545
};
10546-
exports.version = "19.2.0-experimental-1bd1f01f-20251001";
10546+
exports.version = "19.2.0-experimental-86181134-20251001";
1054710547
})();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7259,4 +7259,4 @@ exports.renderToString = function (children, options) {
72597259
'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'
72607260
);
72617261
};
7262-
exports.version = "19.2.0-experimental-1bd1f01f-20251001";
7262+
exports.version = "19.2.0-experimental-86181134-20251001";

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9536,11 +9536,11 @@
95369536
}
95379537
function ensureCorrectIsomorphicReactVersion() {
95389538
var isomorphicReactPackageVersion = React.version;
9539-
if ("19.2.0-experimental-1bd1f01f-20251001" !== isomorphicReactPackageVersion)
9539+
if ("19.2.0-experimental-86181134-20251001" !== isomorphicReactPackageVersion)
95409540
throw Error(
95419541
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
95429542
(isomorphicReactPackageVersion +
9543-
"\n - react-dom: 19.2.0-experimental-1bd1f01f-20251001\nLearn more: https://react.dev/warnings/version-mismatch")
9543+
"\n - react-dom: 19.2.0-experimental-86181134-20251001\nLearn more: https://react.dev/warnings/version-mismatch")
95449544
);
95459545
}
95469546
var React = require("next/dist/compiled/react-experimental"),
@@ -11364,5 +11364,5 @@
1136411364
startWork(request);
1136511365
});
1136611366
};
11367-
exports.version = "19.2.0-experimental-1bd1f01f-20251001";
11367+
exports.version = "19.2.0-experimental-86181134-20251001";
1136811368
})();

0 commit comments

Comments
 (0)