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.
- package/cjs/react-dom-client.development.js +6 -6
- package/cjs/react-dom-client.production.js +6 -6
- package/cjs/react-dom-profiling.development.js +6 -6
- package/cjs/react-dom-profiling.profiling.js +6 -6
- package/cjs/react-dom-server-legacy.browser.development.js +74 -46
- package/cjs/react-dom-server-legacy.browser.production.js +75 -64
- package/cjs/react-dom-server-legacy.node.development.js +74 -46
- package/cjs/react-dom-server-legacy.node.production.js +75 -64
- package/cjs/react-dom-server.browser.development.js +180 -152
- package/cjs/react-dom-server.browser.production.js +171 -155
- package/cjs/react-dom-server.bun.development.js +172 -145
- package/cjs/react-dom-server.bun.production.js +163 -152
- package/cjs/react-dom-server.edge.development.js +180 -152
- package/cjs/react-dom-server.edge.production.js +171 -155
- package/cjs/react-dom-server.node.development.js +177 -149
- package/cjs/react-dom-server.node.production.js +166 -152
- package/cjs/react-dom.development.js +1 -1
- package/cjs/react-dom.production.js +1 -1
- package/cjs/react-dom.react-server.development.js +1 -1
- package/cjs/react-dom.react-server.production.js +1 -1
- package/package.json +3 -3
@@ -380,7 +380,8 @@ ReactDOMSharedInternals.d = {
|
|
380
380
|
S: preinitStyle,
|
381
381
|
M: preinitModuleScript
|
382
382
|
};
|
383
|
-
var PRELOAD_NO_CREDS = []
|
383
|
+
var PRELOAD_NO_CREDS = [],
|
384
|
+
currentlyFlushingRenderState = null;
|
384
385
|
stringToPrecomputedChunk('"></template>');
|
385
386
|
var startInlineScript = stringToPrecomputedChunk("<script"),
|
386
387
|
endInlineScript = stringToPrecomputedChunk("\x3c/script>"),
|
@@ -390,6 +391,7 @@ var startInlineScript = stringToPrecomputedChunk("<script"),
|
|
390
391
|
scriptIntegirty = stringToPrecomputedChunk(' integrity="'),
|
391
392
|
scriptCrossOrigin = stringToPrecomputedChunk(' crossorigin="'),
|
392
393
|
endAsyncScript = stringToPrecomputedChunk(' async="">\x3c/script>'),
|
394
|
+
startInlineStyle = stringToPrecomputedChunk("<style"),
|
393
395
|
scriptRegex = /(<\/|<)(s)(cript)/gi;
|
394
396
|
function scriptReplacer(match, prefix, s, suffix) {
|
395
397
|
return "" + prefix + ("s" === s ? "\\u0073" : "\\u0053") + suffix;
|
@@ -406,21 +408,32 @@ function createRenderState(
|
|
406
408
|
onHeaders,
|
407
409
|
maxHeadersLength
|
408
410
|
) {
|
411
|
+
externalRuntimeConfig =
|
412
|
+
"string" === typeof nonce ? nonce : nonce && nonce.script;
|
409
413
|
var inlineScriptWithNonce =
|
410
|
-
void 0 ===
|
414
|
+
void 0 === externalRuntimeConfig
|
411
415
|
? startInlineScript
|
412
416
|
: stringToPrecomputedChunk(
|
413
|
-
'<script nonce="' +
|
417
|
+
'<script nonce="' +
|
418
|
+
escapeTextForBrowser(externalRuntimeConfig) +
|
419
|
+
'"'
|
414
420
|
),
|
415
|
-
|
416
|
-
|
417
|
-
|
421
|
+
nonceStyle = "string" === typeof nonce ? void 0 : nonce && nonce.style,
|
422
|
+
inlineStyleWithNonce =
|
423
|
+
void 0 === nonceStyle
|
424
|
+
? startInlineStyle
|
425
|
+
: stringToPrecomputedChunk(
|
426
|
+
'<style nonce="' + escapeTextForBrowser(nonceStyle) + '"'
|
427
|
+
),
|
428
|
+
idPrefix = resumableState.idPrefix,
|
429
|
+
bootstrapChunks = [],
|
430
|
+
bootstrapScriptContent = resumableState.bootstrapScriptContent,
|
418
431
|
bootstrapScripts = resumableState.bootstrapScripts,
|
419
432
|
bootstrapModules = resumableState.bootstrapModules;
|
420
433
|
void 0 !== bootstrapScriptContent &&
|
421
|
-
(
|
422
|
-
pushCompletedShellIdAttribute(
|
423
|
-
|
434
|
+
(bootstrapChunks.push(inlineScriptWithNonce),
|
435
|
+
pushCompletedShellIdAttribute(bootstrapChunks, resumableState),
|
436
|
+
bootstrapChunks.push(
|
424
437
|
endOfStartTag,
|
425
438
|
stringToChunk(
|
426
439
|
("" + bootstrapScriptContent).replace(scriptRegex, scriptReplacer)
|
@@ -450,9 +463,10 @@ function createRenderState(
|
|
450
463
|
segmentPrefix: stringToPrecomputedChunk(idPrefix + "S:"),
|
451
464
|
boundaryPrefix: stringToPrecomputedChunk(idPrefix + "B:"),
|
452
465
|
startInlineScript: inlineScriptWithNonce,
|
466
|
+
startInlineStyle: inlineStyleWithNonce,
|
453
467
|
preamble: createPreambleState(),
|
454
468
|
externalRuntimeScript: null,
|
455
|
-
bootstrapChunks:
|
469
|
+
bootstrapChunks: bootstrapChunks,
|
456
470
|
importMapChunks: bootstrapScriptContent,
|
457
471
|
onHeaders: onHeaders,
|
458
472
|
headers: importMap,
|
@@ -479,125 +493,119 @@ function createRenderState(
|
|
479
493
|
scripts: new Map(),
|
480
494
|
moduleScripts: new Map()
|
481
495
|
},
|
482
|
-
nonce:
|
496
|
+
nonce: { script: externalRuntimeConfig, style: nonceStyle },
|
483
497
|
hoistableState: null,
|
484
498
|
stylesToHoist: !1
|
485
499
|
};
|
486
500
|
if (void 0 !== bootstrapScripts)
|
487
|
-
for (importMap = 0; importMap < bootstrapScripts.length; importMap++)
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
attributeEnd
|
520
|
-
);
|
521
|
-
nonce &&
|
522
|
-
externalRuntimeConfig.push(
|
523
|
-
scriptNonce,
|
524
|
-
stringToChunk(escapeTextForBrowser(nonce)),
|
525
|
-
attributeEnd
|
526
|
-
);
|
527
|
-
"string" === typeof idPrefix &&
|
528
|
-
externalRuntimeConfig.push(
|
529
|
-
scriptIntegirty,
|
530
|
-
stringToChunk(escapeTextForBrowser(idPrefix)),
|
531
|
-
attributeEnd
|
532
|
-
);
|
533
|
-
"string" === typeof inlineScriptWithNonce &&
|
534
|
-
externalRuntimeConfig.push(
|
535
|
-
scriptCrossOrigin,
|
536
|
-
stringToChunk(escapeTextForBrowser(inlineScriptWithNonce)),
|
501
|
+
for (importMap = 0; importMap < bootstrapScripts.length; importMap++)
|
502
|
+
(idPrefix = bootstrapScripts[importMap]),
|
503
|
+
(nonceStyle = inlineScriptWithNonce = void 0),
|
504
|
+
(inlineStyleWithNonce = {
|
505
|
+
rel: "preload",
|
506
|
+
as: "script",
|
507
|
+
fetchPriority: "low",
|
508
|
+
nonce: nonce
|
509
|
+
}),
|
510
|
+
"string" === typeof idPrefix
|
511
|
+
? (inlineStyleWithNonce.href = maxHeadersLength = idPrefix)
|
512
|
+
: ((inlineStyleWithNonce.href = maxHeadersLength = idPrefix.src),
|
513
|
+
(inlineStyleWithNonce.integrity = nonceStyle =
|
514
|
+
"string" === typeof idPrefix.integrity
|
515
|
+
? idPrefix.integrity
|
516
|
+
: void 0),
|
517
|
+
(inlineStyleWithNonce.crossOrigin = inlineScriptWithNonce =
|
518
|
+
"string" === typeof idPrefix || null == idPrefix.crossOrigin
|
519
|
+
? void 0
|
520
|
+
: "use-credentials" === idPrefix.crossOrigin
|
521
|
+
? "use-credentials"
|
522
|
+
: "")),
|
523
|
+
(idPrefix = resumableState),
|
524
|
+
(bootstrapScriptContent = maxHeadersLength),
|
525
|
+
(idPrefix.scriptResources[bootstrapScriptContent] = null),
|
526
|
+
(idPrefix.moduleScriptResources[bootstrapScriptContent] = null),
|
527
|
+
(idPrefix = []),
|
528
|
+
pushLinkImpl(idPrefix, inlineStyleWithNonce),
|
529
|
+
onHeaders.bootstrapScripts.add(idPrefix),
|
530
|
+
bootstrapChunks.push(
|
531
|
+
startScriptSrc,
|
532
|
+
stringToChunk(escapeTextForBrowser(maxHeadersLength)),
|
537
533
|
attributeEnd
|
538
|
-
)
|
539
|
-
|
540
|
-
|
541
|
-
|
534
|
+
),
|
535
|
+
externalRuntimeConfig &&
|
536
|
+
bootstrapChunks.push(
|
537
|
+
scriptNonce,
|
538
|
+
stringToChunk(escapeTextForBrowser(externalRuntimeConfig)),
|
539
|
+
attributeEnd
|
540
|
+
),
|
541
|
+
"string" === typeof nonceStyle &&
|
542
|
+
bootstrapChunks.push(
|
543
|
+
scriptIntegirty,
|
544
|
+
stringToChunk(escapeTextForBrowser(nonceStyle)),
|
545
|
+
attributeEnd
|
546
|
+
),
|
547
|
+
"string" === typeof inlineScriptWithNonce &&
|
548
|
+
bootstrapChunks.push(
|
549
|
+
scriptCrossOrigin,
|
550
|
+
stringToChunk(escapeTextForBrowser(inlineScriptWithNonce)),
|
551
|
+
attributeEnd
|
552
|
+
),
|
553
|
+
pushCompletedShellIdAttribute(bootstrapChunks, resumableState),
|
554
|
+
bootstrapChunks.push(endAsyncScript);
|
542
555
|
if (void 0 !== bootstrapModules)
|
543
|
-
for (
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
)
|
548
|
-
(bootstrapScriptContent = bootstrapModules[bootstrapScripts]),
|
549
|
-
(inlineScriptWithNonce = maxHeadersLength = void 0),
|
550
|
-
(idPrefix = {
|
556
|
+
for (nonce = 0; nonce < bootstrapModules.length; nonce++)
|
557
|
+
(nonceStyle = bootstrapModules[nonce]),
|
558
|
+
(maxHeadersLength = importMap = void 0),
|
559
|
+
(inlineScriptWithNonce = {
|
551
560
|
rel: "modulepreload",
|
552
561
|
fetchPriority: "low",
|
553
|
-
nonce:
|
562
|
+
nonce: externalRuntimeConfig
|
554
563
|
}),
|
555
|
-
"string" === typeof
|
556
|
-
? (
|
557
|
-
: ((
|
558
|
-
(
|
559
|
-
"string" === typeof
|
560
|
-
?
|
564
|
+
"string" === typeof nonceStyle
|
565
|
+
? (inlineScriptWithNonce.href = bootstrapScripts = nonceStyle)
|
566
|
+
: ((inlineScriptWithNonce.href = bootstrapScripts = nonceStyle.src),
|
567
|
+
(inlineScriptWithNonce.integrity = maxHeadersLength =
|
568
|
+
"string" === typeof nonceStyle.integrity
|
569
|
+
? nonceStyle.integrity
|
561
570
|
: void 0),
|
562
|
-
(
|
563
|
-
"string" === typeof
|
564
|
-
null == bootstrapScriptContent.crossOrigin
|
571
|
+
(inlineScriptWithNonce.crossOrigin = importMap =
|
572
|
+
"string" === typeof nonceStyle || null == nonceStyle.crossOrigin
|
565
573
|
? void 0
|
566
|
-
: "use-credentials" ===
|
574
|
+
: "use-credentials" === nonceStyle.crossOrigin
|
567
575
|
? "use-credentials"
|
568
576
|
: "")),
|
569
|
-
(
|
570
|
-
(
|
571
|
-
(
|
572
|
-
(
|
573
|
-
(
|
574
|
-
pushLinkImpl(
|
575
|
-
onHeaders.bootstrapScripts.add(
|
576
|
-
|
577
|
+
(nonceStyle = resumableState),
|
578
|
+
(inlineStyleWithNonce = bootstrapScripts),
|
579
|
+
(nonceStyle.scriptResources[inlineStyleWithNonce] = null),
|
580
|
+
(nonceStyle.moduleScriptResources[inlineStyleWithNonce] = null),
|
581
|
+
(nonceStyle = []),
|
582
|
+
pushLinkImpl(nonceStyle, inlineScriptWithNonce),
|
583
|
+
onHeaders.bootstrapScripts.add(nonceStyle),
|
584
|
+
bootstrapChunks.push(
|
577
585
|
startModuleSrc,
|
578
|
-
stringToChunk(escapeTextForBrowser(
|
586
|
+
stringToChunk(escapeTextForBrowser(bootstrapScripts)),
|
579
587
|
attributeEnd
|
580
588
|
),
|
581
|
-
|
582
|
-
|
589
|
+
externalRuntimeConfig &&
|
590
|
+
bootstrapChunks.push(
|
583
591
|
scriptNonce,
|
584
|
-
stringToChunk(escapeTextForBrowser(
|
592
|
+
stringToChunk(escapeTextForBrowser(externalRuntimeConfig)),
|
585
593
|
attributeEnd
|
586
594
|
),
|
587
|
-
"string" === typeof
|
588
|
-
|
595
|
+
"string" === typeof maxHeadersLength &&
|
596
|
+
bootstrapChunks.push(
|
589
597
|
scriptIntegirty,
|
590
|
-
stringToChunk(escapeTextForBrowser(
|
598
|
+
stringToChunk(escapeTextForBrowser(maxHeadersLength)),
|
591
599
|
attributeEnd
|
592
600
|
),
|
593
|
-
"string" === typeof
|
594
|
-
|
601
|
+
"string" === typeof importMap &&
|
602
|
+
bootstrapChunks.push(
|
595
603
|
scriptCrossOrigin,
|
596
|
-
stringToChunk(escapeTextForBrowser(
|
604
|
+
stringToChunk(escapeTextForBrowser(importMap)),
|
597
605
|
attributeEnd
|
598
606
|
),
|
599
|
-
pushCompletedShellIdAttribute(
|
600
|
-
|
607
|
+
pushCompletedShellIdAttribute(bootstrapChunks, resumableState),
|
608
|
+
bootstrapChunks.push(endAsyncScript);
|
601
609
|
return onHeaders;
|
602
610
|
}
|
603
611
|
function createResumableState(
|
@@ -1950,7 +1958,8 @@ function pushStartInstance(
|
|
1950
1958
|
case "style":
|
1951
1959
|
var noscriptTagInScope$jscomp$2 = formatContext.tagScope & 1,
|
1952
1960
|
precedence$jscomp$0 = props.precedence,
|
1953
|
-
href$jscomp$0 = props.href
|
1961
|
+
href$jscomp$0 = props.href,
|
1962
|
+
nonce = props.nonce;
|
1954
1963
|
if (
|
1955
1964
|
4 === formatContext.insertionMode ||
|
1956
1965
|
noscriptTagInScope$jscomp$2 ||
|
@@ -2007,50 +2016,53 @@ function pushStartInstance(
|
|
2007
2016
|
: void 0)
|
2008
2017
|
) {
|
2009
2018
|
resumableState.styleResources[href$jscomp$0] = null;
|
2010
|
-
styleQueue$jscomp$0
|
2011
|
-
|
2012
|
-
|
2013
|
-
|
2014
|
-
|
2015
|
-
|
2016
|
-
|
2017
|
-
|
2018
|
-
|
2019
|
-
|
2020
|
-
|
2021
|
-
|
2022
|
-
|
2023
|
-
|
2024
|
-
children$jscomp$7 = null,
|
2025
|
-
innerHTML$jscomp$6 = null,
|
2026
|
-
propKey$jscomp$9;
|
2027
|
-
for (propKey$jscomp$9 in props)
|
2028
|
-
if (hasOwnProperty.call(props, propKey$jscomp$9)) {
|
2029
|
-
var propValue$jscomp$9 = props[propKey$jscomp$9];
|
2030
|
-
if (null != propValue$jscomp$9)
|
2031
|
-
switch (propKey$jscomp$9) {
|
2032
|
-
case "children":
|
2033
|
-
children$jscomp$7 = propValue$jscomp$9;
|
2034
|
-
break;
|
2035
|
-
case "dangerouslySetInnerHTML":
|
2036
|
-
innerHTML$jscomp$6 = propValue$jscomp$9;
|
2037
|
-
}
|
2038
|
-
}
|
2039
|
-
var child$jscomp$0 = Array.isArray(children$jscomp$7)
|
2040
|
-
? 2 > children$jscomp$7.length
|
2041
|
-
? children$jscomp$7[0]
|
2042
|
-
: null
|
2043
|
-
: children$jscomp$7;
|
2044
|
-
"function" !== typeof child$jscomp$0 &&
|
2045
|
-
"symbol" !== typeof child$jscomp$0 &&
|
2046
|
-
null !== child$jscomp$0 &&
|
2047
|
-
void 0 !== child$jscomp$0 &&
|
2048
|
-
target.push(
|
2049
|
-
stringToChunk(
|
2050
|
-
("" + child$jscomp$0).replace(styleRegex, styleReplacer)
|
2051
|
-
)
|
2019
|
+
styleQueue$jscomp$0 ||
|
2020
|
+
((styleQueue$jscomp$0 = {
|
2021
|
+
precedence: stringToChunk(
|
2022
|
+
escapeTextForBrowser(precedence$jscomp$0)
|
2023
|
+
),
|
2024
|
+
rules: [],
|
2025
|
+
hrefs: [],
|
2026
|
+
sheets: new Map()
|
2027
|
+
}),
|
2028
|
+
renderState.styles.set(precedence$jscomp$0, styleQueue$jscomp$0));
|
2029
|
+
var nonceStyle = renderState.nonce.style;
|
2030
|
+
if (!nonceStyle || nonceStyle === nonce) {
|
2031
|
+
styleQueue$jscomp$0.hrefs.push(
|
2032
|
+
stringToChunk(escapeTextForBrowser(href$jscomp$0))
|
2052
2033
|
);
|
2053
|
-
|
2034
|
+
var target = styleQueue$jscomp$0.rules,
|
2035
|
+
children$jscomp$7 = null,
|
2036
|
+
innerHTML$jscomp$6 = null,
|
2037
|
+
propKey$jscomp$9;
|
2038
|
+
for (propKey$jscomp$9 in props)
|
2039
|
+
if (hasOwnProperty.call(props, propKey$jscomp$9)) {
|
2040
|
+
var propValue$jscomp$9 = props[propKey$jscomp$9];
|
2041
|
+
if (null != propValue$jscomp$9)
|
2042
|
+
switch (propKey$jscomp$9) {
|
2043
|
+
case "children":
|
2044
|
+
children$jscomp$7 = propValue$jscomp$9;
|
2045
|
+
break;
|
2046
|
+
case "dangerouslySetInnerHTML":
|
2047
|
+
innerHTML$jscomp$6 = propValue$jscomp$9;
|
2048
|
+
}
|
2049
|
+
}
|
2050
|
+
var child$jscomp$0 = Array.isArray(children$jscomp$7)
|
2051
|
+
? 2 > children$jscomp$7.length
|
2052
|
+
? children$jscomp$7[0]
|
2053
|
+
: null
|
2054
|
+
: children$jscomp$7;
|
2055
|
+
"function" !== typeof child$jscomp$0 &&
|
2056
|
+
"symbol" !== typeof child$jscomp$0 &&
|
2057
|
+
null !== child$jscomp$0 &&
|
2058
|
+
void 0 !== child$jscomp$0 &&
|
2059
|
+
target.push(
|
2060
|
+
stringToChunk(
|
2061
|
+
("" + child$jscomp$0).replace(styleRegex, styleReplacer)
|
2062
|
+
)
|
2063
|
+
);
|
2064
|
+
pushInnerHTML(target, innerHTML$jscomp$6, children$jscomp$7);
|
2065
|
+
}
|
2054
2066
|
}
|
2055
2067
|
styleQueue$jscomp$0 &&
|
2056
2068
|
hoistableState &&
|
@@ -2608,7 +2620,7 @@ function escapeJSObjectForInstructionScripts(input) {
|
|
2608
2620
|
);
|
2609
2621
|
}
|
2610
2622
|
var lateStyleTagResourceOpen1 = stringToPrecomputedChunk(
|
2611
|
-
'
|
2623
|
+
' media="not all" data-precedence="'
|
2612
2624
|
),
|
2613
2625
|
lateStyleTagResourceOpen2 = stringToPrecomputedChunk('" data-href="'),
|
2614
2626
|
lateStyleTagResourceOpen3 = stringToPrecomputedChunk('">'),
|
@@ -2620,6 +2632,7 @@ function flushStyleTagsLateForBoundary(styleQueue) {
|
|
2620
2632
|
hrefs = styleQueue.hrefs,
|
2621
2633
|
i = 0;
|
2622
2634
|
if (hrefs.length) {
|
2635
|
+
writeChunk(this, currentlyFlushingRenderState.startInlineStyle);
|
2623
2636
|
writeChunk(this, lateStyleTagResourceOpen1);
|
2624
2637
|
writeChunk(this, styleQueue.precedence);
|
2625
2638
|
for (writeChunk(this, lateStyleTagResourceOpen2); i < hrefs.length - 1; i++)
|
@@ -2644,7 +2657,9 @@ function hasStylesToHoist(stylesheet) {
|
|
2644
2657
|
function writeHoistablesForBoundary(destination, hoistableState, renderState) {
|
2645
2658
|
currentlyRenderingBoundaryHasStylesToHoist = !1;
|
2646
2659
|
destinationHasCapacity = !0;
|
2660
|
+
currentlyFlushingRenderState = renderState;
|
2647
2661
|
hoistableState.styles.forEach(flushStyleTagsLateForBoundary, destination);
|
2662
|
+
currentlyFlushingRenderState = null;
|
2648
2663
|
hoistableState.stylesheets.forEach(hasStylesToHoist);
|
2649
2664
|
currentlyRenderingBoundaryHasStylesToHoist &&
|
2650
2665
|
(renderState.stylesToHoist = !0);
|
@@ -2662,9 +2677,7 @@ function flushStyleInPreamble(stylesheet) {
|
|
2662
2677
|
stylesheetFlushingQueue.length = 0;
|
2663
2678
|
stylesheet.state = 2;
|
2664
2679
|
}
|
2665
|
-
var styleTagResourceOpen1 = stringToPrecomputedChunk(
|
2666
|
-
'<style data-precedence="'
|
2667
|
-
),
|
2680
|
+
var styleTagResourceOpen1 = stringToPrecomputedChunk(' data-precedence="'),
|
2668
2681
|
styleTagResourceOpen2 = stringToPrecomputedChunk('" data-href="'),
|
2669
2682
|
spaceSeparator = stringToPrecomputedChunk(" "),
|
2670
2683
|
styleTagResourceOpen3 = stringToPrecomputedChunk('">'),
|
@@ -2676,6 +2689,7 @@ function flushStylesInPreamble(styleQueue) {
|
|
2676
2689
|
var rules = styleQueue.rules,
|
2677
2690
|
hrefs = styleQueue.hrefs;
|
2678
2691
|
if (!hasStylesheets || hrefs.length) {
|
2692
|
+
writeChunk(this, currentlyFlushingRenderState.startInlineStyle);
|
2679
2693
|
writeChunk(this, styleTagResourceOpen1);
|
2680
2694
|
writeChunk(this, styleQueue.precedence);
|
2681
2695
|
styleQueue = 0;
|
@@ -6472,7 +6486,9 @@ function flushCompletedQueues(request, destination) {
|
|
6472
6486
|
renderState.fontPreloads.clear();
|
6473
6487
|
renderState.highImagePreloads.forEach(flushResource, destination);
|
6474
6488
|
renderState.highImagePreloads.clear();
|
6489
|
+
currentlyFlushingRenderState = renderState;
|
6475
6490
|
renderState.styles.forEach(flushStylesInPreamble, destination);
|
6491
|
+
currentlyFlushingRenderState = null;
|
6476
6492
|
var importMapChunks = renderState.importMapChunks;
|
6477
6493
|
for (i$jscomp$0 = 0; i$jscomp$0 < importMapChunks.length; i$jscomp$0++)
|
6478
6494
|
writeChunk(destination, importMapChunks[i$jscomp$0]);
|
@@ -6778,12 +6794,12 @@ function addToReplayParent(node, parentKeyPath, trackedPostpones) {
|
|
6778
6794
|
}
|
6779
6795
|
function ensureCorrectIsomorphicReactVersion() {
|
6780
6796
|
var isomorphicReactPackageVersion = React.version;
|
6781
|
-
if ("19.2.0-canary-
|
6797
|
+
if ("19.2.0-canary-526dd340-20250602" !== isomorphicReactPackageVersion)
|
6782
6798
|
throw Error(
|
6783
6799
|
formatProdErrorMessage(
|
6784
6800
|
527,
|
6785
6801
|
isomorphicReactPackageVersion,
|
6786
|
-
"19.2.0-canary-
|
6802
|
+
"19.2.0-canary-526dd340-20250602"
|
6787
6803
|
)
|
6788
6804
|
);
|
6789
6805
|
}
|
@@ -6930,4 +6946,4 @@ exports.renderToReadableStream = function (children, options) {
|
|
6930
6946
|
startWork(request);
|
6931
6947
|
});
|
6932
6948
|
};
|
6933
|
-
exports.version = "19.2.0-canary-
|
6949
|
+
exports.version = "19.2.0-canary-526dd340-20250602";
|