react-dom 19.2.0-canary-408d055a-20250430 → 19.2.0-canary-f7396427-20250501
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 +30 -14
- package/cjs/react-dom-client.production.js +37 -14
- package/cjs/react-dom-profiling.development.js +30 -14
- package/cjs/react-dom-profiling.profiling.js +37 -14
- package/cjs/react-dom-server-legacy.browser.development.js +70 -36
- package/cjs/react-dom-server-legacy.browser.production.js +72 -45
- package/cjs/react-dom-server-legacy.node.development.js +70 -36
- package/cjs/react-dom-server-legacy.node.production.js +72 -45
- package/cjs/react-dom-server.browser.development.js +65 -33
- package/cjs/react-dom-server.browser.production.js +57 -31
- package/cjs/react-dom-server.bun.development.js +57 -35
- package/cjs/react-dom-server.bun.production.js +49 -26
- package/cjs/react-dom-server.edge.development.js +65 -33
- package/cjs/react-dom-server.edge.production.js +57 -31
- package/cjs/react-dom-server.node.development.js +62 -33
- package/cjs/react-dom-server.node.production.js +54 -31
- 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
@@ -1353,13 +1353,13 @@
|
|
1353
1353
|
bootstrapChunks.push(
|
1354
1354
|
endOfStartTag,
|
1355
1355
|
formReplayingRuntimeScript,
|
1356
|
-
|
1356
|
+
endInlineScript
|
1357
1357
|
))
|
1358
1358
|
: bootstrapChunks.unshift(
|
1359
1359
|
renderState.startInlineScript,
|
1360
1360
|
endOfStartTag,
|
1361
1361
|
formReplayingRuntimeScript,
|
1362
|
-
|
1362
|
+
endInlineScript
|
1363
1363
|
);
|
1364
1364
|
}
|
1365
1365
|
}
|
@@ -3089,6 +3089,15 @@
|
|
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
|
+
}
|
3092
3101
|
function pushCompletedShellIdAttribute(target, resumableState) {
|
3093
3102
|
(resumableState.instructions & SentCompletedShellId) === NothingSent &&
|
3094
3103
|
((resumableState.instructions |= SentCompletedShellId),
|
@@ -3319,7 +3328,7 @@
|
|
3319
3328
|
bootstrapChunks.push(
|
3320
3329
|
endOfStartTag,
|
3321
3330
|
escapeEntireInlineScriptContent(bootstrapScriptContent),
|
3322
|
-
|
3331
|
+
endInlineScript
|
3323
3332
|
));
|
3324
3333
|
idPrefix = {
|
3325
3334
|
placeholderPrefix: idPrefix + "P:",
|
@@ -7147,18 +7156,19 @@
|
|
7147
7156
|
destination.push(request.startInlineScript);
|
7148
7157
|
destination.push(endOfStartTag);
|
7149
7158
|
requiresStyleInsertion
|
7150
|
-
? (completedSegments.instructions &
|
7159
|
+
? ((completedSegments.instructions & SentClientRenderFunction) ===
|
7160
|
+
NothingSent &&
|
7161
|
+
((completedSegments.instructions |= SentClientRenderFunction),
|
7162
|
+
destination.push(clientRenderScriptFunctionOnly)),
|
7163
|
+
(completedSegments.instructions & SentCompleteBoundaryFunction) ===
|
7164
|
+
NothingSent &&
|
7165
|
+
((completedSegments.instructions |= SentCompleteBoundaryFunction),
|
7166
|
+
destination.push(completeBoundaryScriptFunctionOnly)),
|
7167
|
+
(completedSegments.instructions & SentStyleInsertionFunction) ===
|
7151
7168
|
NothingSent
|
7152
|
-
? ((completedSegments.instructions =
|
7153
|
-
completedSegments.instructions |
|
7154
|
-
SentStyleInsertionFunction |
|
7155
|
-
SentCompleteBoundaryFunction),
|
7156
|
-
destination.push(completeBoundaryWithStylesScript1FullBoth))
|
7157
|
-
: (completedSegments.instructions & SentStyleInsertionFunction) ===
|
7158
|
-
NothingSent
|
7159
7169
|
? ((completedSegments.instructions |= SentStyleInsertionFunction),
|
7160
7170
|
destination.push(completeBoundaryWithStylesScript1FullPartial))
|
7161
|
-
: destination.push(completeBoundaryWithStylesScript1Partial)
|
7171
|
+
: destination.push(completeBoundaryWithStylesScript1Partial))
|
7162
7172
|
: (completedSegments.instructions & SentCompleteBoundaryFunction) ===
|
7163
7173
|
NothingSent
|
7164
7174
|
? ((completedSegments.instructions |= SentCompleteBoundaryFunction),
|
@@ -7337,20 +7347,39 @@
|
|
7337
7347
|
flushSegment(request, destination, completedRootSegment, null);
|
7338
7348
|
request.completedRootSegment = null;
|
7339
7349
|
var resumableState$jscomp$0 = request.resumableState,
|
7340
|
-
renderState$jscomp$0 = request.renderState
|
7341
|
-
|
7350
|
+
renderState$jscomp$0 = request.renderState;
|
7351
|
+
(0 === request.allPendingTasks &&
|
7352
|
+
0 === request.clientRenderedBoundaries.length &&
|
7353
|
+
0 === request.completedBoundaries.length &&
|
7354
|
+
(null === request.trackedPostpones ||
|
7355
|
+
(0 === request.trackedPostpones.rootNodes.length &&
|
7356
|
+
null === request.trackedPostpones.rootSlots))) ||
|
7357
|
+
(resumableState$jscomp$0.instructions & SentMarkShellTime) !==
|
7358
|
+
NothingSent ||
|
7359
|
+
((resumableState$jscomp$0.instructions |= SentMarkShellTime),
|
7360
|
+
destination.push(renderState$jscomp$0.startInlineScript),
|
7361
|
+
writeCompletedShellIdAttribute(
|
7362
|
+
destination,
|
7363
|
+
resumableState$jscomp$0
|
7364
|
+
),
|
7365
|
+
destination.push(endOfStartTag),
|
7366
|
+
destination.push(shellTimeRuntimeScript),
|
7367
|
+
destination.push(endInlineScript));
|
7368
|
+
var preamble$jscomp$1 = renderState$jscomp$0.preamble;
|
7342
7369
|
if (
|
7343
7370
|
(preamble$jscomp$1.htmlChunks || preamble$jscomp$1.headChunks) &&
|
7344
7371
|
(resumableState$jscomp$0.instructions & SentCompletedShellId) ===
|
7345
7372
|
NothingSent
|
7346
7373
|
) {
|
7347
|
-
var
|
7348
|
-
|
7349
|
-
|
7350
|
-
|
7374
|
+
var chunk$jscomp$2 = startChunkForTag("template");
|
7375
|
+
destination.push(chunk$jscomp$2);
|
7376
|
+
writeCompletedShellIdAttribute(
|
7377
|
+
destination,
|
7351
7378
|
resumableState$jscomp$0
|
7352
7379
|
);
|
7353
|
-
|
7380
|
+
destination.push(endOfStartTag);
|
7381
|
+
var chunk$jscomp$3 = endChunkForTag("template");
|
7382
|
+
destination.push(chunk$jscomp$3);
|
7354
7383
|
}
|
7355
7384
|
writeBootstrap(destination, renderState$jscomp$0);
|
7356
7385
|
}
|
@@ -7407,8 +7436,8 @@
|
|
7407
7436
|
renderState$jscomp$1.push(clientRenderScript1Full))
|
7408
7437
|
: renderState$jscomp$1.push(clientRenderScript1Partial);
|
7409
7438
|
renderState$jscomp$1.push(renderState$jscomp$2.boundaryPrefix);
|
7410
|
-
var chunk$jscomp$
|
7411
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
7439
|
+
var chunk$jscomp$4 = id.toString(16);
|
7440
|
+
renderState$jscomp$1.push(chunk$jscomp$4);
|
7412
7441
|
renderState$jscomp$1.push(clientRenderScript1A);
|
7413
7442
|
if (
|
7414
7443
|
errorDigest ||
|
@@ -7417,30 +7446,30 @@
|
|
7417
7446
|
errorComponentStack
|
7418
7447
|
) {
|
7419
7448
|
renderState$jscomp$1.push(clientRenderErrorScriptArgInterstitial);
|
7420
|
-
var chunk$jscomp$
|
7449
|
+
var chunk$jscomp$5 = escapeJSStringsForInstructionScripts(
|
7421
7450
|
errorDigest || ""
|
7422
7451
|
);
|
7423
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
7452
|
+
renderState$jscomp$1.push(chunk$jscomp$5);
|
7424
7453
|
}
|
7425
7454
|
if (errorMessage || errorStack || errorComponentStack) {
|
7426
7455
|
renderState$jscomp$1.push(clientRenderErrorScriptArgInterstitial);
|
7427
|
-
var chunk$jscomp$
|
7456
|
+
var chunk$jscomp$6 = escapeJSStringsForInstructionScripts(
|
7428
7457
|
errorMessage || ""
|
7429
7458
|
);
|
7430
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
7459
|
+
renderState$jscomp$1.push(chunk$jscomp$6);
|
7431
7460
|
}
|
7432
7461
|
if (errorStack || errorComponentStack) {
|
7433
7462
|
renderState$jscomp$1.push(clientRenderErrorScriptArgInterstitial);
|
7434
|
-
var chunk$jscomp$
|
7463
|
+
var chunk$jscomp$7 = escapeJSStringsForInstructionScripts(
|
7435
7464
|
errorStack || ""
|
7436
7465
|
);
|
7437
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
7466
|
+
renderState$jscomp$1.push(chunk$jscomp$7);
|
7438
7467
|
}
|
7439
7468
|
if (errorComponentStack) {
|
7440
7469
|
renderState$jscomp$1.push(clientRenderErrorScriptArgInterstitial);
|
7441
|
-
var chunk$jscomp$
|
7470
|
+
var chunk$jscomp$8 =
|
7442
7471
|
escapeJSStringsForInstructionScripts(errorComponentStack);
|
7443
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
7472
|
+
renderState$jscomp$1.push(chunk$jscomp$8);
|
7444
7473
|
}
|
7445
7474
|
var JSCompiler_inline_result = renderState$jscomp$1.push(
|
7446
7475
|
clientRenderScriptEnd
|
@@ -7523,7 +7552,6 @@
|
|
7523
7552
|
}
|
7524
7553
|
} finally {
|
7525
7554
|
0 === request.allPendingTasks &&
|
7526
|
-
0 === request.pingedTasks.length &&
|
7527
7555
|
0 === request.clientRenderedBoundaries.length &&
|
7528
7556
|
0 === request.completedBoundaries.length &&
|
7529
7557
|
((request.flushScheduled = !1),
|
@@ -8719,10 +8747,12 @@
|
|
8719
8747
|
SentClientRenderFunction = 4,
|
8720
8748
|
SentStyleInsertionFunction = 8,
|
8721
8749
|
SentCompletedShellId = 32,
|
8750
|
+
SentMarkShellTime = 64,
|
8722
8751
|
EXISTS = null,
|
8723
8752
|
PRELOAD_NO_CREDS = [];
|
8724
8753
|
Object.freeze(PRELOAD_NO_CREDS);
|
8725
|
-
var
|
8754
|
+
var endInlineScript = "\x3c/script>",
|
8755
|
+
scriptRegex = /(<\/|<)(s)(cript)/gi;
|
8726
8756
|
var didWarnForNewBooleanPropsWithEmptyValue = {};
|
8727
8757
|
var ROOT_HTML_MODE = 0,
|
8728
8758
|
HTML_HTML_MODE = 1,
|
@@ -8765,6 +8795,8 @@
|
|
8765
8795
|
VALID_TAG_REGEX = /^[a-zA-Z][a-zA-Z:_\.\-\d]*$/,
|
8766
8796
|
validatedTagCache = new Map(),
|
8767
8797
|
endTagCache = new Map(),
|
8798
|
+
shellTimeRuntimeScript =
|
8799
|
+
"requestAnimationFrame(function(){$RT=performance.now()});",
|
8768
8800
|
placeholder1 = '<template id="',
|
8769
8801
|
placeholder2 = '"></template>',
|
8770
8802
|
startCompletedSuspenseBoundary = "\x3c!--$--\x3e",
|
@@ -8805,18 +8837,20 @@
|
|
8805
8837
|
completeSegmentScript1Partial = '$RS("',
|
8806
8838
|
completeSegmentScript2 = '","',
|
8807
8839
|
completeSegmentScriptEnd = '")\x3c/script>',
|
8840
|
+
completeBoundaryScriptFunctionOnly =
|
8841
|
+
'$RB=[];$RC=function(d,c){function m(){$RT=performance.now();var f=$RB;$RB=[];for(var e=0;e<f.length;e+=2){var a=f[e],l=f[e+1],g=a.parentNode;if(g){var h=a.previousSibling,k=0;do{if(a&&8===a.nodeType){var b=a.data;if("/$"===b||"/&"===b)if(0===k)break;else k--;else"$"!==b&&"$?"!==b&&"$~"!==b&&"$!"!==b&&"&"!==b||k++}b=a.nextSibling;g.removeChild(a);a=b}while(a);for(;l.firstChild;)g.insertBefore(l.firstChild,a);h.data="$";h._reactRetry&&h._reactRetry()}}}if(c=document.getElementById(c))if(c.parentNode.removeChild(c),d=\ndocument.getElementById(d))d.previousSibling.data="$~",$RB.push(d,c),2===$RB.length&&setTimeout(m,("number"!==typeof $RT?0:$RT)+300-performance.now())};',
|
8808
8842
|
completeBoundaryScript1Full =
|
8809
|
-
'$RC=function(
|
8843
|
+
'$RB=[];$RC=function(d,c){function m(){$RT=performance.now();var f=$RB;$RB=[];for(var e=0;e<f.length;e+=2){var a=f[e],l=f[e+1],g=a.parentNode;if(g){var h=a.previousSibling,k=0;do{if(a&&8===a.nodeType){var b=a.data;if("/$"===b||"/&"===b)if(0===k)break;else k--;else"$"!==b&&"$?"!==b&&"$~"!==b&&"$!"!==b&&"&"!==b||k++}b=a.nextSibling;g.removeChild(a);a=b}while(a);for(;l.firstChild;)g.insertBefore(l.firstChild,a);h.data="$";h._reactRetry&&h._reactRetry()}}}if(c=document.getElementById(c))if(c.parentNode.removeChild(c),d=\ndocument.getElementById(d))d.previousSibling.data="$~",$RB.push(d,c),2===$RB.length&&setTimeout(m,("number"!==typeof $RT?0:$RT)+300-performance.now())};$RC("',
|
8810
8844
|
completeBoundaryScript1Partial = '$RC("',
|
8811
|
-
completeBoundaryWithStylesScript1FullBoth =
|
8812
|
-
'$RC=function(b,d,e){d=document.getElementById(d);d.parentNode.removeChild(d);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var c=a.data;if("/$"===c||"/&"===c)if(0===f)break;else f--;else"$"!==c&&"$?"!==c&&"$!"!==c&&"&"!==c||f++}c=a.nextSibling;e.removeChild(a);a=c}while(a);for(;d.firstChild;)e.insertBefore(d.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};$RM=new Map;\n$RR=function(t,u,y){function v(n){this._p=null;n()}for(var w=$RC,p=$RM,q=new Map,r=document,g,b,h=r.querySelectorAll("link[data-precedence],style[data-precedence]"),x=[],k=0;b=h[k++];)"not all"===b.getAttribute("media")?x.push(b):("LINK"===b.tagName&&p.set(b.getAttribute("href"),b),q.set(b.dataset.precedence,g=b));b=0;h=[];var l,a;for(k=!0;;){if(k){var e=y[b++];if(!e){k=!1;b=0;continue}var c=!1,m=0;var d=e[m++];if(a=p.get(d)){var f=a._p;c=!0}else{a=r.createElement("link");a.href=\nd;a.rel="stylesheet";for(a.dataset.precedence=l=e[m++];f=e[m++];)a.setAttribute(f,e[m++]);f=a._p=new Promise(function(n,z){a.onload=v.bind(a,n);a.onerror=v.bind(a,z)});p.set(d,a)}d=a.getAttribute("media");!f||d&&!matchMedia(d).matches||h.push(f);if(c)continue}else{a=x[b++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=q.get(l)||g;c===g&&(g=a);q.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=r.head,c.insertBefore(a,c.firstChild))}Promise.all(h).then(w.bind(null,\nt,u,""),w.bind(null,t,u,"Resource failed to load"))};$RR("',
|
8813
8845
|
completeBoundaryWithStylesScript1FullPartial =
|
8814
|
-
'$RM=new Map
|
8846
|
+
'$RM=new Map;$RR=function(n,w,p){function u(q){this._p=null;q()}for(var r=new Map,t=document,h,b,e=t.querySelectorAll("link[data-precedence],style[data-precedence]"),v=[],k=0;b=e[k++];)"not all"===b.getAttribute("media")?v.push(b):("LINK"===b.tagName&&$RM.set(b.getAttribute("href"),b),r.set(b.dataset.precedence,h=b));e=0;b=[];var l,a;for(k=!0;;){if(k){var f=p[e++];if(!f){k=!1;e=0;continue}var c=!1,m=0;var d=f[m++];if(a=$RM.get(d)){var g=a._p;c=!0}else{a=t.createElement("link");a.href=d;a.rel=\n"stylesheet";for(a.dataset.precedence=l=f[m++];g=f[m++];)a.setAttribute(g,f[m++]);g=a._p=new Promise(function(q,x){a.onload=u.bind(a,q);a.onerror=u.bind(a,x)});$RM.set(d,a)}d=a.getAttribute("media");!g||d&&!matchMedia(d).matches||b.push(g);if(c)continue}else{a=v[e++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=r.get(l)||h;c===h&&(h=a);r.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=t.head,c.insertBefore(a,c.firstChild))}if(p=document.getElementById(n))p.previousSibling.data=\n"$~";Promise.all(b).then($RC.bind(null,n,w),$RX.bind(null,n,"CSS failed to load"))};$RR("',
|
8815
8847
|
completeBoundaryWithStylesScript1Partial = '$RR("',
|
8816
8848
|
completeBoundaryScript2 = '","',
|
8817
8849
|
completeBoundaryScript3a = '",',
|
8818
8850
|
completeBoundaryScript3b = '"',
|
8819
8851
|
completeBoundaryScriptEnd = ")\x3c/script>",
|
8852
|
+
clientRenderScriptFunctionOnly =
|
8853
|
+
'$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())};',
|
8820
8854
|
clientRenderScript1Full =
|
8821
8855
|
'$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("',
|
8822
8856
|
clientRenderScript1Partial = '$RX("',
|
@@ -9112,5 +9146,5 @@
|
|
9112
9146
|
'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 "renderToReadableStream" which supports Suspense on the server'
|
9113
9147
|
);
|
9114
9148
|
};
|
9115
|
-
exports.version = "19.2.0-canary-
|
9149
|
+
exports.version = "19.2.0-canary-f7396427-20250501";
|
9116
9150
|
})();
|
@@ -2130,6 +2130,15 @@ function preloadLateStyles(styleQueue) {
|
|
2130
2130
|
styleQueue.sheets.forEach(preloadLateStyle, this);
|
2131
2131
|
styleQueue.sheets.clear();
|
2132
2132
|
}
|
2133
|
+
function writeCompletedShellIdAttribute(destination, resumableState) {
|
2134
|
+
0 === (resumableState.instructions & 32) &&
|
2135
|
+
((resumableState.instructions |= 32),
|
2136
|
+
(resumableState = "\u00ab" + resumableState.idPrefix + "R\u00bb"),
|
2137
|
+
destination.push(' id="'),
|
2138
|
+
(resumableState = escapeTextForBrowser(resumableState)),
|
2139
|
+
destination.push(resumableState),
|
2140
|
+
destination.push('"'));
|
2141
|
+
}
|
2133
2142
|
function pushCompletedShellIdAttribute(target, resumableState) {
|
2134
2143
|
0 === (resumableState.instructions & 32) &&
|
2135
2144
|
((resumableState.instructions |= 32),
|
@@ -2657,17 +2666,17 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2657
2666
|
"\x3c/script>"
|
2658
2667
|
));
|
2659
2668
|
bootstrapScriptContent = idPrefix + "P:";
|
2660
|
-
var
|
2669
|
+
var JSCompiler_object_inline_segmentPrefix_1628 = idPrefix + "S:";
|
2661
2670
|
idPrefix += "B:";
|
2662
|
-
var
|
2663
|
-
|
2664
|
-
|
2665
|
-
|
2666
|
-
|
2667
|
-
|
2668
|
-
|
2669
|
-
|
2670
|
-
|
2671
|
+
var JSCompiler_object_inline_preamble_1631 = createPreambleState(),
|
2672
|
+
JSCompiler_object_inline_preconnects_1641 = new Set(),
|
2673
|
+
JSCompiler_object_inline_fontPreloads_1642 = new Set(),
|
2674
|
+
JSCompiler_object_inline_highImagePreloads_1643 = new Set(),
|
2675
|
+
JSCompiler_object_inline_styles_1644 = new Map(),
|
2676
|
+
JSCompiler_object_inline_bootstrapScripts_1645 = new Set(),
|
2677
|
+
JSCompiler_object_inline_scripts_1646 = new Set(),
|
2678
|
+
JSCompiler_object_inline_bulkPreloads_1647 = new Set(),
|
2679
|
+
JSCompiler_object_inline_preloads_1648 = {
|
2671
2680
|
images: new Map(),
|
2672
2681
|
stylesheets: new Map(),
|
2673
2682
|
scripts: new Map(),
|
@@ -2704,7 +2713,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2704
2713
|
scriptConfig.moduleScriptResources[href] = null;
|
2705
2714
|
scriptConfig = [];
|
2706
2715
|
pushLinkImpl(scriptConfig, props);
|
2707
|
-
|
2716
|
+
JSCompiler_object_inline_bootstrapScripts_1645.add(scriptConfig);
|
2708
2717
|
bootstrapChunks.push('<script src="', escapeTextForBrowser(src), '"');
|
2709
2718
|
"string" === typeof integrity &&
|
2710
2719
|
bootstrapChunks.push(
|
@@ -2751,7 +2760,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2751
2760
|
(props.moduleScriptResources[scriptConfig] = null),
|
2752
2761
|
(props = []),
|
2753
2762
|
pushLinkImpl(props, integrity),
|
2754
|
-
|
2763
|
+
JSCompiler_object_inline_bootstrapScripts_1645.add(props),
|
2755
2764
|
bootstrapChunks.push(
|
2756
2765
|
'<script type="module" src="',
|
2757
2766
|
escapeTextForBrowser(i),
|
@@ -2773,10 +2782,10 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2773
2782
|
bootstrapChunks.push(' async="">\x3c/script>');
|
2774
2783
|
return {
|
2775
2784
|
placeholderPrefix: bootstrapScriptContent,
|
2776
|
-
segmentPrefix:
|
2785
|
+
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1628,
|
2777
2786
|
boundaryPrefix: idPrefix,
|
2778
2787
|
startInlineScript: "<script",
|
2779
|
-
preamble:
|
2788
|
+
preamble: JSCompiler_object_inline_preamble_1631,
|
2780
2789
|
externalRuntimeScript: null,
|
2781
2790
|
bootstrapChunks: bootstrapChunks,
|
2782
2791
|
importMapChunks: [],
|
@@ -2792,14 +2801,14 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2792
2801
|
charsetChunks: [],
|
2793
2802
|
viewportChunks: [],
|
2794
2803
|
hoistableChunks: [],
|
2795
|
-
preconnects:
|
2796
|
-
fontPreloads:
|
2797
|
-
highImagePreloads:
|
2798
|
-
styles:
|
2799
|
-
bootstrapScripts:
|
2800
|
-
scripts:
|
2801
|
-
bulkPreloads:
|
2802
|
-
preloads:
|
2804
|
+
preconnects: JSCompiler_object_inline_preconnects_1641,
|
2805
|
+
fontPreloads: JSCompiler_object_inline_fontPreloads_1642,
|
2806
|
+
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1643,
|
2807
|
+
styles: JSCompiler_object_inline_styles_1644,
|
2808
|
+
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1645,
|
2809
|
+
scripts: JSCompiler_object_inline_scripts_1646,
|
2810
|
+
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1647,
|
2811
|
+
preloads: JSCompiler_object_inline_preloads_1648,
|
2803
2812
|
stylesToHoist: !1,
|
2804
2813
|
generateStaticMarkup: generateStaticMarkup
|
2805
2814
|
};
|
@@ -5530,21 +5539,26 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
5530
5539
|
destination.push(request.startInlineScript);
|
5531
5540
|
destination.push(">");
|
5532
5541
|
requiresStyleInsertion
|
5533
|
-
? 0 === (completedSegments.instructions &
|
5534
|
-
|
5542
|
+
? (0 === (completedSegments.instructions & 4) &&
|
5543
|
+
((completedSegments.instructions |= 4),
|
5535
5544
|
destination.push(
|
5536
|
-
'$
|
5537
|
-
))
|
5538
|
-
|
5545
|
+
'$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())};'
|
5546
|
+
)),
|
5547
|
+
0 === (completedSegments.instructions & 2) &&
|
5548
|
+
((completedSegments.instructions |= 2),
|
5549
|
+
destination.push(
|
5550
|
+
'$RB=[];$RC=function(d,c){function m(){$RT=performance.now();var f=$RB;$RB=[];for(var e=0;e<f.length;e+=2){var a=f[e],l=f[e+1],g=a.parentNode;if(g){var h=a.previousSibling,k=0;do{if(a&&8===a.nodeType){var b=a.data;if("/$"===b||"/&"===b)if(0===k)break;else k--;else"$"!==b&&"$?"!==b&&"$~"!==b&&"$!"!==b&&"&"!==b||k++}b=a.nextSibling;g.removeChild(a);a=b}while(a);for(;l.firstChild;)g.insertBefore(l.firstChild,a);h.data="$";h._reactRetry&&h._reactRetry()}}}if(c=document.getElementById(c))if(c.parentNode.removeChild(c),d=\ndocument.getElementById(d))d.previousSibling.data="$~",$RB.push(d,c),2===$RB.length&&setTimeout(m,("number"!==typeof $RT?0:$RT)+300-performance.now())};'
|
5551
|
+
)),
|
5552
|
+
0 === (completedSegments.instructions & 8)
|
5539
5553
|
? ((completedSegments.instructions |= 8),
|
5540
5554
|
destination.push(
|
5541
|
-
'$RM=new Map
|
5555
|
+
'$RM=new Map;$RR=function(n,w,p){function u(q){this._p=null;q()}for(var r=new Map,t=document,h,b,e=t.querySelectorAll("link[data-precedence],style[data-precedence]"),v=[],k=0;b=e[k++];)"not all"===b.getAttribute("media")?v.push(b):("LINK"===b.tagName&&$RM.set(b.getAttribute("href"),b),r.set(b.dataset.precedence,h=b));e=0;b=[];var l,a;for(k=!0;;){if(k){var f=p[e++];if(!f){k=!1;e=0;continue}var c=!1,m=0;var d=f[m++];if(a=$RM.get(d)){var g=a._p;c=!0}else{a=t.createElement("link");a.href=d;a.rel=\n"stylesheet";for(a.dataset.precedence=l=f[m++];g=f[m++];)a.setAttribute(g,f[m++]);g=a._p=new Promise(function(q,x){a.onload=u.bind(a,q);a.onerror=u.bind(a,x)});$RM.set(d,a)}d=a.getAttribute("media");!g||d&&!matchMedia(d).matches||b.push(g);if(c)continue}else{a=v[e++];if(!a)break;l=a.getAttribute("data-precedence");a.removeAttribute("media")}c=r.get(l)||h;c===h&&(h=a);r.set(l,a);c?c.parentNode.insertBefore(a,c.nextSibling):(c=t.head,c.insertBefore(a,c.firstChild))}if(p=document.getElementById(n))p.previousSibling.data=\n"$~";Promise.all(b).then($RC.bind(null,n,w),$RX.bind(null,n,"CSS failed to load"))};$RR("'
|
5542
5556
|
))
|
5543
|
-
: destination.push('$RR("')
|
5557
|
+
: destination.push('$RR("'))
|
5544
5558
|
: 0 === (completedSegments.instructions & 2)
|
5545
5559
|
? ((completedSegments.instructions |= 2),
|
5546
5560
|
destination.push(
|
5547
|
-
'$RC=function(
|
5561
|
+
'$RB=[];$RC=function(d,c){function m(){$RT=performance.now();var f=$RB;$RB=[];for(var e=0;e<f.length;e+=2){var a=f[e],l=f[e+1],g=a.parentNode;if(g){var h=a.previousSibling,k=0;do{if(a&&8===a.nodeType){var b=a.data;if("/$"===b||"/&"===b)if(0===k)break;else k--;else"$"!==b&&"$?"!==b&&"$~"!==b&&"$!"!==b&&"&"!==b||k++}b=a.nextSibling;g.removeChild(a);a=b}while(a);for(;l.firstChild;)g.insertBefore(l.firstChild,a);h.data="$";h._reactRetry&&h._reactRetry()}}}if(c=document.getElementById(c))if(c.parentNode.removeChild(c),d=\ndocument.getElementById(d))d.previousSibling.data="$~",$RB.push(d,c),2===$RB.length&&setTimeout(m,("number"!==typeof $RT?0:$RT)+300-performance.now())};$RC("'
|
5548
5562
|
))
|
5549
5563
|
: destination.push('$RC("');
|
5550
5564
|
completedSegments = i.toString(16);
|
@@ -5686,19 +5700,33 @@ function flushCompletedQueues(request, destination) {
|
|
5686
5700
|
flushSegment(request, destination, completedRootSegment, null);
|
5687
5701
|
request.completedRootSegment = null;
|
5688
5702
|
var resumableState$jscomp$0 = request.resumableState,
|
5689
|
-
renderState$jscomp$0 = request.renderState
|
5690
|
-
|
5703
|
+
renderState$jscomp$0 = request.renderState;
|
5704
|
+
(0 === request.allPendingTasks &&
|
5705
|
+
0 === request.clientRenderedBoundaries.length &&
|
5706
|
+
0 === request.completedBoundaries.length &&
|
5707
|
+
(null === request.trackedPostpones ||
|
5708
|
+
(0 === request.trackedPostpones.rootNodes.length &&
|
5709
|
+
null === request.trackedPostpones.rootSlots))) ||
|
5710
|
+
0 !== (resumableState$jscomp$0.instructions & 64) ||
|
5711
|
+
((resumableState$jscomp$0.instructions |= 64),
|
5712
|
+
destination.push(renderState$jscomp$0.startInlineScript),
|
5713
|
+
writeCompletedShellIdAttribute(destination, resumableState$jscomp$0),
|
5714
|
+
destination.push(">"),
|
5715
|
+
destination.push(
|
5716
|
+
"requestAnimationFrame(function(){$RT=performance.now()});"
|
5717
|
+
),
|
5718
|
+
destination.push("\x3c/script>"));
|
5719
|
+
var preamble$jscomp$1 = renderState$jscomp$0.preamble;
|
5691
5720
|
if (
|
5692
5721
|
(preamble$jscomp$1.htmlChunks || preamble$jscomp$1.headChunks) &&
|
5693
5722
|
0 === (resumableState$jscomp$0.instructions & 32)
|
5694
5723
|
) {
|
5695
|
-
var
|
5696
|
-
|
5697
|
-
|
5698
|
-
|
5699
|
-
|
5700
|
-
);
|
5701
|
-
bootstrapChunks.push(">", endChunkForTag("template"));
|
5724
|
+
var chunk$jscomp$2 = startChunkForTag("template");
|
5725
|
+
destination.push(chunk$jscomp$2);
|
5726
|
+
writeCompletedShellIdAttribute(destination, resumableState$jscomp$0);
|
5727
|
+
destination.push(">");
|
5728
|
+
var chunk$jscomp$3 = endChunkForTag("template");
|
5729
|
+
destination.push(chunk$jscomp$3);
|
5702
5730
|
}
|
5703
5731
|
writeBootstrap(destination, renderState$jscomp$0);
|
5704
5732
|
}
|
@@ -5751,15 +5779,15 @@ function flushCompletedQueues(request, destination) {
|
|
5751
5779
|
))
|
5752
5780
|
: renderState$jscomp$1.push('$RX("');
|
5753
5781
|
renderState$jscomp$1.push(renderState$jscomp$2.boundaryPrefix);
|
5754
|
-
var chunk$jscomp$
|
5755
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
5782
|
+
var chunk$jscomp$4 = id.toString(16);
|
5783
|
+
renderState$jscomp$1.push(chunk$jscomp$4);
|
5756
5784
|
renderState$jscomp$1.push('"');
|
5757
5785
|
if (errorDigest) {
|
5758
5786
|
renderState$jscomp$1.push(",");
|
5759
|
-
var chunk$jscomp$
|
5787
|
+
var chunk$jscomp$5 = escapeJSStringsForInstructionScripts(
|
5760
5788
|
errorDigest || ""
|
5761
5789
|
);
|
5762
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
5790
|
+
renderState$jscomp$1.push(chunk$jscomp$5);
|
5763
5791
|
}
|
5764
5792
|
var JSCompiler_inline_result =
|
5765
5793
|
renderState$jscomp$1.push(")\x3c/script>");
|
@@ -5835,7 +5863,6 @@ function flushCompletedQueues(request, destination) {
|
|
5835
5863
|
}
|
5836
5864
|
} finally {
|
5837
5865
|
0 === request.allPendingTasks &&
|
5838
|
-
0 === request.pingedTasks.length &&
|
5839
5866
|
0 === request.clientRenderedBoundaries.length &&
|
5840
5867
|
0 === request.completedBoundaries.length &&
|
5841
5868
|
((request.flushScheduled = !1),
|
@@ -5962,4 +5989,4 @@ exports.renderToString = function (children, options) {
|
|
5962
5989
|
'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 "renderToReadableStream" which supports Suspense on the server'
|
5963
5990
|
);
|
5964
5991
|
};
|
5965
|
-
exports.version = "19.2.0-canary-
|
5992
|
+
exports.version = "19.2.0-canary-f7396427-20250501";
|