react-dom 19.2.0-canary-19baee81-20250725 → 19.2.0-canary-9be531cd-20250729

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.
@@ -5256,7 +5256,10 @@ function renderNode(request, task, node, childIndex) {
5256
5256
  "object" === typeof node && null !== node)
5257
5257
  ) {
5258
5258
  if ("function" === typeof node.then) {
5259
- childIndex = getThenableStateAfterSuspending();
5259
+ childIndex =
5260
+ thrownValue === SuspenseException
5261
+ ? getThenableStateAfterSuspending()
5262
+ : null;
5260
5263
  request = spawnNewSuspendedReplayTask(request, task, childIndex).ping;
5261
5264
  node.then(request, request);
5262
5265
  task.formatContext = previousFormatContext;
@@ -5269,7 +5272,10 @@ function renderNode(request, task, node, childIndex) {
5269
5272
  return;
5270
5273
  }
5271
5274
  if ("Maximum call stack size exceeded" === node.message) {
5272
- node = getThenableStateAfterSuspending();
5275
+ node =
5276
+ thrownValue === SuspenseException
5277
+ ? getThenableStateAfterSuspending()
5278
+ : null;
5273
5279
  node = spawnNewSuspendedReplayTask(request, task, node);
5274
5280
  request.pingedTasks.push(node);
5275
5281
  task.formatContext = previousFormatContext;
@@ -5301,7 +5307,10 @@ function renderNode(request, task, node, childIndex) {
5301
5307
  ) {
5302
5308
  if ("function" === typeof node.then) {
5303
5309
  segment = node;
5304
- node = getThenableStateAfterSuspending();
5310
+ node =
5311
+ thrownValue$60 === SuspenseException
5312
+ ? getThenableStateAfterSuspending()
5313
+ : null;
5305
5314
  request = spawnNewSuspendedRenderTask(request, task, node).ping;
5306
5315
  segment.then(request, request);
5307
5316
  task.formatContext = previousFormatContext;
@@ -5313,7 +5322,10 @@ function renderNode(request, task, node, childIndex) {
5313
5322
  return;
5314
5323
  }
5315
5324
  if ("Maximum call stack size exceeded" === node.message) {
5316
- segment = getThenableStateAfterSuspending();
5325
+ segment =
5326
+ thrownValue$60 === SuspenseException
5327
+ ? getThenableStateAfterSuspending()
5328
+ : null;
5317
5329
  segment = spawnNewSuspendedRenderTask(request, task, segment);
5318
5330
  request.pingedTasks.push(segment);
5319
5331
  task.formatContext = previousFormatContext;
@@ -5729,7 +5741,10 @@ function performWork(request$jscomp$2) {
5729
5741
  ) {
5730
5742
  var ping = task.ping;
5731
5743
  x.then(ping, ping);
5732
- task.thenableState = getThenableStateAfterSuspending();
5744
+ task.thenableState =
5745
+ thrownValue === SuspenseException
5746
+ ? getThenableStateAfterSuspending()
5747
+ : null;
5733
5748
  } else {
5734
5749
  task.replay.pendingTasks--;
5735
5750
  task.abortSet.delete(task);
@@ -5808,7 +5823,10 @@ function performWork(request$jscomp$2) {
5808
5823
  "function" === typeof x$jscomp$0.then
5809
5824
  ) {
5810
5825
  request$jscomp$1.status = 0;
5811
- task.thenableState = getThenableStateAfterSuspending();
5826
+ task.thenableState =
5827
+ thrownValue === SuspenseException
5828
+ ? getThenableStateAfterSuspending()
5829
+ : null;
5812
5830
  var ping$jscomp$0 = task.ping;
5813
5831
  x$jscomp$0.then(ping$jscomp$0, ping$jscomp$0);
5814
5832
  } else {
@@ -6499,13 +6517,13 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6499
6517
  }
6500
6518
  var isomorphicReactPackageVersion$jscomp$inline_816 = React.version;
6501
6519
  if (
6502
- "19.2.0-canary-19baee81-20250725" !==
6520
+ "19.2.0-canary-9be531cd-20250729" !==
6503
6521
  isomorphicReactPackageVersion$jscomp$inline_816
6504
6522
  )
6505
6523
  throw Error(
6506
6524
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6507
6525
  (isomorphicReactPackageVersion$jscomp$inline_816 +
6508
- "\n - react-dom: 19.2.0-canary-19baee81-20250725\nLearn more: https://react.dev/warnings/version-mismatch")
6526
+ "\n - react-dom: 19.2.0-canary-9be531cd-20250729\nLearn more: https://react.dev/warnings/version-mismatch")
6509
6527
  );
6510
6528
  exports.renderToReadableStream = function (children, options) {
6511
6529
  return new Promise(function (resolve, reject) {
@@ -6596,4 +6614,4 @@ exports.renderToReadableStream = function (children, options) {
6596
6614
  startWork(request);
6597
6615
  });
6598
6616
  };
6599
- exports.version = "19.2.0-canary-19baee81-20250725";
6617
+ exports.version = "19.2.0-canary-9be531cd-20250729";
@@ -6964,7 +6964,10 @@
6964
6964
  "object" === typeof node && null !== node)
6965
6965
  ) {
6966
6966
  if ("function" === typeof node.then) {
6967
- childIndex = getThenableStateAfterSuspending();
6967
+ childIndex =
6968
+ thrownValue === SuspenseException
6969
+ ? getThenableStateAfterSuspending()
6970
+ : null;
6968
6971
  request = spawnNewSuspendedReplayTask(
6969
6972
  request,
6970
6973
  task,
@@ -6982,7 +6985,10 @@
6982
6985
  return;
6983
6986
  }
6984
6987
  if ("Maximum call stack size exceeded" === node.message) {
6985
- node = getThenableStateAfterSuspending();
6988
+ node =
6989
+ thrownValue === SuspenseException
6990
+ ? getThenableStateAfterSuspending()
6991
+ : null;
6986
6992
  node = spawnNewSuspendedReplayTask(request, task, node);
6987
6993
  request.pingedTasks.push(node);
6988
6994
  task.formatContext = previousFormatContext;
@@ -7015,7 +7021,10 @@
7015
7021
  ) {
7016
7022
  if ("function" === typeof node.then) {
7017
7023
  segment = node;
7018
- node = getThenableStateAfterSuspending();
7024
+ node =
7025
+ thrownValue$3 === SuspenseException
7026
+ ? getThenableStateAfterSuspending()
7027
+ : null;
7019
7028
  request = spawnNewSuspendedRenderTask(request, task, node).ping;
7020
7029
  segment.then(request, request);
7021
7030
  task.formatContext = previousFormatContext;
@@ -7028,7 +7037,10 @@
7028
7037
  return;
7029
7038
  }
7030
7039
  if ("Maximum call stack size exceeded" === node.message) {
7031
- segment = getThenableStateAfterSuspending();
7040
+ segment =
7041
+ thrownValue$3 === SuspenseException
7042
+ ? getThenableStateAfterSuspending()
7043
+ : null;
7032
7044
  segment = spawnNewSuspendedRenderTask(request, task, segment);
7033
7045
  request.pingedTasks.push(segment);
7034
7046
  task.formatContext = previousFormatContext;
@@ -7494,7 +7506,10 @@
7494
7506
  ) {
7495
7507
  var ping = request.ping;
7496
7508
  x.then(ping, ping);
7497
- request.thenableState = getThenableStateAfterSuspending();
7509
+ request.thenableState =
7510
+ thrownValue === SuspenseException
7511
+ ? getThenableStateAfterSuspending()
7512
+ : null;
7498
7513
  } else {
7499
7514
  request.replay.pendingTasks--;
7500
7515
  request.abortSet.delete(request);
@@ -7582,7 +7597,10 @@
7582
7597
  "function" === typeof x$jscomp$0.then
7583
7598
  ) {
7584
7599
  request$jscomp$1.status = PENDING;
7585
- errorDigest.thenableState = getThenableStateAfterSuspending();
7600
+ errorDigest.thenableState =
7601
+ thrownValue === SuspenseException
7602
+ ? getThenableStateAfterSuspending()
7603
+ : null;
7586
7604
  var ping$jscomp$0 = errorDigest.ping;
7587
7605
  x$jscomp$0.then(ping$jscomp$0, ping$jscomp$0);
7588
7606
  } else {
@@ -8486,11 +8504,11 @@
8486
8504
  }
8487
8505
  function ensureCorrectIsomorphicReactVersion() {
8488
8506
  var isomorphicReactPackageVersion = React.version;
8489
- if ("19.2.0-canary-19baee81-20250725" !== isomorphicReactPackageVersion)
8507
+ if ("19.2.0-canary-9be531cd-20250729" !== isomorphicReactPackageVersion)
8490
8508
  throw Error(
8491
8509
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8492
8510
  (isomorphicReactPackageVersion +
8493
- "\n - react-dom: 19.2.0-canary-19baee81-20250725\nLearn more: https://react.dev/warnings/version-mismatch")
8511
+ "\n - react-dom: 19.2.0-canary-9be531cd-20250729\nLearn more: https://react.dev/warnings/version-mismatch")
8494
8512
  );
8495
8513
  }
8496
8514
  var React = require("react"),
@@ -10176,5 +10194,5 @@
10176
10194
  startWork(request);
10177
10195
  });
10178
10196
  };
10179
- exports.version = "19.2.0-canary-19baee81-20250725";
10197
+ exports.version = "19.2.0-canary-9be531cd-20250729";
10180
10198
  })();
@@ -5686,7 +5686,10 @@ function renderNode(request, task, node, childIndex) {
5686
5686
  "object" === typeof node && null !== node)
5687
5687
  ) {
5688
5688
  if ("function" === typeof node.then) {
5689
- childIndex = getThenableStateAfterSuspending();
5689
+ childIndex =
5690
+ thrownValue === SuspenseException
5691
+ ? getThenableStateAfterSuspending()
5692
+ : null;
5690
5693
  request = spawnNewSuspendedReplayTask(request, task, childIndex).ping;
5691
5694
  node.then(request, request);
5692
5695
  task.formatContext = previousFormatContext;
@@ -5699,7 +5702,10 @@ function renderNode(request, task, node, childIndex) {
5699
5702
  return;
5700
5703
  }
5701
5704
  if ("Maximum call stack size exceeded" === node.message) {
5702
- node = getThenableStateAfterSuspending();
5705
+ node =
5706
+ thrownValue === SuspenseException
5707
+ ? getThenableStateAfterSuspending()
5708
+ : null;
5703
5709
  node = spawnNewSuspendedReplayTask(request, task, node);
5704
5710
  request.pingedTasks.push(node);
5705
5711
  task.formatContext = previousFormatContext;
@@ -5731,7 +5737,10 @@ function renderNode(request, task, node, childIndex) {
5731
5737
  ) {
5732
5738
  if ("function" === typeof node.then) {
5733
5739
  segment = node;
5734
- node = getThenableStateAfterSuspending();
5740
+ node =
5741
+ thrownValue$60 === SuspenseException
5742
+ ? getThenableStateAfterSuspending()
5743
+ : null;
5735
5744
  request = spawnNewSuspendedRenderTask(request, task, node).ping;
5736
5745
  segment.then(request, request);
5737
5746
  task.formatContext = previousFormatContext;
@@ -5743,7 +5752,10 @@ function renderNode(request, task, node, childIndex) {
5743
5752
  return;
5744
5753
  }
5745
5754
  if ("Maximum call stack size exceeded" === node.message) {
5746
- segment = getThenableStateAfterSuspending();
5755
+ segment =
5756
+ thrownValue$60 === SuspenseException
5757
+ ? getThenableStateAfterSuspending()
5758
+ : null;
5747
5759
  segment = spawnNewSuspendedRenderTask(request, task, segment);
5748
5760
  request.pingedTasks.push(segment);
5749
5761
  task.formatContext = previousFormatContext;
@@ -6159,7 +6171,10 @@ function performWork(request$jscomp$2) {
6159
6171
  ) {
6160
6172
  var ping = task.ping;
6161
6173
  x.then(ping, ping);
6162
- task.thenableState = getThenableStateAfterSuspending();
6174
+ task.thenableState =
6175
+ thrownValue === SuspenseException
6176
+ ? getThenableStateAfterSuspending()
6177
+ : null;
6163
6178
  } else {
6164
6179
  task.replay.pendingTasks--;
6165
6180
  task.abortSet.delete(task);
@@ -6235,7 +6250,10 @@ function performWork(request$jscomp$2) {
6235
6250
  "function" === typeof x$jscomp$0.then
6236
6251
  ) {
6237
6252
  request$jscomp$1.status = 0;
6238
- task.thenableState = getThenableStateAfterSuspending();
6253
+ task.thenableState =
6254
+ thrownValue === SuspenseException
6255
+ ? getThenableStateAfterSuspending()
6256
+ : null;
6239
6257
  var ping$jscomp$0 = task.ping;
6240
6258
  x$jscomp$0.then(ping$jscomp$0, ping$jscomp$0);
6241
6259
  } else {
@@ -6949,11 +6967,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6949
6967
  }
6950
6968
  function ensureCorrectIsomorphicReactVersion() {
6951
6969
  var isomorphicReactPackageVersion = React.version;
6952
- if ("19.2.0-canary-19baee81-20250725" !== isomorphicReactPackageVersion)
6970
+ if ("19.2.0-canary-9be531cd-20250729" !== isomorphicReactPackageVersion)
6953
6971
  throw Error(
6954
6972
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6955
6973
  (isomorphicReactPackageVersion +
6956
- "\n - react-dom: 19.2.0-canary-19baee81-20250725\nLearn more: https://react.dev/warnings/version-mismatch")
6974
+ "\n - react-dom: 19.2.0-canary-9be531cd-20250729\nLearn more: https://react.dev/warnings/version-mismatch")
6957
6975
  );
6958
6976
  }
6959
6977
  ensureCorrectIsomorphicReactVersion();
@@ -7099,4 +7117,4 @@ exports.renderToReadableStream = function (children, options) {
7099
7117
  startWork(request);
7100
7118
  });
7101
7119
  };
7102
- exports.version = "19.2.0-canary-19baee81-20250725";
7120
+ exports.version = "19.2.0-canary-9be531cd-20250729";
@@ -6863,7 +6863,10 @@
6863
6863
  "object" === typeof node && null !== node)
6864
6864
  ) {
6865
6865
  if ("function" === typeof node.then) {
6866
- childIndex = getThenableStateAfterSuspending();
6866
+ childIndex =
6867
+ thrownValue === SuspenseException
6868
+ ? getThenableStateAfterSuspending()
6869
+ : null;
6867
6870
  request = spawnNewSuspendedReplayTask(
6868
6871
  request,
6869
6872
  task,
@@ -6881,7 +6884,10 @@
6881
6884
  return;
6882
6885
  }
6883
6886
  if ("Maximum call stack size exceeded" === node.message) {
6884
- node = getThenableStateAfterSuspending();
6887
+ node =
6888
+ thrownValue === SuspenseException
6889
+ ? getThenableStateAfterSuspending()
6890
+ : null;
6885
6891
  node = spawnNewSuspendedReplayTask(request, task, node);
6886
6892
  request.pingedTasks.push(node);
6887
6893
  task.formatContext = previousFormatContext;
@@ -6914,7 +6920,10 @@
6914
6920
  ) {
6915
6921
  if ("function" === typeof node.then) {
6916
6922
  segment = node;
6917
- node = getThenableStateAfterSuspending();
6923
+ node =
6924
+ thrownValue$3 === SuspenseException
6925
+ ? getThenableStateAfterSuspending()
6926
+ : null;
6918
6927
  request = spawnNewSuspendedRenderTask(request, task, node).ping;
6919
6928
  segment.then(request, request);
6920
6929
  task.formatContext = previousFormatContext;
@@ -6927,7 +6936,10 @@
6927
6936
  return;
6928
6937
  }
6929
6938
  if ("Maximum call stack size exceeded" === node.message) {
6930
- segment = getThenableStateAfterSuspending();
6939
+ segment =
6940
+ thrownValue$3 === SuspenseException
6941
+ ? getThenableStateAfterSuspending()
6942
+ : null;
6931
6943
  segment = spawnNewSuspendedRenderTask(request, task, segment);
6932
6944
  request.pingedTasks.push(segment);
6933
6945
  task.formatContext = previousFormatContext;
@@ -7393,7 +7405,10 @@
7393
7405
  ) {
7394
7406
  var ping = request.ping;
7395
7407
  x.then(ping, ping);
7396
- request.thenableState = getThenableStateAfterSuspending();
7408
+ request.thenableState =
7409
+ thrownValue === SuspenseException
7410
+ ? getThenableStateAfterSuspending()
7411
+ : null;
7397
7412
  } else {
7398
7413
  request.replay.pendingTasks--;
7399
7414
  request.abortSet.delete(request);
@@ -7481,7 +7496,10 @@
7481
7496
  "function" === typeof x$jscomp$0.then
7482
7497
  ) {
7483
7498
  request$jscomp$1.status = PENDING;
7484
- errorDigest.thenableState = getThenableStateAfterSuspending();
7499
+ errorDigest.thenableState =
7500
+ thrownValue === SuspenseException
7501
+ ? getThenableStateAfterSuspending()
7502
+ : null;
7485
7503
  var ping$jscomp$0 = errorDigest.ping;
7486
7504
  x$jscomp$0.then(ping$jscomp$0, ping$jscomp$0);
7487
7505
  } else {
@@ -8361,11 +8379,11 @@
8361
8379
  }
8362
8380
  function ensureCorrectIsomorphicReactVersion() {
8363
8381
  var isomorphicReactPackageVersion = React.version;
8364
- if ("19.2.0-canary-19baee81-20250725" !== isomorphicReactPackageVersion)
8382
+ if ("19.2.0-canary-9be531cd-20250729" !== isomorphicReactPackageVersion)
8365
8383
  throw Error(
8366
8384
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
8367
8385
  (isomorphicReactPackageVersion +
8368
- "\n - react-dom: 19.2.0-canary-19baee81-20250725\nLearn more: https://react.dev/warnings/version-mismatch")
8386
+ "\n - react-dom: 19.2.0-canary-9be531cd-20250729\nLearn more: https://react.dev/warnings/version-mismatch")
8369
8387
  );
8370
8388
  }
8371
8389
  function createDrainHandler(destination, request) {
@@ -10236,5 +10254,5 @@
10236
10254
  startWork(request);
10237
10255
  });
10238
10256
  };
10239
- exports.version = "19.2.0-canary-19baee81-20250725";
10257
+ exports.version = "19.2.0-canary-9be531cd-20250729";
10240
10258
  })();
@@ -5586,7 +5586,10 @@ function renderNode(request, task, node, childIndex) {
5586
5586
  "object" === typeof node && null !== node)
5587
5587
  ) {
5588
5588
  if ("function" === typeof node.then) {
5589
- childIndex = getThenableStateAfterSuspending();
5589
+ childIndex =
5590
+ thrownValue === SuspenseException
5591
+ ? getThenableStateAfterSuspending()
5592
+ : null;
5590
5593
  request = spawnNewSuspendedReplayTask(request, task, childIndex).ping;
5591
5594
  node.then(request, request);
5592
5595
  task.formatContext = previousFormatContext;
@@ -5599,7 +5602,10 @@ function renderNode(request, task, node, childIndex) {
5599
5602
  return;
5600
5603
  }
5601
5604
  if ("Maximum call stack size exceeded" === node.message) {
5602
- node = getThenableStateAfterSuspending();
5605
+ node =
5606
+ thrownValue === SuspenseException
5607
+ ? getThenableStateAfterSuspending()
5608
+ : null;
5603
5609
  node = spawnNewSuspendedReplayTask(request, task, node);
5604
5610
  request.pingedTasks.push(node);
5605
5611
  task.formatContext = previousFormatContext;
@@ -5631,7 +5637,10 @@ function renderNode(request, task, node, childIndex) {
5631
5637
  ) {
5632
5638
  if ("function" === typeof node.then) {
5633
5639
  segment = node;
5634
- node = getThenableStateAfterSuspending();
5640
+ node =
5641
+ thrownValue$60 === SuspenseException
5642
+ ? getThenableStateAfterSuspending()
5643
+ : null;
5635
5644
  request = spawnNewSuspendedRenderTask(request, task, node).ping;
5636
5645
  segment.then(request, request);
5637
5646
  task.formatContext = previousFormatContext;
@@ -5643,7 +5652,10 @@ function renderNode(request, task, node, childIndex) {
5643
5652
  return;
5644
5653
  }
5645
5654
  if ("Maximum call stack size exceeded" === node.message) {
5646
- segment = getThenableStateAfterSuspending();
5655
+ segment =
5656
+ thrownValue$60 === SuspenseException
5657
+ ? getThenableStateAfterSuspending()
5658
+ : null;
5647
5659
  segment = spawnNewSuspendedRenderTask(request, task, segment);
5648
5660
  request.pingedTasks.push(segment);
5649
5661
  task.formatContext = previousFormatContext;
@@ -6059,7 +6071,10 @@ function performWork(request$jscomp$2) {
6059
6071
  ) {
6060
6072
  var ping = task.ping;
6061
6073
  x.then(ping, ping);
6062
- task.thenableState = getThenableStateAfterSuspending();
6074
+ task.thenableState =
6075
+ thrownValue === SuspenseException
6076
+ ? getThenableStateAfterSuspending()
6077
+ : null;
6063
6078
  } else {
6064
6079
  task.replay.pendingTasks--;
6065
6080
  task.abortSet.delete(task);
@@ -6135,7 +6150,10 @@ function performWork(request$jscomp$2) {
6135
6150
  "function" === typeof x$jscomp$0.then
6136
6151
  ) {
6137
6152
  request$jscomp$1.status = 0;
6138
- task.thenableState = getThenableStateAfterSuspending();
6153
+ task.thenableState =
6154
+ thrownValue === SuspenseException
6155
+ ? getThenableStateAfterSuspending()
6156
+ : null;
6139
6157
  var ping$jscomp$0 = task.ping;
6140
6158
  x$jscomp$0.then(ping$jscomp$0, ping$jscomp$0);
6141
6159
  } else {
@@ -6841,11 +6859,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6841
6859
  }
6842
6860
  function ensureCorrectIsomorphicReactVersion() {
6843
6861
  var isomorphicReactPackageVersion = React.version;
6844
- if ("19.2.0-canary-19baee81-20250725" !== isomorphicReactPackageVersion)
6862
+ if ("19.2.0-canary-9be531cd-20250729" !== isomorphicReactPackageVersion)
6845
6863
  throw Error(
6846
6864
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6847
6865
  (isomorphicReactPackageVersion +
6848
- "\n - react-dom: 19.2.0-canary-19baee81-20250725\nLearn more: https://react.dev/warnings/version-mismatch")
6866
+ "\n - react-dom: 19.2.0-canary-9be531cd-20250729\nLearn more: https://react.dev/warnings/version-mismatch")
6849
6867
  );
6850
6868
  }
6851
6869
  ensureCorrectIsomorphicReactVersion();
@@ -7183,4 +7201,4 @@ exports.renderToReadableStream = function (children, options) {
7183
7201
  startWork(request);
7184
7202
  });
7185
7203
  };
7186
- exports.version = "19.2.0-canary-19baee81-20250725";
7204
+ exports.version = "19.2.0-canary-9be531cd-20250729";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.2.0-canary-19baee81-20250725";
419
+ exports.version = "19.2.0-canary-9be531cd-20250729";
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-19baee81-20250725";
210
+ exports.version = "19.2.0-canary-9be531cd-20250729";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.2.0-canary-19baee81-20250725";
339
+ exports.version = "19.2.0-canary-9be531cd-20250729";
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-19baee81-20250725";
152
+ exports.version = "19.2.0-canary-9be531cd-20250729";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.2.0-canary-19baee81-20250725",
3
+ "version": "19.2.0-canary-9be531cd-20250729",
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-19baee81-20250725"
20
+ "scheduler": "0.27.0-canary-9be531cd-20250729"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.2.0-canary-19baee81-20250725"
23
+ "react": "19.2.0-canary-9be531cd-20250729"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",