react-dom 19.2.0-canary-3820740a-20250509 → 19.2.0-canary-b94603b9-20250513
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 +5 -5
- package/cjs/react-dom-client.production.js +5 -5
- package/cjs/react-dom-profiling.development.js +5 -5
- package/cjs/react-dom-profiling.profiling.js +5 -5
- package/cjs/react-dom-server-legacy.browser.development.js +52 -78
- package/cjs/react-dom-server-legacy.browser.production.js +64 -82
- package/cjs/react-dom-server-legacy.node.development.js +52 -78
- package/cjs/react-dom-server-legacy.node.production.js +64 -82
- package/cjs/react-dom-server.browser.development.js +51 -76
- package/cjs/react-dom-server.browser.production.js +44 -58
- package/cjs/react-dom-server.bun.development.js +48 -58
- package/cjs/react-dom-server.bun.production.js +44 -56
- package/cjs/react-dom-server.edge.development.js +51 -76
- package/cjs/react-dom-server.edge.production.js +44 -58
- package/cjs/react-dom-server.node.development.js +48 -70
- package/cjs/react-dom-server.node.production.js +41 -55
- 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
|
@@ -3089,15 +3089,6 @@
|
|
|
3089
3089
|
styleQueue.sheets.forEach(preloadLateStyle, this);
|
|
3090
3090
|
styleQueue.sheets.clear();
|
|
3091
3091
|
}
|
|
3092
|
-
function writeCompletedShellIdAttribute(destination, resumableState) {
|
|
3093
|
-
(resumableState.instructions & SentCompletedShellId) === NothingSent &&
|
|
3094
|
-
((resumableState.instructions |= SentCompletedShellId),
|
|
3095
|
-
(resumableState = "\u00ab" + resumableState.idPrefix + "R\u00bb"),
|
|
3096
|
-
destination.push(completedShellIdAttributeStart),
|
|
3097
|
-
(resumableState = escapeTextForBrowser(resumableState)),
|
|
3098
|
-
destination.push(resumableState),
|
|
3099
|
-
destination.push(attributeEnd));
|
|
3100
|
-
}
|
|
3101
3092
|
function pushCompletedShellIdAttribute(target, resumableState) {
|
|
3102
3093
|
(resumableState.instructions & SentCompletedShellId) === NothingSent &&
|
|
3103
3094
|
((resumableState.instructions |= SentCompletedShellId),
|
|
@@ -7240,8 +7231,7 @@
|
|
|
7240
7231
|
var completedPreambleSegments = request.completedPreambleSegments;
|
|
7241
7232
|
if (null === completedPreambleSegments) return;
|
|
7242
7233
|
flushedByteSize = request.byteSize;
|
|
7243
|
-
var
|
|
7244
|
-
renderState = request.renderState,
|
|
7234
|
+
var renderState = request.renderState,
|
|
7245
7235
|
preamble = renderState.preamble,
|
|
7246
7236
|
htmlChunks = preamble.htmlChunks,
|
|
7247
7237
|
headChunks = preamble.headChunks,
|
|
@@ -7300,13 +7290,6 @@
|
|
|
7300
7290
|
renderState.scripts.clear();
|
|
7301
7291
|
renderState.bulkPreloads.forEach(flushResource, destination);
|
|
7302
7292
|
renderState.bulkPreloads.clear();
|
|
7303
|
-
if (htmlChunks || headChunks) {
|
|
7304
|
-
var shellId = "\u00ab" + resumableState.idPrefix + "R\u00bb";
|
|
7305
|
-
destination.push(blockingRenderChunkStart);
|
|
7306
|
-
var chunk$jscomp$0 = escapeTextForBrowser(shellId);
|
|
7307
|
-
destination.push(chunk$jscomp$0);
|
|
7308
|
-
destination.push(blockingRenderChunkEnd);
|
|
7309
|
-
}
|
|
7310
7293
|
var hoistableChunks = renderState.hoistableChunks;
|
|
7311
7294
|
for (
|
|
7312
7295
|
i$jscomp$0 = 0;
|
|
@@ -7315,23 +7298,19 @@
|
|
|
7315
7298
|
)
|
|
7316
7299
|
destination.push(hoistableChunks[i$jscomp$0]);
|
|
7317
7300
|
for (
|
|
7318
|
-
|
|
7319
|
-
|
|
7320
|
-
|
|
7301
|
+
renderState = hoistableChunks.length = 0;
|
|
7302
|
+
renderState < completedPreambleSegments.length;
|
|
7303
|
+
renderState++
|
|
7321
7304
|
) {
|
|
7322
|
-
var segments = completedPreambleSegments[
|
|
7323
|
-
for (
|
|
7324
|
-
|
|
7325
|
-
renderState < segments.length;
|
|
7326
|
-
renderState++
|
|
7327
|
-
)
|
|
7328
|
-
flushSegment(request, destination, segments[renderState], null);
|
|
7305
|
+
var segments = completedPreambleSegments[renderState];
|
|
7306
|
+
for (preamble = 0; preamble < segments.length; preamble++)
|
|
7307
|
+
flushSegment(request, destination, segments[preamble], null);
|
|
7329
7308
|
}
|
|
7330
7309
|
var preamble$jscomp$0 = request.renderState.preamble,
|
|
7331
7310
|
headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
|
|
7332
7311
|
if (preamble$jscomp$0.htmlChunks || headChunks$jscomp$0) {
|
|
7333
|
-
var chunk$jscomp$
|
|
7334
|
-
destination.push(chunk$jscomp$
|
|
7312
|
+
var chunk$jscomp$0 = endChunkForTag("head");
|
|
7313
|
+
destination.push(chunk$jscomp$0);
|
|
7335
7314
|
}
|
|
7336
7315
|
var bodyChunks = preamble$jscomp$0.bodyChunks;
|
|
7337
7316
|
if (bodyChunks)
|
|
@@ -7343,40 +7322,37 @@
|
|
|
7343
7322
|
destination.push(bodyChunks[completedPreambleSegments]);
|
|
7344
7323
|
flushSegment(request, destination, completedRootSegment, null);
|
|
7345
7324
|
request.completedRootSegment = null;
|
|
7346
|
-
var
|
|
7347
|
-
renderState$jscomp$0 = request.renderState;
|
|
7348
|
-
(0 === request.allPendingTasks &&
|
|
7349
|
-
0 === request.clientRenderedBoundaries.length &&
|
|
7350
|
-
0 === request.completedBoundaries.length &&
|
|
7351
|
-
(null === request.trackedPostpones ||
|
|
7352
|
-
(0 === request.trackedPostpones.rootNodes.length &&
|
|
7353
|
-
null === request.trackedPostpones.rootSlots))) ||
|
|
7354
|
-
(resumableState$jscomp$0.instructions & SentMarkShellTime) !==
|
|
7355
|
-
NothingSent ||
|
|
7356
|
-
((resumableState$jscomp$0.instructions |= SentMarkShellTime),
|
|
7357
|
-
destination.push(renderState$jscomp$0.startInlineScript),
|
|
7358
|
-
writeCompletedShellIdAttribute(
|
|
7359
|
-
destination,
|
|
7360
|
-
resumableState$jscomp$0
|
|
7361
|
-
),
|
|
7362
|
-
destination.push(endOfStartTag),
|
|
7363
|
-
destination.push(shellTimeRuntimeScript),
|
|
7364
|
-
destination.push(endInlineScript));
|
|
7365
|
-
var preamble$jscomp$1 = renderState$jscomp$0.preamble;
|
|
7325
|
+
var renderState$jscomp$0 = request.renderState;
|
|
7366
7326
|
if (
|
|
7367
|
-
|
|
7368
|
-
|
|
7369
|
-
|
|
7327
|
+
0 !== request.allPendingTasks ||
|
|
7328
|
+
0 !== request.clientRenderedBoundaries.length ||
|
|
7329
|
+
0 !== request.completedBoundaries.length ||
|
|
7330
|
+
(null !== request.trackedPostpones &&
|
|
7331
|
+
(0 !== request.trackedPostpones.rootNodes.length ||
|
|
7332
|
+
null !== request.trackedPostpones.rootSlots))
|
|
7370
7333
|
) {
|
|
7371
|
-
var
|
|
7372
|
-
|
|
7373
|
-
|
|
7374
|
-
|
|
7375
|
-
|
|
7376
|
-
|
|
7377
|
-
|
|
7378
|
-
|
|
7379
|
-
|
|
7334
|
+
var resumableState = request.resumableState;
|
|
7335
|
+
if (
|
|
7336
|
+
(resumableState.instructions & SentMarkShellTime) ===
|
|
7337
|
+
NothingSent
|
|
7338
|
+
) {
|
|
7339
|
+
resumableState.instructions |= SentMarkShellTime;
|
|
7340
|
+
destination.push(renderState$jscomp$0.startInlineScript);
|
|
7341
|
+
if (
|
|
7342
|
+
(resumableState.instructions & SentCompletedShellId) ===
|
|
7343
|
+
NothingSent
|
|
7344
|
+
) {
|
|
7345
|
+
resumableState.instructions |= SentCompletedShellId;
|
|
7346
|
+
var shellId = "\u00ab" + resumableState.idPrefix + "R\u00bb";
|
|
7347
|
+
destination.push(completedShellIdAttributeStart);
|
|
7348
|
+
var chunk$jscomp$1 = escapeTextForBrowser(shellId);
|
|
7349
|
+
destination.push(chunk$jscomp$1);
|
|
7350
|
+
destination.push(attributeEnd);
|
|
7351
|
+
}
|
|
7352
|
+
destination.push(endOfStartTag);
|
|
7353
|
+
destination.push(shellTimeRuntimeScript);
|
|
7354
|
+
destination.push(endInlineScript);
|
|
7355
|
+
}
|
|
7380
7356
|
}
|
|
7381
7357
|
writeBootstrap(destination, renderState$jscomp$0);
|
|
7382
7358
|
}
|
|
@@ -7416,7 +7392,7 @@
|
|
|
7416
7392
|
for (i = 0; i < clientRenderedBoundaries.length; i++) {
|
|
7417
7393
|
var boundary = clientRenderedBoundaries[i];
|
|
7418
7394
|
renderState$jscomp$1 = destination;
|
|
7419
|
-
var resumableState$jscomp$
|
|
7395
|
+
var resumableState$jscomp$0 = request.resumableState,
|
|
7420
7396
|
renderState$jscomp$2 = request.renderState,
|
|
7421
7397
|
id = boundary.rootSegmentID,
|
|
7422
7398
|
errorDigest = boundary.errorDigest,
|
|
@@ -7425,16 +7401,16 @@
|
|
|
7425
7401
|
errorComponentStack = boundary.errorComponentStack;
|
|
7426
7402
|
renderState$jscomp$1.push(renderState$jscomp$2.startInlineScript);
|
|
7427
7403
|
renderState$jscomp$1.push(endOfStartTag);
|
|
7428
|
-
(resumableState$jscomp$
|
|
7404
|
+
(resumableState$jscomp$0.instructions &
|
|
7429
7405
|
SentClientRenderFunction) ===
|
|
7430
7406
|
NothingSent
|
|
7431
|
-
? ((resumableState$jscomp$
|
|
7407
|
+
? ((resumableState$jscomp$0.instructions |=
|
|
7432
7408
|
SentClientRenderFunction),
|
|
7433
7409
|
renderState$jscomp$1.push(clientRenderScript1Full))
|
|
7434
7410
|
: renderState$jscomp$1.push(clientRenderScript1Partial);
|
|
7435
7411
|
renderState$jscomp$1.push(renderState$jscomp$2.boundaryPrefix);
|
|
7436
|
-
var chunk$jscomp$
|
|
7437
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
|
7412
|
+
var chunk$jscomp$2 = id.toString(16);
|
|
7413
|
+
renderState$jscomp$1.push(chunk$jscomp$2);
|
|
7438
7414
|
renderState$jscomp$1.push(clientRenderScript1A);
|
|
7439
7415
|
if (
|
|
7440
7416
|
errorDigest ||
|
|
@@ -7443,30 +7419,30 @@
|
|
|
7443
7419
|
errorComponentStack
|
|
7444
7420
|
) {
|
|
7445
7421
|
renderState$jscomp$1.push(clientRenderErrorScriptArgInterstitial);
|
|
7446
|
-
var chunk$jscomp$
|
|
7422
|
+
var chunk$jscomp$3 = escapeJSStringsForInstructionScripts(
|
|
7447
7423
|
errorDigest || ""
|
|
7448
7424
|
);
|
|
7449
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
|
7425
|
+
renderState$jscomp$1.push(chunk$jscomp$3);
|
|
7450
7426
|
}
|
|
7451
7427
|
if (errorMessage || errorStack || errorComponentStack) {
|
|
7452
7428
|
renderState$jscomp$1.push(clientRenderErrorScriptArgInterstitial);
|
|
7453
|
-
var chunk$jscomp$
|
|
7429
|
+
var chunk$jscomp$4 = escapeJSStringsForInstructionScripts(
|
|
7454
7430
|
errorMessage || ""
|
|
7455
7431
|
);
|
|
7456
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
|
7432
|
+
renderState$jscomp$1.push(chunk$jscomp$4);
|
|
7457
7433
|
}
|
|
7458
7434
|
if (errorStack || errorComponentStack) {
|
|
7459
7435
|
renderState$jscomp$1.push(clientRenderErrorScriptArgInterstitial);
|
|
7460
|
-
var chunk$jscomp$
|
|
7436
|
+
var chunk$jscomp$5 = escapeJSStringsForInstructionScripts(
|
|
7461
7437
|
errorStack || ""
|
|
7462
7438
|
);
|
|
7463
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
|
7439
|
+
renderState$jscomp$1.push(chunk$jscomp$5);
|
|
7464
7440
|
}
|
|
7465
7441
|
if (errorComponentStack) {
|
|
7466
7442
|
renderState$jscomp$1.push(clientRenderErrorScriptArgInterstitial);
|
|
7467
|
-
var chunk$jscomp$
|
|
7443
|
+
var chunk$jscomp$6 =
|
|
7468
7444
|
escapeJSStringsForInstructionScripts(errorComponentStack);
|
|
7469
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
|
7445
|
+
renderState$jscomp$1.push(chunk$jscomp$6);
|
|
7470
7446
|
}
|
|
7471
7447
|
var JSCompiler_inline_result = renderState$jscomp$1.push(
|
|
7472
7448
|
clientRenderScriptEnd
|
|
@@ -8868,8 +8844,6 @@
|
|
|
8868
8844
|
spaceSeparator = " ",
|
|
8869
8845
|
styleTagResourceOpen3 = '">',
|
|
8870
8846
|
styleTagResourceClose = "</style>",
|
|
8871
|
-
blockingRenderChunkStart = '<link rel="expect" href="#',
|
|
8872
|
-
blockingRenderChunkEnd = '" blocking="render"/>',
|
|
8873
8847
|
completedShellIdAttributeStart = ' id="',
|
|
8874
8848
|
arrayFirstOpenBracket = "[",
|
|
8875
8849
|
arraySubsequentOpenBracket = ",[",
|
|
@@ -9143,5 +9117,5 @@
|
|
|
9143
9117
|
'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'
|
|
9144
9118
|
);
|
|
9145
9119
|
};
|
|
9146
|
-
exports.version = "19.2.0-canary-
|
|
9120
|
+
exports.version = "19.2.0-canary-b94603b9-20250513";
|
|
9147
9121
|
})();
|
|
@@ -2147,15 +2147,6 @@ function preloadLateStyles(styleQueue) {
|
|
|
2147
2147
|
styleQueue.sheets.forEach(preloadLateStyle, this);
|
|
2148
2148
|
styleQueue.sheets.clear();
|
|
2149
2149
|
}
|
|
2150
|
-
function writeCompletedShellIdAttribute(destination, resumableState) {
|
|
2151
|
-
0 === (resumableState.instructions & 32) &&
|
|
2152
|
-
((resumableState.instructions |= 32),
|
|
2153
|
-
(resumableState = "\u00ab" + resumableState.idPrefix + "R\u00bb"),
|
|
2154
|
-
destination.push(' id="'),
|
|
2155
|
-
(resumableState = escapeTextForBrowser(resumableState)),
|
|
2156
|
-
destination.push(resumableState),
|
|
2157
|
-
destination.push('"'));
|
|
2158
|
-
}
|
|
2159
2150
|
function pushCompletedShellIdAttribute(target, resumableState) {
|
|
2160
2151
|
0 === (resumableState.instructions & 32) &&
|
|
2161
2152
|
((resumableState.instructions |= 32),
|
|
@@ -2685,17 +2676,17 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
|
2685
2676
|
"\x3c/script>"
|
|
2686
2677
|
));
|
|
2687
2678
|
bootstrapScriptContent = idPrefix + "P:";
|
|
2688
|
-
var
|
|
2679
|
+
var JSCompiler_object_inline_segmentPrefix_1598 = idPrefix + "S:";
|
|
2689
2680
|
idPrefix += "B:";
|
|
2690
|
-
var
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2681
|
+
var JSCompiler_object_inline_preamble_1601 = createPreambleState(),
|
|
2682
|
+
JSCompiler_object_inline_preconnects_1611 = new Set(),
|
|
2683
|
+
JSCompiler_object_inline_fontPreloads_1612 = new Set(),
|
|
2684
|
+
JSCompiler_object_inline_highImagePreloads_1613 = new Set(),
|
|
2685
|
+
JSCompiler_object_inline_styles_1614 = new Map(),
|
|
2686
|
+
JSCompiler_object_inline_bootstrapScripts_1615 = new Set(),
|
|
2687
|
+
JSCompiler_object_inline_scripts_1616 = new Set(),
|
|
2688
|
+
JSCompiler_object_inline_bulkPreloads_1617 = new Set(),
|
|
2689
|
+
JSCompiler_object_inline_preloads_1618 = {
|
|
2699
2690
|
images: new Map(),
|
|
2700
2691
|
stylesheets: new Map(),
|
|
2701
2692
|
scripts: new Map(),
|
|
@@ -2732,7 +2723,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
|
2732
2723
|
scriptConfig.moduleScriptResources[href] = null;
|
|
2733
2724
|
scriptConfig = [];
|
|
2734
2725
|
pushLinkImpl(scriptConfig, props);
|
|
2735
|
-
|
|
2726
|
+
JSCompiler_object_inline_bootstrapScripts_1615.add(scriptConfig);
|
|
2736
2727
|
bootstrapChunks.push('<script src="', escapeTextForBrowser(src), '"');
|
|
2737
2728
|
"string" === typeof integrity &&
|
|
2738
2729
|
bootstrapChunks.push(
|
|
@@ -2779,7 +2770,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
|
2779
2770
|
(props.moduleScriptResources[scriptConfig] = null),
|
|
2780
2771
|
(props = []),
|
|
2781
2772
|
pushLinkImpl(props, integrity),
|
|
2782
|
-
|
|
2773
|
+
JSCompiler_object_inline_bootstrapScripts_1615.add(props),
|
|
2783
2774
|
bootstrapChunks.push(
|
|
2784
2775
|
'<script type="module" src="',
|
|
2785
2776
|
escapeTextForBrowser(i),
|
|
@@ -2801,10 +2792,10 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
|
2801
2792
|
bootstrapChunks.push(' async="">\x3c/script>');
|
|
2802
2793
|
return {
|
|
2803
2794
|
placeholderPrefix: bootstrapScriptContent,
|
|
2804
|
-
segmentPrefix:
|
|
2795
|
+
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1598,
|
|
2805
2796
|
boundaryPrefix: idPrefix,
|
|
2806
2797
|
startInlineScript: "<script",
|
|
2807
|
-
preamble:
|
|
2798
|
+
preamble: JSCompiler_object_inline_preamble_1601,
|
|
2808
2799
|
externalRuntimeScript: null,
|
|
2809
2800
|
bootstrapChunks: bootstrapChunks,
|
|
2810
2801
|
importMapChunks: [],
|
|
@@ -2820,14 +2811,14 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
|
2820
2811
|
charsetChunks: [],
|
|
2821
2812
|
viewportChunks: [],
|
|
2822
2813
|
hoistableChunks: [],
|
|
2823
|
-
preconnects:
|
|
2824
|
-
fontPreloads:
|
|
2825
|
-
highImagePreloads:
|
|
2826
|
-
styles:
|
|
2827
|
-
bootstrapScripts:
|
|
2828
|
-
scripts:
|
|
2829
|
-
bulkPreloads:
|
|
2830
|
-
preloads:
|
|
2814
|
+
preconnects: JSCompiler_object_inline_preconnects_1611,
|
|
2815
|
+
fontPreloads: JSCompiler_object_inline_fontPreloads_1612,
|
|
2816
|
+
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1613,
|
|
2817
|
+
styles: JSCompiler_object_inline_styles_1614,
|
|
2818
|
+
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1615,
|
|
2819
|
+
scripts: JSCompiler_object_inline_scripts_1616,
|
|
2820
|
+
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1617,
|
|
2821
|
+
preloads: JSCompiler_object_inline_preloads_1618,
|
|
2831
2822
|
stylesToHoist: !1,
|
|
2832
2823
|
generateStaticMarkup: generateStaticMarkup
|
|
2833
2824
|
};
|
|
@@ -5695,8 +5686,7 @@ function flushCompletedQueues(request, destination) {
|
|
|
5695
5686
|
var completedPreambleSegments = request.completedPreambleSegments;
|
|
5696
5687
|
if (null === completedPreambleSegments) return;
|
|
5697
5688
|
flushedByteSize = request.byteSize;
|
|
5698
|
-
var
|
|
5699
|
-
renderState = request.renderState,
|
|
5689
|
+
var renderState = request.renderState,
|
|
5700
5690
|
preamble = renderState.preamble,
|
|
5701
5691
|
htmlChunks = preamble.htmlChunks,
|
|
5702
5692
|
headChunks = preamble.headChunks,
|
|
@@ -5739,30 +5729,23 @@ function flushCompletedQueues(request, destination) {
|
|
|
5739
5729
|
renderState.scripts.clear();
|
|
5740
5730
|
renderState.bulkPreloads.forEach(flushResource, destination);
|
|
5741
5731
|
renderState.bulkPreloads.clear();
|
|
5742
|
-
if (htmlChunks || headChunks) {
|
|
5743
|
-
var shellId = "\u00ab" + resumableState.idPrefix + "R\u00bb";
|
|
5744
|
-
destination.push('<link rel="expect" href="#');
|
|
5745
|
-
var chunk$jscomp$0 = escapeTextForBrowser(shellId);
|
|
5746
|
-
destination.push(chunk$jscomp$0);
|
|
5747
|
-
destination.push('" blocking="render"/>');
|
|
5748
|
-
}
|
|
5749
5732
|
var hoistableChunks = renderState.hoistableChunks;
|
|
5750
5733
|
for (i$jscomp$0 = 0; i$jscomp$0 < hoistableChunks.length; i$jscomp$0++)
|
|
5751
5734
|
destination.push(hoistableChunks[i$jscomp$0]);
|
|
5752
5735
|
for (
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5736
|
+
renderState = hoistableChunks.length = 0;
|
|
5737
|
+
renderState < completedPreambleSegments.length;
|
|
5738
|
+
renderState++
|
|
5756
5739
|
) {
|
|
5757
|
-
var segments = completedPreambleSegments[
|
|
5758
|
-
for (
|
|
5759
|
-
flushSegment(request, destination, segments[
|
|
5740
|
+
var segments = completedPreambleSegments[renderState];
|
|
5741
|
+
for (preamble = 0; preamble < segments.length; preamble++)
|
|
5742
|
+
flushSegment(request, destination, segments[preamble], null);
|
|
5760
5743
|
}
|
|
5761
5744
|
var preamble$jscomp$0 = request.renderState.preamble,
|
|
5762
5745
|
headChunks$jscomp$0 = preamble$jscomp$0.headChunks;
|
|
5763
5746
|
if (preamble$jscomp$0.htmlChunks || headChunks$jscomp$0) {
|
|
5764
|
-
var chunk$jscomp$
|
|
5765
|
-
destination.push(chunk$jscomp$
|
|
5747
|
+
var chunk$jscomp$0 = endChunkForTag("head");
|
|
5748
|
+
destination.push(chunk$jscomp$0);
|
|
5766
5749
|
}
|
|
5767
5750
|
var bodyChunks = preamble$jscomp$0.bodyChunks;
|
|
5768
5751
|
if (bodyChunks)
|
|
@@ -5774,34 +5757,33 @@ function flushCompletedQueues(request, destination) {
|
|
|
5774
5757
|
destination.push(bodyChunks[completedPreambleSegments]);
|
|
5775
5758
|
flushSegment(request, destination, completedRootSegment, null);
|
|
5776
5759
|
request.completedRootSegment = null;
|
|
5777
|
-
var
|
|
5778
|
-
renderState$jscomp$0 = request.renderState;
|
|
5779
|
-
(0 === request.allPendingTasks &&
|
|
5780
|
-
0 === request.clientRenderedBoundaries.length &&
|
|
5781
|
-
0 === request.completedBoundaries.length &&
|
|
5782
|
-
(null === request.trackedPostpones ||
|
|
5783
|
-
(0 === request.trackedPostpones.rootNodes.length &&
|
|
5784
|
-
null === request.trackedPostpones.rootSlots))) ||
|
|
5785
|
-
0 !== (resumableState$jscomp$0.instructions & 64) ||
|
|
5786
|
-
((resumableState$jscomp$0.instructions |= 64),
|
|
5787
|
-
destination.push(renderState$jscomp$0.startInlineScript),
|
|
5788
|
-
writeCompletedShellIdAttribute(destination, resumableState$jscomp$0),
|
|
5789
|
-
destination.push(">"),
|
|
5790
|
-
destination.push(
|
|
5791
|
-
"requestAnimationFrame(function(){$RT=performance.now()});"
|
|
5792
|
-
),
|
|
5793
|
-
destination.push("\x3c/script>"));
|
|
5794
|
-
var preamble$jscomp$1 = renderState$jscomp$0.preamble;
|
|
5760
|
+
var renderState$jscomp$0 = request.renderState;
|
|
5795
5761
|
if (
|
|
5796
|
-
|
|
5797
|
-
0
|
|
5762
|
+
0 !== request.allPendingTasks ||
|
|
5763
|
+
0 !== request.clientRenderedBoundaries.length ||
|
|
5764
|
+
0 !== request.completedBoundaries.length ||
|
|
5765
|
+
(null !== request.trackedPostpones &&
|
|
5766
|
+
(0 !== request.trackedPostpones.rootNodes.length ||
|
|
5767
|
+
null !== request.trackedPostpones.rootSlots))
|
|
5798
5768
|
) {
|
|
5799
|
-
var
|
|
5800
|
-
|
|
5801
|
-
|
|
5802
|
-
|
|
5803
|
-
|
|
5804
|
-
|
|
5769
|
+
var resumableState = request.resumableState;
|
|
5770
|
+
if (0 === (resumableState.instructions & 64)) {
|
|
5771
|
+
resumableState.instructions |= 64;
|
|
5772
|
+
destination.push(renderState$jscomp$0.startInlineScript);
|
|
5773
|
+
if (0 === (resumableState.instructions & 32)) {
|
|
5774
|
+
resumableState.instructions |= 32;
|
|
5775
|
+
var shellId = "\u00ab" + resumableState.idPrefix + "R\u00bb";
|
|
5776
|
+
destination.push(' id="');
|
|
5777
|
+
var chunk$jscomp$1 = escapeTextForBrowser(shellId);
|
|
5778
|
+
destination.push(chunk$jscomp$1);
|
|
5779
|
+
destination.push('"');
|
|
5780
|
+
}
|
|
5781
|
+
destination.push(">");
|
|
5782
|
+
destination.push(
|
|
5783
|
+
"requestAnimationFrame(function(){$RT=performance.now()});"
|
|
5784
|
+
);
|
|
5785
|
+
destination.push("\x3c/script>");
|
|
5786
|
+
}
|
|
5805
5787
|
}
|
|
5806
5788
|
writeBootstrap(destination, renderState$jscomp$0);
|
|
5807
5789
|
}
|
|
@@ -5841,28 +5823,28 @@ function flushCompletedQueues(request, destination) {
|
|
|
5841
5823
|
for (i = 0; i < clientRenderedBoundaries.length; i++) {
|
|
5842
5824
|
var boundary = clientRenderedBoundaries[i];
|
|
5843
5825
|
renderState$jscomp$1 = destination;
|
|
5844
|
-
var resumableState$jscomp$
|
|
5826
|
+
var resumableState$jscomp$0 = request.resumableState,
|
|
5845
5827
|
renderState$jscomp$2 = request.renderState,
|
|
5846
5828
|
id = boundary.rootSegmentID,
|
|
5847
5829
|
errorDigest = boundary.errorDigest;
|
|
5848
5830
|
renderState$jscomp$1.push(renderState$jscomp$2.startInlineScript);
|
|
5849
5831
|
renderState$jscomp$1.push(">");
|
|
5850
|
-
0 === (resumableState$jscomp$
|
|
5851
|
-
? ((resumableState$jscomp$
|
|
5832
|
+
0 === (resumableState$jscomp$0.instructions & 4)
|
|
5833
|
+
? ((resumableState$jscomp$0.instructions |= 4),
|
|
5852
5834
|
renderState$jscomp$1.push(
|
|
5853
5835
|
'$RX=function(b,c,d,e,f){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data="$!",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),f&&(a.cstck=f),b._reactRetry&&b._reactRetry())};;$RX("'
|
|
5854
5836
|
))
|
|
5855
5837
|
: renderState$jscomp$1.push('$RX("');
|
|
5856
5838
|
renderState$jscomp$1.push(renderState$jscomp$2.boundaryPrefix);
|
|
5857
|
-
var chunk$jscomp$
|
|
5858
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
|
5839
|
+
var chunk$jscomp$2 = id.toString(16);
|
|
5840
|
+
renderState$jscomp$1.push(chunk$jscomp$2);
|
|
5859
5841
|
renderState$jscomp$1.push('"');
|
|
5860
5842
|
if (errorDigest) {
|
|
5861
5843
|
renderState$jscomp$1.push(",");
|
|
5862
|
-
var chunk$jscomp$
|
|
5844
|
+
var chunk$jscomp$3 = escapeJSStringsForInstructionScripts(
|
|
5863
5845
|
errorDigest || ""
|
|
5864
5846
|
);
|
|
5865
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
|
5847
|
+
renderState$jscomp$1.push(chunk$jscomp$3);
|
|
5866
5848
|
}
|
|
5867
5849
|
var JSCompiler_inline_result =
|
|
5868
5850
|
renderState$jscomp$1.push(")\x3c/script>");
|
|
@@ -6067,4 +6049,4 @@ exports.renderToString = function (children, options) {
|
|
|
6067
6049
|
'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'
|
|
6068
6050
|
);
|
|
6069
6051
|
};
|
|
6070
|
-
exports.version = "19.2.0-canary-
|
|
6052
|
+
exports.version = "19.2.0-canary-b94603b9-20250513";
|