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 "renderToPipeableStream" 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
|
})();
|
@@ -2147,6 +2147,15 @@ 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
|
+
}
|
2150
2159
|
function pushCompletedShellIdAttribute(target, resumableState) {
|
2151
2160
|
0 === (resumableState.instructions & 32) &&
|
2152
2161
|
((resumableState.instructions |= 32),
|
@@ -2676,17 +2685,17 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2676
2685
|
"\x3c/script>"
|
2677
2686
|
));
|
2678
2687
|
bootstrapScriptContent = idPrefix + "P:";
|
2679
|
-
var
|
2688
|
+
var JSCompiler_object_inline_segmentPrefix_1628 = idPrefix + "S:";
|
2680
2689
|
idPrefix += "B:";
|
2681
|
-
var
|
2682
|
-
|
2683
|
-
|
2684
|
-
|
2685
|
-
|
2686
|
-
|
2687
|
-
|
2688
|
-
|
2689
|
-
|
2690
|
+
var JSCompiler_object_inline_preamble_1631 = createPreambleState(),
|
2691
|
+
JSCompiler_object_inline_preconnects_1641 = new Set(),
|
2692
|
+
JSCompiler_object_inline_fontPreloads_1642 = new Set(),
|
2693
|
+
JSCompiler_object_inline_highImagePreloads_1643 = new Set(),
|
2694
|
+
JSCompiler_object_inline_styles_1644 = new Map(),
|
2695
|
+
JSCompiler_object_inline_bootstrapScripts_1645 = new Set(),
|
2696
|
+
JSCompiler_object_inline_scripts_1646 = new Set(),
|
2697
|
+
JSCompiler_object_inline_bulkPreloads_1647 = new Set(),
|
2698
|
+
JSCompiler_object_inline_preloads_1648 = {
|
2690
2699
|
images: new Map(),
|
2691
2700
|
stylesheets: new Map(),
|
2692
2701
|
scripts: new Map(),
|
@@ -2723,7 +2732,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2723
2732
|
scriptConfig.moduleScriptResources[href] = null;
|
2724
2733
|
scriptConfig = [];
|
2725
2734
|
pushLinkImpl(scriptConfig, props);
|
2726
|
-
|
2735
|
+
JSCompiler_object_inline_bootstrapScripts_1645.add(scriptConfig);
|
2727
2736
|
bootstrapChunks.push('<script src="', escapeTextForBrowser(src), '"');
|
2728
2737
|
"string" === typeof integrity &&
|
2729
2738
|
bootstrapChunks.push(
|
@@ -2770,7 +2779,7 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2770
2779
|
(props.moduleScriptResources[scriptConfig] = null),
|
2771
2780
|
(props = []),
|
2772
2781
|
pushLinkImpl(props, integrity),
|
2773
|
-
|
2782
|
+
JSCompiler_object_inline_bootstrapScripts_1645.add(props),
|
2774
2783
|
bootstrapChunks.push(
|
2775
2784
|
'<script type="module" src="',
|
2776
2785
|
escapeTextForBrowser(i),
|
@@ -2792,10 +2801,10 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2792
2801
|
bootstrapChunks.push(' async="">\x3c/script>');
|
2793
2802
|
return {
|
2794
2803
|
placeholderPrefix: bootstrapScriptContent,
|
2795
|
-
segmentPrefix:
|
2804
|
+
segmentPrefix: JSCompiler_object_inline_segmentPrefix_1628,
|
2796
2805
|
boundaryPrefix: idPrefix,
|
2797
2806
|
startInlineScript: "<script",
|
2798
|
-
preamble:
|
2807
|
+
preamble: JSCompiler_object_inline_preamble_1631,
|
2799
2808
|
externalRuntimeScript: null,
|
2800
2809
|
bootstrapChunks: bootstrapChunks,
|
2801
2810
|
importMapChunks: [],
|
@@ -2811,14 +2820,14 @@ function createRenderState(resumableState, generateStaticMarkup) {
|
|
2811
2820
|
charsetChunks: [],
|
2812
2821
|
viewportChunks: [],
|
2813
2822
|
hoistableChunks: [],
|
2814
|
-
preconnects:
|
2815
|
-
fontPreloads:
|
2816
|
-
highImagePreloads:
|
2817
|
-
styles:
|
2818
|
-
bootstrapScripts:
|
2819
|
-
scripts:
|
2820
|
-
bulkPreloads:
|
2821
|
-
preloads:
|
2823
|
+
preconnects: JSCompiler_object_inline_preconnects_1641,
|
2824
|
+
fontPreloads: JSCompiler_object_inline_fontPreloads_1642,
|
2825
|
+
highImagePreloads: JSCompiler_object_inline_highImagePreloads_1643,
|
2826
|
+
styles: JSCompiler_object_inline_styles_1644,
|
2827
|
+
bootstrapScripts: JSCompiler_object_inline_bootstrapScripts_1645,
|
2828
|
+
scripts: JSCompiler_object_inline_scripts_1646,
|
2829
|
+
bulkPreloads: JSCompiler_object_inline_bulkPreloads_1647,
|
2830
|
+
preloads: JSCompiler_object_inline_preloads_1648,
|
2822
2831
|
stylesToHoist: !1,
|
2823
2832
|
generateStaticMarkup: generateStaticMarkup
|
2824
2833
|
};
|
@@ -5605,21 +5614,26 @@ function flushCompletedBoundary(request, destination, boundary) {
|
|
5605
5614
|
destination.push(request.startInlineScript);
|
5606
5615
|
destination.push(">");
|
5607
5616
|
requiresStyleInsertion
|
5608
|
-
? 0 === (completedSegments.instructions &
|
5609
|
-
|
5617
|
+
? (0 === (completedSegments.instructions & 4) &&
|
5618
|
+
((completedSegments.instructions |= 4),
|
5610
5619
|
destination.push(
|
5611
|
-
'$
|
5612
|
-
))
|
5613
|
-
|
5620
|
+
'$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())};'
|
5621
|
+
)),
|
5622
|
+
0 === (completedSegments.instructions & 2) &&
|
5623
|
+
((completedSegments.instructions |= 2),
|
5624
|
+
destination.push(
|
5625
|
+
'$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())};'
|
5626
|
+
)),
|
5627
|
+
0 === (completedSegments.instructions & 8)
|
5614
5628
|
? ((completedSegments.instructions |= 8),
|
5615
5629
|
destination.push(
|
5616
|
-
'$RM=new Map
|
5630
|
+
'$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("'
|
5617
5631
|
))
|
5618
|
-
: destination.push('$RR("')
|
5632
|
+
: destination.push('$RR("'))
|
5619
5633
|
: 0 === (completedSegments.instructions & 2)
|
5620
5634
|
? ((completedSegments.instructions |= 2),
|
5621
5635
|
destination.push(
|
5622
|
-
'$RC=function(
|
5636
|
+
'$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("'
|
5623
5637
|
))
|
5624
5638
|
: destination.push('$RC("');
|
5625
5639
|
completedSegments = i.toString(16);
|
@@ -5763,19 +5777,33 @@ function flushCompletedQueues(request, destination) {
|
|
5763
5777
|
flushSegment(request, destination, completedRootSegment, null);
|
5764
5778
|
request.completedRootSegment = null;
|
5765
5779
|
var resumableState$jscomp$0 = request.resumableState,
|
5766
|
-
renderState$jscomp$0 = request.renderState
|
5767
|
-
|
5780
|
+
renderState$jscomp$0 = request.renderState;
|
5781
|
+
(0 === request.allPendingTasks &&
|
5782
|
+
0 === request.clientRenderedBoundaries.length &&
|
5783
|
+
0 === request.completedBoundaries.length &&
|
5784
|
+
(null === request.trackedPostpones ||
|
5785
|
+
(0 === request.trackedPostpones.rootNodes.length &&
|
5786
|
+
null === request.trackedPostpones.rootSlots))) ||
|
5787
|
+
0 !== (resumableState$jscomp$0.instructions & 64) ||
|
5788
|
+
((resumableState$jscomp$0.instructions |= 64),
|
5789
|
+
destination.push(renderState$jscomp$0.startInlineScript),
|
5790
|
+
writeCompletedShellIdAttribute(destination, resumableState$jscomp$0),
|
5791
|
+
destination.push(">"),
|
5792
|
+
destination.push(
|
5793
|
+
"requestAnimationFrame(function(){$RT=performance.now()});"
|
5794
|
+
),
|
5795
|
+
destination.push("\x3c/script>"));
|
5796
|
+
var preamble$jscomp$1 = renderState$jscomp$0.preamble;
|
5768
5797
|
if (
|
5769
5798
|
(preamble$jscomp$1.htmlChunks || preamble$jscomp$1.headChunks) &&
|
5770
5799
|
0 === (resumableState$jscomp$0.instructions & 32)
|
5771
5800
|
) {
|
5772
|
-
var
|
5773
|
-
|
5774
|
-
|
5775
|
-
|
5776
|
-
|
5777
|
-
);
|
5778
|
-
bootstrapChunks.push(">", endChunkForTag("template"));
|
5801
|
+
var chunk$jscomp$2 = startChunkForTag("template");
|
5802
|
+
destination.push(chunk$jscomp$2);
|
5803
|
+
writeCompletedShellIdAttribute(destination, resumableState$jscomp$0);
|
5804
|
+
destination.push(">");
|
5805
|
+
var chunk$jscomp$3 = endChunkForTag("template");
|
5806
|
+
destination.push(chunk$jscomp$3);
|
5779
5807
|
}
|
5780
5808
|
writeBootstrap(destination, renderState$jscomp$0);
|
5781
5809
|
}
|
@@ -5828,15 +5856,15 @@ function flushCompletedQueues(request, destination) {
|
|
5828
5856
|
))
|
5829
5857
|
: renderState$jscomp$1.push('$RX("');
|
5830
5858
|
renderState$jscomp$1.push(renderState$jscomp$2.boundaryPrefix);
|
5831
|
-
var chunk$jscomp$
|
5832
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
5859
|
+
var chunk$jscomp$4 = id.toString(16);
|
5860
|
+
renderState$jscomp$1.push(chunk$jscomp$4);
|
5833
5861
|
renderState$jscomp$1.push('"');
|
5834
5862
|
if (errorDigest) {
|
5835
5863
|
renderState$jscomp$1.push(",");
|
5836
|
-
var chunk$jscomp$
|
5864
|
+
var chunk$jscomp$5 = escapeJSStringsForInstructionScripts(
|
5837
5865
|
errorDigest || ""
|
5838
5866
|
);
|
5839
|
-
renderState$jscomp$1.push(chunk$jscomp$
|
5867
|
+
renderState$jscomp$1.push(chunk$jscomp$5);
|
5840
5868
|
}
|
5841
5869
|
var JSCompiler_inline_result =
|
5842
5870
|
renderState$jscomp$1.push(")\x3c/script>");
|
@@ -5912,7 +5940,6 @@ function flushCompletedQueues(request, destination) {
|
|
5912
5940
|
}
|
5913
5941
|
} finally {
|
5914
5942
|
0 === request.allPendingTasks &&
|
5915
|
-
0 === request.pingedTasks.length &&
|
5916
5943
|
0 === request.clientRenderedBoundaries.length &&
|
5917
5944
|
0 === request.completedBoundaries.length &&
|
5918
5945
|
((request.flushScheduled = !1),
|
@@ -6042,4 +6069,4 @@ exports.renderToString = function (children, options) {
|
|
6042
6069
|
'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'
|
6043
6070
|
);
|
6044
6071
|
};
|
6045
|
-
exports.version = "19.2.0-canary-
|
6072
|
+
exports.version = "19.2.0-canary-f7396427-20250501";
|