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.
- 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
@@ -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 ===
|
343
|
+
void 0 === externalRuntimeConfig
|
340
344
|
? startInlineScript
|
341
345
|
: stringToPrecomputedChunk(
|
342
|
-
'<script nonce="' +
|
346
|
+
'<script nonce="' +
|
347
|
+
escapeTextForBrowser(externalRuntimeConfig) +
|
348
|
+
'"'
|
343
349
|
),
|
344
|
-
|
345
|
-
|
346
|
-
|
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
|
-
(
|
351
|
-
pushCompletedShellIdAttribute(
|
352
|
-
|
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:
|
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:
|
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
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
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
|
-
|
465
|
-
|
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
|
-
|
470
|
-
|
471
|
-
|
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:
|
487
|
+
nonce: externalRuntimeConfig
|
479
488
|
}),
|
480
|
-
"string" === typeof
|
481
|
-
? (
|
482
|
-
: ((
|
483
|
-
(
|
484
|
-
"string" === typeof
|
485
|
-
?
|
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
|
-
(
|
488
|
-
"string" === typeof
|
489
|
-
null == bootstrapScriptContent.crossOrigin
|
496
|
+
(inlineScriptWithNonce.crossOrigin = importMap =
|
497
|
+
"string" === typeof nonceStyle || null == nonceStyle.crossOrigin
|
490
498
|
? void 0
|
491
|
-
: "use-credentials" ===
|
499
|
+
: "use-credentials" === nonceStyle.crossOrigin
|
492
500
|
? "use-credentials"
|
493
501
|
: "")),
|
494
|
-
(
|
495
|
-
(
|
496
|
-
(
|
497
|
-
(
|
498
|
-
(
|
499
|
-
pushLinkImpl(
|
500
|
-
onHeaders.bootstrapScripts.add(
|
501
|
-
|
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(
|
511
|
+
escapeTextForBrowser(bootstrapScripts),
|
504
512
|
attributeEnd
|
505
513
|
),
|
506
|
-
|
507
|
-
|
514
|
+
externalRuntimeConfig &&
|
515
|
+
bootstrapChunks.push(
|
508
516
|
scriptNonce,
|
509
|
-
escapeTextForBrowser(
|
517
|
+
escapeTextForBrowser(externalRuntimeConfig),
|
510
518
|
attributeEnd
|
511
519
|
),
|
512
|
-
"string" === typeof
|
513
|
-
|
520
|
+
"string" === typeof maxHeadersLength &&
|
521
|
+
bootstrapChunks.push(
|
514
522
|
scriptIntegirty,
|
515
|
-
escapeTextForBrowser(
|
523
|
+
escapeTextForBrowser(maxHeadersLength),
|
516
524
|
attributeEnd
|
517
525
|
),
|
518
|
-
"string" === typeof
|
519
|
-
|
526
|
+
"string" === typeof importMap &&
|
527
|
+
bootstrapChunks.push(
|
520
528
|
scriptCrossOrigin,
|
521
|
-
escapeTextForBrowser(
|
529
|
+
escapeTextForBrowser(importMap),
|
522
530
|
attributeEnd
|
523
531
|
),
|
524
|
-
pushCompletedShellIdAttribute(
|
525
|
-
|
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
|
-
|
1935
|
-
|
1936
|
-
|
1937
|
-
|
1938
|
-
|
1939
|
-
|
1940
|
-
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
1944
|
-
|
1945
|
-
|
1946
|
-
|
1947
|
-
|
1948
|
-
|
1949
|
-
|
1950
|
-
|
1951
|
-
|
1952
|
-
|
1953
|
-
|
1954
|
-
|
1955
|
-
|
1956
|
-
|
1957
|
-
|
1958
|
-
|
1959
|
-
|
1960
|
-
|
1961
|
-
|
1962
|
-
|
1963
|
-
|
1964
|
-
|
1965
|
-
|
1966
|
-
|
1967
|
-
|
1968
|
-
|
1969
|
-
|
1970
|
-
|
1971
|
-
|
1972
|
-
|
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
|
-
'
|
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-
|
6788
|
+
if ("19.2.0-canary-14094f80-20250529" !== 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-
|
6792
|
+
"\n - react-dom: 19.2.0-canary-14094f80-20250529\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-
|
6941
|
+
exports.version = "19.2.0-canary-14094f80-20250529";
|
@@ -416,7 +416,7 @@
|
|
416
416
|
exports.useFormStatus = function () {
|
417
417
|
return resolveDispatcher().useHostTransitionStatus();
|
418
418
|
};
|
419
|
-
exports.version = "19.2.0-canary-
|
419
|
+
exports.version = "19.2.0-canary-14094f80-20250529";
|
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-
|
210
|
+
exports.version = "19.2.0-canary-14094f80-20250529";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-dom",
|
3
|
-
"version": "19.2.0-canary-
|
3
|
+
"version": "19.2.0-canary-14094f80-20250529",
|
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-
|
20
|
+
"scheduler": "0.27.0-canary-14094f80-20250529"
|
21
21
|
},
|
22
22
|
"peerDependencies": {
|
23
|
-
"react": "19.2.0-canary-
|
23
|
+
"react": "19.2.0-canary-14094f80-20250529"
|
24
24
|
},
|
25
25
|
"files": [
|
26
26
|
"LICENSE",
|