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.
|
@@ -3551,8 +3551,8 @@ function getSuspenseViewTransition(parentViewTransition) {
|
|
|
3551
3551
|
? null
|
|
3552
3552
|
: {
|
|
3553
3553
|
update: parentViewTransition.update,
|
|
3554
|
-
enter:
|
|
3555
|
-
exit:
|
|
3554
|
+
enter: "none",
|
|
3555
|
+
exit: "none",
|
|
3556
3556
|
share: parentViewTransition.update,
|
|
3557
3557
|
name: parentViewTransition.autoName,
|
|
3558
3558
|
autoName: parentViewTransition.autoName,
|
|
@@ -3594,11 +3594,11 @@ function pushViewTransitionAttributes(target, formatContext) {
|
|
|
3594
3594
|
),
|
|
3595
3595
|
formatContext.nameIdx++),
|
|
3596
3596
|
pushStringAttribute(target, "vt-update", formatContext.update),
|
|
3597
|
-
|
|
3597
|
+
"none" !== formatContext.enter &&
|
|
3598
3598
|
pushStringAttribute(target, "vt-enter", formatContext.enter),
|
|
3599
|
-
|
|
3599
|
+
"none" !== formatContext.exit &&
|
|
3600
3600
|
pushStringAttribute(target, "vt-exit", formatContext.exit),
|
|
3601
|
-
|
|
3601
|
+
"none" !== formatContext.share &&
|
|
3602
3602
|
pushStringAttribute(target, "vt-share", formatContext.share));
|
|
3603
3603
|
}
|
|
3604
3604
|
var styleNameCache = new Map();
|
|
@@ -7833,6 +7833,35 @@ function renderChildrenArray(request, task, children, childIndex) {
|
|
|
7833
7833
|
task.treeContext = replay;
|
|
7834
7834
|
task.keyPath = prevKeyPath;
|
|
7835
7835
|
}
|
|
7836
|
+
function trackPostponedBoundary(request, trackedPostpones, boundary) {
|
|
7837
|
+
boundary.status = 5;
|
|
7838
|
+
boundary.rootSegmentID = request.nextSegmentId++;
|
|
7839
|
+
request = boundary.trackedContentKeyPath;
|
|
7840
|
+
if (null === request)
|
|
7841
|
+
throw Error(
|
|
7842
|
+
"It should not be possible to postpone at the root. This is a bug in React."
|
|
7843
|
+
);
|
|
7844
|
+
var fallbackReplayNode = boundary.trackedFallbackNode,
|
|
7845
|
+
children = [],
|
|
7846
|
+
boundaryNode = trackedPostpones.workingMap.get(request);
|
|
7847
|
+
if (void 0 === boundaryNode)
|
|
7848
|
+
return (
|
|
7849
|
+
(boundary = [
|
|
7850
|
+
request[1],
|
|
7851
|
+
request[2],
|
|
7852
|
+
children,
|
|
7853
|
+
null,
|
|
7854
|
+
fallbackReplayNode,
|
|
7855
|
+
boundary.rootSegmentID
|
|
7856
|
+
]),
|
|
7857
|
+
trackedPostpones.workingMap.set(request, boundary),
|
|
7858
|
+
addToReplayParent(boundary, request[0], trackedPostpones),
|
|
7859
|
+
boundary
|
|
7860
|
+
);
|
|
7861
|
+
boundaryNode[4] = fallbackReplayNode;
|
|
7862
|
+
boundaryNode[5] = boundary.rootSegmentID;
|
|
7863
|
+
return boundaryNode;
|
|
7864
|
+
}
|
|
7836
7865
|
function trackPostpone(request, trackedPostpones, task, segment) {
|
|
7837
7866
|
segment.status = 5;
|
|
7838
7867
|
var keyPath = task.keyPath,
|
|
@@ -7844,51 +7873,22 @@ function trackPostpone(request, trackedPostpones, task, segment) {
|
|
|
7844
7873
|
(request.completedRootSegment.status = 5);
|
|
7845
7874
|
else {
|
|
7846
7875
|
if (null !== boundary && 0 === boundary.status) {
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
|
|
7850
|
-
|
|
7851
|
-
|
|
7852
|
-
|
|
7853
|
-
|
|
7854
|
-
|
|
7855
|
-
|
|
7856
|
-
if (boundaryKeyPath === keyPath && -1 === task.childIndex) {
|
|
7876
|
+
var boundaryNode = trackPostponedBoundary(
|
|
7877
|
+
request,
|
|
7878
|
+
trackedPostpones,
|
|
7879
|
+
boundary
|
|
7880
|
+
);
|
|
7881
|
+
if (
|
|
7882
|
+
boundary.trackedContentKeyPath === keyPath &&
|
|
7883
|
+
-1 === task.childIndex
|
|
7884
|
+
) {
|
|
7857
7885
|
-1 === segment.id &&
|
|
7858
7886
|
(segment.id = segment.parentFlushed
|
|
7859
7887
|
? boundary.rootSegmentID
|
|
7860
7888
|
: request.nextSegmentId++);
|
|
7861
|
-
|
|
7862
|
-
boundaryKeyPath[1],
|
|
7863
|
-
boundaryKeyPath[2],
|
|
7864
|
-
children,
|
|
7865
|
-
segment.id,
|
|
7866
|
-
fallbackReplayNode,
|
|
7867
|
-
boundary.rootSegmentID
|
|
7868
|
-
];
|
|
7869
|
-
trackedPostpones.workingMap.set(boundaryKeyPath, segment);
|
|
7870
|
-
addToReplayParent(segment, boundaryKeyPath[0], trackedPostpones);
|
|
7889
|
+
boundaryNode[3] = segment.id;
|
|
7871
7890
|
return;
|
|
7872
7891
|
}
|
|
7873
|
-
var boundaryNode$112 = trackedPostpones.workingMap.get(boundaryKeyPath);
|
|
7874
|
-
void 0 === boundaryNode$112
|
|
7875
|
-
? ((boundaryNode$112 = [
|
|
7876
|
-
boundaryKeyPath[1],
|
|
7877
|
-
boundaryKeyPath[2],
|
|
7878
|
-
children,
|
|
7879
|
-
null,
|
|
7880
|
-
fallbackReplayNode,
|
|
7881
|
-
boundary.rootSegmentID
|
|
7882
|
-
]),
|
|
7883
|
-
trackedPostpones.workingMap.set(boundaryKeyPath, boundaryNode$112),
|
|
7884
|
-
addToReplayParent(
|
|
7885
|
-
boundaryNode$112,
|
|
7886
|
-
boundaryKeyPath[0],
|
|
7887
|
-
trackedPostpones
|
|
7888
|
-
))
|
|
7889
|
-
: ((boundaryKeyPath = boundaryNode$112),
|
|
7890
|
-
(boundaryKeyPath[4] = fallbackReplayNode),
|
|
7891
|
-
(boundaryKeyPath[5] = boundary.rootSegmentID));
|
|
7892
7892
|
}
|
|
7893
7893
|
-1 === segment.id &&
|
|
7894
7894
|
(segment.id =
|
|
@@ -7915,15 +7915,15 @@ function trackPostpone(request, trackedPostpones, task, segment) {
|
|
|
7915
7915
|
}
|
|
7916
7916
|
else if (
|
|
7917
7917
|
((boundary = trackedPostpones.workingMap),
|
|
7918
|
-
(
|
|
7919
|
-
void 0 ===
|
|
7918
|
+
(boundaryNode = boundary.get(keyPath)),
|
|
7919
|
+
void 0 === boundaryNode)
|
|
7920
7920
|
)
|
|
7921
7921
|
(request = {}),
|
|
7922
|
-
(
|
|
7923
|
-
boundary.set(keyPath,
|
|
7924
|
-
addToReplayParent(
|
|
7925
|
-
else if (((request =
|
|
7926
|
-
request =
|
|
7922
|
+
(boundaryNode = [keyPath[1], keyPath[2], [], request]),
|
|
7923
|
+
boundary.set(keyPath, boundaryNode),
|
|
7924
|
+
addToReplayParent(boundaryNode, keyPath[0], trackedPostpones);
|
|
7925
|
+
else if (((request = boundaryNode[3]), null === request))
|
|
7926
|
+
request = boundaryNode[3] = {};
|
|
7927
7927
|
else if ("number" === typeof request)
|
|
7928
7928
|
throw Error(
|
|
7929
7929
|
"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."
|
|
@@ -8415,45 +8415,68 @@ function finishedTask(request, boundary, row, segment) {
|
|
|
8415
8415
|
}
|
|
8416
8416
|
request.pendingRootTasks--;
|
|
8417
8417
|
0 === request.pendingRootTasks && completeShell(request);
|
|
8418
|
-
} else
|
|
8419
|
-
boundary.pendingTasks
|
|
8420
|
-
|
|
8421
|
-
(0 === boundary.
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
|
|
8425
|
-
|
|
8426
|
-
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8454
|
-
|
|
8455
|
-
|
|
8456
|
-
|
|
8418
|
+
} else if ((boundary.pendingTasks--, 4 !== boundary.status))
|
|
8419
|
+
if (0 === boundary.pendingTasks)
|
|
8420
|
+
if (
|
|
8421
|
+
(0 === boundary.status && (boundary.status = 1),
|
|
8422
|
+
null !== segment &&
|
|
8423
|
+
segment.parentFlushed &&
|
|
8424
|
+
1 === segment.status &&
|
|
8425
|
+
queueCompletedSegment(boundary, segment),
|
|
8426
|
+
boundary.parentFlushed && request.completedBoundaries.push(boundary),
|
|
8427
|
+
1 === boundary.status)
|
|
8428
|
+
)
|
|
8429
|
+
(row = boundary.row),
|
|
8430
|
+
null !== row &&
|
|
8431
|
+
hoistHoistables(row.hoistables, boundary.contentState),
|
|
8432
|
+
500 < boundary.byteSize ||
|
|
8433
|
+
(boundary.fallbackAbortableTasks.forEach(abortTaskSoft, request),
|
|
8434
|
+
boundary.fallbackAbortableTasks.clear(),
|
|
8435
|
+
null !== row &&
|
|
8436
|
+
0 === --row.pendingTasks &&
|
|
8437
|
+
finishSuspenseListRow(request, row)),
|
|
8438
|
+
0 === request.pendingRootTasks &&
|
|
8439
|
+
null === request.trackedPostpones &&
|
|
8440
|
+
null !== boundary.contentPreamble &&
|
|
8441
|
+
preparePreamble(request);
|
|
8442
|
+
else {
|
|
8443
|
+
if (
|
|
8444
|
+
5 === boundary.status &&
|
|
8445
|
+
((boundary = boundary.row), null !== boundary)
|
|
8446
|
+
) {
|
|
8447
|
+
if (null !== request.trackedPostpones) {
|
|
8448
|
+
row = request.trackedPostpones;
|
|
8449
|
+
var postponedRow = boundary.next;
|
|
8450
|
+
if (
|
|
8451
|
+
null !== postponedRow &&
|
|
8452
|
+
((segment = postponedRow.boundaries), null !== segment)
|
|
8453
|
+
)
|
|
8454
|
+
for (
|
|
8455
|
+
postponedRow.boundaries = null, postponedRow = 0;
|
|
8456
|
+
postponedRow < segment.length;
|
|
8457
|
+
postponedRow++
|
|
8458
|
+
) {
|
|
8459
|
+
var postponedBoundary = segment[postponedRow];
|
|
8460
|
+
trackPostponedBoundary(request, row, postponedBoundary);
|
|
8461
|
+
finishedTask(request, postponedBoundary, null, null);
|
|
8462
|
+
}
|
|
8463
|
+
}
|
|
8464
|
+
0 === --boundary.pendingTasks &&
|
|
8465
|
+
finishSuspenseListRow(request, boundary);
|
|
8466
|
+
}
|
|
8467
|
+
}
|
|
8468
|
+
else
|
|
8469
|
+
null !== segment &&
|
|
8470
|
+
segment.parentFlushed &&
|
|
8471
|
+
1 === segment.status &&
|
|
8472
|
+
(queueCompletedSegment(boundary, segment),
|
|
8473
|
+
1 === boundary.completedSegments.length &&
|
|
8474
|
+
boundary.parentFlushed &&
|
|
8475
|
+
request.partialBoundaries.push(boundary)),
|
|
8476
|
+
(boundary = boundary.row),
|
|
8477
|
+
null !== boundary &&
|
|
8478
|
+
boundary.together &&
|
|
8479
|
+
tryToResolveTogetherRow(request, boundary);
|
|
8457
8480
|
0 === request.allPendingTasks && completeAll(request);
|
|
8458
8481
|
}
|
|
8459
8482
|
function performWork(request$jscomp$1) {
|
|
@@ -8605,13 +8628,13 @@ function performWork(request$jscomp$1) {
|
|
|
8605
8628
|
null !== request.trackedPostpones &&
|
|
8606
8629
|
x$jscomp$0.$$typeof === REACT_POSTPONE_TYPE
|
|
8607
8630
|
) {
|
|
8608
|
-
var trackedPostpones$
|
|
8631
|
+
var trackedPostpones$133 = request.trackedPostpones;
|
|
8609
8632
|
task.abortSet.delete(task);
|
|
8610
8633
|
var postponeInfo = getThrownInfo(task.componentStack);
|
|
8611
8634
|
logPostpone(request, x$jscomp$0.message, postponeInfo);
|
|
8612
8635
|
trackPostpone(
|
|
8613
8636
|
request,
|
|
8614
|
-
trackedPostpones$
|
|
8637
|
+
trackedPostpones$133,
|
|
8615
8638
|
task,
|
|
8616
8639
|
segment$jscomp$0
|
|
8617
8640
|
);
|
|
@@ -8915,13 +8938,13 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
|
8915
8938
|
0 === (completedSegments.instructions & 2) &&
|
|
8916
8939
|
((completedSegments.instructions |= 2),
|
|
8917
8940
|
destination.push(
|
|
8918
|
-
'$RB=[];$RV=function(){$RT=performance.now();
|
|
8941
|
+
'$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())};'
|
|
8919
8942
|
)),
|
|
8920
8943
|
requiresViewTransitions &&
|
|
8921
8944
|
0 === (completedSegments.instructions & 256) &&
|
|
8922
8945
|
((completedSegments.instructions |= 256),
|
|
8923
8946
|
destination.push(
|
|
8924
|
-
|
|
8947
|
+
'$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);'
|
|
8925
8948
|
)),
|
|
8926
8949
|
0 === (completedSegments.instructions & 8)
|
|
8927
8950
|
? ((completedSegments.instructions |= 8),
|
|
@@ -8932,13 +8955,13 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
|
8932
8955
|
: (0 === (completedSegments.instructions & 2) &&
|
|
8933
8956
|
((completedSegments.instructions |= 2),
|
|
8934
8957
|
destination.push(
|
|
8935
|
-
'$RB=[];$RV=function(){$RT=performance.now();
|
|
8958
|
+
'$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())};'
|
|
8936
8959
|
)),
|
|
8937
8960
|
requiresViewTransitions &&
|
|
8938
8961
|
0 === (completedSegments.instructions & 256) &&
|
|
8939
8962
|
((completedSegments.instructions |= 256),
|
|
8940
8963
|
destination.push(
|
|
8941
|
-
|
|
8964
|
+
'$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);'
|
|
8942
8965
|
)),
|
|
8943
8966
|
destination.push('$RC("')))
|
|
8944
8967
|
: requiresStyleInsertion
|
|
@@ -9194,12 +9217,12 @@ function flushCompletedQueues(request, destination) {
|
|
|
9194
9217
|
completedBoundaries.splice(0, i);
|
|
9195
9218
|
var partialBoundaries = request.partialBoundaries;
|
|
9196
9219
|
for (i = 0; i < partialBoundaries.length; i++) {
|
|
9197
|
-
var boundary$
|
|
9220
|
+
var boundary$137 = partialBoundaries[i];
|
|
9198
9221
|
a: {
|
|
9199
9222
|
clientRenderedBoundaries = request;
|
|
9200
9223
|
boundary = destination;
|
|
9201
|
-
flushedByteSize = boundary$
|
|
9202
|
-
var completedSegments = boundary$
|
|
9224
|
+
flushedByteSize = boundary$137.byteSize;
|
|
9225
|
+
var completedSegments = boundary$137.completedSegments;
|
|
9203
9226
|
for (
|
|
9204
9227
|
JSCompiler_inline_result = 0;
|
|
9205
9228
|
JSCompiler_inline_result < completedSegments.length;
|
|
@@ -9209,7 +9232,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
9209
9232
|
!flushPartiallyCompletedSegment(
|
|
9210
9233
|
clientRenderedBoundaries,
|
|
9211
9234
|
boundary,
|
|
9212
|
-
boundary$
|
|
9235
|
+
boundary$137,
|
|
9213
9236
|
completedSegments[JSCompiler_inline_result]
|
|
9214
9237
|
)
|
|
9215
9238
|
) {
|
|
@@ -9219,10 +9242,10 @@ function flushCompletedQueues(request, destination) {
|
|
|
9219
9242
|
break a;
|
|
9220
9243
|
}
|
|
9221
9244
|
completedSegments.splice(0, JSCompiler_inline_result);
|
|
9222
|
-
var row = boundary$
|
|
9245
|
+
var row = boundary$137.row;
|
|
9223
9246
|
null !== row &&
|
|
9224
9247
|
row.together &&
|
|
9225
|
-
1 === boundary$
|
|
9248
|
+
1 === boundary$137.pendingTasks &&
|
|
9226
9249
|
(1 === row.pendingTasks
|
|
9227
9250
|
? unblockSuspenseListRow(
|
|
9228
9251
|
clientRenderedBoundaries,
|
|
@@ -9232,7 +9255,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
9232
9255
|
: row.pendingTasks--);
|
|
9233
9256
|
JSCompiler_inline_result$jscomp$0 = writeHoistablesForBoundary(
|
|
9234
9257
|
boundary,
|
|
9235
|
-
boundary$
|
|
9258
|
+
boundary$137.contentState,
|
|
9236
9259
|
clientRenderedBoundaries.renderState
|
|
9237
9260
|
);
|
|
9238
9261
|
}
|
|
@@ -9303,8 +9326,8 @@ function abort(request, reason) {
|
|
|
9303
9326
|
}
|
|
9304
9327
|
null !== request.destination &&
|
|
9305
9328
|
flushCompletedQueues(request, request.destination);
|
|
9306
|
-
} catch (error$
|
|
9307
|
-
logRecoverableError(request, error$
|
|
9329
|
+
} catch (error$139) {
|
|
9330
|
+
logRecoverableError(request, error$139, {}), fatalError(request, error$139);
|
|
9308
9331
|
}
|
|
9309
9332
|
}
|
|
9310
9333
|
function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
@@ -9615,4 +9638,4 @@ exports.experimental_renderToHTML = function (children, options) {
|
|
|
9615
9638
|
});
|
|
9616
9639
|
});
|
|
9617
9640
|
};
|
|
9618
|
-
exports.version = "19.2.0-experimental-
|
|
9641
|
+
exports.version = "19.2.0-experimental-99efc627-20250523";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-markup",
|
|
3
|
-
"version": "0.0.0-experimental-
|
|
3
|
+
"version": "0.0.0-experimental-99efc627-20250523",
|
|
4
4
|
"description": "React package generating embedded markup such as e-mails with support for Server Components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://react.dev/",
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"react": "0.0.0-experimental-
|
|
20
|
+
"react": "0.0.0-experimental-99efc627-20250523"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"LICENSE",
|