react-dom 19.2.0-canary-b4477d38-20250605 → 19.2.0-canary-280ff6fe-20250606
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/react-dom-client.development.js +5 -5
- package/cjs/react-dom-client.production.js +5 -5
- package/cjs/react-dom-profiling.development.js +5 -5
- package/cjs/react-dom-profiling.profiling.js +5 -5
- package/cjs/react-dom-server-legacy.browser.development.js +41 -27
- package/cjs/react-dom-server-legacy.browser.production.js +51 -44
- package/cjs/react-dom-server-legacy.node.development.js +41 -27
- package/cjs/react-dom-server-legacy.node.production.js +51 -44
- package/cjs/react-dom-server.browser.development.js +47 -31
- package/cjs/react-dom-server.browser.production.js +34 -27
- package/cjs/react-dom-server.bun.development.js +43 -32
- package/cjs/react-dom-server.bun.production.js +36 -29
- package/cjs/react-dom-server.edge.development.js +47 -31
- package/cjs/react-dom-server.edge.production.js +34 -27
- package/cjs/react-dom-server.node.development.js +47 -34
- package/cjs/react-dom-server.node.production.js +34 -30
- package/cjs/react-dom.development.js +1 -1
- package/cjs/react-dom.production.js +1 -1
- package/cjs/react-dom.react-server.development.js +1 -1
- package/cjs/react-dom.react-server.production.js +1 -1
- package/package.json +3 -3
- package/server.node.js +1 -7
- package/static.node.js +1 -5
- package/cjs/react-dom-server.node-webstreams.development.js +0 -10008
- package/cjs/react-dom-server.node-webstreams.production.js +0 -6955
@@ -5170,7 +5170,8 @@
|
|
5170
5170
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
5171
5171
|
} catch (thrownValue) {
|
5172
5172
|
throw (
|
5173
|
-
((resumeSegmentID.status =
|
5173
|
+
((resumeSegmentID.status =
|
5174
|
+
12 === request.status ? ABORTED : ERRORED),
|
5174
5175
|
thrownValue)
|
5175
5176
|
);
|
5176
5177
|
}
|
@@ -6021,7 +6022,7 @@
|
|
6021
6022
|
} catch (thrownValue) {
|
6022
6023
|
throw (
|
6023
6024
|
((boundarySegment.status =
|
6024
|
-
12 === request.status ? ABORTED :
|
6025
|
+
12 === request.status ? ABORTED : ERRORED),
|
6025
6026
|
thrownValue)
|
6026
6027
|
);
|
6027
6028
|
} finally {
|
@@ -6100,7 +6101,8 @@
|
|
6100
6101
|
contentRootSegment.status = ABORTED;
|
6101
6102
|
var error = request.fatalError;
|
6102
6103
|
} else
|
6103
|
-
(contentRootSegment.status =
|
6104
|
+
(contentRootSegment.status = ERRORED),
|
6105
|
+
(error = thrownValue$2);
|
6104
6106
|
var thrownInfo = getThrownInfo(task.componentStack);
|
6105
6107
|
var errorDigest = logRecoverableError(
|
6106
6108
|
request,
|
@@ -7233,7 +7235,9 @@
|
|
7233
7235
|
var childSegment = segment.children[0];
|
7234
7236
|
childSegment.id = segment.id;
|
7235
7237
|
childSegment.parentFlushed = !0;
|
7236
|
-
childSegment.status
|
7238
|
+
(childSegment.status !== COMPLETED &&
|
7239
|
+
childSegment.status !== ABORTED &&
|
7240
|
+
childSegment.status !== ERRORED) ||
|
7237
7241
|
queueCompletedSegment(boundary, childSegment);
|
7238
7242
|
} else boundary.completedSegments.push(segment);
|
7239
7243
|
}
|
@@ -7274,7 +7278,7 @@
|
|
7274
7278
|
(boundary$jscomp$0.status = COMPLETED),
|
7275
7279
|
null !== segment &&
|
7276
7280
|
segment.parentFlushed &&
|
7277
|
-
segment.status === COMPLETED &&
|
7281
|
+
(segment.status === COMPLETED || segment.status === ABORTED) &&
|
7278
7282
|
queueCompletedSegment(boundary$jscomp$0, segment),
|
7279
7283
|
boundary$jscomp$0.parentFlushed &&
|
7280
7284
|
request$jscomp$0.completedBoundaries.push(boundary$jscomp$0),
|
@@ -7358,9 +7362,9 @@
|
|
7358
7362
|
}
|
7359
7363
|
}
|
7360
7364
|
else
|
7361
|
-
null
|
7362
|
-
segment.parentFlushed
|
7363
|
-
segment.status
|
7365
|
+
null === segment ||
|
7366
|
+
!segment.parentFlushed ||
|
7367
|
+
(segment.status !== COMPLETED && segment.status !== ABORTED) ||
|
7364
7368
|
(queueCompletedSegment(boundary$jscomp$0, segment),
|
7365
7369
|
1 === boundary$jscomp$0.completedSegments.length &&
|
7366
7370
|
boundary$jscomp$0.parentFlushed &&
|
@@ -7536,7 +7540,7 @@
|
|
7536
7540
|
errorDigest.componentStack
|
7537
7541
|
);
|
7538
7542
|
errorDigest.abortSet.delete(errorDigest);
|
7539
|
-
request$jscomp$1.status =
|
7543
|
+
request$jscomp$1.status = ERRORED;
|
7540
7544
|
var boundary$jscomp$0 = errorDigest.blockedBoundary,
|
7541
7545
|
row = errorDigest.row,
|
7542
7546
|
debugTask = errorDigest.debugTask;
|
@@ -7720,6 +7724,8 @@
|
|
7720
7724
|
chunkIdx < chunks.length &&
|
7721
7725
|
(r = writeChunkAndReturn(destination, chunks[chunkIdx]));
|
7722
7726
|
return r;
|
7727
|
+
case ABORTED:
|
7728
|
+
return !0;
|
7723
7729
|
default:
|
7724
7730
|
throw Error(
|
7725
7731
|
"Aborted, errored or already flushed boundaries should not be flushed again. This is a bug in React."
|
@@ -7965,7 +7971,8 @@
|
|
7965
7971
|
var completedPreambleSegments = request.completedPreambleSegments;
|
7966
7972
|
if (null === completedPreambleSegments) return;
|
7967
7973
|
flushedByteSize = request.byteSize;
|
7968
|
-
var
|
7974
|
+
var resumableState = request.resumableState,
|
7975
|
+
renderState = request.renderState,
|
7969
7976
|
preamble = renderState.preamble,
|
7970
7977
|
htmlChunks = preamble.htmlChunks,
|
7971
7978
|
headChunks = preamble.headChunks,
|
@@ -8024,6 +8031,9 @@
|
|
8024
8031
|
renderState.scripts.clear();
|
8025
8032
|
renderState.bulkPreloads.forEach(flushResource, destination);
|
8026
8033
|
renderState.bulkPreloads.clear();
|
8034
|
+
htmlChunks ||
|
8035
|
+
headChunks ||
|
8036
|
+
(resumableState.instructions |= SentCompletedShellId);
|
8027
8037
|
var hoistableChunks = renderState.hoistableChunks;
|
8028
8038
|
for (
|
8029
8039
|
i$jscomp$0 = 0;
|
@@ -8032,13 +8042,17 @@
|
|
8032
8042
|
)
|
8033
8043
|
writeChunk(destination, hoistableChunks[i$jscomp$0]);
|
8034
8044
|
for (
|
8035
|
-
|
8036
|
-
|
8037
|
-
|
8045
|
+
resumableState = hoistableChunks.length = 0;
|
8046
|
+
resumableState < completedPreambleSegments.length;
|
8047
|
+
resumableState++
|
8038
8048
|
) {
|
8039
|
-
var segments = completedPreambleSegments[
|
8040
|
-
for (
|
8041
|
-
|
8049
|
+
var segments = completedPreambleSegments[resumableState];
|
8050
|
+
for (
|
8051
|
+
renderState = 0;
|
8052
|
+
renderState < segments.length;
|
8053
|
+
renderState++
|
8054
|
+
)
|
8055
|
+
flushSegment(request, destination, segments[renderState], null);
|
8042
8056
|
}
|
8043
8057
|
var preamble$jscomp$0 = request.renderState.preamble,
|
8044
8058
|
headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
|
@@ -8063,19 +8077,20 @@
|
|
8063
8077
|
(0 !== request.trackedPostpones.rootNodes.length ||
|
8064
8078
|
null !== request.trackedPostpones.rootSlots))
|
8065
8079
|
) {
|
8066
|
-
var resumableState = request.resumableState;
|
8080
|
+
var resumableState$jscomp$0 = request.resumableState;
|
8067
8081
|
if (
|
8068
|
-
(resumableState.instructions & SentMarkShellTime) ===
|
8082
|
+
(resumableState$jscomp$0.instructions & SentMarkShellTime) ===
|
8069
8083
|
NothingSent
|
8070
8084
|
) {
|
8071
|
-
resumableState.instructions |= SentMarkShellTime;
|
8085
|
+
resumableState$jscomp$0.instructions |= SentMarkShellTime;
|
8072
8086
|
writeChunk(destination, renderState$jscomp$0.startInlineScript);
|
8073
8087
|
if (
|
8074
|
-
(resumableState.instructions &
|
8088
|
+
(resumableState$jscomp$0.instructions &
|
8089
|
+
SentCompletedShellId) ===
|
8075
8090
|
NothingSent
|
8076
8091
|
) {
|
8077
|
-
resumableState.instructions |= SentCompletedShellId;
|
8078
|
-
var shellId = "_" + resumableState.idPrefix + "R_";
|
8092
|
+
resumableState$jscomp$0.instructions |= SentCompletedShellId;
|
8093
|
+
var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_";
|
8079
8094
|
writeChunk(destination, completedShellIdAttributeStart);
|
8080
8095
|
writeChunk(
|
8081
8096
|
destination,
|
@@ -8132,7 +8147,7 @@
|
|
8132
8147
|
for (i = 0; i < clientRenderedBoundaries.length; i++) {
|
8133
8148
|
var boundary = clientRenderedBoundaries[i];
|
8134
8149
|
renderState$jscomp$1 = destination;
|
8135
|
-
var resumableState$jscomp$
|
8150
|
+
var resumableState$jscomp$1 = request.resumableState,
|
8136
8151
|
renderState$jscomp$2 = request.renderState,
|
8137
8152
|
id = boundary.rootSegmentID,
|
8138
8153
|
errorDigest = boundary.errorDigest,
|
@@ -8144,10 +8159,10 @@
|
|
8144
8159
|
renderState$jscomp$2.startInlineScript
|
8145
8160
|
);
|
8146
8161
|
writeChunk(renderState$jscomp$1, endOfStartTag);
|
8147
|
-
(resumableState$jscomp$
|
8162
|
+
(resumableState$jscomp$1.instructions &
|
8148
8163
|
SentClientRenderFunction) ===
|
8149
8164
|
NothingSent
|
8150
|
-
? ((resumableState$jscomp$
|
8165
|
+
? ((resumableState$jscomp$1.instructions |=
|
8151
8166
|
SentClientRenderFunction),
|
8152
8167
|
writeChunk(renderState$jscomp$1, clientRenderScript1Full))
|
8153
8168
|
: writeChunk(renderState$jscomp$1, clientRenderScript1Partial);
|
@@ -8421,11 +8436,11 @@
|
|
8421
8436
|
}
|
8422
8437
|
function ensureCorrectIsomorphicReactVersion() {
|
8423
8438
|
var isomorphicReactPackageVersion = React.version;
|
8424
|
-
if ("19.2.0-canary-
|
8439
|
+
if ("19.2.0-canary-280ff6fe-20250606" !== isomorphicReactPackageVersion)
|
8425
8440
|
throw Error(
|
8426
8441
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8427
8442
|
(isomorphicReactPackageVersion +
|
8428
|
-
"\n - react-dom: 19.2.0-canary-
|
8443
|
+
"\n - react-dom: 19.2.0-canary-280ff6fe-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
|
8429
8444
|
);
|
8430
8445
|
}
|
8431
8446
|
var React = require("react"),
|
@@ -9654,10 +9669,10 @@
|
|
9654
9669
|
stringToPrecomputedChunk('<template data-rsi="" data-sid="');
|
9655
9670
|
stringToPrecomputedChunk('" data-pid="');
|
9656
9671
|
var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
|
9657
|
-
'$RB=[];$RV=function(
|
9672
|
+
'$RB=[];$RV=function(b){$RT=performance.now();for(var a=0;a<b.length;a+=2){var c=b[a],h=b[a+1],e=c.parentNode;if(e){var f=c.previousSibling,g=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=c.nextSibling;e.removeChild(c);c=d}while(c);for(;h.firstChild;)e.insertBefore(h.firstChild,c);f.data="$";f._reactRetry&&f._reactRetry()}}b.length=0};$RC=function(b,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),b=document.getElementById(b))b.previousSibling.data="$~",$RB.push(b,a),2===$RB.length&&(b="number"!==typeof $RT?0:$RT,a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:b+300-a))};'
|
9658
9673
|
);
|
9659
|
-
|
9660
|
-
'$RV=function(
|
9674
|
+
stringToChunk(
|
9675
|
+
'$RV=function(A,g){function k(a,b){var e=a.getAttribute(b);e&&(b=a.style,l.push(a,b.viewTransitionName,b.viewTransitionClass),"auto"!==e&&(b.viewTransitionClass=e),(a=a.getAttribute("vt-name"))||(a="_T_"+K++ +"_"),b.viewTransitionName=a,B=!0)}var B=!1,K=0,l=[];try{var f=document.__reactViewTransition;if(f){f.finished.finally($RV.bind(null,g));return}var m=new Map;for(f=1;f<g.length;f+=2)for(var h=g[f].querySelectorAll("[vt-share]"),d=0;d<h.length;d++){var c=h[d];m.set(c.getAttribute("vt-name"),c)}var u=[];for(h=0;h<g.length;h+=2){var C=g[h],x=C.parentNode;if(x){var v=x.getBoundingClientRect();if(v.left||v.top||v.width||v.height){c=C;for(f=0;c;){if(8===c.nodeType){var r=c.data;if("/$"===r)if(0===f)break;else f--;else"$"!==r&&"$?"!==r&&"$~"!==r&&"$!"!==r||f++}else if(1===c.nodeType){d=c;var D=d.getAttribute("vt-name"),y=m.get(D);k(d,y?"vt-share":"vt-exit");y&&(k(y,"vt-share"),m.set(D,null));var E=d.querySelectorAll("[vt-share]");for(d=0;d<E.length;d++){var F=E[d],G=F.getAttribute("vt-name"),\nH=m.get(G);H&&(k(F,"vt-share"),k(H,"vt-share"),m.set(G,null))}}c=c.nextSibling}for(var I=g[h+1],t=I.firstElementChild;t;)null!==m.get(t.getAttribute("vt-name"))&&k(t,"vt-enter"),t=t.nextElementSibling;c=x;do for(var n=c.firstElementChild;n;){var J=n.getAttribute("vt-update");J&&"none"!==J&&!l.includes(n)&&k(n,"vt-update");n=n.nextElementSibling}while((c=c.parentNode)&&1===c.nodeType&&"none"!==c.getAttribute("vt-update"));u.push.apply(u,I.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(B){var z=\ndocument.__reactViewTransition=document.startViewTransition({update:function(){A(g);for(var a=[document.documentElement.clientHeight,document.fonts.ready],b={},e=0;e<u.length;b={g:b.g},e++)if(b.g=u[e],!b.g.complete){var p=b.g.getBoundingClientRect();0<p.bottom&&0<p.right&&p.top<window.innerHeight&&p.left<window.innerWidth&&(p=new Promise(function(w){return function(q){w.g.addEventListener("load",q);w.g.addEventListener("error",q)}}(b)),a.push(p))}return Promise.race([Promise.all(a),new Promise(function(w){var q=\nperformance.now();setTimeout(w,2300>q&&2E3<q?2300-q:500)})])},types:[]});z.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var b=l[a],e=b.style;e.viewTransitionName=l[a+1];e.viewTransitionClass=l[a+1];""===b.getAttribute("style")&&b.removeAttribute("style")}});z.finished.finally(function(){document.__reactViewTransition===z&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}A(g)}.bind(null,$RV);'
|
9661
9676
|
);
|
9662
9677
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9663
9678
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -9954,6 +9969,7 @@
|
|
9954
9969
|
COMPLETED = 1,
|
9955
9970
|
FLUSHED = 2,
|
9956
9971
|
ABORTED = 3,
|
9972
|
+
ERRORED = 4,
|
9957
9973
|
POSTPONED = 5,
|
9958
9974
|
CLOSED = 14,
|
9959
9975
|
currentRequest = null,
|
@@ -10108,5 +10124,5 @@
|
|
10108
10124
|
startWork(request);
|
10109
10125
|
});
|
10110
10126
|
};
|
10111
|
-
exports.version = "19.2.0-canary-
|
10127
|
+
exports.version = "19.2.0-canary-280ff6fe-20250606";
|
10112
10128
|
})();
|
@@ -2549,10 +2549,10 @@ var completeSegmentScript1Full = stringToPrecomputedChunk(
|
|
2549
2549
|
stringToPrecomputedChunk('<template data-rsi="" data-sid="');
|
2550
2550
|
stringToPrecomputedChunk('" data-pid="');
|
2551
2551
|
var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
|
2552
|
-
'$RB=[];$RV=function(
|
2552
|
+
'$RB=[];$RV=function(b){$RT=performance.now();for(var a=0;a<b.length;a+=2){var c=b[a],h=b[a+1],e=c.parentNode;if(e){var f=c.previousSibling,g=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=c.nextSibling;e.removeChild(c);c=d}while(c);for(;h.firstChild;)e.insertBefore(h.firstChild,c);f.data="$";f._reactRetry&&f._reactRetry()}}b.length=0};$RC=function(b,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),b=document.getElementById(b))b.previousSibling.data="$~",$RB.push(b,a),2===$RB.length&&(b="number"!==typeof $RT?0:$RT,a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:b+300-a))};'
|
2553
2553
|
);
|
2554
|
-
|
2555
|
-
'$RV=function(
|
2554
|
+
stringToChunk(
|
2555
|
+
'$RV=function(A,g){function k(a,b){var e=a.getAttribute(b);e&&(b=a.style,l.push(a,b.viewTransitionName,b.viewTransitionClass),"auto"!==e&&(b.viewTransitionClass=e),(a=a.getAttribute("vt-name"))||(a="_T_"+K++ +"_"),b.viewTransitionName=a,B=!0)}var B=!1,K=0,l=[];try{var f=document.__reactViewTransition;if(f){f.finished.finally($RV.bind(null,g));return}var m=new Map;for(f=1;f<g.length;f+=2)for(var h=g[f].querySelectorAll("[vt-share]"),d=0;d<h.length;d++){var c=h[d];m.set(c.getAttribute("vt-name"),c)}var u=[];for(h=0;h<g.length;h+=2){var C=g[h],x=C.parentNode;if(x){var v=x.getBoundingClientRect();if(v.left||v.top||v.width||v.height){c=C;for(f=0;c;){if(8===c.nodeType){var r=c.data;if("/$"===r)if(0===f)break;else f--;else"$"!==r&&"$?"!==r&&"$~"!==r&&"$!"!==r||f++}else if(1===c.nodeType){d=c;var D=d.getAttribute("vt-name"),y=m.get(D);k(d,y?"vt-share":"vt-exit");y&&(k(y,"vt-share"),m.set(D,null));var E=d.querySelectorAll("[vt-share]");for(d=0;d<E.length;d++){var F=E[d],G=F.getAttribute("vt-name"),\nH=m.get(G);H&&(k(F,"vt-share"),k(H,"vt-share"),m.set(G,null))}}c=c.nextSibling}for(var I=g[h+1],t=I.firstElementChild;t;)null!==m.get(t.getAttribute("vt-name"))&&k(t,"vt-enter"),t=t.nextElementSibling;c=x;do for(var n=c.firstElementChild;n;){var J=n.getAttribute("vt-update");J&&"none"!==J&&!l.includes(n)&&k(n,"vt-update");n=n.nextElementSibling}while((c=c.parentNode)&&1===c.nodeType&&"none"!==c.getAttribute("vt-update"));u.push.apply(u,I.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(B){var z=\ndocument.__reactViewTransition=document.startViewTransition({update:function(){A(g);for(var a=[document.documentElement.clientHeight,document.fonts.ready],b={},e=0;e<u.length;b={g:b.g},e++)if(b.g=u[e],!b.g.complete){var p=b.g.getBoundingClientRect();0<p.bottom&&0<p.right&&p.top<window.innerHeight&&p.left<window.innerWidth&&(p=new Promise(function(w){return function(q){w.g.addEventListener("load",q);w.g.addEventListener("error",q)}}(b)),a.push(p))}return Promise.race([Promise.all(a),new Promise(function(w){var q=\nperformance.now();setTimeout(w,2300>q&&2E3<q?2300-q:500)})])},types:[]});z.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var b=l[a],e=b.style;e.viewTransitionName=l[a+1];e.viewTransitionClass=l[a+1];""===b.getAttribute("style")&&b.removeAttribute("style")}});z.finished.finally(function(){document.__reactViewTransition===z&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}A(g)}.bind(null,$RV);'
|
2556
2556
|
);
|
2557
2557
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
2558
2558
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -5928,7 +5928,10 @@ function queueCompletedSegment(boundary, segment) {
|
|
5928
5928
|
var childSegment = segment.children[0];
|
5929
5929
|
childSegment.id = segment.id;
|
5930
5930
|
childSegment.parentFlushed = !0;
|
5931
|
-
1
|
5931
|
+
(1 !== childSegment.status &&
|
5932
|
+
3 !== childSegment.status &&
|
5933
|
+
4 !== childSegment.status) ||
|
5934
|
+
queueCompletedSegment(boundary, childSegment);
|
5932
5935
|
} else boundary.completedSegments.push(segment);
|
5933
5936
|
}
|
5934
5937
|
function finishedSegment(request, boundary, segment) {
|
@@ -5963,7 +5966,7 @@ function finishedTask(request$jscomp$0, boundary, row, segment) {
|
|
5963
5966
|
(0 === boundary.status && (boundary.status = 1),
|
5964
5967
|
null !== segment &&
|
5965
5968
|
segment.parentFlushed &&
|
5966
|
-
1 === segment.status &&
|
5969
|
+
(1 === segment.status || 3 === segment.status) &&
|
5967
5970
|
queueCompletedSegment(boundary, segment),
|
5968
5971
|
boundary.parentFlushed &&
|
5969
5972
|
request$jscomp$0.completedBoundaries.push(boundary),
|
@@ -6043,9 +6046,9 @@ function finishedTask(request$jscomp$0, boundary, row, segment) {
|
|
6043
6046
|
}
|
6044
6047
|
}
|
6045
6048
|
else
|
6046
|
-
null
|
6047
|
-
segment.parentFlushed
|
6048
|
-
1
|
6049
|
+
null === segment ||
|
6050
|
+
!segment.parentFlushed ||
|
6051
|
+
(1 !== segment.status && 3 !== segment.status) ||
|
6049
6052
|
(queueCompletedSegment(boundary, segment),
|
6050
6053
|
1 === boundary.completedSegments.length &&
|
6051
6054
|
boundary.parentFlushed &&
|
@@ -6362,6 +6365,8 @@ function flushSubtree(request, destination, segment, hoistableState) {
|
|
6362
6365
|
chunkIdx < chunks.length &&
|
6363
6366
|
(r = writeChunkAndReturn(destination, chunks[chunkIdx]));
|
6364
6367
|
return r;
|
6368
|
+
case 3:
|
6369
|
+
return !0;
|
6365
6370
|
default:
|
6366
6371
|
throw Error(
|
6367
6372
|
"Aborted, errored or already flushed boundaries should not be flushed again. This is a bug in React."
|
@@ -6550,7 +6555,8 @@ function flushCompletedQueues(request, destination) {
|
|
6550
6555
|
var completedPreambleSegments = request.completedPreambleSegments;
|
6551
6556
|
if (null === completedPreambleSegments) return;
|
6552
6557
|
flushedByteSize = request.byteSize;
|
6553
|
-
var
|
6558
|
+
var resumableState = request.resumableState,
|
6559
|
+
renderState = request.renderState,
|
6554
6560
|
preamble = renderState.preamble,
|
6555
6561
|
htmlChunks = preamble.htmlChunks,
|
6556
6562
|
headChunks = preamble.headChunks,
|
@@ -6593,17 +6599,18 @@ function flushCompletedQueues(request, destination) {
|
|
6593
6599
|
renderState.scripts.clear();
|
6594
6600
|
renderState.bulkPreloads.forEach(flushResource, destination);
|
6595
6601
|
renderState.bulkPreloads.clear();
|
6602
|
+
htmlChunks || headChunks || (resumableState.instructions |= 32);
|
6596
6603
|
var hoistableChunks = renderState.hoistableChunks;
|
6597
6604
|
for (i$jscomp$0 = 0; i$jscomp$0 < hoistableChunks.length; i$jscomp$0++)
|
6598
6605
|
writeChunk(destination, hoistableChunks[i$jscomp$0]);
|
6599
6606
|
for (
|
6600
|
-
|
6601
|
-
|
6602
|
-
|
6607
|
+
resumableState = hoistableChunks.length = 0;
|
6608
|
+
resumableState < completedPreambleSegments.length;
|
6609
|
+
resumableState++
|
6603
6610
|
) {
|
6604
|
-
var segments = completedPreambleSegments[
|
6605
|
-
for (
|
6606
|
-
flushSegment(request, destination, segments[
|
6611
|
+
var segments = completedPreambleSegments[resumableState];
|
6612
|
+
for (renderState = 0; renderState < segments.length; renderState++)
|
6613
|
+
flushSegment(request, destination, segments[renderState], null);
|
6607
6614
|
}
|
6608
6615
|
var preamble$jscomp$0 = request.renderState.preamble,
|
6609
6616
|
headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
|
@@ -6628,13 +6635,13 @@ function flushCompletedQueues(request, destination) {
|
|
6628
6635
|
(0 !== request.trackedPostpones.rootNodes.length ||
|
6629
6636
|
null !== request.trackedPostpones.rootSlots))
|
6630
6637
|
) {
|
6631
|
-
var resumableState = request.resumableState;
|
6632
|
-
if (0 === (resumableState.instructions & 64)) {
|
6633
|
-
resumableState.instructions |= 64;
|
6638
|
+
var resumableState$jscomp$0 = request.resumableState;
|
6639
|
+
if (0 === (resumableState$jscomp$0.instructions & 64)) {
|
6640
|
+
resumableState$jscomp$0.instructions |= 64;
|
6634
6641
|
writeChunk(destination, renderState$jscomp$0.startInlineScript);
|
6635
|
-
if (0 === (resumableState.instructions & 32)) {
|
6636
|
-
resumableState.instructions |= 32;
|
6637
|
-
var shellId = "_" + resumableState.idPrefix + "R_";
|
6642
|
+
if (0 === (resumableState$jscomp$0.instructions & 32)) {
|
6643
|
+
resumableState$jscomp$0.instructions |= 32;
|
6644
|
+
var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_";
|
6638
6645
|
writeChunk(destination, completedShellIdAttributeStart);
|
6639
6646
|
writeChunk(
|
6640
6647
|
destination,
|
@@ -6685,7 +6692,7 @@ function flushCompletedQueues(request, destination) {
|
|
6685
6692
|
for (i = 0; i < clientRenderedBoundaries.length; i++) {
|
6686
6693
|
var boundary = clientRenderedBoundaries[i];
|
6687
6694
|
renderState$jscomp$1 = destination;
|
6688
|
-
var resumableState$jscomp$
|
6695
|
+
var resumableState$jscomp$1 = request.resumableState,
|
6689
6696
|
renderState$jscomp$2 = request.renderState,
|
6690
6697
|
id = boundary.rootSegmentID,
|
6691
6698
|
errorDigest = boundary.errorDigest;
|
@@ -6694,8 +6701,8 @@ function flushCompletedQueues(request, destination) {
|
|
6694
6701
|
renderState$jscomp$2.startInlineScript
|
6695
6702
|
);
|
6696
6703
|
writeChunk(renderState$jscomp$1, endOfStartTag);
|
6697
|
-
0 === (resumableState$jscomp$
|
6698
|
-
? ((resumableState$jscomp$
|
6704
|
+
0 === (resumableState$jscomp$1.instructions & 4)
|
6705
|
+
? ((resumableState$jscomp$1.instructions |= 4),
|
6699
6706
|
writeChunk(renderState$jscomp$1, clientRenderScript1Full))
|
6700
6707
|
: writeChunk(renderState$jscomp$1, clientRenderScript1Partial);
|
6701
6708
|
writeChunk(renderState$jscomp$1, renderState$jscomp$2.boundaryPrefix);
|
@@ -6902,11 +6909,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6902
6909
|
}
|
6903
6910
|
function ensureCorrectIsomorphicReactVersion() {
|
6904
6911
|
var isomorphicReactPackageVersion = React.version;
|
6905
|
-
if ("19.2.0-canary-
|
6912
|
+
if ("19.2.0-canary-280ff6fe-20250606" !== isomorphicReactPackageVersion)
|
6906
6913
|
throw Error(
|
6907
6914
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6908
6915
|
(isomorphicReactPackageVersion +
|
6909
|
-
"\n - react-dom: 19.2.0-canary-
|
6916
|
+
"\n - react-dom: 19.2.0-canary-280ff6fe-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
|
6910
6917
|
);
|
6911
6918
|
}
|
6912
6919
|
ensureCorrectIsomorphicReactVersion();
|
@@ -7052,4 +7059,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
7052
7059
|
startWork(request);
|
7053
7060
|
});
|
7054
7061
|
};
|
7055
|
-
exports.version = "19.2.0-canary-
|
7062
|
+
exports.version = "19.2.0-canary-280ff6fe-20250606";
|
@@ -5069,7 +5069,8 @@
|
|
5069
5069
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
5070
5070
|
} catch (thrownValue) {
|
5071
5071
|
throw (
|
5072
|
-
((resumeSegmentID.status =
|
5072
|
+
((resumeSegmentID.status =
|
5073
|
+
12 === request.status ? ABORTED : ERRORED),
|
5073
5074
|
thrownValue)
|
5074
5075
|
);
|
5075
5076
|
}
|
@@ -5920,7 +5921,7 @@
|
|
5920
5921
|
} catch (thrownValue) {
|
5921
5922
|
throw (
|
5922
5923
|
((boundarySegment.status =
|
5923
|
-
12 === request.status ? ABORTED :
|
5924
|
+
12 === request.status ? ABORTED : ERRORED),
|
5924
5925
|
thrownValue)
|
5925
5926
|
);
|
5926
5927
|
} finally {
|
@@ -5999,7 +6000,8 @@
|
|
5999
6000
|
contentRootSegment.status = ABORTED;
|
6000
6001
|
var error = request.fatalError;
|
6001
6002
|
} else
|
6002
|
-
(contentRootSegment.status =
|
6003
|
+
(contentRootSegment.status = ERRORED),
|
6004
|
+
(error = thrownValue$2);
|
6003
6005
|
var thrownInfo = getThrownInfo(task.componentStack);
|
6004
6006
|
var errorDigest = logRecoverableError(
|
6005
6007
|
request,
|
@@ -7132,7 +7134,9 @@
|
|
7132
7134
|
var childSegment = segment.children[0];
|
7133
7135
|
childSegment.id = segment.id;
|
7134
7136
|
childSegment.parentFlushed = !0;
|
7135
|
-
childSegment.status
|
7137
|
+
(childSegment.status !== COMPLETED &&
|
7138
|
+
childSegment.status !== ABORTED &&
|
7139
|
+
childSegment.status !== ERRORED) ||
|
7136
7140
|
queueCompletedSegment(boundary, childSegment);
|
7137
7141
|
} else boundary.completedSegments.push(segment);
|
7138
7142
|
}
|
@@ -7173,7 +7177,7 @@
|
|
7173
7177
|
(boundary$jscomp$0.status = COMPLETED),
|
7174
7178
|
null !== segment &&
|
7175
7179
|
segment.parentFlushed &&
|
7176
|
-
segment.status === COMPLETED &&
|
7180
|
+
(segment.status === COMPLETED || segment.status === ABORTED) &&
|
7177
7181
|
queueCompletedSegment(boundary$jscomp$0, segment),
|
7178
7182
|
boundary$jscomp$0.parentFlushed &&
|
7179
7183
|
request$jscomp$0.completedBoundaries.push(boundary$jscomp$0),
|
@@ -7257,9 +7261,9 @@
|
|
7257
7261
|
}
|
7258
7262
|
}
|
7259
7263
|
else
|
7260
|
-
null
|
7261
|
-
segment.parentFlushed
|
7262
|
-
segment.status
|
7264
|
+
null === segment ||
|
7265
|
+
!segment.parentFlushed ||
|
7266
|
+
(segment.status !== COMPLETED && segment.status !== ABORTED) ||
|
7263
7267
|
(queueCompletedSegment(boundary$jscomp$0, segment),
|
7264
7268
|
1 === boundary$jscomp$0.completedSegments.length &&
|
7265
7269
|
boundary$jscomp$0.parentFlushed &&
|
@@ -7435,7 +7439,7 @@
|
|
7435
7439
|
errorDigest.componentStack
|
7436
7440
|
);
|
7437
7441
|
errorDigest.abortSet.delete(errorDigest);
|
7438
|
-
request$jscomp$1.status =
|
7442
|
+
request$jscomp$1.status = ERRORED;
|
7439
7443
|
var boundary$jscomp$0 = errorDigest.blockedBoundary,
|
7440
7444
|
row = errorDigest.row,
|
7441
7445
|
debugTask = errorDigest.debugTask;
|
@@ -7619,6 +7623,8 @@
|
|
7619
7623
|
chunkIdx < chunks.length &&
|
7620
7624
|
(r = writeChunkAndReturn(destination, chunks[chunkIdx]));
|
7621
7625
|
return r;
|
7626
|
+
case ABORTED:
|
7627
|
+
return !0;
|
7622
7628
|
default:
|
7623
7629
|
throw Error(
|
7624
7630
|
"Aborted, errored or already flushed boundaries should not be flushed again. This is a bug in React."
|
@@ -7856,7 +7862,8 @@
|
|
7856
7862
|
var completedPreambleSegments = request.completedPreambleSegments;
|
7857
7863
|
if (null === completedPreambleSegments) return;
|
7858
7864
|
flushedByteSize = request.byteSize;
|
7859
|
-
var
|
7865
|
+
var resumableState = request.resumableState,
|
7866
|
+
renderState = request.renderState,
|
7860
7867
|
preamble = renderState.preamble,
|
7861
7868
|
htmlChunks = preamble.htmlChunks,
|
7862
7869
|
headChunks = preamble.headChunks,
|
@@ -7915,6 +7922,9 @@
|
|
7915
7922
|
renderState.scripts.clear();
|
7916
7923
|
renderState.bulkPreloads.forEach(flushResource, destination);
|
7917
7924
|
renderState.bulkPreloads.clear();
|
7925
|
+
htmlChunks ||
|
7926
|
+
headChunks ||
|
7927
|
+
(resumableState.instructions |= SentCompletedShellId);
|
7918
7928
|
var hoistableChunks = renderState.hoistableChunks;
|
7919
7929
|
for (
|
7920
7930
|
i$jscomp$0 = 0;
|
@@ -7923,13 +7933,17 @@
|
|
7923
7933
|
)
|
7924
7934
|
writeChunk(destination, hoistableChunks[i$jscomp$0]);
|
7925
7935
|
for (
|
7926
|
-
|
7927
|
-
|
7928
|
-
|
7936
|
+
resumableState = hoistableChunks.length = 0;
|
7937
|
+
resumableState < completedPreambleSegments.length;
|
7938
|
+
resumableState++
|
7929
7939
|
) {
|
7930
|
-
var segments = completedPreambleSegments[
|
7931
|
-
for (
|
7932
|
-
|
7940
|
+
var segments = completedPreambleSegments[resumableState];
|
7941
|
+
for (
|
7942
|
+
renderState = 0;
|
7943
|
+
renderState < segments.length;
|
7944
|
+
renderState++
|
7945
|
+
)
|
7946
|
+
flushSegment(request, destination, segments[renderState], null);
|
7933
7947
|
}
|
7934
7948
|
var preamble$jscomp$0 = request.renderState.preamble,
|
7935
7949
|
headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
|
@@ -7954,19 +7968,20 @@
|
|
7954
7968
|
(0 !== request.trackedPostpones.rootNodes.length ||
|
7955
7969
|
null !== request.trackedPostpones.rootSlots))
|
7956
7970
|
) {
|
7957
|
-
var resumableState = request.resumableState;
|
7971
|
+
var resumableState$jscomp$0 = request.resumableState;
|
7958
7972
|
if (
|
7959
|
-
(resumableState.instructions & SentMarkShellTime) ===
|
7973
|
+
(resumableState$jscomp$0.instructions & SentMarkShellTime) ===
|
7960
7974
|
NothingSent
|
7961
7975
|
) {
|
7962
|
-
resumableState.instructions |= SentMarkShellTime;
|
7976
|
+
resumableState$jscomp$0.instructions |= SentMarkShellTime;
|
7963
7977
|
writeChunk(destination, renderState$jscomp$0.startInlineScript);
|
7964
7978
|
if (
|
7965
|
-
(resumableState.instructions &
|
7979
|
+
(resumableState$jscomp$0.instructions &
|
7980
|
+
SentCompletedShellId) ===
|
7966
7981
|
NothingSent
|
7967
7982
|
) {
|
7968
|
-
resumableState.instructions |= SentCompletedShellId;
|
7969
|
-
var shellId = "_" + resumableState.idPrefix + "R_";
|
7983
|
+
resumableState$jscomp$0.instructions |= SentCompletedShellId;
|
7984
|
+
var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_";
|
7970
7985
|
writeChunk(destination, completedShellIdAttributeStart);
|
7971
7986
|
writeChunk(destination, escapeTextForBrowser(shellId));
|
7972
7987
|
writeChunk(destination, attributeEnd);
|
@@ -8020,7 +8035,7 @@
|
|
8020
8035
|
for (i = 0; i < clientRenderedBoundaries.length; i++) {
|
8021
8036
|
var boundary = clientRenderedBoundaries[i];
|
8022
8037
|
renderState$jscomp$1 = destination;
|
8023
|
-
var resumableState$jscomp$
|
8038
|
+
var resumableState$jscomp$1 = request.resumableState,
|
8024
8039
|
renderState$jscomp$2 = request.renderState,
|
8025
8040
|
id = boundary.rootSegmentID,
|
8026
8041
|
errorDigest = boundary.errorDigest,
|
@@ -8032,10 +8047,10 @@
|
|
8032
8047
|
renderState$jscomp$2.startInlineScript
|
8033
8048
|
);
|
8034
8049
|
writeChunk(renderState$jscomp$1, endOfStartTag);
|
8035
|
-
(resumableState$jscomp$
|
8050
|
+
(resumableState$jscomp$1.instructions &
|
8036
8051
|
SentClientRenderFunction) ===
|
8037
8052
|
NothingSent
|
8038
|
-
? ((resumableState$jscomp$
|
8053
|
+
? ((resumableState$jscomp$1.instructions |=
|
8039
8054
|
SentClientRenderFunction),
|
8040
8055
|
writeChunk(renderState$jscomp$1, clientRenderScript1Full))
|
8041
8056
|
: writeChunk(renderState$jscomp$1, clientRenderScript1Partial);
|
@@ -8296,11 +8311,11 @@
|
|
8296
8311
|
}
|
8297
8312
|
function ensureCorrectIsomorphicReactVersion() {
|
8298
8313
|
var isomorphicReactPackageVersion = React.version;
|
8299
|
-
if ("19.2.0-canary-
|
8314
|
+
if ("19.2.0-canary-280ff6fe-20250606" !== isomorphicReactPackageVersion)
|
8300
8315
|
throw Error(
|
8301
8316
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8302
8317
|
(isomorphicReactPackageVersion +
|
8303
|
-
"\n - react-dom: 19.2.0-canary-
|
8318
|
+
"\n - react-dom: 19.2.0-canary-280ff6fe-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
|
8304
8319
|
);
|
8305
8320
|
}
|
8306
8321
|
function createDrainHandler(destination, request) {
|
@@ -9580,12 +9595,9 @@
|
|
9580
9595
|
stringToPrecomputedChunk('<template data-rsi="" data-sid="');
|
9581
9596
|
stringToPrecomputedChunk('" data-pid="');
|
9582
9597
|
var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
|
9583
|
-
|
9584
|
-
|
9585
|
-
|
9586
|
-
'$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);'
|
9587
|
-
);
|
9588
|
-
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9598
|
+
'$RB=[];$RV=function(b){$RT=performance.now();for(var a=0;a<b.length;a+=2){var c=b[a],h=b[a+1],e=c.parentNode;if(e){var f=c.previousSibling,g=0;do{if(c&&8===c.nodeType){var d=c.data;if("/$"===d||"/&"===d)if(0===g)break;else g--;else"$"!==d&&"$?"!==d&&"$~"!==d&&"$!"!==d&&"&"!==d||g++}d=c.nextSibling;e.removeChild(c);c=d}while(c);for(;h.firstChild;)e.insertBefore(h.firstChild,c);f.data="$";f._reactRetry&&f._reactRetry()}}b.length=0};$RC=function(b,a){if(a=document.getElementById(a))if(a.parentNode.removeChild(a),b=document.getElementById(b))b.previousSibling.data="$~",$RB.push(b,a),2===$RB.length&&(b="number"!==typeof $RT?0:$RT,a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:b+300-a))};'
|
9599
|
+
),
|
9600
|
+
completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9589
9601
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
9590
9602
|
'$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("'
|
9591
9603
|
),
|
@@ -9879,6 +9891,7 @@
|
|
9879
9891
|
COMPLETED = 1,
|
9880
9892
|
FLUSHED = 2,
|
9881
9893
|
ABORTED = 3,
|
9894
|
+
ERRORED = 4,
|
9882
9895
|
POSTPONED = 5,
|
9883
9896
|
CLOSED = 14,
|
9884
9897
|
currentRequest = null,
|
@@ -9982,5 +9995,5 @@
|
|
9982
9995
|
}
|
9983
9996
|
};
|
9984
9997
|
};
|
9985
|
-
exports.version = "19.2.0-canary-
|
9998
|
+
exports.version = "19.2.0-canary-280ff6fe-20250606";
|
9986
9999
|
})();
|