Skip to content

Commit 2516b21

Browse files
ncc-compiled
1 parent 33c1032 commit 2516b21

File tree

112 files changed

+6915
-3114
lines changed

Some content is hidden

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

112 files changed

+6915
-3114
lines changed

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

Lines changed: 161 additions & 132 deletions
Large diffs are not rendered by default.

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

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2381,7 +2381,7 @@ function getViewTransitionName(props, instance) {
23812381
if (null !== instance.autoName) return instance.autoName;
23822382
props = pendingEffectsRoot.identifierPrefix;
23832383
var globalClientId = globalClientIdCounter$1++;
2384-
props = "\u00ab" + props + "t" + globalClientId.toString(32) + "\u00bb";
2384+
props = "_" + props + "t_" + globalClientId.toString(32) + "_";
23852385
return (instance.autoName = props);
23862386
}
23872387
function getClassNameByType(classByType) {
@@ -4610,7 +4610,13 @@ function findFirstSuspended(row) {
46104610
isSuspenseInstanceFallback(state))
46114611
)
46124612
return node;
4613-
} else if (19 === node.tag && void 0 !== node.memoizedProps.revealOrder) {
4613+
} else if (
4614+
19 === node.tag &&
4615+
("forwards" === node.memoizedProps.revealOrder ||
4616+
"backwards" === node.memoizedProps.revealOrder ||
4617+
"unstable_legacy-backwards" === node.memoizedProps.revealOrder ||
4618+
"together" === node.memoizedProps.revealOrder)
4619+
) {
46144620
if (0 !== (node.flags & 128)) return node;
46154621
} else if (null !== node.child) {
46164622
node.child.return = node;
@@ -6002,19 +6008,19 @@ var HooksDispatcherOnMount = {
60026008
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
60036009
).toString(32) + JSCompiler_inline_result;
60046010
identifierPrefix =
6005-
"\u00ab" + identifierPrefix + "R" + JSCompiler_inline_result;
6011+
"_" + identifierPrefix + "R_" + JSCompiler_inline_result;
60066012
JSCompiler_inline_result = localIdCounter++;
60076013
0 < JSCompiler_inline_result &&
60086014
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
6009-
identifierPrefix += "\u00bb";
6015+
identifierPrefix += "_";
60106016
} else
60116017
(JSCompiler_inline_result = globalClientIdCounter++),
60126018
(identifierPrefix =
6013-
"\u00ab" +
6019+
"_" +
60146020
identifierPrefix +
6015-
"r" +
6021+
"r_" +
60166022
JSCompiler_inline_result.toString(32) +
6017-
"\u00bb");
6023+
"_");
60186024
return (hook.memoizedState = identifierPrefix);
60196025
},
60206026
useHostTransitionStatus: useHostTransitionStatus,
@@ -7532,6 +7538,7 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
75327538
);
75337539
break;
75347540
case "backwards":
7541+
case "unstable_legacy-backwards":
75357542
renderLanes = null;
75367543
revealOrder = workInProgress.child;
75377544
for (workInProgress.child = null; null !== revealOrder; ) {
@@ -19132,14 +19139,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
1913219139
};
1913319140
var isomorphicReactPackageVersion$jscomp$inline_2180 = React.version;
1913419141
if (
19135-
"19.2.0-experimental-14094f80-20250529" !==
19142+
"19.2.0-experimental-37054867-20250604" !==
1913619143
isomorphicReactPackageVersion$jscomp$inline_2180
1913719144
)
1913819145
throw Error(
1913919146
formatProdErrorMessage(
1914019147
527,
1914119148
isomorphicReactPackageVersion$jscomp$inline_2180,
19142-
"19.2.0-experimental-14094f80-20250529"
19149+
"19.2.0-experimental-37054867-20250604"
1914319150
)
1914419151
);
1914519152
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -19161,10 +19168,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
1916119168
};
1916219169
var internals$jscomp$inline_2865 = {
1916319170
bundleType: 0,
19164-
version: "19.2.0-experimental-14094f80-20250529",
19171+
version: "19.2.0-experimental-37054867-20250604",
1916519172
rendererPackageName: "react-dom",
1916619173
currentDispatcherRef: ReactSharedInternals,
19167-
reconcilerVersion: "19.2.0-experimental-14094f80-20250529"
19174+
reconcilerVersion: "19.2.0-experimental-37054867-20250604"
1916819175
};
1916919176
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
1917019177
var hook$jscomp$inline_2866 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -19271,4 +19278,4 @@ exports.hydrateRoot = function (container, initialChildren, options) {
1927119278
listenToAllSupportedEvents(container);
1927219279
return new ReactDOMHydrationRoot(initialChildren);
1927319280
};
19274-
exports.version = "19.2.0-experimental-14094f80-20250529";
19281+
exports.version = "19.2.0-experimental-37054867-20250604";

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

Lines changed: 161 additions & 132 deletions
Large diffs are not rendered by default.

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

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2476,7 +2476,7 @@ function getViewTransitionName(props, instance) {
24762476
if (null !== instance.autoName) return instance.autoName;
24772477
props = pendingEffectsRoot.identifierPrefix;
24782478
var globalClientId = globalClientIdCounter$1++;
2479-
props = "\u00ab" + props + "t" + globalClientId.toString(32) + "\u00bb";
2479+
props = "_" + props + "t_" + globalClientId.toString(32) + "_";
24802480
return (instance.autoName = props);
24812481
}
24822482
function getClassNameByType(classByType) {
@@ -5020,7 +5020,13 @@ function findFirstSuspended(row) {
50205020
isSuspenseInstanceFallback(state))
50215021
)
50225022
return node;
5023-
} else if (19 === node.tag && void 0 !== node.memoizedProps.revealOrder) {
5023+
} else if (
5024+
19 === node.tag &&
5025+
("forwards" === node.memoizedProps.revealOrder ||
5026+
"backwards" === node.memoizedProps.revealOrder ||
5027+
"unstable_legacy-backwards" === node.memoizedProps.revealOrder ||
5028+
"together" === node.memoizedProps.revealOrder)
5029+
) {
50245030
if (0 !== (node.flags & 128)) return node;
50255031
} else if (null !== node.child) {
50265032
node.child.return = node;
@@ -6417,19 +6423,19 @@ var HooksDispatcherOnMount = {
64176423
idWithLeadingBit & ~(1 << (32 - clz32(idWithLeadingBit) - 1))
64186424
).toString(32) + JSCompiler_inline_result;
64196425
identifierPrefix =
6420-
"\u00ab" + identifierPrefix + "R" + JSCompiler_inline_result;
6426+
"_" + identifierPrefix + "R_" + JSCompiler_inline_result;
64216427
JSCompiler_inline_result = localIdCounter++;
64226428
0 < JSCompiler_inline_result &&
64236429
(identifierPrefix += "H" + JSCompiler_inline_result.toString(32));
6424-
identifierPrefix += "\u00bb";
6430+
identifierPrefix += "_";
64256431
} else
64266432
(JSCompiler_inline_result = globalClientIdCounter++),
64276433
(identifierPrefix =
6428-
"\u00ab" +
6434+
"_" +
64296435
identifierPrefix +
6430-
"r" +
6436+
"r_" +
64316437
JSCompiler_inline_result.toString(32) +
6432-
"\u00bb");
6438+
"_");
64336439
return (hook.memoizedState = identifierPrefix);
64346440
},
64356441
useHostTransitionStatus: useHostTransitionStatus,
@@ -7950,6 +7956,7 @@ function updateSuspenseListComponent(current, workInProgress, renderLanes) {
79507956
);
79517957
break;
79527958
case "backwards":
7959+
case "unstable_legacy-backwards":
79537960
renderLanes = null;
79547961
revealOrder = workInProgress.child;
79557962
for (workInProgress.child = null; null !== revealOrder; ) {
@@ -20787,14 +20794,14 @@ ReactDOMHydrationRoot.prototype.unstable_scheduleHydration = function (target) {
2078720794
};
2078820795
var isomorphicReactPackageVersion$jscomp$inline_2400 = React.version;
2078920796
if (
20790-
"19.2.0-experimental-14094f80-20250529" !==
20797+
"19.2.0-experimental-37054867-20250604" !==
2079120798
isomorphicReactPackageVersion$jscomp$inline_2400
2079220799
)
2079320800
throw Error(
2079420801
formatProdErrorMessage(
2079520802
527,
2079620803
isomorphicReactPackageVersion$jscomp$inline_2400,
20797-
"19.2.0-experimental-14094f80-20250529"
20804+
"19.2.0-experimental-37054867-20250604"
2079820805
)
2079920806
);
2080020807
ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
@@ -20816,10 +20823,10 @@ ReactDOMSharedInternals.findDOMNode = function (componentOrElement) {
2081620823
};
2081720824
var internals$jscomp$inline_3087 = {
2081820825
bundleType: 0,
20819-
version: "19.2.0-experimental-14094f80-20250529",
20826+
version: "19.2.0-experimental-37054867-20250604",
2082020827
rendererPackageName: "react-dom",
2082120828
currentDispatcherRef: ReactSharedInternals,
20822-
reconcilerVersion: "19.2.0-experimental-14094f80-20250529"
20829+
reconcilerVersion: "19.2.0-experimental-37054867-20250604"
2082320830
};
2082420831
if ("undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__) {
2082520832
var hook$jscomp$inline_3088 = __REACT_DEVTOOLS_GLOBAL_HOOK__;
@@ -21086,7 +21093,7 @@ exports.useFormState = function (action, initialState, permalink) {
2108621093
exports.useFormStatus = function () {
2108721094
return ReactSharedInternals.H.useHostTransitionStatus();
2108821095
};
21089-
exports.version = "19.2.0-experimental-14094f80-20250529";
21096+
exports.version = "19.2.0-experimental-37054867-20250604";
2109021097
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
2109121098
"function" ===
2109221099
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&

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

Lines changed: 34 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -907,9 +907,9 @@
907907
);
908908
}
909909
function makeId(resumableState, treeId, localId) {
910-
resumableState = "\u00ab" + resumableState.idPrefix + "R" + treeId;
910+
resumableState = "_" + resumableState.idPrefix + "R_" + treeId;
911911
0 < localId && (resumableState += "H" + localId.toString(32));
912-
return resumableState + "\u00bb";
912+
return resumableState + "_";
913913
}
914914
function pushViewTransitionAttributes(target, formatContext) {
915915
formatContext = formatContext.viewTransition;
@@ -3283,7 +3283,7 @@
32833283
function writeCompletedShellIdAttribute(destination, resumableState) {
32843284
(resumableState.instructions & SentCompletedShellId) === NothingSent &&
32853285
((resumableState.instructions |= SentCompletedShellId),
3286-
(resumableState = "\u00ab" + resumableState.idPrefix + "R\u00bb"),
3286+
(resumableState = "_" + resumableState.idPrefix + "R_"),
32873287
destination.push(completedShellIdAttributeStart),
32883288
(resumableState = escapeTextForBrowser(resumableState)),
32893289
destination.push(resumableState),
@@ -3294,7 +3294,7 @@
32943294
((resumableState.instructions |= SentCompletedShellId),
32953295
target.push(
32963296
completedShellIdAttributeStart,
3297-
escapeTextForBrowser("\u00ab" + resumableState.idPrefix + "R\u00bb"),
3297+
escapeTextForBrowser("_" + resumableState.idPrefix + "R_"),
32983298
attributeEnd
32993299
));
33003300
}
@@ -5140,7 +5140,11 @@
51405140
var resumeSlots = task.replay.slots;
51415141
if (null !== resumeSlots && "object" === typeof resumeSlots)
51425142
for (var n = 0; n < keyPath; n++) {
5143-
var i = "backwards" !== revealOrder ? n : keyPath - 1 - n,
5143+
var i =
5144+
"backwards" !== revealOrder &&
5145+
"unstable_legacy-backwards" !== revealOrder
5146+
? n
5147+
: keyPath - 1 - n,
51445148
node = rows[i];
51455149
task.row = previousSuspenseListRow = createSuspenseListRow(
51465150
previousSuspenseListRow
@@ -5157,7 +5161,8 @@
51575161
else
51585162
for (resumeSlots = 0; resumeSlots < keyPath; resumeSlots++)
51595163
(n =
5160-
"backwards" !== revealOrder
5164+
"backwards" !== revealOrder &&
5165+
"unstable_legacy-backwards" !== revealOrder
51615166
? resumeSlots
51625167
: keyPath - 1 - resumeSlots),
51635168
(i = rows[n]),
@@ -5168,7 +5173,10 @@
51685173
renderNode(request, task, i, n),
51695174
0 === --previousSuspenseListRow.pendingTasks &&
51705175
finishSuspenseListRow(request, previousSuspenseListRow);
5171-
} else if ("backwards" !== revealOrder)
5176+
} else if (
5177+
"backwards" !== revealOrder &&
5178+
"unstable_legacy-backwards" !== revealOrder
5179+
)
51725180
for (revealOrder = 0; revealOrder < keyPath; revealOrder++)
51735181
(resumeSlots = rows[revealOrder]),
51745182
warnForMissingKey(request, task, resumeSlots),
@@ -5896,7 +5904,11 @@
58965904
a: {
58975905
var children$jscomp$0 = props.children,
58985906
revealOrder = props.revealOrder;
5899-
if ("forwards" === revealOrder || "backwards" === revealOrder) {
5907+
if (
5908+
"forwards" === revealOrder ||
5909+
"backwards" === revealOrder ||
5910+
"unstable_legacy-backwards" === revealOrder
5911+
) {
59005912
if (isArrayImpl(children$jscomp$0)) {
59015913
renderSuspenseListRows(
59025914
request,
@@ -8453,7 +8465,7 @@
84538465
renderState.bulkPreloads.forEach(flushResource, destination);
84548466
renderState.bulkPreloads.clear();
84558467
if (htmlChunks || headChunks) {
8456-
var shellId = "\u00ab" + resumableState.idPrefix + "R\u00bb";
8468+
var shellId = "_" + resumableState.idPrefix + "R_";
84578469
destination.push(blockingRenderChunkStart);
84588470
var chunk$jscomp$0 = escapeTextForBrowser(shellId);
84598471
destination.push(chunk$jscomp$0);
@@ -8816,7 +8828,17 @@
88168828
: reason;
88178829
request.fatalError = error;
88188830
abortableTasks.forEach(function (task) {
8819-
return abortTask(task, request, error);
8831+
var prevTaskInDEV = currentTaskInDEV,
8832+
prevGetCurrentStackImpl = ReactSharedInternals.getCurrentStack;
8833+
currentTaskInDEV = task;
8834+
ReactSharedInternals.getCurrentStack = getCurrentStackInDEV;
8835+
try {
8836+
abortTask(task, request, error);
8837+
} finally {
8838+
(currentTaskInDEV = prevTaskInDEV),
8839+
(ReactSharedInternals.getCurrentStack =
8840+
prevGetCurrentStackImpl);
8841+
}
88208842
});
88218843
abortableTasks.clear();
88228844
}
@@ -10061,7 +10083,7 @@
1006110083
completeBoundaryScriptFunctionOnly =
1006210084
'$RB=[];$RV=function(c){$RT=performance.now();for(var a=0;a<c.length;a+=2){var b=c[a],h=c[a+1],e=b.parentNode;if(e){var f=b.previousSibling,g=0;do{if(b&&8===b.nodeType){var d=b.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=b.nextSibling;e.removeChild(b);b=d}while(b);for(;h.firstChild;)e.insertBefore(h.firstChild,b);f.data="$";f._reactRetry&&f._reactRetry()}}c.length=0};$RC=function(c,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),c=document.getElementById(c))c.previousSibling.data="$~",$RB.push(c,a),2===$RB.length&&setTimeout($RV.bind(null,$RB),("number"!==typeof $RT?0:$RT)+300-performance.now())};',
1006310085
completeBoundaryUpgradeToViewTransitionsInstruction =
10064-
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="\\u00abT"+F++ +"\\u00bb"),d.viewTransitionName=a,x=!0)}var x=!1,F=0,l=[];try{var e=document.__reactViewTransition;if(e){e.finished.finally($RV.bind(null,f));return}var m=new Map;for(e=1;e<f.length;e+=2)for(var g=f[e].querySelectorAll("[vt-share]"),c=0;c<g.length;c++){var b=g[c];m.set(b.getAttribute("vt-name"),b)}for(g=0;g<f.length;g+=2){var y=f[g],t=y.parentNode;if(t){var r=t.getBoundingClientRect();if(r.left||r.top||r.width||r.height){b=y;for(e=0;b;){if(8===b.nodeType){var p=b.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===b.nodeType){c=b;var z=c.getAttribute("vt-name"),u=m.get(z);h(c,u?"vt-share":"vt-exit");u&&(h(u,"vt-share"),m.set(z,null));var A=c.querySelectorAll("[vt-share]");for(c=0;c<A.length;c++){var B=A[c],C=B.getAttribute("vt-name"),D=m.get(C);\nD&&(h(B,"vt-share"),h(D,"vt-share"),m.set(C,null))}}b=b.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;b=t;do for(var n=b.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((b=b.parentNode)&&1===b.nodeType&&"none"!==b.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:function(){w(f,\ndocument.documentElement.clientHeight);return Promise.race([document.fonts.ready,new Promise(function(a){return setTimeout(a,500)})])},types:[]});v.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var d=l[a],k=d.style;k.viewTransitionName=l[a+1];k.viewTransitionClass=l[a+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}w(f)}.bind(null,$RV);',
10086+
'$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="_T_"+F++ +"_"),d.viewTransitionName=a,x=!0)}var x=!1,F=0,l=[];try{var e=document.__reactViewTransition;if(e){e.finished.finally($RV.bind(null,f));return}var m=new Map;for(e=1;e<f.length;e+=2)for(var g=f[e].querySelectorAll("[vt-share]"),c=0;c<g.length;c++){var b=g[c];m.set(b.getAttribute("vt-name"),b)}for(g=0;g<f.length;g+=2){var y=f[g],t=y.parentNode;if(t){var r=t.getBoundingClientRect();if(r.left||r.top||r.width||r.height){b=y;for(e=0;b;){if(8===b.nodeType){var p=b.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===b.nodeType){c=b;var z=c.getAttribute("vt-name"),u=m.get(z);h(c,u?"vt-share":"vt-exit");u&&(h(u,"vt-share"),m.set(z,null));var A=c.querySelectorAll("[vt-share]");for(c=0;c<A.length;c++){var B=A[c],C=B.getAttribute("vt-name"),D=m.get(C);\nD&&(h(B,"vt-share"),h(D,"vt-share"),m.set(C,null))}}b=b.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;b=t;do for(var n=b.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((b=b.parentNode)&&1===b.nodeType&&"none"!==b.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:function(){w(f,\ndocument.documentElement.clientHeight);return Promise.race([document.fonts.ready,new Promise(function(a){return setTimeout(a,500)})])},types:[]});v.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var d=l[a],k=d.style;k.viewTransitionName=l[a+1];k.viewTransitionClass=l[a+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}w(f)}.bind(null,$RV);',
1006510087
completeBoundaryScript1Partial = '$RC("',
1006610088
completeBoundaryWithStylesScript1FullPartial =
1006710089
'$RM=new Map;$RR=function(n,w,p){function u(q){this._p=null;q()}for(var r=new Map,t=document,h,b,e=t.querySelectorAll("link[data-precedence],style[data-precedence]"),v=[],k=0;b=e[k++];)"not all"===b.getAttribute("media")?v.push(b):("LINK"===b.tagName&&$RM.set(b.getAttribute("href"),b),r.set(b.dataset.precedence,h=b));e=0;b=[];var l,a;for(k=!0;;){if(k){var f=p[e++];if(!f){k=!1;e=0;continue}var c=!1,m=0;var d=f[m++];if(a=$RM.get(d)){var g=a._p;c=!0}else{a=t.createElement("link");a.href=d;a.rel=\n"stylesheet";for(a.dataset.precedence=l=f[m++];g=f[m++];)a.setAttribute(g,f[m++]);g=a._p=new Promise(function(q,x){a.onload=u.bind(a,q);a.onerror=u.bind(a,x)});$RM.set(d,a)}d=a.getAttribute("media");!g||d&&!matchMedia(d).matches||b.push(g);if(c)continue}else{a=v[e++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=r.get(l)||h;c===h&&(h=a);r.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=t.head,c.insertBefore(a,c.firstChild))}if(p=document.getElementById(n))p.previousSibling.data=\n"$~";Promise.all(b).then($RC.bind(null,n,w),$RX.bind(null,n,"CSS failed to load"))};$RR("',
@@ -10376,5 +10398,5 @@
1037610398
'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'
1037710399
);
1037810400
};
10379-
exports.version = "19.2.0-experimental-14094f80-20250529";
10401+
exports.version = "19.2.0-experimental-37054867-20250604";
1038010402
})();

0 commit comments

Comments
 (0)