react-markup 0.0.0-experimental-23884812-20250520 → 0.0.0-experimental-99efc627-20250523
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.
|
@@ -609,8 +609,8 @@ function getSuspenseViewTransition(parentViewTransition) {
|
|
|
609
609
|
? null
|
|
610
610
|
: {
|
|
611
611
|
update: parentViewTransition.update,
|
|
612
|
-
enter:
|
|
613
|
-
exit:
|
|
612
|
+
enter: "none",
|
|
613
|
+
exit: "none",
|
|
614
614
|
share: parentViewTransition.update,
|
|
615
615
|
name: parentViewTransition.autoName,
|
|
616
616
|
autoName: parentViewTransition.autoName,
|
|
@@ -652,11 +652,11 @@ function pushViewTransitionAttributes(target, formatContext) {
|
|
|
652
652
|
),
|
|
653
653
|
formatContext.nameIdx++),
|
|
654
654
|
pushStringAttribute(target, "vt-update", formatContext.update),
|
|
655
|
-
|
|
655
|
+
"none" !== formatContext.enter &&
|
|
656
656
|
pushStringAttribute(target, "vt-enter", formatContext.enter),
|
|
657
|
-
|
|
657
|
+
"none" !== formatContext.exit &&
|
|
658
658
|
pushStringAttribute(target, "vt-exit", formatContext.exit),
|
|
659
|
-
|
|
659
|
+
"none" !== formatContext.share &&
|
|
660
660
|
pushStringAttribute(target, "vt-share", formatContext.share));
|
|
661
661
|
}
|
|
662
662
|
var styleNameCache = new Map();
|
|
@@ -5104,6 +5104,35 @@ function renderChildrenArray(request, task, children, childIndex) {
|
|
|
5104
5104
|
task.treeContext = replay;
|
|
5105
5105
|
task.keyPath = prevKeyPath;
|
|
5106
5106
|
}
|
|
5107
|
+
function trackPostponedBoundary(request, trackedPostpones, boundary) {
|
|
5108
|
+
boundary.status = 5;
|
|
5109
|
+
boundary.rootSegmentID = request.nextSegmentId++;
|
|
5110
|
+
request = boundary.trackedContentKeyPath;
|
|
5111
|
+
if (null === request)
|
|
5112
|
+
throw Error(
|
|
5113
|
+
"It should not be possible to postpone at the root. This is a bug in React."
|
|
5114
|
+
);
|
|
5115
|
+
var fallbackReplayNode = boundary.trackedFallbackNode,
|
|
5116
|
+
children = [],
|
|
5117
|
+
boundaryNode = trackedPostpones.workingMap.get(request);
|
|
5118
|
+
if (void 0 === boundaryNode)
|
|
5119
|
+
return (
|
|
5120
|
+
(boundary = [
|
|
5121
|
+
request[1],
|
|
5122
|
+
request[2],
|
|
5123
|
+
children,
|
|
5124
|
+
null,
|
|
5125
|
+
fallbackReplayNode,
|
|
5126
|
+
boundary.rootSegmentID
|
|
5127
|
+
]),
|
|
5128
|
+
trackedPostpones.workingMap.set(request, boundary),
|
|
5129
|
+
addToReplayParent(boundary, request[0], trackedPostpones),
|
|
5130
|
+
boundary
|
|
5131
|
+
);
|
|
5132
|
+
boundaryNode[4] = fallbackReplayNode;
|
|
5133
|
+
boundaryNode[5] = boundary.rootSegmentID;
|
|
5134
|
+
return boundaryNode;
|
|
5135
|
+
}
|
|
5107
5136
|
function trackPostpone(request, trackedPostpones, task, segment) {
|
|
5108
5137
|
segment.status = 5;
|
|
5109
5138
|
var keyPath = task.keyPath,
|
|
@@ -5115,51 +5144,22 @@ function trackPostpone(request, trackedPostpones, task, segment) {
|
|
|
5115
5144
|
(request.completedRootSegment.status = 5);
|
|
5116
5145
|
else {
|
|
5117
5146
|
if (null !== boundary && 0 === boundary.status) {
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
if (boundaryKeyPath === keyPath && -1 === task.childIndex) {
|
|
5147
|
+
var boundaryNode = trackPostponedBoundary(
|
|
5148
|
+
request,
|
|
5149
|
+
trackedPostpones,
|
|
5150
|
+
boundary
|
|
5151
|
+
);
|
|
5152
|
+
if (
|
|
5153
|
+
boundary.trackedContentKeyPath === keyPath &&
|
|
5154
|
+
-1 === task.childIndex
|
|
5155
|
+
) {
|
|
5128
5156
|
-1 === segment.id &&
|
|
5129
5157
|
(segment.id = segment.parentFlushed
|
|
5130
5158
|
? boundary.rootSegmentID
|
|
5131
5159
|
: request.nextSegmentId++);
|
|
5132
|
-
|
|
5133
|
-
boundaryKeyPath[1],
|
|
5134
|
-
boundaryKeyPath[2],
|
|
5135
|
-
children,
|
|
5136
|
-
segment.id,
|
|
5137
|
-
fallbackReplayNode,
|
|
5138
|
-
boundary.rootSegmentID
|
|
5139
|
-
];
|
|
5140
|
-
trackedPostpones.workingMap.set(boundaryKeyPath, segment);
|
|
5141
|
-
addToReplayParent(segment, boundaryKeyPath[0], trackedPostpones);
|
|
5160
|
+
boundaryNode[3] = segment.id;
|
|
5142
5161
|
return;
|
|
5143
5162
|
}
|
|
5144
|
-
var boundaryNode$47 = trackedPostpones.workingMap.get(boundaryKeyPath);
|
|
5145
|
-
void 0 === boundaryNode$47
|
|
5146
|
-
? ((boundaryNode$47 = [
|
|
5147
|
-
boundaryKeyPath[1],
|
|
5148
|
-
boundaryKeyPath[2],
|
|
5149
|
-
children,
|
|
5150
|
-
null,
|
|
5151
|
-
fallbackReplayNode,
|
|
5152
|
-
boundary.rootSegmentID
|
|
5153
|
-
]),
|
|
5154
|
-
trackedPostpones.workingMap.set(boundaryKeyPath, boundaryNode$47),
|
|
5155
|
-
addToReplayParent(
|
|
5156
|
-
boundaryNode$47,
|
|
5157
|
-
boundaryKeyPath[0],
|
|
5158
|
-
trackedPostpones
|
|
5159
|
-
))
|
|
5160
|
-
: ((boundaryKeyPath = boundaryNode$47),
|
|
5161
|
-
(boundaryKeyPath[4] = fallbackReplayNode),
|
|
5162
|
-
(boundaryKeyPath[5] = boundary.rootSegmentID));
|
|
5163
5163
|
}
|
|
5164
5164
|
-1 === segment.id &&
|
|
5165
5165
|
(segment.id =
|
|
@@ -5186,15 +5186,15 @@ function trackPostpone(request, trackedPostpones, task, segment) {
|
|
|
5186
5186
|
}
|
|
5187
5187
|
else if (
|
|
5188
5188
|
((boundary = trackedPostpones.workingMap),
|
|
5189
|
-
(
|
|
5190
|
-
void 0 ===
|
|
5189
|
+
(boundaryNode = boundary.get(keyPath)),
|
|
5190
|
+
void 0 === boundaryNode)
|
|
5191
5191
|
)
|
|
5192
5192
|
(request = {}),
|
|
5193
|
-
(
|
|
5194
|
-
boundary.set(keyPath,
|
|
5195
|
-
addToReplayParent(
|
|
5196
|
-
else if (((request =
|
|
5197
|
-
request =
|
|
5193
|
+
(boundaryNode = [keyPath[1], keyPath[2], [], request]),
|
|
5194
|
+
boundary.set(keyPath, boundaryNode),
|
|
5195
|
+
addToReplayParent(boundaryNode, keyPath[0], trackedPostpones);
|
|
5196
|
+
else if (((request = boundaryNode[3]), null === request))
|
|
5197
|
+
request = boundaryNode[3] = {};
|
|
5198
5198
|
else if ("number" === typeof request)
|
|
5199
5199
|
throw Error(
|
|
5200
5200
|
"It should not be possible to postpone both at the root of an element as well as a slot below. This is a bug in React."
|
|
@@ -5686,45 +5686,68 @@ function finishedTask(request, boundary, row, segment) {
|
|
|
5686
5686
|
}
|
|
5687
5687
|
request.pendingRootTasks--;
|
|
5688
5688
|
0 === request.pendingRootTasks && completeShell(request);
|
|
5689
|
-
} else
|
|
5690
|
-
boundary.pendingTasks
|
|
5691
|
-
|
|
5692
|
-
(0 === boundary.
|
|
5693
|
-
|
|
5694
|
-
|
|
5695
|
-
|
|
5696
|
-
|
|
5697
|
-
|
|
5698
|
-
|
|
5699
|
-
|
|
5700
|
-
|
|
5701
|
-
|
|
5702
|
-
|
|
5703
|
-
|
|
5704
|
-
|
|
5705
|
-
|
|
5706
|
-
|
|
5707
|
-
|
|
5708
|
-
|
|
5709
|
-
|
|
5710
|
-
|
|
5711
|
-
|
|
5712
|
-
|
|
5713
|
-
|
|
5714
|
-
|
|
5715
|
-
|
|
5716
|
-
|
|
5717
|
-
|
|
5718
|
-
|
|
5719
|
-
|
|
5720
|
-
|
|
5721
|
-
|
|
5722
|
-
|
|
5723
|
-
|
|
5724
|
-
|
|
5725
|
-
|
|
5726
|
-
|
|
5727
|
-
|
|
5689
|
+
} else if ((boundary.pendingTasks--, 4 !== boundary.status))
|
|
5690
|
+
if (0 === boundary.pendingTasks)
|
|
5691
|
+
if (
|
|
5692
|
+
(0 === boundary.status && (boundary.status = 1),
|
|
5693
|
+
null !== segment &&
|
|
5694
|
+
segment.parentFlushed &&
|
|
5695
|
+
1 === segment.status &&
|
|
5696
|
+
queueCompletedSegment(boundary, segment),
|
|
5697
|
+
boundary.parentFlushed && request.completedBoundaries.push(boundary),
|
|
5698
|
+
1 === boundary.status)
|
|
5699
|
+
)
|
|
5700
|
+
(row = boundary.row),
|
|
5701
|
+
null !== row &&
|
|
5702
|
+
hoistHoistables(row.hoistables, boundary.contentState),
|
|
5703
|
+
500 < boundary.byteSize ||
|
|
5704
|
+
(boundary.fallbackAbortableTasks.forEach(abortTaskSoft, request),
|
|
5705
|
+
boundary.fallbackAbortableTasks.clear(),
|
|
5706
|
+
null !== row &&
|
|
5707
|
+
0 === --row.pendingTasks &&
|
|
5708
|
+
finishSuspenseListRow(request, row)),
|
|
5709
|
+
0 === request.pendingRootTasks &&
|
|
5710
|
+
null === request.trackedPostpones &&
|
|
5711
|
+
null !== boundary.contentPreamble &&
|
|
5712
|
+
preparePreamble(request);
|
|
5713
|
+
else {
|
|
5714
|
+
if (
|
|
5715
|
+
5 === boundary.status &&
|
|
5716
|
+
((boundary = boundary.row), null !== boundary)
|
|
5717
|
+
) {
|
|
5718
|
+
if (null !== request.trackedPostpones) {
|
|
5719
|
+
row = request.trackedPostpones;
|
|
5720
|
+
var postponedRow = boundary.next;
|
|
5721
|
+
if (
|
|
5722
|
+
null !== postponedRow &&
|
|
5723
|
+
((segment = postponedRow.boundaries), null !== segment)
|
|
5724
|
+
)
|
|
5725
|
+
for (
|
|
5726
|
+
postponedRow.boundaries = null, postponedRow = 0;
|
|
5727
|
+
postponedRow < segment.length;
|
|
5728
|
+
postponedRow++
|
|
5729
|
+
) {
|
|
5730
|
+
var postponedBoundary = segment[postponedRow];
|
|
5731
|
+
trackPostponedBoundary(request, row, postponedBoundary);
|
|
5732
|
+
finishedTask(request, postponedBoundary, null, null);
|
|
5733
|
+
}
|
|
5734
|
+
}
|
|
5735
|
+
0 === --boundary.pendingTasks &&
|
|
5736
|
+
finishSuspenseListRow(request, boundary);
|
|
5737
|
+
}
|
|
5738
|
+
}
|
|
5739
|
+
else
|
|
5740
|
+
null !== segment &&
|
|
5741
|
+
segment.parentFlushed &&
|
|
5742
|
+
1 === segment.status &&
|
|
5743
|
+
(queueCompletedSegment(boundary, segment),
|
|
5744
|
+
1 === boundary.completedSegments.length &&
|
|
5745
|
+
boundary.parentFlushed &&
|
|
5746
|
+
request.partialBoundaries.push(boundary)),
|
|
5747
|
+
(boundary = boundary.row),
|
|
5748
|
+
null !== boundary &&
|
|
5749
|
+
boundary.together &&
|
|
5750
|
+
tryToResolveTogetherRow(request, boundary);
|
|
5728
5751
|
0 === request.allPendingTasks && completeAll(request);
|
|
5729
5752
|
}
|
|
5730
5753
|
function performWork(request$jscomp$1) {
|
|
@@ -5876,13 +5899,13 @@ function performWork(request$jscomp$1) {
|
|
|
5876
5899
|
null !== request.trackedPostpones &&
|
|
5877
5900
|
x$jscomp$0.$$typeof === REACT_POSTPONE_TYPE
|
|
5878
5901
|
) {
|
|
5879
|
-
var trackedPostpones$
|
|
5902
|
+
var trackedPostpones$68 = request.trackedPostpones;
|
|
5880
5903
|
task.abortSet.delete(task);
|
|
5881
5904
|
var postponeInfo = getThrownInfo(task.componentStack);
|
|
5882
5905
|
logPostpone(request, x$jscomp$0.message, postponeInfo);
|
|
5883
5906
|
trackPostpone(
|
|
5884
5907
|
request,
|
|
5885
|
-
trackedPostpones$
|
|
5908
|
+
trackedPostpones$68,
|
|
5886
5909
|
task,
|
|
5887
5910
|
segment$jscomp$0
|
|
5888
5911
|
);
|
|
@@ -6186,13 +6209,13 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
|
6186
6209
|
0 === (completedSegments.instructions & 2) &&
|
|
6187
6210
|
((completedSegments.instructions |= 2),
|
|
6188
6211
|
destination.push(
|
|
6189
|
-
'$RB=[];$RV=function(){$RT=performance.now();
|
|
6212
|
+
'$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())};'
|
|
6190
6213
|
)),
|
|
6191
6214
|
requiresViewTransitions &&
|
|
6192
6215
|
0 === (completedSegments.instructions & 256) &&
|
|
6193
6216
|
((completedSegments.instructions |= 256),
|
|
6194
6217
|
destination.push(
|
|
6195
|
-
|
|
6218
|
+
'$RV=function(w,f){function h(b,d){var k=b.getAttribute(d);k&&(d=b.style,l.push(b,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(b=b.getAttribute("vt-name"))||(b="\\u00abT"+F++ +"\\u00bb"),d.viewTransitionName=b,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 a=g[c];m.set(a.getAttribute("vt-name"),a)}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){a=y;for(e=0;a;){if(8===a.nodeType){var p=a.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===a.nodeType){c=a;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))}}a=a.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;a=t;do for(var n=a.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((a=a.parentNode)&&1===a.nodeType&&"none"!==a.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:w.bind(null,\nf),types:[]});v.ready.finally(function(){for(var b=l.length-3;0<=b;b-=3){var d=l[b],k=d.style;k.viewTransitionName=l[b+1];k.viewTransitionClass=l[b+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(b){}w(f)}.bind(null,$RV);'
|
|
6196
6219
|
)),
|
|
6197
6220
|
0 === (completedSegments.instructions & 8)
|
|
6198
6221
|
? ((completedSegments.instructions |= 8),
|
|
@@ -6203,13 +6226,13 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
|
6203
6226
|
: (0 === (completedSegments.instructions & 2) &&
|
|
6204
6227
|
((completedSegments.instructions |= 2),
|
|
6205
6228
|
destination.push(
|
|
6206
|
-
'$RB=[];$RV=function(){$RT=performance.now();
|
|
6229
|
+
'$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())};'
|
|
6207
6230
|
)),
|
|
6208
6231
|
requiresViewTransitions &&
|
|
6209
6232
|
0 === (completedSegments.instructions & 256) &&
|
|
6210
6233
|
((completedSegments.instructions |= 256),
|
|
6211
6234
|
destination.push(
|
|
6212
|
-
|
|
6235
|
+
'$RV=function(w,f){function h(b,d){var k=b.getAttribute(d);k&&(d=b.style,l.push(b,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(b=b.getAttribute("vt-name"))||(b="\\u00abT"+F++ +"\\u00bb"),d.viewTransitionName=b,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 a=g[c];m.set(a.getAttribute("vt-name"),a)}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){a=y;for(e=0;a;){if(8===a.nodeType){var p=a.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===a.nodeType){c=a;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))}}a=a.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;a=t;do for(var n=a.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((a=a.parentNode)&&1===a.nodeType&&"none"!==a.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:w.bind(null,\nf),types:[]});v.ready.finally(function(){for(var b=l.length-3;0<=b;b-=3){var d=l[b],k=d.style;k.viewTransitionName=l[b+1];k.viewTransitionClass=l[b+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(b){}w(f)}.bind(null,$RV);'
|
|
6213
6236
|
)),
|
|
6214
6237
|
destination.push('$RC("')))
|
|
6215
6238
|
: requiresStyleInsertion
|
|
@@ -6465,12 +6488,12 @@ function flushCompletedQueues(request, destination) {
|
|
|
6465
6488
|
completedBoundaries.splice(0, i);
|
|
6466
6489
|
var partialBoundaries = request.partialBoundaries;
|
|
6467
6490
|
for (i = 0; i < partialBoundaries.length; i++) {
|
|
6468
|
-
var boundary$
|
|
6491
|
+
var boundary$72 = partialBoundaries[i];
|
|
6469
6492
|
a: {
|
|
6470
6493
|
clientRenderedBoundaries = request;
|
|
6471
6494
|
boundary = destination;
|
|
6472
|
-
flushedByteSize = boundary$
|
|
6473
|
-
var completedSegments = boundary$
|
|
6495
|
+
flushedByteSize = boundary$72.byteSize;
|
|
6496
|
+
var completedSegments = boundary$72.completedSegments;
|
|
6474
6497
|
for (
|
|
6475
6498
|
JSCompiler_inline_result = 0;
|
|
6476
6499
|
JSCompiler_inline_result < completedSegments.length;
|
|
@@ -6480,7 +6503,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
6480
6503
|
!flushPartiallyCompletedSegment(
|
|
6481
6504
|
clientRenderedBoundaries,
|
|
6482
6505
|
boundary,
|
|
6483
|
-
boundary$
|
|
6506
|
+
boundary$72,
|
|
6484
6507
|
completedSegments[JSCompiler_inline_result]
|
|
6485
6508
|
)
|
|
6486
6509
|
) {
|
|
@@ -6490,10 +6513,10 @@ function flushCompletedQueues(request, destination) {
|
|
|
6490
6513
|
break a;
|
|
6491
6514
|
}
|
|
6492
6515
|
completedSegments.splice(0, JSCompiler_inline_result);
|
|
6493
|
-
var row = boundary$
|
|
6516
|
+
var row = boundary$72.row;
|
|
6494
6517
|
null !== row &&
|
|
6495
6518
|
row.together &&
|
|
6496
|
-
1 === boundary$
|
|
6519
|
+
1 === boundary$72.pendingTasks &&
|
|
6497
6520
|
(1 === row.pendingTasks
|
|
6498
6521
|
? unblockSuspenseListRow(
|
|
6499
6522
|
clientRenderedBoundaries,
|
|
@@ -6503,7 +6526,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
6503
6526
|
: row.pendingTasks--);
|
|
6504
6527
|
JSCompiler_inline_result$jscomp$0 = writeHoistablesForBoundary(
|
|
6505
6528
|
boundary,
|
|
6506
|
-
boundary$
|
|
6529
|
+
boundary$72.contentState,
|
|
6507
6530
|
clientRenderedBoundaries.renderState
|
|
6508
6531
|
);
|
|
6509
6532
|
}
|
|
@@ -6574,8 +6597,8 @@ function abort(request, reason) {
|
|
|
6574
6597
|
}
|
|
6575
6598
|
null !== request.destination &&
|
|
6576
6599
|
flushCompletedQueues(request, request.destination);
|
|
6577
|
-
} catch (error$
|
|
6578
|
-
logRecoverableError(request, error$
|
|
6600
|
+
} catch (error$74) {
|
|
6601
|
+
logRecoverableError(request, error$74, {}), fatalError(request, error$74);
|
|
6579
6602
|
}
|
|
6580
6603
|
}
|
|
6581
6604
|
function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
@@ -6649,4 +6672,4 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
6649
6672
|
});
|
|
6650
6673
|
});
|
|
6651
6674
|
};
|
|
6652
|
-
exports.version = "19.2.0-experimental-
|
|
6675
|
+
exports.version = "19.2.0-experimental-99efc627-20250523";
|