react-dom 19.2.0-canary-ab859e31-20250606 → 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 +18 -11
- package/cjs/react-dom-server-legacy.browser.production.js +13 -8
- package/cjs/react-dom-server-legacy.node.development.js +18 -11
- package/cjs/react-dom-server-legacy.node.production.js +13 -8
- package/cjs/react-dom-server.browser.development.js +21 -14
- package/cjs/react-dom-server.browser.production.js +15 -10
- package/cjs/react-dom-server.bun.development.js +20 -13
- package/cjs/react-dom-server.bun.production.js +15 -10
- package/cjs/react-dom-server.edge.development.js +21 -14
- package/cjs/react-dom-server.edge.production.js +15 -10
- package/cjs/react-dom-server.node.development.js +20 -13
- package/cjs/react-dom-server.node.production.js +14 -9
- 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 -10017
- package/cjs/react-dom-server.node-webstreams.production.js +0 -6957
@@ -5160,7 +5160,8 @@
|
|
5160
5160
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
5161
5161
|
} catch (thrownValue) {
|
5162
5162
|
throw (
|
5163
|
-
((resumeSegmentID.status =
|
5163
|
+
((resumeSegmentID.status =
|
5164
|
+
12 === request.status ? ABORTED : ERRORED),
|
5164
5165
|
thrownValue)
|
5165
5166
|
);
|
5166
5167
|
}
|
@@ -6011,7 +6012,7 @@
|
|
6011
6012
|
} catch (thrownValue) {
|
6012
6013
|
throw (
|
6013
6014
|
((boundarySegment.status =
|
6014
|
-
12 === request.status ? ABORTED :
|
6015
|
+
12 === request.status ? ABORTED : ERRORED),
|
6015
6016
|
thrownValue)
|
6016
6017
|
);
|
6017
6018
|
} finally {
|
@@ -6090,7 +6091,8 @@
|
|
6090
6091
|
contentRootSegment.status = ABORTED;
|
6091
6092
|
var error = request.fatalError;
|
6092
6093
|
} else
|
6093
|
-
(contentRootSegment.status =
|
6094
|
+
(contentRootSegment.status = ERRORED),
|
6095
|
+
(error = thrownValue$2);
|
6094
6096
|
var thrownInfo = getThrownInfo(task.componentStack);
|
6095
6097
|
var errorDigest = logRecoverableError(
|
6096
6098
|
request,
|
@@ -7223,7 +7225,9 @@
|
|
7223
7225
|
var childSegment = segment.children[0];
|
7224
7226
|
childSegment.id = segment.id;
|
7225
7227
|
childSegment.parentFlushed = !0;
|
7226
|
-
childSegment.status
|
7228
|
+
(childSegment.status !== COMPLETED &&
|
7229
|
+
childSegment.status !== ABORTED &&
|
7230
|
+
childSegment.status !== ERRORED) ||
|
7227
7231
|
queueCompletedSegment(boundary, childSegment);
|
7228
7232
|
} else boundary.completedSegments.push(segment);
|
7229
7233
|
}
|
@@ -7264,7 +7268,7 @@
|
|
7264
7268
|
(boundary$jscomp$0.status = COMPLETED),
|
7265
7269
|
null !== segment &&
|
7266
7270
|
segment.parentFlushed &&
|
7267
|
-
segment.status === COMPLETED &&
|
7271
|
+
(segment.status === COMPLETED || segment.status === ABORTED) &&
|
7268
7272
|
queueCompletedSegment(boundary$jscomp$0, segment),
|
7269
7273
|
boundary$jscomp$0.parentFlushed &&
|
7270
7274
|
request$jscomp$0.completedBoundaries.push(boundary$jscomp$0),
|
@@ -7348,9 +7352,9 @@
|
|
7348
7352
|
}
|
7349
7353
|
}
|
7350
7354
|
else
|
7351
|
-
null
|
7352
|
-
segment.parentFlushed
|
7353
|
-
segment.status
|
7355
|
+
null === segment ||
|
7356
|
+
!segment.parentFlushed ||
|
7357
|
+
(segment.status !== COMPLETED && segment.status !== ABORTED) ||
|
7354
7358
|
(queueCompletedSegment(boundary$jscomp$0, segment),
|
7355
7359
|
1 === boundary$jscomp$0.completedSegments.length &&
|
7356
7360
|
boundary$jscomp$0.parentFlushed &&
|
@@ -7526,7 +7530,7 @@
|
|
7526
7530
|
errorDigest.componentStack
|
7527
7531
|
);
|
7528
7532
|
errorDigest.abortSet.delete(errorDigest);
|
7529
|
-
request$jscomp$1.status =
|
7533
|
+
request$jscomp$1.status = ERRORED;
|
7530
7534
|
var boundary$jscomp$0 = errorDigest.blockedBoundary,
|
7531
7535
|
row = errorDigest.row,
|
7532
7536
|
debugTask = errorDigest.debugTask;
|
@@ -7710,6 +7714,8 @@
|
|
7710
7714
|
chunkIdx < chunks.length &&
|
7711
7715
|
(r = writeChunkAndReturn(destination, chunks[chunkIdx]));
|
7712
7716
|
return r;
|
7717
|
+
case ABORTED:
|
7718
|
+
return !0;
|
7713
7719
|
default:
|
7714
7720
|
throw Error(
|
7715
7721
|
"Aborted, errored or already flushed boundaries should not be flushed again. This is a bug in React."
|
@@ -8407,11 +8413,11 @@
|
|
8407
8413
|
}
|
8408
8414
|
function ensureCorrectIsomorphicReactVersion() {
|
8409
8415
|
var isomorphicReactPackageVersion = React.version;
|
8410
|
-
if ("19.2.0-canary-
|
8416
|
+
if ("19.2.0-canary-280ff6fe-20250606" !== isomorphicReactPackageVersion)
|
8411
8417
|
throw Error(
|
8412
8418
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8413
8419
|
(isomorphicReactPackageVersion +
|
8414
|
-
"\n - react-dom: 19.2.0-canary-
|
8420
|
+
"\n - react-dom: 19.2.0-canary-280ff6fe-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
|
8415
8421
|
);
|
8416
8422
|
}
|
8417
8423
|
var React = require("react"),
|
@@ -9646,10 +9652,10 @@
|
|
9646
9652
|
stringToPrecomputedChunk('<template data-rsi="" data-sid="');
|
9647
9653
|
stringToPrecomputedChunk('" data-pid="');
|
9648
9654
|
var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
|
9649
|
-
'$RB=[];$RV=function(
|
9655
|
+
'$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))};'
|
9650
9656
|
);
|
9651
9657
|
stringToChunk(
|
9652
|
-
'$RV=function(
|
9658
|
+
'$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);'
|
9653
9659
|
);
|
9654
9660
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9655
9661
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -9944,6 +9950,7 @@
|
|
9944
9950
|
COMPLETED = 1,
|
9945
9951
|
FLUSHED = 2,
|
9946
9952
|
ABORTED = 3,
|
9953
|
+
ERRORED = 4,
|
9947
9954
|
POSTPONED = 5,
|
9948
9955
|
CLOSED = 14,
|
9949
9956
|
currentRequest = null,
|
@@ -10098,5 +10105,5 @@
|
|
10098
10105
|
startWork(request);
|
10099
10106
|
});
|
10100
10107
|
};
|
10101
|
-
exports.version = "19.2.0-canary-
|
10108
|
+
exports.version = "19.2.0-canary-280ff6fe-20250606";
|
10102
10109
|
})();
|
@@ -2542,10 +2542,10 @@ var completeSegmentScript1Full = stringToPrecomputedChunk(
|
|
2542
2542
|
stringToPrecomputedChunk('<template data-rsi="" data-sid="');
|
2543
2543
|
stringToPrecomputedChunk('" data-pid="');
|
2544
2544
|
var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
|
2545
|
-
'$RB=[];$RV=function(
|
2545
|
+
'$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))};'
|
2546
2546
|
);
|
2547
2547
|
stringToChunk(
|
2548
|
-
'$RV=function(
|
2548
|
+
'$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);'
|
2549
2549
|
);
|
2550
2550
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
2551
2551
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -5860,7 +5860,10 @@ function queueCompletedSegment(boundary, segment) {
|
|
5860
5860
|
var childSegment = segment.children[0];
|
5861
5861
|
childSegment.id = segment.id;
|
5862
5862
|
childSegment.parentFlushed = !0;
|
5863
|
-
1
|
5863
|
+
(1 !== childSegment.status &&
|
5864
|
+
3 !== childSegment.status &&
|
5865
|
+
4 !== childSegment.status) ||
|
5866
|
+
queueCompletedSegment(boundary, childSegment);
|
5864
5867
|
} else boundary.completedSegments.push(segment);
|
5865
5868
|
}
|
5866
5869
|
function finishedSegment(request, boundary, segment) {
|
@@ -5893,7 +5896,7 @@ function finishedTask(request$jscomp$0, boundary, row, segment) {
|
|
5893
5896
|
(0 === boundary.status && (boundary.status = 1),
|
5894
5897
|
null !== segment &&
|
5895
5898
|
segment.parentFlushed &&
|
5896
|
-
1 === segment.status &&
|
5899
|
+
(1 === segment.status || 3 === segment.status) &&
|
5897
5900
|
queueCompletedSegment(boundary, segment),
|
5898
5901
|
boundary.parentFlushed &&
|
5899
5902
|
request$jscomp$0.completedBoundaries.push(boundary),
|
@@ -5970,9 +5973,9 @@ function finishedTask(request$jscomp$0, boundary, row, segment) {
|
|
5970
5973
|
}
|
5971
5974
|
}
|
5972
5975
|
else
|
5973
|
-
null
|
5974
|
-
segment.parentFlushed
|
5975
|
-
1
|
5976
|
+
null === segment ||
|
5977
|
+
!segment.parentFlushed ||
|
5978
|
+
(1 !== segment.status && 3 !== segment.status) ||
|
5976
5979
|
(queueCompletedSegment(boundary, segment),
|
5977
5980
|
1 === boundary.completedSegments.length &&
|
5978
5981
|
boundary.parentFlushed &&
|
@@ -6284,6 +6287,8 @@ function flushSubtree(request, destination, segment, hoistableState) {
|
|
6284
6287
|
chunkIdx < chunks.length &&
|
6285
6288
|
(r = writeChunkAndReturn(destination, chunks[chunkIdx]));
|
6286
6289
|
return r;
|
6290
|
+
case 3:
|
6291
|
+
return !0;
|
6287
6292
|
default:
|
6288
6293
|
throw Error(formatProdErrorMessage(390));
|
6289
6294
|
}
|
@@ -6806,12 +6811,12 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6806
6811
|
}
|
6807
6812
|
function ensureCorrectIsomorphicReactVersion() {
|
6808
6813
|
var isomorphicReactPackageVersion = React.version;
|
6809
|
-
if ("19.2.0-canary-
|
6814
|
+
if ("19.2.0-canary-280ff6fe-20250606" !== isomorphicReactPackageVersion)
|
6810
6815
|
throw Error(
|
6811
6816
|
formatProdErrorMessage(
|
6812
6817
|
527,
|
6813
6818
|
isomorphicReactPackageVersion,
|
6814
|
-
"19.2.0-canary-
|
6819
|
+
"19.2.0-canary-280ff6fe-20250606"
|
6815
6820
|
)
|
6816
6821
|
);
|
6817
6822
|
}
|
@@ -6958,4 +6963,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6958
6963
|
startWork(request);
|
6959
6964
|
});
|
6960
6965
|
};
|
6961
|
-
exports.version = "19.2.0-canary-
|
6966
|
+
exports.version = "19.2.0-canary-280ff6fe-20250606";
|
@@ -3909,7 +3909,7 @@ var completeSegmentScript1Full =
|
|
3909
3909
|
completeSegmentScript2 = '","',
|
3910
3910
|
completeSegmentScriptEnd = '")\x3c/script>',
|
3911
3911
|
completeBoundaryScriptFunctionOnly =
|
3912
|
-
'$RB=[];$RV=function(
|
3912
|
+
'$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))};',
|
3913
3913
|
completeBoundaryScript1Partial = '$RC("',
|
3914
3914
|
completeBoundaryWithStylesScript1FullPartial =
|
3915
3915
|
'$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("',
|
@@ -5622,6 +5622,7 @@ var CLIENT_RENDERED = 4,
|
|
5622
5622
|
COMPLETED = 1,
|
5623
5623
|
FLUSHED = 2,
|
5624
5624
|
ABORTED = 3,
|
5625
|
+
ERRORED = 4,
|
5625
5626
|
POSTPONED = 5,
|
5626
5627
|
CLOSED = 14;
|
5627
5628
|
function defaultErrorHandler(error) {
|
@@ -6240,7 +6241,7 @@ function renderSuspenseListRows(request, task, keyPath, rows, revealOrder) {
|
|
6240
6241
|
finishSuspenseListRow(request, previousSuspenseListRow);
|
6241
6242
|
} catch (thrownValue) {
|
6242
6243
|
throw (
|
6243
|
-
((resumeSegmentID.status = 12 === request.status ? ABORTED :
|
6244
|
+
((resumeSegmentID.status = 12 === request.status ? ABORTED : ERRORED),
|
6244
6245
|
thrownValue)
|
6245
6246
|
);
|
6246
6247
|
}
|
@@ -7048,7 +7049,8 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
7048
7049
|
finishedSegment(request, parentBoundary, boundarySegment);
|
7049
7050
|
} catch (thrownValue) {
|
7050
7051
|
throw (
|
7051
|
-
((boundarySegment.status =
|
7052
|
+
((boundarySegment.status =
|
7053
|
+
12 === request.status ? ABORTED : ERRORED),
|
7052
7054
|
thrownValue)
|
7053
7055
|
);
|
7054
7056
|
} finally {
|
@@ -7129,7 +7131,8 @@ function renderElement(request, task, keyPath, type, props, ref) {
|
|
7129
7131
|
if (12 === request.status) {
|
7130
7132
|
contentRootSegment.status = ABORTED;
|
7131
7133
|
var error = request.fatalError;
|
7132
|
-
} else
|
7134
|
+
} else
|
7135
|
+
(contentRootSegment.status = ERRORED), (error = thrownValue$2);
|
7133
7136
|
var thrownInfo = getThrownInfo(task.componentStack);
|
7134
7137
|
var errorDigest = logRecoverableError(
|
7135
7138
|
request,
|
@@ -8218,7 +8221,9 @@ function queueCompletedSegment(boundary, segment) {
|
|
8218
8221
|
var childSegment = segment.children[0];
|
8219
8222
|
childSegment.id = segment.id;
|
8220
8223
|
childSegment.parentFlushed = !0;
|
8221
|
-
childSegment.status
|
8224
|
+
(childSegment.status !== COMPLETED &&
|
8225
|
+
childSegment.status !== ABORTED &&
|
8226
|
+
childSegment.status !== ERRORED) ||
|
8222
8227
|
queueCompletedSegment(boundary, childSegment);
|
8223
8228
|
} else boundary.completedSegments.push(segment);
|
8224
8229
|
}
|
@@ -8258,7 +8263,7 @@ function finishedTask(request$jscomp$0, boundary$jscomp$0, row, segment) {
|
|
8258
8263
|
(boundary$jscomp$0.status = COMPLETED),
|
8259
8264
|
null !== segment &&
|
8260
8265
|
segment.parentFlushed &&
|
8261
|
-
segment.status === COMPLETED &&
|
8266
|
+
(segment.status === COMPLETED || segment.status === ABORTED) &&
|
8262
8267
|
queueCompletedSegment(boundary$jscomp$0, segment),
|
8263
8268
|
boundary$jscomp$0.parentFlushed &&
|
8264
8269
|
request$jscomp$0.completedBoundaries.push(boundary$jscomp$0),
|
@@ -8333,9 +8338,9 @@ function finishedTask(request$jscomp$0, boundary$jscomp$0, row, segment) {
|
|
8333
8338
|
}
|
8334
8339
|
}
|
8335
8340
|
else
|
8336
|
-
null
|
8337
|
-
segment.parentFlushed
|
8338
|
-
segment.status
|
8341
|
+
null === segment ||
|
8342
|
+
!segment.parentFlushed ||
|
8343
|
+
(segment.status !== COMPLETED && segment.status !== ABORTED) ||
|
8339
8344
|
(queueCompletedSegment(boundary$jscomp$0, segment),
|
8340
8345
|
1 === boundary$jscomp$0.completedSegments.length &&
|
8341
8346
|
boundary$jscomp$0.parentFlushed &&
|
@@ -8511,7 +8516,7 @@ function performWork(request$jscomp$2) {
|
|
8511
8516
|
errorDigest.componentStack
|
8512
8517
|
);
|
8513
8518
|
errorDigest.abortSet.delete(errorDigest);
|
8514
|
-
request$jscomp$1.status =
|
8519
|
+
request$jscomp$1.status = ERRORED;
|
8515
8520
|
var boundary$jscomp$0 = errorDigest.blockedBoundary,
|
8516
8521
|
row = errorDigest.row,
|
8517
8522
|
debugTask = errorDigest.debugTask;
|
@@ -8686,6 +8691,8 @@ function flushSubtree(request, destination, segment, hoistableState) {
|
|
8686
8691
|
writeChunk(destination, chunks[chunkIdx]);
|
8687
8692
|
chunkIdx < chunks.length && (r = !!destination.write(chunks[chunkIdx]));
|
8688
8693
|
return r;
|
8694
|
+
case ABORTED:
|
8695
|
+
return !0;
|
8689
8696
|
default:
|
8690
8697
|
throw Error(
|
8691
8698
|
"Aborted, errored or already flushed boundaries should not be flushed again. This is a bug in React."
|
@@ -9275,13 +9282,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
9275
9282
|
}
|
9276
9283
|
var isomorphicReactPackageVersion$jscomp$inline_761 = React.version;
|
9277
9284
|
if (
|
9278
|
-
"19.2.0-canary-
|
9285
|
+
"19.2.0-canary-280ff6fe-20250606" !==
|
9279
9286
|
isomorphicReactPackageVersion$jscomp$inline_761
|
9280
9287
|
)
|
9281
9288
|
throw Error(
|
9282
9289
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
9283
9290
|
(isomorphicReactPackageVersion$jscomp$inline_761 +
|
9284
|
-
"\n - react-dom: 19.2.0-canary-
|
9291
|
+
"\n - react-dom: 19.2.0-canary-280ff6fe-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
|
9285
9292
|
);
|
9286
9293
|
exports.renderToReadableStream = function (children, options) {
|
9287
9294
|
return new Promise(function (resolve, reject) {
|
@@ -9374,4 +9381,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
9374
9381
|
startWork(request$jscomp$0);
|
9375
9382
|
});
|
9376
9383
|
};
|
9377
|
-
exports.version = "19.2.0-canary-
|
9384
|
+
exports.version = "19.2.0-canary-280ff6fe-20250606";
|
@@ -5495,7 +5495,10 @@ function queueCompletedSegment(boundary, segment) {
|
|
5495
5495
|
var childSegment = segment.children[0];
|
5496
5496
|
childSegment.id = segment.id;
|
5497
5497
|
childSegment.parentFlushed = !0;
|
5498
|
-
1
|
5498
|
+
(1 !== childSegment.status &&
|
5499
|
+
3 !== childSegment.status &&
|
5500
|
+
4 !== childSegment.status) ||
|
5501
|
+
queueCompletedSegment(boundary, childSegment);
|
5499
5502
|
} else boundary.completedSegments.push(segment);
|
5500
5503
|
}
|
5501
5504
|
function finishedSegment(request, boundary, segment) {
|
@@ -5530,7 +5533,7 @@ function finishedTask(request$jscomp$0, boundary, row, segment) {
|
|
5530
5533
|
(0 === boundary.status && (boundary.status = 1),
|
5531
5534
|
null !== segment &&
|
5532
5535
|
segment.parentFlushed &&
|
5533
|
-
1 === segment.status &&
|
5536
|
+
(1 === segment.status || 3 === segment.status) &&
|
5534
5537
|
queueCompletedSegment(boundary, segment),
|
5535
5538
|
boundary.parentFlushed &&
|
5536
5539
|
request$jscomp$0.completedBoundaries.push(boundary),
|
@@ -5610,9 +5613,9 @@ function finishedTask(request$jscomp$0, boundary, row, segment) {
|
|
5610
5613
|
}
|
5611
5614
|
}
|
5612
5615
|
else
|
5613
|
-
null
|
5614
|
-
segment.parentFlushed
|
5615
|
-
1
|
5616
|
+
null === segment ||
|
5617
|
+
!segment.parentFlushed ||
|
5618
|
+
(1 !== segment.status && 3 !== segment.status) ||
|
5616
5619
|
(queueCompletedSegment(boundary, segment),
|
5617
5620
|
1 === boundary.completedSegments.length &&
|
5618
5621
|
boundary.parentFlushed &&
|
@@ -5931,6 +5934,8 @@ function flushSubtree(request, destination, segment, hoistableState) {
|
|
5931
5934
|
writeChunk(destination, chunks[chunkIdx]);
|
5932
5935
|
chunkIdx < chunks.length && (r = !!destination.write(chunks[chunkIdx]));
|
5933
5936
|
return r;
|
5937
|
+
case 3:
|
5938
|
+
return !0;
|
5934
5939
|
default:
|
5935
5940
|
throw Error(
|
5936
5941
|
"Aborted, errored or already flushed boundaries should not be flushed again. This is a bug in React."
|
@@ -6051,7 +6056,7 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
6051
6056
|
((completedSegments.instructions |= 2),
|
6052
6057
|
writeChunk(
|
6053
6058
|
destination,
|
6054
|
-
'$RB=[];$RV=function(
|
6059
|
+
'$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))};'
|
6055
6060
|
)),
|
6056
6061
|
0 === (completedSegments.instructions & 8)
|
6057
6062
|
? ((completedSegments.instructions |= 8),
|
@@ -6064,7 +6069,7 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
6064
6069
|
((completedSegments.instructions |= 2),
|
6065
6070
|
writeChunk(
|
6066
6071
|
destination,
|
6067
|
-
'$RB=[];$RV=function(
|
6072
|
+
'$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))};'
|
6068
6073
|
)),
|
6069
6074
|
writeChunk(destination, '$RC("'));
|
6070
6075
|
completedSegments = i.toString(16);
|
@@ -6451,13 +6456,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6451
6456
|
}
|
6452
6457
|
var isomorphicReactPackageVersion$jscomp$inline_813 = React.version;
|
6453
6458
|
if (
|
6454
|
-
"19.2.0-canary-
|
6459
|
+
"19.2.0-canary-280ff6fe-20250606" !==
|
6455
6460
|
isomorphicReactPackageVersion$jscomp$inline_813
|
6456
6461
|
)
|
6457
6462
|
throw Error(
|
6458
6463
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
6459
6464
|
(isomorphicReactPackageVersion$jscomp$inline_813 +
|
6460
|
-
"\n - react-dom: 19.2.0-canary-
|
6465
|
+
"\n - react-dom: 19.2.0-canary-280ff6fe-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
|
6461
6466
|
);
|
6462
6467
|
exports.renderToReadableStream = function (children, options) {
|
6463
6468
|
return new Promise(function (resolve, reject) {
|
@@ -6548,4 +6553,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6548
6553
|
startWork(request);
|
6549
6554
|
});
|
6550
6555
|
};
|
6551
|
-
exports.version = "19.2.0-canary-
|
6556
|
+
exports.version = "19.2.0-canary-280ff6fe-20250606";
|
@@ -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."
|
@@ -8430,11 +8436,11 @@
|
|
8430
8436
|
}
|
8431
8437
|
function ensureCorrectIsomorphicReactVersion() {
|
8432
8438
|
var isomorphicReactPackageVersion = React.version;
|
8433
|
-
if ("19.2.0-canary-
|
8439
|
+
if ("19.2.0-canary-280ff6fe-20250606" !== isomorphicReactPackageVersion)
|
8434
8440
|
throw Error(
|
8435
8441
|
'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
|
8436
8442
|
(isomorphicReactPackageVersion +
|
8437
|
-
"\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")
|
8438
8444
|
);
|
8439
8445
|
}
|
8440
8446
|
var React = require("react"),
|
@@ -9663,10 +9669,10 @@
|
|
9663
9669
|
stringToPrecomputedChunk('<template data-rsi="" data-sid="');
|
9664
9670
|
stringToPrecomputedChunk('" data-pid="');
|
9665
9671
|
var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
|
9666
|
-
'$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))};'
|
9667
9673
|
);
|
9668
9674
|
stringToChunk(
|
9669
|
-
'$RV=function(
|
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);'
|
9670
9676
|
);
|
9671
9677
|
var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
|
9672
9678
|
completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
|
@@ -9963,6 +9969,7 @@
|
|
9963
9969
|
COMPLETED = 1,
|
9964
9970
|
FLUSHED = 2,
|
9965
9971
|
ABORTED = 3,
|
9972
|
+
ERRORED = 4,
|
9966
9973
|
POSTPONED = 5,
|
9967
9974
|
CLOSED = 14,
|
9968
9975
|
currentRequest = null,
|
@@ -10117,5 +10124,5 @@
|
|
10117
10124
|
startWork(request);
|
10118
10125
|
});
|
10119
10126
|
};
|
10120
|
-
exports.version = "19.2.0-canary-
|
10127
|
+
exports.version = "19.2.0-canary-280ff6fe-20250606";
|
10121
10128
|
})();
|