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.
@@ -7856,7 +7856,8 @@
7856
7856
  var completedPreambleSegments = request.completedPreambleSegments;
7857
7857
  if (null === completedPreambleSegments) return;
7858
7858
  flushedByteSize = request.byteSize;
7859
- var renderState = request.renderState,
7859
+ var resumableState = request.resumableState,
7860
+ renderState = request.renderState,
7860
7861
  preamble = renderState.preamble,
7861
7862
  htmlChunks = preamble.htmlChunks,
7862
7863
  headChunks = preamble.headChunks,
@@ -7915,6 +7916,9 @@
7915
7916
  renderState.scripts.clear();
7916
7917
  renderState.bulkPreloads.forEach(flushResource, destination);
7917
7918
  renderState.bulkPreloads.clear();
7919
+ htmlChunks ||
7920
+ headChunks ||
7921
+ (resumableState.instructions |= SentCompletedShellId);
7918
7922
  var hoistableChunks = renderState.hoistableChunks;
7919
7923
  for (
7920
7924
  i$jscomp$0 = 0;
@@ -7923,13 +7927,17 @@
7923
7927
  )
7924
7928
  writeChunk(destination, hoistableChunks[i$jscomp$0]);
7925
7929
  for (
7926
- renderState = hoistableChunks.length = 0;
7927
- renderState < completedPreambleSegments.length;
7928
- renderState++
7930
+ resumableState = hoistableChunks.length = 0;
7931
+ resumableState < completedPreambleSegments.length;
7932
+ resumableState++
7929
7933
  ) {
7930
- var segments = completedPreambleSegments[renderState];
7931
- for (preamble = 0; preamble < segments.length; preamble++)
7932
- flushSegment(request, destination, segments[preamble], null);
7934
+ var segments = completedPreambleSegments[resumableState];
7935
+ for (
7936
+ renderState = 0;
7937
+ renderState < segments.length;
7938
+ renderState++
7939
+ )
7940
+ flushSegment(request, destination, segments[renderState], null);
7933
7941
  }
7934
7942
  var preamble$jscomp$0 = request.renderState.preamble,
7935
7943
  headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
@@ -7954,19 +7962,20 @@
7954
7962
  (0 !== request.trackedPostpones.rootNodes.length ||
7955
7963
  null !== request.trackedPostpones.rootSlots))
7956
7964
  ) {
7957
- var resumableState = request.resumableState;
7965
+ var resumableState$jscomp$0 = request.resumableState;
7958
7966
  if (
7959
- (resumableState.instructions & SentMarkShellTime) ===
7967
+ (resumableState$jscomp$0.instructions & SentMarkShellTime) ===
7960
7968
  NothingSent
7961
7969
  ) {
7962
- resumableState.instructions |= SentMarkShellTime;
7970
+ resumableState$jscomp$0.instructions |= SentMarkShellTime;
7963
7971
  writeChunk(destination, renderState$jscomp$0.startInlineScript);
7964
7972
  if (
7965
- (resumableState.instructions & SentCompletedShellId) ===
7973
+ (resumableState$jscomp$0.instructions &
7974
+ SentCompletedShellId) ===
7966
7975
  NothingSent
7967
7976
  ) {
7968
- resumableState.instructions |= SentCompletedShellId;
7969
- var shellId = "_" + resumableState.idPrefix + "R_";
7977
+ resumableState$jscomp$0.instructions |= SentCompletedShellId;
7978
+ var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_";
7970
7979
  writeChunk(destination, completedShellIdAttributeStart);
7971
7980
  writeChunk(destination, escapeTextForBrowser(shellId));
7972
7981
  writeChunk(destination, attributeEnd);
@@ -8020,7 +8029,7 @@
8020
8029
  for (i = 0; i < clientRenderedBoundaries.length; i++) {
8021
8030
  var boundary = clientRenderedBoundaries[i];
8022
8031
  renderState$jscomp$1 = destination;
8023
- var resumableState$jscomp$0 = request.resumableState,
8032
+ var resumableState$jscomp$1 = request.resumableState,
8024
8033
  renderState$jscomp$2 = request.renderState,
8025
8034
  id = boundary.rootSegmentID,
8026
8035
  errorDigest = boundary.errorDigest,
@@ -8032,10 +8041,10 @@
8032
8041
  renderState$jscomp$2.startInlineScript
8033
8042
  );
8034
8043
  writeChunk(renderState$jscomp$1, endOfStartTag);
8035
- (resumableState$jscomp$0.instructions &
8044
+ (resumableState$jscomp$1.instructions &
8036
8045
  SentClientRenderFunction) ===
8037
8046
  NothingSent
8038
- ? ((resumableState$jscomp$0.instructions |=
8047
+ ? ((resumableState$jscomp$1.instructions |=
8039
8048
  SentClientRenderFunction),
8040
8049
  writeChunk(renderState$jscomp$1, clientRenderScript1Full))
8041
8050
  : writeChunk(renderState$jscomp$1, clientRenderScript1Partial);
@@ -8296,11 +8305,11 @@
8296
8305
  }
8297
8306
  function ensureCorrectIsomorphicReactVersion() {
8298
8307
  var isomorphicReactPackageVersion = React.version;
8299
- if ("19.2.0-canary-b4477d38-20250605" !== isomorphicReactPackageVersion)
8308
+ if ("19.2.0-canary-ab859e31-20250606" !== isomorphicReactPackageVersion)
8300
8309
  throw Error(
8301
8310
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8302
8311
  (isomorphicReactPackageVersion +
8303
- "\n - react-dom: 19.2.0-canary-b4477d38-20250605\nLearn more: https://react.dev/warnings/version-mismatch")
8312
+ "\n - react-dom: 19.2.0-canary-ab859e31-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
8304
8313
  );
8305
8314
  }
8306
8315
  function createDrainHandler(destination, request) {
@@ -9580,12 +9589,9 @@
9580
9589
  stringToPrecomputedChunk('<template data-rsi="" data-sid="');
9581
9590
  stringToPrecomputedChunk('" data-pid="');
9582
9591
  var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
9583
- '$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())};'
9584
- );
9585
- stringToPrecomputedChunk(
9586
- '$RV=function(w,f){function h(a,d){var k=a.getAttribute(d);k&&(d=a.style,l.push(a,d.viewTransitionName,d.viewTransitionClass),"auto"!==k&&(d.viewTransitionClass=k),(a=a.getAttribute("vt-name"))||(a="_T_"+F++ +"_"),d.viewTransitionName=a,x=!0)}var x=!1,F=0,l=[];try{var e=document.__reactViewTransition;if(e){e.finished.finally($RV.bind(null,f));return}var m=new Map;for(e=1;e<f.length;e+=2)for(var g=f[e].querySelectorAll("[vt-share]"),c=0;c<g.length;c++){var b=g[c];m.set(b.getAttribute("vt-name"),b)}for(g=0;g<f.length;g+=2){var y=f[g],t=y.parentNode;if(t){var r=t.getBoundingClientRect();if(r.left||r.top||r.width||r.height){b=y;for(e=0;b;){if(8===b.nodeType){var p=b.data;if("/$"===p)if(0===e)break;else e--;else"$"!==p&&"$?"!==p&&"$~"!==p&&"$!"!==p||e++}else if(1===b.nodeType){c=b;var z=c.getAttribute("vt-name"),u=m.get(z);h(c,u?"vt-share":"vt-exit");u&&(h(u,"vt-share"),m.set(z,null));var A=c.querySelectorAll("[vt-share]");for(c=0;c<A.length;c++){var B=A[c],C=B.getAttribute("vt-name"),D=m.get(C);\nD&&(h(B,"vt-share"),h(D,"vt-share"),m.set(C,null))}}b=b.nextSibling}for(var q=f[g+1].firstElementChild;q;)null!==m.get(q.getAttribute("vt-name"))&&h(q,"vt-enter"),q=q.nextElementSibling;b=t;do for(var n=b.firstElementChild;n;){var E=n.getAttribute("vt-update");E&&"none"!==E&&!l.includes(n)&&h(n,"vt-update");n=n.nextElementSibling}while((b=b.parentNode)&&1===b.nodeType&&"none"!==b.getAttribute("vt-update"))}}}if(x){var v=document.__reactViewTransition=document.startViewTransition({update:function(){w(f,\ndocument.documentElement.clientHeight);return Promise.race([document.fonts.ready,new Promise(function(a){return setTimeout(a,500)})])},types:[]});v.ready.finally(function(){for(var a=l.length-3;0<=a;a-=3){var d=l[a],k=d.style;k.viewTransitionName=l[a+1];k.viewTransitionClass=l[a+1];""===d.getAttribute("style")&&d.removeAttribute("style")}});v.finished.finally(function(){document.__reactViewTransition===v&&(document.__reactViewTransition=null)});$RB=[];return}}catch(a){}w(f)}.bind(null,$RV);'
9587
- );
9588
- var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
9592
+ '$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())};'
9593
+ ),
9594
+ completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
9589
9595
  completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
9590
9596
  '$RM=new Map;$RR=function(n,w,p){function u(q){this._p=null;q()}for(var r=new Map,t=document,h,b,e=t.querySelectorAll("link[data-precedence],style[data-precedence]"),v=[],k=0;b=e[k++];)"not all"===b.getAttribute("media")?v.push(b):("LINK"===b.tagName&&$RM.set(b.getAttribute("href"),b),r.set(b.dataset.precedence,h=b));e=0;b=[];var l,a;for(k=!0;;){if(k){var f=p[e++];if(!f){k=!1;e=0;continue}var c=!1,m=0;var d=f[m++];if(a=$RM.get(d)){var g=a._p;c=!0}else{a=t.createElement("link");a.href=d;a.rel=\n"stylesheet";for(a.dataset.precedence=l=f[m++];g=f[m++];)a.setAttribute(g,f[m++]);g=a._p=new Promise(function(q,x){a.onload=u.bind(a,q);a.onerror=u.bind(a,x)});$RM.set(d,a)}d=a.getAttribute("media");!g||d&&!matchMedia(d).matches||b.push(g);if(c)continue}else{a=v[e++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=r.get(l)||h;c===h&&(h=a);r.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=t.head,c.insertBefore(a,c.firstChild))}if(p=document.getElementById(n))p.previousSibling.data=\n"$~";Promise.all(b).then($RC.bind(null,n,w),$RX.bind(null,n,"CSS failed to load"))};$RR("'
9591
9597
  ),
@@ -9982,5 +9988,5 @@
9982
9988
  }
9983
9989
  };
9984
9990
  };
9985
- exports.version = "19.2.0-canary-b4477d38-20250605";
9991
+ exports.version = "19.2.0-canary-ab859e31-20250606";
9986
9992
  })();
@@ -2467,12 +2467,9 @@ var completeSegmentScript1Full = stringToPrecomputedChunk(
2467
2467
  stringToPrecomputedChunk('<template data-rsi="" data-sid="');
2468
2468
  stringToPrecomputedChunk('" data-pid="');
2469
2469
  var completeBoundaryScriptFunctionOnly = stringToPrecomputedChunk(
2470
- '$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())};'
2471
- );
2472
- stringToPrecomputedChunk(
2473
- '$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);'
2474
- );
2475
- var completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
2470
+ '$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())};'
2471
+ ),
2472
+ completeBoundaryScript1Partial = stringToPrecomputedChunk('$RC("'),
2476
2473
  completeBoundaryWithStylesScript1FullPartial = stringToPrecomputedChunk(
2477
2474
  '$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("'
2478
2475
  ),
@@ -6454,7 +6451,8 @@ function flushCompletedQueues(request, destination) {
6454
6451
  var completedPreambleSegments = request.completedPreambleSegments;
6455
6452
  if (null === completedPreambleSegments) return;
6456
6453
  flushedByteSize = request.byteSize;
6457
- var renderState = request.renderState,
6454
+ var resumableState = request.resumableState,
6455
+ renderState = request.renderState,
6458
6456
  preamble = renderState.preamble,
6459
6457
  htmlChunks = preamble.htmlChunks,
6460
6458
  headChunks = preamble.headChunks,
@@ -6497,17 +6495,18 @@ function flushCompletedQueues(request, destination) {
6497
6495
  renderState.scripts.clear();
6498
6496
  renderState.bulkPreloads.forEach(flushResource, destination);
6499
6497
  renderState.bulkPreloads.clear();
6498
+ htmlChunks || headChunks || (resumableState.instructions |= 32);
6500
6499
  var hoistableChunks = renderState.hoistableChunks;
6501
6500
  for (i$jscomp$0 = 0; i$jscomp$0 < hoistableChunks.length; i$jscomp$0++)
6502
6501
  writeChunk(destination, hoistableChunks[i$jscomp$0]);
6503
6502
  for (
6504
- renderState = hoistableChunks.length = 0;
6505
- renderState < completedPreambleSegments.length;
6506
- renderState++
6503
+ resumableState = hoistableChunks.length = 0;
6504
+ resumableState < completedPreambleSegments.length;
6505
+ resumableState++
6507
6506
  ) {
6508
- var segments = completedPreambleSegments[renderState];
6509
- for (preamble = 0; preamble < segments.length; preamble++)
6510
- flushSegment(request, destination, segments[preamble], null);
6507
+ var segments = completedPreambleSegments[resumableState];
6508
+ for (renderState = 0; renderState < segments.length; renderState++)
6509
+ flushSegment(request, destination, segments[renderState], null);
6511
6510
  }
6512
6511
  var preamble$jscomp$0 = request.renderState.preamble,
6513
6512
  headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
@@ -6532,13 +6531,13 @@ function flushCompletedQueues(request, destination) {
6532
6531
  (0 !== request.trackedPostpones.rootNodes.length ||
6533
6532
  null !== request.trackedPostpones.rootSlots))
6534
6533
  ) {
6535
- var resumableState = request.resumableState;
6536
- if (0 === (resumableState.instructions & 64)) {
6537
- resumableState.instructions |= 64;
6534
+ var resumableState$jscomp$0 = request.resumableState;
6535
+ if (0 === (resumableState$jscomp$0.instructions & 64)) {
6536
+ resumableState$jscomp$0.instructions |= 64;
6538
6537
  writeChunk(destination, renderState$jscomp$0.startInlineScript);
6539
- if (0 === (resumableState.instructions & 32)) {
6540
- resumableState.instructions |= 32;
6541
- var shellId = "_" + resumableState.idPrefix + "R_";
6538
+ if (0 === (resumableState$jscomp$0.instructions & 32)) {
6539
+ resumableState$jscomp$0.instructions |= 32;
6540
+ var shellId = "_" + resumableState$jscomp$0.idPrefix + "R_";
6542
6541
  writeChunk(destination, completedShellIdAttributeStart);
6543
6542
  writeChunk(destination, escapeTextForBrowser(shellId));
6544
6543
  writeChunk(destination, attributeEnd);
@@ -6586,7 +6585,7 @@ function flushCompletedQueues(request, destination) {
6586
6585
  for (i = 0; i < clientRenderedBoundaries.length; i++) {
6587
6586
  var boundary = clientRenderedBoundaries[i];
6588
6587
  renderState$jscomp$1 = destination;
6589
- var resumableState$jscomp$0 = request.resumableState,
6588
+ var resumableState$jscomp$1 = request.resumableState,
6590
6589
  renderState$jscomp$2 = request.renderState,
6591
6590
  id = boundary.rootSegmentID,
6592
6591
  errorDigest = boundary.errorDigest;
@@ -6595,8 +6594,8 @@ function flushCompletedQueues(request, destination) {
6595
6594
  renderState$jscomp$2.startInlineScript
6596
6595
  );
6597
6596
  writeChunk(renderState$jscomp$1, endOfStartTag);
6598
- 0 === (resumableState$jscomp$0.instructions & 4)
6599
- ? ((resumableState$jscomp$0.instructions |= 4),
6597
+ 0 === (resumableState$jscomp$1.instructions & 4)
6598
+ ? ((resumableState$jscomp$1.instructions |= 4),
6600
6599
  writeChunk(renderState$jscomp$1, clientRenderScript1Full))
6601
6600
  : writeChunk(renderState$jscomp$1, clientRenderScript1Partial);
6602
6601
  writeChunk(renderState$jscomp$1, renderState$jscomp$2.boundaryPrefix);
@@ -6797,11 +6796,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6797
6796
  }
6798
6797
  function ensureCorrectIsomorphicReactVersion() {
6799
6798
  var isomorphicReactPackageVersion = React.version;
6800
- if ("19.2.0-canary-b4477d38-20250605" !== isomorphicReactPackageVersion)
6799
+ if ("19.2.0-canary-ab859e31-20250606" !== isomorphicReactPackageVersion)
6801
6800
  throw Error(
6802
6801
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6803
6802
  (isomorphicReactPackageVersion +
6804
- "\n - react-dom: 19.2.0-canary-b4477d38-20250605\nLearn more: https://react.dev/warnings/version-mismatch")
6803
+ "\n - react-dom: 19.2.0-canary-ab859e31-20250606\nLearn more: https://react.dev/warnings/version-mismatch")
6805
6804
  );
6806
6805
  }
6807
6806
  ensureCorrectIsomorphicReactVersion();
@@ -6950,4 +6949,4 @@ exports.renderToPipeableStream = function (children, options) {
6950
6949
  }
6951
6950
  };
6952
6951
  };
6953
- exports.version = "19.2.0-canary-b4477d38-20250605";
6952
+ exports.version = "19.2.0-canary-ab859e31-20250606";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.2.0-canary-b4477d38-20250605";
419
+ exports.version = "19.2.0-canary-ab859e31-20250606";
420
420
  "undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
421
421
  "function" ===
422
422
  typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
@@ -207,4 +207,4 @@ exports.useFormState = function (action, initialState, permalink) {
207
207
  exports.useFormStatus = function () {
208
208
  return ReactSharedInternals.H.useHostTransitionStatus();
209
209
  };
210
- exports.version = "19.2.0-canary-b4477d38-20250605";
210
+ exports.version = "19.2.0-canary-ab859e31-20250606";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.2.0-canary-b4477d38-20250605";
339
+ exports.version = "19.2.0-canary-ab859e31-20250606";
340
340
  })();
@@ -149,4 +149,4 @@ exports.preloadModule = function (href, options) {
149
149
  });
150
150
  } else Internals.d.m(href);
151
151
  };
152
- exports.version = "19.2.0-canary-b4477d38-20250605";
152
+ exports.version = "19.2.0-canary-ab859e31-20250606";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.2.0-canary-b4477d38-20250605",
3
+ "version": "19.2.0-canary-ab859e31-20250606",
4
4
  "description": "React package for working with the DOM.",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -17,10 +17,10 @@
17
17
  },
18
18
  "homepage": "https://react.dev/",
19
19
  "dependencies": {
20
- "scheduler": "0.27.0-canary-b4477d38-20250605"
20
+ "scheduler": "0.27.0-canary-ab859e31-20250606"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.2.0-canary-b4477d38-20250605"
23
+ "react": "19.2.0-canary-ab859e31-20250606"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",