react-dom 19.2.0-canary-b4477d38-20250605 → 19.2.0-canary-ab859e31-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.
@@ -7965,7 +7965,8 @@
7965
7965
  var completedPreambleSegments = request.completedPreambleSegments;
7966
7966
  if (null === completedPreambleSegments) return;
7967
7967
  flushedByteSize = request.byteSize;
7968
- var renderState = request.renderState,
7968
+ var resumableState = request.resumableState,
7969
+ renderState = request.renderState,
7969
7970
  preamble = renderState.preamble,
7970
7971
  htmlChunks = preamble.htmlChunks,
7971
7972
  headChunks = preamble.headChunks,
@@ -8024,6 +8025,9 @@
8024
8025
  renderState.scripts.clear();
8025
8026
  renderState.bulkPreloads.forEach(flushResource, destination);
8026
8027
  renderState.bulkPreloads.clear();
8028
+ htmlChunks ||
8029
+ headChunks ||
8030
+ (resumableState.instructions |= SentCompletedShellId);
8027
8031
  var hoistableChunks = renderState.hoistableChunks;
8028
8032
  for (
8029
8033
  i$jscomp$0 = 0;
@@ -8032,13 +8036,17 @@
8032
8036
  )
8033
8037
  writeChunk(destination, hoistableChunks[i$jscomp$0]);
8034
8038
  for (
8035
- renderState = hoistableChunks.length = 0;
8036
- renderState < completedPreambleSegments.length;
8037
- renderState++
8039
+ resumableState = hoistableChunks.length = 0;
8040
+ resumableState < completedPreambleSegments.length;
8041
+ resumableState++
8038
8042
  ) {
8039
- var segments = completedPreambleSegments[renderState];
8040
- for (preamble = 0; preamble < segments.length; preamble++)
8041
- flushSegment(request, destination, segments[preamble], null);
8043
+ var segments = completedPreambleSegments[resumableState];
8044
+ for (
8045
+ renderState = 0;
8046
+ renderState < segments.length;
8047
+ renderState++
8048
+ )
8049
+ flushSegment(request, destination, segments[renderState], null);
8042
8050
  }
8043
8051
  var preamble$jscomp$0 = request.renderState.preamble,
8044
8052
  headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
@@ -8063,19 +8071,20 @@
8063
8071
  (0 !== request.trackedPostpones.rootNodes.length ||
8064
8072
  null !== request.trackedPostpones.rootSlots))
8065
8073
  ) {
8066
- var resumableState = request.resumableState;
8074
+ var resumableState$jscomp$0 = request.resumableState;
8067
8075
  if (
8068
- (resumableState.instructions & SentMarkShellTime) ===
8076
+ (resumableState$jscomp$0.instructions & SentMarkShellTime) ===
8069
8077
  NothingSent
8070
8078
  ) {
8071
- resumableState.instructions |= SentMarkShellTime;
8079
+ resumableState$jscomp$0.instructions |= SentMarkShellTime;
8072
8080
  writeChunk(destination, renderState$jscomp$0.startInlineScript);
8073
8081
  if (
8074
- (resumableState.instructions & SentCompletedShellId) ===
8082
+ (resumableState$jscomp$0.instructions &
8083
+ SentCompletedShellId) ===
8075
8084
  NothingSent
8076
8085
  ) {
8077
- resumableState.instructions |= SentCompletedShellId;
8078
- var shellId = "_" + resumableState.idPrefix + "R_";
8086
+ resumableState$jscomp$0.instructions |= SentCompletedShellId;
8087
+ var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_";
8079
8088
  writeChunk(destination, completedShellIdAttributeStart);
8080
8089
  writeChunk(
8081
8090
  destination,
@@ -8132,7 +8141,7 @@
8132
8141
  for (i = 0; i < clientRenderedBoundaries.length; i++) {
8133
8142
  var boundary = clientRenderedBoundaries[i];
8134
8143
  renderState$jscomp$1 = destination;
8135
- var resumableState$jscomp$0 = request.resumableState,
8144
+ var resumableState$jscomp$1 = request.resumableState,
8136
8145
  renderState$jscomp$2 = request.renderState,
8137
8146
  id = boundary.rootSegmentID,
8138
8147
  errorDigest = boundary.errorDigest,
@@ -8144,10 +8153,10 @@
8144
8153
  renderState$jscomp$2.startInlineScript
8145
8154
  );
8146
8155
  writeChunk(renderState$jscomp$1, endOfStartTag);
8147
- (resumableState$jscomp$0.instructions &
8156
+ (resumableState$jscomp$1.instructions &
8148
8157
  SentClientRenderFunction) ===
8149
8158
  NothingSent
8150
- ? ((resumableState$jscomp$0.instructions |=
8159
+ ? ((resumableState$jscomp$1.instructions |=
8151
8160
  SentClientRenderFunction),
8152
8161
  writeChunk(renderState$jscomp$1, clientRenderScript1Full))
8153
8162
  : writeChunk(renderState$jscomp$1, clientRenderScript1Partial);
@@ -8421,11 +8430,11 @@
8421
8430
  }
8422
8431
  function ensureCorrectIsomorphicReactVersion() {
8423
8432
  var isomorphicReactPackageVersion = React.version;
8424
- if ("19.2.0-canary-b4477d38-20250605" !== isomorphicReactPackageVersion)
8433
+ if ("19.2.0-canary-ab859e31-20250606" !== isomorphicReactPackageVersion)
8425
8434
  throw Error(
8426
8435
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8427
8436
  (isomorphicReactPackageVersion +
8428
- "\n - react-dom: 19.2.0-canary-b4477d38-20250605\nLearn more: https://react.dev/warnings/version-mismatch")
8437
+ "\n - react-dom: 19.2.0-canary-ab859e31-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
8429
8438
  );
8430
8439
  }
8431
8440
  var React = require("react"),
@@ -9656,8 +9665,8 @@
9656
9665
  var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
9657
9666
  '$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())};'
9658
9667
  );
9659
- stringToPrecomputedChunk(
9660
- '$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);'
9668
+ stringToChunk(
9669
+ '$RV=function(z,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,A=!0)}var A=!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 t=[];for(h=0;h<g.length;h+=2){var B=g[h],w=B.parentNode;if(w){var u=w.getBoundingClientRect();if(u.left||u.top||u.width||u.height){c=B;for(f=0;c;){if(8===c.nodeType){var q=c.data;if("/$"===q)if(0===f)break;else f--;else"$"!==q&&"$?"!==q&&"$~"!==q&&"$!"!==q||f++}else if(1===c.nodeType){d=c;var C=d.getAttribute("vt-name"),x=m.get(C);k(d,x?"vt-share":"vt-exit");x&&(k(x,"vt-share"),m.set(C,null));var D=d.querySelectorAll("[vt-share]");for(d=0;d<D.length;d++){var E=D[d],F=E.getAttribute("vt-name"),\nG=m.get(F);G&&(k(E,"vt-share"),k(G,"vt-share"),m.set(F,null))}}c=c.nextSibling}for(var H=g[h+1],r=H.firstElementChild;r;)null!==m.get(r.getAttribute("vt-name"))&&k(r,"vt-enter"),r=r.nextElementSibling;c=w;do for(var n=c.firstElementChild;n;){var I=n.getAttribute("vt-update");I&&"none"!==I&&!l.includes(n)&&k(n,"vt-update");n=n.nextElementSibling}while((c=c.parentNode)&&1===c.nodeType&&"none"!==c.getAttribute("vt-update"));t.push.apply(t,H.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(A){var y=\ndocument.__reactViewTransition=document.startViewTransition({update:function(){z(g);for(var a=[document.documentElement.clientHeight,document.fonts.ready],b={},e=0;e<t.length;b={g:b.g},e++)if(b.g=t[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(v){return function(J){v.g.addEventListener("load",J);v.g.addEventListener("error",J)}}(b)),a.push(p))}return Promise.race([Promise.all(a),new Promise(function(v){return setTimeout(v,\n500)})])},types:[]});y.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")}});y.finished.finally(function(){document.__reactViewTransition===y&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}z(g)}.bind(null,$RV);'
9661
9670
  );
9662
9671
  var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
9663
9672
  completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
@@ -10108,5 +10117,5 @@
10108
10117
  startWork(request);
10109
10118
  });
10110
10119
  };
10111
- exports.version = "19.2.0-canary-b4477d38-20250605";
10120
+ exports.version = "19.2.0-canary-ab859e31-20250606";
10112
10121
  })();
@@ -2551,8 +2551,8 @@ stringToPrecomputedChunk('" data-pid="');
2551
2551
  var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
2552
2552
  '$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())};'
2553
2553
  );
2554
- stringToPrecomputedChunk(
2555
- '$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);'
2554
+ stringToChunk(
2555
+ '$RV=function(z,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,A=!0)}var A=!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 t=[];for(h=0;h<g.length;h+=2){var B=g[h],w=B.parentNode;if(w){var u=w.getBoundingClientRect();if(u.left||u.top||u.width||u.height){c=B;for(f=0;c;){if(8===c.nodeType){var q=c.data;if("/$"===q)if(0===f)break;else f--;else"$"!==q&&"$?"!==q&&"$~"!==q&&"$!"!==q||f++}else if(1===c.nodeType){d=c;var C=d.getAttribute("vt-name"),x=m.get(C);k(d,x?"vt-share":"vt-exit");x&&(k(x,"vt-share"),m.set(C,null));var D=d.querySelectorAll("[vt-share]");for(d=0;d<D.length;d++){var E=D[d],F=E.getAttribute("vt-name"),\nG=m.get(F);G&&(k(E,"vt-share"),k(G,"vt-share"),m.set(F,null))}}c=c.nextSibling}for(var H=g[h+1],r=H.firstElementChild;r;)null!==m.get(r.getAttribute("vt-name"))&&k(r,"vt-enter"),r=r.nextElementSibling;c=w;do for(var n=c.firstElementChild;n;){var I=n.getAttribute("vt-update");I&&"none"!==I&&!l.includes(n)&&k(n,"vt-update");n=n.nextElementSibling}while((c=c.parentNode)&&1===c.nodeType&&"none"!==c.getAttribute("vt-update"));t.push.apply(t,H.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(A){var y=\ndocument.__reactViewTransition=document.startViewTransition({update:function(){z(g);for(var a=[document.documentElement.clientHeight,document.fonts.ready],b={},e=0;e<t.length;b={g:b.g},e++)if(b.g=t[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(v){return function(J){v.g.addEventListener("load",J);v.g.addEventListener("error",J)}}(b)),a.push(p))}return Promise.race([Promise.all(a),new Promise(function(v){return setTimeout(v,\n500)})])},types:[]});y.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")}});y.finished.finally(function(){document.__reactViewTransition===y&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}z(g)}.bind(null,$RV);'
2556
2556
  );
2557
2557
  var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
2558
2558
  completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
@@ -6550,7 +6550,8 @@ function flushCompletedQueues(request, destination) {
6550
6550
  var completedPreambleSegments = request.completedPreambleSegments;
6551
6551
  if (null === completedPreambleSegments) return;
6552
6552
  flushedByteSize = request.byteSize;
6553
- var renderState = request.renderState,
6553
+ var resumableState = request.resumableState,
6554
+ renderState = request.renderState,
6554
6555
  preamble = renderState.preamble,
6555
6556
  htmlChunks = preamble.htmlChunks,
6556
6557
  headChunks = preamble.headChunks,
@@ -6593,17 +6594,18 @@ function flushCompletedQueues(request, destination) {
6593
6594
  renderState.scripts.clear();
6594
6595
  renderState.bulkPreloads.forEach(flushResource, destination);
6595
6596
  renderState.bulkPreloads.clear();
6597
+ htmlChunks || headChunks || (resumableState.instructions |= 32);
6596
6598
  var hoistableChunks = renderState.hoistableChunks;
6597
6599
  for (i$jscomp$0 = 0; i$jscomp$0 < hoistableChunks.length; i$jscomp$0++)
6598
6600
  writeChunk(destination, hoistableChunks[i$jscomp$0]);
6599
6601
  for (
6600
- renderState = hoistableChunks.length = 0;
6601
- renderState < completedPreambleSegments.length;
6602
- renderState++
6602
+ resumableState = hoistableChunks.length = 0;
6603
+ resumableState < completedPreambleSegments.length;
6604
+ resumableState++
6603
6605
  ) {
6604
- var segments = completedPreambleSegments[renderState];
6605
- for (preamble = 0; preamble < segments.length; preamble++)
6606
- flushSegment(request, destination, segments[preamble], null);
6606
+ var segments = completedPreambleSegments[resumableState];
6607
+ for (renderState = 0; renderState < segments.length; renderState++)
6608
+ flushSegment(request, destination, segments[renderState], null);
6607
6609
  }
6608
6610
  var preamble$jscomp$0 = request.renderState.preamble,
6609
6611
  headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
@@ -6628,13 +6630,13 @@ function flushCompletedQueues(request, destination) {
6628
6630
  (0 !== request.trackedPostpones.rootNodes.length ||
6629
6631
  null !== request.trackedPostpones.rootSlots))
6630
6632
  ) {
6631
- var resumableState = request.resumableState;
6632
- if (0 === (resumableState.instructions & 64)) {
6633
- resumableState.instructions |= 64;
6633
+ var resumableState$jscomp$0 = request.resumableState;
6634
+ if (0 === (resumableState$jscomp$0.instructions & 64)) {
6635
+ resumableState$jscomp$0.instructions |= 64;
6634
6636
  writeChunk(destination, renderState$jscomp$0.startInlineScript);
6635
- if (0 === (resumableState.instructions & 32)) {
6636
- resumableState.instructions |= 32;
6637
- var shellId = "_" + resumableState.idPrefix + "R_";
6637
+ if (0 === (resumableState$jscomp$0.instructions & 32)) {
6638
+ resumableState$jscomp$0.instructions |= 32;
6639
+ var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_";
6638
6640
  writeChunk(destination, completedShellIdAttributeStart);
6639
6641
  writeChunk(
6640
6642
  destination,
@@ -6685,7 +6687,7 @@ function flushCompletedQueues(request, destination) {
6685
6687
  for (i = 0; i < clientRenderedBoundaries.length; i++) {
6686
6688
  var boundary = clientRenderedBoundaries[i];
6687
6689
  renderState$jscomp$1 = destination;
6688
- var resumableState$jscomp$0 = request.resumableState,
6690
+ var resumableState$jscomp$1 = request.resumableState,
6689
6691
  renderState$jscomp$2 = request.renderState,
6690
6692
  id = boundary.rootSegmentID,
6691
6693
  errorDigest = boundary.errorDigest;
@@ -6694,8 +6696,8 @@ function flushCompletedQueues(request, destination) {
6694
6696
  renderState$jscomp$2.startInlineScript
6695
6697
  );
6696
6698
  writeChunk(renderState$jscomp$1, endOfStartTag);
6697
- 0 === (resumableState$jscomp$0.instructions & 4)
6698
- ? ((resumableState$jscomp$0.instructions |= 4),
6699
+ 0 === (resumableState$jscomp$1.instructions & 4)
6700
+ ? ((resumableState$jscomp$1.instructions |= 4),
6699
6701
  writeChunk(renderState$jscomp$1, clientRenderScript1Full))
6700
6702
  : writeChunk(renderState$jscomp$1, clientRenderScript1Partial);
6701
6703
  writeChunk(renderState$jscomp$1, renderState$jscomp$2.boundaryPrefix);
@@ -6902,11 +6904,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6902
6904
  }
6903
6905
  function ensureCorrectIsomorphicReactVersion() {
6904
6906
  var isomorphicReactPackageVersion = React.version;
6905
- if ("19.2.0-canary-b4477d38-20250605" !== isomorphicReactPackageVersion)
6907
+ if ("19.2.0-canary-ab859e31-20250606" !== isomorphicReactPackageVersion)
6906
6908
  throw Error(
6907
6909
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6908
6910
  (isomorphicReactPackageVersion +
6909
- "\n - react-dom: 19.2.0-canary-b4477d38-20250605\nLearn more: https://react.dev/warnings/version-mismatch")
6911
+ "\n - react-dom: 19.2.0-canary-ab859e31-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
6910
6912
  );
6911
6913
  }
6912
6914
  ensureCorrectIsomorphicReactVersion();
@@ -7052,4 +7054,4 @@ exports.renderToReadableStream = function (children, options) {
7052
7054
  startWork(request);
7053
7055
  });
7054
7056
  };
7055
- exports.version = "19.2.0-canary-b4477d38-20250605";
7057
+ exports.version = "19.2.0-canary-ab859e31-20250606";
@@ -7873,7 +7873,8 @@
7873
7873
  var completedPreambleSegments = request.completedPreambleSegments;
7874
7874
  if (null === completedPreambleSegments) return;
7875
7875
  flushedByteSize = request.byteSize;
7876
- var renderState = request.renderState,
7876
+ var resumableState = request.resumableState,
7877
+ renderState = request.renderState,
7877
7878
  preamble = renderState.preamble,
7878
7879
  htmlChunks = preamble.htmlChunks,
7879
7880
  headChunks = preamble.headChunks,
@@ -7932,6 +7933,9 @@
7932
7933
  renderState.scripts.clear();
7933
7934
  renderState.bulkPreloads.forEach(flushResource, destination);
7934
7935
  renderState.bulkPreloads.clear();
7936
+ htmlChunks ||
7937
+ headChunks ||
7938
+ (resumableState.instructions |= SentCompletedShellId);
7935
7939
  var hoistableChunks = renderState.hoistableChunks;
7936
7940
  for (
7937
7941
  i$jscomp$0 = 0;
@@ -7940,13 +7944,17 @@
7940
7944
  )
7941
7945
  writeChunk(destination, hoistableChunks[i$jscomp$0]);
7942
7946
  for (
7943
- renderState = hoistableChunks.length = 0;
7944
- renderState < completedPreambleSegments.length;
7945
- renderState++
7947
+ resumableState = hoistableChunks.length = 0;
7948
+ resumableState < completedPreambleSegments.length;
7949
+ resumableState++
7946
7950
  ) {
7947
- var segments = completedPreambleSegments[renderState];
7948
- for (preamble = 0; preamble < segments.length; preamble++)
7949
- flushSegment(request, destination, segments[preamble], null);
7951
+ var segments = completedPreambleSegments[resumableState];
7952
+ for (
7953
+ renderState = 0;
7954
+ renderState < segments.length;
7955
+ renderState++
7956
+ )
7957
+ flushSegment(request, destination, segments[renderState], null);
7950
7958
  }
7951
7959
  var preamble$jscomp$0 = request.renderState.preamble,
7952
7960
  headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
@@ -7971,19 +7979,20 @@
7971
7979
  (0 !== request.trackedPostpones.rootNodes.length ||
7972
7980
  null !== request.trackedPostpones.rootSlots))
7973
7981
  ) {
7974
- var resumableState = request.resumableState;
7982
+ var resumableState$jscomp$0 = request.resumableState;
7975
7983
  if (
7976
- (resumableState.instructions & SentMarkShellTime) ===
7984
+ (resumableState$jscomp$0.instructions & SentMarkShellTime) ===
7977
7985
  NothingSent
7978
7986
  ) {
7979
- resumableState.instructions |= SentMarkShellTime;
7987
+ resumableState$jscomp$0.instructions |= SentMarkShellTime;
7980
7988
  writeChunk(destination, renderState$jscomp$0.startInlineScript);
7981
7989
  if (
7982
- (resumableState.instructions & SentCompletedShellId) ===
7990
+ (resumableState$jscomp$0.instructions &
7991
+ SentCompletedShellId) ===
7983
7992
  NothingSent
7984
7993
  ) {
7985
- resumableState.instructions |= SentCompletedShellId;
7986
- var shellId = "_" + resumableState.idPrefix + "R_";
7994
+ resumableState$jscomp$0.instructions |= SentCompletedShellId;
7995
+ var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_";
7987
7996
  writeChunk(destination, completedShellIdAttributeStart);
7988
7997
  writeChunk(
7989
7998
  destination,
@@ -8040,7 +8049,7 @@
8040
8049
  for (i = 0; i < clientRenderedBoundaries.length; i++) {
8041
8050
  var boundary = clientRenderedBoundaries[i];
8042
8051
  renderState$jscomp$1 = destination;
8043
- var resumableState$jscomp$0 = request.resumableState,
8052
+ var resumableState$jscomp$1 = request.resumableState,
8044
8053
  renderState$jscomp$2 = request.renderState,
8045
8054
  id = boundary.rootSegmentID,
8046
8055
  errorDigest = boundary.errorDigest,
@@ -8052,10 +8061,10 @@
8052
8061
  renderState$jscomp$2.startInlineScript
8053
8062
  );
8054
8063
  writeChunk(renderState$jscomp$1, endOfStartTag);
8055
- (resumableState$jscomp$0.instructions &
8064
+ (resumableState$jscomp$1.instructions &
8056
8065
  SentClientRenderFunction) ===
8057
8066
  NothingSent
8058
- ? ((resumableState$jscomp$0.instructions |=
8067
+ ? ((resumableState$jscomp$1.instructions |=
8059
8068
  SentClientRenderFunction),
8060
8069
  writeChunk(renderState$jscomp$1, clientRenderScript1Full))
8061
8070
  : writeChunk(renderState$jscomp$1, clientRenderScript1Partial);
@@ -8323,11 +8332,11 @@
8323
8332
  }
8324
8333
  function ensureCorrectIsomorphicReactVersion() {
8325
8334
  var isomorphicReactPackageVersion = React.version;
8326
- if ("19.2.0-canary-b4477d38-20250605" !== isomorphicReactPackageVersion)
8335
+ if ("19.2.0-canary-ab859e31-20250606" !== isomorphicReactPackageVersion)
8327
8336
  throw Error(
8328
8337
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8329
8338
  (isomorphicReactPackageVersion +
8330
- "\n - react-dom: 19.2.0-canary-b4477d38-20250605\nLearn more: https://react.dev/warnings/version-mismatch")
8339
+ "\n - react-dom: 19.2.0-canary-ab859e31-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
8331
8340
  );
8332
8341
  }
8333
8342
  var util = require("util"),
@@ -9553,8 +9562,8 @@
9553
9562
  var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
9554
9563
  '$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())};'
9555
9564
  );
9556
- stringToPrecomputedChunk(
9557
- '$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);'
9565
+ stringToChunk(
9566
+ '$RV=function(z,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,A=!0)}var A=!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 t=[];for(h=0;h<g.length;h+=2){var B=g[h],w=B.parentNode;if(w){var u=w.getBoundingClientRect();if(u.left||u.top||u.width||u.height){c=B;for(f=0;c;){if(8===c.nodeType){var q=c.data;if("/$"===q)if(0===f)break;else f--;else"$"!==q&&"$?"!==q&&"$~"!==q&&"$!"!==q||f++}else if(1===c.nodeType){d=c;var C=d.getAttribute("vt-name"),x=m.get(C);k(d,x?"vt-share":"vt-exit");x&&(k(x,"vt-share"),m.set(C,null));var D=d.querySelectorAll("[vt-share]");for(d=0;d<D.length;d++){var E=D[d],F=E.getAttribute("vt-name"),\nG=m.get(F);G&&(k(E,"vt-share"),k(G,"vt-share"),m.set(F,null))}}c=c.nextSibling}for(var H=g[h+1],r=H.firstElementChild;r;)null!==m.get(r.getAttribute("vt-name"))&&k(r,"vt-enter"),r=r.nextElementSibling;c=w;do for(var n=c.firstElementChild;n;){var I=n.getAttribute("vt-update");I&&"none"!==I&&!l.includes(n)&&k(n,"vt-update");n=n.nextElementSibling}while((c=c.parentNode)&&1===c.nodeType&&"none"!==c.getAttribute("vt-update"));t.push.apply(t,H.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(A){var y=\ndocument.__reactViewTransition=document.startViewTransition({update:function(){z(g);for(var a=[document.documentElement.clientHeight,document.fonts.ready],b={},e=0;e<t.length;b={g:b.g},e++)if(b.g=t[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(v){return function(J){v.g.addEventListener("load",J);v.g.addEventListener("error",J)}}(b)),a.push(p))}return Promise.race([Promise.all(a),new Promise(function(v){return setTimeout(v,\n500)})])},types:[]});y.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")}});y.finished.finally(function(){document.__reactViewTransition===y&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}z(g)}.bind(null,$RV);'
9558
9567
  );
9559
9568
  var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
9560
9569
  completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
@@ -10004,5 +10013,5 @@
10004
10013
  startWork(request);
10005
10014
  });
10006
10015
  };
10007
- exports.version = "19.2.0-canary-b4477d38-20250605";
10016
+ exports.version = "19.2.0-canary-ab859e31-20250606";
10008
10017
  })();
@@ -2464,8 +2464,8 @@ stringToPrecomputedChunk('" data-pid="');
2464
2464
  var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
2465
2465
  '$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())};'
2466
2466
  );
2467
- stringToPrecomputedChunk(
2468
- '$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);'
2467
+ stringToChunk(
2468
+ '$RV=function(z,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,A=!0)}var A=!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 t=[];for(h=0;h<g.length;h+=2){var B=g[h],w=B.parentNode;if(w){var u=w.getBoundingClientRect();if(u.left||u.top||u.width||u.height){c=B;for(f=0;c;){if(8===c.nodeType){var q=c.data;if("/$"===q)if(0===f)break;else f--;else"$"!==q&&"$?"!==q&&"$~"!==q&&"$!"!==q||f++}else if(1===c.nodeType){d=c;var C=d.getAttribute("vt-name"),x=m.get(C);k(d,x?"vt-share":"vt-exit");x&&(k(x,"vt-share"),m.set(C,null));var D=d.querySelectorAll("[vt-share]");for(d=0;d<D.length;d++){var E=D[d],F=E.getAttribute("vt-name"),\nG=m.get(F);G&&(k(E,"vt-share"),k(G,"vt-share"),m.set(F,null))}}c=c.nextSibling}for(var H=g[h+1],r=H.firstElementChild;r;)null!==m.get(r.getAttribute("vt-name"))&&k(r,"vt-enter"),r=r.nextElementSibling;c=w;do for(var n=c.firstElementChild;n;){var I=n.getAttribute("vt-update");I&&"none"!==I&&!l.includes(n)&&k(n,"vt-update");n=n.nextElementSibling}while((c=c.parentNode)&&1===c.nodeType&&"none"!==c.getAttribute("vt-update"));t.push.apply(t,H.querySelectorAll(\'img[src]:not([loading="lazy"])\'))}}}if(A){var y=\ndocument.__reactViewTransition=document.startViewTransition({update:function(){z(g);for(var a=[document.documentElement.clientHeight,document.fonts.ready],b={},e=0;e<t.length;b={g:b.g},e++)if(b.g=t[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(v){return function(J){v.g.addEventListener("load",J);v.g.addEventListener("error",J)}}(b)),a.push(p))}return Promise.race([Promise.all(a),new Promise(function(v){return setTimeout(v,\n500)})])},types:[]});y.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")}});y.finished.finally(function(){document.__reactViewTransition===y&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}z(g)}.bind(null,$RV);'
2469
2469
  );
2470
2470
  var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
2471
2471
  completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
@@ -6456,7 +6456,8 @@ function flushCompletedQueues(request, destination) {
6456
6456
  var completedPreambleSegments = request.completedPreambleSegments;
6457
6457
  if (null === completedPreambleSegments) return;
6458
6458
  flushedByteSize = request.byteSize;
6459
- var renderState = request.renderState,
6459
+ var resumableState = request.resumableState,
6460
+ renderState = request.renderState,
6460
6461
  preamble = renderState.preamble,
6461
6462
  htmlChunks = preamble.htmlChunks,
6462
6463
  headChunks = preamble.headChunks,
@@ -6499,17 +6500,18 @@ function flushCompletedQueues(request, destination) {
6499
6500
  renderState.scripts.clear();
6500
6501
  renderState.bulkPreloads.forEach(flushResource, destination);
6501
6502
  renderState.bulkPreloads.clear();
6503
+ htmlChunks || headChunks || (resumableState.instructions |= 32);
6502
6504
  var hoistableChunks = renderState.hoistableChunks;
6503
6505
  for (i$jscomp$0 = 0; i$jscomp$0 < hoistableChunks.length; i$jscomp$0++)
6504
6506
  writeChunk(destination, hoistableChunks[i$jscomp$0]);
6505
6507
  for (
6506
- renderState = hoistableChunks.length = 0;
6507
- renderState < completedPreambleSegments.length;
6508
- renderState++
6508
+ resumableState = hoistableChunks.length = 0;
6509
+ resumableState < completedPreambleSegments.length;
6510
+ resumableState++
6509
6511
  ) {
6510
- var segments = completedPreambleSegments[renderState];
6511
- for (preamble = 0; preamble < segments.length; preamble++)
6512
- flushSegment(request, destination, segments[preamble], null);
6512
+ var segments = completedPreambleSegments[resumableState];
6513
+ for (renderState = 0; renderState < segments.length; renderState++)
6514
+ flushSegment(request, destination, segments[renderState], null);
6513
6515
  }
6514
6516
  var preamble$jscomp$0 = request.renderState.preamble,
6515
6517
  headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
@@ -6534,13 +6536,13 @@ function flushCompletedQueues(request, destination) {
6534
6536
  (0 !== request.trackedPostpones.rootNodes.length ||
6535
6537
  null !== request.trackedPostpones.rootSlots))
6536
6538
  ) {
6537
- var resumableState = request.resumableState;
6538
- if (0 === (resumableState.instructions & 64)) {
6539
- resumableState.instructions |= 64;
6539
+ var resumableState$jscomp$0 = request.resumableState;
6540
+ if (0 === (resumableState$jscomp$0.instructions & 64)) {
6541
+ resumableState$jscomp$0.instructions |= 64;
6540
6542
  writeChunk(destination, renderState$jscomp$0.startInlineScript);
6541
- if (0 === (resumableState.instructions & 32)) {
6542
- resumableState.instructions |= 32;
6543
- var shellId = "_" + resumableState.idPrefix + "R_";
6543
+ if (0 === (resumableState$jscomp$0.instructions & 32)) {
6544
+ resumableState$jscomp$0.instructions |= 32;
6545
+ var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_";
6544
6546
  writeChunk(destination, completedShellIdAttributeStart);
6545
6547
  writeChunk(
6546
6548
  destination,
@@ -6591,7 +6593,7 @@ function flushCompletedQueues(request, destination) {
6591
6593
  for (i = 0; i < clientRenderedBoundaries.length; i++) {
6592
6594
  var boundary = clientRenderedBoundaries[i];
6593
6595
  renderState$jscomp$1 = destination;
6594
- var resumableState$jscomp$0 = request.resumableState,
6596
+ var resumableState$jscomp$1 = request.resumableState,
6595
6597
  renderState$jscomp$2 = request.renderState,
6596
6598
  id = boundary.rootSegmentID,
6597
6599
  errorDigest = boundary.errorDigest;
@@ -6600,8 +6602,8 @@ function flushCompletedQueues(request, destination) {
6600
6602
  renderState$jscomp$2.startInlineScript
6601
6603
  );
6602
6604
  writeChunk(renderState$jscomp$1, endOfStartTag);
6603
- 0 === (resumableState$jscomp$0.instructions & 4)
6604
- ? ((resumableState$jscomp$0.instructions |= 4),
6605
+ 0 === (resumableState$jscomp$1.instructions & 4)
6606
+ ? ((resumableState$jscomp$1.instructions |= 4),
6605
6607
  writeChunk(renderState$jscomp$1, clientRenderScript1Full))
6606
6608
  : writeChunk(renderState$jscomp$1, clientRenderScript1Partial);
6607
6609
  writeChunk(renderState$jscomp$1, renderState$jscomp$2.boundaryPrefix);
@@ -6802,11 +6804,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6802
6804
  }
6803
6805
  function ensureCorrectIsomorphicReactVersion() {
6804
6806
  var isomorphicReactPackageVersion = React.version;
6805
- if ("19.2.0-canary-b4477d38-20250605" !== isomorphicReactPackageVersion)
6807
+ if ("19.2.0-canary-ab859e31-20250606" !== isomorphicReactPackageVersion)
6806
6808
  throw Error(
6807
6809
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6808
6810
  (isomorphicReactPackageVersion +
6809
- "\n - react-dom: 19.2.0-canary-b4477d38-20250605\nLearn more: https://react.dev/warnings/version-mismatch")
6811
+ "\n - react-dom: 19.2.0-canary-ab859e31-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
6810
6812
  );
6811
6813
  }
6812
6814
  ensureCorrectIsomorphicReactVersion();
@@ -6952,4 +6954,4 @@ exports.renderToReadableStream = function (children, options) {
6952
6954
  startWork(request);
6953
6955
  });
6954
6956
  };
6955
- exports.version = "19.2.0-canary-b4477d38-20250605";
6957
+ exports.version = "19.2.0-canary-ab859e31-20250606";