react-dom 19.2.0-canary-b07717d8-20250528 → 19.2.0-canary-526dd340-20250602

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.
@@ -309,7 +309,8 @@ ReactDOMSharedInternals.d = {
309
309
  S: preinitStyle,
310
310
  M: preinitModuleScript
311
311
  };
312
- var PRELOAD_NO_CREDS = [];
312
+ var PRELOAD_NO_CREDS = [],
313
+ currentlyFlushingRenderState = null;
313
314
  stringToPrecomputedChunk('"></template>');
314
315
  var startInlineScript = stringToPrecomputedChunk("<script"),
315
316
  endInlineScript = stringToPrecomputedChunk("\x3c/script>"),
@@ -319,6 +320,7 @@ var startInlineScript = stringToPrecomputedChunk("<script"),
319
320
  scriptIntegirty = stringToPrecomputedChunk(' integrity="'),
320
321
  scriptCrossOrigin = stringToPrecomputedChunk(' crossorigin="'),
321
322
  endAsyncScript = stringToPrecomputedChunk(' async="">\x3c/script>'),
323
+ startInlineStyle = stringToPrecomputedChunk("<style"),
322
324
  scriptRegex = /(<\/|<)(s)(cript)/gi;
323
325
  function scriptReplacer(match, prefix, s, suffix) {
324
326
  return "" + prefix + ("s" === s ? "\\u0073" : "\\u0053") + suffix;
@@ -335,21 +337,32 @@ function createRenderState(
335
337
  onHeaders,
336
338
  maxHeadersLength
337
339
  ) {
340
+ externalRuntimeConfig =
341
+ "string" === typeof nonce ? nonce : nonce && nonce.script;
338
342
  var inlineScriptWithNonce =
339
- void 0 === nonce
343
+ void 0 === externalRuntimeConfig
340
344
  ? startInlineScript
341
345
  : stringToPrecomputedChunk(
342
- '<script nonce="' + escapeTextForBrowser(nonce) + '"'
346
+ '<script nonce="' +
347
+ escapeTextForBrowser(externalRuntimeConfig) +
348
+ '"'
343
349
  ),
344
- idPrefix = resumableState.idPrefix;
345
- externalRuntimeConfig = [];
346
- var bootstrapScriptContent = resumableState.bootstrapScriptContent,
350
+ nonceStyle = "string" === typeof nonce ? void 0 : nonce && nonce.style,
351
+ inlineStyleWithNonce =
352
+ void 0 === nonceStyle
353
+ ? startInlineStyle
354
+ : stringToPrecomputedChunk(
355
+ '<style nonce="' + escapeTextForBrowser(nonceStyle) + '"'
356
+ ),
357
+ idPrefix = resumableState.idPrefix,
358
+ bootstrapChunks = [],
359
+ bootstrapScriptContent = resumableState.bootstrapScriptContent,
347
360
  bootstrapScripts = resumableState.bootstrapScripts,
348
361
  bootstrapModules = resumableState.bootstrapModules;
349
362
  void 0 !== bootstrapScriptContent &&
350
- (externalRuntimeConfig.push(inlineScriptWithNonce),
351
- pushCompletedShellIdAttribute(externalRuntimeConfig, resumableState),
352
- externalRuntimeConfig.push(
363
+ (bootstrapChunks.push(inlineScriptWithNonce),
364
+ pushCompletedShellIdAttribute(bootstrapChunks, resumableState),
365
+ bootstrapChunks.push(
353
366
  endOfStartTag,
354
367
  ("" + bootstrapScriptContent).replace(scriptRegex, scriptReplacer),
355
368
  endInlineScript
@@ -375,9 +388,10 @@ function createRenderState(
375
388
  segmentPrefix: stringToPrecomputedChunk(idPrefix + "S:"),
376
389
  boundaryPrefix: stringToPrecomputedChunk(idPrefix + "B:"),
377
390
  startInlineScript: inlineScriptWithNonce,
391
+ startInlineStyle: inlineStyleWithNonce,
378
392
  preamble: createPreambleState(),
379
393
  externalRuntimeScript: null,
380
- bootstrapChunks: externalRuntimeConfig,
394
+ bootstrapChunks: bootstrapChunks,
381
395
  importMapChunks: bootstrapScriptContent,
382
396
  onHeaders: onHeaders,
383
397
  headers: importMap,
@@ -404,125 +418,119 @@ function createRenderState(
404
418
  scripts: new Map(),
405
419
  moduleScripts: new Map()
406
420
  },
407
- nonce: nonce,
421
+ nonce: { script: externalRuntimeConfig, style: nonceStyle },
408
422
  hoistableState: null,
409
423
  stylesToHoist: !1
410
424
  };
411
425
  if (void 0 !== bootstrapScripts)
412
- for (importMap = 0; importMap < bootstrapScripts.length; importMap++) {
413
- var scriptConfig = bootstrapScripts[importMap];
414
- idPrefix = inlineScriptWithNonce = void 0;
415
- bootstrapScriptContent = {
416
- rel: "preload",
417
- as: "script",
418
- fetchPriority: "low",
419
- nonce: nonce
420
- };
421
- "string" === typeof scriptConfig
422
- ? (bootstrapScriptContent.href = maxHeadersLength = scriptConfig)
423
- : ((bootstrapScriptContent.href = maxHeadersLength = scriptConfig.src),
424
- (bootstrapScriptContent.integrity = idPrefix =
425
- "string" === typeof scriptConfig.integrity
426
- ? scriptConfig.integrity
427
- : void 0),
428
- (bootstrapScriptContent.crossOrigin = inlineScriptWithNonce =
429
- "string" === typeof scriptConfig || null == scriptConfig.crossOrigin
430
- ? void 0
431
- : "use-credentials" === scriptConfig.crossOrigin
432
- ? "use-credentials"
433
- : ""));
434
- scriptConfig = resumableState;
435
- var href = maxHeadersLength;
436
- scriptConfig.scriptResources[href] = null;
437
- scriptConfig.moduleScriptResources[href] = null;
438
- scriptConfig = [];
439
- pushLinkImpl(scriptConfig, bootstrapScriptContent);
440
- onHeaders.bootstrapScripts.add(scriptConfig);
441
- externalRuntimeConfig.push(
442
- startScriptSrc,
443
- escapeTextForBrowser(maxHeadersLength),
444
- attributeEnd
445
- );
446
- nonce &&
447
- externalRuntimeConfig.push(
448
- scriptNonce,
449
- escapeTextForBrowser(nonce),
450
- attributeEnd
451
- );
452
- "string" === typeof idPrefix &&
453
- externalRuntimeConfig.push(
454
- scriptIntegirty,
455
- escapeTextForBrowser(idPrefix),
456
- attributeEnd
457
- );
458
- "string" === typeof inlineScriptWithNonce &&
459
- externalRuntimeConfig.push(
460
- scriptCrossOrigin,
461
- escapeTextForBrowser(inlineScriptWithNonce),
426
+ for (importMap = 0; importMap < bootstrapScripts.length; importMap++)
427
+ (idPrefix = bootstrapScripts[importMap]),
428
+ (nonceStyle = inlineScriptWithNonce = void 0),
429
+ (inlineStyleWithNonce = {
430
+ rel: "preload",
431
+ as: "script",
432
+ fetchPriority: "low",
433
+ nonce: nonce
434
+ }),
435
+ "string" === typeof idPrefix
436
+ ? (inlineStyleWithNonce.href = maxHeadersLength = idPrefix)
437
+ : ((inlineStyleWithNonce.href = maxHeadersLength = idPrefix.src),
438
+ (inlineStyleWithNonce.integrity = nonceStyle =
439
+ "string" === typeof idPrefix.integrity
440
+ ? idPrefix.integrity
441
+ : void 0),
442
+ (inlineStyleWithNonce.crossOrigin = inlineScriptWithNonce =
443
+ "string" === typeof idPrefix || null == idPrefix.crossOrigin
444
+ ? void 0
445
+ : "use-credentials" === idPrefix.crossOrigin
446
+ ? "use-credentials"
447
+ : "")),
448
+ (idPrefix = resumableState),
449
+ (bootstrapScriptContent = maxHeadersLength),
450
+ (idPrefix.scriptResources[bootstrapScriptContent] = null),
451
+ (idPrefix.moduleScriptResources[bootstrapScriptContent] = null),
452
+ (idPrefix = []),
453
+ pushLinkImpl(idPrefix, inlineStyleWithNonce),
454
+ onHeaders.bootstrapScripts.add(idPrefix),
455
+ bootstrapChunks.push(
456
+ startScriptSrc,
457
+ escapeTextForBrowser(maxHeadersLength),
462
458
  attributeEnd
463
- );
464
- pushCompletedShellIdAttribute(externalRuntimeConfig, resumableState);
465
- externalRuntimeConfig.push(endAsyncScript);
466
- }
459
+ ),
460
+ externalRuntimeConfig &&
461
+ bootstrapChunks.push(
462
+ scriptNonce,
463
+ escapeTextForBrowser(externalRuntimeConfig),
464
+ attributeEnd
465
+ ),
466
+ "string" === typeof nonceStyle &&
467
+ bootstrapChunks.push(
468
+ scriptIntegirty,
469
+ escapeTextForBrowser(nonceStyle),
470
+ attributeEnd
471
+ ),
472
+ "string" === typeof inlineScriptWithNonce &&
473
+ bootstrapChunks.push(
474
+ scriptCrossOrigin,
475
+ escapeTextForBrowser(inlineScriptWithNonce),
476
+ attributeEnd
477
+ ),
478
+ pushCompletedShellIdAttribute(bootstrapChunks, resumableState),
479
+ bootstrapChunks.push(endAsyncScript);
467
480
  if (void 0 !== bootstrapModules)
468
- for (
469
- bootstrapScripts = 0;
470
- bootstrapScripts < bootstrapModules.length;
471
- bootstrapScripts++
472
- )
473
- (bootstrapScriptContent = bootstrapModules[bootstrapScripts]),
474
- (inlineScriptWithNonce = maxHeadersLength = void 0),
475
- (idPrefix = {
481
+ for (nonce = 0; nonce < bootstrapModules.length; nonce++)
482
+ (nonceStyle = bootstrapModules[nonce]),
483
+ (maxHeadersLength = importMap = void 0),
484
+ (inlineScriptWithNonce = {
476
485
  rel: "modulepreload",
477
486
  fetchPriority: "low",
478
- nonce: nonce
487
+ nonce: externalRuntimeConfig
479
488
  }),
480
- "string" === typeof bootstrapScriptContent
481
- ? (idPrefix.href = importMap = bootstrapScriptContent)
482
- : ((idPrefix.href = importMap = bootstrapScriptContent.src),
483
- (idPrefix.integrity = inlineScriptWithNonce =
484
- "string" === typeof bootstrapScriptContent.integrity
485
- ? bootstrapScriptContent.integrity
489
+ "string" === typeof nonceStyle
490
+ ? (inlineScriptWithNonce.href = bootstrapScripts = nonceStyle)
491
+ : ((inlineScriptWithNonce.href = bootstrapScripts = nonceStyle.src),
492
+ (inlineScriptWithNonce.integrity = maxHeadersLength =
493
+ "string" === typeof nonceStyle.integrity
494
+ ? nonceStyle.integrity
486
495
  : void 0),
487
- (idPrefix.crossOrigin = maxHeadersLength =
488
- "string" === typeof bootstrapScriptContent ||
489
- null == bootstrapScriptContent.crossOrigin
496
+ (inlineScriptWithNonce.crossOrigin = importMap =
497
+ "string" === typeof nonceStyle || null == nonceStyle.crossOrigin
490
498
  ? void 0
491
- : "use-credentials" === bootstrapScriptContent.crossOrigin
499
+ : "use-credentials" === nonceStyle.crossOrigin
492
500
  ? "use-credentials"
493
501
  : "")),
494
- (bootstrapScriptContent = resumableState),
495
- (scriptConfig = importMap),
496
- (bootstrapScriptContent.scriptResources[scriptConfig] = null),
497
- (bootstrapScriptContent.moduleScriptResources[scriptConfig] = null),
498
- (bootstrapScriptContent = []),
499
- pushLinkImpl(bootstrapScriptContent, idPrefix),
500
- onHeaders.bootstrapScripts.add(bootstrapScriptContent),
501
- externalRuntimeConfig.push(
502
+ (nonceStyle = resumableState),
503
+ (inlineStyleWithNonce = bootstrapScripts),
504
+ (nonceStyle.scriptResources[inlineStyleWithNonce] = null),
505
+ (nonceStyle.moduleScriptResources[inlineStyleWithNonce] = null),
506
+ (nonceStyle = []),
507
+ pushLinkImpl(nonceStyle, inlineScriptWithNonce),
508
+ onHeaders.bootstrapScripts.add(nonceStyle),
509
+ bootstrapChunks.push(
502
510
  startModuleSrc,
503
- escapeTextForBrowser(importMap),
511
+ escapeTextForBrowser(bootstrapScripts),
504
512
  attributeEnd
505
513
  ),
506
- nonce &&
507
- externalRuntimeConfig.push(
514
+ externalRuntimeConfig &&
515
+ bootstrapChunks.push(
508
516
  scriptNonce,
509
- escapeTextForBrowser(nonce),
517
+ escapeTextForBrowser(externalRuntimeConfig),
510
518
  attributeEnd
511
519
  ),
512
- "string" === typeof inlineScriptWithNonce &&
513
- externalRuntimeConfig.push(
520
+ "string" === typeof maxHeadersLength &&
521
+ bootstrapChunks.push(
514
522
  scriptIntegirty,
515
- escapeTextForBrowser(inlineScriptWithNonce),
523
+ escapeTextForBrowser(maxHeadersLength),
516
524
  attributeEnd
517
525
  ),
518
- "string" === typeof maxHeadersLength &&
519
- externalRuntimeConfig.push(
526
+ "string" === typeof importMap &&
527
+ bootstrapChunks.push(
520
528
  scriptCrossOrigin,
521
- escapeTextForBrowser(maxHeadersLength),
529
+ escapeTextForBrowser(importMap),
522
530
  attributeEnd
523
531
  ),
524
- pushCompletedShellIdAttribute(externalRuntimeConfig, resumableState),
525
- externalRuntimeConfig.push(endAsyncScript);
532
+ pushCompletedShellIdAttribute(bootstrapChunks, resumableState),
533
+ bootstrapChunks.push(endAsyncScript);
526
534
  return onHeaders;
527
535
  }
528
536
  function createResumableState(
@@ -1875,7 +1883,8 @@ function pushStartInstance(
1875
1883
  case "style":
1876
1884
  var noscriptTagInScope$jscomp$2 = formatContext.tagScope & 1,
1877
1885
  precedence$jscomp$0 = props.precedence,
1878
- href$jscomp$0 = props.href;
1886
+ href$jscomp$0 = props.href,
1887
+ nonce = props.nonce;
1879
1888
  if (
1880
1889
  4 === formatContext.insertionMode ||
1881
1890
  noscriptTagInScope$jscomp$2 ||
@@ -1930,46 +1939,47 @@ function pushStartInstance(
1930
1939
  : void 0)
1931
1940
  ) {
1932
1941
  resumableState.styleResources[href$jscomp$0] = null;
1933
- styleQueue$jscomp$0
1934
- ? styleQueue$jscomp$0.hrefs.push(
1935
- escapeTextForBrowser(href$jscomp$0)
1936
- )
1937
- : ((styleQueue$jscomp$0 = {
1938
- precedence: escapeTextForBrowser(precedence$jscomp$0),
1939
- rules: [],
1940
- hrefs: [escapeTextForBrowser(href$jscomp$0)],
1941
- sheets: new Map()
1942
- }),
1943
- renderState.styles.set(precedence$jscomp$0, styleQueue$jscomp$0));
1944
- var target = styleQueue$jscomp$0.rules,
1945
- children$jscomp$7 = null,
1946
- innerHTML$jscomp$6 = null,
1947
- propKey$jscomp$9;
1948
- for (propKey$jscomp$9 in props)
1949
- if (hasOwnProperty.call(props, propKey$jscomp$9)) {
1950
- var propValue$jscomp$9 = props[propKey$jscomp$9];
1951
- if (null != propValue$jscomp$9)
1952
- switch (propKey$jscomp$9) {
1953
- case "children":
1954
- children$jscomp$7 = propValue$jscomp$9;
1955
- break;
1956
- case "dangerouslySetInnerHTML":
1957
- innerHTML$jscomp$6 = propValue$jscomp$9;
1958
- }
1959
- }
1960
- var child$jscomp$0 = Array.isArray(children$jscomp$7)
1961
- ? 2 > children$jscomp$7.length
1962
- ? children$jscomp$7[0]
1963
- : null
1964
- : children$jscomp$7;
1965
- "function" !== typeof child$jscomp$0 &&
1966
- "symbol" !== typeof child$jscomp$0 &&
1967
- null !== child$jscomp$0 &&
1968
- void 0 !== child$jscomp$0 &&
1969
- target.push(
1970
- ("" + child$jscomp$0).replace(styleRegex, styleReplacer)
1971
- );
1972
- pushInnerHTML(target, innerHTML$jscomp$6, children$jscomp$7);
1942
+ styleQueue$jscomp$0 ||
1943
+ ((styleQueue$jscomp$0 = {
1944
+ precedence: escapeTextForBrowser(precedence$jscomp$0),
1945
+ rules: [],
1946
+ hrefs: [],
1947
+ sheets: new Map()
1948
+ }),
1949
+ renderState.styles.set(precedence$jscomp$0, styleQueue$jscomp$0));
1950
+ var nonceStyle = renderState.nonce.style;
1951
+ if (!nonceStyle || nonceStyle === nonce) {
1952
+ styleQueue$jscomp$0.hrefs.push(escapeTextForBrowser(href$jscomp$0));
1953
+ var target = styleQueue$jscomp$0.rules,
1954
+ children$jscomp$7 = null,
1955
+ innerHTML$jscomp$6 = null,
1956
+ propKey$jscomp$9;
1957
+ for (propKey$jscomp$9 in props)
1958
+ if (hasOwnProperty.call(props, propKey$jscomp$9)) {
1959
+ var propValue$jscomp$9 = props[propKey$jscomp$9];
1960
+ if (null != propValue$jscomp$9)
1961
+ switch (propKey$jscomp$9) {
1962
+ case "children":
1963
+ children$jscomp$7 = propValue$jscomp$9;
1964
+ break;
1965
+ case "dangerouslySetInnerHTML":
1966
+ innerHTML$jscomp$6 = propValue$jscomp$9;
1967
+ }
1968
+ }
1969
+ var child$jscomp$0 = Array.isArray(children$jscomp$7)
1970
+ ? 2 > children$jscomp$7.length
1971
+ ? children$jscomp$7[0]
1972
+ : null
1973
+ : children$jscomp$7;
1974
+ "function" !== typeof child$jscomp$0 &&
1975
+ "symbol" !== typeof child$jscomp$0 &&
1976
+ null !== child$jscomp$0 &&
1977
+ void 0 !== child$jscomp$0 &&
1978
+ target.push(
1979
+ ("" + child$jscomp$0).replace(styleRegex, styleReplacer)
1980
+ );
1981
+ pushInnerHTML(target, innerHTML$jscomp$6, children$jscomp$7);
1982
+ }
1973
1983
  }
1974
1984
  styleQueue$jscomp$0 &&
1975
1985
  hoistableState &&
@@ -2535,7 +2545,7 @@ function escapeJSObjectForInstructionScripts(input) {
2535
2545
  );
2536
2546
  }
2537
2547
  var lateStyleTagResourceOpen1 = stringToPrecomputedChunk(
2538
- '<style media="not all" data-precedence="'
2548
+ ' media="not all" data-precedence="'
2539
2549
  ),
2540
2550
  lateStyleTagResourceOpen2 = stringToPrecomputedChunk('" data-href="'),
2541
2551
  lateStyleTagResourceOpen3 = stringToPrecomputedChunk('">'),
@@ -2547,6 +2557,7 @@ function flushStyleTagsLateForBoundary(styleQueue) {
2547
2557
  hrefs = styleQueue.hrefs,
2548
2558
  i = 0;
2549
2559
  if (hrefs.length) {
2560
+ writeChunk(this, currentlyFlushingRenderState.startInlineStyle);
2550
2561
  writeChunk(this, lateStyleTagResourceOpen1);
2551
2562
  writeChunk(this, styleQueue.precedence);
2552
2563
  for (writeChunk(this, lateStyleTagResourceOpen2); i < hrefs.length - 1; i++)
@@ -2571,7 +2582,9 @@ function hasStylesToHoist(stylesheet) {
2571
2582
  function writeHoistablesForBoundary(destination, hoistableState, renderState) {
2572
2583
  currentlyRenderingBoundaryHasStylesToHoist = !1;
2573
2584
  destinationHasCapacity = !0;
2585
+ currentlyFlushingRenderState = renderState;
2574
2586
  hoistableState.styles.forEach(flushStyleTagsLateForBoundary, destination);
2587
+ currentlyFlushingRenderState = null;
2575
2588
  hoistableState.stylesheets.forEach(hasStylesToHoist);
2576
2589
  currentlyRenderingBoundaryHasStylesToHoist &&
2577
2590
  (renderState.stylesToHoist = !0);
@@ -2589,9 +2602,7 @@ function flushStyleInPreamble(stylesheet) {
2589
2602
  stylesheetFlushingQueue.length = 0;
2590
2603
  stylesheet.state = 2;
2591
2604
  }
2592
- var styleTagResourceOpen1 = stringToPrecomputedChunk(
2593
- '<style data-precedence="'
2594
- ),
2605
+ var styleTagResourceOpen1 = stringToPrecomputedChunk(' data-precedence="'),
2595
2606
  styleTagResourceOpen2 = stringToPrecomputedChunk('" data-href="'),
2596
2607
  spaceSeparator = stringToPrecomputedChunk(" "),
2597
2608
  styleTagResourceOpen3 = stringToPrecomputedChunk('">'),
@@ -2603,6 +2614,7 @@ function flushStylesInPreamble(styleQueue) {
2603
2614
  var rules = styleQueue.rules,
2604
2615
  hrefs = styleQueue.hrefs;
2605
2616
  if (!hasStylesheets || hrefs.length) {
2617
+ writeChunk(this, currentlyFlushingRenderState.startInlineStyle);
2606
2618
  writeChunk(this, styleTagResourceOpen1);
2607
2619
  writeChunk(this, styleQueue.precedence);
2608
2620
  styleQueue = 0;
@@ -6461,7 +6473,9 @@ function flushCompletedQueues(request, destination) {
6461
6473
  renderState.fontPreloads.clear();
6462
6474
  renderState.highImagePreloads.forEach(flushResource, destination);
6463
6475
  renderState.highImagePreloads.clear();
6476
+ currentlyFlushingRenderState = renderState;
6464
6477
  renderState.styles.forEach(flushStylesInPreamble, destination);
6478
+ currentlyFlushingRenderState = null;
6465
6479
  var importMapChunks = renderState.importMapChunks;
6466
6480
  for (i$jscomp$0 = 0; i$jscomp$0 < importMapChunks.length; i$jscomp$0++)
6467
6481
  writeChunk(destination, importMapChunks[i$jscomp$0]);
@@ -6771,11 +6785,11 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
6771
6785
  }
6772
6786
  function ensureCorrectIsomorphicReactVersion() {
6773
6787
  var isomorphicReactPackageVersion = React.version;
6774
- if ("19.2.0-canary-b07717d8-20250528" !== isomorphicReactPackageVersion)
6788
+ if ("19.2.0-canary-526dd340-20250602" !== isomorphicReactPackageVersion)
6775
6789
  throw Error(
6776
6790
  'Incompatible React versions: The "react" and "react-dom" packages must have the exact same version. Instead got:\n - react: ' +
6777
6791
  (isomorphicReactPackageVersion +
6778
- "\n - react-dom: 19.2.0-canary-b07717d8-20250528\nLearn more: https://react.dev/warnings/version-mismatch")
6792
+ "\n - react-dom: 19.2.0-canary-526dd340-20250602\nLearn more: https://react.dev/warnings/version-mismatch")
6779
6793
  );
6780
6794
  }
6781
6795
  ensureCorrectIsomorphicReactVersion();
@@ -6924,4 +6938,4 @@ exports.renderToPipeableStream = function (children, options) {
6924
6938
  }
6925
6939
  };
6926
6940
  };
6927
- exports.version = "19.2.0-canary-b07717d8-20250528";
6941
+ exports.version = "19.2.0-canary-526dd340-20250602";
@@ -416,7 +416,7 @@
416
416
  exports.useFormStatus = function () {
417
417
  return resolveDispatcher().useHostTransitionStatus();
418
418
  };
419
- exports.version = "19.2.0-canary-b07717d8-20250528";
419
+ exports.version = "19.2.0-canary-526dd340-20250602";
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-b07717d8-20250528";
210
+ exports.version = "19.2.0-canary-526dd340-20250602";
@@ -336,5 +336,5 @@
336
336
  }))
337
337
  : Internals.d.m(href));
338
338
  };
339
- exports.version = "19.2.0-canary-b07717d8-20250528";
339
+ exports.version = "19.2.0-canary-526dd340-20250602";
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-b07717d8-20250528";
152
+ exports.version = "19.2.0-canary-526dd340-20250602";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dom",
3
- "version": "19.2.0-canary-b07717d8-20250528",
3
+ "version": "19.2.0-canary-526dd340-20250602",
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-b07717d8-20250528"
20
+ "scheduler": "0.27.0-canary-526dd340-20250602"
21
21
  },
22
22
  "peerDependencies": {
23
- "react": "19.2.0-canary-b07717d8-20250528"
23
+ "react": "19.2.0-canary-526dd340-20250602"
24
24
  },
25
25
  "files": [
26
26
  "LICENSE",