react-dom 19.2.0-canary-b07717d8-20250528 → 19.2.0-canary-14094f80-20250529

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.
@@ -2438,7 +2438,8 @@
2438
2438
  );
2439
2439
  }
2440
2440
  var precedence$jscomp$0 = props.precedence,
2441
- href$jscomp$0 = props.href;
2441
+ href$jscomp$0 = props.href,
2442
+ nonce = props.nonce;
2442
2443
  if (
2443
2444
  formatContext.insertionMode === SVG_MODE ||
2444
2445
  noscriptTagInScope$jscomp$2 ||
@@ -2507,47 +2508,64 @@
2507
2508
  'React encountered a hoistable style tag for the same href as a preload: "%s". When using a style tag to inline styles you should not also preload it as a stylsheet.',
2508
2509
  href$jscomp$0
2509
2510
  );
2510
- styleQueue$jscomp$0
2511
- ? styleQueue$jscomp$0.hrefs.push(
2512
- escapeTextForBrowser(href$jscomp$0)
2513
- )
2514
- : ((styleQueue$jscomp$0 = {
2515
- precedence: escapeTextForBrowser(precedence$jscomp$0),
2516
- rules: [],
2517
- hrefs: [escapeTextForBrowser(href$jscomp$0)],
2518
- sheets: new Map()
2519
- }),
2520
- renderState.styles.set(
2511
+ styleQueue$jscomp$0 ||
2512
+ ((styleQueue$jscomp$0 = {
2513
+ precedence: escapeTextForBrowser(precedence$jscomp$0),
2514
+ rules: [],
2515
+ hrefs: [],
2516
+ sheets: new Map()
2517
+ }),
2518
+ renderState.styles.set(
2519
+ precedence$jscomp$0,
2520
+ styleQueue$jscomp$0
2521
+ ));
2522
+ var nonceStyle = renderState.nonce.style;
2523
+ if (nonceStyle && nonceStyle !== nonce)
2524
+ console.error(
2525
+ 'React encountered a style tag with `precedence` "%s" and `nonce` "%s". When React manages style rules using `precedence` it will only include rules if the nonce matches the style nonce "%s" that was included with this render.',
2526
+ precedence$jscomp$0,
2527
+ nonce,
2528
+ nonceStyle
2529
+ );
2530
+ else {
2531
+ !nonceStyle &&
2532
+ nonce &&
2533
+ console.error(
2534
+ 'React encountered a style tag with `precedence` "%s" and `nonce` "%s". When React manages style rules using `precedence` it will only include a nonce attributes if you also provide the same style nonce value as a render option.',
2521
2535
  precedence$jscomp$0,
2522
- styleQueue$jscomp$0
2523
- ));
2524
- var target = styleQueue$jscomp$0.rules,
2525
- children$jscomp$9 = null,
2526
- innerHTML$jscomp$6 = null,
2527
- propKey$jscomp$9;
2528
- for (propKey$jscomp$9 in props)
2529
- if (hasOwnProperty.call(props, propKey$jscomp$9)) {
2530
- var propValue$jscomp$9 = props[propKey$jscomp$9];
2531
- if (null != propValue$jscomp$9)
2532
- switch (propKey$jscomp$9) {
2533
- case "children":
2534
- children$jscomp$9 = propValue$jscomp$9;
2535
- break;
2536
- case "dangerouslySetInnerHTML":
2537
- innerHTML$jscomp$6 = propValue$jscomp$9;
2538
- }
2539
- }
2540
- var child$jscomp$2 = Array.isArray(children$jscomp$9)
2541
- ? 2 > children$jscomp$9.length
2542
- ? children$jscomp$9[0]
2543
- : null
2544
- : children$jscomp$9;
2545
- "function" !== typeof child$jscomp$2 &&
2546
- "symbol" !== typeof child$jscomp$2 &&
2547
- null !== child$jscomp$2 &&
2548
- void 0 !== child$jscomp$2 &&
2549
- target.push(escapeStyleTextContent(child$jscomp$2));
2550
- pushInnerHTML(target, innerHTML$jscomp$6, children$jscomp$9);
2536
+ nonce
2537
+ );
2538
+ styleQueue$jscomp$0.hrefs.push(
2539
+ escapeTextForBrowser(href$jscomp$0)
2540
+ );
2541
+ var target = styleQueue$jscomp$0.rules,
2542
+ children$jscomp$9 = null,
2543
+ innerHTML$jscomp$6 = null,
2544
+ propKey$jscomp$9;
2545
+ for (propKey$jscomp$9 in props)
2546
+ if (hasOwnProperty.call(props, propKey$jscomp$9)) {
2547
+ var propValue$jscomp$9 = props[propKey$jscomp$9];
2548
+ if (null != propValue$jscomp$9)
2549
+ switch (propKey$jscomp$9) {
2550
+ case "children":
2551
+ children$jscomp$9 = propValue$jscomp$9;
2552
+ break;
2553
+ case "dangerouslySetInnerHTML":
2554
+ innerHTML$jscomp$6 = propValue$jscomp$9;
2555
+ }
2556
+ }
2557
+ var child$jscomp$2 = Array.isArray(children$jscomp$9)
2558
+ ? 2 > children$jscomp$9.length
2559
+ ? children$jscomp$9[0]
2560
+ : null
2561
+ : children$jscomp$9;
2562
+ "function" !== typeof child$jscomp$2 &&
2563
+ "symbol" !== typeof child$jscomp$2 &&
2564
+ null !== child$jscomp$2 &&
2565
+ void 0 !== child$jscomp$2 &&
2566
+ target.push(escapeStyleTextContent(child$jscomp$2));
2567
+ pushInnerHTML(target, innerHTML$jscomp$6, children$jscomp$9);
2568
+ }
2551
2569
  }
2552
2570
  styleQueue$jscomp$0 &&
2553
2571
  hoistableState &&
@@ -3039,6 +3057,7 @@
3039
3057
  );
3040
3058
  var i = 0;
3041
3059
  if (hrefs.length) {
3060
+ this.push(currentlyFlushingRenderState.startInlineStyle);
3042
3061
  this.push(lateStyleTagResourceOpen1);
3043
3062
  this.push(styleQueue.precedence);
3044
3063
  for (this.push(lateStyleTagResourceOpen2); i < hrefs.length - 1; i++)
@@ -3064,7 +3083,9 @@
3064
3083
  ) {
3065
3084
  currentlyRenderingBoundaryHasStylesToHoist = !1;
3066
3085
  destinationHasCapacity = !0;
3086
+ currentlyFlushingRenderState = renderState;
3067
3087
  hoistableState.styles.forEach(flushStyleTagsLateForBoundary, destination);
3088
+ currentlyFlushingRenderState = null;
3068
3089
  hoistableState.stylesheets.forEach(hasStylesToHoist);
3069
3090
  currentlyRenderingBoundaryHasStylesToHoist &&
3070
3091
  (renderState.stylesToHoist = !0);
@@ -3088,6 +3109,7 @@
3088
3109
  var rules = styleQueue.rules,
3089
3110
  hrefs = styleQueue.hrefs;
3090
3111
  if (!hasStylesheets || hrefs.length) {
3112
+ this.push(currentlyFlushingRenderState.startInlineStyle);
3091
3113
  this.push(styleTagResourceOpen1);
3092
3114
  this.push(styleQueue.precedence);
3093
3115
  styleQueue = 0;
@@ -3377,6 +3399,7 @@
3377
3399
  segmentPrefix: idPrefix + "S:",
3378
3400
  boundaryPrefix: idPrefix + "B:",
3379
3401
  startInlineScript: "<script",
3402
+ startInlineStyle: "<style",
3380
3403
  preamble: { htmlChunks: null, headChunks: null, bodyChunks: null },
3381
3404
  externalRuntimeScript: null,
3382
3405
  bootstrapChunks: bootstrapChunks,
@@ -3406,7 +3429,7 @@
3406
3429
  scripts: new Map(),
3407
3430
  moduleScripts: new Map()
3408
3431
  },
3409
- nonce: void 0,
3432
+ nonce: { script: void 0, style: void 0 },
3410
3433
  hoistableState: null,
3411
3434
  stylesToHoist: !1
3412
3435
  };
@@ -3518,6 +3541,7 @@
3518
3541
  segmentPrefix: idPrefix.segmentPrefix,
3519
3542
  boundaryPrefix: idPrefix.boundaryPrefix,
3520
3543
  startInlineScript: idPrefix.startInlineScript,
3544
+ startInlineStyle: idPrefix.startInlineStyle,
3521
3545
  preamble: idPrefix.preamble,
3522
3546
  externalRuntimeScript: idPrefix.externalRuntimeScript,
3523
3547
  bootstrapChunks: idPrefix.bootstrapChunks,
@@ -3536,6 +3560,7 @@
3536
3560
  scripts: idPrefix.scripts,
3537
3561
  bulkPreloads: idPrefix.bulkPreloads,
3538
3562
  preloads: idPrefix.preloads,
3563
+ nonce: idPrefix.nonce,
3539
3564
  stylesToHoist: idPrefix.stylesToHoist,
3540
3565
  generateStaticMarkup: generateStaticMarkup
3541
3566
  };
@@ -7735,7 +7760,9 @@
7735
7760
  renderState.fontPreloads.clear();
7736
7761
  renderState.highImagePreloads.forEach(flushResource, destination);
7737
7762
  renderState.highImagePreloads.clear();
7763
+ currentlyFlushingRenderState = renderState;
7738
7764
  renderState.styles.forEach(flushStylesInPreamble, destination);
7765
+ currentlyFlushingRenderState = null;
7739
7766
  var importMapChunks = renderState.importMapChunks;
7740
7767
  for (
7741
7768
  i$jscomp$0 = 0;
@@ -9206,7 +9233,8 @@
9206
9233
  EXISTS = null,
9207
9234
  PRELOAD_NO_CREDS = [];
9208
9235
  Object.freeze(PRELOAD_NO_CREDS);
9209
- var endInlineScript = "\x3c/script>",
9236
+ var currentlyFlushingRenderState = null,
9237
+ endInlineScript = "\x3c/script>",
9210
9238
  scriptRegex = /(<\/|<)(s)(cript)/gi;
9211
9239
  var didWarnForNewBooleanPropsWithEmptyValue = {};
9212
9240
  var ROOT_HTML_MODE = 0,
@@ -9312,14 +9340,14 @@
9312
9340
  clientRenderScriptEnd = ")\x3c/script>",
9313
9341
  regexForJSStringsInInstructionScripts = /[<\u2028\u2029]/g,
9314
9342
  regexForJSStringsInScripts = /[&><\u2028\u2029]/g,
9315
- lateStyleTagResourceOpen1 = '<style media="not all" data-precedence="',
9343
+ lateStyleTagResourceOpen1 = ' media="not all" data-precedence="',
9316
9344
  lateStyleTagResourceOpen2 = '" data-href="',
9317
9345
  lateStyleTagResourceOpen3 = '">',
9318
9346
  lateStyleTagTemplateClose = "</style>",
9319
9347
  currentlyRenderingBoundaryHasStylesToHoist = !1,
9320
9348
  destinationHasCapacity = !0,
9321
9349
  stylesheetFlushingQueue = [],
9322
- styleTagResourceOpen1 = '<style data-precedence="',
9350
+ styleTagResourceOpen1 = ' data-precedence="',
9323
9351
  styleTagResourceOpen2 = '" data-href="',
9324
9352
  spaceSeparator = " ",
9325
9353
  styleTagResourceOpen3 = '">',
@@ -9598,5 +9626,5 @@
9598
9626
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
9599
9627
  );
9600
9628
  };
9601
- exports.version = "19.2.0-canary-b07717d8-20250528";
9629
+ exports.version = "19.2.0-canary-14094f80-20250529";
9602
9630
  })();
@@ -290,6 +290,7 @@ ReactDOMSharedInternals.d = {
290
290
  M: preinitModuleScript
291
291
  };
292
292
  var PRELOAD_NO_CREDS = [],
293
+ currentlyFlushingRenderState = null,
293
294
  scriptRegex = /(<\/|<)(s)(cript)/gi;
294
295
  function scriptReplacer(match, prefix, s, suffix) {
295
296
  return "" + prefix + ("s" === s ? "\\u0073" : "\\u0053") + suffix;
@@ -1537,7 +1538,8 @@ function pushStartInstance(
1537
1538
  case "style":
1538
1539
  var noscriptTagInScope$jscomp$2 = formatContext.tagScope & 1,
1539
1540
  precedence$jscomp$0 = props.precedence,
1540
- href$jscomp$0 = props.href;
1541
+ href$jscomp$0 = props.href,
1542
+ nonce = props.nonce;
1541
1543
  if (
1542
1544
  4 === formatContext.insertionMode ||
1543
1545
  noscriptTagInScope$jscomp$2 ||
@@ -1592,46 +1594,47 @@ function pushStartInstance(
1592
1594
  : void 0)
1593
1595
  ) {
1594
1596
  resumableState.styleResources[href$jscomp$0] = null;
1595
- styleQueue$jscomp$0
1596
- ? styleQueue$jscomp$0.hrefs.push(
1597
- escapeTextForBrowser(href$jscomp$0)
1598
- )
1599
- : ((styleQueue$jscomp$0 = {
1600
- precedence: escapeTextForBrowser(precedence$jscomp$0),
1601
- rules: [],
1602
- hrefs: [escapeTextForBrowser(href$jscomp$0)],
1603
- sheets: new Map()
1604
- }),
1605
- renderState.styles.set(precedence$jscomp$0, styleQueue$jscomp$0));
1606
- var target = styleQueue$jscomp$0.rules,
1607
- children$jscomp$7 = null,
1608
- innerHTML$jscomp$6 = null,
1609
- propKey$jscomp$9;
1610
- for (propKey$jscomp$9 in props)
1611
- if (hasOwnProperty.call(props, propKey$jscomp$9)) {
1612
- var propValue$jscomp$9 = props[propKey$jscomp$9];
1613
- if (null != propValue$jscomp$9)
1614
- switch (propKey$jscomp$9) {
1615
- case "children":
1616
- children$jscomp$7 = propValue$jscomp$9;
1617
- break;
1618
- case "dangerouslySetInnerHTML":
1619
- innerHTML$jscomp$6 = propValue$jscomp$9;
1620
- }
1621
- }
1622
- var child$jscomp$0 = Array.isArray(children$jscomp$7)
1623
- ? 2 > children$jscomp$7.length
1624
- ? children$jscomp$7[0]
1625
- : null
1626
- : children$jscomp$7;
1627
- "function" !== typeof child$jscomp$0 &&
1628
- "symbol" !== typeof child$jscomp$0 &&
1629
- null !== child$jscomp$0 &&
1630
- void 0 !== child$jscomp$0 &&
1631
- target.push(
1632
- ("" + child$jscomp$0).replace(styleRegex, styleReplacer)
1633
- );
1634
- pushInnerHTML(target, innerHTML$jscomp$6, children$jscomp$7);
1597
+ styleQueue$jscomp$0 ||
1598
+ ((styleQueue$jscomp$0 = {
1599
+ precedence: escapeTextForBrowser(precedence$jscomp$0),
1600
+ rules: [],
1601
+ hrefs: [],
1602
+ sheets: new Map()
1603
+ }),
1604
+ renderState.styles.set(precedence$jscomp$0, styleQueue$jscomp$0));
1605
+ var nonceStyle = renderState.nonce.style;
1606
+ if (!nonceStyle || nonceStyle === nonce) {
1607
+ styleQueue$jscomp$0.hrefs.push(escapeTextForBrowser(href$jscomp$0));
1608
+ var target = styleQueue$jscomp$0.rules,
1609
+ children$jscomp$7 = null,
1610
+ innerHTML$jscomp$6 = null,
1611
+ propKey$jscomp$9;
1612
+ for (propKey$jscomp$9 in props)
1613
+ if (hasOwnProperty.call(props, propKey$jscomp$9)) {
1614
+ var propValue$jscomp$9 = props[propKey$jscomp$9];
1615
+ if (null != propValue$jscomp$9)
1616
+ switch (propKey$jscomp$9) {
1617
+ case "children":
1618
+ children$jscomp$7 = propValue$jscomp$9;
1619
+ break;
1620
+ case "dangerouslySetInnerHTML":
1621
+ innerHTML$jscomp$6 = propValue$jscomp$9;
1622
+ }
1623
+ }
1624
+ var child$jscomp$0 = Array.isArray(children$jscomp$7)
1625
+ ? 2 > children$jscomp$7.length
1626
+ ? children$jscomp$7[0]
1627
+ : null
1628
+ : children$jscomp$7;
1629
+ "function" !== typeof child$jscomp$0 &&
1630
+ "symbol" !== typeof child$jscomp$0 &&
1631
+ null !== child$jscomp$0 &&
1632
+ void 0 !== child$jscomp$0 &&
1633
+ target.push(
1634
+ ("" + child$jscomp$0).replace(styleRegex, styleReplacer)
1635
+ );
1636
+ pushInnerHTML(target, innerHTML$jscomp$6, children$jscomp$7);
1637
+ }
1635
1638
  }
1636
1639
  styleQueue$jscomp$0 &&
1637
1640
  hoistableState &&
@@ -2110,7 +2113,8 @@ function flushStyleTagsLateForBoundary(styleQueue) {
2110
2113
  hrefs = styleQueue.hrefs,
2111
2114
  i = 0;
2112
2115
  if (hrefs.length) {
2113
- this.push('<style media="not all" data-precedence="');
2116
+ this.push(currentlyFlushingRenderState.startInlineStyle);
2117
+ this.push(' media="not all" data-precedence="');
2114
2118
  this.push(styleQueue.precedence);
2115
2119
  for (this.push('" data-href="'); i < hrefs.length - 1; i++)
2116
2120
  this.push(hrefs[i]), this.push(" ");
@@ -2131,7 +2135,9 @@ function hasStylesToHoist(stylesheet) {
2131
2135
  function writeHoistablesForBoundary(destination, hoistableState, renderState) {
2132
2136
  currentlyRenderingBoundaryHasStylesToHoist = !1;
2133
2137
  destinationHasCapacity = !0;
2138
+ currentlyFlushingRenderState = renderState;
2134
2139
  hoistableState.styles.forEach(flushStyleTagsLateForBoundary, destination);
2140
+ currentlyFlushingRenderState = null;
2135
2141
  hoistableState.stylesheets.forEach(hasStylesToHoist);
2136
2142
  currentlyRenderingBoundaryHasStylesToHoist &&
2137
2143
  (renderState.stylesToHoist = !0);
@@ -2156,7 +2162,8 @@ function flushStylesInPreamble(styleQueue) {
2156
2162
  var rules = styleQueue.rules,
2157
2163
  hrefs = styleQueue.hrefs;
2158
2164
  if (!hasStylesheets || hrefs.length) {
2159
- this.push('<style data-precedence="');
2165
+ this.push(currentlyFlushingRenderState.startInlineStyle);
2166
+ this.push(' data-precedence="');
2160
2167
  this.push(styleQueue.precedence);
2161
2168
  styleQueue = 0;
2162
2169
  if (hrefs.length) {
@@ -2737,16 +2744,16 @@ function createRenderState(resumableState, generateStaticMarkup) {
2737
2744
  "\x3c/script>"
2738
2745
  ));
2739
2746
  bootstrapScriptContent = idPrefix + "P:";
2740
- var JSCompiler_object_inline_segmentPrefix_1654 = idPrefix + "S:";
2747
+ var JSCompiler_object_inline_segmentPrefix_1665 = idPrefix + "S:";
2741
2748
  idPrefix += "B:";
2742
- var JSCompiler_object_inline_preconnects_1667 = new Set(),
2743
- JSCompiler_object_inline_fontPreloads_1668 = new Set(),
2744
- JSCompiler_object_inline_highImagePreloads_1669 = new Set(),
2745
- JSCompiler_object_inline_styles_1670 = new Map(),
2746
- JSCompiler_object_inline_bootstrapScripts_1671 = new Set(),
2747
- JSCompiler_object_inline_scripts_1672 = new Set(),
2748
- JSCompiler_object_inline_bulkPreloads_1673 = new Set(),
2749
- JSCompiler_object_inline_preloads_1674 = {
2749
+ var JSCompiler_object_inline_preconnects_1679 = new Set(),
2750
+ JSCompiler_object_inline_fontPreloads_1680 = new Set(),
2751
+ JSCompiler_object_inline_highImagePreloads_1681 = new Set(),
2752
+ JSCompiler_object_inline_styles_1682 = new Map(),
2753
+ JSCompiler_object_inline_bootstrapScripts_1683 = new Set(),
2754
+ JSCompiler_object_inline_scripts_1684 = new Set(),
2755
+ JSCompiler_object_inline_bulkPreloads_1685 = new Set(),
2756
+ JSCompiler_object_inline_preloads_1686 = {
2750
2757
  images: new Map(),
2751
2758
  stylesheets: new Map(),
2752
2759
  scripts: new Map(),
@@ -2783,7 +2790,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
2783
2790
  scriptConfig.moduleScriptResources[href] = null;
2784
2791
  scriptConfig = [];
2785
2792
  pushLinkImpl(scriptConfig, props);
2786
- JSCompiler_object_inline_bootstrapScripts_1671.add(scriptConfig);
2793
+ JSCompiler_object_inline_bootstrapScripts_1683.add(scriptConfig);
2787
2794
  bootstrapChunks.push('<script src="', escapeTextForBrowser(src), '"');
2788
2795
  "string" === typeof integrity &&
2789
2796
  bootstrapChunks.push(
@@ -2830,7 +2837,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
2830
2837
  (props.moduleScriptResources[scriptConfig] = null),
2831
2838
  (props = []),
2832
2839
  pushLinkImpl(props, integrity),
2833
- JSCompiler_object_inline_bootstrapScripts_1671.add(props),
2840
+ JSCompiler_object_inline_bootstrapScripts_1683.add(props),
2834
2841
  bootstrapChunks.push(
2835
2842
  '<script type="module" src="',
2836
2843
  escapeTextForBrowser(i),
@@ -2852,9 +2859,10 @@ function createRenderState(resumableState, generateStaticMarkup) {
2852
2859
  bootstrapChunks.push(' async="">\x3c/script>');
2853
2860
  return {
2854
2861
  placeholderPrefix: bootstrapScriptContent,
2855
- segmentPrefix: JSCompiler_object_inline_segmentPrefix_1654,
2862
+ segmentPrefix: JSCompiler_object_inline_segmentPrefix_1665,
2856
2863
  boundaryPrefix: idPrefix,
2857
2864
  startInlineScript: "<script",
2865
+ startInlineStyle: "<style",
2858
2866
  preamble: { htmlChunks: null, headChunks: null, bodyChunks: null },
2859
2867
  externalRuntimeScript: null,
2860
2868
  bootstrapChunks: bootstrapChunks,
@@ -2871,14 +2879,15 @@ function createRenderState(resumableState, generateStaticMarkup) {
2871
2879
  charsetChunks: [],
2872
2880
  viewportChunks: [],
2873
2881
  hoistableChunks: [],
2874
- preconnects: JSCompiler_object_inline_preconnects_1667,
2875
- fontPreloads: JSCompiler_object_inline_fontPreloads_1668,
2876
- highImagePreloads: JSCompiler_object_inline_highImagePreloads_1669,
2877
- styles: JSCompiler_object_inline_styles_1670,
2878
- bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1671,
2879
- scripts: JSCompiler_object_inline_scripts_1672,
2880
- bulkPreloads: JSCompiler_object_inline_bulkPreloads_1673,
2881
- preloads: JSCompiler_object_inline_preloads_1674,
2882
+ preconnects: JSCompiler_object_inline_preconnects_1679,
2883
+ fontPreloads: JSCompiler_object_inline_fontPreloads_1680,
2884
+ highImagePreloads: JSCompiler_object_inline_highImagePreloads_1681,
2885
+ styles: JSCompiler_object_inline_styles_1682,
2886
+ bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1683,
2887
+ scripts: JSCompiler_object_inline_scripts_1684,
2888
+ bulkPreloads: JSCompiler_object_inline_bulkPreloads_1685,
2889
+ preloads: JSCompiler_object_inline_preloads_1686,
2890
+ nonce: { script: void 0, style: void 0 },
2882
2891
  stylesToHoist: !1,
2883
2892
  generateStaticMarkup: generateStaticMarkup
2884
2893
  };
@@ -6125,7 +6134,9 @@ function flushCompletedQueues(request, destination) {
6125
6134
  renderState.fontPreloads.clear();
6126
6135
  renderState.highImagePreloads.forEach(flushResource, destination);
6127
6136
  renderState.highImagePreloads.clear();
6137
+ currentlyFlushingRenderState = renderState;
6128
6138
  renderState.styles.forEach(flushStylesInPreamble, destination);
6139
+ currentlyFlushingRenderState = null;
6129
6140
  var importMapChunks = renderState.importMapChunks;
6130
6141
  for (i$jscomp$0 = 0; i$jscomp$0 < importMapChunks.length; i$jscomp$0++)
6131
6142
  destination.push(importMapChunks[i$jscomp$0]);
@@ -6478,4 +6489,4 @@ exports.renderToString = function (children, options) {
6478
6489
  'The server used "renderToString" which does not support Suspense. If you intended for this Suspense boundary to render the fallback content on the server consider throwing an Error somewhere within the Suspense boundary. If you intended to have the server wait for the suspended component please switch to "renderToPipeableStream" which supports Suspense on the server'
6479
6490
  );
6480
6491
  };
6481
- exports.version = "19.2.0-canary-b07717d8-20250528";
6492
+ exports.version = "19.2.0-canary-14094f80-20250529";